diff --git a/.eslintrc.js b/.eslintrc.js index 95b0669c16..a44cd54846 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -18,6 +18,7 @@ module.exports = { fhir: true }, env: { - node: true + node: true, + jest: true } } diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2ea171a5d7..e8e93c1bd1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,8 +1,3 @@ -> [!NOTE] -> Currently, we do **not** run e2e tests as a check on `opencrvs-countryconfig`-repo PRs. Please ensure your PR doesn't break any e2e tests. -> -> One method for doing this is to open a PR with these changes to `opencrvs-farajaland` as well, and see if the PR check passes there. - ## Description Clearly describe what has been changed. Include relevant context or background. diff --git a/.github/workflows/block-pr-develop-to-release.yml b/.github/workflows/block-pr-develop-to-release.yml index f790623439..8c097c3170 100644 --- a/.github/workflows/block-pr-develop-to-release.yml +++ b/.github/workflows/block-pr-develop-to-release.yml @@ -21,7 +21,8 @@ jobs: if: env.blocked == 'true' uses: thollander/actions-comment-pull-request@v2 with: - message: "🚫 **Pull requests from 'develop' to 'release-*' are not allowed!** + message: + "🚫 **Pull requests from 'develop' to 'release-*' are not allowed!** Please create pull request from hotfix into 'release-*' branch instead." GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/block-pr-fork-upstream.yml b/.github/workflows/block-pr-fork-upstream.yml new file mode 100644 index 0000000000..8b2808c482 --- /dev/null +++ b/.github/workflows/block-pr-fork-upstream.yml @@ -0,0 +1,20 @@ +name: Block PRs from forks + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + check-fork: + runs-on: ubuntu-latest + steps: + - name: Block PRs from forks + run: | + echo "PR from: ${{ github.event.pull_request.head.repo.full_name }}" + echo "Base repo: ${{ github.repository }}" + if [[ "${{ github.event.pull_request.head.repo.full_name }}" != "${{ github.repository }}" ]]; then + echo "❌ This pull request is from a fork. Closing." + exit 1 + else + echo "✅ This pull request is from the same repository. Proceeding." + fi diff --git a/.github/workflows/clear-environment.yml b/.github/workflows/clear-environment.yml index d5371a603b..a9549d19c5 100644 --- a/.github/workflows/clear-environment.yml +++ b/.github/workflows/clear-environment.yml @@ -6,6 +6,9 @@ on: environment: required: true type: string + outputs: + outcome: + value: ${{ jobs.reset-data.outputs.outcome }} workflow_dispatch: inputs: environment: @@ -17,6 +20,12 @@ on: - staging - qa - development + - pentest + - v19-beta-staging + - v19-beta-prod + - fix-analytics + - mosip + - openfn jobs: reset-data: name: 'Reset data' @@ -32,7 +41,6 @@ jobs: fetch-depth: 0 ref: ${{ github.ref_name }} path: './${{ github.event.repository.name }}' - - name: Read known hosts run: | cd ${{ github.event.repository.name }} @@ -40,13 +48,11 @@ jobs: sed -i -e '$a\' ./infrastructure/known-hosts cat ./infrastructure/known-hosts >> $GITHUB_ENV echo "EOF" >> $GITHUB_ENV - - name: Install SSH Key uses: shimataro/ssh-key-action@v2 with: key: ${{ secrets.SSH_KEY }} known_hosts: ${{ env.KNOWN_HOSTS }} - - name: Reset data id: reset-data env: diff --git a/.github/workflows/create-hetzner-server.yml b/.github/workflows/create-hetzner-server.yml new file mode 100644 index 0000000000..10424b60e2 --- /dev/null +++ b/.github/workflows/create-hetzner-server.yml @@ -0,0 +1,254 @@ +name: Create Hetzner Server +run-name: Create server for ${{ inputs.environment }} environment +on: + workflow_dispatch: + inputs: + environment: + description: "Short server name (3–5 letters)" + required: true + type: + description: "Environment type (single or multi node)" + required: false + type: choice + default: 'single-node' + options: + - single-node + - multi-node + backup_enabled: + type: boolean + description: Backup enabled + default: false + required: false + workflow_call: + inputs: + environment: + type: string + description: Environment to deploy to + required: true + type: + type: string + description: Select group tag you want to execute + default: 'single-node' + backup_enabled: + type: boolean + description: Backup enabled + default: false + +env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + TF_PATH: infrastructure/provision-server/hetzner-cloud-empty-server + TF_VAR_hcloud_token: ${{ secrets.HCLOUD_TOKEN }} + TF_VAR_country_name: ${{ vars.COUNTRY_NAME }} + TF_VAR_env_name: ${{ inputs.environment }} + TF_VAR_env_type: ${{ inputs.type }} + TF_VAR_cloudflare_api_token: ${{ secrets.CLOUDFLARE_API_TOKEN }} + TF_VAR_cloudflare_zone_id: ${{ secrets.CLOUDFLARE_ZONE_ID }} + TERRAFORM_REPO: opencrvs/terraform-state + type: ${{ inputs.type }} +jobs: + create-environment: + name: Create New HCloud Environment + runs-on: ubuntu-24.04 + environment: ${{ inputs.environment }} + steps: + - name: Checkout repo ${{ github.repository }} + uses: actions/checkout@v4 + with: + # Token permissions: read:org, read:public_key, repo, workflow + token: ${{ secrets.GH_TOKEN }} + fetch-depth: 0 + ref: ${{ github.ref_name }} + - name: Configure git client for ${{ github.repository }} + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Checkout repo ${{ env.TERRAFORM_REPO }} + uses: actions/checkout@v4 + with: + repository: ${{ env.TERRAFORM_REPO }} + ref: main + token: ${{ secrets.GH_TOKEN }} + path: terraform-state + - name: Configure git client for ${{ env.TERRAFORM_REPO }} + working-directory: terraform-state/ + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Pull SSH key pair files from github + run: | + ssh_key_path=$TF_PATH/.ssh + mkdir -p $ssh_key_path + echo "${{ secrets.SSH_PRIVATE_KEY }}" > $ssh_key_path/id_rsa + echo "${{ secrets.SSH_PUBLIC_KEY }}" > $ssh_key_path/id_rsa.pub + chmod 600 $ssh_key_path/id_rsa + chmod 644 $ssh_key_path/id_rsa.pub + + - name: Restore terraform state + run: | + mkdir -p terraform-state/${{ vars.COUNTRY_NAME }} + [ -f terraform-state/${{ vars.COUNTRY_NAME }}/${{ inputs.environment }}-${{ env.type }}.tfstate ] && \ + cp terraform-state/${{ vars.COUNTRY_NAME }}/${{ inputs.environment }}-${{ env.type }}.tfstate ${{ env.TF_PATH }}/terraform.tfstate || \ + echo "Terraform state file not found. Creating a new one." + + - name: Setup Terraform + uses: hashicorp/setup-terraform@v3 + with: + terraform_version: 1.5.7 + + - name: Terraform Init + working-directory: ${{ env.TF_PATH }} + run: terraform init + + - name: Terraform Apply + working-directory: ${{ env.TF_PATH }} + run: | + terraform apply -auto-approve -input=false + + - name: Store variables from terraform state file + id: output + working-directory: ${{ env.TF_PATH }} + run: | + echo "hostname=$TF_VAR_country_name-$TF_VAR_env_name" >> $GITHUB_OUTPUT + echo "public_ip=$(terraform output -raw public_ip)" >> $GITHUB_OUTPUT + echo "master_ip=$(terraform output -raw master_ip)" >> $GITHUB_OUTPUT + if [ ${{ inputs.type }} == 'single-node' ] + then + echo "master_hostname=$TF_VAR_country_name-$TF_VAR_env_name" >> $GITHUB_OUTPUT + else + echo "master_hostname=$TF_VAR_country_name-$TF_VAR_env_name-master" >> $GITHUB_OUTPUT + echo "worker_hostname=$TF_VAR_country_name-$TF_VAR_env_name-worker" >> $GITHUB_OUTPUT + # echo "backup_hostname=$TF_VAR_country_name-$TF_VAR_env_name-backup" >> $GITHUB_OUTPUT + echo "worker_ip=$(terraform output -raw worker_ip)" >> $GITHUB_OUTPUT + # echo "backup_ip=$(terraform output -raw backup_ip)" >> $GITHUB_OUTPUT + fi + + - name: Update terraform state file in ${{ env.TERRAFORM_REPO }} + run: | + cp ${{ env.TF_PATH }}/terraform.tfstate terraform-state/${{ vars.COUNTRY_NAME }}/${{ inputs.environment }}-${{ env.type }}.tfstate + cd terraform-state/ + if [[ -n "$(git status --porcelain)" ]]; then + git add ${{ vars.COUNTRY_NAME }}/${{ inputs.environment }}-${{ env.type }}.tfstate + git commit -m "Add environment file for ${{ inputs.environment }} env with type ${{ env.type }}" + git push + else + echo "No changes to commit" + fi + + - name: Create environment file for ansible + env: + ENV: ${{ inputs.environment }} + MASTER_IP: ${{ steps.output.outputs.master_ip }} + MASTER_HOSTNAME: ${{ steps.output.outputs.master_hostname }} + WORKER_IP: ${{ steps.output.outputs.worker_ip }} + WORKER_HOSTNAME: ${{ steps.output.outputs.worker_hostname }} + # BACKUP_IP: ${{ steps.output.outputs.backup_ip }} + # BACKUP_HOSTNAME: ${{ steps.output.outputs.backup_hostname }} + run: | + TARGET_ENV_BACKUP=$ENV + SOURCE_ENV_BACKUP=${ENV/staging/prod} + [ ${{ inputs.backup_enabled }} == 'true' ] && \ + INVENTORY_TEMPLATE_FILE=infrastructure/provision-server/templates/${{ env.type }}-with-backup-ansible-env.yml || \ + INVENTORY_TEMPLATE_FILE=infrastructure/provision-server/templates/${{ env.type }}-ansible-env.yml + cat $INVENTORY_TEMPLATE_FILE | \ + sed -e "s#SSH_HOST_MASTER#$MASTER_IP#" \ + -e "s#HOSTNAME_MASTER#$MASTER_HOSTNAME#" \ + -e "s#SSH_HOST_WORKER#$WORKER_IP#" \ + -e "s#HOSTNAME_WORKER#$WORKER_HOSTNAME#" \ + -e "s#TARGET_ENV_BACKUP#$TARGET_ENV_BACKUP#" \ + -e "s#SOURCE_ENV_BACKUP#$SOURCE_ENV_BACKUP#" \ + -e "s#ENV_BACKUP#$${{ inputs.environment }}#" \ + > infrastructure/server-setup/inventory/${{ inputs.environment }}.yml && \ + echo "Environment file created: infrastructure/server-setup/inventory/${{ inputs.environment }}.yml" + - name: Create docker compose + run: | + [ ! -f infrastructure/docker-compose.${{ inputs.environment }}-deploy.yml ] && \ + cp infrastructure/provision-server/templates/docker-compose.${{ env.type }}.yml infrastructure/docker-compose.${{ inputs.environment }}-deploy.yml && \ + echo "Docker-compose created" || \ + echo "Docker-compose already exists" + + - name: Update workflows + run: | + workflows=( + ".github/workflows/provision.yml" + ".github/workflows/deploy.yml" + ".github/workflows/seed-data.yml" + ".github/workflows/clear-environment.yml" + ) + path=".on.workflow_dispatch.inputs.environment.options" + + # Check if option already exists in first workflows file + if ! yq e "$path" "$workflows" | grep -qc "${{ inputs.environment }}"; then + echo "Adding new option '${{ inputs.environment }}' to workflows: ${workflows[@]}" + for workflow in ${workflows[@]} + do + yq e "$path += [\"${{ inputs.environment }}\"]" -i "$workflow" + echo "Updated workflow $workflow" + done + else + echo "Option '${{ inputs.environment }}' already exists in workflows ${workflows[@]}" + fi + + - name: Create environment variables and secrets on GitHub + env: + MASTER_IP: ${{ steps.output.outputs.master_ip }} + DOMAIN: ${{ inputs.environment }}.opencrvs.dev + GH_TOKEN: ${{ secrets.GH_TOKEN }} + ENVIRONMENT: ${{ inputs.environment }} + run: | + cat infrastructure/provision-server/templates/environment.variables.${{ env.type }}.tpl | \ + sed -e "s/#SSH_HOST#/$MASTER_IP/" \ + -e "s/#DOMAIN#/$DOMAIN/" \ + > infrastructure/environment.variables + echo "Environment variables file created: infrastructure/environment.variables" + while read line; do + if [[ $line == *"="* ]]; then + key=$(echo "$line" | cut -d '=' -f 1) + value=$(echo "$line" | cut -d '=' -f 2-) + echo "Adding variable: $key" + gh variable set --env "$ENVIRONMENT" $key --body "$value" + fi + done < infrastructure/environment.variables + existing_secrets=$(gh secret list --env "$ENVIRONMENT" --json name -q '.[].name') + while read line; do + key=$(echo "$line" | cut -d '=' -f 1) + if echo "$existing_secrets" | grep -qw "$key"; then + echo "Secret $key already exists, skipping." + continue; + fi + + if [[ $line == *"="* ]]; then + value=$(echo "$line" | cut -d '=' -f 2-) + echo "Adding secret with predefined value: $key" + else + value=`openssl rand -base64 25 | tr -cd '[:alnum:]._-' ; echo ''` + echo "Adding secret with random value: $key" + fi + gh secret set "$key" --env "$ENVIRONMENT" --body "$value" + done < infrastructure/provision-server/templates/environment.secrets.tpl + gh secret set SSH_KEY --env ${{ inputs.environment }} < $TF_PATH/.ssh/id_rsa || echo "Failed" + - name: Update known-hosts + env: + SSH_PORT: 22 + MASTER_IP: ${{ steps.output.outputs.master_ip }} + MASTER_HOSTNAME: ${{ steps.output.outputs.master_hostname }} + WORKER_IP: ${{ steps.output.outputs.worker_ip }} + WORKER_HOSTNAME: ${{ steps.output.outputs.worker_hostname }} + # BACKUP_IP: ${{ steps.output.outputs.backup_ip }} + # BACKUP_HOSTNAME: ${{ steps.output.outputs.backup_hostname }} + run: | + echo "Wait few seconds for server to be available" && sleep 10 + bash ./infrastructure/environments/update-known-hosts.sh ${{ env.MASTER_IP }} ${{ env.SSH_PORT }} + if [ ${{ inputs.type }} == 'multi-node' ] + then + bash ./infrastructure/environments/update-known-hosts.sh ${{ env.WORKER_IP }} ${{ env.SSH_PORT }} + fi + + - name: Commit and push changes to ${{ github.repository }} + run: | + git add infrastructure/server-setup/inventory/${{ inputs.environment }}.yml \ + infrastructure/known-hosts \ + .github \ + infrastructure/docker-compose.${{ inputs.environment }}-deploy.yml + git status + git commit -m "Add environment files for ${{ inputs.environment }}" + git push diff --git a/.github/workflows/create-release-environment.yml b/.github/workflows/create-release-environment.yml new file mode 100644 index 0000000000..08db7d72e7 --- /dev/null +++ b/.github/workflows/create-release-environment.yml @@ -0,0 +1,225 @@ +# How to use this workflow: +################################################################## +# Workflow should be triggered manually from release branch +# environment: Name of the environment to create +# core_image_tag: OpenCRVS core image tag +# multi_node_with_backup: This option will deploy production and staging servers +# with backup configured (farajaland-backup). Currently we are limited with only +# one backup server per countryconfig repository. +# Country config will be provisioned from latest commit to release branch +# +------------------+ +# | get-environment | +# +--------+---------+ +# | +# v +# +------------------+ +# | verify-branch | +# +--------+---------+ +# | +# +---------------+-------------------+ +# | | +# v v +# +-------------------+ +----------------------+ +# | multi_node_with | | multi_node_with | +# | _backup == false | | _backup == true | +# +-------------------+ +----------------------+ +# | | +# v v +# +-------------------+ +---------------------+ +# | create-server | | create-server- | +# +--------+----------+ | staging | +# | +--------+------------+ +# v | +# +-------------------+ v +# | check-countryconfig| +---------------------+ +# +--------+----------+ | create-server-prod | +# | +--------+------------+ +# v | +# +-------------------+ v +# | provision-server | +---------------------+ +# +--------+----------+ | check-countryconfig-| +# | | multi | +# v +--------+------------+ +# +-------------------+ | +# | deploy | v +# +-------------------+ +---------------------+ +# | provision-server- | +# | prod | +# +--------+------------+ +# | +# v +# +---------------------+ +# | provision-server- | +# | staging | +# +--------+------------+ +# | +# v +# +---------------------+ +# | deploy-staging | +# +--------+------------+ +# | +# v +# +---------------------+ +# | deploy-prod | +# +---------------------+ +name: Release - Create Environment +run-name: "Create ${{ github.ref_name }} release environment (core: ${{ inputs.core_image_tag }})" +on: + workflow_dispatch: + inputs: + core_image_tag: + # OpenCRVS Core images are built with 2 tags: + # - branch name, e.g.: develop + # - commit hash, e.g.: 4ae3004 (latest commit hash) + # For environment provision we should always use commit hash + description: "Core image tag (use commit hash, not actual tag, e/g: 4ae3004)" + required: true + type: string + multi_node_with_backup: + type: boolean + description: Multi-node with backup enabled + default: true + required: false +jobs: + get-environment: + runs-on: ubuntu-24.04 + outputs: + environment: ${{ steps.set_environment.outputs.environment }} + steps: + - name: Set environment name + id: set_environment + # Convert branch name to environment name + # e.g. release-v1.2.3 -> v1-2-3, + # 1.2.3 -> v1-2-3 + run: | + environment=$(echo ${{ github.ref_name }} | sed -e 's/\./-/g' -e 's/release\-v//g' -e 's/release\///g') + echo "environment=v${environment}" >> $GITHUB_OUTPUT + verify-branch: + needs: get-environment + environment: ${{ needs.get-environment.outputs.environment }} + runs-on: ubuntu-24.04 + steps: + - name: Fail if not on release branch + run: | + echo "Current ref name: ${{ github.ref_name }} and ref: ${{ github.ref }}" + if [[ "${{ github.ref }}" != refs/heads/release/* ]] + then + echo "❌ This workflow must be run from a release/* branch." + echo "Please check release documentation for more information: TODO: Add link to documentation" + exit 0 + fi + + create-server: + if: ${{ inputs.multi_node_with_backup == false }} + needs: [verify-branch, get-environment] + uses: ./.github/workflows/create-hetzner-server.yml + with: + environment: ${{ needs.get-environment.outputs.environment }} + backup_enabled: ${{ inputs.multi_node_with_backup }} + secrets: inherit + create-server-staging: + if: ${{ inputs.multi_node_with_backup == true }} + needs: [verify-branch, get-environment] + uses: ./.github/workflows/create-hetzner-server.yml + with: + environment: ${{ needs.get-environment.outputs.environment }}-staging + type: 'single-node' + backup_enabled: ${{ inputs.multi_node_with_backup }} + secrets: inherit + create-server-prod: + if: ${{ inputs.multi_node_with_backup == true }} + needs: [verify-branch, get-environment, create-server-staging] + uses: ./.github/workflows/create-hetzner-server.yml + with: + environment: ${{ needs.get-environment.outputs.environment }}-prod + type: 'multi-node' + backup_enabled: ${{ inputs.multi_node_with_backup }} + secrets: inherit + + check-countryconfig: + if: ${{ inputs.multi_node_with_backup == false }} + runs-on: ubuntu-24.04 + needs: [verify-branch, create-server, get-environment] + outputs: + image_tag: ${{ steps.get_latest_commit.outputs.config_tag }} + steps: + - name: Checkout repo ${{ github.repository }} + uses: actions/checkout@v4 + - name: Get latest commit SHA + id: get_latest_commit + run: | + git pull + git status + config_tag=$(git rev-parse HEAD | cut -c 1-7) + echo "Latest commit SHA: $config_tag" + echo "config_tag=$config_tag" >> $GITHUB_OUTPUT + check-countryconfig-multi: + if: ${{ inputs.multi_node_with_backup == true }} + runs-on: ubuntu-24.04 + needs: [verify-branch, create-server-staging, create-server-prod, get-environment] + outputs: + image_tag: ${{ steps.get_latest_commit.outputs.config_tag }} + steps: + - name: Checkout repo ${{ github.repository }} + uses: actions/checkout@v4 + - name: Get latest commit SHA + id: get_latest_commit + run: | + git pull + git status + config_tag=$(git rev-parse HEAD | cut -c 1-7) + echo "Latest commit SHA: $config_tag" + echo "config_tag=$config_tag" >> $GITHUB_OUTPUT + provision-server: + if: ${{ inputs.multi_node_with_backup == false }} + needs: [verify-branch, create-server, check-countryconfig, get-environment] + uses: ./.github/workflows/provision.yml + with: + environment: ${{ needs.get-environment.outputs.environment }} + secrets: inherit + deploy: + if: ${{ inputs.multi_node_with_backup == false }} + needs: [verify-branch, provision-server, check-countryconfig, create-server, get-environment] + uses: ./.github/workflows/deploy.yml + with: + environment: ${{ needs.get-environment.outputs.environment }} + core-image-tag: ${{ inputs.core_image_tag }} + countryconfig-image-tag: ${{ needs.check-countryconfig.outputs.image_tag }} + reset: 'true' + secrets: inherit + + provision-server-prod: + needs: [verify-branch, create-server-prod, check-countryconfig-multi, get-environment] + if: ${{ inputs.multi_node_with_backup == true }} + uses: ./.github/workflows/provision.yml + with: + environment: ${{ needs.get-environment.outputs.environment }}-prod + secrets: inherit + provision-server-staging: + needs: [verify-branch, create-server-staging, check-countryconfig-multi, get-environment, provision-server-prod] + if: ${{ inputs.multi_node_with_backup == true }} + uses: ./.github/workflows/provision.yml + with: + environment: ${{ needs.get-environment.outputs.environment }}-staging + is_env_staging: true + secrets: inherit + deploy-staging: + needs: [verify-branch, provision-server-staging, check-countryconfig-multi, create-server-staging, get-environment] + if: ${{ inputs.multi_node_with_backup == true }} + uses: ./.github/workflows/deploy.yml + with: + environment: ${{ needs.get-environment.outputs.environment }}-staging + core-image-tag: ${{ inputs.core_image_tag }} + countryconfig-image-tag: ${{ needs.check-countryconfig-multi.outputs.image_tag }} + reset: 'true' + secrets: inherit + deploy-prod: + needs: [verify-branch, provision-server-prod, check-countryconfig-multi, create-server-prod, get-environment] + if: ${{ inputs.multi_node_with_backup == true }} + uses: ./.github/workflows/deploy.yml + with: + environment: ${{ needs.get-environment.outputs.environment }}-prod + core-image-tag: ${{ inputs.core_image_tag }} + countryconfig-image-tag: ${{ needs.check-countryconfig-multi.outputs.image_tag }} + reset: 'true' + secrets: inherit diff --git a/.github/workflows/deploy-and-e2e.yml b/.github/workflows/deploy-and-e2e.yml new file mode 100644 index 0000000000..46a89fe689 --- /dev/null +++ b/.github/workflows/deploy-and-e2e.yml @@ -0,0 +1,192 @@ +name: Deploy & run E2E +run-name: Deploy & E2E, triggered by ${{ github.event.client_payload.actor || github.actor }} to ${{ github.event.inputs.environment || 'e2e' }} +on: + repository_dispatch: + types: [run_e2e] + push: + branches: + - develop + workflow_dispatch: + inputs: + environment: + type: choice + description: Environment to deploy to + required: true + default: 'e2e' + options: + - e2e + core-image-tag: + description: Core image tag + required: true + default: 'v1.6.0' + countryconfig-image-tag: + description: Your Country Config image tag + required: true + default: 'v1.6.0' + +concurrency: + group: ci-build + cancel-in-progress: false + +jobs: + get-core-commit: + name: Resolve latest core tag + runs-on: ubuntu-latest + outputs: + latest_commit_sha: ${{ steps.get_latest_commit.outputs.commit_sha }} + steps: + - name: Checkout opencrvs-core repository + if: github.event_name == 'push' || github.event_name == 'repository_dispatch' + uses: actions/checkout@v3 + with: + repository: 'opencrvs/opencrvs-core' + ref: 'develop' + - name: Get latest commit SHA + if: github.event_name == 'push' || github.event_name == 'repository_dispatch' + id: get_latest_commit + run: echo "commit_sha=$(git rev-parse HEAD | cut -c 1-7)" >> $GITHUB_OUTPUT + + get-country-config-commit: + name: Resolve latest Farajaland tag + runs-on: ubuntu-latest + needs: get-core-commit + outputs: + short_sha: ${{ steps.set_short_sha.outputs.short_sha }} + steps: + - name: Checkout code + uses: actions/checkout@v3 + if: github.event_name == 'push' || github.event_name == 'repository_dispatch' + - name: Get short commit hash + id: set_short_sha + run: echo "short_sha=${GITHUB_SHA:0:7}" >> $GITHUB_OUTPUT + if: github.event_name == 'push' || github.event_name == 'repository_dispatch' + + deploy: + needs: [get-country-config-commit, get-core-commit] + uses: ./.github/workflows/deploy.yml + with: + environment: ${{ github.event.inputs.environment || 'e2e' }} + core-image-tag: ${{ github.event.inputs.core-image-tag || needs.get-core-commit.outputs.latest_commit_sha }} + countryconfig-image-tag: ${{ github.event.inputs.countryconfig-image-tag || needs.get-country-config-commit.outputs.short_sha }} + reset: 'true' + secrets: inherit + + discover-tests: + name: Discover test directories + runs-on: ubuntu-22.04 + needs: [get-core-commit, get-country-config-commit] + outputs: + test_matrix: ${{ steps.list-tests.outputs.test_matrix }} + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + + - name: List Test Directories + id: list-tests + run: | + tests_suites=$(cd e2e/testcases; find * -type f -name "*.spec.ts" | jq -R -s -c 'split("\n")[:-1]') + echo "Test suites: $tests_suites" + echo "test_matrix=$tests_suites" >> $GITHUB_OUTPUT + echo "test_matrix=$tests_suites" + - name: Cache Node.js dependencies + uses: actions/cache@v4 + with: + path: | + node_modules + ~/.cache/yarn/v6 + key: ${{github.event.inputs.countryconfig-image-tag || needs.get-country-config-commit.outputs.short_sha}} + restore-keys: | + ${{ runner.os }}-node- + + - name: Install Dependencies + run: yarn + test: + needs: [deploy, discover-tests, get-core-commit, get-country-config-commit] + runs-on: ubuntu-22.04 + environment: ${{ github.event.inputs.environment || 'e2e' }} + strategy: + fail-fast: false + matrix: + test_file: ${{ fromJson(needs.discover-tests.outputs.test_matrix) }} + name: ${{ matrix.test_file }} + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + + - name: Cache Node.js dependencies + uses: actions/cache@v4 + with: + path: | + node_modules + ~/.cache/yarn/v6 + key: ${{github.event.inputs.countryconfig-image-tag || needs.get-country-config-commit.outputs.short_sha}} + restore-keys: | + ${{ runner.os }}-node- + + - name: Install Dependencies + run: yarn + + - uses: nick-fields/retry@v3 + with: + timeout_minutes: 10 + max_attempts: 3 + command: npx playwright install --with-deps + + - name: Run Playwright Tests + run: npx playwright test ./e2e/testcases/${{ matrix.test_file }} + env: + DOMAIN: '${{ vars.DOMAIN }}' + + - id: ctrf_check + if: always() + run: | + [ -d ctrf ] && \ + echo "ctrf=true" >> $GITHUB_OUTPUT || \ + echo "ctrf=false" >> $GITHUB_OUTPUT + - name: Publish Test Summary Results + run: npx github-actions-ctrf ctrf/ctrf-report.json + if: always() && steps.ctrf_check.outputs.ctrf == 'true' + + - name: Form the artifact name from test_file + if: always() + id: artifact + run: echo "artifact=$(echo '${{ matrix.test_file }}' | sed 's/\//__/g')" >> $GITHUB_OUTPUT + + - uses: actions/upload-artifact@v4 + if: always() + with: + name: playwright-report-${{github.event.inputs.core-image-tag || needs.get-core-commit.outputs.latest_commit_sha}}-${{github.event.inputs.countryconfig-image-tag || needs.get-country-config-commit.outputs.short_sha}}-${{ steps.artifact.outputs.artifact }} + path: playwright-report/ + retention-days: 30 + + notify-slack: + name: Notify Slack on Failure + runs-on: ubuntu-latest + needs: [deploy, discover-tests, test] + if: always() && failure() + steps: + - name: Send Slack notification + uses: slackapi/slack-github-action@v1.26.0 + with: + channel-id: 'C02LU432JGK' + slack-message: "❌ E2E pipeline triggered by ${{ github.event.client_payload.actor || github.actor }}'s commit failed. Check the logs at https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}." + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} + + notify-slack-success: + name: Notify Slack on success + runs-on: ubuntu-latest + needs: [deploy, discover-tests, test] + if: success() + steps: + - name: Send Slack notification + uses: slackapi/slack-github-action@v1.26.0 + with: + channel-id: 'C02LU432JGK' + slack-message: '✅ E2E pipeline finished successfully, triggered by ${{ github.event.client_payload.actor || github.actor }}. Check the logs at https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}.' + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 1455279a44..4beabeb666 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -12,7 +12,7 @@ on: - production - staging core-image-tag: - description: Core DockerHub image tag + description: Core image tag required: true default: 'v1.8.1' countryconfig-image-tag: @@ -26,6 +26,14 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 60 steps: + - uses: trstringer/manual-approval@v1 + with: + secret: ${{ github.TOKEN }} + approvers: euanmillar,rikukissa,alsmk + minimum-approvals: 1 + issue-title: 'Deploy (${{ github.event.inputs.environment }}): core: ${{ github.event.inputs.core-image-tag }} country config: ${{ github.event.inputs.countryconfig-image-tag }}' + issue-body: 'Please approve or deny the deployment of core: ${{ github.event.inputs.core-image-tag }} country config: ${{ github.event.inputs.countryconfig-image-tag }} to ${{ github.event.inputs.environment }}' + exclude-workflow-initiator-as-approver: false - name: Clone core uses: actions/checkout@v3 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b09bf6a282..b633ee1b8d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,19 +1,52 @@ name: Deploy (development) -run-name: "Deploy to ${{ inputs.environment }} with (core: ${{ inputs.core-image-tag }}, country config: ${{ inputs.countryconfig-image-tag }}, reset: ${{ inputs.reset }})" +run-name: 'Deploy to ${{ inputs.environment }} with (core: ${{ inputs.core-image-tag }}, country config: ${{ inputs.countryconfig-image-tag }}, reset: ${{ inputs.reset }})' on: + workflow_call: + inputs: + environment: + type: string + description: Environment to deploy to + required: true + core-image-tag: + type: string + description: Core DockerHub image tag + required: true + default: 'v1.4.1' + countryconfig-image-tag: + type: string + description: Your Country Config DockerHub image tag + required: true + reset: + type: string + description: Reset the environment + default: 'false' + required: false + debug: + type: boolean + description: Open SSH session to the runner after deployment + default: false + required: false workflow_dispatch: inputs: environment: type: choice description: Environment to deploy to required: true - default: 'staging' + default: 'development' options: - - staging - - qa - development + - qa + - e2e + - v17 + - staging + - pentest + - v19-beta-staging + - v19-beta-prod + - fix-analytics + - mosip + - openfn core-image-tag: - description: Core DockerHub image tag + description: Core image tag required: true default: 'v1.8.1' countryconfig-image-tag: @@ -44,16 +77,13 @@ jobs: fetch-depth: 0 ref: ${{ github.ref_name }} path: './${{ github.event.repository.name }}' - - name: Checkout country branch ${{ inputs.countryconfig-image-tag }} if: ${{ inputs.countryconfig-image-tag != 'latest' && inputs.countryconfig-image-tag != '' }} working-directory: ${{ github.event.repository.name }} run: git checkout ${{ inputs.countryconfig-image-tag }} - - name: Checkout core branch ${{ inputs.core-image-tag }} working-directory: opencrvs-core run: git checkout ${{ inputs.core-image-tag }} - - name: Resolve image tags working-directory: ${{ github.event.repository.name }} run: | @@ -69,7 +99,6 @@ jobs: message="Core image tag: ${{ inputs.core-image-tag }} \n\nCountry config image tag: $image_tag \n\n $message" echo -e $message | tee -a $GITHUB_STEP_SUMMARY echo "image_tag=$image_tag" >> $GITHUB_ENV - - name: Read known hosts working-directory: ${{ github.event.repository.name }} run: | @@ -77,23 +106,19 @@ jobs: sed -i -e '$a\' ./infrastructure/known-hosts cat ./infrastructure/known-hosts >> $GITHUB_ENV echo "EOF" >> $GITHUB_ENV - - name: Install SSH Key uses: shimataro/ssh-key-action@v2 with: key: ${{ secrets.SSH_KEY }} known_hosts: ${{ env.KNOWN_HOSTS }} - - name: Unset KNOWN_HOSTS variable run: | echo "KNOWN_HOSTS=" >> $GITHUB_ENV - - name: Login to DockerHub uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - - name: Wait for images to be available run: | while true; do @@ -108,7 +133,6 @@ jobs: fi sleep 10 done - - name: Export all secrets and environment variables working-directory: ${{ github.event.repository.name }} run: | @@ -120,12 +144,10 @@ jobs: | map("\(.key)=\"\(.value)\"") | .[] ' > .env.${{ inputs.environment }} - - name: Use Node.js from .nvmrc uses: actions/setup-node@v4 with: node-version-file: ${{ github.event.repository.name }}/.nvmrc - - name: Deploy to ${{ inputs.environment }} id: deploy working-directory: ${{ github.event.repository.name }} @@ -140,7 +162,6 @@ jobs: --version=${{ inputs.core-image-tag }} \ --country_config_version=${{ env.image_tag }} \ --replicas=${{ vars.REPLICAS }} - reset: needs: deploy if: ${{ inputs.reset == 'true' && needs.deploy.outputs.outcome == 'success' }} @@ -148,7 +169,6 @@ jobs: with: environment: ${{ inputs.environment }} secrets: inherit - seed-data: needs: reset if: ${{ inputs.reset == 'true' && needs.reset.outputs.outcome == 'success' }} @@ -157,7 +177,6 @@ jobs: environment: ${{ inputs.environment }} core-image-tag: ${{ inputs.core-image-tag }} secrets: inherit - reindex-after-seed: needs: seed-data if: ${{ inputs.reset == 'true' && needs.seed-data.result == 'success' }} @@ -166,7 +185,6 @@ jobs: environment: ${{ inputs.environment }} core-image-tag: ${{ inputs.core-image-tag }} secrets: inherit - reindex-after-deploy: needs: deploy if: ${{ inputs.reset != 'true' && needs.deploy.result == 'success' }} @@ -174,4 +192,4 @@ jobs: with: environment: ${{ inputs.environment }} core-image-tag: ${{ inputs.core-image-tag }} - secrets: inherit \ No newline at end of file + secrets: inherit diff --git a/.github/workflows/destroy-hetzner-server.yml b/.github/workflows/destroy-hetzner-server.yml new file mode 100644 index 0000000000..98ba1addd9 --- /dev/null +++ b/.github/workflows/destroy-hetzner-server.yml @@ -0,0 +1,167 @@ +name: Destroy Hetzner Server +run-name: Destroy server for ${{ github.event.inputs.environment }} environment +on: + workflow_dispatch: + inputs: + environment: + description: "Short server name (3–5 letters)" + required: true + type: + description: "Environment type (single or multi node)" + required: false + type: choice + default: 'single-node' + options: + - single-node + - multi-node + workflow_call: + inputs: + environment: + type: string + description: Environment to deploy to + required: true + +env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + TF_PATH: infrastructure/provision-server/hetzner-cloud-empty-server + TF_VAR_hcloud_token: ${{ secrets.HCLOUD_TOKEN }} + TF_VAR_country_name: ${{ vars.COUNTRY_NAME }} + TF_VAR_env_name: ${{ github.event.inputs.environment }} + TF_VAR_env_type: ${{ inputs.type }} + TF_VAR_cloudflare_api_token: ${{ secrets.CLOUDFLARE_API_TOKEN }} + TF_VAR_cloudflare_zone_id: ${{ secrets.CLOUDFLARE_ZONE_ID }} + TERRAFORM_REPO: opencrvs/terraform-state + type: ${{ inputs.type }} +jobs: + destroy-environment: + name: Destroy HCloud Environment + runs-on: ubuntu-24.04 + outputs: + ssh_host: ${{ steps.output.outputs.ssh_host }} + hostname: ${{ steps.output.outputs.hostname }} + environment: ${{ github.event.inputs.environment }} + steps: + - name: Checkout repo ${{ github.repository }} + uses: actions/checkout@v4 + with: + # Token permissions: read:org, read:public_key, repo, workflow + token: ${{ secrets.GH_TOKEN }} + - name: Configure git client for ${{ github.repository }} + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Checkout repo ${{ env.TERRAFORM_REPO }} + uses: actions/checkout@v4 + with: + repository: ${{ env.TERRAFORM_REPO }} + ref: main + token: ${{ secrets.GH_TOKEN }} + path: terraform-state + - name: Configure git client for ${{ env.TERRAFORM_REPO }} + working-directory: terraform-state/ + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Pull SSH key pair files from github + run: | + ssh_key_path=$TF_PATH/.ssh + mkdir -p $ssh_key_path + echo "${{ secrets.SSH_PRIVATE_KEY }}" > $ssh_key_path/id_rsa + echo "${{ secrets.SSH_PUBLIC_KEY }}" > $ssh_key_path/id_rsa.pub + chmod 600 $ssh_key_path/id_rsa + chmod 644 $ssh_key_path/id_rsa.pub + + - name: Restore terraform state + run: | + mkdir -p terraform-state/${{ vars.COUNTRY_NAME }} + [ -f terraform-state/${{ vars.COUNTRY_NAME }}/${{ github.event.inputs.environment }}-${{ env.type }}.tfstate ] && \ + cp terraform-state/${{ vars.COUNTRY_NAME }}/${{ github.event.inputs.environment }}-${{ env.type }}.tfstate ${{ env.TF_PATH }}/terraform.tfstate || \ + (echo "Terraform state file not found. Please destroy ${{ github.event.inputs.environment }} environment manually" && exit 1) + + - name: Setup Terraform + uses: hashicorp/setup-terraform@v3 + with: + terraform_version: 1.5.7 + + - name: Terraform Init + working-directory: ${{ env.TF_PATH }} + run: terraform init + - name: Store variables from terraform state file + id: output + working-directory: ${{ env.TF_PATH }} + run: | + echo "ssh_host=$(terraform output -raw public_ip)" >> $GITHUB_OUTPUT + echo "hostname=$TF_VAR_country_name-$TF_VAR_env_name" >> $GITHUB_OUTPUT + - name: Terraform Destroy + working-directory: ${{ env.TF_PATH }} + run: | + terraform destroy -auto-approve -input=false + + - name: Remove terraform state file in ${{ env.TERRAFORM_REPO }} + run: | + cd terraform-state/ + if [ -f ${{ vars.COUNTRY_NAME }}/${{ github.event.inputs.environment }}-${{ env.type }}.tfstate ]; then + git rm ${{ vars.COUNTRY_NAME }}/${{ github.event.inputs.environment }}-${{ env.type }}.tfstate + fi + if [[ -n "$(git status --porcelain)" ]]; then + git commit -m "Remove environment state file for ${{ github.event.inputs.environment }} env with type ${{ env.type }}" + git push + else + echo "No changes to commit" + fi + + - name: Remove environment file for ansible + run: | + [ -f infrastructure/server-setup/inventory/${{ github.event.inputs.environment }}.yml ] && \ + git rm infrastructure/server-setup/inventory/${{ github.event.inputs.environment }}.yml && \ + echo "Environment file removed: infrastructure/server-setup/inventory/${{ github.event.inputs.environment }}.yml" || \ + echo "infrastructure/server-setup/inventory/${{ github.event.inputs.environment }}.yml doesn't exist" + - name: Remove docker compose + run: | + [ -f infrastructure/docker-compose.${{ github.event.inputs.environment }}-deploy.yml ] && \ + git rm infrastructure/docker-compose.${{ github.event.inputs.environment }}-deploy.yml && \ + echo "Docker-compose removed" || \ + echo "Docker-compose doesn't exist" + + - name: Update workflows + run: | + workflows=( + ".github/workflows/provision.yml" + ".github/workflows/deploy.yml" + ".github/workflows/seed-data.yml" + ".github/workflows/clear-environment.yml" + ) + path=".on.workflow_dispatch.inputs.environment.options" + + # Check if option already exists in first workflows file + for workflow in "${workflows[@]}" + do + yq e "$path |= map(select(. != \"${{ github.event.inputs.environment }}\"))" -i "$workflow" + echo "Removed option '${{ github.event.inputs.environment }}' from $workflow" + done + + - env: + GH_TOKEN: ${{ secrets.GH_TOKEN }} + name: Remove environment variables and secrets on GitHub + run: | + curl -X DELETE \ + -H "Authorization: Bearer $GH_TOKEN" \ + -H "Accept: application/vnd.github+json" \ + "https://api.github.com/repos/$OWNER/$REPO/environments/$ENVIRONMENT" + - name: Update known-hosts + env: + HOST_IP: ${{ steps.output.outputs.ssh_host }} + HOSTNAME: ${{ steps.output.outputs.hostname }} + run: | + grep -vE '${{ env.HOST_IP }}|${{ env.HOSTNAME }}' infrastructure/known-hosts > infrastructure/known-hosts.tmp + mv infrastructure/known-hosts.tmp infrastructure/known-hosts + + - name: Commit and push changes to ${{ github.repository }} + run: | + git add infrastructure/server-setup/inventory/* \ + infrastructure/known-hosts \ + .github \ + infrastructure/* + git status + git commit -m "Remove environment files for ${{ github.event.inputs.environment }}" + git push diff --git a/.github/workflows/generate-demo-data.yml b/.github/workflows/generate-demo-data.yml new file mode 100644 index 0000000000..9ab7fb25b3 --- /dev/null +++ b/.github/workflows/generate-demo-data.yml @@ -0,0 +1,48 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +name: Generate demo data + +on: + workflow_dispatch: + inputs: + branch: + description: 'Branch to run from' + required: false + default: 'develop' + environment: + type: choice + description: Environment to deploy to + required: true + options: + - production + - qa + - staging + +jobs: + generate-demo-data: + environment: ${{ github.event.inputs.environment }} + runs-on: ubuntu-20.04 + strategy: + matrix: + node-version: [14.17.0] + steps: + - name: Checking out git repo + uses: actions/checkout@v2 + with: + ref: ${{ github.event.inputs.branch }} + - name: Install dependencies + run: yarn install + - name: Start generating test data + run: yarn data-generator + env: + COUNTRY_CONFIG_HOST: ${{ vars.COUNTRY_CONFIG_HOST }} + AUTH_HOST: ${{ vars.AUTH_HOST }} + GATEWAY_HOST: ${{ vars.GATEWAY_HOST }} + CONFIG_HOST: ${{ vars.CONFIG_HOST }} + CONCURRENCY: ${{ vars.CONCURRENCY }} diff --git a/.github/workflows/init-release.yml b/.github/workflows/init-release.yml index 145e1deb08..3adcafe64d 100644 --- a/.github/workflows/init-release.yml +++ b/.github/workflows/init-release.yml @@ -19,6 +19,11 @@ jobs: release_workflow: runs-on: ubuntu-latest steps: + - name: Checkout the repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Determine the Base Branch id: get_base_branch run: | @@ -36,65 +41,20 @@ jobs: else previous_version="$((x)).$((y)).$((z-1))" base_branch="release/$previous_version" + if ! git ls-remote --exit-code --heads origin $base_branch; then + echo "The branch $base_branch does not exist. Please create it before starting a new Hot-fix release." >> GITHUB_STEP_SUMMARY + exit 1 + fi fi - echo "target_branch=master" >> $GITHUB_OUTPUT echo "base_branch=$base_branch" >> $GITHUB_OUTPUT - - - name: Start a new release ${{ inputs.version }} from ${{ steps.get_base_branch.outputs.base_branch }} - uses: hoangvvo/gitflow-workflow-action@0.3.8 - with: - develop_branch: ${{ steps.get_base_branch.outputs.base_branch }} - main_branch: ${{ steps.get_base_branch.outputs.target_branch }} - merge_back_from_main: false - version: ${{ inputs.version }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Checkout the release branch - uses: actions/checkout@v4 - with: - ref: "release/${{ inputs.version }}" - - - name: Clear auto-generated PR comment + + - name: Create a new release branch run: | - REPO="${{ github.repository }}" - PR_BRANCH="release/${{ inputs.version }}" - PR_NUMBER=$(gh pr list --head "$PR_BRANCH" --repo "$REPO" --json number -q '.[0].number') - cd "$GITHUB_WORKSPACE" - if [ -f .github/TEMPLATES/RELEASE_PR_TEMPLATE.md ]; then - BODY=$(jq -Rs . < .github/TEMPLATES/RELEASE_PR_TEMPLATE.md) - else - BODY=$(jq -n --arg body "" '$body') - fi - echo "{\"body\": $BODY}" > body.json - gh api \ - --method PATCH \ - -H "Accept: application/vnd.github.v3+json" \ - /repos/"$REPO"/issues/"$PR_NUMBER" \ - --input body.json - rm body.json - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Update version numbers and CHANGELOG - run: | - cd "$GITHUB_WORKSPACE" - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" + git checkout $base_branch + version="${{ inputs.version }}" + release_branch="release/$version" + git checkout -b $release_branch + git push origin $release_branch - yarn version --new-version ${{ inputs.version }} --no-git-tag-version - git add . - git commit -m "chore: update version to ${{ inputs.version }}" - sed -i '1,2d' CHANGELOG.md - cp CHANGELOG.md COPY_CHANGELOG.md - { - echo "# Changelog" - echo "" - echo "## ${{ inputs.version }} Release Candidate" - echo "" - cat COPY_CHANGELOG.md - } > CHANGELOG.md - git add CHANGELOG.md - git commit -m "docs: update changelog for ${{ inputs.version }} release candidate" - git push origin "release/${{ inputs.version }}" \ No newline at end of file + diff --git a/.github/workflows/provision.yml b/.github/workflows/provision.yml index 5b51987752..11ce2ac82d 100644 --- a/.github/workflows/provision.yml +++ b/.github/workflows/provision.yml @@ -11,6 +11,10 @@ on: type: string description: Environment to deploy to default: all + is_env_staging: + type: boolean + description: Is custom environment a staging like server + default: false workflow_dispatch: inputs: environment: @@ -25,6 +29,14 @@ on: - production - backup - jump + - e2e + - v17 + - pentest + - v19-beta-staging + - v19-beta-prod + - fix-analytics + - mosip + - openfn tag: type: choice description: Select group tag you want to execute @@ -50,6 +62,10 @@ on: - ufw - updates - users + is_env_staging: + type: boolean + description: Is custom environment a staging like server + default: false jobs: get-backup-ssh-key: name: Get backup SSH key @@ -61,7 +77,6 @@ jobs: gh_token: ${{ secrets.GH_TOKEN }} encryption_key: ${{ secrets.GH_ENCRYPTION_PASSWORD }} SSH_KEY: ${{ secrets.SSH_KEY }} - get-jump-ssh-key: name: Get jump SSH key uses: ./.github/workflows/get-secret-from-environment.yml @@ -72,19 +87,35 @@ jobs: gh_token: ${{ secrets.GH_TOKEN }} encryption_key: ${{ secrets.GH_ENCRYPTION_PASSWORD }} SSH_KEY: ${{ secrets.SSH_KEY }} - + get-production-env-name: + environment: ${{ inputs.environment }} + if: inputs.environment == 'staging' || inputs.is_env_staging + runs-on: ubuntu-24.04 + outputs: + environment: ${{ steps.env_name.outputs.environment }} + steps: + - name: Check environment name + id: env_name + run: | + if [ ${{ inputs.environment }} == 'staging' ]; then + echo "environment=production" >> $GITHUB_OUTPUT + else + echo "⚠️ NOTE: Staging like environment: is_env_staging: ${{ inputs.is_env_staging }}" + environment=${{ inputs.environment }} + echo "environment=${environment/staging/prod}" >> $GITHUB_OUTPUT + fi get-production-encryption-key: name: Get production backup encryption key - if: inputs.environment == 'staging' + needs: ['get-production-env-name'] + if: inputs.environment == 'staging' || inputs.is_env_staging uses: ./.github/workflows/get-secret-from-environment.yml with: secret_name: 'BACKUP_ENCRYPTION_PASSPHRASE' - env_name: 'production' + env_name: ${{ needs.get-production-env-name.outputs.environment }} secrets: gh_token: ${{ secrets.GH_TOKEN }} encryption_key: ${{ secrets.GH_ENCRYPTION_PASSWORD }} BACKUP_ENCRYPTION_PASSPHRASE: ${{ secrets.BACKUP_ENCRYPTION_PASSPHRASE }} - provision: name: Provision ${{ inputs.environment }} environment: ${{ inputs.environment }} @@ -101,16 +132,14 @@ jobs: fetch-depth: 0 ref: ${{ github.ref_name }} path: './${{ github.event.repository.name }}' - - name: Insert production encryption key to environment variables - if: inputs.environment == 'staging' && needs.get-production-encryption-key.outputs.environment_exists == 'true' + if: (inputs.environment == 'staging' || inputs.is_env_staging) && needs.get-production-encryption-key.outputs.environment_exists == 'true' run: | echo "${{ needs.get-production-encryption-key.outputs.secret_value }}" | base64 --decode | \ openssl enc -aes-256-cbc -pbkdf2 -d -salt -k "${{ secrets.GH_ENCRYPTION_PASSWORD }}" -out /tmp/backup_encryption_key BACKUP_RESTORE_ENCRYPTION_PASSPHRASE=$(cat /tmp/backup_encryption_key) echo "backup_restore_encryption_passphrase=$BACKUP_RESTORE_ENCRYPTION_PASSPHRASE" >> $GITHUB_ENV echo "::add-mask::$BACKUP_RESTORE_ENCRYPTION_PASSPHRASE" - - name: Set variables for ansible id: ansible-variables run: | @@ -134,7 +163,6 @@ jobs: # @todo @deprecated remove the fallback to secrets.SSH_HOST in OpenCRVS 1.7.0 manager_production_server_ip: ${{ vars.SSH_HOST || secrets.SSH_HOST }} ansible_user: ${{ secrets.SSH_USER }} - - name: Read known hosts run: | cd ${{ github.event.repository.name }} @@ -142,27 +170,23 @@ jobs: sed -i -e '$a\' ./infrastructure/known-hosts cat ./infrastructure/known-hosts >> $GITHUB_ENV echo "EOF" >> $GITHUB_ENV - - name: Install SSH Key uses: shimataro/ssh-key-action@v2 with: key: ${{ secrets.SSH_KEY }} known_hosts: ${{ env.KNOWN_HOSTS }} - - name: Write backup SSH key to file if: needs.get-backup-ssh-key.outputs.environment_exists == 'true' run: | echo "${{ needs.get-backup-ssh-key.outputs.secret_value }}" | base64 --decode | \ openssl enc -aes-256-cbc -pbkdf2 -d -salt -k "${{ secrets.GH_ENCRYPTION_PASSWORD }}" -out /tmp/backup_ssh_private_key chmod 600 /tmp/backup_ssh_private_key - - name: Write jump server SSH key to file if: needs.get-jump-ssh-key.outputs.environment_exists == 'true' run: | echo "${{ needs.get-jump-ssh-key.outputs.secret_value }}" | base64 --decode | \ openssl enc -aes-256-cbc -pbkdf2 -d -salt -k "${{ secrets.GH_ENCRYPTION_PASSWORD }}" -out /tmp/jump_ssh_private_key chmod 600 /tmp/jump_ssh_private_key - - name: Check if backup environment if configured in inventory file if: needs.get-backup-ssh-key.outputs.environment_exists != 'true' run: | @@ -177,7 +201,6 @@ jobs: echo "After that you can proceed with (re)provisioning your staging and production servers." exit 1 fi - - name: Run playbook uses: dawidd6/action-ansible-playbook@v2.8.0 env: diff --git a/.github/workflows/publish-to-dockerhub.yml b/.github/workflows/publish-to-dockerhub.yml index fb97effcb3..80aae18073 100644 --- a/.github/workflows/publish-to-dockerhub.yml +++ b/.github/workflows/publish-to-dockerhub.yml @@ -2,13 +2,9 @@ name: Publish image to Dockerhub run-name: Publish image to Dockerhub from ${{ inputs.branch_name || github.ref_name }} on: push: - branches: - - master - - develop - - main - - 'release*' - tags: - - '*' + branches-ignore: + - 'dependabot/**' + - 'renovate/**' workflow_dispatch: inputs: branch_name: diff --git a/.github/workflows/reset-2fa.yml b/.github/workflows/reset-2fa.yml index c6e8d6a1cc..6fe864bcfd 100644 --- a/.github/workflows/reset-2fa.yml +++ b/.github/workflows/reset-2fa.yml @@ -29,7 +29,7 @@ jobs: - name: Clone country config resource package uses: actions/checkout@v3 with: - fetch-depth: 0 + fetch-depth: 1 path: './${{ github.event.repository.name }}' - name: Read known hosts diff --git a/.github/workflows/restart-droplet.yml b/.github/workflows/restart-droplet.yml new file mode 100644 index 0000000000..810fa76abd --- /dev/null +++ b/.github/workflows/restart-droplet.yml @@ -0,0 +1,77 @@ +name: Restart and mount encrypted drive + +on: + workflow_dispatch: + inputs: + environment: + type: choice + description: Environment to reset + required: true + default: 'qa' + options: + - qa + - staging + - development +jobs: + restart-and-mount: + runs-on: ubuntu-latest + environment: ${{ github.event.inputs.environment }} + steps: + - name: Clone country config resource package + uses: actions/checkout@v3 + with: + fetch-depth: 1 + path: './${{ github.event.repository.name }}' + + - name: Install doctl + run: | + wget https://github.com/digitalocean/doctl/releases/download/v1.46.0/doctl-1.46.0-linux-amd64.tar.gz + tar xf doctl-1.46.0-linux-amd64.tar.gz + sudo mv doctl /usr/local/bin + + - name: Authenticate doctl + env: + DIGITALOCEAN_ACCESS_TOKEN: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} + run: doctl auth init + + - name: Restart Droplet + run: doctl compute droplet-action reboot $(doctl compute droplet list ${{ vars.DIGITAL_OCEAN_DROPLET_NAME }} --format ID --no-header) --wait + + - name: Read known hosts + run: | + cd ${{ github.event.repository.name }} + echo "KNOWN_HOSTS<> $GITHUB_ENV + sed -i -e '$a\' ./infrastructure/known-hosts + cat ./infrastructure/known-hosts >> $GITHUB_ENV + echo "EOF" >> $GITHUB_ENV + + - name: Install SSH Key + uses: shimataro/ssh-key-action@v2 + with: + key: ${{ secrets.SSH_KEY }} + known_hosts: ${{ env.KNOWN_HOSTS }} + + - name: Wait for SSH connection + env: + SSH_USER: ${{ secrets.SSH_USER }} + SSH_HOST: ${{ secrets.SSH_HOST }} + SSH_ARGS: ${{ vars.SSH_ARGS }} + run: | + while ! ssh -o StrictHostKeyChecking=no -o ConnectTimeout=5 $SSH_USER@$SSH_HOST $SSH_ARGS exit 2>/dev/null; do + echo "Waiting for SSH connection..." + sleep 5 + done + echo "SSH connection established." + + - name: Decrypt and restart docker + env: + SSH_USER: ${{ secrets.SSH_USER }} + SSH_HOST: ${{ secrets.SSH_HOST }} + SSH_ARGS: ${{ vars.SSH_ARGS }} + ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }} + run: | + ssh $SSH_USER@$SSH_HOST $SSH_ARGS " + sudo /opt/opencrvs/infrastructure/cryptfs/mount.sh -p $ENCRYPTION_KEY" + + ssh $SSH_USER@$SSH_HOST $SSH_ARGS " + sudo service docker restart" diff --git a/.github/workflows/seed-data.yml b/.github/workflows/seed-data.yml index aa46d21cea..0e4bd32ebd 100644 --- a/.github/workflows/seed-data.yml +++ b/.github/workflows/seed-data.yml @@ -21,6 +21,14 @@ on: - qa - staging - production + - e2e + - v17 + - pentest + - v19-beta-staging + - v19-beta-prod + - fix-analytics + - mosip + - openfn core-image-tag: description: Core DockerHub image tag required: true @@ -28,12 +36,12 @@ jobs: seed-data: environment: ${{ inputs.environment }} runs-on: ubuntu-24.04 + outputs: + outcome: ${{ steps.seed.outcome }} timeout-minutes: 60 - steps: - name: Pull the seed-data image run: docker pull ghcr.io/opencrvs/ocrvs-data-seeder:${{ inputs.core-image-tag }} - - name: Run docker container run: | docker run \ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55aedd2d8e..34f68289ae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,9 @@ jobs: - name: Compile run: yarn test:compilation + - name: Lint + run: yarn lint + - name: Test run: yarn test diff --git a/.github/workflows/trigger-e2e-environment.yml b/.github/workflows/trigger-e2e-environment.yml new file mode 100644 index 0000000000..9f7b3b8524 --- /dev/null +++ b/.github/workflows/trigger-e2e-environment.yml @@ -0,0 +1,226 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +name: Build E2E environment + +on: + pull_request: + types: [opened, synchronize] + workflow_dispatch: + inputs: + pr_number: + description: 'PR number' + required: true + type: string + +concurrency: + group: ${{ inputs.pr_number || github.ref }} + cancel-in-progress: true + +jobs: + e2e: + if: ${{ !contains(github.actor, 'bot') }} + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + + - name: Get PR Information (when manually triggered) + env: + GH_TOKEN: ${{ github.token }} + if: ${{ github.event_name == 'workflow_dispatch' }} + run: | + PR_NUMBER=${{ github.event.inputs.pr_number }} + PR_DATA=$(gh pr view $PR_NUMBER --json headRefName,headRefOid) + BRANCH_NAME=$(echo "$PR_DATA" | jq -r '.headRefName') + HEAD_COMMIT_HASH=$(echo "$PR_DATA" | jq -r '.headRefOid' | cut -c1-7) + echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_ENV + echo "HEAD_COMMIT_HASH=${HEAD_COMMIT_HASH}" >> $GITHUB_ENV + + - name: Get Branch Name and Head Commit Hash (on PR creation) + if: ${{ github.event_name != 'workflow_dispatch' }} + id: vars + run: | + echo "BRANCH_NAME=$(echo ${{ github.head_ref }})" >> $GITHUB_ENV + COMMIT_HASH=$(git rev-parse --short=7 ${{ github.event.pull_request.head.sha }}) + echo "HEAD_COMMIT_HASH=${COMMIT_HASH}" >> $GITHUB_ENV + + - name: Check if branch exists in opencrvs-core repo + run: | + CORE_REPO=https://github.com/opencrvs/opencrvs-core + if git ls-remote --heads $CORE_REPO ${{ env.BRANCH_NAME }} | grep -q "${{ env.BRANCH_NAME }}"; then + COMMIT_HASH=$(git ls-remote $CORE_REPO refs/heads/${{ env.BRANCH_NAME }} | cut -c1-7) + else + COMMIT_HASH=$(git ls-remote $CORE_REPO refs/heads/develop | cut -c1-7) + fi + echo "CORE_COMMIT_HASH=${COMMIT_HASH}" >> $GITHUB_ENV + + - name: Output Variables + run: | + echo "PR Branch: ${{ env.BRANCH_NAME }}" + echo "PR Head Commit Hash: ${{ env.HEAD_COMMIT_HASH }}" + echo "Core Commit Hash: ${{ env.CORE_COMMIT_HASH }}" + + - name: Trigger E2E Workflow + id: dispatch_e2e + uses: actions/github-script@v7 + with: + github-token: ${{ secrets.E2E_WORKFLOWS_TOKEN }} + script: | + function slugify(str) { + return str + .toLowerCase() + .replace(/[^\w\s-]/g, '') + .trim() + .replace(/\s+/g, '-') + .replace(/-+/g, '-') + .substr(0, 30) + .replace(/^[^a-z0-9]+|[^a-z0-9]+$/g, ''); + } + const result = await github.rest.repos.createDispatchEvent({ + owner: 'opencrvs', + repo: 'e2e', + event_type: 'run_e2e', + client_payload: { + actor: '${{ github.actor }}', + 'core-image-tag': '${{ env.CORE_COMMIT_HASH }}', + 'countryconfig-image-tag': '${{ env.HEAD_COMMIT_HASH }}', + stack: slugify('${{ env.BRANCH_NAME }}') + } + }); + + console.log(result); + await new Promise(resolve => setTimeout(resolve, 10000)); + + const runs = await github.rest.actions.listWorkflowRunsForRepo({ + owner: 'opencrvs', + repo: 'e2e', + event: 'repository_dispatch', + per_page: 1 + }); + + if (runs.data.workflow_runs.length > 0) { + const runId = runs.data.workflow_runs[0].id; + console.log(`Captured runId: ${runId}`); + + // Set the runId as an output + core.setOutput('runId', runId); + } else { + throw new Error('No workflow run found.'); + } + + - name: Print link to E2E workflow run + id: print-links + run: | + E2E_RUN_LINK="https://github.com/opencrvs/e2e/actions/runs/${{ steps.dispatch_e2e.outputs.runId }}" + + - name: Wait for Environment Deployment (Deploy Job) + uses: actions/github-script@v7 + with: + github-token: ${{ secrets.E2E_WORKFLOWS_TOKEN }} + script: | + const owner = 'opencrvs'; + const repo = 'e2e'; + const runId = ${{ steps.dispatch_e2e.outputs.runId }}; + const prNumber = ${{ github.event.pull_request.number }}; + + function slugify(str) { + return str + .toLowerCase() + .replace(/[^\w\s-]/g, '') + .trim() + .replace(/\s+/g, '-') + .replace(/-+/g, '-') + .substr(0, 30) + .replace(/^[^a-z0-9]+|[^a-z0-9]+$/g, ''); + } + const branchName = slugify('${{ env.BRANCH_NAME }}'); + const deployMessage = `Your environment is deployed to https://${branchName}.opencrvs.dev.`; + + let deployJobCompleted = false; + + // Check if deploy job has completed + while (!deployJobCompleted) { + const jobs = await github.rest.actions.listJobsForWorkflowRun({ + owner, + repo, + run_id: runId + }); + + const deployJob = jobs.data.jobs.find(job => job.name === 'deploy / seed-data / seed-data'); + if (deployJob && deployJob.status === 'completed') { + deployJobCompleted = true; + + if (deployJob.conclusion !== 'success') { + throw new Error('Deploy job failed'); + } + + console.log('Deploy job completed successfully'); + } + + if (!deployJobCompleted) { + await new Promise(resolve => setTimeout(resolve, 10000)); + } + } + + // Check if the comment already exists + const comments = await github.rest.issues.listComments({ + owner: 'opencrvs', + repo: 'opencrvs-farajaland', + issue_number: prNumber + }); + + const existingComment = comments.data.find(comment => comment.body.includes(deployMessage)); + if (!existingComment) { + // Add PR comment if it doesn't exist + await github.rest.issues.createComment({ + owner: 'opencrvs', + repo: 'opencrvs-farajaland', + issue_number: prNumber, + body: deployMessage + }); + console.log('PR comment added'); + } else { + console.log('PR comment already exists, skipping...'); + } + + - name: Wait for E2E Workflow Completion + uses: actions/github-script@v7 + with: + github-token: ${{ secrets.E2E_WORKFLOWS_TOKEN }} + script: | + const owner = 'opencrvs'; + const repo = 'e2e'; + const runId = ${{ steps.dispatch_e2e.outputs.runId }}; + let status = 'in_progress'; + + while (status === 'in_progress' || status === 'queued') { + const run = await github.rest.actions.getWorkflowRun({ + owner, + repo, + run_id: runId + }); + + status = run.data.status; + console.log(`Current status: ${status}`); + + if (status === 'in_progress' || status === 'queued') { + await new Promise(resolve => setTimeout(resolve, 10000)); + } + } + + if (status === 'completed') { + const conclusion = await github.rest.actions.getWorkflowRun({ + owner, + repo, + run_id: runId + }); + console.log(`Workflow finished with conclusion: ${conclusion.data.conclusion}`); + if (conclusion.data.conclusion !== 'success') { + throw new Error('E2E workflow failed'); + } + } diff --git a/.gitignore b/.gitignore index a6af58c1ff..7bc31b0210 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,9 @@ node_modules package-lock.json +# testing +coverage + # production build @@ -15,11 +18,27 @@ build # But, keep the .gitignore so the folder is created !.secrets/.gitignore .idea -data +/data +.vscode/launch.json .history +src/features/employees/tmp/login-details.json +src/tests/locations.json + +graphql.schema.json + *.tar.gz .secrets .env* -notebooks \ No newline at end of file +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ +notebooks + +ctrf/ + +infrastructure/provision-server/hetzner-cloud-empty-server/.terraform* +infrastructure/provision-server/hetzner-cloud-empty-server/terraform* +infrastructure/provision-server/hetzner-cloud-empty-server/.ssh diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..3662b3700e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "typescript.tsdk": "node_modules/typescript/lib" +} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 1feda0a553..b256fea96d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,7 +71,7 @@ No changes ### Bug fixes -- A configuration example of how to use middle names in a supported way has been added, inspired by [#9369](<(https://github.com/opencrvs/opencrvs-core/issues/9369)>) +- A configuration example of how to use middle names in a supported way has been added, inspired by [#9369](https://github.com/opencrvs/opencrvs-core/issues/9369) - InfluxDB `max-values-per-tag` is now set to unlimited to temporarily fix the following error when clearing data from a deployed environment ``` @@ -126,7 +126,7 @@ In order to make the upgrade easier, there are a couple of steps that need to be ### Breaking changes - `INFORMANT_SIGNATURE` & `INFORMANT_SIGNATURE_REQUIRED` are now deprecated -- Existing implementations relying on database-stored SVGs need to be updated to use the new configuration-based approach. Default certificate templates must be created for each event type, following the convention `${event}-certificate` as the certificate template ID. +- Existing implementations relying on database-stored SVGs need to be updated to use the new configuration-based approach. A migration needs to be run (defined in [migration](https://github.com/opencrvs/opencrvs-core/pull/7813/files#diff-e5472dec87399bb9f73f75ec379ceb6a32ca135bc01dd8d0eb8f7d7aaa0bc0b1)), and default certificate templates must be created for each event type, following the convention `${event}-certificate` as the certificate template ID. - **Roles** The previous `roles.csv` file has been deprecated. It will get removed once you run the upgrade command before pulling in the v1.7 changes. The command automatically generates a `roles.ts` file which can be used as a baseline to configure the roles as per your requirements. - **Github runners upgraded** to latest Ubuntu LTS release 24.04 [#7045](https://github.com/opencrvs/opencrvs-core/issues/7045) and apply sticky node version from .nvmrc [#423](https://github.com/opencrvs/opencrvs-countryconfig/pull/423) @@ -268,10 +268,19 @@ wq.noRecords.draft,No records messages for empty draft tab,No records in my draf ## 1.6.2 +### New features + +- Added a local virtual machine setup for testing Ansible playbooks locally (on MacOS and Ubuntu ). Check [provision.ipynb](infrastructure/local-development/provision.ipynb) for more details. + +### Bug Fixes + +- Fixed `trigger-e2e-environment` workflow failing to run due to a missing env variable & accessing a deprecated property + ## 1.6.1 ### Bug fixes +- Fix a typo in the birth certificate svg code that was causing the birth certificate to fail to render in the `print certified copy` flow. [7886](https://github.com/opencrvs/opencrvs-core/issues/7886) - We make sure that the automatic cleanup job only runs before deployment (instead of cron schedule cleanup). - Previously it was possible MongoDB replica set and users were left randomly uninitialised after a deployment. MongoDB initialisation container now retries on failure. - On some machines 'file' utility was not preinstalled causing provision to fail. We now install the utility if it doesn't exist. @@ -360,13 +369,13 @@ INSERT CSV ROWS IN ENGLISH ONLY - Update template transformer for fields `informantType` and `otherInformantType` that fixes the bug of unavailability of these template fields [#5952](https://github.com/opencrvs/opencrvs-countryconfig/pull/5952) - Fixed missing InitialValue property to set initial values based on an expression -## 1.5.2 (https://github.com/opencrvs/opencrvs-countryconfig/compare/v1.5.1...v1.5.2) +## [1.5.2](https://github.com/opencrvs/opencrvs-farajaland/compare/v1.5.1...v1.5.2) ## Bug fixes - Broken email alerts from low disk space are now fixed [293](https://github.com/opencrvs/opencrvs-countryconfig/pull/293) -## 1.5.0 (https://github.com/opencrvs/opencrvs-countryconfig/compare/v1.4.1...v1.5.0) +## [1.5.0](https://github.com/opencrvs/opencrvs-farajaland/compare/v1.4.1...v1.5.0) ### Breaking changes @@ -438,8 +447,11 @@ Follow the descriptions in the migration notes to re-provision all servers safel - Added SMTP environment variables into the qa compose file to enable QA of SMTP servers. - In the certificate, the 'Place of Certification' now accurately reflects the correct location. - Groom's and Bride's name, printIssue translation variables updated [#124](https://github.com/opencrvs/opencrvs-countryconfig/pull/124) +- Change condition of Number of previous births - Add query mapper for International Postal Code field - Provide env variables for metabase admin credentials +- Remove 'Other' dropdown when informant is mother or father [#7011](https://github.com/opencrvs/opencrvs-core/issues/7011) +- Hide same as other primary address field if the other person's details not available [#7000](https://github.com/opencrvs/opencrvs-core/issues/7000) - Improved formatting of informant name for inProgress declaration emails - There is now an option to print the review page of an event declaration form. The PRINT_DECLARATION feature flag in application config settings can enable this on or off. @@ -508,7 +520,7 @@ validations.invalidDate,The error message that appears when a date field is inva verifyCertificate.certifiedAt,Label for date of certification,Date of certification ``` -## [1.4.1](https://github.com/opencrvs/opencrvs-countryconfig/compare/v1.4.0...v1.4.1) +## [1.4.1](https://github.com/opencrvs/opencrvs-farajaland/compare/v1.4.0...v1.4.1) - Improved logging for emails being sent - Updated default Metabase init file so that it's compatible with the current Metabase version @@ -520,7 +532,7 @@ verifyCertificate.certifiedAt,Label for date of certification,Date of certificat - Copy: All application copy is now located in src/translations as CSV files. This is so that copy would be easily editable in software like Excel and Google Sheets. After this change, `AVAILABLE_LANGUAGES_SELECT` doesn't need to be defined anymore by country config. -## [1.4.0](https://github.com/opencrvs/opencrvs-countryconfig/compare/v1.3.3...v1.4.0) +## [1.4.0](https://github.com/opencrvs/opencrvs-farajaland/compare/v1.3.3...v1.4.0) - Added examples for configuring HTTP-01, DNS-01, and manual HTTPS certificates. By default, development and QA environments use HTTP-01, while others use DNS-01. - All secrets & variables defined in Github Secrets are now passed automatically to the deployment script. @@ -529,6 +541,7 @@ verifyCertificate.certifiedAt,Label for date of certification,Date of certificat - Each environment now has a dedicated docker-compose--deploy.yml. Use `environment:init` to create a new environment and generate a corresponding file for customizable configurations. - 🔒 OpenHIM console is no longer exposed via HTTP. - Ansible playbooks are refactored into smaller task files. +- Resolved the issue of National ID validation to prevent the informant, father, and mother from having the same ID. ### New features @@ -562,13 +575,13 @@ In the next OpenCRVS release v1.5.0, there will be two significant changes: - The `infrastructure` directory and related pipelines will be moved to a new repository. - Both the new infrastructure repository and the OpenCRVS country resource package repositories will start following their own release cycles, mostly independent from the core's release cycle. From this release forward, both packages are released as "OpenCRVS minor compatible" releases, meaning that the OpenCRVS countryconfig 1.3.0- is compatible with OpenCRVS 1.3.0, 1.3.1, 1.3.2, etc. This allows for the release of new hotfix versions of the core without having to publish a new version of the infrastructure or countryconfig. -## [1.3.4](https://github.com/opencrvs/opencrvs-countryconfig/compare/v1.3.3...v1.3.4) +## [1.3.4](https://github.com/opencrvs/opencrvs-farajaland/compare/v1.3.3...v1.3.4) ### Bug fixes - Fix typo in certificate handlebar names -## [1.3.3](https://github.com/opencrvs/opencrvs-countryconfig/compare/v1.3.2...v1.3.3) +## [1.3.3](https://github.com/opencrvs/opencrvs-farajaland/compare/v1.3.2...v1.3.3) ### New features @@ -642,3 +655,5 @@ In the next OpenCRVS release v1.5.0, there will be two significant changes: - Updated translations for form introduction page and sending for approval to reflect the default notification method being email. - Remove hard-coded conditionals from "occupation" field to make it usable in the deceased form + +See [Releases](https://github.com/opencrvs/opencrvs-farajaland/releases) for release notes of older releases. diff --git a/Dockerfile b/Dockerfile index efbbb295fd..b1c9498157 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ COPY package.json package.json COPY tsconfig.json tsconfig.json COPY yarn.lock yarn.lock COPY src src +COPY public public RUN yarn install --production EXPOSE 3040 diff --git a/codegen.yml b/codegen.yml new file mode 100644 index 0000000000..f111cf2285 --- /dev/null +++ b/codegen.yml @@ -0,0 +1,19 @@ +overwrite: true +schema: + - http://localhost:7070/graphql: + headers: + Authorization: 'Bearer ${TOKEN}' +documents: + - 'src/**/*.ts' + - '!src/data-generator/gateway.ts' +generates: + src/data-generator/gateway.ts: + plugins: + - add: + content: '/* DO NOT EDIT! This file is auto-generated by yarn data-generator:generate-types - see `codegen.yml` */' + - 'typescript' + - 'typescript-operations' + + ./graphql.schema.json: + plugins: + - 'introspection' diff --git a/e2e/README.md b/e2e/README.md new file mode 100644 index 0000000000..df05d3bd70 --- /dev/null +++ b/e2e/README.md @@ -0,0 +1,39 @@ +# e2e testing + +### Run against localhost + +`yarn e2e-dev` + +### Run against a deployed environment + +`NODE_TLS_REJECT_UNAUTHORIZED=0 DOMAIN=.opencrvs.dev yarn e2e` + +## How to debug E2E tests on CI + +1. Go to E2E repository https://github.com/opencrvs/e2e +2. Find the `Deploy & run E2E` action run that failed +3. Locate the failing test(s) +4. Under `upload-artifact` step, download the artifact +5. Unzip the downloaded artifact + + ### CLI approach + + 6. run `npx playwright show-report path-to-unzipped-report` and open the link (`Serving HTML report at http://localhost:9323.`) + 7. Select the failing test + 8. Detailed view of the case is opened + 9. Further down, you see screenshots taken during the failure and trace. + 10. Click `trace` thubmnail + + ### Click through UI approach + + 6. Open the `index.html` file in browser + 7. Select the failing test + 8. Detailed view of the case is opened + 9. Further down, you see screenshots taken during the failure and trace. + 10. Download `trace` + 11. Open browser, go to https://trace.playwright.dev + 12. Open the previously downloaded trace .zip + +You are now able to debug the failed test case as it would have happened on your local environment + +![alt text](e2e-debug-steps.png 'E2E debug steps') diff --git a/e2e/assets/528KB-random.png b/e2e/assets/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/e2e/assets/528KB-random.png differ diff --git a/e2e/assets/5MB-random.png b/e2e/assets/5MB-random.png new file mode 100644 index 0000000000..874dcc87b8 Binary files /dev/null and b/e2e/assets/5MB-random.png differ diff --git a/e2e/assets/sign1.png b/e2e/assets/sign1.png new file mode 100644 index 0000000000..47d653327c Binary files /dev/null and b/e2e/assets/sign1.png differ diff --git a/e2e/codegen.yml b/e2e/codegen.yml new file mode 100644 index 0000000000..008be82f5b --- /dev/null +++ b/e2e/codegen.yml @@ -0,0 +1,20 @@ +overwrite: true +schema: + - https://gateway.farajaland-dev.opencrvs.dev/graphql: + headers: + Authorization: 'Bearer ${TOKEN}' +# documents: +# - 'e2e/**/*.ts' +# - '!e2e/**/*.spec.ts' +# - '!e2e/gateway.ts' +generates: + e2e/gateway.ts: + plugins: + - add: + content: '/* DO NOT EDIT! This file is auto-generated by yarn data-generator:generate-types - see `codegen.yml` */' + - 'typescript' + - 'typescript-operations' + + e2e/graphql.schema.json: + plugins: + - 'introspection' diff --git a/e2e/constants.ts b/e2e/constants.ts new file mode 100644 index 0000000000..a09a53f153 --- /dev/null +++ b/e2e/constants.ts @@ -0,0 +1,69 @@ +export const DOMAIN = process.env.DOMAIN || 'farajaland-e2e.opencrvs.dev' +export const SCHEME = process.env.SCHEME || 'https' +export const LOGIN_URL = + process.env.NODE_ENV === 'development' + ? 'http://localhost:3020' + : SCHEME + '://login.' + DOMAIN + +export const AUTH_URL = + process.env.NODE_ENV === 'development' + ? 'http://localhost:4040' + : SCHEME + '://auth.' + DOMAIN + +export const CLIENT_URL = + process.env.NODE_ENV === 'development' + ? 'http://localhost:3000' + : SCHEME + '://register.' + DOMAIN + +export const GATEWAY_HOST = + process.env.NODE_ENV === 'development' + ? 'http://localhost:7070' + : SCHEME + '://gateway.' + DOMAIN + +export const CLIENT_V2_URL = + process.env.NODE_ENV === 'development' + ? 'http://localhost:3000/v2' + : SCHEME + '://register.' + DOMAIN + '/v2' + +/* + * This timeout is to ensure that all previous actions have been completed + * including filling inputs and that the changed values have been reflected + * also to the Redux state. 500ms is selected as a safe value. + */ +export const SAFE_INPUT_CHANGE_TIMEOUT_MS = 500 + +/* + * This timeout ensures that + * the declaration in outbox is sent to backend + * and outbox is now empty + */ +export const SAFE_OUTBOX_TIMEOUT_MS = 30 * 1000 +export const SAFE_WORKQUEUE_TIMEOUT_MS = 5 * 1000 +const TEST_USER_PASSWORD = 'test' + +export const CREDENTIALS = { + FIELD_AGENT: { + USERNAME: 'k.bwalya', + PASSWORD: TEST_USER_PASSWORD + }, + ANOTHER_FIELD_AGENT: { + USERNAME: 'p.gondwe', + PASSWORD: TEST_USER_PASSWORD + }, + REGISTRATION_AGENT: { + USERNAME: 'f.katongo', + PASSWORD: TEST_USER_PASSWORD + }, + LOCAL_REGISTRAR: { + USERNAME: 'k.mweene', + PASSWORD: TEST_USER_PASSWORD + }, + NATIONAL_REGISTRAR: { + USERNAME: 'j.musonda', + PASSWORD: TEST_USER_PASSWORD + }, + NATIONAL_SYSTEM_ADMIN: { + USERNAME: 'j.campbell', + PASSWORD: TEST_USER_PASSWORD + } +} diff --git a/e2e/e2e-debug-steps.png b/e2e/e2e-debug-steps.png new file mode 100644 index 0000000000..c3ba5a99c2 Binary files /dev/null and b/e2e/e2e-debug-steps.png differ diff --git a/e2e/gateway.ts b/e2e/gateway.ts new file mode 100644 index 0000000000..f9a55ef886 --- /dev/null +++ b/e2e/gateway.ts @@ -0,0 +1,2367 @@ +/* DO NOT EDIT! This file is auto-generated by yarn data-generator:generate-types - see `codegen.yml` */ +export type Maybe = T | null +export type InputMaybe = Maybe +export type Exact = { + [K in keyof T]: T[K] +} +export type MakeOptional = Omit & { + [SubKey in K]?: Maybe +} +export type MakeMaybe = Omit & { + [SubKey in K]: Maybe +} +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: string + String: string + Boolean: boolean + Int: number + Float: number + Date: any + DateTime: any + FieldValue: any + Map: any + PlainDate: any +} + +export type Action = + | CreateAction + | DeclareAction + | NotifyAction + | RegisterAction + +export type AdditionalIdWithCompositionId = { + __typename?: 'AdditionalIdWithCompositionId' + compositionId: Scalars['String'] + trackingId: Scalars['String'] +} + +export type Address = { + __typename?: 'Address' + city?: Maybe + country?: Maybe + district?: Maybe + districtName?: Maybe + from?: Maybe + line?: Maybe>> + lineName?: Maybe>> + partOf?: Maybe + postalCode?: Maybe + state?: Maybe + stateName?: Maybe + text?: Maybe + to?: Maybe + type?: Maybe + use?: Maybe +} + +export type AddressInput = { + city?: InputMaybe + country?: InputMaybe + district?: InputMaybe + from?: InputMaybe + line?: InputMaybe> + partOf?: InputMaybe + postalCode?: InputMaybe + state?: InputMaybe + text?: InputMaybe + to?: InputMaybe + type?: InputMaybe + use?: InputMaybe +} + +export enum AddressType { + PrimaryAddress = 'PRIMARY_ADDRESS', + SecondaryAddress = 'SECONDARY_ADDRESS', + Both = 'both', + Physical = 'physical', + Postal = 'postal' +} + +export enum AddressUse { + Home = 'home', + Old = 'old', + Temp = 'temp', + Work = 'work' +} + +export type AdvancedSeachParameters = { + __typename?: 'AdvancedSeachParameters' + childDoB?: Maybe + childDoBEnd?: Maybe + childDoBStart?: Maybe + childFirstNames?: Maybe + childGender?: Maybe + childIdentifier?: Maybe + childLastName?: Maybe + compositionType?: Maybe>> + contactEmail?: Maybe + contactNumber?: Maybe + dateOfEvent?: Maybe + dateOfEventEnd?: Maybe + dateOfEventStart?: Maybe + dateOfRegistration?: Maybe + dateOfRegistrationEnd?: Maybe + dateOfRegistrationStart?: Maybe + deceasedDoB?: Maybe + deceasedDoBEnd?: Maybe + deceasedDoBStart?: Maybe + deceasedFamilyName?: Maybe + deceasedFirstNames?: Maybe + deceasedGender?: Maybe + deceasedIdentifier?: Maybe + declarationJurisdictionId?: Maybe + declarationLocationId?: Maybe + event?: Maybe + eventCountry?: Maybe + eventLocationId?: Maybe + eventLocationLevel1?: Maybe + eventLocationLevel2?: Maybe + eventLocationLevel3?: Maybe + eventLocationLevel4?: Maybe + eventLocationLevel5?: Maybe + eventLocationLevel6?: Maybe + fatherDoB?: Maybe + fatherDoBEnd?: Maybe + fatherDoBStart?: Maybe + fatherFamilyName?: Maybe + fatherFirstNames?: Maybe + fatherIdentifier?: Maybe + informantDoB?: Maybe + informantDoBEnd?: Maybe + informantDoBStart?: Maybe + informantFamilyName?: Maybe + informantFirstNames?: Maybe + informantIdentifier?: Maybe + motherDoB?: Maybe + motherDoBEnd?: Maybe + motherDoBStart?: Maybe + motherFamilyName?: Maybe + motherFirstNames?: Maybe + motherIdentifier?: Maybe + name?: Maybe + nationalId?: Maybe + registrationNumber?: Maybe + registrationStatuses?: Maybe>> + timePeriodFrom?: Maybe + trackingId?: Maybe +} + +export type AdvancedSearchParametersInput = { + brideDoB?: InputMaybe + brideDoBEnd?: InputMaybe + brideDoBStart?: InputMaybe + brideFamilyName?: InputMaybe + brideFirstNames?: InputMaybe + brideIdentifier?: InputMaybe + childDoB?: InputMaybe + childDoBEnd?: InputMaybe + childDoBStart?: InputMaybe + childFirstNames?: InputMaybe + childGender?: InputMaybe + childIdentifier?: InputMaybe + childLastName?: InputMaybe + compositionType?: InputMaybe>> + contactEmail?: InputMaybe + contactNumber?: InputMaybe + dateOfEvent?: InputMaybe + dateOfEventEnd?: InputMaybe + dateOfEventStart?: InputMaybe + dateOfMarriage?: InputMaybe + dateOfRegistration?: InputMaybe + dateOfRegistrationEnd?: InputMaybe + dateOfRegistrationStart?: InputMaybe + deceasedDoB?: InputMaybe + deceasedDoBEnd?: InputMaybe + deceasedDoBStart?: InputMaybe + deceasedFamilyName?: InputMaybe + deceasedFirstNames?: InputMaybe + deceasedGender?: InputMaybe + deceasedIdentifier?: InputMaybe + declarationJurisdictionId?: InputMaybe + declarationLocationId?: InputMaybe + event?: InputMaybe + eventCountry?: InputMaybe + eventLocationId?: InputMaybe + eventLocationLevel1?: InputMaybe + eventLocationLevel2?: InputMaybe + eventLocationLevel3?: InputMaybe + eventLocationLevel4?: InputMaybe + eventLocationLevel5?: InputMaybe + eventLocationLevel6?: InputMaybe + fatherDoB?: InputMaybe + fatherDoBEnd?: InputMaybe + fatherDoBStart?: InputMaybe + fatherFamilyName?: InputMaybe + fatherFirstNames?: InputMaybe + fatherIdentifier?: InputMaybe + groomDoB?: InputMaybe + groomDoBEnd?: InputMaybe + groomDoBStart?: InputMaybe + groomFamilyName?: InputMaybe + groomFirstNames?: InputMaybe + groomIdentifier?: InputMaybe + informantDoB?: InputMaybe + informantDoBEnd?: InputMaybe + informantDoBStart?: InputMaybe + informantFamilyName?: InputMaybe + informantFirstNames?: InputMaybe + informantIdentifier?: InputMaybe + motherDoB?: InputMaybe + motherDoBEnd?: InputMaybe + motherDoBStart?: InputMaybe + motherFamilyName?: InputMaybe + motherFirstNames?: InputMaybe + motherIdentifier?: InputMaybe + name?: InputMaybe + nationalId?: InputMaybe + recordId?: InputMaybe + registrationNumber?: InputMaybe + registrationStatuses?: InputMaybe>> + timePeriodFrom?: InputMaybe + trackingId?: InputMaybe +} + +export type ApproveCorrectionActionInput = { + data: Array +} + +export type AssignmentData = { + __typename?: 'AssignmentData' + avatarURL: Scalars['String'] + firstName?: Maybe + lastName?: Maybe + officeName?: Maybe + practitionerId?: Maybe +} + +export type Attachment = { + __typename?: 'Attachment' + _fhirID?: Maybe + contentType?: Maybe + createdAt?: Maybe + data?: Maybe + description?: Maybe + id: Scalars['ID'] + originalFileName?: Maybe + status?: Maybe + subject?: Maybe + systemFileName?: Maybe + type?: Maybe + uri?: Maybe +} + +export type AttachmentInput = { + _fhirID?: InputMaybe + contentType?: InputMaybe + createdAt?: InputMaybe + data?: InputMaybe + description?: InputMaybe + originalFileName?: InputMaybe + status?: InputMaybe + subject?: InputMaybe + systemFileName?: InputMaybe + type?: InputMaybe + uri?: InputMaybe +} + +export enum AttachmentInputStatus { + Approved = 'approved', + Deleted = 'deleted', + Validated = 'validated' +} + +export type AuditLogItemBase = { + action: Scalars['String'] + ipAddress: Scalars['String'] + practitionerId: Scalars['String'] + time: Scalars['String'] + userAgent: Scalars['String'] +} + +export type Avatar = { + __typename?: 'Avatar' + data: Scalars['String'] + type: Scalars['String'] +} + +export type AvatarInput = { + data: Scalars['String'] + type: Scalars['String'] +} + +export type BirthEventSearchSet = EventSearchSet & { + __typename?: 'BirthEventSearchSet' + childGender?: Maybe + childIdentifier?: Maybe + childName?: Maybe>> + dateOfBirth?: Maybe + fatherDateOfBirth?: Maybe + fatherIdentifier?: Maybe + fathersFirstName?: Maybe + fathersLastName?: Maybe + id: Scalars['ID'] + motherDateOfBirth?: Maybe + motherIdentifier?: Maybe + mothersFirstName?: Maybe + mothersLastName?: Maybe + operationHistories?: Maybe>> + placeOfBirth?: Maybe + registration?: Maybe + type?: Maybe +} + +export type BirthRegResultSet = { + __typename?: 'BirthRegResultSet' + results?: Maybe>> + totalItems?: Maybe +} + +export type BirthRegistration = EventRegistration & { + __typename?: 'BirthRegistration' + _fhirIDMap?: Maybe + attendantAtBirth?: Maybe + birthType?: Maybe + child?: Maybe + childrenBornAliveToMother?: Maybe + createdAt?: Maybe + eventLocation?: Maybe + father?: Maybe + foetalDeathsToMother?: Maybe + history?: Maybe>> + id: Scalars['ID'] + informant?: Maybe + lastPreviousLiveBirth?: Maybe + mother?: Maybe + otherAttendantAtBirth?: Maybe + questionnaire?: Maybe>> + registration?: Maybe + updatedAt?: Maybe + weightAtBirth?: Maybe +} + +export type BirthRegistrationInput = { + _fhirIDMap?: InputMaybe + attendantAtBirth?: InputMaybe + birthType?: InputMaybe + child?: InputMaybe + childrenBornAliveToMother?: InputMaybe + createdAt?: InputMaybe + eventLocation?: InputMaybe + father?: InputMaybe + foetalDeathsToMother?: InputMaybe + informant?: InputMaybe + lastPreviousLiveBirth?: InputMaybe + mother?: InputMaybe + otherAttendantAtBirth?: InputMaybe + questionnaire?: InputMaybe>> + registration?: InputMaybe + updatedAt?: InputMaybe + weightAtBirth?: InputMaybe +} + +export type BookMarkedSearches = { + __typename?: 'BookMarkedSearches' + searchList?: Maybe> +} + +export type BookmarkSearchInput = { + name: Scalars['String'] + parameters: AdvancedSearchParametersInput + userId: Scalars['String'] +} + +export type BookmarkedSeachItem = { + __typename?: 'BookmarkedSeachItem' + name: Scalars['String'] + parameters: AdvancedSeachParameters + searchId: Scalars['String'] +} + +export type Certificate = { + __typename?: 'Certificate' + certificateTemplateId?: Maybe + collector?: Maybe + hasShowedVerifiedDocument?: Maybe + payments?: Maybe>> +} + +export type CertificateInput = { + certificateTemplateId?: InputMaybe + collector?: InputMaybe + hasShowedVerifiedDocument?: InputMaybe + payments?: InputMaybe>> +} + +export type CertificationMetric = { + __typename?: 'CertificationMetric' + eventType: Scalars['String'] + total: Scalars['Float'] +} + +export type CertifyActionInput = { + data: Array +} + +export type Comment = { + __typename?: 'Comment' + comment?: Maybe + createdAt?: Maybe + id: Scalars['ID'] + user?: Maybe +} + +export type CommentInput = { + comment?: InputMaybe + createdAt?: InputMaybe + user?: InputMaybe +} + +export type ComparisonInput = { + eq?: InputMaybe + gt?: InputMaybe + gte?: InputMaybe + in?: InputMaybe> + lt?: InputMaybe + lte?: InputMaybe + ne?: InputMaybe + nin?: InputMaybe> +} + +export type ConfirmRegistrationInput = { + identifiers?: InputMaybe> + registrationNumber: Scalars['String'] +} + +export type ContactPoint = { + __typename?: 'ContactPoint' + system?: Maybe + use?: Maybe + value?: Maybe +} + +export type ContactPointInput = { + system?: InputMaybe + use?: InputMaybe + value?: InputMaybe +} + +export type CorrectionInput = { + attachments: Array + hasShowedVerifiedDocument: Scalars['Boolean'] + location: LocationInput + noSupportingDocumentationRequired: Scalars['Boolean'] + note: Scalars['String'] + otherReason: Scalars['String'] + payment?: InputMaybe + reason: Scalars['String'] + requester: Scalars['String'] + requesterOther?: InputMaybe + values: Array +} + +export type CorrectionMetric = { + __typename?: 'CorrectionMetric' + reason: Scalars['String'] + total: Scalars['Float'] +} + +export type CorrectionPaymentInput = { + _fhirID?: InputMaybe + amount: Scalars['Float'] + attachmentData?: InputMaybe + date: Scalars['Date'] + outcome: PaymentOutcomeType + type: PaymentType +} + +export type CorrectionRejectionInput = { + reason: Scalars['String'] + timeLoggedMS: Scalars['Int'] +} + +export type CorrectionValueInput = { + fieldName: Scalars['String'] + newValue: Scalars['FieldValue'] + oldValue?: InputMaybe + section: Scalars['String'] +} + +export type CreateAction = { + __typename?: 'CreateAction' + createdAt: Scalars['DateTime'] + createdBy: Scalars['String'] + data: Array + type: Scalars['String'] +} + +export type CreatedIds = { + __typename?: 'CreatedIds' + compositionId?: Maybe + isPotentiallyDuplicate?: Maybe + trackingId?: Maybe +} + +export type DeathEventSearchSet = EventSearchSet & { + __typename?: 'DeathEventSearchSet' + dateOfDeath?: Maybe + deceasedGender?: Maybe + deceasedName?: Maybe>> + id: Scalars['ID'] + operationHistories?: Maybe>> + registration?: Maybe + type?: Maybe +} + +export type DeathRegistration = EventRegistration & { + __typename?: 'DeathRegistration' + _fhirIDMap?: Maybe + causeOfDeath?: Maybe + causeOfDeathEstablished?: Maybe + causeOfDeathMethod?: Maybe + createdAt?: Maybe + deathDescription?: Maybe + deceased?: Maybe + eventLocation?: Maybe + father?: Maybe + femaleDependentsOfDeceased?: Maybe + history?: Maybe>> + id: Scalars['ID'] + informant?: Maybe + maleDependentsOfDeceased?: Maybe + mannerOfDeath?: Maybe + medicalPractitioner?: Maybe + mother?: Maybe + questionnaire?: Maybe>> + registration?: Maybe + spouse?: Maybe + updatedAt?: Maybe +} + +export type DeathRegistrationInput = { + _fhirIDMap?: InputMaybe + causeOfDeath?: InputMaybe + causeOfDeathEstablished?: InputMaybe + causeOfDeathMethod?: InputMaybe + createdAt?: InputMaybe + deathDescription?: InputMaybe + deceased?: InputMaybe + eventLocation?: InputMaybe + father?: InputMaybe + femaleDependentsOfDeceased?: InputMaybe + informant?: InputMaybe + maleDependentsOfDeceased?: InputMaybe + mannerOfDeath?: InputMaybe + medicalPractitioner?: InputMaybe + mother?: InputMaybe + questionnaire?: InputMaybe>> + registration?: InputMaybe + spouse?: InputMaybe + updatedAt?: InputMaybe +} + +export type Deceased = { + __typename?: 'Deceased' + deathDate?: Maybe + deceased?: Maybe +} + +export type DeceasedInput = { + deathDate?: InputMaybe + deceased?: InputMaybe +} + +export type DeclarationsStartedMetrics = { + __typename?: 'DeclarationsStartedMetrics' + fieldAgentDeclarations: Scalars['Int'] + hospitalDeclarations: Scalars['Int'] + officeDeclarations: Scalars['Int'] +} + +export type DeclareAction = { + __typename?: 'DeclareAction' + createdAt: Scalars['DateTime'] + createdBy: Scalars['String'] + data: Array + identifiers: Identifiers + type: Scalars['String'] +} + +export type DeclareActionInput = { + data: Array +} + +export type Dummy = { + __typename?: 'Dummy' + dummy: Scalars['String'] +} + +export type DuplicatesInfo = { + __typename?: 'DuplicatesInfo' + compositionId?: Maybe + trackingId?: Maybe +} + +export type Estimation = { + __typename?: 'Estimation' + femaleEstimation: Scalars['Float'] + locationId: Scalars['String'] + locationLevel: Scalars['String'] + maleEstimation: Scalars['Float'] + totalEstimation: Scalars['Float'] +} + +export type Event = { + __typename?: 'Event' + actions: Array + createdAt: Scalars['DateTime'] + id: Scalars['String'] + type: Scalars['String'] + updatedAt: Scalars['DateTime'] +} + +export type EventInput = { + type: Scalars['String'] +} + +export type EventMetrics = { + __typename?: 'EventMetrics' + eventLocationType: Scalars['String'] + gender: Scalars['String'] + practitionerRole: Scalars['String'] + timeLabel: Scalars['String'] + total: Scalars['Int'] +} + +export type EventMetricsByLocation = { + __typename?: 'EventMetricsByLocation' + delayed: Scalars['Int'] + healthFacility: Scalars['Int'] + home: Scalars['Int'] + late: Scalars['Int'] + location: Location + total: Scalars['Int'] +} + +export type EventMetricsByRegistrar = { + __typename?: 'EventMetricsByRegistrar' + delayed: Scalars['Int'] + late: Scalars['Int'] + registrarPractitioner?: Maybe + total: Scalars['Int'] +} + +export type EventMetricsByTime = { + __typename?: 'EventMetricsByTime' + delayed: Scalars['Int'] + healthFacility: Scalars['Int'] + home: Scalars['Int'] + late: Scalars['Int'] + month: Scalars['String'] + time: Scalars['String'] + total: Scalars['Int'] +} + +export type EventProgressData = { + __typename?: 'EventProgressData' + timeInProgress?: Maybe + timeInReadyForReview?: Maybe + timeInReadyToPrint?: Maybe + timeInRequiresUpdates?: Maybe + timeInWaitingForApproval?: Maybe + timeInWaitingForBRIS?: Maybe +} + +export type EventProgressResultSet = { + __typename?: 'EventProgressResultSet' + results?: Maybe>> + totalItems?: Maybe +} + +export type EventProgressSet = { + __typename?: 'EventProgressSet' + dateOfEvent?: Maybe + id: Scalars['ID'] + name?: Maybe>> + progressReport?: Maybe + registration?: Maybe + startedAt?: Maybe + startedBy?: Maybe + startedByFacility?: Maybe + type?: Maybe +} + +export type EventRegistration = { + createdAt?: Maybe + history?: Maybe>> + id: Scalars['ID'] + registration?: Maybe +} + +export type EventSearchResultSet = { + __typename?: 'EventSearchResultSet' + results?: Maybe>> + totalItems?: Maybe +} + +export type EventSearchSet = { + id: Scalars['ID'] + operationHistories?: Maybe>> + registration?: Maybe + type?: Maybe +} + +export enum EventType { + Birth = 'birth', + Death = 'death', + Marriage = 'marriage' +} + +export type FhiridMap = { + composition?: InputMaybe + encounter?: InputMaybe + eventLocation?: InputMaybe + observation?: InputMaybe + questionnaireResponse?: InputMaybe +} + +export type Field = { + __typename?: 'Field' + id: Scalars['String'] + value: Scalars['FieldValue'] +} + +export type FieldInput = { + id: Scalars['String'] + value: Scalars['FieldValue'] +} + +export enum Gender { + Female = 'female', + Male = 'male', + Other = 'other', + Unknown = 'unknown' +} + +export type History = { + __typename?: 'History' + action?: Maybe + certificateTemplateId?: Maybe + certificates?: Maybe>> + comments?: Maybe>> + date?: Maybe + dhis2Notification?: Maybe + documents: Array + duplicateOf?: Maybe + hasShowedVerifiedDocument?: Maybe + input?: Maybe>> + ipAddress?: Maybe + location?: Maybe + noSupportingDocumentationRequired?: Maybe + note?: Maybe + office?: Maybe + otherReason?: Maybe + output?: Maybe>> + payment?: Maybe + potentialDuplicates?: Maybe> + reason?: Maybe + regStatus?: Maybe + requester?: Maybe + requesterOther?: Maybe + signature?: Maybe + statusReason?: Maybe + system?: Maybe + user?: Maybe +} + +export type HumanName = { + __typename?: 'HumanName' + familyName?: Maybe + firstNames?: Maybe + marriedLastName?: Maybe + middleName?: Maybe + use?: Maybe +} + +export type HumanNameInput = { + familyName?: InputMaybe + firstNames?: InputMaybe + marriedLastName?: InputMaybe + middleName?: InputMaybe + use?: InputMaybe +} + +export type Identifier = { + __typename?: 'Identifier' + system?: Maybe + value?: Maybe +} + +export type IdentifierInput = { + type: Scalars['String'] + value: Scalars['String'] +} + +export type Identifiers = { + __typename?: 'Identifiers' + registrationNumber: Scalars['String'] + trackingId: Scalars['String'] +} + +export type IdentityInput = { + fieldsModifiedByIdentity?: InputMaybe>> + id?: InputMaybe + otherType?: InputMaybe + type?: InputMaybe +} + +export type IdentityType = { + __typename?: 'IdentityType' + fieldsModifiedByIdentity?: Maybe>> + id?: Maybe + otherType?: Maybe + type?: Maybe +} + +export type InputOutput = { + __typename?: 'InputOutput' + value: Scalars['FieldValue'] + valueCode: Scalars['String'] + valueId: Scalars['String'] +} + +export type IntegratedSystem = { + __typename?: 'IntegratedSystem' + name?: Maybe + type?: Maybe + username?: Maybe +} + +export enum IntegratingSystemType { + Other = 'OTHER' +} + +export type IssueActionInput = { + data: Array +} + +export type LabelInput = { + label: Scalars['String'] + lang: Scalars['String'] +} + +export type LocalRegistrar = { + __typename?: 'LocalRegistrar' + name: Array> + role: SystemRoleType + signature?: Maybe +} + +export type Location = { + __typename?: 'Location' + _fhirID?: Maybe + address?: Maybe
+ alias?: Maybe> + altitude?: Maybe + description?: Maybe + geoData?: Maybe + hierarchy?: Maybe> + id: Scalars['ID'] + identifier?: Maybe> + latitude?: Maybe + longitude?: Maybe + name?: Maybe + partOf?: Maybe + status?: Maybe + telecom?: Maybe>> + type?: Maybe +} + +export type LocationInput = { + _fhirID?: InputMaybe + address?: InputMaybe + alias?: InputMaybe>> + altitude?: InputMaybe + description?: InputMaybe + geoData?: InputMaybe + identifier?: InputMaybe>> + latitude?: InputMaybe + longitude?: InputMaybe + name?: InputMaybe + partOf?: InputMaybe + status?: InputMaybe + telecom?: InputMaybe>> + type?: InputMaybe +} + +export type LocationStatisticsResponse = { + __typename?: 'LocationStatisticsResponse' + offices: Scalars['Int'] + population?: Maybe + registrars: Scalars['Int'] +} + +export type LocationWiseEstimationMetric = { + __typename?: 'LocationWiseEstimationMetric' + estimated: Scalars['Float'] + locationId: Scalars['String'] + locationName: Scalars['String'] + total: Scalars['Float'] + within1Year: Scalars['Float'] + within5Years: Scalars['Float'] + withinTarget: Scalars['Float'] +} + +export type MarriageEventSearchSet = EventSearchSet & { + __typename?: 'MarriageEventSearchSet' + brideIdentifier?: Maybe + brideName?: Maybe>> + dateOfMarriage?: Maybe + groomIdentifier?: Maybe + groomName?: Maybe>> + id: Scalars['ID'] + operationHistories?: Maybe>> + registration?: Maybe + type?: Maybe +} + +export type MarriageRegistration = EventRegistration & { + __typename?: 'MarriageRegistration' + _fhirIDMap?: Maybe + bride?: Maybe + createdAt?: Maybe + eventLocation?: Maybe + groom?: Maybe + history?: Maybe>> + id: Scalars['ID'] + informant?: Maybe + questionnaire?: Maybe>> + registration?: Maybe + typeOfMarriage?: Maybe + updatedAt?: Maybe + witnessOne?: Maybe + witnessTwo?: Maybe +} + +export type MarriageRegistrationInput = { + _fhirIDMap?: InputMaybe + bride?: InputMaybe + createdAt?: InputMaybe + eventLocation?: InputMaybe + groom?: InputMaybe + informant?: InputMaybe + questionnaire?: InputMaybe>> + registration?: InputMaybe + typeOfMarriage?: InputMaybe + updatedAt?: InputMaybe + witnessOne?: InputMaybe + witnessTwo?: InputMaybe +} + +export type MedicalPractitioner = { + __typename?: 'MedicalPractitioner' + lastVisitDate?: Maybe + name?: Maybe + qualification?: Maybe +} + +export type MedicalPractitionerInput = { + lastVisitDate?: InputMaybe + name?: InputMaybe + qualification?: InputMaybe +} + +export type MixedTotalMetricsResult = + | TotalMetricsByLocation + | TotalMetricsByRegistrar + | TotalMetricsByTime + +export type MonthWiseEstimationMetric = { + __typename?: 'MonthWiseEstimationMetric' + estimated: Scalars['Float'] + month: Scalars['Float'] + total: Scalars['Float'] + within1Year: Scalars['Float'] + within5Years: Scalars['Float'] + withinTarget: Scalars['Float'] + year: Scalars['Float'] +} + +export type Mutation = { + __typename?: 'Mutation' + activateUser?: Maybe + approveBirthRegistrationCorrection: Scalars['ID'] + approveCorrectionEvent: Event + approveDeathRegistrationCorrection: Scalars['ID'] + approveMarriageRegistrationCorrection: Scalars['ID'] + auditUser?: Maybe + bookmarkAdvancedSearch?: Maybe + certifyEvent: Event + changeAvatar?: Maybe + changeEmail?: Maybe + changePassword?: Maybe + changePhone?: Maybe + confirmRegistration: Scalars['ID'] + createBirthRegistration: CreatedIds + createBirthRegistrationCorrection: Scalars['ID'] + createDeathRegistration: CreatedIds + createDeathRegistrationCorrection: Scalars['ID'] + createEvent: Event + createMarriageRegistration: CreatedIds + createMarriageRegistrationCorrection: Scalars['ID'] + createOrUpdateUser: User + deactivateSystem?: Maybe + declareEvent: Event + deleteSystem?: Maybe + issueEvent: Event + markBirthAsCertified: Scalars['ID'] + markBirthAsIssued: Scalars['ID'] + markBirthAsRegistered: Scalars['ID'] + markBirthAsValidated?: Maybe + markBirthAsVerified?: Maybe + markDeathAsCertified: Scalars['ID'] + markDeathAsIssued: Scalars['ID'] + markDeathAsRegistered: Scalars['ID'] + markDeathAsValidated?: Maybe + markDeathAsVerified?: Maybe + markEventAsArchived: Scalars['ID'] + markEventAsDuplicate: Scalars['ID'] + markEventAsNotDuplicate: Scalars['ID'] + markEventAsReinstated?: Maybe + markEventAsUnassigned: Scalars['ID'] + markEventAsVoided: Scalars['ID'] + markMarriageAsCertified: Scalars['ID'] + markMarriageAsIssued: Scalars['ID'] + markMarriageAsRegistered: Scalars['ID'] + markMarriageAsValidated?: Maybe + notifyEvent: Event + reactivateSystem?: Maybe + refreshSystemSecret?: Maybe + registerEvent: Event + registerSystem?: Maybe + reinstateEvent: Event + rejectCorrectionEvent: Event + rejectRegistration: Scalars['ID'] + rejectRegistrationCorrection: Scalars['ID'] + removeBookmarkedAdvancedSearch?: Maybe + requestCorrectionEvent: Event + requestRegistrationCorrection: Scalars['ID'] + resendInvite?: Maybe + resetPasswordInvite?: Maybe + revokeCorrectionEvent: Event + revokeEvent: Event + updateDeathRegistration: Scalars['ID'] + updatePermissions?: Maybe + updateRole: Response + upsertRegistrationIdentifier: Scalars['ID'] + usernameReminder?: Maybe +} + +export type MutationActivateUserArgs = { + password: Scalars['String'] + securityQNAs: Array> + userId: Scalars['String'] +} + +export type MutationApproveBirthRegistrationCorrectionArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationApproveCorrectionEventArgs = { + eventId: Scalars['ID'] + input: ApproveCorrectionActionInput +} + +export type MutationApproveDeathRegistrationCorrectionArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationApproveMarriageRegistrationCorrectionArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationAuditUserArgs = { + action: Scalars['String'] + comment?: InputMaybe + reason: Scalars['String'] + userId: Scalars['String'] +} + +export type MutationBookmarkAdvancedSearchArgs = { + bookmarkSearchInput: BookmarkSearchInput +} + +export type MutationCertifyEventArgs = { + eventId: Scalars['ID'] + input: CertifyActionInput +} + +export type MutationChangeAvatarArgs = { + avatar: AvatarInput + userId: Scalars['String'] +} + +export type MutationChangeEmailArgs = { + email: Scalars['String'] + nonce: Scalars['String'] + userId: Scalars['String'] + verifyCode: Scalars['String'] +} + +export type MutationChangePasswordArgs = { + existingPassword: Scalars['String'] + password: Scalars['String'] + userId: Scalars['String'] +} + +export type MutationChangePhoneArgs = { + nonce: Scalars['String'] + phoneNumber: Scalars['String'] + userId: Scalars['String'] + verifyCode: Scalars['String'] +} + +export type MutationConfirmRegistrationArgs = { + details: ConfirmRegistrationInput + id: Scalars['ID'] +} + +export type MutationCreateBirthRegistrationArgs = { + details: BirthRegistrationInput +} + +export type MutationCreateBirthRegistrationCorrectionArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationCreateDeathRegistrationArgs = { + details: DeathRegistrationInput +} + +export type MutationCreateDeathRegistrationCorrectionArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationCreateEventArgs = { + event: EventInput +} + +export type MutationCreateMarriageRegistrationArgs = { + details: MarriageRegistrationInput +} + +export type MutationCreateMarriageRegistrationCorrectionArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationCreateOrUpdateUserArgs = { + user: UserInput +} + +export type MutationDeactivateSystemArgs = { + clientId: Scalars['ID'] +} + +export type MutationDeclareEventArgs = { + eventId: Scalars['ID'] + input: DeclareActionInput +} + +export type MutationDeleteSystemArgs = { + clientId: Scalars['ID'] +} + +export type MutationIssueEventArgs = { + eventId: Scalars['ID'] + input: IssueActionInput +} + +export type MutationMarkBirthAsCertifiedArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkBirthAsIssuedArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkBirthAsRegisteredArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkBirthAsValidatedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkBirthAsVerifiedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkDeathAsCertifiedArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkDeathAsIssuedArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkDeathAsRegisteredArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkDeathAsValidatedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkDeathAsVerifiedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkEventAsArchivedArgs = { + comment?: InputMaybe + duplicateTrackingId?: InputMaybe + id: Scalars['String'] + reason?: InputMaybe +} + +export type MutationMarkEventAsDuplicateArgs = { + comment?: InputMaybe + duplicateTrackingId?: InputMaybe + id: Scalars['String'] + reason: Scalars['String'] +} + +export type MutationMarkEventAsNotDuplicateArgs = { + id: Scalars['String'] +} + +export type MutationMarkEventAsReinstatedArgs = { + id: Scalars['String'] +} + +export type MutationMarkEventAsUnassignedArgs = { + id: Scalars['String'] +} + +export type MutationMarkEventAsVoidedArgs = { + comment: Scalars['String'] + id: Scalars['String'] + reason: Scalars['String'] +} + +export type MutationMarkMarriageAsCertifiedArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkMarriageAsIssuedArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkMarriageAsRegisteredArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkMarriageAsValidatedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationNotifyEventArgs = { + eventId: Scalars['ID'] + input: NotifyActionInput +} + +export type MutationReactivateSystemArgs = { + clientId: Scalars['ID'] +} + +export type MutationRefreshSystemSecretArgs = { + clientId: Scalars['String'] +} + +export type MutationRegisterEventArgs = { + eventId: Scalars['ID'] + input: RegisterActionInput +} + +export type MutationRegisterSystemArgs = { + system?: InputMaybe +} + +export type MutationReinstateEventArgs = { + eventId: Scalars['ID'] + input: ReinstateActionInput +} + +export type MutationRejectCorrectionEventArgs = { + eventId: Scalars['ID'] + input: RejectCorrectionActionInput +} + +export type MutationRejectRegistrationArgs = { + details: RejectRegistrationInput + id: Scalars['ID'] +} + +export type MutationRejectRegistrationCorrectionArgs = { + details: CorrectionRejectionInput + id: Scalars['ID'] +} + +export type MutationRemoveBookmarkedAdvancedSearchArgs = { + removeBookmarkedSearchInput: RemoveBookmarkedSeachInput +} + +export type MutationRequestCorrectionEventArgs = { + eventId: Scalars['ID'] + input: RequestCorrectionActionInput +} + +export type MutationRequestRegistrationCorrectionArgs = { + details: CorrectionInput + id: Scalars['ID'] +} + +export type MutationResendInviteArgs = { + userId: Scalars['String'] +} + +export type MutationResetPasswordInviteArgs = { + userId: Scalars['String'] +} + +export type MutationRevokeCorrectionEventArgs = { + eventId: Scalars['ID'] + input: RevokeCorrectionActionInput +} + +export type MutationRevokeEventArgs = { + eventId: Scalars['ID'] + input: RevokeActionInput +} + +export type MutationUpdateDeathRegistrationArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationUpdatePermissionsArgs = { + setting: UpdatePermissionsInput +} + +export type MutationUpdateRoleArgs = { + systemRole?: InputMaybe +} + +export type MutationUpsertRegistrationIdentifierArgs = { + id: Scalars['ID'] + identifierType: Scalars['String'] + identifierValue: Scalars['String'] +} + +export type MutationUsernameReminderArgs = { + userId: Scalars['String'] +} + +export type NotificationResult = { + __typename?: 'NotificationResult' + success: Scalars['Boolean'] +} + +export enum NotificationType { + Email = 'EMAIL', + Sms = 'SMS' +} + +export type NotifyAction = { + __typename?: 'NotifyAction' + createdAt: Scalars['DateTime'] + createdBy: Scalars['String'] + data: Array + type: Scalars['String'] +} + +export type NotifyActionInput = { + data: Array +} + +export type ObservationFhirids = { + attendantAtBirth?: InputMaybe + birthType?: InputMaybe + causeOfDeath?: InputMaybe + causeOfDeathEstablished?: InputMaybe + causeOfDeathMethod?: InputMaybe + childrenBornAliveToMother?: InputMaybe + deathDescription?: InputMaybe + femaleDependentsOfDeceased?: InputMaybe + foetalDeathsToMother?: InputMaybe + lastPreviousLiveBirth?: InputMaybe + maleDependentsOfDeceased?: InputMaybe + mannerOfDeath?: InputMaybe + typeOfMarriage?: InputMaybe + weightAtBirth?: InputMaybe +} + +export type OperationHistorySearchSet = { + __typename?: 'OperationHistorySearchSet' + notificationFacilityAlias?: Maybe>> + notificationFacilityName?: Maybe + operatedOn?: Maybe + operationType?: Maybe + operatorName?: Maybe>> + operatorOfficeAlias?: Maybe>> + operatorOfficeName?: Maybe + operatorRole?: Maybe + rejectComment?: Maybe + rejectReason?: Maybe +} + +export type Payment = { + __typename?: 'Payment' + amount: Scalars['Float'] + attachmentURL?: Maybe + date: Scalars['Date'] + id: Scalars['ID'] + outcome: PaymentOutcomeType + type: PaymentType +} + +export type PaymentInput = { + amount?: InputMaybe + data?: InputMaybe + date?: InputMaybe + outcome?: InputMaybe + paymentId?: InputMaybe + type?: InputMaybe +} + +export type PaymentMetric = { + __typename?: 'PaymentMetric' + paymentType: Scalars['String'] + total: Scalars['Float'] +} + +export enum PaymentOutcomeType { + Completed = 'COMPLETED', + Error = 'ERROR', + Partial = 'PARTIAL' +} + +export enum PaymentType { + Manual = 'MANUAL' +} + +export type Person = { + __typename?: 'Person' + _fhirID?: Maybe + address?: Maybe>> + age?: Maybe + ageOfIndividualInYears?: Maybe + birthDate?: Maybe + dateOfMarriage?: Maybe + deceased?: Maybe + detailsExist?: Maybe + educationalAttainment?: Maybe + exactDateOfBirthUnknown?: Maybe + gender?: Maybe + id?: Maybe + identifier?: Maybe>> + maritalStatus?: Maybe + multipleBirth?: Maybe + name?: Maybe>> + nationality?: Maybe>> + occupation?: Maybe + photo?: Maybe>> + reasonNotApplying?: Maybe + telecom?: Maybe>> +} + +export type PersonInput = { + _fhirID?: InputMaybe + address?: InputMaybe>> + age?: InputMaybe + ageOfIndividualInYears?: InputMaybe + birthDate?: InputMaybe + dateOfMarriage?: InputMaybe + deceased?: InputMaybe + detailsExist?: InputMaybe + educationalAttainment?: InputMaybe + gender?: InputMaybe + identifier?: InputMaybe>> + maritalStatus?: InputMaybe + multipleBirth?: InputMaybe + name?: InputMaybe>> + nationality?: InputMaybe>> + occupation?: InputMaybe + photo?: InputMaybe> + reasonNotApplying?: InputMaybe + telecom?: InputMaybe>> +} + +export type Query = { + __typename?: 'Query' + fetchBirthRegistration?: Maybe + fetchDeathRegistration?: Maybe + fetchEventRegistration?: Maybe + fetchLocationWiseEventMetrics?: Maybe> + fetchMarriageRegistration?: Maybe + fetchMonthWiseEventMetrics?: Maybe> + fetchRecordDetailsForVerification?: Maybe + fetchRegistration?: Maybe + fetchRegistrationCountByStatus?: Maybe + fetchRegistrationForViewing?: Maybe + fetchSystem?: Maybe + getDeclarationsStartedMetrics?: Maybe + getEvent: Event + getEventsWithProgress?: Maybe + getLocationStatistics?: Maybe + getRegistrationsListByFilter?: Maybe + getSystemRoles?: Maybe> + getTotalCertifications?: Maybe> + getTotalCorrections?: Maybe> + getTotalMetrics?: Maybe + getTotalPayments?: Maybe> + getUser?: Maybe + getUserAuditLog?: Maybe + getUserByEmail?: Maybe + getUserByMobile?: Maybe + getVSExports?: Maybe + isLeafLevelLocation: Scalars['Boolean'] + listBirthRegistrations?: Maybe + queryPersonByIdentifier?: Maybe + queryPersonByNidIdentifier?: Maybe + queryRegistrationByIdentifier?: Maybe + searchBirthRegistrations?: Maybe>> + searchDeathRegistrations?: Maybe>> + searchEvents?: Maybe + searchFieldAgents?: Maybe + searchUsers?: Maybe + sendNotificationToAllUsers?: Maybe + verifyPasswordById?: Maybe +} + +export type QueryFetchBirthRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchDeathRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchEventRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchLocationWiseEventMetricsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryFetchMarriageRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchMonthWiseEventMetricsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryFetchRecordDetailsForVerificationArgs = { + id: Scalars['String'] +} + +export type QueryFetchRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchRegistrationCountByStatusArgs = { + event?: InputMaybe + locationId?: InputMaybe + status: Array> +} + +export type QueryFetchRegistrationForViewingArgs = { + id: Scalars['ID'] +} + +export type QueryFetchSystemArgs = { + clientId: Scalars['ID'] +} + +export type QueryGetDeclarationsStartedMetricsArgs = { + locationId: Scalars['String'] + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetEventArgs = { + eventId: Scalars['ID'] +} + +export type QueryGetEventsWithProgressArgs = { + compositionType?: InputMaybe>> + count?: InputMaybe + declarationJurisdictionId?: InputMaybe + registrationStatuses?: InputMaybe>> + skip?: InputMaybe + sort?: InputMaybe +} + +export type QueryGetLocationStatisticsArgs = { + locationId?: InputMaybe + populationYear: Scalars['Int'] +} + +export type QueryGetRegistrationsListByFilterArgs = { + event: Scalars['String'] + filterBy: Scalars['String'] + locationId?: InputMaybe + size: Scalars['Int'] + skip: Scalars['Int'] + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetSystemRolesArgs = { + active?: InputMaybe + role?: InputMaybe + sortBy?: InputMaybe + sortOrder?: InputMaybe + title?: InputMaybe + value?: InputMaybe +} + +export type QueryGetTotalCertificationsArgs = { + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetTotalCorrectionsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetTotalMetricsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetTotalPaymentsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetUserArgs = { + userId: Scalars['String'] +} + +export type QueryGetUserAuditLogArgs = { + count: Scalars['Int'] + practitionerId: Scalars['String'] + skip?: InputMaybe + timeEnd?: InputMaybe + timeStart?: InputMaybe +} + +export type QueryGetUserByEmailArgs = { + email: Scalars['String'] +} + +export type QueryGetUserByMobileArgs = { + mobile: Scalars['String'] +} + +export type QueryIsLeafLevelLocationArgs = { + locationId: Scalars['String'] +} + +export type QueryListBirthRegistrationsArgs = { + count?: InputMaybe + from?: InputMaybe + locationIds?: InputMaybe>> + skip?: InputMaybe + status?: InputMaybe + to?: InputMaybe + userId?: InputMaybe +} + +export type QueryQueryPersonByIdentifierArgs = { + identifier: Scalars['ID'] +} + +export type QueryQueryPersonByNidIdentifierArgs = { + country?: InputMaybe + dob?: InputMaybe + nid?: InputMaybe +} + +export type QueryQueryRegistrationByIdentifierArgs = { + identifier: Scalars['ID'] +} + +export type QuerySearchBirthRegistrationsArgs = { + fromDate?: InputMaybe + toDate?: InputMaybe +} + +export type QuerySearchDeathRegistrationsArgs = { + fromDate?: InputMaybe + toDate?: InputMaybe +} + +export type QuerySearchEventsArgs = { + advancedSearchParameters: AdvancedSearchParametersInput + count?: InputMaybe + skip?: InputMaybe + sort?: InputMaybe + sortBy?: InputMaybe> + sortColumn?: InputMaybe + userId?: InputMaybe +} + +export type QuerySearchFieldAgentsArgs = { + count?: InputMaybe + event?: InputMaybe + language?: InputMaybe + locationId?: InputMaybe + primaryOfficeId?: InputMaybe + skip?: InputMaybe + sort?: InputMaybe + status?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QuerySearchUsersArgs = { + count?: InputMaybe + email?: InputMaybe + locationId?: InputMaybe + mobile?: InputMaybe + primaryOfficeId?: InputMaybe + skip?: InputMaybe + sort?: InputMaybe + status?: InputMaybe + systemRole?: InputMaybe + username?: InputMaybe +} + +export type QuerySendNotificationToAllUsersArgs = { + body: Scalars['String'] + locale: Scalars['String'] + subject: Scalars['String'] + type?: InputMaybe +} + +export type QueryVerifyPasswordByIdArgs = { + id: Scalars['String'] + password: Scalars['String'] +} + +export type QuestionnaireQuestion = { + __typename?: 'QuestionnaireQuestion' + fieldId?: Maybe + value?: Maybe +} + +export type QuestionnaireQuestionInput = { + fieldId?: InputMaybe + value?: InputMaybe +} + +export type RecordDetails = BirthRegistration | DeathRegistration + +export enum RegAction { + ApprovedCorrection = 'APPROVED_CORRECTION', + Assigned = 'ASSIGNED', + Corrected = 'CORRECTED', + Downloaded = 'DOWNLOADED', + FlaggedAsPotentialDuplicate = 'FLAGGED_AS_POTENTIAL_DUPLICATE', + MarkedAsDuplicate = 'MARKED_AS_DUPLICATE', + MarkedAsNotDuplicate = 'MARKED_AS_NOT_DUPLICATE', + Reinstated = 'REINSTATED', + RejectedCorrection = 'REJECTED_CORRECTION', + RequestedCorrection = 'REQUESTED_CORRECTION', + Unassigned = 'UNASSIGNED', + Verified = 'VERIFIED', + Viewed = 'VIEWED' +} + +export enum RegStatus { + Archived = 'ARCHIVED', + Certified = 'CERTIFIED', + CorrectionRequested = 'CORRECTION_REQUESTED', + DeclarationUpdated = 'DECLARATION_UPDATED', + Declared = 'DECLARED', + InProgress = 'IN_PROGRESS', + Issued = 'ISSUED', + Registered = 'REGISTERED', + Rejected = 'REJECTED', + Validated = 'VALIDATED', + WaitingValidation = 'WAITING_VALIDATION' +} + +export type RegWorkflow = { + __typename?: 'RegWorkflow' + comments?: Maybe>> + id: Scalars['ID'] + location?: Maybe + office?: Maybe + reason?: Maybe + timeLogged?: Maybe + timestamp?: Maybe + type?: Maybe + user?: Maybe +} + +export type RegWorkflowInput = { + comments?: InputMaybe>> + location?: InputMaybe + reason?: InputMaybe + timeLoggedMS?: InputMaybe + timestamp?: InputMaybe + type?: InputMaybe + user?: InputMaybe +} + +export type RegisterAction = { + __typename?: 'RegisterAction' + createdAt: Scalars['DateTime'] + createdBy: Scalars['String'] + data: Array + identifiers: Identifiers + type: Scalars['String'] +} + +export type RegisterActionInput = { + data: Array +} + +export type Registration = { + __typename?: 'Registration' + _fhirID?: Maybe + assignment?: Maybe + attachments?: Maybe>> + book?: Maybe + brideSignature?: Maybe + certificates?: Maybe>> + contact?: Maybe + contactEmail?: Maybe + contactPhoneNumber?: Maybe + contactRelationship?: Maybe + draftId?: Maybe + duplicates?: Maybe>> + groomSignature?: Maybe + id?: Maybe + inCompleteFields?: Maybe + informantType?: Maybe + informantsSignature?: Maybe + otherInformantType?: Maybe + page?: Maybe + paperFormID?: Maybe + registrationNumber?: Maybe + status?: Maybe>> + trackingId?: Maybe + type?: Maybe + witnessOneSignature?: Maybe + witnessTwoSignature?: Maybe +} + +export type RegistrationCountResult = { + __typename?: 'RegistrationCountResult' + results: Array> + total: Scalars['Int'] +} + +export type RegistrationInput = { + _fhirID?: InputMaybe + attachments?: InputMaybe> + book?: InputMaybe + brideSignature?: InputMaybe + certificates?: InputMaybe>> + changedValues?: InputMaybe> + contactEmail?: InputMaybe + contactPhoneNumber?: InputMaybe + correction?: InputMaybe + draftId?: InputMaybe + groomSignature?: InputMaybe + inCompleteFields?: InputMaybe + informantType?: InputMaybe + informantsSignature?: InputMaybe + location?: InputMaybe + otherInformantType?: InputMaybe + page?: InputMaybe + paperFormID?: InputMaybe + registrationNumber?: InputMaybe + status?: InputMaybe>> + trackingId?: InputMaybe + type?: InputMaybe + witnessOneSignature?: InputMaybe + witnessTwoSignature?: InputMaybe +} + +export type RegistrationSearchSet = { + __typename?: 'RegistrationSearchSet' + assignment?: Maybe + comment?: Maybe + contactEmail?: Maybe + contactNumber?: Maybe + contactRelationship?: Maybe + createdAt?: Maybe + dateOfDeclaration?: Maybe + duplicates?: Maybe>> + eventLocationId?: Maybe + modifiedAt?: Maybe + reason?: Maybe + registeredLocationId?: Maybe + registrationNumber?: Maybe + status?: Maybe + trackingId?: Maybe +} + +export enum RegistrationType { + Birth = 'BIRTH', + Death = 'DEATH', + Marriage = 'MARRIAGE' +} + +export type ReinstateActionInput = { + data: Array +} + +export type Reinstated = { + __typename?: 'Reinstated' + registrationStatus?: Maybe + taskEntryResourceID: Scalars['ID'] +} + +export type RejectCorrectionActionInput = { + data: Array +} + +export type RejectRegistrationInput = { + comment?: InputMaybe + reason: Scalars['String'] +} + +export type RelatedPerson = { + __typename?: 'RelatedPerson' + _fhirID?: Maybe + _fhirIDPatient?: Maybe + address?: Maybe>> + affidavit?: Maybe>> + age?: Maybe + ageOfIndividualInYears?: Maybe + birthDate?: Maybe + dateOfMarriage?: Maybe + deceased?: Maybe + detailsExist?: Maybe + educationalAttainment?: Maybe + exactDateOfBirthUnknown?: Maybe + gender?: Maybe + id?: Maybe + identifier?: Maybe>> + maritalStatus?: Maybe + multipleBirth?: Maybe + name?: Maybe>> + nationality?: Maybe>> + occupation?: Maybe + otherRelationship?: Maybe + photo?: Maybe>> + reasonNotApplying?: Maybe + relationship?: Maybe + telecom?: Maybe>> +} + +export type RelatedPersonInput = { + _fhirID?: InputMaybe + _fhirIDPatient?: InputMaybe + address?: InputMaybe>> + affidavit?: InputMaybe> + age?: InputMaybe + ageOfIndividualInYears?: InputMaybe + birthDate?: InputMaybe + dateOfMarriage?: InputMaybe + deceased?: InputMaybe + detailsExist?: InputMaybe + educationalAttainment?: InputMaybe + exactDateOfBirthUnknown?: InputMaybe + gender?: InputMaybe + id?: InputMaybe + identifier?: InputMaybe>> + maritalStatus?: InputMaybe + multipleBirth?: InputMaybe + name?: InputMaybe>> + nationality?: InputMaybe>> + occupation?: InputMaybe + otherRelationship?: InputMaybe + photo?: InputMaybe> + reasonNotApplying?: InputMaybe + relationship?: InputMaybe + telecom?: InputMaybe>> +} + +export type RemoveBookmarkedSeachInput = { + searchId: Scalars['String'] + userId: Scalars['String'] +} + +export type RequestCorrectionActionInput = { + data: Array +} + +export type Response = { + __typename?: 'Response' + roleIdMap: Scalars['Map'] +} + +export type RevokeActionInput = { + data: Array +} + +export type RevokeCorrectionActionInput = { + data: Array +} + +export type Role = { + __typename?: 'Role' + _id: Scalars['ID'] + labels: Array +} + +export type RoleInput = { + _id?: InputMaybe + labels: Array +} + +export type RoleLabel = { + __typename?: 'RoleLabel' + label: Scalars['String'] + lang: Scalars['String'] +} + +export type SearchFieldAgentResponse = { + __typename?: 'SearchFieldAgentResponse' + avatar?: Maybe + averageTimeForDeclaredDeclarations?: Maybe + creationDate?: Maybe + fullName?: Maybe + practitionerId?: Maybe + primaryOfficeId?: Maybe + role?: Maybe + status?: Maybe + totalNumberOfDeclarationStarted?: Maybe + totalNumberOfInProgressAppStarted?: Maybe + totalNumberOfRejectedDeclarations?: Maybe +} + +export type SearchFieldAgentResult = { + __typename?: 'SearchFieldAgentResult' + results?: Maybe>> + totalItems?: Maybe +} + +export type SearchUserResult = { + __typename?: 'SearchUserResult' + results?: Maybe>> + totalItems?: Maybe +} + +export type SecurityQuestionAnswer = { + answer?: InputMaybe + questionKey?: InputMaybe +} + +export type Signature = { + __typename?: 'Signature' + data?: Maybe + type?: Maybe +} + +export type SignatureInput = { + data: Scalars['String'] + type?: InputMaybe +} + +export type SortBy = { + column: Scalars['String'] + order: Scalars['String'] +} + +export enum Status { + Active = 'active', + Deactivated = 'deactivated', + Disabled = 'disabled', + Pending = 'pending' +} + +export type StatusReason = { + __typename?: 'StatusReason' + text?: Maybe +} + +export type StatusWiseRegistrationCount = { + __typename?: 'StatusWiseRegistrationCount' + count: Scalars['Int'] + status: Scalars['String'] +} + +export type System = { + __typename?: 'System' + _id: Scalars['ID'] + clientId: Scalars['ID'] + integratingSystemType?: Maybe + name: Scalars['String'] + settings?: Maybe + shaSecret: Scalars['ID'] + status: SystemStatus + type: SystemType +} + +export type SystemInput = { + integratingSystemType?: InputMaybe + name: Scalars['String'] + settings?: InputMaybe + type: SystemType +} + +export type SystemRole = { + __typename?: 'SystemRole' + active: Scalars['Boolean'] + id: Scalars['ID'] + roles: Array + value: SystemRoleType +} + +export type SystemRoleInput = { + active?: InputMaybe + id: Scalars['ID'] + roles?: InputMaybe> + value?: InputMaybe +} + +export enum SystemRoleType { + FieldAgent = 'FIELD_AGENT', + LocalRegistrar = 'LOCAL_REGISTRAR', + LocalSystemAdmin = 'LOCAL_SYSTEM_ADMIN', + NationalRegistrar = 'NATIONAL_REGISTRAR', + NationalSystemAdmin = 'NATIONAL_SYSTEM_ADMIN', + PerformanceManagement = 'PERFORMANCE_MANAGEMENT', + RegistrationAgent = 'REGISTRATION_AGENT' +} + +export type SystemSecret = { + __typename?: 'SystemSecret' + clientSecret: Scalars['ID'] + system: System +} + +export type SystemSettings = { + __typename?: 'SystemSettings' + dailyQuota?: Maybe + openIdProviderBaseUrl?: Maybe + openIdProviderClaims?: Maybe + openIdProviderClientId?: Maybe + webhook?: Maybe> +} + +export type SystemSettingsInput = { + dailyQuota?: InputMaybe + webhook?: InputMaybe>> +} + +export enum SystemStatus { + Active = 'active', + Deactivated = 'deactivated' +} + +export enum SystemType { + Health = 'HEALTH', + NationalId = 'NATIONAL_ID', + RecordSearch = 'RECORD_SEARCH', + Webhook = 'WEBHOOK' +} + +export enum TelecomSystem { + Email = 'email', + Fax = 'fax', + Other = 'other', + Pager = 'pager', + Phone = 'phone', + Sms = 'sms', + Url = 'url' +} + +export enum TelecomUse { + Home = 'home', + Mobile = 'mobile', + Old = 'old', + Temp = 'temp', + Work = 'work' +} + +export type TotalMetricsByLocation = { + __typename?: 'TotalMetricsByLocation' + results: Array + total?: Maybe +} + +export type TotalMetricsByRegistrar = { + __typename?: 'TotalMetricsByRegistrar' + results: Array + total?: Maybe +} + +export type TotalMetricsByTime = { + __typename?: 'TotalMetricsByTime' + results: Array + total?: Maybe +} + +export type TotalMetricsResult = { + __typename?: 'TotalMetricsResult' + estimated: Estimation + results: Array +} + +export type TotalVsExport = { + __typename?: 'TotalVSExport' + results?: Maybe> +} + +export type UpdatePermissionsInput = { + clientId: Scalars['String'] + webhook: Array +} + +export type User = { + __typename?: 'User' + avatar?: Maybe + creationDate: Scalars['String'] + device?: Maybe + email?: Maybe + id: Scalars['ID'] + identifier?: Maybe + localRegistrar?: Maybe + mobile?: Maybe + name: Array + practitionerId: Scalars['String'] + primaryOffice?: Maybe + role: Role + searches?: Maybe> + signature?: Maybe + status: Status + systemRole: SystemRoleType + underInvestigation?: Maybe + userMgntUserID: Scalars['ID'] + username?: Maybe +} + +export type UserAuditLogItem = AuditLogItemBase & { + __typename?: 'UserAuditLogItem' + action: Scalars['String'] + ipAddress: Scalars['String'] + practitionerId: Scalars['String'] + time: Scalars['String'] + userAgent: Scalars['String'] +} + +export type UserAuditLogItemWithComposition = AuditLogItemBase & { + __typename?: 'UserAuditLogItemWithComposition' + action: Scalars['String'] + data: AdditionalIdWithCompositionId + ipAddress: Scalars['String'] + practitionerId: Scalars['String'] + time: Scalars['String'] + userAgent: Scalars['String'] +} + +export type UserAuditLogResultItem = + | UserAuditLogItem + | UserAuditLogItemWithComposition + +export type UserAuditLogResultSet = { + __typename?: 'UserAuditLogResultSet' + results: Array + total: Scalars['Int'] +} + +export type UserIdentifierInput = { + system?: InputMaybe + use?: InputMaybe + value?: InputMaybe +} + +export type UserInput = { + device?: InputMaybe + email?: InputMaybe + id?: InputMaybe + identifier?: InputMaybe>> + mobile?: InputMaybe + name: Array + password?: InputMaybe + primaryOffice?: InputMaybe + role?: InputMaybe + signature?: InputMaybe + status?: InputMaybe + systemRole: SystemRoleType + username?: InputMaybe +} + +export type VsExport = { + __typename?: 'VSExport' + createdOn: Scalars['Date'] + endDate: Scalars['Date'] + event: Scalars['String'] + fileSize: Scalars['String'] + startDate: Scalars['Date'] + url: Scalars['String'] +} + +export type VerifyPasswordResult = { + __typename?: 'VerifyPasswordResult' + id?: Maybe + mobile?: Maybe + scrope?: Maybe>> + status?: Maybe + username?: Maybe +} + +export type WebhookInput = { + event: Scalars['String'] + permissions: Array> +} + +export type WebhookPermission = { + __typename?: 'WebhookPermission' + event: Scalars['String'] + permissions: Array +} diff --git a/e2e/helpers.ts b/e2e/helpers.ts new file mode 100644 index 0000000000..bde856088a --- /dev/null +++ b/e2e/helpers.ts @@ -0,0 +1,581 @@ +import { Locator, Page, expect } from '@playwright/test' +import { + AUTH_URL, + CLIENT_URL, + CLIENT_V2_URL, + CREDENTIALS, + GATEWAY_HOST, + SAFE_INPUT_CHANGE_TIMEOUT_MS, + SAFE_OUTBOX_TIMEOUT_MS +} from './constants' +import { format, parseISO } from 'date-fns' +import { isArray, random } from 'lodash' +import fetch from 'node-fetch' + +export async function login(page: Page, username: string, password: string) { + const token = await getToken(username, password) + await page.goto(`${CLIENT_URL}?token=${token}`) + + await expect( + page.locator('#appSpinner').or(page.locator('#pin-input')) + ).toBeVisible() + + await createPIN(page) + + // Navigate to v1 frontpage + await page.goto(`${CLIENT_URL}/registration-home?V2_EVENTS=false`) + return token +} + +export async function createPIN(page: Page) { + await page.click('#pin-input') + for (let i = 1; i <= 8; i++) { + await page.type('#pin-input', `${i % 2}`) + } +} + +export async function logout(page: Page) { + await page.locator('#ProfileMenu-dropdownMenu').click() + await page + .locator('#ProfileMenu-dropdownMenu') + .getByRole('listitem') + .filter({ + hasText: new RegExp('Logout') + }) + .click() + await page.context().clearCookies() +} + +export async function loginToV2( + page: Page, + credentials = CREDENTIALS.LOCAL_REGISTRAR, + skipPin?: boolean, + /** whether to render v2 as first class citizen, sets V2 as the default view. */ + defaultToV2?: boolean +) { + const token = await getToken(credentials.USERNAME, credentials.PASSWORD) + expect(token).toBeDefined() + await page.goto( + `${CLIENT_URL}?token=${token}${defaultToV2 ? '&V2_EVENTS=true' : ''}` + ) + + await expect( + page.locator('#appSpinner').or(page.locator('#pin-input')) + ).toBeVisible() + + if (!skipPin) { + await createPIN(page) + } + + await page.goto(defaultToV2 ? CLIENT_URL : CLIENT_V2_URL) + + return token +} + +export async function getToken(username: string, password: string) { + const authUrl = `${AUTH_URL}/authenticate` + const verifyUrl = `${AUTH_URL}/verifyCode` + + const authResponse = await fetch(authUrl, { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify({ + username: username, + password: password + }) + }) + + const authBody = await authResponse.json() + const verifyResponse = await fetch(verifyUrl, { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify({ + nonce: authBody.nonce, + code: '000000' + }) + }) + + const verifyBody = await verifyResponse.json() + + return verifyBody.token +} + +export async function getClientToken(client_id: string, client_secret: string) { + const authUrl = `${AUTH_URL}/token?client_id=${client_id}&client_secret=${client_secret}&grant_type=client_credentials` + + const authResponse = await fetch(authUrl, { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + } + }) + + const authBody = await authResponse.json() + + return authBody.access_token +} + +type DeclarationSection = + | 'child' + | 'informant' + | 'father' + | 'mother' + | 'documents' + | 'preview' + | 'groom' + | 'bride' + | 'marriageEvent' + | 'witnessOne' + | 'witnessTwo' +type CorrectionSection = 'summary' +type V2ReviewSection = 'review' + +export const goToSection = async ( + page: Page, + section: DeclarationSection | CorrectionSection | V2ReviewSection +) => { + while (!page.url().includes(`/${section}`)) { + await page.getByRole('button', { name: 'Continue' }).click() + } +} + +/* + Generates a random past date + at least 'minAge' years + 'offset' days ago + and up to an additional 'range' days earlier +*/ +export const getRandomDate = ( + minAge: number, + range: number, + offset: number = 0 +) => { + const randomDate = new Date() + randomDate.setDate( + new Date().getDate() - + Math.random() * range - + minAge * 365 - + (minAge + 3) / 4 - + offset + ) + const [yyyy, mm, dd] = randomDate.toISOString().split('T')[0].split('-') + return { dd, mm, yyyy } +} + +export async function ensureLoginPageReady(page: Page) { + /* + * Wait until config for loading page has been loaded + */ + await page.waitForSelector('#Box img', { state: 'attached' }) + await page.waitForFunction(() => { + const img = document.querySelector('#Box img')! + return img && img.src && img.src.trim() !== '' + }) +} + +export async function validateSectionButtons(page: Page) { + await expect(page.getByText('Continue', { exact: true })).toBeVisible() + await expect(page.getByText('Exit', { exact: true })).toBeVisible() + await expect(page.getByText('Save & Exit', { exact: true })).toBeVisible() + await expect(page.locator('#eventToggleMenu-dropdownMenu')).toBeVisible() +} + +export const uploadImage = async ( + page: Page, + locator: Locator, + image = './e2e/assets/528KB-random.png' +) => { + const fileChooserPromise = page.waitForEvent('filechooser') + await locator.click() + const fileChooser = await fileChooserPromise + await fileChooser.setFiles(image) + return fileChooser +} + +/** + * @page - page object + * @sectionLocator - locator for the section e.g. mother / father + * @sectionTitle - title of the section to e.g. National ID / Passport + * @buttonLocator - locator for the button to upload the image + */ +export const uploadImageToSection = async ({ + page, + sectionLocator, + sectionTitle, + buttonLocator +}: { + page: Page + sectionLocator: Locator + buttonLocator: Locator + sectionTitle: string +}) => { + await sectionLocator.getByText('Select...').click() + await sectionLocator.getByText(sectionTitle, { exact: true }).click() + + await uploadImage(page, buttonLocator) +} + +export const expectAddress = async ( + locator: Locator, + address: { [key: string]: any }, + isDeletion?: boolean +) => { + const addressKeys = [ + 'country', + + 'state', + 'province', + + 'district', + + 'village', + 'town', + 'city', + + 'residentialArea', + 'addressLine1', + + 'street', + 'addressLine2', + + 'number', + 'addressLine3', + + 'postcodeOrZip', + 'postalCode', + 'zipCode' + ] + + if (isArray(address.line)) { + address.addressLine1 = address.line[2] + address.addressLine2 = address.line[1] + address.addressLine3 = address.line[0] + } + + const texts = addressKeys + .map((key) => address[key]) + .filter((value) => Boolean(value)) + + if (isDeletion) { + const deletionLocators = await locator.getByRole('deletion').all() + for (let i = 0; i < texts.length; i++) { + await expect(deletionLocators[getDeletionPosition(i)]).toContainText( + texts[i] + ) + } + } else await expectTexts(locator, texts) +} + +/* + The deletion section is formatted like bellow: + '-' + 'Farajaland' + 'Central' + 'Ibombo' + 'Example Town' / 'Example village' + 'Mitali Residential Area' + '4/A' + '1324' + +*/ +const getDeletionPosition = (i: number) => i + 1 // for the extra '-' at the beginning + +export const expectTexts = async (locator: Locator, texts: string[]) => { + for (const text of texts) { + await expect(locator).toContainText(text) + } +} + +export const expectTextWithChangeLink = async ( + locator: Locator, + texts: string[] +) => { + await expectTexts(locator, texts) + await expect(locator).toContainText('Change') +} + +export const getLocationNameFromFhirId = async (fhirId: string) => { + const res = await fetch(`${GATEWAY_HOST}/location/${fhirId}`) + const location = (await res.json()) as fhir.Location + return location.name +} + +export async function continueForm(page: Page, label: string = 'Continue') { + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + return page.getByText(label, { exact: true }).click() +} + +export async function goBackToReview(page: Page) { + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + await page.getByRole('button', { name: 'Back to review' }).click() +} + +export const formatDateTo_yyyyMMdd = (date: string) => + format(parseISO(date), 'yyyy-MM-dd') + +export const formatDateTo_ddMMMMyyyy = (date: string) => + format(parseISO(date), 'dd MMMM yyyy') + +export const formatDateTo_dMMMMyyyy = (date: string) => + format(parseISO(date), 'd MMMM yyyy') + +/* + Date() object takes 0-indexed month, + but month coming to the method is 1-indexed +*/ +export const formatDateObjectTo_ddMMMMyyyy = ({ + yyyy, + mm, + dd +}: { + yyyy: string + mm: string + dd: string +}) => format(new Date(Number(yyyy), Number(mm) - 1, Number(dd)), 'dd MMMM yyyy') + +/* + Date() object takes 0-indexed month, + but month coming to the method is 1-indexed +*/ +export const formatDateObjectTo_dMMMMyyyy = ({ + yyyy, + mm, + dd +}: { + yyyy: string + mm: string + dd: string +}) => format(new Date(Number(yyyy), Number(mm) - 1, Number(dd)), 'd MMMM yyyy') + +/* + Date() object takes 0-indexed month, + but month coming to the method is 1-indexed +*/ +export const formatDateObjectTo_yyyyMMdd = ({ + yyyy, + mm, + dd +}: { + yyyy: string + mm: string + dd: string +}) => format(new Date(Number(yyyy), Number(mm) - 1, Number(dd)), 'yyyy-MM-dd') + +export const joinValuesWith = ( + values: (string | number | null | undefined)[], + separator = ' ' +) => { + return values.filter(Boolean).join(separator) +} + +type PersonOrName = { + firstNames?: string + familyName?: string + [key: string]: any +} +export const formatName = (name: PersonOrName) => { + const nameArray = [] + if (name.firstNames) nameArray.push(name.firstNames) + if (name.familyName) nameArray.push(name.familyName) + return joinValuesWith(nameArray) +} + +export const drawSignature = async ( + page: Page, + modalLocator: + | 'review____signature_canvas_element' + | 'brideSignature_modal' + | 'groomSignature_modal' + | 'witnessOneSignature_modal' + | 'witnessTwoSignature_modal' + | 'informantSignature_modal' = 'informantSignature_modal', + includeCanvas: boolean = true +) => { + const canvasLocator = includeCanvas + ? `#${modalLocator} canvas` + : `#${modalLocator}` + + const canvas = page.locator(canvasLocator) + const rect = await canvas.boundingBox() + + expect(rect).toBeTruthy() + if (rect) { + const center = { + x: rect.x + rect.width / 2, + y: rect.y + rect.height / 2 + } + + const points = Array(10) + .fill(null) + .map(() => ({ + x: random(0.05, 0.95), + y: random(0.05, 0.95) + })) + + await page.mouse.move(center.x, center.y) + await page.mouse.down() + for (const point of points) { + await page.mouse.move( + rect.x + point.x * rect.width, + rect.y + point.y * rect.height + ) + } + await page.mouse.up() + } +} + +export const expectOutboxToBeEmpty = async (page: Page) => { + /* + * This is to ensure the following condition is asserted + * after the outbox has the declaration + */ + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + + await expect(page.locator('#navigation_outbox')).not.toContainText('1', { + timeout: SAFE_OUTBOX_TIMEOUT_MS + }) +} + +// This suffix increases randomness of a name +export const generateRandomSuffix = () => { + const vowels = 'aeiou' + const consonants = 'bcdfghjklmnpqrstvwxyz' + + const randomVowel = vowels.charAt(Math.floor(Math.random() * vowels.length)) + const randomConsonant = consonants.charAt( + Math.floor(Math.random() * consonants.length) + ) + + return randomConsonant + randomVowel +} + +type ActionMenuOptions = + | 'Assign' + | 'Correct record' + | 'Print certified copy' + | 'Review declaration' + | 'Update declaration' + | 'Review correction request' + | 'View' + | 'Validate' + | 'Review' + +export const getAction = (page: Page, option: ActionMenuOptions) => { + return page + .locator('#action-dropdownMenu') + .getByRole('listitem') + .filter({ + hasText: new RegExp(option) + }) +} + +export const assignRecord = async (page: Page) => { + await page.getByLabel('Assign record').click() + if ( + await page.getByRole('button', { name: 'Assign', exact: true }).isVisible() + ) + await page.getByRole('button', { name: 'Assign', exact: true }).click() +} + +/** + Opens the record audit view of a record with given trackingId or name + */ +export const auditRecord = async ({ + page, + trackingId, + name +}: { + page: Page + trackingId?: string + name: string +}) => { + if (trackingId) { + await page + .getByRole('textbox', { name: 'Search for a tracking ID' }) + .fill(trackingId) + + await page.getByRole('button', { name: 'Search' }).click() + await page.getByRole('button', { name, exact: true }).click() + } else { + await page.locator('#searchType').getByText('Tracking ID').click() + await page.locator('li:has(svg) >> text=Name').click() + await page.getByRole('textbox', { name: 'Search for a name' }).fill(name) + await page.getByRole('button', { name: 'Search' }).click() + await page.getByRole('button', { name, exact: true }).click() + } +} + +const post = async ({ + query, + variables, + headers +}: { + query: string + variables: Record + headers: Record +}) => { + const response = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + ...headers + }, + body: JSON.stringify({ + variables, + query + }) + }) + + if (!response.ok) { + throw new Error(`not ok: ${await response.text()}`) + } + + return response.json() as Promise<{ data: T }> +} + +type GetUser = { + getUser: { + primaryOffice: { + hierarchy: Array<{ + id: string + }> + } + } +} + +export const fetchUserLocationHierarchy = async ( + userId: string, + { headers }: { headers: Record } +) => { + const res = await post({ + query: /* GraphQL */ ` + query fetchUser($userId: String!) { + getUser(userId: $userId) { + primaryOffice { + hierarchy { + id + } + } + } + } + `, + variables: { userId }, + headers + }) + return res.data.getUser.primaryOffice.hierarchy.map(({ id }) => id) +} + +export async function expectRowValueWithChangeButton( + page: Page, + fieldName: string, + assertionText: string +) { + await expect(page.getByTestId(`row-value-${fieldName}`)).toContainText( + assertionText + ) + + await expect(page.getByTestId(`change-button-${fieldName}`)).toBeVisible() +} diff --git a/e2e/mock-network-conditions.ts b/e2e/mock-network-conditions.ts new file mode 100644 index 0000000000..9ae05aa074 --- /dev/null +++ b/e2e/mock-network-conditions.ts @@ -0,0 +1,54 @@ +import { Page } from '@playwright/test' + +export const NETWORK_CONDITIONS = { + default: { + offline: false, + downloadThroughput: -1, + uploadThroughput: -1, + latency: 0 + }, + offline: { + offline: true, + downloadThroughput: 0, + uploadThroughput: 0, + latency: 0, + connectionType: 'none' + }, + cellular2G: { + offline: false, + downloadThroughput: (250 * 1024) / 8, + uploadThroughput: (50 * 1024) / 8, + latency: 300, + connectionType: 'cellular2g' + }, + cellular3G: { + offline: false, + downloadThroughput: (750 * 1024) / 8, + uploadThroughput: (250 * 1024) / 8, + latency: 100, + connectionType: 'cellular3g' + }, + cellular4G: { + offline: false, + downloadThroughput: (4 * 1024 * 1024) / 8, + uploadThroughput: (3 * 1024 * 1024) / 8, + latency: 20, + connectionType: 'cellular4g' + } +} as const + +export async function mockNetworkConditions( + page: Page, + connection: keyof typeof NETWORK_CONDITIONS +) { + const client = await page.context().newCDPSession(page) + await client.send('Network.enable') + await client.send( + 'Network.emulateNetworkConditions', + NETWORK_CONDITIONS[connection] + ) +} + +export async function restoreNetworkConditions(page: Page) { + await mockNetworkConditions(page, 'default') +} diff --git a/e2e/testcases/applications/17-validate-user-can-correct-a-record-from-audit-record-page.spec.ts b/e2e/testcases/applications/17-validate-user-can-correct-a-record-from-audit-record-page.spec.ts new file mode 100644 index 0000000000..bcd753e542 --- /dev/null +++ b/e2e/testcases/applications/17-validate-user-can-correct-a-record-from-audit-record-page.spec.ts @@ -0,0 +1,121 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + createPIN, + getAction, + getToken, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { createDeclaration } from '../birth/helpers' +import TEST_DATA_1 from '../birth/data/1-both-mother-and-father.json' +import { CREDENTIALS } from '../../constants' + +test.describe + .serial('17. Validate user can correct a record from audit record page', () => { + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('17.0 Create Declaration', async () => { + const token = await getToken('k.mweene', 'test') + const res = await createDeclaration(token, { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: TEST_DATA_1['Child details'].Sex.toLowerCase() as 'male' + }, + informant: { + type: TEST_DATA_1['Informant details'][ + 'Relationship to child' + ].toUpperCase() as 'MOTHER' + }, + attendant: { + type: TEST_DATA_1['Child details'][ + 'Attendant at birth' + ].toUpperCase() as 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + }) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + }) + + test('17.1 Go to ready to print tab > search for a certified record > click any application not downloaded', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await page.getByRole('button', { name: 'Ready to print' }).click() + await page.locator('#name_0').click() + + /* + * Expected result: should + * - Navigate to record audit page + * - Correct record option should be disabled + * - Print option should be disabled + */ + await page.getByRole('button', { name: 'Action' }).first().click() + + await expect(getAction(page, 'Correct record')).toHaveAttribute('disabled') + + await expect(getAction(page, 'Print certified copy')).toHaveAttribute( + 'disabled' + ) + + expect(page.url().includes('record-audit')) + }) + + // @TODO: This test has been causing flakyness on the CI pipeline + test.fixme('17.2 Click download > click assign', async () => { + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + + /* + * Expected result: should + * - Correct record option should not be disabled + * - Print option should not be disabled + */ + await expect(getAction(page, 'Correct record')).not.toHaveAttribute( + 'disabled', + // Add timeout to avoid flakyness + { timeout: 30000 } + ) + + await expect(getAction(page, 'Print certified copy')).not.toHaveAttribute( + 'disabled' + ) + }) + + // @TODO: This test has been causing flakyness on the CI pipeline + test.fixme('17.3 Click "Correct record"', async () => { + await getAction(page, 'Correct record').click() + + /* + * Expected result: should show correct record page + */ + await expect( + page.getByRole('heading', { name: 'Correct record' }) + ).toBeVisible() + expect(page.url().includes('correction')) + }) +}) diff --git a/e2e/testcases/birth/1-birth-event-declaration.spec.ts b/e2e/testcases/birth/1-birth-event-declaration.spec.ts new file mode 100644 index 0000000000..c71d989bb1 --- /dev/null +++ b/e2e/testcases/birth/1-birth-event-declaration.spec.ts @@ -0,0 +1,600 @@ +import { expect, test, type Page } from '@playwright/test' +import { createPIN, getToken, login } from '../../helpers' +import { createDeclaration } from './helpers' + +import TEST_DATA_1 from './data/1-both-mother-and-father.json' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' + +test.describe('1. Birth event declaration', () => { + test.describe.serial('Fill all form sections. Save & Exit', () => { + let page: Page + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1. Navigate to the birth event declaration page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await expect(page.getByText('New Declaration')).toBeVisible() + await expect(page.getByText('Event type')).toBeVisible() + }) + + test.describe('1.2. Validate event selection page', async () => { + test('1.2.1 Validate the contents of the event type page', async () => { + /* + * Expected result: should show + * - Radio buttons of the events + * - Continue button + * - Exit button + */ + await expect(page.getByLabel('Birth')).toBeVisible() + await expect(page.getByLabel('Death')).toBeVisible() + await expect(page.getByLabel('Marriage')).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Exit' })).toBeVisible() + }) + + test('1.2.2 Click the "Continue" button without selecting any event', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should throw an error as below: + * "Please select the type of event" + */ + await expect( + page.getByText('Please select the type of event') + ).toBeVisible() + }) + + test('1.2.3 Select the "Birth" event and click "Continue" button', async () => { + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: User should navigate to the "Introduction" page + */ + }) + }) + + test.describe('1.3 Validate "Introduction" page', async () => { + test('1.3.1 Validate the contents of introduction page', async () => { + /* + * Expected result: should show + * - verbiage of birth event introduction + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + // await expect(page.getByLabel('Continue')).toBeVisible() + await expect( + page.getByText( + 'Introduce the birth registration process to the informant' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test('1.3.2 Verify the verbiage of introduction page of birth event', async () => { + /* + * Expected result: should show + * - I am going to help you make a declaration of birth. + * - As the legal Informant it is important that all the information provided by you is accurate. + * - Once the declaration is processed you will receive an email to tell you + * when to visit the office to collect the certificate - Take your ID with you. + * - Make sure you collect the certificate. A birth certificate is critical for this child, + * especially to make their life easy later on. It will help to access health services, school examinations and government benefits. + */ + await expect( + page.getByText('I am going to help you make a declaration of birth.') + ).toBeVisible() + await expect( + page.getByText( + 'As the legal Informant it is important that all the information provided by you is accurate.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Once the declaration is processed you will receive an email to tell you when to visit the office to collect the certificate - Take your ID with you.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Make sure you collect the certificate. A birth certificate is critical for this child, especially to make their life easy later on. It will help to access health services, school examinations and government benefits.' + ) + ).toBeVisible() + }) + + test('1.3.3 Click the "continue" button', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should navigate to the "Child details" page + */ + await expect(page.getByText("Child's details")).toBeVisible() + }) + + test.describe('1.4 Validate "Child Details" page', async () => { + test('1.4.1 Validate the contents of Child details page', async () => { + /* + * Expected result: should see + * - Child details block + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.4.2 Validate Child details block', async () => {}) + + test('1.4.3 Click "continue"', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to 'informant details' page + */ + await expect(page.getByText("Informant's details")).toBeVisible() + }) + }) + + test.describe('1.5 Validate "Informant details" page', async () => { + test('1.5.1 Validate the contents of informant details page', async () => { + /* + * Expected result: should see + * - Relationship to child dropdown + * - Phone number field + * - Email address field + * - Continue button + * - Exit button + * - Save &exit button + * - 3dot menu (delete option) + */ + await expect(page.getByText('Relationship to child')).toBeVisible() + await expect(page.getByText('Phone number')).toBeVisible() + await expect(page.getByText('Email')).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + // This test will fail + test.skip('1.5.2 Click the "continue" button without selecting any relationship to child', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should throw error: + * - Required for registration + */ + await expect(page.getByText("Informant's details")).toBeVisible() + await expect( + page.getByText('Required for registration') + ).toBeVisible() + }) + + test('1.5.3 Select eny option in relatinship to child and click the "continue" button', async () => { + await page.getByText('Select').click() + await page.getByText('Mother', { exact: true }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "mother's details" page + */ + await expect( + page.getByText("Mother's details", { exact: true }) + ).toBeVisible() + }) + }) + }) + + test.describe('1.6 Validate "Mother Details" page', async () => { + test("1.6.1 validate the contents of mother's details page", async () => { + /* + * Expected result: should see + * - Mother's details block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText("Mother's details", { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip("1.6.2 Validate Mother's details block", async () => {}) + + test('1.6.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Father's details" page + */ + await expect( + page.getByText("Father's details", { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.7 Validate "Father Details" page', async () => { + test("1.7.1 validate the contents of Father's details page", async () => { + /* + * Expected result: should see + * - Father's details block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText("Father's details", { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip("1.7.2 Validate Father's details block", async () => {}) + + test('1.7.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Supporting documents" page + */ + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.8 Validate "Supporting Document" page', async () => { + test('1.8.1 validate the contents of Supporting Document page', async () => { + /* + * Expected result: should see + * - Supporting Document block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.8.2 Validate Supporting Document block', async () => {}) + + test('1.8.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Review" page + */ + await expect( + page + .getByRole('button', { name: 'Send for review' }) + .or(page.getByRole('button', { name: 'Register' })) + ).toBeVisible() + }) + }) + + test.describe('1.9 Validate "Save & Exit" Button ', async () => { + test('1.9.1 Click the "Save & Exit" button from any page', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + + /* + * Expected result: should open modal with: + * - Title: Save & Exit + * - Helper text: All inputted data will be kept secure for future editing. + * Are you ready to save any changes to this declaration form? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeVisible() + await expect( + page.getByText( + 'All inputted data will be kept secure for future editing. Are you ready to save any changes to this declaration form?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Confirm' }) + ).toBeVisible() + }) + + test('1.9.2 Click Cancel', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeHidden() + }) + + test('1.9.3 Click Confirm', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to "my-drafts" tab + * - find the declared birth event record on this page list with saved data + */ + await expect(page.locator('#content-name')).toHaveText('My drafts') + await expect(page.getByText(/seconds ago/)).toBeVisible() + }) + }) + }) + test.describe('1.10 Validate "Exit" Button', async () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Exit', exact: true }).click() + }) + + test('1.10.1 Click the "Exit" button from any page', async ({ page }) => { + /* + * Expected result: should open modal with: + * - Title: Exit without saving changes? + * - Helper text: You have unsaved changes on your declaration form. Are you sure you want to exit without saving? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeVisible() + await expect( + page.getByText( + 'You have unsaved changes on your declaration form. Are you sure you want to exit without saving?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.10.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.10.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + await page.waitForTimeout(500) // This page renders twice at first + + await expect( + page.locator('#content-name', { hasText: 'My drafts' }) + ).toBeVisible() + await expect(page.getByText(/seconds ago/)).toBeHidden() + }) + }) + + test.describe('1.11 Validate "Delete Declaration" Button ', async () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#eventToggleMenu-dropdownMenu').click() + await page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + .click() + }) + + test('1.11.1 Click the "Delete Declaration" button from any page', async ({ + page + }) => { + /* + * Expected result: should open modal with: + * - Title: Delete draft? + * - Helper text: Are you certain you want to delete this draft declaration form? Please note, this action cant be undone. + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Delete draft?' }) + ).toBeVisible() + await expect( + page.getByText( + 'Are you certain you want to delete this draft declaration form? Please note, this action cant be undone.' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.11.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.11.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + await page.waitForTimeout(500) // This page renders twice at first + + await expect( + page.locator('#content-name', { hasText: 'My drafts' }) + ).toBeVisible() + await expect(page.getByText(/seconds ago/)).toBeHidden() + }) + }) + + test.describe('1.12 Technical test for shortcuts', () => { + test('Shortcut for quickly creating declarations', async () => { + const token = await getToken('k.mweene', 'test') + const res = await createDeclaration(token, { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: TEST_DATA_1['Child details'].Sex.toLowerCase() as 'male' + }, + informant: { + type: TEST_DATA_1['Informant details'][ + 'Relationship to child' + ].toUpperCase() as 'MOTHER' + }, + attendant: { + type: TEST_DATA_1['Child details'][ + 'Attendant at birth' + ].toUpperCase() as 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + }) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + }) + }) +}) diff --git a/e2e/testcases/birth/2-validate-the-child-details-page.spec.ts b/e2e/testcases/birth/2-validate-the-child-details-page.spec.ts new file mode 100644 index 0000000000..d3ffb4fec2 --- /dev/null +++ b/e2e/testcases/birth/2-validate-the-child-details-page.spec.ts @@ -0,0 +1,345 @@ +import { test, expect } from '@playwright/test' +import { goToSection, login } from '../../helpers' +import { CREDENTIALS } from '../../constants' + +test.describe("2. Validate the child's details page", () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await page.click('#header_new_event') + + await expect(page.getByText('New Declaration')).toBeVisible() + await expect(page.getByText('Event type')).toBeVisible() + await expect(page.getByLabel('Birth')).toBeVisible() + + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.getByText("Child's details")).toBeVisible() + }) + + test.describe('2.1 Validate "First Name(s)" text field', async () => { + test.describe('2.1.1 Enter Non-English characters', async () => { + test('Using name: Richard the 3rd', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Richard the 3rd') + await page.getByText('Birth declaration').click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: John_Peter', async ({ page }) => { + await page.locator('#firstNamesEng').fill('John_Peter') + await page.getByText('Birth declaration').click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: John-Peter', async ({ page }) => { + await page.locator('#firstNamesEng').fill('John-Peter') + await page.getByText('Birth declaration').click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test("Using name: O'Neill", async ({ page }) => { + await page.locator('#firstNamesEng').fill("O'Neill") + await page.getByText('Birth declaration').click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: &er$on', async ({ page }) => { + await page.locator('#firstNamesEng').fill('&er$on') + await page.getByText('Birth declaration').click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeVisible() + }) + + test.skip('Using name: X Æ A-Xii', async ({ page }) => { + await page.locator('#firstNamesEng').fill('X Æ A-Xii') + await page.getByText('Birth declaration').click() + + /* + * Expected result: should throw error: + * - Input contains invalid characters. Please use only letters (a-z), numbers (0-9), hyphens (-), and underscores (_) + */ + await expect(page.locator('#firstNamesEng_error')).toBeVisible() + }) + }) + + test('2.1.2 Enter less than 33 English characters', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Rakibul Islam') + await page.getByText('Birth declaration').click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('2.1.3 Enter Field as NULL', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page.locator('#required_label_child_firstNamesEng') + ).toBeVisible() + }) + + test('2.1.4 Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#firstNamesEng').fill(LONG_NAME) + await page.getByText('Birth declaration').click() + + /* + * Expected result: should clip the name to first 32 character + */ + await expect(page.locator('#firstNamesEng')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + }) + + test.describe('2.3 Validate the Sex dropdown field', async () => { + test('2.3.1 Select any dropdown value: "Female"', async ({ page }) => { + await page.locator('#gender').click() + await page.getByText('Female', { exact: true }).click() + + /* + * Expected result: "Female" should be selected + */ + await expect(page.locator('#gender', { hasText: 'Female' })).toBeVisible() + }) + + test('2.3.2 Set the field as null', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page + .locator('[data-testid="row-value-Sex"]') + .getByText('Required for registration') + ).toBeVisible() + }) + }) + + test.describe('2.4 Validate the "DOB" field', async () => { + test('2.4.1 Enter date less than the current date', async ({ page }) => { + const yesterday = new Date() + yesterday.setDate(new Date().getDate() - 1) + const [yyyy, mm, dd] = yesterday.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText('Birth declaration').click() + + /* + * Expected result: should accept the date + */ + await expect(page.locator('#childBirthDate_error')).toBeHidden() + }) + + test('2.4.2 Enter invalid date', async ({ page }) => { + await page.getByPlaceholder('dd').fill('0') + await page.getByPlaceholder('mm').fill('0') + await page.getByPlaceholder('yyyy').fill('0') + await page.getByText('Birth declaration').click() + + /* + * Expected result: should not accept the invalid date and show error: + * - Must be a valid birth date + */ + await expect(page.locator('#childBirthDate_error')).toHaveText( + 'Must be a valid birth date' + ) + }) + + test('2.4.3 Enter future date', async ({ page }) => { + const futureDate = new Date() + futureDate.setDate(new Date().getDate() + 5) + const [yyyy, mm, dd] = futureDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText('Birth declaration').click() + + /* + * Expected result: should not accept the future date and show error: + * - Must be a valid birth date + */ + await expect(page.locator('#childBirthDate_error')).toHaveText( + 'Must be a valid birth date' + ) + }) + + test('2.4.4 Set the field as null', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page.locator('#required_label_child_childBirthDate') + ).toHaveText('Required for registration') + }) + }) + + test.describe('2.5 Validate delayed registration', async () => { + test.beforeEach(async ({ page }) => { + const delayedDate = new Date() + delayedDate.setDate(new Date().getDate() - 365 - 5) + const [yyyy, mm, dd] = delayedDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText('Birth declaration').click() + }) + + test('2.5.1 Enter date after delayed registration time period', async ({ + page + }) => { + const lateDate = new Date() + lateDate.setDate(new Date().getDate() - 365 + 5) + const [yyyy, mm, dd] = lateDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText('Birth declaration').click() + + /* + * Expected result: should show field: + * - Reason for delayed registration + */ + await expect( + page.getByText('Reason for delayed registration') + ).toBeHidden() + }) + + test('2.5.2 Enter date before delayed registration time period', async ({ + page + }) => { + /* + * Expected result: should show field: + * - Reason for delayed registration + */ + await expect( + page.getByText('Reason for delayed registration') + ).toBeVisible() + }) + + test('2.5.3 Enter "Reason for late registration"', async ({ page }) => { + await page.locator('#reasonForLateRegistration').fill('Lack of awareness') + + /* + * Expected result: should accept text + */ + await expect( + page.locator('#reasonForLateRegistration_error') + ).toBeHidden() + }) + + test('2.5.4 Set the field as null', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page + .getByRole('row', { name: 'Reason for delayed' }) + .locator('[data-testid="row-value-Reason"]') + ).toHaveText('Required for registration') + }) + }) + + test.describe('2.6 Validate place of delivery field', async () => { + test('2.6.1 Keep field as null', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect(page.locator('[data-testid="row-value-Place"]')).toHaveText( + 'Required for registration' + ) + }) + + test('2.6.2.a Validate Health Institution', async ({ page }) => { + await test.step('Select Health Institution', async () => { + await page.locator('#placeOfBirth').click() + await page.getByText('Health Institution', { exact: true }).click() + /* + * Expected result: should show input field for: + * - Health institution + */ + await expect(page.getByText('Health Institution *')).toBeVisible() + }) + await test.step('Enter any health institution', async () => { + await page.locator('#birthLocation').fill('b') + await page.getByText('Bombwe Health Post').click() + /* + * Expected result: should select "Bombwe Health Post" as health institute + */ + await expect(page.locator('#birthLocation')).toHaveValue( + 'Bombwe Health Post' + ) + }) + }) + + test('2.6.2.b Select Residential address', async ({ page }) => { + await page.locator('#placeOfBirth').click() + await page.getByText('Residential address', { exact: true }).click() + + /* + * Expected result: should select "Residential address" as place of birth + */ + await expect(page.locator('#placeOfBirth')).toContainText( + 'Residential address' + ) + }) + + test('2.6.2.c Select Other', async ({ page }) => { + await page.locator('#placeOfBirth').click() + await page.getByText('Other', { exact: true }).click() + + /* + * Expected result: should select "Other" as place of birth + */ + await expect(page.locator('#placeOfBirth')).toContainText('Other') + }) + }) +}) diff --git a/e2e/testcases/birth/8-validate-declaration-review-page.spec.ts b/e2e/testcases/birth/8-validate-declaration-review-page.spec.ts new file mode 100644 index 0000000000..a36780212a --- /dev/null +++ b/e2e/testcases/birth/8-validate-declaration-review-page.spec.ts @@ -0,0 +1,1441 @@ +import { test, expect, type Page } from '@playwright/test' +import { + drawSignature, + continueForm, + getRandomDate, + goToSection, + login, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + expectOutboxToBeEmpty, + getAction, + assignRecord, + auditRecord, + formatName +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' + +test.describe.serial('8. Validate declaration review page', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Physician', + birthType: 'Single', + weightAtBirth: 2.4, + placeOfBirth: 'Health Institution', + birthLocation: 'Bombwe Health Post', + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + Country: 'Farajaland', + Province: 'Pualula', + District: 'Pili' + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: 'Same as mother' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Field agent actions', async () => { + test.describe('8.1.0 Fill up birth registration form', async () => { + test('8.1.0.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.child.birthDate.yyyy) + + await page.locator('#placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#birthLocation') + .fill(declaration.birthLocation.slice(0, 3)) + await page.getByText(declaration.birthLocation).click() + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await page + .locator('#weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + + await continueForm(page) + }) + + test('8.1.0.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page + .locator('#registrationEmail') + .fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("8.1.0.3 Fill mother's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.mother.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#motherIdType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#motherNationalId') + .fill(declaration.mother.identifier.id) + + await page.locator('#statePrimaryMother').click() + await page + .getByText(declaration.mother.address.Province, { exact: true }) + .click() + await page.locator('#districtPrimaryMother').click() + await page + .getByText(declaration.mother.address.District, { exact: true }) + .click() + + await continueForm(page) + }) + + test("8.1.0.4 Fill father's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.father.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.father.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.father.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.father.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.father.birthDate.yyyy) + + await page.locator('#fatherIdType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#fatherNationalId') + .fill(declaration.father.identifier.id) + + await continueForm(page) + }) + }) + + test.describe('8.1.1 Navigate to declaration preview page', async () => { + test('8.1.1.1 Verify information added on previous pages', async () => { + await goToSection(page, 'preview') + + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + * - Change button + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expectTextWithChangeLink(page.locator('#child-content #Full'), [ + declaration.child.name.familyName + ]) + + /* + * Expected result: should include + * - Child's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Sex'), [ + declaration.child.gender + ]) + + /* + * Expected result: should include + * - Child's date of birth + * - Change button + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + * - Change button + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectTextWithChangeLink(page.locator('#child-content #Place'), [ + declaration.birthLocation + ]) + + /* + * Expected result: should include + * - Child's Attendant at birth + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#child-content #Attendant'), + [declaration.attendantAtBirth] + ) + + /* + * Expected result: should include + * - Child's Birth type + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Type'), [ + declaration.birthType + ]) + + /* + * Expected result: should include + * - Child's Weight at birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Weight'), [ + declaration.weightAtBirth.toString() + ]) + + /* + * Expected result: should include + * - Informant's relation to child + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Relationship'), + [declaration.informantType] + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + * - Change button + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expectTextWithChangeLink(page.locator('#mother-content #Full'), [ + declaration.mother.name.familyName + ]) + + /* + * Expected result: should include + * - Mother's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ]) + + /* + * Expected result: should include + * - Mother's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#mother-content #Nationality'), + [declaration.mother.nationality] + ) + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Type'), [ + declaration.mother.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#mother-content #ID'), [ + declaration.mother.identifier.id + ]) + + /* + * Expected result: should include + * - Mother's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Usual'), [ + declaration.mother.address.Country, + declaration.mother.address.District, + declaration.mother.address.Province + ]) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Full'), [ + declaration.father.name.firstNames, + declaration.father.name.familyName + ]) + + /* + * Expected result: should include + * - Father's date of birth + * - Change button + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + await expect(page.locator('#father-content #Full')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Father's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#father-content #Nationality'), + [declaration.father.nationality] + ) + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Type'), [ + declaration.father.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#father-content #ID'), [ + declaration.father.identifier.id + ]) + + /* + * Expected result: should include + * - Father's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Same'), [ + 'Yes' + ]) + }) + }) + + test.describe('8.1.2 Click any "Change" link', async () => { + test("8.1.2.1 Change child's name", async () => { + await page.locator('#child-content #Full').getByText('Change').click() + + declaration.child.name = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + }) + + test("8.1.2.2 Change child's gender", async () => { + await page.locator('#child-content #Sex').getByText('Change').click() + + declaration.child.gender = 'Female' + + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + }) + + test("8.1.2.3 Change child's birthday", async () => { + await page.locator('#child-content #Date').getByText('Change').click() + + declaration.child.birthDate = getRandomDate(0, 200) + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.child.birthDate.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's birthday + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + }) + + test("8.1.2.4 Change child's birth location", async () => { + await page.locator('#child-content #Place').getByText('Change').click() + + declaration.birthLocation = 'Chikonkomene Health Post' + await page + .locator('#birthLocation') + .fill(declaration.birthLocation.slice(0, 3)) + await page.getByText(declaration.birthLocation).click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's place of birth + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.birthLocation + ) + }) + + test('8.1.2.5 Change attendant at birth', async () => { + await page + .locator('#child-content #Attendant') + .getByText('Change') + .click() + + declaration.attendantAtBirth = 'Midwife' + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + }) + + test('8.1.2.6 Change type of birth', async () => { + await page.locator('#child-content #Type').getByText('Change').click() + + declaration.birthType = 'Twin' + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change type of birth + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + }) + + test("8.1.2.7 Change child's weight at birth", async () => { + await page.locator('#child-content #Weight').getByText('Change').click() + + declaration.weightAtBirth = 2.7 + await page + .locator('#weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change weight at birth + */ + await expect(page.locator('#child-content #Weight')).toContainText( + declaration.weightAtBirth.toString() + ) + }) + + test('8.1.2.8 Change informant type', async () => { + await page + .locator('#informant-content #Relationship') + .getByText('Change') + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + declaration.informantType = 'Father' + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change informant type + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + }) + + test('8.1.2.9 Change registration email', async () => { + await page + .locator('#informant-content #Email') + .getByText('Change') + .click() + + declaration.informantEmail = + declaration.father.name.firstNames.toLowerCase() + + '.' + + declaration.father.name.familyName.toLowerCase() + + (Math.random() * 1000).toFixed(0) + + '@gmail.com' + await page + .locator('#registrationEmail') + .fill(declaration.informantEmail) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change registration email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + }) + + test("8.1.2.10 Change mother's name", async () => { + await page.locator('#mother-content #Full').getByText('Change').click() + + declaration.mother.name.firstNames = faker.person.firstName('female') + declaration.mother.name.familyName = faker.person.lastName('female') + await page + .locator('#firstNamesEng') + .fill(declaration.mother.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.mother.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + }) + + test("8.1.2.11 Change mother's birthday", async () => { + await page.locator('#mother-content #Date').getByText('Change').click() + + declaration.mother.birthDate = getRandomDate(19, 200) + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's birthday + */ + await expect(page.locator('#mother-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ) + }) + + test("8.1.2.12 Change mother's nationality", async () => { + await page + .locator('#mother-content #Nationality') + .getByText('Change') + .click() + + declaration.mother.nationality = 'Holy See' + await page.locator('#nationality').click() + await page + .getByText(declaration.mother.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's nationality + */ + await expect( + page.locator('#mother-content #Nationality') + ).toContainText(declaration.mother.nationality) + }) + + test("8.1.2.13 Change mother's ID type", async () => { + await page.locator('#mother-content #Type').getByText('Change').click() + + declaration.mother.identifier.type = 'Passport' + await page.locator('#motherIdType').click() + await page + .getByText(declaration.mother.identifier.type, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's ID type + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + }) + + test("8.1.2.14 Change mother's ID", async () => { + await page.locator('#mother-content #ID').getByText('Change').click() + declaration.mother.identifier.id = faker.string.numeric(10) + await page + .locator('#motherPassport') + .fill(declaration.mother.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's ID + */ + await expect(page.locator('#mother-content #ID')).toContainText( + declaration.mother.identifier.id + ) + }) + + test("8.1.2.15 Change mother's address", async () => { + await page.locator('#mother-content #Usual').getByText('Change').click() + + declaration.mother.address.Province = 'Sulaka' + declaration.mother.address.District = 'Afue' + await page.locator('#statePrimaryMother').click() + await page + .getByText(declaration.mother.address.Province, { exact: true }) + .click() + await page.locator('#districtPrimaryMother').click() + await page + .getByText(declaration.mother.address.District, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's address + */ + await expect(page.locator('#mother-content #Usual')).toContainText( + declaration.mother.address.District + ) + await expect(page.locator('#mother-content #Usual')).toContainText( + declaration.mother.address.Province + ) + }) + + test("8.1.2.16 Change father's name", async () => { + await page.locator('#father-content #Full').getByText('Change').click() + + declaration.father.name.firstNames = faker.person.firstName('male') + declaration.father.name.familyName = faker.person.lastName('male') + await page + .locator('#firstNamesEng') + .fill(declaration.father.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.father.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + }) + + test("8.1.2.17 Change father's birthday", async () => { + await page.locator('#father-content #Date').getByText('Change').click() + + declaration.father.birthDate = getRandomDate(21, 200) + await page.getByPlaceholder('dd').fill(declaration.father.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.father.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.father.birthDate.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's birthday + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + }) + + test("8.1.2.18 Change father's nationality", async () => { + await page + .locator('#father-content #Nationality') + .getByText('Change') + .click() + + declaration.father.nationality = 'Holy See' + await page.locator('#nationality').click() + await page + .getByText(declaration.father.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's nationality + */ + await expect( + page.locator('#father-content #Nationality') + ).toContainText(declaration.father.nationality) + }) + + test("8.1.2.19 Change father's ID type", async () => { + await page.locator('#father-content #Type').getByText('Change').click() + + declaration.father.identifier.type = 'Passport' + await page.locator('#fatherIdType').click() + await page + .getByText(declaration.father.identifier.type, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's ID type + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + }) + + test("8.1.2.20 Change father's ID", async () => { + await page.locator('#father-content #ID').getByText('Change').click() + declaration.father.identifier.id = faker.string.numeric(10) + await page + .locator('#fatherPassport') + .fill(declaration.father.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's ID + */ + await expect(page.locator('#father-content #ID')).toContainText( + declaration.father.identifier.id + ) + }) + }) + + test.describe('8.1.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.1.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.1.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.1.6 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('8.1.7 Click send button', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + }) + + test('8.1.8 Confirm the declaration to send for review', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for review' }).click() + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.2 Registration agent actions', async () => { + test('8.2.1 Navigate to the declaration preview page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + test('8.2.1.1 Verify information added on previous pages', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Full'), [ + declaration.child.name.firstNames, + declaration.child.name.familyName + ]) + + /* + * Expected result: should include + * - Child's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Sex'), [ + declaration.child.gender + ]) + + /* + * Expected result: should include + * - Child's date of birth + * - Change button + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Place'), [ + declaration.placeOfBirth, + declaration.birthLocation + ]) + + /* + * Expected result: should include + * - Child's Attendant at birth + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#child-content #Attendant'), + [declaration.attendantAtBirth] + ) + + /* + * Expected result: should include + * - Child's Birth type + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Type'), [ + declaration.birthType + ]) + + /* + * Expected result: should include + * - Child's Weight at birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Weight'), [ + declaration.weightAtBirth.toString() + ]) + + /* + * Expected result: should include + * - Informant's relation to child + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Relationship'), + [declaration.informantType] + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Full'), [ + declaration.mother.name.firstNames, + declaration.mother.name.familyName + ]) + + /* + * Expected result: should include + * - Mother's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ]) + + /* + * Expected result: should include + * - Mother's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#mother-content #Nationality'), + [declaration.mother.nationality] + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Type'), [ + declaration.mother.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#mother-content #ID'), [ + declaration.mother.identifier.id + ]) + + /* + * Expected result: should include + * - Mother's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Usual'), [ + declaration.mother.address.Country, + declaration.mother.address.District, + declaration.mother.address.Province + ]) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Full'), [ + declaration.father.name.firstNames, + declaration.father.name.familyName + ]) + + /* + * Expected result: should include + * - Father's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ]) + + /* + * Expected result: should include + * - Father's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#father-content #Nationality'), + [declaration.father.nationality] + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Type'), [ + declaration.father.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#father-content #ID'), [ + declaration.father.identifier.id + ]) + + /* + * Expected result: should include + * - Father's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Same'), [ + 'Yes' + ]) + }) + + test.describe('8.2.2 Click any "Change" link', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.2.6 Click send button', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + }) + + test('8.2.7 Confirm the declaration to send for approval', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + + /* + * Expected result: The declaration should be in sent for approval + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.3 Local registrar actions', async () => { + test('8.3.1 Navigate to the declaration preview page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + test('8.3.1.1 Verify information added on previous pages', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Full'), [ + declaration.child.name.firstNames, + declaration.child.name.familyName + ]) + + /* + * Expected result: should include + * - Child's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Sex'), [ + declaration.child.gender + ]) + + /* + * Expected result: should include + * - Child's date of birth + * - Change button + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Place'), [ + declaration.placeOfBirth, + declaration.birthLocation + ]) + + /* + * Expected result: should include + * - Child's Attendant at birth + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#child-content #Attendant'), + [declaration.attendantAtBirth] + ) + + /* + * Expected result: should include + * - Child's Birth type + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Type'), [ + declaration.birthType + ]) + + /* + * Expected result: should include + * - Child's Weight at birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#child-content #Weight'), [ + declaration.weightAtBirth.toString() + ]) + + /* + * Expected result: should include + * - Informant's relation to child + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Relationship'), + [declaration.informantType] + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Full'), [ + declaration.mother.name.firstNames, + declaration.mother.name.familyName + ]) + + /* + * Expected result: should include + * - Mother's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ]) + + /* + * Expected result: should include + * - Mother's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#mother-content #Nationality'), + [declaration.mother.nationality] + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Type'), [ + declaration.mother.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#mother-content #ID'), [ + declaration.mother.identifier.id + ]) + + /* + * Expected result: should include + * - Mother's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#mother-content #Usual'), [ + declaration.mother.address.Country, + declaration.mother.address.District, + declaration.mother.address.Province + ]) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Full'), [ + declaration.father.name.firstNames, + declaration.father.name.familyName + ]) + + /* + * Expected result: should include + * - Father's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ]) + + /* + * Expected result: should include + * - Father's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#father-content #Nationality'), + [declaration.father.nationality] + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Type'), [ + declaration.father.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#father-content #ID'), [ + declaration.father.identifier.id + ]) + + /* + * Expected result: should include + * - Father's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#father-content #Same'), [ + 'Yes' + ]) + }) + + const newFamilyNameForChild = faker.person.lastName('male') + + test("8.3.2.1 Update child's family name", async () => { + await page + .locator('#child-content #Full') + .getByRole('button', { name: 'Change' }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#familyNameEng').fill(newFamilyNameForChild) + + await page.getByRole('button', { name: 'Back to review' }).click() + }) + + test("8.3.2.2 Review child's changed family name", async () => { + await expect( + page.locator('#child-content #Full [data-testid="row-value-Full"]') + ).toContainText( + `${formatName(declaration.child.name)} + ${declaration.child.name.firstNames} ${newFamilyNameForChild}`, + { + useInnerText: true // makes line break intentional + } + ) + }) + + test.describe('8.3.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.5 Validate the register button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.3.6 Click send button', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the birth?')).toBeVisible() + }) + + test('8.3.7 Confirm the declaration to ready for print', async () => { + await page.locator('#submit_confirm').click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: The declaration should be in Ready to print + */ + await expect( + page.getByRole('button', { + name: `${declaration.child.name.firstNames} ${newFamilyNameForChild}` + }) + ).toBeVisible() + + await expect( + page + .locator('div') + .filter({ + has: page.getByRole('button', { + name: `${declaration.child.name.firstNames} ${newFamilyNameForChild}` + }) + }) + .filter({ + hasText: /seconds ago/ // should match the registration time + }) + ).not.toHaveCount(0) + }) + }) +}) diff --git a/e2e/testcases/birth/data/1-both-mother-and-father.json b/e2e/testcases/birth/data/1-both-mother-and-father.json new file mode 100644 index 0000000000..b49eaa8cf4 --- /dev/null +++ b/e2e/testcases/birth/data/1-both-mother-and-father.json @@ -0,0 +1,49 @@ +{ + "Declaration Type": "Complete", + "Declaration Started by": "FA", + "Child details": { + "First Name(s)": "Jack", + "Last Name": "Collen", + "Sex": "Male", + "Attendant at birth": "Physician", + "Type of Birth": "Single", + "Weight at birth": 2.4, + "Place of delivery": "H. Institution" + }, + "Informant details": { + "Relationship to child": "Mother", + "Date of birth": null, + "Nationality": null, + "Type of ID": null, + "Usual place of residence": null + }, + "Mother's details": { + "Details available?": true, + "Date of birth": "Date", + "Nationality": "Far", + "Type of ID": "NID", + "Marital status": "Single", + "Level of education": "No schooling", + "Usual place of residence": { + "Country": "Farajaland", + "Province": "Central", + "District": "Ibombo", + "Urban": true, + "Town": "Example town", + "Residential Area": "Example area", + "Street": "Example street", + "Number": "Example house number", + "Postcode / Zip": "12345" + } + }, + "Father's details": { + "Details available?": true, + "Date of birth": "Date", + "Nationality": "Other than Farajaland", + "Type of ID": "NID", + "Marital status": "Single", + "Level of education": "No schooling", + "Usual place of residence same as mother's": true + }, + "Supporting document": null +} diff --git a/e2e/testcases/birth/data/assets/528KB-random.png b/e2e/testcases/birth/data/assets/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/e2e/testcases/birth/data/assets/528KB-random.png differ diff --git a/e2e/testcases/birth/declarations/birth-declaration-1.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-1.spec.ts new file mode 100644 index 0000000000..05d25b5e06 --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-1.spec.ts @@ -0,0 +1,752 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('1. Birth declaration case - 1', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Physician', + birthType: 'Single', + weightAtBirth: 2.4, + placeOfBirth: 'Health Institution', + birthLocation: 'Golden Valley Rural Health Centre', + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling', + address: { + sameAsMother: true + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#birthLocation') + .fill(declaration.birthLocation.slice(0, 3)) + await page.getByText(declaration.birthLocation).click() + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await page + .locator('#weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + + await continueForm(page) + }) + + test('1.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("1.1.3 Fill mother's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.mother.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#motherIdType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#motherNationalId') + .fill(declaration.mother.identifier.id) + + await page.locator('#statePrimaryMother').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryMother').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await page + .locator('#cityPrimaryMother') + .fill(declaration.mother.address.town) + await page + .locator('#addressLine1UrbanOptionPrimaryMother') + .fill(declaration.mother.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimaryMother') + .fill(declaration.mother.address.street) + await page + .locator('#addressLine3UrbanOptionPrimaryMother') + .fill(declaration.mother.address.number) + await page + .locator('#postalCodePrimaryMother') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("1.1.4 Fill father's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.father.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.father.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.father.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.father.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.father.birthDate.yyyy) + + await page.locator('#fatherIdType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#fatherNationalId') + .fill(declaration.father.identifier.id) + + await page.locator('#nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('1.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expect(page.locator('#child-content #Place')).toContainText( + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Child's Weight at birth + */ + await expect(page.locator('#child-content #Weight')).toContainText( + declaration.weightAtBirth.toString() + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + await expect(page.locator('#mother-content #ID')).toContainText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + await expect(page.locator('#father-content #ID')).toContainText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expect(page.locator('#father-content #Same')).toContainText('Yes') + }) + + test('1.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('1.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('1.2 Declaration Review by RA', async () => { + test('1.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('1.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expect(page.locator('#child-content #Place')).toContainText( + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Child's Weight at birth + */ + await expect(page.locator('#child-content #Weight')).toContainText( + declaration.weightAtBirth.toString() + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + await expect(page.locator('#mother-content #ID')).toContainText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + await expect(page.locator('#father-content #ID')).toContainText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expect(page.locator('#father-content #Same')).toContainText('Yes') + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-10.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-10.spec.ts new file mode 100644 index 0000000000..0857c538ef --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-10.spec.ts @@ -0,0 +1,328 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + getAction, + goToSection, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('10. Birth declaration case - 10', () => { + let page: Page + const required = 'Required for registration' + const declaration = { + child: { + name: { + firstNames: faker.person.lastName() + } + }, + informantType: 'Father', + mother: { + detailsDontExist: true + }, + father: { + detailsDontExist: false + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('10.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + + await continueForm(page) + }) + + test('10.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test("10.1.3 Fill mother's details", async () => { + await page.getByLabel("Mother's details are not available").check() + + await continueForm(page) + }) + + test("10.1.4 Fill father's details", async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('10.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * * should require + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText(required) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + required + ) + + /* + * Expected result: should require + * - Reason of why mother's details not available + */ + await expect(page.locator('#mother-content #Reason')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.locator('#father-content #Type')).toContainText( + required + ) + }) + + test('10.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('10.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: `${declaration.child.name.firstNames}`, + exact: true + }) + ).toBeVisible() + }) + }) + + test.describe('10.2 Declaration Review by RA', async () => { + test('10.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'In Progress' }).click() + await page.getByRole('button', { name: 'Field Agents' }).click() + + await expect( + page.getByRole('button', { + name: `${declaration.child.name.firstNames}` + }) + ).toBeVisible() + + await auditRecord({ + page, + name: `${declaration.child.name.firstNames}` + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Update declaration').click() + }) + + test('10.2.2 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * * should require + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText(required) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + 'Must be a valid email address' + ) + + /* + * Expected result: should require + * - Reason of why mother's details not available + */ + await expect(page.locator('#mother-content #Reason')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.locator('#father-content #Type')).toContainText( + required + ) + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-2.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-2.spec.ts new file mode 100644 index 0000000000..e23040149f --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-2.spec.ts @@ -0,0 +1,793 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('2. Birth declaration case - 2', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + gender: 'Female', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Nurse', + birthType: 'Twin', + placeOfBirth: 'Residential address', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Father', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 21, + nationality: 'Fiji', + identifier: { + id: faker.string.numeric(12), + type: 'Passport' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + urbanOrRural: 'Rural', + village: faker.location.county() + }, + maritalStatus: 'Married', + levelOfEducation: 'Primary' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(8), + type: 'Passport' + }, + maritalStatus: 'Married', + levelOfEducation: 'Primary', + address: { + sameAsMother: 'No', + country: 'Farajaland', + province: 'Sulaka', + district: 'Zobwe', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('2.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + + await page.locator('#statePlaceofbirth').click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page.locator('#districtPlaceofbirth').click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + + await page + .locator('#cityPlaceofbirth') + .fill(declaration.birthLocation.town) + await page + .locator('#addressLine1UrbanOptionPlaceofbirth') + .fill(declaration.birthLocation.residentialArea) + await page + .locator('#addressLine2UrbanOptionPlaceofbirth') + .fill(declaration.birthLocation.street) + await page + .locator('#addressLine3UrbanOptionPlaceofbirth') + .fill(declaration.birthLocation.number) + await page + .locator('#postalCodePlaceofbirth') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('2.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("2.1.3 Fill mother's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.mother.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.mother.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.mother.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.mother.nationality, { exact: true }) + .click() + + await page.locator('#motherIdType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#motherPassport') + .fill(declaration.mother.identifier.id) + + await page.locator('#statePrimaryMother').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryMother').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await page.getByLabel('Rural').check() + await page + .locator('#addressLine1RuralOptionPrimaryMother') + .fill(declaration.mother.address.village) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("2.1.4 Fill father's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.father.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.father.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.father.age.toString()) + + await page.locator('#fatherIdType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#fatherPassport') + .fill(declaration.father.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + await page.locator('#statePrimaryFather').click() + await page + .getByText(declaration.father.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryFather').click() + await page + .getByText(declaration.father.address.district, { exact: true }) + .click() + await page.getByLabel(declaration.father.address.urbanOrRural).check() + await page + .locator('#cityPrimaryFather') + .fill(declaration.father.address.town) + await page + .locator('#addressLine1UrbanOptionPrimaryFather') + .fill(declaration.father.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimaryFather') + .fill(declaration.father.address.street) + await page + .locator('#addressLine3UrbanOptionPrimaryFather') + .fill(declaration.father.address.number) + await page + .locator('#postalCodePrimaryFather') + .fill(declaration.father.address.postcodeOrZip) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('2.1.5 Go To Preview', async () => { + await goToSection(page, 'preview') + }) + + test('2.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's age + */ + await expect(page.locator('#mother-content #Age')).toContainText( + joinValuesWith([declaration.mother.age, 'years']) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + await expect(page.locator('#mother-content #ID')).toContainText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Age')).toContainText( + joinValuesWith([declaration.father.age, 'years']) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + await expect(page.locator('#father-content #ID')).toContainText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expectAddress( + page.locator('#father-content #Usual'), + declaration.father.address + ) + }) + + test('2.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('2.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('2.2 Declaration Review by RA', async () => { + test('2.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('2.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's age + */ + await expect(page.locator('#mother-content #Age')).toContainText( + joinValuesWith([declaration.mother.age, 'years']) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + await expect(page.locator('#mother-content #ID')).toContainText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Age')).toContainText( + joinValuesWith([declaration.father.age, 'years']) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + await expect(page.locator('#father-content #ID')).toContainText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expectAddress( + page.locator('#father-content #Usual'), + declaration.father.address + ) + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-3.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-3.spec.ts new file mode 100644 index 0000000000..28b3f5448f --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-3.spec.ts @@ -0,0 +1,1013 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + login, + uploadImage, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('3. Birth declaration case - 3', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + '_Peter', + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Midwife', + birthType: 'Triplet', + placeOfBirth: 'Residential address', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + urbanOrRural: 'Rural', + village: faker.location.county() + }, + informantType: 'Grandfather', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(40, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Ama', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(9), + type: 'Birth Registration Number' + }, + address: { + country: 'Djibouti', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Widowed', + levelOfEducation: 'Secondary' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(11), + type: 'Birth Registration Number' + }, + maritalStatus: 'Widowed', + levelOfEducation: 'Secondary', + address: { + sameAsMother: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Rural', + village: faker.location.county() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('3.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('3.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page.locator('#statePlaceofbirth').click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page.locator('#districtPlaceofbirth').click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + await page.getByLabel(declaration.birthLocation.urbanOrRural).check() + await page + .locator('#addressLine1RuralOptionPlaceofbirth') + .fill(declaration.birthLocation.village) + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('3.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.informant.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.informant.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.informant.birthDate.yyyy) + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informantNationalId') + .fill(declaration.informant.identifier.id) + + await page.locator('#statePrimaryInformant').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryInformant').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + + await page + .locator('#cityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.street) + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.number) + await page + .locator('#postalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + await continueForm(page) + }) + + test("3.1.3 Fill mother's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.mother.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#motherIdType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#motherBirthRegistrationNumber') + .fill(declaration.mother.identifier.id) + + await page.locator('#countryPrimaryMother').click() + await page + .getByText(declaration.mother.address.country, { exact: true }) + .click() + await page + .locator('#internationalStatePrimaryMother') + .fill(declaration.mother.address.state) + await page + .locator('#internationalDistrictPrimaryMother') + .fill(declaration.mother.address.district) + await page + .locator('#internationalCityPrimaryMother') + .fill(declaration.mother.address.town) + await page + .locator('#internationalAddressLine1PrimaryMother') + .fill(declaration.mother.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryMother') + .fill(declaration.mother.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryMother') + .fill(declaration.mother.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryMother') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + await continueForm(page) + }) + + test("3.1.4 Fill father's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.father.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.father.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.father.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.father.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.father.birthDate.yyyy) + + await page.locator('#fatherIdType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#fatherBirthRegistrationNumber') + .fill(declaration.father.identifier.id) + + await page.locator('#nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + await page.locator('#statePrimaryFather').click() + await page + .getByText(declaration.father.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryFather').click() + await page + .getByText(declaration.father.address.district, { exact: true }) + .click() + await page.getByLabel(declaration.father.address.urbanOrRural).check() + await page + .locator('#addressLine1RuralOptionPrimaryFather') + .fill(declaration.father.address.village) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.describe('3.1.5 Add supporting documents', async () => { + test('3.1.5.0 Go to supporting documents page', async () => { + await goToSection(page, 'documents') + }) + + test('3.1.5.1 Upload proof of birth', async () => { + await uploadImage( + page, + page.locator('button[name="uploadDocForChildDOB"]') + ) + }) + + test("3.1.5.2 Upload proof of mother's id", async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForMother'), + sectionTitle, + buttonLocator: page.locator('button[name="uploadDocForMother"]') + }) + } + }) + + test("3.1.5.3 Upload proof of father's id", async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForFather'), + sectionTitle, + buttonLocator: page.locator('button[name="uploadDocForFather"]') + }) + } + }) + + test("3.1.5.4 Upload proof of informant's id", async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForInformant'), + sectionTitle, + buttonLocator: page.locator('button[name="uploadDocForInformant"]') + }) + } + }) + + test('3.1.5.5 Upload other', async () => { + const imageUploadSectionTitles = [ + 'Proof of legal guardianship', + 'Proof of assigned responsibility' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForProofOfLegalGuardian'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="uploadDocForProofOfLegalGuardian"]' + ) + }) + } + }) + }) + + test('3.1.6 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('3.1.7 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.informant.birthDate) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + await expect(page.locator('#mother-content #ID')).toContainText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + await expect(page.locator('#father-content #ID')).toContainText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expectAddress( + page.locator('#father-content #Usual'), + declaration.father.address + ) + }) + + test('3.1.8 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('3.1.9 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for approval' }).click() + + /* + * Expected result: The declaration should be in sent for approval + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('3.2 Declaration Review by Local Registrar', async () => { + test('3.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('3.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.informant.birthDate) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + await expect(page.locator('#mother-content #ID')).toContainText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + await expect(page.locator('#father-content #ID')).toContainText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ await expectAddress( + page.locator('#father-content #Usual'), + declaration.father.address + ) + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-4.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-4.spec.ts new file mode 100644 index 0000000000..322bf42b0a --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-4.spec.ts @@ -0,0 +1,933 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('4. Birth declaration case - 4', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + '-Peter', + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Other paramedical personnel', + birthType: 'Quadruplet', + placeOfBirth: 'Other', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Grandmother', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 60, + nationality: 'Guernsey', + identifier: { + id: faker.string.numeric(10), + type: 'Passport' + }, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Ama', + urbanOrRural: 'Rural', + village: faker.location.county() + } + }, + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Divorced', + levelOfEducation: 'Tertiary' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + maritalStatus: 'Divorced', + levelOfEducation: 'Tertiary', + address: { + sameAsMother: false, + country: 'Grenada', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('4.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page.locator('#statePlaceofbirth').click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page.locator('#districtPlaceofbirth').click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + + await page + .locator('#cityPlaceofbirth') + .fill(declaration.birthLocation.town) + await page + .locator('#addressLine1UrbanOptionPlaceofbirth') + .fill(declaration.birthLocation.residentialArea) + await page + .locator('#addressLine2UrbanOptionPlaceofbirth') + .fill(declaration.birthLocation.street) + await page + .locator('#addressLine3UrbanOptionPlaceofbirth') + .fill(declaration.birthLocation.number) + await page + .locator('#postalCodePlaceofbirth') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('4.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informantPassport') + .fill(declaration.informant.identifier.id) + + await page.locator('#statePrimaryInformant').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryInformant').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + await page.getByLabel(declaration.informant.address.urbanOrRural).check() + + await page + .locator('#addressLine1RuralOptionPrimaryInformant') + .fill(declaration.informant.address.village) + await continueForm(page) + }) + + test("4.1.3 Fill mother's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.mother.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.mother.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.mother.age.toString()) + + await page.locator('#motherIdType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page.locator('#countryPrimaryMother').click() + await page + .getByText(declaration.mother.address.country, { exact: true }) + .click() + await page + .locator('#internationalStatePrimaryMother') + .fill(declaration.mother.address.state) + await page + .locator('#internationalDistrictPrimaryMother') + .fill(declaration.mother.address.district) + await page + .locator('#internationalCityPrimaryMother') + .fill(declaration.mother.address.town) + await page + .locator('#internationalAddressLine1PrimaryMother') + .fill(declaration.mother.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryMother') + .fill(declaration.mother.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryMother') + .fill(declaration.mother.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryMother') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + await continueForm(page) + }) + + test("4.1.4 Fill father's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.father.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.father.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.father.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.father.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.father.birthDate.yyyy) + + await page.locator('#fatherIdType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + await page.locator('#countryPrimaryFather').click() + await page + .getByText(declaration.father.address.country, { exact: true }) + .click() + await page + .locator('#internationalStatePrimaryFather') + .fill(declaration.father.address.state) + await page + .locator('#internationalDistrictPrimaryFather') + .fill(declaration.father.address.district) + await page + .locator('#internationalCityPrimaryFather') + .fill(declaration.father.address.town) + await page + .locator('#internationalAddressLine1PrimaryFather') + .fill(declaration.father.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryFather') + .fill(declaration.father.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryFather') + .fill(declaration.father.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryFather') + .fill(declaration.father.address.postcodeOrZip) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('4.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + declaration.informant.identifier.type + ) + await expect(page.locator('#informant-content #ID')).toContainText( + declaration.informant.identifier.id + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Age')).toContainText( + joinValuesWith([declaration.mother.age, 'years']) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + /* + * Expected result: should include + * - Mother's address + */ + + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expectAddress( + page.locator('#father-content #Usual'), + declaration.father.address + ) + }) + test('4.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + test('4.1.8 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for approval' }).click() + + /* + * Expected result: The declaration should be in sent for approval + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('4.2 Declaration Review by Local Registrar', async () => { + test('4.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('4.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + declaration.informant.identifier.type + ) + await expect(page.locator('#informant-content #ID')).toContainText( + declaration.informant.identifier.id + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Age')).toContainText( + joinValuesWith([declaration.mother.age, 'years']) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + /* + * Expected result: should include + * - Mother's address + */ + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ await expectAddress( + page.locator('#father-content #Usual'), + declaration.father.address + ) + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-5.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-5.spec.ts new file mode 100644 index 0000000000..50583e8810 --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-5.spec.ts @@ -0,0 +1,542 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('5. Birth declaration case - 5', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + ' the 3rd', + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Layperson', + birthType: 'Higher multiple delivery', + placeOfBirth: 'Other', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + urbanOrRural: 'Rural', + village: faker.location.county() + }, + informantType: 'Brother', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 16, + nationality: 'Guernsey', + identifier: { + id: faker.string.numeric(10), + type: 'Birth Registration Number' + }, + address: { + country: 'Haiti', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Separated', + levelOfEducation: 'Tertiary' + }, + father: { + detailsDontExist: true, + reason: 'Father is a ghost' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('5.1 Declaration started by Local Registrar', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('5.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page.locator('#statePlaceofbirth').click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page.locator('#districtPlaceofbirth').click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + + await page.getByLabel(declaration.birthLocation.urbanOrRural).check() + + await page + .locator('#addressLine1RuralOptionPlaceofbirth') + .fill(declaration.birthLocation.village) + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + await continueForm(page) + }) + + test('5.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informantBirthRegistrationNumber') + .fill(declaration.informant.identifier.id) + + await page.locator('#countryPrimaryInformant').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + await page + .locator('#internationalStatePrimaryInformant') + .fill(declaration.informant.address.state) + await page + .locator('#internationalDistrictPrimaryInformant') + .fill(declaration.informant.address.district) + await page + .locator('#internationalCityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#internationalAddressLine1PrimaryInformant') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryInformant') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryInformant') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test("5.1.3 Fill mother's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.mother.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.mother.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.mother.age.toString()) + + await page.locator('#motherIdType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page.locator('#countryPrimaryMother').click() + await page + .getByText(declaration.mother.address.country, { exact: true }) + .click() + await page + .locator('#internationalStatePrimaryMother') + .fill(declaration.mother.address.state) + await page + .locator('#internationalDistrictPrimaryMother') + .fill(declaration.mother.address.district) + await page + .locator('#internationalCityPrimaryMother') + .fill(declaration.mother.address.town) + await page + .locator('#internationalAddressLine1PrimaryMother') + .fill(declaration.mother.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryMother') + .fill(declaration.mother.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryMother') + .fill(declaration.mother.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryMother') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("5.1.4 Fill father's details", async () => { + await page.getByLabel("Father's details are not available").check() + await page.locator('#reasonNotApplying').fill(declaration.father.reason) + }) + + test('5.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('5.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + + await expect(page.locator('#child-content #Place')).toContainText( + declaration.placeOfBirth + ) + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + declaration.informant.identifier.type + ) + await expect(page.locator('#informant-content #ID')).toContainText( + declaration.informant.identifier.id + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.firstNames + ) + await expect(page.locator('#mother-content #Full')).toContainText( + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Age')).toContainText( + joinValuesWith([declaration.mother.age, 'years']) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.locator('#mother-content #Nationality')).toContainText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect(page.locator('#mother-content #Level')).toContainText( + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + */ + await expect(page.locator('#mother-content #Type')).toContainText( + declaration.mother.identifier.type + ) + + /* + * Expected result: should include + * - Mother's address + */ + await expectAddress( + page.locator('#mother-content #Usual'), + declaration.mother.address + ) + + /* + * Expected result: should include + * - Father's Details not available: true + * - Reason of why father's details not available + */ + await expect(page.locator('#father-content')).toContainText( + "Father's details are not availableYes" + ) + await expect(page.locator('#father-content #Reason')).toContainText( + declaration.father.reason + ) + }) + + test('5.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('5.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the birth?')).toBeVisible() + await page.locator('#submit_confirm').click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: The declaration should be in Ready to print + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-6.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-6.spec.ts new file mode 100644 index 0000000000..6b31ccafa5 --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-6.spec.ts @@ -0,0 +1,541 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('6. Birth declaration case - 6', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + " O'Neil", + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Traditional birth attendant', + birthType: 'Higher multiple delivery', + placeOfBirth: 'Other', + birthLocation: { + country: 'Greenland', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Sister', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 17, + nationality: 'Guernsey', + identifier: { + type: 'None' + }, + address: { + country: 'Haiti', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Separated', + levelOfEducation: 'Tertiary' + }, + mother: { + detailsDontExist: true, + reason: 'Mother is a ghost' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('6.1 Declaration started by National Registrar', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + + await page.locator('#countryPlaceofbirth').click() + await page + .getByText(declaration.birthLocation.country, { + exact: true + }) + .click() + + await page + .locator('#internationalStatePlaceofbirth') + .fill(declaration.birthLocation.state) + await page + .locator('#internationalDistrictPlaceofbirth') + .fill(declaration.birthLocation.district) + await page + .locator('#internationalCityPlaceofbirth') + .fill(declaration.birthLocation.town) + await page + .locator('#internationalAddressLine1Placeofbirth') + .fill(declaration.birthLocation.addressLine1) + await page + .locator('#internationalAddressLine2Placeofbirth') + .fill(declaration.birthLocation.addressLine2) + await page + .locator('#internationalAddressLine3Placeofbirth') + .fill(declaration.birthLocation.addressLine3) + await page + .locator('#internationalPostalCodePlaceofbirth') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('6.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page.locator('#countryPrimaryInformant').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + await page + .locator('#internationalStatePrimaryInformant') + .fill(declaration.informant.address.state) + await page + .locator('#internationalDistrictPrimaryInformant') + .fill(declaration.informant.address.district) + await page + .locator('#internationalCityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#internationalAddressLine1PrimaryInformant') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryInformant') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryInformant') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test("6.1.3 Fill mother's details", async () => { + await page.getByLabel("Mother's details are not available").check() + await page.locator('#reasonNotApplying').fill(declaration.mother.reason) + + await continueForm(page) + }) + + test("6.1.4 Fill father's details", async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.father.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.father.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.father.age.toString()) + + await page.locator('#fatherIdType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page.locator('#countryPrimaryFather').click() + await page + .getByText(declaration.father.address.country, { exact: true }) + .click() + await page + .locator('#internationalStatePrimaryFather') + .fill(declaration.father.address.state) + await page + .locator('#internationalDistrictPrimaryFather') + .fill(declaration.father.address.district) + await page + .locator('#internationalCityPrimaryFather') + .fill(declaration.father.address.town) + await page + .locator('#internationalAddressLine1PrimaryFather') + .fill(declaration.father.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryFather') + .fill(declaration.father.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryFather') + .fill(declaration.father.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryFather') + .fill(declaration.father.address.postcodeOrZip) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('6.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expectAddress( + page.locator('#child-content #Place'), + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect(page.locator('#child-content #Attendant')).toContainText( + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.locator('#child-content #Type')).toContainText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.locator('#informant-content #Relationship') + ).toContainText(declaration.informantType) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + declaration.informant.identifier.type + ) + + /* + * Expected result: should include + * - Mother's Details not available: true + * - Reason of why mother's details not available + */ + await expect(page.locator('#mother-content')).toContainText( + "Mother's details are not availableYes" + ) + await expect(page.locator('#mother-content #Reason')).toContainText( + declaration.mother.reason + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.firstNames + ) + await expect(page.locator('#father-content #Full')).toContainText( + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.locator('#father-content #Age')).toContainText( + joinValuesWith([declaration.father.age, 'years']) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.locator('#father-content #Nationality')).toContainText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect(page.locator('#father-content #Level')).toContainText( + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's Type of Id + */ + await expect(page.locator('#father-content #Type')).toContainText( + declaration.father.identifier.type + ) + + /* + * Expected result: should include + * - Father's address + */ + await expectAddress( + page.locator('#father-content #Usual'), + declaration.father.address + ) + }) + + test('6.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('6.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the birth?')).toBeVisible() + await page.locator('#submit_confirm').click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: The declaration should be in Ready to print + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-7.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-7.spec.ts new file mode 100644 index 0000000000..a8bc15d5a0 --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-7.spec.ts @@ -0,0 +1,386 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + formatName, + getAction, + goToSection, + login, + uploadImage, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('7. Birth declaration case - 7', () => { + let page: Page + const required = 'Required for registration' + const declaration = { + child: { + name: { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + }, + attendantAtBirth: 'None', + informantType: 'Legal guardian', + mother: { + detailsDontExist: true + }, + father: { + detailsDontExist: true + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('7.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('7.1.1 Fill child details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.child.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + + await page.locator('#attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + await continueForm(page) + }) + + test('7.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test("7.1.3 Fill mother's details", async () => { + await page.getByLabel("Mother's details are not available").check() + await continueForm(page) + }) + + test("7.1.4 Fill father's details", async () => { + await page.getByLabel("Father's details are not available").check() + await continueForm(page) + }) + + test('7.1.5 Add supporting documents', async () => { + await goToSection(page, 'documents') + await uploadImage( + page, + page.locator('button[name="uploadDocForChildDOB"]') + ) + + /* + * Expected result: + * As mother and father's details are not given, upload document for mother and father should not be visible + */ + await expect(page.locator('#uploadDocForMother')).toBeHidden() + await expect(page.locator('#uploadDocForFather')).toBeHidden() + + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForInformant'), + sectionTitle: 'Birth certificate', + buttonLocator: page.locator('button[name="uploadDocForInformant"]') + }) + + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForProofOfLegalGuardian'), + sectionTitle: 'Proof of legal guardianship', + buttonLocator: page.locator( + 'button[name="uploadDocForProofOfLegalGuardian"]' + ) + }) + }) + + test('7.1.6 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('7.1.7 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + required + ) + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's Type of Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Reason of why mother's details not available + */ + await expect(page.locator('#mother-content #Reason')).toContainText( + required + ) + + /* + * Expected result: should require + * - Reason of why father's details not available + */ + await expect(page.locator('#father-content #Reason')).toContainText( + required + ) + }) + + test('7.1.8 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('7.1.9 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('7.2 Declaration Review by RA', async () => { + test('7.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'In Progress' }).click() + await page.getByRole('button', { name: 'Field Agents' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Update declaration').click() + }) + + test('7.2.2 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.firstNames + ) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + 'Must be a valid email address' + ) + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's Type of Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Reason of why mother's details not available + */ + await expect(page.locator('#mother-content #Reason')).toContainText( + required + ) + + /* + * Expected result: should require + * - Reason of why father's details not available + */ + await expect(page.locator('#father-content #Reason')).toContainText( + required + ) + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-8.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-8.spec.ts new file mode 100644 index 0000000000..3fcf5f468b --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-8.spec.ts @@ -0,0 +1,446 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + getAction, + goToSection, + login +} from '../../../helpers' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('8. Birth declaration case - 8', () => { + let page: Page + const required = 'Required for registration' + const declaration = { + informantType: 'Someone else', + informant: { + relation: 'Uncle' + }, + mother: { + maritalStatus: 'Not stated' + }, + father: { + maritalStatus: 'Not stated' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.1 Fill child details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + /* + * Expected result: should show additional fields: + * - Relationship to child + */ + await page + .locator('#otherInformantType') + .fill(declaration.informant.relation) + + await continueForm(page) + }) + + test("8.1.3 Fill mother's details", async () => { + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await continueForm(page) + }) + + test("8.1.4 Fill father's details", async () => { + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('8.1.6 Verify information on preview page', async () => { + /* + * Expected result: should require + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText(required) + await expect(page.locator('#child-content #Full')).toContainText(required) + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + await expect(page.locator('#informant-content')).toContainText( + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + required + ) + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's Type of Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + required + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.locator('#mother-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.locator('#father-content #Type')).toContainText( + required + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + }) + + test('8.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('8.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + }) + }) + + test.describe('8.2 Declaration Review by RA', async () => { + test('8.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'In Progress' }).click() + await page.getByRole('button', { name: 'Field Agents' }).click() + + await expect(page.locator('#name_0')).toBeVisible() + const [firstButton] = await page + .getByRole('button', { + name: 'No name provided' + }) + .all() + await firstButton.click() + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Update declaration').click() + }) + + test('8.2.2 Verify information on preview page', async () => { + /* + * Expected result: should require + * - Child's First Name + * - Child's Family Name + */ + await expect(page.locator('#child-content #Full')).toContainText(required) + await expect(page.locator('#child-content #Full')).toContainText(required) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + await expect(page.locator('#informant-content')).toContainText( + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + 'Must be a valid email address' + ) + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + await expect(page.locator('#informant-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's date of birth + */ + await expect(page.locator('#informant-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Informant's Type of Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + required + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect(page.locator('#mother-content #Marital')).toContainText( + declaration.mother.maritalStatus + ) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.locator('#mother-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + await expect(page.locator('#father-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.locator('#father-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.locator('#father-content #Type')).toContainText( + required + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect(page.locator('#father-content #Marital')).toContainText( + declaration.father.maritalStatus + ) + }) + }) +}) diff --git a/e2e/testcases/birth/declarations/birth-declaration-9.spec.ts b/e2e/testcases/birth/declarations/birth-declaration-9.spec.ts new file mode 100644 index 0000000000..14f03ca69d --- /dev/null +++ b/e2e/testcases/birth/declarations/birth-declaration-9.spec.ts @@ -0,0 +1,327 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + getAction, + goToSection, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('9. Birth declaration case - 9', () => { + let page: Page + const required = 'Required for registration' + const declaration = { + child: { + name: { + familyName: faker.person.lastName() + } + }, + informantType: 'Mother', + mother: { + detailsDontExist: false + }, + father: { + detailsDontExist: true + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('9.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.1 Fill child details', async () => { + await page + .locator('#familyNameEng') + .fill(declaration.child.name.familyName) + + await continueForm(page) + }) + + test('9.1.2 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test("9.1.3 Fill mother's details", async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test("9.1.4 Fill father's details", async () => { + await page.getByLabel("Father's details are not available").check() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('9.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's Family Name + * * should require + * - Child's First Name + */ + await expect(page.locator('#child-content #Full')).toContainText(required) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.locator('#mother-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Reason of why father's details not available + */ + await expect(page.locator('#father-content #Reason')).toContainText( + required + ) + }) + + test('9.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('9.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: `${declaration.child.name.familyName}` + }) + ).toBeVisible() + }) + }) + + test.describe('9.2 Declaration Review by RA', async () => { + test('9.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'In Progress' }).click() + await page.getByRole('button', { name: 'Field Agents' }).click() + + await expect( + page.getByRole('button', { + name: `${declaration.child.name.familyName}` + }) + ).toBeVisible() + + await auditRecord({ + page, + name: `${declaration.child.name.familyName}` + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Update declaration').click() + }) + + test('9.2.2 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's Family Name + * * should require + * - Child's First Name + */ + await expect(page.locator('#child-content #Full')).toContainText(required) + await expect(page.locator('#child-content #Full')).toContainText( + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.locator('#child-content #Sex')).toContainText(required) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.locator('#child-content #Date')).toContainText(required) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + await expect(page.locator('#child-content #Place')).toContainText( + required + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.locator('#informant-content')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + 'Must be a valid email address' + ) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + await expect(page.locator('#mother-content #Full')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.locator('#mother-content #Date')).toContainText( + required + ) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.locator('#mother-content #Type')).toContainText( + required + ) + + /* + * Expected result: should require + * - Reason of why father's details not available + */ + await expect(page.locator('#father-content #Reason')).toContainText( + required + ) + }) + }) +}) diff --git a/e2e/testcases/birth/helpers.ts b/e2e/testcases/birth/helpers.ts new file mode 100644 index 0000000000..5e0e27c089 --- /dev/null +++ b/e2e/testcases/birth/helpers.ts @@ -0,0 +1,381 @@ +import { GATEWAY_HOST } from '../../constants' +import { BirthRegistrationInput } from '../../gateway' +import { faker } from '@faker-js/faker' + +import { readFileSync } from 'fs' +import { v4 as uuidv4 } from 'uuid' +import { format, subDays, subYears } from 'date-fns' +import { join } from 'path' +import { + CREATE_BIRTH_REGISTRATION, + GET_BIRTH_REGISTRATION_FOR_REVIEW, + REGISTER_BIRTH_DECLARATION +} from './queries' +import { random } from 'lodash' +import { generateRandomSuffix } from '../../helpers' +import fetch from 'node-fetch' + +export type BirthDetails = { + informant: { + type: 'MOTHER' | 'FATHER' | 'BROTHER' + } + child: { + firstNames: string + familyName: string + birthDate?: string + gender: 'male' | 'female' + birthType?: 'SINGLE' | 'MULTIPLE' + weightAtBirth?: number + placeOfBirth?: 'Health Institution' | 'Residential address' | 'Other' + birthFacility?: string + birthLocation?: { + state: string + district: string + } + } + mother: { + firstNames: string + familyName: string + age?: number + maritalStatus?: 'SINGLE' | 'MARRIED' | 'DIVORCED' | 'WIDOWED' + } + father: { + firstNames: string + familyName: string + birthDate?: string + } + attendant: { + type: 'PHYSICIAN' | 'NURSE' | 'MIDWIFE' | 'OTHER' + } +} +export async function getAllLocations( + type: 'ADMIN_STRUCTURE' | 'HEALTH_FACILITY' | 'CRVS_OFFICE' +) { + const locations = (await fetch( + `${GATEWAY_HOST}/location?type=${type}&_count=0` + ).then((res) => res.json())) as fhir.Bundle + + return locations.entry!.map((entry) => entry.resource as fhir.Location) +} + +export function getLocationIdByName(locations: fhir.Location[], name: string) { + const location = locations.find((location) => location.name === name) + if (!location) { + throw new Error(`Location with name ${name} not found`) + } + return location.id +} +export async function createDeclaration(token: string, details: BirthDetails) { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const facilities = await getAllLocations('HEALTH_FACILITY') + + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: CREATE_BIRTH_REGISTRATION, + variables: { + details: { + createdAt: new Date().toISOString(), + registration: { + status: [ + { + timestamp: new Date().toISOString(), + timeLoggedMS: 1031608 + } + ], + informantsSignature: + 'data:image/png;base64,' + + readFileSync( + join(__dirname, './data/assets/528KB-random.png') + ).toString('base64'), + informantType: details.informant.type, + contactPhoneNumber: '+26007' + faker.string.numeric(8), + contactEmail: faker.internet.email(), + draftId: uuidv4() + }, + child: { + name: [ + { + use: 'en', + firstNames: details.child.firstNames + generateRandomSuffix(), + familyName: details.child.familyName + generateRandomSuffix() + } + ], + gender: details.child.gender, + birthDate: + details.child.birthDate || + format( + subDays(new Date(), 11 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + identifier: [] + }, + eventLocation: + details.child.placeOfBirth && + details.child.placeOfBirth !== 'Health Institution' + ? { + type: 'PRIVATE_HOME', + address: { + line: [ + faker.location.buildingNumber(), + faker.location.street(), + faker.location.city(), + '', + '', + 'URBAN', + ...new Array(9).fill('') + ], + country: 'FAR', + state: getLocationIdByName( + locations, + details.child.birthLocation?.state || 'Central' + ), + partOf: getLocationIdByName( + locations, + details.child.birthLocation?.district || 'Ibombo' + ), + district: getLocationIdByName( + locations, + details.child.birthLocation?.district || 'Ibombo' + ), + city: faker.location.city(), + postalCode: faker.location.zipCode() + } + } + : { + _fhirID: getLocationIdByName( + facilities, + details.child.birthFacility || 'Ibombo Rural Health Centre' + ) + }, + attendantAtBirth: details.attendant.type || 'PHYSICIAN', + birthType: details.child.birthType || 'SINGLE', + weightAtBirth: details.child.weightAtBirth || 2, + mother: { + name: [ + { + use: 'en', + firstNames: details.mother.firstNames, + familyName: details.mother.familyName + } + ], + ageOfIndividualInYears: details.mother.age || random(50, 100), + nationality: ['FAR'], + identifier: [ + { + id: faker.string.numeric(10), + type: 'NATIONAL_ID' + } + ], + address: [ + { + type: 'PRIMARY_ADDRESS', + line: [ + faker.location.buildingNumber(), + faker.location.street(), + faker.location.city(), + '', + '', + 'URBAN', + '', + '', + '', + '', + '', + '', + '', + '', + '' + ], + country: 'FAR', + state: getLocationIdByName(locations, 'Central'), + partOf: getLocationIdByName(locations, 'Ibombo'), + district: getLocationIdByName(locations, 'Ibombo'), + city: 'Example Town', + postalCode: '534534' + } + ], + maritalStatus: details.mother.maritalStatus || 'SINGLE', + educationalAttainment: 'NO_SCHOOLING' + }, + questionnaire: [ + { + fieldId: 'birth.mother.mother-view-group.motherIdType', + value: 'NATIONAL_ID' + }, + { + fieldId: 'birth.father.father-view-group.fatherIdType', + value: 'NATIONAL_ID' + }, + { + fieldId: 'birth.informant.informant-view-group.informantIdType', + value: 'NATIONAL_ID' + } + ], + father: { + detailsExist: true, + name: [ + { + use: 'en', + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + ], + birthDate: + details.father.birthDate || + format( + subYears(new Date(), 36 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + nationality: ['FAR'], + identifier: [ + { + id: faker.string.numeric(10), + type: 'NATIONAL_ID' + } + ], + address: [ + { + type: 'PRIMARY_ADDRESS', + line: [ + '343', + 'Example Street', + 'Example Residential Area', + '', + '', + 'URBAN', + '', + '', + '', + '', + '', + '', + '', + '', + '' + ], + country: 'FAR', + state: getLocationIdByName(locations, 'Central'), + partOf: getLocationIdByName(locations, 'Ibombo'), + district: getLocationIdByName(locations, 'Ibombo'), + city: 'Example Town', + postalCode: '534534' + } + ], + maritalStatus: 'SINGLE', + educationalAttainment: 'NO_SCHOOLING' + }, + informant: { + name: [ + { + use: 'en', + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + ], + birthDate: format( + subYears(new Date(), 36 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + nationality: ['FAR'], + identifier: [ + { + id: faker.string.numeric(10), + type: 'NATIONAL_ID' + } + ], + address: [ + { + type: 'PRIMARY_ADDRESS', + line: [ + '343', + 'Example Street', + 'Example Residential Area', + '', + '', + 'URBAN', + '', + '', + '', + '', + '', + '', + '', + '', + '' + ], + country: 'FAR', + state: getLocationIdByName(locations, 'Central'), + partOf: getLocationIdByName(locations, 'Ibombo'), + district: getLocationIdByName(locations, 'Ibombo'), + city: 'Example Town', + postalCode: '534534' + } + ] + } + } satisfies ConvertEnumsToStrings + } + }) + }) + return res.json().then((r) => r.data.createBirthRegistration) +} + +export const fetchDeclaration = async ( + token: string, + compositionId: string +) => { + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: GET_BIRTH_REGISTRATION_FOR_REVIEW, + variables: { + id: compositionId + } + }) + }) + return await res.json() +} + +export const registerDeclaration = async ( + token: string, + compositionId: string +) => { + await fetchDeclaration(token, compositionId) + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: REGISTER_BIRTH_DECLARATION, + variables: { + id: compositionId, + details: { + createdAt: new Date().toISOString() + } satisfies ConvertEnumsToStrings + } + }) + }) + const t = await res.json() + + return await t +} + +export type ConvertEnumsToStrings = T extends (infer U)[] + ? ConvertEnumsToStrings[] + : T extends string + ? `${T}` + : T extends object + ? { + [K in keyof T]: ConvertEnumsToStrings + } + : T diff --git a/e2e/testcases/birth/queries.ts b/e2e/testcases/birth/queries.ts new file mode 100644 index 0000000000..b14dd2f87a --- /dev/null +++ b/e2e/testcases/birth/queries.ts @@ -0,0 +1,366 @@ +import gql from 'graphql-tag' +import { print } from 'graphql/language/printer' + +export const CREATE_BIRTH_REGISTRATION = print(gql` + mutation createBirthRegistration($details: BirthRegistrationInput!) { + createBirthRegistration(details: $details) { + trackingId + compositionId + isPotentiallyDuplicate + __typename + } + } +`) + +export const GET_BIRTH_REGISTRATION_FOR_REVIEW = print(gql` + query fetchBirthRegistrationForReview($id: ID!) { + fetchBirthRegistration(id: $id) { + _fhirIDMap + id + child { + id + identifier { + id + type + otherType + } + name { + use + firstNames + middleName + familyName + } + birthDate + gender + } + informant { + id + relationship + otherRelationship + _fhirIDPatient + identifier { + id + type + otherType + fieldsModifiedByIdentity + } + name { + use + firstNames + middleName + familyName + } + occupation + nationality + birthDate + ageOfIndividualInYears + exactDateOfBirthUnknown + address { + type + line + district + state + city + postalCode + country + } + } + mother { + id + name { + use + firstNames + middleName + familyName + } + multipleBirth + birthDate + maritalStatus + occupation + detailsExist + reasonNotApplying + ageOfIndividualInYears + exactDateOfBirthUnknown + dateOfMarriage + educationalAttainment + nationality + identifier { + id + type + otherType + fieldsModifiedByIdentity + } + address { + type + line + district + state + city + postalCode + country + } + telecom { + system + value + } + } + father { + id + name { + use + firstNames + middleName + familyName + } + birthDate + maritalStatus + occupation + detailsExist + reasonNotApplying + ageOfIndividualInYears + exactDateOfBirthUnknown + dateOfMarriage + educationalAttainment + nationality + identifier { + id + type + otherType + fieldsModifiedByIdentity + } + address { + type + line + district + state + city + postalCode + country + } + telecom { + system + value + } + } + registration { + id + informantType + otherInformantType + contact + contactRelationship + contactPhoneNumber + contactEmail + assignment { + practitionerId + firstName + lastName + officeName + avatarURL + } + certificates { + hasShowedVerifiedDocument + certificateTemplateId + collector { + relationship + otherRelationship + name { + use + firstNames + familyName + } + telecom { + system + value + use + } + } + } + duplicates { + compositionId + trackingId + } + informantsSignature + attachments { + data + uri + type + contentType + subject + } + status { + comments { + comment + } + type + timestamp + office { + name + alias + address { + district + state + } + partOf + } + } + type + trackingId + registrationNumber + } + attendantAtBirth + weightAtBirth + birthType + eventLocation { + id + type + address { + line + district + state + city + postalCode + country + } + } + questionnaire { + fieldId + value + } + history { + otherReason + requester + requesterOther + noSupportingDocumentationRequired + hasShowedVerifiedDocument + certificateTemplateId + date + action + regStatus + dhis2Notification + ipAddress + documents { + id + data + uri + type + } + payment { + id + type + amount + outcome + date + attachmentURL + } + statusReason { + text + } + reason + location { + id + name + } + office { + id + name + alias + address { + state + district + } + } + system { + name + type + } + user { + id + role { + id + label { + id + defaultMessage + description + } + } + name { + firstNames + familyName + use + } + avatar { + data + type + } + } + signature { + data + type + } + comments { + user { + id + username + avatar { + data + type + } + } + comment + createdAt + } + input { + valueCode + valueId + value + } + output { + valueCode + valueId + value + } + certificates { + hasShowedVerifiedDocument + certificateTemplateId + collector { + relationship + otherRelationship + name { + use + firstNames + familyName + } + telecom { + system + value + use + } + } + certifier { + name { + use + firstNames + familyName + } + role { + id + label { + id + defaultMessage + description + } + } + } + } + duplicateOf + potentialDuplicates + } + } + } +`) + +export const REGISTER_BIRTH_DECLARATION = print(gql` + mutation markBirthAsRegistered($id: ID!, $details: BirthRegistrationInput!) { + markBirthAsRegistered(id: $id, details: $details) + } +`) diff --git a/e2e/testcases/birth/types.ts b/e2e/testcases/birth/types.ts new file mode 100644 index 0000000000..b40f828b87 --- /dev/null +++ b/e2e/testcases/birth/types.ts @@ -0,0 +1,259 @@ +export type BirthInputDetails = { + informant: { + type: 'MOTHER' | 'FATHER' | 'BROTHER' + } + child: { + firstNames: string + familyName: string + birthDate?: string + gender: 'male' | 'female' + birthType?: 'SINGLE' | 'MULTIPLE' + weightAtBirth?: number + } + mother: { + firstNames: string + familyName: string + birthDate?: string + maritalStatus?: 'SINGLE' | 'MARRIED' | 'DIVORCED' | 'WIDOWED' + } + father: { + firstNames: string + familyName: string + birthDate?: string + } + attendant: { + type: 'PHYSICIAN' | 'NURSE' | 'MIDWIFE' | 'OTHER' + } +} + +export type BirthDeclaration = { + _fhirIDMap: { + composition: string + encounter: string + eventLocation: string + observation: { + birthType: string + weightAtBirth: string + attendantAtBirth: string + } + questionnaireResponse: string + } + id: string + child: { + id: string + identifier: { + id: string + type: string + otherType: string | null + }[] + name: { + use: string + firstNames: string + middleName: string + familyName: string + }[] + birthDate: string + gender: string + } + informant: { + id: string + relationship: string + otherRelationship: string | null + _fhirIDPatient: string + identifier: { + id: string + type: string + otherType: string | null + fieldsModifiedByIdentity: string | null + }[] + name: { + use: string + firstNames: string + middleName: string + familyName: string + }[] + occupation: string | null + nationality: string[] + birthDate: string + ageOfIndividualInYears: number | null + exactDateOfBirthUnknown: boolean | null + address: { + type: string + line: string[] + district: string + state: string + city: string + postalCode: string + country: string + }[] + } + mother: { + id: string + name: { + use: string + firstNames: string + middleName: string + familyName: string + }[] + multipleBirth: boolean | null + birthDate: string + maritalStatus: string + occupation: string | null + detailsExist: boolean + reasonNotApplying: string | null + ageOfIndividualInYears: number | null + exactDateOfBirthUnknown: boolean | null + dateOfMarriage: string | null + educationalAttainment: string + nationality: string[] + identifier: { + id: string + type: string + otherType: string | null + fieldsModifiedByIdentity: string | null + }[] + address: { + type: string + line: string[] + district: string + state: string + city: string + postalCode: string + country: string + }[] + telecom: string | null + } + father: { + id: string + name: { + use: string + firstNames: string + middleName: string + familyName: string + }[] + birthDate: string + maritalStatus: string + occupation: string | null + detailsExist: boolean + reasonNotApplying: string | null + ageOfIndividualInYears: number | null + exactDateOfBirthUnknown: boolean | null + dateOfMarriage: string | null + educationalAttainment: string + nationality: string[] + identifier: { + id: string + type: string + otherType: string | null + fieldsModifiedByIdentity: string | null + }[] + address: { + type: string + line: string[] + district: string + state: string + city: string + postalCode: string + country: string + }[] + telecom: string | null + } + registration: { + id: string + informantType: string + otherInformantType: string | null + contact: string | null + contactRelationship: string | null + contactPhoneNumber: string + contactEmail: string + duplicates: string | null + informantsSignature: string + informantsSignatureURI: string + attachments: string | null + status: { + comments: string | null + type: string + timestamp: string + office: { + name: string + alias: string[] + address: string | null + partOf: string + } + }[] + type: string + trackingId: string + registrationNumber: string + } + attendantAtBirth: string + weightAtBirth: number + birthType: string + eventLocation: { + id: string + type: string + address: { + type: string + line: string[] + district: string + state: string + city: string + postalCode: string + country: string + } + } + questionnaire: { + fieldId: string + value: string + }[] + history: { + otherReason: string + requester: string + requesterOther: string + noSupportingDocumentationRequired: boolean + hasShowedVerifiedDocument: boolean + date: string + action: string | null + regStatus: string + dhis2Notification: boolean + ipAddress: string | null + documents: string[] + payment: string | null + statusReason: string | null + reason: string | null + location: { + id: string + name: string + } + office: { + id: string + name: string + alias: string[] + address: string | null + } + system: string | null + user: { + id: string + role: { + _id: string + labels: { + lang: string + label: string + }[] + } + systemRole: string + name: { + firstNames: string + familyName: string + use: string + }[] + avatar: string | null + } + signature: string | null + comments: string[] + input: string[] + output: string[] + certificates: string[] + duplicateOf: string | null + potentialDuplicates: string | null + }[] +} diff --git a/e2e/testcases/correction-birth/correct-birth-record-1.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-1.spec.ts new file mode 100644 index 0000000000..3fbea740d3 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-1.spec.ts @@ -0,0 +1,1127 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatDateTo_yyyyMMdd, + formatName, + getAction, + getLocationNameFromFhirId, + getToken, + goBackToReview, + goToSection, + login, + uploadImage, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { format, parseISO, subDays } from 'date-fns' +import { CREDENTIALS } from '../../constants' + +test.describe('1. Correct record - 1', () => { + let declaration: BirthDeclaration + let trackingId = '' + + const updatedChildDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + gender: 'Female', + birthDate: format( + subDays(new Date(), Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + birthLocation: 'Tembwe Rural Health Centre', + attendantAtBirth: 'Nurse', + typeOfBirth: 'Twin', + weightAtBirth: '3.1' + } + + test.beforeAll(async () => { + let token = await getToken('k.mweene', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('f.katongo', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test.describe('1.1 Validate verbiage', async () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('1.1.1 Validate record audit page', async ({ page }) => { + /* + * Expected result: should + * - See in header child's name and action button + * - Navigate to record audit page + * - See status, event, trackingId, BRN, DOB, Place of birth, Informant contact + */ + await expect( + page.getByText(formatName(declaration.child.name[0])) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Action' }).first() + ).toBeVisible() + + expect(page.url().includes('record-audit')).toBeTruthy() + + await expect( + page.getByText(`Status${declaration.registration.status[0].type}`) + ).toBeVisible() + await expect( + page.getByText(`Event${declaration.registration.type}`) + ).toBeVisible() + await expect(page.getByText(`Tracking ID${trackingId}`)).toBeVisible() + await expect( + page.getByText( + `Registration No${declaration.registration.registrationNumber}` + ) + ).toBeVisible() + await expect( + page.getByText(`Date of birth${format( + parseISO(declaration.child.birthDate), + 'MMMM dd, yyyy' + )} + `) + ).toBeVisible() + const childBirthLocationName = await getLocationNameFromFhirId( + declaration.eventLocation!.id + ) + await expect( + page.getByText(`Place of birth${childBirthLocationName}`) + ).toBeVisible() + await expect( + page.getByText(declaration.registration.contactEmail) + ).toBeVisible() + + /* + * Expected result: Clicking action button should + * open up action menu with options including: + * - Correct record + */ + await page.getByRole('button', { name: 'Action' }).first().click() + await expect( + page.locator('#action-dropdownMenu').getByRole('list') + ).toBeVisible() + await expect(getAction(page, 'Correct record')).toBeVisible() + }) + + test('1.1.2 Validate correction requester page', async ({ page }) => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + + /* + * Expected result: should + * - Navigate to Correction Requester Page + */ + await expect(page.getByText('Correction requester')).toBeVisible() + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('corrector')).toBeTruthy() + + /* + * Expected result: should say + * - Note: In the case that the child is now of legal age (18) then only they should be able to request a change to their birth record. + */ + await expect( + page.getByText( + 'Note: In the case that the child is now of legal age (18) then only they should be able to request a change to their birth record.' + ) + ).toBeVisible() + }) + + test('1.1.3 Validate identity verification page for Mother', async ({ + page + }) => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + + await page.getByLabel('Mother').check() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should show + * Text: Verify their identity + * Button: Verified + * Button: Identity does not match + */ + await expect(page.getByText('Verify their identity')).toBeVisible() + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + + /* + * Expected result: should Confirm + * ID + * First Name + * Last Name + * Date of Birth + * Nationality + */ + await expect( + page.getByText( + `ID: National Id | ${declaration.mother.identifier[0].id}` + ) + ).toBeVisible() + await expect( + page.getByText( + `First name(s): ${declaration.mother.name[0].firstNames}` + ) + ).toBeVisible() + await expect( + page.getByText(`Last name: ${declaration.mother.name[0].familyName}`) + ).toBeVisible() + await expect( + page.getByText( + `Age: + ${declaration.mother.ageOfIndividualInYears} + ` + ) + ).toBeVisible() + await expect( + page.getByText(`Nationality: ${declaration.mother.nationality}`) + ).toBeVisible() + }) + }) + + test.describe.serial('1.2 Record correction by mother', async () => { + let page: Page + + let childBirthLocationName: string | undefined + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + + await page.getByLabel('Mother').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test.afterAll(async () => { + await page.close() + }) + + test('1.2.1 Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('1.2.2 Correction made on child details', async () => { + test('1.2.2.1 Change name', async () => { + await page + .locator('#child-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page + .locator('#firstNamesEng') + .fill(updatedChildDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedChildDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#child-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.child.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.child.name[0].familyName + ) + + await expect( + page + .locator('#child-content #Full') + .getByText(updatedChildDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#child-content #Full') + .getByText(updatedChildDetails.familyName) + ).toBeVisible() + }) + + test('1.2.2.2 Change gender', async () => { + await page + .locator('#child-content #Sex') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#gender')).toBeTruthy() + + await page.locator('#gender').click() + await page.getByText(updatedChildDetails.gender).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Sex').getByRole('deletion') + ).toHaveText(declaration.child.gender, { ignoreCase: true }) + + await expect( + page + .locator('#child-content #Sex') + .getByText(updatedChildDetails.gender) + ).toBeVisible() + }) + + test('1.2.2.3 Change date of birth', async () => { + await page + .locator('#child-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#childBirthDate')).toBeTruthy() + + const birthDay = updatedChildDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.child.birthDate)) + + await expect( + page + .locator('#child-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedChildDetails.birthDate)) + ).toBeVisible() + }) + + test('1.2.2.4 Change place of delivery', async () => { + await page + .locator('#child-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's place of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#placeOfBirth')).toBeTruthy() + + await page + .locator('#birthLocation') + .fill(updatedChildDetails.birthLocation.slice(0, 2)) + await page.getByText(updatedChildDetails.birthLocation).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place of birth with strikethrough + * - show updated place of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + expect(declaration.eventLocation).toBeDefined() + + childBirthLocationName = await getLocationNameFromFhirId( + declaration.eventLocation!.id + ) + expect(childBirthLocationName).toBeDefined() + + await expect( + page.locator('#child-content #Place').getByRole('deletion').nth(1) + ).toHaveText(childBirthLocationName!, { + ignoreCase: true + }) + + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation) + ).toBeVisible() + }) + + test('1.2.2.5 Change attendant at birth', async () => { + await page + .locator('#child-content #Attendant') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's Attendant at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#attendantAtBirth')).toBeTruthy() + + await page.locator('#attendantAtBirth').click() + await page.getByText(updatedChildDetails.attendantAtBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Attendant at birth with strikethrough + * - show updated Attendant at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + expect(declaration.attendantAtBirth).toBeDefined + + await expect( + page.locator('#child-content #Attendant').getByRole('deletion') + ).toHaveText(declaration.attendantAtBirth!, { ignoreCase: true }) + + await expect( + page + .locator('#child-content #Attendant') + .getByText(updatedChildDetails.attendantAtBirth) + ).toBeVisible() + }) + + test('1.2.2.6 Change type of birth', async () => { + await page + .locator('#child-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's type of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#birthType')).toBeTruthy() + + await page.locator('#birthType').click() + await page.getByText(updatedChildDetails.typeOfBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous type of birth with strikethrough + * - show updated type of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + expect(declaration.birthType).toBeDefined + + await expect( + page.locator('#child-content #Type').getByRole('deletion') + ).toHaveText(declaration.birthType!, { ignoreCase: true }) + + await expect( + page + .locator('#child-content #Type') + .getByText(updatedChildDetails.typeOfBirth) + ).toBeVisible() + }) + }) + + test('1.2.3 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeDisabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.2.4 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeDisabled() + + await page + .getByLabel('Myself or an agent made a mistake (Clerical error)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.describe('1.2.5 Correction summary', async () => { + test('1.2.5.1 Go back to review', async () => { + /* Expected result: should + * - navigate to correction summary + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('summary')).toBeTruthy() + + await page + .getByRole('button', { name: 'Back to review', exact: true }) + .click() + + /* Expected result: should + * - navigate to correction review + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test('1.2.5.2 Change weight at birth', async () => { + await page + .locator('#child-content #Weight') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's weight at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#weightAtBirth')).toBeTruthy() + + await page + .locator('#weightAtBirth') + .fill(updatedChildDetails.weightAtBirth) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous weight at birth with strikethrough + * - show updated weight at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + expect(declaration.weightAtBirth).toBeDefined + + await expect( + page.locator('#child-content #Weight').getByRole('deletion') + ).toHaveText(declaration.weightAtBirth! + ' kilograms (kg)') + + await expect( + page + .locator('#child-content #Weight') + .getByText(updatedChildDetails.weightAtBirth + ' kilograms (kg)') + ).toBeVisible() + }) + + test('1.2.5.3 Validate information in correction summary page', async () => { + await goToSection(page, 'summary') + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Send for approval' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (Child)' + + formatName(declaration.child.name[0]) + + formatName(updatedChildDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Child)' + + declaration.child.gender + + updatedChildDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (Child)' + + formatDateTo_ddMMMMyyyy(declaration.child.birthDate) + + formatDateTo_ddMMMMyyyy(updatedChildDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Health Institution' + + childBirthLocationName + + 'Health Institution' + + updatedChildDetails.birthLocation + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Attendant at birth (Child)' + + declaration.attendantAtBirth + + updatedChildDetails.attendantAtBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of birth (Child)' + + declaration.birthType + + updatedChildDetails.typeOfBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Weight at birth (Child)' + + declaration.weightAtBirth + + updatedChildDetails.weightAtBirth + ) + ).toBeVisible() + + await expect( + page.getByText(formatName(declaration.mother.name[0])) + ).toBeVisible() + await expect(page.getByText('Verified')).toBeVisible() + await expect( + page.getByText('Myself or an agent made a mistake (Clerical error)') + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('Yes').check() + await page + .locator('#correctionFees\\.nestedFields\\.totalFees') + .fill('15') + + await uploadImage(page, page.locator('#upload_document')) + + /* + * Expected result: should enable the Send for approval button + */ + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/approvals')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + }) + + test.describe('1.2.6 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + page = await browser.newPage() + + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + }) + + test('1.2.6.1 Record audit by local registrar', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('1.2.6.2 Correction review', async () => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review correction request').click() + /* + * Expected result: should show + * - Submitter + * - Requested by + * - Reason for request + * - Comments + * - Original vs correction + */ + + await expect( + page.getByText('Submitter' + 'Felix Katongo') + ).toBeVisible() + + await expect( + page.getByText( + 'Requested by' + formatName(declaration.mother.name[0]) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Reason for request' + + 'Myself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Comments' + declaration.registration.registrationNumber + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (Child)' + + formatName(declaration.child.name[0]) + + formatName(updatedChildDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Child)' + + declaration.child.gender + + updatedChildDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (Child)' + + formatDateTo_ddMMMMyyyy(declaration.child.birthDate) + + formatDateTo_ddMMMMyyyy(updatedChildDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Health Institution' + + childBirthLocationName + + 'Health Institution' + + updatedChildDetails.birthLocation + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Attendant at birth (Child)' + + declaration.attendantAtBirth + + updatedChildDetails.attendantAtBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of birth (Child)' + + declaration.birthType + + updatedChildDetails.typeOfBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Weight at birth (Child)' + + declaration.weightAtBirth + + updatedChildDetails.weightAtBirth + ) + ).toBeVisible() + }) + + test('1.2.6.3 Approve correction', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the updated declaration in this tab + */ + expect(page.url().includes('registration-home/print')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + await expect( + page.getByText(formatName(updatedChildDetails)) + ).toBeVisible() + }) + test.describe('1.2.6.4 Validate history in record audit', async () => { + test('1.2.6.4.1 Validate entries in record audit', async () => { + await auditRecord({ + page, + name: formatName(updatedChildDetails), + trackingId + }) + + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Correction requested + * - Correction approved + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction requested' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction approved' }) + ).toBeVisible() + }) + + test('1.2.6.4.2 Validate correction requested modal', async () => { + const correctionRequestedRow = page.locator( + '#listTable-task-history div[id^="row_"]:has-text("Correction requested")' + ) + await correctionRequestedRow.getByText('Correction requested').click() + + const time = await correctionRequestedRow + .locator('span') + .nth(1) + .innerText() + + const requester = await correctionRequestedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction requested header + * - Requester & time + * - Requested by + * - Id check + * - Reason + * - Comment + * - Original vs Correction + */ + + await expect( + page.getByRole('heading', { name: 'Correction requested' }) + ).toBeVisible() + + await expect(page.getByText(requester + ' — ' + time)).toBeVisible() + + await expect(page.getByText('Requested by' + 'Mother')).toBeVisible() + await expect(page.getByText('ID check' + 'Verified')).toBeVisible() + await expect( + page.getByText( + 'Reason for request' + + 'Myself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Comment' + declaration.registration.registrationNumber + ) + ).toBeVisible() + + await expect( + page.getByText( + 'First name(s) (Child)' + + declaration.child.name[0].firstNames + + updatedChildDetails.firstNames + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Last name (Child)' + + declaration.child.name[0].familyName + + updatedChildDetails.familyName + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Child)' + + declaration.child.gender + + updatedChildDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (Child)' + + formatDateTo_yyyyMMdd(declaration.child.birthDate) + + formatDateTo_yyyyMMdd(updatedChildDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Health Institution (Child)' + + childBirthLocationName + + updatedChildDetails.birthLocation + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Attendant at birth (Child)' + + declaration.attendantAtBirth + + updatedChildDetails.attendantAtBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of birth (Child)' + + declaration.birthType + + updatedChildDetails.typeOfBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Weight at birth (Child)' + + declaration.weightAtBirth + + updatedChildDetails.weightAtBirth + ) + ).toBeVisible() + + await page + .getByRole('heading', { name: 'Correction requested' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + + test('1.2.6.4.3 Validate correction approved modal', async () => { + const correctionApprovedRow = page.locator( + '#listTable-task-history div[id^="row_"]:has-text("Correction approved")' + ) + await correctionApprovedRow.getByText('Correction approved').click() + + const time = await correctionApprovedRow + .locator('span') + .nth(1) + .innerText() + + const reviewer = await correctionApprovedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction approved header + * - Reviewer & time + */ + + await expect( + page.getByRole('heading', { name: 'Correction approved' }) + ).toBeVisible() + + await expect(page.getByText(reviewer + ' — ' + time)).toBeVisible() + await page + .getByRole('heading', { name: 'Correction approved' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + }) + }) + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-2.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-2.spec.ts new file mode 100644 index 0000000000..22c572aa4c --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-2.spec.ts @@ -0,0 +1,1364 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatDateTo_yyyyMMdd, + formatName, + getAction, + getToken, + goBackToReview, + joinValuesWith, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { format, parseISO, subYears } from 'date-fns' +import { CREDENTIALS } from '../../constants' + +test.describe.serial('Correct record - 2', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + + const updatedInformantDetails = { + relationship: 'Sister', + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + birthDate: format( + subYears(new Date(), 25 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + const updatedChildDetails = { + placeOfBirth: 'Residential address', + birthLocation: { + province: 'Pualula', + district: 'Ienge', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('2.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('f.katongo', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test('2.1 Certificate preview', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'No, make correction' }).click() + }) + + test('2.2 Correction requester: father', async () => { + await page.getByLabel('Father').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * ID + * First Name + * Last Name + * Date of Birth + * Nationality + */ + await expect( + page.getByText(`ID: National Id | ${declaration.father.identifier[0].id}`) + ).toBeVisible() + await expect( + page.getByText(`First name(s): ${declaration.father.name[0].firstNames}`) + ).toBeVisible() + await expect( + page.getByText(`Last name: ${declaration.father.name[0].familyName}`) + ).toBeVisible() + await expect( + page.getByText( + `Date of Birth: + ${formatDateTo_ddMMMMyyyy(declaration.father.birthDate)} + ` + ) + ).toBeVisible() + await expect( + page.getByText(`Nationality: ${declaration.father.nationality}`) + ).toBeVisible() + + await page.getByRole('button', { name: 'Identity does not match' }).click() + + /* + * Expected result: should show modal with + * - Correct without proof of ID? + * - Please be aware that if you proceed, you will be responsible + * for making a change to this record without the necessary proof of identification + * - Confirm button + * - Cancel button + */ + await expect(page.getByText('Correct without proof of ID?')).toBeVisible() + await expect( + page.getByText( + 'Please be aware that if you proceed, you will be responsible for making a change to this record without the necessary proof of identification' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('2.4 Make correction', async () => { + test.describe('2.4.1 Make correction on informant details', async () => { + test('2.4.1 Change relationship to child', async () => { + await page + .locator('#informant-content #Relationship') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informantType + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantType')).toBeTruthy() + + await page.locator('#informantType').click() + await page.getByText(updatedInformantDetails.relationship).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous relation with strikethrough + * - show updated relation + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Relationship').getByRole('deletion') + ).toHaveText(declaration.registration.informantType, { + ignoreCase: true + }) + + await expect( + page + .locator('#informant-content #Relationship') + .getByText(updatedInformantDetails.relationship) + ).toBeVisible() + }) + + test('2.4.2 Change name', async () => { + await page + .locator('#informant-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + // @ToDo assert after it is fixed + // expect(page.url().includes('#familyNameEng')).toBeTruthy() // fail: does not focus on infirmant's family name + + await page + .locator('#firstNamesEng') + .fill(updatedInformantDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedInformantDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#informant-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.informant.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.informant.name[0].familyName + ) + + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.familyName) + ).toBeVisible() + }) + + test('2.4.3 Change date of birth', async () => { + await page + .locator('#informant-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantBirthDate')).toBeTruthy() + + const birthDay = updatedInformantDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)) + + await expect( + page + .locator('#informant-content #Date') + .getByText( + format( + parseISO(updatedInformantDetails.birthDate), + 'dd MMMM yyyy' + ) + ) + ).toBeVisible() + }) + + test('2.4.4 Change nationality', async () => { + await page + .locator('#informant-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedInformantDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#informant-content #Nationality') + .getByText(updatedInformantDetails.nationality) + ).toBeVisible() + }) + + test('2.4.5 Change id type', async () => { + await page + .locator('#informant-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantIdType')).toBeTruthy() + + await page.locator('#informantIdType').click() + await page.getByText(updatedInformantDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#informant-content #Type') + .getByText(updatedInformantDetails.idType) + ).toBeVisible() + }) + + test('2.4.6 Change id', async () => { + await page + .locator('#informant-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantPassport')).toBeTruthy() + + await page + .locator('#informantPassport') + .fill(updatedInformantDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#informant-content #ID') + .getByText(updatedInformantDetails.id) + ).toBeVisible() + }) + + test('2.4.7 Change usual place of residence', async () => { + await page + .locator('#informant-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.province).click() + + await page.locator('#districtPrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.district).click() + + await page + .locator('#cityPrimaryInformant') + .fill(updatedInformantDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.number) + + await page + .locator('#postalCodePrimaryInformant') + .fill(updatedInformantDetails.address.zipCode) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#informant-content #Usual'), + { + ...declaration.informant.address[0], + country: 'Farajaland', + state: 'Central', + district: 'Ibombo' + }, + true + ) + + await expect( + page.locator('#informant-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#informant-content #Usual'), + updatedInformantDetails.address + ) + }) + + test('2.4.8 Change email', async () => { + await page + .locator('#informant-content #Email') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#registrationEmail')).toBeTruthy() + + await page + .locator('#registrationEmail') + .fill(updatedInformantDetails.email) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Email with strikethrough + * - show updated Email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Email').getByRole('deletion') + ).toHaveText(declaration.registration.contactEmail) + + await expect( + page + .locator('#informant-content #Email') + .getByText(updatedInformantDetails.email) + ).toBeVisible() + }) + }) + test('2.4.2 Change place of delivery', async () => { + await page + .locator('#child-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on childType + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#placeOfBirth')).toBeTruthy() + + await page.locator('#placeOfBirth').click() + await page.getByText(updatedChildDetails.placeOfBirth).click() + + await page.locator('#statePlaceofbirth').click() + await page.getByText(updatedChildDetails.birthLocation.province).click() + + await page.locator('#districtPlaceofbirth').click() + await page.getByText(updatedChildDetails.birthLocation.district).click() + + await page + .locator('#cityPlaceofbirth') + .fill(updatedChildDetails.birthLocation.town) + + await page + .locator('#addressLine1UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.street) + + await page + .locator('#addressLine3UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.number) + + await page + .locator('#postalCodePlaceofbirth') + .fill(updatedChildDetails.birthLocation.zipCode) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place of birth with strikethrough + * - show updated place of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Place').getByRole('deletion').nth(0) + ).toHaveText('Health Institution') + + /* + @ToDo: assert this after https://github.com/opencrvs/opencrvs-core/issues/7505 is solved + await expect( + page.locator('#child-content #Place').getByRole('deletion').nth(1) + ).toHaveText('Chikobo Rural Health Centre') + */ + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.placeOfBirth) + ).toBeVisible() + await expect( + page.locator('#child-content #Place').getByText('Farajaland') + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation.province) + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation.district) + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation.town) + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation.residentialArea) + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation.street) + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation.number) + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthLocation.zipCode) + ).toBeVisible() + }) + }) + + test('2.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'I attest to seeing supporting documentation and have a copy filed at my office' + ) + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Informant provided incorrect information (Material error)') + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Send for approval' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Health Institution' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + 'Residential address' + + 'Farajaland' + + updatedChildDetails.birthLocation.province + + updatedChildDetails.birthLocation.district + + updatedChildDetails.birthLocation.town + + updatedChildDetails.birthLocation.residentialArea + + updatedChildDetails.birthLocation.street + + updatedChildDetails.birthLocation.number + + updatedChildDetails.birthLocation.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Relationship to child (Informant)' + + declaration.informant.relationship + + updatedInformantDetails.relationship + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (informant)' + + formatName(declaration.informant.name[0]) + + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_ddMMMMyyyy(declaration.informant.birthDate) + + formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Informant)National ID' + updatedInformantDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)-' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Informant)' + + 'Farajaland' + + 'Central' + + joinValuesWith( + ['Ibombo', declaration.informant.address[0].city], + '-' + ) + + declaration.informant.address[0].line[2] + + declaration.informant.address[0].line[1] + + declaration.informant.address[0].line[0] + + declaration.informant.address[0].postalCode + + 'Farajaland' + + updatedInformantDetails.address.province + + updatedInformantDetails.address.district + + updatedInformantDetails.address.town + + updatedInformantDetails.address.residentialArea + + updatedInformantDetails.address.street + + updatedInformantDetails.address.number + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + + await expect( + page.getByText(formatName(declaration.father.name[0])) + ).toBeVisible() + await expect(page.getByText('Identity does not match')).toBeVisible() + await expect( + page.getByText( + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Send for approval button + */ + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/approvals')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + test.describe('2.8 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + + page = await browser.newPage() + + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + }) + + test('2.8.1 Record audit by local registrar', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('2.8.2 Correction review', async () => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review correction request').click() + /* + * Expected result: should show + * - Submitter + * - Requested by + * - Reason for request + * - Comments + * - Original vs correction + */ + + await expect(page.getByText('Submitter' + 'Felix Katongo')).toBeVisible() + + await expect( + page.getByText('Requested by' + formatName(declaration.father.name[0])) + ).toBeVisible() + + await expect( + page.getByText( + 'Reason for request' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + /* + @ToDo: assert this after https://github.com/opencrvs/opencrvs-core/issues/7505 is solved + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Health Institution' + + 'Farajaland' + + 'Central' + + 'Ibombo' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + 'Residential address' + + 'Farajaland' + + updatedChildDetails.birthLocation.province + + updatedChildDetails.birthLocation.district + + updatedChildDetails.birthLocation.town + + updatedChildDetails.birthLocation.residentialArea + + updatedChildDetails.birthLocation.street + + updatedChildDetails.birthLocation.number + + updatedChildDetails.birthLocation.zipCode + ) + ).toBeVisible() +*/ + await expect( + page.getByText( + 'Relationship to child (Informant)' + + declaration.informant.relationship + + updatedInformantDetails.relationship + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (informant)' + + formatName(declaration.informant.name[0]) + + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_ddMMMMyyyy(declaration.informant.birthDate) + + formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Informant)National ID' + updatedInformantDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)-' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Informant)FarajalandCentralIbombo-' + + declaration.informant.address[0].city + + declaration.informant.address[0].line[2] + + declaration.informant.address[0].line[1] + + declaration.informant.address[0].line[0] + + declaration.informant.address[0].postalCode + + 'Farajaland' + + updatedInformantDetails.address.province + + updatedInformantDetails.address.district + + updatedInformantDetails.address.town + + updatedInformantDetails.address.residentialArea + + updatedInformantDetails.address.street + + updatedInformantDetails.address.number + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + }) + + test('2.8.3 Reject correction', async () => { + await page.getByRole('button', { name: 'Reject', exact: true }).click() + await page + .locator('#rejectionRaisonOfCorrection') + .fill('Wrong information') + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the updated declaration in this tab + */ + expect(page.url().includes('registration-home/print')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + + test.describe('2.8.4 Validate history in record audit', async () => { + test('2.8.4.1 Validate entries in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Correction requested + * - Correction rejected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction requested' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction rejected' }) + ).toBeVisible() + }) + + // TODO: remove skip when there is a fix related correction audit history + test.skip('2.8.4.2 Validate correction requested modal', async () => { + const correctionRequestedRow = page.locator( + '#listTable-task-history #row_5' + ) + await correctionRequestedRow.getByText('Correction requested').click() + + const time = await correctionRequestedRow + .locator('span') + .nth(1) + .innerText() + + const requester = await correctionRequestedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction requested header + * - Requester & time + * - Requested by + * - Id check + * - Reason + * - Comment + * - Original vs Correction + */ + + await expect( + page.getByRole('heading', { name: 'Correction requested' }) + ).toBeVisible() + + await expect(page.getByText(requester + ' — ' + time)).toBeVisible() + + await expect(page.getByText('Requested by' + 'Father')).toBeVisible() + await expect( + page.getByText('ID check' + 'Identity does not match') + ).toBeVisible() + await expect( + page.getByText( + 'Reason for request' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await expect(page.getByText('Comment')).toBeVisible() + + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Health Institution' + + 'Residential address' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Province (Child)' + updatedChildDetails.birthLocation.province + ) + ).toBeVisible() + + await expect( + page.getByText( + 'District (Child)' + updatedChildDetails.birthLocation.district + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Town (Child)' + updatedChildDetails.birthLocation.town + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Residential Area (Child)' + + updatedChildDetails.birthLocation.residentialArea + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Street (Child)' + updatedChildDetails.birthLocation.street + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Number (Child)' + updatedChildDetails.birthLocation.number + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Postcode / Zip (Child)' + updatedChildDetails.birthLocation.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Relationship to child (Informant)' + + declaration.informant.relationship + + updatedInformantDetails.relationship + ) + ).toBeVisible() + + await expect( + page.getByText( + 'First name(s) (Informant)' + + declaration.informant.name[0].firstNames + + updatedInformantDetails.firstNames + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Next page' }).click() + + await expect( + page.getByText( + 'Last name (informant)' + + declaration.informant.name[0].familyName + + updatedInformantDetails.familyName + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_yyyyMMdd(declaration.informant.birthDate) + + formatDateTo_yyyyMMdd(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)' + + 'Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Informant)' + + 'National ID' + + updatedInformantDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Province (Informant)' + + 'Central' + + updatedInformantDetails.address.province + ) + ).toBeVisible() + + await expect( + page.getByText( + 'District (Informant)' + + 'Ibombo' + + updatedInformantDetails.address.district + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Town (Informant)' + + declaration.informant.address[0].city + + updatedInformantDetails.address.town + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Residential Area (Informant)' + + declaration.informant.address[0].line[2] + + updatedInformantDetails.address.residentialArea + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Street (Informant)' + + declaration.informant.address[0].line[1] + + updatedInformantDetails.address.street + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Next page' }).click() + + await expect( + page.getByText( + 'Number (Informant)' + + declaration.informant.address[0].line[0] + + updatedInformantDetails.address.number + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Postcode / Zip (Informant)' + + declaration.informant.address[0].postalCode + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + + await page + .getByRole('heading', { name: 'Correction requested' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + + test('2.8.4.3 Validate correction rejected modal', async () => { + const correctionRejectedRow = page.locator( + '#listTable-task-history #row_7' + ) + await correctionRejectedRow.getByText('Correction rejected').click() + + const time = await correctionRejectedRow + .locator('span') + .nth(1) + .innerText() + + const reviewer = await correctionRejectedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction rejected header + * - Reviewer & time + * - Reason + */ + + await expect( + page.getByRole('heading', { name: 'Correction rejected' }) + ).toBeVisible() + + await expect(page.getByText(reviewer + ' — ' + time)).toBeVisible() + await expect( + page.getByText('Reason' + 'Wrong information') + ).toBeVisible() + + await page + .getByRole('heading', { name: 'Correction rejected' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + }) + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-3.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-3.spec.ts new file mode 100644 index 0000000000..f66449c9b4 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-3.spec.ts @@ -0,0 +1,1082 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + joinValuesWith, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { CREDENTIALS } from '../../constants' +import { random } from 'lodash' + +test.describe.serial(' Correct record - 3', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + + const updatedMotherDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + age: random(20, 45), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Married', + educationLevel: 'Primary' + } + const updatedChildDetails = { + placeOfBirth: 'Other', + birthLocation: { + province: 'Pualula', + district: 'Ienge', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('f.katongo', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test.describe('3.1 Print > Ready to issue', async () => { + test('3.1.1 Print', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + + test('3.1.2 Ready to issue', async () => { + await page.getByRole('button', { name: 'Ready to issue' }).click() + + /* + * Expected result: should + * - be navigated to ready to isssue tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/readyToIssue')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to issue' }).click() + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + + test('3.1.3 Record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + + await assignRecord(page) + await page + .getByRole('button', { name: 'Action', exact: true }) + .first() + .click() + + /* + * Expected result: should show correct record button in action menu + */ + await expect(getAction(page, 'Correct record')).toBeVisible() + + await getAction(page, 'Correct record').click() + }) + }) + + test('3.2 Correction requester: child', async () => { + await page.getByLabel('Child').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('3.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * First Name + * Last Name + * Date of Birth + */ + await expect( + page.getByText(`First name(s): ${declaration.child.name[0].firstNames}`) + ).toBeVisible() + await expect( + page.getByText(`Last name: ${declaration.child.name[0].familyName}`) + ).toBeVisible() + await expect( + page.getByText( + `Date of Birth: + ${formatDateTo_ddMMMMyyyy(declaration.child.birthDate)} + ` + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Verified' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('3.4 Make correction', async () => { + test.describe('3.4.1 Make correction on mother details', async () => { + test('3.4.1 Change name', async () => { + await page + .locator('#mother-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page + .locator('#firstNamesEng') + .fill(updatedMotherDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedMotherDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#mother-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.mother.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.mother.name[0].familyName + ) + + await expect( + page + .locator('#mother-content #Full') + .getByText(updatedMotherDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#mother-content #Full') + .getByText(updatedMotherDetails.familyName) + ).toBeVisible() + }) + + test('3.4.2 Change age', async () => { + await page + .locator('#mother-content #Age') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's age + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#ageOfIndividualInYears')).toBeTruthy() + + await page + .locator('#ageOfIndividualInYears') + .fill(updatedMotherDetails.age.toString()) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#mother-content #Age').getByRole('deletion') + ).toHaveText( + joinValuesWith( + [declaration.mother.ageOfIndividualInYears, 'years'], + ' ' + ) + ) + + await expect( + page + .locator('#mother-content #Age') + .getByText(joinValuesWith([updatedMotherDetails.age, 'years'], ' ')) + ).toBeVisible() + }) + + test('3.4.3 Change nationality', async () => { + await page + .locator('#mother-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedMotherDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#mother-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#mother-content #Nationality') + .getByText(updatedMotherDetails.nationality) + ).toBeVisible() + }) + + test('3.4.4 Change id type', async () => { + await page + .locator('#mother-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#motherIdType')).toBeTruthy() + + await page.locator('#motherIdType').click() + await page.getByText(updatedMotherDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#mother-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#mother-content #Type') + .getByText(updatedMotherDetails.idType) + ).toBeVisible() + }) + + test('3.4.5 Change id', async () => { + await page + .locator('#mother-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#motherPassport')).toBeTruthy() + + await page.locator('#motherPassport').fill(updatedMotherDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#mother-content #ID').getByText(updatedMotherDetails.id) + ).toBeVisible() + }) + + test('3.4.6 Change usual place of residence', async () => { + await page + .locator('#mother-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryMother').click() + await page.getByText(updatedMotherDetails.address.province).click() + + await page.locator('#districtPrimaryMother').click() + await page.getByText(updatedMotherDetails.address.district).click() + + await page + .locator('#cityPrimaryMother') + .fill(updatedMotherDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryMother') + .fill(updatedMotherDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryMother') + .fill(updatedMotherDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryMother') + .fill(updatedMotherDetails.address.number) + + await page + .locator('#postalCodePrimaryMother') + .fill(updatedMotherDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#mother-content #Usual'), + { + ...declaration.mother.address[0], + country: 'Farajaland', + state: 'Central', + district: 'Ibombo' + }, + true + ) + + await expect( + page.locator('#mother-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#mother-content #Usual'), + updatedMotherDetails.address + ) + }) + + test('3.4.7 Change marital status', async () => { + await page + .locator('#mother-content #Marital') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#maritalStatus')).toBeTruthy() + + await page.locator('#maritalStatus').click() + await page.getByText(updatedMotherDetails.maritalStatus).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous marital status with strikethrough + * - show updated marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#mother-content #Marital').getByRole('deletion') + ).toHaveText(declaration.mother.maritalStatus, { + ignoreCase: true + }) + + await expect( + page + .locator('#mother-content #Marital') + .getByText(updatedMotherDetails.maritalStatus) + ).toBeVisible() + }) + + test('3.4.8 Change level of education', async () => { + await page + .locator('#mother-content #Level') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's level of education + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#educationalAttainment')).toBeTruthy() + + await page.locator('#educationalAttainment').click() + await page.getByText(updatedMotherDetails.educationLevel).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous level of education with strikethrough + * - show updated level of education + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#mother-content #Level').getByRole('deletion') + ).toHaveText('No schooling') + + await expect( + page + .locator('#mother-content #Level') + .getByText(updatedMotherDetails.educationLevel) + ).toBeVisible() + }) + }) + test('3.4.2 Change place of delivery', async () => { + await page + .locator('#child-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on childType + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#placeOfBirth')).toBeTruthy() + + await page.locator('#placeOfBirth').click() + await page.getByText(updatedChildDetails.placeOfBirth).click() + + await page.locator('#statePlaceofbirth').click() + await page.getByText(updatedChildDetails.birthLocation.province).click() + + await page.locator('#districtPlaceofbirth').click() + await page.getByText(updatedChildDetails.birthLocation.district).click() + + await page + .locator('#cityPlaceofbirth') + .fill(updatedChildDetails.birthLocation.town) + + await page + .locator('#addressLine1UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.street) + + await page + .locator('#addressLine3UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.number) + + await page + .locator('#postalCodePlaceofbirth') + .fill(updatedChildDetails.birthLocation.zipCode) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place of birth with strikethrough + * - show updated place of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Place').getByRole('deletion').nth(0) + ).toHaveText('Health Institution') + + /* + assertion fails + await expect( + page.locator('#child-content #Place').getByRole('deletion').nth(1) + ).toHaveText('Chikobo Rural Health Centre') + */ + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.placeOfBirth) + ).toBeVisible() + await expect( + page.locator('#child-content #Place').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#child-content #Place'), + updatedChildDetails.birthLocation + ) + }) + }) + + test('3.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('No supporting documents required').check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('3.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'Informant did not provide this information (Material omission)' + ) + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('3.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Send for approval' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Health Institution' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + updatedChildDetails.placeOfBirth + + 'Farajaland' + + updatedChildDetails.birthLocation.province + + updatedChildDetails.birthLocation.district + + updatedChildDetails.birthLocation.town + + updatedChildDetails.birthLocation.residentialArea + + updatedChildDetails.birthLocation.street + + updatedChildDetails.birthLocation.number + + updatedChildDetails.birthLocation.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (mother)' + + formatName(declaration.mother.name[0]) + + formatName(updatedMotherDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of mother (mother)', + declaration.mother.ageOfIndividualInYears, + updatedMotherDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Mother)Farajaland' + updatedMotherDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Mother)National ID' + updatedMotherDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Mother)-' + updatedMotherDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Mother)FarajalandCentralIbombo-' + + declaration.mother.address[0].city + + declaration.mother.address[0].line[2] + + declaration.mother.address[0].line[1] + + declaration.mother.address[0].line[0] + + declaration.mother.address[0].postalCode + + 'Farajaland' + + updatedMotherDetails.address.province + + updatedMotherDetails.address.district + + updatedMotherDetails.address.town + + updatedMotherDetails.address.residentialArea + + updatedMotherDetails.address.street + + updatedMotherDetails.address.number + + updatedMotherDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Mother)' + + declaration.mother.maritalStatus + + updatedMotherDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Level of education (Mother)No schooling' + + updatedMotherDetails.educationLevel + ) + ).toBeVisible() + + await expect( + page.getByText(formatName(declaration.child.name[0])) + ).toBeVisible() + await expect(page.getByText('Verified')).toBeVisible() + await expect( + page.getByText( + 'Informant did not provide this information (Material omission)' + ) + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Send for approval button + */ + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/approvals')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + + test.describe('3.8 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + + page = await browser.newPage() + + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + }) + + test('3.8.1 Record audit by local registrar', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('3.8.2 Correction review', async () => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review correction request').click() + /* + * Expected result: should show + * - Submitter + * - Requested by + * - Reason for request + * - Comments + * - Original vs correction + */ + + await expect(page.getByText('Submitter' + 'Felix Katongo')).toBeVisible() + + await expect( + page.getByText('Requested by' + formatName(declaration.child.name[0])) + ).toBeVisible() + await expect( + page.getByText( + 'Reason for request' + + 'Informant did not provide this information (Material omission)' + ) + ).toBeVisible() + + await expect( + page.getByText('Comments' + declaration.registration.registrationNumber) + ).toBeVisible() + + /* + @ToDo: assert this after https://github.com/opencrvs/opencrvs-core/issues/7505 is solved + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Health Institution' + + 'Farajaland' + + 'Central' + + 'Ibombo' + + '-' + + '-' + + '-' + + '-' + + '-' + + '-' + + 'Residential address' + + 'Farajaland' + + updatedChildDetails.birthLocation.province + + updatedChildDetails.birthLocation.district + + updatedChildDetails.birthLocation.town + + updatedChildDetails.birthLocation.residentialArea + + updatedChildDetails.birthLocation.street + + updatedChildDetails.birthLocation.number + + updatedChildDetails.birthLocation.zipCode + ) + ).toBeVisible() + */ + + await expect( + page.getByText( + 'Full name (mother)' + + formatName(declaration.mother.name[0]) + + formatName(updatedMotherDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of mother (mother)', + declaration.mother.ageOfIndividualInYears, + updatedMotherDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Mother)Farajaland' + updatedMotherDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Mother)National ID' + updatedMotherDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Mother)-' + updatedMotherDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Mother)FarajalandCentralIbombo-' + + declaration.mother.address[0].city + + declaration.mother.address[0].line[2] + + declaration.mother.address[0].line[1] + + declaration.mother.address[0].line[0] + + declaration.mother.address[0].postalCode + + 'Farajaland' + + updatedMotherDetails.address.province + + updatedMotherDetails.address.district + + updatedMotherDetails.address.town + + updatedMotherDetails.address.residentialArea + + updatedMotherDetails.address.street + + updatedMotherDetails.address.number + + updatedMotherDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Mother)' + + declaration.mother.maritalStatus + + updatedMotherDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Level of education (Mother)No schooling' + + updatedMotherDetails.educationLevel + ) + ).toBeVisible() + }) + + test.skip('3.8.3 Approve correction', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the updated declaration in this tab + */ + expect(page.url().includes('registration-home/print')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + + test.skip('3.8.4 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Correction requested + * - Correction approved + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction requested' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction approved' }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-4.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-4.spec.ts new file mode 100644 index 0000000000..f2332dbe78 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-4.spec.ts @@ -0,0 +1,963 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatDateTo_yyyyMMdd, + formatName, + getAction, + getToken, + goBackToReview, + login, + uploadImage, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { format, subYears } from 'date-fns' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 4', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + + const updatedFatherDetails = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.firstName('male'), + birthDate: format( + subYears(new Date(), 25 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Married', + educationLevel: 'Primary' + } + + const updatedChildDetails = { + placeOfBirth: 'Health Institution', + birthFacility: 'Mwenekombe Health Post' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('4.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male', + placeOfBirth: 'Residential address', + birthLocation: { + state: 'Sulaka', + district: 'Irundu' + } + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('k.mweene', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test('4.1 Ready to print > record audit', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + + test('4.2 Correction requester: legal guardian', async () => { + await page.getByLabel('Legal guardian').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * nothing + */ + + await page.getByRole('button', { name: 'Verified' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('4.4 Make correction', async () => { + test.describe('4.4.1 Make correction on father details page', async () => { + test('4.4.1.1 Change name', async () => { + await page + .locator('#father-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page + .locator('#firstNamesEng') + .fill(updatedFatherDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedFatherDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#father-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.father.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.father.name[0].familyName + ) + + await expect( + page + .locator('#father-content #Full') + .getByText(updatedFatherDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#father-content #Full') + .getByText(updatedFatherDetails.familyName) + ).toBeVisible() + }) + + test('4.4.1.2 Change date of birth', async () => { + await page + .locator('#father-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#fatherBirthDate')).toBeTruthy() + + const birthDay = updatedFatherDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#father-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.father.birthDate)) + + await expect( + page + .locator('#father-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedFatherDetails.birthDate)) + ).toBeVisible() + }) + + test('4.4.1.3 Change nationality', async () => { + await page + .locator('#father-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedFatherDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#father-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#father-content #Nationality') + .getByText(updatedFatherDetails.nationality) + ).toBeVisible() + }) + + test('4.4.1.4 Change id type', async () => { + await page + .locator('#father-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#fatherIdType')).toBeTruthy() + + await page.locator('#fatherIdType').click() + await page.getByText(updatedFatherDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#father-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#father-content #Type') + .getByText(updatedFatherDetails.idType) + ).toBeVisible() + }) + + test('4.4.1.5 Change id', async () => { + await page + .locator('#father-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#fatherPassport')).toBeTruthy() + + await page.locator('#fatherPassport').fill(updatedFatherDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#father-content #ID').getByText(updatedFatherDetails.id) + ).toBeVisible() + }) + + test('4.4.1.6 Change usual place of residence', async () => { + await page + .locator('#father-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryFather').click() + await page.getByText(updatedFatherDetails.address.province).click() + + await page.locator('#districtPrimaryFather').click() + await page.getByText(updatedFatherDetails.address.district).click() + + await page + .locator('#cityPrimaryFather') + .fill(updatedFatherDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryFather') + .fill(updatedFatherDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryFather') + .fill(updatedFatherDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryFather') + .fill(updatedFatherDetails.address.number) + + await page + .locator('#postalCodePrimaryFather') + .fill(updatedFatherDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#father-content #Usual'), + { + ...declaration.father.address[0], + country: 'Farajaland', + state: 'Central', + district: 'Ibombo' + }, + true + ) + }) + + test('4.4.1.7 Change marital status', async () => { + await page + .locator('#father-content #Marital') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#maritalStatus')).toBeTruthy() + + await page.locator('#maritalStatus').click() + await page.getByText(updatedFatherDetails.maritalStatus).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous marital status with strikethrough + * - show updated marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#father-content #Marital').getByRole('deletion') + ).toHaveText(declaration.father.maritalStatus, { + ignoreCase: true + }) + + await expect( + page + .locator('#father-content #Marital') + .getByText(updatedFatherDetails.maritalStatus) + ).toBeVisible() + }) + + test('4.4.1.8 Change level of education', async () => { + await page + .locator('#father-content #Level') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's level of education + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#educationalAttainment')).toBeTruthy() + + await page.locator('#educationalAttainment').click() + await page.getByText(updatedFatherDetails.educationLevel).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous level of education with strikethrough + * - show updated level of education + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#father-content #Level').getByRole('deletion') + ).toHaveText('No schooling') + + await expect( + page + .locator('#father-content #Level') + .getByText(updatedFatherDetails.educationLevel) + ).toBeVisible() + }) + }) + + test('4.4.2 Change place of birth', async () => { + await page + .locator('#child-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's placeOfBirth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#placeOfBirth')).toBeTruthy() + + await page.locator('#placeOfBirth').click() + await page + .getByText(updatedChildDetails.placeOfBirth, { exact: true }) + .click() + await page + .locator('#birthLocation') + .fill(updatedChildDetails.birthFacility.slice(0, 4)) + await page.getByText(updatedChildDetails.birthFacility).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous placeOfBirth with strikethrough + * - show updated placeOfBirth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Place').getByRole('deletion').nth(0) + ).toHaveText('Residential address') + + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.placeOfBirth) + ).toBeVisible() + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.birthFacility) + ).toBeVisible() + }) + }) + + test('4.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Requested to do so by the court (Judicial order)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Residential address' + + '-' + + updatedChildDetails.placeOfBirth + + updatedChildDetails.birthFacility + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (father)' + + formatName(declaration.father.name[0]) + + formatName(updatedFatherDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (father)' + + formatDateTo_ddMMMMyyyy(declaration.father.birthDate) + + formatDateTo_ddMMMMyyyy(updatedFatherDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Father)Farajaland' + updatedFatherDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Father)National ID' + updatedFatherDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Father)-' + updatedFatherDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Father)FarajalandCentralIbombo-' + + declaration.father.address[0].city + + declaration.father.address[0].line[2] + + declaration.father.address[0].line[1] + + declaration.father.address[0].line[0] + + declaration.father.address[0].postalCode + + 'Farajaland' + + updatedFatherDetails.address.province + + updatedFatherDetails.address.district + + updatedFatherDetails.address.town + + updatedFatherDetails.address.residentialArea + + updatedFatherDetails.address.street + + updatedFatherDetails.address.number + + updatedFatherDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Father)' + + declaration.father.maritalStatus + + updatedFatherDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Level of education (Father)No schooling' + + updatedFatherDetails.educationLevel + ) + ).toBeVisible() + + await expect(page.getByText('Legal guardian')).toBeVisible() + await expect(page.getByText('Verified')).toBeVisible() + await expect( + page.getByText('Requested to do so by the court (Judicial order)') + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('Yes').check() + await page.locator('#correctionFees\\.nestedFields\\.totalFees').fill('15') + + await uploadImage(page, page.locator('#upload_document')) + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + test('4.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) + test('4.9 Validate record corrected modal', async () => { + const correctionRequestedRow = page.locator( + '#listTable-task-history #row_5' + ) + await correctionRequestedRow.getByText('Record corrected').click() + + const date = await correctionRequestedRow.locator('span').nth(1).innerText() + + const requester = await correctionRequestedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Record corrected header + * - Requester & time + * - Requested by + * - Id check + * - Reason + * - Comment + * - Original vs Correction + */ + await expect( + page.getByRole('heading', { name: 'Record corrected' }) + ).toBeVisible() + + await expect(page.getByText(requester + ' — ' + date)).toBeVisible() + + await expect( + page.getByText('Requested by' + 'Legal guardian') + ).toBeVisible() + await expect(page.getByText('ID check' + 'Verified')).toBeVisible() + await expect( + page.getByText( + 'Reason for request' + + 'Requested to do so by the court (Judicial order)' + ) + ).toBeVisible() + + await expect( + page.getByText('Comment' + declaration.registration.registrationNumber) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of delivery (Child)' + + 'Residential address' + + 'Health Institution' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Health Institution (Child)' + updatedChildDetails.birthFacility + ) + ).toBeVisible() + + await expect( + page.getByText( + 'First name(s) (Father)' + + declaration.father.name[0].firstNames + + updatedFatherDetails.firstNames + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Last name (Father)' + + declaration.father.name[0].familyName + + updatedFatherDetails.familyName + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (father)' + + formatDateTo_yyyyMMdd(declaration.father.birthDate) + + formatDateTo_yyyyMMdd(updatedFatherDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Father)' + 'Farajaland' + updatedFatherDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Father)' + 'National ID' + updatedFatherDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Father)' + updatedFatherDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Province (Father)' + 'Central' + updatedFatherDetails.address.province + ) + ).toBeVisible() + + await expect( + page.getByText( + 'District (Father)' + 'Ibombo' + updatedFatherDetails.address.district + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Next page' }).click() + + await expect( + page.getByText( + 'Town (Father)' + + declaration.father.address[0].city + + updatedFatherDetails.address.town + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Residential Area (Father)' + + declaration.father.address[0].line[2] + + updatedFatherDetails.address.residentialArea + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Street (Father)' + + declaration.father.address[0].line[1] + + updatedFatherDetails.address.street + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Number (Father)' + + declaration.father.address[0].line[0] + + updatedFatherDetails.address.number + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Postcode / Zip (Father)' + + declaration.father.address[0].postalCode + + updatedFatherDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Father)' + + declaration.father.maritalStatus + + updatedFatherDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Level of education (Father)' + + 'No schooling' + + updatedFatherDetails.educationLevel + ) + ).toBeVisible() + + await page + .getByRole('heading', { name: 'Record corrected' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-5.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-5.spec.ts new file mode 100644 index 0000000000..0c14adcea3 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-5.spec.ts @@ -0,0 +1,685 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + BirthDetails, + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { format, subDays } from 'date-fns' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 5', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let declarationInput: BirthDetails + + let page: Page + const updatedChildDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + gender: 'Female', + birthDate: format( + subDays(new Date(), Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + placeOfBirth: 'Other', + birthLocation: { + state: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + attendantAtBirth: 'Nurse', + typeOfBirth: 'Twin', + weightAtBirth: '3.1', + reason: 'Change of mind' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('5.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male', + placeOfBirth: 'Residential address', + birthLocation: { + state: 'Pualula', + district: 'Ienge' + } + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('k.mweene', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test('5.1 Certificate preview', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'No, make correction' }).click() + }) + + test('5.2 Correction requester: another registration agent or field agent', async () => { + await page.getByLabel('Another registration agent or field agent').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('5.3 Verify identity', async () => { + /* + * Expected result: + * - should not show verify identity + * - should directly navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('5.4.2 Correction made on child details', async () => { + test('5.4.2.1 Change name', async () => { + await page + .locator('#child-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page.locator('#firstNamesEng').fill(updatedChildDetails.firstNames) + await page.locator('#familyNameEng').fill(updatedChildDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#child-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText(declaration.child.name[0].firstNames) + await expect(oldData[1]).toHaveText(declaration.child.name[0].familyName) + + await expect( + page + .locator('#child-content #Full') + .getByText(updatedChildDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#child-content #Full') + .getByText(updatedChildDetails.familyName) + ).toBeVisible() + }) + + test('5.4.2.2 Change gender', async () => { + await page + .locator('#child-content #Sex') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#gender')).toBeTruthy() + + await page.locator('#gender').click() + await page.getByText(updatedChildDetails.gender).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Sex').getByRole('deletion') + ).toHaveText(declaration.child.gender, { ignoreCase: true }) + + await expect( + page + .locator('#child-content #Sex') + .getByText(updatedChildDetails.gender) + ).toBeVisible() + }) + + test('5.4.2.3 Change date of birth', async () => { + await page + .locator('#child-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#childBirthDate')).toBeTruthy() + + const birthDay = updatedChildDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous date of birth with strikethrough + * - show updated date of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.child.birthDate)) + + await expect( + page + .locator('#child-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedChildDetails.birthDate)) + ).toBeVisible() + }) + + test('5.4.2.4 Change place of delivery', async () => { + await page + .locator('#child-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's place of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#placeOfBirth')).toBeTruthy() + + await page.locator('#placeOfBirth').click() + await page.getByText(updatedChildDetails.placeOfBirth).click() + + await page.locator('#statePlaceofbirth').click() + await page.getByText(updatedChildDetails.birthLocation.state).click() + + await page.locator('#districtPlaceofbirth').click() + await page.getByText(updatedChildDetails.birthLocation.district).click() + + await page + .locator('#cityPlaceofbirth') + .fill(updatedChildDetails.birthLocation.town) + await page + .locator('#addressLine1UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.residentialArea) + await page + .locator('#addressLine2UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.street) + await page + .locator('#addressLine3UrbanOptionPlaceofbirth') + .fill(updatedChildDetails.birthLocation.number) + await page + .locator('#postalCodePlaceofbirth') + .fill(updatedChildDetails.birthLocation.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous place of birth with strikethrough + * - show updated place of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#child-content #Place').getByRole('deletion').nth(0) + ).toHaveText(declarationInput.child.placeOfBirth!) + + await expectAddress( + page.locator('#child-content #Place'), + { + ...declaration.eventLocation.address, + ...declarationInput.child.birthLocation!, + country: 'Farajaland' + }, + true + ) + + await expect( + page + .locator('#child-content #Place') + .getByText(updatedChildDetails.placeOfBirth) + ).toBeVisible() + + await expectAddress(page.locator('#child-content #Place'), { + ...updatedChildDetails.birthLocation, + country: 'Farajaland' + }) + }) + + test('5.4.2.5 Change attendant at birth', async () => { + await page + .locator('#child-content #Attendant') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's Attendant at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#attendantAtBirth')).toBeTruthy() + + await page.locator('#attendantAtBirth').click() + await page.getByText(updatedChildDetails.attendantAtBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Attendant at birth with strikethrough + * - show updated Attendant at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + expect(declaration.attendantAtBirth).toBeDefined + + await expect( + page.locator('#child-content #Attendant').getByRole('deletion') + ).toHaveText(declaration.attendantAtBirth!, { ignoreCase: true }) + + await expect( + page + .locator('#child-content #Attendant') + .getByText(updatedChildDetails.attendantAtBirth) + ).toBeVisible() + }) + + test('5.4.2.6 Change type of birth', async () => { + await page + .locator('#child-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's type of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#birthType')).toBeTruthy() + + await page.locator('#birthType').click() + await page.getByText(updatedChildDetails.typeOfBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous type of birth with strikethrough + * - show updated type of birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + expect(declaration.birthType).toBeDefined + + await expect( + page.locator('#child-content #Type').getByRole('deletion') + ).toHaveText(declaration.birthType!, { ignoreCase: true }) + + await expect( + page + .locator('#child-content #Type') + .getByText(updatedChildDetails.typeOfBirth) + ).toBeVisible() + }) + + test('5.4.2.7 Change weight at birth', async () => { + await page + .locator('#child-content #Weight') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's weight at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child-view-group')).toBeTruthy() + expect(page.url().includes('#weightAtBirth')).toBeTruthy() + + await page + .locator('#weightAtBirth') + .fill(updatedChildDetails.weightAtBirth) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous weight at birth with strikethrough + * - show updated weight at birth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + expect(declaration.weightAtBirth).toBeDefined + + await expect( + page.locator('#child-content #Weight').getByRole('deletion') + ).toHaveText(declaration.weightAtBirth! + ' kilograms (kg)') + + await expect( + page + .locator('#child-content #Weight') + .getByText(updatedChildDetails.weightAtBirth + ' kilograms (kg)') + ).toBeVisible() + }) + }) + + test('5.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'I attest to seeing supporting documentation and have a copy filed at my office' + ) + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('5.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('Other').check() + await page + .locator('#type\\.nestedFields\\.otherReason') + .fill(updatedChildDetails.reason) + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('5.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (Child)' + + formatName(declaration.child.name[0]) + + formatName(updatedChildDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Child)' + declaration.child.gender + updatedChildDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (Child)' + + formatDateTo_ddMMMMyyyy(declaration.child.birthDate) + + formatDateTo_ddMMMMyyyy(updatedChildDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of delivery (Child)' + + declarationInput.child.placeOfBirth! + + 'Farajaland' + + declarationInput.child.birthLocation!.state + + declarationInput.child.birthLocation!.district + + '-' + + declaration.eventLocation.address.city + + declaration.eventLocation.address.line[2] + + declaration.eventLocation.address.line[1] + + declaration.eventLocation.address.line[0] + + declaration.eventLocation.address.postalCode + + updatedChildDetails.placeOfBirth + + 'Farajaland' + + updatedChildDetails.birthLocation.state + + updatedChildDetails.birthLocation.district + + updatedChildDetails.birthLocation.town + + updatedChildDetails.birthLocation.residentialArea + + updatedChildDetails.birthLocation.street + + updatedChildDetails.birthLocation.number + + updatedChildDetails.birthLocation.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Attendant at birth (Child)' + + declaration.attendantAtBirth + + updatedChildDetails.attendantAtBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of birth (Child)' + + declaration.birthType + + updatedChildDetails.typeOfBirth + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Weight at birth (Child)' + + declaration.weightAtBirth + + updatedChildDetails.weightAtBirth + ) + ).toBeVisible() + + await expect( + page.getByText('Another registration agent or field agent') + ).toBeVisible() + await expect(page.getByText(updatedChildDetails.reason)).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect(page.getByText(formatName(updatedChildDetails))).toBeVisible() + }) + test('5.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(updatedChildDetails), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-6.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-6.spec.ts new file mode 100644 index 0000000000..c3dc8c1672 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-6.spec.ts @@ -0,0 +1,735 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { format, subYears } from 'date-fns' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 6', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + const updatedInformantDetails = { + relationship: 'Sister', + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + birthDate: format( + subYears(new Date(), 25 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('6.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('k.mweene', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test.describe('6.1 Print > Ready to issue', async () => { + test('6.1.1 print', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + test('6.1.2 Ready to issue', async () => { + await page.getByRole('button', { name: 'Ready to issue' }).click() + + /* + * Expected result: should + * - be navigated to ready to isssue tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/readyToIssue')).toBeTruthy() + await expectOutboxToBeEmpty(page) + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + }) + test('6.1.3 Record audit', async () => { + await assignRecord(page) + /* + * Expected result: should show correct record button + */ + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + }) + + test('6.2 Correction requester: Me', async () => { + await page.getByLabel('Me', { exact: true }).check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.3 Verify identity', async () => { + /* + * Expected result: + * - should not show verify identity + * - should directly navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('6.4 Correction made on informant details', async () => { + test('6.4.1 Change relationship to child', async () => { + await page + .locator('#informant-content #Relationship') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informantType + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantType')).toBeTruthy() + + await page.locator('#informantType').click() + await page.getByText(updatedInformantDetails.relationship).click() + + await goBackToReview(page) + /* + * Expected result: should + * - redirect to review page + * - show previous relation with strikethrough + * - show updated relation + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Relationship').getByRole('deletion') + ).toHaveText(declaration.registration.informantType, { ignoreCase: true }) + + await expect( + page + .locator('#informant-content #Relationship') + .getByText(updatedInformantDetails.relationship) + ).toBeVisible() + }) + + test('6.4.2 Change name', async () => { + await page + .locator('#informant-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + // expect(page.url().includes('#familyNameEng')).toBeTruthy() // fail: does not focus on infirmant's family name + + await page + .locator('#firstNamesEng') + .fill(updatedInformantDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedInformantDetails.familyName) + + await goBackToReview(page) + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#informant-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.informant.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.informant.name[0].familyName + ) + + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.familyName) + ).toBeVisible() + }) + + test('6.4.3 Change date of birth', async () => { + await page + .locator('#informant-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantBirthDate')).toBeTruthy() + + const birthDay = updatedInformantDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)) + + await expect( + page + .locator('#informant-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate)) + ).toBeVisible() + }) + + test('6.4.4 Change nationality', async () => { + await page + .locator('#informant-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedInformantDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#informant-content #Nationality') + .getByText(updatedInformantDetails.nationality) + ).toBeVisible() + }) + + test('6.4.5 Change id type', async () => { + await page + .locator('#informant-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantIdType')).toBeTruthy() + + await page.locator('#informantIdType').click() + await page.getByText(updatedInformantDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#informant-content #Type') + .getByText(updatedInformantDetails.idType) + ).toBeVisible() + }) + + test('6.4.6 Change id', async () => { + await page + .locator('#informant-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantPassport')).toBeTruthy() + + await page.locator('#informantPassport').fill(updatedInformantDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#informant-content #ID') + .getByText(updatedInformantDetails.id) + ).toBeVisible() + }) + + test('6.4.7 Change usual place of residence', async () => { + await page + .locator('#informant-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.province).click() + + await page.locator('#districtPrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.district).click() + + await page + .locator('#cityPrimaryInformant') + .fill(updatedInformantDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.number) + + await page + .locator('#postalCodePrimaryInformant') + .fill(updatedInformantDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#informant-content #Usual'), + { + ...declaration.informant.address[0], + country: 'Farajaland', + state: 'Central', + district: 'Ibombo' + }, + true + ) + + await expect( + page.locator('#informant-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#informant-content #Usual'), + updatedInformantDetails.address + ) + }) + + test('6.4.8 Change email', async () => { + await page + .locator('#informant-content #Email') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#registrationEmail')).toBeTruthy() + + await page + .locator('#registrationEmail') + .fill(updatedInformantDetails.email) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Email with strikethrough + * - show updated Email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Email').getByRole('deletion') + ).toHaveText(declaration.registration.contactEmail) + + await expect( + page + .locator('#informant-content #Email') + .getByText(updatedInformantDetails.email) + ).toBeVisible() + }) + }) + + test('6.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('No supporting documents required').check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Myself or an agent made a mistake (Clerical error)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Relationship to child (Informant)' + + declaration.informant.relationship + + updatedInformantDetails.relationship + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (informant)' + + formatName(declaration.informant.name[0]) + + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_ddMMMMyyyy(declaration.informant.birthDate) + + formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Informant)National ID' + updatedInformantDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)-' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Informant)FarajalandCentralIbombo-' + + declaration.informant.address[0].city + + declaration.informant.address[0].line[2] + + declaration.informant.address[0].line[1] + + declaration.informant.address[0].line[0] + + declaration.informant.address[0].postalCode + + 'Farajaland' + + updatedInformantDetails.address.province + + updatedInformantDetails.address.district + + updatedInformantDetails.address.town + + updatedInformantDetails.address.residentialArea + + updatedInformantDetails.address.street + + updatedInformantDetails.address.number + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + + await expect(page.getByText('Me', { exact: true })).toBeVisible() + await expect( + page.getByText('Myself or an agent made a mistake (Clerical error)') + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.child.name[0])) + ).toBeVisible() + }) + test('6.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-7.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-7.spec.ts new file mode 100644 index 0000000000..17cb67a324 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-7.spec.ts @@ -0,0 +1,580 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatName, + getAction, + getToken, + goBackToReview, + joinValuesWith, + login, + uploadImage, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { CREDENTIALS } from '../../constants' +import { random } from 'lodash' + +test.describe.serial(' Correct record - 7', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + + const updatedMotherDetails = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.firstName('male'), + age: random(20, 45), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Married', + educationLevel: 'Primary' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('j.musonda', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test('7.1 Ready to print > record audit', async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + + test('7.2 Correction requester: court', async () => { + await page.getByLabel('Court').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('7.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * nothing + */ + + await page.getByRole('button', { name: 'Identity does not match' }).click() + + /* + * Expected result: should show modal with + * - Correct without proof of ID? + * - Please be aware that if you proceed, you will be responsible + * for making a change to this record without the necessary proof of identification + * - Confirm button + * - Cancel button + */ + await expect(page.getByText('Correct without proof of ID?')).toBeVisible() + await expect( + page.getByText( + 'Please be aware that if you proceed, you will be responsible for making a change to this record without the necessary proof of identification' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('7.4 Correction made on mother details', async () => { + test('7.4.1 Change mother details', async () => { + await page + .locator('#mother-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page.locator('#firstNamesEng').fill(updatedMotherDetails.firstNames) + await page.locator('#familyNameEng').fill(updatedMotherDetails.familyName) + + await page + .locator('#ageOfIndividualInYears') + .fill(updatedMotherDetails.age.toString()) + + await page.locator('#nationality').click() + await page.getByText(updatedMotherDetails.nationality).click() + + await page.locator('#motherIdType').click() + await page.getByText(updatedMotherDetails.idType).click() + + await page.locator('#motherPassport').fill(updatedMotherDetails.id) + + await page.locator('#statePrimaryMother').click() + await page.getByText(updatedMotherDetails.address.province).click() + + await page.locator('#districtPrimaryMother').click() + await page.getByText(updatedMotherDetails.address.district).click() + + await page + .locator('#cityPrimaryMother') + .fill(updatedMotherDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryMother') + .fill(updatedMotherDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryMother') + .fill(updatedMotherDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryMother') + .fill(updatedMotherDetails.address.number) + + await page + .locator('#postalCodePrimaryMother') + .fill(updatedMotherDetails.address.zipCode) + + await page.locator('#maritalStatus').click() + await page.getByText(updatedMotherDetails.maritalStatus).click() + + await page.locator('#educationalAttainment').click() + await page.getByText(updatedMotherDetails.educationLevel).click() + + await goBackToReview(page) + }) + + test('7.4.2 Verify changes', async () => { + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#mother-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText(declaration.mother.name[0].firstNames) + await expect(oldData[1]).toHaveText(declaration.mother.name[0].familyName) + + await expect( + page + .locator('#mother-content #Full') + .getByText(updatedMotherDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#mother-content #Full') + .getByText(updatedMotherDetails.familyName) + ).toBeVisible() + + /* + * Expected result: should + * - show previous gender with strikethrough + * - show updated gender + */ + + await expect( + page.locator('#mother-content #Age').getByRole('deletion') + ).toHaveText( + joinValuesWith( + [declaration.mother.ageOfIndividualInYears, 'years'], + ' ' + ) + ) + + await expect( + page + .locator('#mother-content #Age') + .getByText(joinValuesWith([updatedMotherDetails.age, 'years'], ' ')) + ).toBeVisible() + + /* + * Expected result: should + * - show previous nationality with strikethrough + * - show updated nationality + */ + + await expect( + page.locator('#mother-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#mother-content #Nationality') + .getByText(updatedMotherDetails.nationality) + ).toBeVisible() + + /* + * Expected result: should + * - show previous id type with strikethrough + * - show updated id type + */ + + await expect( + page.locator('#mother-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#mother-content #Type') + .getByText(updatedMotherDetails.idType) + ).toBeVisible() + + /* + * Expected result: should + * - show previous id with strikethrough + * - show updated id + */ + + await expect( + page.locator('#mother-content #ID').getByText(updatedMotherDetails.id) + ).toBeVisible() + + /* + * Expected result: should + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + await expectAddress( + page.locator('#mother-content #Usual'), + { + ...declaration.mother.address[0], + country: 'Farajaland', + state: 'Central', + district: 'Ibombo' + }, + true + ) + + await expect( + page.locator('#mother-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#mother-content #Usual'), + updatedMotherDetails.address + ) + /* + * Expected result: should + * - show previous marital status with strikethrough + * - show updated marital status + */ + + await expect( + page.locator('#mother-content #Marital').getByRole('deletion') + ).toHaveText(declaration.mother.maritalStatus, { + ignoreCase: true + }) + + await expect( + page + .locator('#mother-content #Marital') + .getByText(updatedMotherDetails.maritalStatus) + ).toBeVisible() + + /* + * Expected result: should + * - show previous level of education with strikethrough + * - show updated level of education + */ + + await expect( + page.locator('#mother-content #Level').getByRole('deletion') + ).toHaveText('No schooling') + + await expect( + page + .locator('#mother-content #Level') + .getByText(updatedMotherDetails.educationLevel) + ).toBeVisible() + }) + }) + + test('7.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('7.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Informant provided incorrect information (Material error)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('7.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (mother)' + + formatName(declaration.mother.name[0]) + + formatName(updatedMotherDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of mother (mother)', + declaration.mother.ageOfIndividualInYears, + updatedMotherDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Mother)Farajaland' + updatedMotherDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Mother)National ID' + updatedMotherDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Mother)-' + updatedMotherDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Mother)FarajalandCentralIbombo-' + + declaration.mother.address[0].city + + declaration.mother.address[0].line[2] + + declaration.mother.address[0].line[1] + + declaration.mother.address[0].line[0] + + declaration.mother.address[0].postalCode + + 'Farajaland' + + updatedMotherDetails.address.province + + updatedMotherDetails.address.district + + updatedMotherDetails.address.town + + updatedMotherDetails.address.residentialArea + + updatedMotherDetails.address.street + + updatedMotherDetails.address.number + + updatedMotherDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Mother)' + + declaration.mother.maritalStatus + + updatedMotherDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Level of education (Mother)No schooling' + + updatedMotherDetails.educationLevel + ) + ).toBeVisible() + + await expect(page.getByText('Court', { exact: true })).toBeVisible() + await expect(page.getByText('Identity does not match')).toBeVisible() + await expect( + page.getByText( + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('Yes').check() + await page.locator('#correctionFees\\.nestedFields\\.totalFees').fill('15') + + await uploadImage(page, page.locator('#upload_document')) + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + test('7.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-8.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-8.spec.ts new file mode 100644 index 0000000000..ab3fa45385 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-8.spec.ts @@ -0,0 +1,549 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { format, subYears } from 'date-fns' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 8', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + + const updatedFatherDetails = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.firstName('male'), + birthDate: format( + subYears(new Date(), 25 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Married', + educationLevel: 'Primary' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('8.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('j.musonda', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test('8.1 Certificate preview', async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'No, make correction' }).click() + }) + + test('8.2 Correction requester: someone else (Cousin)', async () => { + await page.getByLabel('Someone else').check() + await page.getByPlaceholder('Eg. Grandmother').fill('Cousin') + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * nothing + */ + + await page.getByRole('button', { name: 'Verified' }).click() + + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('8.4 Correction made on father details', async () => { + test('8.4.1 Change father details', async () => { + await page + .locator('#father-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page.locator('#firstNamesEng').fill(updatedFatherDetails.firstNames) + await page.locator('#familyNameEng').fill(updatedFatherDetails.familyName) + + const birthDay = updatedFatherDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.locator('#nationality').click() + await page.getByText(updatedFatherDetails.nationality).click() + + await page.locator('#fatherIdType').click() + await page.getByText(updatedFatherDetails.idType).click() + + await page.locator('#fatherPassport').fill(updatedFatherDetails.id) + + await page.locator('#statePrimaryFather').click() + await page.getByText(updatedFatherDetails.address.province).click() + + await page.locator('#districtPrimaryFather').click() + await page.getByText(updatedFatherDetails.address.district).click() + + await page + .locator('#cityPrimaryFather') + .fill(updatedFatherDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryFather') + .fill(updatedFatherDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryFather') + .fill(updatedFatherDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryFather') + .fill(updatedFatherDetails.address.number) + + await page + .locator('#postalCodePrimaryFather') + .fill(updatedFatherDetails.address.zipCode) + + await page.locator('#maritalStatus').click() + await page.getByText(updatedFatherDetails.maritalStatus).click() + + await page.locator('#educationalAttainment').click() + await page.getByText(updatedFatherDetails.educationLevel).click() + await goBackToReview(page) + }) + + test('8.4.2 Verify changes', async () => { + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#father-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText(declaration.father.name[0].firstNames) + await expect(oldData[1]).toHaveText(declaration.father.name[0].familyName) + + await expect( + page + .locator('#father-content #Full') + .getByText(updatedFatherDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#father-content #Full') + .getByText(updatedFatherDetails.familyName) + ).toBeVisible() + + /* + * Expected result: should + * - show previous gender with strikethrough + * - show updated gender + */ + + await expect( + page.locator('#father-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.father.birthDate)) + + await expect( + page + .locator('#father-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedFatherDetails.birthDate)) + ).toBeVisible() + + /* + * Expected result: should + * - show previous nationality with strikethrough + * - show updated nationality + */ + + await expect( + page.locator('#father-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#father-content #Nationality') + .getByText(updatedFatherDetails.nationality) + ).toBeVisible() + + /* + * Expected result: should + * - show previous id type with strikethrough + * - show updated id type + */ + + await expect( + page.locator('#father-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#father-content #Type') + .getByText(updatedFatherDetails.idType) + ).toBeVisible() + + /* + * Expected result: should + * - show previous id with strikethrough + * - show updated id + */ + + await expect( + page.locator('#father-content #ID').getByText(updatedFatherDetails.id) + ).toBeVisible() + + /* + * Expected result: should + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + await expectAddress( + page.locator('#father-content #Usual'), + { + ...declaration.father.address[0], + country: 'Farajaland', + state: 'Central', + district: 'Ibombo' + }, + true + ) + + await expect( + page.locator('#father-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#father-content #Usual'), + updatedFatherDetails.address + ) + + /* + * Expected result: should + * - show previous marital status with strikethrough + * - show updated marital status + */ + + await expect( + page.locator('#father-content #Marital').getByRole('deletion') + ).toHaveText(declaration.father.maritalStatus, { + ignoreCase: true + }) + + await expect( + page + .locator('#father-content #Marital') + .getByText(updatedFatherDetails.maritalStatus) + ).toBeVisible() + + /* + * Expected result: should + * - show previous level of education with strikethrough + * - show updated level of education + */ + + await expect( + page.locator('#father-content #Level').getByRole('deletion') + ).toHaveText('No schooling') + + await expect( + page + .locator('#father-content #Level') + .getByText(updatedFatherDetails.educationLevel) + ).toBeVisible() + }) + }) + + test('8.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'I attest to seeing supporting documentation and have a copy filed at my office' + ) + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'Informant did not provide this information (Material omission)' + ) + .check() + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (father)' + + formatName(declaration.father.name[0]) + + formatName(updatedFatherDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (father)' + + formatDateTo_ddMMMMyyyy(declaration.father.birthDate) + + formatDateTo_ddMMMMyyyy(updatedFatherDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Father)Farajaland' + updatedFatherDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Father)National ID' + updatedFatherDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Father)-' + updatedFatherDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Father)FarajalandCentralIbombo-' + + declaration.father.address[0].city + + declaration.father.address[0].line[2] + + declaration.father.address[0].line[1] + + declaration.father.address[0].line[0] + + declaration.father.address[0].postalCode + + 'Farajaland' + + updatedFatherDetails.address.province + + updatedFatherDetails.address.district + + updatedFatherDetails.address.town + + updatedFatherDetails.address.residentialArea + + updatedFatherDetails.address.street + + updatedFatherDetails.address.number + + updatedFatherDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Father)' + + declaration.father.maritalStatus + + updatedFatherDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Level of education (Father)No schooling' + + updatedFatherDetails.educationLevel + ) + ).toBeVisible() + + await expect(page.getByText('Cousin')).toBeVisible() + await expect( + page.getByText( + 'Informant did not provide this information (Material omission)' + ) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + + test('8.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-birth/correct-birth-record-9.spec.ts b/e2e/testcases/correction-birth/correct-birth-record-9.spec.ts new file mode 100644 index 0000000000..6c76d5a486 --- /dev/null +++ b/e2e/testcases/correction-birth/correct-birth-record-9.spec.ts @@ -0,0 +1,741 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../birth/helpers' +import { BirthDeclaration, BirthInputDetails } from '../birth/types' +import { format, subYears } from 'date-fns' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 9', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + const updatedInformantDetails = { + relationship: 'Sister', + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + birthDate: format( + subYears(new Date(), 25 + Math.ceil(10 * Math.random())), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('9.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('j.musonda', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + }) + + test.describe('9.1 Print > Ready to issue', async () => { + test('9.1.1 print', async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + test('9.1.2 Ready to issue', async () => { + await page.getByRole('button', { name: 'Ready to issue' }).click() + + /* + * Expected result: should + * - be navigated to ready to isssue tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/readyToIssue')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to issue' }).click() + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + }) + test('9.1.3 Record audit', async () => { + await assignRecord(page) + /* + * Expected result: should show correct record button + */ + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + }) + + test('9.2 Correction requester: Me', async () => { + await page.getByLabel('Me', { exact: true }).check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.3 Verify identity', async () => { + /* + * Expected result: + * - should not show verify identity + * - should directly navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('9.4 Correction made on informant details', async () => { + test('9.4.1 Change relationship to child', async () => { + await page + .locator('#informant-content #Relationship') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informantType + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantType')).toBeTruthy() + + await page.locator('#informantType').click() + await page.getByText(updatedInformantDetails.relationship).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous relation with strikethrough + * - show updated relation + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Relationship').getByRole('deletion') + ).toHaveText(declaration.registration.informantType, { ignoreCase: true }) + + await expect( + page + .locator('#informant-content #Relationship') + .getByText(updatedInformantDetails.relationship) + ).toBeVisible() + }) + + test('9.4.2 Change name', async () => { + await page + .locator('#informant-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + // expect(page.url().includes('#familyNameEng')).toBeTruthy() // fail: does not focus on infirmant's family name + + await page + .locator('#firstNamesEng') + .fill(updatedInformantDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedInformantDetails.familyName) + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#informant-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.informant.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.informant.name[0].familyName + ) + + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.familyName) + ).toBeVisible() + }) + + test('9.4.3 Change date of birth', async () => { + await page + .locator('#informant-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantBirthDate')).toBeTruthy() + + const birthDay = updatedInformantDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)) + + await expect( + page + .locator('#informant-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate)) + ).toBeVisible() + }) + + test('9.4.4 Change nationality', async () => { + await page + .locator('#informant-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedInformantDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#informant-content #Nationality') + .getByText(updatedInformantDetails.nationality) + ).toBeVisible() + }) + + test('9.4.5 Change id type', async () => { + await page + .locator('#informant-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantIdType')).toBeTruthy() + + await page.locator('#informantIdType').click() + await page.getByText(updatedInformantDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#informant-content #Type') + .getByText(updatedInformantDetails.idType) + ).toBeVisible() + }) + + test('9.4.6 Change id', async () => { + await page + .locator('#informant-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantPassport')).toBeTruthy() + + await page.locator('#informantPassport').fill(updatedInformantDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#informant-content #ID') + .getByText(updatedInformantDetails.id) + ).toBeVisible() + }) + + test('9.4.7 Change usual place of residence', async () => { + await page + .locator('#informant-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.province).click() + + await page.locator('#districtPrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.district).click() + + await page + .locator('#cityPrimaryInformant') + .fill(updatedInformantDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.number) + + await page + .locator('#postalCodePrimaryInformant') + .fill(updatedInformantDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#informant-content #Usual'), + { + ...declaration.informant.address[0], + country: 'Farajaland', + state: 'Central', + district: 'Ibombo' + }, + true + ) + + await expect( + page.locator('#informant-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#informant-content #Usual'), + updatedInformantDetails.address + ) + }) + + test('9.4.8 Change email', async () => { + await page + .locator('#informant-content #Email') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#registrationEmail')).toBeTruthy() + + await page + .locator('#registrationEmail') + .fill(updatedInformantDetails.email) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Email with strikethrough + * - show updated Email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Email').getByRole('deletion') + ).toHaveText(declaration.registration.contactEmail) + + await expect( + page + .locator('#informant-content #Email') + .getByText(updatedInformantDetails.email) + ).toBeVisible() + }) + }) + + test('9.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('No supporting documents required').check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Requested to do so by the court (Judicial order)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Relationship to child (Informant)' + + declaration.informant.relationship + + updatedInformantDetails.relationship + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (informant)' + + formatName(declaration.informant.name[0]) + + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_ddMMMMyyyy(declaration.informant.birthDate) + + formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Informant)National ID' + updatedInformantDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)-' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Informant)FarajalandCentralIbombo-' + + declaration.informant.address[0].city + + declaration.informant.address[0].line[2] + + declaration.informant.address[0].line[1] + + declaration.informant.address[0].line[0] + + declaration.informant.address[0].postalCode + + 'Farajaland' + + updatedInformantDetails.address.province + + updatedInformantDetails.address.district + + updatedInformantDetails.address.town + + updatedInformantDetails.address.residentialArea + + updatedInformantDetails.address.street + + updatedInformantDetails.address.number + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + + await expect(page.getByText('Me', { exact: true })).toBeVisible() + await expect( + page.getByText('Requested to do so by the court (Judicial order)') + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.child.name[0])).first() + ).toBeVisible() + }) + test('9.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.child.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-10.spec.ts b/e2e/testcases/correction-death/correct-death-record-10.spec.ts new file mode 100644 index 0000000000..dbf9454d1c --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-10.spec.ts @@ -0,0 +1,1315 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + goToSection, + joinValuesWith, + login, + uploadImage, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { format, parseISO } from 'date-fns' +import { createDeathDeclaration, fetchDeclaration } from '../death/helpers' +import { DeathDeclaration } from '../death/types' +import { CREDENTIALS } from '../../constants' +import { random } from 'lodash' + +test.describe('10. Correct record - 10', () => { + let declaration: DeathDeclaration + let trackingId = '' + + const updatedDeceasedDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + gender: 'Female', + age: random(20, 45), + nationality: 'Canada', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Pualula', + district: 'Pili', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Married', + NOdependants: '3' + } + + test.beforeAll(async () => { + let token = await getToken('k.mweene', 'test') + + const res = await createDeathDeclaration(token) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('f.katongo', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test.describe('10.1 Validate verbiage', async () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('10.1.1 Validate record audit page', async ({ page }) => { + /* + * Expected result: should + * - See in header deceased's name and action button + * - Navigate to record audit page + * - See status, event, trackingId, BRN, DOB, Place of death, Informant contact + */ + await expect( + page.getByText(formatName(declaration.deceased.name[0])) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Action' }).first() + ).toBeVisible() + + expect(page.url().includes('record-audit')).toBeTruthy() + + await expect( + page.getByText(`Status${declaration.registration.status[0].type}`) + ).toBeVisible() + await expect( + page.getByText(`Event${declaration.registration.type}`) + ).toBeVisible() + await expect(page.getByText(`Tracking ID${trackingId}`)).toBeVisible() + await expect( + page.getByText( + `Registration No${declaration.registration.registrationNumber}` + ) + ).toBeVisible() + await expect( + page.getByText(`Date of death${format( + parseISO(declaration.deceased.deceased.deathDate), + 'MMMM dd, yyyy' + )} + `) + ).toBeVisible() + await expect( + page.getByText( + 'Place of deathKalela Health Post, Afue, Sulaka, Farajaland' + ) + ).toBeVisible() + await expect( + page.getByText(declaration.registration.contactEmail) + ).toBeVisible() + }) + + test('10.1.2 Validate correction requester page', async ({ page }) => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + + /* + * Expected result: should + * - Navigate to Correction Requester Page + */ + await expect(page.getByText('Correction requester')).toBeVisible() + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('corrector')).toBeTruthy() + }) + + test('10.1.3 Validate identity verification page for Informant (SPOUSE)', async ({ + page + }) => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + + await page.getByLabel('Informant (SPOUSE)').check() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should show + * Text: Verify their identity + * Button: Verified + * Button: Identity does not match + */ + await expect(page.getByText('Verify their identity')).toBeVisible() + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + + /* + * Expected result: should Confirm + * ID + * First Name + * Last Name + * Date of Birth + * Nationality + */ + await expect( + page.getByText( + `ID: National Id | ${declaration.informant.identifier[0].id}` + ) + ).toBeVisible() + await expect( + page.getByText( + `First name(s): ${declaration.informant.name[0].firstNames}` + ) + ).toBeVisible() + await expect( + page.getByText(`Last name: ${declaration.informant.name[0].familyName}`) + ).toBeVisible() + await expect( + page.getByText( + `Date of Birth: + ${formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)} + ` + ) + ).toBeVisible() + await expect( + page.getByText(`Nationality: ${declaration.informant.nationality}`) + ).toBeVisible() + }) + }) + + test.describe.serial('10.2 Record correction by informant', async () => { + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + + await page.getByLabel('Informant (SPOUSE)').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test.afterAll(async () => { + await page.close() + }) + + test('10.2.1 Verify identity', async () => { + /* + * Expected result: should Confirm + * ID + * First Name + * Last Name + * Date of Birth + * Nationality + */ + await expect( + page.getByText( + `ID: National Id | ${declaration.informant.identifier[0].id}` + ) + ).toBeVisible() + await expect( + page.getByText( + `First name(s): ${declaration.informant.name[0].firstNames}` + ) + ).toBeVisible() + await expect( + page.getByText(`Last name: ${declaration.informant.name[0].familyName}`) + ).toBeVisible() + await expect( + page.getByText( + `Date of Birth: + ${formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)} + ` + ) + ).toBeVisible() + await expect( + page.getByText(`Nationality: ${declaration.informant.nationality}`) + ).toBeVisible() + + await page.getByRole('button', { name: 'Verified' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('10.2.2 Correction made on deceased details', async () => { + test('10.2.2.1 Change name', async () => { + await page + .locator('#deceased-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page + .locator('#firstNamesEng') + .fill(updatedDeceasedDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedDeceasedDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#deceased-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.deceased.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.deceased.name[0].familyName + ) + + await expect( + page + .locator('#deceased-content #Full') + .getByText(updatedDeceasedDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#deceased-content #Full') + .getByText(updatedDeceasedDetails.familyName) + ).toBeVisible() + }) + + test('10.2.2.2 Change gender', async () => { + await page + .locator('#deceased-content #Sex') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#gender')).toBeTruthy() + + await page.locator('#gender').click() + await page.getByText(updatedDeceasedDetails.gender).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Sex').getByRole('deletion') + ).toHaveText(declaration.deceased.gender, { ignoreCase: true }) + + await expect( + page + .locator('#deceased-content #Sex') + .getByText(updatedDeceasedDetails.gender) + ).toBeVisible() + }) + + test('10.2.2.3 Change age', async () => { + await page + .locator('#deceased-content #Age') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's age + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#ageOfIndividualInYears')).toBeTruthy() + + await page + .locator('#ageOfIndividualInYears') + .fill(updatedDeceasedDetails.age.toString()) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Age').getByRole('deletion') + ).toHaveText( + joinValuesWith( + [declaration.deceased.ageOfIndividualInYears, 'years'], + ' ' + ) + ) + + await expect( + page + .locator('#deceased-content #Age') + .getByText( + joinValuesWith([updatedDeceasedDetails.age, 'years'], ' ') + ) + ).toBeVisible() + }) + + test('10.2.2.4 Change nationality', async () => { + await page + .locator('#deceased-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedDeceasedDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#deceased-content #Nationality') + .getByText(updatedDeceasedDetails.nationality) + ).toBeVisible() + }) + + test('10.2.2.5 Change id type', async () => { + await page + .locator('#deceased-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#deceasedIdType')).toBeTruthy() + + await page.locator('#deceasedIdType').click() + await page.getByText(updatedDeceasedDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#deceased-content #Type') + .getByText(updatedDeceasedDetails.idType) + ).toBeVisible() + }) + + test('10.2.2.6 Change id', async () => { + await page + .locator('#deceased-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#deceasedPassport')).toBeTruthy() + + await page.locator('#deceasedPassport').fill(updatedDeceasedDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#deceased-content #ID') + .getByText(updatedDeceasedDetails.id) + ).toBeVisible() + }) + + test('10.2.2.7 Change usual place of residence', async () => { + await page + .locator('#deceased-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryDeceased').click() + await page.getByText(updatedDeceasedDetails.address.province).click() + + await page.locator('#districtPrimaryDeceased').click() + await page.getByText(updatedDeceasedDetails.address.district).click() + + await page + .locator('#cityPrimaryDeceased') + .fill(updatedDeceasedDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.number) + + await page + .locator('#postalCodePrimaryDeceased') + .fill(updatedDeceasedDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#deceased-content #Usual'), + { + ...declaration.deceased.address[0], + country: 'Farajaland', + state: 'Sulaka', + district: 'Zobwe' + }, + true + ) + + await expect( + page.locator('#deceased-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#deceased-content #Usual'), + updatedDeceasedDetails.address + ) + }) + + test('10.2.2.8 Change marital status', async () => { + await page + .locator('#deceased-content #Marital') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#maritalStatus')).toBeTruthy() + + await page.locator('#maritalStatus').click() + await page.getByText(updatedDeceasedDetails.maritalStatus).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous marital status with strikethrough + * - show updated marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Marital').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#deceased-content #Marital') + .getByText(updatedDeceasedDetails.maritalStatus) + ).toBeVisible() + }) + }) + + test('10.2.3 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeDisabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.2.4 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeDisabled() + + await page + .getByLabel('Myself or an agent made a mistake (Clerical error)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.describe('10.2.5 Correction summary', async () => { + test('10.2.5.1 Go back to review', async () => { + /* + * Expected result: should + * - navigate to correction summary + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('summary')).toBeTruthy() + + await page + .getByRole('button', { name: 'Back to review', exact: true }) + .click() + + /* + * Expected result: should + * - navigate to correction review + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test('10.2.5.2 Change number of depandants', async () => { + await page + .getByRole('row', { name: 'No. of dependants' }) + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's number of depandants + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#numberOfDependants')).toBeTruthy() + + await page + .locator('#numberOfDependants') + .fill(updatedDeceasedDetails.NOdependants) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show new number of depandants + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .getByRole('row', { name: 'No. of dependants' }) + .getByText(updatedDeceasedDetails.NOdependants) + ).toBeVisible() + }) + + test('10.2.5.3 Validate information in correction summary page', async () => { + await goToSection(page, 'summary') + + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('summary')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Send for approval' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (Deceased)' + + formatName(declaration.deceased.name[0]) + + formatName(updatedDeceasedDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Deceased)' + + declaration.deceased.gender + + updatedDeceasedDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of deceased (Deceased)', + declaration.deceased.ageOfIndividualInYears, + updatedDeceasedDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Deceased)Farajaland' + + updatedDeceasedDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Deceased)National ID' + updatedDeceasedDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Deceased)-' + updatedDeceasedDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Deceased)FarajalandSulakaZobwe-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Farajaland' + + updatedDeceasedDetails.address.province + + updatedDeceasedDetails.address.district + + updatedDeceasedDetails.address.town + + updatedDeceasedDetails.address.residentialArea + + updatedDeceasedDetails.address.street + + updatedDeceasedDetails.address.number + + updatedDeceasedDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Deceased)-' + updatedDeceasedDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'No. of dependants (Deceased)-' + + updatedDeceasedDetails.NOdependants + ) + ).toBeVisible() + + await expect( + page.getByText(formatName(declaration.informant.name[0])) + ).toBeVisible() + await expect(page.getByText('Verified')).toBeVisible() + await expect( + page.getByText('Myself or an agent made a mistake (Clerical error)') + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('Yes').check() + await page + .locator('#correctionFees\\.nestedFields\\.totalFees') + .fill('15') + + await uploadImage(page, page.locator('#upload_document')) + + /* + * Expected result: should enable the Send for approval button + */ + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/approvals')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + }) + + test.describe('10.2.6 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + page = await browser.newPage() + + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + }) + + test('10.2.6.1 Record audit by local registrar', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('10.2.6.2 Correction review', async () => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review correction request').click() + /* + * Expected result: should show + * - Submitter + * - Requested by + * - Reason for request + * - Comments + * - Original vs correction + */ + + await expect( + page.getByText('Submitter' + 'Felix Katongo') + ).toBeVisible() + + await expect( + page.getByText( + 'Requested by' + formatName(declaration.spouse.name[0]) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Reason for request' + + 'Myself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Comments' + declaration.registration.registrationNumber + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (Deceased)' + + formatName(declaration.deceased.name[0]) + + formatName(updatedDeceasedDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Deceased)' + + declaration.deceased.gender + + updatedDeceasedDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of deceased (Deceased)', + declaration.deceased.ageOfIndividualInYears, + updatedDeceasedDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Deceased)Farajaland' + + updatedDeceasedDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Deceased)National ID' + updatedDeceasedDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Deceased)-' + updatedDeceasedDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Deceased)FarajalandSulakaZobwe-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Farajaland' + + updatedDeceasedDetails.address.province + + updatedDeceasedDetails.address.district + + updatedDeceasedDetails.address.town + + updatedDeceasedDetails.address.residentialArea + + updatedDeceasedDetails.address.street + + updatedDeceasedDetails.address.number + + updatedDeceasedDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Deceased)-' + updatedDeceasedDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'No. of dependants (Deceased)-' + + updatedDeceasedDetails.NOdependants + ) + ).toBeVisible() + }) + + test('10.2.6.3 Approve correction', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the updated declaration in this tab + */ + expect(page.url().includes('registration-home/print')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + await expect( + page.getByText(formatName(updatedDeceasedDetails)) + ).toBeVisible() + }) + test('10.2.6.4 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(updatedDeceasedDetails), + trackingId + }) + /* + * Verify we're on the right record page + */ + await expect( + page.getByText(formatName(updatedDeceasedDetails)) + ).toBeVisible() + + await assignRecord(page) + /* + * Expected result: should show in task history + * - Correction requested + * - Correction approved + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction requested' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction approved' }) + ).toBeVisible() + }) + test('10.2.6.5 Validate correction requested modal', async () => { + const correctionRequestedRow = page.locator( + '#listTable-task-history div[id^="row_"]:has-text("Correction requested")' + ) + await correctionRequestedRow.getByText('Correction requested').click() + + const time = await correctionRequestedRow + .locator('span') + .nth(1) + .innerText() + + const requester = await correctionRequestedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction requested header + * - Requester & time + * - Requested by + * - Id check + * - Reason + * - Comment + * - Original vs Correction + */ + + await expect( + page.getByRole('heading', { name: 'Correction requested' }) + ).toBeVisible() + + await expect(page.getByText(requester + ' — ' + time)).toBeVisible() + await expect( + page.getByText('Requested by' + 'Informant (Spouse)') + ).toBeVisible() + + await expect(page.getByText('ID check' + 'Verified')).toBeVisible() + + await expect( + page.getByText( + 'Reason for request' + + 'Myself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Comment' + declaration.registration.registrationNumber + ) + ).toBeVisible() + + await expect( + page.getByText( + 'First name(s) (Deceased)' + + declaration.deceased.name[0].firstNames + + updatedDeceasedDetails.firstNames + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Last name (Deceased)' + + declaration.deceased.name[0].familyName + + updatedDeceasedDetails.familyName + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Deceased)' + + declaration.deceased.gender + + updatedDeceasedDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of deceased (Deceased)', + declaration.deceased.ageOfIndividualInYears, + updatedDeceasedDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Deceased)' + + 'Farajaland' + + updatedDeceasedDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Deceased)National ID' + updatedDeceasedDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Deceased)' + updatedDeceasedDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Deceased)' + updatedDeceasedDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'No. of dependants (Deceased)' + updatedDeceasedDetails.NOdependants + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Province (Deceased)' + + 'Sulaka' + + updatedDeceasedDetails.address.province + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Next page' }).click() + + await expect( + page.getByText( + 'District (Deceased)' + + 'Zobwe' + + updatedDeceasedDetails.address.district + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Town (Deceased)' + + declaration.deceased.address[0].city + + updatedDeceasedDetails.address.town + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Residential Area (Deceased)' + + declaration.deceased.address[0].line[2] + + updatedDeceasedDetails.address.residentialArea + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Street (Deceased)' + + declaration.deceased.address[0].line[1] + + updatedDeceasedDetails.address.street + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Number (Deceased)' + + declaration.deceased.address[0].line[0] + + updatedDeceasedDetails.address.number + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Postcode / Zip (Deceased)' + + declaration.deceased.address[0].postalCode + + updatedDeceasedDetails.address.zipCode + ) + ).toBeVisible() + + await page + .getByRole('heading', { name: 'Correction requested' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + test('10.2.6.6 Validate correction approved modal', async () => { + const correctionApprovedRow = page.locator( + '#listTable-task-history div[id^="row_"]:has-text("Correction approved")' + ) + await correctionApprovedRow.getByText('Correction approved').click() + + const time = await correctionApprovedRow + .locator('span') + .nth(1) + .innerText() + + const reviewer = await correctionApprovedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction approved header + * - Reviewer & time + */ + + await expect( + page.getByRole('heading', { name: 'Correction approved' }) + ).toBeVisible() + + await expect(page.getByText(reviewer + ' — ' + time)).toBeVisible() + await page + .getByRole('heading', { name: 'Correction approved' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + }) + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-11.spec.ts b/e2e/testcases/correction-death/correct-death-record-11.spec.ts new file mode 100644 index 0000000000..6ee320fce3 --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-11.spec.ts @@ -0,0 +1,749 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatDateTo_yyyyMMdd, + formatName, + getAction, + getToken, + goBackToReview, + login +} from '../../helpers' +import { format, parseISO, subDays } from 'date-fns' +import { DeathDeclaration } from '../death/types' +import { createDeathDeclaration, fetchDeclaration } from '../death/helpers' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 11', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + + const updatedEventDetails = { + dateOfDeath: format( + subDays(new Date(), Math.ceil(20 * Math.random())), + 'yyyy-MM-dd' + ), + manner: 'Natural causes', + cause: { + established: true, + source: 'Physician' + }, + placeOfDeath: 'Health Institution', + deathLocation: 'Pondo Rural Health Centre' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('11.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + + const res = await createDeathDeclaration(token, { + event: { + placeOfDeath: "Deceased's usual place of residence" + } + }) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('f.katongo', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test('11.1 Certificate preview', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'No, make correction' }).click() + }) + + test('11.2 Correction requester: another registration agent or field agent', async () => { + await page.getByLabel('Another registration agent or field agent').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('11.3 Verify identity', async () => { + /* + * Expected result: + * - should not show verify identity + * - should directly navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('11.4 Correction made on event details', async () => { + test('11.4.1 Change date of death', async () => { + await page + .locator('#deathEvent-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to death event details page + * - focus on date of death + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#deathDate')).toBeTruthy() + + const date = updatedEventDetails.dateOfDeath.split('-') + + await page.getByPlaceholder('dd').fill(date[2]) + await page.getByPlaceholder('mm').fill(date[1]) + await page.getByPlaceholder('yyyy').fill(date[0]) + + await goBackToReview(page) + /* + * Expected result: should + * - redirect to review page + * - show previous date of death with strikethrough + * - show updated date of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Date').getByRole('deletion') + ).toHaveText( + formatDateTo_ddMMMMyyyy(declaration.deceased.deceased.deathDate) + ) + + await expect( + page + .locator('#deathEvent-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedEventDetails.dateOfDeath)) + ).toBeVisible() + }) + + test('11.4.2 Change manner of death', async () => { + await page + .locator('#deathEvent-content #Manner') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on manner of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#mannerOfDeath')).toBeTruthy() + + await page.locator('#mannerOfDeath').click() + await page.getByText(updatedEventDetails.manner, { exact: true }).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous manner with strikethrough + * - show updated manner + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Manner').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#deathEvent-content #Manner') + .getByText(updatedEventDetails.manner) + ).toBeVisible() + }) + + test('11.4.3 Change cause of death, source', async () => { + await page + .locator('#deathEvent-content #Cause') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on cause of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#causeOfDeathEstablished')).toBeTruthy() + + await page.getByLabel('Cause of death has been established').check() + + await page.locator('#causeOfDeathMethod').click() + await page + .getByText(updatedEventDetails.cause.source, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous cause with strikethrough + * - show previous source of cause with strikethrough + * - show updated cause + * - show updated source of cause + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Cause').getByRole('deletion') + ).toHaveText(declaration.causeOfDeathEstablished == 'true' ? 'Yes' : 'No') + + await expect( + page + .locator('#deathEvent-content #Cause') + .getByText(updatedEventDetails.cause.established ? 'Yes' : 'No') + ).toBeVisible() + + await expect( + page.locator('#deathEvent-content #Source').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#deathEvent-content #Source') + .getByText(updatedEventDetails.cause.source) + ).toBeVisible() + }) + + test('11.4.4 Change place of death', async () => { + await page + .locator('#deathEvent-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on place of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#placeOfDeath')).toBeTruthy() + + await page.locator('#placeOfDeath').click() + await page + .getByText(updatedEventDetails.placeOfDeath, { exact: true }) + .click() + + await page + .locator('#deathLocation') + .fill(updatedEventDetails.deathLocation.slice(0, 3)) + await page + .getByText(updatedEventDetails.deathLocation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place with strikethrough + * - show updated place + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Place').getByRole('deletion').nth(0) + ).toHaveText("Deceased's usual place of residence") + + await expect( + page + .locator('#deathEvent-content #Place') + .getByText( + updatedEventDetails.placeOfDeath + updatedEventDetails.deathLocation + ) + ).toBeVisible() + }) + }) + + test('11.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'I attest to seeing supporting documentation and have a copy filed at my office' + ) + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('11.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Informant provided incorrect information (Material error)') + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('11.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Send for approval' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Date of death (Death event details)' + + format( + parseISO(declaration.deceased.deceased.deathDate), + 'dd MMMM yyyy' + ) + + formatDateTo_ddMMMMyyyy(updatedEventDetails.dateOfDeath) + ) + ).toBeVisible() + await expect( + page.getByText( + 'Manner of death (Death event details)-' + updatedEventDetails.manner + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Cause of death has been established (Death event details)' + + (declaration.causeOfDeathEstablished == 'true' ? 'Yes' : 'No') + + (updatedEventDetails.cause.established ? 'Yes' : 'No') + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Source of cause of death (Death event details)-' + + updatedEventDetails.cause.source + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of death (Death event details)' + + "Deceased's usual place of residence" + + '-' + + updatedEventDetails.placeOfDeath + + updatedEventDetails.deathLocation + ) + ).toBeVisible() + + await expect( + page.getByText('Another registration agent or field agent') + ).toBeVisible() + + await expect( + page.getByText( + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Send for approval button + */ + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/approvals')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + test.describe('11.8 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + + page = await browser.newPage() + + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + }) + + test('11.8.1 Record audit by local registrar', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('11.8.2 Correction review', async () => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review correction request').click() + /* + * Expected result: should show + * - Submitter + * - Requested by + * - Reason for request + * - Comments + * - Original vs correction + */ + + await expect(page.getByText('Submitter' + 'Felix Katongo')).toBeVisible() + + await expect( + page.getByText( + 'Requested by' + 'Another registration agent or field agent' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Reason for request' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of death (Death event details)' + + format( + parseISO(declaration.deceased.deceased.deathDate), + 'dd MMMM yyyy' + ) + + formatDateTo_ddMMMMyyyy(updatedEventDetails.dateOfDeath) + ) + ).toBeVisible() + await expect( + page.getByText( + 'Manner of death (Death event details)-' + updatedEventDetails.manner + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Cause of death has been established (Death event details)' + + (declaration.causeOfDeathEstablished == 'true' ? 'Yes' : 'No') + + (updatedEventDetails.cause.established ? 'Yes' : 'No') + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Source of cause of death (Death event details)-' + + updatedEventDetails.cause.source + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of death (Death event details)' + + "Deceased's usual place of residence" + + '-' + + updatedEventDetails.placeOfDeath + + updatedEventDetails.deathLocation + ) + ).toBeVisible() + + await expect( + page.getByText('Another registration agent or field agent') + ).toBeVisible() + }) + + test('11.8.3 Reject correction', async () => { + await page.getByRole('button', { name: 'Reject', exact: true }).click() + await page + .locator('#rejectionRaisonOfCorrection') + .fill('Wrong information') + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the updated declaration in this tab + */ + expect(page.url().includes('registration-home/print')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + + test('11.8.4 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + + /* + * Verify we're on the right record page + */ + await expect( + page.getByText(formatName(declaration.deceased.name[0])) + ).toBeVisible() + + await assignRecord(page) + /* + * Expected result: should show in task history + * - Correction requested + * - Correction rejected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction requested' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction rejected' }) + ).toBeVisible() + }) + test('11.8.5 Validate correction requested modal', async () => { + const correctionRequestedRow = page.locator( + '#listTable-task-history #row_5' + ) + await correctionRequestedRow.getByText('Correction requested').click() + + const time = await correctionRequestedRow + .locator('span') + .nth(1) + .innerText() + + const requester = await correctionRequestedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction requested header + * - Requester & time + * - Requested by + * - Id check + * - Reason + * - Comment + * - Original vs Correction + */ + + await expect( + page.getByRole('heading', { name: 'Correction requested' }) + ).toBeVisible() + + await expect(page.getByText(requester + ' — ' + time)).toBeVisible() + + await expect( + page.getByText( + 'Requested by' + 'Another registration agent or field agent' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Reason for request' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await expect(page.getByText('Comment')).toBeVisible() + + await expect( + page.getByText( + 'Date of death (Death event details)' + + format( + parseISO(declaration.deceased.deceased.deathDate), + 'yyyy-MM-dd' + ) + + formatDateTo_yyyyMMdd(updatedEventDetails.dateOfDeath) + ) + ).toBeVisible() + await expect( + page.getByText( + 'Manner of death (Death event details)' + updatedEventDetails.manner + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Cause of death has been established (Death event details)' + + declaration.causeOfDeathEstablished + + updatedEventDetails.cause.established + ) + ).toBeVisible() + + //@ToDo after feedback from qa, assert properly + // await expect( + // page.getByText( + // 'Cause of death has been established (Death event details)' + + // (declaration.causeOfDeathEstablished == 'true' ? 'Yes' : 'No') + + // (updatedEventDetails.cause.established ? 'Yes' : 'No') + // ) + // ).toBeVisible() + + await expect( + page.getByText( + 'Source of cause of death (Death event details)' + + updatedEventDetails.cause.source + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of death (Death event details)' + + "Deceased's usual place of residence" + + updatedEventDetails.placeOfDeath + ) + ).toBeVisible() + + await expect( + page.getByText( + updatedEventDetails.placeOfDeath + + ' (Death event details)' + + updatedEventDetails.deathLocation + ) + ).toBeVisible() + + await page + .getByRole('heading', { name: 'Correction requested' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + test('11.8.6 Validate correction rejected modal', async () => { + const correctionRejectedRow = page.locator( + '#listTable-task-history #row_7' + ) + await correctionRejectedRow.getByText('Correction rejected').click() + + const time = await correctionRejectedRow + .locator('span') + .nth(1) + .innerText() + + const reviewer = await correctionRejectedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Correction rejected header + * - Reviewer & time + * - Reason + */ + + await expect( + page.getByRole('heading', { name: 'Correction rejected' }) + ).toBeVisible() + + await expect(page.getByText(reviewer + ' — ' + time)).toBeVisible() + + await expect(page.getByText('Reason' + 'Wrong information')).toBeVisible() + + await page + .getByRole('heading', { name: 'Correction rejected' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-12.spec.ts b/e2e/testcases/correction-death/correct-death-record-12.spec.ts new file mode 100644 index 0000000000..572b809348 --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-12.spec.ts @@ -0,0 +1,1051 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { format, parseISO, subDays } from 'date-fns' +import { DeathDeclaration } from '../death/types' +import { + createDeathDeclaration, + DeathDeclarationInput, + fetchDeclaration +} from '../death/helpers' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 12', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + + let declarationInput: DeathDeclarationInput + + const updatedInformantDetails = { + type: 'Son', + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + birthDate: format( + subDays(new Date(), Math.ceil(50 * Math.random() + 365 * 25)), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + const updatedEventDetails = { + placeOfDeath: 'Other', + deathLocation: { + province: 'Chuminga', + district: 'Soka', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('12.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + declarationInput = { + deceased: { + usual: { + province: 'Sulaka', + district: 'Zobwe' + } + }, + event: { + placeOfDeath: "Deceased's usual place of residence" + } + } + const res = await createDeathDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('f.katongo', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test.describe('12.1 Print > Ready to issue', async () => { + test('12.1.1 Print', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + + test('12.1.2 Ready to issue', async () => { + await page.getByRole('button', { name: 'Ready to issue' }).click() + + /* + * Expected result: should + * - be navigated to ready to isssue tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/readyToIssue')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to issue' }).click() + await expect( + page.getByText(formatName(declaration.deceased.name[0])) + ).toBeVisible() + }) + + test('12.1.3 Record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + /* + * Expected result: should show correct record button + */ + await page + .getByRole('button', { name: 'Action', exact: true }) + .first() + .click() + await expect(getAction(page, 'Correct record')).toBeVisible() + + await getAction(page, 'Correct record').click() + }) + }) + + test('12.2 Correction requester: Me', async () => { + await page.getByLabel('Me', { exact: true }).check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('12.3 Verify identity', async () => { + /* + * Expected result: should directly navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('12.4 Make correction', async () => { + test.describe('12.4.1 Make correction on informant details', async () => { + test('12.4.1.1 Change informant type', async () => { + await page + .locator('#informant-content #Informant') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantType')).toBeTruthy() + + await page.locator('#informantType').click() + await page + .getByText(updatedInformantDetails.type, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous type with strikethrough + * - show updated type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Informant').getByRole('deletion') + ).toHaveText(declaration.registration.informantType, { + ignoreCase: true + }) + + await expect( + page + .locator('#informant-content #Informant') + .getByText(updatedInformantDetails.type) + ).toBeVisible() + }) + + test('12.4.1.2 Change name', async () => { + await page + .locator('#informant-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + // expect(page.url().includes('#familyNameEng')).toBeTruthy() => this fails + + await page + .locator('#firstNamesEng') + .fill(updatedInformantDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedInformantDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#informant-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.informant.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.informant.name[0].familyName + ) + + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.familyName) + ).toBeVisible() + }) + + test('12.4.1.3 Change date of birth', async () => { + await page + .locator('#informant-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantBirthDate')).toBeTruthy() + + const birthDay = updatedInformantDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)) + + await expect( + page + .locator('#informant-content #Date') + .getByText( + format( + parseISO(updatedInformantDetails.birthDate), + 'dd MMMM yyyy' + ) + ) + ).toBeVisible() + }) + + test('12.4.1.4 Change nationality', async () => { + await page + .locator('#informant-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedInformantDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#informant-content #Nationality') + .getByText(updatedInformantDetails.nationality) + ).toBeVisible() + }) + + test('12.4.1.5 Change id type', async () => { + await page + .locator('#informant-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantIdType')).toBeTruthy() + + await page.locator('#informantIdType').click() + await page.getByText(updatedInformantDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Type').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#informant-content #Type') + .getByText(updatedInformantDetails.idType) + ).toBeVisible() + }) + + test('12.4.1.6 Change id', async () => { + await page + .locator('#informant-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantPassport')).toBeTruthy() + + await page + .locator('#informantPassport') + .fill(updatedInformantDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#informant-content #ID') + .getByText(updatedInformantDetails.id) + ).toBeVisible() + }) + + test('12.4.1.7 Change usual place of residence', async () => { + await page + .locator('#informant-content #Same') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect( + page.url().includes('#primaryAddressSameAsOtherPrimary') + ).toBeTruthy() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.province).click() + + await page.locator('#districtPrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.district).click() + + await page + .locator('#cityPrimaryInformant') + .fill(updatedInformantDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.number) + + await page + .locator('#postalCodePrimaryInformant') + .fill(updatedInformantDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#informant-content #Usual'), + updatedInformantDetails.address + ) + }) + + test('12.4.1.8 Change email', async () => { + await page + .locator('#informant-content #Email') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on registration email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#registrationEmail')).toBeTruthy() + + await page + .locator('#registrationEmail') + .fill(updatedInformantDetails.email) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous email with strikethrough + * - show updated email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Email').getByRole('deletion') + ).toHaveText(declaration.registration.contactEmail) + await expect( + page + .locator('#informant-content #Email') + .getByText(updatedInformantDetails.email) + ).toBeVisible() + }) + }) + test('12.4.2 Change place of death', async () => { + await page + .locator('#deathEvent-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on place of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#placeOfDeath')).toBeTruthy() + + await page.locator('#placeOfDeath').click() + await page + .getByText(updatedEventDetails.placeOfDeath, { exact: true }) + .click() + + await page.locator('#statePlaceofdeath').click() + await page.getByText(updatedEventDetails.deathLocation.province).click() + + await page.locator('#districtPlaceofdeath').click() + await page.getByText(updatedEventDetails.deathLocation.district).click() + + await page + .locator('#cityPlaceofdeath') + .fill(updatedEventDetails.deathLocation.town) + + await page + .locator('#addressLine1UrbanOptionPlaceofdeath') + .fill(updatedEventDetails.deathLocation.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPlaceofdeath') + .fill(updatedEventDetails.deathLocation.street) + + await page + .locator('#addressLine3UrbanOptionPlaceofdeath') + .fill(updatedEventDetails.deathLocation.number) + + await page + .locator('#postalCodePlaceofdeath') + .fill(updatedEventDetails.deathLocation.zipCode) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place with strikethrough + * - show updated place + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Place').getByRole('deletion').nth(0) + ).toHaveText("Deceased's usual place of residence") + + await expectAddress( + page.locator('#deathEvent-content #Place'), + { + ...declaration.deceased.address[0], + country: 'Farajaland', + state: declarationInput.deceased!.usual!.province, + district: declarationInput.deceased!.usual!.district + }, + true + ) + + await expectAddress(page.locator('#deathEvent-content #Place'), { + ...updatedEventDetails.deathLocation, + country: 'Farajaland' + }) + }) + }) + + test('12.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('No supporting documents required').check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('12.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'Informant did not provide this information (Material omission)' + ) + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('12.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Send for approval' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Place of death (Death event details)' + + "Deceased's usual place of residence" + + 'Farajaland' + + declarationInput.deceased!.usual!.province + + declarationInput.deceased!.usual!.district + + '-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Other' + + 'Farajaland' + + updatedEventDetails.deathLocation.province + + updatedEventDetails.deathLocation.district + + updatedEventDetails.deathLocation.town + + updatedEventDetails.deathLocation.residentialArea + + updatedEventDetails.deathLocation.street + + updatedEventDetails.deathLocation.number + + updatedEventDetails.deathLocation.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Informant type (Informant)' + + declaration.registration.informantType + + updatedInformantDetails.type + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (informant)' + + formatName(declaration.informant.name[0]) + + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_ddMMMMyyyy(declaration.informant.birthDate) + + formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText('Type of ID (Informant)-' + updatedInformantDetails.idType) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)-' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + "Same as deceased's usual place of residence? (Informant)" + + 'Yes' + + 'No' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Informant)FarajalandSulakaZobwe-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Farajaland' + + updatedInformantDetails.address.province + + updatedInformantDetails.address.district + + updatedInformantDetails.address.town + + updatedInformantDetails.address.residentialArea + + updatedInformantDetails.address.street + + updatedInformantDetails.address.number + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + + await expect(page.getByText('Me', { exact: true })).toBeVisible() + await expect( + page.getByText( + 'Informant did not provide this information (Material omission)' + ) + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Send for approval button + */ + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/approvals')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + + test.describe('12.8 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + + page = await browser.newPage() + + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + }) + + test('12.8.1 Record audit by local registrar', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + }) + + test('12.8.2 Correction review', async () => { + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review correction request').click() + /* + * Expected result: should show + * - Submitter + * - Requested by + * - Reason for request + * - Comments + * - Original vs correction + */ + + await expect(page.getByText('Submitter' + 'Felix Katongo')).toBeVisible() + + await expect(page.getByText('Requested by' + 'Me')).toBeVisible() + await expect( + page.getByText( + 'Reason for request' + + 'Informant did not provide this information (Material omission)' + ) + ).toBeVisible() + + await expect( + page.getByText('Comments' + declaration.registration.registrationNumber) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of death (Death event details)' + + "Deceased's usual place of residence" + + 'Farajaland' + + declarationInput.deceased!.usual!.province + + declarationInput.deceased!.usual!.district + + '-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Other' + + 'Farajaland' + + updatedEventDetails.deathLocation.province + + updatedEventDetails.deathLocation.district + + updatedEventDetails.deathLocation.town + + updatedEventDetails.deathLocation.residentialArea + + updatedEventDetails.deathLocation.street + + updatedEventDetails.deathLocation.number + + updatedEventDetails.deathLocation.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Informant type (Informant)' + + declaration.registration.informantType + + updatedInformantDetails.type + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (informant)' + + formatName(declaration.informant.name[0]) + + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_ddMMMMyyyy(declaration.informant.birthDate) + + formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Informant)-' + updatedInformantDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)-' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + "Same as deceased's usual place of residence? (Informant)" + + 'Yes' + + 'No' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Informant)FarajalandSulakaZobwe-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Farajaland' + + updatedInformantDetails.address.province + + updatedInformantDetails.address.district + + updatedInformantDetails.address.town + + updatedInformantDetails.address.residentialArea + + updatedInformantDetails.address.street + + updatedInformantDetails.address.number + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + }) + + test('12.8.3 Approve correction', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the updated declaration in this tab + */ + expect(page.url().includes('registration-home/print')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + + test('12.8.4 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Correction requested + * - Correction approved + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction requested' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction approved' }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-13.spec.ts b/e2e/testcases/correction-death/correct-death-record-13.spec.ts new file mode 100644 index 0000000000..0277c36b19 --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-13.spec.ts @@ -0,0 +1,702 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login, + uploadImage, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { format, subDays } from 'date-fns' +import { DeathDeclaration } from '../death/types' +import { + createDeathDeclaration, + DeathDeclarationInput, + fetchDeclaration +} from '../death/helpers' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 13', () => { + const CHANGING_LOCATION_FROM_HEALT_FACILITY_TO_USUAL_ADDRESS_BUG_SOLVED = + false + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + let declarationInput: DeathDeclarationInput + + const updatedSpouseDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + birthDate: format( + subDays(new Date(), Math.ceil(50 * Math.random() + 365 * 25)), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + sameAsDeceased: false, + province: 'Pualula', + district: 'Ienge', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + const updatedEventDetails = { + placeOfDeath: "Deceased's usual place of residence" + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('13.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + + declarationInput = { + event: { + placeOfDeath: 'Health Institution' + } + } + + const res = await createDeathDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('k.mweene', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test('13.1 Ready to print > record audit', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + + test('13.2 Correction requester: Someone Else (Cousin)', async () => { + await page.getByLabel('Someone Else').check() + await page.getByPlaceholder('Eg. Grandmother').fill('Cousin') + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('13.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * nothing + */ + + await page.getByRole('button', { name: 'Verified' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('13.4 Make correction', async () => { + test.describe('13.4.1 Make correction on spouse details', async () => { + test('13.4.1.1 Change name', async () => { + await page + .locator('#spouse-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page + .locator('#firstNamesEng') + .fill(updatedSpouseDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedSpouseDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#spouse-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.spouse.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.spouse.name[0].familyName + ) + + await expect( + page + .locator('#spouse-content #Full') + .getByText(updatedSpouseDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#spouse-content #Full') + .getByText(updatedSpouseDetails.familyName) + ).toBeVisible() + }) + + test('13.4.1.2 Change date of birth', async () => { + await page + .locator('#spouse-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#spouseBirthDate')).toBeTruthy() + + const birthDay = updatedSpouseDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.spouse.birthDate)) + + await expect( + page + .locator('#spouse-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedSpouseDetails.birthDate)) + ).toBeVisible() + }) + + test('13.4.1.3 Change nationality', async () => { + await page + .locator('#spouse-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedSpouseDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#spouse-content #Nationality') + .getByText(updatedSpouseDetails.nationality) + ).toBeVisible() + }) + + test('13.4.1.4 Change id type', async () => { + await page + .locator('#spouse-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#spouseIdType')).toBeTruthy() + + await page.locator('#spouseIdType').click() + await page.getByText(updatedSpouseDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#spouse-content #Type') + .getByText(updatedSpouseDetails.idType) + ).toBeVisible() + }) + + test('13.4.1.5 Change id', async () => { + await page + .locator('#spouse-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#spousePassport')).toBeTruthy() + + await page.locator('#spousePassport').fill(updatedSpouseDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #ID').getByText(updatedSpouseDetails.id) + ).toBeVisible() + }) + + test('13.4.1.6 Change usual place of residence', async () => { + await page + .locator('#spouse-content #Same') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect( + page.url().includes('#primaryAddressSameAsOtherPrimary') + ).toBeTruthy() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimarySpouse').click() + await page.getByText(updatedSpouseDetails.address.province).click() + + await page.locator('#districtPrimarySpouse').click() + await page.getByText(updatedSpouseDetails.address.district).click() + + await page + .locator('#cityPrimarySpouse') + .fill(updatedSpouseDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimarySpouse') + .fill(updatedSpouseDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimarySpouse') + .fill(updatedSpouseDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimarySpouse') + .fill(updatedSpouseDetails.address.number) + + await page + .locator('#postalCodePrimarySpouse') + .fill(updatedSpouseDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#spouse-content #Usual'), + { + ...declaration.spouse.address[0], + country: 'Farajaland', + state: 'Sulaka', + district: 'Zobwe' + }, + true + ) + + await expect( + page.locator('#spouse-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#spouse-content #Usual'), + updatedSpouseDetails.address + ) + }) + }) + // unskip when CHANGING_LOCATION_FROM_HEALT_FACILITY_TO_USUAL_ADDRESS_BUG_SOLVED = true + test.skip('13.4.2 Change place of death', async () => { + await page + .locator('#deathEvent-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on place of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#placeOfDeath')).toBeTruthy() + + await page.locator('#placeOfDeath').click() + await page + .getByText(updatedEventDetails.placeOfDeath, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place with strikethrough + * - show updated place + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Place').getByRole('deletion').nth(0) + ).toHaveText(declarationInput.event!.placeOfDeath!) + + await expect( + page + .locator('#deathEvent-content #Place') + .getByText(updatedEventDetails.placeOfDeath) + ).toBeVisible() + }) + }) + + test('13.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('13.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Requested to do so by the court (Judicial order)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('13.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + if (CHANGING_LOCATION_FROM_HEALT_FACILITY_TO_USUAL_ADDRESS_BUG_SOLVED) { + await expect( + page.getByText( + 'Place of death (Death event details)' + + declarationInput.event!.placeOfDeath! + + updatedEventDetails.placeOfDeath + ) + ).toBeVisible() + } + + await expect( + page.getByText( + 'Full name (Spouse details)' + + formatName(declaration.spouse.name[0]) + + formatName(updatedSpouseDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (Spouse details)' + + formatDateTo_ddMMMMyyyy(declaration.spouse.birthDate) + + formatDateTo_ddMMMMyyyy(updatedSpouseDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Spouse details)Farajaland' + + updatedSpouseDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Spouse details)National ID' + updatedSpouseDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Spouse details)-' + updatedSpouseDetails.id) + ).toBeVisible() + await expect( + page.getByText( + 'Usual place of residence (Spouse details)FarajalandSulakaZobwe-' + + declaration.spouse.address[0].city + + declaration.spouse.address[0].line[2] + + declaration.spouse.address[0].line[1] + + declaration.spouse.address[0].line[0] + + declaration.spouse.address[0].postalCode + + 'Farajaland' + + updatedSpouseDetails.address.province + + updatedSpouseDetails.address.district + + updatedSpouseDetails.address.town + + updatedSpouseDetails.address.residentialArea + + updatedSpouseDetails.address.street + + updatedSpouseDetails.address.number + + updatedSpouseDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + "Same as deceased's usual place of residence? (Spouse details)" + + 'Yes' + + 'No' + ) + ).toBeVisible() + + await expect(page.getByText('Cousin')).toBeVisible() + await expect(page.getByText('Verified')).toBeVisible() + await expect( + page.getByText('Requested to do so by the court (Judicial order)') + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('Yes').check() + await page.locator('#correctionFees\\.nestedFields\\.totalFees').fill('15') + + await uploadImage(page, page.locator('#upload_document')) + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + + /* + * Expected result: should open modal saying + * Correct record ? + * The informant will be notified of this correction and a record of this decision will be recorded + * Cancel button + * Confirm button + */ + + await expect(page.getByText('Correct record?')).toBeVisible() + await expect( + page.getByText( + 'The informant will be notified of this correction and a record of this decision will be recorded' + ) + ).toBeVisible() + + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Ready to print' }).click() + + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + test('13.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-14.spec.ts b/e2e/testcases/correction-death/correct-death-record-14.spec.ts new file mode 100644 index 0000000000..494032f76c --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-14.spec.ts @@ -0,0 +1,750 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + joinValuesWith, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { DeathDeclaration } from '../death/types' +import { createDeathDeclaration, fetchDeclaration } from '../death/helpers' +import { CREDENTIALS } from '../../constants' +import { random } from 'lodash' + +test.describe.serial(' Correct record - 14', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + const updatedDeceasedDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + gender: 'Female', + age: random(20, 45), + nationality: 'Canada', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Pualula', + district: 'Pili', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Married', + NOdependants: '3', + reason: 'Change of mind' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('14.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + const res = await createDeathDeclaration(token) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('k.mweene', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test('14.1 Certificate preview', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'No, make correction' }).click() + }) + + test('14.2 Correction requester: Court', async () => { + await page.getByLabel('Court').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('14.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * nothing + */ + + await page.getByRole('button', { name: 'Identity does not match' }).click() + + /* + * Expected result: should show modal with + * - Correct without proof of ID? + * - Please be aware that if you proceed, you will be responsible + * for making a change to this record without the necessary proof of identification + * - Confirm button + * - Cancel button + */ + await expect(page.getByText('Correct without proof of ID?')).toBeVisible() + await expect( + page.getByText( + 'Please be aware that if you proceed, you will be responsible for making a change to this record without the necessary proof of identification' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('14.4.2 Correction made on child details', async () => { + test('10.2.2.1 Change name', async () => { + await page + .locator('#deceased-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page + .locator('#firstNamesEng') + .fill(updatedDeceasedDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedDeceasedDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#deceased-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.deceased.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.deceased.name[0].familyName + ) + + await expect( + page + .locator('#deceased-content #Full') + .getByText(updatedDeceasedDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#deceased-content #Full') + .getByText(updatedDeceasedDetails.familyName) + ).toBeVisible() + }) + + test('10.2.2.2 Change gender', async () => { + await page + .locator('#deceased-content #Sex') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#gender')).toBeTruthy() + + await page.locator('#gender').click() + await page.getByText(updatedDeceasedDetails.gender).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Sex').getByRole('deletion') + ).toHaveText(declaration.deceased.gender, { ignoreCase: true }) + + await expect( + page + .locator('#deceased-content #Sex') + .getByText(updatedDeceasedDetails.gender) + ).toBeVisible() + }) + + test('10.2.2.3 Change age', async () => { + await page + .locator('#deceased-content #Age') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's age + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#ageOfIndividualInYears')).toBeTruthy() + + await page + .locator('#ageOfIndividualInYears') + .fill(updatedDeceasedDetails.age.toString()) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Age').getByRole('deletion') + ).toHaveText( + joinValuesWith( + [declaration.deceased.ageOfIndividualInYears, 'years'], + ' ' + ) + ) + + await expect( + page + .locator('#deceased-content #Age') + .getByText(joinValuesWith([updatedDeceasedDetails.age, 'years'], ' ')) + ).toBeVisible() + }) + + test('10.2.2.4 Change nationality', async () => { + await page + .locator('#deceased-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedDeceasedDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#deceased-content #Nationality') + .getByText(updatedDeceasedDetails.nationality) + ).toBeVisible() + }) + + test('10.2.2.5 Change id type', async () => { + await page + .locator('#deceased-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#deceasedIdType')).toBeTruthy() + + await page.locator('#deceasedIdType').click() + await page.getByText(updatedDeceasedDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#deceased-content #Type') + .getByText(updatedDeceasedDetails.idType) + ).toBeVisible() + }) + + test('10.2.2.6 Change id', async () => { + await page + .locator('#deceased-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#deceasedPassport')).toBeTruthy() + + await page.locator('#deceasedPassport').fill(updatedDeceasedDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#deceased-content #ID') + .getByText(updatedDeceasedDetails.id) + ).toBeVisible() + }) + + test('10.2.2.7 Change usual place of residence', async () => { + await page + .locator('#deceased-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryDeceased').click() + await page.getByText(updatedDeceasedDetails.address.province).click() + + await page.locator('#districtPrimaryDeceased').click() + await page.getByText(updatedDeceasedDetails.address.district).click() + + await page + .locator('#cityPrimaryDeceased') + .fill(updatedDeceasedDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.number) + + await page + .locator('#postalCodePrimaryDeceased') + .fill(updatedDeceasedDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#deceased-content #Usual'), + { + ...declaration.deceased.address[0], + country: 'Farajaland', + state: 'Sulaka', + district: 'Zobwe' + }, + true + ) + + await expect( + page.locator('#deceased-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#deceased-content #Usual'), + updatedDeceasedDetails.address + ) + }) + + test('10.2.2.8 Change marital status', async () => { + await page + .locator('#deceased-content #Marital') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#maritalStatus')).toBeTruthy() + + await page.locator('#maritalStatus').click() + await page.getByText(updatedDeceasedDetails.maritalStatus).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous marital status with strikethrough + * - show updated marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Marital').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#deceased-content #Marital') + .getByText(updatedDeceasedDetails.maritalStatus) + ).toBeVisible() + }) + + test('10.2.2.9 Change number of depandants', async () => { + await page + .getByRole('row', { name: 'No. of dependants' }) + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's number of depandants + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#numberOfDependants')).toBeTruthy() + + await page + .locator('#numberOfDependants') + .fill(updatedDeceasedDetails.NOdependants) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show new number of depandants + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .getByRole('row', { name: 'No. of dependants' }) + .getByText(updatedDeceasedDetails.NOdependants) + ).toBeVisible() + }) + }) + + test('14.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'I attest to seeing supporting documentation and have a copy filed at my office' + ) + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('14.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('Other').check() + await page + .locator('#type\\.nestedFields\\.otherReason') + .fill(updatedDeceasedDetails.reason) + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('14.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (Deceased)' + + formatName(declaration.deceased.name[0]) + + formatName(updatedDeceasedDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Deceased)' + + declaration.deceased.gender + + updatedDeceasedDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of deceased (Deceased)', + declaration.deceased.ageOfIndividualInYears, + updatedDeceasedDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Deceased)Farajaland' + updatedDeceasedDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Deceased)National ID' + updatedDeceasedDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Deceased)-' + updatedDeceasedDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Deceased)FarajalandSulakaZobwe-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Farajaland' + + updatedDeceasedDetails.address.province + + updatedDeceasedDetails.address.district + + updatedDeceasedDetails.address.town + + updatedDeceasedDetails.address.residentialArea + + updatedDeceasedDetails.address.street + + updatedDeceasedDetails.address.number + + updatedDeceasedDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Deceased)-' + updatedDeceasedDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'No. of dependants (Deceased)-' + updatedDeceasedDetails.NOdependants + ) + ).toBeVisible() + await expect(page.getByText('Court', { exact: true })).toBeVisible() + await expect(page.getByText(updatedDeceasedDetails.reason)).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(updatedDeceasedDetails)) + ).toBeVisible() + }) + test('14.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(updatedDeceasedDetails), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-15.spec.ts b/e2e/testcases/correction-death/correct-death-record-15.spec.ts new file mode 100644 index 0000000000..08c83b9e58 --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-15.spec.ts @@ -0,0 +1,648 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatDateTo_yyyyMMdd, + formatName, + getAction, + getLocationNameFromFhirId, + getToken, + goBackToReview, + login +} from '../../helpers' +import { format, parseISO, subDays } from 'date-fns' +import { DeathDeclaration } from '../death/types' +import { createDeathDeclaration, fetchDeclaration } from '../death/helpers' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 15', () => { + let declaration: DeathDeclaration + let trackingId = '' + let deathLocation = '' + + let page: Page + const updatedEventDetails = { + dateOfDeath: format( + subDays(new Date(), Math.ceil(20 * Math.random())), + 'yyyy-MM-dd' + ), + manner: 'Natural causes', + cause: { + established: true, + source: 'Physician' + }, + placeOfDeath: 'Estate Urban Health Centre' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('15.0 Shortcut declaration', async () => { + let token = await getToken('k.mweene', 'test') + + const res = await createDeathDeclaration(token, { + event: { + deathFacility: 'Itumbwe Health Post' + } + }) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('k.mweene', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + + deathLocation = + (await getLocationNameFromFhirId(declaration.eventLocation.id)) || + 'Not found' + }) + + test.describe('15.1 Print > Ready to issue', async () => { + test('15.1.1 print', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + test('15.1.2 Ready to issue', async () => { + await page.getByRole('button', { name: 'Ready to issue' }).click() + + /* + * Expected result: should + * - be navigated to ready to isssue tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/readyToIssue')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to issue' }).click() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + }) + test('15.1.3 Record audit', async () => { + await assignRecord(page) + /* + * Expected result: should show correct record button + */ + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + }) + + test('15.2 Correction requester: Informant (SPOUSE)', async () => { + await page.getByLabel('Informant (SPOUSE)').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('15.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * ID + * First Name + * Last Name + * Date of Birth + * Nationality + */ + await expect( + page.getByText( + `ID: National Id | ${declaration.informant.identifier[0].id}` + ) + ).toBeVisible() + await expect( + page.getByText( + `First name(s): ${declaration.informant.name[0].firstNames}` + ) + ).toBeVisible() + await expect( + page.getByText(`Last name: ${declaration.informant.name[0].familyName}`) + ).toBeVisible() + await expect( + page.getByText( + `Date of Birth: + ${formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)} + ` + ) + ).toBeVisible() + await expect( + page.getByText(`Nationality: ${declaration.informant.nationality}`) + ).toBeVisible() + + await page.getByRole('button', { name: 'Identity does not match' }).click() + + /* + * Expected result: should show modal with + * - Correct without proof of ID? + * - Please be aware that if you proceed, you will be responsible + * for making a change to this record without the necessary proof of identification + * - Confirm button + * - Cancel button + */ + await expect(page.getByText('Correct without proof of ID?')).toBeVisible() + await expect( + page.getByText( + 'Please be aware that if you proceed, you will be responsible for making a change to this record without the necessary proof of identification' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should navigate to review page + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('15.4 Correction made on event details', async () => { + test('15.4.1 Change date of death', async () => { + await page + .locator('#deathEvent-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to death event details page + * - focus on date of death + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#deathDate')).toBeTruthy() + + const date = updatedEventDetails.dateOfDeath.split('-') + + await page.getByPlaceholder('dd').fill(date[2]) + await page.getByPlaceholder('mm').fill(date[1]) + await page.getByPlaceholder('yyyy').fill(date[0]) + + await goBackToReview(page) + /* + * Expected result: should + * - redirect to review page + * - show previous date of death with strikethrough + * - show updated date of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Date').getByRole('deletion') + ).toHaveText( + formatDateTo_ddMMMMyyyy(declaration.deceased.deceased.deathDate) + ) + + await expect( + page + .locator('#deathEvent-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedEventDetails.dateOfDeath)) + ).toBeVisible() + }) + + test('15.4.2 Change manner of death', async () => { + await page + .locator('#deathEvent-content #Manner') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on manner of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#mannerOfDeath')).toBeTruthy() + + await page.locator('#mannerOfDeath').click() + await page.getByText(updatedEventDetails.manner, { exact: true }).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous manner with strikethrough + * - show updated manner + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Manner').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#deathEvent-content #Manner') + .getByText(updatedEventDetails.manner) + ).toBeVisible() + }) + + test('15.4.3 Change cause of death, source', async () => { + await page + .locator('#deathEvent-content #Cause') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on cause of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#causeOfDeathEstablished')).toBeTruthy() + + await page.getByLabel('Cause of death has been established').check() + + await page.locator('#causeOfDeathMethod').click() + await page + .getByText(updatedEventDetails.cause.source, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous cause with strikethrough + * - show previous source of cause with strikethrough + * - show updated cause + * - show updated source of cause + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Cause').getByRole('deletion') + ).toHaveText(declaration.causeOfDeathEstablished == 'true' ? 'Yes' : 'No') + + await expect( + page + .locator('#deathEvent-content #Cause') + .getByText(updatedEventDetails.cause.established ? 'Yes' : 'No') + ).toBeVisible() + + await expect( + page.locator('#deathEvent-content #Source').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#deathEvent-content #Source') + .getByText(updatedEventDetails.cause.source) + ).toBeVisible() + }) + + test('15.4.4 Change place of death', async () => { + await page + .locator('#deathEvent-content #Place') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deathEvent details page + * - focus on place of death + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('death-event-details')).toBeTruthy() + expect(page.url().includes('#placeOfDeath')).toBeTruthy() + + await page + .locator('#deathLocation') + .fill(updatedEventDetails.placeOfDeath.slice(0, 3)) + await page + .getByText(updatedEventDetails.placeOfDeath, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place with strikethrough + * - show updated place + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deathEvent-content #Place').getByRole('deletion').nth(1) + ).toHaveText(deathLocation, { + ignoreCase: true + }) + + await expect( + page + .locator('#deathEvent-content #Place') + .getByText('Health Institution' + updatedEventDetails.placeOfDeath) + ).toBeVisible() + }) + }) + + test('15.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('No supporting documents required').check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('15.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Myself or an agent made a mistake (Clerical error)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('15.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Date of death (Death event details)' + + format( + parseISO(declaration.deceased.deceased.deathDate), + 'dd MMMM yyyy' + ) + + formatDateTo_ddMMMMyyyy(updatedEventDetails.dateOfDeath) + ) + ).toBeVisible() + await expect( + page.getByText( + 'Manner of death (Death event details)-' + updatedEventDetails.manner + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Cause of death has been established (Death event details)' + + (declaration.causeOfDeathEstablished == 'true' ? 'Yes' : 'No') + + (updatedEventDetails.cause.established ? 'Yes' : 'No') + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Source of cause of death (Death event details)-' + + updatedEventDetails.cause.source + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of death (Death event details)' + + 'Health Institution' + + deathLocation + + 'Health Institution' + + updatedEventDetails.placeOfDeath + ) + ).toBeVisible() + + await expect( + page.getByText(formatName(declaration.informant.name[0])) + ).toBeVisible() + + await expect(page.getByText('Identity does not match')).toBeVisible() + + await expect( + page.getByText('Myself or an agent made a mistake (Clerical error)') + ).toBeVisible() + + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + test('15.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) + test('15.9 Validate record corrected modal', async () => { + const correctedRow = page.locator('#listTable-task-history #row_7') + await correctedRow.getByText('Record corrected').click() + + const time = await correctedRow.locator('span').nth(1).innerText() + + const correcter = await correctedRow.locator('span').nth(2).innerText() + + /* + * Expected result: Should show + * - Record corrected header + * - Correcter & time + * - Requested by + * - Id check + * - Reason + * - Comment + * - Original vs Correction + */ + + await expect( + page.getByRole('heading', { name: 'Record corrected' }) + ).toBeVisible() + + await expect(page.getByText(correcter + ' — ' + time)).toBeVisible() + + await expect( + page.getByText('Requested by' + 'Informant (Spouse)') + ).toBeVisible() + await expect( + page.getByText('ID check' + 'Identity does not match') + ).toBeVisible() + + await expect( + page.getByText( + 'Reason for request' + + 'Myself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + + await expect( + page.getByText('Comment' + declaration.registration.registrationNumber) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of death (Death event details)' + + format( + parseISO(declaration.deceased.deceased.deathDate), + 'yyyy-MM-dd' + ) + + formatDateTo_yyyyMMdd(updatedEventDetails.dateOfDeath) + ) + ).toBeVisible() + await expect( + page.getByText( + 'Manner of death (Death event details)' + updatedEventDetails.manner + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Cause of death has been established (Death event details)' + + declaration.causeOfDeathEstablished + + updatedEventDetails.cause.established + ) + ).toBeVisible() + + // await expect( + //@ToDo after feedback from qa, assert properly + // page.getByText( + // 'Cause of death has been established (Death event details)' + + // (declaration.causeOfDeathEstablished == 'true' ? 'Yes' : 'No') + + // (updatedEventDetails.cause.established ? 'Yes' : 'No') + // ) + // ).toBeVisible() + + await expect( + page.getByText( + 'Source of cause of death (Death event details)' + + updatedEventDetails.cause.source + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Health Institution (Death event details)' + + deathLocation + + updatedEventDetails.placeOfDeath + ) + ).toBeVisible() + + await page + .getByRole('heading', { name: 'Record corrected' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-16.spec.ts b/e2e/testcases/correction-death/correct-death-record-16.spec.ts new file mode 100644 index 0000000000..f91a507964 --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-16.spec.ts @@ -0,0 +1,701 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login, + uploadImage, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { format, subDays } from 'date-fns' +import { DeathDeclaration } from '../death/types' +import { createDeathDeclaration, fetchDeclaration } from '../death/helpers' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 16', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + const updatedInformantDetails = { + type: 'Son', + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + birthDate: format( + subDays(new Date(), Math.ceil(50 * Math.random() + 365 * 25)), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('16.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + + const res = await createDeathDeclaration(token) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('j.musonda', 'test') + + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test('16.1 Ready to print > record audit', async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + + test('16.2 Correction requester: Another registration agent or field agent', async () => { + await page.getByLabel('Another registration agent or field agent').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('16.3 Verify identity', async () => { + /* + * Expected result: + * - should not show verify identity + * - should directly navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('16.4 Correction made on informant details', async () => { + test('16.4.1 Change informant type', async () => { + await page + .locator('#informant-content #Informant') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantType')).toBeTruthy() + + await page.locator('#informantType').click() + await page + .getByText(updatedInformantDetails.type, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous type with strikethrough + * - show updated type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Informant').getByRole('deletion') + ).toHaveText(declaration.registration.informantType, { + ignoreCase: true + }) + + await expect( + page + .locator('#informant-content #Informant') + .getByText(updatedInformantDetails.type) + ).toBeVisible() + }) + + test('16.4.2 Change name', async () => { + await page + .locator('#informant-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + // expect(page.url().includes('#familyNameEng')).toBeTruthy() => this fails + + await page + .locator('#firstNamesEng') + .fill(updatedInformantDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedInformantDetails.familyName) + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#informant-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.informant.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.informant.name[0].familyName + ) + + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#informant-content #Full') + .getByText(updatedInformantDetails.familyName) + ).toBeVisible() + }) + + test('16.4.3 Change date of birth', async () => { + await page + .locator('#informant-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantBirthDate')).toBeTruthy() + + const birthDay = updatedInformantDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.informant.birthDate)) + + await expect( + page + .locator('#informant-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate)) + ).toBeVisible() + }) + + test('16.4.4 Change nationality', async () => { + await page + .locator('#informant-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedInformantDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#informant-content #Nationality') + .getByText(updatedInformantDetails.nationality) + ).toBeVisible() + }) + + test('16.4.5 Change id type', async () => { + await page + .locator('#informant-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantIdType')).toBeTruthy() + + await page.locator('#informantIdType').click() + await page.getByText(updatedInformantDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Type').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#informant-content #Type') + .getByText(updatedInformantDetails.idType) + ).toBeVisible() + }) + + test('16.4.6 Change id', async () => { + await page + .locator('#informant-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#informantPassport')).toBeTruthy() + + await page.locator('#informantPassport').fill(updatedInformantDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#informant-content #ID') + .getByText(updatedInformantDetails.id) + ).toBeVisible() + }) + + test('16.4.7 Change usual place of residence', async () => { + await page + .locator('#informant-content #Same') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on informant's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect( + page.url().includes('#primaryAddressSameAsOtherPrimary') + ).toBeTruthy() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.province).click() + + await page.locator('#districtPrimaryInformant').click() + await page.getByText(updatedInformantDetails.address.district).click() + + await page + .locator('#cityPrimaryInformant') + .fill(updatedInformantDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(updatedInformantDetails.address.number) + + await page + .locator('#postalCodePrimaryInformant') + .fill(updatedInformantDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#informant-content #Usual'), + updatedInformantDetails.address + ) + }) + + test('16.4.8 Change email', async () => { + await page + .locator('#informant-content #Email') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to informant's details page + * - focus on registration email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('informant-view-group')).toBeTruthy() + expect(page.url().includes('#registrationEmail')).toBeTruthy() + + await page + .locator('#registrationEmail') + .fill(updatedInformantDetails.email) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous email with strikethrough + * - show updated email + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#informant-content #Email').getByRole('deletion') + ).toHaveText(declaration.registration.contactEmail) + await expect( + page + .locator('#informant-content #Email') + .getByText(updatedInformantDetails.email) + ).toBeVisible() + }) + }) + + test('16.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('16.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Informant provided incorrect information (Material error)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('16.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Informant type (Informant)' + + declaration.registration.informantType + + updatedInformantDetails.type + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Full name (informant)' + + formatName(declaration.informant.name[0]) + + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (informant)' + + formatDateTo_ddMMMMyyyy(declaration.informant.birthDate) + + formatDateTo_ddMMMMyyyy(updatedInformantDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Informant)Farajaland' + + updatedInformantDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText('Type of ID (Informant)-' + updatedInformantDetails.idType) + ).toBeVisible() + await expect( + page.getByText('ID Number (Informant)-' + updatedInformantDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + "Same as deceased's usual place of residence? (Informant)" + + 'Yes' + + 'No' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Informant)FarajalandSulakaZobwe-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Farajaland' + + updatedInformantDetails.address.province + + updatedInformantDetails.address.district + + updatedInformantDetails.address.town + + updatedInformantDetails.address.residentialArea + + updatedInformantDetails.address.street + + updatedInformantDetails.address.number + + updatedInformantDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Email (Informant)' + + declaration.registration.contactEmail + + updatedInformantDetails.email + ) + ).toBeVisible() + + await expect( + page.getByText('Another registration agent or field agent', { + exact: true + }) + ).toBeVisible() + await expect( + page.getByText( + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('Yes').check() + await page.locator('#correctionFees\\.nestedFields\\.totalFees').fill('15') + + await uploadImage(page, page.locator('#upload_document')) + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + test('16.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-17.spec.ts b/e2e/testcases/correction-death/correct-death-record-17.spec.ts new file mode 100644 index 0000000000..555ecd0287 --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-17.spec.ts @@ -0,0 +1,593 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatDateTo_ddMMMMyyyy, + formatName, + getAction, + getToken, + goBackToReview, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { format, subDays } from 'date-fns' +import { DeathDeclaration } from '../death/types' +import { createDeathDeclaration, fetchDeclaration } from '../death/helpers' +import { CREDENTIALS } from '../../constants' + +test.describe.serial(' Correct record - 17', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + + const updatedSpouseDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + birthDate: format( + subDays(new Date(), Math.ceil(50 * Math.random() + 365 * 25)), + 'yyyy-MM-dd' + ), + email: faker.internet.email(), + nationality: 'Nauru', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + sameAsDeceased: false, + province: 'Pualula', + district: 'Ienge', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('17.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + + const res = await createDeathDeclaration(token) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('j.musonda', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test('17.1 Certificate preview', async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'No, make correction' }).click() + }) + + test('17.2 Correction requester: Me', async () => { + await page.getByLabel('Me', { exact: true }).check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('17.3 Verify identity', async () => { + /* + * Expected result: should directly navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('17.4 Correction made on spouse details', async () => { + test('17.4.1 Change name', async () => { + await page + .locator('#spouse-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page.locator('#firstNamesEng').fill(updatedSpouseDetails.firstNames) + await page.locator('#familyNameEng').fill(updatedSpouseDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#spouse-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText(declaration.spouse.name[0].firstNames) + await expect(oldData[1]).toHaveText(declaration.spouse.name[0].familyName) + + await expect( + page + .locator('#spouse-content #Full') + .getByText(updatedSpouseDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#spouse-content #Full') + .getByText(updatedSpouseDetails.familyName) + ).toBeVisible() + }) + + test('17.4.2 Change date of birth', async () => { + await page + .locator('#spouse-content #Date') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#spouseBirthDate')).toBeTruthy() + + const birthDay = updatedSpouseDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #Date').getByRole('deletion') + ).toHaveText(formatDateTo_ddMMMMyyyy(declaration.spouse.birthDate)) + + await expect( + page + .locator('#spouse-content #Date') + .getByText(formatDateTo_ddMMMMyyyy(updatedSpouseDetails.birthDate)) + ).toBeVisible() + }) + + test('17.4.3 Change nationality', async () => { + await page + .locator('#spouse-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedSpouseDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#spouse-content #Nationality') + .getByText(updatedSpouseDetails.nationality) + ).toBeVisible() + }) + + test('17.4.4 Change id type', async () => { + await page + .locator('#spouse-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#spouseIdType')).toBeTruthy() + + await page.locator('#spouseIdType').click() + await page.getByText(updatedSpouseDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#spouse-content #Type') + .getByText(updatedSpouseDetails.idType) + ).toBeVisible() + }) + + test('17.4.5 Change id', async () => { + await page + .locator('#spouse-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect(page.url().includes('#spousePassport')).toBeTruthy() + + await page.locator('#spousePassport').fill(updatedSpouseDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#spouse-content #ID').getByText(updatedSpouseDetails.id) + ).toBeVisible() + }) + + test('17.4.6 Change usual place of residence', async () => { + await page + .locator('#spouse-content #Same') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to spouse's details page + * - focus on spouse's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('spouse-view-group')).toBeTruthy() + expect( + page.url().includes('#primaryAddressSameAsOtherPrimary') + ).toBeTruthy() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimarySpouse').click() + await page.getByText(updatedSpouseDetails.address.province).click() + + await page.locator('#districtPrimarySpouse').click() + await page.getByText(updatedSpouseDetails.address.district).click() + + await page + .locator('#cityPrimarySpouse') + .fill(updatedSpouseDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimarySpouse') + .fill(updatedSpouseDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimarySpouse') + .fill(updatedSpouseDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimarySpouse') + .fill(updatedSpouseDetails.address.number) + + await page + .locator('#postalCodePrimarySpouse') + .fill(updatedSpouseDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#spouse-content #Usual'), + { + ...declaration.spouse.address[0], + country: 'Farajaland', + state: 'Sulaka', + district: 'Zobwe' + }, + true + ) + + await expect( + page.locator('#spouse-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expect( + page + .locator('#spouse-content #Usual') + .getByText(updatedSpouseDetails.address.province) + ).toBeVisible() + await expectAddress( + page.locator('#spouse-content #Usual'), + updatedSpouseDetails.address + ) + }) + }) + + test('17.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'I attest to seeing supporting documentation and have a copy filed at my office' + ) + .check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('17.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel( + 'Informant did not provide this information (Material omission)' + ) + .check() + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('17.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (Spouse details)' + + formatName(declaration.spouse.name[0]) + + formatName(updatedSpouseDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Date of birth (Spouse details)' + + formatDateTo_ddMMMMyyyy(declaration.spouse.birthDate) + + formatDateTo_ddMMMMyyyy(updatedSpouseDetails.birthDate) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Spouse details)Farajaland' + + updatedSpouseDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Spouse details)National ID' + updatedSpouseDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Spouse details)-' + updatedSpouseDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Spouse details)FarajalandSulakaZobwe-' + + declaration.spouse.address[0].city + + declaration.spouse.address[0].line[2] + + declaration.spouse.address[0].line[1] + + declaration.spouse.address[0].line[0] + + declaration.spouse.address[0].postalCode + + 'Farajaland' + + updatedSpouseDetails.address.province + + updatedSpouseDetails.address.district + + updatedSpouseDetails.address.town + + updatedSpouseDetails.address.residentialArea + + updatedSpouseDetails.address.street + + updatedSpouseDetails.address.number + + updatedSpouseDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + "Same as deceased's usual place of residence? (Spouse details)" + + 'Yes' + + 'No' + ) + ).toBeVisible() + + await expect(page.getByText('Me', { exact: true })).toBeVisible() + await expect( + page.getByText( + 'Informant did not provide this information (Material omission)' + ) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + }) + test('17.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/correction-death/correct-death-record-18.spec.ts b/e2e/testcases/correction-death/correct-death-record-18.spec.ts new file mode 100644 index 0000000000..c1bde122fb --- /dev/null +++ b/e2e/testcases/correction-death/correct-death-record-18.spec.ts @@ -0,0 +1,787 @@ +import { expect, test, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + createPIN, + expectAddress, + expectOutboxToBeEmpty, + formatName, + getAction, + getToken, + goBackToReview, + joinValuesWith, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { DeathDeclaration } from '../death/types' +import { createDeathDeclaration, fetchDeclaration } from '../death/helpers' +import { CREDENTIALS } from '../../constants' +import { random } from 'lodash' + +test.describe.serial(' Correct record - 18', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + const updatedDeceasedDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.firstName('female'), + gender: 'Female', + age: random(20, 45), + nationality: 'Canada', + id: faker.string.numeric(10), + idType: 'Passport', + address: { + province: 'Pualula', + district: 'Pili', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Married', + NOdependants: '3' + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('18.0 Shortcut declaration', async () => { + let token = await getToken('j.musonda', 'test') + + const res = await createDeathDeclaration(token) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + trackingId = res.trackingId + + token = await getToken('j.musonda', 'test') + declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + }) + + test.describe('18.1 Print > Ready to issue', async () => { + test('18.1.1 print', async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + test('18.1.2 Ready to issue', async () => { + await page.getByRole('button', { name: 'Ready to issue' }).click() + + /* + * Expected result: should + * - be navigated to ready to isssue tab + * - include the declaration in this tab + */ + expect(page.url().includes('registration-home/readyToIssue')).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to issue' }).click() + await expect( + page.getByText(formatName(declaration.deceased.name[0])).first() + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name[0]), + trackingId + }) + }) + test('18.1.3 Record audit', async () => { + await assignRecord(page) + /* + * Expected result: should show correct record button + */ + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Correct record').click() + }) + }) + + test('14.2 Correction requester: Court', async () => { + await page.getByLabel('Court').check() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('14.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * nothing + */ + + await page.getByRole('button', { name: 'Identity does not match' }).click() + + /* + * Expected result: should show modal with + * - Correct without proof of ID? + * - Please be aware that if you proceed, you will be responsible + * for making a change to this record without the necessary proof of identification + * - Confirm button + * - Cancel button + */ + await expect(page.getByText('Correct without proof of ID?')).toBeVisible() + await expect( + page.getByText( + 'Please be aware that if you proceed, you will be responsible for making a change to this record without the necessary proof of identification' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('14.4.2 Correction made on child details', async () => { + test('10.2.2.1 Change name', async () => { + await page + .locator('#deceased-content #Full') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#familyNameEng')).toBeTruthy() + + await page + .locator('#firstNamesEng') + .fill(updatedDeceasedDetails.firstNames) + await page + .locator('#familyNameEng') + .fill(updatedDeceasedDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + const oldData = await page + .locator('#deceased-content #Full') + .getByRole('deletion') + .all() + + await expect(oldData[0]).toHaveText( + declaration.deceased.name[0].firstNames + ) + await expect(oldData[1]).toHaveText( + declaration.deceased.name[0].familyName + ) + + await expect( + page + .locator('#deceased-content #Full') + .getByText(updatedDeceasedDetails.firstNames) + ).toBeVisible() + await expect( + page + .locator('#deceased-content #Full') + .getByText(updatedDeceasedDetails.familyName) + ).toBeVisible() + }) + + test('10.2.2.2 Change gender', async () => { + await page + .locator('#deceased-content #Sex') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#gender')).toBeTruthy() + + await page.locator('#gender').click() + await page.getByText(updatedDeceasedDetails.gender).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Sex').getByRole('deletion') + ).toHaveText(declaration.deceased.gender, { ignoreCase: true }) + + await expect( + page + .locator('#deceased-content #Sex') + .getByText(updatedDeceasedDetails.gender) + ).toBeVisible() + }) + + test('10.2.2.3 Change age', async () => { + await page + .locator('#deceased-content #Age') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's age + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#ageOfIndividualInYears')).toBeTruthy() + + await page + .locator('#ageOfIndividualInYears') + .fill(updatedDeceasedDetails.age.toString()) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Age').getByRole('deletion') + ).toHaveText( + joinValuesWith( + [declaration.deceased.ageOfIndividualInYears, 'years'], + ' ' + ) + ) + + await expect( + page + .locator('#deceased-content #Age') + .getByText(joinValuesWith([updatedDeceasedDetails.age, 'years'], ' ')) + ).toBeVisible() + }) + + test('10.2.2.4 Change nationality', async () => { + await page + .locator('#deceased-content #Nationality') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#nationality')).toBeTruthy() + + await page.locator('#nationality').click() + await page.getByText(updatedDeceasedDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Nationality').getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + page + .locator('#deceased-content #Nationality') + .getByText(updatedDeceasedDetails.nationality) + ).toBeVisible() + }) + + test('10.2.2.5 Change id type', async () => { + await page + .locator('#deceased-content #Type') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#deceasedIdType')).toBeTruthy() + + await page.locator('#deceasedIdType').click() + await page.getByText(updatedDeceasedDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Type').getByRole('deletion') + ).toHaveText('National ID') + + await expect( + page + .locator('#deceased-content #Type') + .getByText(updatedDeceasedDetails.idType) + ).toBeVisible() + }) + + test('10.2.2.6 Change id', async () => { + await page + .locator('#deceased-content #ID') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#deceasedPassport')).toBeTruthy() + + await page.locator('#deceasedPassport').fill(updatedDeceasedDetails.id) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .locator('#deceased-content #ID') + .getByText(updatedDeceasedDetails.id) + ).toBeVisible() + }) + + test('10.2.2.7 Change usual place of residence', async () => { + await page + .locator('#deceased-content #Usual') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#countryPrimary')).toBeTruthy() + + await page.locator('#statePrimaryDeceased').click() + await page.getByText(updatedDeceasedDetails.address.province).click() + + await page.locator('#districtPrimaryDeceased').click() + await page.getByText(updatedDeceasedDetails.address.district).click() + + await page + .locator('#cityPrimaryDeceased') + .fill(updatedDeceasedDetails.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryDeceased') + .fill(updatedDeceasedDetails.address.number) + + await page + .locator('#postalCodePrimaryDeceased') + .fill(updatedDeceasedDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expectAddress( + page.locator('#deceased-content #Usual'), + { + ...declaration.deceased.address[0], + country: 'Farajaland', + state: 'Sulaka', + district: 'Zobwe' + }, + true + ) + + await expect( + page.locator('#deceased-content #Usual').getByText('Farajaland') + ).toBeVisible() + await expectAddress( + page.locator('#deceased-content #Usual'), + updatedDeceasedDetails.address + ) + }) + + test('10.2.2.8 Change marital status', async () => { + await page + .locator('#deceased-content #Marital') + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#maritalStatus')).toBeTruthy() + + await page.locator('#maritalStatus').click() + await page.getByText(updatedDeceasedDetails.maritalStatus).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous marital status with strikethrough + * - show updated marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page.locator('#deceased-content #Marital').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .locator('#deceased-content #Marital') + .getByText(updatedDeceasedDetails.maritalStatus) + ).toBeVisible() + }) + + test('10.2.2.9 Change number of depandants', async () => { + await page + .getByRole('row', { name: 'No. of dependants' }) + .getByRole('button', { name: 'Change', exact: true }) + .click() + + /* + * Expected result: should + * - redirect to deceased's details page + * - focus on deceased's number of depandants + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('deceased-view-group')).toBeTruthy() + expect(page.url().includes('#numberOfDependants')).toBeTruthy() + + await page + .locator('#numberOfDependants') + .fill(updatedDeceasedDetails.NOdependants) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show new number of depandants + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .getByRole('row', { name: 'No. of dependants' }) + .getByText(updatedDeceasedDetails.NOdependants) + ).toBeVisible() + }) + }) + + test('18.5 Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('supportingDocuments')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page.getByLabel('No supporting documents required').check() + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('18.6 Reason for correction', async () => { + /* + * Expected result: should + * - navigate to reason for correction + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('reason')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + + await page + .getByLabel('Requested to do so by the court (Judicial order)') + .check() + + await page + .locator('#additionalComment') + .fill(declaration.registration.registrationNumber) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('18.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Make correction button is disabled + */ + expect(page.url().includes('summary')).toBeTruthy() + expect(page.url().includes('correction')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Make correction' }) + ).toBeDisabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + + await expect( + page.getByText( + 'Full name (Deceased)' + + formatName(declaration.deceased.name[0]) + + formatName(updatedDeceasedDetails) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Sex (Deceased)' + + declaration.deceased.gender + + updatedDeceasedDetails.gender + ) + ).toBeVisible() + + await expect( + page.getByText( + joinValuesWith( + [ + 'Age of deceased (Deceased)', + declaration.deceased.ageOfIndividualInYears, + updatedDeceasedDetails.age + ], + '' + ) + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Nationality (Deceased)Farajaland' + updatedDeceasedDetails.nationality + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Type of ID (Deceased)National ID' + updatedDeceasedDetails.idType + ) + ).toBeVisible() + await expect( + page.getByText('ID Number (Deceased)-' + updatedDeceasedDetails.id) + ).toBeVisible() + + await expect( + page.getByText( + 'Usual place of residence (Deceased)FarajalandSulakaZobwe-' + + declaration.deceased.address[0].city + + declaration.deceased.address[0].line[2] + + declaration.deceased.address[0].line[1] + + declaration.deceased.address[0].line[0] + + declaration.deceased.address[0].postalCode + + 'Farajaland' + + updatedDeceasedDetails.address.province + + updatedDeceasedDetails.address.district + + updatedDeceasedDetails.address.town + + updatedDeceasedDetails.address.residentialArea + + updatedDeceasedDetails.address.street + + updatedDeceasedDetails.address.number + + updatedDeceasedDetails.address.zipCode + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Marital status (Deceased)-' + updatedDeceasedDetails.maritalStatus + ) + ).toBeVisible() + + await expect( + page.getByText( + 'No. of dependants (Deceased)-' + updatedDeceasedDetails.NOdependants + ) + ).toBeVisible() + await expect(page.getByText('Court', { exact: true })).toBeVisible() + + await expect( + page.getByText('Requested to do so by the court (Judicial order)') + ).toBeVisible() + await expect( + page.getByText(declaration.registration.registrationNumber) + ).toBeVisible() + + await page.getByLabel('No').check() + + /* + * Expected result: should enable the Make correction button + */ + await page.getByRole('button', { name: 'Make correction' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the declaration in this tab + */ + + await expect( + page.getByText(formatName(updatedDeceasedDetails)) + ).toBeVisible() + }) + test('18.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatName(updatedDeceasedDetails), + trackingId + }) + await assignRecord(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/death/1-death-event-declaration.spec.ts b/e2e/testcases/death/1-death-event-declaration.spec.ts new file mode 100644 index 0000000000..f1b902cbda --- /dev/null +++ b/e2e/testcases/death/1-death-event-declaration.spec.ts @@ -0,0 +1,556 @@ +import { expect, test, type Page } from '@playwright/test' +import { createPIN, getToken, login } from '../../helpers' +import { createDeathDeclaration } from './helpers' +import { CREDENTIALS } from '../../constants' + +test.describe('1. Death event declaration', () => { + test.describe.serial('Fill all form sections. Save & Exit', () => { + let page: Page + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1. Navigate to the death event declaration page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await expect(page.getByText('New Declaration')).toBeVisible() + await expect(page.getByText('Event type')).toBeVisible() + }) + + test.describe('1.2. Validate event selection page', async () => { + test('1.2.1 Validate the contents of the event type page', async () => { + /* + * Expected result: should show + * - Radio buttons of the events + * - Continue button + * - Exit button + */ + await expect(page.getByLabel('Birth')).toBeVisible() + await expect(page.getByLabel('Death')).toBeVisible() + await expect(page.getByLabel('Marriage')).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Exit' })).toBeVisible() + }) + + test('1.2.2 Click the "Continue" button without selecting any event', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should throw an error as below: + * "Please select the type of event" + */ + await expect( + page.getByText('Please select the type of event') + ).toBeVisible() + }) + + test('1.2.3 Select the "Death" event and click "Continue" button', async () => { + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: User should navigate to the "Introduction" page + */ + }) + }) + + test.describe('1.3 Validate "Introduction" page', async () => { + test('1.3.1 Validate the contents of introduction page', async () => { + /* + * Expected result: should show + * - verbiage of death event introduction + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + // await expect(page.getByLabel('Continue')).toBeVisible() + await expect( + page.getByText( + 'Introduce the death registration process to the informant' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test('1.3.2 Verify the verbiage of introduction page of death event', async () => { + /* + * Expected result: should show + * - I am going to help you make a declaration of death. + * - As the legal Informant it is important that all the information provided by you is accurate. + * - Once the declaration is processed you will receive an email to tell you + * when to visit the office to collect the certificate - Take your ID with you. + * - Make sure you collect the certificate. A death certificate is critical to support with + * inheritance claims and to resolve the affairs of the deceased e.g. closing bank accounts and setting loans. + */ + await expect( + page.getByText('I am going to help you make a declaration of death.') + ).toBeVisible() + await expect( + page.getByText( + 'As the legal Informant it is important that all the information provided by you is accurate.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Once the declaration is processed you will receive an email to tell you when to visit the office to collect the certificate - Take your ID with you.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Make sure you collect the certificate. A death certificate is critical to support with inheritance claims and to resolve the affairs of the deceased e.g. closing bank accounts and setting loans.' + ) + ).toBeVisible() + }) + + test('1.3.3 Click the "continue" button', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should navigate to the "Deceased details" page + */ + await expect(page.getByText("Deceased's details")).toBeVisible() + }) + }) + + test.describe('1.4 Validate "Deceased Details" page', async () => { + test('1.4.1 Validate the contents of Deceased details page', async () => { + /* + * Expected result: should see + * - Deceased details block + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.4.2 Validate Deceased details block', async () => {}) + + test('1.4.3 Click "continue"', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to 'event details' page + */ + await expect(page.getByText('Event details')).toBeVisible() + }) + }) + + test.describe('1.5 Validate "Event Details" page', async () => { + test('1.5.1 Validate the contents of Event details page', async () => { + /* + * Expected result: should see + * - Event details block + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.5.2 Validate Event details block', async () => {}) + + test('1.5.3 Click "continue"', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to 'informant details' page + */ + await expect(page.getByText("Informant's details")).toBeVisible() + }) + }) + + test.describe('1.6 Validate "Informant details" page', async () => { + test('1.6.1 Validate the contents of informant details page', async () => { + /* + * Expected result: should see + * - Relationship to deceased dropdown + * - Phone number field + * - Email address field + * - Continue button + * - Exit button + * - Save &exit button + * - 3dot menu (delete option) + */ + await expect(page.getByText('Informant Type')).toBeVisible() + await expect(page.getByText('Phone number')).toBeVisible() + await expect(page.getByText('Email')).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.6.2 Click the "continue" button without selecting any relationship to deceased', async () => {}) + + test('1.6.3 Select eny option in relatinship to deceased and click the "continue" button', async () => { + await page.getByText('Select').click() + await page.getByText('Son', { exact: true }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "sposue details" page + */ + await expect( + page.getByText('Spouse details', { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.7 Validate "Spouse Details" page', async () => { + test('1.7.1 validate the contents of spouse details page', async () => { + /* + * Expected result: should see + * - Spouse details block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText('Spouse details', { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.7.2 Validate Spouse details block', async () => {}) + + test('1.7.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Supporting documents" page + */ + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.8 Validate "Supporting Document" page', async () => { + test('1.8.1 validate the contents of Supporting Document page', async () => { + /* + * Expected result: should see + * - Supporting Document block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#eventToggleMenu-dropdownMenu').click() + await expect( + page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.8.2 Validate Supporting Document block', async () => {}) + + test('1.8.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Review" page + */ + await expect( + page + .getByRole('button', { name: 'Send for review' }) + .or(page.getByRole('button', { name: 'Register' })) + ).toBeVisible() + }) + }) + + test.describe('1.9 Validate "Save & Exit" Button ', async () => { + test('1.9.1 Click the "Save & Exit" button from any page', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + + /* + * Expected result: should open modal with: + * - Title: Save & Exit + * - Helper text: All inputted data will be kept secure for future editing. + * Are you ready to save any changes to this declaration form? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeVisible() + await expect( + page.getByText( + 'All inputted data will be kept secure for future editing. Are you ready to save any changes to this declaration form?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Confirm' }) + ).toBeVisible() + }) + + test('1.9.2 Click Cancel', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeHidden() + }) + + test('1.9.3 Click Confirm', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to "my-drafts" tab + * - find the declared death event record on this page list with saved data + */ + await expect(page.locator('#content-name')).toHaveText('My drafts') + await expect(page.getByText(/seconds ago/)).toBeVisible() + }) + }) + }) + test.describe('1.10 Validate "Exit" Button', async () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Exit', exact: true }).click() + }) + + test('1.10.1 Click the "Exit" button from any page', async ({ page }) => { + /* + * Expected result: should open modal with: + * - Title: Exit without saving changes? + * - Helper text: You have unsaved changes on your declaration form. Are you sure you want to exit without saving? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeVisible() + await expect( + page.getByText( + 'You have unsaved changes on your declaration form. Are you sure you want to exit without saving?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.10.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.10.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + await page.waitForTimeout(500) // This page renders twice at first + + await expect( + page.locator('#content-name', { hasText: 'My drafts' }) + ).toBeVisible() + await expect(page.getByText(/seconds ago/)).toBeHidden() + }) + }) + + test.describe('1.11 Validate "Delete Declaration" Button ', async () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#eventToggleMenu-dropdownMenu').click() + await page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + .click() + }) + + test('1.11.1 Click the "Delete Declaration" button from any page', async ({ + page + }) => { + /* + * Expected result: should open modal with: + * - Title: Delete draft? + * - Helper text: Are you certain you want to delete this draft declaration form? Please note, this action cant be undone. + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Delete draft?' }) + ).toBeVisible() + await expect( + page.getByText( + 'Are you certain you want to delete this draft declaration form? Please note, this action cant be undone.' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.11.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.11.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + await page.waitForTimeout(500) // This page renders twice at first + + await expect( + page.locator('#content-name', { hasText: 'My drafts' }) + ).toBeVisible() + await expect(page.getByText(/seconds ago/)).toBeHidden() + }) + }) + + test.describe('1.12 Technical test for shortcuts', () => { + test('Shortcut for quickly creating declarations', async ({ page }) => { + const token = await getToken('k.mweene', 'test') + const res = await createDeathDeclaration(token) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + }) + }) +}) diff --git a/e2e/testcases/death/8-validate-declaration-review-page.spec.ts b/e2e/testcases/death/8-validate-declaration-review-page.spec.ts new file mode 100644 index 0000000000..cedb5db6c1 --- /dev/null +++ b/e2e/testcases/death/8-validate-declaration-review-page.spec.ts @@ -0,0 +1,1419 @@ +import { test, expect, type Page } from '@playwright/test' +import { + createPIN, + getRandomDate, + drawSignature, + goToSection, + login, + uploadImageToSection, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + continueForm, + expectOutboxToBeEmpty, + getAction, + assignRecord, + auditRecord, + formatName +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' + +test.describe.serial('8. Validate declaration review page', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(75, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + Country: 'Farajaland', + Province: 'Pualula', + District: 'Pili' + } + }, + event: { + date: getRandomDate(0, 20), + cause: { + established: false, + details: '' + }, + place: "Deceased's usual place of residence" + }, + informantType: 'Spouse', + informantEmail: faker.internet.email(), + spouse: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(50, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + sameAsDeceased: true + } + }, + comment: 'He was a good man' + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Field agent actions', async () => { + test.describe('8.1.0 Fill up death registration form', async () => { + test('8.1.0.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page + .getByText(declaration.deceased.gender, { exact: true }) + .click() + + await page + .getByPlaceholder('dd') + .fill(declaration.deceased.birthDate.dd) + await page + .getByPlaceholder('mm') + .fill(declaration.deceased.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.deceased.birthDate.yyyy) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page + .locator('#deceasedNationalId') + .fill(declaration.deceased.identifier.id) + + await page.locator('#statePrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.Province, { exact: true }) + .click() + await page.locator('#districtPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.District, { exact: true }) + .click() + await continueForm(page) + }) + + test('8.1.0.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place).click() + + await continueForm(page) + }) + + test('8.1.0.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#registrationEmail') + .fill(declaration.informantEmail) + + await continueForm(page) + }) + + test('8.1.0.4 Fill spouse details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.spouse.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.spouse.birthDate.yyyy) + + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { exact: true }) + .click() + + await page + .locator('#spouseNationalId') + .fill(declaration.spouse.identifier.id) + + await continueForm(page) + }) + }) + + test.describe('8.1.1 Navigate to declaration preview page', async () => { + test('8.1.1.1 Verify information added on previous pages', async () => { + await goToSection(page, 'preview') + + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Full'), + [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ] + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.deceased.birthDate)] + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Type'), + [declaration.deceased.identifier.type] + ) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Usual'), + [ + declaration.deceased.address.Country, + declaration.deceased.address.District, + declaration.deceased.address.Province + ] + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expect(page.locator('#deathEvent-content #Cause')).toContainText( + declaration.event.cause.established ? 'Yes' : 'No' + ) + await expect(page.locator('#deathEvent-content #Cause')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.spouse.birthDate) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + }) + + test.describe('8.1.2 Click any "Change" link', async () => { + test("8.1.2.1 Change deceased's name", async () => { + await page + .locator('#deceased-content #Full') + .getByText('Change') + .click() + declaration.deceased.name = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's name + */ + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.firstNames + ) + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.familyName + ) + }) + + test("8.1.2.2 Change deceased's gender", async () => { + await page.locator('#deceased-content #Sex').getByText('Change').click() + declaration.deceased.gender = 'Female' + await page.locator('#gender').click() + await page + .getByText(declaration.deceased.gender, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's gender + */ + await expect(page.locator('#deceased-content #Sex')).toContainText( + declaration.deceased.gender + ) + }) + + test("8.1.2.3 Change deceased's birthday", async () => { + await page + .locator('#deceased-content #Date') + .getByText('Change') + .click() + declaration.deceased.birthDate = getRandomDate(5, 200) + await page + .getByPlaceholder('dd') + .fill(declaration.deceased.birthDate.dd) + await page + .getByPlaceholder('mm') + .fill(declaration.deceased.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.deceased.birthDate.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's birthday + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.deceased.birthDate)] + ) + }) + + test("8.1.2.4 Change deceased's ID type", async () => { + await page + .locator('#deceased-content #Type') + .getByText('Change') + .click() + declaration.deceased.identifier.type = 'Passport' + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's ID type + */ + await expect(page.locator('#deceased-content #Type')).toContainText( + declaration.deceased.identifier.type + ) + }) + test("8.1.2.5 Change deceased's ID", async () => { + await page.locator('#deceased-content #ID').getByText('Change').click() + declaration.deceased.identifier.id = faker.string.numeric(10) + await page + .locator('#deceasedPassport') + .fill(declaration.deceased.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's ID + */ + await expect(page.locator('#deceased-content #ID')).toContainText( + declaration.deceased.identifier.id + ) + }) + + test("8.1.2.6 Change deceased's address", async () => { + await page + .locator('#deceased-content #Usual') + .getByText('Change') + .click() + declaration.deceased.address.Province = 'Sulaka' + declaration.deceased.address.District = 'Afue' + await page.locator('#statePrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.Province, { exact: true }) + .click() + await page.locator('#districtPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.District, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's address + */ + await expect(page.locator('#deceased-content #Usual')).toContainText( + declaration.deceased.address.District + ) + await expect(page.locator('#deceased-content #Usual')).toContainText( + declaration.deceased.address.Province + ) + }) + + test.skip('8.1.2.7 Change informant type', async () => { + await page + .locator('#informant-content #Informant') + .getByText('Change') + .click() + declaration.informantType = 'Father' + await page.waitForTimeout(500) + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant type + */ + await expect( + page.locator('#informant-content #Informant') + ).toContainText(declaration.informantType) + }) + + test('8.1.2.8 Change registration email', async () => { + await page + .locator('#informant-content #Email') + .getByText('Change') + .click() + declaration.informantEmail = faker.internet.email() + await page + .locator('#registrationEmail') + .fill(declaration.informantEmail) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change registration email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + }) + + test("8.1.2.9 Change spouse's name", async () => { + await page.locator('#spouse-content #Full').getByText('Change').click() + declaration.spouse.name.firstNames = faker.person.firstName('female') + declaration.spouse.name.familyName = faker.person.lastName('female') + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's name + */ + await expect(page.locator('#spouse-content #Full')).toContainText( + declaration.spouse.name.firstNames + ) + }) + test("8.1.2.10 Change spouse's birthday", async () => { + await page.locator('#spouse-content #Date').getByText('Change').click() + declaration.spouse.birthDate = getRandomDate(19, 200) + await page.getByPlaceholder('dd').fill(declaration.spouse.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.spouse.birthDate.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's birthday + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.spouse.birthDate) + ]) + }) + test("8.1.2.11 Change spouse's nationality", async () => { + await page + .locator('#spouse-content #Nationality') + .getByText('Change') + .click() + declaration.spouse.nationality = 'Holy See' + await page.locator('#nationality').click() + await page + .getByText(declaration.spouse.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's nationality + */ + await expect( + page.locator('#spouse-content #Nationality') + ).toContainText(declaration.spouse.nationality) + }) + test("8.1.2.12 Change spouse's ID type", async () => { + await page.locator('#spouse-content #Type').getByText('Change').click() + declaration.spouse.identifier.type = 'Passport' + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID type + */ + await expect(page.locator('#spouse-content #Type')).toContainText( + declaration.spouse.identifier.type + ) + }) + test("8.1.2.13 Change spouse's ID", async () => { + await page.locator('#spouse-content #ID').getByText('Change').click() + declaration.spouse.identifier.id = faker.string.numeric(10) + await page + .locator('#spousePassport') + .fill(declaration.spouse.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID + */ + await expect(page.locator('#spouse-content #ID')).toContainText( + declaration.spouse.identifier.id + ) + }) + }) + + test.describe('8.1.3 Validate supporting document', async () => { + test('8.1.3.0 Go to upload supporting document page', async () => { + await page + .locator('#document_section') + .getByRole('button', { name: 'Upload', exact: true }) + .click() + }) + + test('8.1.3.1 Upload proof for deceased', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForDeceased'), + sectionTitle, + buttonLocator: page.locator('button[name="uploadDocForDeceased"]') + }) + } + }) + + test('8.1.3.2 Upload proof for informant', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForInformant'), + sectionTitle, + buttonLocator: page.locator('button[name="uploadDocForInformant"]') + }) + } + }) + + test('8.1.3.3 Upload proof of death', async () => { + const imageUploadSectionTitles = [ + 'Attested letter of death', + 'Police certificate of death', + 'Hospital certificate of death', + "Coroner's report", + 'Certified copy of burial receipt', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForDeceasedDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="uploadDocForDeceasedDeath"]' + ) + }) + } + }) + + test('8.1.3.4 Go back to preview', async () => { + await page.getByRole('button', { name: 'Back to review' }).click() + }) + }) + test('8.1.4 Validate additional comments box', async () => { + await page.locator('#additional_comments').fill(declaration.comment) + }) + test.describe('8.1.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.1.6 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('8.1.7 Click send button', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + }) + + test('8.1.8 Confirm the declaration to send for review', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for review' }).click() + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.2 Registration agent actions', async () => { + test('8.2.1 Navigate to the declaration preview page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + test('8.2.1.1 Verify information added on previous pages', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.deceased.birthDate) + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.Country, + declaration.deceased.address.District, + declaration.deceased.address.Province + ]) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.spouse.birthDate) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + + /* + * Expected result: should show additional commetn + */ + await expect(page.locator('#additional_comments')).toContainText( + declaration.comment + ) + }) + + test.describe('8.2.2 Click any "Change" link', async () => { + test("8.2.2.1 Change deceased's name", async () => { + await page + .locator('#deceased-content #Full') + .getByText('Change') + .click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.name = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's name + */ + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.firstNames + ) + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.familyName + ) + }) + + test("8.2.2.2 Change deceased's gender", async () => { + await page.locator('#deceased-content #Sex').getByText('Change').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.deceased.gender = 'Male' + await page.locator('#gender').click() + await page + .getByText(declaration.deceased.gender, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's gender + */ + await expect(page.locator('#deceased-content #Sex')).toContainText( + declaration.deceased.gender + ) + }) + + test("8.2.2.3 Change deceased's birthday", async () => { + await page + .locator('#deceased-content #Date') + .getByText('Change') + .click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.birthDate = getRandomDate(5, 200) + await page + .getByPlaceholder('dd') + .fill(declaration.deceased.birthDate.dd) + await page + .getByPlaceholder('mm') + .fill(declaration.deceased.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.deceased.birthDate.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's birthday + */ + await expect(page.locator('#deceased-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.deceased.birthDate) + ) + }) + + test("8.2.2.4 Change deceased's ID type", async () => { + await page + .locator('#deceased-content #Type') + .getByText('Change') + .click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.identifier.type = 'Birth Registration Number' + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's ID type + */ + await expect(page.locator('#deceased-content #Type')).toContainText( + declaration.deceased.identifier.type + ) + }) + test("8.2.2.5 Change deceased's ID", async () => { + await page.locator('#deceased-content #ID').getByText('Change').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.deceased.identifier.id = faker.string.numeric(10) + await page + .locator('#deceasedBirthRegistrationNumber') + .fill(declaration.deceased.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's ID + */ + await expect(page.locator('#deceased-content #ID')).toContainText( + declaration.deceased.identifier.id + ) + }) + + test("8.2.2.6 Change deceased's address", async () => { + await page + .locator('#deceased-content #Usual') + .getByText('Change') + .click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.address.Province = 'Central' + declaration.deceased.address.District = 'Itambo' + await page.locator('#statePrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.Province, { exact: true }) + .click() + await page.locator('#districtPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.District, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's address + */ + await expect(page.locator('#deceased-content #Usual')).toContainText( + declaration.deceased.address.District + ) + await expect(page.locator('#deceased-content #Usual')).toContainText( + declaration.deceased.address.Province + ) + }) + + test.skip('8.2.2.7 Change informant type', async () => { + await page + .locator('#informant-content #Informant') + .getByText('Change') + .click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.informantType = 'Father' + await page.waitForTimeout(500) + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant type + */ + await expect( + page.locator('#informant-content #Informant') + ).toContainText(declaration.informantType) + }) + + test('8.2.2.8 Change registration email', async () => { + await page + .locator('#informant-content #Email') + .getByText('Change') + .click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.informantEmail = faker.internet.email() + await page + .locator('#registrationEmail') + .fill(declaration.informantEmail) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change registration email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + }) + + test("8.2.2.9 Change spouse's name", async () => { + await page.locator('#spouse-content #Full').getByText('Change').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.name.firstNames = faker.person.firstName('female') + declaration.spouse.name.familyName = faker.person.lastName('female') + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's name + */ + await expect(page.locator('#spouse-content #Full')).toContainText( + declaration.spouse.name.firstNames + ) + }) + test("8.2.2.10 Change spouse's birthday", async () => { + await page.locator('#spouse-content #Date').getByText('Change').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.birthDate = getRandomDate(19, 200) + await page.getByPlaceholder('dd').fill(declaration.spouse.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.spouse.birthDate.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's birthday + */ + await expect(page.locator('#spouse-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.spouse.birthDate) + ) + }) + test("8.2.2.11 Change spouse's nationality", async () => { + await page + .locator('#spouse-content #Nationality') + .getByText('Change') + .click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.spouse.nationality = 'Japan' + await page.locator('#nationality').click() + await page + .getByText(declaration.spouse.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's nationality + */ + await expect( + page.locator('#spouse-content #Nationality') + ).toContainText(declaration.spouse.nationality) + }) + test("8.2.2.12 Change spouse's ID type", async () => { + await page.locator('#spouse-content #Type').getByText('Change').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.identifier.type = 'Birth Registration Number' + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID type + */ + await expect(page.locator('#spouse-content #Type')).toContainText( + declaration.spouse.identifier.type + ) + }) + test("8.2.2.13 Change spouse's ID", async () => { + await page.locator('#spouse-content #ID').getByText('Change').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.identifier.id = faker.string.numeric(10) + await page + .locator('#spouseBirthRegistrationNumber') + .fill(declaration.spouse.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID + */ + await expect(page.locator('#spouse-content #ID')).toContainText( + declaration.spouse.identifier.id + ) + }) + }) + test.describe('8.2.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.2.6 Click send button', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + }) + + test('8.2.7 Confirm the declaration to send for approval', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Sent for approval' }).click() + + /* + * Expected result: The declaration should be in sent for approval + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.3 Local registrar actions', async () => { + test('8.3.1 Navigate to the declaration preview page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + test('8.3.1.1 Verify information added on previous pages', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.firstNames + ) + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.deceased.birthDate) + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.Country, + declaration.deceased.address.District, + declaration.deceased.address.Province + ]) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.spouse.birthDate) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + + /* + * Expected result: should show additional commetn + */ + await expect(page.locator('#additional_comments')).toContainText( + declaration.comment + ) + }) + + test.describe('8.3.2 Click any "Change" link', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.5 Validate the register button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.3.6 Click send button', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the death?')).toBeVisible() + }) + + test('8.3.7 Confirm the declaration to ready for print', async () => { + await page.locator('#submit_confirm').click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: The declaration should be in Ready to print + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/death/data/assets/528KB-random.png b/e2e/testcases/death/data/assets/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/e2e/testcases/death/data/assets/528KB-random.png differ diff --git a/e2e/testcases/death/declaration/death-declaration-1.spec.ts b/e2e/testcases/death/declaration/death-declaration-1.spec.ts new file mode 100644 index 0000000000..11c52af66d --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-1.spec.ts @@ -0,0 +1,703 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('1. Death declaration case - 1', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(75, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + maritalStatus: 'Single', + dependants: 3, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Zobwe', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Natural causes', + date: getRandomDate(0, 20), + cause: { + established: true, + source: 'Physician' + }, + place: "Deceased's usual place of residence" + }, + informantType: 'Spouse', + informantEmail: faker.internet.email(), + spouse: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(50, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + sameAsDeceased: true + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.deceased.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.deceased.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.deceased.birthDate.yyyy) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + await page + .locator('#deceasedNationalId') + .fill(declaration.deceased.identifier.id) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page + .locator('#numberOfDependants') + .fill(declaration.deceased.dependants.toString()) + + await page.locator('#statePrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + + await page + .locator('#cityPrimaryDeceased') + .fill(declaration.deceased.address.town) + await page + .locator('#addressLine1UrbanOptionPrimaryDeceased') + .fill(declaration.deceased.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimaryDeceased') + .fill(declaration.deceased.address.street) + await page + .locator('#addressLine3UrbanOptionPrimaryDeceased') + .fill(declaration.deceased.address.number) + await page + .locator('#postalCodePrimaryDeceased') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('1.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + page.getByLabel('Cause of death has been established').check() + + await page.locator('#causeOfDeathMethod').click() + await page + .getByText(declaration.event.cause.source, { exact: true }) + .click() + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await continueForm(page) + }) + + test('1.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test('1.1.4 Fill spouse details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.spouse.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.spouse.birthDate.yyyy) + + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { exact: true }) + .click() + + await page + .locator('#spouseNationalId') + .fill(declaration.spouse.identifier.id) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('1.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.deceased.birthDate) + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Number of Deceased's Dependants + */ + await expect(page.locator('#deceased-content')).toContainText( + 'No. of dependants' + declaration.deceased.dependants.toString() + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province, + declaration.deceased.address.town, + declaration.deceased.address.residentialArea, + declaration.deceased.address.street, + declaration.deceased.address.number, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expect(page.locator('#spouse-content #Full')).toContainText( + declaration.spouse.name.firstNames + ) + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.spouse.birthDate) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + + test('1.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('1.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('1.2 Declaration Review by RA', async () => { + test('1.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('1.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.firstNames + ) + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.deceased.birthDate) + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Number of Deceased's Dependants + * - Change button + */ + await expect(page.locator('#deceased-content')).toContainText( + 'No. of dependants' + declaration.deceased.dependants.toString() + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province, + declaration.deceased.address.town, + declaration.deceased.address.residentialArea, + declaration.deceased.address.street, + declaration.deceased.address.number, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's date of death + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.spouse.birthDate) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-10.spec.ts b/e2e/testcases/death/declaration/death-declaration-10.spec.ts new file mode 100644 index 0000000000..0a0bae3534 --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-10.spec.ts @@ -0,0 +1,438 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + getAction, + goToSection, + login +} from '../../../helpers' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('10. Death declaration case - 10', () => { + let page: Page + const REQUIRED = 'Required for registration' + const declaration = { + deceased: { + address: { + country: 'Farajaland', + province: 'Central', + district: 'Ibombo' + }, + nationality: 'Farajaland' + }, + informantType: 'Grandson' + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('10.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.1 Fill deceased details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.2 Fill event details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.4 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('10.1.5 Verify information on preview page', async () => { + /* + * Expected result: should require + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province + ]) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Must be a valid date of death' + ) + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [REQUIRED] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expect(page.locator('#informant-content #Email')).toContainText( + REQUIRED + ) + await expect(page.locator('#informant-content #Email')).toContainText( + 'Change' + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + ['Farajaland'] + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + + test('10.1.6 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('10.1.7 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + }) + }) + + test.describe('10.2 Declaration Review by RA', async () => { + test('10.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'In Progress' }).click() + await page.getByRole('button', { name: 'Field Agents' }).click() + + await expect(page.locator('#name_0')).toBeVisible() + const [firstButton] = await page + .getByRole('button', { + name: 'No name provided' + }) + .all() + await firstButton.click() + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Update declaration').click() + }) + + test('10.2.2 Verify information on review page', async () => { + /* + * Expected result: should require + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + REQUIRED, + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province + ]) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Must be a valid date of death' + ) + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [REQUIRED] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expect(page.locator('#informant-content #Email')).toContainText( + 'Must be a valid email address' + ) + await expect(page.locator('#informant-content #Email')).toContainText( + 'Change' + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + ['Farajaland'] + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-11.spec.ts b/e2e/testcases/death/declaration/death-declaration-11.spec.ts new file mode 100644 index 0000000000..8797b8a46f --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-11.spec.ts @@ -0,0 +1,1103 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('11. Death declaration case - 11', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Unknown', + age: 45, + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'Birth Registration Number' + }, + maritalStatus: 'Widowed', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Suicide', + date: getRandomDate(50, 60), + cause: { + established: true, + source: 'Verbal autopsy', + description: 'Hanging from ceiling' + }, + place: "Deceased's usual place of residence" + }, + informantType: 'Daughter', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 17, + birthDate: getRandomDate(16, 200), + nationality: 'Malawi', + identifier: { + id: faker.string.numeric(10), + type: 'Passport' + }, + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 42, + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'Birth Registration Number' + }, + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Rural', + village: faker.location.county() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('11.1 Declaratin started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('11.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page + .locator('#deceasedBirthRegistrationNumber') + .fill(declaration.deceased.identifier.id) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#countryPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryDeceased') + .fill(declaration.deceased.address.state) + await page + .locator('#internationalDistrictPrimaryDeceased') + .fill(declaration.deceased.address.district) + await page + .locator('#internationalCityPrimaryDeceased') + .fill(declaration.deceased.address.town) + await page + .locator('#internationalAddressLine1PrimaryDeceased') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryDeceased') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryDeceased') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryDeceased') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('11.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#reasonForLateRegistration').fill('Communication gap') + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + page.getByLabel('Cause of death has been established').check() + + await page.locator('#causeOfDeathMethod').click() + await page + .getByText(declaration.event.cause.source, { exact: true }) + .click() + await page + .locator('#deathDescription') + .fill(declaration.event.cause.description) + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await continueForm(page) + }) + + test('11.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informantPassport') + .fill(declaration.informant.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimaryInformant').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryInformant').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + + await page + .locator('#cityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.street) + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.number) + await page + .locator('#postalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test('11.1.4 Fill spouse details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.spouse.age.toString()) + + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { exact: true }) + .click() + + await page + .locator('#spouseBirthRegistrationNumber') + .fill(declaration.spouse.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimarySpouse').click() + await page + .getByText(declaration.spouse.address.province, { exact: true }) + .click() + await page.locator('#districtPrimarySpouse').click() + await page + .getByText(declaration.spouse.address.district, { exact: true }) + .click() + + await page.getByLabel('Rural').check() + + await page + .locator('#addressLine1RuralOptionPrimarySpouse') + .fill(declaration.spouse.address.village) + + await continueForm(page) + }) + + test('11.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('11.1.6 Verify informations in preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Description'), + [declaration.event.cause.description] + ) + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.province, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.residentialArea, + declaration.informant.address.street, + declaration.informant.address.number, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.district, + declaration.spouse.address.province, + declaration.spouse.address.village + ]) + }) + + test('11.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test.describe('11.1.8 Change informant details', async () => { + test("11.1.7.1 Change informant's name", async () => { + await page + .locator('#informant-content #Full') + .getByText('Change') + .click() + declaration.informant.name = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + } + expect(page.url().includes('informant')).toBeTruthy() + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant's name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + }) + test("11.1.7.2 Change informant's birthday", async () => { + await page + .locator('#informant-content #Age') + .getByText('Change') + .click() + + expect(page.url().includes('informant')).toBeTruthy() + await page.getByLabel('Exact date of birth unknown').uncheck() + await page + .getByPlaceholder('dd') + .fill(declaration.informant.birthDate.dd) + await page + .getByPlaceholder('mm') + .fill(declaration.informant.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.informant.birthDate.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant's birthday + */ + await expect(page.locator('#informant-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.informant.birthDate) + ) + }) + test("11.1.7.3 Change informant's ID type", async () => { + await page + .locator('#informant-content #Type') + .getByText('Change') + .click() + expect(page.url().includes('informant')).toBeTruthy() + declaration.informant.identifier.type = 'Birth Registration Number' + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant's ID type + */ + await expect(page.locator('#informant-content #Type')).toContainText( + declaration.informant.identifier.type + ) + }) + test("11.1.7.4 Change informant's ID", async () => { + await page.locator('#informant-content #ID').getByText('Change').click() + expect(page.url().includes('informant')).toBeTruthy() + declaration.informant.identifier.id = faker.string.numeric(10) + await page + .locator('#informantBirthRegistrationNumber') + .fill(declaration.informant.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant's ID + */ + await expect(page.locator('#informant-content #ID')).toContainText( + declaration.informant.identifier.id + ) + }) + test("11.1.7.5 Change informant's address", async () => { + await page + .locator('#informant-content #Usual') + .getByText('Change') + .click() + expect(page.url().includes('informant')).toBeTruthy() + declaration.informant.address = { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Sulaka', + district: 'Afue', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + await page.locator('#statePrimaryInformant').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryInformant').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + + await page + .locator('#cityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.street) + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.number) + await page + .locator('#postalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page, 'Back to review') + /* + * Expected result: should change informant's address + */ + await expectAddress( + page.locator('#deceased-content #Usual'), + declaration.deceased.address + ) + }) + test('11.1.7.8 Change registration email', async () => { + await page + .locator('#informant-content #Email') + .getByText('Change') + .click() + declaration.informantEmail = faker.internet.email() + await page + .locator('#registrationEmail') + .fill(declaration.informantEmail) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change registration email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + }) + }) + test('11.1.9 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('11.2 Declaration Review by RA', async () => { + test('11.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('11.2.2 Verify informations in review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Description'), + [declaration.event.cause.description] + ) + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.informant.birthDate) + ]) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.province, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.residentialArea, + declaration.informant.address.street, + declaration.informant.address.number, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.province, + declaration.spouse.address.district, + declaration.spouse.address.village + ]) + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-2.spec.ts b/e2e/testcases/death/declaration/death-declaration-2.spec.ts new file mode 100644 index 0000000000..2ee6936fbd --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-2.spec.ts @@ -0,0 +1,971 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('2. Death declaration case - 2', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + gender: 'Female', + age: 65, + nationality: 'Guernsey', + identifier: { + id: faker.string.numeric(10), + type: 'Passport' + }, + maritalStatus: 'Married', + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Zobwe', + urbanOrRural: 'Rural', + village: faker.location.county() + } + }, + event: { + manner: 'Accident', + date: getRandomDate(0, 20), + cause: { + established: true, + source: 'Lay reported', + description: "T'was an accident sire" + }, + place: "Deceased's usual place of residence" + }, + informantType: 'Son', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(50, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + sameAsDeceased: true + } + }, + spouse: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 68, + nationality: 'Canada', + identifier: { + id: faker.string.numeric(10), + type: 'Passport' + }, + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('2.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.deceased.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.deceased.nationality, { exact: true }) + .click() + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page + .locator('#deceasedPassport') + .fill(declaration.deceased.identifier.id) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#statePrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + + await page.getByLabel('Rural').check() + + await page + .locator('#addressLine1RuralOptionPrimaryDeceased') + .fill(declaration.deceased.address.village) + + await continueForm(page) + }) + + test('2.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + page.getByLabel('Cause of death has been established').check() + + await page.locator('#causeOfDeathMethod').click() + await page + .getByText(declaration.event.cause.source, { exact: true }) + .click() + await page + .locator('#deathDescription') + .fill(declaration.event.cause.description) + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await continueForm(page) + }) + + test('2.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.informant.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.informant.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.informant.birthDate.yyyy) + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informantNationalId') + .fill(declaration.informant.identifier.id) + + await continueForm(page) + }) + + test('2.1.4 Fill spouse details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.spouse.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.spouse.nationality, { exact: true }) + .click() + + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { exact: true }) + .click() + + await page + .locator('#spousePassport') + .fill(declaration.spouse.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimarySpouse').click() + await page + .getByText(declaration.spouse.address.province, { exact: true }) + .click() + await page.locator('#districtPrimarySpouse').click() + await page + .getByText(declaration.spouse.address.district, { exact: true }) + .click() + + await page + .locator('#cityPrimarySpouse') + .fill(declaration.spouse.address.town) + await page + .locator('#addressLine1UrbanOptionPrimarySpouse') + .fill(declaration.spouse.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimarySpouse') + .fill(declaration.spouse.address.street) + await page + .locator('#addressLine3UrbanOptionPrimarySpouse') + .fill(declaration.spouse.address.number) + await page + .locator('#postalCodePrimarySpouse') + .fill(declaration.spouse.address.postcodeOrZip) + + await continueForm(page) + }) + + test.describe('2.1.5 Upload supporting document', async () => { + test('2.1.5.0 Go To upload supporting document page', async () => { + await goToSection(page, 'documents') + }) + + test('2.1.5.1 Upload proof for deceased', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForDeceased'), + sectionTitle, + buttonLocator: page.locator('button[name="uploadDocForDeceased"]') + }) + } + }) + + test('2.1.5.2 Upload proof for informant', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForInformant'), + sectionTitle, + buttonLocator: page.locator('button[name="uploadDocForInformant"]') + }) + } + }) + + test('2.1.5.3 Upload proof of death', async () => { + const imageUploadSectionTitles = [ + 'Attested letter of death', + 'Police certificate of death', + 'Hospital certificate of death', + "Coroner's report", + 'Certified copy of burial receipt', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForDeceasedDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="uploadDocForDeceasedDeath"]' + ) + }) + } + }) + + test('2.1.5.4 Upload proof of cause of death', async () => { + const imageUploadSectionTitles = [ + 'Medically Certified Cause of Death', + 'Verbal autopsy report', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#uploadDocForCauseOfDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="uploadDocForCauseOfDeath"]' + ) + }) + } + }) + }) + + test('2.1.6 Verify information on preview page', async () => { + await goToSection(page, 'preview') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province, + declaration.deceased.address.village + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Description'), + [declaration.event.cause.description] + ) + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.informant.birthDate) + ]) + await expect(page.locator('#informant-content #Date')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expect(page.locator('#informant-content #Same')).toContainText( + 'Yes' + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.district, + declaration.spouse.address.province, + declaration.spouse.address.town, + declaration.spouse.address.residentialArea, + declaration.spouse.address.street, + declaration.spouse.address.number, + declaration.spouse.address.postcodeOrZip + ]) + }) + + test('2.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('2.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('2.2 Declaration Review by RA', async () => { + test('2.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('2.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province, + declaration.deceased.address.village + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Description'), + [declaration.event.cause.description] + ) + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.informant.birthDate) + ]) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expect(page.locator('#informant-content #Same')).toContainText( + 'Yes' + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.district, + declaration.spouse.address.province, + declaration.spouse.address.town, + declaration.spouse.address.residentialArea, + declaration.spouse.address.street, + declaration.spouse.address.number, + declaration.spouse.address.postcodeOrZip + ]) + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-3.spec.ts b/e2e/testcases/death/declaration/death-declaration-3.spec.ts new file mode 100644 index 0000000000..b51208d1b6 --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-3.spec.ts @@ -0,0 +1,944 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('3. Death declaration case - 3', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('male') + ' the 2nd', + familyName: faker.person.lastName('male') + }, + gender: 'Unknown', + age: 45, + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'Birth Registration Number' + }, + maritalStatus: 'Widowed', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Suicide', + date: getRandomDate(0, 20), + cause: { + established: true, + source: 'Verbal autopsy', + description: 'Hanging from ceiling' + }, + place: "Deceased's usual place of residence" + }, + informantType: 'Daughter', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + identifier: { + id: faker.string.numeric(10), + type: 'Passport' + }, + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 42, + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'Birth Registration Number' + }, + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Rural', + village: faker.location.county() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('3.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('3.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page + .locator('#deceasedBirthRegistrationNumber') + .fill(declaration.deceased.identifier.id) + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#countryPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryDeceased') + .fill(declaration.deceased.address.state) + await page + .locator('#internationalDistrictPrimaryDeceased') + .fill(declaration.deceased.address.district) + await page + .locator('#internationalCityPrimaryDeceased') + .fill(declaration.deceased.address.town) + await page + .locator('#internationalAddressLine1PrimaryDeceased') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryDeceased') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryDeceased') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryDeceased') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('3.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + page.getByLabel('Cause of death has been established').check() + + await page.locator('#causeOfDeathMethod').click() + await page + .getByText(declaration.event.cause.source, { exact: true }) + .click() + await page + .locator('#deathDescription') + .fill(declaration.event.cause.description) + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await continueForm(page) + }) + + test('3.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informantPassport') + .fill(declaration.informant.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimaryInformant').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryInformant').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + + await page + .locator('#cityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#addressLine1UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.residentialArea) + await page + .locator('#addressLine2UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.street) + await page + .locator('#addressLine3UrbanOptionPrimaryInformant') + .fill(declaration.informant.address.number) + await page + .locator('#postalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test('3.1.4 Fill spouse details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.spouse.age.toString()) + + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { exact: true }) + .click() + + await page + .locator('#spouseBirthRegistrationNumber') + .fill(declaration.spouse.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimarySpouse').click() + await page + .getByText(declaration.spouse.address.province, { exact: true }) + .click() + await page.locator('#districtPrimarySpouse').click() + await page + .getByText(declaration.spouse.address.district, { exact: true }) + .click() + + await page.getByLabel('Rural').check() + + await page + .locator('#addressLine1RuralOptionPrimarySpouse') + .fill(declaration.spouse.address.village) + + await continueForm(page) + }) + + test('3.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('3.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Description'), + [declaration.event.cause.description] + ) + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.province, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.residentialArea, + declaration.informant.address.street, + declaration.informant.address.number, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.district, + declaration.spouse.address.province, + declaration.spouse.address.village + ]) + }) + + test('3.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('3.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('3.2 Declaration Review by RA', async () => { + test('3.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('3.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#deceased-content #ID'), [ + declaration.deceased.identifier.id + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Description'), + [declaration.event.cause.description] + ) + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.province, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.residentialArea, + declaration.informant.address.street, + declaration.informant.address.number, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#spouse-content #ID'), [ + declaration.spouse.identifier.id + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.district, + declaration.spouse.address.province, + declaration.spouse.address.village + ]) + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-4.spec.ts b/e2e/testcases/death/declaration/death-declaration-4.spec.ts new file mode 100644 index 0000000000..0388df0dcb --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-4.spec.ts @@ -0,0 +1,925 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('4. Death declaration case - 4', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('female') + '_Nolas', + familyName: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + maritalStatus: 'Divorced', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Homicide', + date: getRandomDate(0, 20), + cause: { + established: true, + source: 'Medically Certified Cause of Death' + }, + place: 'Health Institution', + deathLocation: 'Railway GRZ Urban Health Centre' + }, + informantType: 'Son in law', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + identifier: { + id: faker.string.numeric(10), + type: 'Birth Registration Number' + }, + address: { + sameAsDeceased: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Rural', + village: faker.location.county() + } + }, + spouse: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 42, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + sameAsDeceased: false, + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('4.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#countryPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryDeceased') + .fill(declaration.deceased.address.state) + await page + .locator('#internationalDistrictPrimaryDeceased') + .fill(declaration.deceased.address.district) + await page + .locator('#internationalCityPrimaryDeceased') + .fill(declaration.deceased.address.town) + await page + .locator('#internationalAddressLine1PrimaryDeceased') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryDeceased') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryDeceased') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryDeceased') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('4.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + page.getByLabel('Cause of death has been established').check() + + await page.locator('#causeOfDeathMethod').click() + await page + .getByText(declaration.event.cause.source, { exact: true }) + .click() + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await page + .locator('#deathLocation') + .fill(declaration.event.deathLocation.slice(0, 3)) + + await page + .getByText(declaration.event.deathLocation, { exact: true }) + .click() + + await continueForm(page) + }) + + test('4.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informantBirthRegistrationNumber') + .fill(declaration.informant.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#statePrimaryInformant').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#districtPrimaryInformant').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + + await page.getByText('Rural', { exact: true }).click() + + await page + .locator('#addressLine1RuralOptionPrimaryInformant') + .fill(declaration.informant.address.village) + + await continueForm(page) + }) + + test('4.1.4 Fill spouse details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.spouse.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.spouse.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.spouse.age.toString()) + + await page.locator('#spouseIdType').click() + await page + .getByText(declaration.spouse.identifier.type, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#countryPrimarySpouse').click() + await page + .getByText(declaration.spouse.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimarySpouse') + .fill(declaration.spouse.address.state) + await page + .locator('#internationalDistrictPrimarySpouse') + .fill(declaration.spouse.address.district) + await page + .locator('#internationalCityPrimarySpouse') + .fill(declaration.spouse.address.town) + await page + .locator('#internationalAddressLine1PrimarySpouse') + .fill(declaration.spouse.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimarySpouse') + .fill(declaration.spouse.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimarySpouse') + .fill(declaration.spouse.address.addressLine3) + await page + .locator('#internationalPostalCodePrimarySpouse') + .fill(declaration.spouse.address.postcodeOrZip) + + await continueForm(page) + }) + + test('4.1.5 Upload supporting document', async () => { + await goToSection(page, 'documents') + + const imageUploadSections = [ + ['uploadDocForDeceased', 'Birth certificate'], + ['uploadDocForInformant', 'Other'], + ['uploadDocForDeceasedDeath', 'Police certificate of death'], + ['uploadDocForCauseOfDeath', 'Verbal autopsy report'] + ] + + for (const [locator, sectionTitle] of imageUploadSections) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#' + locator), + sectionTitle, + buttonLocator: page.locator(`button[name="${locator}"]`) + }) + } + }) + test('4.1.6 Verify information on preview page', async () => { + await goToSection(page, 'preview') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.place, declaration.event.deathLocation] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.province, + declaration.informant.address.district, + declaration.informant.address.village + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.district, + declaration.spouse.address.state, + declaration.spouse.address.town, + declaration.spouse.address.addressLine1, + declaration.spouse.address.addressLine2, + declaration.spouse.address.addressLine3, + declaration.spouse.address.postcodeOrZip + ]) + }) + + test('4.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('4.1.8 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for approval' }).click() + + /* + * Expected result: The declaration should be in sent for approval + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('4.2 Declaration Review by Local Registrar', async () => { + test('4.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('4.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['Yes'] + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Source'), + [declaration.event.cause.source] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expect(page.locator('#deathEvent-content #Place')).toContainText( + declaration.event.place + ) + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [declaration.event.deathLocation] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#informant-content #ID'), [ + declaration.informant.identifier.id + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.province, + declaration.informant.address.district, + declaration.informant.address.village + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + declaration.spouse.name.firstNames, + declaration.spouse.name.familyName + ]) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Age'), [ + joinValuesWith([declaration.spouse.age, 'years']) + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + [declaration.spouse.nationality] + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + declaration.spouse.identifier.type + ]) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Usual'), [ + declaration.spouse.address.country, + declaration.spouse.address.district, + declaration.spouse.address.state, + declaration.spouse.address.town, + declaration.spouse.address.addressLine1, + declaration.spouse.address.addressLine2, + declaration.spouse.address.addressLine3, + declaration.spouse.address.postcodeOrZip + ]) + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-5.spec.ts b/e2e/testcases/death/declaration/death-declaration-5.spec.ts new file mode 100644 index 0000000000..66b7d19cd7 --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-5.spec.ts @@ -0,0 +1,792 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('5. Death declaration case - 5', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('female') + '-Peter', + familyName: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + maritalStatus: 'Separated', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Manner undetermined', + date: getRandomDate(0, 20), + cause: { + established: false + }, + place: 'Other', + deathLocation: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + informantType: 'Daughter in law', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + identifier: { + type: 'None' + }, + address: { + sameAsDeceased: false, + country: 'Comoros', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + detailsAvailable: false, + reason: 'Spouse ran away' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('5.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('5.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#countryPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryDeceased') + .fill(declaration.deceased.address.state) + await page + .locator('#internationalDistrictPrimaryDeceased') + .fill(declaration.deceased.address.district) + await page + .locator('#internationalCityPrimaryDeceased') + .fill(declaration.deceased.address.town) + await page + .locator('#internationalAddressLine1PrimaryDeceased') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryDeceased') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryDeceased') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryDeceased') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('5.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await page.locator('#statePlaceofdeath').click() + await page + .getByText(declaration.event.deathLocation.province, { exact: true }) + .click() + await page.locator('#districtPlaceofdeath').click() + await page + .getByText(declaration.event.deathLocation.district, { exact: true }) + .click() + + await page + .locator('#cityPlaceofdeath') + .fill(declaration.event.deathLocation.town) + await page + .locator('#addressLine1UrbanOptionPlaceofdeath') + .fill(declaration.event.deathLocation.residentialArea) + await page + .locator('#addressLine2UrbanOptionPlaceofdeath') + .fill(declaration.event.deathLocation.street) + await page + .locator('#addressLine3UrbanOptionPlaceofdeath') + .fill(declaration.event.deathLocation.number) + await page + .locator('#postalCodePlaceofdeath') + .fill(declaration.event.deathLocation.postcodeOrZip) + + await continueForm(page) + }) + + test('5.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#countryPrimaryInformant').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryInformant') + .fill(declaration.informant.address.state) + await page + .locator('#internationalDistrictPrimaryInformant') + .fill(declaration.informant.address.district) + await page + .locator('#internationalCityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#internationalAddressLine1PrimaryInformant') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryInformant') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryInformant') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test('5.1.4 Fill spouse details', async () => { + await page.getByLabel("Spouse's details are not available").check() + + await page.locator('#reasonNotApplying').fill(declaration.spouse.reason) + + await continueForm(page) + }) + + test('5.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('5.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [ + declaration.event.place, + declaration.event.deathLocation.country, + declaration.event.deathLocation.province, + declaration.event.deathLocation.district, + declaration.event.deathLocation.town, + declaration.event.deathLocation.residentialArea, + declaration.event.deathLocation.street, + declaration.event.deathLocation.number, + declaration.event.deathLocation.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.state, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.addressLine1, + declaration.informant.address.addressLine2, + declaration.informant.address.addressLine3, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expect(page.locator('#spouse-content')).toContainText( + "Spouse's details are not availableYes" + ) + await expectTextWithChangeLink(page.locator('#spouse-content #Reason'), [ + declaration.spouse.reason + ]) + }) + + test('5.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('5.1.8 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for approval' }).click() + + /* + * Expected result: The declaration should be in sent for approval + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('5.2 Declaration Review by Local Registrar', async () => { + test('5.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.getByRole('button', { name: 'Ready for review' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('5.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [ + declaration.event.place, + declaration.event.deathLocation.country, + declaration.event.deathLocation.province, + declaration.event.deathLocation.district, + declaration.event.deathLocation.town, + declaration.event.deathLocation.residentialArea, + declaration.event.deathLocation.street, + declaration.event.deathLocation.number, + declaration.event.deathLocation.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.state, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.addressLine1, + declaration.informant.address.addressLine2, + declaration.informant.address.addressLine3, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expect(page.locator('#spouse-content')).toContainText( + "Spouse's details are not availableYes" + ) + await expectTextWithChangeLink(page.locator('#spouse-content #Reason'), [ + declaration.spouse.reason + ]) + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-6.spec.ts b/e2e/testcases/death/declaration/death-declaration-6.spec.ts new file mode 100644 index 0000000000..ad85efb1d7 --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-6.spec.ts @@ -0,0 +1,720 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('6. Death declaration case - 6', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('female') + " O'Nila", + familyName: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + maritalStatus: 'Not stated', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Manner undetermined', + date: getRandomDate(0, 20), + cause: { + established: false + }, + place: 'Other', + deathLocation: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + urbanOrRural: 'Rural', + village: faker.location.county() + } + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + identifier: { + type: 'None' + }, + address: { + sameAsDeceased: false, + country: 'Comoros', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + detailsAvailable: false, + reason: 'Spouse ran away' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('6.1 Declaration started by Local Registrar', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#countryPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryDeceased') + .fill(declaration.deceased.address.state) + await page + .locator('#internationalDistrictPrimaryDeceased') + .fill(declaration.deceased.address.district) + await page + .locator('#internationalCityPrimaryDeceased') + .fill(declaration.deceased.address.town) + await page + .locator('#internationalAddressLine1PrimaryDeceased') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryDeceased') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryDeceased') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryDeceased') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('6.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await page.locator('#statePlaceofdeath').click() + await page + .getByText(declaration.event.deathLocation.province, { exact: true }) + .click() + await page.locator('#districtPlaceofdeath').click() + await page + .getByText(declaration.event.deathLocation.district, { exact: true }) + .click() + + await page.getByLabel('Rural').check() + + await page + .locator('#addressLine1RuralOptionPlaceofdeath') + .fill(declaration.event.deathLocation.village) + + await continueForm(page) + }) + + test('6.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#countryPrimaryInformant').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryInformant') + .fill(declaration.informant.address.state) + await page + .locator('#internationalDistrictPrimaryInformant') + .fill(declaration.informant.address.district) + await page + .locator('#internationalCityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#internationalAddressLine1PrimaryInformant') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryInformant') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryInformant') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test('6.1.4 Fill spouse details', async () => { + await page.getByLabel("Spouse's details are not available").check() + + await page.locator('#reasonNotApplying').fill(declaration.spouse.reason) + + await continueForm(page) + }) + + test('6.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('6.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [ + declaration.event.place, + declaration.event.deathLocation.country, + declaration.event.deathLocation.province, + declaration.event.deathLocation.district, + declaration.event.deathLocation.village + ] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.state, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.addressLine1, + declaration.informant.address.addressLine2, + declaration.informant.address.addressLine3, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expect(page.locator('#spouse-content')).toContainText( + "Spouse's details are not availableYes" + ) + await expectTextWithChangeLink(page.locator('#spouse-content #Reason'), [ + declaration.spouse.reason + ]) + }) + + test('6.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('6.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the death?')).toBeVisible() + await page.locator('#submit_confirm').click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: The declaration should be in Ready to print + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('6.2 Declaration Review by Registration Agent', async () => { + test('6.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'Ready to print' }).click() + await page + .getByRole('button', { + name: formatName(declaration.deceased.name) + }) + .click() + await assignRecord(page) + // https://github.com/opencrvs/opencrvs-core/blob/f4eebcbaf0e9340783a22cbfb36bd547a3ad13f5/packages/workflow/src/records/handler/download.ts#L28-L80 + // Assumption is that the optimisation done above causes the test 6.2.2. fail intermittently since we are fetching before the actual changes are propagated to database. + await page.waitForTimeout(2500) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'View').click() + }) + + test('6.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + */ + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.firstNames + ) + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.familyName + ) + + /* + * Expected result: should include + * - Deceased's Gender + */ + await expect(page.locator('#deceased-content #Sex')).toContainText( + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + + /* + * Expected result: should include + * - Deceased's Nationality + */ + await expect( + page.locator('#deceased-content #Nationality') + ).toContainText(declaration.deceased.nationality) + + /* + * Expected result: should include + * - Deceased's Type of Id + */ + await expect(page.locator('#deceased-content #Type')).toContainText( + declaration.deceased.identifier.type + ) + + /* + * Expected result: should include + * - Deceased's marital status + */ + await expect(page.locator('#deceased-content #Marital')).toContainText( + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + */ + await expectAddress( + page.locator('#deceased-content #Usual'), + declaration.deceased.address + ) + /* + * Expected result: should include + * - Date of death + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.event.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + */ + await expect(page.locator('#deathEvent-content #Manner')).toContainText( + declaration.event.manner + ) + + /* + * Expected result: should include + * - Cause of death has been established + */ + await expect(page.locator('#deathEvent-content #Cause')).toContainText( + 'No' + ) + + /* + * Expected result: should include + * - Place of death + */ + await expect(page.locator('#deathEvent-content #Place')).toContainText( + declaration.event.place + ) + await expectAddress( + page.locator('#deathEvent-content #Place'), + declaration.event.deathLocation + ) + + /* + * Expected result: should include + * - Informant type + */ + await expect(page.locator('#informant-content #Informant')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - informant's age + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + + /* + * Expected result: should include + * - informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - informant's Type of Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + declaration.informant.identifier.type + ) + + /* + * Expected result: should include + * - informant's address + */ + await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + */ + await expect(page.locator('#spouse-content')).toContainText( + "Spouse's details are not availableYes" + ) + await expect(page.locator('#spouse-content #Reason')).toContainText( + declaration.spouse.reason + ) + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-7.spec.ts b/e2e/testcases/death/declaration/death-declaration-7.spec.ts new file mode 100644 index 0000000000..bbd4523fa7 --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-7.spec.ts @@ -0,0 +1,722 @@ +import { test, expect, type Page } from '@playwright/test' +import { + auditRecord, + continueForm, + createPIN, + drawSignature, + expectAddress, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + formatName, + getAction, + getRandomDate, + goToSection, + joinValuesWith, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('7. Death declaration case - 7', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + maritalStatus: 'Not stated', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Manner undetermined', + date: getRandomDate(0, 20), + cause: { + established: false + }, + place: 'Other', + deathLocation: { + country: 'Germany', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + informantType: 'Father', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + identifier: { + type: 'None' + }, + address: { + sameAsDeceased: false, + country: 'Comoros', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + detailsAvailable: false, + reason: 'Spouse ran away' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('7.1 Declaration started by National Registrar', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('7.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await page.locator('#gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceasedIdType').click() + await page + .getByText(declaration.deceased.identifier.type, { exact: true }) + .click() + + await page.locator('#maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#countryPrimaryDeceased').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryDeceased') + .fill(declaration.deceased.address.state) + await page + .locator('#internationalDistrictPrimaryDeceased') + .fill(declaration.deceased.address.district) + await page + .locator('#internationalCityPrimaryDeceased') + .fill(declaration.deceased.address.town) + await page + .locator('#internationalAddressLine1PrimaryDeceased') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryDeceased') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryDeceased') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryDeceased') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('7.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#mannerOfDeath').click() + await page.getByText(declaration.event.manner, { exact: true }).click() + + await page.locator('#placeOfDeath').click() + await page.getByText(declaration.event.place, { exact: true }).click() + + await page.locator('#countryPlaceofdeath').click() + await page + .getByText(declaration.event.deathLocation.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePlaceofdeath') + .fill(declaration.event.deathLocation.state) + await page + .locator('#internationalDistrictPlaceofdeath') + .fill(declaration.event.deathLocation.district) + await page + .locator('#internationalCityPlaceofdeath') + .fill(declaration.event.deathLocation.town) + await page + .locator('#internationalAddressLine1Placeofdeath') + .fill(declaration.event.deathLocation.addressLine1) + await page + .locator('#internationalAddressLine2Placeofdeath') + .fill(declaration.event.deathLocation.addressLine2) + await page + .locator('#internationalAddressLine3Placeofdeath') + .fill(declaration.event.deathLocation.addressLine3) + await page + .locator('#internationalPostalCodePlaceofdeath') + .fill(declaration.event.deathLocation.postcodeOrZip) + + await continueForm(page) + }) + + test('7.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await page + .locator('#firstNamesEng') + .fill(declaration.informant.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.informant.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#ageOfIndividualInYears') + .fill(declaration.informant.age.toString()) + + await page.locator('#nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informantIdType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#countryPrimaryInformant').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page + .locator('#internationalStatePrimaryInformant') + .fill(declaration.informant.address.state) + await page + .locator('#internationalDistrictPrimaryInformant') + .fill(declaration.informant.address.district) + await page + .locator('#internationalCityPrimaryInformant') + .fill(declaration.informant.address.town) + await page + .locator('#internationalAddressLine1PrimaryInformant') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#internationalAddressLine2PrimaryInformant') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#internationalAddressLine3PrimaryInformant') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#internationalPostalCodePrimaryInformant') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test('7.1.4 Fill spouse details', async () => { + await page.getByLabel("Spouse's details are not available").check() + + await page.locator('#reasonNotApplying').fill(declaration.spouse.reason) + + await continueForm(page) + }) + + test('7.1.5 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('7.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + declaration.deceased.gender + ]) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + await expect(page.locator('#deceased-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + declaration.deceased.identifier.type + ]) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Marital'), + [declaration.deceased.maritalStatus] + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.state, + declaration.deceased.address.town, + declaration.deceased.address.addressLine1, + declaration.deceased.address.addressLine2, + declaration.deceased.address.addressLine3, + declaration.deceased.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Manner'), + [declaration.event.manner] + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [ + declaration.event.place, + declaration.event.deathLocation.country, + declaration.event.deathLocation.state, + declaration.event.deathLocation.district, + declaration.event.deathLocation.town, + declaration.event.deathLocation.addressLine1, + declaration.event.deathLocation.addressLine2, + declaration.event.deathLocation.addressLine3, + declaration.event.deathLocation.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Full'), [ + declaration.informant.name.firstNames, + declaration.informant.name.familyName + ]) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + await expect(page.locator('#informant-content #Age')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Nationality'), + [declaration.informant.nationality] + ) + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#informant-content #Type'), [ + declaration.informant.identifier.type + ]) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Usual'), + [ + declaration.informant.address.country, + declaration.informant.address.state, + declaration.informant.address.district, + declaration.informant.address.town, + declaration.informant.address.addressLine1, + declaration.informant.address.addressLine2, + declaration.informant.address.addressLine3, + declaration.informant.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expect(page.locator('#spouse-content')).toContainText( + "Spouse's details are not availableYes" + ) + await expectTextWithChangeLink(page.locator('#spouse-content #Reason'), [ + declaration.spouse.reason + ]) + }) + + test('7.1.7 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('7.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the death?')).toBeVisible() + await page.locator('#submit_confirm').click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Ready to print' }).click() + + /* + * Expected result: The declaration should be in Ready to print + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + test('7.1.8 Verify information on view page', async () => { + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'View').click() + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + */ + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.firstNames + ) + await expect(page.locator('#deceased-content #Full')).toContainText( + declaration.deceased.name.familyName + ) + + /* + * Expected result: should include + * - Deceased's Gender + */ + await expect(page.locator('#deceased-content #Sex')).toContainText( + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + */ + await expect(page.locator('#deceased-content #Age')).toContainText( + joinValuesWith([declaration.deceased.age, 'years']) + ) + + /* + * Expected result: should include + * - Deceased's Nationality + */ + await expect( + page.locator('#deceased-content #Nationality') + ).toContainText(declaration.deceased.nationality) + + /* + * Expected result: should include + * - Deceased's Type of Id + */ + await expect(page.locator('#deceased-content #Type')).toContainText( + declaration.deceased.identifier.type + ) + + /* + * Expected result: should include + * - Deceased's marital status + */ + await expect(page.locator('#deceased-content #Marital')).toContainText( + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + */ + await expectAddress( + page.locator('#deceased-content #Usual'), + declaration.deceased.address + ) + + /* + * Expected result: should include + * - Date of death + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + formatDateObjectTo_ddMMMMyyyy(declaration.event.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + */ + await expect(page.locator('#deathEvent-content #Manner')).toContainText( + declaration.event.manner + ) + + /* + * Expected result: should include + * - Cause of death has been established + */ + await expect(page.locator('#deathEvent-content #Cause')).toContainText( + 'No' + ) + + /* + * Expected result: should include + * - Place of death + */ + await expect(page.locator('#deathEvent-content #Place')).toContainText( + declaration.event.place + ) + await expectAddress( + page.locator('#deathEvent-content #Place'), + declaration.event.deathLocation + ) + + // Bug: This should be visible but is not + // await expect(page.locator('#deathEvent-content #Place')).toContainText( + // declaration.event.deathLocation.postcodeOrZip + // ) + + /* + * Expected result: should include + * - Informant type + */ + await expect(page.locator('#informant-content #Informant')).toContainText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.firstNames + ) + await expect(page.locator('#informant-content #Full')).toContainText( + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - informant's age + */ + await expect(page.locator('#informant-content #Age')).toContainText( + joinValuesWith([declaration.informant.age, 'years']) + ) + + /* + * Expected result: should include + * - informant's Nationality + */ + await expect( + page.locator('#informant-content #Nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - informant's Type of Id + */ + await expect(page.locator('#informant-content #Type')).toContainText( + declaration.informant.identifier.type + ) + + /* + * Expected result: should include + * - informant's address + */ + await expectAddress( + page.locator('#informant-content #Usual'), + declaration.informant.address + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.locator('#informant-content #Email')).toContainText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + */ + await expect(page.locator('#spouse-content')).toContainText( + "Spouse's details are not availableYes" + ) + await expect(page.locator('#spouse-content #Reason')).toContainText( + declaration.spouse.reason + ) + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-8.spec.ts b/e2e/testcases/death/declaration/death-declaration-8.spec.ts new file mode 100644 index 0000000000..6444f0eb28 --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-8.spec.ts @@ -0,0 +1,469 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatName, + getAction, + goToSection, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('8. Death declaration case - 8', () => { + let page: Page + const require = 'Required for registration' + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + address: { + country: 'Farajaland', + province: 'Central', + district: 'Ibombo' + }, + nationality: 'Farajaland' + }, + informantType: 'Grandson' + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.deceased.name.familyName) + await continueForm(page) + }) + + test('8.1.2 Fill event details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.4 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('8.1.5 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + require + ]) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + require + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + require + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province + ]) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Must be a valid date of death' + ) + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [require] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expect(page.locator('#informant-content #Email')).toContainText( + require + ) + await expect(page.locator('#informant-content #Email')).toContainText( + 'Change' + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + require + ]) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + require + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + ['Farajaland'] + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + require + ]) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + + test('8.1.6 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('8.1.7 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.2 Declaration Review by RA', async () => { + test('8.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await page.getByRole('button', { name: 'In Progress' }).click() + await page.getByRole('button', { name: 'Field Agents' }).click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.deceased.name) + }) + ).toBeVisible() + + await auditRecord({ + page, + name: formatName(declaration.deceased.name) + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Update declaration').click() + }) + + test('8.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + declaration.deceased.name.familyName + ]) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + require + ]) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + require + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + require + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province + ]) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Must be a valid date of death' + ) + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [require] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expect(page.locator('#informant-content #Email')).toContainText( + 'Must be a valid email address' + ) + await expect(page.locator('#informant-content #Email')).toContainText( + 'Change' + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + require + ]) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + require + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + ['Farajaland'] + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + require + ]) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + }) +}) diff --git a/e2e/testcases/death/declaration/death-declaration-9.spec.ts b/e2e/testcases/death/declaration/death-declaration-9.spec.ts new file mode 100644 index 0000000000..f93c54fa48 --- /dev/null +++ b/e2e/testcases/death/declaration/death-declaration-9.spec.ts @@ -0,0 +1,468 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + createPIN, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + getAction, + goToSection, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('9. Death declaration case - 9', () => { + let page: Page + const REQUIRED = 'Required for registration' + const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('male') + }, + address: { + country: 'Farajaland', + province: 'Central', + district: 'Ibombo' + }, + nationality: 'Farajaland' + }, + informantType: 'Grandson' + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('9.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.1 Fill deceased details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.deceased.name.firstNames) + + await continueForm(page) + }) + + test('9.1.2 Fill event details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.3 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.4 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('9.1.5 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * * should require + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province + ]) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Must be a valid date of death' + ) + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [REQUIRED] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expect(page.locator('#informant-content #Email')).toContainText( + REQUIRED + ) + await expect(page.locator('#informant-content #Email')).toContainText( + 'Change' + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + ['Farajaland'] + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + + test('9.1.6 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign' }).click() + await drawSignature(page) + await page + .locator('#informantSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('9.1.7 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: `${declaration.deceased.name.firstNames}`, + exact: true + }) + ).toBeVisible() + }) + }) + + test.describe('9.2 Declaration Review by RA', async () => { + test('9.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + await page.getByRole('button', { name: 'In Progress' }).click() + await page.getByRole('button', { name: 'Field Agents' }).click() + + await expect( + page.getByRole('button', { + name: `${declaration.deceased.name.firstNames}` + }) + ).toBeVisible() + + await auditRecord({ + page, + name: `${declaration.deceased.name.firstNames}` + }) + + await assignRecord(page) + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Update declaration').click() + }) + + test('9.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * * should require + * - Deceased's Family Name + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Full'), [ + declaration.deceased.name.firstNames, + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Sex'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deceased-content #Nationality'), + [declaration.deceased.nationality] + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#deceased-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#deceased-content #Usual'), [ + declaration.deceased.address.country, + declaration.deceased.address.district, + declaration.deceased.address.province + ]) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Must be a valid date of death' + ) + await expect(page.locator('#deathEvent-content #Date')).toContainText( + 'Change' + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Cause'), + ['No'] + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#deathEvent-content #Place'), + [REQUIRED] + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expect(page.locator('#informant-content #Email')).toContainText( + 'Must be a valid email address' + ) + await expect(page.locator('#informant-content #Email')).toContainText( + 'Change' + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#spouse-content #Full'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Date'), [ + REQUIRED + ]) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#spouse-content #Nationality'), + ['Farajaland'] + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectTextWithChangeLink(page.locator('#spouse-content #Type'), [ + REQUIRED + ]) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expect(page.locator('#spouse-content #Same')).toContainText('Yes') + }) + }) +}) diff --git a/e2e/testcases/death/helpers.ts b/e2e/testcases/death/helpers.ts new file mode 100644 index 0000000000..ee1f1fdf18 --- /dev/null +++ b/e2e/testcases/death/helpers.ts @@ -0,0 +1,317 @@ +import { GATEWAY_HOST } from '../../constants' +import { DeathRegistrationInput } from '../../gateway' +import { faker } from '@faker-js/faker' + +import { readFileSync } from 'fs' +import { v4 as uuidv4 } from 'uuid' +import { join } from 'path' +import { + formatDateObjectTo_yyyyMMdd, + generateRandomSuffix, + getRandomDate +} from '../../helpers' +import { + CREATE_DEATH_REGISTRATION, + GET_DEATH_REGISTRATION_FOR_REVIEW +} from './queries' +import { random } from 'lodash' +import fetch from 'node-fetch' + +export type DeathDeclarationInput = { + deceased?: { + usual?: { + province: string + district: string + } + } + event?: { + date?: string + placeOfDeath?: + | 'Health Institution' + | "Deceased's usual place of residence" + | 'Other' + deathFacility?: string + } +} + +const declaration = { + deceased: { + name: { + firstNames: faker.person.firstName('male') + generateRandomSuffix(), + familyName: faker.person.lastName('male') + generateRandomSuffix() + }, + gender: 'male', + age: random(50, 100), + nationality: 'FAR', + identifier: { + type: 'NATIONAL_ID', + id: faker.string.numeric(10) + }, + address: { + country: 'FAR', + province: 'Sulaka', + district: 'Zobwe', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county() + generateRandomSuffix(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + event: { + manner: 'Natural causes', + date: getRandomDate(0, 20, 20), + cause: { + established: true, + source: 'Physician' + }, + place: "Deceased's usual place of residence" + }, + informantType: 'Spouse', + informantEmail: faker.internet.email(), + spouse: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(50, 200, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'NATIONAL_ID' + }, + address: { + sameAsDeceased: true + } + } +} + +async function getAllLocations( + type: 'ADMIN_STRUCTURE' | 'HEALTH_FACILITY' | 'CRVS_OFFICE' +) { + const locations = (await fetch( + `${GATEWAY_HOST}/location?type=${type}&_count=0` + ).then((res) => res.json())) as fhir.Bundle + return locations.entry!.map((entry) => entry.resource as fhir.Location) +} + +function getLocationIdByName(locations: fhir.Location[], name: string) { + const location = locations.find((location) => location.name === name) + if (!location?.id) { + throw new Error(`Location with name ${name} not found`) + } + return location.id +} + +export async function createDeathDeclaration( + token: string, + details: DeathDeclarationInput = {} +) { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const facilities = await getAllLocations('HEALTH_FACILITY') + + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: CREATE_DEATH_REGISTRATION, + variables: { + details: { + createdAt: new Date().toISOString(), + registration: { + status: [ + { + timestamp: new Date().toISOString(), + timeLoggedMS: 1031608 + } + ], + informantsSignature: + 'data:image/png;base64,' + + readFileSync( + join(__dirname, './data/assets/528KB-random.png') + ).toString('base64'), + informantType: declaration.informantType, + contactEmail: declaration.informantEmail, + draftId: uuidv4() + }, + causeOfDeath: 'NATURAL', + deceased: { + name: [ + { + use: 'en', + firstNames: declaration.deceased.name.firstNames, + familyName: declaration.deceased.name.familyName + } + ], + gender: declaration.deceased.gender as 'male', + ageOfIndividualInYears: declaration.deceased.age, + nationality: [declaration.deceased.nationality], + identifier: [ + { + type: declaration.deceased.identifier.type, + id: declaration.deceased.identifier.id + } + ], + address: [ + { + type: 'PRIMARY_ADDRESS', + line: formatAddressLine(declaration.deceased.address), + country: declaration.deceased.address.country, + state: getLocationIdByName( + locations, + declaration.deceased.address.province + ), + partOf: getLocationIdByName( + locations, + declaration.deceased.address.district + ), + district: getLocationIdByName( + locations, + declaration.deceased.address.district + ), + city: declaration.deceased.address.town, + postalCode: declaration.deceased.address.postcodeOrZip + } + ], + deceased: { + deathDate: + details.event?.date || + formatDateObjectTo_yyyyMMdd(declaration.event.date) + } + }, + eventLocation: + details.event?.placeOfDeath === 'Other' + ? {} + : details.event?.placeOfDeath === + "Deceased's usual place of residence" + ? { + type: 'DECEASED_USUAL_RESIDENCE', + address: { + type: 'PRIMARY_ADDRESS', + line: formatAddressLine(declaration.deceased.address), + country: declaration.deceased.address.country, + state: getLocationIdByName( + locations, + declaration.deceased.address.province + ), + partOf: getLocationIdByName( + locations, + declaration.deceased.address.district + ), + district: getLocationIdByName( + locations, + declaration.deceased.address.district + ), + city: declaration.deceased.address.town, + postalCode: declaration.deceased.address.postcodeOrZip + } + } + : { + _fhirID: getLocationIdByName( + facilities, + details.event?.deathFacility || 'Kalela Health Post' + ) + }, + informant: { relationship: 'SPOUSE' }, + questionnaire: [ + { + fieldId: 'death.deceased.deceased-view-group.deceasedIdType', + value: 'NATIONAL_ID' + }, + { + fieldId: 'death.spouse.spouse-view-group.spouseIdType', + value: 'NATIONAL_ID' + } + ], + causeOfDeathEstablished: 'false', + spouse: { + name: [ + { + use: 'en', + firstNames: declaration.spouse.name.firstNames, + familyName: declaration.spouse.name.familyName + } + ], + birthDate: formatDateObjectTo_yyyyMMdd( + declaration.spouse.birthDate + ), + nationality: ['FAR'], + identifier: [ + { + id: declaration.spouse.identifier.id, + type: declaration.spouse.identifier.type + } + ], + address: [ + { + type: 'PRIMARY_ADDRESS', + line: formatAddressLine(declaration.deceased.address), + country: declaration.deceased.address.country, + state: getLocationIdByName( + locations, + declaration.deceased.address.province + ), + partOf: getLocationIdByName( + locations, + declaration.deceased.address.district + ), + district: getLocationIdByName( + locations, + declaration.deceased.address.district + ), + city: declaration.deceased.address.town, + postalCode: declaration.deceased.address.postcodeOrZip + } + ] + } + } satisfies ConvertEnumsToStrings + } + }) + }) + return res.json().then((r) => r.data.createDeathRegistration) +} + +export const fetchDeclaration = async ( + token: string, + compositionId: string +) => { + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: GET_DEATH_REGISTRATION_FOR_REVIEW, + variables: { + id: compositionId + } + }) + }) + + return await res.json() +} + +type ConvertEnumsToStrings = T extends (infer U)[] + ? ConvertEnumsToStrings[] + : T extends string + ? `${T}` + : T extends object + ? { + [K in keyof T]: ConvertEnumsToStrings + } + : T + +const formatAddressLine = (address: typeof declaration.deceased.address) => [ + address.number, + address.street, + address.residentialArea, + '', + '', + 'URBAN', + ...new Array(9).fill('') +] diff --git a/e2e/testcases/death/queries.ts b/e2e/testcases/death/queries.ts new file mode 100644 index 0000000000..d994b913df --- /dev/null +++ b/e2e/testcases/death/queries.ts @@ -0,0 +1,423 @@ +import gql from 'graphql-tag' +import { print } from 'graphql/language/printer' + +export const CREATE_DEATH_REGISTRATION = print(gql` + mutation createDeathRegistration($details: DeathRegistrationInput!) { + createDeathRegistration(details: $details) { + trackingId + compositionId + isPotentiallyDuplicate + __typename + } + } +`) + +export const GET_DEATH_REGISTRATION_FOR_REVIEW = print(gql` + query fetchDeathRegistrationForReview($id: ID!) { + fetchDeathRegistration(id: $id) { + _fhirIDMap + id + deceased { + id + name { + use + firstNames + middleName + familyName + } + birthDate + age + ageOfIndividualInYears + exactDateOfBirthUnknown + gender + maritalStatus + occupation + nationality + identifier { + id + type + otherType + } + gender + deceased { + deathDate + } + address { + type + line + district + state + city + postalCode + country + } + } + informant { + id + relationship + otherRelationship + _fhirIDPatient + identifier { + id + type + otherType + } + name { + use + firstNames + middleName + familyName + } + nationality + occupation + birthDate + ageOfIndividualInYears + exactDateOfBirthUnknown + telecom { + system + value + } + address { + type + line + district + state + city + postalCode + country + } + } + father { + id + name { + use + firstNames + middleName + familyName + } + birthDate + maritalStatus + occupation + detailsExist + reasonNotApplying + ageOfIndividualInYears + exactDateOfBirthUnknown + dateOfMarriage + educationalAttainment + nationality + identifier { + id + type + otherType + fieldsModifiedByIdentity + } + address { + type + line + district + state + city + postalCode + country + } + telecom { + system + value + } + } + mother { + id + name { + use + firstNames + middleName + familyName + } + birthDate + maritalStatus + occupation + detailsExist + reasonNotApplying + ageOfIndividualInYears + exactDateOfBirthUnknown + dateOfMarriage + educationalAttainment + nationality + identifier { + id + type + otherType + fieldsModifiedByIdentity + } + address { + type + line + district + state + city + postalCode + country + } + telecom { + system + value + } + } + spouse { + id + name { + use + firstNames + middleName + familyName + } + birthDate + maritalStatus + occupation + detailsExist + reasonNotApplying + ageOfIndividualInYears + exactDateOfBirthUnknown + dateOfMarriage + educationalAttainment + nationality + identifier { + id + type + otherType + fieldsModifiedByIdentity + } + address { + type + line + district + state + city + postalCode + country + } + telecom { + system + value + } + } + medicalPractitioner { + name + qualification + lastVisitDate + } + registration { + id + contact + informantType + otherInformantType + contactRelationship + contactPhoneNumber + contactEmail + certificates { + hasShowedVerifiedDocument + certificateTemplateId + collector { + relationship + otherRelationship + name { + use + firstNames + familyName + } + telecom { + system + value + use + } + } + } + duplicates { + compositionId + trackingId + } + informantsSignature + attachments { + data + uri + type + contentType + subject + } + status { + comments { + comment + } + type + timestamp + office { + name + alias + address { + district + state + } + partOf + } + } + type + trackingId + registrationNumber + } + eventLocation { + id + type + address { + type + line + district + state + city + postalCode + country + } + } + questionnaire { + fieldId + value + } + mannerOfDeath + causeOfDeathEstablished + causeOfDeathMethod + causeOfDeath + deathDescription + maleDependentsOfDeceased + femaleDependentsOfDeceased + history { + documents { + id + data + uri + type + } + payment { + id + type + amount + outcome + date + attachmentURL + } + otherReason + requester + requesterOther + hasShowedVerifiedDocument + certificateTemplateId + noSupportingDocumentationRequired + date + action + regStatus + dhis2Notification + ipAddress + statusReason { + text + } + reason + location { + id + name + } + office { + id + name + alias + address { + state + district + } + } + system { + name + type + } + user { + id + role { + id + label { + id + defaultMessage + description + } + } + + name { + firstNames + familyName + use + } + avatar { + data + type + } + } + signature { + data + type + } + comments { + user { + id + username + avatar { + data + type + } + } + comment + createdAt + } + input { + valueCode + valueId + value + } + output { + valueCode + valueId + value + } + certificates { + hasShowedVerifiedDocument + certificateTemplateId + collector { + relationship + otherRelationship + name { + use + firstNames + familyName + } + telecom { + system + value + use + } + } + certifier { + name { + use + firstNames + familyName + } + role { + id + label { + id + defaultMessage + description + } + } + } + } + duplicateOf + potentialDuplicates + } + } + } +`) diff --git a/e2e/testcases/death/types.ts b/e2e/testcases/death/types.ts new file mode 100644 index 0000000000..0f765949c0 --- /dev/null +++ b/e2e/testcases/death/types.ts @@ -0,0 +1,175 @@ +export type DeathDeclaration = { + _fhirIDMap: { + composition: string + encounter: string + eventLocation: string + observation: { + causeOfDeathEstablished: string + causeOfDeath: string + } + questionnaireResponse: string + } + id: string + deceased: { + id: string + name: { + use: string + firstNames: string + middleName: string + familyName: string + }[] + birthDate: string + age: any | null + ageOfIndividualInYears: any | null + exactDateOfBirthUnknown: any | null + gender: string + maritalStatus: any | null + occupation: any | null + nationality: string[] + identifier: { id: string; type: string; otherType: any | null }[] + deceased: { deathDate: string } + address: { + type: string + line: string[] + district: string + state: string + city: string + postalCode: string + country: string + }[] + } + informant: { + id: string + relationship: string + otherRelationship: any | null + _fhirIDPatient: string + identifier: { id: string; type: string; otherType: any | null }[] + name: { + use: string + firstNames: string + middleName: string + familyName: string + }[] + nationality: string[] + occupation: any | null + birthDate: string + ageOfIndividualInYears: any | null + exactDateOfBirthUnknown: any | null + telecom: any | null + address: { + type: string + line: string[] + district: string + state: string + city: string + postalCode: string + country: string + }[] + } + father: any | null + mother: any | null + spouse: { + id: string + name: { + use: string + firstNames: string + middleName: string + familyName: string + }[] + birthDate: string + maritalStatus: any | null + occupation: any | null + detailsExist: boolean + reasonNotApplying: any | null + ageOfIndividualInYears: any | null + exactDateOfBirthUnknown: any | null + dateOfMarriage: any | null + educationalAttainment: any | null + nationality: string[] + identifier: { + id: string + type: string + otherType: any | null + fieldsModifiedByIdentity: any | null + }[] + address: { + type: string + line: string[] + district: string + state: string + city: string + postalCode: string + country: string + }[] + telecom: any | null + } + medicalPractitioner: any | null + registration: { + id: string + contact: any | null + informantType: string + otherInformantType: any | null + contactRelationship: any | null + contactPhoneNumber: any | null + contactEmail: string + duplicates: any | null + informantsSignature: string + informantsSignatureURI: string + attachments: any | null + status: { + comments: any | null + type: string + timestamp: string + office: { + name: string + alias: string[] + address: any | null + partOf: string + } + }[] + type: string + trackingId: string + registrationNumber: string + } + eventLocation: { id: string; type: string; address: any | null } + questionnaire: { fieldId: string; value: string }[] + mannerOfDeath: any | null + causeOfDeathEstablished: string + causeOfDeathMethod: any | null + causeOfDeath: string + deathDescription: any | null + maleDependentsOfDeceased: any | null + femaleDependentsOfDeceased: any | null + history: { + documents: any[] + payment: any | null + otherReason: string + requester: string + hasShowedVerifiedDocument: boolean + noSupportingDocumentationRequired: boolean + date: string + action: string | null + regStatus: string + dhis2Notification: boolean + ipAddress: any | null + statusReason: any | null + reason: any | null + location: { id: string; name: string } + office: { id: string; name: string; alias: string[]; address: any | null } + system: any | null + user: { + id: string + role: { _id: string; labels: { lang: string; label: string }[] } + systemRole: string + name: { firstNames: string; familyName: string; use: string }[] + avatar: any | null + } + signature: any | null + comments: any[] + input: any[] + output: any[] + certificates: any[] + duplicateOf: any | null + potentialDuplicates: any | null + }[] +} diff --git a/e2e/testcases/integrations/system-client.spec.ts b/e2e/testcases/integrations/system-client.spec.ts new file mode 100644 index 0000000000..4435273dd8 --- /dev/null +++ b/e2e/testcases/integrations/system-client.spec.ts @@ -0,0 +1,247 @@ +import { faker } from '@faker-js/faker' +import { test, type Page, expect } from '@playwright/test' +import { CREDENTIALS, GATEWAY_HOST } from '../../constants' +import { createPIN, getClientToken, getToken, login } from '../../helpers' +import { ConvertEnumsToStrings, createDeclaration } from '../birth/helpers' +import { BirthInputDetails } from '../birth/types' +import { + eventNotificationPayload, + fetchEvents, + getLocationById, + getOffices, + getTokenForSystemClient +} from './utils' + +test.describe.serial('Record Search System Client Tests', () => { + let page: Page + let token: { + clientId: string + secret: string + sha: string + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await login( + page, + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.USERNAME, + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.PASSWORD + ) + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Create a Record Search System client', async () => { + await expect( + page.getByText('Organisation', { exact: true }).first() + ).toBeVisible() + await page.getByText('Configuration', { exact: true }).click() + await page.getByText('Integrations', { exact: true }).click() + await page.getByText('Create client', { exact: true }).click() + await page.locator('#client_name').fill('Record search ' + Date.now()) + await page.locator('#permissions-selectors').click() + await page.getByText('Record search', { exact: true }).last().click() + await page.getByText('Create', { exact: true }).click() + await expect(page.getByText('Client ID', { exact: true })).toBeVisible() + + await page.waitForSelector('#Spinner', { state: 'detached' }) + + const clientId = await page + .getByText('Client ID', { exact: true }) + .locator('..') + .locator(':nth-child(2) :first-child') + .first() + .textContent() + const secret = await page + .getByText('Client secret', { exact: true }) + .locator('..') + .locator(':nth-child(2) :first-child') + .first() + .textContent() + const sha = await page + .getByText('SHA secret', { exact: true }) + .locator('..') + .locator(':nth-child(2) :first-child') + .first() + .textContent() + + if (!clientId || !secret || !sha) { + throw new Error('Client ID, secret or SHA secret not found') + } + + token = { + clientId, + secret, + sha + } + + await page.locator('#close-btn').click() + }) + + test('Search for a record', async () => { + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male' + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const registrarToken = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const createdDeclaration = await createDeclaration( + registrarToken, + declarationInput + ) + + const systemToken = await getTokenForSystemClient( + token.clientId, + token.secret + ) + + const events = await fetchEvents( + createdDeclaration.trackingId, + systemToken.access_token + ) + expect(events.data.searchEvents.totalItems).toBe(1) + }) +}) + +test.describe.serial('Event Notification System Client Tests', () => { + let page: Page + let token: { + clientId: string + secret: string + sha: string + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await login( + page, + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.USERNAME, + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.PASSWORD + ) + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Create an event notification System client', async () => { + await page.getByRole('button', { name: 'Organisation' }).click() + await page.getByRole('button', { name: 'Configuration' }).click() + await page.getByRole('button', { name: 'Integrations' }).click() + await page.getByRole('button', { name: 'Create client' }).click() + + await page.locator('#client_name').fill('Event not ' + Date.now()) + await page.locator('#permissions-selectors').click() + await page.getByText('Event notification', { exact: true }).last().click() + await page.getByText('Create', { exact: true }).click() + await expect(page.getByText('Client ID', { exact: true })).toBeVisible() + + await page.waitForSelector('#Spinner', { state: 'detached' }) + + const clientId = await page + .getByText('Client ID', { exact: true }) + .locator('..') + .locator(':nth-child(2) :first-child') + .first() + .textContent() + const secret = await page + .getByText('Client secret', { exact: true }) + .locator('..') + .locator(':nth-child(2) :first-child') + .first() + .textContent() + const sha = await page + .getByText('SHA secret', { exact: true }) + .locator('..') + .locator(':nth-child(2) :first-child') + .first() + .textContent() + + if (!clientId || !secret || !sha) { + throw new Error('Client ID, secret or SHA secret not found') + } + + token = { + clientId, + secret, + sha + } + + await page.locator('#close-btn').click() + }) + + test('Send event notification', async () => { + const clientToken = await getClientToken(token.clientId, token.secret) + + // get facilities + const resCRVFacilities = await fetch( + `${GATEWAY_HOST}/location?type=HEALTH_FACILITY&_count=0&status=active` + ) + + const facilityList = await resCRVFacilities.json() + + const facilities = facilityList?.entry + const facility = facilities[0] + + const facilityPartOf = facility.resource.partOf.reference + + // get districtId using facility partOf as the fhirId + const foundDistrict = await getLocationById(facilityPartOf.split('/')[1]) + // const districtPartOf = foundDistrict.partOf.reference.split('/')[1] + + // check for the office + const offices = await getOffices() + const officeId = offices.filter( + (office: any) => + office.resource.partOf.reference === `Location/${foundDistrict.id}` + )[0].resource.id + + // get stateId using district partOf as fhirId + const foundState = await getLocationById( + foundDistrict.partOf.reference.split('/')[1] + ) + + const response: any = await fetch(`${GATEWAY_HOST}/notification`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${clientToken}`, + 'x-correlation-id': `birth-notification-${faker.person.lastName}` + }, + body: JSON.stringify( + eventNotificationPayload( + officeId, + foundDistrict.id, + foundState.id, + facility.resource.id + ) + ) + }) + + const status = response?.status + + expect(status).toBe(200) + }) +}) diff --git a/e2e/testcases/integrations/utils.ts b/e2e/testcases/integrations/utils.ts new file mode 100644 index 0000000000..8652eddc15 --- /dev/null +++ b/e2e/testcases/integrations/utils.ts @@ -0,0 +1,414 @@ +import { AUTH_URL, GATEWAY_HOST } from '../../constants' +import fetch from 'node-fetch' + +export async function getTokenForSystemClient( + clientId: string, + clientSecret: string +) { + const authenticateResponse = await fetch( + `${AUTH_URL}/token?client_id=${clientId}&client_secret=${clientSecret}&grant_type=client_credentials`, + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'x-correlation-id': clientId + '-' + Date.now() + } + } + ) + const res = await authenticateResponse.json() + return res as { access_token: string } +} + +export async function fetchEvents(trackingId: string, token: string) { + const query = ` + query SearchEvents( + $advancedSearchParameters: AdvancedSearchParametersInput! + ) { + searchEvents( + advancedSearchParameters: $advancedSearchParameters + ) { + totalItems + } + } + ` + + const variables = { + advancedSearchParameters: { + trackingId + } + } + + const response = await fetch(GATEWAY_HOST + '/graphql', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: 'Bearer ' + token + }, + body: JSON.stringify({ query, variables }) + }) + + const data = await response.json() + return data as { data: { searchEvents: { totalItems: number } } } +} + +export async function getLocationById(fhirId: string) { + const url = `${GATEWAY_HOST}/location/${fhirId}` + + const res = await fetch(url, { + method: 'GET' + }) + + const response = await res.json() + return response +} + +export async function getOffices() { + const resCRVSOffices = await fetch( + `${GATEWAY_HOST}/location?type=CRVS_OFFICE&_count=0&status=active` + ) + + const officeList = await resCRVSOffices.json() + return officeList?.entry +} + +export const eventNotificationPayload = ( + officeId: string, + districtId: string, + stateId: string, + facilityId: string +) => ({ + resourceType: 'Bundle', + type: 'document', + meta: { + lastUpdated: '2022-08-14T14:43:47.000Z' + }, + entry: [ + { + fullUrl: 'urn:uuid:37dd8e55-69c0-493d-b1a0-b7462a1d806a', + resource: { + identifier: { + system: 'urn:ietf:rfc:3986', + value: '8f793c5a-3d53-4c9b-898b-1c04759716c6' + }, + resourceType: 'Composition', + status: 'final', + type: { + coding: [ + { + system: 'http://opencrvs.org/doc-types', + code: 'birth-notification' + } + ], + text: 'Birth Notification' + }, + class: { + coding: [ + { + system: 'http://opencrvs.org/specs/classes', + code: 'crvs-document' + } + ], + text: 'CRVS Document' + }, + subject: { + reference: 'urn:uuid:760c393e-4dc3-4572-83f6-b70765963ef1' + }, + date: '2022-08-14T14:43:47.000Z', + title: 'Birth Notification', + section: [ + { + title: 'Child details', + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'child-details' + } + ], + text: 'Child details' + }, + entry: [ + { + reference: 'urn:uuid:760c393e-4dc3-4572-83f6-b70765963ef1' + } + ] + }, + { + title: 'Birth encounter', + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'birth-encounter' + } + ], + text: 'Birth encounter' + }, + entry: [ + { + reference: 'urn:uuid:7cb1d9cc-ea4b-4046-bea0-38bdf3082f56' + } + ] + }, + { + title: "Mother's details", + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'mother-details' + } + ], + text: "Mother's details" + }, + entry: [ + { + reference: 'urn:uuid:d9d3a8c8-6a47-47a1-be86-0493a4ec55a7' + } + ] + }, + { + title: "Informant's details", + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'informant-details' + } + ], + text: "Informant's details" + }, + entry: [ + { + reference: 'urn:uuid:b74fbd0e-8536-4c11-833d-781e89a4b553' + } + ] + }, + { + title: "Father's details", + code: { + coding: [ + { + system: 'http://opencrvs.org/doc-sections', + code: 'father-details' + } + ], + text: "Father's details" + }, + entry: [ + { + reference: 'urn:uuid:ad1e15bb-51da-449a-8a12-c7dae10728e4' + } + ] + } + ] + } + }, + { + fullUrl: 'urn:uuid:8546aaf3-8a60-4150-bc24-ab5579bc0fa2', + resource: { + resourceType: 'Task', + status: 'draft', + intent: 'unknown', + identifier: [], + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/types', + code: 'BIRTH' + } + ] + }, + focus: { + reference: 'urn:uuid:37dd8e55-69c0-493d-b1a0-b7462a1d806a' + }, + extension: [ + { + url: 'http://opencrvs.org/specs/extension/contact-person', + valueString: 'MOTHER' + }, + { + url: 'http://opencrvs.org/specs/extension/contact-person-phone-number', + valueString: '+260759205190' + }, + { + url: 'http://opencrvs.org/specs/extension/contact-person-email', + valueString: 'axon@gmail.com' + }, + { + url: 'http://opencrvs.org/specs/extension/timeLoggedMS', + valueInteger: 0 + }, + { + url: 'http://opencrvs.org/specs/extension/in-complete-fields', + valueString: 'N/A' + }, + { + url: 'http://opencrvs.org/specs/extension/regLastOffice', + valueReference: { + reference: `Location/${officeId}` + } + } + ] + } + }, + { + fullUrl: 'urn:uuid:760c393e-4dc3-4572-83f6-b70765963ef1', + resource: { + resourceType: 'Patient', + active: true, + name: [ + { + use: 'en', + family: 'Min', + given: ['Child'] + } + ], + gender: 'male', + birthDate: '2022-06-29', + deceasedBoolean: false, + multipleBirthBoolean: false + } + }, + { + fullUrl: 'urn:uuid:d9d3a8c8-6a47-47a1-be86-0493a4ec55a7', + resource: { + resourceType: 'Patient', + active: true, + name: [ + { + use: 'en', + family: 'Ratke', + given: ['Mom'] + } + ], + gender: 'female', + birthDate: '2002-06-29', + deceasedBoolean: false, + multipleBirthBoolean: false, + address: [ + { + type: 'PRIMARY_ADDRESS', + line: ['', '', '', '', '', 'URBAN'], + city: 'Meghnan', + district: districtId, + state: stateId, + postalCode: '52275', + country: 'FAR' + } + ], + extension: [ + { + url: 'http://hl7.org/fhir/StructureDefinition/patient-nationality', + extension: [ + { + url: 'code', + valueCodeableConcept: { + coding: [ + { + system: 'urn:iso:std:iso:3166', + code: 'FAR' + } + ] + } + }, + { + url: 'period', + valuePeriod: { + start: '', + end: '' + } + } + ] + } + ] + } + }, + { + fullUrl: 'urn:uuid:b74fbd0e-8536-4c11-833d-781e89a4b553', + resource: { + resourceType: 'RelatedPerson', + relationship: { + coding: [ + { + system: + 'http://hl7.org/fhir/ValueSet/relatedperson-relationshiptype', + code: 'MOTHER' + } + ] + }, + patient: { + reference: 'urn:uuid:d9d3a8c8-6a47-47a1-be86-0493a4ec55a7' + } + } + }, + { + fullUrl: 'urn:uuid:ad1e15bb-51da-449a-8a12-c7dae10728e4', + resource: { + resourceType: 'Patient', + active: true, + name: [ + { + use: 'en', + family: 'Ratke', + given: ['Dad'] + } + ], + gender: 'male', + birthDate: '2002-06-29', + deceasedBoolean: false, + multipleBirthBoolean: false, + address: [ + { + type: 'PRIMARY_ADDRESS', + line: ['', '', '', '', '', 'URBAN'], + city: 'Meghnan', + district: districtId, + state: stateId, + postalCode: '52275', + country: 'FAR' + } + ], + extension: [ + { + url: 'http://hl7.org/fhir/StructureDefinition/patient-nationality', + extension: [ + { + url: 'code', + valueCodeableConcept: { + coding: [ + { + system: 'urn:iso:std:iso:3166', + code: 'FAR' + } + ] + } + }, + { + url: 'period', + valuePeriod: { + start: '', + end: '' + } + } + ] + } + ] + } + }, + { + fullUrl: 'urn:uuid:7cb1d9cc-ea4b-4046-bea0-38bdf3082f56', + resource: { + resourceType: 'Encounter', + status: 'finished', + location: [ + { + location: { + reference: `Location/${facilityId}` + } + } + ] + } + } + ] +}) diff --git a/e2e/testcases/login/1-login-with-valid-information.spec.ts b/e2e/testcases/login/1-login-with-valid-information.spec.ts new file mode 100644 index 0000000000..0a9596e52d --- /dev/null +++ b/e2e/testcases/login/1-login-with-valid-information.spec.ts @@ -0,0 +1,38 @@ +import { test, expect } from '@playwright/test' +import { CREDENTIALS, LOGIN_URL } from '../../constants' +import { ensureLoginPageReady } from '../../helpers' + +test.describe('1. Login with valid information', () => { + test.beforeEach(async ({ page }) => { + await page.goto(LOGIN_URL) + await ensureLoginPageReady(page) + }) + + test('1.1. Navigate to the login URL', async ({ page }) => { + // Expected result: User should be redirected to the login page + await expect(page.locator('#login-step-one-box')).toBeVisible() + }) + + test('1.2. Enter your username and password', async ({ page }) => { + await page.fill('#username', CREDENTIALS.LOCAL_REGISTRAR.USERNAME) + await page.fill('#password', CREDENTIALS.LOCAL_REGISTRAR.PASSWORD) + await page.click('#login-mobile-submit') + + // Expected result: User should navigate to the next page to verify through mobile number or email address + await expect(page.locator('#login-step-two-box')).toBeVisible() + }) + + test.describe.skip('1.3. Validate 2FA', () => { + test('Validate the SMS for 2fa', async () => {}) + test('Validate the email for 2fa', async () => {}) + }) + + test('1.4. Verify through by inputting the 2FA code', async ({ page }) => { + await page.fill('#username', CREDENTIALS.LOCAL_REGISTRAR.USERNAME) + await page.fill('#password', CREDENTIALS.LOCAL_REGISTRAR.PASSWORD) + await page.click('#login-mobile-submit') + + await page.fill('#code', '000000') + await page.click('#login-mobile-submit') + }) +}) diff --git a/e2e/testcases/login/2-login-with-invalid-information.spec.ts b/e2e/testcases/login/2-login-with-invalid-information.spec.ts new file mode 100644 index 0000000000..646773fcf1 --- /dev/null +++ b/e2e/testcases/login/2-login-with-invalid-information.spec.ts @@ -0,0 +1,48 @@ +import { test, expect } from '@playwright/test' +import { CREDENTIALS, LOGIN_URL } from '../../constants' +import { ensureLoginPageReady } from '../../helpers' + +test.describe('2. Login with invalid information', () => { + test.beforeEach(async ({ page }) => { + await page.goto(LOGIN_URL) + await ensureLoginPageReady(page) + }) + + test('2.1. Navigate to the login URL', async ({ page }) => { + // Expected result: User should be redirected to the login page + await expect(page.getByText('Login to Farajaland CRVS')).toBeVisible() + }) + + test('2.2. Enter invalid username and valid password', async ({ page }) => { + await page.fill('#username', 'j.kimmich') + await page.fill('#password', CREDENTIALS.FIELD_AGENT.PASSWORD) + await page.getByText('Login', { exact: true }).click() + + // Expected result: Should show toast saying: Incorrect username or password + await expect(page.getByText('Incorrect username or password')).toBeVisible() + }) + + test('2.3. Enter valid username and invalid password', async ({ page }) => { + await page.fill('#username', CREDENTIALS.FIELD_AGENT.USERNAME) + await page.fill('#password', 'tests') + await page.getByText('Login', { exact: true }).click() + + // Expected result: Should show toast saying: Incorrect username or password + await expect(page.getByText('Incorrect username or password')).toBeVisible() + }) + + test('2.4. Enter expired 2fa code', async ({ page }) => { + await page.fill('#username', CREDENTIALS.FIELD_AGENT.USERNAME) + await page.fill('#password', CREDENTIALS.FIELD_AGENT.PASSWORD) + await page.getByText('Login', { exact: true }).click() + + // Expected result: User should be redirected to the next page to verify through mobile number or email address + await expect(page.getByText('Verify your account')).toBeVisible() + + await page.fill('#code', 'Expire') + await page.getByText('Verify', { exact: true }).click() + + // Expected result: Should show toast saying: Incorrect verification code + await expect(page.getByText('Incorrect verification code.')).toBeVisible() + }) +}) diff --git a/e2e/testcases/login/5-validate-language-drop-down.spec.ts b/e2e/testcases/login/5-validate-language-drop-down.spec.ts new file mode 100644 index 0000000000..0612c84834 --- /dev/null +++ b/e2e/testcases/login/5-validate-language-drop-down.spec.ts @@ -0,0 +1,231 @@ +import { test, expect } from '@playwright/test' +import { LOGIN_URL } from '../../constants' +import { ensureLoginPageReady } from '../../helpers' + +test.describe('5. Validate language change', () => { + test.beforeEach(async ({ page }) => { + await page.goto(LOGIN_URL) + await ensureLoginPageReady(page) + }) + + test('5.1. Navigate to the OpenCRVS URL', async ({ page }) => { + /* + * Expected result: should navigate to openCRVS URL + */ + await expect(page.getByText('Login to Farajaland CRVS')).toBeVisible() + }) + + test('5.2. Click on language drop down', async ({ page }) => { + await page.locator('_react=LanguageSelect').click() + + /* + * Expected result: should show option for changing language + */ + await expect(page.getByText('Français')).toBeVisible() + }) + + test('5.3. Select french language', async ({ page }) => { + await page.locator('_react=LanguageSelect').click() + await page.getByText('Français').click() + + /* + * Expected result: should change language to french + */ + expect(await page.locator('_react=LanguageSelect').innerText()).toMatch( + 'Français' + ) + }) + + test.describe('5.4. Validate language of login page', () => { + test.beforeEach(async ({ page }) => { + await page.locator('_react=LanguageSelect').click() + await page.getByText('Français').click() + }) + test('5.4.1. Username label should be in french', async ({ page }) => { + /* + * Expected result: should change the 'Username' label to french + */ + await expect(page.getByText("Nom d'utilisateur")).toBeVisible() + }) + + test('5.4.2. Password label should be in french', async ({ page }) => { + /* + * Expected result: should change the 'Password' label to french + */ + await expect(page.getByText('Mot de passe')).toBeVisible() + }) + + test('5.4.3. Submit button label should be in french', async ({ page }) => { + /* + * Expected result: should change the 'Submit button' label to french + */ + await expect(page.getByText('Se connecter')).toBeVisible() + }) + + test("5.4.4. Can't log in label should be in french", async ({ page }) => { + /* + * Expected result: should change the 'Can't log in label' to french + */ + await expect(page.getByText('Vous ne pouvez pas vous')).toBeVisible() + }) + }) + + test.describe('5.5. Validate language of 2fa page', () => { + test.beforeEach(async ({ page }) => { + await page.locator('_react=LanguageSelect').click() + await page.getByText('Français').click() + await page.fill('#username', 'k.bwalya') + await page.fill('#password', 'test') + await page.getByText('Se connecter', { exact: true }).click() + }) + + test('5.5.1. 2fa header should be in french', async ({ page }) => { + /* + * Expected result: should change the header of the 2fa page to french + */ + await expect(page.getByText('Vérifier votre compte')).toBeVisible() + }) + + test('5.5.2. 2fa description should be in french', async ({ page }) => { + /* + * Expected result: should change the description of 2fa page to french + */ + await expect( + page + .getByText("Un code d'authentification a") + .and(page.getByText('Ce code sera valable 10 minutes')) + ).toBeVisible() + }) + + test('5.5.3. Input label should be in french', async ({ page }) => { + /* + * Expected result: should change the input label of the 2fa page to french + */ + await expect( + page.getByText('Code de vérification (6 chiffres)') + ).toBeVisible() + }) + + test('5.5.4. Submit button should be in french', async ({ page }) => { + /* + * Expected result: should change the submit button of the 2fa page to french + */ + await expect(page.getByText('Vérifier', { exact: true })).toBeVisible() + }) + + test('5.5.5. Resend button should be in french', async ({ page }) => { + /* + * Expected result: should change the resend button of the 2fa page to french + */ + await expect(page.getByText('Renvoyer le Email')).toBeVisible() + }) + }) + + test.describe('5.6. Validate create pin page', () => { + test.beforeEach(async ({ page }) => { + await page.locator('_react=LanguageSelect').click() + await page.getByText('Français').click() + await page.fill('#username', 'k.bwalya') + await page.fill('#password', 'test') + await page.getByText('Se connecter', { exact: true }).click() + await page.fill('#code', '000000') + await page.getByText('Vérifier', { exact: true }).click() + }) + + test('5.6.1. Create pin header should be in french', async ({ page }) => { + /* + * Expected result: should change the create pin header to french + */ + await expect(page.getByText('Créer un code PIN')).toBeVisible({ + timeout: 1000 * 20 + }) + }) + test('5.6.2. Create pin description should be in french', async ({ + page + }) => { + /* + * Expected result: should change the create pin description to french + */ + await expect( + page.getByText( + 'Choisissez un code PIN qui ne comporte pas 4 chiffres répétitifs ou des numéros séquentiels.' + ) + ).toBeVisible({ + timeout: 1000 * 20 + }) + }) + }) + + test.describe("5.7. Validate Can't login page", () => { + test.beforeEach(async ({ page }) => { + await page.goto(LOGIN_URL + '/?lang=fr') + await ensureLoginPageReady(page) + await page.getByText('Vous ne pouvez pas vous').click() + }) + test("5.7.1. Title of can't login page should be in french", async ({ + page + }) => { + /* + * Expected result: should change the title of unable to login page to french + */ + await expect( + page.getByText('Impossible de se connecter', { exact: true }) + ).toBeVisible() + }) + + test("5.7.2. Selector label of can't login page should be in french", async ({ + page + }) => { + /* + * Expected result: should change the label for selector of unable to login page to french + */ + await expect( + page.getByText("Qu'avez-vous oublié ?", { exact: true }) + ).toBeVisible() + }) + + test("5.7.3. Username reminder option of can't login page should be in french", async ({ + page + }) => { + /* + * Expected result: should change the username reminder option of unable to login page to french + */ + await expect( + page.getByText("Mon nom d'utilisateur", { exact: true }) + ).toBeVisible() + }) + + test("5.7.4. Password reset option of can't login page should be in french", async ({ + page + }) => { + /* + * Expected result: should change the password reset option of unable to login page to french + */ + await expect( + page.getByText('Mon mot de passe', { exact: true }) + ).toBeVisible() + }) + + test("5.7.5. Continue button of can't login page should be in french", async ({ + page + }) => { + /* + * Expected result: should change the continue button of unable to login page to french + */ + await expect(page.getByText('Continuer', { exact: true })).toBeVisible() + }) + + test("5.7.6. Error of can't login page should be in french", async ({ + page + }) => { + await page.getByText('Continuer', { exact: true }).click() + + /* + * Expected result: should change the error taost of unable to login page to french + */ + await expect( + page.getByText('Entrée invalide', { exact: true }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/marriage/.gitkeep b/e2e/testcases/marriage/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/e2e/testcases/marriage/1-marriage-event-declaration.spec.ts b/e2e/testcases/marriage/1-marriage-event-declaration.spec.ts new file mode 100644 index 0000000000..b5d3ca8a0f --- /dev/null +++ b/e2e/testcases/marriage/1-marriage-event-declaration.spec.ts @@ -0,0 +1,193 @@ +import { expect, test } from '@playwright/test' +import { createPIN, login } from '../../helpers' +import { validateSectionButtons } from '../../helpers' +import { CREDENTIALS } from '../../constants' + +test.describe('1. Marriage event validation', () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + }) + + test('1.1. Navigate to the event declaration page', async ({ page }) => { + await page.click('#header_new_event') + await page.waitForSelector('#continue') + }) + + test('Testcase 1', async ({ page }) => { + await page.click('#header_new_event') + + await test.step('1.1.1 Validate the contents of the event type page', async () => { + await expect(page.getByText('Birth', { exact: true })).toBeVisible() + await expect(page.getByText('Death', { exact: true })).toBeVisible() + await expect(page.getByText('Marriage', { exact: true })).toBeVisible() + await expect(page.getByText('Exit', { exact: true })).toBeVisible() + await expect(page.getByText('Continue', { exact: true })).toBeVisible() + }) + + await test.step('1.1.2 Click the "Continue" button without selecting any event', async () => { + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Please select the type of event', { exact: true }) + ).toBeVisible() + }) + + await test.step('1.1.3 Select the "Marriage" event and click "Continue" button', async () => { + await page.getByText('Marriage', { exact: true }).click() + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText("Informant's details", { exact: true }) + ).toBeVisible() + }) + // 1.2. Is missing because marriage declaration does not have an "Introduction" page. + await test.step('1.3.1 Validate the content of the informant page', async () => { + await validateSectionButtons(page) + await expect( + page.locator('label', { hasText: 'Informant type' }) + ).toBeVisible() + await expect( + page.locator('label', { hasText: 'Phone number' }) + ).toBeVisible() + await expect(page.locator('label', { hasText: 'Email' })).toBeVisible() + }) + // 1.3.2 Is missing because "Informant details" page does not give an error if + // user click continue and nothing is selected. + await test.step('1.3.3 Select any option in Informant type > Click Continue', async () => { + await page.locator('#informantType').click() + await page.getByText('Groom', { exact: true }).click() + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText("Groom's details", { exact: true }) + ).toBeVisible() + }) + await test.step('1.4. Validate Groom Details page', async () => { + await validateSectionButtons(page) + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText("Bride's details", { exact: true }) + ).toBeVisible() + }) + await test.step('1.5. Validate Bridge Details page', async () => { + await validateSectionButtons(page) + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Marriage details', { exact: true }) + ).toBeVisible() + }) + await test.step('1.6. Validate Marriage Details page', async () => { + await validateSectionButtons(page) + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Witness 1 details', { exact: true }) + ).toBeVisible() + }) + await test.step('1.7. Validate witness 1 Details page', async () => { + await validateSectionButtons(page) + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Witness 2 details', { exact: true }) + ).toBeVisible() + }) + await test.step('1.8. Validate witness 2 Details page', async () => { + await validateSectionButtons(page) + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + }) + await test.step('1.9. Validate Supporting document page', async () => { + await validateSectionButtons(page) + await page.getByText('Continue', { exact: true }).click() + page.getByText('Register event', { exact: true }) + }) + }) + test('1.11 Validate save and exit button', async ({ page }) => { + await page.click('#header_new_event') + await page.getByText('Marriage', { exact: true }).click() + await page.getByText('Continue', { exact: true }).click() + + await test.step('1.11.1. & 1.11.2. Validate "Save & Exit" button modal content and cancel', async () => { + await page.getByText('Save & Exit', { exact: true }).click() + await expect( + page.getByText( + 'All inputted data will be kept secure for future editing. Are you ready to save any changes to this declaration form?', + { exact: true } + ) + ).toBeVisible() + await expect(page.getByText('Cancel', { exact: true })).toBeVisible() + await expect(page.getByText('Confirm', { exact: true })).toBeVisible() + await page.getByText('Cancel', { exact: true }).click() + await expect(page.getByText('Save & exit?', { exact: true })).toBeHidden() + }) + + await test.step('1.11.3. Confirm "Save & Exit" button', async () => { + await page.getByText('Save & Exit', { exact: true }).click() + await page.getByText('Confirm', { exact: true }).click() + await page.waitForTimeout(500) // because the page is shown twice + await expect( + page.getByRole('button', { name: 'My drafts' }) + ).toBeVisible() + await expect( + page.getByText('No name provided', { exact: true }) + ).toBeVisible() + }) + }) + test('1.12 Validate exit button', async ({ page }) => { + await page.click('#header_new_event') + await page.getByText('Marriage', { exact: true }).click() + await page.getByText('Continue', { exact: true }).click() + + await test.step('1.12.1. & 1.12.2. Validate "Exit" button modal content and cancel', async () => { + await page.getByText('Exit', { exact: true }).click() + await expect( + page.getByText('Exit without saving changes?', { exact: true }) + ).toBeVisible() + await expect( + page.getByText( + 'You have unsaved changes on your declaration form. Are you sure you want to exit without saving?', + { exact: true } + ) + ).toBeVisible() + await expect(page.getByText('Cancel', { exact: true })).toBeVisible() + await expect(page.getByText('Confirm', { exact: true })).toBeVisible() + await page.getByText('Cancel', { exact: true }).click() + await expect( + page.getByText('Exit without saving changes?', { exact: true }) + ).toBeHidden() + }) + await test.step('1.12.3. Confirm "Exit" button', async () => { + await page.getByText('Exit', { exact: true }).click() + + await page.getByText('Confirm', { exact: true }).click() + await page.waitForTimeout(500) // because the page is shown twice + await expect( + page.getByRole('button', { name: 'My drafts' }) + ).toBeVisible() + await expect( + page.getByText('No records in my drafts', { exact: true }) + ).toBeVisible() + }) + }) + + test('1.13 Validate three dot menu button', async ({ page }) => { + await page.click('#header_new_event') + await page.getByText('Marriage', { exact: true }).click() + await page.getByText('Continue', { exact: true }).click() + + await test.step('1.13.3. Delete declaration from the 3 dot menu', async () => { + await page.click('#eventToggleMenu-dropdownMenu') + await page + .locator('#eventToggleMenu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + .click() + await page.getByText('Confirm', { exact: true }).click() + await expect( + page.getByText('No records in my drafts', { exact: true }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/marriage/4-validate-groom-details-page.spec.ts b/e2e/testcases/marriage/4-validate-groom-details-page.spec.ts new file mode 100644 index 0000000000..93ab22d701 --- /dev/null +++ b/e2e/testcases/marriage/4-validate-groom-details-page.spec.ts @@ -0,0 +1,311 @@ +import { test, expect } from '@playwright/test' +import { createPIN, goToSection, login } from '../../helpers' + +test.describe("4. Validate the groom's details page", () => { + test.beforeEach(async ({ page }) => { + await login(page, 'k.mweene', 'test') + + await page.click('#header_new_event') + + await expect(page.getByText('New Declaration')).toBeVisible() + await expect(page.getByText('Event type')).toBeVisible() + await expect(page.getByLabel('Marriage')).toBeVisible() + + await page.getByLabel('Marriage').click() + await goToSection(page, 'groom') + + await expect(page.getByText("Groom's details")).toBeVisible() + }) + + test.describe('1 Validate the "Nationality" drop-down field.', async () => { + test('1. Select any drop-down value from the drop-down', async ({ + page + }) => { + await expect(page.locator('#countryPrimaryGroom')).toHaveText( + 'Farajaland' + ) + await page.locator('#countryPrimaryGroom').click() + await page.getByText('Estonia', { exact: true }).click() + await expect( + page.getByText('Estonia', { + exact: true + }) + ).toBeVisible() + }) + }) + + test.describe('2 Validate the National ID field', async () => { + test('2.1. Enter numerical value less than 9 digit', async ({ page }) => { + const shortValue = '12345' + await page.locator('#groomIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#groomNationalId').fill(shortValue) + await page.getByText("Groom's details").click() + + await expect(page.locator('#groomNationalId_error')).toHaveText( + 'The National ID can only be numeric and must be 10 digits long' + ) + }) + + test('2.2 Set the field as NULL', async ({ page }) => { + await page.locator('#groomIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#groomNationalId').click() + await page.getByText("Groom's details").click() + await expect(page.locator('#groomNationalId_error')).toHaveText( + 'Required for registration' + ) + await goToSection(page, 'preview') + + await expect( + page.locator('#required_label_groom_groomNationalId') + ).toHaveText('Required for registration') + }) + + test('2.3 Enter numerical value 9 digit', async ({ page }) => { + const correctValue = '0912312222' + + await page.locator('#groomIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#groomNationalId').fill(correctValue) + await page.getByText("Groom's details").click() + + await expect(page.locator('#groomNationalId_error')).toBeHidden() + }) + + test('2.4 Enter numerical value above 9 digit', async ({ page }) => { + const tooLongValue = '091231222222' + await page.locator('#groomIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#groomNationalId').fill(tooLongValue) + await page.getByText("Groom's details").click() + + await expect(page.locator('#groomNationalId_error')).toHaveText( + 'The National ID can only be numeric and must be 10 digits long' + ) + }) + test('2.5 Enter the same 9 digit value of informant', async ({ page }) => { + const sameNumbersValue = '222222222' + await page.locator('#groomIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#groomNationalId').fill(sameNumbersValue) + await page.getByText("Groom's details").click() + + await expect(page.locator('#groomNationalId_error')).toHaveText( + 'The National ID can only be numeric and must be 10 digits long' + ) + }) + }) + + test.describe('2.1 Validate "First Name(s)" text field', async () => { + test.describe('2.1.1 Enter Non-English characters', async () => { + test('Using name: Richard the 3rd', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Richard the 3rd') + await page.getByText("Groom's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: John_Peter', async ({ page }) => { + await page.locator('#firstNamesEng').fill('John_Peter') + await page.getByText("Groom's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: John-Peter', async ({ page }) => { + await page.locator('#firstNamesEng').fill('John-Peter') + await page.getByText("Groom's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test("Using name: O'Neill", async ({ page }) => { + await page.locator('#firstNamesEng').fill("O'Neill") + await page.getByText("Groom's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: &er$on', async ({ page }) => { + await page.locator('#firstNamesEng').fill('&er$on') + await page.getByText("Groom's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeVisible() + }) + + test.skip('Using name: X Æ A-Xii', async ({ page }) => { + await page.locator('#firstNamesEng').fill('X Æ A-Xii') + await page.getByText("Groom's details").click() + + /* + * Expected result: should throw error: + * - Input contains invalid characters. Please use only letters (a-z), numbers (0-9), hyphens (-), and underscores (_) + */ + await expect(page.locator('#firstNamesEng_error')).toBeVisible() + }) + }) + + test('2.1.2 Enter less than 33 English characters', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Rakibul Islam') + await page.getByText("Groom's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('2.1.3 Enter Field as NULL', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page.locator('#required_label_groom_firstNamesEng') + ).toBeVisible() + }) + + test('2.1.4 Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#firstNamesEng').fill(LONG_NAME) + await page.getByText("Groom's details").click() + + /* + * Expected result: should clip the name to first 32 character + */ + await expect(page.locator('#firstNamesEng')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + }) + + test.describe('3 Validate the "DOB" field', async () => { + test('3.1. Enter date Less than the current date and focus out from the field ', async ({ + page + }) => { + const yyyy = '1996' + const mm = '03' + const dd = '12' + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText("Groom's details").click() + + /* + * Expected result: should accept the date + */ + await expect(page.locator('#groomBirthDate_error')).toBeHidden() + }) + + test('3.2. Enter invalid date', async ({ page }) => { + await page.getByPlaceholder('dd').fill('0') + await page.getByPlaceholder('mm').fill('0') + await page.getByPlaceholder('yyyy').fill('0') + await page.getByText("Groom's details").click() + + /* + * Expected result: should not accept the invalid date and show error: + * - Must be a valid birth date + */ + await expect(page.locator('#groomBirthDate_error')).toHaveText( + 'Required for registration. Enter a valid date' + ) + }) + + test('2.3 Set the field as null', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page.locator('#required_label_groom_groomBirthDate') + ).toHaveText('Required for registration. Enter a valid date') + }) + + test('2.4. Enter future date', async ({ page }) => { + const futureDate = new Date() + futureDate.setDate(new Date().getDate() + 5) + const [yyyy, mm, dd] = futureDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText("Groom's details").click() + + /* + * Expected result: should not accept the future date and show error: + * - Must be a valid birth date + */ + await expect(page.locator('#groomBirthDate_error')).toHaveText( + 'Must be a valid birth date' + ) + }) + }) + test.describe('4 Validate the Residence section', async () => { + test('4.1. Select any country from the "Country" dropdown field, Default value is Farajaland ', async ({ + page + }) => { + await expect(page.locator('#countryPrimaryGroom')).toHaveText( + 'Farajaland' + ) + await page.locator('#countryPrimaryGroom').click() + await page.getByText('Estonia', { exact: true }).click() + await page.getByText("Groom's details").click() + await expect(page.locator('#countryPrimaryGroom')).toHaveText('Estonia') + }) + + test('4.2. Select any Province from "Province" dropdown field, Default value is Central', async ({ + page + }) => { + await page.locator('#statePrimaryGroom').click() + await page.getByText('Sulaka', { exact: true }).click() + await page.getByText("Groom's details").click() + await expect(page.locator('#statePrimaryGroom')).toHaveText('Sulaka') + }) + + test('4.3 Select any district from "District" dropdown field, Default value is Ibombo', async ({ + page + }) => { + await page.locator('#districtPrimaryGroom').click() + await page.getByText('Isamba', { exact: true }).click() + await page.getByText("Groom's details").click() + await expect(page.locator('#districtPrimaryGroom')).toHaveText('Isamba') + }) + + test('4.4. Select Urban address', async ({ page }) => { + await page.getByLabel('Urban').check() + await page.getByText("Groom's details").click() + await expect(page.getByLabel('Urban')).toBeChecked() + }) + test('4.5. Select Rural address', async ({ page }) => { + await page.getByLabel('Rural').check() + await page.getByText("Groom's details").click() + await expect(page.getByLabel('Rural')).toBeChecked() + }) + test('4.6. Click the continue button', async ({ page }) => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.getByText("Bride's details")).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/marriage/5-validate-bride-details-page.spec.ts b/e2e/testcases/marriage/5-validate-bride-details-page.spec.ts new file mode 100644 index 0000000000..45eafdebfb --- /dev/null +++ b/e2e/testcases/marriage/5-validate-bride-details-page.spec.ts @@ -0,0 +1,311 @@ +import { test, expect } from '@playwright/test' +import { createPIN, goToSection, login } from '../../helpers' + +test.describe("5. Validate the bride's details page", () => { + test.beforeEach(async ({ page }) => { + await login(page, 'k.mweene', 'test') + + await page.click('#header_new_event') + + await expect(page.getByText('New Declaration')).toBeVisible() + await expect(page.getByText('Event type')).toBeVisible() + await expect(page.getByLabel('Marriage')).toBeVisible() + + await page.getByLabel('Marriage').click() + await goToSection(page, 'bride') + + await expect(page.getByText("Bride's details")).toBeVisible() + }) + + test.describe('1 Validate the "Nationality" drop-down field.', async () => { + test('1. Select any drop-down value from the drop-down', async ({ + page + }) => { + await expect(page.locator('#countryPrimaryBride')).toHaveText( + 'Farajaland' + ) + await page.locator('#countryPrimaryBride').click() + await page.getByText('Estonia', { exact: true }).click() + await expect( + page.getByText('Estonia', { + exact: true + }) + ).toBeVisible() + }) + }) + + test.describe('2 Validate the National ID field', async () => { + test('2.1. Enter numerical value less than 9 digit', async ({ page }) => { + const shortValue = '12345' + await page.locator('#brideIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#brideNationalId').fill(shortValue) + await page.getByText("Bride's details").click() + + await expect(page.locator('#brideNationalId_error')).toHaveText( + 'The National ID can only be numeric and must be 10 digits long' + ) + }) + + test('2.2 Set the field as NULL', async ({ page }) => { + await page.locator('#brideIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#brideNationalId').click() + await page.getByText("Bride's details").click() + await expect(page.locator('#brideNationalId_error')).toHaveText( + 'Required for registration' + ) + await goToSection(page, 'preview') + + await expect( + page.locator('#required_label_bride_brideNationalId') + ).toHaveText('Required for registration') + }) + + test('2.3 Enter numerical value 9 digit', async ({ page }) => { + const correctValue = '0912312222' + + await page.locator('#brideIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#brideNationalId').fill(correctValue) + await page.getByText("Bride's details").click() + + await expect(page.locator('#brideNationalId_error')).toBeHidden() + }) + + test('2.4 Enter numerical value above 9 digit', async ({ page }) => { + const tooLongValue = '091231222222' + await page.locator('#brideIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#brideNationalId').fill(tooLongValue) + await page.getByText("Bride's details").click() + + await expect(page.locator('#brideNationalId_error')).toHaveText( + 'The National ID can only be numeric and must be 10 digits long' + ) + }) + test('2.5 Enter the same 9 digit value of informant', async ({ page }) => { + const sameNumbersValue = '222222222' + await page.locator('#brideIdType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#brideNationalId').fill(sameNumbersValue) + await page.getByText("Bride's details").click() + + await expect(page.locator('#brideNationalId_error')).toHaveText( + 'The National ID can only be numeric and must be 10 digits long' + ) + }) + }) + + test.describe('2.1 Validate "First Name(s)" text field', async () => { + test.describe('2.1.1 Enter Non-English characters', async () => { + test('Using name: Richard the 3rd', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Richard the 3rd') + await page.getByText("Bride's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: John_Peter', async ({ page }) => { + await page.locator('#firstNamesEng').fill('John_Peter') + await page.getByText("Bride's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: John-Peter', async ({ page }) => { + await page.locator('#firstNamesEng').fill('John-Peter') + await page.getByText("Bride's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test("Using name: O'Neill", async ({ page }) => { + await page.locator('#firstNamesEng').fill("O'Neill") + await page.getByText("Bride's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('Using name: &er$on', async ({ page }) => { + await page.locator('#firstNamesEng').fill('&er$on') + await page.getByText("Bride's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeVisible() + }) + + test.skip('Using name: X Æ A-Xii', async ({ page }) => { + await page.locator('#firstNamesEng').fill('X Æ A-Xii') + await page.getByText("Bride's details").click() + + /* + * Expected result: should throw error: + * - Input contains invalid characters. Please use only letters (a-z), numbers (0-9), hyphens (-), and underscores (_) + */ + await expect(page.locator('#firstNamesEng_error')).toBeVisible() + }) + }) + + test('2.1.2 Enter less than 33 English characters', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Rakibul Islam') + await page.getByText("Bride's details").click() + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('2.1.3 Enter Field as NULL', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page.locator('#required_label_bride_firstNamesEng') + ).toBeVisible() + }) + + test('2.1.4 Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#firstNamesEng').fill(LONG_NAME) + await page.getByText("Bride's details").click() + + /* + * Expected result: should clip the name to first 32 character + */ + await expect(page.locator('#firstNamesEng')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + }) + + test.describe('3 Validate the "DOB" field', async () => { + test('3.1. Enter date Less than the current date and focus out from the field ', async ({ + page + }) => { + const yyyy = '1996' + const mm = '03' + const dd = '12' + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText("Bride's details").click() + + /* + * Expected result: should accept the date + */ + await expect(page.locator('#brideBirthDate_error')).toBeHidden() + }) + + test('3.2. Enter invalid date', async ({ page }) => { + await page.getByPlaceholder('dd').fill('0') + await page.getByPlaceholder('mm').fill('0') + await page.getByPlaceholder('yyyy').fill('0') + await page.getByText("Bride's details").click() + + /* + * Expected result: should not accept the invalid date and show error: + * - Must be a valid birth date + */ + await expect(page.locator('#brideBirthDate_error')).toHaveText( + 'Required for registration. Enter a valid date' + ) + }) + + test('2.3 Set the field as null', async ({ page }) => { + await goToSection(page, 'preview') + + /* + * Expected result: should throw error in application review page: + * - Required for registration + */ + await expect( + page.locator('#required_label_bride_brideBirthDate') + ).toHaveText('Required for registration. Enter a valid date') + }) + + test('2.4. Enter future date', async ({ page }) => { + const futureDate = new Date() + futureDate.setDate(new Date().getDate() + 5) + const [yyyy, mm, dd] = futureDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByText("Bride's details").click() + + /* + * Expected result: should not accept the future date and show error: + * - Must be a valid birth date + */ + await expect(page.locator('#brideBirthDate_error')).toHaveText( + 'Must be a valid birth date' + ) + }) + }) + test.describe('4 Validate the Residence section', async () => { + test('4.1. Select any country from the "Country" dropdown field, Default value is Farajaland ', async ({ + page + }) => { + await expect(page.locator('#countryPrimaryBride')).toHaveText( + 'Farajaland' + ) + await page.locator('#countryPrimaryBride').click() + await page.getByText('Estonia', { exact: true }).click() + await page.getByText("Bride's details").click() + await expect(page.locator('#countryPrimaryBride')).toHaveText('Estonia') + }) + + test('4.2. Select any Province from "Province" dropdown field, Default value is Central', async ({ + page + }) => { + await page.locator('#statePrimaryBride').click() + await page.getByText('Sulaka', { exact: true }).click() + await page.getByText("Bride's details").click() + await expect(page.locator('#statePrimaryBride')).toHaveText('Sulaka') + }) + + test('4.3 Select any district from "District" dropdown field, Default value is Ibombo', async ({ + page + }) => { + await page.locator('#districtPrimaryBride').click() + await page.getByText('Isamba', { exact: true }).click() + await page.getByText("Bride's details").click() + await expect(page.locator('#districtPrimaryBride')).toHaveText('Isamba') + }) + + test('4.4. Select Urban address', async ({ page }) => { + await page.getByLabel('Urban').check() + await page.getByText("Bride's details").click() + await expect(page.getByLabel('Urban')).toBeChecked() + }) + test('4.5. Select Rural address', async ({ page }) => { + await page.getByLabel('Rural').check() + await page.getByText("Bride's details").click() + await expect(page.getByLabel('Rural')).toBeChecked() + }) + test('4.6. Click the continue button', async ({ page }) => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.getByText('Marriage details')).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/marriage/6-details-page-validation.spec.ts b/e2e/testcases/marriage/6-details-page-validation.spec.ts new file mode 100644 index 0000000000..07820e3124 --- /dev/null +++ b/e2e/testcases/marriage/6-details-page-validation.spec.ts @@ -0,0 +1,150 @@ +import { expect, test } from '@playwright/test' +import { continueForm, createPIN, goToSection, login } from '../../helpers' +import { CREDENTIALS } from '../../constants' + +test.describe('6. Validate Marriage details page', () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByText('Marriage', { exact: true }).click() + await page.getByText('Continue', { exact: true }).click() + await page.getByText('Continue', { exact: true }).click() + await page.getByPlaceholder('dd').fill('02') + await page.getByPlaceholder('mm').fill('03') + await page.getByPlaceholder('yyyy').fill('1995') + await continueForm(page) + await page.getByPlaceholder('dd').fill('01') + await page.getByPlaceholder('mm').fill('05') + await page.getByPlaceholder('yyyy').fill('1993') + await continueForm(page) + }) + + test('1.1. Enter date Less than the current date But after Groom and Bride DOB', async ({ + page + }) => { + const pastDate = new Date() + pastDate.setDate(new Date().getDate() - 2) + const [yyyy, mm, dd] = pastDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await expect( + page.getByText('Illegal age of marriage', { exact: true }) + ).toBeHidden() + await expect( + page.getByText('Required for registration. Enter a valid date', { + exact: true + }) + ).toBeHidden() + }) + + test('1.2. Enter future date', async ({ page }) => { + const futureDate = new Date() + futureDate.setDate(new Date().getDate() + 5) + const [yyyy, mm, dd] = futureDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.locator('#typeOfMarriage').click() + await expect(page.locator('#marriageDate_error')).toHaveText( + 'Required for registration. Enter a valid date' + ) + }) + test('1.3. Keep field as null', async ({ page }) => { + await goToSection(page, 'preview') + await expect( + page.locator('#required_label_marriageEvent_marriageDate') + ).toBeVisible() + }) + test('1.4. Enter date Less than the current date But before Groom and Bride DOB', async ({ + page + }) => { + await page.getByPlaceholder('dd').fill('01') + await page.getByPlaceholder('mm').fill('05') + await page.getByPlaceholder('yyyy').fill('1960') + await page.getByText('Marriage details').click() + await expect(page.locator('#marriageDate_error')).toHaveText( + 'Illegal age of marriage' + ) + }) + + test('2.1. Select any country from the "Country" dropdown field, Default value is Farajaland', async ({ + page + }) => { + await expect(page.getByText('Farajaland', { exact: true })).toBeVisible() + await page.locator('#countryPlaceofmarriage').click() + await page.getByText('Estonia', { exact: true }).click() + await expect( + page.getByText('Estonia', { + exact: true + }) + ).toBeVisible() + }) + test('2.2. Select any Province from "Province" dropdown field, Default value is Central', async ({ + page + }) => { + await expect(page.getByText('Central', { exact: true })).toBeVisible() + await page.locator('#statePlaceofmarriage').click() + await page.getByText('Sulaka', { exact: true }).click() + await expect( + page.getByText('Sulaka', { + exact: true + }) + ).toBeVisible() + }) + test('2.3. Select any district from "District" dropdown field, Default value is Ibombo', async ({ + page + }) => { + await expect(page.getByText('Ibombo', { exact: true })).toBeVisible() + await page.locator('#districtPlaceofmarriage').click() + await page.getByText('Isamba', { exact: true }).click() + await expect( + page.getByText('Isamba', { + exact: true + }) + ).toBeVisible() + }) + test('2.4. Select Urban address', async ({ page }) => { + const townValue = 'My town' + const residentalAreaValue = 'My residential area' + const streetValue = 'My street' + const phoneValue = '09123456' + const postalCodeValue = '00120' + await page.locator("[name='cityPlaceofmarriage']").fill(townValue) + await page + .locator("[name='addressLine1UrbanOptionPlaceofmarriage']") + .fill(residentalAreaValue) + await page + .locator("[name='addressLine2UrbanOptionPlaceofmarriage']") + .fill(streetValue) + await page + .locator("[name='addressLine3UrbanOptionPlaceofmarriage']") + .fill(phoneValue) + await page + .locator("[name='postalCodePlaceofmarriage']") + .fill(postalCodeValue) + }) + test('2.5. Select Rural address', async ({ page }) => { + await page.getByText('Rural', { exact: true }).click() + await page + .locator('#addressLine1RuralOptionPlaceofmarriage') + .fill('My village') + }) + test('3 Select any of the following options from Type of marriage dropdown', async ({ + page + }) => { + await page.locator('#typeOfMarriage').click() + await page.getByText('Polygamous', { exact: true }).click() + await expect(page.getByText('Polygamous', { exact: true })).toBeVisible() + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Witness 1 details', { exact: true }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/marriage/7-validate-witness-1-page.spec.ts b/e2e/testcases/marriage/7-validate-witness-1-page.spec.ts new file mode 100644 index 0000000000..ac1f2230d7 --- /dev/null +++ b/e2e/testcases/marriage/7-validate-witness-1-page.spec.ts @@ -0,0 +1,101 @@ +import { expect, test } from '@playwright/test' +import { createPIN, login, goToSection } from '../../helpers' +import { CREDENTIALS } from '../../constants' + +test.describe('7. Validate Witness 1 details page', () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByText('Marriage', { exact: true }).click() + await goToSection(page, 'witnessOne') + }) + + // 1.1. Enter Non-English characters + test('1.1. Validate "First Name(s)" text field', async ({ page }) => { + await page.locator('#firstNamesEng').fill('*') + await page.getByText('Witness 1 details').click() + await expect(page.locator('#firstNamesEng_error')).toHaveText( + `Input contains invalid characters. Please use only letters (a-z, A-Z), numbers (0-9), hyphens (-), apostrophes(') and underscores (_)` + ) + }) + + // 1.2. Enter less than 33 English characters + test('1.2. Enter less than 33 English characters', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Rakibul Islam') + await page.getByText('Witness 1 details').click() + + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + // 1.3. Enter Field as NULL + test('1.3. Enter Field as NULL', async ({ page }) => { + await page.locator('#firstNamesEng').click() + await page.locator('#relationship').click() + await expect( + page.getByText('Required for registration', { exact: true }) + ).toBeVisible() + }) + + // 1.4. Enter more than 32 English characters + test('1.4. Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#firstNamesEng').fill(LONG_NAME) + await page.getByText('Witness 1 details').click() + + await expect(page.locator('#firstNamesEng')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + + // 2.1. Enter Non-English characters + test('2.1. Validate "Last Name(s)" text field', async ({ page }) => { + await page.locator('#familyNameEng').fill('*') + await page.getByText('Witness 1 details').click() + await expect(page.locator('#familyNameEng_error')).toBeVisible() + }) + + // 2.2. Enter less than 33 English characters + test('2.2. Enter less than 33 English characters', async ({ page }) => { + await page.locator('#familyNameEng').fill('Rakibul Islam') + await page.getByText('Witness 1 details').click() + + await expect(page.locator('#familyNameEng_error')).toBeHidden() + }) + + // 2.3. Enter Field as NULL + test('2.3. Enter Field as NULL', async ({ page }) => { + await page.locator('#familyNameEng').click() + await page.locator('#relationship').click() + await expect( + page.getByText('Required for registration', { exact: true }) + ).toBeVisible() + }) + + // 2.4. Enter more than 32 English characters + test('2.4. Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#familyNameEng').fill(LONG_NAME) + await page.getByText('Witness 1 details').click() + + await expect(page.locator('#familyNameEng')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + test('3. Select any to the following option from Relationship to spouses:', async ({ + page + }) => { + await page.locator('#relationship').click() + await page.getByText('Other', { exact: true }).click() + await expect(page.getByText('Other', { exact: true })).toBeVisible() + }) + test('4. Click continue', async ({ page }) => { + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Witness 2 details', { exact: true }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/marriage/7-validate-witness-2-page.spec.ts b/e2e/testcases/marriage/7-validate-witness-2-page.spec.ts new file mode 100644 index 0000000000..9eddcdb735 --- /dev/null +++ b/e2e/testcases/marriage/7-validate-witness-2-page.spec.ts @@ -0,0 +1,95 @@ +import { expect, test } from '@playwright/test' +import { createPIN, login, goToSection } from '../../helpers' +import { CREDENTIALS } from '../../constants' + +test.describe('7. Validate Witness 2 details page', () => { + test.beforeEach(async ({ page }) => { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + await page.click('#header_new_event') + await page.getByText('Marriage', { exact: true }).click() + await goToSection(page, 'witnessTwo') + }) + + // 1.1. Enter Non-English characters + test('1.1. Validate "First Name(s)" text field', async ({ page }) => { + await page.locator('#firstNamesEng').fill('*') + await page.getByText('Witness 2 details').click() + await expect(page.locator('#firstNamesEng_error')).toHaveText( + `Input contains invalid characters. Please use only letters (a-z, A-Z), numbers (0-9), hyphens (-), apostrophes(') and underscores (_)` + ) + }) + + test('1.2. Enter less than 33 English characters', async ({ page }) => { + await page.locator('#firstNamesEng').fill('Rakibul Islam') + await page.getByText('Witness 2 details').click() + + await expect(page.locator('#firstNamesEng_error')).toBeHidden() + }) + + test('1.3. Enter Field as NULL', async ({ page }) => { + await page.locator('#firstNamesEng').click() + await page.locator('#relationship').click() + await expect( + page.getByText('Required for registration', { exact: true }) + ).toBeVisible() + }) + + test('1.4. Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#firstNamesEng').fill(LONG_NAME) + await page.getByText('Witness 2 details').click() + + await expect(page.locator('#firstNamesEng')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + + // 2.1. Enter Non-English characters + test('2.1. Validate "Last Name(s)" text field', async ({ page }) => { + await page.locator('#familyNameEng').fill('*') + await page.getByText('Witness 2 details').click() + await expect(page.locator('#familyNameEng_error')).toBeVisible() + }) + + test('2.2. Enter less than 33 English characters', async ({ page }) => { + await page.locator('#familyNameEng').fill('Rakibul Islam') + await page.getByText('Witness 2 details').click() + + await expect(page.locator('#familyNameEng_error')).toBeHidden() + }) + + test('2.3. Enter Field as NULL', async ({ page }) => { + await page.locator('#familyNameEng').click() + await page.locator('#relationship').click() + await expect( + page.getByText('Required for registration', { exact: true }) + ).toBeVisible() + }) + + test('2.4. Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#familyNameEng').fill(LONG_NAME) + await page.getByText('Witness 2 details').click() + + await expect(page.locator('#familyNameEng')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + test('3. Select any to the following option from Relationship to spouses:', async ({ + page + }) => { + await page.locator('#relationship').click() + await page.getByText('Other', { exact: true }).click() + await expect(page.getByText('Other', { exact: true })).toBeVisible() + }) + test('4. Click continue', async ({ page }) => { + await page.getByText('Continue', { exact: true }).click() + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/marriage/declaration/marriage-declaration-1.spec.ts b/e2e/testcases/marriage/declaration/marriage-declaration-1.spec.ts new file mode 100644 index 0000000000..1633ee46ea --- /dev/null +++ b/e2e/testcases/marriage/declaration/marriage-declaration-1.spec.ts @@ -0,0 +1,895 @@ +import { test, expect, type Page } from '@playwright/test' +import { + assignRecord, + auditRecord, + continueForm, + drawSignature, + expectOutboxToBeEmpty, + expectTextWithChangeLink, + formatDateObjectTo_ddMMMMyyyy, + getAction, + getRandomDate, + goToSection, + login +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' + +test.describe.serial('1. Marriage declaration case - 1', () => { + let page: Page + const declaration = { + informantType: 'Groom', + informantEmail: faker.internet.email(), + groom: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + lastNameAtBirth: faker.person.lastName('male'), + address: { + country: 'Farajaland', + province: 'Pualula', + district: 'Embe', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + bride: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + lastNameAtBirth: faker.person.lastName('female'), + + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Ilanga', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + + event: { + date: getRandomDate(0, 2), + typeOfMarriage: 'Monogamous', + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Ilanga', + urbanOrRural: 'Urban', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + + witness1: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + relationshipToSpouses: "Head of groom's family" + }, + + witness2: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + relationshipToSpouses: "Head of groom's family" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.ANOTHER_FIELD_AGENT.USERNAME, + CREDENTIALS.ANOTHER_FIELD_AGENT.PASSWORD + ) + await page.click('#header_new_event') + await page.getByLabel('Marriage').click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.1 Fill informant details', async () => { + await page.locator('#informantType').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with child + + await page.locator('#registrationEmail').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test('1.1.2 Fill groom details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.groom.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.groom.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.groom.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.groom.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.groom.birthDate.yyyy) + + await page.locator('#groomIdType').click() + await page + .getByText(declaration.groom.identifier.type, { exact: true }) + .click() + + await page + .locator('#groomNationalId') + .fill(declaration.groom.identifier.id) + + await page + .locator('#marriedLastNameEng') + .fill(declaration.groom.lastNameAtBirth) + + await page.locator('#statePrimaryGroom').click() + await page + .getByText(declaration.groom.address.province, { exact: true }) + .click() + + await page.locator('#districtPrimaryGroom').click() + await page + .getByText(declaration.groom.address.district, { exact: true }) + .click() + + await page.getByLabel(declaration.groom.address.urbanOrRural).check() + + await page + .locator('#cityPrimaryGroom') + .fill(declaration.groom.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryGroom') + .fill(declaration.groom.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryGroom') + .fill(declaration.groom.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryGroom') + .fill(declaration.groom.address.number) + + await page + .locator('#postalCodePrimaryGroom') + .fill(declaration.groom.address.postcodeOrZip) + + await continueForm(page) + }) + + test('1.1.3 Fill bride details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.bride.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.bride.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.bride.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.bride.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.bride.birthDate.yyyy) + + await page.locator('#brideIdType').click() + await page + .getByText(declaration.bride.identifier.type, { exact: true }) + .click() + + await page + .locator('#brideNationalId') + .fill(declaration.bride.identifier.id) + + await page + .locator('#marriedLastNameEng') + .fill(declaration.bride.lastNameAtBirth) + + await page.getByLabel(declaration.bride.address.urbanOrRural).check() + + await page + .locator('#cityPrimaryBride') + .fill(declaration.bride.address.town) + + await page + .locator('#addressLine1UrbanOptionPrimaryBride') + .fill(declaration.bride.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPrimaryBride') + .fill(declaration.bride.address.street) + + await page + .locator('#addressLine3UrbanOptionPrimaryBride') + .fill(declaration.bride.address.number) + + await page + .locator('#postalCodePrimaryBride') + .fill(declaration.bride.address.postcodeOrZip) + + await continueForm(page) + }) + + test('1.1.4 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.event.date.dd) + await page.getByPlaceholder('mm').fill(declaration.event.date.mm) + await page.getByPlaceholder('yyyy').fill(declaration.event.date.yyyy) + + await page.locator('#typeOfMarriage').click() + await page + .getByText(declaration.event.typeOfMarriage, { exact: true }) + .click() + + await page.getByLabel(declaration.event.address.urbanOrRural).check() + + await page + .locator('#cityPlaceofmarriage') + .fill(declaration.event.address.town) + + await page + .locator('#addressLine1UrbanOptionPlaceofmarriage') + .fill(declaration.event.address.residentialArea) + + await page + .locator('#addressLine2UrbanOptionPlaceofmarriage') + .fill(declaration.event.address.street) + + await page + .locator('#addressLine3UrbanOptionPlaceofmarriage') + .fill(declaration.event.address.number) + + await page + .locator('#postalCodePlaceofmarriage') + .fill(declaration.event.address.postcodeOrZip) + + await continueForm(page) + }) + + test('1.1.5 Fill witness1 details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.witness1.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.witness1.name.familyName) + + await page.locator('#relationship').click() + await page + .getByText(declaration.witness1.relationshipToSpouses, { exact: true }) + .click() + + await continueForm(page) + }) + + test('1.1.6 Fill witness2 details', async () => { + await page + .locator('#firstNamesEng') + .fill(declaration.witness2.name.firstNames) + await page + .locator('#familyNameEng') + .fill(declaration.witness2.name.familyName) + + await page.locator('#relationship').click() + await page + .getByText(declaration.witness2.relationshipToSpouses, { exact: true }) + .click() + + await continueForm(page) + }) + + test('1.1.7 Go to preview', async () => { + await goToSection(page, 'preview') + }) + + test('1.1.8 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Groom's Fullname + * - Change button + */ + await expectTextWithChangeLink(page.locator('#groom-content #Full'), [ + declaration.groom.name.firstNames, + declaration.groom.name.familyName + ]) + + /* + * Expected result: should include + * - Groom's date of birth + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#groom-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.groom.birthDate) + ]) + + /* + * Expected result: should include + * - Groom's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#groom-content #Nationality'), + [declaration.groom.nationality] + ) + + /* + * Expected result: should include + * - Groom's Type of ID + * - Groom's ID Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#groom-content #Type'), [ + declaration.groom.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#groom-content #ID'), [ + declaration.groom.identifier.id + ]) + + /* + * Expected result: should include + * - Groom's Lastname At Birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#groom-content #Last'), [ + declaration.groom.lastNameAtBirth + ]) + + /* + * Expected result: should include + * - groom's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#groom-content #Usual'), [ + declaration.groom.address.country, + declaration.groom.address.district, + declaration.groom.address.province, + declaration.groom.address.town, + declaration.groom.address.residentialArea, + declaration.groom.address.street, + declaration.groom.address.number, + declaration.groom.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Bride's Fullname + * - Change button + */ + await expectTextWithChangeLink(page.locator('#bride-content #Full'), [ + declaration.bride.name.firstNames, + declaration.bride.name.familyName + ]) + + /* + * Expected result: should include + * - Bride's date of birth + * - Change button + */ + + await expectTextWithChangeLink(page.locator('#bride-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.bride.birthDate) + ]) + + /* + * Expected result: should include + * - Bride's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#bride-content #Nationality'), + [declaration.bride.nationality] + ) + + /* + * Expected result: should include + * - Bride's Type of ID + * - Bride's ID Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#bride-content #Type'), [ + declaration.bride.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#bride-content #ID'), [ + declaration.bride.identifier.id + ]) + + /* + * Expected result: should include + * - Bride's Lastname At Birth + * - Change button + */ + await expectTextWithChangeLink(page.locator('#bride-content #Last'), [ + declaration.bride.lastNameAtBirth + ]) + + /* + * Expected result: should include + * - bride's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#bride-content #Usual'), [ + declaration.bride.address.country, + declaration.bride.address.district, + declaration.bride.address.province, + declaration.bride.address.town, + declaration.bride.address.residentialArea, + declaration.bride.address.street, + declaration.bride.address.number, + declaration.bride.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of Marriage + * - Change button + */ + + await expectTextWithChangeLink( + page.locator('#marriageEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Type of Marriage + * - Change button + */ + + await expectTextWithChangeLink( + page.locator('#marriageEvent-content #Type'), + [declaration.event.typeOfMarriage] + ) + + /* + * Expected result: should include + * - Place of Marriage + * - Change button + */ + + await expectTextWithChangeLink( + page.locator('#marriageEvent-content #Place'), + [ + declaration.event.address.country, + declaration.event.address.district, + declaration.event.address.province, + declaration.event.address.town, + declaration.event.address.residentialArea, + declaration.event.address.street, + declaration.event.address.number, + declaration.event.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - Witness1 Name + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#witnessOne-content #Witness'), + [ + declaration.witness1.name.firstNames, + declaration.witness1.name.familyName + ] + ) + + /* + * Expected result: should include + * - Witness1 Relationship to spouse + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#witnessOne-content #Relationship'), + [declaration.witness1.relationshipToSpouses] + ) + + /* + * Expected result: should include + * - Witness2 Name + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#witnessTwo-content #Witness'), + [ + declaration.witness2.name.firstNames, + declaration.witness2.name.familyName + ] + ) + + /* + * Expected result: should include + * - Witness2 Relationship to spouse + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#witnessTwo-content #Relationship'), + [declaration.witness2.relationshipToSpouses] + ) + }) + + test('1.1.9 Fill up bride signature', async () => { + await page.getByRole('button', { name: 'Sign' }).nth(0).click() + await drawSignature(page, 'brideSignature_modal') + await page + .locator('#brideSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('1.1.10 Fill up groom signature', async () => { + await page.getByRole('button', { name: 'Sign' }).nth(0).click() + await drawSignature(page, 'groomSignature_modal') + await page + .locator('#groomSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('1.1.11 Fill up witnessOne signature', async () => { + await page.getByRole('button', { name: 'Sign' }).nth(0).click() + await drawSignature(page, 'witnessOneSignature_modal') + await page + .locator('#witnessOneSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('1.1.12 Fill up witnessTwo signature', async () => { + await page.getByRole('button', { name: 'Sign' }).nth(0).click() + await drawSignature(page, 'witnessTwoSignature_modal') + await page + .locator('#witnessTwoSignature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('1.1.13 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to registration home + */ + expect(page.url().includes('registration-home')).toBeTruthy() + + await expectOutboxToBeEmpty(page) + + await page.getByRole('button', { name: 'Sent for review' }).click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: `${declaration.groom.name.firstNames} ${declaration.groom.name.familyName} & ${declaration.bride.name.firstNames} ${declaration.bride.name.familyName}` + }) + ).toBeVisible() + }) + }) + + test.describe('1.2 Declaration Review by RA', async () => { + test('1.2.1 Navigate to the declaration review page', async () => { + await login( + page, + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + + await auditRecord({ + page, + name: `${declaration.groom.name.firstNames} ${declaration.groom.name.familyName} & ${declaration.bride.name.firstNames} ${declaration.bride.name.familyName}` + }) + + await assignRecord(page) + + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Review declaration').click() + }) + + test('1.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Informant's type + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Informant'), + [declaration.informantType] + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#informant-content #Email'), + [declaration.informantEmail] + ) + + /* + * Expected result: should include + * - Groom's First Name + * - Groom's Family Name + * - Change button + */ + await expect(page.locator('#groom-content #Full')).toContainText( + declaration.groom.name.firstNames + ) + await expectTextWithChangeLink(page.locator('#groom-content #Full'), [ + declaration.groom.name.familyName + ]) + + /* + * Expected result: should include + * - Groom's birth date + * - Change button + */ + await expectTextWithChangeLink(page.locator('#groom-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.groom.birthDate) + ]) + + /* + * Expected result: should include + * - Groom's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#groom-content #Nationality'), + [declaration.groom.nationality] + ) + + /* + * Expected result: should include + * - Groom's Type of Id + * - Groom's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#groom-content #Type'), [ + declaration.groom.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#groom-content #ID'), [ + declaration.groom.identifier.id + ]) + /* + * Expected result: should include + * - Groom's Last Name at Birth + * - Change button + */ + await expect(page.locator('#groom-content #Last')).toContainText( + declaration.groom.lastNameAtBirth + ) + + /* + * Expected result: should include + * - Groom's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#groom-content #Usual'), [ + declaration.groom.address.country, + declaration.groom.address.district, + declaration.groom.address.province, + declaration.groom.address.town, + declaration.groom.address.residentialArea, + declaration.groom.address.street, + declaration.groom.address.number, + declaration.groom.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Bride's First Name + * - Bride's Family Name + * - Change button + */ + await expect(page.locator('#bride-content #Full')).toContainText( + declaration.bride.name.firstNames + ) + await expectTextWithChangeLink(page.locator('#bride-content #Full'), [ + declaration.bride.name.familyName + ]) + + /* + * Expected result: should include + * - Bride's birth date + * - Change button + */ + await expectTextWithChangeLink(page.locator('#bride-content #Date'), [ + formatDateObjectTo_ddMMMMyyyy(declaration.bride.birthDate) + ]) + + /* + * Expected result: should include + * - Bride's Nationality + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#bride-content #Nationality'), + [declaration.bride.nationality] + ) + + /* + * Expected result: should include + * - Bride's Type of Id + * - Bride's Id Number + * - Change button + */ + await expectTextWithChangeLink(page.locator('#bride-content #Type'), [ + declaration.bride.identifier.type + ]) + await expectTextWithChangeLink(page.locator('#bride-content #ID'), [ + declaration.bride.identifier.id + ]) + /* + * Expected result: should include + * - Bride's Last Name at Birth + * - Change button + */ + await expect(page.locator('#bride-content #Last')).toContainText( + declaration.bride.lastNameAtBirth + ) + + /* + * Expected result: should include + * - Bride's address + * - Change button + */ + await expectTextWithChangeLink(page.locator('#bride-content #Usual'), [ + declaration.bride.address.country, + declaration.bride.address.district, + declaration.bride.address.province, + declaration.bride.address.town, + declaration.bride.address.residentialArea, + declaration.bride.address.street, + declaration.bride.address.number, + declaration.bride.address.postcodeOrZip + ]) + + /* + * Expected result: should include + * - Date of marriage + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#marriageEvent-content #Date'), + [formatDateObjectTo_ddMMMMyyyy(declaration.event.date)] + ) + + /* + * Expected result: should include + * - Type of marriage + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#marriageEvent-content #Type'), + [declaration.event.typeOfMarriage] + ) + + /* + * Expected result: should include + * - Place of marriage + * - Change button + */ + await expectTextWithChangeLink( + page.locator('#marriageEvent-content #Place'), + [ + declaration.event.address.country, + declaration.event.address.province, + declaration.event.address.district, + declaration.event.address.town, + declaration.event.address.residentialArea, + declaration.event.address.street, + declaration.event.address.number, + declaration.event.address.postcodeOrZip + ] + ) + + /* + * Expected result: should include + * - WitnessOne's First Name + * - WitnessOne's Family Name + * - Change button + */ + await expect(page.locator('#witnessOne-content #Witness')).toContainText( + declaration.witness1.name.firstNames + ) + await expectTextWithChangeLink( + page.locator('#witnessOne-content #Witness'), + [declaration.witness1.name.familyName] + ) + + /* + * Expected result: should include + * - WitnessOne's relationship + * - Change button + */ + + await expect( + page.locator('#witnessOne-content #Relationship') + ).toContainText(declaration.witness1.relationshipToSpouses) + + /* + * Expected result: should include + * - WitnessTwo's First Name + * - WitnessTwo's Family Name + * - Change button + */ + await expect(page.locator('#witnessTwo-content #Witness')).toContainText( + declaration.witness2.name.firstNames + ) + await expectTextWithChangeLink( + page.locator('#witnessTwo-content #Witness'), + [declaration.witness2.name.familyName] + ) + + /* + * Expected result: should include + * - WitnessTwo's relationship + * - Change button + */ + + await expect( + page.locator('#witnessTwo-content #Relationship') + ).toContainText(declaration.witness2.relationshipToSpouses) + }) + }) +}) diff --git a/e2e/testcases/navigation/.gitkeep b/e2e/testcases/navigation/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/e2e/testcases/print-certificate/birth/36.01-02-validation-of-printing-certificate.spec.ts b/e2e/testcases/print-certificate/birth/36.01-02-validation-of-printing-certificate.spec.ts new file mode 100644 index 0000000000..18acbd0e58 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.01-02-validation-of-printing-certificate.spec.ts @@ -0,0 +1,48 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('Certified copies', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.0 Click on "Print certified copy" from action menu', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + trackingId = response.trackingId + + await expect( + page + .url() + .includes(`/cert/collector/${declaration.id}/birth/certCollector`) + ).toBeTruthy() + }) + + test.describe('2.0 Validate "Certify record" page', async () => { + test('2.1 Click continue without selecting collector type', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByText('Please select who is collecting the certificate') + ).toBeVisible() + }) + + test('2.2 Click continue after selecting collector type', async () => { + await page.reload({ waitUntil: 'networkidle' }) + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByText('Please select who is collecting the certificate') + ).not.toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.03-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.03-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..94f8242002 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.03-validate-certify-record-page.spec.ts @@ -0,0 +1,99 @@ +import { expect, test, type Page } from '@playwright/test' +import { format, parseISO } from 'date-fns' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('3.0 Validate "Certify record" page', () => { + let declaration: BirthDeclaration + let trackingId = '' + + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.1 should navigate to Verify their identity page', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + trackingId = response.trackingId + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print and issue to informant (Brother)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + }) + + test('3.2 should see informant Id, names, nationality and dob', async () => { + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Verify their identity' + ) + + await expect( + page.locator(`text="${declaration.informant.name[0].firstNames}"`) + ).toBeVisible() + + await expect( + page.locator(`text="${declaration.informant.name[0].familyName}"`) + ).toBeVisible() + + await expect( + page.locator( + `text="${format( + parseISO(declaration.informant.birthDate), + 'dd MMMM yyyy' + )}"` + ) + ).toBeVisible() + + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + }) + + test('3.3 should navigate to collect payment page on "Verified" button click', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/birth`) + ).toBeTruthy() + await page.goBack() + }) + + test('3.4 should open warning modal on "Identity does not match" button click', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await expect(page.locator('#withoutVerificationPrompt')).toContainText( + 'Print without proof of ID?', + { useInnerText: true } + ) + }) + + test('3.5 click warning modal confirm button should take to payment page', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/birth`) + ).toBeTruthy() + await page.goBack() + }) + + test('3.6 click warning modal cancel button should close the modal', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await page.getByRole('button', { name: 'Cancel' }).click() + + await expect(page.locator('#withoutVerificationPrompt')).toBeHidden() + await page.goBack() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.04-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.04-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..932b488c06 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.04-validate-certify-record-page.spec.ts @@ -0,0 +1,32 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('4.0 Validate "Certify record" page', () => { + let declaration: BirthDeclaration + + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('4.1 continue with print in advance redirect to review page', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.05.06-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.05.06-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..cc99d1f981 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.05.06-validate-certify-record-page.spec.ts @@ -0,0 +1,114 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' +import { uploadImage } from '../../../helpers' + +test.describe.serial('7.0 Validate collect payment page', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('5.1 check collect payment page header', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print and issue to someone else').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page + .url() + .includes(`/collector/${declaration.id}/birth/otherCertCollector`) + ).toBeTruthy() + }) + + test('5.2 should be able to select "No ID available" and no other ID field will be visible', async () => { + await page.locator('#iDType-form-input').click() + await page.getByText('No ID available').click() + await expect(page.locator('#iD-form-input')).toBeHidden() + }) + + test('5.2 should be able to select any type of id and correspondent id input will be visible', async () => { + await page.locator('#iDType-form-input').click() + await page.getByText('Passport', { exact: true }).click() + await expect(page.locator('#iD-form-input')).toBeVisible() + await expect(page.locator('#iD_label')).toContainText('Passport') + + await page.locator('#iDType-form-input').click() + await page.getByText('Other', { exact: true }).click() + await expect(page.locator('#iD-form-input')).toBeVisible() + await expect(page.locator('#iDTypeOther-form-input')).toBeVisible() + await expect(page.locator('#iDTypeOther_label')).toContainText( + 'Other type of ID' + ) + }) + + test('5.2 should be able to select National ID and correspondent id input will be visible with validation rules', async () => { + await page.locator('#iDType-form-input').click() + await page.getByText('National ID', { exact: true }).click() + await page.fill('#iD', '1234567') + + await expect(page.locator('#iD')).toHaveValue('1234567') + await page.locator('#lastName').click() + await expect(page.locator('#iD_error')).toContainText( + 'The National ID can only be numeric and must be 10 digits long' + ) + await page.fill('#iD', '1235678922') + await expect(page.locator('#iD_error')).toBeHidden() + }) + + test('5.3 should be able to enter first name', async () => { + await page.fill('#firstName', 'Muhammed Tareq') + await expect(page.locator('#firstName')).toHaveValue('Muhammed Tareq') + }) + + test('5.4 should be able to enter lastname name', async () => { + await page.fill('#lastName', 'Aziz') + await expect(page.locator('#lastName')).toHaveValue('Aziz') + }) + + test('5.5 keep relationship null and continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.locator('#relationship_error')).toContainText('Required') + }) + + test('5.6 should be able to enter relationship', async () => { + await page.fill('#relationship', 'Uncle') + await expect(page.locator('#relationship')).toHaveValue('Uncle') + }) + + test("5.7 Fill all mandatory field and click 'Continue' should navigate to affidavit page", async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/cert/collector/${declaration.id}/birth/affidavit`) + ).toBeTruthy() + }) + + test.describe('6.0 Validate "Upload signed affidavit" page:', async () => { + test('6.1 Click continue without adding any file or clicking the checkbox should show error', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.2 Should be able to add file and navigate to the "Ready to certify?" page.', async () => { + const path = require('path') + const attachmentPath = path.resolve(__dirname, './528KB-random.png') + const inputFile = await page.locator( + 'input[name="affidavitFile"][type="file"]' + ) + await inputFile.setInputFiles(attachmentPath) + await expect( + page.getByRole('button', { name: 'Signed affidavit' }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.07-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.07-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..11bb2af999 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.07-validate-certify-record-page.spec.ts @@ -0,0 +1,78 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' +import { format } from 'date-fns' +import { CLIENT_URL } from '../../../constants' + +test.describe.serial('7.0 Validate "Certify record" page', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.1 continue with "Print and issue to informant (Brother)" redirect to Collector details page', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print and issue to informant (Brother)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/birth`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText('Collect payment') + await expect(page.locator('#service')).toContainText( + 'Birth registration before 30 days of date of birth' + ) + await expect(page.locator('#amountDue')).toContainText('$5.00') + await expect(page.locator('#Continue')).toBeVisible() + }) + + test('7.2 should navigate to ready to certify page on continue button click', async () => { + await page.locator('#Continue').click() + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + }) + + test('7.3 should skip payment page if payment is 0', async () => { + await page.goto(`${CLIENT_URL}/registration-home/print/1`) + const response = await getDeclarationForPrintCertificate(page, { + child: { birthDate: format(new Date(), 'yyyy-MM-dd') }, + isLoggedIn: true + }) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Birth Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Brother)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.08-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.08-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..5e71ec7973 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.08-validate-certify-record-page.spec.ts @@ -0,0 +1,63 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('8.0 Validate "Payment" page', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.1 Payment page should correct payment fee based on selected template', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print and issue to informant (Brother)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/birth`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText('Collect payment') + await expect(page.locator('#service')).toContainText( + 'Birth registration before 30 days of date of birth' + ) + await expect(page.locator('#amountDue')).toContainText('$5.00') + await expect(page.locator('#Continue')).toBeVisible() + + await page.goBack() + await page.goBack() + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Birth Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Brother)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.09-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.09-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..b15115b811 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.09-validate-certify-record-page.spec.ts @@ -0,0 +1,53 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('9.0 Validate "Payment" page', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('9.1 Review page validations', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Birth Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Brother)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.10-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.10-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..b6b6e33b5e --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.10-validate-certify-record-page.spec.ts @@ -0,0 +1,71 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('10.0 Validate "Review" page', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('10.1 Review page validations', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Birth Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Brother)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/birth/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await expect(page.locator('#confirm-print-modal')).toBeVisible() + await expect(page.locator('#confirm-print-modal')).toContainText( + 'Print and issue certificate?' + ) + await expect(page.locator('#confirm-print-modal')).toContainText( + 'A Pdf of the certificate will open in a new tab for printing and issuing' + ) + }) + + test('10.2 On click cancel button, modal will be closed', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) + + test('10.3 On click print button, user will navigate to a new tab from where user can download PDF', async () => { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.11-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.11-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..add9979d7a --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.11-validate-certify-record-page.spec.ts @@ -0,0 +1,69 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('11.0 Validate "Review" page', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('11.1 Review page validations', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Birth Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await expect(page.locator('#confirm-print-modal')).toBeVisible() + await expect(page.locator('#confirm-print-modal')).toContainText( + 'Print certificate?' + ) + await expect(page.locator('#confirm-print-modal')).toContainText( + 'A Pdf of the certificate will open in a new tab for printing. The record will move to the ready-to-issue queue' + ) + }) + + test('11.2 On click cancel button, modal will be closed', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) + + test('11.3 On click print button, user will navigate to a new tab from where user can download PDF', async () => { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.12-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.12-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..ffb6e47182 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.12-validate-certify-record-page.spec.ts @@ -0,0 +1,64 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('12.0 Validate "Review" page', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('12.1 Review page click make correction', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Birth Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page.url().includes(`/review/${declaration.id}/birth`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + }) + + test('12.2 Navigated to correction requester page', async () => { + await page.getByRole('button', { name: 'No, make correction' }).click() + await expect( + page.url().includes(`/correction/${declaration.id}/corrector`) + ).toBeTruthy() + }) + + test('12.3 Validate correction requester page', async () => { + await page.getByText('Mother', { exact: true }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.getByText('Verify their identity')).toBeVisible() + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/36.13-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/birth/36.13-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..51508861b0 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/36.13-validate-certify-record-page.spec.ts @@ -0,0 +1,51 @@ +import { expect, test, type Page } from '@playwright/test' +import { BirthDeclaration } from '../../birth/types' +import { getDeclarationForPrintCertificate } from './certificate-helper' + +test.describe + .serial('13.0 Validate the history section of record audit after printing', () => { + let declaration: BirthDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('13.1 Go to printed declaration details page by Print in advance', async () => { + const response = await getDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Birth Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.locator('#print-certificate').click() + + await page + .getByPlaceholder('Search for a tracking ID') + .fill(declaration.registration.trackingId) + await page.getByPlaceholder('Search for a tracking ID').press('Enter') + await page.locator('#ListItemAction-0-icon').click() + + const assignRecordModal = await page.locator('#assign').isVisible() + if (assignRecordModal) { + await page.locator('#assign').click() + } + await page.locator('#name_0').click() + await expect(page.getByRole('button', { name: 'Certified' })).toBeVisible() + + await page.getByRole('button', { name: 'Certified' }).click() + await expect( + page.getByText('Birth Certificate Certified Copy') + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/print-certificate/birth/528KB-random.png b/e2e/testcases/print-certificate/birth/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/e2e/testcases/print-certificate/birth/528KB-random.png differ diff --git a/e2e/testcases/print-certificate/birth/certificate-helper.ts b/e2e/testcases/print-certificate/birth/certificate-helper.ts new file mode 100644 index 0000000000..1e7971f043 --- /dev/null +++ b/e2e/testcases/print-certificate/birth/certificate-helper.ts @@ -0,0 +1,80 @@ +import { faker } from '@faker-js/faker' +import { expect, type Page } from '@playwright/test' +import { CREDENTIALS } from '../../../constants' +import { getToken, login, createPIN, getAction } from '../../../helpers' +import { + ConvertEnumsToStrings, + createDeclaration, + fetchDeclaration +} from '../../birth/helpers' +import { BirthInputDetails, BirthDeclaration } from '../../birth/types' + +export async function getDeclarationForPrintCertificate( + page: Page, + options?: Record +): Promise<{ + declaration: BirthDeclaration + trackingId: string +}> { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const declarationInput = { + child: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName(), + gender: 'male', + ...(options && { birthDate: options.child.birthDate }) + }, + informant: { + type: 'BROTHER' + }, + attendant: { + type: 'PHYSICIAN' + }, + mother: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + }, + father: { + firstNames: faker.person.firstName(), + familyName: faker.person.firstName() + } + } as ConvertEnumsToStrings + + const res = await createDeclaration(token, declarationInput) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + const trackingId = res.trackingId + const declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchBirthRegistration as BirthDeclaration + + if (!options?.isLoggedIn) { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + } + + await page.getByPlaceholder('Search for a tracking ID').fill(trackingId) + await page.getByPlaceholder('Search for a tracking ID').press('Enter') + await page.locator('#ListItemAction-0-icon').click() + + const assignRecordModal = await page.locator('#assign').isVisible() + if (assignRecordModal) { + await page.locator('#assign').click() + } + + await page.locator('#name_0').click() + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + return { declaration, trackingId } +} diff --git a/e2e/testcases/print-certificate/death/36.01-02-validation-of-printing-certificate.spec.ts b/e2e/testcases/print-certificate/death/36.01-02-validation-of-printing-certificate.spec.ts new file mode 100644 index 0000000000..3fbe5a9183 --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.01-02-validation-of-printing-certificate.spec.ts @@ -0,0 +1,48 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('Certified copies', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.0 Click on "Print certified copy" from action menu', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + trackingId = response.trackingId + + await expect( + page + .url() + .includes(`/cert/collector/${declaration.id}/death/certCollector`) + ).toBeTruthy() + }) + + test.describe('2.0 Validate "Certify record" page', async () => { + test('2.1 Click continue without selecting collector', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByText('Please select who is collecting the certificate') + ).toBeVisible() + }) + + test('2.2 Click continue after selecting collector type', async () => { + await page.reload({ waitUntil: 'networkidle' }) + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByText('Please select who is collecting the certificate') + ).not.toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.03-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.03-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..9bb38e3d58 --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.03-validate-certify-record-page.spec.ts @@ -0,0 +1,99 @@ +import { expect, test, type Page } from '@playwright/test' +import { format, parseISO } from 'date-fns' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('3.0 Validate "Certify record" page', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.1 should navigate to Verify their identity page', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + trackingId = response.trackingId + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print and issue to informant (Spouse)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + }) + + test('3.2 should see informant Id, names, nationality and dob', async () => { + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Verify their identity' + ) + + await expect( + page.locator(`text="${declaration.informant.name[0].firstNames}"`) + ).toBeVisible() + + await expect( + page.locator(`text="${declaration.informant.name[0].familyName}"`) + ).toBeVisible() + + await expect( + page.locator( + `text="${format( + parseISO(declaration.informant.birthDate), + 'dd MMMM yyyy' + )}"` + ) + ).toBeVisible() + + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + }) + + test('3.3 should navigate to collect payment page on "Verified" button click', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/death`) + ).toBeTruthy() + await page.goBack() + }) + + test('3.4 should open warning modal on "Identity does not match" button click', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await expect(page.locator('#withoutVerificationPrompt')).toContainText( + 'Print without proof of ID?', + { useInnerText: true } + ) + }) + + test('3.5 click warning modal confirm button should take to payment page', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/death`) + ).toBeTruthy() + await page.goBack() + }) + + test('3.6 click warning modal cancel button should close the modal', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await page.getByRole('button', { name: 'Cancel' }).click() + console.log(page.locator('#withoutVerificationPrompt')) + await expect(page.locator('#withoutVerificationPrompt')).toBeHidden() + await page.goBack() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.04-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.04-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..1dafd0714e --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.04-validate-certify-record-page.spec.ts @@ -0,0 +1,34 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('4.0 Validate "Certify record" page', () => { + let declaration: DeathDeclaration + let trackingId = '' + + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('4.1 continue with print in advance redirect to review page', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + trackingId = response.trackingId + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.05.06-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.05.06-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..5504b645cf --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.05.06-validate-certify-record-page.spec.ts @@ -0,0 +1,112 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('7.0 Validate collect payment page', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('5.1 check collect payment page header', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page.getByLabel('Print and issue to someone else').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page + .url() + .includes(`/collector/${declaration.id}/death/otherCertCollector`) + ).toBeTruthy() + }) + + test('5.2 should be able to select "No ID available" and no other ID field will be visible', async () => { + await page.locator('#iDType-form-input').click() + await page.getByText('No ID available').click() + await expect(page.locator('#iD-form-input')).toBeHidden() + }) + + test('5.2 should be able to select any type of id and correspondent id input will be visible', async () => { + await page.locator('#iDType-form-input').click() + await page.getByText('Passport', { exact: true }).click() + await expect(page.locator('#iD-form-input')).toBeVisible() + await expect(page.locator('#iD_label')).toContainText('Passport') + + await page.locator('#iDType-form-input').click() + await page.getByText('Other', { exact: true }).click() + await expect(page.locator('#iD-form-input')).toBeVisible() + await expect(page.locator('#iDTypeOther-form-input')).toBeVisible() + await expect(page.locator('#iDTypeOther_label')).toContainText( + 'Other type of ID' + ) + }) + + test('5.2 should be able to select National ID and correspondent id input will be visible with validation rules', async () => { + await page.locator('#iDType-form-input').click() + await page.getByText('National ID', { exact: true }).click() + await page.fill('#iD', '1234567') + + await expect(page.locator('#iD')).toHaveValue('1234567') + await page.locator('#lastName').click() + await expect(page.locator('#iD_error')).toContainText( + 'The National ID can only be numeric and must be 10 digits long' + ) + await page.fill('#iD', '1235678922') + await expect(page.locator('#iD_error')).toBeHidden() + }) + + test('5.3 should be able to enter first name', async () => { + await page.fill('#firstName', 'Muhammed Tareq') + await expect(page.locator('#firstName')).toHaveValue('Muhammed Tareq') + }) + + test('5.4 should be able to enter lastname name', async () => { + await page.fill('#lastName', 'Aziz') + await expect(page.locator('#lastName')).toHaveValue('Aziz') + }) + + test('5.5 keep relationship null and continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.locator('#relationship_error')).toContainText('Required') + }) + + test('5.6 should be able to enter relationship', async () => { + await page.fill('#relationship', 'Uncle') + await expect(page.locator('#relationship')).toHaveValue('Uncle') + }) + + test("5.7 Fill all mandatory field and click 'Continue' should navigate to affidavit page", async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/cert/collector/${declaration.id}/death/affidavit`) + ).toBeTruthy() + }) + + test.describe('6.0 Validate "Upload signed affidavit" page:', async () => { + test('6.1 Click continue without adding any file or clicking the checkbox should show error', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.2 Should be able to add file and navigate to the "Ready to certify?" page.', async () => { + const path = require('path') + const attachmentPath = path.resolve(__dirname, './528KB-random.png') + const inputFile = await page.locator( + 'input[name="affidavitFile"][type="file"]' + ) + await inputFile.setInputFiles(attachmentPath) + await expect( + page.getByRole('button', { name: 'Signed affidavit' }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.07-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.07-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..efb10cd124 --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.07-validate-certify-record-page.spec.ts @@ -0,0 +1,77 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' +import { format } from 'date-fns' +import { CLIENT_URL } from '../../../constants' + +test.describe.serial('7.0 Validate "Certify record" page', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.1 continue with "Print and issue to informant (Spouse)" redirect to Collector details page', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page.getByLabel('Print and issue to informant (Spouse)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/death`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText('Collect payment') + await expect(page.locator('#service')).toContainText( + 'Death registration before 45 days of date of death' + ) + await expect(page.locator('#amountDue')).toContainText('$3.00') + await expect(page.locator('#Continue')).toBeVisible() + }) + + test('7.2 should navigate to ready to certify page on continue button click', async () => { + await page.locator('#Continue').click() + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + }) + + test('7.3 should skip payment page if payment is 0', async () => { + await page.goto(`${CLIENT_URL}/registration-home/print/1`) + const response = await getDeathDeclarationForPrintCertificate(page, { + event: { date: format(new Date(), 'yyyy-MM-dd') }, + isLoggedIn: true + }) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Death Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Spouse)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.08-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.08-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..2f590eb1f4 --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.08-validate-certify-record-page.spec.ts @@ -0,0 +1,64 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' +import { format } from 'date-fns' +import { CLIENT_URL } from '../../../constants' + +test.describe.serial('8.0 Validate "Payment" page', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.1 Payment page should correct payment fee based on selected template', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page.getByLabel('Print and issue to informant (Spouse)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/print/payment/${declaration.id}/death`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText('Collect payment') + await expect(page.locator('#service')).toContainText( + 'Death registration before 45 days of date of death' + ) + await expect(page.locator('#amountDue')).toContainText('$3.00') + await expect(page.locator('#Continue')).toBeVisible() + + await page.goBack() + await page.goBack() + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Death Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Spouse)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.09-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.09-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..6b715867fd --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.09-validate-certify-record-page.spec.ts @@ -0,0 +1,53 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('9.0 Validate "Payment" page', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('9.1 Review page validations', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Death Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Spouse)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.10-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.10-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..18165c6cef --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.10-validate-certify-record-page.spec.ts @@ -0,0 +1,71 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('10.0 Validate "Review" page', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('10.1 Review page validations', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Death Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print and issue to informant (Spouse)').check() + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.url().includes(`/print/check/${declaration.id}/death/informant`) + ).toBeTruthy() + + await page.getByRole('button', { name: 'Verified' }).click() + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await expect(page.locator('#confirm-print-modal')).toBeVisible() + await expect(page.locator('#confirm-print-modal')).toContainText( + 'Print and issue certificate?' + ) + await expect(page.locator('#confirm-print-modal')).toContainText( + 'A Pdf of the certificate will open in a new tab for printing and issuing.' + ) + }) + + test('10.2 On click cancel button, modal will be closed', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) + + test('10.3 On click print button, user will navigate to a new tab from where user can download PDF', async () => { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.11-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.11-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..8a3f81b614 --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.11-validate-certify-record-page.spec.ts @@ -0,0 +1,69 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('11.0 Validate "Review" page', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('11.1 Review page validations', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Death Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await expect(page.locator('#confirm-print-modal')).toBeVisible() + await expect(page.locator('#confirm-print-modal')).toContainText( + 'Print certificate?' + ) + await expect(page.locator('#confirm-print-modal')).toContainText( + 'A Pdf of the certificate will open in a new tab for printing. The record will move to the ready-to-issue queue' + ) + }) + + test('11.2 On click cancel button, modal will be closed', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) + + test('11.3 On click print button, user will navigate to a new tab from where user can download PDF', async () => { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.12-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.12-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..24e15bf27e --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.12-validate-certify-record-page.spec.ts @@ -0,0 +1,64 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe.serial('12.0 Validate "Review" page', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('12.1 Review page click make correction', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Death Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page.url().includes(`/review/${declaration.id}/death`) + ).toBeTruthy() + + await expect(page.locator('#content-name')).toContainText( + 'Ready to certify?' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + }) + + test('12.2 Navigated to correction requester page', async () => { + await page.getByRole('button', { name: 'No, make correction' }).click() + await expect( + page.url().includes(`/correction/${declaration.id}/corrector`) + ).toBeTruthy() + }) + + test('12.3 Validate correction requester page', async () => { + await page.getByText('Informant (Spouse)', { exact: true }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.getByText('Verify their identity')).toBeVisible() + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/print-certificate/death/36.13-validate-certify-record-page.spec.ts b/e2e/testcases/print-certificate/death/36.13-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..9964ddded0 --- /dev/null +++ b/e2e/testcases/print-certificate/death/36.13-validate-certify-record-page.spec.ts @@ -0,0 +1,51 @@ +import { expect, test, type Page } from '@playwright/test' +import { DeathDeclaration } from '../../death/types' +import { getDeathDeclarationForPrintCertificate } from './certificate-helper' + +test.describe + .serial('13.0 Validate the history section of record audit after printing', () => { + let declaration: DeathDeclaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('13.1 Go to printed declaration details page by Print in advance', async () => { + const response = await getDeathDeclarationForPrintCertificate(page) + declaration = response.declaration + await page + .locator('#certificateTemplateId-form-input > span') + .first() + .click() + await page + .getByText('Death Certificate Certified Copy', { exact: true }) + .click() + await page.getByLabel('Print in advance').check() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.locator('#print-certificate').click() + + await page + .getByPlaceholder('Search for a tracking ID') + .fill(declaration.registration.trackingId) + await page.getByPlaceholder('Search for a tracking ID').press('Enter') + await page.locator('#ListItemAction-0-icon').click() + + const assignRecordModal = await page.locator('#assign').isVisible() + if (assignRecordModal) { + await page.locator('#assign').click() + } + await page.locator('#name_0').click() + await expect(page.getByRole('button', { name: 'Certified' })).toBeVisible() + + await page.getByRole('button', { name: 'Certified' }).click() + await expect( + page.getByText('Death Certificate Certified Copy') + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/print-certificate/death/528KB-random.png b/e2e/testcases/print-certificate/death/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/e2e/testcases/print-certificate/death/528KB-random.png differ diff --git a/e2e/testcases/print-certificate/death/certificate-helper.ts b/e2e/testcases/print-certificate/death/certificate-helper.ts new file mode 100644 index 0000000000..571b64c51f --- /dev/null +++ b/e2e/testcases/print-certificate/death/certificate-helper.ts @@ -0,0 +1,61 @@ +import { faker } from '@faker-js/faker' +import { expect, type Page } from '@playwright/test' +import { CREDENTIALS } from '../../../constants' +import { getToken, login, createPIN, getAction } from '../../../helpers' +import { DeathDeclaration } from '../../death/types' +import { + createDeathDeclaration, + DeathDeclarationInput, + fetchDeclaration +} from '../../death/helpers' + +export async function getDeathDeclarationForPrintCertificate( + page: Page, + options?: Record +): Promise<{ + declaration: DeathDeclaration + trackingId: string +}> { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + const res = await createDeathDeclaration( + token, + options as DeathDeclarationInput + ) + expect(res).toStrictEqual({ + trackingId: expect.any(String), + compositionId: expect.any(String), + isPotentiallyDuplicate: false, + __typename: 'CreatedIds' + }) + + const trackingId = res.trackingId + const declaration = (await fetchDeclaration(token, res.compositionId)).data + .fetchDeathRegistration as DeathDeclaration + + if (!options?.isLoggedIn) { + await login( + page, + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + } + + await page.getByPlaceholder('Search for a tracking ID').fill(trackingId) + await page.getByPlaceholder('Search for a tracking ID').press('Enter') + await page.locator('#ListItemAction-0-icon').click() + + const assignRecordModal = await page.locator('#assign').isVisible() + if (assignRecordModal) { + await page.locator('#assign').click() + } + + await page.locator('#name_0').click() + await page.getByRole('button', { name: 'Action' }).first().click() + await getAction(page, 'Print certified copy').click() + + return { declaration, trackingId } +} diff --git a/e2e/testcases/team/.gitkeep b/e2e/testcases/team/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/e2e/testcases/team/user-creation-registrar.spec.ts b/e2e/testcases/team/user-creation-registrar.spec.ts new file mode 100644 index 0000000000..43bb642486 --- /dev/null +++ b/e2e/testcases/team/user-creation-registrar.spec.ts @@ -0,0 +1,104 @@ +import { test, expect, type Page } from '@playwright/test' +import path from 'path' +import { + ensureLoginPageReady, + continueForm, + createPIN, + login +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS, LOGIN_URL } from '../../constants' + +test.describe.serial('1. Create user -1', () => { + let page: Page + const userinfo = { + firstName: faker.person.firstName('male'), + surname: faker.person.lastName('male'), + email: faker.internet.email(), + role: 'Local Registrar' + } + const signaturePath = path.resolve(__dirname, '../../assets/sign1.png') + const username = `${userinfo.firstName[0]}.${userinfo.surname}`.toLowerCase() + const question00 = 'What city were you born in?' + const question01 = 'What is your favorite movie?' + const question02 = 'What is your favorite food?' + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 User creation started by national system admin', async () => { + test.beforeAll(async () => { + await login( + page, + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.USERNAME, + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.PASSWORD + ) + await page.getByRole('button', { name: 'Team' }).click() + await expect(page.getByText('HQ Office')).toBeVisible() + await page.click('#add-user') + await expect(page.getByText('User details')).toBeVisible() + }) + + test('1.1.1 Fill user details', async () => { + await page.locator('#familyName').fill(userinfo.surname) + await page.locator('#firstName').fill(userinfo.firstName) + await page.locator('#email').fill(userinfo.email) + await page.locator('#role').click() + await page.getByText(userinfo.role, { exact: true }).click() + await continueForm(page) + }) + + test('1.1.2 Upload Signture', async () => { + await page.setInputFiles('input[type="file"]', signaturePath) + await continueForm(page) + }) + + test('1.1.2 Create user', async () => { + await page.getByRole('button', { name: 'Create user' }).click() + + await expect(page.getByText('Embe, Pualula')).toBeVisible() + }) + }) + + test.describe('2.1 Login with newly created user credentials', () => { + test('2.1.1 Enter your username and password', async ({ page }) => { + await page.goto(LOGIN_URL) + await ensureLoginPageReady(page) + await page.fill('#username', username) + await page.fill('#password', 'test') + await page.click('#login-mobile-submit') + + await expect(page.getByText('Welcome to Farajaland CRS')).toBeVisible({ + timeout: 30000 + }) + + await page.getByRole('button', { name: 'Start' }).click() + + //set up password + await page.fill('#NewPassword', 'Bangladesh23') + await page.fill('#ConfirmPassword', 'Bangladesh23') + await expect(page.getByText('Passwords match')).toBeVisible() + await page.getByRole('button', { name: 'Continue' }).click() + + //set up security question + await page.locator('#question-0').click() + await page.getByText(question00, { exact: true }).click() + await page.fill('#answer-0', 'Chittagong') + await page.locator('#question-1').click() + await page.getByText(question01, { exact: true }).click() + await page.fill('#answer-1', 'Into the wild') + await page.locator('#question-2').click() + await page.getByText(question02, { exact: true }).click() + await page.fill('#answer-2', 'Burger') + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.getByText('Account setup complete')).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-action-menu/action-menu-options.spec.ts b/e2e/testcases/v2-action-menu/action-menu-options.spec.ts new file mode 100644 index 0000000000..5bca0042d4 --- /dev/null +++ b/e2e/testcases/v2-action-menu/action-menu-options.spec.ts @@ -0,0 +1,104 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { ActionType } from '@opencrvs/toolkit/events' + +async function getActionMenuOptions(page: Page, declaration: Declaration) { + const childName = `${declaration['child.name'].firstname} ${declaration['child.name'].surname}` + await page.getByRole('button', { name: childName }).click() + await page.getByRole('button', { name: 'Action', exact: true }).click() + const options = await page.locator('#action-Dropdown-Content li').all() + const textContents = await Promise.all( + options.map((option) => option.textContent()) + ) + return textContents +} + +test.describe('Action menu options', () => { + let page: Page + + test.beforeEach(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterEach(async () => { + await page.close() + }) + + test.describe('Event status: DECLARED', async () => { + let declaration: Declaration + + test.beforeAll(async () => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.DECLARE) + declaration = res.declaration + }) + + test('Registration Agent', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByRole('button', { name: 'Ready for review' }).click() + const options = await getActionMenuOptions(page, declaration) + expect(options).toStrictEqual(['Assign', 'View', 'Review', 'Archive']) + }) + + test('Local Registrar', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await page.getByRole('button', { name: 'Ready for review' }).click() + const options = await getActionMenuOptions(page, declaration) + expect(options).toStrictEqual(['Assign', 'View', 'Review', 'Archive']) + }) + }) + + test.describe('Event status: VALIDATED', async () => { + let declaration: Declaration + + test.beforeAll(async () => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.VALIDATE) + declaration = res.declaration + }) + + test('Local Registrar', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await page.getByRole('button', { name: 'Ready for review' }).click() + const options = await getActionMenuOptions(page, declaration) + expect(options).toStrictEqual(['Unassign', 'View', 'Review', 'Archive']) + }) + }) + + test.describe('Event status: REGISTERED', async () => { + let declaration: Declaration + + test.beforeAll(async () => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token, undefined) + declaration = res.declaration + }) + + test('Local Registrar', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await page.getByRole('button', { name: 'Ready to print' }).click() + const options = await getActionMenuOptions(page, declaration) + expect(options).toStrictEqual([ + 'Assign', + 'View', + 'Print', + 'Correct record' + ]) + }) + }) +}) diff --git a/e2e/testcases/v2-advanced-search/0-search-birth-event-declaration.spec.ts b/e2e/testcases/v2-advanced-search/0-search-birth-event-declaration.spec.ts new file mode 100644 index 0000000000..b19d0be3a6 --- /dev/null +++ b/e2e/testcases/v2-advanced-search/0-search-birth-event-declaration.spec.ts @@ -0,0 +1,34 @@ +import { expect, test, type Page } from '@playwright/test' +import { loginToV2 } from '../../helpers' + +test.describe.serial('Advanced Search - Birth Event Declaration', () => { + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('0.1 - Validate navigating to advanced search', async () => { + await loginToV2(page) + + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await expect( + page.getByText('Select the options to build an advanced search.') + ).toBeVisible() + }) + + test('0.3 - Validate display child details when selecting Birth', async () => { + await page.getByText('Birth').click() + await expect(page.getByText('Child details')).toBeVisible() + }) + + test('0.4 - Validate Search button disabled when form is incomplete', async () => { + const searchButton = page.locator('#search') + await expect(searchButton).toBeDisabled() + }) +}) diff --git a/e2e/testcases/v2-advanced-search/1-search-birth-event-declaration-registration-details.spec.ts b/e2e/testcases/v2-advanced-search/1-search-birth-event-declaration-registration-details.spec.ts new file mode 100644 index 0000000000..8478ac917b --- /dev/null +++ b/e2e/testcases/v2-advanced-search/1-search-birth-event-declaration-registration-details.spec.ts @@ -0,0 +1,166 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { createDeclaration } from '../v2-test-data/birth-declaration-with-father-brother' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { type } from '../../v2-utils' + +const todayDate = `${new Date().getDate() < 10 ? '0' : ''}${new Date().getDate().toString()}` +const thisMonth = `${new Date().getMonth() < 9 ? '0' : ''}${(new Date().getMonth() + 1).toString()}` +const thisYear = new Date().getFullYear().toString() + +test.describe + .serial('Advanced Search - Birth Event Declaration - Registration details', () => { + let page: Page + let [yyyy, mm, dd] = ['', '', ''] + let fullNameOfChild = '' + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + const record: Awaited> = + await createDeclaration(token, { + 'child.dob': faker.date + // Randomly chosen DOB between 2010-01-01 and 2020-12-31 + // Ensures the created record appears on the first page of search results + .between({ from: '2010-01-01', to: '2020-12-31' }) + .toISOString() + .split('T')[0], + 'child.reason': 'Other', // needed for late dob value + 'child.gender': 'female' + }) + ;[yyyy, mm, dd] = record.declaration['child.dob'].split('-') + fullNameOfChild = `${record.declaration['child.name'].firstname} ${record.declaration['child.name'].surname}` + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1 - Validate log in and load search page', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test.describe + .serial('1.5 - Validate search by registration details search fields', () => { + test('1.5.1 - Validate Place of registration filters, Date of registration Status of Record and Time Period', async () => { + await page.getByText('Registration details').click() + + await page + .locator('#event____legalStatuses____REGISTERED____createdAtLocation') + .fill('Ibombo') + await expect(page.getByText('Ibombo District Office')).toBeVisible() + await page.getByText('Ibombo District Office').click() + + await type( + page, + '[data-testid="event____legalStatuses____REGISTERED____acceptedAt-dd"]', + todayDate + ) + await type( + page, + '[data-testid="event____legalStatuses____REGISTERED____acceptedAt-mm"]', + thisMonth + ) + await type( + page, + '[data-testid="event____legalStatuses____REGISTERED____acceptedAt-yyyy"]', + thisYear + ) + + await expect( + page.getByRole('button', { name: 'Exact date unknown' }) + ).toBeVisible() + + await expect(page.locator('#event____status')).toBeVisible() + await page.locator('#event____status').click() + await expect(page.getByText('Registered')).toBeVisible() + await page.getByText('Registered').click() + await expect(page.getByText('Registered')).toHaveCount(2) + + await expect(page.locator('#event____updatedAt')).toBeVisible() + await page.locator('#event____updatedAt').click() + await expect(page.getByText('Last 7 days', { exact: true })).toBeVisible() + await page.getByText('Last 7 days', { exact: true }).click() + await expect(page.getByText('Last 7 days')).toHaveCount(2) + }) + + test('1.5.2 - Validate search and show results', async () => { + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + // event____legalStatuses____REGISTERED____acceptedAt=2025-05-19& + await expect(page.url()).toContain( + `event.legalStatuses.REGISTERED.acceptedAt=${thisYear}-${thisMonth}-${todayDate}` + ) + // event.legalStatuses.REGISTERED.createdAtLocation=ad207d45-3418-4771-af03-e0759572fcaa& + await expect(page.url()).toContain( + `event.legalStatuses.REGISTERED.createdAtLocation=` + ) + // event.status=REGISTERED& + await expect(page.url()).toContain(`event.status=REGISTERED&`) + // event.updatedAt=2025-05-12%2C2025-05-19 + await expect(page.url()).toContain(`event.updatedAt=`) + + await expect(page.getByText('Search result')).toBeVisible() + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + await expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + await expect(page.getByText('Event: Birth')).toBeVisible() + // Check for each pill + await expect(page.getByText('Event: Birth')).toBeVisible() + await expect( + page.getByText( + `Date of registration: ${thisYear}-${thisMonth}-${todayDate}` + ) + ).toBeVisible() + await expect( + page.getByText('Place of registration: Ibombo District Office') + ).toBeVisible() + await expect(page.getByText('Status of record: Registered')).toBeVisible() + await expect(page.getByText('Time period: Last 7 days')).toBeVisible() + + // Check for Edit button + await expect(page.getByRole('button', { name: 'Edit' })).toBeVisible() + }) + + test('1.5.3 - Validate clicking on the search edit button', async () => { + await page.getByRole('button', { name: 'Edit' }).click() + await expect(page).toHaveURL(/.*\/advanced-search/) + // event____legalStatuses____REGISTERED____createdAt=2025-05-19& + await expect(page.url()).toContain( + `event.legalStatuses.REGISTERED.acceptedAt=${thisYear}-${thisMonth}-${todayDate}` + ) + // event.legalStatuses.REGISTERED.createdAtLocation=ad207d45-3418-4771-af03-e0759572fcaa& + await expect(page.url()).toContain( + `event.legalStatuses.REGISTERED.createdAtLocation=` + ) + // event.status=REGISTERED& + await expect(page.url()).toContain(`event.status=REGISTERED&`) + // event.updatedAt=2025-05-12%2C2025-05-19 + await expect(page.url()).toContain(`event.updatedAt=`) + await expect(page.locator('#tab_birth')).toHaveText('Birth') + + await expect( + page.locator( + '#event____legalStatuses____REGISTERED____createdAtLocation' + ) + ).toHaveValue('Ibombo District Office') + await expect( + page.locator('#event____legalStatuses____REGISTERED____acceptedAt-dd') + ).toHaveValue(todayDate) + await expect( + page.locator('#event____legalStatuses____REGISTERED____acceptedAt-mm') + ).toHaveValue(thisMonth) + await expect( + page.locator('#event____legalStatuses____REGISTERED____acceptedAt-yyyy') + ).toHaveValue(thisYear) + }) + }) +}) diff --git a/e2e/testcases/v2-advanced-search/2-search-birth-event-declaration-child-details.spec.ts b/e2e/testcases/v2-advanced-search/2-search-birth-event-declaration-child-details.spec.ts new file mode 100644 index 0000000000..4201da7469 --- /dev/null +++ b/e2e/testcases/v2-advanced-search/2-search-birth-event-declaration-child-details.spec.ts @@ -0,0 +1,165 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { createDeclaration } from '../v2-test-data/birth-declaration-with-father-brother' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { getMonthFormatted } from './helper' +import { type } from '../../v2-utils' + +test.describe + .serial("Advanced Search - Birth Event Declaration - Child's details", () => { + let page: Page + let [yyyy, mm, dd] = ['', '', ''] + let fullNameOfChild = '' + let record: Awaited> + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + record = await createDeclaration(token, { + 'child.dob': faker.date + // Randomly chosen DOB between 2010-01-01 and 2020-12-31 + // Ensures the created record appears on the first page of search results + .between({ from: '2010-01-01', to: '2020-12-31' }) + .toISOString() + .split('T')[0], + 'child.reason': 'Other', // needed for late dob value + 'child.gender': 'female' + }) + ;[yyyy, mm, dd] = record.declaration['child.dob'].split('-') + fullNameOfChild = `${record.declaration['child.name'].firstname} ${record.declaration['child.name'].surname}` + }) + + test.afterAll(async () => { + await page.close() + }) + + test('2.1 - Validate log in and load search page', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test.describe.serial("2.5 - Validate search by Child's details", () => { + test('2.5.1 - Validate filling DOB and gender filters', async () => { + await page.getByText('Child details').click() + + await type(page, '#firstname', record.declaration['child.name'].firstname) + await type(page, '#surname', record.declaration['child.name'].surname) + + await page.locator('#child____gender').click() + await page.getByText('Female', { exact: true }).click() + + await type(page, '[data-testid="child____dob-dd"]', dd) + await type(page, '[data-testid="child____dob-mm"]', mm) + await type(page, '[data-testid="child____dob-yyyy"]', yyyy) + }) + + test('2.5.2 - Validate search and show results', async () => { + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + expect(page.url()).toContain(`child.dob=${yyyy}-${mm}-${dd}`) + expect(page.url()).toContain(`child.gender=female`) + + const param = new URL(page.url()).searchParams.get('child.name')! + const decoded = decodeURIComponent(param) + const name = JSON.parse(decoded) + + expect(name).toEqual({ + firstname: record.declaration['child.name'].firstname, + surname: record.declaration['child.name'].surname, + middlename: '' + }) + + await expect(page.getByText('Search Results')).toBeVisible() + + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + await expect(page.getByText('Event: Birth')).toBeVisible() + await expect( + page.getByText(`Child's Date of birth: ${yyyy}-${mm}-${dd}`) + ).toBeVisible() + await expect(page.getByText("Child's Sex: Female")).toBeVisible() + await expect( + page.getByText( + `Child's Name: ${record.declaration['child.name'].firstname} ${record.declaration['child.name'].surname}` + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Edit' })).toBeVisible() + await expect(page.getByText(fullNameOfChild).last()).toBeVisible() + }) + + test('2.5.3 - Validate clicking on the search edit button', async () => { + await page.getByRole('button', { name: 'Edit' }).click() + await expect(page).toHaveURL(/.*\/advanced-search/) + expect(page.url()).toContain(`child.dob=${yyyy}-${mm}-${dd}`) + expect(page.url()).toContain(`child.gender=female`) + + const param = new URL(page.url()).searchParams.get('child.name')! + const decoded = decodeURIComponent(param) + const name = JSON.parse(decoded) + + expect(name).toEqual({ + firstname: record.declaration['child.name'].firstname, + surname: record.declaration['child.name'].surname, + middlename: '' + }) + + await expect(page.locator('#tab_birth')).toHaveText('Birth') + + await expect(page.getByTestId('child____dob-dd')).toHaveValue(dd) + await expect(page.getByTestId('child____dob-mm')).toHaveValue(mm) + await expect(page.getByTestId('child____dob-yyyy')).toHaveValue(yyyy) + + await expect(page.getByTestId('select__child____gender')).toContainText( + 'Female' + ) + await expect(page.locator('#firstname')).toHaveValue( + record.declaration['child.name'].firstname + ) + await expect(page.locator('#surname')).toHaveValue( + record.declaration['child.name'].surname + ) + }) + + test('2.5.4 - Validate child.dob range input', async () => { + const childDOBRangeButton = page.locator( + '#child____dob-date_range_button' + ) + if (await childDOBRangeButton.isVisible()) { + await page.locator('#child____dob-date_range_button').click() + await expect(page.locator('#picker-modal')).toBeVisible() + + const currentMonth = new Date().getMonth() + 1 + const shortMonth = getMonthFormatted(currentMonth) + const month = getMonthFormatted(currentMonth, { month: 'long' }) + await expect( + page.getByRole('button', { name: shortMonth }) + ).toHaveCount(2) + await expect(page.locator('#date-range-confirm-action')).toBeVisible() + + await page.locator('#date-range-confirm-action').click() + await expect(page.locator('#picker-modal')).toBeHidden() + + const checkbox = page.locator( + 'input[type="checkbox"][name="child____dobdate_range_toggle"]' + ) + await expect(checkbox).toBeVisible() + await expect(checkbox).toBeChecked() + + const currentYear = new Date().getFullYear() + const lastYear = currentYear - 1 + // ex: 'May 2024 to May 2025' is visible after date range selection + await expect( + page.getByText(`${month} ${lastYear} to ${month} ${currentYear}`) + ).toBeVisible() + } + }) + }) +}) diff --git a/e2e/testcases/v2-advanced-search/3-search-birth-event-declaration-child-event-details.spec.ts b/e2e/testcases/v2-advanced-search/3-search-birth-event-declaration-child-event-details.spec.ts new file mode 100644 index 0000000000..ac6bfce71c --- /dev/null +++ b/e2e/testcases/v2-advanced-search/3-search-birth-event-declaration-child-event-details.spec.ts @@ -0,0 +1,272 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { createDeclaration } from '../v2-test-data/birth-declaration-with-father-brother' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { getAllLocations, getLocationIdByName } from '../birth/helpers' +import { type } from '../../v2-utils' + +test.describe + .serial("Advanced Search - Birth Event Declaration - Child's details", () => { + let page: Page + let [yyyy, mm, dd] = ['', '', ''] + let fullNameOfChild = '' + let facilityId = '' + let record: Awaited> + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + record = await createDeclaration( + token, + { + 'child.dob': faker.date + // Randomly chosen DOB between 2010-01-01 and 2020-12-31 + // Ensures the created record appears on the first page of search results + .between({ from: '2010-01-01', to: '2020-12-31' }) + .toISOString() + .split('T')[0], + 'child.reason': 'Other', // needed for late dob value + 'child.gender': 'female' + }, + 'REGISTER', + 'HEALTH_FACILITY' + ) + ;[yyyy, mm, dd] = record.declaration['child.dob'].split('-') + fullNameOfChild = + record.declaration['child.name'].firstname + + ' ' + + record.declaration['child.name'].surname + facilityId = record.declaration['child.birthLocation'] ?? '' + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.1 - Validate log in and load search page', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test.describe.serial("3 - Validate search by Child's DOB & Gender", () => { + test('3.1.1 - Validate filling DOB and gender filters', async () => { + await page.getByText('Child details').click() + + await type( + page, + '[data-testid="text__firstname"]', + record.declaration['child.name'].firstname + ) + await type( + page, + '[data-testid="text__surname"]', + record.declaration['child.name'].surname + ) + + await type(page, '[data-testid="child____dob-dd"]', dd) + await type(page, '[data-testid="child____dob-mm"]', mm) + await type(page, '[data-testid="child____dob-yyyy"]', yyyy) + + await page.locator('#child____gender').click() + await page.getByText('Female', { exact: true }).click() + + await page.getByText('Event details').click() + await page.locator('#child____placeOfBirth').click() + await expect( + page.getByText('Health Institution', { exact: true }) + ).toBeVisible() + await page.getByText('Health Institution', { exact: true }).click() + + await page.locator('#child____birthLocation').fill('Ibombo Rural') + await expect(page.getByText('Ibombo Rural Health Centre')).toBeVisible() + await page.getByText('Ibombo Rural Health Centre').click() + }) + + test('3.1.2 - Validate search and show results', async () => { + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + expect(page.url()).toContain(`child.dob=${yyyy}-${mm}-${dd}`) + expect(page.url()).toContain(`child.gender=female`) + expect(page.url()).toContain(`child.birthLocation=${facilityId}`) + await expect(page.getByText('Search results')).toBeVisible() + + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + await expect(page.getByText('Event: Birth')).toBeVisible() + await expect( + page.getByText(`Child's Date of birth: ${yyyy}-${mm}-${dd}`) + ).toBeVisible() + await expect(page.getByText("Child's Sex: Female")).toBeVisible() + await expect( + page.getByText( + "Child's Location of birth: Ibombo Rural Health Centre, Ibombo, Central, Farajaland" + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Edit' })).toBeVisible() + await expect(page.getByText(fullNameOfChild).last()).toBeVisible() + }) + + test('3.1.3 - Validate clicking on the search edit button', async () => { + await page.getByRole('button', { name: 'Edit' }).click() + await expect(page).toHaveURL(/.*\/advanced-search/) + expect(page.url()).toContain(`child.birthLocation=${facilityId}`) + expect(page.url()).toContain(`child.dob=${yyyy}-${mm}-${dd}`) + expect(page.url()).toContain(`child.gender=female`) + expect(page.url()).toContain(`eventType=birth`) + await expect(page.locator('#tab_birth')).toHaveText('Birth') + + await expect(page.getByTestId('child____dob-dd')).toHaveValue(dd) + await expect(page.getByTestId('child____dob-mm')).toHaveValue(mm) + await expect(page.getByTestId('child____dob-yyyy')).toHaveValue(yyyy) + + await expect(page.getByTestId('select__child____gender')).toContainText( + 'Female' + ) + await expect(page.locator('#child____birthLocation')).toHaveValue( + 'Ibombo Rural Health Centre' + ) + }) + }) +}) + +test.describe + .serial("Advanced Search - Birth Event Declaration - Child's Residential Address", () => { + let page: Page + let fullNameOfChild = '' + let province = '' + let district = '' + let record: Awaited> + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + const locations = await getAllLocations('ADMIN_STRUCTURE') + province = getLocationIdByName(locations, 'Central')! + district = getLocationIdByName(locations, 'Ibombo')! + + if (!province || !district) { + throw new Error('Province or district not found') + } + + record = await createDeclaration( + token, + { + 'child.dob': faker.date + // Randomly chosen DOB between 2010-01-01 and 2020-12-31 + // Ensures the created record appears on the first page of search results + .between({ from: '2010-01-01', to: '2020-12-31' }) + .toISOString() + .split('T')[0], + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: 'DOMESTIC', + administrativeArea: district, + streetLevelDetails: { town: 'Dhaka' } + }, + 'child.reason': 'Other', // needed for late dob value + 'child.gender': 'female' + }, + 'REGISTER', + 'PRIVATE_HOME' + ) + + fullNameOfChild = + record.declaration['child.name'].firstname + + ' ' + + record.declaration['child.name'].surname + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.2 - Validate log in and load search page', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test.describe.serial("3 - Validate search by Child's Place of Birth", () => { + test('3.2.1 - Validate filling Place of Birth', async () => { + await page.getByText('Event details').click() + + await page.locator('#child____placeOfBirth').click() + await expect( + page.getByText('Residential address', { exact: true }) + ).toBeVisible() + await page.getByText('Residential address', { exact: true }).click() + + page.locator('#country').getByText('Farajaland') + page.locator('#province').getByText('Central') + page.locator('#district').getByText('Ibombo') + + await page.locator('#town').fill('Dhaka') + await page.locator('#town').blur() + }) + + test('3.2.2 - Validate search and show results', async () => { + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + + const searchParams = new URLSearchParams(page.url()) + const address = searchParams.get('child.birthLocation.privateHome') + if (address !== null) { + const addressObject = JSON.parse(address) + await expect(addressObject.country).toBe('FAR') + await expect(addressObject.town).toBe('Dhaka') + await expect(addressObject.addressType).toBe('DOMESTIC') + await expect(addressObject.province).toBeTruthy() + await expect(addressObject.district).toBeTruthy() + } + + await expect(page.getByText('Search results')).toBeVisible() + + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + await expect(page.getByText('Event: Birth')).toBeVisible() + await expect( + page.getByText(`Location of birth: Farajaland, Central, Ibombo, Dhaka`) + ).toBeVisible() + await expect( + page.getByText('Place of delivery: Residential address') + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Edit' })).toBeVisible() + await expect(page.getByText(fullNameOfChild).last()).toBeVisible() + }) + + test('3.2.3 - Validate clicking on the search edit button', async () => { + await page.getByRole('button', { name: 'Edit' }).click() + await expect(page).toHaveURL(/.*\/advanced-search/) + const searchParams = new URLSearchParams(page.url()) + const address = searchParams.get('child.birthLocation.privateHome') + if (address !== null) { + const addressObject = JSON.parse(address) + await expect(addressObject.country).toBe('FAR') + await expect(addressObject.town).toBe('Dhaka') + await expect(addressObject.addressType).toBe('DOMESTIC') + await expect(addressObject.province).toBeTruthy() + await expect(addressObject.district).toBeTruthy() + } + expect(page.url()).toContain(`child.placeOfBirth=PRIVATE_HOME`) + expect(page.url()).toContain(`eventType=birth`) + + await expect(page.locator('#country')).toHaveText('Farajaland') + await expect(page.locator('#province')).toHaveText('Central') + await expect(page.locator('#district')).toHaveText('Ibombo') + await expect(page.locator('#town')).toHaveValue('Dhaka') + }) + }) +}) diff --git a/e2e/testcases/v2-advanced-search/4-search-birth-event-declaration-mother-details.spec.ts b/e2e/testcases/v2-advanced-search/4-search-birth-event-declaration-mother-details.spec.ts new file mode 100644 index 0000000000..09826c6c06 --- /dev/null +++ b/e2e/testcases/v2-advanced-search/4-search-birth-event-declaration-mother-details.spec.ts @@ -0,0 +1,145 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { createDeclaration } from '../v2-test-data/birth-declaration-with-father-brother' +import { CREDENTIALS } from '../../constants' +import { getMonthFormatted } from './helper' +import { type } from '../../v2-utils' + +test.describe + .serial("Advanced Search - Birth Event Declaration - Mother's details", () => { + let page: Page + let [yyyy, mm, dd] = ['', '', ''] + let record: Awaited> + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + record = await createDeclaration(token) + ;[yyyy, mm, dd] = record.declaration['mother.dob'].split('-') + }) + + test.afterAll(async () => { + await page.close() + }) + + test('2.1 - Validate log in and load search page', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test.describe.serial("2.5 - Validate search by Mother's details", () => { + test('2.5.1 - Validate filling name and dob filters', async () => { + await page.getByText('Mother details').click() + await type( + page, + '[data-testid="text__firstname"]', + record.declaration['mother.name'].firstname + ) + await type( + page, + '[data-testid="text__surname"]', + record.declaration['mother.name'].surname + ) + await type(page, '[data-testid="mother____dob-dd"]', dd) + await type(page, '[data-testid="mother____dob-mm"]', mm) + await type(page, '[data-testid="mother____dob-yyyy"]', yyyy) + }) + + test('2.5.2 - Validate search and show results', async () => { + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + expect(page.url()).toContain(`mother.dob=${yyyy}-${mm}-${dd}`) + expect(page.url()).toContain( + `mother.name=${encodeURIComponent( + JSON.stringify({ + firstname: record.declaration['mother.name'].firstname, + middlename: '', + surname: record.declaration['mother.name'].surname + }) + )}` + ) + await expect(page.getByText('Search results')).toBeVisible() + + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + await expect(page.getByText('Event: Birth')).toBeVisible() + await expect( + page.getByText(`Mother's Date of birth: ${yyyy}-${mm}-${dd}`) + ).toBeVisible() + await expect( + page.getByText( + `Mother's Name: ${record.declaration['mother.name'].firstname} ${record.declaration['mother.name'].surname}` + ) + ).toBeVisible() + + await expect(page.getByRole('button', { name: 'Edit' })).toBeVisible() + }) + + test('2.5.3 - Validate clicking on the search edit button', async () => { + await page.getByRole('button', { name: 'Edit' }).click() + await expect(page).toHaveURL(/.*\/advanced-search/) + expect(page.url()).toContain(`mother.dob=${yyyy}-${mm}-${dd}`) + + const param = new URL(page.url()).searchParams.get('mother.name')! + const decoded = decodeURIComponent(param) + const name = JSON.parse(decoded) + + expect(name).toEqual({ + firstname: record.declaration['mother.name'].firstname, + surname: record.declaration['mother.name'].surname, + middlename: '' + }) + await expect(page.locator('#tab_birth')).toHaveText('Birth') + await expect(page.getByTestId('mother____dob-dd')).toHaveValue(dd) + await expect(page.getByTestId('mother____dob-mm')).toHaveValue(mm) + await expect(page.getByTestId('mother____dob-yyyy')).toHaveValue(yyyy) + await expect(page.locator('#firstname')).toHaveValue( + record.declaration['mother.name'].firstname + ) + await expect(page.locator('#surname')).toHaveValue( + record.declaration['mother.name'].surname + ) + }) + + test('2.5.4 - Validate mother.dob range input', async () => { + const motherDOBRangeButton = page.locator( + '#mother____dob-date_range_button' + ) + if (await motherDOBRangeButton.isVisible()) { + await page.locator('#mother____dob-date_range_button').click() + await expect(page.locator('#picker-modal')).toBeVisible() + + const currentMonth = new Date().getMonth() + 1 + const shortMonth = getMonthFormatted(currentMonth) + const month = getMonthFormatted(currentMonth, { month: 'long' }) + await expect( + page.getByRole('button', { name: shortMonth }) + ).toHaveCount(2) + await expect(page.locator('#date-range-confirm-action')).toBeVisible() + + await page.locator('#date-range-confirm-action').click() + await expect(page.locator('#picker-modal')).toBeHidden() + + const checkbox = page.locator( + 'input[type="checkbox"][name="mother____dobdate_range_toggle"]' + ) + await expect(checkbox).toBeVisible() + await expect(checkbox).toBeChecked() + + const currentYear = new Date().getFullYear() + const lastYear = currentYear - 1 + // ex: 'May 2024 to May 2025' is visible after date range selection + await expect( + page.getByText(`${month} ${lastYear} to ${month} ${currentYear}`) + ).toBeVisible() + } + }) + }) +}) diff --git a/e2e/testcases/v2-advanced-search/5-search-birth-event-declaration-father-details.spec.ts b/e2e/testcases/v2-advanced-search/5-search-birth-event-declaration-father-details.spec.ts new file mode 100644 index 0000000000..84c89ffb84 --- /dev/null +++ b/e2e/testcases/v2-advanced-search/5-search-birth-event-declaration-father-details.spec.ts @@ -0,0 +1,146 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration-with-father-brother' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { getMonthFormatted } from './helper' +import { type } from '../../v2-utils' + +test.describe + .serial("Advanced Search - Birth Event Declaration - Father's details", () => { + let page: Page + let [yyyy, mm, dd] = ['', '', ''] + let record: { eventId: string; declaration: Declaration } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + record = await createDeclaration(token, {}, 'REGISTER', 'HEALTH_FACILITY') + ;[yyyy, mm, dd] = (record.declaration['father.dob'] ?? '').split('-') + }) + + test.afterAll(async () => { + await page.close() + }) + + test('2.1 - Validate log in and load search page', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test.describe.serial("2.5 - Validate search by Father's details", () => { + test('2.5.1 - Validate filling name and dob filters', async () => { + await page.getByText('Father details').click() + + await type( + page, + '#firstname', + record.declaration['father.name'].firstname ?? faker.person.firstName + ) + await type(page, '#surname', record.declaration['father.name'].surname) + + await type(page, '[data-testid="father____dob-dd"]', dd) + await type(page, '[data-testid="father____dob-mm"]', mm) + await type(page, '[data-testid="father____dob-yyyy"]', yyyy) + }) + + test('2.5.2 - Validate search and show results', async () => { + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + expect(page.url()).toContain(`father.dob=${yyyy}-${mm}-${dd}`) + const param = new URL(page.url()).searchParams.get('father.name')! + const decoded = decodeURIComponent(param) + const name = JSON.parse(decoded) + + expect(name).toEqual({ + firstname: record.declaration['father.name'].firstname, + surname: record.declaration['father.name'].surname, + middlename: '' + }) + await expect(page.getByText('Search results')).toBeVisible() + + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + await expect(page.getByText('Event: Birth')).toBeVisible() + await expect( + page.getByText(`Father's Date of birth: ${yyyy}-${mm}-${dd}`) + ).toBeVisible() + await expect( + page.getByText( + `Father's Name: ${record.declaration['father.name'].firstname ?? faker.person.firstName} ${record.declaration['father.name'].surname}` + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Edit' })).toBeVisible() + }) + + test('2.5.3 - Validate clicking on the search edit button', async () => { + await page.getByRole('button', { name: 'Edit' }).click() + await expect(page).toHaveURL(/.*\/advanced-search/) + expect(page.url()).toContain(`father.dob=${yyyy}-${mm}-${dd}`) + + const param = new URL(page.url()).searchParams.get('father.name')! + const decoded = decodeURIComponent(param) + const name = JSON.parse(decoded) + + expect(name).toEqual({ + firstname: record.declaration['father.name'].firstname, + surname: record.declaration['father.name'].surname, + middlename: '' + }) + + await expect(page.locator('#tab_birth')).toHaveText('Birth') + await expect(page.getByTestId('father____dob-dd')).toHaveValue(dd) + await expect(page.getByTestId('father____dob-mm')).toHaveValue(mm) + await expect(page.getByTestId('father____dob-yyyy')).toHaveValue(yyyy) + await expect(page.locator('#firstname')).toHaveValue( + record.declaration['father.name'].firstname ?? faker.person.firstName + ) + await expect(page.locator('#surname')).toHaveValue( + record.declaration['father.name'].surname + ) + }) + + test('2.5.4 - Validate father.dob range input', async () => { + const fatherDOBRangeButton = page.locator( + '#father____dob-date_range_button' + ) + if (await fatherDOBRangeButton.isVisible()) { + await page.locator('#father____dob-date_range_button').click() + await expect(page.locator('#picker-modal')).toBeVisible() + + const currentMonth = new Date().getMonth() + 1 + const shortMonth = getMonthFormatted(currentMonth) + const month = getMonthFormatted(currentMonth, { month: 'long' }) + await expect( + page.getByRole('button', { name: shortMonth }) + ).toHaveCount(2) + await expect(page.locator('#date-range-confirm-action')).toBeVisible() + + await page.locator('#date-range-confirm-action').click() + await expect(page.locator('#picker-modal')).toBeHidden() + + const checkbox = page.locator( + 'input[type="checkbox"][name="father____dobdate_range_toggle"]' + ) + await expect(checkbox).toBeVisible() + await expect(checkbox).toBeChecked() + + const currentYear = new Date().getFullYear() + const lastYear = currentYear - 1 + // ex: 'May 2024 to May 2025' is visible after date range selection + await expect( + page.getByText(`${month} ${lastYear} to ${month} ${currentYear}`) + ).toBeVisible() + } + }) + }) +}) diff --git a/e2e/testcases/v2-advanced-search/6-search-birth-event-declaration-informant-details.spec.ts b/e2e/testcases/v2-advanced-search/6-search-birth-event-declaration-informant-details.spec.ts new file mode 100644 index 0000000000..eb7d7aade4 --- /dev/null +++ b/e2e/testcases/v2-advanced-search/6-search-birth-event-declaration-informant-details.spec.ts @@ -0,0 +1,142 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { createDeclaration } from '../v2-test-data/birth-declaration-with-father-brother' +import { CREDENTIALS } from '../../constants' +import { getMonthFormatted } from './helper' +import { type } from '../../v2-utils' + +test.describe + .serial("Advanced Search - Birth Event Declaration - Informant's details", () => { + let page: Page + let [yyyy, mm, dd] = ['', '', ''] + let record: Awaited> + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + record = await createDeclaration(token, {}, 'REGISTER', 'HEALTH_FACILITY') + ;[yyyy, mm, dd] = record.declaration['informant.dob'].split('-') + }) + + test.afterAll(async () => { + await page.close() + }) + + test('2.1 - Validate log in and load search page', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test.describe.serial("2.5 - Validate search by Informant's details", () => { + test('2.5.1 - Validate filling name and dob filters', async () => { + await page.getByText('Informant details').click() + + await type( + page, + '#firstname', + record.declaration['informant.name'].firstname + ) + await type(page, '#surname', record.declaration['informant.name'].surname) + + await type(page, '[data-testid="informant____dob-dd"]', dd) + await type(page, '[data-testid="informant____dob-mm"]', mm) + await type(page, '[data-testid="informant____dob-yyyy"]', yyyy) + }) + + test('2.5.2 - Validate search and show results', async () => { + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + expect(page.url()).toContain(`informant.dob=${yyyy}-${mm}-${dd}`) + const param = new URL(page.url()).searchParams.get('informant.name')! + const decoded = decodeURIComponent(param) + const name = JSON.parse(decoded) + + expect(name).toEqual({ + firstname: record.declaration['informant.name'].firstname, + surname: record.declaration['informant.name'].surname, + middlename: '' + }) + await expect(page.getByText('Search results')).toBeVisible() + + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + await expect(page.getByText('Event: Birth')).toBeVisible() + await expect( + page.getByText(`Informant's Date of birth: ${yyyy}-${mm}-${dd}`) + ).toBeVisible() + await expect( + page.getByText( + `Informant's Name: ${record.declaration['informant.name'].firstname} ${record.declaration['informant.name'].surname}` + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Edit' })).toBeVisible() + }) + + test('2.5.3 - Validate clicking on the search edit button', async () => { + await page.getByRole('button', { name: 'Edit' }).click() + await expect(page).toHaveURL(/.*\/advanced-search/) + expect(page.url()).toContain(`informant.dob=${yyyy}-${mm}-${dd}`) + + const param = new URL(page.url()).searchParams.get('informant.name')! + const decoded = decodeURIComponent(param) + const name = JSON.parse(decoded) + + expect(name).toEqual({ + firstname: record.declaration['informant.name'].firstname, + surname: record.declaration['informant.name'].surname, + middlename: '' + }) + + await expect(page.locator('#tab_birth')).toHaveText('Birth') + await expect(page.getByTestId('informant____dob-dd')).toHaveValue(dd) + await expect(page.getByTestId('informant____dob-mm')).toHaveValue(mm) + await expect(page.getByTestId('informant____dob-yyyy')).toHaveValue(yyyy) + await expect(page.locator('#firstname')).toHaveValue( + record.declaration['informant.name'].firstname + ) + await expect(page.locator('#surname')).toHaveValue( + record.declaration['informant.name'].surname + ) + }) + + test('2.5.4 - Validate informant.dob range input', async () => { + const informantDOBRangeButton = page.locator( + '#informant____dob-date_range_button' + ) + if (await informantDOBRangeButton.isVisible()) { + await page.locator('#informant____dob-date_range_button').click() + await expect(page.locator('#picker-modal')).toBeVisible() + + const currentMonth = new Date().getMonth() + 1 + const shortMonth = getMonthFormatted(currentMonth) + const month = getMonthFormatted(currentMonth, { month: 'long' }) + await expect( + page.getByRole('button', { name: shortMonth }) + ).toHaveCount(2) + await expect(page.locator('#date-range-confirm-action')).toBeVisible() + + await page.locator('#date-range-confirm-action').click() + await expect(page.locator('#picker-modal')).toBeHidden() + + const checkbox = page.locator( + 'input[type="checkbox"][name="informant____dobdate_range_toggle"]' + ) + await expect(checkbox).toBeVisible() + await expect(checkbox).toBeChecked() + + const currentYear = new Date().getFullYear() + const lastYear = currentYear - 1 + // ex: 'May 2024 to May 2025' is visible after date range selection + await expect( + page.getByText(`${month} ${lastYear} to ${month} ${currentYear}`) + ).toBeVisible() + } + }) + }) +}) diff --git a/e2e/testcases/v2-advanced-search/7-search-birth-event-declaration-stauts.spec.ts b/e2e/testcases/v2-advanced-search/7-search-birth-event-declaration-stauts.spec.ts new file mode 100644 index 0000000000..c20ec8c62a --- /dev/null +++ b/e2e/testcases/v2-advanced-search/7-search-birth-event-declaration-stauts.spec.ts @@ -0,0 +1,84 @@ +import { expect, test, type Page } from '@playwright/test' +import { joinValuesWith, loginToV2 } from '../../helpers' +import { faker } from '@faker-js/faker' +import { ensureOutboxIsEmpty, type } from '../../v2-utils' + +test.describe + .serial("Advanced Search - Birth Event Declaration - Informant's details", () => { + let page: Page + let firstname: string + let surname: string + + test.beforeAll(async ({ browser }) => { + firstname = faker.person.firstName() + surname = faker.person.firstName() + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.1 Create a draft birth declaration by filling in child details', async () => { + await loginToV2(page) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await type(page, '#firstname', firstname) + await type(page, '#surname', surname) + await page.locator('#child____gender').click() + await page.getByText('Female', { exact: true }).click() + + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + //@todo: The user should be navigated to "my-drafts" tab by default + await page.getByText('My drafts').click() + + await expect( + page.getByText(joinValuesWith([firstname, surname])) + ).toBeVisible() + }) + + test('7.2 - Navigate to the advanced search page and select Birth event type', async () => { + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Birth').click() + }) + + test('7.3 - Search for birth declaration using child name and status filter', async () => { + await page.getByText('Registration details').click() + + await page.locator('#event____status').click() + await expect(page.getByText('Created')).toBeHidden() + await page.getByText(/^Any status$/).click() + + await page.getByText('Child details').click() + + await type(page, '#firstname', firstname) + await type(page, '#surname', surname) + + await page.click('#search') + await expect(page).toHaveURL(/.*\/search-result/) + }) + + test('7.4 - Confirm that draft records do not appear in search results', async () => { + await expect(page.getByText('Search results')).toBeVisible() + const searchResult = await page.locator('#content-name').textContent() + const searchResultCountNumberInBracketsRegex = /\((\d+)\)$/ + expect(searchResult).toMatch(searchResultCountNumberInBracketsRegex) + expect(page.url()).toContain(`event.status=ALL`) + expect(page.url()).toContain( + `child.name=${encodeURIComponent(JSON.stringify({ firstname, middlename: '', surname }))}` + ) + expect( + page.getByRole('button', { name: joinValuesWith([firstname, surname]) }) + ).not.toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-advanced-search/8-search-death-location.spec.ts b/e2e/testcases/v2-advanced-search/8-search-death-location.spec.ts new file mode 100644 index 0000000000..a588467dfb --- /dev/null +++ b/e2e/testcases/v2-advanced-search/8-search-death-location.spec.ts @@ -0,0 +1,66 @@ +import { expect, test, type Page } from '@playwright/test' +import { loginToV2 } from '../../helpers' + +test.describe + .serial("Advanced Search 8 - Death - Deceased's place of death", () => { + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('8.1 Navigate to Advanced Search - Death - Event details', async () => { + await loginToV2(page) + await page.click('#searchType') + await expect(page).toHaveURL(/.*\/advanced-search/) + await page.getByText('Death').click() + await page.getByText('Event details').click() + }) + test('8.2 Before selecting a place of death', async () => { + await expect( + page.getByText('Place of death', { exact: true }) + ).toBeVisible() + await expect( + page + .locator('#eventDetails____deathLocation-form-input') + .getByText('Health Institution', { exact: true }) + ).not.toBeVisible() + await expect(page.getByText('Country')).not.toBeVisible() + }) + test('8.3 Select Health Institution', async () => { + await page.getByTestId('select__eventDetails____placeOfDeath').click() + await page.getByText('Health Institution', { exact: true }).click() + await expect( + page + .locator('#eventDetails____deathLocation-form-input') + .getByText('Health Institution', { exact: true }) + ).toBeVisible() + await expect(page.getByText('Country')).not.toBeVisible() + }) + test('8.4 Select Usual place of residence', async () => { + await page.getByTestId('select__eventDetails____placeOfDeath').click() + await page + .getByText("Deceased's usual place of residence", { exact: true }) + .click() + await expect( + page + .locator('#eventDetails____deathLocation-form-input') + .getByText('Health Institution', { exact: true }) + ).not.toBeVisible() + await expect(page.getByText('Country')).not.toBeVisible() + }) + test('8.4 Select Other', async () => { + await page.getByTestId('select__eventDetails____placeOfDeath').click() + await page.getByText('Other', { exact: true }).click() + await expect( + page + .locator('#eventDetails____deathLocation-form-input') + .getByText('Health Institution', { exact: true }) + ).not.toBeVisible() + await expect(page.getByText('Country')).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-advanced-search/helper.ts b/e2e/testcases/v2-advanced-search/helper.ts new file mode 100644 index 0000000000..d1c5874132 --- /dev/null +++ b/e2e/testcases/v2-advanced-search/helper.ts @@ -0,0 +1,19 @@ +/** + * Converts a numeric month value (1–12) to its corresponding English month name (e.g., "Jan", "Feb"). + * + * @param {number} month - The month number (1 for January, 12 for December). + * @param {Intl.DateTimeFormatOptions} formatOptions - The format options for the month. + * @returns {string} The formatted month in English. + * + * @example + * getMonthformatted(1); // returns "Jan" + * getMonthformatted(12); // returns "Dec" + * getMonthformatted(12, { month: 'long' }); // returns "December" + */ +export const getMonthFormatted = ( + month: number, + formatOptions: Intl.DateTimeFormatOptions = { month: 'short' } +) => { + const arbitraryDate = new Date(2000, month - 1) + return arbitraryDate.toLocaleString('en-US', formatOptions) +} diff --git a/e2e/testcases/v2-application/1-my-draft.spec.ts b/e2e/testcases/v2-application/1-my-draft.spec.ts new file mode 100644 index 0000000000..9d9420cd02 --- /dev/null +++ b/e2e/testcases/v2-application/1-my-draft.spec.ts @@ -0,0 +1,96 @@ +import { expect, test, type Page } from '@playwright/test' + +import { formatName, goToSection, loginToV2 } from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' +import { ensureOutboxIsEmpty } from '../../v2-utils' + +test.describe.serial('1: Validate my draft tab', () => { + let page: Page + const name = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1 Record does not appear in draft ', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name) + ) + }) + + test('1.2 Create a draft', async () => { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#firstname').fill(name.firstNames) + await page.locator('#surname').fill(name.familyName) + + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + }) + + test('1.3 Record appears in draft ', async () => { + await ensureOutboxIsEmpty(page) + + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).toContainText( + formatName(name) + ) + }) + + test('1.4 Record does not appear in draft for other user: RA ', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name) + ) + }) + + test('1.5 Record does not appear in draft for other user: LR ', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name) + ) + }) + + test('1.6 Record does not appear in draft after notifying ', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT, true) + await page.getByRole('button', { name: 'My drafts' }).click() + + await getRowByTitle(page, formatName(name)) + .getByRole('button', { + name: 'Declare' + }) + .click() + + await goToSection(page, 'review') + + await page.getByRole('button', { name: 'Send for review' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await expect(page.getByTestId('search-result')).toContainText('My drafts') + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name) + ) + }) +}) diff --git a/e2e/testcases/v2-application/3-validate-sent-for-review.spec.ts b/e2e/testcases/v2-application/3-validate-sent-for-review.spec.ts new file mode 100644 index 0000000000..b32307ef42 --- /dev/null +++ b/e2e/testcases/v2-application/3-validate-sent-for-review.spec.ts @@ -0,0 +1,78 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { ActionType } from '@opencrvs/toolkit/events' +import { formatV2ChildName } from '../v2-birth/helpers' + +test.describe.serial('3 Validate sent for review tab', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.DECLARE) + declaration = res.declaration + eventId = res.eventId + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.0 Login', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + }) + + test('3.1 Go to sent for review tab', async () => { + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Sent for review').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + await expect(page.getByTestId('search-result')).toContainText( + 'Sent for review' + ) + }) + + test('3.2 validate the list', async () => { + const button = page.getByRole('button', { + name: formatV2ChildName(declaration) + }) + + const header = page.locator('div[class^="TableHeader"]') + const columns = await header.locator(':scope > div').allInnerTexts() + expect(columns).toStrictEqual([ + 'Title', + 'Event', + 'Date of Event', + 'Sent for review', + '' + ]) + + const row = button.locator('xpath=ancestor::*[starts-with(@id, "row_")]') + const cells = row.locator(':scope > div') + + expect(cells.nth(0)).toHaveText(formatV2ChildName(declaration)) + expect(cells.nth(1)).toHaveText('Birth') + expect(cells.nth(2)).toHaveText(declaration['child.dob'].split('T')[0]) + }) + + test('3.4 Click a name', async () => { + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + // User should navigate to record audit page + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + }) +}) diff --git a/e2e/testcases/v2-application/30-offline-outbox.spec.ts b/e2e/testcases/v2-application/30-offline-outbox.spec.ts new file mode 100644 index 0000000000..42c160d9da --- /dev/null +++ b/e2e/testcases/v2-application/30-offline-outbox.spec.ts @@ -0,0 +1,405 @@ +import { test, expect, type Page } from '@playwright/test' + +import { + continueForm, + drawSignature, + formatName, + getRandomDate, + goToSection, + loginToV2 +} from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { fillDate } from '../v2-birth/helpers' +import { ensureOutboxIsEmpty } from '../../v2-utils' + +test.describe + .serial('30: Validate user can send multiple complete and incomplete records offline', () => { + let page: Page + + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Physician', + birthType: 'Single', + weightAtBirth: 2.4, + placeOfBirth: 'Health Institution', + birthLocation: { + facility: 'Golden Valley Rural Health Centre', + district: 'Ibombo', + province: 'Central', + country: 'Farajaland' + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling', + address: { + sameAsMother: true + } + } + } + const partialDeclaration1 = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + } + } + + const partialDeclaration2 = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('30.0 Login', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + // this is needed to get eventConfig before going offline + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await goToSection(page, 'review') + await page.getByRole('button', { name: 'Exit', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + await page.context().setOffline(true) + }) + + test.describe('30.1 Send a complete declaration', async () => { + test.beforeAll(async () => { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('30.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.facility.slice(0, 3)) + await page.getByText(declaration.birthLocation.facility).click() + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await page + .locator('#child____weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + + await continueForm(page) + }) + + test('30.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("30.1.3 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____nid') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.mother.address.town) + await page + .locator('#residentialArea') + .fill(declaration.mother.address.residentialArea) + await page.locator('#street').fill(declaration.mother.address.street) + await page.locator('#number').fill(declaration.mother.address.number) + await page + .locator('#zipCode') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("30.1.4 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____nid') + .fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#father____addressSameAs_YES').click() + + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#father____educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('30.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('30.1.7 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('30.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + }) + }) + + test.describe('30.2 Send an incomplete declaration', async () => { + test.beforeAll(async () => { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('30.2.1 Fill child details', async () => { + await page + .locator('#firstname') + .fill(partialDeclaration1.child.name.firstNames) + await page + .locator('#surname') + .fill(partialDeclaration1.child.name.familyName) + await goToSection(page, 'review') + }) + test('30.2.2 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + }) + }) + + test.describe('30.3 Send an incomplete declaration', async () => { + test.beforeAll(async () => { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('30.3.1 Fill child details', async () => { + await page + .locator('#firstname') + .fill(partialDeclaration2.child.name.firstNames) + await page + .locator('#surname') + .fill(partialDeclaration2.child.name.familyName) + await goToSection(page, 'review') + }) + test('30.3.2 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + }) + }) + + test('30.4 Validate outbox', async () => { + await page.getByText('Outbox').click() + + await expect( + page.getByTestId('search-result').locator('#row_2') + ).toContainText(formatName(declaration.child.name)) + + await expect( + page.getByTestId('search-result').locator('#row_1') + ).toContainText(formatName(partialDeclaration1.child.name)) + + await expect( + page.getByTestId('search-result').locator('#row_0') + ).toContainText(formatName(partialDeclaration2.child.name)) + + await expect( + page.getByTestId('search-result').locator('#row_2') + ).toContainText('Waiting to send') + await expect( + page.getByTestId('search-result').locator('#row_1') + ).toContainText('Waiting to send') + await expect( + page.getByTestId('search-result').locator('#row_0') + ).toContainText('Waiting to send') + + await page.context().setOffline(false) + + await expect(page.getByTestId('search-result')).not.toContainText( + 'Waiting to send' + ) + + await expect( + page.getByTestId('search-result').locator('#row_2') + ).toContainText('Sending') + await expect( + page.getByTestId('search-result').locator('#row_1') + ).toContainText('Sending') + await expect( + page.getByTestId('search-result').locator('#row_0') + ).toContainText('Sending') + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(declaration.child.name), + { timeout: 60000 } + ) + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(partialDeclaration1.child.name), + { timeout: 60000 } + ) + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(partialDeclaration2.child.name), + { timeout: 60000 } + ) + await ensureOutboxIsEmpty(page) + }) +}) diff --git a/e2e/testcases/v2-application/4a-validate-require-update-FA.spec.ts b/e2e/testcases/v2-application/4a-validate-require-update-FA.spec.ts new file mode 100644 index 0000000000..6dcca948cb --- /dev/null +++ b/e2e/testcases/v2-application/4a-validate-require-update-FA.spec.ts @@ -0,0 +1,115 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { ActionType } from '@opencrvs/toolkit/events' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ensureAssigned, selectAction } from '../../v2-utils' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' +import { faker } from '@faker-js/faker' + +test.describe + .serial('4(a) Validate Requires update tab for field agent', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.DECLARE) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('4.0.1 Login', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('4.0.2 Navigate to record audit', async () => { + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('4.0.3 Reject a declaration', async () => { + await selectAction(page, 'Review') + + await page.getByRole('button', { name: 'Reject' }).click() + + await page.getByTestId('reject-reason').fill(faker.lorem.sentence()) + + await page.getByRole('button', { name: 'Send For Update' }).click() + }) + + test('4.1 Go to Requires update tab', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Requires update').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + await expect(page.getByTestId('search-result')).toContainText( + 'Requires update' + ) + }) + + test('4.2 validate the list', async () => { + const header = page.locator('div[class^="TableHeader"]') + const columns = await header.locator(':scope > div').allInnerTexts() + expect(columns).toStrictEqual([ + 'Title', + 'Event', + 'Date of Event', + 'Sent for update', + '' + ]) + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + + const cells = row.locator(':scope > div') + + expect(cells.nth(0)).toHaveText(formatV2ChildName(declaration)) + expect(cells.nth(1)).toHaveText('Birth') + expect(cells.nth(2)).toHaveText(declaration['child.dob'].split('T')[0]) + }) + + test('4.4 Click a name', async () => { + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + // User should navigate to record audit page + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + }) + + test('4.5 Acting directly from workqueue should redirect to the same workqueue', async () => { + await ensureAssigned(page) + await page.goBack() + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + + await row.getByRole('button', { name: 'Review' }).click() + + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + // Should redirect back to requires update workqueue + await expect(page.locator('#content-name')).toHaveText('Requires updates') + }) +}) diff --git a/e2e/testcases/v2-application/4b-validate-require-update-RA.spec.ts b/e2e/testcases/v2-application/4b-validate-require-update-RA.spec.ts new file mode 100644 index 0000000000..88d1c7843f --- /dev/null +++ b/e2e/testcases/v2-application/4b-validate-require-update-RA.spec.ts @@ -0,0 +1,131 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { ActionType } from '@opencrvs/toolkit/events' +import { formatV2ChildName } from '../v2-birth/helpers' +import { + ensureAssigned, + ensureOutboxIsEmpty, + selectAction +} from '../../v2-utils' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' +import { faker } from '@faker-js/faker' + +test.describe + .serial('4(b) Validate Requires update tab for registration agent', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.VALIDATE) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('4.0.1 Login', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('4.0.2 Navigate to record audit', async () => { + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('4.0.3 Reject a declaration', async () => { + await selectAction(page, 'Review') + + await page.getByRole('button', { name: 'Reject' }).click() + + await page.getByTestId('reject-reason').fill(faker.lorem.sentence()) + + await page.getByRole('button', { name: 'Send For Update' }).click() + }) + + test('4.1 Go to Requires update tab', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Requires update').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + await expect(page.getByTestId('search-result')).toContainText( + 'Requires update' + ) + }) + + test('4.2 validate the list', async () => { + const header = page.locator('div[class^="TableHeader"]') + const columns = await header.locator(':scope > div').allInnerTexts() + expect(columns).toStrictEqual([ + 'Title', + 'Event', + 'Date of Event', + 'Sent for update', + '' + ]) + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + + const cells = row.locator(':scope > div') + + expect(cells.nth(0)).toHaveText(formatV2ChildName(declaration)) + expect(cells.nth(1)).toHaveText('Birth') + expect(cells.nth(2)).toHaveText(declaration['child.dob'].split('T')[0]) + }) + + test('4.3 Click a name', async () => { + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + // User should navigate to record audit page + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + }) + + test('4.4 Click validate action', async () => { + await ensureAssigned(page) + await page.goBack() + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + + await row.getByRole('button', { name: 'Assign record' }).click() + await row.getByRole('button', { name: 'Review' }).click() + + expect( + page.url().includes(`events/validate/${eventId}/review`) + ).toBeTruthy() + }) + test('4.5 Complete validate action', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + // Should redirect back to requires update workqueue + await expect(page.locator('#content-name')).toHaveText('Requires updates') + + await ensureOutboxIsEmpty(page) + + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).not.toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-application/5a-validate-ready-for-review-RA.spec.ts b/e2e/testcases/v2-application/5a-validate-ready-for-review-RA.spec.ts new file mode 100644 index 0000000000..27d1b190d0 --- /dev/null +++ b/e2e/testcases/v2-application/5a-validate-ready-for-review-RA.spec.ts @@ -0,0 +1,111 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { ActionType } from '@opencrvs/toolkit/events' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ensureAssigned, ensureOutboxIsEmpty } from '../../v2-utils' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' + +test.describe + .serial('5(a) Validate Ready for review tab for registration agent', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.DECLARE) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('5.0 Login', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test('5.1 Go to Ready for review tab', async () => { + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Ready for review').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + await expect(page.getByTestId('search-result')).toContainText( + 'Ready for review' + ) + }) + + test('5.2 validate the list', async () => { + const header = page.locator('div[class^="TableHeader"]') + const columns = await header.locator(':scope > div').allInnerTexts() + expect(columns).toStrictEqual([ + 'Title', + 'Event', + 'Date of Event', + 'Sent for review', + '' + ]) + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + const cells = row.locator(':scope > div') + + expect(cells.nth(0)).toHaveText(formatV2ChildName(declaration)) + expect(cells.nth(1)).toHaveText('Birth') + expect(cells.nth(2)).toHaveText(declaration['child.dob'].split('T')[0]) + }) + + test('5.3 Click a name', async () => { + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + // User should navigate to record audit page + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + }) + + test('5.4 Click validate action', async () => { + await ensureAssigned(page) + await page.goBack() + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + + await row.getByRole('button', { name: 'Assign record' }).click() + await row.getByRole('button', { name: 'Review' }).click() + + expect( + page.url().includes(`events/validate/${eventId}/review`) + ).toBeTruthy() + }) + test('5.5 Complete validate action', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + // Should redirect back to Ready for review workqueue + await expect(page.locator('#content-name')).toHaveText('Ready for review') + + await ensureOutboxIsEmpty(page) + + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).not.toBeVisible() + + await page.getByText('Sent for approval').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-application/5b-validate-ready-for-review-LR.spec.ts b/e2e/testcases/v2-application/5b-validate-ready-for-review-LR.spec.ts new file mode 100644 index 0000000000..b3092c1f86 --- /dev/null +++ b/e2e/testcases/v2-application/5b-validate-ready-for-review-LR.spec.ts @@ -0,0 +1,105 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { ActionType } from '@opencrvs/toolkit/events' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' + +test.describe + .serial('5(b) Validate Ready for review tab for local registrar', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.FIELD_AGENT.USERNAME, + CREDENTIALS.FIELD_AGENT.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.DECLARE) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('5.0 Login', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('5.1 Go to Ready for review tab', async () => { + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Ready for review').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + await expect(page.getByTestId('search-result')).toContainText( + 'Ready for review' + ) + }) + + test('5.2 validate the list', async () => { + const header = page.locator('div[class^="TableHeader"]') + const columns = await header.locator(':scope > div').allInnerTexts() + expect(columns).toStrictEqual([ + 'Title', + 'Event', + 'Date of Event', + 'Sent for review', + '' + ]) + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + const cells = row.locator(':scope > div') + + expect(cells.nth(0)).toHaveText(formatV2ChildName(declaration)) + expect(cells.nth(1)).toHaveText('Birth') + expect(cells.nth(2)).toHaveText(declaration['child.dob'].split('T')[0]) + }) + + test('5.4 Click a name', async () => { + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + // User should navigate to record audit page + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + }) + + test('5.5 Click validate action', async () => { + await selectAction(page, 'Review') + expect( + page.url().includes(`events/validate/${eventId}/review`) + ).toBeTruthy() + }) + test('5.5 Complete Registration', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the birth?')).toBeVisible() + await page.locator('#confirm_Validate').click() + + // Should not redirect back to Ready for review workqueue, rather go to the first one + await expect(page.locator('#content-name')).toHaveText('Assigned to you') + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).not.toBeVisible() + + await page.getByText('Ready to print').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-application/6-validate-ready-to-print.spec.ts b/e2e/testcases/v2-application/6-validate-ready-to-print.spec.ts new file mode 100644 index 0000000000..8ea6086e4f --- /dev/null +++ b/e2e/testcases/v2-application/6-validate-ready-to-print.spec.ts @@ -0,0 +1,88 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { formatV2ChildName } from '../v2-birth/helpers' +import { selectAction } from '../../v2-utils' + +test.describe.serial('6 Validate Ready to print tab', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('6.0 Login', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('6.1 Go to Ready to print tab', async () => { + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Ready to print').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + await expect(page.getByTestId('search-result')).toContainText( + 'Ready to print' + ) + }) + + test('6.2 validate the list', async () => { + const button = page.getByRole('button', { + name: formatV2ChildName(declaration) + }) + + const header = page.locator('div[class^="TableHeader"]') + const columns = await header.locator(':scope > div').allInnerTexts() + expect(columns).toStrictEqual([ + 'Title', + 'Event', + 'Date of Event', + 'Registered', + '' + ]) + + const row = button.locator('xpath=ancestor::*[starts-with(@id, "row_")]') + const cells = row.locator(':scope > div') + + expect(cells.nth(0)).toHaveText(formatV2ChildName(declaration)) + expect(cells.nth(1)).toHaveText('Birth') + expect(cells.nth(2)).toHaveText(declaration['child.dob'].split('T')[0]) + }) + + test('6.4 Click a name', async () => { + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + // User should navigate to record audit page + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + }) + + test('6.5 Click Print action', async () => { + await selectAction(page, 'Print') + expect( + page + .url() + .includes(`/events/print-certificate/${eventId}/pages/collector`) + ).toBeTruthy() + }) +}) diff --git a/e2e/testcases/v2-application/7-validate-sent-for-approval.spec.ts b/e2e/testcases/v2-application/7-validate-sent-for-approval.spec.ts new file mode 100644 index 0000000000..6e8d32778c --- /dev/null +++ b/e2e/testcases/v2-application/7-validate-sent-for-approval.spec.ts @@ -0,0 +1,76 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ActionType } from '@opencrvs/toolkit/events' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' + +test.describe.serial('7 Validate Sent for approval tab', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.REGISTRATION_AGENT.USERNAME, + CREDENTIALS.REGISTRATION_AGENT.PASSWORD + ) + const res = await createDeclaration(token, undefined, ActionType.VALIDATE) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.0 Login', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test('7.1 Go to Sent for approval tab', async () => { + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Sent for approval').click() + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + await expect(page.getByTestId('search-result')).toContainText( + 'Sent for approval' + ) + }) + + test('7.2 validate the list', async () => { + const header = page.locator('div[class^="TableHeader"]') + const columns = await header.locator(':scope > div').allInnerTexts() + expect(columns).toStrictEqual([ + 'Title', + 'Event', + 'Date of Event', + 'Sent for approval', + '' + ]) + + const row = getRowByTitle(page, formatV2ChildName(declaration)) + const cells = row.locator(':scope > div') + + expect(cells.nth(0)).toHaveText(formatV2ChildName(declaration)) + expect(cells.nth(1)).toHaveText('Birth') + expect(cells.nth(2)).toHaveText(declaration['child.dob'].split('T')[0]) + }) + + test('7.4 Click a name', async () => { + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + // User should navigate to record audit page + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + }) +}) diff --git a/e2e/testcases/v2-application/draft-with-partial-name.spec.ts b/e2e/testcases/v2-application/draft-with-partial-name.spec.ts new file mode 100644 index 0000000000..067f234f73 --- /dev/null +++ b/e2e/testcases/v2-application/draft-with-partial-name.spec.ts @@ -0,0 +1,97 @@ +import { expect, test, type Page } from '@playwright/test' + +import { formatName, loginToV2 } from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { ensureOutboxIsEmpty } from '../../v2-utils' + +test.describe.serial('Validate draft with partial name', () => { + let page: Page + const name1 = { + firstNames: faker.person.firstName('male') + } + const name2 = { + familyName: faker.person.lastName('male') + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Record does not appear in draft ', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name1) + ) + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name2) + ) + }) + + test('Create a draft with only firstname', async () => { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#firstname').fill(name1.firstNames) + + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + }) + + test('Create a draft with only lastname', async () => { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#surname').fill(name2.familyName) + + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + }) + + test('Records appear in draft ', async () => { + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).toContainText( + formatName(name1) + ) + await expect(page.getByTestId('search-result')).toContainText( + formatName(name2) + ) + }) + + test('Records do not appear in draft for other user: RA ', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name1) + ) + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name2) + ) + }) + + test('Records do not appear in draft for other user: LR ', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await page.getByRole('button', { name: 'My drafts' }).click() + + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name1) + ) + await expect(page.getByTestId('search-result')).not.toContainText( + formatName(name2) + ) + }) +}) diff --git a/e2e/testcases/v2-application/side-navigation.spec.ts b/e2e/testcases/v2-application/side-navigation.spec.ts new file mode 100644 index 0000000000..fa654e44f9 --- /dev/null +++ b/e2e/testcases/v2-application/side-navigation.spec.ts @@ -0,0 +1,180 @@ +import { test, type Page, expect } from '@playwright/test' +import { loginToV2 } from '../../helpers' +import { CREDENTIALS } from '../../constants' + +test.describe.serial('Side navigation', () => { + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1. Check LOCAL REGISTRAR navigation items', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR, false, true) + + // V2 workques is super set of V1 workqueues. + const localRegisrarWorkqueues = [ + 'Outbox', + 'My drafts', + 'Assigned to you', + 'Recent', + 'Notifications', + 'Ready for review', + 'Requires updates', + 'In external validation', + 'Ready to Print' + ] + + // All workqueues are present on home page. + for (const item of localRegisrarWorkqueues) { + page.getByRole('button', { name: item }) + } + + const localRegistrarNavItemsWithFrame = ['Organisation', 'Team'] + + const localRegistrarNavItemsWithoutFrame = [ + 'Registrations Dashboard', + 'Completeness Dashboard', + 'Registry' + ] + + for (const item of localRegistrarNavItemsWithFrame) { + await page.getByRole('button', { name: item }).click() + + // All workqueues are present on each page. V1 have different workqueues, so we should notice. + for (const item of localRegisrarWorkqueues) { + page.getByRole('button', { name: item }) + } + // All workqueues are present on each page. V1 have different workqueues, so we should notice. + for (const item of localRegistrarNavItemsWithoutFrame) { + page.getByRole('button', { name: item }) + } + } + + for (const item of localRegistrarNavItemsWithoutFrame) { + await page.getByRole('button', { name: item }).click() + await expect(page.locator('Farajaland CRS')).toBeHidden() + + // Only one button available (X) + await page.getByRole('button').click() + } + }) + + test('1.2. Check REGISTRATION AGENT navigation items', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT, false, true) + + // V2 workques is super set of V1 workqueues. + const registrationAgentWorkqueues = [ + 'Outbox', + 'My drafts', + 'Assigned to you', + 'Recent', + 'Notifications', + 'Ready for review', + 'Requires updates', + 'In external validation', + 'Ready to Print' + ] + + // All workqueues are present on home page. + for (const item of registrationAgentWorkqueues) { + page.getByText(item) + } + + const registrationAgentNavItemsWithFrame = ['Organisation', 'Team'] + + const registrationAgentNavItemsWithoutFrame = [ + 'Registrations Dashboard', + 'Completeness Dashboard', + 'Registry' + ] + + for (const item of registrationAgentNavItemsWithFrame) { + await page.getByText(item).click() + + // All workqueues are present on each page. V1 have different workqueues, so we should notice. + for (const item of registrationAgentWorkqueues) { + page.getByText(item) + } + // All workqueues are present on each page. V1 have different workqueues, so we should notice. + for (const item of registrationAgentNavItemsWithoutFrame) { + page.getByText(item) + } + } + + for (const item of registrationAgentNavItemsWithoutFrame) { + await page.getByText(item).click() + await expect(page.locator('Farajaland CRS')).toBeHidden() + + // Only one button available (X) + await page.getByRole('button').click() + } + }) + + test('1.3. Check NATIONAL_SYSTEM_ADMIN navigation items', async () => { + await loginToV2(page, CREDENTIALS.NATIONAL_SYSTEM_ADMIN, false, true) + + const nationalSystemAdminNavItemsWithFrame = ['Organisation', 'Team'] + + const nationalSystemAdminNavItemsWithoutFrame = [ + 'Registrations Dashboard', + 'Completeness Dashboard', + 'Registry' + ] + + // Should not have any workqueues, check that none of the workqueues are present + const registrationAgentWorkqueues = [ + 'Outbox', + 'My drafts', + 'Assigned to you', + 'Recent', + 'Notifications', + 'Ready for review', + 'Requires updates', + 'In external validation', + 'Ready to Print' + ] + + const nationalSystemAdminNestedNavItemsWithFrame = [ + ['Communications', 'Email all users'], + ['Configuration', 'Integrations'] + ] + + for (const item of nationalSystemAdminNavItemsWithFrame) { + await page.getByRole('button', { name: item }).click() + + for (const item of registrationAgentWorkqueues) { + await expect(page.locator(item)).toBeHidden() + } + + for (const items of nationalSystemAdminNestedNavItemsWithFrame) { + page.getByRole('button', { name: items[0] }) + await expect(page.locator(items[1])).toBeHidden() + } + + for (const item of nationalSystemAdminNavItemsWithoutFrame) { + page.getByRole('button', { name: item }) + } + } + + for (const items of nationalSystemAdminNestedNavItemsWithFrame) { + await expect(page.locator(items[1])).toBeHidden() + + await page.getByRole('button', { name: items[0] }).click() + + await page.getByRole('button', { name: items[1] }).click() + } + + for (const item of nationalSystemAdminNavItemsWithoutFrame) { + await page.getByRole('button', { name: item }).click() + await expect(page.locator('Farajaland CRS')).toBeHidden() + + // Only one button available (X) + await page.getByRole('button').click() + } + }) +}) diff --git a/e2e/testcases/v2-application/user-conditional-form-flow.spec.ts b/e2e/testcases/v2-application/user-conditional-form-flow.spec.ts new file mode 100644 index 0000000000..afeafd4ba1 --- /dev/null +++ b/e2e/testcases/v2-application/user-conditional-form-flow.spec.ts @@ -0,0 +1,164 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + formatName, + getRandomDate, + loginToV2 +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' + +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' + +test.describe.serial('1. User conditional form flow', () => { + let page: Page + const declaration = { + applicant: { + name: { + firstName: faker.person.firstName('male'), + middleName: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + recommender: { + name: { + firstName: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + id: '123456789' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Tennis club membership application').click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.1 Fill applicant details', async () => { + await page + .locator('#firstname') + .fill(declaration.applicant.name.firstName) + await page.locator('#surname').fill(declaration.applicant.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.applicant.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.applicant.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.applicant.birthDate.yyyy) + + await page + .getByLabel('Field shown when field agent is submitting application.') + .click() + + await continueForm(page) + }) + + test('1.1.2 Fill senior pass details', async () => { + await page.locator('#senior-pass____id').fill('123123') + + await continueForm(page) + }) + + test('1.1.3 Fill recommender details', async () => { + await page + .locator('#firstname') + .fill(declaration.applicant.name.firstName) + await page.locator('#surname').fill(declaration.applicant.name.familyName) + await page.locator('#recommender____id').fill(declaration.recommender.id) + + await continueForm(page) + }) + + test('1.1.4 Review details', async () => { + await page + .getByText('Field shown when field agent is submitting application.') + .isVisible() + + await expect( + page.getByTestId('row-value-applicant.isRecommendedByFieldAgent') + ).toHaveText('Yes') + }) + + test('1.1.5 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for review').click() + await expect( + page.getByRole('button', { + name: formatName(declaration.applicant.name) + }) + ).toBeVisible() + }) + + test('1.1.6 Navigate to the declaration "read-only" page', async () => { + await page + .getByRole('button', { + name: formatName(declaration.applicant.name) + }) + .click() + + await selectAction(page, 'View') + + await expect( + page.getByText( + 'Field shown when field agent is submitting application.' + ) + ).toBeVisible() + }) + }) + + test.describe('1.2 Declaration Review by RA', async () => { + test('1.2.1 Navigate to the declaration "read-only" page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByText('Ready for review').click() + await page + .getByRole('button', { + name: formatName(declaration.applicant.name) + }) + .click() + + await selectAction(page, 'View') + + await expect( + page.getByText( + 'Field shown when field agent is submitting application.' + ) + ).not.toBeVisible() + + await page.getByTestId('exit-button').click() + }) + + test('1.2.2 Navigate to the declaration "Review" page', async () => { + await page.getByText('Ready for review').click() + await page + .getByRole('button', { + name: formatName(declaration.applicant.name) + }) + .click() + + await selectAction(page, 'Review') + + await expect( + page.getByText( + 'Field shown when field agent is submitting application.' + ) + ).not.toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-application/workqueue-flow-1.spec.ts b/e2e/testcases/v2-application/workqueue-flow-1.spec.ts new file mode 100644 index 0000000000..3d9ebe89a3 --- /dev/null +++ b/e2e/testcases/v2-application/workqueue-flow-1.spec.ts @@ -0,0 +1,446 @@ +import { faker } from '@faker-js/faker' +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + getRandomDate, + goToSection, + loginToV2 +} from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { + ensureAssigned, + ensureOutboxIsEmpty, + selectAction +} from '../../v2-utils' +import { assertRecordInWorkqueue, fillDate } from '../v2-birth/helpers' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' + +// FA Notifies => RA Validates => LR Registers => LR Prints + +test.describe.serial('1. Workqueue flow - 1', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + placeOfBirth: 'Health Institution', + birthLocation: { + facility: 'Golden Valley Rural Health Centre', + district: 'Ibombo', + province: 'Central', + country: 'Farajaland' + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu' + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + sameAsMother: true + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 Notify by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.facility.slice(0, 3)) + await page.getByText(declaration.birthLocation.facility).click() + }) + + test('1.1.2 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('1.1.3 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('1.1.4 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + }) + + test('1.1.5 Verify workqueue', async () => { + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Sent for review', exists: true }, + { title: 'Requires updates', exists: false } + ] + }) + }) + }) + + test.describe('1.2 Validate by RA', async () => { + test('1.2.1 Verify workqueue', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: true }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('1.2.2 Review', async () => { + await page.getByText('Notifications').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + + await page + .getByTestId('accordion-Accordion_informant') + .getByRole('button', { name: 'Change all' }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('1.2.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("1.2.4 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____nid') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await continueForm(page) + }) + + test("1.2.5 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____nid') + .fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#father____addressSameAs_YES').click() + }) + + test('1.2.6 Send for approval', async () => { + await goToSection(page, 'review') + + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: true }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + }) + + test('1.3 FA can not see the validated record', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Sent for review', exists: false }, // only DECLARED and NOTIFIED records should be visible + { title: 'Requires updates', exists: false } + ] + }) + }) + + test.describe('1.4 Register by LR', async () => { + test('1.4.1 Validate workqueue', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: true }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('1.4.2 Register', async () => { + await page.getByText('Ready for review').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + + await page + .getByRole('button', { + name: 'Register' + }) + .click() + await page.locator('#confirm_Register').click() + await ensureOutboxIsEmpty(page) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: true } + ] + }) + }) + }) + + test('1.5 Print by LR', async () => { + await page + .getByRole('button', { + name: 'Ready to print' + }) + .click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await ensureAssigned(page) + await page.goBack() + + const row = getRowByTitle(page, formatName(declaration.child.name)) + + await row.getByRole('button', { name: 'Print' }).click() + + await page.locator('#collector____requesterId').click() + await page + .getByText('Print and issue to Informant (Mother)', { exact: true }) + .click() + + await continueForm(page) + await continueForm(page, 'Verified') + await continueForm(page) + await page + .getByRole('button', { + name: 'Yes, print certificate' + }) + .click() + await page + .getByRole('button', { + name: 'Print', + exact: true + }) + .click() + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('1.6 FA can not see the registered record', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Sent for review', exists: false }, // only DECLARED and NOTIFIED records should be visible + { title: 'Requires updates', exists: false } + ] + }) + }) + + test("1.7 RA can't see the record", async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) +}) diff --git a/e2e/testcases/v2-application/workqueue-flow-2.spec.ts b/e2e/testcases/v2-application/workqueue-flow-2.spec.ts new file mode 100644 index 0000000000..a00e13b386 --- /dev/null +++ b/e2e/testcases/v2-application/workqueue-flow-2.spec.ts @@ -0,0 +1,316 @@ +import { faker } from '@faker-js/faker' +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + getRandomDate, + goToSection, + loginToV2 +} from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' +import { assertRecordInWorkqueue, fillDate } from '../v2-birth/helpers' + +// FA Notifies => LR Registers + +test.describe.serial('2. Workqueue flow - 2', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + placeOfBirth: 'Health Institution', + birthLocation: { + facility: 'Golden Valley Rural Health Centre', + district: 'Ibombo', + province: 'Central', + country: 'Farajaland' + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu' + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + sameAsMother: true + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('2.1 Notify by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.facility.slice(0, 3)) + await page.getByText(declaration.birthLocation.facility).click() + }) + + test('2.1.2 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('2.1.3 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('2.1.4 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + }) + + test('2.1.5 Verify workqueue', async () => { + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Sent for review', exists: true }, + { title: 'Requires updates', exists: false } + ] + }) + }) + }) + + test.describe('2.2 Register by LR', async () => { + test('2.2.1 Verify workqueue', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: true }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('2.2.2 Review', async () => { + await page.getByText('Notifications').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + + await page + .getByTestId('accordion-Accordion_informant') + .getByRole('button', { name: 'Change all' }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('2.2.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("2.2.4 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____nid') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await continueForm(page) + }) + + test("2.2.5 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____nid') + .fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#father____addressSameAs_YES').click() + }) + + test('2.2.6 Register', async () => { + await goToSection(page, 'review') + + await page.getByRole('button', { name: 'Register' }).click() + await page.locator('#confirm_Declare').click() + + await ensureOutboxIsEmpty(page) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: true } + ] + }) + }) + }) + + test('2.3 FA can see the record', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Sent for review', exists: true }, + { title: 'Requires updates', exists: false } + ] + }) + }) + + test('2.4 RA can see the record in ready to print', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: true } + ] + }) + }) +}) diff --git a/e2e/testcases/v2-application/workqueue-flow-3.spec.ts b/e2e/testcases/v2-application/workqueue-flow-3.spec.ts new file mode 100644 index 0000000000..ad235e88a0 --- /dev/null +++ b/e2e/testcases/v2-application/workqueue-flow-3.spec.ts @@ -0,0 +1,527 @@ +import { faker } from '@faker-js/faker' +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + getRandomDate, + goToSection, + loginToV2 +} from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' +import { + assertRecordInWorkqueue, + assignFromWorkqueue, + fillDate +} from '../v2-birth/helpers' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' + +// FA Notifies => RA Rejects => FA Notifies again => RA validates => LR rejects +// => RA validates again => LR registers + +test.describe.serial('3. Workqueue flow - 3', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + placeOfBirth: 'Health Institution', + birthLocation: { + facility: 'Golden Valley Rural Health Centre', + district: 'Ibombo', + province: 'Central', + country: 'Farajaland' + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu' + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + sameAsMother: true + } + } + } + + const childName = formatName(declaration.child.name) + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('3.1 Notify by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('3.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.facility.slice(0, 3)) + await page.getByText(declaration.birthLocation.facility).click() + }) + + test('3.1.2 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('3.1.3 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('3.1.4 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + }) + + test('3.1.5 Verify workqueue', async () => { + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Sent for review', exists: true }, + { title: 'Requires updates', exists: false } + ] + }) + }) + }) + + test.describe('3.2 Reject by RA', async () => { + test('3.2.1 Verify workqueue', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: true }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('3.2.2 Review', async () => { + await page.getByText('Notifications').click() + await page + .getByRole('button', { + name: childName + }) + .click() + + await selectAction(page, 'Review') + + await page.getByRole('button', { name: 'Reject' }).click() + + await page.getByTestId('reject-reason').fill(faker.lorem.sentence()) + + await page.getByRole('button', { name: 'Send For Update' }).click() + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Sent for approval', exists: false }, + { title: 'Requires updates', exists: true }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + }) + + test.describe('3.3 Re-notify by FA', async () => { + test('3.3.1 Login', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT, true) + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Sent for review', exists: false }, + { title: 'Requires updates', exists: true } + ] + }) + }) + test('3.3.2 Go to review', async () => { + await assignFromWorkqueue(page, childName) + + await getRowByTitle(page, childName) + .getByRole('button', { name: 'Review' }) + .click() + }) + + test('3.3.3 Fill informant details', async () => { + await page + .getByTestId('accordion-Accordion_informant') + .getByRole('button', { name: 'Change all' }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("3.3.4 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____nid') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await continueForm(page) + }) + + test("3.3.5 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____nid') + .fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#father____addressSameAs_YES').click() + }) + + test('3.3.6 Send for review', async () => { + await continueForm(page, 'Back to review') + + await expect(page.getByRole('dialog')).not.toBeVisible() + + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + }) + + test('3.3.7 Verify workqueue', async () => { + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Sent for review', exists: true }, + { title: 'Requires updates', exists: false } + ] + }) + }) + }) + + test.describe('3.4 Validate by RA', async () => { + test('3.4.1 Verify workqueue', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: true }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('3.4.2 Review', async () => { + await page.getByText('Ready for review').click() + await page + .getByRole('button', { + name: childName + }) + .click() + + await selectAction(page, 'Review') + + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + // { title: 'Sent for approval', exists: true }, @ToDo: Investigate why this fails + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + }) + + test.describe('3.5 Reject by LR', async () => { + test('3.5.1 Login with LR', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: true }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + test('3.5.2 Reject', async () => { + await page.getByText('Ready for review').click() + + await assignFromWorkqueue(page, childName) + await getRowByTitle(page, childName) + .getByRole('button', { name: 'Review' }) + .click() + + await page.getByRole('button', { name: 'Reject' }).click() + + await page.getByTestId('reject-reason').fill(faker.lorem.sentence()) + + await page.getByRole('button', { name: 'Send For Update' }).click() + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: true }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + }) + test.describe('3.6 Re-validate by RA', async () => { + test('3.6.1 Login with RA', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: true }, + { title: 'Sent for approval', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('3.6.2 Re-Validate', async () => { + await page.getByText('Requires updates').click() + + await assignFromWorkqueue(page, childName) + await getRowByTitle(page, childName) + .getByRole('button', { name: 'Review' }) + .click() + + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: true }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + }) + test.describe('3.7 Register by LR', async () => { + test('3.7.1 Login with LR', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR, true) + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: true }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + test('3.7.2 Register', async () => { + await page.getByText('Ready for review').click() + + await assignFromWorkqueue(page, childName) + await getRowByTitle(page, childName) + .getByRole('button', { name: 'Review' }) + .click() + + await page.getByRole('button', { name: 'Register' }).click() + await page.locator('#confirm_Register').click() + + await assertRecordInWorkqueue({ + page, + name: childName, + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: true } + ] + }) + }) + }) +}) diff --git a/e2e/testcases/v2-application/workqueue-flow-4.spec.ts b/e2e/testcases/v2-application/workqueue-flow-4.spec.ts new file mode 100644 index 0000000000..5211df00a9 --- /dev/null +++ b/e2e/testcases/v2-application/workqueue-flow-4.spec.ts @@ -0,0 +1,396 @@ +import { faker } from '@faker-js/faker' +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + getRandomDate, + goToSection, + loginToV2 +} from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' +import { assertRecordInWorkqueue, fillDate } from '../v2-birth/helpers' + +// FA Declares => RA Validates => LR Registers + +test.describe.serial('4. Workqueue flow - 4', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + placeOfBirth: 'Health Institution', + birthLocation: { + facility: 'Golden Valley Rural Health Centre', + district: 'Ibombo', + province: 'Central', + country: 'Farajaland' + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu' + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + sameAsMother: true + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('4.1 Declare by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.facility.slice(0, 3)) + await page.getByText(declaration.birthLocation.facility).click() + + await continueForm(page) + }) + + test('4.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("4.1.3 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____nid') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await continueForm(page) + }) + + test("4.1.4 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____nid') + .fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#father____addressSameAs_YES').click() + }) + + test('4.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('4.1.6 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('4.1.7 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + }) + + test('4.1.8 Verify workqueue', async () => { + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Sent for review', exists: true }, + { title: 'Requires updates', exists: false } + ] + }) + }) + }) + + test('4.2 Workqueue for LR', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: true }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test.describe('4.3 Validate by RA', async () => { + test('4.3.1 Verify workqueue', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: true }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('4.3.2 Review', async () => { + await page.getByText('Ready for review').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'Sent for approval', exists: true }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + }) + + test('4.4 FA can not see the validated record', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Sent for review', exists: false }, // only DECLARED and NOTIFIED records should be visible + { title: 'Requires updates', exists: false } + ] + }) + }) + + test.describe('4.5 Register by LR', async () => { + test('4.5.1 Validate workqueue', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: true }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: false } + ] + }) + }) + + test('4.5.2 Register', async () => { + await page.getByText('Ready for review').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + + await page + .getByRole('button', { + name: 'Register' + }) + .click() + await page.locator('#confirm_Register').click() + await ensureOutboxIsEmpty(page) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: true }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: true } + ] + }) + }) + }) + + test('4.6 FA can not see the registered record', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Sent for review', exists: false }, // only DECLARED and NOTIFIED records should be visible + { title: 'Requires updates', exists: false } + ] + }) + }) + + test('4.7 Workqueue for RA', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT, true) + + await assertRecordInWorkqueue({ + page, + name: formatName(declaration.child.name), + workqueues: [ + { title: 'Assigned to you', exists: false }, + { title: 'Recent', exists: false }, + { title: 'Notifications', exists: false }, + { title: 'Ready for review', exists: false }, + { title: 'Sent for approval', exists: false }, + { title: 'Requires updates', exists: false }, + { title: 'In external validation', exists: false }, + { title: 'Ready to print', exists: true } + ] + }) + }) +}) diff --git a/e2e/testcases/v2-archival/basic-archival.spec.ts b/e2e/testcases/v2-archival/basic-archival.spec.ts new file mode 100644 index 0000000000..bf6a4244a0 --- /dev/null +++ b/e2e/testcases/v2-archival/basic-archival.spec.ts @@ -0,0 +1,336 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + getRandomDate, + goToSection, + loginToV2, + logout +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' +import { fillDate } from '../v2-birth/helpers' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' + +test.describe.serial('Basic Archival flow', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Physician', + birthType: 'Single', + weightAtBirth: 2.4, + placeOfBirth: 'Health Institution', + birthLocation: { + facility: 'Golden Valley Rural Health Centre', + district: 'Ibombo', + province: 'Central', + country: 'Farajaland' + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling', + address: { + sameAsMother: true + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Login as FA', async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + }) + + test('Start creating new birth declaration', async () => { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.facility.slice(0, 3)) + await page.getByText(declaration.birthLocation.facility).click() + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await page + .locator('#child____weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + + await continueForm(page) + }) + + test('Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page.locator('#mother____nid').fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.mother.address.town) + await page + .locator('#residentialArea') + .fill(declaration.mother.address.residentialArea) + await page.locator('#street').fill(declaration.mother.address.street) + await page.locator('#number').fill(declaration.mother.address.number) + await page + .locator('#zipCode') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page.locator('#father____nid').fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#father____addressSameAs_YES').click() + + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#father____educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Go to review', async () => { + await goToSection(page, 'review') + }) + + test('Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + }) + + test('Archival is not available for FA', async () => { + await page.getByText('Sent for review').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await page.getByRole('button', { name: 'Action', exact: true }).click() + await expect( + page.getByRole('button', { name: 'Assign', exact: true }) + ).not.toBeVisible() + await expect( + page.getByRole('button', { name: 'Archive', exact: true }) + ).not.toBeVisible() + }) + + test('Logout', async () => { + await logout(page) + }) + + test('Login as RA', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test('Navigate to the event overview page', async () => { + await page.getByText('Ready for review').click() + + // Expect not to see a quick action for Archival + await expect( + page.getByRole('button', { name: 'Archive', exact: true }) + ).not.toBeVisible() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + }) + + test('Archive the declaration', async () => { + await selectAction(page, 'Archive') + await expect(page.getByText('Archive declaration?')).toBeVisible() + await expect( + page.getByText( + 'This will archive the record and remove it from your workspace' + ) + ).toBeVisible() + await page.getByRole('button', { name: 'Archive', exact: true }).click() + }) + + test('Archived declaration is not visible in workqueues', async () => { + await page.getByText('Ready for review').click() + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).not.toBeVisible() + }) + + test('Archived declaration can be found via search', async () => { + await page.locator('#searchText').fill(formatName(declaration.child.name)) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await expect(page.getByTestId('status-value')).toHaveText('Archived') + }) +}) diff --git a/e2e/testcases/v2-birth/1-birth-event-declaration.spec.ts b/e2e/testcases/v2-birth/1-birth-event-declaration.spec.ts new file mode 100644 index 0000000000..12d26c4659 --- /dev/null +++ b/e2e/testcases/v2-birth/1-birth-event-declaration.spec.ts @@ -0,0 +1,621 @@ +import { expect, test, type Page } from '@playwright/test' +import { loginToV2 } from '../../helpers' +import path from 'path' +import { faker } from '@faker-js/faker' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from './helpers' +import { trackAndDeleteCreatedEvents } from '../v2-test-data/eventDeletion' + +const child = { + name: { + firstNames: faker.person.firstName('female'), + surname: faker.person.lastName() + } +} + +test.describe.serial('1. Birth event declaration', () => { + trackAndDeleteCreatedEvents() + + test.describe.serial('Fill all form sections. Save & Exit', () => { + let page: Page + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1. Navigate to the birth event declaration page', async () => { + await loginToV2(page) + + await page.click('#header-new-event') + await expect(page.getByText('New Declaration')).toBeVisible() + await expect( + page.getByText('What type of event do you want to declare?') + ).toBeVisible() + }) + + test.describe('1.2. Validate event selection page', async () => { + test('1.2.1 Validate the contents of the event type page', async () => { + /* + * Expected result: should show + * - Radio buttons of the events + * - Continue button + * - Exit button + */ + await expect( + page.getByLabel('Tennis club membership application') + ).toBeVisible() + + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Exit' })).toBeVisible() + }) + + test('1.2.2 Click the "Continue" button without selecting any event', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should throw an error as below: + * "Please select the type of event" + */ + await expect( + page.getByText('Please select the type of event') + ).toBeVisible() + }) + + test('1.2.3 Select the "Birth" event and click "Continue" button', async () => { + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: User should navigate to the "Introduction" page + */ + }) + }) + + test.describe('1.3 Validate "Introduction" page', async () => { + test('1.3.1 Validate the contents of introduction page', async () => { + /* + * Expected result: should show + * - verbiage of birth event introduction + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + // await expect(page.getByLabel('Continue')).toBeVisible() + await expect( + page.getByText( + 'Introduce the birth registration process to the informant' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test('1.3.2 Verify the verbiage of introduction page of birth event', async () => { + /* + * Expected result: should show + * - I am going to help you make a declaration of birth. + * - As the legal Informant it is important that all the information provided by you is accurate. + * - Once the declaration is processed you will receive an SMS to tell you + * when to visit the office to collect the certificate - Take your ID with you. + * - Make sure you collect the certificate. A birth certificate is critical for this child, + * especially to make their life easy later on. It will help to access health services, school examinations and government benefits. + */ + await expect( + page.getByText('I am going to help you make a declaration of birth.') + ).toBeVisible() + await expect( + page.getByText( + 'As the legal Informant it is important that all the information provided by you is accurate.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Once the declaration is processed you will receive an SMS to tell you when to visit the office to collect the certificate - Take your ID with you.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Make sure you collect the certificate. A birth certificate is critical for this child, especially to make their life easy later on. It will help to access health services, school examinations and government benefits.' + ) + ).toBeVisible() + }) + + test('1.3.3 Click the "continue" button', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should navigate to the "Child details" page + */ + await expect(page.getByText("Child's details")).toBeVisible() + }) + }) + + test.describe('1.4 Validate "Child Details" page', async () => { + test('1.4.1 Validate the contents of Child details page', async () => { + /* + * Expected result: should see + * - Child details block + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test('1.4.2 Validate Child details block', async () => { + await page.locator('#firstname').fill(child.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(child.name.surname) + await page.locator('#surname').blur() + }) + + test('1.4.3 Click "continue"', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to 'informant details' page + */ + await expect(page.getByText("Informant's details")).toBeVisible() + }) + }) + + test.describe('1.5 Validate "Informant details" page', async () => { + test('1.5.1 Validate the contents of informant details page', async () => { + /* + * Expected result: should see + * - Relationship to child dropdown + * - Phone number field + * - Email address field + * - Continue button + * - Exit button + * - Save &exit button + * - 3dot menu (delete option) + */ + await expect(page.getByText('Relationship to child')).toBeVisible() + await expect(page.getByText('Phone number')).toBeVisible() + await expect(page.getByText('Email')).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + // @TODO: This kind of login is not implemented in V2 events yet + test.skip('1.5.2 Click the "continue" button without selecting any relationship to child', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should throw error: + * - Required + */ + await expect(page.getByText("Informant's details")).toBeVisible() + await expect(page.getByText(REQUIRED_VALIDATION_ERROR)).toBeVisible() + }) + + test('1.5.3 Select any option in relationship to child and click the "continue" button', async () => { + await page.getByText('Select').click() + await page.getByText('Mother', { exact: true }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "mother's details" page + */ + await expect( + page.getByText("Mother's details", { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.6 Validate "Mother Details" page', async () => { + test("1.6.1 validate the contents of mother's details page", async () => { + /* + * Expected result: should see + * - Mother's details block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText("Mother's details", { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip("1.6.2 Validate Mother's details block", async () => {}) + + test('1.6.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Father's details" page + */ + await expect( + page.getByText("Father's details", { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.7 Validate "Father Details" page', async () => { + test("1.7.1 validate the contents of Father's details page", async () => { + /* + * Expected result: should see + * - Father's details block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText("Father's details", { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip("1.7.2 Validate Father's details block", async () => {}) + + test('1.7.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Supporting documents" page + */ + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.8 Validate "Supporting Document" page', async () => { + test('1.8.1 validate the contents of Supporting Document page', async () => { + /* + * Expected result: should see + * - Supporting Document block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test('1.8.2 Validate Supporting Document block', async () => { + await page + .locator('#documents____proofOfMother-form-input div') + .filter({ hasText: /^Select\.\.\.$/ }) + .nth(2) + .click() + await page.getByText('Birth Certificate', { exact: true }).click() + await page.locator('button[name="documents____proofOfMother"]').click() + + await page + .locator('input[data-testid="documents____proofOfMother"]') + .setInputFiles(path.join(__dirname, 'test_img.png')) + + await expect( + page.locator('#document_BIRTH_CERTIFICATE_link') + ).toContainText('Birth Certificate') + await expect(page.getByLabel('Delete attachment')).toBeVisible() + }) + + test('1.8.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Review" page + */ + await expect( + page + .getByRole('button', { name: 'Send for review' }) + .or(page.getByRole('button', { name: 'Register' })) + ).toBeVisible() + }) + }) + + test.describe('1.9 Validate "Save & Exit" Button ', async () => { + test('1.9.1 Click the "Save & Exit" button from any page', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + + /* + * Expected result: should open modal with: + * - Title: Save & Exit + * - Helper text: All inputted data will be kept secure for future editing. + * Are you ready to save any changes to this declaration form? + * - Cancel Button + * - Confirm Button + */ + + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeVisible() + + await expect( + page.getByText( + 'All inputted data will be kept secure for future editing. Are you ready to save any changes to this declaration form?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Confirm' }) + ).toBeVisible() + }) + + test('1.9.2 Click Cancel', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeHidden() + }) + + test('1.9.3 Click Confirm', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to "my-drafts" tab + * - find the declared birth event record on this page list with saved data + */ + //@todo: The user should be navigated to "my-drafts" tab by default + await page.getByText('My drafts').click() + + await expect(page.locator('#content-name')).toHaveText('My drafts') + + await ensureOutboxIsEmpty(page) + + await expect(page.getByText(child.name.firstNames)).toBeVisible() + }) + + test('1.9.4 Reopen draft and navigate to review page', async () => { + await page + .getByRole('button', { + name: child.name.firstNames + ' ' + child.name.surname + }) + .click() + + await selectAction(page, 'Declare') + + await expect(page.locator('#select_document')).toContainText( + "Proof of mother's ID (Birth Certificate)" + ) + await expect( + page.getByRole('img', { name: 'Supporting Document' }) + ).toBeVisible() + }) + }) + }) + test.describe('1.10 Validate "Exit" Button', async () => { + test.beforeEach(async ({ page }) => { + await loginToV2(page) + + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Exit', exact: true }).click() + }) + + test('1.10.1 Click the "Exit" button from any page', async ({ page }) => { + /* + * Expected result: should open modal with: + * - Title: Exit without saving changes? + * - Helper text: You have unsaved changes on your declaration form. Are you sure you want to exit without saving? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeVisible() + await expect( + page.getByText( + 'You have unsaved changes on your declaration form. Are you sure you want to exit without saving?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.10.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.10.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + // @TODO: My drafts page is not available yet in V2 events + // await expect( + // page.locator('#content-name', { hasText: 'My drafts' }) + // ).toBeVisible() + // await expect(page.getByText(/seconds ago/)).toBeHidden() + + await expect( + page + .getByTestId('search-result') + .getByText('Assigned to you', { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.11 Validate "Delete Declaration" Button ', async () => { + test.beforeEach(async ({ page }) => { + await loginToV2(page) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#event-menu-dropdownMenu').click() + await page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + .click() + }) + + test('1.11.1 Click the "Delete Declaration" button from any page', async ({ + page + }) => { + /* + * Expected result: should open modal with: + * - Title: Delete draft? + * - Helper text: Are you sure you want to delete this declaration? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Delete draft?' }) + ).toBeVisible() + await expect( + page.getByText('Are you sure you want to delete this declaration?') + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.11.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.11.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + // @TODO: My drafts page is not available yet in V2 events + // await expect( + // page.locator('#content-name', { hasText: 'My drafts' }) + // ).toBeVisible() + // await expect(page.getByText(/seconds ago/)).toBeHidden() + + await expect( + page.getByTestId('search-result').getByText('Assigned to you') + ).toBeVisible() + }) + }) + + // @TODO: This test is not implemented in V2 events yet + test.describe.skip('1.12 Technical test for shortcuts', () => { + test.skip('Shortcut for quickly creating declarations', async () => {}) + }) +}) diff --git a/e2e/testcases/v2-birth/2-validate-the-child-details-page.spec.ts b/e2e/testcases/v2-birth/2-validate-the-child-details-page.spec.ts new file mode 100644 index 0000000000..27f4e31ed2 --- /dev/null +++ b/e2e/testcases/v2-birth/2-validate-the-child-details-page.spec.ts @@ -0,0 +1,404 @@ +import { test, expect, Page } from '@playwright/test' +import { goToSection, loginToV2 } from '../../helpers' +import { NAME_VALIDATION_ERROR, REQUIRED_VALIDATION_ERROR } from './helpers' +import { trackAndDeleteCreatedEvents } from '../v2-test-data/eventDeletion' + +const loginAndBeginBirthDeclaration = async ({ page }: { page: Page }) => { + await loginToV2(page) + + await page.click('#header-new-event') + + await expect(page.getByText('New Declaration')).toBeVisible() + await expect( + page.getByText('What type of event do you want to declare?') + ).toBeVisible() + await expect(page.getByLabel('Birth')).toBeVisible() + + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.getByText("Child's details")).toBeVisible() +} + +test.describe.serial("2. Validate the child's details page", () => { + let page: Page + + trackAndDeleteCreatedEvents() + + test.describe('2.1 Validate "First Name(s)" text field', async () => { + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginAndBeginBirthDeclaration({ page }) + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('2.1.1 Enter Non-English characters', async () => { + test('Using name: Richard the 3rd', async () => { + await page.locator('#firstname').fill('Richard the 3rd') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test('Using name: John_Peter', async () => { + await page.locator('#firstname').fill('John_Peter') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test('Using name: John-Peter', async () => { + await page.locator('#firstname').fill('John-Peter') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test("Using name: O'Neill", async () => { + await page.locator('#firstname').fill("O'Neill") + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + // @TODO: This validation is not implemented in Events V2 yet + test.skip('Using name: &er$on', async () => { + await page.locator('#firstname').fill('&er$on') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeVisible() + }) + + // @TODO: This validation is not implemented in Events V2 yet + test.skip('Using name: X Æ A-Xii', async () => { + await page.locator('#firstname').fill('X Æ A-Xii') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should throw error: + * - Input contains invalid characters. Please use only letters (a-z), numbers (0-9), hyphens (-), and underscores (_) + */ + await expect(page.locator('#firstname_error')).toBeVisible() + }) + }) + + test('2.1.2 Enter less than 33 English characters', async () => { + await page.locator('#firstname').fill('Rakibul Islam') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test('2.1.4 Enter more than 32 English characters', async () => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#firstname').fill(LONG_NAME) + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should clip the name to first 32 character + */ + await expect(page.locator('#firstname')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + + test('2.1.3 Enter Field as NULL', async () => { + await goToSection(page, 'review') + + /* + * Expected result: should throw error in application review page: + * - Required + */ + await expect( + page + .locator('[data-testid="row-value-child.name"]') + .getByText(NAME_VALIDATION_ERROR) + ).toBeVisible() + }) + }) + + test.describe('2.3 Validate the Sex dropdown field', async () => { + test.beforeEach(async ({ page }) => { + await loginAndBeginBirthDeclaration({ page }) + }) + + test('2.3.1 Select any dropdown value: "Female"', async ({ page }) => { + await page.locator('#child____gender').click() + await page.getByText('Female', { exact: true }).click() + + /* + * Expected result: "Female" should be selected + */ + await expect( + page.locator('#child____gender', { hasText: 'Female' }) + ).toBeVisible() + }) + + test('2.3.2 Set the field as null', async ({ page }) => { + await goToSection(page, 'review') + + /* + * Expected result: should throw error in application review page: + * - Required + */ + await expect( + page + .locator('[data-testid="row-value-child.gender"]') + .getByText(REQUIRED_VALIDATION_ERROR) + ).toBeVisible() + }) + }) + + test.describe('2.4 Validate the "DOB" field', async () => { + test.beforeEach(async ({ page }) => { + await loginAndBeginBirthDeclaration({ page }) + }) + + test('2.4.1 Enter date less than the current date', async ({ page }) => { + const yesterday = new Date() + yesterday.setDate(new Date().getDate() - 1) + const [yyyy, mm, dd] = yesterday.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the date + */ + await expect(page.locator('#child____dob_error')).toBeHidden() + }) + + // @TODO: This validation is not implemented in Events V2 yet + test.skip('2.4.2 Enter invalid date', async () => { + await page.getByPlaceholder('dd').fill('0') + await page.getByPlaceholder('mm').fill('0') + await page.getByPlaceholder('yyyy').fill('0') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should not accept the invalid date and show error: + * - Must be a valid birth date + */ + await expect(page.locator('#child____dob_error')).toHaveText( + 'Must be a valid birth date' + ) + }) + + // @TODO: This validation is not implemented in Events V2 yet + test.skip('2.4.3 Enter future date', async () => { + const futureDate = new Date() + futureDate.setDate(new Date().getDate() + 5) + const [yyyy, mm, dd] = futureDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should not accept the future date and show error: + * - Must be a valid birth date + + */ + await expect(page.locator('#child____dob_error')).toHaveText( + 'Must be a valid birth date' + ) + }) + + test('2.4.4 Set the field as null', async ({ page }) => { + await goToSection(page, 'review') + + /* + * Expected result: should throw error in application review page: + * - Required + */ + await expect( + page + .locator('[data-testid="row-value-child.dob"]') + .getByText(REQUIRED_VALIDATION_ERROR) + ).toBeVisible() + }) + }) + + test.describe('2.5 Validate delayed registration', async () => { + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + loginAndBeginBirthDeclaration({ page }) + }) + + test.afterAll(async () => { + await page.close() + }) + + test.beforeEach(async () => { + const delayedDate = new Date() + delayedDate.setDate(new Date().getDate() - 365 - 5) + const [yyyy, mm, dd] = delayedDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByRole('heading', { name: 'Birth' }) + }) + + test('2.5.1 Enter date after delayed registration time period', async () => { + const lateDate = new Date() + lateDate.setDate(new Date().getDate() - 365 + 5) + const [yyyy, mm, dd] = lateDate.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should show field: + * - Reason for delayed registration + */ + await expect( + page.getByText('Reason for delayed registration') + ).toBeHidden() + }) + + test('2.5.2 Enter date before delayed registration time period', async () => { + /* + * Expected result: should show field: + * - Reason for delayed registration + */ + await expect( + page.getByText('Reason for delayed registration') + ).toBeVisible() + }) + + test('2.5.3 Enter "Reason for late registration"', async () => { + await page.locator('#child____reason').fill('Lack of awareness') + + /* + * Expected result: should accept text + */ + await expect(page.locator('#child____reason_error')).toBeHidden() + }) + + test('2.5.4 Set the field as null', async () => { + await page.locator('#child____reason').fill('') + await goToSection(page, 'review') + + /* + * Expected result: should throw error in application review page: + * - Required + */ + await expect( + page + .getByRole('row', { name: 'Reason for delayed' }) + .locator('[data-testid="row-value-child.reason"]') + ).toHaveText(REQUIRED_VALIDATION_ERROR) + }) + }) + + test.describe('2.6 Validate place of delivery field', async () => { + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + loginAndBeginBirthDeclaration({ page }) + }) + + test.afterAll(async () => { + await page.close() + }) + + test('2.6.2.a Validate Health Institution', async () => { + await test.step('Select Health Institution', async () => { + await page.locator('#child____placeOfBirth').click() + await page.getByText('Health Institution', { exact: true }).click() + /* + * Expected result: should show input field for: + * - Health institution + */ + await expect(page.locator('#child____birthLocation')).toBeVisible() + }) + await test.step('Enter any health institution', async () => { + await page.locator('#child____birthLocation').fill('b') + await page.getByText('Bombwe Health Post').click() + /* + * Expected result: should select "Bombwe Health Post" as health institute + */ + await expect(page.locator('#child____birthLocation')).toHaveValue( + 'Bombwe Health Post' + ) + }) + }) + + test('2.6.2.b Select Residential address', async () => { + await page.locator('#child____placeOfBirth').click() + await page.getByText('Residential address', { exact: true }).click() + + /* + * Expected result: + * - should select "Residential address" as place of birth + * - Should show input field for address + */ + await expect(page.locator('#child____placeOfBirth')).toContainText( + 'Residential address' + ) + + await expect( + page.locator('#child____birthLocation____privateHome-form-input') + ).toBeVisible() + }) + + test('2.6.2.c Select Other', async () => { + await page.locator('#child____placeOfBirth').click() + await page.getByText('Other', { exact: true }).click() + + /* + * Expected result: + should select "Other" as place of birth + * - Should show input field for address + */ + await expect(page.locator('#child____placeOfBirth')).toContainText( + 'Other' + ) + + await expect( + page.locator('#child____birthLocation____other-form-input') + ).toBeVisible() + }) + + test('2.6.1 Keep field as null', async ({ page }) => { + await loginAndBeginBirthDeclaration({ page }) // Use a fresh page for null test + await goToSection(page, 'review') + + /* + * Expected result: should throw error in application review page: + * - Required + */ + await expect( + page.locator('[data-testid="row-value-child.placeOfBirth"]') + ).toHaveText(REQUIRED_VALIDATION_ERROR) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/3-validate-the-mother-and-father-details-page.spec.ts b/e2e/testcases/v2-birth/3-validate-the-mother-and-father-details-page.spec.ts new file mode 100644 index 0000000000..8b50e2e36c --- /dev/null +++ b/e2e/testcases/v2-birth/3-validate-the-mother-and-father-details-page.spec.ts @@ -0,0 +1,197 @@ +import { test, expect } from '@playwright/test' +import { goToSection, loginToV2 } from '../../helpers' +import { REQUIRED_VALIDATION_ERROR } from './helpers' +import { trackAndDeleteCreatedEvents } from '../v2-test-data/eventDeletion' + +test.describe('3. Validate the mothers and fathers details pages', () => { + trackAndDeleteCreatedEvents() + + test.beforeEach(async ({ page }) => { + await loginToV2(page) + + await page.click('#header-new-event') + + await expect(page.getByText('New Declaration')).toBeVisible() + await expect( + page.getByText('What type of event do you want to declare?') + ).toBeVisible() + await expect(page.getByLabel('Birth')).toBeVisible() + + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page.getByText("Mother's details", { exact: true }) + ).toBeVisible() + }) + + test.describe.serial('3.1 Validate "First Name(s)" text field', async () => { + test.describe('3.1.1 Enter Non-English characters', async () => { + test('Using name: Richard the 3rd', async ({ page }) => { + await page.locator('#firstname').fill('Richard the 3rd') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test('Using name: John_Peter', async ({ page }) => { + await page.locator('#firstname').fill('John_Peter') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test('Using name: John-Peter', async ({ page }) => { + await page.locator('#firstname').fill('John-Peter') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test("Using name: O'Neill", async ({ page }) => { + await page.locator('#firstname').fill("O'Neill") + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + }) + + test('3.1.2 Enter less than 33 English characters', async ({ page }) => { + await page.locator('#firstname').fill('Rakibul Islam') + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should accept the input and not throw any error + */ + await expect(page.locator('#firstname_error')).toBeHidden() + }) + + test('3.1.3 Enter Field as NULL', async ({ page }) => { + await goToSection(page, 'review') + + /* + * Expected result: should throw error in application review page: + * - Required + */ + await expect( + page + .locator('[data-testid="row-value-mother.name"]') + .getByText(REQUIRED_VALIDATION_ERROR) + ).toBeVisible() + }) + + test('3.1.4 Enter more than 32 English characters', async ({ page }) => { + const LONG_NAME = 'Ovuvuevuevue Enyetuenwuevue Ugbemugbem Osas' + await page.locator('#firstname').fill(LONG_NAME) + await page.getByRole('heading', { name: 'Birth' }) + + /* + * Expected result: should clip the name to first 32 character + */ + await expect(page.locator('#firstname')).toHaveValue( + LONG_NAME.slice(0, 32) + ) + }) + }) + + test.describe.serial('3.2 Validate the "National ID" field', async () => { + test.beforeEach(async ({ page }) => { + await page.locator('#mother____idType').getByText('Select...').click() + await page.getByText('National ID', { exact: true }).click() + }) + + test('3.2.1 Enter empty National ID', async ({ page }) => { + await page.locator('#mother____nid-form-input div').nth(1).click() + await page.getByRole('heading', { name: 'Birth' }).click() + await expect(page.locator('#mother____nid_error')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + }) + + test('3.2.2 Enter National ID with non-numeric characters', async ({ + page + }) => { + await page.getByTestId('text__mother____nid').fill('11111asdfg') + await page.getByRole('heading', { name: 'Birth' }).click() + await expect( + page.getByText( + 'The national ID can only be numeric and must be 10 digits long', + { exact: true } + ) + ).toBeVisible() + }) + + test('3.2.3 Enter too short National ID', async ({ page }) => { + await page.getByTestId('text__mother____nid').fill('123456789') + await page.getByRole('heading', { name: 'Birth' }).click() + await expect( + page.getByText( + 'The national ID can only be numeric and must be 10 digits long', + { exact: true } + ) + ).toBeVisible() + }) + + test('3.2.3 Enter too long National ID', async ({ page }) => { + await page.getByTestId('text__mother____nid').fill('12345678901') + await page.getByRole('heading', { name: 'Birth' }).click() + await expect( + page.getByText( + 'The national ID can only be numeric and must be 10 digits long', + { exact: true } + ) + ).toBeVisible() + }) + + test('3.2.4 Enter valid National ID', async ({ page }) => { + await page.getByTestId('text__mother____nid').fill('1234567890') + await page.getByRole('heading', { name: 'Birth' }).click() + await expect( + page.getByText( + 'The national ID can only be numeric and must be 10 digits long', + { exact: true } + ) + ).not.toBeVisible() + }) + + test('3.2.5 Fathers National ID must not match mothers National ID', async ({ + page + }) => { + await page.getByTestId('text__mother____nid').fill('1234567890') + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#father____idType').getByText('Select...').click() + await page.getByText('National ID', { exact: true }).click() + await page.getByTestId('text__father____nid').fill('1234567890') + await page.getByRole('heading', { name: 'Birth' }).click() + + await expect( + page.getByText('National id must be unique', { + exact: true + }) + ).toBeVisible() + await page.getByTestId('text__father____nid').fill('12345678901') + await page.getByRole('heading', { name: 'Birth' }).click() + await expect( + page.getByText('National id must be unique', { + exact: true + }) + ).not.toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/4-validate-the-informant-details-page.spec.ts b/e2e/testcases/v2-birth/4-validate-the-informant-details-page.spec.ts new file mode 100644 index 0000000000..df3c3fc74f --- /dev/null +++ b/e2e/testcases/v2-birth/4-validate-the-informant-details-page.spec.ts @@ -0,0 +1,51 @@ +import { test, expect, Page } from '@playwright/test' +import { goToSection, loginToV2 } from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { trackAndDeleteCreatedEvents } from '../v2-test-data/eventDeletion' + +test.describe('4. Validate the informants details pages', () => { + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + trackAndDeleteCreatedEvents() + + test.describe.serial('4.1 Validate "Phone number" text field', async () => { + test('4.1.1 Enter Non-valid phone number', async () => { + await page.locator('#informant____phoneNo').fill('1234567890') + await page.getByRole('heading', { name: 'Birth', exact: true }).click() + await expect(page.locator('#informant____phoneNo_error')).toHaveText( + 'Must be a valid 10 digit number that starts with 0(7|9)' + ) + }) + + test('4.1.2 Navigate to review page and check for error', async () => { + await goToSection(page, 'review') + await expect(page.getByTestId('row-value-informant.phoneNo')).toHaveText( + 'Must be a valid 10 digit number that starts with 0(7|9)' + ) + }) + + test('4.1.3 Change phone number to empty', async () => { + await page.getByTestId('change-button-informant.phoneNo').click() + await page.getByText('Continue').click() + await page.locator('#informant____phoneNo').fill('') + await page.getByRole('heading', { name: 'Birth', exact: true }).click() + + await expect(page.locator('#informant____phoneNo_error')).toBeHidden() + }) + + test('4.1.4 Navigate to review page and check that error does not appear', async () => { + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByTestId('row-value-informant.phoneNo')).toBeEmpty() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/8-validate-declaration-review-page.spec.ts b/e2e/testcases/v2-birth/8-validate-declaration-review-page.spec.ts new file mode 100644 index 0000000000..dbdb9454df --- /dev/null +++ b/e2e/testcases/v2-birth/8-validate-declaration-review-page.spec.ts @@ -0,0 +1,1516 @@ +import { test, expect, type Page } from '@playwright/test' +import { + drawSignature, + continueForm, + getRandomDate, + goToSection, + formatName, + loginToV2, + formatDateObjectTo_dMMMMyyyy, + expectRowValueWithChangeButton +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' +import { fillDate } from './helpers' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' + +test.describe.serial('8. Validate declaration review page', () => { + let page: Page + + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Physician', + birthType: 'Single', + weightAtBirth: 2.4, + placeOfBirth: 'Health Institution', + birthLocation: 'Bombwe Health Post', + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Pualula', + district: 'Pili' + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: 'Same as mother' + } + } + + let comment = faker.lorem.sentence() + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Field agent actions', async () => { + test.describe('8.1.0 Fill up birth registration form', async () => { + test('8.1.0.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.slice(0, 3)) + await page.getByText(declaration.birthLocation).click() + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await page + .locator('#child____weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + + await continueForm(page) + }) + + test('8.1.0.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page + .locator('#informant____email') + .fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("8.1.0.3 Fill mother's details", async () => { + await page + .locator('#firstname') + .fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____nid') + .fill(declaration.mother.identifier.id) + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await continueForm(page) + }) + + test("8.1.0.4 Fill father's details", async () => { + await page + .locator('#firstname') + .fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____nid') + .fill(declaration.father.identifier.id) + + await page.locator('#father____addressSameAs_YES').click() + await continueForm(page) + }) + }) + + test.describe('8.1.1 Navigate to declaration review page', async () => { + test('8.1.1.1 Verify information added on previous pages', async () => { + await goToSection(page, 'review') + + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + * - Change button + */ + + await expectRowValueWithChangeButton( + page, + 'child.name', + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.gender', + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.dob', + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.placeOfBirth', + declaration.placeOfBirth + ) + await expectRowValueWithChangeButton( + page, + 'child.birthLocation', + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.attendantAtBirth', + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.birthType', + declaration.birthType + ) + + /* + * Expected result: should include + * - Child's Weight at birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.weightAtBirth', + declaration.weightAtBirth.toString() + ) + + /* + * Expected result: should include + * - Informant's relation to child + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informantType + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.name', + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.dob', + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.nationality', + declaration.mother.nationality + ) + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.idType', + declaration.mother.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'mother.nid', + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.country + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.district + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.province + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.name', + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.dob', + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.nationality', + declaration.father.nationality + ) + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.idType', + declaration.father.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'father.nid', + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.addressSameAs', + 'Yes' + ) + }) + }) + + test.describe('8.1.2 Click any "Change" link', async () => { + test("8.1.2.1 Change child's name", async () => { + await page.getByTestId('change-button-child.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.child.name = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's name + */ + await expect(page.getByTestId('row-value-child.name')).toContainText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + }) + + test("8.1.2.2 Change child's gender", async () => { + await page.getByTestId('change-button-child.gender').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.child.gender = 'Female' + + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + declaration.child.gender + ) + }) + + test("8.1.2.3 Change child's birthday", async () => { + await page.getByTestId('change-button-child.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.child.birthDate = getRandomDate(0, 200) + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.child.birthDate.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's birthday + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + }) + + test("8.1.2.4 Change child's birth location", async () => { + await page.getByTestId('change-button-child.birthLocation').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.birthLocation = 'Chikonkomene Health Post' + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.slice(0, 3)) + await page.getByText(declaration.birthLocation).click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change child's place of birth + */ + await expect( + page.getByTestId('row-value-child.birthLocation') + ).toContainText(declaration.birthLocation) + }) + + test('8.1.2.5 Change attendant at birth', async () => { + await page.getByTestId('change-button-child.attendantAtBirth').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.attendantAtBirth = 'Midwife' + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toContainText(declaration.attendantAtBirth) + }) + + test('8.1.2.6 Change type of birth', async () => { + await page.getByTestId('change-button-child.birthType').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.birthType = 'Twin' + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change type of birth + */ + await expect( + page.getByTestId('row-value-child.birthType') + ).toContainText(declaration.birthType) + }) + + test("8.1.2.7 Change child's weight at birth", async () => { + await page.getByTestId('change-button-child.weightAtBirth').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.weightAtBirth = 2.7 + await page + .locator('#child____weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change weight at birth + */ + await expect( + page.getByTestId('row-value-child.weightAtBirth') + ).toContainText(declaration.weightAtBirth.toString()) + }) + + test('8.1.2.8 Change informant type', async () => { + await page.getByTestId('change-button-informant.relation').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.informantType = 'Father' + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change informant type + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + }) + + test('8.1.2.9 Change registration email', async () => { + await page.getByTestId('change-button-informant.email').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.informantEmail = + declaration.father.name.firstNames.toLowerCase() + + '.' + + declaration.father.name.familyName.toLowerCase() + + (Math.random() * 1000).toFixed(0) + + '@opencrvs.dev' + await page + .locator('#informant____email') + .fill(declaration.informantEmail) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change registration email + */ + await expect( + page.getByTestId('row-value-informant.email') + ).toContainText(declaration.informantEmail) + }) + + test("8.1.2.10 Change mother's name", async () => { + await page.getByTestId('change-button-mother.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.mother.name.firstNames = faker.person.firstName('female') + declaration.mother.name.familyName = faker.person.lastName('female') + await page + .locator('#firstname') + .fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's name + */ + await expect(page.getByTestId('row-value-mother.name')).toContainText( + declaration.mother.name.firstNames + ) + }) + + test("8.1.2.11 Change mother's birthday", async () => { + await page.getByTestId('change-button-mother.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.mother.birthDate = getRandomDate(19, 200) + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's birthday + */ + await expect(page.getByTestId('row-value-mother.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + }) + + test("8.1.2.12 Change mother's nationality", async () => { + await page.getByTestId('change-button-mother.nationality').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.mother.nationality = 'Holy See' + await page.locator('#mother____nationality').click() + await page + .getByText(declaration.mother.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's nationality + */ + await expect( + page.getByTestId('row-value-mother.nationality') + ).toContainText(declaration.mother.nationality) + }) + + test("8.1.2.13 & 8.1.2.14 Change mother's ID type and id number", async () => { + await page.getByTestId('change-button-mother.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.mother.identifier.type = 'Passport' + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { + exact: true + }) + .click() + + declaration.mother.identifier.id = faker.string.numeric(10) + await page + .locator('#mother____passport') + .fill(declaration.mother.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's ID type + */ + await expect(page.getByTestId('row-value-mother.idType')).toContainText( + declaration.mother.identifier.type + ) + await expect( + page.getByTestId('row-value-mother.passport') + ).toContainText(declaration.mother.identifier.id) + }) + + test("8.1.2.15 Change mother's address", async () => { + await page.getByTestId('change-button-mother.address').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.mother.address.province = 'Sulaka' + declaration.mother.address.district = 'Afue' + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change mother's address + */ + await expect( + page.getByTestId('row-value-mother.address') + ).toContainText(declaration.mother.address.district) + await expect( + page.getByTestId('row-value-mother.address') + ).toContainText(declaration.mother.address.province) + }) + + test("8.1.2.16 Change father's name", async () => { + await page.getByTestId('change-button-father.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.father.name.firstNames = faker.person.firstName('male') + declaration.father.name.familyName = faker.person.lastName('male') + await page + .locator('#firstname') + .fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's name + */ + await expect(page.getByTestId('row-value-father.name')).toContainText( + declaration.father.name.firstNames + ) + }) + + test("8.1.2.17 Change father's birthday", async () => { + await page.getByTestId('change-button-father.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.father.birthDate = getRandomDate(21, 200) + await fillDate(page, declaration.father.birthDate) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's birthday + */ + await expect(page.getByTestId('row-value-father.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + }) + + test("8.1.2.18 Change father's nationality", async () => { + await page.getByTestId('change-button-father.nationality').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.father.nationality = 'Holy See' + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's nationality + */ + await expect( + page.getByTestId('row-value-father.nationality') + ).toContainText(declaration.father.nationality) + }) + + test("8.1.2.19 Change father's ID type", async () => { + await page.getByTestId('change-button-father.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.father.identifier.type = 'Passport' + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { + exact: true + }) + .click() + + declaration.father.identifier.id = faker.string.numeric(10) + await page + .locator('#father____passport') + .fill(declaration.father.identifier.id) + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change father's ID type and ID number + */ + await expect(page.getByTestId('row-value-father.idType')).toContainText( + declaration.father.identifier.type + ) + await expect( + page.getByTestId('row-value-father.passport') + ).toContainText(declaration.father.identifier.id) + }) + }) + + test.describe('8.1.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.1.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.1.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.1.6 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('8.1.7 Click send button', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + }) + + test('8.1.8 Confirm the declaration to send for review', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await page.getByText('Sent for review').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.2 Registration agent actions', async () => { + test('8.2.1 Navigate to the declaration preview page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + }) + test('8.2.1.1 Verify information added on previous pages', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.name', + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.gender', + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.dob', + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.placeOfBirth', + declaration.placeOfBirth + ) + await expectRowValueWithChangeButton( + page, + 'child.birthLocation', + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.attendantAtBirth', + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.birthType', + declaration.birthType + ) + + /* + * Expected result: should include + * - Child's Weight at birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.weightAtBirth', + declaration.weightAtBirth.toString() + ) + + /* + * Expected result: should include + * - Informant's relation to child + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informantType + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.name', + declaration.mother.name.firstNames + ) + + /* + * Expected result: should include + * - Mother's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.dob', + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.nationality', + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.idType', + declaration.mother.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'mother.passport', + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.country + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.district + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.province + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.name', + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.dob', + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.nationality', + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.idType', + declaration.father.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'father.passport', + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'father.addressSameAs', 'Yes') + }) + + test.describe('8.2.2 Click any "Change" link', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.2.6 Validate previous signature and comment, add new signature and comment', async () => { + await expect(page.locator('#review____comment')).toContainText(comment) + await expect(page.getByAltText('Upload Signature')).toBeVisible() + + comment = faker.lorem.sentence() + + await page.locator('#review____comment').clear() + await page.locator('#review____comment').fill(comment) + + await page + .locator('#review____signature-form-input') + .getByText('Delete') + .click() + + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('8.2.7 Click send button', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + }) + + test('8.2.8 Confirm the declaration to send for approval', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await page.getByText('Sent for approval').click() + + /* + * @TODO: When workflows are implemented on V2, this should navigate to correct workflow first. + */ + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.3 Local registrar actions', async () => { + test('8.3.1 Navigate to the declaration preview page', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + }) + test('8.3.1.1 Verify information added on previous pages', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.name', + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.gender', + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.dob', + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.placeOfBirth', + declaration.placeOfBirth + ) + await expectRowValueWithChangeButton( + page, + 'child.birthLocation', + declaration.birthLocation + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.attendantAtBirth', + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.birthType', + declaration.birthType + ) + + /* + * Expected result: should include + * - Child's Weight at birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'child.weightAtBirth', + declaration.weightAtBirth.toString() + ) + + /* + * Expected result: should include + * - Informant's relation to child + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informantType + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.name', + declaration.mother.name.firstNames + ) + + /* + * Expected result: should include + * - Mother's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.dob', + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.nationality', + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.idType', + declaration.mother.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'mother.passport', + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.country + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.district + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.province + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.name', + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.dob', + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.nationality', + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'father.idType', + declaration.father.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'father.passport', + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'father.addressSameAs', 'Yes') + }) + + const newFamilyNameForChild = faker.person.lastName('male') + + test("8.3.2.1 Update child's family name", async () => { + await page.getByTestId('change-button-child.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#surname').fill(newFamilyNameForChild) + + await page.getByRole('button', { name: 'Back to review' }).click() + }) + + test("8.3.2.2 Review child's changed family name", async () => { + await expect(page.getByTestId('row-value-child.name')).toContainText( + newFamilyNameForChild + ) + }) + + test.describe('8.3.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.5 Validate the register button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.3.6 Validate previous signature and comment, add new signature and comment', async () => { + await expect(page.locator('#review____comment')).toContainText(comment) + await expect(page.getByAltText('Upload Signature')).toBeVisible() + + comment = faker.lorem.sentence() + + await page.locator('#review____comment').clear() + await page.locator('#review____comment').fill(comment) + + await page + .locator('#review____signature-form-input') + .getByText('Delete') + .click() + + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('8.3.7 Click send button', async () => { + await page.getByRole('button', { name: 'Register' }).click() + }) + + test('8.3.8 Confirm the declaration to ready for print', async () => { + await page.locator('#confirm_Register').click() + await ensureOutboxIsEmpty(page) + await page.getByText('Ready to print').click() + + /* + * @TODO: When workflows are implemented on V2, this should navigate to correct workflow first. + */ + await expect( + page.getByRole('button', { + name: `${declaration.child.name.firstNames} ${newFamilyNameForChild}` + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/assign-and-unassign.spec.ts b/e2e/testcases/v2-birth/assign-and-unassign.spec.ts new file mode 100644 index 0000000000..c154bb9002 --- /dev/null +++ b/e2e/testcases/v2-birth/assign-and-unassign.spec.ts @@ -0,0 +1,53 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { ensureAssigned, selectAction } from '../../v2-utils' + +test.describe.serial('Assign & Unassign', () => { + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Login', async () => { + await loginToV2(page) + }) + + test('Click on "Assign" from action menu', async () => { + await page.waitForTimeout(SAFE_WORKQUEUE_TIMEOUT_MS) // wait for the event to be in the workqueue. + await page.getByText('Ready to print').click() + + const childName = `${declaration['child.name'].firstname} ${declaration['child.name'].surname}` + await page.getByRole('button', { name: childName }).click() + await ensureAssigned(page) + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Kennedy Mweene' + ) + }) + + test('Click on "Unassign" from action menu', async () => { + await selectAction(page, 'Unassign') + // Wait for the unassign modal to appear + await page.getByRole('button', { name: 'Unassign', exact: true }).click() + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Not assigned' + ) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-1.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-1.spec.ts new file mode 100644 index 0000000000..10c31cc570 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-1.spec.ts @@ -0,0 +1,758 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatDateObjectTo_dMMMMyyyy, + formatName, + getRandomDate, + goToSection, + loginToV2, + expectRowValueWithChangeButton +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { fillDate, validateAddress } from '../helpers' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('1. Birth declaration case - 1', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + gender: 'Male', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Physician', + birthType: 'Single', + weightAtBirth: 2.4, + placeOfBirth: 'Health Institution', + birthLocation: { + facility: 'Golden Valley Rural Health Centre', + district: 'Ibombo', + province: 'Central', + country: 'Farajaland' + }, + informantType: 'Mother', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + maritalStatus: 'Single', + levelOfEducation: 'No schooling', + address: { + sameAsMother: true + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation') + .fill(declaration.birthLocation.facility.slice(0, 3)) + await page.getByText(declaration.birthLocation.facility).click() + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await page + .locator('#child____weightAtBirth') + .fill(declaration.weightAtBirth.toString()) + + await continueForm(page) + }) + + test('1.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("1.1.3 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____nid') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.mother.address.town) + await page + .locator('#residentialArea') + .fill(declaration.mother.address.residentialArea) + await page.locator('#street').fill(declaration.mother.address.street) + await page.locator('#number').fill(declaration.mother.address.number) + await page + .locator('#zipCode') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("1.1.4 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____nid') + .fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.locator('#father____addressSameAs_YES').click() + + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#father____educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('1.1.6 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.getByTestId('row-value-child.placeOfBirth')).toHaveText( + declaration.placeOfBirth + ) + await expect( + page.getByTestId('row-value-child.birthLocation') + ).toHaveText(Object.values(declaration.birthLocation).join(', ')) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Child's Weight at birth + */ + await expect( + page.getByTestId('row-value-child.weightAtBirth') + ).toHaveText(declaration.weightAtBirth + 'Kilograms (kg)') + + /* + * Expected result: should include + * - Informant's relation to child + */ + + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toHaveText( + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.getByTestId('row-value-mother.nationality')).toHaveText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toHaveText(declaration.mother.maritalStatus) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect( + page.getByTestId('row-value-mother.educationalAttainment') + ).toHaveText(declaration.mother.levelOfEducation) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.getByTestId('row-value-mother.idType')).toHaveText( + declaration.mother.identifier.type + ) + + await expect(page.getByTestId('row-value-mother.nid')).toHaveText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toHaveText( + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.getByTestId('row-value-father.nationality')).toHaveText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.getByTestId('row-value-father.idType')).toHaveText( + declaration.father.identifier.type + ) + + await expect(page.getByTestId('row-value-father.nid')).toHaveText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toHaveText(declaration.father.maritalStatus) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect( + page.getByTestId('row-value-father.educationalAttainment') + ).toHaveText(declaration.father.levelOfEducation) + + /* + * Expected result: should include + * - Father's address + */ + await expect( + page.getByTestId('row-value-father.addressSameAs') + ).toHaveText('Yes') + }) + test('1.1.7 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('1.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for review').click() + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('1.2 Declaration Review by RA', async () => { + test('1.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByText('Ready for review').click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + }) + + test('1.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expectRowValueWithChangeButton( + page, + 'child.name', + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expectRowValueWithChangeButton( + page, + 'child.gender', + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expectRowValueWithChangeButton( + page, + 'child.dob', + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expectRowValueWithChangeButton( + page, + 'child.placeOfBirth', + declaration.placeOfBirth + ) + await expectRowValueWithChangeButton( + page, + 'child.birthLocation', + Object.values(declaration.birthLocation).join(', ') + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expectRowValueWithChangeButton( + page, + 'child.attendantAtBirth', + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expectRowValueWithChangeButton( + page, + 'child.birthType', + declaration.birthType + ) + + /* + * Expected result: should include + * - Child's Weight at birth + */ + await expectRowValueWithChangeButton( + page, + 'child.weightAtBirth', + declaration.weightAtBirth.toString() + 'Kilograms (kg)' + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expectRowValueWithChangeButton( + page, + 'mother.name', + declaration.mother.name.firstNames + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expectRowValueWithChangeButton( + page, + 'mother.dob', + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expectRowValueWithChangeButton( + page, + 'mother.nationality', + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expectRowValueWithChangeButton( + page, + 'mother.maritalStatus', + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expectRowValueWithChangeButton( + page, + 'mother.educationalAttainment', + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expectRowValueWithChangeButton( + page, + 'mother.idType', + declaration.mother.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'mother.nid', + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expectRowValueWithChangeButton( + page, + 'father.name', + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expectRowValueWithChangeButton( + page, + 'father.dob', + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expectRowValueWithChangeButton( + page, + 'father.nationality', + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expectRowValueWithChangeButton( + page, + 'father.idType', + declaration.father.identifier.type + ) + await expectRowValueWithChangeButton( + page, + 'father.nid', + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expectRowValueWithChangeButton( + page, + 'father.maritalStatus', + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expectRowValueWithChangeButton( + page, + 'father.educationalAttainment', + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expectRowValueWithChangeButton(page, 'father.addressSameAs', 'Yes') + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-10.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-10.spec.ts new file mode 100644 index 0000000000..5b61e2d3ee --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-10.spec.ts @@ -0,0 +1,295 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { REQUIRED_VALIDATION_ERROR } from '../helpers' +import { ensureOutboxIsEmpty } from '../../../v2-utils' +test.describe.serial('10. Birth declaration case - 10', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.lastName(), + familyName: faker.person.lastName() + } + }, + informantType: 'Father', + mother: { + detailsDontExist: true + }, + father: { + detailsDontExist: false + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('10.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + + await continueForm(page) + }) + + test('10.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test("10.1.3 Fill mother's details", async () => { + await page.getByLabel("Mother's details are not available").check() + await continueForm(page) + }) + + test("10.1.4 Fill father's details", async () => { + await continueForm(page) + }) + + test('10.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('10.1.6 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toContainText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Reason of why mother's details not available + */ + await expect(page.getByTestId('row-value-mother.reason')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.getByTestId('row-value-father.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + }) + + test('10.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('10.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + await page.getByText('Sent for review').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('10.2 Declaration Review by RA', async () => { + test('10.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name), + exact: true + }) + .click() + await page.getByRole('button', { name: 'Action', exact: true }).click() + await page.getByText('View', { exact: true }).click() + }) + + test('10.2.2 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's First Name + * * should require + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toContainText( + declaration.child.name.firstNames + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Reason of why mother's details not available + */ + await expect(page.getByTestId('row-value-mother.reason')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.getByTestId('row-value-father.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-2.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-2.spec.ts new file mode 100644 index 0000000000..fb8caf0880 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-2.spec.ts @@ -0,0 +1,860 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatDateObjectTo_dMMMMyyyy, + formatName, + getRandomDate, + goToSection, + loginToV2, + expectRowValueWithChangeButton +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { validateAddress } from '../helpers' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('2. Birth declaration case - 2', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + gender: 'Female', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Nurse', + birthType: 'Twin', + placeOfBirth: 'Residential address', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Father', + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 21, + nationality: 'Fiji', + identifier: { + id: faker.string.numeric(12), + type: 'Passport' + }, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Married', + levelOfEducation: 'Primary' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(8), + type: 'Passport' + }, + maritalStatus: 'Married', + levelOfEducation: 'Primary', + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Zobwe', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('2.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + + await page + .locator( + '#child____birthLocation____privateHome-form-input #country-form-input input' + ) + .fill(declaration.birthLocation.country.slice(0, 3)) + await page + .locator( + '#child____birthLocation____privateHome-form-input #country-form-input' + ) + .getByText(declaration.birthLocation.country, { exact: true }) + .click() + + await page + .locator('#child____birthLocation____privateHome-form-input #province') + .click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page + .locator('#child____birthLocation____privateHome-form-input #district') + .click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + + await page.locator('#town').fill(declaration.birthLocation.town) + await page + .locator('#residentialArea') + .fill(declaration.birthLocation.residentialArea) + await page.locator('#street').fill(declaration.birthLocation.street) + await page.locator('#number').fill(declaration.birthLocation.number) + await page + .locator('#zipCode') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('2.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("2.1.3 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#mother____age') + .fill(declaration.mother.age.toString()) + + await page.locator('#mother____nationality').click() + await page + .getByText(declaration.mother.nationality, { exact: true }) + .click() + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____passport') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.mother.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.mother.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.mother.address.town) + await page + .locator('#residentialArea') + .fill(declaration.mother.address.residentialArea) + await page.locator('#street').fill(declaration.mother.address.street) + await page.locator('#number').fill(declaration.mother.address.number) + await page + .locator('#zipCode') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("2.1.4 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + await page + .locator('#father____age') + .fill(declaration.father.age.toString()) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____passport') + .fill(declaration.father.identifier.id) + + await page.getByLabel('No', { exact: true }).check() + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.father.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.father.address.country, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.father.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.father.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.father.address.town) + await page + .locator('#residentialArea') + .fill(declaration.father.address.residentialArea) + await page.locator('#street').fill(declaration.father.address.street) + await page.locator('#number').fill(declaration.father.address.number) + await page + .locator('#zipCode') + .fill(declaration.father.address.postcodeOrZip) + + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#father____educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('2.1.5 Go To Review', async () => { + await goToSection(page, 'review') + }) + + test('2.1.6 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.getByTestId('row-value-child.placeOfBirth')).toHaveText( + declaration.placeOfBirth + ) + + await validateAddress( + page, + declaration.birthLocation, + 'row-value-child.birthLocation.privateHome' + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toHaveText( + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's age + */ + // @TODO: this should pass, but 'years' postfix is not yet implemented on V2 + // await expect( + // page.getByTestId( + // 'row-value-mother.age')).toHaveText( + // joinValuesWith([declaration.mother.age, 'years']) + // ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.getByTestId('row-value-mother.nationality')).toHaveText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toHaveText(declaration.mother.maritalStatus) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect( + page.getByTestId('row-value-mother.educationalAttainment') + ).toHaveText(declaration.mother.levelOfEducation) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.getByTestId('row-value-mother.idType')).toHaveText( + declaration.mother.identifier.type + ) + + await expect(page.getByTestId('row-value-mother.passport')).toHaveText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toHaveText( + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + // @TODO: this should pass, but 'years' postfix is not yet implemented on V2 + // await expect( + // page.getByTestId( + // 'row-value-father.age')).toHaveText( + // joinValuesWith([declaration.father.age, 'years']) + // ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.getByTestId('row-value-father.nationality')).toHaveText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.getByTestId('row-value-father.idType')).toHaveText( + declaration.father.identifier.type + ) + + await expect(page.getByTestId('row-value-father.passport')).toHaveText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toHaveText(declaration.father.maritalStatus) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect( + page.getByTestId('row-value-father.educationalAttainment') + ).toHaveText(declaration.father.levelOfEducation) + + /* + * Expected result: should include + * - Father's address + */ + await validateAddress( + page, + declaration.father.address, + 'row-value-father.address' + ) + }) + + test('2.1.7 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('2.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for review').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + // @TODO: This is not yet supported on V2, please add this test case when it is! + test.describe('2.2 Declaration Review by RA', async () => { + test('2.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByRole('button', { name: 'Ready for review' }).click() + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + }) + test('2.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expectRowValueWithChangeButton( + page, + 'child.name', + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expectRowValueWithChangeButton( + page, + 'child.gender', + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expectRowValueWithChangeButton( + page, + 'child.dob', + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + */ + await expectRowValueWithChangeButton( + page, + 'child.placeOfBirth', + declaration.placeOfBirth + ) + /* + * Expected result: should include + * - Child's Place of birth details + */ + await expectRowValueWithChangeButton( + page, + 'child.birthLocation.privateHome', + Object.values(declaration.birthLocation) + .filter((t) => t !== 'Urban') + .join('') + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expectRowValueWithChangeButton( + page, + 'child.attendantAtBirth', + declaration.attendantAtBirth + ) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expectRowValueWithChangeButton( + page, + 'child.birthType', + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informantEmail + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expectRowValueWithChangeButton( + page, + 'mother.name', + declaration.mother.name.firstNames + ) + + // @TODO: this should pass, but 'years' postfix is not yet implemented on V2 + /* + * Expected result: should include + * - Mother's age + */ + // await expectRowValueWithChangeButton( + // page, + // 'mother.age', + // joinValuesWith([declaration.mother.age, 'years']) + // ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expectRowValueWithChangeButton( + page, + 'mother.nationality', + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expectRowValueWithChangeButton( + page, + 'mother.maritalStatus', + declaration.mother.maritalStatus + ) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expectRowValueWithChangeButton( + page, + 'mother.educationalAttainment', + declaration.mother.levelOfEducation + ) + + /* + * Expected result: should include + * - Mother's Type of Id + */ + await expectRowValueWithChangeButton( + page, + 'mother.idType', + declaration.mother.identifier.type + ) + + /* + * Expected result: should include + * - Mother's Id Number + */ + await expectRowValueWithChangeButton( + page, + 'mother.passport', + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.country + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.district + ) + await expectRowValueWithChangeButton( + page, + 'mother.address', + declaration.mother.address.province + ) + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expectRowValueWithChangeButton( + page, + 'father.name', + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + // @TODO: this should pass, but 'years' postfix is not yet implemented on V2 + /* + * Expected result: should include + * - Father's date of birth + */ + // await expectRowValueWithChangeButton( + // page, + // 'father.age', + // joinValuesWith([declaration.father.age, 'years']) + // ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expectRowValueWithChangeButton( + page, + 'father.nationality', + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + */ + await expectRowValueWithChangeButton( + page, + 'father.idType', + declaration.father.identifier.type + ) + + /* + * Expected result: should include + * - Father's Id Number + */ + await expectRowValueWithChangeButton( + page, + 'father.passport', + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expectRowValueWithChangeButton( + page, + 'father.maritalStatus', + declaration.father.maritalStatus + ) + + /* + * Expected result: should include + * - Father's level of education + */ + await expectRowValueWithChangeButton( + page, + 'father.educationalAttainment', + declaration.father.levelOfEducation + ) + + /* + * Expected result: should include + * - Father's address + */ + await expectRowValueWithChangeButton( + page, + 'father.address', + declaration.father.address.country + ) + await expectRowValueWithChangeButton( + page, + 'father.address', + declaration.father.address.district + ) + await expectRowValueWithChangeButton( + page, + 'father.address', + declaration.father.address.province + ) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-3.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-3.spec.ts new file mode 100644 index 0000000000..e236cb9512 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-3.spec.ts @@ -0,0 +1,988 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatDateObjectTo_dMMMMyyyy, + formatName, + getRandomDate, + goToSection, + loginToV2, + logout, + uploadImage, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { fillDate, validateAddress } from '../helpers' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('3. Birth declaration case - 3', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Midwife', + birthType: 'Triplet', + placeOfBirth: 'Residential address', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Grandfather', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(40, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(10), + type: 'National ID' + }, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Ama', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + birthDate: getRandomDate(20, 200), + nationality: 'Farajaland', + identifier: { + id: faker.string.numeric(9), + type: 'Birth Registration Number' + }, + address: { + country: 'Djibouti', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Widowed', + levelOfEducation: 'Secondary' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Gabon', + identifier: { + id: faker.string.numeric(11), + type: 'Birth Registration Number' + }, + maritalStatus: 'Widowed', + levelOfEducation: 'Secondary', + address: { + sameAsMother: false, + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('3.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('3.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + await page + .locator('#child____birthLocation____privateHome-form-input #province') + .click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page + .locator('#child____birthLocation____privateHome-form-input #district') + .click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + await page.locator('#town').fill(declaration.birthLocation.town) + await page + .locator('#residentialArea') + .fill(declaration.birthLocation.residentialArea) + await page.locator('#street').fill(declaration.birthLocation.street) + await page.locator('#number').fill(declaration.birthLocation.number) + await page + .locator('#zipCode') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('3.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstname') + .fill(declaration.informant.name.firstNames) + await page.locator('#surname').fill(declaration.informant.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.informant.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.informant.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.informant.birthDate.yyyy) + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informant____nid') + .fill(declaration.informant.identifier.id) + + await page.locator('#province').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.informant.address.town) + await page + .locator('#residentialArea') + .fill(declaration.informant.address.residentialArea) + await page.locator('#street').fill(declaration.informant.address.street) + await page.locator('#number').fill(declaration.informant.address.number) + await page + .locator('#zipCode') + .fill(declaration.informant.address.postcodeOrZip) + await continueForm(page) + }) + + test("3.1.3 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.mother.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.mother.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.mother.birthDate.yyyy) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page + .locator('#mother____brn') + .fill(declaration.mother.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.mother.address.state) + await page.locator('#district2').fill(declaration.mother.address.district) + await page.locator('#cityOrTown').fill(declaration.mother.address.town) + await page + .locator('#addressLine1') + .fill(declaration.mother.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.mother.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.mother.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("3.1.4 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page + .locator('#father____brn') + .fill(declaration.father.identifier.id) + + await page.locator('#father____nationality').click() + await page + .getByText(declaration.father.nationality, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + await page.locator('#province').click() + await page + .getByText(declaration.father.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.father.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.father.address.town) + await page + .locator('#residentialArea') + .fill(declaration.father.address.residentialArea) + await page.locator('#street').fill(declaration.father.address.street) + await page.locator('#number').fill(declaration.father.address.number) + await page + .locator('#zipCode') + .fill(declaration.father.address.postcodeOrZip) + + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#father____educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.describe('3.1.5 Add supporting documents', async () => { + test('3.1.5.0 Go to supporting documents page', async () => { + await goToSection(page, 'documents') + }) + + test('3.1.5.1 Upload proof of birth', async () => { + await uploadImage( + page, + page.locator('button[name="documents____proofOfBirth"]') + ) + }) + + test("3.1.5.2 Upload proof of mother's id", async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfMother'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfMother"]' + ) + }) + } + }) + + test("3.1.5.3 Upload proof of father's id", async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfFather'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfFather"]' + ) + }) + } + }) + + test("3.1.5.4 Upload proof of informant's id", async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfInformant'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfInformant"]' + ) + }) + } + }) + + test('3.1.5.5 Upload other', async () => { + const imageUploadSectionTitles = [ + 'Proof of legal guardianship', + 'Proof of assigned responsibility' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOther'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOther"]' + ) + }) + } + }) + }) + + test('3.1.6 Go to Review', async () => { + await goToSection(page, 'review') + }) + + test('3.1.7 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.getByTestId('row-value-child.placeOfBirth')).toHaveText( + declaration.placeOfBirth + ) + + await validateAddress( + page, + declaration.birthLocation, + 'row-value-child.birthLocation.privateHome' + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toHaveText( + declaration.informant.name.firstNames + + ' ' + + declaration.informant.name.familyName + ) + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.informant.birthDate) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.getByTestId('row-value-informant.nationality') + ).toHaveText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await validateAddress( + page, + declaration.informant.address, + 'row-value-informant.address' + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toHaveText( + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.getByTestId('row-value-mother.nationality')).toHaveText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toHaveText(declaration.mother.maritalStatus) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect( + page.getByTestId('row-value-mother.educationalAttainment') + ).toHaveText(declaration.mother.levelOfEducation) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.getByTestId('row-value-mother.idType')).toHaveText( + declaration.mother.identifier.type + ) + + await expect(page.getByTestId('row-value-mother.brn')).toHaveText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toHaveText( + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.getByTestId('row-value-father.nationality')).toHaveText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.getByTestId('row-value-father.idType')).toHaveText( + declaration.father.identifier.type + ) + + await expect(page.getByTestId('row-value-father.brn')).toHaveText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toHaveText(declaration.father.maritalStatus) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect( + page.getByTestId('row-value-father.educationalAttainment') + ).toHaveText(declaration.father.levelOfEducation) + + /* + * Expected result: should include + * - Father's address + */ + await validateAddress( + page, + declaration.father.address, + 'row-value-father.address' + ) + }) + + test('3.1.8 Fill up informant comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('3.1.9 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for approval').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('3.2 Declaration Review by Local Registrar', async () => { + test('3.2.1 Navigate to the declaration review page', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + }) + + test('3.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.getByTestId('row-value-child.placeOfBirth')).toHaveText( + declaration.placeOfBirth + ) + + await validateAddress( + page, + declaration.birthLocation, + 'row-value-child.birthLocation.privateHome' + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toHaveText( + declaration.informant.name.firstNames + + ' ' + + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.informant.birthDate) + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.getByTestId('row-value-informant.nationality') + ).toHaveText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await validateAddress( + page, + declaration.informant.address, + 'row-value-informant.address' + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toHaveText( + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.mother.birthDate) + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.getByTestId('row-value-mother.nationality')).toHaveText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toHaveText(declaration.mother.maritalStatus) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect( + page.getByTestId('row-value-mother.educationalAttainment') + ).toHaveText(declaration.mother.levelOfEducation) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.getByTestId('row-value-mother.idType')).toHaveText( + declaration.mother.identifier.type + ) + + await expect(page.getByTestId('row-value-mother.brn')).toHaveText( + declaration.mother.identifier.id + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toHaveText( + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.getByTestId('row-value-father.nationality')).toHaveText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id Number + */ + await expect(page.getByTestId('row-value-father.idType')).toHaveText( + declaration.father.identifier.type + ) + + await expect(page.getByTestId('row-value-father.brn')).toHaveText( + declaration.father.identifier.id + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toHaveText(declaration.father.maritalStatus) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect( + page.getByTestId('row-value-father.educationalAttainment') + ).toHaveText(declaration.father.levelOfEducation) + + /* + * Expected result: should include + * - Father's address + */ + await validateAddress( + page, + declaration.father.address, + 'row-value-father.address' + ) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-4.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-4.spec.ts new file mode 100644 index 0000000000..0b44046b77 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-4.spec.ts @@ -0,0 +1,902 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatDateObjectTo_dMMMMyyyy, + formatName, + getRandomDate, + goToSection, + loginToV2, + logout +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { fillDate, validateAddress } from '../helpers' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('4. Birth declaration case - 4', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + '-Peter', + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Other paramedical personnel', + birthType: 'Quadruplet', + placeOfBirth: 'Other', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Grandmother', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 60, + nationality: 'Guernsey', + identifier: { + id: faker.string.numeric(10), + type: 'Passport' + }, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Ama', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Divorced', + levelOfEducation: 'Tertiary' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + maritalStatus: 'Divorced', + levelOfEducation: 'Tertiary', + address: { + sameAsMother: false, + country: 'Grenada', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('4.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#surname').blur() + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page.locator('#district').click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + + await page.locator('#town').fill(declaration.birthLocation.town) + await page + .locator('#residentialArea') + .fill(declaration.birthLocation.residentialArea) + await page.locator('#street').fill(declaration.birthLocation.street) + await page.locator('#number').fill(declaration.birthLocation.number) + await page + .locator('#zipCode') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('4.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstname') + .fill(declaration.informant.name.firstNames) + await page.locator('#surname').fill(declaration.informant.name.familyName) + await page.locator('#surname').blur() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informant____passport') + .fill(declaration.informant.identifier.id) + + await page.locator('#province').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.informant.address.town) + await page + .locator('#residentialArea') + .fill(declaration.informant.address.residentialArea) + await page.locator('#street').fill(declaration.informant.address.street) + await page.locator('#number').fill(declaration.informant.address.number) + await page + .locator('#zipCode') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test("4.1.3 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.mother.name.familyName) + await page.locator('#surname').blur() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#mother____age') + .fill(declaration.mother.age.toString()) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.mother.address.state) + await page.locator('#district2').fill(declaration.mother.address.district) + await page.locator('#cityOrTown').fill(declaration.mother.address.town) + await page + .locator('#addressLine1') + .fill(declaration.mother.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.mother.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.mother.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test("4.1.4 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.father.name.familyName) + await page.locator('#surname').blur() + + await fillDate(page, declaration.father.birthDate) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page.getByLabel('No', { exact: true }).check() + await page + .locator('#country input') + .fill(declaration.father.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.father.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.father.address.state) + await page.locator('#district2').fill(declaration.father.address.district) + await page.locator('#cityOrTown').fill(declaration.father.address.town) + await page + .locator('#addressLine1') + .fill(declaration.father.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.father.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.father.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.father.address.postcodeOrZip) + + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#father____educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('4.1.6 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.getByTestId('row-value-child.placeOfBirth')).toHaveText( + declaration.placeOfBirth + ) + await validateAddress( + page, + declaration.birthLocation, + 'row-value-child.birthLocation.other' + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toHaveText( + declaration.informant.name.firstNames + + ' ' + + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.age')).toHaveText( + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.getByTestId('row-value-informant.nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await validateAddress( + page, + declaration.informant.address, + 'row-value-informant.address' + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect( + page.getByTestId('row-value-informant.idType') + ).toContainText(declaration.informant.identifier.type) + await expect( + page.getByTestId('row-value-informant.passport') + ).toContainText(declaration.informant.identifier.id) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toHaveText( + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.age')).toContainText( + declaration.mother.age.toString() + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.getByTestId('row-value-mother.nationality')).toHaveText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toHaveText(declaration.mother.maritalStatus) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect( + page.getByTestId('row-value-mother.educationalAttainment') + ).toHaveText(declaration.mother.levelOfEducation) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.getByTestId('row-value-mother.idType')).toHaveText( + declaration.mother.identifier.type + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toHaveText( + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.getByTestId('row-value-father.nationality')).toHaveText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + */ + await expect(page.getByTestId('row-value-father.idType')).toHaveText( + declaration.father.identifier.type + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toHaveText(declaration.father.maritalStatus) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect( + page.getByTestId('row-value-father.educationalAttainment') + ).toHaveText(declaration.father.levelOfEducation) + + /* + * Expected result: should include + * - Father's address + */ + await validateAddress( + page, + declaration.father.address, + 'row-value-father.address' + ) + }) + test('4.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + test('4.1.8 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for approval').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('4.2 Declaration Review by Local Registrar', async () => { + test('4.2.1 Navigate to the declaration review page', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + }) + + test('4.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.getByTestId('row-value-child.placeOfBirth')).toHaveText( + declaration.placeOfBirth + ) + await validateAddress( + page, + declaration.birthLocation, + 'row-value-child.birthLocation.other' + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toHaveText( + declaration.informant.name.firstNames + + ' ' + + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.age')).toContainText( + declaration.informant.age.toString() + ) + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.getByTestId('row-value-informant.nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await validateAddress( + page, + declaration.informant.address, + 'row-value-informant.address' + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect( + page.getByTestId('row-value-informant.idType') + ).toContainText(declaration.informant.identifier.type) + await expect( + page.getByTestId('row-value-informant.passport') + ).toContainText(declaration.informant.identifier.id) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toHaveText( + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.age')).toContainText( + declaration.mother.age.toString() + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.getByTestId('row-value-mother.nationality')).toHaveText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toHaveText(declaration.mother.maritalStatus) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect( + page.getByTestId('row-value-mother.educationalAttainment') + ).toHaveText(declaration.mother.levelOfEducation) + + /* + * Expected result: should include + * - Mother's Type of Id + * - Mother's Id Number + */ + await expect(page.getByTestId('row-value-mother.idType')).toHaveText( + declaration.mother.identifier.type + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toHaveText( + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.father.birthDate) + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.getByTestId('row-value-father.nationality')).toHaveText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + */ + await expect(page.getByTestId('row-value-father.idType')).toHaveText( + declaration.father.identifier.type + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toHaveText(declaration.father.maritalStatus) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect( + page.getByTestId('row-value-father.educationalAttainment') + ).toHaveText(declaration.father.levelOfEducation) + + /* + * Expected result: should include + * - Father's address + */ + await validateAddress( + page, + declaration.father.address, + 'row-value-father.address' + ) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-5.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-5.spec.ts new file mode 100644 index 0000000000..cd4e8016f3 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-5.spec.ts @@ -0,0 +1,529 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatDateObjectTo_dMMMMyyyy, + formatName, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { validateAddress } from '../helpers' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('5. Birth declaration case - 5', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + ' the 3rd', + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Layperson', + birthType: 'Higher multiple delivery', + placeOfBirth: 'Other', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Brother', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 16, + nationality: 'Guernsey', + identifier: { + id: faker.string.numeric(10), + type: 'Birth Registration Number' + }, + address: { + country: 'Haiti', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Separated', + levelOfEducation: 'Tertiary' + }, + father: { + detailsDontExist: true, + reason: 'Father is a ghost' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('5.1 Declaration started by Local Registrar', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('5.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#surname').blur() + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page.locator('#district').click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + + await page.locator('#town').fill(declaration.birthLocation.town) + await page + .locator('#residentialArea') + .fill(declaration.birthLocation.residentialArea) + await page.locator('#street').fill(declaration.birthLocation.street) + await page.locator('#number').fill(declaration.birthLocation.number) + await page + .locator('#zipCode') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('5.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstname') + .fill(declaration.informant.name.firstNames) + await page.locator('#surname').fill(declaration.informant.name.familyName) + await page.locator('#surname').blur() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page + .locator('#informant____brn') + .fill(declaration.informant.identifier.id) + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.informant.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.informant.address.state) + await page + .locator('#district2') + .fill(declaration.informant.address.district) + await page.locator('#cityOrTown').fill(declaration.informant.address.town) + await page + .locator('#addressLine1') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test("5.1.3 Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.mother.name.familyName) + await page.locator('#surname').blur() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#mother____age') + .fill(declaration.mother.age.toString()) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.mother.address.state) + await page.locator('#district2').fill(declaration.mother.address.district) + await page.locator('#cityOrTown').fill(declaration.mother.address.town) + await page + .locator('#addressLine1') + .fill(declaration.mother.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.mother.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.mother.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + await continueForm(page) + }) + + test("5.1.4 Fill father's details", async () => { + await page.getByLabel("Father's details are not available").check() + await page.locator('#father____reason').fill(declaration.father.reason) + }) + + test('5.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('5.1.6 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect(page.getByTestId('row-value-child.placeOfBirth')).toHaveText( + declaration.placeOfBirth + ) + await validateAddress( + page, + declaration.birthLocation, + 'row-value-child.birthLocation.other' + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toHaveText( + declaration.informant.name.firstNames + + ' ' + + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.age')).toHaveText( + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.getByTestId('row-value-informant.nationality') + ).toContainText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await validateAddress( + page, + declaration.informant.address, + 'row-value-informant.address' + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect( + page.getByTestId('row-value-informant.idType') + ).toContainText(declaration.informant.identifier.type) + await expect(page.getByTestId('row-value-informant.brn')).toContainText( + declaration.informant.identifier.id + ) + + /* + * Expected result: should include + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toHaveText( + declaration.mother.name.firstNames + + ' ' + + declaration.mother.name.familyName + ) + + /* + * Expected result: should include + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.age')).toContainText( + declaration.mother.age.toString() + ) + + /* + * Expected result: should include + * - Mother's Nationality + */ + await expect(page.getByTestId('row-value-mother.nationality')).toHaveText( + declaration.mother.nationality + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toHaveText(declaration.mother.maritalStatus) + + /* + * Expected result: should include + * - Mother's level of education + */ + await expect( + page.getByTestId('row-value-mother.educationalAttainment') + ).toHaveText(declaration.mother.levelOfEducation) + + /* + * Expected result: should include + * - Mother's Type of Id + */ + await expect(page.getByTestId('row-value-mother.idType')).toHaveText( + declaration.mother.identifier.type + ) + + /* + * Expected result: should include + * - Mother's address + */ + await validateAddress( + page, + declaration.mother.address, + 'row-value-mother.address' + ) + + /* + * Expected result: should include + * - Father's Details not available: true + * - Reason of why father's details not available + */ + await expect( + page.getByTestId('row-value-father.detailsNotAvailable') + ).toHaveText('Yes') + await expect(page.getByTestId('row-value-father.reason')).toHaveText( + declaration.father.reason + ) + }) + + test('5.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('5.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await page.locator('#confirm_Declare').click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Ready to print').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-6.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-6.spec.ts new file mode 100644 index 0000000000..46b959a906 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-6.spec.ts @@ -0,0 +1,524 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatDateObjectTo_dMMMMyyyy, + formatName, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { validateAddress } from '../helpers' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('6. Birth declaration case - 6', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + " O'Neil", + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Traditional birth attendant', + birthType: 'Higher multiple delivery', + placeOfBirth: 'Other', + birthLocation: { + country: 'Greenland', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantType: 'Sister', + informantEmail: faker.internet.email(), + informant: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 17, + nationality: 'Guernsey', + identifier: { + type: 'None' + }, + address: { + country: 'Haiti', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Separated', + levelOfEducation: 'Tertiary' + }, + mother: { + detailsDontExist: true, + reason: 'Mother is a ghost' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('6.1 Declaration started by National Registrar', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.NATIONAL_REGISTRAR) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#surname').blur() + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.birthLocation.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.birthLocation.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.birthLocation.state) + await page.locator('#district2').fill(declaration.birthLocation.district) + await page.locator('#cityOrTown').fill(declaration.birthLocation.town) + await page + .locator('#addressLine1') + .fill(declaration.birthLocation.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.birthLocation.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.birthLocation.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('6.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.locator('#informant____email').fill(declaration.informantEmail) + + /* + * Expected result: should show additional fields: + * - Full Name + * - Date of birth + * - Nationality + * - Id + * - Usual place of residence + */ + await page + .locator('#firstname') + .fill(declaration.informant.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.informant.name.familyName) + await page.locator('#surname').blur() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.identifier.type, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.informant.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.informant.address.state) + await page + .locator('#district2') + .fill(declaration.informant.address.district) + await page.locator('#cityOrTown').fill(declaration.informant.address.town) + await page + .locator('#addressLine1') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.informant.address.postcodeOrZip) + + await continueForm(page) + }) + + test("6.1.3 Fill mother's details", async () => { + await page.getByLabel("Mother's details are not available").check() + await page.locator('#mother____reason').fill(declaration.mother.reason) + + await continueForm(page) + }) + + test("6.1.4 Fill father's details", async () => { + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#firstname').blur() + await page.locator('#surname').fill(declaration.father.name.familyName) + await page.locator('#surname').blur() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#father____age') + .fill(declaration.father.age.toString()) + + await page.locator('#father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.father.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.father.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.father.address.state) + await page.locator('#district2').fill(declaration.father.address.district) + await page.locator('#cityOrTown').fill(declaration.father.address.town) + await page + .locator('#addressLine1') + .fill(declaration.father.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.father.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.father.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.father.address.postcodeOrZip) + + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.locator('#father____educationalAttainment').click() + await page + .getByText(declaration.father.levelOfEducation, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('6.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('6.1.6 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should include + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toHaveText( + declaration.child.gender + ) + + /* + * Expected result: should include + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.child.birthDate) + ) + + /* + * Expected result: should include + * - Child's Place of birth type + * - Child's Place of birth details + */ + await validateAddress( + page, + declaration.birthLocation, + 'row-value-child.birthLocation.other' + ) + + /* + * Expected result: should include + * - Child's Attendant at birth + */ + await expect( + page.getByTestId('row-value-child.attendantAtBirth') + ).toHaveText(declaration.attendantAtBirth) + + /* + * Expected result: should include + * - Child's Birth type + */ + await expect(page.getByTestId('row-value-child.birthType')).toHaveText( + declaration.birthType + ) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect(page.getByTestId('row-value-informant.relation')).toHaveText( + declaration.informantType + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + declaration.informantEmail + ) + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toHaveText( + declaration.informant.name.firstNames + + ' ' + + declaration.informant.name.familyName + ) + + /* + * Expected result: should include + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.age')).toHaveText( + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - Informant's Nationality + */ + await expect( + page.getByTestId('row-value-informant.nationality') + ).toHaveText(declaration.informant.nationality) + + /* + * Expected result: should include + * - Informant's address + */ + await validateAddress( + page, + declaration.informant.address, + 'row-value-informant.address' + ) + + /* + * Expected result: should include + * - Informant's Type of Id + * - Informant's Id + */ + await expect(page.getByTestId('row-value-informant.idType')).toHaveText( + declaration.informant.identifier.type + ) + + /* + * Expected result: should include + * - Mother's Details not available: true + * - Reason of why mother's details not available + */ + await expect( + page.getByTestId('row-value-mother.detailsNotAvailable') + ).toHaveText('Yes') + await expect(page.getByTestId('row-value-mother.reason')).toHaveText( + declaration.mother.reason + ) + + /* + * Expected result: should include + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toHaveText( + declaration.father.name.firstNames + + ' ' + + declaration.father.name.familyName + ) + + /* + * Expected result: should include + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.age')).toHaveText( + declaration.father.age.toString() + ) + + /* + * Expected result: should include + * - Father's Nationality + */ + await expect(page.getByTestId('row-value-father.nationality')).toHaveText( + declaration.father.nationality + ) + + /* + * Expected result: should include + * - Father's Type of Id + * - Father's Id + */ + await expect(page.getByTestId('row-value-father.idType')).toHaveText( + declaration.father.identifier.type + ) + + /* + * Expected result: should include + * - Father's address + */ + await validateAddress( + page, + declaration.father.address, + 'row-value-father.address' + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toHaveText(declaration.father.maritalStatus) + + /* + * Expected result: should include + * - Father's level of education + */ + await expect( + page.getByTestId('row-value-father.educationalAttainment') + ).toHaveText(declaration.father.levelOfEducation) + }) + + test('6.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test.skip('6.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await page.locator('#confirm_Declare').click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Ready to print').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-7.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-7.spec.ts new file mode 100644 index 0000000000..b6494d51b4 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-7.spec.ts @@ -0,0 +1,324 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + goToSection, + loginToV2, + logout, + uploadImage, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { REQUIRED_VALIDATION_ERROR } from '../helpers' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('7. Birth declaration case - 7', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + }, + attendantAtBirth: 'None', + informantType: 'Legal guardian', + mother: { + detailsDontExist: true, + reason: 'Mother is unknown' + }, + father: { + detailsDontExist: true, + reason: 'Father is unknown' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('7.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('7.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + await continueForm(page) + }) + + test('7.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test("7.1.3 Fill mother's details", async () => { + await page.getByLabel("Mother's details are not available").check() + await page.locator('#mother____reason').fill(declaration.mother.reason) + await continueForm(page) + }) + + test("7.1.4 Fill father's details", async () => { + await page.getByLabel("Father's details are not available").check() + await page.locator('#father____reason').fill(declaration.father.reason) + await continueForm(page) + }) + + test('7.1.5 Add supporting documents', async () => { + await goToSection(page, 'documents') + await uploadImage( + page, + page.locator('button[name="documents____proofOfBirth"]') + ) + + /* + * Expected result: + * As mother and father's details are not given, upload document for mother and father should not be visible + */ + await expect(page.locator('#documents____proofOfMother')).toBeHidden() + + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfInformant'), + sectionTitle: 'Birth Certificate', + buttonLocator: page.locator( + 'button[name="documents____proofOfInformant"]' + ) + }) + + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOther'), + sectionTitle: 'Proof of legal guardianship', + buttonLocator: page.locator('button[name="documents____proofOther"]') + }) + }) + + test('7.1.6 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('7.1.7 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + /* + * Expected result: should require + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Informant's Type of Id + */ + await expect( + page.getByTestId('row-value-informant.idType') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should require + * - Reason of why mother's details not available + */ + await expect(page.getByTestId('row-value-mother.reason')).toContainText( + declaration.mother.reason + ) + + /* + * Expected result: should require + * - Reason of why father's details not available + */ + await expect(page.getByTestId('row-value-father.reason')).toContainText( + declaration.father.reason + ) + }) + + test('7.1.8 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('7.1.9 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for review').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('7.2 Declaration Review by RA', async () => { + test('7.2.1 Navigate to the declaration review page', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + await page.getByRole('button', { name: 'Action', exact: true }).click() + await page.getByText('View', { exact: true }).click() + }) + + test('7.2.2 Verify information on review page', async () => { + /* + * Expected result: should include + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toHaveText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-8.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-8.spec.ts new file mode 100644 index 0000000000..206f0480dc --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-8.spec.ts @@ -0,0 +1,440 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + goToSection, + loginToV2, + logout +} from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { faker } from '@faker-js/faker' +import { REQUIRED_VALIDATION_ERROR } from '../helpers' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('8. Birth declaration case - 8', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + }, + informantType: 'Someone else', + informant: { + relation: 'Uncle' + }, + mother: { + maritalStatus: 'Not stated' + }, + father: { + maritalStatus: 'Not stated' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + /* + * Expected result: should show additional fields: + * - Relationship to child + */ + await page + .locator('#informant____other____relation') + .fill(declaration.informant.relation) + + await goToSection(page, 'mother') + }) + + test("8.1.3 Fill mother's details", async () => { + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await continueForm(page) + }) + + test("8.1.4 Fill father's details", async () => { + await page.locator('#father____maritalStatus').click() + await page + .getByText(declaration.father.maritalStatus, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('8.1.6 Verify information on review page', async () => { + /* + * Expected result: should require + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toContainText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + await expect( + page.getByTestId('row-value-informant.other.relation') + ).toContainText(declaration.informant.relation) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + /* + * Expected result: should require + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Informant's Type of Id + */ + await expect( + page.getByTestId('row-value-informant.idType') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toContainText(declaration.mother.maritalStatus) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.getByTestId('row-value-mother.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.getByTestId('row-value-father.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toContainText(declaration.father.maritalStatus) + }) + + test('8.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('8.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for review').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('8.2 Declaration Review by RA', async () => { + test('8.2.1 Navigate to the declaration review page', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await page.getByRole('button', { name: 'Action', exact: true }).click() + await page.getByText('View', { exact: true }).click() + }) + + test('8.2.2 Verify information on preview page', async () => { + /* + * Expected result: should require + * - Child's First Name + * - Child's Family Name + */ + await expect(page.getByTestId('row-value-child.name')).toContainText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + await expect( + page.getByTestId('row-value-informant.other.relation') + ).toContainText(declaration.informant.relation) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Informant's First Name + * - Informant's Family Name + */ + await expect(page.getByTestId('row-value-informant.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + /* + * Expected result: should require + * - Informant's date of birth + */ + await expect(page.getByTestId('row-value-informant.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Informant's Type of Id + */ + await expect( + page.getByTestId('row-value-informant.idType') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Mother's Marital status + */ + await expect( + page.getByTestId('row-value-mother.maritalStatus') + ).toContainText(declaration.mother.maritalStatus) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.getByTestId('row-value-mother.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's First Name + * - Father's Family Name + */ + await expect(page.getByTestId('row-value-father.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's date of birth + */ + await expect(page.getByTestId('row-value-father.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Father's Type of Id + */ + await expect(page.getByTestId('row-value-father.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Father's Marital status + */ + await expect( + page.getByTestId('row-value-father.maritalStatus') + ).toContainText(declaration.father.maritalStatus) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/birth-declaration-9.spec.ts b/e2e/testcases/v2-birth/declarations/birth-declaration-9.spec.ts new file mode 100644 index 0000000000..7e3b748fb3 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/birth-declaration-9.spec.ts @@ -0,0 +1,298 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { REQUIRED_VALIDATION_ERROR } from '../helpers' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('9. Birth declaration case - 9', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + }, + informantType: 'Mother', + mother: { + detailsDontExist: false + }, + father: { + detailsDontExist: true + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('9.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.1 Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + + await continueForm(page) + }) + + test('9.1.2 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informantType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test("9.1.3 Fill mother's details", async () => { + await continueForm(page) + }) + + test("9.1.4 Fill father's details", async () => { + await page.getByLabel("Father's details are not available").check() + await continueForm(page) + }) + + test('9.1.5 Go to preview', async () => { + await goToSection(page, 'review') + }) + + test('9.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's Family Name + * * should require + * - Child's First Name + */ + await expect(page.getByTestId('row-value-child.name')).toContainText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.getByTestId('row-value-mother.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Reason of why father's details not available + */ + await expect(page.getByTestId('row-value-father.reason')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + }) + + test('9.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('9.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + await page.getByText('Sent for review').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('9.2 Declaration Review by RA', async () => { + test('9.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + await page.getByRole('button', { name: 'Action', exact: true }).click() + await page.getByText('View', { exact: true }).click() + }) + + test('9.2.2 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Child's Family Name + * * should require + * - Child's First Name + */ + await expect(page.getByTestId('row-value-child.name')).toContainText( + declaration.child.name.firstNames + + ' ' + + declaration.child.name.familyName + ) + + /* + * Expected result: should require + * - Child's Gender + */ + await expect(page.getByTestId('row-value-child.gender')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's date of birth + */ + await expect(page.getByTestId('row-value-child.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Child's Place of birth type + * - Child's Place of birth details + */ + await expect( + page.getByTestId('row-value-child.placeOfBirth') + ).toContainText(REQUIRED_VALIDATION_ERROR) + + /* + * Expected result: should include + * - Informant's relation to child + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informantType) + + /* + * Expected result: should require + * - Informant's Email + */ + await expect(page.getByTestId('row-value-informant.email')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's First Name + * - Mother's Family Name + */ + await expect(page.getByTestId('row-value-mother.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's date of birth + */ + await expect(page.getByTestId('row-value-mother.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Mother's Type of Id + */ + await expect(page.getByTestId('row-value-mother.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Reason of why father's details not available + */ + await expect(page.getByTestId('row-value-father.reason')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/change-informant-on-review.spec.ts b/e2e/testcases/v2-birth/declarations/change-informant-on-review.spec.ts new file mode 100644 index 0000000000..2167c8aa49 --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/change-informant-on-review.spec.ts @@ -0,0 +1,329 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + formatName, + getRandomDate, + goToSection, + loginToV2, + logout +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from '../helpers' + +test.describe.serial('Change informant on review', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName() + '-Peter', + familyName: faker.person.lastName() + }, + gender: 'Unknown', + birthDate: getRandomDate(0, 200) + }, + attendantAtBirth: 'Other paramedical personnel', + birthType: 'Quadruplet', + placeOfBirth: 'Other', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Funabuli', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + informantEmail: faker.internet.email(), + mother: { + name: { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female') + }, + age: 25, + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + }, + maritalStatus: 'Divorced', + levelOfEducation: 'Tertiary' + }, + father: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + }, + birthDate: getRandomDate(22, 200), + nationality: 'Farajaland', + identifier: { + type: 'None' + }, + maritalStatus: 'Divorced', + levelOfEducation: 'Tertiary', + address: { + sameAsMother: false, + country: 'Grenada', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('Declaration started by RA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + await page.locator('#child____gender').click() + await page.getByText(declaration.child.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.child.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.child.birthDate.mm) + await page.getByPlaceholder('yyyy').fill(declaration.child.birthDate.yyyy) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.birthLocation.province, { + exact: true + }) + .click() + + await page.locator('#district').click() + await page + .getByText(declaration.birthLocation.district, { + exact: true + }) + .click() + + await page.locator('#town').fill(declaration.birthLocation.town) + await page + .locator('#residentialArea') + .fill(declaration.birthLocation.residentialArea) + await page.locator('#street').fill(declaration.birthLocation.street) + await page.locator('#number').fill(declaration.birthLocation.number) + await page + .locator('#zipCode') + .fill(declaration.birthLocation.postcodeOrZip) + + await page.locator('#child____attendantAtBirth').click() + await page + .getByText(declaration.attendantAtBirth, { + exact: true + }) + .click() + await page.locator('#child____birthType').click() + await page + .getByText(declaration.birthType, { + exact: true + }) + .click() + + await continueForm(page) + }) + + test('Select mother as informant', async () => { + await page.locator('#informant____relation').click() + await page.getByText('Mother', { exact: true }).click() + await page.locator('#informant____email').fill(declaration.informantEmail) + + await continueForm(page) + }) + + test("Fill mother's details", async () => { + await page.locator('#firstname').fill(declaration.mother.name.firstNames) + await page.locator('#surname').fill(declaration.mother.name.familyName) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#mother____age') + .fill(declaration.mother.age.toString()) + + await page.locator('#mother____idType').click() + await page + .getByText(declaration.mother.identifier.type, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .locator('#country input') + .fill(declaration.mother.address.country.slice(0, 3)) + await page + .locator('#country') + .getByText(declaration.mother.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.mother.address.state) + await page.locator('#district2').fill(declaration.mother.address.district) + await page.locator('#cityOrTown').fill(declaration.mother.address.town) + await page + .locator('#addressLine1') + .fill(declaration.mother.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.mother.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.mother.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.mother.address.postcodeOrZip) + + await page.locator('#mother____maritalStatus').click() + await page + .getByText(declaration.mother.maritalStatus, { exact: true }) + .click() + + await page.locator('#mother____educationalAttainment').click() + await page + .getByText(declaration.mother.levelOfEducation, { exact: true }) + .click() + + await continueForm(page) + }) + + test('No fathers details available', async () => { + await page.getByLabel("Father's details are not available").check() + await page.locator('#father____reason').fill(faker.lorem.sentence()) + }) + + test('Go to review', async () => { + await goToSection(page, 'review') + }) + + test('Fill up signature and comment', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + + await expect(page.getByRole('dialog')).not.toBeVisible() + }) + + test('Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for approval').click() + + await expect( + page.getByRole('button', { + name: formatName(declaration.child.name) + }) + ).toBeVisible() + }) + }) + + test.describe('Declaration Review by Local Registrar', async () => { + test('Navigate to the declaration review page', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name) + }) + .click() + + await selectAction(page, 'Review') + }) + + test('Change informant to father', async () => { + await page.getByTestId('change-button-informant.relation').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#informant____relation').click() + await page.getByText('Father', { exact: true }).click() + await page.locator('#informant____email').fill(faker.internet.email()) + }) + + test('Go back to review, expect to see validation errors for father information', async () => { + await page.getByRole('button', { name: 'Back to review' }).click() + + await expect(page.getByTestId('row-value-father.name')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + await expect(page.getByTestId('row-value-father.dob')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + await expect(page.getByTestId('row-value-father.idType')).toContainText( + REQUIRED_VALIDATION_ERROR + ) + + await expect( + page.getByRole('button', { name: 'Register' }) + ).toBeDisabled() + }) + + test('Fill in father details', async () => { + await page.getByTestId('change-button-father.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#firstname').fill(declaration.father.name.firstNames) + await page.locator('#surname').fill(declaration.father.name.familyName) + + await page.getByPlaceholder('dd').fill(declaration.father.birthDate.dd) + await page.getByPlaceholder('mm').fill(declaration.father.birthDate.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.father.birthDate.yyyy) + + await page.getByTestId('select__father____idType').click() + await page + .getByText(declaration.father.identifier.type, { exact: true }) + .click() + }) + + test('Go back to review, expect to not see any validation errors', async () => { + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByText(REQUIRED_VALIDATION_ERROR)).not.toBeVisible() + await expect(page.getByRole('button', { name: 'Register' })).toBeEnabled() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/declarations/submit-incomplete.spec.ts b/e2e/testcases/v2-birth/declarations/submit-incomplete.spec.ts new file mode 100644 index 0000000000..c96526fa5a --- /dev/null +++ b/e2e/testcases/v2-birth/declarations/submit-incomplete.spec.ts @@ -0,0 +1,95 @@ +import { test, expect, type Page } from '@playwright/test' +import { formatName, goToSection, loginToV2 } from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS, SAFE_WORKQUEUE_TIMEOUT_MS } from '../../../constants' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('Submit and verify incomplete birth declaration', () => { + let page: Page + const declaration = { + child: { + name: { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male') + } + }, + + placeOfBirth: 'Health Institution' + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Fill child details', async () => { + await page.locator('#firstname').fill(declaration.child.name.firstNames) + await page.locator('#surname').fill(declaration.child.name.familyName) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(declaration.placeOfBirth, { + exact: true + }) + .click() + }) + + test('Go to review and send for review', async () => { + await goToSection(page, 'review') + await page + .getByRole('button', { name: 'Send for review', exact: true }) + .click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + }) + + test('Verify summary page', async () => { + await ensureOutboxIsEmpty(page) + await page.getByText('Sent for review').click() + + await page + .getByRole('button', { + name: formatName(declaration.child.name), + exact: true + }) + .click() + + await expect(page.getByText('Notified', { exact: true })).toBeVisible() + await expect(page.locator('#content-name')).toContainText( + formatName(declaration.child.name) + ) + await expect( + page.getByTestId('status-value').locator('span') + ).toContainText('Notified') + await expect( + page.getByTestId('event-value').locator('span') + ).toContainText('Birth') + await expect( + page.getByTestId('child.dob-value').locator('span') + ).toBeHidden() + await expect( + page.getByTestId('registrationNumber-value').locator('span') + ).toContainText('No registration number') + await expect( + page.getByTestId('informant.contact-value').locator('span') + ).toBeHidden() + await expect( + page.getByTestId('assignedTo-value').locator('span') + ).toContainText('Not assigned') + + await expect( + page.getByTestId('child.birthLocation-value').locator('span') + ).toBeHidden() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/helpers.ts b/e2e/testcases/v2-birth/helpers.ts new file mode 100644 index 0000000000..e886f1c61d --- /dev/null +++ b/e2e/testcases/v2-birth/helpers.ts @@ -0,0 +1,111 @@ +import { expect, type Page } from '@playwright/test' +import { omit } from 'lodash' +import { formatName, joinValuesWith } from '../../helpers' +import { faker } from '@faker-js/faker' +import { ensureOutboxIsEmpty } from '../../v2-utils' +import { getRowByTitle } from '../v2-print-certificate/birth/helpers' +import { SAFE_OUTBOX_TIMEOUT_MS } from '../../constants' + +export const REQUIRED_VALIDATION_ERROR = 'Required' +export const NAME_VALIDATION_ERROR = + "Input contains invalid characters. Please use only letters (a-z, A-Z), numbers (0-9), hyphens (-) and apostrophes(')" + +export async function validateAddress( + page: Page, + address: Record, + elementTestId: string +) { + // selection is not rendered as part of the address. + const addressWithoutGeographicalArea = omit(address, 'urbanOrRural') + + await Promise.all( + Object.values(addressWithoutGeographicalArea).map( + (val) => + typeof val === 'string' && + expect(page.getByTestId(elementTestId).getByText(val)).toBeVisible() + ) + ) +} + +export async function fillDate( + page: Page, + date: { dd: string; mm: string; yyyy: string } +) { + await page.getByPlaceholder('dd').fill(date.dd) + await page.getByPlaceholder('mm').fill(date.mm) + await page.getByPlaceholder('yyyy').fill(date.yyyy) +} + +export async function fillChildDetails(page: Page) { + const firstName = faker.person.firstName('female') + const lastName = faker.person.lastName('female') + await page.locator('#firstname').fill(firstName) + await page.locator('#surname').fill(lastName) + + return formatName({ firstNames: firstName, familyName: lastName }) +} + +export async function openBirthDeclaration(page: Page) { + await page.click('#header-new-event') + await page.getByLabel('Birth').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + return page +} + +export const formatV2ChildName = (obj: { + 'child.name': { firstname: string; surname: string } + [key: string]: any +}) => { + return joinValuesWith([ + obj['child.name'].firstname, + obj['child.name'].surname + ]) +} + +export const assertRecordInWorkqueue = async ({ + page, + name, + workqueues +}: { + page: Page + name: string + workqueues: { title: string; exists: boolean }[] +}) => { + await page.getByRole('button', { name: 'Outbox' }).click() + await ensureOutboxIsEmpty(page) + + for (const { title, exists } of workqueues) { + await page + .getByRole('button', { + name: title + }) + .click() + + await expect(page.getByTestId('search-result')).toContainText(title, { + timeout: SAFE_OUTBOX_TIMEOUT_MS + }) + + if (exists) { + await expect(page.getByRole('button', { name })).toBeVisible() + } else { + await expect(page.getByRole('button', { name })).toBeHidden() + } + } +} + +export const assignFromWorkqueue = async (page: Page, name: string) => { + await getRowByTitle(page, name) + .getByRole('button', { name: 'Assign record' }) + .click() + await page.getByRole('button', { name: 'Assign', exact: true }).click() + + await expect( + getRowByTitle(page, name) + .getByRole('button', { name: 'Assign record' }) + .locator('img') + ).toBeVisible({ + timeout: SAFE_OUTBOX_TIMEOUT_MS + }) +} diff --git a/e2e/testcases/v2-birth/save-and-delete-drafts.spec.ts b/e2e/testcases/v2-birth/save-and-delete-drafts.spec.ts new file mode 100644 index 0000000000..4314d848d0 --- /dev/null +++ b/e2e/testcases/v2-birth/save-and-delete-drafts.spec.ts @@ -0,0 +1,106 @@ +import { expect, Page, test } from '@playwright/test' +import { goToSection, loginToV2, logout } from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { fillChildDetails, openBirthDeclaration } from './helpers' +import { ensureOutboxIsEmpty } from '../../v2-utils' + +/** + * Skipping tests until the outbox workqueue is implemented. + * Develop is already in broken state. We'll revisit this when we have ungloc the pipeline and can dedicate time on which change caused the error. + */ +test.describe('Save and delete drafts', () => { + test.describe.serial('Save draft', () => { + let childName = '' + let page: Page + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await openBirthDeclaration(page) + }) + + test('Save draft via Save & Exit', async () => { + childName = await fillChildDetails(page) + await page.getByRole('button', { name: 'Save & Exit' }).click() + await expect( + page.getByText( + 'All inputted data will be kept secure for future editing. Are you ready to save any changes to this declaration form?' + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + await page.getByRole('button', { name: 'My drafts' }).click() + + await page.getByRole('button', { name: childName, exact: true }).click() + await expect(page.locator('#content-name')).toHaveText(childName) + }) + + test('Saved draft is not visible to other users', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.NATIONAL_REGISTRAR) + + await page.getByText('My drafts').click() + + await expect( + page.getByRole('button', { name: childName, exact: true }) + ).not.toBeVisible() + }) + + test('Login as local registrar', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR, true) + }) + + test('Delete saved draft', async () => { + await page.getByRole('button', { name: 'My drafts' }).click() + await page.getByRole('button', { name: childName, exact: true }).click() + await page.getByRole('button', { name: 'Action', exact: true }).click() + + await page.getByText('Declare').click() + await page.locator('#event-menu-dropdownMenu').click() + await page.getByText('Delete declaration').click() + await expect( + page.getByText('Are you sure you want to delete this declaration?') + ).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await ensureOutboxIsEmpty(page) + await page.getByText('My drafts').click() + + await expect( + page.getByRole('button', { name: childName, exact: true }) + ).not.toBeVisible() + }) + }) + + test.describe.serial('Exit without saving', () => { + let page: Page + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + await openBirthDeclaration(page) + }) + test('Exit without saving', async () => { + const childName = await fillChildDetails(page) + await goToSection(page, 'review') + await page.getByRole('button', { name: 'Exit', exact: true }).click() + + await expect( + page.getByText( + 'You have unsaved changes on your declaration form. Are you sure you want to exit without saving?' + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + await page.getByRole('button', { name: 'Assigned to you' }).click() + + await expect( + page.getByRole('button', { name: childName, exact: true }) + ).not.toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-birth/test_img.png b/e2e/testcases/v2-birth/test_img.png new file mode 100644 index 0000000000..60e211b616 Binary files /dev/null and b/e2e/testcases/v2-birth/test_img.png differ diff --git a/e2e/testcases/v2-correction-birth/birth-correction-flow.spec.ts b/e2e/testcases/v2-correction-birth/birth-correction-flow.spec.ts new file mode 100644 index 0000000000..1c8d245f29 --- /dev/null +++ b/e2e/testcases/v2-correction-birth/birth-correction-flow.spec.ts @@ -0,0 +1,354 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2, logout } from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration-with-mother-father' +import { + ensureAssigned, + ensureOutboxIsEmpty, + expectInUrl, + selectAction, + type +} from '../../v2-utils' +import { + formatV2ChildName, + REQUIRED_VALIDATION_ERROR +} from '../v2-birth/helpers' + +test.describe.serial('Birth correction flow', () => { + let declaration: Declaration + let eventId: string + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration( + token, + undefined, + undefined, + 'HEALTH_FACILITY' + ) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test('Navigate to the correction form', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + await ensureAssigned(page) + await selectAction(page, 'Correct record') + }) + + test('Try to continue without filling in required fields', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.locator('#requester____type_error')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + await expect(page.locator('#reason____option_error')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + }) + + test('Fill in the correction details form', async () => { + await page.locator('#requester____type').click() + await page.getByText('Informant (Mother)', { exact: true }).click() + + await page.locator('#reason____option').click() + await page + .getByText('Myself or an agent made a mistake (Clerical error)', { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('Fill in the supporting documents form', async () => { + const path = require('path') + const attachmentPath = path.resolve(__dirname, './image.png') + const inputFile = await page.locator( + 'input[name="documents____supportingDocs"][type="file"]' + ) + + await page.getByTestId('select__documents____supportingDocs').click() + await page.getByText('Affidavit', { exact: true }).click() + + await inputFile.setInputFiles(attachmentPath) + + await page.getByTestId('select__documents____supportingDocs').click() + await page.getByText('Court Document', { exact: true }).click() + await inputFile.setInputFiles(attachmentPath) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Fill in the fees form', async () => { + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Review page should be displayed and continue button should be disabled', async () => { + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + }) + + test('Go through the declaration correction form without changing any details', async () => { + await page + .getByRole('button', { name: 'Change all', exact: true }) + .first() + .click() + + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('When back on review page, continue button should still be disabled', async () => { + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + }) + + test('After changing a value, continue button should be enabled', async () => { + await page.getByTestId('change-button-informant.email').click() + + await page + .getByTestId('text__informant____email') + .fill(faker.internet.email()) + + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeEnabled() + }) + + test('After changing the value back to the original, continue button should be disabled', async () => { + await page.getByTestId('change-button-informant.email').click() + + await page + .getByTestId('text__informant____email') + .fill(declaration['informant.email']) + + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + }) + + test('After changing another value to an invalid value, continue button should still be disabled', async () => { + await page.getByTestId('change-button-child.dob').click() + // Future date + await page.getByTestId('child____dob-yyyy').fill('2045') + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + await expect(page.getByText('Must be a valid birth date')).toBeVisible() + }) + + const newFirstName = faker.person.firstName() + const reasonForDelayedRegistration = faker.lorem.sentence(4) + + test('After changing the value to a valid value, continue button should be enabled', async () => { + await page.getByTestId('change-button-child.dob').click() + await page.getByTestId('child____dob-yyyy').fill('2024') + await page.getByTestId('child____dob-mm').fill('6') + await page.getByTestId('child____dob-dd').fill('24') + await page + .getByTestId('text__child____reason') + .fill(reasonForDelayedRegistration) + + await type(page, '#firstname', newFirstName) + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeEnabled() + }) + + test('Continue to the summary page', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl(page, `/events/request-correction/${eventId}/summary`) + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + await expect( + page.getByRole('button', { name: 'Submit correction request' }) + ).toBeEnabled() + }) + + test('Press Fees change link and change the fee amount', async () => { + await page.getByTestId('change-fees.amount').click() + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + }) + + test('Return to summary page', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Preview a file on summary page', async () => { + await expect( + page.getByRole('button', { name: 'Court Document' }) + ).toBeVisible() + + await page.getByRole('button', { name: 'Affidavit' }).click() + + await expect( + page.getByRole('img', { name: 'Supporting Document' }) + ).toBeVisible() + + await page.locator('#preview_close').click() + }) + + test('Submit correction request', async () => { + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + + await expect( + page.getByText('Send record correction for approval?') + ).toBeVisible() + await expect( + page.getByText( + 'The Registrar will be notified of this correction request and a record of this request will be recorded' + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + await expectInUrl(page, `/events/overview/${eventId}`) + await ensureOutboxIsEmpty(page) + }) + + test("Event appears in 'Sent for approval' workqueue", async () => { + await page.getByTestId('navigation_workqueue_sent-for-approval').click() + + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + }) + + test.describe('Approve correction request', () => { + test('Login as Local Registrar', async () => { + await logout(page) + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test("Find the event in the 'Ready for review' workflow", async () => { + await page.getByRole('button', { name: 'Ready for review' }).click() + + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('Correction request action appears in audit history', async () => { + await ensureAssigned(page) + + // Go to second page of audit history list + await page.getByRole('button', { name: 'Next page' }).click() + await expect( + page.getByRole('button', { name: 'Correction requested', exact: true }) + ).toBeVisible() + }) + + test('Correction request audit history modal opens when action is clicked', async () => { + await page + .getByRole('button', { name: 'Correction requested', exact: true }) + .click() + + await expect(page.getByText('RequesterInformant (Mother)')).toBeVisible() + await expect( + page.getByText( + 'Reason for correctionMyself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + + await expect(page.getByText("Child's details")).toBeVisible() + await expect( + page.getByText( + `Reason for delayed registration-${reasonForDelayedRegistration}` + ) + ).toBeVisible() + + await page.locator('#close-btn').click() + }) + + test('Navigate to correction review', async () => { + await selectAction(page, 'Review') + + await expect(page.getByText('RequesterInformant (Mother)')).toBeVisible() + await expect( + page.getByText( + 'Reason for correctionMyself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + + await expect( + page.getByRole('heading', { name: "Child's details" }) + ).toBeVisible() + }) + + test('Approve correction request', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + await expectInUrl(page, `/events/overview/${eventId}`) + + await expect( + page.getByText( + formatV2ChildName({ + 'child.name': { + firstname: newFirstName, + surname: declaration['child.name'].surname + } + }) + ) + ).toBeVisible({ + timeout: 60_000 + }) + }) + + test('Correction approved action appears in audit history', async () => { + await ensureAssigned(page) + + // Go to second page of audit history list + await page.getByRole('button', { name: 'Next page' }).click() + await expect( + page.getByRole('button', { name: 'Correction approved', exact: true }) + ).toBeVisible() + }) + + test('Enter the direct correction form to ensure form is reset', async () => { + await selectAction(page, 'Correct record') + + await expect(page.locator('#requester____type')).toHaveText('Select...') + await expect(page.locator('#reason____option')).toHaveText('Select...') + await page.locator('#crcl-btn').click() + }) + }) +}) diff --git a/e2e/testcases/v2-correction-birth/birth-make-correction-flow.spec.ts b/e2e/testcases/v2-correction-birth/birth-make-correction-flow.spec.ts new file mode 100644 index 0000000000..507600ac9d --- /dev/null +++ b/e2e/testcases/v2-correction-birth/birth-make-correction-flow.spec.ts @@ -0,0 +1,270 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration-with-mother-father' +import { ensureAssigned, expectInUrl, selectAction } from '../../v2-utils' +import { + formatV2ChildName, + REQUIRED_VALIDATION_ERROR +} from '../v2-birth/helpers' + +test.describe.serial('Birth Record correction flow', () => { + let declaration: Declaration + let eventId: string + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration( + token, + undefined, + undefined, + 'HEALTH_FACILITY' + ) + declaration = res.declaration + eventId = res.eventId + + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('Navigate to the correction form', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + await ensureAssigned(page) + await selectAction(page, 'Correct record') + }) + + test('Try to continue without filling in required fields', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.locator('#requester____type_error')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + await expect(page.locator('#reason____option_error')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + }) + + test('Fill in the correction details form', async () => { + await page.locator('#requester____type').click() + await page.getByText('Informant (Mother)', { exact: true }).click() + + await page.locator('#reason____option').click() + await page + .getByText('Myself or an agent made a mistake (Clerical error)', { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('Fill in the supporting documents form', async () => { + const path = require('path') + const attachmentPath = path.resolve(__dirname, './image.png') + const inputFile = await page.locator( + 'input[name="documents____supportingDocs"][type="file"]' + ) + + await page.getByTestId('select__documents____supportingDocs').click() + await page.getByText('Affidavit', { exact: true }).click() + + await inputFile.setInputFiles(attachmentPath) + + await page.getByTestId('select__documents____supportingDocs').click() + await page.getByText('Court Document', { exact: true }).click() + await inputFile.setInputFiles(attachmentPath) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Fill in the fees form', async () => { + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Review page should be displayed and continue button should be disabled', async () => { + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + }) + + test('Go through the declaration correction form without changing any details', async () => { + await page + .getByRole('button', { name: 'Change all', exact: true }) + .first() + .click() + + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('When back on review page, continue button should still be disabled', async () => { + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + }) + + test('After changing a value, continue button should be enabled', async () => { + await page.getByTestId('change-button-informant.email').click() + + await page + .getByTestId('text__informant____email') + .fill(faker.internet.email()) + + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeEnabled() + }) + + test('After changing the value back to the original, continue button should be disabled', async () => { + await page.getByTestId('change-button-informant.email').click() + + await page + .getByTestId('text__informant____email') + .fill(declaration['informant.email']) + + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + }) + + test('After changing another value to an invalid value, continue button should still be disabled', async () => { + await page.getByTestId('change-button-child.dob').click() + // Future date + await page.getByTestId('child____dob-yyyy').fill('2045') + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeDisabled() + await expect(page.getByText('Must be a valid birth date')).toBeVisible() + }) + + const reasonForDelayedRegistration = faker.lorem.sentence(4) + + test('After changing the value to a valid value, continue button should be enabled', async () => { + await page.getByTestId('change-button-child.dob').click() + await page.getByTestId('child____dob-yyyy').fill('2024') + await page.getByTestId('child____dob-mm').fill('6') + await page.getByTestId('child____dob-dd').fill('24') + await page + .getByTestId('text__child____reason') + .fill(reasonForDelayedRegistration) + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByRole('button', { name: 'Continue' })).toBeEnabled() + }) + + test('Continue to the summary page', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl(page, `/events/request-correction/${eventId}/summary`) + await expect( + page.getByRole('button', { name: 'Back to review' }) + ).toBeEnabled() + await expect( + page.getByRole('button', { name: 'Correct record' }) + ).toBeEnabled() + }) + + test('Press Fees change link and change the fee amount', async () => { + await page.getByTestId('change-fees.amount').click() + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + }) + + test('Return to summary page', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Preview a file on summary page', async () => { + await expect( + page.getByRole('button', { name: 'Court Document' }) + ).toBeVisible() + + await page.getByRole('button', { name: 'Affidavit' }).click() + + await expect( + page.getByRole('img', { name: 'Supporting Document' }) + ).toBeVisible() + + await page.locator('#preview_close').click() + }) + + test('Record correction', async () => { + await page.getByRole('button', { name: 'Correct record' }).click() + + await expect(page.getByText('Correct record?')).toBeVisible() + await expect( + page.getByText( + 'The informant will be notified of this correction and a record of this decision will be recorded' + ) + ).toBeVisible() + + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + await expectInUrl(page, `/events/overview/${eventId}`) + + await page.waitForResponse((response) => + response + .url() + .includes('/api/events/event.actions.correction.approve.request') + ) + }) + + test('Record correction action appears in audit history', async () => { + await page.reload() + await ensureAssigned(page) + + // Go to second page of audit history list + await page.getByRole('button', { name: 'Next page' }).click() + await expect( + page.getByRole('button', { name: 'Record corrected', exact: true }) + ).toBeVisible() + }) + + test('Record Correction audit history modal opens when action is clicked', async () => { + await page + .getByRole('button', { name: 'Record corrected', exact: true }) + .click() + + await expect( + page.getByRole('heading', { name: 'Record corrected', exact: true }) + ).toBeVisible() + await expect(page.getByText('Informant (Mother)')).toBeVisible() + await expect( + page.getByText('Myself or an agent made a mistake (Clerical error)') + ).toBeVisible() + + await expect(page.getByText('Correction(s)', { exact: true })).toBeVisible() + await expect(page.getByText("Child's details")).toBeVisible() + await expect(page.getByText(reasonForDelayedRegistration)).toBeVisible() + + await page.locator('#close-btn').click() + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-1.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-1.spec.ts new file mode 100644 index 0000000000..10ec1f1aec --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-1.spec.ts @@ -0,0 +1,798 @@ +import { expect, test, type Page } from '@playwright/test' +import { + formatDateTo_dMMMMyyyy, + formatName, + getLocationNameFromFhirId, + getToken, + goBackToReview, + loginToV2, + uploadImage +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { format, parseISO, subDays } from 'date-fns' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration-with-mother-father' +import { + ensureAssigned, + ensureOutboxIsEmpty, + expectInUrl, + selectAction, + type +} from '../../v2-utils' +import { formatV2ChildName } from '../v2-birth/helpers' + +test.describe('1. Correct record - 1', () => { + let declaration: Declaration + let trackingId: string | undefined + let registrationNumber: string | undefined + let eventId: string + + const updatedChildDetails = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.firstName('male'), + gender: 'Male', + birthDate: format( + subDays(new Date(), Math.ceil(15 * Math.random()) + 5), + 'yyyy-MM-dd' + ), + birthLocation: 'Tembwe Rural Health Centre', + attendantAtBirth: 'Nurse', + typeOfBirth: 'Twin', + weightAtBirth: '3.1' + } + + test.beforeAll(async () => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration( + token, + undefined, + undefined, + 'HEALTH_FACILITY' + ) + declaration = res.declaration + trackingId = res.trackingId + registrationNumber = res.registrationNumber + eventId = res.eventId + }) + + test.describe('1.1 Validate verbiage', async () => { + test.beforeEach(async ({ page }) => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByRole('button', { name: 'Ready to print' }).click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + await ensureAssigned(page) + }) + + test('1.1.1 Validate record audit page', async ({ page }) => { + /* + * Expected result: should + * - See in header child's name and action button + * - Navigate to record audit page + * - See status, event, trackingId, BRN, DOB, Place of birth, Informant contact + */ + await expect(page.getByText(formatV2ChildName(declaration))).toBeVisible() + await expect( + page.getByRole('button', { name: 'Action' }).first() + ).toBeVisible() + + expect(page.url().includes(`/events/overview/${eventId}`)).toBeTruthy() + + await expect(page.getByText(`StatusRegistered`)).toBeVisible() + await expect(page.getByText(`EventBirth`)).toBeVisible() + await expect(page.getByText(`Tracking ID${trackingId}`)).toBeVisible() + await expect( + page.getByText(`Registration Number${registrationNumber}`) + ).toBeVisible() + await expect( + page.getByText(`Date of birth${format( + parseISO(declaration['child.dob']), + 'd MMMM yyyy' + )} + `) + ).toBeVisible() + + const birthLocationId = declaration['child.birthLocation'] + + if (!birthLocationId) { + throw new Error('Birth location ID is undefined') + } + + const childBirthLocationName = + await getLocationNameFromFhirId(birthLocationId) + await expect( + page.getByText(`Place of birth${childBirthLocationName}`) + ).toBeVisible() + await expect( + page.getByText(`Contact${declaration['informant.email']}`) + ).toBeVisible() + + await selectAction(page, 'Correct record') + }) + + test('1.1.2 Validate correction requester page', async ({ page }) => { + await selectAction(page, 'Correct record') + + /* + * Expected result: should + * - Navigate to Correction Requester Page + */ + await expect(page.getByText('Correction details')).toBeVisible() + await expectInUrl( + page, + `/events/request-correction/${eventId}/onboarding/details` + ) + + await expect(page.getByText('Requester *')).toBeVisible() + await expect(page.getByText('Reason for correction *')).toBeVisible() + }) + + test('1.1.3 Validate identity verification page for Mother', async ({ + page + }) => { + await selectAction(page, 'Correct record') + + await page.locator('#requester____type').click() + await page.getByText('Informant (Mother)', { exact: true }).click() + + await page.locator('#reason____option').click() + await page + .getByText('Myself or an agent made a mistake (Clerical error)', { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should show + * Text: Verify their identity + * Button: Verified + * Button: Identity does not match + */ + await expect(page.getByText('Verify their identity')).toBeVisible() + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + + /* + * Expected result: should Confirm + * ID + * First Name + * Last Name + * Date of Birth + * Nationality + */ + await expect(page.getByText('Type of ID')).toBeVisible() + await expect(page.getByText('National ID')).toBeVisible() + await expect(page.getByText(declaration['mother.nid'])).toBeVisible() + await expect( + page.getByText( + `${declaration['mother.name'].firstname} ${declaration['mother.name'].surname}` + ) + ).toBeVisible() + }) + }) + + test.describe + .serial('1.2 Record correction by informant (mother)', async () => { + let page: Page + + let childBirthLocationName: string | undefined + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.2.0 Navigate to record correction', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + await ensureAssigned(page) + await selectAction(page, 'Correct record') + + await page.locator('#requester____type').click() + await page.getByText('Informant (Mother)', { exact: true }).click() + + await page.locator('#reason____option').click() + await page + .getByText('Myself or an agent made a mistake (Clerical error)', { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('1.2.1 Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + + /* + * Expected result: should navigate to 'Upload supporting documents' -page + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/onboarding/documents` + ) + }) + + test('1.2.2 Upload supporting documents', async () => { + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await page.getByTestId('select__documents____supportingDocs').click() + await page.getByText(sectionTitle, { exact: true }).click() + await uploadImage(page, page.getByRole('button', { name: 'Upload' })) + } + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + const fee = faker.number.int({ min: 1, max: 1000 }) + + test('1.2.3 Fees', async () => { + await expectInUrl( + page, + `/events/request-correction/${eventId}/onboarding/fees` + ) + + // Clicking continue without filling required fields should cause validation errors + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.locator('#fees____amount_error')).toBeVisible() + + await page.locator('#fees____amount').fill(fee.toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + }) + + test.describe('1.2.4 Correction made on child details', async () => { + test('1.2.4.1 Change name', async () => { + await page.getByTestId('change-button-child.name').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's family name + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____name` + ) + + await page + .getByTestId('text__firstname') + .fill(updatedChildDetails.firstNames) + + await page + .getByTestId('text__surname') + .fill(updatedChildDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + await page.getByTestId('row-value-child.name').getByRole('deletion') + ).toHaveText( + `${declaration['child.name'].firstname} ${declaration['child.name'].surname}` + ) + + await expect( + page + .getByTestId('row-value-child.name') + .getByText( + `${updatedChildDetails.firstNames} ${updatedChildDetails.familyName}` + ) + ).toBeVisible() + }) + + test('1.2.4.2 Change gender', async () => { + await page.getByTestId('change-button-child.gender').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's gender + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____gender` + ) + + await page.getByTestId('select__child____gender').locator('svg').click() + await page.getByText('Male', { exact: true }).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.gender').getByRole('deletion') + ).toHaveText(declaration['child.gender'], { ignoreCase: true }) + + await expect( + page + .getByTestId('row-value-child.gender') + .getByText(updatedChildDetails.gender) + ).toBeVisible() + }) + + test('1.2.4.3 Change date of birth', async () => { + await page.getByTestId('change-button-child.dob').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's date of birth + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____dob` + ) + + const birthDay = updatedChildDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.dob').getByRole('deletion') + ).toHaveText(formatDateTo_dMMMMyyyy(declaration['child.dob'])) + + await expect( + page + .getByTestId('row-value-child.dob') + .getByText(formatDateTo_dMMMMyyyy(updatedChildDetails.birthDate)) + ).toBeVisible() + }) + + test('1.2.4.4 Change place of delivery', async () => { + await page.getByTestId('change-button-child.placeOfBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's place of birth + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____placeOfBirth` + ) + + await page + .getByTestId('child____birthLocation') + .fill(updatedChildDetails.birthLocation.slice(0, 2)) + await page.getByText(updatedChildDetails.birthLocation).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place of birth with strikethrough + * - show updated place of birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + childBirthLocationName = await getLocationNameFromFhirId( + declaration['child.birthLocation']! + ) + expect(childBirthLocationName).toBeDefined() + + await expect( + page + .getByTestId('row-value-child.birthLocation') + .getByRole('deletion') + .getByText(childBirthLocationName!) + ).toBeVisible() + + await expect( + page + .getByTestId('row-value-child.birthLocation') + .getByText(updatedChildDetails.birthLocation) + ).toBeVisible() + }) + + test('1.2.4.5 Change attendant at birth', async () => { + await page.getByTestId('change-button-child.attendantAtBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's Attendant at birth + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____attendantAtBirth` + ) + + await page.getByTestId('select__child____attendantAtBirth').click() + await page.getByText(updatedChildDetails.attendantAtBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Attendant at birth with strikethrough + * - show updated Attendant at birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page + .getByTestId('row-value-child.attendantAtBirth') + .getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .getByTestId('row-value-child.attendantAtBirth') + .getByText(updatedChildDetails.attendantAtBirth) + ).toBeVisible() + }) + + test('1.2.4.6 Change type of birth', async () => { + await page.getByTestId('change-button-child.birthType').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's type of birth + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____birthType` + ) + + await page.getByTestId('select__child____birthType').click() + await page.getByText(updatedChildDetails.typeOfBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous type of birth with strikethrough + * - show updated type of birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.birthType').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .getByTestId('row-value-child.birthType') + .getByText(updatedChildDetails.typeOfBirth) + ).toBeVisible() + }) + }) + + test.describe('1.2.5 Correction summary', async () => { + test('1.2.5.1 Go back to review', async () => { + await page + .getByRole('button', { name: 'Continue', exact: true }) + .click() + + /* Expected result: should + * - navigate to correction summary + */ + await expectInUrl(page, `/events/request-correction/${eventId}/summary`) + + await page + .getByRole('button', { name: 'Back to review', exact: true }) + .click() + + /* Expected result: should + * - navigate to correction review + */ + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + }) + + test('1.2.5.2 Change weight at birth', async () => { + await page.getByTestId('change-button-child.weightAtBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's weight at birth + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____weightAtBirth` + ) + + await page + .locator('#child____weightAtBirth') + .fill(updatedChildDetails.weightAtBirth) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous weight at birth with strikethrough + * - show updated weight at birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.birthType').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .getByTestId('row-value-child.weightAtBirth') + .getByText(updatedChildDetails.weightAtBirth) + ).toBeVisible() + }) + + test('1.2.5.3 Validate information in correction summary page', async () => { + await page + .getByRole('button', { name: 'Continue', exact: true }) + .click() + + /* + * Expected result: should + * - navigate to correction summary + */ + await expectInUrl(page, `/events/request-correction/${eventId}/summary`) + + /* + * Expected result: should show + * - Requested by + * - Reason for request + * - Original vs correction + */ + + await expect(page.getByText('Informant (Mother)')).toBeVisible() + await expect( + page.getByText('Myself or an agent made a mistake (Clerical error)') + ).toBeVisible() + await expect(page.getByText(`$${fee}`)).toBeVisible() + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Child's name${declaration['child.name'].firstname} ${declaration['child.name'].surname}${updatedChildDetails.firstNames} ${updatedChildDetails.familyName}` + ) + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Sex${declaration['child.gender']}${updatedChildDetails.gender}`, + { ignoreCase: true } + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Date of birth${formatDateTo_dMMMMyyyy(declaration['child.dob'])}${formatDateTo_dMMMMyyyy(updatedChildDetails.birthDate)}` + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Location of birth${await getLocationNameFromFhirId(declaration['child.birthLocation']!)}` + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText(`${updatedChildDetails.birthLocation}`) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Attendant at birth-${updatedChildDetails.attendantAtBirth}` + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText(`Type of birth-${updatedChildDetails.typeOfBirth}`) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText(`Weight at birth-${updatedChildDetails.weightAtBirth}`) + + /* + * Expected result: should enable the Send for approval button + */ + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should be navigated to event overview + */ + await expectInUrl(page, `/events/overview/${eventId}`) + + /* + * Expected result: should + * - be navigated to Sent for approval workqueue + * - include the declaration in this tab + */ + await page.getByTestId('navigation_workqueue_sent-for-approval').click() + await ensureOutboxIsEmpty(page) + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible() + }) + }) + + test.describe('1.2.6 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('1.2.6.1 Record audit by local registrar', async () => { + if (!trackingId) { + throw new Error('Tracking ID is required') + } + + await type(page, '#searchText', trackingId) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('1.2.6.2 Correction review', async () => { + await selectAction(page, 'Review') + + await expect( + page.getByText('Requester' + 'Informant (Mother)') + ).toBeVisible() + await expect( + page.getByText( + 'Reason for correction' + + 'Myself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + + await expect(page.getByText('Fee total' + '$' + fee)).toBeVisible() + + await expect( + page + .locator('#listTable-corrections-table-child') + .getByText( + "Child's name" + + `${declaration['child.name'].firstname} ${declaration['child.name'].surname}` + + formatName(updatedChildDetails) + ) + ).toBeVisible() + + await expect( + page + .locator('#listTable-corrections-table-child') + .getByText('SexFemaleMale') + ).toBeVisible() + }) + + test('1.2.6.3 Approve correction', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + await expectInUrl(page, `/events/overview/${eventId}`) + }) + + test.describe('1.2.6.4 Validate history in record audit', async () => { + test('1.2.6.4.1 Validate entries in record audit', async () => { + if (!trackingId) { + throw new Error('Tracking ID is required') + } + + await type(page, '#searchText', trackingId) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { + name: formatV2ChildName({ + 'child.name': { + firstname: updatedChildDetails.firstNames, + surname: updatedChildDetails.familyName + } + }) + }) + .click() + + await ensureAssigned(page) + }) + + test('1.2.6.4.2 Validate correction requested modal', async () => { + await page.getByRole('button', { name: 'Next page' }).click() + + await page + .getByRole('button', { name: 'Correction requested', exact: true }) + .click() + + await expect( + page.getByText('Requester' + 'Informant (Mother)') + ).toBeVisible() + + await expect( + page.getByText( + 'Reason for correction' + + 'Myself or an agent made a mistake (Clerical error)' + ) + ).toBeVisible() + + await expect(page.getByText('Fee total' + '$' + fee)).toBeVisible() + + await expect( + page + .locator('#listTable-corrections-table-child') + .getByText( + "Child's name" + + `${declaration['child.name'].firstname} ${declaration['child.name'].surname}` + + formatName(updatedChildDetails) + ) + ).toBeVisible() + + await expect(page.getByText('Type of birth-Twin')).toBeVisible() + + await page.locator('#close-btn').click() + }) + + test('1.2.6.4.3 Validate correction approved modal', async () => { + await page + .getByRole('button', { name: 'Correction approved', exact: true }) + .click() + + await page.locator('#close-btn').click() + }) + }) + }) + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-10.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-10.spec.ts new file mode 100644 index 0000000000..bc090182a1 --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-10.spec.ts @@ -0,0 +1,723 @@ +import { expect, test, type Page } from '@playwright/test' +import { + formatDateTo_dMMMMyyyy, + formatName, + getLocationNameFromFhirId, + getToken, + goBackToReview, + loginToV2, + uploadImage +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { format, subDays } from 'date-fns' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration-with-mother-father' +import { ensureAssigned, expectInUrl, selectAction, type } from '../../v2-utils' +import { + formatV2ChildName, + REQUIRED_VALIDATION_ERROR +} from '../v2-birth/helpers' +import { getMixedPath } from '@opencrvs/toolkit/events' + +test.describe('10. Correct record', () => { + let declaration: Declaration + let eventId: string + let trackingId: string | undefined + + const updatedChildDetails = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.firstName('male'), + gender: 'Male', + birthDate: format( + subDays(new Date(), Math.ceil(15 * Math.random()) + 5), + 'yyyy-MM-dd' + ), + birthLocation: 'Tembwe Rural Health Centre', + attendantAtBirth: 'Nurse', + typeOfBirth: 'Twin', + weightAtBirth: '3.1' + } + + test.beforeAll(async () => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration( + token, + undefined, + undefined, + 'HEALTH_FACILITY' + ) + declaration = res.declaration + eventId = res.eventId + trackingId = res.trackingId + }) + + test.describe.serial('10.1 Record correction by someone else', async () => { + let page: Page + let childBirthLocationName: string | undefined + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test.afterAll(async () => { + await page.close() + }) + + const nationalId = faker.string.numeric(10) + + const name = { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + } + + const relationship = 'Niece' + const reason = faker.lorem.sentence(8) + + test('10.0.0 Navigate to record correction', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + await ensureAssigned(page) + await selectAction(page, 'Correct record') + }) + + test('10.1.0 Correction details', async () => { + await expect(page.locator('#requester____type_error')).not.toBeVisible() + await expect(page.locator('#reason____option_error')).not.toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.locator('#requester____type_error')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + await expect(page.locator('#reason____option_error')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + + await page.locator('#requester____type').click() + await page.getByText('Someone else', { exact: true }).click() + + await page.locator('#reason____option').click() + await page.getByText('Other', { exact: true }).click() + + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.locator('#requester____type_error')).not.toBeVisible() + await expect(page.locator('#reason____option_error')).not.toBeVisible() + await expect(page.locator('#requester____idType_error')).toBeVisible() + await expect(page.locator('#firstname_error')).toBeVisible() + await expect(page.locator('#surname_error')).toBeVisible() + await expect( + page.locator('#requester____relationship_error') + ).toBeVisible() + await expect(page.locator('#reason____other_error')).toBeVisible() + + await page.locator('#requester____idType').click() + await page.getByText('National ID', { exact: true }).click() + await page.locator('#requester____nid').fill(nationalId) + + await page.getByTestId('text__firstname').fill(name.firstname) + await page.getByTestId('text__surname').fill(name.surname) + + await page.locator('#requester____relationship').fill(relationship) + + await page.locator('#reason____other').fill(reason) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.1 Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + + /* + * Expected result: should navigate to 'Upload supporting documents' -page + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/onboarding/documents` + ) + }) + + test('10.1.2 Upload supporting documents', async () => { + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await page.getByTestId('select__documents____supportingDocs').click() + await page.getByText(sectionTitle, { exact: true }).click() + await uploadImage(page, page.getByRole('button', { name: 'Upload' })) + } + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + const fee = faker.number.int({ min: 1, max: 1000 }) + + test('10.1.3 Fees', async () => { + await expectInUrl( + page, + `/events/request-correction/${eventId}/onboarding/fees` + ) + + // Clicking continue without filling required fields should cause validation errors + await page.getByRole('button', { name: 'Continue' }).click() + await expect(page.locator('#fees____amount_error')).toBeVisible() + + await page.locator('#fees____amount').fill(fee.toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + }) + + test.describe('10.1.4 Correction made on child details', async () => { + test('10.1.4.1 Change name', async () => { + await page.getByTestId('change-button-child.name').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's family name + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____name` + ) + + await page + .getByTestId('text__firstname') + .fill(updatedChildDetails.firstNames) + + await page + .getByTestId('text__surname') + .fill(updatedChildDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + await page.getByTestId('row-value-child.name').getByRole('deletion') + ).toHaveText( + `${declaration['child.name'].firstname} ${declaration['child.name'].surname}` + ) + + await expect( + page + .getByTestId('row-value-child.name') + .getByText( + `${updatedChildDetails.firstNames} ${updatedChildDetails.familyName}` + ) + ).toBeVisible() + }) + + test('10.1.4.2 Change gender', async () => { + await page.getByTestId('change-button-child.gender').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's gender + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____gender` + ) + + await page.getByTestId('select__child____gender').locator('svg').click() + await page.getByText('Male', { exact: true }).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.gender').getByRole('deletion') + ).toHaveText(declaration['child.gender'], { ignoreCase: true }) + + await expect( + page + .getByTestId('row-value-child.gender') + .getByText(updatedChildDetails.gender) + ).toBeVisible() + }) + + test('10.1.4.3 Change date of birth', async () => { + await page.getByTestId('change-button-child.dob').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's date of birth + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____dob` + ) + + const birthDay = updatedChildDetails.birthDate.split('-') + + await page.getByPlaceholder('dd').fill(birthDay[2]) + await page.getByPlaceholder('mm').fill(birthDay[1]) + await page.getByPlaceholder('yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.dob').getByRole('deletion') + ).toHaveText(formatDateTo_dMMMMyyyy(declaration['child.dob'])) + + await expect( + page + .getByTestId('row-value-child.dob') + .getByText(formatDateTo_dMMMMyyyy(updatedChildDetails.birthDate)) + ).toBeVisible() + }) + + test('10.1.4.4 Change place of delivery', async () => { + await page.getByTestId('change-button-child.placeOfBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's place of birth + */ + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____placeOfBirth` + ) + + await page + .getByTestId('child____birthLocation') + .fill(updatedChildDetails.birthLocation.slice(0, 2)) + await page.getByText(updatedChildDetails.birthLocation).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place of birth with strikethrough + * - show updated place of birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + childBirthLocationName = await getLocationNameFromFhirId( + declaration['child.birthLocation']! + ) + expect(childBirthLocationName).toBeDefined() + + await expect( + page + .getByTestId('row-value-child.birthLocation') + .getByRole('deletion') + .getByText(childBirthLocationName!) + ).toBeVisible() + + await expect( + page + .getByTestId('row-value-child.birthLocation') + .getByText(updatedChildDetails.birthLocation) + ).toBeVisible() + }) + + test('10.1.4.5 Change attendant at birth', async () => { + await page.getByTestId('change-button-child.attendantAtBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's Attendant at birth + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____attendantAtBirth` + ) + + await page.getByTestId('select__child____attendantAtBirth').click() + await page.getByText(updatedChildDetails.attendantAtBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous Attendant at birth with strikethrough + * - show updated Attendant at birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page + .getByTestId('row-value-child.attendantAtBirth') + .getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .getByTestId('row-value-child.attendantAtBirth') + .getByText(updatedChildDetails.attendantAtBirth) + ).toBeVisible() + }) + + test('10.1.4.6 Change type of birth', async () => { + await page.getByTestId('change-button-child.birthType').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's type of birth + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____birthType` + ) + + await page.getByTestId('select__child____birthType').click() + await page.getByText(updatedChildDetails.typeOfBirth).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous type of birth with strikethrough + * - show updated type of birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.birthType').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .getByTestId('row-value-child.birthType') + .getByText(updatedChildDetails.typeOfBirth) + ).toBeVisible() + }) + }) + + test.describe('10.1.5 Correction summary', async () => { + test('10.1.5.1 Go back to review', async () => { + await page + .getByRole('button', { name: 'Continue', exact: true }) + .click() + + /* Expected result: should + * - navigate to correction summary + */ + await expectInUrl(page, `/events/request-correction/${eventId}/summary`) + + await page + .getByRole('button', { name: 'Back to review', exact: true }) + .click() + + /* Expected result: should + * - navigate to correction review + */ + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + }) + + test('10.1.5.2 Change weight at birth', async () => { + await page.getByTestId('change-button-child.weightAtBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's weight at birth + */ + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____weightAtBirth` + ) + + await page + .locator('#child____weightAtBirth') + .fill(updatedChildDetails.weightAtBirth) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous weight at birth with strikethrough + * - show updated weight at birth + */ + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-child.birthType').getByRole('deletion') + ).toHaveText('-') + + await expect( + page + .getByTestId('row-value-child.weightAtBirth') + .getByText(updatedChildDetails.weightAtBirth) + ).toBeVisible() + }) + + test('10.1.5.3 Validate information in correction summary page', async () => { + await page + .getByRole('button', { name: 'Continue', exact: true }) + .click() + + /* + * Expected result: should + * - navigate to correction summary + */ + await expectInUrl(page, `/events/request-correction/${eventId}/summary`) + + /* + * Expected result: should show + * - Requested by + * - Reason for request + * - Original vs correction + */ + + await expect(page.getByText('Someone else')).toBeVisible() + await expect(page.getByText('National ID')).toBeVisible() + await expect(page.getByText(nationalId)).toBeVisible() + await expect( + page.getByText(`${name.firstname} ${name.surname}`) + ).toBeVisible() + await expect(page.getByText(relationship)).toBeVisible() + await expect(page.getByText(reason)).toBeVisible() + await expect(page.getByText(`$${fee}`)).toBeVisible() + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Child's name${declaration['child.name'].firstname} ${declaration['child.name'].surname}${updatedChildDetails.firstNames} ${updatedChildDetails.familyName}` + ) + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Sex${declaration['child.gender']}${updatedChildDetails.gender}`, + { ignoreCase: true } + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Date of birth${formatDateTo_dMMMMyyyy(declaration['child.dob'])}${formatDateTo_dMMMMyyyy(updatedChildDetails.birthDate)}` + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Location of birth${await getLocationNameFromFhirId(declaration['child.birthLocation']!)}` + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText(`${updatedChildDetails.birthLocation}`) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText( + `Attendant at birth-${updatedChildDetails.attendantAtBirth}` + ) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText(`Type of birth-${updatedChildDetails.typeOfBirth}`) + + await expect( + page.locator('#listTable-corrections-table-child') + ).toContainText(`Weight at birth-${updatedChildDetails.weightAtBirth}`) + + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should be navigated to event overview + */ + await expectInUrl(page, `/events/overview/${eventId}`) + + /* + * Expected result: should + * - be navigated to Sent for approval workqueue + * - include the declaration in this tab + */ + await page.getByTestId('navigation_workqueue_sent-for-approval').click() + + await expect( + page.getByRole('button', { name: formatV2ChildName(declaration) }) + ).toBeVisible({ timeout: 30000 }) + }) + }) + + test.describe('10.1.6 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('10.1.6.1 Record audit by local registrar', async () => { + if (!trackingId) { + throw new Error('Tracking ID is required') + } + + await type(page, '#searchText', trackingId) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('10.1.6.2 Correction review', async () => { + await selectAction(page, 'Review') + + await expect(page.getByText('Requester' + 'Someone else')).toBeVisible() + await expect( + page + .locator('#listTable-undefined') + .getByText('Type of ID' + 'National ID') + ).toBeVisible() + + await expect(page.getByText('ID number' + nationalId)).toBeVisible() + await expect( + page.getByText('Name' + `${name.firstname} ${name.surname}`) + ).toBeVisible() + + await expect( + page.getByText('Relationship to child' + relationship) + ).toBeVisible() + + await expect( + page.getByText('Reason for correction' + 'Other') + ).toBeVisible() + + await expect(page.getByText('Specify reason' + reason)).toBeVisible() + + await expect(page.getByText('Fee total' + '$' + fee)).toBeVisible() + }) + + test('10.1.6.3 Approve correction', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + await expectInUrl(page, `/events/overview/${eventId}`) + }) + test.describe('10.1.6.4 Validate history in record audit', async () => { + test('10.1.6.4.1 Validate entries in record audit', async () => { + if (!trackingId) { + throw new Error('Tracking ID is required') + } + + await type(page, '#searchText', trackingId) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { + name: formatV2ChildName({ + 'child.name': { + firstname: updatedChildDetails.firstNames, + surname: updatedChildDetails.familyName + } + }) + }) + .click() + + await ensureAssigned(page) + }) + + test('10.1.6.4.2 Validate correction requested modal', async () => { + await page.getByRole('button', { name: 'Next page' }).click() + + await page + .getByRole('button', { name: 'Correction requested', exact: true }) + .click() + + await expect( + page.getByText('Requester' + 'Someone else') + ).toBeVisible() + await expect( + page + .locator('#listTable-undefined') + .getByText('Type of ID' + 'National ID') + ).toBeVisible() + + await expect(page.getByText('ID number' + nationalId)).toBeVisible() + await expect( + page.getByText('Name' + `${name.firstname} ${name.surname}`) + ).toBeVisible() + + await expect( + page.getByText('Relationship to child' + relationship) + ).toBeVisible() + + await expect( + page.getByText('Reason for correction' + 'Other') + ).toBeVisible() + + await expect(page.getByText('Specify reason' + reason)).toBeVisible() + + await expect(page.getByText('Fee total' + '$' + fee)).toBeVisible() + + await expect( + page + .locator('#listTable-corrections-table-child') + .getByText( + "Child's name" + + `${getMixedPath(declaration, 'child.name.firstname')} ${getMixedPath(declaration, 'child.name.surname')}` + + formatName(updatedChildDetails) + ) + ).toBeVisible() + + await expect(page.getByText('Type of birth-Twin')).toBeVisible() + + await page.locator('#close-btn').click() + }) + + test('10.1.6.4.3 Validate correction approved modal', async () => { + await page + .getByRole('button', { name: 'Correction approved', exact: true }) + .click() + + await page.locator('#close-btn').click() + }) + }) + }) + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-2.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-2.spec.ts new file mode 100644 index 0000000000..527fa56c01 --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-2.spec.ts @@ -0,0 +1,397 @@ +import { expect, test, type Page } from '@playwright/test' +import { + formatDateTo_dMMMMyyyy, + formatName, + getToken, + loginToV2, + uploadImage +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration-with-mother-father' +import { ensureAssigned, expectInUrl, selectAction, type } from '../../v2-utils' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../v2-print-certificate/birth/helpers' +import { formatV2ChildName } from '../v2-birth/helpers' + +test.describe.serial('Correct record - 2', () => { + let declaration: Declaration + let trackingId: string | undefined + let eventId: string + let page: Page + + const fatherDetails = { + 'father.detailsNotAvailable': false, + 'father.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'father.dob': '1995-09-12', + 'father.nationality': 'FAR', + 'father.idType': 'NATIONAL_ID', + 'father.nid': faker.string.numeric(10), + 'father.addressSameAs': 'YES' + } + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + // Create declaration with father details available + const res = await createDeclaration( + token, + fatherDetails, + undefined, + 'HEALTH_FACILITY' + ) + declaration = res.declaration + trackingId = res.trackingId + eventId = res.eventId + page = await browser.newPage() + }) + + test('2.1 Certificate preview', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue', exact: true }).click() + await page.getByRole('button', { name: 'Verified', exact: true }).click() + await page.getByRole('button', { name: 'Continue', exact: true }).click() + + await page.getByRole('button', { name: 'No, make correction' }).click() + }) + + test('2.2 Select requester and reason', async () => { + await page.locator('#requester____type').click() + await page.getByText('Father', { exact: true }).click() + + await page.locator('#reason____option').click() + await page + .getByText('Informant provided incorrect information (Material error)', { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Continue', exact: true }).click() + }) + + const fee = faker.number.int({ min: 1, max: 1000 }).toString() + + test('2.3 Fill correction form', async () => { + await expect(page.getByText('Type of ID')).toBeVisible() + await expect(page.getByText('National ID')).toBeVisible() + + await expect(page.getByText('ID Number')).toBeVisible() + await expect(page.getByText(fatherDetails['father.nid'])).toBeVisible() + + await expect(page.getByText("Father's name")).toBeVisible() + await expect( + page.getByText( + `${fatherDetails['father.name'].firstname} ${fatherDetails['father.name'].surname}` + ) + ).toBeVisible() + + await expect(page.getByText('Date of birth')).toBeVisible() + await expect( + page.getByText(formatDateTo_dMMMMyyyy(fatherDetails['father.dob'])) + ).toBeVisible() + + await expect(page.getByText('Nationality')).toBeVisible() + await expect(page.getByText('Farajaland')).toBeVisible() + + await page.getByRole('button', { name: 'Identity does not match' }).click() + + await expect(page.getByText('Correct without proof of ID?')).toBeVisible() + await expect( + page.getByText( + 'Please be aware that if you proceed, you will be responsible for making a change to this record without the necessary proof of identification' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await page.getByText('Select...').click() + await page.getByText('Affidavit', { exact: true }).click() + await uploadImage( + page, + page.locator('button[name="documents____supportingDocs"]') + ) + + await page.getByRole('button', { name: 'Continue' }).click() + await page.locator('#fees____amount').fill(fee) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + const updatedInformantDetails = { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName(), + brn: faker.string.numeric(10), + age: faker.number.int({ min: 1, max: 100 }).toString(), + email: faker.internet.email() + } + + test.describe('2.4 Make correction', async () => { + test('2.4.1 Change informant details', async () => { + await page.getByTestId('change-button-informant.relation').click() + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/informant?from=review#informant____relation` + ) + + await page.locator('#informant____relation').click() + await page.getByText('Brother', { exact: true }).click() + + await page.locator('#firstname').fill(updatedInformantDetails.firstNames) + await page.locator('#surname').fill(updatedInformantDetails.familyName) + await page.getByLabel('Exact date of birth unknown').check() + await page.locator('#informant____age').fill(updatedInformantDetails.age) + + await page + .locator('#informant____email') + .fill(updatedInformantDetails.email) + + await page.locator('#informant____idType').click() + await page.getByText('Birth Registration Number', { exact: true }).click() + + await page.locator('#informant____brn').fill(updatedInformantDetails.brn) + + await page.getByRole('button', { name: 'Back to review' }).click() + + await expectInUrl(page, `/events/request-correction/${eventId}/review`) + + await expect( + page.getByTestId('row-value-informant.relation').getByRole('deletion') + ).toHaveText('Mother') + + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText('Brother') + }) + + test('2.4.2 Change place of delivery', async () => { + await page.getByTestId('change-button-child.placeOfBirth').click() + + await expectInUrl( + page, + `/events/request-correction/${eventId}/pages/child?from=review#child____placeOfBirth` + ) + + await page.locator('#child____placeOfBirth').click() + await page + .getByText('Residential address', { + exact: true + }) + .click() + + await page + .locator( + '#child____birthLocation____privateHome-form-input #country-form-input input' + ) + .fill('Far') + + await page + .locator( + '#child____birthLocation____privateHome-form-input #country-form-input' + ) + .getByText('Farajaland', { exact: true }) + .click() + + await page.getByTestId('text__town').fill(faker.location.city()) + await page.getByTestId('text__street').fill(faker.location.street()) + + await page.getByRole('button', { name: 'Back to review' }).click() + }) + }) + + test('2.7 Correction summary', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.getByText('Requester' + 'Father')).toBeVisible() + await expect( + page.getByText( + 'Reason for correction' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await expect( + page.getByText( + 'Place of delivery' + 'Health Institution' + 'Residential address' + ) + ).toBeVisible() + + await expect( + page.getByText('Relationship to child' + 'Mother' + 'Brother') + ).toBeVisible() + + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + await page.getByRole('button', { name: 'Confirm' }).click() + + await expectInUrl(page, `/events/overview/${eventId}`) + }) + + test.describe('2.8 Correction Review', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('2.8.1 Record audit by local registrar', async () => { + if (!trackingId) { + throw new Error('Tracking ID is required') + } + + await type(page, '#searchText', trackingId) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('2.8.2 Correction review page', async () => { + await selectAction(page, 'Review') + await expect(page.getByText('Requester' + 'Father')).toBeVisible() + await expect( + page.getByText( + 'Reason for correction' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await expect(page.getByText('Fee total' + '$' + fee)).toBeVisible() + + await expect( + page + .locator('#listTable-corrections-table-informant') + .getByText('Relationship to child' + 'Mother' + 'Brother') + ).toBeVisible() + + await expect( + page.locator('#listTable-corrections-table-informant').getByText( + "Informant's name" + + '-' + + formatName({ + firstNames: updatedInformantDetails.firstNames, + familyName: updatedInformantDetails.familyName + }) + ) + ).toBeVisible() + + await expect( + page.getByText('Exact date of birth unknown' + '-' + 'Yes') + ).not.toBeVisible() + + await expect( + page + .locator('#listTable-corrections-table-informant') + .getByText('Age of informant' + '-' + updatedInformantDetails.age) + ).toBeVisible() + + await expect( + page.getByRole('row', { name: 'Birth Registration Number' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-corrections-table-informant') + .getByText('ID Number' + '-' + updatedInformantDetails.brn) + ).toBeVisible() + + await expect( + page.getByRole('row', { + name: `Email mothers@email.com ${updatedInformantDetails.email}` + }) + ).toBeVisible() + }) + + test('2.8.3 Reject correction', async () => { + await page.getByRole('button', { name: 'Reject', exact: true }).click() + await expect( + page.getByRole('button', { name: 'Confirm', exact: true }) + ).toBeDisabled() + + await page.locator('#reject-correction-reason').fill('No legal proof') + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + await expectInUrl(page, `/events/overview/${eventId}`) + }) + + test.describe('2.8.4 Validate history in record audit', async () => { + test('2.8.4.1 Navigate to record audit', async () => { + if (!trackingId) { + throw new Error('Tracking ID is required') + } + + await type(page, '#searchText', trackingId) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + await ensureAssigned(page) + }) + + test('2.8.4.2 Validate correction requested modal', async () => { + await page + .getByRole('button', { name: 'Correction requested', exact: true }) + .click() + + await expect(page.getByText('Requester' + 'Father')).toBeVisible() + + await expect( + page.getByText( + 'Reason for correction' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await expect(page.getByText('Fee total' + '$' + fee)).toBeVisible() + + await expect( + page.getByText( + 'Place of delivery' + 'Health Institution' + 'Residential address' + ) + ).toBeVisible() + + await expect( + page.getByText('Relationship to child' + 'Mother' + 'Brother') + ).toBeVisible() + + await expect( + page.getByText( + "Informant's name" + '-' + formatName(updatedInformantDetails) + ) + ).toBeVisible() + + await page.locator('#close-btn').click() + await page.getByRole('button', { name: 'Next page' }).click() + }) + + test('2.8.4.3 Validate correction rejected modal', async () => { + await page + .getByRole('button', { name: 'Correction rejected', exact: true }) + .click() + + await expect(page.getByText('Reason' + 'No legal proof')).toBeVisible() + + await page.locator('#close-btn').click() + }) + }) + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-3.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-3.spec.ts new file mode 100644 index 0000000000..360422c963 --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-3.spec.ts @@ -0,0 +1,1150 @@ +import { expect, Locator, test, type Page } from '@playwright/test' +import { + auditRecord, + formatDateTo_dMMMMyyyy, + getToken, + goBackToReview, + loginToV2, + uploadImage +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + CREDENTIALS, + SAFE_INPUT_CHANGE_TIMEOUT_MS, + SAFE_OUTBOX_TIMEOUT_MS +} from '../../constants' +import { random } from 'lodash' +import { + createDeclaration as createDeclarationV2, + Declaration as DeclarationV2 +} from '../v2-test-data/birth-declaration-with-mother-father' +import { format, subDays, subYears } from 'date-fns' +import { formatV2ChildName } from '../v2-birth/helpers' +import { IdType } from '@countryconfig/form/v2/person' +import { + ensureAssigned, + ensureOutboxIsEmpty, + expectInUrl +} from '../../v2-utils' + +test.describe.serial(' Correct record - 3', () => { + let declaration: DeclarationV2 + let trackingId: string + let eventId: string + let registrationNumber: string + let page: Page + + const updatedMotherDetails = { + firstNames: faker.person.firstName('female'), + familyName: faker.person.lastName('female'), + age: random(20, 45), + email: faker.internet.email(), + nationality: 'Ethiopia', + id: '9241628813', + idType: IdType.PASSPORT, + passport: '1911901024', + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Widowed', + educationLevel: 'Primary' + } + const updatedChildDetails = { + placeOfBirth: 'Other', + birthLocation: { + country: 'Farajaland', + province: 'Pualula', + district: 'Ienge', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + } + } + const correctionFee = faker.number.int({ min: 1, max: 1000 }).toString() + + const visible = async ( + _page: Page | Locator = page, + col1: string, + col2?: string, + col3?: string + ) => { + await expect(_page.getByText(col1, { exact: true })).toBeVisible() + col2 && (await expect(_page.getByText(col2, { exact: true })).toBeVisible()) + col3 && (await expect(_page.getByText(col3, { exact: true })).toBeVisible()) + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.0 Shortcut declaration', async () => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + const res = await createDeclarationV2( + token, + { + 'child.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName() + }, + 'child.gender': 'male', + 'child.dob': format(subDays(new Date(), 360), 'yyyy-MM-dd'), + 'child.placeOfBirth': 'HEALTH_FACILITY', + 'child.attendantAtBirth': 'PHYSICIAN', + 'child.birthType': 'SINGLE', + 'child.weightAtBirth': 3, + + 'informant.relation': 'MOTHER', + 'informant.phoneNo': '0911725897', + + 'mother.name': { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + 'mother.dob': format(subYears(new Date(), 30), 'yyyy-MM-dd'), + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.maritalStatus': 'SINGLE', + 'mother.educationalAttainment': 'NO_SCHOOLING', + 'mother.occupation': 'Housewife', + 'mother.previousBirths': 0, + 'father.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + 'father.detailsNotAvailable': false, + 'father.dob': format(subYears(new Date(), 30), 'yyyy-MM-dd'), + 'father.idType': 'NATIONAL_ID', + 'father.nid': faker.string.numeric(10), + 'father.nationality': 'FAR', + 'father.maritalStatus': 'SINGLE', + 'father.educationalAttainment': 'NONE', + 'father.occupation': 'Unemployed', + 'father.addressSameAs': 'YES' + }, + 'REGISTER', + 'HEALTH_FACILITY' + ) + + declaration = res.declaration + trackingId = res.trackingId! + registrationNumber = res.registrationNumber! + eventId = res.eventId + + expect(trackingId).toBeDefined() + expect(declaration).toBeDefined() + }) + + test.describe('3.1 Print > Event overview', async () => { + test('3.1.1 Print', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await auditRecord({ + page, + name: `${formatV2ChildName(declaration)}`, + trackingId + }) + await page.getByText(formatV2ChildName(declaration)).click() + await ensureAssigned(page) + + await page.getByRole('button', { name: 'Action' }).click() + await page.locator('#action-dropdownMenu').getByText('Print').click() + + await page + .locator('#certificateTemplateId') + .getByText('Birth Certificate') + await page.locator('#collector____requesterId').click() + await page + .locator('#collector____requesterId') + .getByText('Print and issue to Informant (Mother)', { exact: true }) + .click() + + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + + // Wait for PDF the load and the page to be redirected to the overview page + await page.waitForURL(`**/events/overview/${eventId}`) + await expectInUrl(page, `/events/overview/${eventId}`) + }) + + test('3.1.2 Record audit', async () => { + await ensureAssigned(page) + await page.getByRole('button', { name: 'Action', exact: true }).click() + + /* + * Expected result: should show correct record button in action menu + */ + await expect( + await page.getByText('Correct record', { exact: true }) + ).toBeVisible() + + await page.getByText('Correct record', { exact: true }).click() + }) + }) + + test('3.2 Correction requester: child', async () => { + await page.locator('#requester____type').click() + await page.getByText('Informant (Mother)', { exact: true }).click() + + await page.locator('#reason____option').click() + await page + .getByText('Informant provided incorrect information (Material error)', { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Continue', exact: true }).click() + }) + + test('3.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * First Name + * Last Name + * Date of Birth + */ + await expect(page.getByText('Type of ID')).toBeVisible() + await expect(page.getByText('National ID')).toBeVisible() + + await expect(page.getByText('ID Number')).toBeVisible() + await expect(page.getByText(declaration['mother.nid'])).toBeVisible() + + await expect(page.getByText("Mother's name")).toBeVisible() + await expect( + page.getByText( + `${declaration['mother.name'].firstname} ${declaration['mother.name'].surname}` + ) + ).toBeVisible() + + await expect(page.getByText('Date of birth')).toBeVisible() + await expect( + page.getByText(formatDateTo_dMMMMyyyy(declaration['mother.dob'])) + ).toBeVisible() + + await expect(page.getByText('Nationality')).toBeVisible() + await expect(page.getByText('Farajaland')).toBeVisible() + + await page.getByRole('button', { name: 'Identity does not match' }).click() + + await expect(page.getByText('Correct without proof of ID?')).toBeVisible() + await expect( + page.getByText( + 'Please be aware that if you proceed, you will be responsible for making a change to this record without the necessary proof of identification' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + + await page.getByText('Select...').click() + await page.getByText('Affidavit', { exact: true }).click() + await uploadImage( + page, + page.locator('button[name="documents____supportingDocs"]') + ) + + await page.getByRole('button', { name: 'Continue' }).click() + await page.locator('#fees____amount').fill(correctionFee) + + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('3.4 Make correction', async () => { + test.describe('3.4.1 Make correction on mother details', async () => { + test('3.4.1 Change name', async () => { + await page.getByTestId('change-button-mother.name').click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's family name + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect(page.url().includes('#mother____name')).toBeTruthy() + + await page.locator('#firstname').fill(updatedMotherDetails.firstNames) + await page.locator('#surname').fill(updatedMotherDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page.getByTestId('row-value-mother.name').getByRole('deletion') + ).toHaveText( + `${declaration['mother.name'].firstname} ${declaration['mother.name'].surname}` + ) + + await expect( + await page + .getByTestId('row-value-mother.name') + .getByText(updatedMotherDetails.firstNames) + ).toBeVisible() + await expect( + await page + .getByTestId('row-value-mother.name') + .getByText(updatedMotherDetails.familyName) + ).toBeVisible() + }) + + test('3.4.2 Change age', async () => { + await page.getByTestId('change-button-mother.dob').click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's age + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect(page.url().includes('#mother____dob')).toBeTruthy() + + await page.locator('#mother____dobUnknown').click() + await page + .locator('#mother____age') + .fill(updatedMotherDetails.age.toString()) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-mother.age') + .getByText(updatedMotherDetails.age.toString()) + ).toBeVisible() + + await expect( + await page.getByTestId('row-value-mother.age').getByRole('deletion') + ).toHaveText('-') + }) + + test('3.4.3 Change nationality', async () => { + await page.getByTestId('change-button-mother.nationality').click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's nationality + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect(page.url().includes('#mother____nationality')).toBeTruthy() + + await page.locator('#mother____nationality').click() + await page.getByText(updatedMotherDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-mother.nationality') + .getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + await page + .getByTestId('row-value-mother.nationality') + .getByText(updatedMotherDetails.nationality) + ).toBeVisible() + }) + + test('3.4.4 Change id type', async () => { + await page.getByTestId('change-button-mother.idType').click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's id type + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect(page.url().includes('#mother____idType')).toBeTruthy() + + await page.locator('#mother____idType').click() + await page.getByText(updatedMotherDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-mother.idType') + .getByRole('deletion') + ).toHaveText('National ID') + + await expect( + await page + .getByTestId('row-value-mother.idType') + .getByText(updatedMotherDetails.idType) + ).toBeVisible() + }) + + test('3.4.5 Change passport', async () => { + await expect( + await page + .getByTestId('row-value-mother.passport') + .getByText('Required') + ).toBeVisible() + + await page.getByTestId('change-button-mother.passport').click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's id + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect(page.url().includes('#mother____passport')).toBeTruthy() + + await page + .locator('#mother____passport') + .fill(updatedMotherDetails.passport) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-mother.passport') + .getByRole('deletion') + ).toHaveText('-') + + await expect( + await page + .getByTestId('row-value-mother.passport') + .getByText(updatedMotherDetails.passport) + ).toBeVisible() + }) + + test('3.4.6 Change usual place of residence', async () => { + await page.getByTestId('change-button-mother.address').click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's Usual place of resiedence + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect(page.url().includes('#mother____address')).toBeTruthy() + + await page.locator('#province').click() + await page.getByText(updatedMotherDetails.address.province).click() + + await page.locator('#district').click() + await page.getByText(updatedMotherDetails.address.district).click() + + await page.locator('#town').fill(updatedMotherDetails.address.town) + + await page + .locator('#residentialArea') + .fill(updatedMotherDetails.address.residentialArea) + + await page.locator('#street').fill(updatedMotherDetails.address.street) + + await page.locator('#number').fill(updatedMotherDetails.address.number) + + await page + .locator('#zipCode') + .fill(updatedMotherDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText('Farajaland') + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText(updatedMotherDetails.address.province) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText(updatedMotherDetails.address.district) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText(updatedMotherDetails.address.town) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText(updatedMotherDetails.address.residentialArea) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText(updatedMotherDetails.address.street) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText(updatedMotherDetails.address.number) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-mother.address') + .getByText(updatedMotherDetails.address.zipCode) + ).toBeVisible() + }) // <-- Add this closing brace for test('3.4.6 Change usual place of residence') + + test('3.4.7 Change marital status', async () => { + await page.getByTestId('change-button-mother.maritalStatus').click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's marital status + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect(page.url().includes('#mother____maritalStatus')).toBeTruthy() + + await page.locator('#mother____maritalStatus').click() + await page.getByText(updatedMotherDetails.maritalStatus).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous marital status with strikethrough + * - show updated marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-mother.maritalStatus') + .getByRole('deletion') + ).toHaveText(declaration['mother.maritalStatus'], { + ignoreCase: true + }) + + await expect( + await page + .getByTestId('row-value-mother.maritalStatus') + .getByText(updatedMotherDetails.maritalStatus) + ).toBeVisible() + }) + + test('3.4.8 Change level of education', async () => { + await page + .getByTestId('change-button-mother.educationalAttainment') + .click() + + /* + * Expected result: should + * - redirect to mother's details page + * - focus on mother's level of education + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('mother')).toBeTruthy() + expect( + page.url().includes('#mother____educationalAttainment') + ).toBeTruthy() + + await page.locator('#mother____educationalAttainment').click() + await page.getByText(updatedMotherDetails.educationLevel).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous level of education with strikethrough + * - show updated level of education + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-mother.educationalAttainment') + .getByRole('deletion') + ).toHaveText('No schooling') + + await expect( + await page + .getByTestId('row-value-mother.educationalAttainment') + .getByText(updatedMotherDetails.educationLevel) + ).toBeVisible() + }) + }) + test('3.4.2 Change place of delivery', async () => { + await page.getByTestId('change-button-child.placeOfBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on childType + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child')).toBeTruthy() + expect(page.url().includes('#child____placeOfBirth')).toBeTruthy() + + await page.locator('#child____placeOfBirth').click() + await page.getByText(updatedChildDetails.placeOfBirth).click() + + await page.getByTestId('location__province').click() + await page.getByText(updatedChildDetails.birthLocation.province).click() + + await page.getByTestId('location__district').click() + await page.getByText(updatedChildDetails.birthLocation.district).click() + + await page.locator('#town').fill(updatedChildDetails.birthLocation.town) + + await page + .locator('#residentialArea') + .fill(updatedChildDetails.birthLocation.residentialArea) + + await page + .locator('#street') + .fill(updatedChildDetails.birthLocation.street) + + await page + .locator('#number') + .fill(updatedChildDetails.birthLocation.number) + + await page + .locator('#zipCode') + .fill(updatedChildDetails.birthLocation.zipCode) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous place of birth with strikethrough + * - show updated place of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + page + .getByTestId('row-value-child.placeOfBirth') + .getByRole('deletion') + .nth(0) + ).toHaveText('Health Institution') + + /* + assertion fails + await expect( + await page.getByTestId('row-value-child.placeOfBirth').getByRole('deletion').nth(1) + ).toHaveText('Chikobo Rural Health Centre') + */ + await expect( + await page + .getByTestId('row-value-child.placeOfBirth') + .getByText(updatedChildDetails.placeOfBirth) + ).toBeVisible() + + const addressParts = [ + updatedChildDetails.birthLocation.country, + updatedChildDetails.birthLocation.province, + updatedChildDetails.birthLocation.district, + updatedChildDetails.birthLocation.town, + updatedChildDetails.birthLocation.residentialArea, + updatedChildDetails.birthLocation.street, + updatedChildDetails.birthLocation.number, + updatedChildDetails.birthLocation.zipCode + ] + + for (const part of addressParts) { + await expect( + page + .getByTestId('row-value-child.birthLocation.other') + .getByText(part) + ).toBeVisible() + } + + await page.getByRole('button', { name: 'Continue' }).click() + }) + }) + + test('3.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('summary')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Submit correction request' }) + ).toBeEnabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + await visible(page, 'Requester', 'Informant (Mother)') + await visible( + page, + 'Reason for correction', + 'Informant provided incorrect information (Material error)' + ) + await visible(page, 'Fee total', `$${correctionFee}`) + + await visible(page, 'Request correction(s)') + await visible(page, "Child's details") + + await visible( + page.locator('#listTable-corrections-table-child'), + 'Place of delivery', + 'Health Institution', + 'Other' + ) + + await expect( + page + .locator('#listTable-corrections-table-child') + .getByText('Ibombo Rural Health Centre, Ibombo, Central, Farajaland') + ).toBeVisible() + + await Promise.all( + [ + updatedChildDetails.birthLocation.country, + updatedChildDetails.birthLocation.province, + updatedChildDetails.birthLocation.district, + updatedChildDetails.birthLocation.town, + updatedChildDetails.birthLocation.residentialArea, + updatedChildDetails.birthLocation.street, + updatedChildDetails.birthLocation.number, + updatedChildDetails.birthLocation.zipCode + ].map((x) => + expect( + page + .locator('#listTable-corrections-table-child div[id^="row_"]') + .locator('> span:nth-child(3)') + .getByText(x) + ).toBeVisible() + ) + ) + + await visible( + page.locator('#listTable-corrections-table-mother'), + "Mother's details" + ) + await visible( + page.locator('#listTable-corrections-table-mother'), + "Mother's name", + `${declaration['mother.name'].firstname} ${declaration['mother.name'].surname}`, + `${updatedMotherDetails.firstNames} ${updatedMotherDetails.familyName}` + ) + + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Age of mother', + updatedMotherDetails.age.toString() + ) + + await visible( + page.locator('#listTable-corrections-table-mother').locator('#row_2'), + 'Nationality', + 'Farajaland', + updatedMotherDetails.nationality + ) + + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Type of ID', + 'National ID', + 'Passport' + ) + + await visible( + page.locator('#listTable-corrections-table-mother'), + 'ID Number', + updatedMotherDetails.passport + ) + + await visible( + page.locator('#listTable-corrections-table-mother').locator('#row_5'), + 'Usual place of residence' + ) + + await expect( + page + .locator('#listTable-corrections-table-mother') + .locator('#row_5') + .getByText('FarajalandCentralIbombo') + ).toBeVisible() + + await Promise.all( + [ + updatedMotherDetails.address.province, + updatedMotherDetails.address.district, + updatedMotherDetails.address.town, + updatedMotherDetails.address.residentialArea, + updatedMotherDetails.address.street, + updatedMotherDetails.address.number, + updatedMotherDetails.address.zipCode + ].map((x) => + expect( + page + .locator('#listTable-corrections-table-mother') + .locator('#row_5') + .getByText(x) + ).toBeVisible() + ) + ) + + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Marital Status', + 'Single', + 'Widowed' + ) + + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Level of education', + 'No schooling', + 'Primary' + ) + + /* + * Expected result: should enable the Submit correction request button + */ + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + + /* + * This is to ensure the following condition is asserted + * after the outbox has the declaration + */ + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + + await expect(await page.locator('#no-record')).toContainText( + 'No records require processing', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) + + await page.getByRole('button', { name: 'Sent for approval' }).click() + await expect( + page.getByText(`${formatV2ChildName(declaration)}`).first() + ).toBeVisible() + }) + + test.describe.serial('3.8 Correction Approval', async () => { + test.beforeAll(async ({ browser }) => { + await page.close() + + page = await browser.newPage() + + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('3.8.1 Record audit by local registrar', async () => { + await auditRecord({ + page, + name: `${formatV2ChildName(declaration)}`, + trackingId + }) + await ensureAssigned(page) + + await expect(page.getByText(formatV2ChildName(declaration))).toBeVisible() + await expect( + page.locator('#summary').getByText(registrationNumber!) + ).toBeVisible() + await expect( + page.locator('#summary').getByText('correction-requested') + ).toBeVisible() + await expect( + page.locator('#summary').getByText('Registered') + ).toBeVisible() + await expect(page.locator('#summary').getByText(trackingId)).toBeVisible() + + await page.getByRole('button', { name: 'Action' }).click() + await page.locator('#action-dropdownMenu').getByText('Review').click() + await visible(page, 'Correction request') + }) + test('3.8.2 Correction request summary screen', async () => { + // Header assertions + await visible(page, 'Requester', 'Informant (Mother)') + await visible( + page, + 'Reason for correction', + 'Informant provided incorrect information (Material error)' + ) + await visible(page, 'Fee total', `$${correctionFee}`) + + // Child's section + await visible(page, 'Correction(s)') + + const childTable = page.locator('#listTable-corrections-table-child') + await visible(childTable, "Child's details") + await visible( + childTable, + 'Place of delivery', + 'Health Institution', + 'Other' + ) + + await visible(childTable, 'Location of birth') + + await expect( + page + .locator('#listTable-corrections-table-child') + .getByText('Ibombo Rural Health Centre, Ibombo, Central, Farajaland') + ).toBeVisible() + + const childAddressLines = [ + updatedChildDetails.birthLocation.country, + updatedChildDetails.birthLocation.province, + updatedChildDetails.birthLocation.district, + updatedChildDetails.birthLocation.town, + updatedChildDetails.birthLocation.residentialArea, + updatedChildDetails.birthLocation.street, + updatedChildDetails.birthLocation.number, + updatedChildDetails.birthLocation.zipCode + ] + for (const line of childAddressLines) { + await expect( + page + .locator('#listTable-corrections-table-child div[id^="row_"]') + .locator('> span:nth-child(3)') + .getByText(line) + ).toBeVisible() + } + + // Mother's section + + await visible( + page.locator('#listTable-corrections-table-mother'), + "Mother's details" + ) + await visible( + page.locator('#listTable-corrections-table-mother'), + "Mother's name", + `${declaration['mother.name'].firstname} ${declaration['mother.name'].surname}`, + `${updatedMotherDetails.firstNames} ${updatedMotherDetails.familyName}` + ) + + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Age of mother', + updatedMotherDetails.age.toString() + ) + + await visible( + page.locator('#listTable-corrections-table-mother').locator('#row_2'), + 'Nationality', + 'Farajaland', + 'Ethiopia' + ) + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Type of ID', + 'National ID', + 'Passport' + ) + await visible( + page.locator('#listTable-corrections-table-mother'), + 'ID Number', + updatedMotherDetails.passport + ) + + await visible( + page.locator('#listTable-corrections-table-mother').locator('#row_5'), + 'Usual place of residence' + ) + + await expect( + page + .locator('#listTable-corrections-table-mother') + .locator('#row_5') + .getByText('FarajalandCentralIbombo') + ).toBeVisible() + + const motherAddressLines = [ + updatedMotherDetails.address.province, + updatedMotherDetails.address.district, + updatedMotherDetails.address.town, + updatedMotherDetails.address.residentialArea, + updatedMotherDetails.address.street, + updatedMotherDetails.address.number, + updatedMotherDetails.address.zipCode + ] + for (const line of motherAddressLines) { + await expect( + page + .locator('#listTable-corrections-table-mother') + .locator('#row_5') + .getByText(line) + ).toBeVisible() + } + + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Marital Status', + 'Single', + 'Widowed' + ) + await visible( + page.locator('#listTable-corrections-table-mother'), + 'Level of education', + 'No schooling', + 'Primary' + ) + + // Button visibility and interaction + const approveBtn = page.locator('#ApproveCorrectionBtn') + const rejectBtn = page.locator('#rejectCorrectionBtn') + + await expect(approveBtn).toBeVisible() + await expect(approveBtn).toBeEnabled() + await expect(rejectBtn).toBeVisible() + await expect(rejectBtn).toBeEnabled() + + // 📝 Add more assertions here if the page changes after approval (modal, redirect, etc.) + }) + + test('3.8.3 Approve correction', async () => { + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + /* + * Expected result: should + * - be navigated to ready to print tab + * - include the updated declaration in this tab + */ + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + await ensureOutboxIsEmpty(page) + }) + + test('3.8.4 Validate history in record audit', async () => { + await ensureAssigned(page) + await page.getByRole('button', { name: 'Next page' }).click() + + /* + * Expected result: should show in task history + * - Correction requested + * - Correction approved + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction requested' }) + ).toBeVisible() + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Correction approved' }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-4.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-4.spec.ts new file mode 100644 index 0000000000..c0e98e5b02 --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-4.spec.ts @@ -0,0 +1,1105 @@ +import { expect, Locator, test, type Page } from '@playwright/test' +import { + auditRecord, + formatDateTo_dMMMMyyyy, + getToken, + goBackToReview, + loginToV2, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + createDeclaration as createDeclarationV2, + Declaration as DeclarationV2 +} from '../v2-test-data/birth-declaration-with-mother-father' +import { format, subYears } from 'date-fns' +import { + CREDENTIALS, + SAFE_INPUT_CHANGE_TIMEOUT_MS, + SAFE_OUTBOX_TIMEOUT_MS +} from '../../constants' +import { IdType } from '@countryconfig/form/v2/person' +import { random } from 'lodash' +import { + formatV2ChildName, + REQUIRED_VALIDATION_ERROR +} from '../v2-birth/helpers' +import { ensureAssigned } from '../../v2-utils' + +test.describe.serial('Correct record - 4', () => { + let declaration: DeclarationV2 + let trackingId = '' + let eventId: string + let page: Page + + const updatedFatherDetails = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male'), + birthDate: format(subYears(new Date(), 30), 'yyyy-MM-dd'), + age: random(20, 45), + email: faker.internet.email(), + nationality: 'Ethiopia', + id: '9241628813', + idType: IdType.PASSPORT, + passport: '1911901024', + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Widowed', + educationLevel: 'Primary' + } + + const updatedChildDetails = { + placeOfBirth: 'Health Institution', + birthFacility: 'Mwenekombe Health Post', + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + + const correctionFee = faker.number.int({ min: 1, max: 1000 }).toString() + + const visible = async ( + _page: Page | Locator = page, + col1: string, + col2?: string, + col3?: string + ) => { + await expect(_page.getByText(col1, { exact: true })).toBeVisible() + col2 && (await expect(_page.getByText(col2, { exact: true })).toBeVisible()) + col3 && (await expect(_page.getByText(col3, { exact: true })).toBeVisible()) + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + const father = { + 'father.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + 'father.detailsNotAvailable': false, + 'father.dob': format(subYears(new Date(), 31), 'yyyy-MM-dd'), + 'father.idType': 'NATIONAL_ID', + 'father.nid': faker.string.numeric(10), + 'father.nationality': 'FAR', + 'father.maritalStatus': 'SINGLE', + 'father.educationalAttainment': 'NO_SCHOOLING', + 'father.occupation': 'Unemployed', + 'father.addressSameAs': 'YES' + } + + test('4.0 Shortcut declaration', async () => { + let token = await getToken( + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + const res = await createDeclarationV2( + token, + { + 'child.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName() + }, + 'child.gender': 'male', + 'child.dob': format(subYears(new Date(), 1), 'yyyy-MM-dd'), + 'child.reason': 'Late', + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + 'child.attendantAtBirth': 'PHYSICIAN', + 'child.birthType': 'SINGLE', + 'child.weightAtBirth': 3, + 'informant.relation': 'MOTHER', + 'informant.phoneNo': '0911725897', + 'mother.name': { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + 'mother.dob': format(subYears(new Date(), 29), 'yyyy-MM-dd'), + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.maritalStatus': 'SINGLE', + 'mother.educationalAttainment': 'NO_SCHOOLING', + 'mother.occupation': 'Housewife', + 'mother.previousBirths': 0, + 'mother.address': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + ...father + }, + 'REGISTER', + 'PRIVATE_HOME' + ) + expect(res).toEqual( + expect.objectContaining({ + trackingId: expect.any(String) + }) + ) + trackingId = res.trackingId! + eventId = res.eventId + token = await getToken('k.mweene', 'test') + declaration = res.declaration + }) + + test('4.1 Ready to correct record > record audit', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + await ensureAssigned(page) + + await page.getByRole('button', { name: 'Action', exact: true }).click() + + /* + * Expected result: should show correct record button in action menu + */ + await expect( + page.getByText('Correct record', { exact: true }) + ).toBeVisible() + + await page.getByText('Correct record', { exact: true }).click() + }) + + test('4.2 Correction requester: legal guardian', async () => { + await page.locator('#requester____type').click() + await page.getByText('Legal Guardian', { exact: true }).click() + await page.locator('#reason____option').click() + await page + .getByText('Informant provided incorrect information (Material error)', { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.3 Verify identity', async () => { + /* + * Expected result: should Confirm + * nothing + */ + + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('4.4 Upload supporting documents', async () => { + /* + * Expected result: should + * - navigate to supporting document + * - continue button is disabled + */ + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('onboarding/documents')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeEnabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + /* + * Expected result: should enable the continue button + */ + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('4.5 Correction fee', async () => { + await page.locator('#fees____amount').fill(correctionFee) + + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should navigate to review page + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test.describe('4.4 Make correction', async () => { + test('Mark father details as not available to ensure data persists', async () => { + await page.getByTestId('change-button-father.name').click() + await page.getByLabel("Father's details are not available").check() + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByTestId('row-value-father.reason')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeDisabled() + + await page.getByTestId('change-button-father.detailsNotAvailable').click() + await page.getByLabel("Father's details are not available").uncheck() + + await expect(page.locator('#firstname')).toHaveValue( + father['father.name'].firstname + ) + + await page.getByRole('button', { name: 'Back to review' }).click() + }) + + test.describe('4.4.1 Make correction on father details page', async () => { + test('4.4.1.1 Change name', async () => { + await page.getByTestId('change-button-father.name').click() + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's family name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect(page.url().includes('#father____name')).toBeTruthy() + + await page.locator('#firstname').fill(updatedFatherDetails.firstNames) + await page.locator('#surname').fill(updatedFatherDetails.familyName) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous name with strikethrough + * - show updated name + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page.getByTestId('row-value-father.name').getByRole('deletion') + ).toHaveText( + `${declaration['father.name']?.firstname} ${declaration['father.name']?.surname}` + ) + + await expect( + await page + .getByTestId('row-value-father.name') + .getByText( + `${updatedFatherDetails.firstNames} ${updatedFatherDetails.familyName}` + ) + ).toBeVisible() + }) + + test('4.4.1.2 Change date of birth', async () => { + await page.getByTestId('change-button-father.dob').click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's date of birth + */ + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect(page.url().includes('#father____dob')).toBeTruthy() + + const birthDay = updatedFatherDetails.birthDate.split('-') + + await page.getByTestId('father____dob-dd').fill(birthDay[2]) + await page.getByTestId('father____dob-mm').fill(birthDay[1]) + await page.getByTestId('father____dob-yyyy').fill(birthDay[0]) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous gender with strikethrough + * - show updated gender + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page.getByTestId('row-value-father.dob').getByRole('deletion') + ).toHaveText(formatDateTo_dMMMMyyyy(declaration['father.dob']!)) + + await expect( + await page + .getByTestId('row-value-father.dob') + .getByText(formatDateTo_dMMMMyyyy(updatedFatherDetails.birthDate)) + ).toBeVisible() + }) + + test('4.4.1.3 Change nationality', async () => { + await page.getByTestId('change-button-father.nationality').click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect(page.url().includes('#father____nationality')).toBeTruthy() + + await page.locator('#father____nationality').click() + await page.getByText(updatedFatherDetails.nationality).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous nationality with strikethrough + * - show updated nationality + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-father.nationality') + .getByRole('deletion') + ).toHaveText('Farajaland') + + await expect( + await page + .getByTestId('row-value-father.nationality') + .getByText(updatedFatherDetails.nationality) + ).toBeVisible() + }) + + test('4.4.1.4 Change id type', async () => { + await page.getByTestId('change-button-father.idType').click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect(page.url().includes('#father____idType')).toBeTruthy() + + await page.locator('#father____idType').click() + await page.getByText(updatedFatherDetails.idType).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id type with strikethrough + * - show updated id type + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-father.idType') + .getByRole('deletion') + ).toHaveText('National ID') + + await expect( + await page + .getByTestId('row-value-father.idType') + .getByText(updatedFatherDetails.idType) + ).toBeVisible() + }) + + test('4.4.1.5 Change id', async () => { + await page.getByTestId('change-button-father.passport').click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect(page.url().includes('#father____passport')).toBeTruthy() + + await page + .locator('#father____passport') + .fill(updatedFatherDetails.passport) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous id with strikethrough + * - show updated id + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-father.passport') + .getByText(updatedFatherDetails.passport) + ).toBeVisible() + }) + + test('4.4.1.6 Change usual place of residence', async () => { + await page.getByTestId('change-button-father.addressSameAs').click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect(page.url().includes('#father____addressSameAs')).toBeTruthy() + + await page + .locator('#father____addressSameAs-form-input') + .getByLabel('No') + .click() + + await page + .locator('#father____address-form-input') + .locator('#province') + .click() + await page + .locator('#father____address-form-input') + .getByText(updatedFatherDetails.address.province) + .click() + + await page + .locator('#father____address-form-input') + .locator('#district') + .click() + await page + .locator('#father____address-form-input') + .getByText(updatedFatherDetails.address.district) + .click() + + await page + .locator('#father____address-form-input') + .locator('#town') + .fill(updatedFatherDetails.address.town) + + await page + .locator('#father____address-form-input') + .locator('#residentialArea') + .fill(updatedFatherDetails.address.residentialArea) + + await page + .locator('#father____address-form-input') + .locator('#street') + .fill(updatedFatherDetails.address.street) + + await page + .locator('#father____address-form-input') + .locator('#number') + .fill(updatedFatherDetails.address.number) + + await page + .locator('#father____address-form-input') + .locator('#zipCode') + .fill(updatedFatherDetails.address.zipCode) + + await goBackToReview(page) + + /* + * Expected result: should + * - redirect to review page + * - show previous Usual place of resiedence with strikethrough + * - show updated Usual place of resiedence + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.country) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.province) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.district) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.town) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.residentialArea) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.street) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.number) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-father.address') + .getByText(updatedFatherDetails.address.zipCode) + ).toBeVisible() + }) + + test('4.4.1.7 Change marital status', async () => { + await page.getByTestId('change-button-father.maritalStatus').click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect(page.url().includes('#father____maritalStatus')).toBeTruthy() + + await page.locator('#father____maritalStatus').click() + await page.getByText(updatedFatherDetails.maritalStatus).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous marital status with strikethrough + * - show updated marital status + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-father.maritalStatus') + .getByRole('deletion') + ).toHaveText('Single') + + await expect( + await page + .getByTestId('row-value-father.maritalStatus') + .getByText(updatedFatherDetails.maritalStatus) + ).toBeVisible() + }) + + test('4.4.1.8 Change level of education', async () => { + await page + .getByTestId('change-button-father.educationalAttainment') + .click() + + /* + * Expected result: should + * - redirect to father's details page + * - focus on father's level of education + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('father')).toBeTruthy() + expect( + await page.url().includes('#father____educationalAttainment') + ).toBeTruthy() + + await page.locator('#father____educationalAttainment').click() + await page.getByText(updatedFatherDetails.educationLevel).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous level of education with strikethrough + * - show updated level of education + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-father.educationalAttainment') + .getByRole('deletion') + ).toHaveText('No schooling') + + await expect( + await page + .getByTestId('row-value-father.educationalAttainment') + .getByText(updatedFatherDetails.educationLevel) + ).toBeVisible() + }) + }) + + test('4.4.2 Change place of birth', async () => { + await page.getByTestId('change-button-child.placeOfBirth').click() + + /* + * Expected result: should + * - redirect to child's details page + * - focus on child's placeOfBirth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('child')).toBeTruthy() + expect(page.url().includes('#child____placeOfBirth')).toBeTruthy() + + await page.locator('#child____placeOfBirth').click() + await page + .getByText(updatedChildDetails.placeOfBirth, { exact: true }) + .click() + + await page + .locator('#child____birthLocation') + .fill(updatedChildDetails.birthFacility.slice(0, 4)) + await page.getByText(updatedChildDetails.birthFacility).click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should + * - redirect to review page + * - show previous placeOfBirth with strikethrough + * - show updated placeOfBirth + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + + await expect( + await page + .getByTestId('row-value-child.placeOfBirth') + .getByRole('deletion') + ).toHaveText('Residential address') + + await expect( + await page + .getByTestId('row-value-child.placeOfBirth') + .getByText(updatedChildDetails.placeOfBirth) + ).toBeVisible() + + await expect( + await page + .getByTestId('row-value-child.birthLocation') + .getByText(updatedChildDetails.birthFacility) + ).toBeVisible() + }) + + test('4.4.3 Change child name', async () => { + await page.getByTestId('change-button-child.name').click() + + await page + .getByTestId('text__firstname') + .fill(updatedChildDetails.firstNames) + + await page + .getByTestId('text__surname') + .fill(updatedChildDetails.familyName) + + await goBackToReview(page) + await page.getByRole('button', { name: 'Continue' }).click() + }) + }) + + test('3.7 Correction summary', async () => { + /* + * Expected result: should + * - navigate to correction summary + * - Send for approval button is disabled + */ + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('summary')).toBeTruthy() + + await expect( + page.getByRole('button', { name: 'Correct record' }) + ).toBeEnabled() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + await visible(page, 'Requester', 'Legal Guardian') + await visible( + page, + 'Reason for correction', + 'Informant provided incorrect information (Material error)' + ) + await visible(page, 'Fee total', `$${correctionFee}`) + + await visible(page, 'Correction(s)') + await visible(page, "Child's details") + + await visible( + page.locator('#listTable-corrections-table-child'), + 'Place of delivery', + 'Residential address', + 'Health Institution' + ) + + await visible( + page.locator('#listTable-corrections-table-child'), + 'Location of birth' + ) + await expect( + await page + .locator('#listTable-corrections-table-child') + .getByText(updatedChildDetails.birthFacility) + ).toBeVisible() + + await visible( + page.locator('#listTable-corrections-table-father'), + "Father's details" + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + "Father's name", + `${declaration['father.name']?.firstname} ${declaration['father.name']?.surname}`, + `${updatedFatherDetails.firstNames} ${updatedFatherDetails.familyName}` + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Date of birth', + formatDateTo_dMMMMyyyy(declaration['father.dob']!), + formatDateTo_dMMMMyyyy(updatedFatherDetails.birthDate) + ) + + await visible( + page.locator('#listTable-corrections-table-father').locator('#row_2'), + 'Nationality', + 'Farajaland', + updatedFatherDetails.nationality + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Type of ID', + 'National ID', + 'Passport' + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'ID Number', + updatedFatherDetails.passport + ) + + await visible( + page.locator('#listTable-corrections-table-father').locator('#row_5'), + 'Usual place of residence' + ) + + await Promise.all( + [ + updatedFatherDetails.address.province, + updatedFatherDetails.address.district, + updatedFatherDetails.address.town, + updatedFatherDetails.address.residentialArea, + updatedFatherDetails.address.street, + updatedFatherDetails.address.number, + updatedFatherDetails.address.zipCode + ].map((x) => + expect( + page + .locator('#listTable-corrections-table-father') + .locator('#row_5') + .getByText(x) + ).toBeVisible() + ) + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Marital Status', + 'Single', + 'Widowed' + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Level of education', + 'No schooling', + 'Primary' + ) + + // await expect(page.getByText(formatV2ChildName(declaration))).toBeVisible() + + // await expect(page.getByText('Verified')).toBeVisible() + + // await expect( + // page.getByText( + // 'Informant did not provide this information (Material omission)' + // ) + // ).toBeVisible() + + // await expect(page.getByText(registrationNumber!)).toBeVisible() + + // await page.getByLabel('No').check() + + /* + * Expected result: should enable the Correct record button + */ + await page.getByRole('button', { name: 'Correct record' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to sent for approval tab + * - include the declaration in this tab + */ + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + + /* + * This is to ensure the following condition is asserted + * after the outbox has the declaration + */ + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + + await expect(await page.locator('#no-record')).toContainText( + 'No records require processing', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) + }) + + test('4.8 Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatV2ChildName({ + 'child.name': { + firstname: updatedChildDetails.firstNames, + surname: updatedChildDetails.familyName + } + }), + trackingId + }) + + await ensureAssigned(page) + + /* + * Expected result: should show in task history + * - Record corrected + */ + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) + test('4.9 Validate record corrected modal', async () => { + const correctionRequestedRow = page.locator( + '#listTable-task-history #row_7' + ) + await correctionRequestedRow.getByText('Record corrected').click() + + const date = await correctionRequestedRow.locator('span').nth(1).innerText() + + const requester = await correctionRequestedRow + .locator('span') + .nth(2) + .innerText() + + /* + * Expected result: Should show + * - Record corrected header + * - Requester & time + * - Requested by + * - Id check + * - Reason + * - Comment + * - Original vs Correction + */ + await expect( + page.getByRole('heading', { name: 'Record corrected' }) + ).toBeVisible() + + await expect(page.getByText(requester + ' — ' + date)).toBeVisible() + + await expect(page.getByText('Requester' + 'Legal guardian')).toBeVisible() + await expect( + page.getByText( + 'Reason for correction' + + 'Informant provided incorrect information (Material error)' + ) + ).toBeVisible() + + await expect(page.getByText('Supporting documents')).toBeVisible() + await expect(page.getByText('Affidavit')).toBeVisible() + await expect(page.getByText('Court Document')).toBeVisible() + await expect(page.getByText('Other', { exact: true })).toBeVisible() + + /* + * Expected result: should show + * - Original vs correction + * - Requested by + * - ID check + * - Reason for request + * - Comments + */ + await visible(page, 'Requester', 'Legal Guardian') + await visible( + page, + 'Reason for correction', + 'Informant provided incorrect information (Material error)' + ) + await visible(page, 'Fee total', `$${correctionFee}`) + + await visible(page, 'Correction(s)') + await visible(page, "Child's details") + + await visible( + page.locator('#listTable-corrections-table-child'), + 'Place of delivery', + 'Residential address', + 'Health Institution' + ) + + await visible( + page.locator('#listTable-corrections-table-child'), + 'Location of birth' + ) + await expect( + await page + .locator('#listTable-corrections-table-child') + .getByText(updatedChildDetails.birthFacility) + ).toBeVisible() + + await visible( + page.locator('#listTable-corrections-table-father'), + "Father's details" + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + "Father's name", + `${declaration['father.name']?.firstname} ${declaration['father.name']?.surname}`, + `${updatedFatherDetails.firstNames} ${updatedFatherDetails.familyName}` + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Date of birth', + formatDateTo_dMMMMyyyy(declaration['father.dob']!), + formatDateTo_dMMMMyyyy(updatedFatherDetails.birthDate) + ) + + await visible( + page.locator('#listTable-corrections-table-father').locator('#row_2'), + 'Nationality', + 'Farajaland', + updatedFatherDetails.nationality + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Type of ID', + 'National ID', + 'Passport' + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'ID Number', + updatedFatherDetails.passport + ) + + await visible( + page.locator('#listTable-corrections-table-father').locator('#row_5'), + 'Usual place of residence' + ) + + await Promise.all( + [ + updatedFatherDetails.address.province, + updatedFatherDetails.address.district, + updatedFatherDetails.address.town, + updatedFatherDetails.address.residentialArea, + updatedFatherDetails.address.street, + updatedFatherDetails.address.number, + updatedFatherDetails.address.zipCode + ].map((x) => + expect( + page + .locator('#listTable-corrections-table-father') + .locator('#row_5') + .getByText(x) + ).toBeVisible() + ) + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Marital Status', + 'Single', + 'Widowed' + ) + + await visible( + page.locator('#listTable-corrections-table-father'), + 'Level of education', + 'No schooling', + 'Primary' + ) + + await page + .getByRole('heading', { name: 'Record corrected' }) + .locator('xpath=following-sibling::*[1]') + .click() + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-change-ages.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-change-ages.spec.ts new file mode 100644 index 0000000000..94af263452 --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-change-ages.spec.ts @@ -0,0 +1,294 @@ +import { expect, test, type Page } from '@playwright/test' +import { + auditRecord, + getToken, + loginToV2, + logout, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + createDeclaration, + Declaration, + getPlaceOfBirth +} from '../v2-test-data/birth-declaration' +import { CREDENTIALS } from '../../constants' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ensureAssigned, selectAction } from '../../v2-utils' +import { getAllLocations, getLocationIdByName } from '../birth/helpers' +import { AddressType } from '@opencrvs/toolkit/events' + +test.describe.serial('Correct record - Change ages', () => { + let declaration: Declaration + let trackingId = '' + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + const motherAgeBefore = '28' + const motherAgeAfter = '29' + const informantAgeBefore = '16' + const informantAgeAfter = '22' + + test('Shortcut declaration', async () => { + let token = await getToken( + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + const payload = { + 'informant.relation': 'BROTHER', + 'informant.email': 'brothers@email.com', + 'informant.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'informant.dobUnknown': true, + 'informant.age': informantAgeBefore, + 'informant.nationality': 'FAR', + 'informant.idType': 'NATIONAL_ID', + 'informant.nid': faker.string.numeric(10), + 'father.detailsNotAvailable': true, + 'father.reason': 'Father is missing.', + 'mother.dobUnknown': true, + 'mother.age': motherAgeBefore, + ...(await getPlaceOfBirth('PRIVATE_HOME')), + 'mother.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.address': { + country: 'FAR', + province, + district, + town: null, + residentialArea: null, + street: null, + number: null, + zipCode: null, + village: null, + state: null, + district2: null, + cityOrTown: null, + addressLine1: null, + addressLine2: null, + addressLine3: null, + postcodeOrZip: null, + addressType: AddressType.DOMESTIC + }, + 'child.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'child.gender': 'female', + 'child.dob': new Date(Date.now() - 60 * 60 * 24 * 1000) + .toISOString() + .split('T')[0] + } + + const res = await createDeclaration(token, payload) + + expect(res).toEqual( + expect.objectContaining({ + trackingId: expect.any(String) + }) + ) + trackingId = res.trackingId! + token = await getToken('k.mweene', 'test') + declaration = res.declaration + }) + + test('Login as Registration Agent', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test('Ready to correct record > record audit', async () => { + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + await ensureAssigned(page) + + await page.getByRole('button', { name: 'Action', exact: true }).click() + + await expect( + page.getByText('Correct record', { exact: true }) + ).toBeVisible() + + await page.getByText('Correct record', { exact: true }).click() + }) + + test('Correction requester: legal guardian', async () => { + await page.locator('#requester____type').click() + await page.getByText('Legal Guardian', { exact: true }).click() + await page.locator('#reason____option').click() + await page + .getByText('Informant provided incorrect information (Material error)', { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('Upload supporting documents', async () => { + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('onboarding/documents')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeEnabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Correction fee', async () => { + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test('Change informant age', async () => { + await page.getByTestId('change-button-informant.age').click() + + await page.getByTestId('text__informant____age').fill(informantAgeAfter) + + await page + .getByRole('button', { name: 'Back to review', exact: true }) + .click() + + await expect( + page.getByTestId('row-value-informant.age').getByRole('deletion') + ).toHaveText(informantAgeBefore) + + await expect( + page.getByTestId('row-value-informant.age').getByText(informantAgeAfter) + ).toBeVisible() + }) + + test('Change mother age', async () => { + await page.getByTestId('change-button-mother.age').click() + + await page.getByTestId('text__mother____age').fill(motherAgeAfter) + + await page + .getByRole('button', { name: 'Back to review', exact: true }) + .click() + + await expect( + page.getByTestId('row-value-mother.age').getByRole('deletion') + ).toHaveText(motherAgeBefore) + + await expect( + page.getByTestId('row-value-mother.age').getByText(motherAgeAfter) + ).toBeVisible() + }) + + test('Correction summary', async () => { + await page.getByRole('button', { name: 'Continue', exact: true }).click() + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('summary')).toBeTruthy() + + await expect(page.getByText("Father's details")).not.toBeVisible() + await expect(page.getByText("Child's details")).not.toBeVisible() + await expect(page.getByText("Mother's details")).toBeVisible() + + await expect( + page.getByText('Age of mother' + motherAgeBefore + motherAgeAfter) + ).toBeVisible() + + await expect(page.getByText("Informant's details")).toBeVisible() + await expect( + page.getByText( + 'Age of informant' + informantAgeBefore + informantAgeAfter + ) + ).toBeVisible() + }) + + test('Submit correction request', async () => { + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + + await page.getByRole('button', { name: 'Confirm' }).click() + }) + + test('Logout', async () => { + await logout(page) + }) + + test('Login as Local Registrar', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('Find the event in the "Ready for review" workflow', async () => { + await page.getByRole('button', { name: 'Ready for review' }).click() + + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('Approve correction request', async () => { + await selectAction(page, 'Review') + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + }) + + test('View record', async () => { + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + + await ensureAssigned(page) + + await selectAction(page, 'View') + + await expect( + page.getByTestId('row-value-informant.age').getByText(informantAgeAfter) + ).toBeVisible() + + await expect( + page.getByTestId('row-value-mother.age').getByText(motherAgeAfter) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-change-father-id-number.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-change-father-id-number.spec.ts new file mode 100644 index 0000000000..bb1fe60b6a --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-change-father-id-number.spec.ts @@ -0,0 +1,254 @@ +import { expect, test, type Page } from '@playwright/test' +import { + auditRecord, + getToken, + loginToV2, + logout, + uploadImageToSection +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + createDeclaration as createDeclarationV2, + Declaration as DeclarationV2 +} from '../v2-test-data/birth-declaration-with-mother-father' +import { format, subYears } from 'date-fns' +import { CREDENTIALS } from '../../constants' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ensureAssigned, selectAction } from '../../v2-utils' + +test.describe.serial("Correct record - Change father's ID number", () => { + let declaration: DeclarationV2 + let trackingId = '' + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + const oldIdNumber = faker.string.numeric(10) + const newIdNumber = faker.string.numeric(10) + + test('Shortcut declaration', async () => { + let token = await getToken( + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + const res = await createDeclarationV2( + token, + { + 'child.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName() + }, + 'child.gender': 'male', + 'child.dob': format(subYears(new Date(), 1), 'yyyy-MM-dd'), + 'child.reason': 'Late', + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + 'child.attendantAtBirth': 'PHYSICIAN', + 'child.birthType': 'SINGLE', + 'child.weightAtBirth': 3, + 'informant.relation': 'MOTHER', + 'informant.phoneNo': '0911725897', + 'mother.name': { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + 'mother.dob': format(subYears(new Date(), 29), 'yyyy-MM-dd'), + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.maritalStatus': 'SINGLE', + 'mother.educationalAttainment': 'NO_SCHOOLING', + 'mother.occupation': 'Housewife', + 'mother.previousBirths': 0, + 'mother.address': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + + 'father.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + 'father.detailsNotAvailable': false, + 'father.dob': format(subYears(new Date(), 31), 'yyyy-MM-dd'), + 'father.idType': 'NATIONAL_ID', + 'father.nid': oldIdNumber, + 'father.nationality': 'FAR', + 'father.maritalStatus': 'SINGLE', + 'father.educationalAttainment': 'NO_SCHOOLING', + 'father.occupation': 'Unemployed', + 'father.addressSameAs': 'YES' + }, + 'REGISTER', + 'PRIVATE_HOME' + ) + expect(res).toEqual( + expect.objectContaining({ + trackingId: expect.any(String) + }) + ) + trackingId = res.trackingId! + token = await getToken('k.mweene', 'test') + declaration = res.declaration + }) + + test('Login as Registration Agent', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test('Ready to correct record > record audit', async () => { + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + await ensureAssigned(page) + + await page.getByRole('button', { name: 'Action', exact: true }).click() + + await expect( + page.getByText('Correct record', { exact: true }) + ).toBeVisible() + + await page.getByText('Correct record', { exact: true }).click() + }) + + test('Correction requester: legal guardian', async () => { + await page.locator('#requester____type').click() + await page.getByText('Legal Guardian', { exact: true }).click() + await page.locator('#reason____option').click() + await page + .getByText('Informant provided incorrect information (Material error)', { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('Upload supporting documents', async () => { + expect(page.url().includes('correction')).toBeTruthy() + + expect(page.url().includes('onboarding/documents')).toBeTruthy() + + await expect(page.getByRole('button', { name: 'Continue' })).toBeEnabled() + + const imageUploadSectionTitles = ['Affidavit', 'Court Document', 'Other'] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#corrector_form'), + sectionTitle, + buttonLocator: page.getByRole('button', { name: 'Upload' }) + }) + } + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Correction fee', async () => { + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('review')).toBeTruthy() + }) + + test('Change father id number', async () => { + await page.getByTestId('change-button-father.nid').click() + + await page.getByTestId('text__father____nid').fill(newIdNumber) + + await page + .getByRole('button', { name: 'Back to review', exact: true }) + .click() + + await expect( + page.getByTestId('row-value-father.nid').getByRole('deletion') + ).toHaveText(oldIdNumber) + + await expect( + page.getByTestId('row-value-father.nid').getByText(newIdNumber) + ).toBeVisible() + }) + + test('Correction summary', async () => { + await page.getByRole('button', { name: 'Continue', exact: true }).click() + + expect(page.url().includes('correction')).toBeTruthy() + expect(page.url().includes('summary')).toBeTruthy() + + await expect(page.getByText("Child's details")).not.toBeVisible() + await expect(page.getByText("Mother's details")).not.toBeVisible() + await expect(page.getByText("Father's details")).toBeVisible() + await expect( + page.getByText('ID Number' + oldIdNumber + newIdNumber) + ).toBeVisible() + }) + + test('Submit correction request', async () => { + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + + await page.getByRole('button', { name: 'Confirm' }).click() + }) + + test('Logout', async () => { + await logout(page) + }) + + test('Login as Local Registrar', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('Find the event in the "Ready for review" workflow', async () => { + await page.getByRole('button', { name: 'Ready for review' }).click() + + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + }) + + test('Approve correction request', async () => { + await selectAction(page, 'Review') + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + }) + + test('View record', async () => { + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + + await ensureAssigned(page) + + await selectAction(page, 'View') + + await expect( + page.getByTestId('row-value-father.nid').getByText(newIdNumber) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-correction-birth/correct-birth-record-change-informant.spec.ts b/e2e/testcases/v2-correction-birth/correct-birth-record-change-informant.spec.ts new file mode 100644 index 0000000000..1827ca035d --- /dev/null +++ b/e2e/testcases/v2-correction-birth/correct-birth-record-change-informant.spec.ts @@ -0,0 +1,359 @@ +import { expect, Locator, test, type Page } from '@playwright/test' +import { + auditRecord, + formatDateTo_dMMMMyyyy, + getToken, + loginToV2 +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { + createDeclaration as createDeclarationV2, + Declaration as DeclarationV2 +} from '../v2-test-data/birth-declaration-with-mother-father' +import { format, subYears } from 'date-fns' +import { + CREDENTIALS, + SAFE_INPUT_CHANGE_TIMEOUT_MS, + SAFE_OUTBOX_TIMEOUT_MS +} from '../../constants' +import { IdType } from '@countryconfig/form/v2/person' +import { random } from 'lodash' +import { + formatV2ChildName, + REQUIRED_VALIDATION_ERROR +} from '../v2-birth/helpers' +import { ensureAssigned } from '../../v2-utils' + +test.describe.serial('Correct record - change informant type', () => { + let declaration: DeclarationV2 + let trackingId = '' + let eventId: string + let page: Page + + const updatedFatherDetails = { + firstNames: faker.person.firstName('male'), + familyName: faker.person.lastName('male'), + birthDate: format(subYears(new Date(), 30), 'yyyy-MM-dd'), + age: random(20, 45), + email: faker.internet.email(), + nationality: 'Ethiopia', + id: '9241628813', + idType: IdType.PASSPORT, + passport: '1911901024', + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Irundu', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + zipCode: faker.location.zipCode() + }, + maritalStatus: 'Widowed', + educationLevel: 'Primary' + } + + const correctionFee = faker.number.int({ min: 1, max: 1000 }).toString() + + const visible = async ( + _page: Page | Locator = page, + col1: string, + col2?: string, + col3?: string + ) => { + await expect(_page.getByText(col1, { exact: true })).toBeVisible() + col2 && (await expect(_page.getByText(col2, { exact: true })).toBeVisible()) + col3 && (await expect(_page.getByText(col3, { exact: true })).toBeVisible()) + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Shortcut declaration', async () => { + let token = await getToken( + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + const res = await createDeclarationV2( + token, + { + 'child.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName() + }, + 'child.gender': 'male', + 'child.dob': format(subYears(new Date(), 1), 'yyyy-MM-dd'), + 'child.reason': 'Late', + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + 'child.attendantAtBirth': 'PHYSICIAN', + 'child.birthType': 'SINGLE', + 'child.weightAtBirth': 3, + 'informant.relation': 'MOTHER', + 'informant.phoneNo': '0911725897', + 'mother.name': { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + 'mother.dob': format(subYears(new Date(), 29), 'yyyy-MM-dd'), + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.maritalStatus': 'SINGLE', + 'mother.educationalAttainment': 'NO_SCHOOLING', + 'mother.occupation': 'Housewife', + 'mother.previousBirths': 0, + 'mother.address': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + } + }, + 'REGISTER', + 'PRIVATE_HOME' + ) + + trackingId = res.trackingId! + eventId = res.eventId + token = await getToken('k.mweene', 'test') + declaration = res.declaration + }) + + test('Ready to correct record > record audit', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + await ensureAssigned(page) + + await page.getByRole('button', { name: 'Action', exact: true }).click() + await page.getByText('Correct record', { exact: true }).click() + }) + + test('Correction requester: legal guardian', async () => { + await page.locator('#requester____type').click() + await page.getByText('Legal Guardian', { exact: true }).click() + await page.locator('#reason____option').click() + await page + .getByText('Informant provided incorrect information (Material error)', { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('Upload supporting documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Correction fee', async () => { + await page.locator('#fees____amount').fill(correctionFee) + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.describe('Make correction', async () => { + test('Change informant type', async () => { + await page.getByTestId('change-button-informant.relation').click() + await page.getByTestId('select__informant____relation').click() + await page.getByText('Father', { exact: true }).click() + + await page + .getByTestId('text__informant____email') + .fill(updatedFatherDetails.email) + }) + + test('Continue to father page', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Fill in father details', async () => { + await expect( + page.getByText("Same as mother's usual place of residence?") + ).toBeVisible() + + await page.locator('#firstname').fill(updatedFatherDetails.firstNames) + await page.locator('#surname').fill(updatedFatherDetails.familyName) + + const birthDay = updatedFatherDetails.birthDate.split('-') + + await page.getByTestId('father____dob-dd').fill(birthDay[2]) + await page.getByTestId('father____dob-mm').fill(birthDay[1]) + await page.getByTestId('father____dob-yyyy').fill(birthDay[0]) + + await page.locator('#father____nationality').click() + await page.getByText(updatedFatherDetails.nationality).click() + + await page.locator('#father____idType').click() + await page.getByText(updatedFatherDetails.idType).click() + + await page + .locator('#father____passport') + .fill(updatedFatherDetails.passport) + + await page + .locator('#father____addressSameAs-form-input') + .getByLabel('No') + .click() + + await page + .locator('#father____address-form-input') + .locator('#province') + .click() + await page + .locator('#father____address-form-input') + .getByText(updatedFatherDetails.address.province) + .click() + + await page + .locator('#father____address-form-input') + .locator('#district') + .click() + await page + .locator('#father____address-form-input') + .getByText(updatedFatherDetails.address.district) + .click() + + await page + .locator('#father____address-form-input') + .locator('#town') + .fill(updatedFatherDetails.address.town) + + await page + .locator('#father____address-form-input') + .locator('#residentialArea') + .fill(updatedFatherDetails.address.residentialArea) + + await page + .locator('#father____address-form-input') + .locator('#street') + .fill(updatedFatherDetails.address.street) + + await page + .locator('#father____address-form-input') + .locator('#number') + .fill(updatedFatherDetails.address.number) + + await page + .locator('#father____address-form-input') + .locator('#zipCode') + .fill(updatedFatherDetails.address.zipCode) + }) + }) + + test('Go back to review, expect to not see any validation errors', async () => { + await page.getByRole('button', { name: 'Back to review' }).click() + await expect(page.getByText(REQUIRED_VALIDATION_ERROR)).not.toBeVisible() + }) + + test('Correction summary', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page.getByRole('button', { name: 'Correct record' }) + ).toBeEnabled() + + await visible(page, 'Requester', 'Legal Guardian') + await visible( + page, + 'Reason for correction', + 'Informant provided incorrect information (Material error)' + ) + await visible(page, 'Fee total', `$${correctionFee}`) + + await visible(page, 'Correction(s)') + + await expect( + page.getByText( + `Father's name-${updatedFatherDetails.firstNames} ${updatedFatherDetails.familyName}` + ) + ).toBeVisible() + + await expect( + page.getByText( + `Date of birth-${formatDateTo_dMMMMyyyy(updatedFatherDetails.birthDate)}` + ) + ).toBeVisible() + + await expect( + page.getByText(`Nationality-${updatedFatherDetails.nationality}`) + ).toBeVisible() + + await expect(page.getByText(`Type of ID-Passport`)).toBeVisible() + + await expect( + page.getByText(`ID Number-${updatedFatherDetails.passport}`) + ).toBeVisible() + + await expect(page.getByText(`Usual place of residence`)).toBeVisible() + + await Promise.all( + [ + updatedFatherDetails.address.province, + updatedFatherDetails.address.district, + updatedFatherDetails.address.town, + updatedFatherDetails.address.residentialArea, + updatedFatherDetails.address.street, + updatedFatherDetails.address.number, + updatedFatherDetails.address.zipCode + ].map((x) => + expect( + page + .locator('#listTable-corrections-table-father') + .locator('#row_5') + .getByText(x) + ).toBeVisible() + ) + ) + + await page.getByRole('button', { name: 'Correct record' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + await page.getByRole('button', { name: 'Outbox' }).click() + + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + + await expect(await page.locator('#no-record')).toContainText( + 'No records require processing', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) + }) + + test('Validate history in record audit', async () => { + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + + await ensureAssigned(page) + + await expect( + page + .locator('#listTable-task-history') + .getByRole('button', { name: 'Record corrected' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-correction-birth/direct-correction-offline.spec.ts b/e2e/testcases/v2-correction-birth/direct-correction-offline.spec.ts new file mode 100644 index 0000000000..fe611e1aba --- /dev/null +++ b/e2e/testcases/v2-correction-birth/direct-correction-offline.spec.ts @@ -0,0 +1,198 @@ +import { expect, test, type Page } from '@playwright/test' +import { auditRecord, getToken, goBackToReview, loginToV2 } from '../../helpers' +import { faker } from '@faker-js/faker' +import { + createDeclaration as createDeclarationV2, + Declaration as DeclarationV2 +} from '../v2-test-data/birth-declaration-with-mother-father' +import { format, subYears } from 'date-fns' +import { CREDENTIALS, SAFE_OUTBOX_TIMEOUT_MS } from '../../constants' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ensureAssigned } from '../../v2-utils' + +test.describe.serial('Direct correction offline', () => { + let declaration: DeclarationV2 + let trackingId = '' + let eventId: string + let page: Page + + const updatedChildDetails = { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test('Shortcut declaration', async () => { + let token = await getToken( + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + const res = await createDeclarationV2( + token, + { + 'child.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName() + }, + 'child.gender': 'male', + 'child.dob': format(subYears(new Date(), 1), 'yyyy-MM-dd'), + 'child.reason': 'Late', + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + 'child.attendantAtBirth': 'PHYSICIAN', + 'child.birthType': 'SINGLE', + 'child.weightAtBirth': 3, + 'informant.relation': 'MOTHER', + 'informant.phoneNo': '0911725897', + 'mother.name': { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + 'mother.dob': format(subYears(new Date(), 29), 'yyyy-MM-dd'), + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.maritalStatus': 'SINGLE', + 'mother.educationalAttainment': 'NO_SCHOOLING', + 'mother.occupation': 'Housewife', + 'mother.previousBirths': 0, + 'mother.address': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + 'father.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + 'father.detailsNotAvailable': false, + 'father.dob': format(subYears(new Date(), 31), 'yyyy-MM-dd'), + 'father.idType': 'NATIONAL_ID', + 'father.nid': faker.string.numeric(10), + 'father.nationality': 'FAR', + 'father.maritalStatus': 'SINGLE', + 'father.educationalAttainment': 'NO_SCHOOLING', + 'father.occupation': 'Unemployed', + 'father.addressSameAs': 'YES' + }, + 'REGISTER', + 'PRIVATE_HOME' + ) + expect(res).toEqual( + expect.objectContaining({ + trackingId: expect.any(String) + }) + ) + trackingId = res.trackingId! + eventId = res.eventId + token = await getToken('k.mweene', 'test') + declaration = res.declaration + }) + + test('Navigate to record correction', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + await ensureAssigned(page) + + await page.getByRole('button', { name: 'Action', exact: true }).click() + + /* + * Expected result: should show correct record button in action menu + */ + await expect( + page.getByText('Correct record', { exact: true }) + ).toBeVisible() + + await page.getByText('Correct record', { exact: true }).click() + }) + + test('Add correction requester', async () => { + await page.locator('#requester____type').click() + await page.getByText('Legal Guardian', { exact: true }).click() + await page.locator('#reason____option').click() + await page + .getByText('Informant provided incorrect information (Material error)', { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('Skip uploading documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Add correction fee', async () => { + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Change child name', async () => { + await page.getByTestId('change-button-child.name').click() + + await page + .getByTestId('text__firstname') + .fill(updatedChildDetails.firstname) + + await page.getByTestId('text__surname').fill(updatedChildDetails.surname) + + await goBackToReview(page) + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Make correction while offline', async () => { + // Go offline + await page.context().setOffline(true) + + await page.getByRole('button', { name: 'Correct record' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + + // We expect to see the optimistically updated new child name instead of the old one + await expect( + page.locator('#content-name', { + hasText: formatV2ChildName({ 'child.name': updatedChildDetails }) + }) + ).toBeVisible() + + await page.getByRole('button', { name: 'Outbox' }).click() + await expect(page.locator('#wait-connection-text')).toBeVisible() + }) + + test('Go back online', async () => { + // Go back online + await page.context().setOffline(false) + + await expect(page.locator('#wait-connection-text')).not.toBeVisible() + + await expect(await page.locator('#no-record')).toContainText( + 'No records require processing', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) + }) +}) diff --git a/e2e/testcases/v2-correction-birth/image.png b/e2e/testcases/v2-correction-birth/image.png new file mode 100644 index 0000000000..60e211b616 Binary files /dev/null and b/e2e/testcases/v2-correction-birth/image.png differ diff --git a/e2e/testcases/v2-correction-birth/request-and-accept-correction-offline.spec.ts b/e2e/testcases/v2-correction-birth/request-and-accept-correction-offline.spec.ts new file mode 100644 index 0000000000..ff1158c379 --- /dev/null +++ b/e2e/testcases/v2-correction-birth/request-and-accept-correction-offline.spec.ts @@ -0,0 +1,244 @@ +import { expect, test, type Page } from '@playwright/test' +import { auditRecord, getToken, goBackToReview, loginToV2 } from '../../helpers' +import { faker } from '@faker-js/faker' +import { + createDeclaration as createDeclarationV2, + Declaration as DeclarationV2 +} from '../v2-test-data/birth-declaration-with-mother-father' +import { format, subYears } from 'date-fns' +import { CREDENTIALS, SAFE_OUTBOX_TIMEOUT_MS } from '../../constants' +import { formatV2ChildName } from '../v2-birth/helpers' +import { ensureAssigned, selectAction, type } from '../../v2-utils' + +test.describe.serial('Request and accept correction (offline)', () => { + let declaration: DeclarationV2 + let trackingId = '' + let eventId: string + let page: Page + + const updatedChildDetails = { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test('Shortcut declaration', async () => { + let token = await getToken( + CREDENTIALS.NATIONAL_REGISTRAR.USERNAME, + CREDENTIALS.NATIONAL_REGISTRAR.PASSWORD + ) + + const res = await createDeclarationV2( + token, + { + 'child.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName() + }, + 'child.gender': 'male', + 'child.dob': format(subYears(new Date(), 1), 'yyyy-MM-dd'), + 'child.reason': 'Late', + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + 'child.attendantAtBirth': 'PHYSICIAN', + 'child.birthType': 'SINGLE', + 'child.weightAtBirth': 3, + 'informant.relation': 'MOTHER', + 'informant.phoneNo': '0911725897', + 'mother.name': { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + 'mother.dob': format(subYears(new Date(), 29), 'yyyy-MM-dd'), + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.maritalStatus': 'SINGLE', + 'mother.educationalAttainment': 'NO_SCHOOLING', + 'mother.occupation': 'Housewife', + 'mother.previousBirths': 0, + 'mother.address': { + country: 'FAR', + addressType: 'DOMESTIC', + province: 'Central', + district: 'Ibombo' + }, + 'father.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + 'father.detailsNotAvailable': false, + 'father.dob': format(subYears(new Date(), 31), 'yyyy-MM-dd'), + 'father.idType': 'NATIONAL_ID', + 'father.nid': faker.string.numeric(10), + 'father.nationality': 'FAR', + 'father.maritalStatus': 'SINGLE', + 'father.educationalAttainment': 'NO_SCHOOLING', + 'father.occupation': 'Unemployed', + 'father.addressSameAs': 'YES' + }, + 'REGISTER', + 'PRIVATE_HOME' + ) + expect(res).toEqual( + expect.objectContaining({ + trackingId: expect.any(String) + }) + ) + trackingId = res.trackingId! + eventId = res.eventId + token = await getToken('k.mweene', 'test') + declaration = res.declaration + }) + + test.describe('Request correction as Registration Agent', () => { + test('Login as Registration Agent', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + }) + + test('Navigate to record correction', async () => { + await auditRecord({ + page, + name: formatV2ChildName(declaration), + trackingId + }) + await ensureAssigned(page) + + await page.getByRole('button', { name: 'Action', exact: true }).click() + + /* + * Expected result: should show correct record button in action menu + */ + await expect( + page.getByText('Correct record', { exact: true }) + ).toBeVisible() + + await page.getByText('Correct record', { exact: true }).click() + }) + + test('Add correction requester', async () => { + await page.locator('#requester____type').click() + await page.getByText('Legal Guardian', { exact: true }).click() + await page.locator('#reason____option').click() + await page + .getByText( + 'Informant provided incorrect information (Material error)', + { + exact: true + } + ) + .click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Verify identity', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + }) + + test('Skip uploading documents', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Add correction fee', async () => { + await page + .locator('#fees____amount') + .fill(faker.number.int({ min: 1, max: 1000 }).toString()) + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Change child name', async () => { + await page.getByTestId('change-button-child.name').click() + + await page + .getByTestId('text__firstname') + .fill(updatedChildDetails.firstname) + + await page.getByTestId('text__surname').fill(updatedChildDetails.surname) + + await goBackToReview(page) + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Request correction', async () => { + await page + .getByRole('button', { name: 'Submit correction request' }) + .click() + await page.getByRole('button', { name: 'Confirm' }).click() + + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + + await expect( + page.locator('#content-name', { + hasText: formatV2ChildName(declaration) + }) + ).toBeVisible() + + await page.getByRole('button', { name: 'Outbox' }).click() + await expect(await page.locator('#no-record')).toContainText( + 'No records require processing', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) + }) + }) + + test.describe('Accept correction as Local Registrar (offline)', () => { + test('Login as Local Registrar', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + }) + + test('Navigate to correction review', async () => { + await type(page, '#searchText', trackingId) + await page.locator('#searchIconButton').click() + await page + .getByRole('button', { name: formatV2ChildName(declaration) }) + .click() + + await selectAction(page, 'Review') + }) + + test('Accept correction offline', async () => { + // Go offline + await page.context().setOffline(true) + + await page.getByRole('button', { name: 'Approve', exact: true }).click() + await page.getByRole('button', { name: 'Confirm', exact: true }).click() + + expect(page.url().includes(`events/overview/${eventId}`)).toBeTruthy() + + // We expect to see the optimistically updated new child name instead of the old one + await expect( + page.locator('#content-name', { + hasText: formatV2ChildName({ 'child.name': updatedChildDetails }) + }) + ).toBeVisible() + + await page.getByRole('button', { name: 'Outbox' }).click() + await expect(page.locator('#wait-connection-text')).toBeVisible() + }) + + test('Go back online', async () => { + // Go back online + await page.context().setOffline(false) + + await expect(page.locator('#wait-connection-text')).not.toBeVisible() + + await expect(await page.locator('#no-record')).toContainText( + 'No records require processing', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) + }) + }) +}) diff --git a/e2e/testcases/v2-death/1-death-event-declaration.spec.ts b/e2e/testcases/v2-death/1-death-event-declaration.spec.ts new file mode 100644 index 0000000000..e58bcc3488 --- /dev/null +++ b/e2e/testcases/v2-death/1-death-event-declaration.spec.ts @@ -0,0 +1,555 @@ +import { expect, test, type Page } from '@playwright/test' +import { loginToV2 } from '../../helpers' +import { faker } from '@faker-js/faker' +import { ensureOutboxIsEmpty } from '../../v2-utils' +const deceased = { + name: { + firstname: faker.person.firstName('male') + } +} + +test.describe('1. Death event declaration', () => { + test.describe.serial('Fill all form sections. Save & Exit', () => { + let page: Page + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1. Navigate to the death event declaration page', async () => { + await loginToV2(page) + + await page.click('#header-new-event') + await expect(page.getByText('New Declaration')).toBeVisible() + await expect( + page.getByText('What type of event do you want to declare?') + ).toBeVisible() + }) + + test.describe('1.2. Validate event selection page', async () => { + test('1.2.1 Validate the contents of the event type page', async () => { + /* + * Expected result: should show + * - Radio buttons of the events + * - Continue button + * - Exit button + */ + await expect(page.getByLabel('Birth')).toBeVisible() + await expect(page.getByLabel('Death')).toBeVisible() + + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Exit' })).toBeVisible() + }) + + test('1.2.2 Click the "Continue" button without selecting any event', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should throw an error as below: + * "Please select the type of event" + */ + await expect( + page.getByText('Please select the type of event') + ).toBeVisible() + }) + + test('1.2.3 Select the "Death" event and click "Continue" button', async () => { + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: User should navigate to the "Introduction" page + */ + }) + }) + + test.describe('1.3 Validate "Introduction" page', async () => { + test('1.3.1 Validate the contents of introduction page', async () => { + /* + * Expected result: should show + * - verbiage of death event introduction + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + // await expect(page.getByLabel('Continue')).toBeVisible() + await expect( + page.getByText( + 'Introduce the death registration process to the informant' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test('1.3.2 Verify the verbiage of introduction page of death event', async () => { + /* + * Expected result: should show + * - I am going to help you make a declaration of death. + * - As the legal Informant it is important that all the information provided by you is accurate. + * - Once the declaration is processed you will receive an email to tell you + * when to visit the office to collect the certificate - Take your ID with you. + * - Make sure you collect the certificate. A death certificate is critical to support with + * inheritance claims and to resolve the affairs of the deceased e.g. closing bank accounts and setting loans. + */ + await expect( + page.getByText('I am going to help you make a declaration of death.') + ).toBeVisible() + await expect( + page.getByText( + 'As the legal Informant it is important that all the information provided by you is accurate.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Once the declaration is processed you will receive an email to tell you when to visit the office to collect the certificate - Take your ID with you.' + ) + ).toBeVisible() + await expect( + page.getByText( + 'Make sure you collect the certificate. A death certificate is critical to support with inheritance claims and to resolve the affairs of the deceased e.g. closing bank accounts and setting loans.' + ) + ).toBeVisible() + }) + + test('1.3.3 Click the "continue" button', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + /* + * Expected result: should navigate to the "Deceased details" page + */ + await expect(page.getByText("Deceased's details")).toBeVisible() + }) + }) + + test.describe('1.4 Validate "Deceased Details" page', async () => { + test('1.4.1 Validate the contents of Deceased details page', async () => { + /* + * Expected result: should see + * - Deceased details block + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test('1.4.2 Validate Deceased details block', async () => { + await page.locator('#firstname').fill(deceased.name.firstname) + }) + + test('1.4.3 Click "continue"', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to 'event details' page + */ + await expect(page.getByText('Event details')).toBeVisible() + }) + }) + + test.describe('1.5 Validate "Event Details" page', async () => { + test('1.5.1 Validate the contents of Event details page', async () => { + /* + * Expected result: should see + * - Event details block + * - Continue Button + * - Exit Button + * - Save and exit button + * - 3dot menu (delete option) + */ + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.5.2 Validate Event details block', async () => {}) + + test('1.5.3 Click "continue"', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to 'informant details' page + */ + await expect(page.getByText("Informant's details")).toBeVisible() + }) + }) + + test.describe('1.6 Validate "Informant details" page', async () => { + test('1.6.1 Validate the contents of informant details page', async () => { + /* + * Expected result: should see + * - Relationship to deceased dropdown + * - Phone number field + * - Email address field + * - Continue button + * - Exit button + * - Save &exit button + * - 3dot menu (delete option) + */ + await expect(page.getByText('Informant Type')).toBeVisible() + await expect(page.getByText('Phone number')).toBeVisible() + await expect(page.getByText('Email')).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.6.2 Click the "continue" button without selecting any relationship to deceased', async () => {}) + + test('1.6.3 Select eny option in relatinship to deceased and click the "continue" button', async () => { + await page.getByText('Select').click() + await page.getByText('Son', { exact: true }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "sposue details" page + */ + await expect( + page.getByText('Spouse details', { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.7 Validate "Spouse Details" page', async () => { + test('1.7.1 validate the contents of spouse details page', async () => { + /* + * Expected result: should see + * - Spouse details block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText('Spouse details', { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.7.2 Validate Spouse details block', async () => {}) + + test('1.7.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Supporting documents" page + */ + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + }) + }) + + test.describe('1.8 Validate "Supporting Document" page', async () => { + test('1.8.1 validate the contents of Supporting Document page', async () => { + /* + * Expected result: should see + * - Supporting Document block + * - Continue button + * - Exit button + * - Save & exit button + * - 3dot menu (delete option) + */ + + await expect( + page.getByText('Upload supporting documents', { exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Continue' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Exit', exact: true }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Save & Exit' }) + ).toBeVisible() + await page.locator('#event-menu-dropdownMenu').click() + await expect( + page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + ).toBeVisible() + }) + + test.skip('1.8.2 Validate Supporting Document block', async () => {}) + + test('1.8.3 click continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + /* + * Expected result: should navigate to "Review" page + */ + await expect( + page + .getByRole('button', { name: 'Send for review' }) + .or(page.getByRole('button', { name: 'Register' })) + ).toBeVisible() + }) + }) + + test.describe('1.9 Validate "Save & Exit" Button ', async () => { + test('1.9.1 Click the "Save & Exit" button from any page', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + + /* + * Expected result: should open modal with: + * - Title: Save & Exit + * - Helper text: All inputted data will be kept secure for future editing. + * Are you ready to save any changes to this declaration form? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeVisible() + await expect( + page.getByText( + 'All inputted data will be kept secure for future editing. Are you ready to save any changes to this declaration form?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect( + page.getByRole('button', { name: 'Confirm' }) + ).toBeVisible() + }) + + test('1.9.2 Click Cancel', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Save & exit?' }) + ).toBeHidden() + }) + + test('1.9.3 Click Confirm', async () => { + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should + * - be navigated to "my-drafts" tab + * - find the declared death event record on this page list with saved data + */ + //@todo: The user should be navigated to "my-drafts" tab by default + await page.getByText('My drafts').click() + + await expect(page.locator('#content-name')).toHaveText('My drafts') + + await ensureOutboxIsEmpty(page) + + await expect( + page.getByText(deceased.name.firstname, { exact: true }) + ).toBeVisible() + }) + }) + }) + test.describe('1.10 Validate "Exit" Button', async () => { + test.beforeEach(async ({ page }) => { + await loginToV2(page) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Exit', exact: true }).click() + }) + + test('1.10.1 Click the "Exit" button from any page', async ({ page }) => { + /* + * Expected result: should open modal with: + * - Title: Exit without saving changes? + * - Helper text: You have unsaved changes on your declaration form. Are you sure you want to exit without saving? + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeVisible() + await expect( + page.getByText( + 'You have unsaved changes on your declaration form. Are you sure you want to exit without saving?' + ) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.10.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.10.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + await expect(page.locator('#content-name')).toHaveText('Assigned to you') + + await ensureOutboxIsEmpty(page) + + await expect( + page.getByText(deceased.name.firstname, { exact: true }) + ).toBeHidden() + }) + }) + + test.describe('1.11 Validate "Delete Declaration" Button ', async () => { + test.beforeEach(async ({ page }) => { + await loginToV2(page) + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.locator('#event-menu-dropdownMenu').click() + await page + .locator('#event-menu-dropdownMenu') + .getByRole('listitem') + .filter({ hasText: 'Delete declaration' }) + .click() + }) + + test('1.11.1 Click the "Delete Declaration" button from any page', async ({ + page + }) => { + /* + * Expected result: should open modal with: + * - Title: Delete draft? + * - Helper text: Are you certain you want to delete this draft declaration form? Please note, this action cant be undone. + * - Cancel Button + * - Confirm Button + */ + await expect( + page.getByRole('heading', { name: 'Delete draft?' }) + ).toBeVisible() + await expect( + page.getByText('Are you sure you want to delete this declaration?') + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Cancel' })).toBeVisible() + await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible() + }) + + test('1.11.2 Click Cancel', async ({ page }) => { + await page.getByRole('button', { name: 'Cancel' }).click() + + /* + * Expected result: should close the modal + */ + await expect( + page.getByRole('heading', { name: 'Exit without saving changes?' }) + ).toBeHidden() + }) + + test('1.11.3 Click Confirm', async ({ page }) => { + await page.getByRole('button', { name: 'Confirm' }).click() + + /* + * Expected result: should be navigated to "my-drafts" tab but no draft will be saved + */ + + await expect(page.locator('#content-name')).toHaveText('Assigned to you') + + await ensureOutboxIsEmpty(page) + + await expect( + page.getByText(deceased.name.firstname, { exact: true }) + ).toBeHidden() + }) + + // @TODO: This test is not implemented in V2 events yet + test.describe.skip('1.12 Technical test for shortcuts', () => { + test.skip('Shortcut for quickly creating declarations', async () => {}) + }) + }) +}) diff --git a/e2e/testcases/v2-death/8-validate-declaration-review-page.spec.ts b/e2e/testcases/v2-death/8-validate-declaration-review-page.spec.ts new file mode 100644 index 0000000000..bbc896b7e8 --- /dev/null +++ b/e2e/testcases/v2-death/8-validate-declaration-review-page.spec.ts @@ -0,0 +1,1708 @@ +import { test, expect, type Page } from '@playwright/test' +import { + getRandomDate, + drawSignature, + goToSection, + uploadImageToSection, + continueForm, + loginToV2, + formatDateObjectTo_dMMMMyyyy, + expectRowValueWithChangeButton +} from '../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../v2-utils' + +test.describe.serial('8. Validate declaration review page', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + gender: 'Male', + dob: getRandomDate(75, 200), + nationality: 'Farajaland', + idType: 'National ID', + nid: faker.string.numeric(10), + passport: '', + brn: '', + address: { + country: 'Farajaland', + province: 'Pualula', + district: 'Pili' + } + }, + eventDetails: { + date: getRandomDate(0, 20), + causeOfDeathEstablished: false, + placeOfDeath: "Deceased's usual place of residence" + }, + informant: { + relation: 'Spouse', + name: { + firstname: '', + surname: '' + }, + dob: { dd: '', mm: '', yyyy: '' }, + nationality: '', + idType: '', + passport: '', + nid: '', + email: faker.internet.email(), + addressSameAs: true + }, + spouse: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + dob: getRandomDate(50, 200), + nationality: 'Farajaland', + idType: 'National ID', + nid: faker.string.numeric(10), + brn: '', + passport: '', + addressSameAs: true + } + } + const annotation = { + review: { + comment: 'He was a good man' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Field agent actions', async () => { + test.describe('8.1.0 Fill up death registration form', async () => { + test('8.1.0.1 Fill deceased details', async () => { + await page + .locator('#firstname') + .fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page + .getByText(declaration.deceased.gender, { exact: true }) + .click() + + await page.getByPlaceholder('dd').fill(declaration.deceased.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.deceased.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.deceased.dob.yyyy) + + await page.locator('#deceased____idType').click() + await page + .getByText(declaration.deceased.idType, { exact: true }) + .click() + + await page.locator('#deceased____nid').fill(declaration.deceased.nid) + + await page.locator('#province').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + await continueForm(page) + }) + + test('8.1.0.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await continueForm(page) + }) + + test('8.1.0.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('8.1.0.4 Fill spouse details', async () => { + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + + await page.getByPlaceholder('dd').fill(declaration.spouse.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.spouse.dob.yyyy) + + await page.locator('#spouse____idType').click() + await page.getByText(declaration.spouse.idType, { exact: true }).click() + + await page.locator('#spouse____nid').fill(declaration.spouse.nid) + + await continueForm(page) + }) + }) + + test.describe('8.1.1 Navigate to declaration preview page', async () => { + test('8.1.1.1 Verify information added on previous pages', async () => { + await goToSection(page, 'review') + + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + formatDateObjectTo_dMMMMyyyy(declaration.deceased.dob) + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.nid', + declaration.deceased.nid + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.nid', + declaration.spouse.nid + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.addressSameAs', + 'Yes' + ) + }) + }) + + test.describe('8.1.2 Click any "Change" link', async () => { + test("8.1.2.1 Change deceased's name", async () => { + await page.getByTestId('change-button-deceased.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.name.firstname = faker.person.firstName('male') + declaration.deceased.name.surname = faker.person.lastName('male') + await page + .locator('#firstname') + .fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's name + */ + await expect(page.getByTestId('row-value-deceased.name')).toContainText( + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + }) + + test("8.1.2.2 Change deceased's gender", async () => { + await page.getByTestId('change-button-deceased.gender').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.gender = 'Female' + + await page.locator('#deceased____gender').click() + await page + .getByText(declaration.deceased.gender, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's gender + */ + await expect( + page.getByTestId('row-value-deceased.gender') + ).toContainText(declaration.deceased.gender) + }) + + test("8.1.2.3 Change deceased's birthday", async () => { + await page.getByTestId('change-button-deceased.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.dob = getRandomDate(5, 200) + await page.getByPlaceholder('dd').fill(declaration.deceased.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.deceased.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.deceased.dob.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's birthday + */ + await expect(page.getByTestId('row-value-deceased.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.deceased.dob) + ) + }) + + test("8.1.2.4 Change deceased's ID type", async () => { + await page.getByTestId('change-button-deceased.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.idType = 'Passport' + + await page.locator('#deceased____idType').click() + await page + .getByText(declaration.deceased.idType, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's place of birth + */ + await expect( + page.getByTestId('row-value-deceased.idType') + ).toContainText(declaration.deceased.idType) + }) + test("8.1.2.5 Change deceased's ID", async () => { + await page.getByTestId('change-button-deceased.passport').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.passport = faker.string.numeric(10) + + await page + .locator('#deceased____passport') + .fill(declaration.deceased.passport) + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's ID + */ + await expect( + page.getByTestId('row-value-deceased.passport') + ).toContainText(declaration.deceased.passport) + }) + + test("8.1.2.6 Change deceased's address", async () => { + await page.getByTestId('change-button-deceased.address').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.address.province = 'Sulaka' + declaration.deceased.address.district = 'Afue' + + await page.locator('#province').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's address + */ + await expect( + page.getByTestId('row-value-deceased.address') + ).toContainText(declaration.deceased.address.district) + await expect( + page.getByTestId('row-value-deceased.address') + ).toContainText(declaration.deceased.address.province) + }) + + test('8.1.2.7 Change informant type', async () => { + await page.getByTestId('change-button-informant.relation').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.informant.relation = 'Father' + + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant type + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informant.relation) + }) + + test('8.1.2.8 Change registration email', async () => { + await page.getByTestId('change-button-informant.email').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.informant.email = faker.internet.email() + await page + .locator('#informant____email') + .fill(declaration.informant.email) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change registration email + */ + await expect( + page.getByTestId('row-value-informant.email') + ).toContainText(declaration.informant.email) + }) + + test("8.1.2.9 Change spouse's name", async () => { + await page.getByTestId('change-button-spouse.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.name.firstname = faker.person.firstName('female') + declaration.spouse.name.surname = faker.person.lastName('female') + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's name + */ + await expect(page.getByTestId('row-value-spouse.name')).toContainText( + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + }) + test("8.1.2.10 Change spouse's birthday", async () => { + await page.getByTestId('change-button-spouse.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.dob = getRandomDate(19, 200) + await page.getByPlaceholder('dd').fill(declaration.spouse.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.spouse.dob.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's birthday + */ + + await expect(page.getByTestId('row-value-spouse.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + }) + test("8.1.2.11 Change spouse's nationality", async () => { + await page.getByTestId('change-button-spouse.nationality').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.nationality = 'Holy See' + await page.locator('#spouse____nationality').click() + await page + .getByText(declaration.spouse.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's nationality + */ + await expect( + page.getByTestId('row-value-spouse.nationality') + ).toContainText(declaration.spouse.nationality) + }) + test("8.1.2.12 Change spouse's ID type", async () => { + await page.getByTestId('change-button-spouse.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.idType = 'Passport' + await page.locator('#spouse____idType').click() + await page + .getByText(declaration.spouse.idType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID type + */ + await expect(page.getByTestId('row-value-spouse.idType')).toContainText( + declaration.spouse.idType + ) + }) + test("8.1.2.13 Change spouse's ID", async () => { + await page.getByTestId('change-button-spouse.passport').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.passport = faker.string.numeric(10) + await page + .locator('#spouse____passport') + .fill(declaration.spouse.passport) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID + */ + await expect( + page.getByTestId('row-value-spouse.passport') + ).toContainText(declaration.spouse.passport) + }) + }) + + test.describe('8.1.3 Validate supporting document', async () => { + test('8.1.3.0 Go to upload supporting document page', async () => { + await page + .locator('#document_section') + .getByRole('button', { name: 'Upload', exact: true }) + .click() + }) + + test('8.1.3.1 Upload proof for deceased', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfDeceased'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfDeceased"]' + ) + }) + } + }) + + test('8.1.3.2 Upload proof for informant', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfInformant'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfInformant"]' + ) + }) + } + }) + + test('8.1.3.3 Upload proof of death', async () => { + const imageUploadSectionTitles = [ + 'Attested letter of death', + 'Police certificate of death', + 'Hospital certificate of death', + "Coroner's report", + 'Certified copy of burial receipt', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfDeath"]' + ) + }) + } + }) + + test('8.1.3.4 Go back to preview', async () => { + await page.getByRole('button', { name: 'Back to review' }).click() + }) + }) + test('8.1.4 Validate additional comments box', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + }) + test.describe('8.1.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.1.6 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('8.1.7 Click send button', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + }) + + test('8.1.8 Confirm the declaration to send for review', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + + test.describe('8.2 Registration agent actions', async () => { + test('8.2.1 Navigate to the declaration preview page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + test('8.2.1.1 Verify information added on previous pages', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.passport', + declaration.deceased.passport + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.passport', + declaration.spouse.passport + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + + /* + * Expected result: should show additional comment + */ + await expect(page.locator('#review____comment')).toContainText( + annotation.review.comment + ) + }) + + test.describe('8.2.2 Click any "Change" link', async () => { + test("8.2.2.1 Change deceased's name", async () => { + await page.getByTestId('change-button-deceased.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.name.firstname = faker.person.firstName('male') + declaration.deceased.name.surname = faker.person.lastName('male') + await page + .locator('#firstname') + .fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's name + */ + await expect(page.getByTestId('row-value-deceased.name')).toContainText( + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + }) + + test("8.2.2.2 Change deceased's gender", async () => { + await page.getByTestId('change-button-deceased.gender').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.gender = 'Male' + + await page.locator('#deceased____gender').click() + await page + .getByText(declaration.deceased.gender, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's gender + */ + await expect( + page.getByTestId('row-value-deceased.gender') + ).toContainText(declaration.deceased.gender) + }) + + test("8.2.2.3 Change deceased's birthday", async () => { + await page.getByTestId('change-button-deceased.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.dob = getRandomDate(5, 200) + await page.getByPlaceholder('dd').fill(declaration.deceased.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.deceased.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.deceased.dob.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's birthday + */ + await expect(page.getByTestId('row-value-deceased.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.deceased.dob) + ) + }) + + test("8.2.2.4 Change deceased's ID type", async () => { + await page.getByTestId('change-button-deceased.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.idType = 'Birth Registration Number' + + await page.locator('#deceased____idType').click() + await page + .getByText(declaration.deceased.idType, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's place of birth + */ + await expect( + page.getByTestId('row-value-deceased.idType') + ).toContainText(declaration.deceased.idType) + }) + test("8.2.2.5 Change deceased's ID", async () => { + await page.getByTestId('change-button-deceased.brn').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.brn = faker.string.numeric(10) + + await page.locator('#deceased____brn').fill(declaration.deceased.brn) + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's ID + */ + await expect(page.getByTestId('row-value-deceased.brn')).toContainText( + declaration.deceased.brn + ) + }) + + test("8.2.2.6 Change deceased's address", async () => { + await page.getByTestId('change-button-deceased.address').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.address.province = 'Central' + declaration.deceased.address.district = 'Itambo' + + await page.locator('#province').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's address + */ + await expect( + page.getByTestId('row-value-deceased.address') + ).toContainText(declaration.deceased.address.district) + await expect( + page.getByTestId('row-value-deceased.address') + ).toContainText(declaration.deceased.address.province) + }) + + test('8.2.2.7 Change informant type', async () => { + await page.getByTestId('change-button-informant.relation').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.informant.relation = 'Spouse' + + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant type + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informant.relation) + }) + + test('8.2.2.8 Change registration email', async () => { + await page.getByTestId('change-button-informant.email').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.informant.email = faker.internet.email() + await page + .locator('#informant____email') + .fill(declaration.informant.email) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change registration email + */ + await expect( + page.getByTestId('row-value-informant.email') + ).toContainText(declaration.informant.email) + }) + + test("8.2.2.9 Change spouse's name", async () => { + await page.getByTestId('change-button-spouse.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.name.firstname = faker.person.firstName('female') + declaration.spouse.name.surname = faker.person.lastName('female') + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's name + */ + await expect(page.getByTestId('row-value-spouse.name')).toContainText( + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + }) + test("8.2.2.10 Change spouse's birthday", async () => { + await page.getByTestId('change-button-spouse.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.dob = getRandomDate(19, 200) + await page.getByPlaceholder('dd').fill(declaration.spouse.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.spouse.dob.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's birthday + */ + + await expect(page.getByTestId('row-value-spouse.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + }) + test("8.2.2.11 Change spouse's nationality", async () => { + await page.getByTestId('change-button-spouse.nationality').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.nationality = 'Japan' + await page.locator('#spouse____nationality').click() + await page + .getByText(declaration.spouse.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's nationality + */ + await expect( + page.getByTestId('row-value-spouse.nationality') + ).toContainText(declaration.spouse.nationality) + }) + test("8.2.2.12 Change spouse's ID type", async () => { + await page.getByTestId('change-button-spouse.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.idType = 'Birth Registration Number' + await page.locator('#spouse____idType').click() + await page + .getByText(declaration.spouse.idType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID type + */ + await expect(page.getByTestId('row-value-spouse.idType')).toContainText( + declaration.spouse.idType + ) + }) + test("8.2.2.13 Change spouse's ID", async () => { + await page.getByTestId('change-button-spouse.brn').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.brn = faker.string.numeric(10) + await page.locator('#spouse____brn').fill(declaration.spouse.brn) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID + */ + await expect(page.getByTestId('row-value-spouse.brn')).toContainText( + declaration.spouse.brn + ) + }) + }) + test.describe('8.2.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.2.5 Validate the declaration send button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.2.6 Click send button', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + }) + + test('8.2.7 Confirm the declaration to send for approval', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + + await page.getByText('Sent for approval').click() + /* + * @TODO: When workflows are implemented on V2, this should navigate to correct workflow first. + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + + test.describe('8.3 Local registrar actions', async () => { + test('8.3.1 Navigate to the declaration preview page', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + test('8.3.1.1 Verify information added on previous pages', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.brn', + declaration.deceased.brn + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + ) + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.district + ) + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.province + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.brn', + declaration.spouse.brn + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + + /* + * Expected result: should show additional comment + */ + await expect(page.locator('#review____comment')).toContainText( + annotation.review.comment + ) + }) + + test.describe('8.3.2 Click any "Change" link', async () => { + test("8.3.2.1 Change deceased's name", async () => { + await page.getByTestId('change-button-deceased.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.name.firstname = faker.person.firstName('male') + declaration.deceased.name.surname = faker.person.lastName('male') + await page + .locator('#firstname') + .fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's name + */ + await expect(page.getByTestId('row-value-deceased.name')).toContainText( + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + }) + + test("8.3.2.2 Change deceased's gender", async () => { + await page.getByTestId('change-button-deceased.gender').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.gender = 'Female' + + await page.locator('#deceased____gender').click() + await page + .getByText(declaration.deceased.gender, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's gender + */ + await expect( + page.getByTestId('row-value-deceased.gender') + ).toContainText(declaration.deceased.gender) + }) + + test("8.3.2.3 Change deceased's birthday", async () => { + await page.getByTestId('change-button-deceased.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.dob = getRandomDate(0, 200) + await page.getByPlaceholder('dd').fill(declaration.deceased.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.deceased.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.deceased.dob.yyyy) + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's birthday + */ + await expect(page.getByTestId('row-value-deceased.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.deceased.dob) + ) + }) + + test("8.3.2.4 Change deceased's ID type", async () => { + await page.getByTestId('change-button-deceased.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.idType = 'Passport' + + await page.locator('#deceased____idType').click() + await page + .getByText(declaration.deceased.idType, { exact: true }) + .click() + + await page.getByRole('button', { name: 'Back to review' }).click() + + /* + * Expected result: should change deceased's place of birth + */ + await expect( + page.getByTestId('row-value-deceased.idType') + ).toContainText(declaration.deceased.idType) + }) + test("8.3.2.5 Change deceased's ID", async () => { + await page.getByTestId('change-button-deceased.passport').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.nid = faker.string.numeric(10) + + await page + .locator('#deceased____passport') + .fill(declaration.deceased.passport) + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's ID + */ + await expect( + page.getByTestId('row-value-deceased.passport') + ).toContainText(declaration.deceased.passport) + }) + + test("8.3.2.6 Change deceased's address", async () => { + await page.getByTestId('change-button-deceased.address').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.deceased.address.province = 'Sulaka' + declaration.deceased.address.district = 'Afue' + + await page.locator('#province').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change deceased's address + */ + await expect( + page.getByTestId('row-value-deceased.address') + ).toContainText(declaration.deceased.address.district) + await expect( + page.getByTestId('row-value-deceased.address') + ).toContainText(declaration.deceased.address.province) + }) + + test('8.3.2.7 Change informant type', async () => { + await page.getByTestId('change-button-informant.relation').click() + await page.getByRole('button', { name: 'Continue' }).click() + + declaration.informant = { + relation: 'Father', + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + dob: getRandomDate(20, 50), + nationality: 'Farajaland', + idType: 'National ID', + nid: faker.string.numeric(10), + passport: '', + addressSameAs: true, + email: faker.internet.email() + } + + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByPlaceholder('dd').fill(declaration.informant.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.informant.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.informant.dob.yyyy) + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page.locator('#informant____nid').fill(declaration.informant.nid) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change informant type + */ + await expect( + page.getByTestId('row-value-informant.relation') + ).toContainText(declaration.informant.relation) + }) + + test('8.3.2.8 Change registration email', async () => { + await page.getByTestId('change-button-informant.email').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.informant.email = faker.internet.email() + await page + .locator('#informant____email') + .fill(declaration.informant.email) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change registration email + */ + await expect( + page.getByTestId('row-value-informant.email') + ).toContainText(declaration.informant.email) + }) + + test("8.3.2.9 Change spouse's name", async () => { + await page.getByTestId('change-button-spouse.name').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.name.firstname = faker.person.firstName('female') + declaration.spouse.name.surname = faker.person.lastName('female') + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's name + */ + await expect(page.getByTestId('row-value-spouse.name')).toContainText( + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + }) + test("8.3.2.10 Change spouse's birthday", async () => { + await page.getByTestId('change-button-spouse.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.dob = getRandomDate(19, 200) + await page.getByPlaceholder('dd').fill(declaration.spouse.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.spouse.dob.yyyy) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's birthday + */ + + await expect(page.getByTestId('row-value-spouse.dob')).toContainText( + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + }) + test("8.3.2.11 Change spouse's nationality", async () => { + await page.getByTestId('change-button-spouse.nationality').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.nationality = 'Holy See' + await page.locator('#spouse____nationality').click() + await page + .getByText(declaration.spouse.nationality, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's nationality + */ + await expect( + page.getByTestId('row-value-spouse.nationality') + ).toContainText(declaration.spouse.nationality) + }) + test("8.3.2.12 Change spouse's ID type", async () => { + await page.getByTestId('change-button-spouse.idType').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.idType = 'Passport' + await page.locator('#spouse____idType').click() + await page + .getByText(declaration.spouse.idType, { + exact: true + }) + .click() + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID type + */ + await expect(page.getByTestId('row-value-spouse.idType')).toContainText( + declaration.spouse.idType + ) + }) + test("8.3.2.13 Change spouse's ID", async () => { + await page.getByTestId('change-button-spouse.passport').click() + await page.getByRole('button', { name: 'Continue' }).click() + declaration.spouse.passport = faker.string.numeric(10) + await page + .locator('#spouse____passport') + .fill(declaration.spouse.passport) + await page.getByRole('button', { name: 'Back to review' }).click() + /* + * Expected result: should change spouse's ID + */ + await expect( + page.getByTestId('row-value-spouse.passport') + ).toContainText(declaration.spouse.passport) + }) + }) + test.describe('8.3.3 Validate supporting document', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.4 Validate additional comments box', async () => { + test.skip('Skipped for now', async () => {}) + }) + test.describe('8.3.5 Validate the register button', async () => { + test.skip('Skipped for now', async () => {}) + }) + + test('8.3.6 Click send button', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the death?')).toBeVisible() + }) + + test('8.3.7 Confirm the declaration to ready for print', async () => { + await page.locator('#confirm_Register').click() + await ensureOutboxIsEmpty(page) + await page.getByText('Ready to print').click() + + /* + * @TODO: When workflows are implemented on V2, this should navigate to correct workflow first. + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-death/death-event-summary.spec.tsx b/e2e/testcases/v2-death/death-event-summary.spec.tsx new file mode 100644 index 0000000000..090bba2d57 --- /dev/null +++ b/e2e/testcases/v2-death/death-event-summary.spec.tsx @@ -0,0 +1,162 @@ +import { test, expect, type Page } from '@playwright/test' +import { faker } from '@faker-js/faker' +import { + continueForm, + expectRowValueWithChangeButton, + getRandomDate, + goToSection, + joinValuesWith, + loginToV2 +} from '../../helpers' + +test.describe.serial('Death event summary', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + address: { + country: 'Farajaland', + province: 'Pualula', + district: 'Pili', + town: 'Deceased Town', + residentalArea: 'Deceased Area', + street: 'Deceased Street', + house: '123', + postalCode: '12345' + } + }, + eventDetails: { + date: getRandomDate(0, 20), + causeOfDeathEstablished: false, + placeOfDeath: 'Other', + address: { + country: 'Farajaland', + province: 'Pualula', + district: 'Pili', + town: 'Place of death Town', + residentalArea: 'Place of death Area', + street: 'Place of death Street', + house: '987', + postalCode: '65432' + } + } + } + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Start death event declaration', async () => { + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Input deceased address', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + + await page.locator('#province').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.deceased.address.town) + + await page + .locator('#residentialArea') + .fill(declaration.deceased.address.residentalArea) + + await page.locator('#street').fill(declaration.deceased.address.street) + + await page.locator('#number').fill(declaration.deceased.address.house) + + await page.locator('#zipCode').fill(declaration.deceased.address.postalCode) + + await continueForm(page) + }) + + test('Input place of death address', async () => { + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.eventDetails.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.eventDetails.address.district, { exact: true }) + .click() + + await page.locator('#town').fill(declaration.eventDetails.address.town) + + await page + .locator('#residentialArea') + .fill(declaration.eventDetails.address.residentalArea) + + await page.locator('#street').fill(declaration.eventDetails.address.street) + + await page.locator('#number').fill(declaration.eventDetails.address.house) + + await page + .locator('#zipCode') + .fill(declaration.eventDetails.address.postalCode) + + await goToSection(page, 'review') + }) + + test('Verify input in review section', async () => { + await expectRowValueWithChangeButton( + page, + 'deceased.address', + joinValuesWith([...Object.values(declaration.deceased.address)], '') + ) + + await expectRowValueWithChangeButton( + page, + 'eventDetails.deathLocationOther', + joinValuesWith([...Object.values(declaration.eventDetails.address)], '') + ) + }) + + test('Save draft and find it in workqueue', async () => { + await page.getByText('Save & Exit', { exact: true }).click() + await page.getByText('Confirm', { exact: true }).click() + + await page.getByRole('button', { name: 'My drafts' }).click() + + await page + .getByRole('button', { + name: joinValuesWith(Object.values(declaration.deceased.name), ' ') + }) + .click() + }) + + test('Uses "other" location in summary', async () => { + await expect( + page.getByTestId('eventDetails.deathLocationOther') + ).toContainText( + joinValuesWith([...Object.values(declaration.eventDetails.address)], '') + ) + }) +}) diff --git a/e2e/testcases/v2-death/death-form-validations.spec.ts b/e2e/testcases/v2-death/death-form-validations.spec.ts new file mode 100644 index 0000000000..9be3d78076 --- /dev/null +++ b/e2e/testcases/v2-death/death-form-validations.spec.ts @@ -0,0 +1,87 @@ +import { test, expect, type Page } from '@playwright/test' +import { loginToV2 } from '../../helpers' + +test.describe.serial('Death form - date validations', () => { + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Start death event declaration', async () => { + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Input valid deceased date-of-birth', async () => { + await page.getByPlaceholder('dd').fill('22') + await page.getByPlaceholder('mm').fill('09') + await page.getByPlaceholder('yyyy').fill('1993') + + await page.getByPlaceholder('yyyy').blur() + + await expect(page.locator('#deceased____dob_error')).not.toBeVisible() + }) + + test('Navigate to event details section', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Input date-of-death which is before date-of-birth, expect to see validation error', async () => { + await page.getByPlaceholder('dd').fill('09') + await page.getByPlaceholder('mm').fill('10') + await page.getByPlaceholder('yyyy').fill('1990') + + await page.getByPlaceholder('yyyy').blur() + + await expect( + page.getByText("Date of death must be after the deceased's birth date") + ).toBeVisible() + }) + + test('Input date-of-death which is after date-of-birth, expect to see no validation error', async () => { + await page.getByPlaceholder('dd').fill('09') + await page.getByPlaceholder('mm').fill('10') + await page.getByPlaceholder('yyyy').fill('1995') + + await page.getByPlaceholder('yyyy').blur() + + await expect(page.locator('#eventDetails____date_error')).not.toBeVisible() + }) + + test('Go back to deceased details section', async () => { + await page.getByRole('button', { name: 'Back' }).click() + }) + + test('Input invalid deceased date-of-birth, expect to see validation error', async () => { + await page.getByPlaceholder('dd').fill('22') + await page.getByPlaceholder('mm').fill('09') + await page.getByPlaceholder('yyyy').fill('1996') + + await page.getByPlaceholder('yyyy').blur() + + await expect(page.locator('#deceased____dob_error')).toHaveText( + 'Date of birth must be before the date of death' + ) + }) + + test('Input valid deceased date-of-birth, expect to see no validation error', async () => { + await page.getByPlaceholder('dd').fill('22') + await page.getByPlaceholder('mm').fill('10') + await page.getByPlaceholder('yyyy').fill('1988') + + await page.getByPlaceholder('yyyy').blur() + + await expect(page.locator('#deceased____dob_error')).not.toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-1.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-1.spec.ts new file mode 100644 index 0000000000..50a749bc50 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-1.spec.ts @@ -0,0 +1,728 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('1. Death declaration case - 1', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + gender: 'Male', + dob: getRandomDate(75, 200), + nationality: 'Farajaland', + idType: 'National ID', + nid: faker.string.numeric(10), + maritalStatus: 'Single', + numberOfDependants: 3, + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Zobwe', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + mannerOfDeath: 'Natural causes', + date: getRandomDate(0, 20), + causeOfDeathEstablished: true, + sourceCauseDeath: 'Physician', + placeOfDeath: "Deceased's usual place of residence" + }, + informant: { + relation: 'Spouse', + email: faker.internet.email() + }, + spouse: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + dob: getRandomDate(50, 200), + nationality: 'Farajaland', + idType: 'National ID', + nid: faker.string.numeric(10), + addressSameAs: true + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('1.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('1.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByPlaceholder('dd').fill(declaration.deceased.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.deceased.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.deceased.dob.yyyy) + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page.locator('#deceased____nid').fill(declaration.deceased.nid) + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page + .locator('#deceased____numberOfDependants') + .fill(declaration.deceased.numberOfDependants.toString()) + + await page.locator('#province').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.deceased.address.town) + await page + .locator('#residentialArea') + .fill(declaration.deceased.address.residentialArea) + await page.locator('#street').fill(declaration.deceased.address.street) + await page.locator('#number').fill(declaration.deceased.address.number) + await page + .locator('#zipCode') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('1.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.getByLabel('Cause of death has been established').check() + + await page.locator('#eventDetails____sourceCauseDeath').click() + await page + .getByText(declaration.eventDetails.sourceCauseDeath, { exact: true }) + .click() + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await continueForm(page) + }) + + test('1.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('1.1.4 Fill spouse details', async () => { + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + + await page.getByPlaceholder('dd').fill(declaration.spouse.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.spouse.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.spouse.dob.yyyy) + + await page.locator('#spouse____idType').click() + await page.getByText(declaration.spouse.idType, { exact: true }).click() + + await page.locator('#spouse____nid').fill(declaration.spouse.nid) + + await continueForm(page) + }) + + test('1.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('1.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + formatDateObjectTo_dMMMMyyyy(declaration.deceased.dob) + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.nid', + declaration.deceased.nid + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Number of Deceased's Dependants + */ + await expectRowValueWithChangeButton( + page, + 'deceased.numberOfDependants', + declaration.deceased.numberOfDependants.toString() + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.residentialArea + + declaration.deceased.address.street + + declaration.deceased.address.number + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.nid', + declaration.spouse.nid + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + + test('1.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('1.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + test.describe('1.2 Declaration Review by RA', async () => { + test('1.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('1.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + formatDateObjectTo_dMMMMyyyy(declaration.deceased.dob) + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.nid', + declaration.deceased.nid + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Number of Deceased's Dependants + */ + await expectRowValueWithChangeButton( + page, + 'deceased.numberOfDependants', + declaration.deceased.numberOfDependants.toString() + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.residentialArea + + declaration.deceased.address.street + + declaration.deceased.address.number + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + formatDateObjectTo_dMMMMyyyy(declaration.spouse.dob) + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.nid', + declaration.spouse.nid + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-10.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-10.spec.ts new file mode 100644 index 0000000000..cc68c1c584 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-10.spec.ts @@ -0,0 +1,457 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + goToSection, + loginToV2 +} from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from '../../v2-birth/helpers' + +test.describe.serial('10. Death declaration case - 10', () => { + let page: Page + + const declaration = { + deceased: { + nationality: 'Farajaland', + address: { + country: 'Farajaland', + province: 'Central', + district: 'Ibombo' + } + }, + informant: { + relation: 'Grandson' + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('10.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.1 Fill deceased details', async () => { + await continueForm(page) + }) + + test('10.1.2 Fill event details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('10.1.4 Go to preview', async () => { + await goToSection(page, 'review') + }) + + test('10.1.5 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + 'Farajaland' + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectRowValueWithChangeButton( + page, + 'spouse.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + 'Farajaland' + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + + test('10.1.6 Fill up informant signature', async () => { + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('10.1.7 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page + .getByRole('button', { + name: 'No name provided' + }) + .first() + ).toBeVisible() + }) + }) + + test.describe('10.2 Declaration Review by RA', async () => { + test('10.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: 'No name provided' + }) + .first() + .click() + }) + + test('10.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + 'Farajaland' + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectRowValueWithChangeButton( + page, + 'spouse.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + 'Farajaland' + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-11.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-11.spec.ts new file mode 100644 index 0000000000..e979991ce5 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-11.spec.ts @@ -0,0 +1,1001 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('11. Death declaration case - 11', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + gender: 'Unknown', + age: 45, + nationality: 'Farajaland', + idType: 'Birth Registration Number', + brn: faker.string.numeric(10), + maritalStatus: 'Widowed', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + date: getRandomDate(0, 20), + mannerOfDeath: 'Suicide', + causeOfDeathEstablished: true, + sourceCauseDeath: 'Verbal autopsy', + description: 'Hanging from ceiling', + placeOfDeath: "Deceased's usual place of residence" + }, + informant: { + relation: 'Daughter', + email: faker.internet.email(), + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + age: 17, + nationality: 'Malawi', + idType: 'Passport', + passport: faker.string.numeric(10), + addressSameAs: false, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + age: 42, + nationality: 'Farajaland', + idType: 'Birth Registration Number', + brn: faker.string.numeric(10), + addressSameAs: false, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('11.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('11.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#deceased____age') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page.locator('#deceased____brn').fill(declaration.deceased.brn) + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.deceased.address.state) + await page + .locator('#district2') + .fill(declaration.deceased.address.district) + await page.locator('#cityOrTown').fill(declaration.deceased.address.town) + await page + .locator('#addressLine1') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.deceased.address.postcodeOrZip) + await continueForm(page) + }) + + test('11.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page.getByLabel('Cause of death has been established').check() + + await page.locator('#eventDetails____sourceCauseDeath').click() + await page + .getByText(declaration.eventDetails.sourceCauseDeath, { exact: true }) + .click() + + await page + .locator('#eventDetails____description') + .fill(declaration.eventDetails.description) + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await continueForm(page) + }) + + test('11.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page + .locator('#informant____passport') + .fill(declaration.informant.passport) + + await page.locator('#informant____addressSameAs_NO').check() + + await page.locator('#province').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.informant.address.town) + await page + .locator('#residentialArea') + .fill(declaration.informant.address.residentialArea) + await page.locator('#street').fill(declaration.informant.address.street) + await page.locator('#number').fill(declaration.informant.address.number) + await page + .locator('#zipCode') + .fill(declaration.informant.address.postcodeOrZip) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('11.1.4 Fill spouse details', async () => { + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#spouse____age') + .fill(declaration.spouse.age.toString()) + + await page.locator('#spouse____idType').click() + await page.getByText(declaration.spouse.idType, { exact: true }).click() + + await page.locator('#spouse____brn').fill(declaration.spouse.brn) + + await page.locator('#spouse____addressSameAs_NO').check() + + await page.locator('#province').click() + await page + .getByText(declaration.spouse.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.spouse.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.spouse.address.town) + await page + .locator('#residentialArea') + .fill(declaration.spouse.address.residentialArea) + await page.locator('#street').fill(declaration.spouse.address.street) + await page.locator('#number').fill(declaration.spouse.address.number) + await page + .locator('#zipCode') + .fill(declaration.spouse.address.postcodeOrZip) + + await continueForm(page) + }) + + test('11.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('11.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.brn', + declaration.deceased.brn + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.description', + declaration.eventDetails.description + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.passport', + declaration.informant.passport + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.province + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.residentialArea + + declaration.informant.address.street + + declaration.informant.address.number + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.brn', + declaration.spouse.brn + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.province + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.residentialArea + + declaration.spouse.address.street + + declaration.spouse.address.number + + declaration.spouse.address.postcodeOrZip + ) + }) + + test('11.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('11.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + test.describe('11.2 Declaration Review by RA', async () => { + test('11.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('11.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.brn', + declaration.deceased.brn + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.description', + declaration.eventDetails.description + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.passport', + declaration.informant.passport + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.province + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.residentialArea + + declaration.informant.address.street + + declaration.informant.address.number + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.brn', + declaration.spouse.brn + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.province + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.residentialArea + + declaration.spouse.address.street + + declaration.spouse.address.number + + declaration.spouse.address.postcodeOrZip + ) + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-2.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-2.spec.ts new file mode 100644 index 0000000000..9e133c8df2 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-2.spec.ts @@ -0,0 +1,1036 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + loginToV2, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('2. Death declaration case - 2', () => { + let page: Page + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + gender: 'Female', + age: 65, + nationality: 'Guernsey', + idType: 'Passport', + passport: faker.string.numeric(10), + maritalStatus: 'Married', + address: { + country: 'Farajaland', + province: 'Sulaka', + district: 'Zobwe', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + mannerOfDeath: 'Accident', + date: getRandomDate(0, 20), + causeOfDeathEstablished: true, + sourceCauseDeath: 'Lay reported', + description: "T'was an accident sire", + placeOfDeath: "Deceased's usual place of residence" + }, + informant: { + relation: 'Son', + email: faker.internet.email(), + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + dob: getRandomDate(50, 200), + nationality: 'Farajaland', + idType: 'National ID', + nid: faker.string.numeric(10), + addressSameAs: true + }, + spouse: { + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + age: 68, + nationality: 'Canada', + idType: 'Passport', + passport: faker.string.numeric(10), + addressSameAs: false, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('2.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('2.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#deceased____age') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceased____nationality').click() + await page + .getByText(declaration.deceased.nationality, { exact: true }) + .click() + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page + .locator('#deceased____passport') + .fill(declaration.deceased.passport) + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.deceased.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.deceased.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.deceased.address.town) + await page + .locator('#residentialArea') + .fill(declaration.deceased.address.residentialArea) + await page.locator('#street').fill(declaration.deceased.address.street) + await page.locator('#number').fill(declaration.deceased.address.number) + await page + .locator('#zipCode') + .fill(declaration.deceased.address.postcodeOrZip) + await continueForm(page) + }) + + test('2.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.getByLabel('Cause of death has been established').check() + + await page.locator('#eventDetails____sourceCauseDeath').click() + await page + .getByText(declaration.eventDetails.sourceCauseDeath, { exact: true }) + .click() + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page + .locator('#eventDetails____description') + .fill(declaration.eventDetails.description) + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await continueForm(page) + }) + + test('2.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByPlaceholder('dd').fill(declaration.informant.dob.dd) + await page.getByPlaceholder('mm').fill(declaration.informant.dob.mm) + await page.getByPlaceholder('yyyy').fill(declaration.informant.dob.yyyy) + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page.locator('#informant____nid').fill(declaration.informant.nid) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('2.1.4 Fill spouse details', async () => { + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#spouse____age') + .fill(declaration.spouse.age.toString()) + + await page.locator('#spouse____nationality').click() + await page + .getByText(declaration.spouse.nationality, { exact: true }) + .click() + + await page.locator('#spouse____idType').click() + await page.getByText(declaration.spouse.idType, { exact: true }).click() + + await page + .locator('#spouse____passport') + .fill(declaration.spouse.passport) + + await page.locator('#spouse____addressSameAs_NO').check() + + await page.locator('#province').click() + await page + .getByText(declaration.spouse.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.spouse.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.spouse.address.town) + await page + .locator('#residentialArea') + .fill(declaration.spouse.address.residentialArea) + await page.locator('#street').fill(declaration.spouse.address.street) + await page.locator('#number').fill(declaration.spouse.address.number) + await page + .locator('#zipCode') + .fill(declaration.spouse.address.postcodeOrZip) + + await continueForm(page) + }) + + test.describe('2.1.5 Upload supporting document', async () => { + test('2.1.5.1 Upload proof for deceased', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfDeceased'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfDeceased"]' + ) + }) + } + }) + + test('2.1.5.2 Upload proof for informant', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfInformant'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfInformant"]' + ) + }) + } + }) + + test('2.1.5.3 Upload proof of death', async () => { + const imageUploadSectionTitles = [ + 'Attested letter of death', + 'Police certificate of death', + 'Hospital certificate of death', + "Coroner's report", + 'Certified copy of burial receipt', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfDeath"]' + ) + }) + } + }) + + test('2.1.5.4 Upload proof of cause of death', async () => { + const imageUploadSectionTitles = [ + 'Medically Certified Cause of Death', + 'Verbal autopsy report', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfCauseOfDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfCauseOfDeath"]' + ) + }) + } + await continueForm(page) + }) + }) + + test('2.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.passport', + declaration.deceased.passport + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.residentialArea + + declaration.deceased.address.street + + declaration.deceased.address.number + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.description', + declaration.eventDetails.description + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.dob', + formatDateObjectTo_dMMMMyyyy(declaration.informant.dob) + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.nid', + declaration.informant.nid + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.addressSameAs', + 'Yes' + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.passport', + declaration.spouse.passport + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.province + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.residentialArea + + declaration.spouse.address.street + + declaration.spouse.address.number + + declaration.spouse.address.postcodeOrZip + ) + }) + + test('2.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('2.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + test.describe('2.2 Declaration Review by RA', async () => { + test('2.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('2.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.passport', + declaration.deceased.passport + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.residentialArea + + declaration.deceased.address.street + + declaration.deceased.address.number + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.description', + declaration.eventDetails.description + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.dob', + formatDateObjectTo_dMMMMyyyy(declaration.informant.dob) + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.nid', + declaration.informant.nid + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.addressSameAs', + 'Yes' + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.passport', + declaration.spouse.passport + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.province + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.residentialArea + + declaration.spouse.address.street + + declaration.spouse.address.number + + declaration.spouse.address.postcodeOrZip + ) + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-3.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-3.spec.ts new file mode 100644 index 0000000000..13f34f8eca --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-3.spec.ts @@ -0,0 +1,1001 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('3. Death declaration case - 3', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('male') + ' the 2nd', + surname: faker.person.lastName('male') + }, + gender: 'Unknown', + age: 45, + nationality: 'Farajaland', + idType: 'Birth Registration Number', + brn: faker.string.numeric(10), + maritalStatus: 'Widowed', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + date: getRandomDate(0, 20), + mannerOfDeath: 'Suicide', + causeOfDeathEstablished: true, + sourceCauseDeath: 'Verbal autopsy', + description: 'Hanging from ceiling', + placeOfDeath: "Deceased's usual place of residence" + }, + informant: { + relation: 'Daughter', + email: faker.internet.email(), + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + age: 17, + nationality: 'Malawi', + idType: 'Passport', + passport: faker.string.numeric(10), + addressSameAs: false, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + age: 42, + nationality: 'Farajaland', + idType: 'Birth Registration Number', + brn: faker.string.numeric(10), + addressSameAs: false, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('3.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('3.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#deceased____age') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page.locator('#deceased____brn').fill(declaration.deceased.brn) + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.deceased.address.state) + await page + .locator('#district2') + .fill(declaration.deceased.address.district) + await page.locator('#cityOrTown').fill(declaration.deceased.address.town) + await page + .locator('#addressLine1') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.deceased.address.postcodeOrZip) + await continueForm(page) + }) + + test('3.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page.getByLabel('Cause of death has been established').check() + + await page.locator('#eventDetails____sourceCauseDeath').click() + await page + .getByText(declaration.eventDetails.sourceCauseDeath, { exact: true }) + .click() + + await page + .locator('#eventDetails____description') + .fill(declaration.eventDetails.description) + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await continueForm(page) + }) + + test('3.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page + .locator('#informant____passport') + .fill(declaration.informant.passport) + + await page.locator('#informant____addressSameAs_NO').check() + + await page.locator('#province').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.informant.address.town) + await page + .locator('#residentialArea') + .fill(declaration.informant.address.residentialArea) + await page.locator('#street').fill(declaration.informant.address.street) + await page.locator('#number').fill(declaration.informant.address.number) + await page + .locator('#zipCode') + .fill(declaration.informant.address.postcodeOrZip) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('3.1.4 Fill spouse details', async () => { + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#spouse____age') + .fill(declaration.spouse.age.toString()) + + await page.locator('#spouse____idType').click() + await page.getByText(declaration.spouse.idType, { exact: true }).click() + + await page.locator('#spouse____brn').fill(declaration.spouse.brn) + + await page.locator('#spouse____addressSameAs_NO').check() + + await page.locator('#province').click() + await page + .getByText(declaration.spouse.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.spouse.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.spouse.address.town) + await page + .locator('#residentialArea') + .fill(declaration.spouse.address.residentialArea) + await page.locator('#street').fill(declaration.spouse.address.street) + await page.locator('#number').fill(declaration.spouse.address.number) + await page + .locator('#zipCode') + .fill(declaration.spouse.address.postcodeOrZip) + + await continueForm(page) + }) + + test('3.1.5 Go to review', async () => { + await goToSection(page, 'review') + }) + + test('3.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.brn', + declaration.deceased.brn + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.description', + declaration.eventDetails.description + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.passport', + declaration.informant.passport + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.province + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.residentialArea + + declaration.informant.address.street + + declaration.informant.address.number + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.brn', + declaration.spouse.brn + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.province + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.residentialArea + + declaration.spouse.address.street + + declaration.spouse.address.number + + declaration.spouse.address.postcodeOrZip + ) + }) + + test('3.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('3.1.8 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + test.describe('3.2 Declaration Review by RA', async () => { + test('3.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('3.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + await expectRowValueWithChangeButton( + page, + 'deceased.brn', + declaration.deceased.brn + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Description cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.description', + declaration.eventDetails.description + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.passport', + declaration.informant.passport + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.province + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.residentialArea + + declaration.informant.address.street + + declaration.informant.address.number + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + await expectRowValueWithChangeButton( + page, + 'spouse.brn', + declaration.spouse.brn + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.province + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.residentialArea + + declaration.spouse.address.street + + declaration.spouse.address.number + + declaration.spouse.address.postcodeOrZip + ) + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-4.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-4.spec.ts new file mode 100644 index 0000000000..1a378cf910 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-4.spec.ts @@ -0,0 +1,1050 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + loginToV2, + uploadImageToSection +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('4. Death declaration case - 4', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + idType: 'None', + maritalStatus: 'Divorced', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + mannerOfDeath: 'Homicide', + date: getRandomDate(0, 20), + causeOfDeathEstablished: true, + sourceCauseDeath: 'Medically Certified Cause of Death', + placeOfDeath: 'Health Institution', + deathLocation: 'Railway GRZ Urban Health Centre' + }, + informant: { + relation: 'Son in law', + email: faker.internet.email(), + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + idType: 'Birth Registration Number', + brn: faker.string.numeric(10), + addressSameAs: false, + address: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + age: 42, + nationality: 'Farajaland', + idType: 'None', + addressSameAs: false, + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('4.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('4.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#deceased____age') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.deceased.address.state) + await page + .locator('#district2') + .fill(declaration.deceased.address.district) + await page.locator('#cityOrTown').fill(declaration.deceased.address.town) + await page + .locator('#addressLine1') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.deceased.address.postcodeOrZip) + await continueForm(page) + }) + + test('4.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page.getByLabel('Cause of death has been established').check() + + await page.locator('#eventDetails____sourceCauseDeath').click() + await page + .getByText(declaration.eventDetails.sourceCauseDeath, { exact: true }) + .click() + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await page + .locator('#eventDetails____deathLocation') + .fill(declaration.eventDetails.deathLocation.slice(0, 4)) + await page.getByText(declaration.eventDetails.deathLocation).click() + + await continueForm(page) + }) + + test('4.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page.locator('#informant____brn').fill(declaration.informant.brn) + + await page.locator('#informant____addressSameAs_NO').check() + + await page.locator('#province').click() + await page + .getByText(declaration.informant.address.province, { exact: true }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.informant.address.district, { exact: true }) + .click() + await page.locator('#town').fill(declaration.informant.address.town) + await page + .locator('#residentialArea') + .fill(declaration.informant.address.residentialArea) + await page.locator('#street').fill(declaration.informant.address.street) + await page.locator('#number').fill(declaration.informant.address.number) + await page + .locator('#zipCode') + .fill(declaration.informant.address.postcodeOrZip) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('4.1.4 Fill spouse details', async () => { + await page.locator('#firstname').fill(declaration.spouse.name.firstname) + await page.locator('#surname').fill(declaration.spouse.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#spouse____age') + .fill(declaration.spouse.age.toString()) + + await page.locator('#spouse____idType').click() + await page.getByText(declaration.spouse.idType, { exact: true }).click() + + await page.locator('#spouse____addressSameAs_NO').check() + + await page.locator('#country').click() + await page + .getByText(declaration.spouse.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.spouse.address.state) + await page.locator('#district2').fill(declaration.spouse.address.district) + await page.locator('#cityOrTown').fill(declaration.spouse.address.town) + await page + .locator('#addressLine1') + .fill(declaration.spouse.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.spouse.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.spouse.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.spouse.address.postcodeOrZip) + + await continueForm(page) + }) + + test.describe('4.1.5 Upload supporting document', async () => { + test('4.1.5.1 Upload proof for deceased', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfDeceased'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfDeceased"]' + ) + }) + } + }) + + test('4.1.5.2 Upload proof for informant', async () => { + const imageUploadSectionTitles = [ + 'National ID', + 'Passport', + 'Birth Certificate', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfInformant'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfInformant"]' + ) + }) + } + }) + + test('4.1.5.3 Upload proof of death', async () => { + const imageUploadSectionTitles = [ + 'Attested letter of death', + 'Police certificate of death', + 'Hospital certificate of death', + "Coroner's report", + 'Certified copy of burial receipt', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfDeath"]' + ) + }) + } + }) + + test('4.1.5.4 Upload proof of cause of death', async () => { + const imageUploadSectionTitles = [ + 'Medically Certified Cause of Death', + 'Verbal autopsy report', + 'Other' + ] + + for (const sectionTitle of imageUploadSectionTitles) { + await uploadImageToSection({ + page, + sectionLocator: page.locator('#documents____proofOfCauseOfDeath'), + sectionTitle, + buttonLocator: page.locator( + 'button[name="documents____proofOfCauseOfDeath"]' + ) + }) + } + await continueForm(page) + }) + }) + + test('4.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.brn', + declaration.informant.brn + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.province + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.residentialArea + + declaration.informant.address.street + + declaration.informant.address.number + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.state + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.addressLine1 + + declaration.spouse.address.addressLine2 + + declaration.spouse.address.addressLine3 + + declaration.spouse.address.postcodeOrZip + ) + }) + + test('4.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('4.1.8 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for approval').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + test.describe('4.2 Declaration Review by Local Registrar', async () => { + test('4.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('4.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Cause of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.causeOfDeathEstablished', + 'Yes' + ) + + /* + * Expected result: should include + * - Source cause of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.sourceCauseDeath', + declaration.eventDetails.sourceCauseDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - informant's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + await expectRowValueWithChangeButton( + page, + 'informant.brn', + declaration.informant.brn + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.province + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.residentialArea + + declaration.informant.address.street + + declaration.informant.address.number + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.name', + declaration.spouse.name.firstname + + ' ' + + declaration.spouse.name.surname + ) + + /* + * Expected result: should include + * - Spouse's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.age', + declaration.spouse.age.toString() + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + declaration.spouse.nationality + ) + /* + * Expected result: should include + * - Spouse's Type of Id + * - Spouse's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + declaration.spouse.idType + ) + + /* + * Expected result: should include + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.address', + declaration.spouse.address.country + + declaration.spouse.address.state + + declaration.spouse.address.district + + declaration.spouse.address.town + + declaration.spouse.address.addressLine1 + + declaration.spouse.address.addressLine2 + + declaration.spouse.address.addressLine3 + + declaration.spouse.address.postcodeOrZip + ) + }) + + test('4.2.3 Register', async () => { + await page.getByRole('button', { name: 'Register', exact: true }).click() + await page.locator('#confirm_Register').click() + + await ensureOutboxIsEmpty(page) + + await page.getByText('Ready to print').click() + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-5.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-5.spec.ts new file mode 100644 index 0000000000..1465b9e80a --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-5.spec.ts @@ -0,0 +1,816 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' + +test.describe.serial('5. Death declaration case - 5', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('female') + '-Peter', + surname: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + idType: 'None', + maritalStatus: 'Separated', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + date: getRandomDate(0, 20), + mannerOfDeath: 'Manner undetermined', + causeOfDeathEstablished: false, + placeOfDeath: 'Other', + deathLocationOther: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + informant: { + relation: 'Daughter in law', + email: faker.internet.email(), + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + idType: 'None', + addressSameAs: false, + address: { + country: 'Comoros', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + detailsNotAvailable: true, + reason: 'Spouse ran away' + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('5.1 Declaration started by RA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('5.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#deceased____age') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.deceased.address.state) + await page + .locator('#district2') + .fill(declaration.deceased.address.district) + await page.locator('#cityOrTown').fill(declaration.deceased.address.town) + await page + .locator('#addressLine1') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.deceased.address.postcodeOrZip) + await continueForm(page) + }) + + test('5.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.eventDetails.deathLocationOther.province, { + exact: true + }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.eventDetails.deathLocationOther.district, { + exact: true + }) + .click() + await page + .locator('#town') + .fill(declaration.eventDetails.deathLocationOther.town) + await page + .locator('#residentialArea') + .fill(declaration.eventDetails.deathLocationOther.residentialArea) + await page + .locator('#street') + .fill(declaration.eventDetails.deathLocationOther.street) + await page + .locator('#number') + .fill(declaration.eventDetails.deathLocationOther.number) + await page + .locator('#zipCode') + .fill(declaration.eventDetails.deathLocationOther.postcodeOrZip) + + await continueForm(page) + }) + + test('5.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page.locator('#informant____addressSameAs_NO').check() + + await page.locator('#country').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.informant.address.state) + await page + .locator('#district2') + .fill(declaration.informant.address.district) + await page.locator('#cityOrTown').fill(declaration.informant.address.town) + await page + .locator('#addressLine1') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.informant.address.postcodeOrZip) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('5.1.4 Fill spouse details', async () => { + await page.getByLabel("Spouse's details are not available").check() + + await page.locator('#spouse____reason').fill(declaration.spouse.reason) + + await continueForm(page) + }) + + test('5.1.5 Go to preview', async () => { + await goToSection(page, 'review') + }) + + test('5.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Death location address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.deathLocationOther', + declaration.eventDetails.deathLocationOther.country + + declaration.eventDetails.deathLocationOther.province + + declaration.eventDetails.deathLocationOther.district + + declaration.eventDetails.deathLocationOther.town + + declaration.eventDetails.deathLocationOther.residentialArea + + declaration.eventDetails.deathLocationOther.street + + declaration.eventDetails.deathLocationOther.number + + declaration.eventDetails.deathLocationOther.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.state + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.addressLine1 + + declaration.informant.address.addressLine2 + + declaration.informant.address.addressLine3 + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.detailsNotAvailable', + 'Yes' + ) + + await expectRowValueWithChangeButton( + page, + 'spouse.reason', + declaration.spouse.reason + ) + }) + + test('5.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('5.1.8 Send for approval', async () => { + await page.getByRole('button', { name: 'Send for approval' }).click() + await expect(page.getByText('Send for approval?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for approval').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + test.describe('5.2 Declaration Review by Local Registrar', async () => { + test('5.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready for review').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('5.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Death location address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.deathLocationOther', + declaration.eventDetails.deathLocationOther.country + + declaration.eventDetails.deathLocationOther.province + + declaration.eventDetails.deathLocationOther.district + + declaration.eventDetails.deathLocationOther.town + + declaration.eventDetails.deathLocationOther.residentialArea + + declaration.eventDetails.deathLocationOther.street + + declaration.eventDetails.deathLocationOther.number + + declaration.eventDetails.deathLocationOther.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.state + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.addressLine1 + + declaration.informant.address.addressLine2 + + declaration.informant.address.addressLine3 + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.detailsNotAvailable', + 'Yes' + ) + + await expectRowValueWithChangeButton( + page, + 'spouse.reason', + declaration.spouse.reason + ) + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-6.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-6.spec.ts new file mode 100644 index 0000000000..bfd33cad2b --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-6.spec.ts @@ -0,0 +1,759 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('6. Death declaration case - 6', () => { + let page: Page + async function expectRowValue(fieldName: string, assertionText: string) { + await expect(page.getByTestId(`row-value-${fieldName}`)).toContainText( + assertionText + ) + } + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('female') + " O'Nila", + surname: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + idType: 'None', + maritalStatus: 'Not stated', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + date: getRandomDate(0, 20), + mannerOfDeath: 'Manner undetermined', + causeOfDeathEstablished: false, + placeOfDeath: 'Other', + deathLocationOther: { + country: 'Farajaland', + province: 'Chuminga', + district: 'Nsali', + town: faker.location.city(), + residentialArea: faker.location.county(), + street: faker.location.street(), + number: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + informant: { + relation: 'Mother', + email: faker.internet.email(), + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + idType: 'None', + addressSameAs: false, + address: { + country: 'Comoros', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + detailsNotAvailable: true, + reason: 'Spouse ran away' + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('6.1 Declaration started by Local Registrar', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + test('6.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#deceased____age') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.deceased.address.state) + await page + .locator('#district2') + .fill(declaration.deceased.address.district) + await page.locator('#cityOrTown').fill(declaration.deceased.address.town) + await page + .locator('#addressLine1') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.deceased.address.postcodeOrZip) + await continueForm(page) + }) + + test('6.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await page.locator('#province').click() + await page + .getByText(declaration.eventDetails.deathLocationOther.province, { + exact: true + }) + .click() + await page.locator('#district').click() + await page + .getByText(declaration.eventDetails.deathLocationOther.district, { + exact: true + }) + .click() + await page + .locator('#town') + .fill(declaration.eventDetails.deathLocationOther.town) + await page + .locator('#residentialArea') + .fill(declaration.eventDetails.deathLocationOther.residentialArea) + await page + .locator('#street') + .fill(declaration.eventDetails.deathLocationOther.street) + await page + .locator('#number') + .fill(declaration.eventDetails.deathLocationOther.number) + await page + .locator('#zipCode') + .fill(declaration.eventDetails.deathLocationOther.postcodeOrZip) + + await continueForm(page) + }) + + test('6.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page.locator('#informant____addressSameAs_NO').check() + + await page.locator('#country').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.informant.address.state) + await page + .locator('#district2') + .fill(declaration.informant.address.district) + await page.locator('#cityOrTown').fill(declaration.informant.address.town) + await page + .locator('#addressLine1') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.informant.address.postcodeOrZip) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('6.1.4 Fill spouse details', async () => { + await page.getByLabel("Spouse's details are not available").check() + + await page.locator('#spouse____reason').fill(declaration.spouse.reason) + + await continueForm(page) + }) + + test('6.1.5 Go to preview', async () => { + await goToSection(page, 'review') + }) + + test('6.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Death location address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.deathLocationOther', + declaration.eventDetails.deathLocationOther.country + + declaration.eventDetails.deathLocationOther.province + + declaration.eventDetails.deathLocationOther.district + + declaration.eventDetails.deathLocationOther.town + + declaration.eventDetails.deathLocationOther.residentialArea + + declaration.eventDetails.deathLocationOther.street + + declaration.eventDetails.deathLocationOther.number + + declaration.eventDetails.deathLocationOther.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.state + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.addressLine1 + + declaration.informant.address.addressLine2 + + declaration.informant.address.addressLine3 + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.detailsNotAvailable', + 'Yes' + ) + + await expectRowValueWithChangeButton( + page, + 'spouse.reason', + declaration.spouse.reason + ) + }) + + test('6.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('6.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the death?')).toBeVisible() + await page.locator('#confirm_Declare').click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Ready to print').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + test.describe('6.2 Declaration Review by Registration Agent', async () => { + test('6.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Ready to print').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('6.2.2 Verify information on review page', async () => { + await page.getByRole('button', { name: 'Action', exact: true }).click() + await page.getByText('View', { exact: true }).click() + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + */ + await expectRowValue( + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + */ + await expectRowValue('deceased.gender', declaration.deceased.gender) + + /* + * Expected result: should include + * - Deceased's age + */ + await expectRowValue('deceased.age', declaration.deceased.age.toString()) + + /* + * Expected result: should include + * - Deceased's Nationality + */ + await expectRowValue( + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Deceased's Id Number + */ + await expectRowValue('deceased.idType', declaration.deceased.idType) + + /* + * Expected result: should include + * - Deceased's marital status + */ + await expectRowValue( + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + */ + await expectRowValue( + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + */ + await expectRowValue( + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + */ + await expectRowValue( + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Place of death + */ + await expectRowValue( + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Death location address + */ + await expectRowValue( + 'eventDetails.deathLocationOther', + declaration.eventDetails.deathLocationOther.country + + declaration.eventDetails.deathLocationOther.province + + declaration.eventDetails.deathLocationOther.district + + declaration.eventDetails.deathLocationOther.town + + declaration.eventDetails.deathLocationOther.residentialArea + + declaration.eventDetails.deathLocationOther.street + + declaration.eventDetails.deathLocationOther.number + + declaration.eventDetails.deathLocationOther.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant type + */ + await expectRowValue('informant.relation', declaration.informant.relation) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expectRowValue( + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + */ + await expectRowValue( + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + */ + await expectRowValue( + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + */ + await expectRowValue('informant.idType', declaration.informant.idType) + + /* + * Expected result: should include + * - informant's address + */ + await expectRowValue( + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.state + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.addressLine1 + + declaration.informant.address.addressLine2 + + declaration.informant.address.addressLine3 + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expectRowValue('informant.email', declaration.informant.email) + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + */ + await expectRowValue('spouse.detailsNotAvailable', 'Yes') + + await expectRowValue('spouse.reason', declaration.spouse.reason) + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-7.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-7.spec.ts new file mode 100644 index 0000000000..cdd376c599 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-7.spec.ts @@ -0,0 +1,755 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + formatDateObjectTo_dMMMMyyyy, + getRandomDate, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty } from '../../../v2-utils' + +test.describe.serial('7. Death declaration case - 7', () => { + let page: Page + async function expectRowValue(fieldName: string, assertionText: string) { + await expect(page.getByTestId(`row-value-${fieldName}`)).toContainText( + assertionText + ) + } + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + gender: 'Female', + age: 45, + nationality: 'Farajaland', + idType: 'None', + maritalStatus: 'Not stated', + address: { + country: 'Guam', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + eventDetails: { + mannerOfDeath: 'Manner undetermined', + date: getRandomDate(0, 20), + causeOfDeathEstablished: false, + placeOfDeath: 'Other', + deathLocationOther: { + country: 'Germany', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + informant: { + relation: 'Father', + email: faker.internet.email(), + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + age: 17, + nationality: 'Malawi', + idType: 'None', + addressSameAs: false, + address: { + country: 'Comoros', + state: faker.location.state(), + district: faker.location.county(), + town: faker.location.city(), + addressLine1: faker.location.county(), + addressLine2: faker.location.street(), + addressLine3: faker.location.buildingNumber(), + postcodeOrZip: faker.location.zipCode() + } + }, + spouse: { + detailsNotAvailable: true, + reason: 'Spouse ran away' + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('7.1 Declaration started by National Registrar', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.NATIONAL_REGISTRAR) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('7.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await page.locator('#deceased____gender').click() + await page.getByText(declaration.deceased.gender, { exact: true }).click() + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#deceased____age') + .fill(declaration.deceased.age.toString()) + + await page.locator('#deceased____idType').click() + await page.getByText(declaration.deceased.idType, { exact: true }).click() + + await page.locator('#deceased____maritalStatus').click() + await page + .getByText(declaration.deceased.maritalStatus, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .getByText(declaration.deceased.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.deceased.address.state) + await page + .locator('#district2') + .fill(declaration.deceased.address.district) + await page.locator('#cityOrTown').fill(declaration.deceased.address.town) + await page + .locator('#addressLine1') + .fill(declaration.deceased.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.deceased.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.deceased.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.deceased.address.postcodeOrZip) + + await continueForm(page) + }) + + test('7.1.2 Fill event details', async () => { + await page.getByPlaceholder('dd').fill(declaration.eventDetails.date.dd) + await page.getByPlaceholder('mm').fill(declaration.eventDetails.date.mm) + await page + .getByPlaceholder('yyyy') + .fill(declaration.eventDetails.date.yyyy) + + await page.locator('#eventDetails____mannerOfDeath').click() + await page + .getByText(declaration.eventDetails.mannerOfDeath, { exact: true }) + .click() + + await page.locator('#eventDetails____placeOfDeath').click() + await page + .getByText(declaration.eventDetails.placeOfDeath, { exact: true }) + .click() + + await page.locator('#country').click() + await page + .getByText(declaration.eventDetails.deathLocationOther.country, { + exact: true + }) + .click() + + await page + .locator('#state') + .fill(declaration.eventDetails.deathLocationOther.state) + await page + .locator('#district2') + .fill(declaration.eventDetails.deathLocationOther.district) + await page + .locator('#cityOrTown') + .fill(declaration.eventDetails.deathLocationOther.town) + await page + .locator('#addressLine1') + .fill(declaration.eventDetails.deathLocationOther.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.eventDetails.deathLocationOther.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.eventDetails.deathLocationOther.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.eventDetails.deathLocationOther.postcodeOrZip) + + await continueForm(page) + }) + + test('7.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + + await page + .locator('#firstname') + .fill(declaration.informant.name.firstname) + await page.locator('#surname').fill(declaration.informant.name.surname) + + await page.getByLabel('Exact date of birth unknown').check() + + await page + .locator('#informant____age') + .fill(declaration.informant.age.toString()) + + await page.locator('#informant____nationality').click() + await page + .getByText(declaration.informant.nationality, { exact: true }) + .click() + + await page.locator('#informant____idType').click() + await page + .getByText(declaration.informant.idType, { exact: true }) + .click() + + await page.locator('#informant____addressSameAs_NO').check() + + await page.locator('#country').click() + await page + .getByText(declaration.informant.address.country, { exact: true }) + .click() + + await page.locator('#state').fill(declaration.informant.address.state) + await page + .locator('#district2') + .fill(declaration.informant.address.district) + await page.locator('#cityOrTown').fill(declaration.informant.address.town) + await page + .locator('#addressLine1') + .fill(declaration.informant.address.addressLine1) + await page + .locator('#addressLine2') + .fill(declaration.informant.address.addressLine2) + await page + .locator('#addressLine3') + .fill(declaration.informant.address.addressLine3) + await page + .locator('#postcodeOrZip') + .fill(declaration.informant.address.postcodeOrZip) + + await page + .locator('#informant____email') + .fill(declaration.informant.email) + + await continueForm(page) + }) + + test('7.1.4 Fill spouse details', async () => { + await page.getByLabel("Spouse's details are not available").check() + + await page.locator('#spouse____reason').fill(declaration.spouse.reason) + + await continueForm(page) + }) + + test('7.1.5 Go to preview', async () => { + await goToSection(page, 'review') + }) + + test('7.1.6 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + declaration.deceased.gender + ) + + /* + * Expected result: should include + * - Deceased's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.age', + declaration.deceased.age.toString() + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + declaration.deceased.nationality + ) + /* + * Expected result: should include + * - Deceased's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + declaration.deceased.idType + ) + + /* + * Expected result: should include + * - Deceased's marital status + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Death location address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.deathLocationOther', + declaration.eventDetails.deathLocationOther.country + + declaration.eventDetails.deathLocationOther.state + + declaration.eventDetails.deathLocationOther.district + + declaration.eventDetails.deathLocationOther.town + + declaration.eventDetails.deathLocationOther.addressLine1 + + declaration.eventDetails.deathLocationOther.addressLine2 + + declaration.eventDetails.deathLocationOther.addressLine3 + + declaration.eventDetails.deathLocationOther.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.nationality', + declaration.informant.nationality + ) + /* + * Expected result: should include + * - informant's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.idType', + declaration.informant.idType + ) + + /* + * Expected result: should include + * - informant's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.state + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.addressLine1 + + declaration.informant.address.addressLine2 + + declaration.informant.address.addressLine3 + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + declaration.informant.email + ) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.detailsNotAvailable', + declaration.spouse.detailsNotAvailable ? 'Yes' : 'No' + ) + await expectRowValueWithChangeButton( + page, + 'spouse.reason', + declaration.spouse.reason + ) + }) + + test('7.1.7 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('7.1.8 Register', async () => { + await page.getByRole('button', { name: 'Register' }).click() + await expect(page.getByText('Register the death?')).toBeVisible() + await page.locator('#confirm_Declare').click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Ready to print').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + test('7.1.8 Verify information on view page', async () => { + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + + await page.getByRole('button', { name: 'Action', exact: true }).click() + await page.getByText('View', { exact: true }).click() + + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + */ + await expectRowValue( + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should include + * - Deceased's Gender + */ + await expectRowValue('deceased.gender', declaration.deceased.gender) + + /* + * Expected result: should include + * - Deceased's age + */ + await expectRowValue('deceased.age', declaration.deceased.age.toString()) + + /* + * Expected result: should include + * - Deceased's Nationality + */ + await expectRowValue( + 'deceased.nationality', + declaration.deceased.nationality + ) + + /* + * Expected result: should include + * - Deceased's Type of Id + */ + await expectRowValue('deceased.idType', declaration.deceased.idType) + + /* + * Expected result: should include + * - Deceased's marital status + */ + await expectRowValue( + 'deceased.maritalStatus', + declaration.deceased.maritalStatus + ) + + /* + * Expected result: should include + * - Deceased's address + */ + await expectRowValue( + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.state + + declaration.deceased.address.district + + declaration.deceased.address.town + + declaration.deceased.address.addressLine1 + + declaration.deceased.address.addressLine2 + + declaration.deceased.address.addressLine3 + + declaration.deceased.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Date of death + */ + await expectRowValue( + 'eventDetails.date', + formatDateObjectTo_dMMMMyyyy(declaration.eventDetails.date) + ) + + /* + * Expected result: should include + * - Manner of death has been established + */ + await expectRowValue( + 'eventDetails.mannerOfDeath', + declaration.eventDetails.mannerOfDeath + ) + + /* + * Expected result: should include + * - Place of death + */ + await expectRowValue( + 'eventDetails.placeOfDeath', + declaration.eventDetails.placeOfDeath + ) + + /* + * Expected result: should include + * - Death location address + */ + await expectRowValue( + 'eventDetails.deathLocationOther', + declaration.eventDetails.deathLocationOther.country + + declaration.eventDetails.deathLocationOther.state + + declaration.eventDetails.deathLocationOther.district + + declaration.eventDetails.deathLocationOther.town + + declaration.eventDetails.deathLocationOther.addressLine1 + + declaration.eventDetails.deathLocationOther.addressLine2 + + declaration.eventDetails.deathLocationOther.addressLine3 + + declaration.eventDetails.deathLocationOther.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant type + */ + await expectRowValue('informant.relation', declaration.informant.relation) + + /* + * Expected result: should include + * - Informant's First Name + * - Informant's Family Name + */ + await expectRowValue( + 'informant.name', + declaration.informant.name.firstname + + ' ' + + declaration.informant.name.surname + ) + + /* + * Expected result: should include + * - informant's age + */ + await expectRowValue( + 'informant.age', + declaration.informant.age.toString() + ) + + /* + * Expected result: should include + * - informant's Nationality + */ + await expectRowValue( + 'informant.nationality', + declaration.informant.nationality + ) + + /* + * Expected result: should include + * - informant's Type of Id + */ + await expectRowValue('informant.idType', declaration.informant.idType) + + /* + * Expected result: should include + * - informant's address + */ + await expectRowValue( + 'informant.address', + declaration.informant.address.country + + declaration.informant.address.state + + declaration.informant.address.district + + declaration.informant.address.town + + declaration.informant.address.addressLine1 + + declaration.informant.address.addressLine2 + + declaration.informant.address.addressLine3 + + declaration.informant.address.postcodeOrZip + ) + + /* + * Expected result: should include + * - Informant's Email + */ + await expectRowValue('informant.email', declaration.informant.email) + + /* + * Expected result: should include + * - Spouse's details not available + * - Reason + */ + await expectRowValue( + 'spouse.detailsNotAvailable', + declaration.spouse.detailsNotAvailable ? 'Yes' : 'No' + ) + await expectRowValue('spouse.reason', declaration.spouse.reason) + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-8.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-8.spec.ts new file mode 100644 index 0000000000..e58a3cf665 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-8.spec.ts @@ -0,0 +1,477 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from '../../v2-birth/helpers' + +test.describe.serial('8. Death declaration case - 8', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + nationality: 'Farajaland', + address: { + country: 'Farajaland', + province: 'Central', + district: 'Ibombo' + } + }, + informant: { + relation: 'Grandson' + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('8.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await continueForm(page) + }) + + test('8.1.2 Fill event details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('8.1.4 Go to preview', async () => { + await goToSection(page, 'review') + }) + + test('8.1.5 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + 'Farajaland' + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectRowValueWithChangeButton( + page, + 'spouse.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + 'Farajaland' + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + + test('8.1.6 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('8.1.7 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + + test.describe('8.2 Declaration Review by RA', async () => { + test('8.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('8.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + 'Farajaland' + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectRowValueWithChangeButton( + page, + 'spouse.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + 'Farajaland' + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + }) +}) diff --git a/e2e/testcases/v2-death/declaration/death-declaration-9.spec.ts b/e2e/testcases/v2-death/declaration/death-declaration-9.spec.ts new file mode 100644 index 0000000000..1958a06f10 --- /dev/null +++ b/e2e/testcases/v2-death/declaration/death-declaration-9.spec.ts @@ -0,0 +1,475 @@ +import { test, expect, type Page } from '@playwright/test' +import { + continueForm, + drawSignature, + expectRowValueWithChangeButton, + goToSection, + loginToV2 +} from '../../../helpers' +import { faker } from '@faker-js/faker' +import { CREDENTIALS } from '../../../constants' +import { ensureOutboxIsEmpty, selectAction } from '../../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from '../../v2-birth/helpers' + +test.describe.serial('9. Death declaration case - 9', () => { + let page: Page + + const declaration = { + deceased: { + name: { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + nationality: 'Farajaland', + address: { + country: 'Farajaland', + province: 'Central', + district: 'Ibombo' + } + }, + informant: { + relation: 'Grandson' + } + } + const annotation = { + review: { + comment: "He was a great person, we'll miss him" + } + } + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.describe('9.1 Declaration started by FA', async () => { + test.beforeAll(async () => { + await loginToV2(page, CREDENTIALS.FIELD_AGENT) + + await page.click('#header-new-event') + await page.getByLabel('Death').click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.1 Fill deceased details', async () => { + await page.locator('#firstname').fill(declaration.deceased.name.firstname) + await page.locator('#surname').fill(declaration.deceased.name.surname) + await continueForm(page) + }) + + test('9.1.2 Fill event details', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.3 Fill informant details', async () => { + await page.locator('#informant____relation').click() + await page + .getByText(declaration.informant.relation, { + exact: true + }) + .click() + + await page.waitForTimeout(500) // Temporary measurement untill the bug is fixed. BUG: rerenders after selecting relation with deceased + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('9.1.4 Go to preview', async () => { + await goToSection(page, 'review') + }) + + test('9.1.5 Verify information on preview page', async () => { + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + ) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + 'Farajaland' + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectRowValueWithChangeButton( + page, + 'spouse.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + 'Farajaland' + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + + test('9.1.6 Fill up informant signature', async () => { + await page.locator('#review____comment').fill(annotation.review.comment) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('9.1.7 Send for review', async () => { + await page.getByRole('button', { name: 'Send for review' }).click() + await expect(page.getByText('Send for review?')).toBeVisible() + await page.getByRole('button', { name: 'Confirm' }).click() + await ensureOutboxIsEmpty(page) + await expect(page.getByText('Farajaland CRS')).toBeVisible() + + /* + * Expected result: should redirect to assigned to you workqueue + */ + expect(page.url().includes('assigned-to-you')).toBeTruthy() + + await page.getByText('Sent for review').click() + + /* + * Expected result: The declaration should be in sent for review + */ + await expect( + page.getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + ).toBeVisible() + }) + }) + + test.describe('9.2 Declaration Review by RA', async () => { + test('9.2.1 Navigate to the declaration review page', async () => { + await loginToV2(page, CREDENTIALS.REGISTRATION_AGENT) + + await ensureOutboxIsEmpty(page) + await page.getByText('Notifications').click() + + await page + .getByRole('button', { + name: + declaration.deceased.name.firstname + + ' ' + + declaration.deceased.name.surname + }) + .click() + }) + + test('9.2.2 Verify information on review page', async () => { + await selectAction(page, 'Review') + /* + * Expected result: should include + * - Deceased's First Name + * - Deceased's Family Name + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.name', + declaration.deceased.name.firstname + ) + + /* + * Expected result: should require + * - Deceased's Gender + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.gender', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Deceased's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.nationality', + 'Farajaland' + ) + /* + * Expected result: should require + * - Deceased's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Deceased's address + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'deceased.address', + declaration.deceased.address.country + + declaration.deceased.address.province + + declaration.deceased.address.district + ) + + /* + * Expected result: should require + * - Date of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.date', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Place of death + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'eventDetails.placeOfDeath', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Informant type + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.relation', + declaration.informant.relation + ) + + /* + * Expected result: should require + * - Informant's Email + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'informant.email', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's First Name + * - Spouse's Family Name + * - Change button + */ + + await expectRowValueWithChangeButton( + page, + 'spouse.name', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's date of birth + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.dob', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should include + * - Spouse's Nationality + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.nationality', + 'Farajaland' + ) + + /* + * Expected result: should require + * - Spouse's Type of Id + * - Change button + */ + await expectRowValueWithChangeButton( + page, + 'spouse.idType', + REQUIRED_VALIDATION_ERROR + ) + + /* + * Expected result: should require + * - Spouse's address + * - Change button + */ + await expectRowValueWithChangeButton(page, 'spouse.addressSameAs', 'Yes') + }) + }) +}) diff --git a/e2e/testcases/v2-events-rest-api/create-and-notify-event.spec.ts b/e2e/testcases/v2-events-rest-api/create-and-notify-event.spec.ts new file mode 100644 index 0000000000..6bf61b84fa --- /dev/null +++ b/e2e/testcases/v2-events-rest-api/create-and-notify-event.spec.ts @@ -0,0 +1,885 @@ +import { expect, Page, test } from '@playwright/test' +import { v4 as uuidv4 } from 'uuid' +import { CLIENT_URL, GATEWAY_HOST } from '../../constants' +import { CREDENTIALS } from '../../constants' +import { + drawSignature, + fetchUserLocationHierarchy, + formatName, + getClientToken, + getToken, + loginToV2 +} from '../../helpers' +import { addDays, format, subDays } from 'date-fns' +import { faker } from '@faker-js/faker' +import { ensureAssigned, expectInUrl, selectAction } from '../../v2-utils' +import { getAllLocations } from '../birth/helpers' + +import decode from 'jwt-decode' +import { + formatV2ChildName, + REQUIRED_VALIDATION_ERROR +} from '../v2-birth/helpers' +import { getDeclaration } from '../v2-test-data/birth-declaration' +import { + printAndExpectPopup, + selectRequesterType +} from '../v2-print-certificate/birth/helpers' + +async function fetchClientAPI( + path: string, + method: 'GET' | 'POST' | 'PUT' | 'DELETE', + token: string, + body: object = {} +) { + const url = new URL(`${CLIENT_URL}${path}`) + + return fetch(url, { + method, + body: JSON.stringify(body), + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + } + }) +} + +async function createSystemUser(token: string) { + const name = `Test-int. ${format(new Date(), 'dd.MM. HH:mm:ss')}` + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: ` + mutation registerSystem($system: SystemInput) { + registerSystem(system: $system) { + clientSecret + system { + clientId + shaSecret + } + } + } + `, + variables: { + system: { + name, + type: 'HEALTH' + } + } + }) + }) + + const body = await res.json() + + return { + name, + clientSecret: body.data.registerSystem.clientSecret as string, + system: body.data.registerSystem.system as { + clientId: string + shaSecret: string + } + } +} + +async function deleteSystemUser(token: string, clientId: string) { + await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + operationName: 'deleteSystem', + variables: { + clientId + }, + query: `mutation deleteSystem($clientId: ID!) { deleteSystem(clientId: $clientId) { + _id + clientId + name + shaSecret + status + type + __typename + } + }` + }) + }) +} + +const EVENT_TYPE = 'birth' + +test.describe('Events REST API', () => { + let clientToken: string + let clientId: string + let systemAdminToken: string + let clientName: string + + test.beforeAll(async () => { + systemAdminToken = await getToken( + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.USERNAME, + CREDENTIALS.NATIONAL_SYSTEM_ADMIN.PASSWORD + ) + const { system, clientSecret, name } = + await createSystemUser(systemAdminToken) + + clientName = name + clientId = system.clientId + clientToken = await getClientToken(clientId, clientSecret) + }) + + test.afterAll(async () => { + await deleteSystemUser(systemAdminToken, clientId) + }) + + test.describe('POST /api/events/events', () => { + test('HTTP 401 when invalid token is used', async () => { + const response = await fetchClientAPI( + '/api/events/events', + 'POST', + 'foobar' + ) + expect(response.status).toBe(401) + }) + + test('HTTP 403 when user is missing scope', async () => { + const response = await fetchClientAPI( + '/api/events/events', + 'POST', + // use system admin token which doesnt have required scope to create event + systemAdminToken + ) + + expect(response.status).toBe(403) + }) + + test('HTTP 400 with missing payload', async () => { + const response = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken + ) + + expect(response.status).toBe(400) + const body = await response.json() + expect(body.message).toBe('Input validation failed') + }) + + test('HTTP 400 with invalid payload', async () => { + const response = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: 'foobar' + } + ) + + expect(response.status).toBe(400) + const body = await response.json() + expect(body.message).toBe('Input validation failed') + }) + + test('HTTP 200 with valid payload', async () => { + const response = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const body = await response.json() + + expect(response.status).toBe(200) + expect(body.type).toBe(EVENT_TYPE) + expect(body.actions.length).toBe(1) + }) + + test('API is idempotent', async () => { + const transactionId = uuidv4() + const response1 = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId + } + ) + + const response2 = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId + } + ) + + const body1 = await response1.json() + const body2 = await response2.json() + + expect(response1.status).toBe(200) + expect(response2.status).toBe(200) + expect(body1).toEqual(body2) + }) + }) + + test.describe('POST /api/events/events/notifications', () => { + let healthFacilityId: string + + test.beforeAll(async () => { + const healthFacilities = await getAllLocations('HEALTH_FACILITY') + + if (!healthFacilities[0].id) { + throw new Error('No health facility found') + } + + healthFacilityId = healthFacilities[0].id + }) + + test('HTTP 401 when invalid token is used', async () => { + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + 'foobar' + ) + expect(response.status).toBe(401) + }) + + test('HTTP 403 when user is missing scope', async () => { + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + // use system admin token which doesnt have required scope to create event + systemAdminToken + ) + expect(response.status).toBe(403) + }) + + test('HTTP 400 with missing payload', async () => { + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken + ) + + expect(response.status).toBe(400) + const body = await response.json() + expect(body.message).toBe('Input validation failed') + }) + + test('HTTP 400 with invalid payload', async () => { + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + type: 'foobar' + } + ) + + expect(response.status).toBe(400) + const body = await response.json() + expect(body.message).toBe('Input validation failed') + }) + + test('HTTP 400 with payload containing declaration with unexpected fields', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const fakeSurname = faker.person.lastName() + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'foo.bar': 'this should cause an error', + 'child.name': { surname: fakeSurname }, + 'child.dob': format(subDays(new Date(), 1), 'yyyy-MM-dd') + }, + annotation: {} + } + ) + + expect(response.status).toBe(400) + const body = await response.json() + expect(body.message).toBe( + `[{"message":"Unexpected field","id":"foo.bar","value":"this should cause an error"},{"message":"Invalid input","id":"child.name","value":{"surname":"${fakeSurname}"}}]` + ) + }) + + test('HTTP 400 with payload containing declaration with invalid values', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const fakeSurname = faker.person.lastName() + + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { surname: fakeSurname }, + // this should cause an error because the date is in the future + 'child.dob': format(addDays(new Date(), 10), 'yyyy-MM-dd') + }, + annotation: {} + } + ) + + expect(response.status).toBe(400) + const body = await response.json() + expect(body.message).toBe( + `[{"message":"Invalid input","id":"child.name","value":{"surname":"${fakeSurname}"}}]` + ) + }) + + test('HTTP 400 with payload containing declaration with values of wrong type', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { surname: 12345 } + }, + annotation: {} + } + ) + + expect(response.status).toBe(400) + const body = await response.json() + expect(body.message).toBe( + '[{"message":"Invalid input","id":"child.name","value":{}}]' + ) + }) + + test('HTTP 404 when trying to notify a non-existing event', async () => { + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId: uuidv4(), + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'child.dob': format(subDays(new Date(), 1), 'yyyy-MM-dd') + }, + annotation: {} + } + ) + + expect(response.status).toBe(404) + }) + + test('HTTP 400 when trying to notify an event without createdAtLocation', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const childName = { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { + firstname: childName.firstNames, + surname: childName.familyName + }, + 'child.dob': format(subDays(new Date(), 1), 'yyyy-MM-dd') + }, + annotation: {} + } + ) + + const body = await response.json() + + expect(response.status).toBe(400) + expect(body.message).toBe( + 'createdAtLocation is required and must be a valid office id' + ) + }) + + test('HTTP 400 when trying to notify an event with an invalid createdAtLocation', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const childName = { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { + firstname: childName.firstNames, + surname: childName.familyName + }, + 'child.dob': format(subDays(new Date(), 1), 'yyyy-MM-dd') + }, + annotation: {}, + createdAtLocation: 'invalid-location-id' + } + ) + + const body = await response.json() + + expect(response.status).toBe(400) + expect(body.message).toBe('Input validation failed') + }) + + test('HTTP 400 when trying to notify an event with a non-office createdAtLocation', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const childName = { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + + const locations = await getAllLocations('ADMIN_STRUCTURE') + const centralLocation = locations.find( + (location) => location.name === 'Central' + ) + + if (!centralLocation) { + throw new Error('No central location found') + } + + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { + firstname: childName.firstNames, + surname: childName.familyName + }, + 'child.dob': format(subDays(new Date(), 1), 'yyyy-MM-dd') + }, + annotation: {}, + createdAtLocation: centralLocation.id + } + ) + + const body = await response.json() + + expect(response.status).toBe(400) + expect(body.message).toBe('createdAtLocation must be an office location') + }) + + test('HTTP 200 with valid payload', async ({ page }) => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + expect(createEventResponse.status).toBe(200) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const childName = { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + + const token = await loginToV2(page) + const { sub } = decode<{ sub: string }>(token) + + const location = await fetchUserLocationHierarchy(sub, { + headers: { + Authorization: `Bearer ${token}` + } + }) + + const response = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { + firstname: childName.firstNames, + surname: childName.familyName + }, + 'child.dob': format(subDays(new Date(), 1), 'yyyy-MM-dd') + }, + annotation: {}, + createdAtLocation: location[location.length - 1] + } + ) + + const body = await response.json() + + expect(response.status).toBe(200) + expect(body.type).toBe(EVENT_TYPE) + expect(body.actions.length).toBe(3) + expect(body.actions[0].type).toBe('CREATE') + expect(body.actions[1].type).toBe('NOTIFY') + expect(body.actions[1].status).toBe('Requested') + expect(body.actions[2].type).toBe('NOTIFY') + expect(body.actions[2].status).toBe('Accepted') + + // check that event is created in UI + + await page.getByRole('button', { name: 'Notifications' }).click() + + await page.getByText(await formatName(childName)).click() + + await ensureAssigned(page) + + await expect(page.locator('#row_0')).toContainText('Sent incomplete') + await expect(page.locator('#row_0')).toContainText(clientName) + await expect(page.locator('#row_0')).toContainText('Health integration') + + // Open modal by clicking 'Sent incomplete' action row + await page.getByText('Sent incomplete').click() + const modal = await page.getByTestId('event-history-modal') + expect(modal).toContainText('Sent incomplete') + expect(modal).toContainText(clientName) + + // Close the modal + await page.locator('#close-btn').click() + + // View the event details + await selectAction(page, 'View') + await expect(page.getByTestId('row-value-child.name')).toHaveText( + formatName(childName) + ) + }) + + test('API is idempotent', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + const eventId = createEventResponseBody.id + + const childName = { + firstNames: faker.person.firstName(), + familyName: faker.person.lastName() + } + + const requestBody = { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration: { + 'child.name': { + firstname: childName.firstNames, + surname: childName.familyName + }, + 'child.dob': format(subDays(new Date(), 1), 'yyyy-MM-dd') + }, + annotation: {}, + createdAtLocation: healthFacilityId + } + + const response1 = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + requestBody + ) + + const response2 = await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + requestBody + ) + + const body1 = await response1.json() + const body2 = await response2.json() + + expect(response1.status).toBe(200) + expect(response2.status).toBe(200) + expect(body1).toEqual(body2) + }) + }) + + test.describe + .serial('Local Registrar can register and print an event notified via integration', async () => { + const childName = { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + } + + let token: string + let page: Page + let eventId: string + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Login', async () => { + token = await loginToV2(page) + }) + + test('Notify event an event via integration', async () => { + const createEventResponse = await fetchClientAPI( + '/api/events/events', + 'POST', + clientToken, + { + type: EVENT_TYPE, + transactionId: uuidv4() + } + ) + + const createEventResponseBody = await createEventResponse.json() + eventId = createEventResponseBody.id + const { sub } = decode<{ sub: string }>(token) + + const location = await fetchUserLocationHierarchy(sub, { + headers: { + Authorization: `Bearer ${token}` + } + }) + + const declaration = { + ...(await getDeclaration({})), + 'child.name': childName, + 'child.dob': undefined + } + + await fetchClientAPI( + '/api/events/events/notifications', + 'POST', + clientToken, + { + eventId, + transactionId: uuidv4(), + type: 'NOTIFY', + declaration, + annotation: {}, + createdAtLocation: location[location.length - 1] + } + ) + }) + + test("Navigate to event via 'Notifications' -workqueue", async () => { + await page.getByRole('button', { name: 'Notifications' }).click() + await page + .getByText(await formatV2ChildName({ 'child.name': childName })) + .click() + }) + + test('Review event', async () => { + await selectAction(page, 'Review') + + await expect(page.getByTestId('row-value-child.name')).toHaveText( + formatV2ChildName({ 'child.name': childName }) + ) + + await expect(page.getByTestId('row-value-child.dob')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + + await expect( + page.getByRole('button', { name: 'Register' }) + ).toBeDisabled() + }) + + test('Fill missing child dob field', async () => { + await page.getByTestId('change-button-child.dob').click() + await page.getByRole('button', { name: 'Continue' }).click() + + const yesterday = new Date() + yesterday.setDate(new Date().getDate() - 1) + const [yyyy, mm, dd] = yesterday.toISOString().split('T')[0].split('-') + + await page.getByPlaceholder('dd').fill(dd) + await page.getByPlaceholder('mm').fill(mm) + await page.getByPlaceholder('yyyy').fill(yyyy) + }) + + const newChildName = { + firstname: childName.firstname, + surname: `Laurila-${childName.surname}` + } + + test('Change child surname', async () => { + await page.getByTestId('text__surname').fill(newChildName.surname) + await page.getByRole('button', { name: 'Back to review' }).click() + + await expect(page.getByTestId('row-value-child.dob')).not.toHaveText( + REQUIRED_VALIDATION_ERROR + ) + }) + + test('Fill comment & signature', async () => { + await page.locator('#review____comment').fill(faker.lorem.sentence()) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page + .locator('#review____signature_modal') + .getByRole('button', { name: 'Apply' }) + .click() + }) + + test('Register event', async () => { + await page.getByRole('button', { name: 'Register', exact: true }).click() + await page.locator('#confirm_Declare').click() + }) + + test("Navigate to event via 'Ready to print' -workqueue", async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await page + .getByText(await formatV2ChildName({ 'child.name': newChildName })) + .click() + }) + + test('Print certificate', async () => { + await selectAction(page, 'Print') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.locator('#print')).toContainText( + formatV2ChildName({ 'child.name': newChildName }) + ) + + await expect(page.locator('#print')).toContainText( + 'Ibombo District Office' + ) + + await expect(page.locator('#print')).toContainText( + 'Ibombo, Central, Farajaland' + ) + + await printAndExpectPopup(page) + + await expectInUrl(page, `/events/overview/${eventId}`) + }) + }) +}) diff --git a/e2e/testcases/v2-form-state/form-state.spec.ts b/e2e/testcases/v2-form-state/form-state.spec.ts new file mode 100644 index 0000000000..e0e4ca1462 --- /dev/null +++ b/e2e/testcases/v2-form-state/form-state.spec.ts @@ -0,0 +1,185 @@ +import { expect, Page, test } from '@playwright/test' +import { drawSignature, getToken, goToSection, loginToV2 } from '../../helpers' +import { faker } from '@faker-js/faker' +import { fillChildDetails, openBirthDeclaration } from '../v2-birth/helpers' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' +import { selectAction } from '../../v2-utils' +import { + navigateToCertificatePrintAction, + selectRequesterType +} from '../v2-print-certificate/birth/helpers' +import { REQUIRED_VALIDATION_ERROR } from '../v2-birth/helpers' + +test.describe('Form state', () => { + test.describe + .serial('Declaration form state or annotation is not persisted to a new event', async () => { + let childName = '' + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Login', async () => { + await loginToV2(page) + }) + + test('Create a draft', async () => { + await openBirthDeclaration(page) + childName = await fillChildDetails(page) + + await goToSection(page, 'review') + + // Fill annotation + const sentence = faker.lorem.sentence(5) + await page.locator('#review____comment').fill(sentence) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page.getByRole('button', { name: 'Apply' }).click() + + // Save & Exit draft + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + }) + + test('Form states and annotations are not persisted', async () => { + //@todo: The user should be navigated to "my-drafts" tab by default + await page.getByText('My drafts').click() + + await expect( + page.getByRole('button', { name: childName, exact: true }) + ).toBeVisible() + + await openBirthDeclaration(page) + await goToSection(page, 'review') + + // Child name fields should be empty + await expect(page.getByTestId('row-value-child.name')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + // Comment should be empty and sign button should be visible + await expect(page.locator('#review____comment')).toHaveValue('') + await expect(page.getByRole('button', { name: 'Sign' })).toBeVisible() + }) + }) + + test.describe + .serial('Declaration form state or annotation is not persisted to another events action', async () => { + let page: Page + let actionableEventChildName = '' + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + test('Login', async () => { + await loginToV2(page) + }) + + // First create a draft event, which we will come back to later + test('Create a draft', async () => { + await openBirthDeclaration(page) + actionableEventChildName = await fillChildDetails(page) + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + + // Now create another draft and fill in more details, incl. annotation + await openBirthDeclaration(page) + await fillChildDetails(page) + await page.getByRole('button', { name: 'Continue' }).click() + await page + .getByTestId('text__informant____email') + .fill(faker.internet.email()) + + await goToSection(page, 'review') + + // Fill annotation + const sentence = faker.lorem.sentence(5) + await page.locator('#review____comment').fill(sentence) + await page.getByRole('button', { name: 'Sign', exact: true }).click() + await drawSignature(page, 'review____signature_canvas_element', false) + await page.getByRole('button', { name: 'Apply' }).click() + + // Save & Exit draft + await page.getByRole('button', { name: 'Save & Exit' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + }) + + test('Form states and annotations are not persisted', async () => { + await page.getByRole('button', { name: 'My drafts' }).click() + await page + .getByRole('button', { name: actionableEventChildName, exact: true }) + .click() + + await selectAction(page, 'Declare') + + await expect(page.getByTestId('row-value-child.name')).not.toHaveText( + REQUIRED_VALIDATION_ERROR + ) + + await expect(page.getByTestId('row-value-informant.email')).toHaveText( + REQUIRED_VALIDATION_ERROR + ) + // Comment should be empty and sign button should be visible + await expect(page.locator('#review____comment')).toHaveValue('') + await expect(page.getByRole('button', { name: 'Sign' })).toBeVisible() + }) + }) + + test.describe + .serial('Action annotation state is not persisted to another action instance', async () => { + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Login', async () => { + await loginToV2(page) + }) + + test('Create a declaration', async () => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + declaration = (await createDeclaration(token)).declaration + await page.reload() + }) + test('Form states and annotations are not persisted', async () => { + expect(declaration).toBeDefined() + + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration!) + await selectRequesterType(page, 'Print and issue to someone else') + + await page.getByTestId('text__firstname').fill(faker.person.firstName()) + + await page.getByTestId('exit-button').click() + + await navigateToCertificatePrintAction(page, declaration!) + + await expect( + page.getByTestId('select__collector____requesterId') + ).not.toHaveText('Print and issue to someone else') + + await expect(page.getByTestId('text__firstname')).not.toBeVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-messages/roles-in-record-audit.spec.ts b/e2e/testcases/v2-messages/roles-in-record-audit.spec.ts new file mode 100644 index 0000000000..6da9743fa8 --- /dev/null +++ b/e2e/testcases/v2-messages/roles-in-record-audit.spec.ts @@ -0,0 +1,66 @@ +import { expect, test } from '@playwright/test' +import { CREDENTIALS } from '../../constants' +import { getToken, loginToV2 } from '../../helpers' +import { createDeclaration } from '../v2-test-data/birth-declaration' +import { ActionType } from '@opencrvs/toolkit/events' +import { ensureAssigned } from '../../v2-utils' +import { formatV2ChildName } from '../v2-birth/helpers' + +const testCases = [ + { + credential: CREDENTIALS.FIELD_AGENT, + action: ActionType.DECLARE, + expectedAuditRole: 'Hospital Clerk' + }, + + { + credential: CREDENTIALS.ANOTHER_FIELD_AGENT, + action: ActionType.DECLARE, + expectedAuditRole: 'Community Leader' + }, + { + credential: CREDENTIALS.REGISTRATION_AGENT, + action: ActionType.VALIDATE, + expectedAuditRole: 'Registration Agent' + }, + { + credential: CREDENTIALS.LOCAL_REGISTRAR, + action: ActionType.REGISTER, + expectedAuditRole: 'Local Registrar' + } +] + +test.describe('Roles in Record Audit', () => { + for (const { credential, expectedAuditRole, action } of testCases) { + test(expectedAuditRole, async ({ browser }) => { + const page = await browser.newPage() + const token = await getToken(credential.USERNAME, credential.PASSWORD) + const res = await createDeclaration(token, undefined, action) + + await loginToV2(page, CREDENTIALS.LOCAL_REGISTRAR) + + await expect(page.locator('#content-name')).toHaveText( + 'Assigned to you', + { + timeout: 90000 + } + ) + + await page + .getByRole('textbox', { name: 'Search for a tracking ID' }) + .fill(formatV2ChildName(res.declaration)) + + await page.getByRole('button', { name: 'Search' }).click() + await page + .getByRole('button', { + name: formatV2ChildName(res.declaration), + exact: true + }) + .click() + + await ensureAssigned(page) + + await expect(page.locator('#row_0')).toContainText(expectedAuditRole) + }) + } +}) diff --git a/e2e/testcases/v2-navigation/navigating-in-and-out-of-action-from-workqueue.spec.ts b/e2e/testcases/v2-navigation/navigating-in-and-out-of-action-from-workqueue.spec.ts new file mode 100644 index 0000000000..8ccd65951c --- /dev/null +++ b/e2e/testcases/v2-navigation/navigating-in-and-out-of-action-from-workqueue.spec.ts @@ -0,0 +1,98 @@ +import { test, type Page } from '@playwright/test' + +import { loginToV2, getToken, formatName } from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' + +import { + selectCertificationType, + selectRequesterType +} from '../v2-print-certificate/birth/helpers' +import { expectInUrl } from '../../v2-utils' + +test.describe.serial('Navigating in and out of action', () => { + let page: Page + let declaration: Declaration + let eventId: string + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + eventId = res.eventId + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Login', async () => { + await loginToV2(page) + }) + + test("Navigate to the 'Ready to print' -workqueue", async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + }) + + test("Enter the 'Print' -action from workqueue", async () => { + const childName = formatName({ + firstNames: declaration['child.name'].firstname, + familyName: declaration['child.name'].surname + }) + // Locate the row with correct name + const row = page.locator('div', { hasText: childName }).first() + + // Click the "Assign record" button inside that row + await row + .getByRole('button', { name: 'Assign record', exact: true }) + .first() + .click() + + await page.getByRole('button', { name: 'Assign', exact: true }).click() + + // Click the "Review" button inside that row + await row + .getByRole('button', { name: 'Print', exact: true }) + .first() + .click() + }) + + test('Navigate successfully through the print certificate action flow', async () => { + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.waitForURL(/\/review/) + await expectInUrl( + page, + `/events/print-certificate/${eventId}/review?templateId=v2.birth-certificate&workqueue=ready-to-print` + ) + }) + + test('After finishing action flow, user should be redirected back to the workqueue', async () => { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + + await page.waitForURL(`**/workqueue/ready-to-print`) + await expectInUrl(page, '/workqueue/ready-to-print') + }) + + test('Browser back button should take user to the front page instead of action flow', async () => { + await page.goBack() + await page.waitForURL(`**/workqueue/assigned-to-you`) + await expectInUrl(page, '/workqueue/assigned-to-you') + }) + + test('Browser forward button should take user back to the workqueue', async () => { + await page.goForward() + await page.waitForURL(`**/workqueue/ready-to-print`) + await expectInUrl(page, `/workqueue/ready-to-print`) + }) +}) diff --git a/e2e/testcases/v2-navigation/navigating-in-and-out-of-action.spec.ts b/e2e/testcases/v2-navigation/navigating-in-and-out-of-action.spec.ts new file mode 100644 index 0000000000..9cafe92b11 --- /dev/null +++ b/e2e/testcases/v2-navigation/navigating-in-and-out-of-action.spec.ts @@ -0,0 +1,94 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../helpers' +import { CREDENTIALS } from '../../constants' +import { + createDeclaration, + Declaration +} from '../v2-test-data/birth-declaration' + +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../v2-print-certificate/birth/helpers' +import { expectInUrl } from '../../v2-utils' + +test.describe.serial('Navigating in and out of action', () => { + let page: Page + let declaration: Declaration + let eventId: string + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + eventId = res.eventId + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Login', async () => { + await loginToV2(page) + }) + + test('Navigate to ready to print', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + }) + + test('Navigate successfully through the print certificate action flow', async () => { + await navigateToCertificatePrintAction(page, declaration) + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.waitForURL(/\/review/) + await expectInUrl( + page, + `/events/print-certificate/${eventId}/review?templateId=v2.birth-certificate` + ) + }) + + test('Browser back and forward actions work correctly inside the action flow', async () => { + await page.goBack() + await page.goBack() + await page.goForward() + await page.goBack() + await expectInUrl( + page, + `/events/print-certificate/${eventId}/pages/collector.identity.verify` + ) + await page.goForward() + await page.goForward() + await page.waitForURL(/\/review/) + await expectInUrl( + page, + `/events/print-certificate/${eventId}/review?templateId=v2.birth-certificate` + ) + }) + + test('After finishing action flow, user should be redirected to the event overview page', async () => { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + + // Wait for PDF the load and the page to be redirected to the overview page + await page.waitForURL(`**/events/overview/${eventId}`) + await expectInUrl(page, `/events/overview/${eventId}`) + }) + + test('Browser back button should take user to the front page instead of action flow', async () => { + await page.goBack() + await expect(page.locator('#content-name')).toContainText('Ready to print') + }) + + test('Browser forward button should take user back to the event overview page', async () => { + await page.goForward() + await expectInUrl(page, `/events/overview/${eventId}`) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/36.01-02-validation-of-printing-certificate.spec.ts b/e2e/testcases/v2-print-certificate/birth/36.01-02-validation-of-printing-certificate.spec.ts new file mode 100644 index 0000000000..82a9c758fd --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/36.01-02-validation-of-printing-certificate.spec.ts @@ -0,0 +1,76 @@ +import { expect, test, type Page } from '@playwright/test' + +import { loginToV2, getToken } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/birth-declaration' +import { navigateToCertificatePrintAction } from './helpers' +import { expectInUrl } from '../../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from '../../v2-birth/helpers' + +test.describe.serial('Print certificate', () => { + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('1.0.2 Click on "Print certificate" from action menu', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test.describe('2.0 Validate "Certify record" page', async () => { + test('2.1 Template type should be selected by default', async () => { + await expect( + page.locator('#certificateTemplateId').getByText('Birth Certificate') + ).toBeVisible() + }) + + test('2.2 Click continue without selecting requester type', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page + .locator('#collector____requesterId_error') + .getByText(REQUIRED_VALIDATION_ERROR) + ).toBeVisible() + }) + + test('2.3 Click continue after selecting requester type and template type', async () => { + await page.reload({ waitUntil: 'networkidle' }) + await page.locator('#collector____requesterId').click() + const selectOptionsLabels = [ + 'Print and issue to Informant (Mother)', + 'Print and issue to someone else' + ] + for (const label of selectOptionsLabels) { + await expect(page.getByText(label, { exact: true })).toBeVisible() + } + + await page.getByText(selectOptionsLabels[0], { exact: true }).click() + + await expect(page.getByText('Certify record')).toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl(page, '/pages/collector.identity.verify') + }) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/36.03-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/birth/36.03-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..4abf565ba2 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/36.03-validate-certify-record-page.spec.ts @@ -0,0 +1,154 @@ +import { expect, test, type Page } from '@playwright/test' +import { CREDENTIALS } from '../../../constants' +import { getToken, loginToV2 } from '../../../helpers' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/birth-declaration' +import { + printAndExpectPopup, + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from './helpers' +import { ensureAssigned, expectInUrl } from '../../../v2-utils' + +test.describe.serial('3.0 Validate "Certify record" page', () => { + let eventId: string + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + eventId = res.eventId + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('3.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('3.1 should navigate to Verify their identity page', async () => { + await expectInUrl(page, `/print-certificate/${eventId}/pages/collector`) + + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + }) + + test('3.2 should see informant Id, names, nationality and dob', async () => { + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + + await expect(page.locator('#content-name')).toContainText( + 'Verify their identity' + ) + + await expect(page.getByText('Verify their identity')).toBeVisible() + + await expect(page.locator('#maincontent')).toContainText( + declaration['mother.nid'] + ) + await expect(page.locator('#maincontent')).toContainText( + declaration['mother.name'].firstname + + ' ' + + declaration['mother.name'].surname + ) + + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + }) + + test('3.3 should navigate to collect payment page on "Verified" button click', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + + await expect(page.locator('#content-name')).toContainText('Collect Payment') + + await expect(page.locator('#maincontent')).toContainText('Service') + await expect(page.locator('#maincontent')).toContainText( + 'Birth registration before 30 days of date of birth' + ) + await expect(page.locator('#maincontent')).toContainText('Fee') + await expect(page.locator('#maincontent')).toContainText('$5.00') + + await expect(page.getByRole('button', { name: 'Continue' })).toBeVisible() + await page.getByRole('button', { name: 'Back' }).click() + }) + + test('3.4 should open warning modal on "Identity does not match" button click', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await expect(page.getByRole('dialog')).toContainText( + 'Print without proof of ID?' + ) + await expect(page.getByRole('dialog')).toContainText( + 'Please be aware that if you proceed, you will be responsible for issuing a certificate without the necessary proof of ID from the collector' + ) + }) + + test('3.5 click warning modal cancel button should close the modal', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.getByRole('dialog')).toBeHidden() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + }) + + test('3.6 click warning modal confirm button should take to payment page', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await page.getByRole('button', { name: 'Confirm' }).click() + await expect(page.locator('#content-name')).toContainText('Collect Payment') + await expect(page.getByRole('button', { name: 'Continue' })).toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + + await expectInUrl( + page, + `/print-certificate/${eventId}/review?templateId=v2.birth-certificate` + ) + }) + + test('3.7 Print', async () => { + await printAndExpectPopup(page) + }) + + test('3.8 Validate Certified -modal', async () => { + await ensureAssigned(page) + await page.getByRole('button', { name: 'Certified', exact: true }).click() + + await expect(page.getByText('Type' + 'Birth Certificate')).toBeVisible() + await expect( + page.getByText('Requester' + 'Print and issue to Informant (Mother)') + ).toBeVisible() + await expect(page.getByText('Verified' + 'No')).toBeVisible() + + // Expect 3 rows + await expect(page.locator('#event-history-modal #row_0')).toBeVisible() + await expect(page.locator('#event-history-modal #row_1')).toBeVisible() + await expect(page.locator('#event-history-modal #row_2')).toBeVisible() + await expect(page.locator('#event-history-modal #row_3')).not.toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/36.05.06-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/birth/36.05.06-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..e8c72a35c7 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/36.05.06-validate-certify-record-page.spec.ts @@ -0,0 +1,168 @@ +import { expect, test, type Page } from '@playwright/test' +import { CREDENTIALS } from '../../../constants' +import { loginToV2 } from '../../../helpers' +import { getToken } from '../../../helpers' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/birth-declaration' +import { + selectRequesterType, + selectCertificationType, + navigateToCertificatePrintAction, + printAndExpectPopup +} from './helpers' +import { ensureAssigned, expectInUrl } from '../../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from '../../v2-birth/helpers' + +async function selectIdType(page: Page, idType: string) { + await page.locator('#collector____OTHER____idType').click() + await page.getByText(idType, { exact: true }).click() +} + +test.describe.serial('Validate collect payment page', () => { + let eventId: string + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + eventId = res.eventId + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('5.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('5.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('5.1 Select certification and requester type', async () => { + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to someone else') + }) + + test('5.2 should be able to select "No ID available" and no other ID field will be visible', async () => { + await selectIdType(page, 'No ID available') + await expect(page.locator('#collector____PASSPORT____details')).toBeHidden() + }) + + test('5.2 should be able to select any type of id and correspondent id input will be visible', async () => { + await selectIdType(page, 'Passport') + await expect( + page.locator('#collector____PASSPORT____details') + ).toBeVisible() + + await selectIdType(page, 'Other') + await expect( + page.locator('#collector____OTHER____idTypeOther') + ).toBeVisible() + }) + + test('5.2 should be able to select National ID and correspondent id input will be visible with validation rules', async () => { + await selectIdType(page, 'National ID') + await page.fill('#collector____nid', '1234567') + await page.getByRole('heading', { name: 'Birth', exact: true }).click() + + await expect(page.locator('#collector____nid_error')).toContainText( + 'The national ID can only be numeric and must be 10 digits long' + ) + await page.fill('#collector____nid', '1235678922') + await page.getByRole('heading', { name: 'Birth', exact: true }).click() + await expect(page.locator('#collector____nid_error')).toBeHidden() + }) + + test('5.3 should be able to enter first name', async () => { + await page.fill('#firstname', 'Muhammed Tareq') + await expect(page.locator('#firstname')).toHaveValue('Muhammed Tareq') + }) + + test('5.4 should be able to enter last name', async () => { + await page.fill('#surname', 'Aziz') + await expect(page.locator('#surname')).toHaveValue('Aziz') + }) + + test('5.5 keep relationship null and continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page + .locator('#collector____OTHER____relationshipToChild_error') + .getByText(REQUIRED_VALIDATION_ERROR) + ).toBeVisible() + }) + + test('5.6 should be able to enter relationship', async () => { + await page.fill('#collector____OTHER____relationshipToChild', 'Uncle') + await expect( + page.locator('#collector____OTHER____relationshipToChild') + ).toHaveValue('Uncle') + await page.getByRole('heading', { name: 'Birth', exact: true }).click() + }) + + test('5.7 Should be able to add file and navigate to the payment page', async () => { + const path = require('path') + const attachmentPath = path.resolve(__dirname, './528KB-random.png') + const inputFile = await page.locator( + 'input[name="collector____OTHER____signedAffidavit"][type="file"]' + ) + await inputFile.setInputFiles(attachmentPath) + await expect( + page.getByRole('button', { name: 'Signed Affidavit' }) + ).toBeVisible() + await expect(page.locator('#preview_delete')).toBeVisible() + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.collect.payment` + ) + }) + + test('5.8 Validate fee page', async () => { + await expect( + page.getByText('Birth registration before 30 days of date of birth') + ).toBeVisible() + await expect(page.getByText('$5.00')).toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('5.9 Print', async () => { + await printAndExpectPopup(page) + }) + + test('5.10 Validate Certified -modal', async () => { + await ensureAssigned(page) + await page.getByRole('button', { name: 'Certified', exact: true }).click() + + await expect(page.getByText('Type' + 'Birth Certificate')).toBeVisible() + await expect( + page.getByText('Requester' + 'Print and issue to someone else') + ).toBeVisible() + await expect(page.getByText('Type of ID' + 'National ID')).toBeVisible() + await expect(page.getByText('National ID' + '1235678922')).toBeVisible() + await expect( + page.getByText("Collector's name" + 'Muhammed Tareq Aziz') + ).toBeVisible() + await expect( + page.getByText('Relationship to child' + 'Uncle') + ).toBeVisible() + + await expect(page.getByText('Signed Affidavit (Optional)')).toBeVisible() + await expect( + page.getByRole('button', { name: 'Signed Affidavit' }) + ).toBeVisible() + await expect(page.getByText('Verified' + 'No')).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/36.07-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/birth/36.07-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..7a84496e7f --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/36.07-validate-certify-record-page.spec.ts @@ -0,0 +1,80 @@ +import { expect, test, type Page } from '@playwright/test' +import { CREDENTIALS } from '../../../constants' +import { getToken } from '../../../helpers' +import { loginToV2 } from '../../../helpers' +import { + createDeclaration, + getDeclaration, + Declaration +} from '../../v2-test-data/birth-declaration' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from './helpers' +import { expectInUrl } from '../../../v2-utils' + +test.describe.serial('7.0 Validate "Certify record" page', () => { + let eventId: string + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration( + token, + await getDeclaration({ informantRelation: 'BROTHER' }) + ) + eventId = res.eventId + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('7.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('7.1 continue with "Print and issue to Informant (Brother)" redirect to Collector details page', async () => { + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Brother)') + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + await page.getByRole('button', { name: 'Verified' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.collect.payment` + ) + + await expect(page.locator('#content-name')).toContainText('Collect Payment') + await expect( + page.getByText('Birth registration before 30 days of date of birth') + ).toBeVisible() + await expect(page.getByText('$5.00')).toBeVisible() + }) + + test('7.2 should navigate to ready to certify page on continue button click', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/review?templateId=v2.birth-certificate` + ) + }) + + // @TODO: this is not implemented in events v2 yet + test.skip('7.3 should skip payment page if payment is 0', async () => {}) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/36.09-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/birth/36.09-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..2a24e28bc5 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/36.09-validate-certify-record-page.spec.ts @@ -0,0 +1,64 @@ +import { expect, test, type Page } from '@playwright/test' + +import { Declaration } from '../../v2-test-data/birth-declaration' +import { getToken } from '../../../helpers' +import { createDeclaration } from '../../v2-test-data/birth-declaration' +import { CREDENTIALS } from '../../../constants' +import { loginToV2 } from '../../../helpers' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from './helpers' + +test.describe.serial('9.0 Validate "Certify record" page', () => { + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('9.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('9.0.1 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('9.1 Review page validations', async () => { + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.locator('#content-name')).toContainText( + 'Print certificate' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/36.10-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/birth/36.10-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..c012e4ce6f --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/36.10-validate-certify-record-page.spec.ts @@ -0,0 +1,71 @@ +import { expect, test, type Page } from '@playwright/test' +import { Declaration } from '../../v2-test-data/birth-declaration' +import { loginToV2 } from '../../../helpers' +import { createDeclaration } from '../../v2-test-data/birth-declaration' +import { CREDENTIALS } from '../../../constants' +import { getToken } from '../../../helpers' +import { + navigateToCertificatePrintAction, + printAndExpectPopup, + selectRequesterType +} from './helpers' +import { selectCertificationType } from './helpers' +import { expectInUrl } from '../../../v2-utils' + +test.describe.serial('10.0 Validate "Review" page', () => { + let declaration: Declaration + let page: Page + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + eventId = res.eventId + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('10.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('10.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('10.1 Review page validations', async () => { + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await expect(page.locator('#confirm-print-modal')).toBeVisible() + await expect(page.locator('#confirm-print-modal')).toContainText( + 'Print and issue certificate?' + ) + await expect(page.locator('#confirm-print-modal')).toContainText( + 'A Pdf of the certificate will open in a new tab for printing and issuing.' + ) + }) + + test('10.2 On click cancel button, modal will be closed', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) + + test('10.3 Click print button, user will navigate to a new tab from where user can download PDF', async () => { + await printAndExpectPopup(page) + + await expectInUrl(page, `/events/overview/${eventId}`) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/44.14-certified-copy.spec.ts b/e2e/testcases/v2-print-certificate/birth/44.14-certified-copy.spec.ts new file mode 100644 index 0000000000..9a76b7741f --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/44.14-certified-copy.spec.ts @@ -0,0 +1,80 @@ +import { expect, test, type Page } from '@playwright/test' + +import { Declaration } from '../../v2-test-data/birth-declaration' +import { getToken } from '../../../helpers' +import { createDeclaration } from '../../v2-test-data/birth-declaration' +import { CREDENTIALS } from '../../../constants' +import { loginToV2 } from '../../../helpers' +import { + navigateToCertificatePrintAction, + selectRequesterType +} from './helpers' +import { selectAction } from '../../../v2-utils' +import { formatV2ChildName } from '../../v2-birth/helpers' + +test.describe.serial('44.14.0 Validate "Certified copy" option', () => { + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('44.14.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('44.14.0.1 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('44.14.1 "Certified Copy" is not available in certificate types', async () => { + await page.locator('#certificateTemplateId svg').click() + await expect( + page.getByText('Birth Certificate Certified Copy', { exact: true }) + ).toHaveCount(0) + await page.locator('body').click() + }) + + test('44.14.2 Print certificate', async () => { + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + + test('44.14.3 "Certified Copy" is now available in certificate types', async () => { + await page + .getByRole('textbox', { name: 'Search for a tracking ID' }) + .fill(formatV2ChildName(declaration)) + + await page.getByRole('button', { name: 'Search' }).click() + await page + .getByRole('button', { + name: formatV2ChildName(declaration), + exact: true + }) + .click() + + await selectAction(page, 'Print') + await page.locator('#certificateTemplateId svg').click() + await expect( + page.getByText('Birth Certificate Certified Copy', { exact: true }) + ).toHaveCount(1) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/528KB-random.png b/e2e/testcases/v2-print-certificate/birth/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/e2e/testcases/v2-print-certificate/birth/528KB-random.png differ diff --git a/e2e/testcases/v2-print-certificate/birth/helpers.ts b/e2e/testcases/v2-print-certificate/birth/helpers.ts new file mode 100644 index 0000000000..2777ba4418 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/helpers.ts @@ -0,0 +1,48 @@ +import { Page, expect } from '@playwright/test' +import { Declaration } from '../../v2-test-data/birth-declaration' +import { selectAction } from '../../../v2-utils' + +export async function selectCertificationType(page: Page, type: string) { + await page.locator('#certificateTemplateId svg').click() + await page + .locator('.react-select__menu') + .getByText(type, { exact: true }) + .click() +} + +export async function selectRequesterType(page: Page, type: string) { + await page.locator('#collector____requesterId').click() + await page.getByText(type, { exact: true }).click() +} + +export async function navigateToCertificatePrintAction( + page: Page, + declaration: Declaration +) { + const childName = `${declaration['child.name'].firstname} ${declaration['child.name'].surname}` + await page.getByRole('button', { name: childName }).click() + await selectAction(page, 'Print') +} + +export function getRowByTitle(page: Page, title: string) { + const button = page.getByRole('button', { + name: title + }) + const parentRow = button.locator( + 'xpath=ancestor::*[starts-with(@id, "row_")]' + ) + return parentRow +} + +export async function printAndExpectPopup(page: Page) { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + const popupPromise = page.waitForEvent('popup') + await page.getByRole('button', { name: 'Print', exact: true }).click() + const popup = await popupPromise + const downloadPromise = popup.waitForEvent('download') + const download = await downloadPromise + + // Check that the popup URL contains PDF content + await expect(popup.url()).toBe('about:blank') + await expect(download.suggestedFilename()).toMatch(/^.*\.pdf$/) +} diff --git a/e2e/testcases/v2-print-certificate/birth/print-to-someone-else-using-alien-number.spec.ts b/e2e/testcases/v2-print-certificate/birth/print-to-someone-else-using-alien-number.spec.ts new file mode 100644 index 0000000000..2cde6242d9 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/print-to-someone-else-using-alien-number.spec.ts @@ -0,0 +1,86 @@ +import { expect, test, type Page } from '@playwright/test' +import { CREDENTIALS } from '../../../constants' +import { loginToV2 } from '../../../helpers' +import { getToken } from '../../../helpers' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/birth-declaration' +import { + selectRequesterType, + selectCertificationType, + navigateToCertificatePrintAction, + printAndExpectPopup +} from './helpers' +import { ensureAssigned } from '../../../v2-utils' + +async function selectIdType(page: Page, idType: string) { + await page.locator('#collector____OTHER____idType').click() + await page.getByText(idType, { exact: true }).click() +} + +test.describe + .serial('Print to someone else using Alien Number as ID type', () => { + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('Fill details, including Alien Number', async () => { + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to someone else') + + await selectIdType(page, 'Alien Number') + await page.fill('#collector____ALIEN-NUMBER____details', '1234567') + await page.getByRole('heading', { name: 'Birth', exact: true }).click() + + await page.fill('#firstname', 'Muhammed Tareq') + await page.fill('#surname', 'Aziz') + await page.fill('#collector____OTHER____relationshipToChild', 'Uncle') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Print', async () => { + await printAndExpectPopup(page) + }) + + test('Validate Certified -modal', async () => { + await ensureAssigned(page) + await page.getByRole('button', { name: 'Certified', exact: true }).click() + + await expect(page.getByText('Type' + 'Birth Certificate')).toBeVisible() + await expect( + page.getByText('Requester' + 'Print and issue to someone else') + ).toBeVisible() + await expect(page.getByText('Type of ID' + 'Alien Number')).toBeVisible() + await expect(page.getByText('Alien Number' + '1234567')).toBeVisible() + await expect( + page.getByText("Collector's name" + 'Muhammed Tareq Aziz') + ).toBeVisible() + await expect( + page.getByText('Relationship to child' + 'Uncle') + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/print-with-slow-connection.spec.ts b/e2e/testcases/v2-print-certificate/birth/print-with-slow-connection.spec.ts new file mode 100644 index 0000000000..7cc5bf0ecd --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/print-with-slow-connection.spec.ts @@ -0,0 +1,78 @@ +import { test, type Page, expect } from '@playwright/test' +import { CREDENTIALS } from '../../../constants' +import { loginToV2 } from '../../../helpers' +import { getToken } from '../../../helpers' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/birth-declaration' +import { + selectRequesterType, + selectCertificationType, + navigateToCertificatePrintAction +} from './helpers' +import { ensureAssigned, expectInUrl } from '../../../v2-utils' +import { mockNetworkConditions } from '../../../mock-network-conditions' + +test.describe + .serial('User should not be able to press print button twice', () => { + let declaration: Declaration + let page: Page + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + eventId = res.eventId + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('Fill details', async () => { + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Set slow connection', async () => { + await mockNetworkConditions(page, 'cellular2G') + }) + + test('Print with slow connection', async () => { + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + + const popupPromise = page.waitForEvent('popup') + await page.getByRole('button', { name: 'Print', exact: true }).click() + + await expect( + page.getByRole('button', { name: 'Yes, print certificate', exact: true }) + ).toBeDisabled() + + const popup = await popupPromise + const downloadPromise = popup.waitForEvent('download') + const download = await downloadPromise + + // Check that the popup URL contains PDF content + await expect(popup.url()).toBe('about:blank') + await expect(download.suggestedFilename()).toMatch(/^.*\.pdf$/) + await expectInUrl(page, `/events/overview/${eventId}`) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/birth/validate-pdf-details.spec.ts b/e2e/testcases/v2-print-certificate/birth/validate-pdf-details.spec.ts new file mode 100644 index 0000000000..29169b258f --- /dev/null +++ b/e2e/testcases/v2-print-certificate/birth/validate-pdf-details.spec.ts @@ -0,0 +1,136 @@ +import { test, type Page, expect } from '@playwright/test' +import { Declaration } from '../../v2-test-data/birth-declaration' +import { loginToV2 } from '../../../helpers' +import { createDeclaration } from '../../v2-test-data/birth-declaration' +import { CREDENTIALS } from '../../../constants' +import { getToken } from '../../../helpers' +import { + navigateToCertificatePrintAction, + selectRequesterType +} from './helpers' +import { selectCertificationType } from './helpers' +import { selectAction } from '../../../v2-utils' +import { formatV2ChildName } from '../../v2-birth/helpers' + +test.describe + .serial("Validate 'Birth Certificate Certified Copy' PDF details", () => { + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + // Create a declaration with a health facility place of birth + const res = await createDeclaration( + token, + undefined, + undefined, + 'HEALTH_FACILITY' + ) + + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Print birth certificate once', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await page.getByRole('button', { name: 'Print', exact: true }).click() + }) + + test('Go to review', async () => { + await page + .getByRole('textbox', { name: 'Search for a tracking ID' }) + .fill(formatV2ChildName(declaration)) + + await page.getByRole('button', { name: 'Search' }).click() + await page + .getByRole('button', { + name: formatV2ChildName(declaration), + exact: true + }) + .click() + await selectAction(page, 'Print') + await selectCertificationType(page, 'Birth Certificate Certified Copy') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Validate child place of birth', async () => { + await expect(page.locator('#print')).toContainText( + 'Ibombo Rural Health Centre' + ) + await expect(page.locator('#print')).toContainText( + 'Ibombo, Central, Farajaland' + ) + }) +}) + +test.describe.serial("Validate 'Birth Certificate' PDF details", () => { + let declaration: Declaration + let page: Page + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + // Create a declaration + const res = await createDeclaration( + token, + undefined, + undefined, + 'HEALTH_FACILITY' + ) + + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Go to review', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + await selectCertificationType(page, 'Birth Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Mother)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Validate child place of birth', async () => { + await expect(page.locator('#print')).toContainText( + 'Ibombo Rural Health Centre' + ) + await expect(page.locator('#print')).toContainText( + 'Ibombo, Central, Farajaland' + ) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/death/36.01-02-validation-of-printing-certificate.spec.ts b/e2e/testcases/v2-print-certificate/death/36.01-02-validation-of-printing-certificate.spec.ts new file mode 100644 index 0000000000..0408e41458 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/36.01-02-validation-of-printing-certificate.spec.ts @@ -0,0 +1,263 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, joinValuesWith, loginToV2 } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/death-declaration' +import { navigateToCertificatePrintAction } from '../death/helpers' +import { REQUIRED_VALIDATION_ERROR } from '../../v2-birth/helpers' +import { expectInUrl } from '../../../v2-utils' +import { faker } from '@faker-js/faker' + +test.describe.serial('Certified copies', () => { + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('1.0.2 Click on "Print certificate" from action menu', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test.describe('2.0 Validate "Certify record" page', async () => { + test('2.1 Click continue without selecting collector type and template type', async () => { + await expect( + page.locator('#certificateTemplateId').getByText('Death Certificate') + ).toBeVisible() + }) + + test('2.2 Click continue without selecting collector type', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + + await expect( + page + .locator('#collector____requesterId_error') + .getByText(REQUIRED_VALIDATION_ERROR) + ).toBeVisible() + }) + + test('2.3 Click continue after selecting requester type and template type', async () => { + await page.reload({ waitUntil: 'networkidle' }) + await page.locator('#collector____requesterId').click() + + const selectOptionsLabels = [ + 'Print and issue to Informant (Spouse)', + 'Print and issue to someone else' + ] + + for (const label of selectOptionsLabels) { + await expect(page.getByText(label, { exact: true })).toBeVisible() + } + + await page.getByText(selectOptionsLabels[0], { exact: true }).click() + + await expect(page.getByText('Certify record')).toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl(page, '/pages/collector.identity.verify') + + await page.getByText('Verify their identity').isVisible() + + await page.getByText('Type of ID').isVisible() + await page.getByText(declaration?.['spouse.idType']).isVisible() + await page.getByText(declaration?.['spouse.nid']).isVisible() + + await page.getByText("Spouse's name").isVisible() + await page + .getByText( + joinValuesWith([...Object.values(declaration['spouse.name'])]) + ) + .isVisible() + + await page.getByText('Date of birth').isVisible() + await page.getByText(declaration['spouse.dob']).isVisible() + + await page.getByText('Nationality').isVisible() + await page.getByText(declaration['spouse.nationality']).isVisible() + }) + }) +}) + +test.describe.serial('Certified copies renders spouse age correctly', () => { + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token, { + 'spouse.dobUnknown': true, + 'spouse.age': '25', + 'spouse.dob': undefined + }) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('1.0.2 Click on "Print certificate" from action menu', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test.describe('2.0 Validate "Certify record" page', async () => { + test('2.1 Ensure data content is visible for spouse', async () => { + await page.reload({ waitUntil: 'networkidle' }) + await page.locator('#collector____requesterId').click() + const selectOptionsLabels = [ + 'Print and issue to Informant (Spouse)', + 'Print and issue to someone else' + ] + for (const label of selectOptionsLabels) { + await expect(page.getByText(label, { exact: true })).toBeVisible() + } + + await page.getByText(selectOptionsLabels[0], { exact: true }).click() + + await expect(page.getByText('Certify record')).toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl(page, '/pages/collector.identity.verify') + + await page.getByText('Verify their identity').isVisible() + + await page.getByText('Type of ID').isVisible() + await page.getByText(declaration['spouse.idType']).isVisible() + await page.getByText(declaration['spouse.nid']).isVisible() + await page.getByText("Spouse's name").isVisible() + await page + .getByText( + joinValuesWith([...Object.values(declaration['spouse.name'])]) + ) + .isVisible() + + await page.getByText('Age of spouse').isVisible() + await page + .getByText(joinValuesWith([declaration['spouse.age'], 'years'])) + .isVisible() + + await page.getByText('Nationality').isVisible() + await page.getByText(declaration['spouse.nationality']).isVisible() + }) + }) +}) + +test.describe + .serial('Certified copies renders non-spouse informant age correctly', () => { + let page: Page + let declaration: Declaration + + const declarationOverrides = { + 'informant.relation': 'SON', + 'informant.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'informant.dobUnknown': true, + 'informant.age': faker.number.int({ min: 18, max: 90 }).toString(), + 'informant.dob': undefined, + 'informant.nationality': 'FAR', + 'informant.idType': 'NATIONAL_ID', + 'informant.nid': faker.string.numeric(10), + 'informant.addressSameAs': 'YES' + } + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + const res = await createDeclaration(token, declarationOverrides) + + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('1.0.2 Click on "Print certificate" from action menu', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test.describe('2.0 Validate "Certify record" page', async () => { + test('2.1 Ensure data content is visible for informant', async () => { + await page.reload({ waitUntil: 'networkidle' }) + await page.locator('#collector____requesterId').click() + const selectOptionsLabels = [ + 'Print and issue to Informant (Son)', + 'Print and issue to someone else' + ] + for (const label of selectOptionsLabels) { + await expect(page.getByText(label, { exact: true })).toBeVisible() + } + + await page.getByText(selectOptionsLabels[0], { exact: true }).click() + + await expect(page.getByText('Certify record')).toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl(page, '/pages/collector.identity.verify') + + await page.getByText('Verify their identity').isVisible() + + await page.getByText('Type of ID').isVisible() + await page.getByText(declarationOverrides['informant.idType']).isVisible() + await page.getByText(declarationOverrides['informant.nid']).isVisible() + await page.getByText("Son's name").isVisible() + await page + .getByText( + joinValuesWith([ + ...Object.values(declarationOverrides['informant.name']) + ]) + ) + .isVisible() + + await page.getByText('Age of informant').isVisible() + await page + .getByText( + joinValuesWith([declarationOverrides['informant.age'], 'years']) + ) + .isVisible() + + await page.getByText('Nationality').isVisible() + await page + .getByText(declarationOverrides['informant.nationality']) + .isVisible() + }) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/death/36.03-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/death/36.03-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..068cc49821 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/36.03-validate-certify-record-page.spec.ts @@ -0,0 +1,135 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/death-declaration' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../death/helpers' +import { expectInUrl } from '../../../v2-utils' + +test.describe.serial('3.0 Validate "Certify record" page', () => { + let eventId: string + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + eventId = res.eventId + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('3.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('3.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('3.1 should navigate to Verify their identity page', async () => { + await expectInUrl(page, `/print-certificate/${eventId}/pages/collector`) + + await selectCertificationType(page, 'Death Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Spouse)') + + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + }) + + test('3.2 should see informant Id, names, nationality and dob', async () => { + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + + await expect(page.locator('#content-name')).toContainText( + 'Verify their identity' + ) + + await expect(page.getByText('Verify their identity')).toBeVisible() + + await expect(page.locator('#maincontent')).toContainText( + declaration['spouse.nid'] + ) + await expect(page.locator('#maincontent')).toContainText( + declaration['spouse.name'].firstname + + ' ' + + declaration['spouse.name'].surname + ) + + await expect( + page.getByRole('button', { name: 'Identity does not match' }) + ).toBeVisible() + await expect(page.getByRole('button', { name: 'Verified' })).toBeVisible() + }) + + test('3.3 should navigate to collect payment page on "Verified" button click', async () => { + await page.getByRole('button', { name: 'Verified' }).click() + + await expect(page.locator('#content-name')).toContainText('Collect Payment') + + await expect(page.locator('#maincontent')).toContainText('Service') + await expect(page.locator('#maincontent')).toContainText( + 'Death registration before 45 days of date of death' + ) + await expect(page.locator('#maincontent')).toContainText('Fee') + await expect(page.locator('#maincontent')).toContainText('$5.00') + + await expect(page.getByRole('button', { name: 'Continue' })).toBeVisible() + await page.getByRole('button', { name: 'Back' }).click() + }) + + test('3.4 should open warning modal on "Identity does not match" button click', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await expect(page.getByRole('dialog')).toContainText( + 'Print without proof of ID?' + ) + await expect(page.getByRole('dialog')).toContainText( + 'Please be aware that if you proceed, you will be responsible for issuing a certificate without the necessary proof of ID from the collector' + ) + }) + + test('3.5 click warning modal confirm button should take to payment page', async () => { + await page.getByRole('button', { name: 'Confirm' }).click() + + await expect(page.locator('#content-name')).toContainText('Collect Payment') + await expect(page.getByRole('button', { name: 'Continue' })).toBeVisible() + + await page.getByRole('button', { name: 'Continue' }).click() + + await expectInUrl( + page, + `/print-certificate/${eventId}/review?templateId=v2.death-certificate` + ) + await page.goBack() + await page.getByRole('button', { name: 'Back' }).click() + }) + + test('3.6 click warning modal cancel button should close the modal', async () => { + await page.getByRole('button', { name: 'Identity does not match' }).click() + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.getByRole('dialog')).toBeHidden() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/death/36.05.06-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/death/36.05.06-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..fe21978f51 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/36.05.06-validate-certify-record-page.spec.ts @@ -0,0 +1,133 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/death-declaration' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../death/helpers' +import { expectInUrl } from '../../../v2-utils' +import { REQUIRED_VALIDATION_ERROR } from '../../v2-birth/helpers' + +async function selectIdType(page: Page, idType: string) { + await page.locator('#collector____OTHER____idType').click() + await page.getByText(idType, { exact: true }).click() +} + +test.describe.serial('Validate collect payment page', () => { + let eventId: string + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + eventId = res.eventId + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('5.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('5.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('5.1 check collect payment page header', async () => { + await selectCertificationType(page, 'Death Certificate') + await selectRequesterType(page, 'Print and issue to someone else') + }) + + test('5.2 should be able to select "No ID available" and no other ID field will be visible', async () => { + await selectIdType(page, 'No ID available') + await expect(page.locator('#collector____PASSPORT____details')).toBeHidden() + }) + + test('5.2 should be able to select any type of id and corresponding id input will be visible', async () => { + await selectIdType(page, 'Passport') + await expect( + page.locator('#collector____PASSPORT____details') + ).toBeVisible() + + await selectIdType(page, 'Other') + await expect( + page.locator('#collector____OTHER____idTypeOther') + ).toBeVisible() + }) + + test('5.2 should be able to select National ID and corresponding id input will be visible with validation rules', async () => { + await selectIdType(page, 'National ID') + await page.fill('#collector____nid', '1234567') + await page.getByRole('heading', { name: 'Death', exact: true }).click() + + await expect(page.locator('#collector____nid_error')).toContainText( + 'The national ID can only be numeric and must be 10 digits long' + ) + await page.fill('#collector____nid', '1235678922') + await page.getByRole('heading', { name: 'Death', exact: true }).click() + await expect(page.locator('#collector____nid_error')).toBeHidden() + }) + + test('5.3 should be able to enter first name', async () => { + await page.fill('#firstname', 'James Henry') + await expect(page.locator('#firstname')).toHaveValue('James Henry') + }) + + test('5.4 should be able to enter last name', async () => { + await page.fill('#surname', 'Smith') + await expect(page.locator('#surname')).toHaveValue('Smith') + }) + + test('5.5 keep relationship null and continue', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expect( + page + .locator('#collector____OTHER____relationshipToDeceased_error') + .getByText(REQUIRED_VALIDATION_ERROR) + ).toBeVisible() + }) + + test('5.6 should be able to enter relationship', async () => { + await page.fill('#collector____OTHER____relationshipToDeceased', 'Uncle') + await expect( + page.locator('#collector____OTHER____relationshipToDeceased') + ).toHaveValue('Uncle') + await page.getByRole('heading', { name: 'Death', exact: true }).click() + }) + + test("5.7 Fill all mandatory field and click 'Continue' should navigate to affidavit page", async () => {}) + + test.describe('6.0 Validate "Upload signed affidavit" page:', async () => { + test('6.1 Should be able to add file and navigate to the "Ready to certify?" page.', async () => { + const path = require('path') + const attachmentPath = path.resolve(__dirname, './528KB-random.png') + const inputFile = await page.locator( + 'input[name="collector____OTHER____signedAffidavit"][type="file"]' + ) + await inputFile.setInputFiles(attachmentPath) + await expect( + page.getByRole('button', { name: 'Signed Affidavit' }) + ).toBeVisible() + await expect(page.locator('#preview_delete')).toBeVisible() + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.collect.payment` + ) + }) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/death/36.07-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/death/36.07-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..af1ae4a5e4 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/36.07-validate-certify-record-page.spec.ts @@ -0,0 +1,75 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/death-declaration' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../death/helpers' +import { expectInUrl } from '../../../v2-utils' + +test.describe.serial('7.0 Validate "Certify record" page', () => { + let eventId: string + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + eventId = res.eventId + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('7.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('7.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('7.1 continue with "Print and issue to informant (Spouse)" redirect to Collector details page', async () => { + await selectCertificationType(page, 'Death Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Spouse)') + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.identity.verify` + ) + await page.getByRole('button', { name: 'Verified' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/pages/collector.collect.payment` + ) + + await expect(page.locator('#content-name')).toContainText('Collect Payment') + await expect( + page.getByText('Death registration before 45 days of date of death') + ).toBeVisible() + await expect(page.getByText('$5.00')).toBeVisible() + }) + + test('7.2 should navigate to ready to certify page on continue button click', async () => { + await page.getByRole('button', { name: 'Continue' }).click() + await expectInUrl( + page, + `/print-certificate/${eventId}/review?templateId=v2.death-certificate` + ) + }) + + // @TODO: this is not implemented in events v2 yet + test.skip('7.3 should skip payment page if payment is 0', async () => {}) +}) diff --git a/e2e/testcases/v2-print-certificate/death/36.09-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/death/36.09-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..f0d7898407 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/36.09-validate-certify-record-page.spec.ts @@ -0,0 +1,64 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/death-declaration' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../death/helpers' + +test.describe.serial('9.0 Validate "Certify record" page', () => { + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('9.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('9.0.1 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('9.1 Review page validations', async () => { + await selectCertificationType(page, 'Death Certificate Certified Copy') + await selectRequesterType(page, 'Print and issue to Informant (Spouse)') + + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await expect(page.locator('#content-name')).toContainText( + 'Print certificate' + ) + await expect( + page.getByText( + 'Please confirm that the informant has reviewed that the information on the certificate is correct and that it is ready to print.' + ) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'No, make correction' }) + ).toBeVisible() + await expect( + page.getByRole('button', { name: 'Yes, print certificate' }) + ).toBeVisible() + }) +}) diff --git a/e2e/testcases/v2-print-certificate/death/36.10-validate-certify-record-page.spec.ts b/e2e/testcases/v2-print-certificate/death/36.10-validate-certify-record-page.spec.ts new file mode 100644 index 0000000000..ca2cbbe2b0 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/36.10-validate-certify-record-page.spec.ts @@ -0,0 +1,71 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/death-declaration' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../death/helpers' +import { expectInUrl } from '../../../v2-utils' +import { printAndExpectPopup } from '../birth/helpers' + +test.describe.serial('10.0 Validate "Review" page', () => { + let page: Page + let declaration: Declaration + let eventId: string + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + eventId = res.eventId + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('10.0.1 Log in', async () => { + await loginToV2(page) + }) + + test('10.0.2 Navigate to certificate print action', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + }) + + test('10.1 Review page validations', async () => { + await selectCertificationType(page, 'Death Certificate Certified Copy') + await selectRequesterType(page, 'Print and issue to Informant (Spouse)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + + await page.getByRole('button', { name: 'Yes, print certificate' }).click() + await expect(page.locator('#confirm-print-modal')).toBeVisible() + await expect(page.locator('#confirm-print-modal')).toContainText( + 'Print and issue certificate?' + ) + await expect(page.locator('#confirm-print-modal')).toContainText( + 'A Pdf of the certificate will open in a new tab for printing and issuing.' + ) + }) + + test('10.2 On click cancel button, modal will be closed', async () => { + await page.getByRole('button', { name: 'Cancel' }).click() + await expect(page.locator('#confirm-print-modal')).toBeHidden() + }) + + test('10.3 On click print button, user will navigate to a new tab from where user can download PDF', async () => { + await printAndExpectPopup(page) + await expectInUrl(page, `/events/overview/${eventId}`) + }) +}) diff --git a/e2e/testcases/v2-print-certificate/death/528KB-random.png b/e2e/testcases/v2-print-certificate/death/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/e2e/testcases/v2-print-certificate/death/528KB-random.png differ diff --git a/e2e/testcases/v2-print-certificate/death/helpers.ts b/e2e/testcases/v2-print-certificate/death/helpers.ts new file mode 100644 index 0000000000..a779224cb4 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/helpers.ts @@ -0,0 +1,35 @@ +import { Page } from '@playwright/test' +import { Declaration } from '../../v2-test-data/death-declaration' +import { selectAction } from '../../../v2-utils' + +export async function selectCertificationType(page: Page, type: string) { + await page.locator('#certificateTemplateId svg').click() + await page + .locator('.react-select__menu') + .getByText(type, { exact: true }) + .click() +} + +export async function selectRequesterType(page: Page, type: string) { + await page.locator('#collector____requesterId').click() + await page.getByText(type, { exact: true }).click() +} + +export async function navigateToCertificatePrintAction( + page: Page, + declaration: Declaration +) { + const deceasedName = `${declaration['deceased.name'].firstname} ${declaration['deceased.name'].surname}` + await page.getByRole('button', { name: deceasedName }).click() + await selectAction(page, 'Print') +} + +export function getRowByTitle(page: Page, title: string) { + const button = page.getByRole('button', { + name: title + }) + const parentRow = button.locator( + 'xpath=ancestor::*[starts-with(@id, "row_")]' + ) + return parentRow +} diff --git a/e2e/testcases/v2-print-certificate/death/validate-pdf-details.spec.ts b/e2e/testcases/v2-print-certificate/death/validate-pdf-details.spec.ts new file mode 100644 index 0000000000..8d95bac050 --- /dev/null +++ b/e2e/testcases/v2-print-certificate/death/validate-pdf-details.spec.ts @@ -0,0 +1,125 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../../helpers' +import { CREDENTIALS } from '../../../constants' +import { + createDeclaration, + Declaration +} from '../../v2-test-data/death-declaration' +import { + navigateToCertificatePrintAction, + selectCertificationType, + selectRequesterType +} from '../death/helpers' + +async function expectInPdf(page: Page, text: string) { + await expect(page.locator('#print')).toContainText(text) +} + +test.describe.serial("Validate 'Death Certificate' PDF details", () => { + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Go to review', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + await selectCertificationType(page, 'Death Certificate') + await selectRequesterType(page, 'Print and issue to Informant (Spouse)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Validate deceased name', async () => { + await expectInPdf( + page, + `${declaration['deceased.name'].firstname} ${declaration['deceased.name'].surname}` + ) + }) + + test('Validate deceased place of death', async () => { + await expectInPdf(page, 'Ibombo, Central, Farajaland') + }) + + test('Validate registrar name', async () => { + await expectInPdf(page, 'Kennedy Mweene') + }) +}) + +test.describe + .serial("Validate 'Death Certificate Certified Copy' PDF details", () => { + let page: Page + let declaration: Declaration + + test.beforeAll(async ({ browser }) => { + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + const res = await createDeclaration(token) + declaration = res.declaration + page = await browser.newPage() + }) + + test.afterAll(async () => { + await page.close() + }) + + test.afterAll(async () => { + await page.close() + }) + + test('Log in', async () => { + await loginToV2(page) + }) + + test('Go to review', async () => { + await page.getByRole('button', { name: 'Ready to print' }).click() + await navigateToCertificatePrintAction(page, declaration) + await selectCertificationType(page, 'Death Certificate Certified Copy') + await selectRequesterType(page, 'Print and issue to Informant (Spouse)') + await page.getByRole('button', { name: 'Continue' }).click() + await page.getByRole('button', { name: 'Verified' }).click() + await page.getByRole('button', { name: 'Continue' }).click() + }) + + test('Validate deceased name', async () => { + await expectInPdf( + page, + `${declaration['deceased.name'].firstname} ${declaration['deceased.name'].surname}` + ) + }) + + test('Validate deceased place of death', async () => { + await expectInPdf(page, 'Ibombo, Central, Farajaland') + }) + + test('Validate registrar name', async () => { + await expectInPdf(page, 'Registrar: Kennedy Mweene') + }) + + test('Validate spouse name', async () => { + await expectInPdf( + page, + `${declaration['deceased.name'].firstname} ${declaration['deceased.name'].surname}` + ) + await expectInPdf(page, 'Spouse') + }) +}) diff --git a/e2e/testcases/v2-quick-search/1-quick-search-birth-event-declaration.spec.ts b/e2e/testcases/v2-quick-search/1-quick-search-birth-event-declaration.spec.ts new file mode 100644 index 0000000000..e3fafde020 --- /dev/null +++ b/e2e/testcases/v2-quick-search/1-quick-search-birth-event-declaration.spec.ts @@ -0,0 +1,190 @@ +import { expect, test, type Page } from '@playwright/test' +import { getToken, loginToV2 } from '../../helpers' +import { + createDeclaration, + getChildNameFromRecord +} from '../v2-test-data/birth-declaration-with-father-brother' +import { CREDENTIALS } from '../../constants' +import { faker } from '@faker-js/faker' +import { ensureAssigned } from '../../v2-utils' + +test.describe + .serial("Qucik Search - Birth Event Declaration - Child's details", () => { + let page: Page + let record: Awaited> + let recordWithDefaultEmail: Awaited> + test.beforeAll(async ({ browser }) => { + page = await browser.newPage() + const token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + recordWithDefaultEmail = await createDeclaration( + token, + { + 'informant.email': faker.internet.email() + }, + 'REGISTER', + 'HEALTH_FACILITY' + ) + + record = await createDeclaration( + token, + { + 'informant.email': faker.internet.email() + }, + 'REGISTER', + 'HEALTH_FACILITY' + ) + }) + + test.afterAll(async () => { + await page.close() + }) + + test('1.1 Should search from home page using informant email and return correct record', async () => { + await loginToV2(page) + await page + .locator('#searchText') + .fill(recordWithDefaultEmail.declaration['informant.email']) // search by email + await page.locator('#searchIconButton').click() + const searchResultRegex = /Search result for “([^”]+)”/ + const searchResult = await page.locator('#content-name').textContent() + await expect(searchResult).toMatch(searchResultRegex) + await expect( + page.getByText(getChildNameFromRecord(recordWithDefaultEmail)) + ).toBeVisible() + }) + + test('1.2 Should display informant email correctly in record details', async () => { + await page + .getByRole('button', { + name: getChildNameFromRecord(recordWithDefaultEmail) + }) + .click() + await ensureAssigned(page) + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Kennedy Mweene' + ) + await expect(page.getByTestId('informant.contact-value')).toContainText( + recordWithDefaultEmail.declaration['informant.email'] + ) + }) + + test('1.3 Should perform case-insensitive email search from workqueue and display matching record', async () => { + await page.locator('#navigation_workqueue_assigned-to-you').click() + await expect(page.locator('#searchText')).toHaveValue('') + + await page + .locator('#searchText') + .fill(recordWithDefaultEmail.declaration['informant.email'].toUpperCase()) // Search by uppercase email + await page.locator('#searchIconButton').click() + const searchResultRegex = /Search result for “([^”]+)”/ + const searchResult = await page.locator('#content-name').textContent() + await expect(searchResult).toMatch(searchResultRegex) + await expect( + page.getByText(getChildNameFromRecord(recordWithDefaultEmail)) + ).toBeVisible() + + await page + .getByRole('button', { + name: getChildNameFromRecord(recordWithDefaultEmail) + }) + .click() + await ensureAssigned(page) + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Kennedy Mweene' + ) + await expect(page.getByTestId('informant.contact-value')).toContainText( + recordWithDefaultEmail.declaration['informant.email'] + ) + }) + + test('1.4 Should search from workqueue using a different email and return the correct record', async () => { + await page.locator('#navigation_workqueue_assigned-to-you').click() + await expect(page.locator('#searchText')).toHaveValue('') + + await page + .locator('#searchText') + .fill(record.declaration['informant.email']) // search by different email + await page.locator('#searchIconButton').click() + const searchResultRegex = /Search result for “([^”]+)”/ + const searchResult = await page.locator('#content-name').textContent() + await expect(searchResult).toMatch(searchResultRegex) + await expect(page.getByText(getChildNameFromRecord(record))).toBeVisible() + await page + .getByRole('button', { + name: getChildNameFromRecord(record) + }) + .click() + await ensureAssigned(page) + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Kennedy Mweene' + ) + await expect(page.getByTestId('informant.contact-value')).toContainText( + record.declaration['informant.email'] + ) + }) + + test('1.5 Should search from workqueue using informant phone number and return the correct record', async () => { + await page.locator('#navigation_workqueue_assigned-to-you').click() + await expect(page.locator('#searchText')).toHaveValue('') + await page + .locator('#searchText') + .fill(record.declaration['informant.phoneNo']) // search by phone + await page.locator('#searchIconButton').click() + const searchResultRegex = /Search result for “([^”]+)”/ + const searchResult = await page.locator('#content-name').textContent() + await expect(searchResult).toMatch(searchResultRegex) + await expect(page.getByText(getChildNameFromRecord(record))).toBeVisible() + + await page + .getByRole('button', { + name: getChildNameFromRecord(record) + }) + .click() + await ensureAssigned(page) + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Kennedy Mweene' + ) + await expect(page.getByTestId('informant.contact-value')).toContainText( + record.declaration['informant.phoneNo'] + ) + }) + + test('1.6 Should search from workqueue using informant national ID and return the correct record', async () => { + await page.locator('#navigation_workqueue_assigned-to-you').click() + await expect(page.locator('#searchText')).toHaveValue('') + await page.locator('#searchText').fill(record.declaration['informant.nid']) // search by id + await page.locator('#searchIconButton').click() + const searchResultRegex = /Search result for “([^”]+)”/ + const searchResult = await page.locator('#content-name').textContent() + await expect(searchResult).toMatch(searchResultRegex) + await expect(page.getByText(getChildNameFromRecord(record))).toBeVisible() + }) + + test('1.7 Should search from workqueue using tracking ID and return the correct record with tracking ID visible', async () => { + await page.locator('#navigation_workqueue_assigned-to-you').click() + await expect(page.locator('#searchText')).toHaveValue('') + await page.locator('#searchText').fill(record.trackingId) // search by tracking id + await page.locator('#searchIconButton').click() + const searchResultRegex = /Search result for “([^”]+)”/ + const searchResult = await page.locator('#content-name').textContent() + await expect(searchResult).toMatch(searchResultRegex) + await expect(page.getByText(getChildNameFromRecord(record))).toBeVisible() + + await page + .getByRole('button', { + name: getChildNameFromRecord(record) + }) + .click() + await ensureAssigned(page) + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Kennedy Mweene' + ) + await expect(page.getByTestId('tracking-id-value')).toContainText( + record.trackingId + ) + }) +}) diff --git a/e2e/testcases/v2-test-data/birth-declaration-with-father-brother.ts b/e2e/testcases/v2-test-data/birth-declaration-with-father-brother.ts new file mode 100644 index 0000000000..1f1a29f38c --- /dev/null +++ b/e2e/testcases/v2-test-data/birth-declaration-with-father-brother.ts @@ -0,0 +1,235 @@ +import { v4 as uuidv4 } from 'uuid' +import { GATEWAY_HOST } from '../../constants' +import { faker } from '@faker-js/faker' +import { getAllLocations, getLocationIdByName } from '../birth/helpers' +import { createClient } from '@opencrvs/toolkit/api' +import { + ActionDocument, + ActionType, + ActionUpdate, + AddressType +} from '@opencrvs/toolkit/events' +import { getSignatureFile, uploadFile } from './utils' + +async function getPlaceOfBirth(type: 'PRIVATE_HOME' | 'HEALTH_FACILITY') { + if (type === 'HEALTH_FACILITY') { + const locations = await getAllLocations('HEALTH_FACILITY') + const locationId = getLocationIdByName( + locations, + 'Ibombo Rural Health Centre' + ) + + return { + 'child.placeOfBirth': 'HEALTH_FACILITY', + 'child.birthLocation': locationId + } + } + + if (type === 'PRIVATE_HOME') { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + return { + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: AddressType.DOMESTIC, + administrativeArea: district + } + } + } + + throw new Error('Invalid place of birth type') +} + +function generateCustomPhoneNumber() { + // Starts with 0 + // Second digit is 7 or 9 + // Followed by 8 digits (0-9) + const secondDigit = Math.random() < 0.5 ? '7' : '9' + let rest = '' + for (let i = 0; i < 8; i++) { + rest += Math.floor(Math.random() * 10) + } + return `0${secondDigit}${rest}` +} + +export async function getDeclaration({ + partialDeclaration = {}, + placeOfBirthType = 'PRIVATE_HOME' +}: { + partialDeclaration?: Record + placeOfBirthType?: 'PRIVATE_HOME' | 'HEALTH_FACILITY' +}) { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + const mockDeclaration = { + 'mother.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'mother.dob': '1995-09-12', + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.address': { + country: 'FAR', + province, + district, + addressType: AddressType.DOMESTIC + }, + 'father.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'father.dob': '1995-09-12', + 'father.nationality': 'FAR', + 'father.idType': 'NATIONAL_ID', + 'father.nid': faker.string.numeric(10), + 'father.addressSameAs': 'NO', + 'father.address': { + country: 'FAR', + province, + district, + addressType: AddressType.DOMESTIC + }, + 'child.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'child.gender': 'female', + 'child.dob': new Date(Date.now() - 60 * 60 * 24 * 1000) + .toISOString() + .split('T')[0], // yesterday + ...(await getPlaceOfBirth(placeOfBirthType)), + 'informant.relation': 'BROTHER', + 'informant.email': 'brothers@email.com', + 'informant.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'informant.dob': '2008-09-12', + 'informant.nationality': 'FAR', + 'informant.idType': 'NATIONAL_ID', + 'informant.phoneNo': generateCustomPhoneNumber(), + 'informant.nid': faker.string.numeric(10) + } + // 💡 Merge overriden fields + return { + ...mockDeclaration, + ...partialDeclaration + } +} + +export type Declaration = Awaited> + +export interface CreateDeclarationResponse { + eventId: string + trackingId: string + declaration: Declaration +} + +export async function createDeclaration( + token: string, + dec?: Partial, + action: ActionType = ActionType.REGISTER, + placeOfBirthType?: 'PRIVATE_HOME' | 'HEALTH_FACILITY' +): Promise { + const declaration = await getDeclaration({ + partialDeclaration: dec, + placeOfBirthType + }) + + const client = createClient(GATEWAY_HOST + '/events', `Bearer ${token}`) + + const createResponse = await client.event.create.mutate({ + type: 'birth', + transactionId: uuidv4() + }) + const eventId = createResponse.id as string + const trackingId = createResponse.trackingId + + const file = await uploadFile(getSignatureFile(), token) + + const annotation = { + 'review.comment': 'My comment', + 'review.signature': file + } + + const declareRes = await client.event.actions.declare.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + keepAssignment: true + }) + + if (action === ActionType.DECLARE) { + const declareAction = declareRes.actions.find( + (action: ActionDocument) => action.type === 'DECLARE' + ) + + if (!declareAction || !('declaration' in declareAction)) { + throw new Error('Declaration info not found in action') + } + + return { + eventId, + trackingId, + declaration: declareAction?.declaration as Declaration + } + } + + const validateRes = await client.event.actions.validate.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + duplicates: [], + keepAssignment: true + }) + + if (action === ActionType.VALIDATE) { + const validateAction = validateRes.actions.find( + (action: ActionDocument) => action.type === 'VALIDATE' + ) + + return { + eventId, + trackingId, + declaration: validateAction?.declaration as Declaration + } + } + + const registerRes = await client.event.actions.register.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation + }) + + const registerAction = registerRes.actions.find( + (action: ActionDocument) => action.type === 'REGISTER' + ) + + return { + eventId, + trackingId, + declaration: registerAction?.declaration as Declaration + } +} + +export const getChildNameFromRecord = (record: CreateDeclarationResponse) => { + return `${record.declaration['child.name'].firstname} ${record.declaration['child.name'].surname}` +} diff --git a/e2e/testcases/v2-test-data/birth-declaration-with-mother-father.ts b/e2e/testcases/v2-test-data/birth-declaration-with-mother-father.ts new file mode 100644 index 0000000000..1c764ad64b --- /dev/null +++ b/e2e/testcases/v2-test-data/birth-declaration-with-mother-father.ts @@ -0,0 +1,294 @@ +import { v4 as uuidv4 } from 'uuid' +import { GATEWAY_HOST } from '../../constants' +import { faker } from '@faker-js/faker' +import { getAllLocations, getLocationIdByName } from '../birth/helpers' +import { createClient } from '@opencrvs/toolkit/api' +import { + ActionDocument, + ActionType, + ActionUpdate, + AddressType +} from '@opencrvs/toolkit/events' +import { getSignatureFile, uploadFile } from './utils' +import { subYears, format } from 'date-fns' + +type InformantRelation = 'MOTHER' | 'BROTHER' + +function getInformantDetails(informantRelation: InformantRelation) { + if (informantRelation === 'MOTHER') { + return { + 'informant.relation': informantRelation, + 'informant.email': 'mothers@email.com' + } + } + + return { + 'informant.relation': informantRelation, + 'informant.email': 'brothers@email.com', + 'informant.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'informant.dob': '2008-09-12', + 'informant.nationality': 'FAR', + 'informant.idType': 'NATIONAL_ID', + 'informant.nid': faker.string.numeric(10) + } +} + +async function getPlaceOfBirth(type: 'PRIVATE_HOME' | 'HEALTH_FACILITY') { + if (type === 'HEALTH_FACILITY') { + const locations = await getAllLocations('HEALTH_FACILITY') + const locationId = getLocationIdByName( + locations, + 'Ibombo Rural Health Centre' + ) + + return { + 'child.placeOfBirth': 'HEALTH_FACILITY', + 'child.birthLocation': locationId + } + } + + if (type === 'PRIVATE_HOME') { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + return { + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: AddressType.DOMESTIC, + province, + district + } + } + } + + throw new Error('Invalid place of birth type') +} + +export async function getDeclaration({ + informantRelation = 'MOTHER', + partialDeclaration = {}, + placeOfBirthType = 'PRIVATE_HOME' +}: { + informantRelation?: InformantRelation + partialDeclaration?: any + placeOfBirthType?: 'PRIVATE_HOME' | 'HEALTH_FACILITY' +}) { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + const mockDeclaration = { + 'father.detailsNotAvailable': true, + // Add default reason if: (a) user didn’t specify 'father.detailsNotAvailable', or (b) specified it but forgot the reason + ...(!('father.detailsNotAvailable' in partialDeclaration) || + (partialDeclaration['father.detailsNotAvailable'] === true && + !('father.reason' in partialDeclaration)) + ? { 'father.reason': 'Father is missing.' } + : {}), + 'mother.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'mother.dob': '1995-09-12', + 'mother.dobUnknown': false, + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.educationalAttainment': 'NO_SCHOOLING', + 'mother.maritalStatus': 'MARRIED', + 'mother.nid': faker.string.numeric(10), + 'mother.address': { + country: 'FAR', + province, + administrativeArea: district, + town: null, + residentialArea: null, + street: null, + number: null, + zipCode: null, + village: null, + state: null, + district2: null, + cityOrTown: null, + addressLine1: null, + addressLine2: null, + addressLine3: null, + postcodeOrZip: null, + addressType: AddressType.DOMESTIC + }, + 'child.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'child.gender': 'female', + 'child.dob': new Date(Date.now() - 60 * 60 * 24 * 1000) + .toISOString() + .split('T')[0], // yesterday + ...(await getPlaceOfBirth(placeOfBirthType)), + ...getInformantDetails(informantRelation) + } + + // 💡 Merge overriden fields + return { + ...mockDeclaration, + ...('father.detailsNotAvailable' in partialDeclaration && + !partialDeclaration['father.detailsNotAvailable'] && { + 'father.detailsNotAvailable': false, + 'father.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + 'father.dob': format(subYears(new Date(), 30), 'yyyy-MM-dd'), + 'father.idType': 'NATIONAL_ID', + 'father.nid': faker.string.numeric(10), + 'father.nationality': 'FAR', + 'father.maritalStatus': 'SINGLE', + 'father.educationalAttainment': 'NONE', + 'father.occupation': 'Unemployed', + ...(partialDeclaration['father.addressSameAs'] === 'NO' && { + 'father.address': { + country: 'FAR', + addressType: 'DOMESTIC' as const, + province, + district, + urbanOrRural: 'URBAN' as const + } + }), + ...partialDeclaration + }) + } +} + +export type Declaration = Awaited> + +export interface CreateDeclarationResponse { + eventId: string + declaration: Declaration + trackingId?: string + registrationNumber?: string +} + +export async function createDeclaration( + token: string, + dec?: Partial, + action: ActionType = ActionType.REGISTER, + placeOfBirthType?: 'PRIVATE_HOME' | 'HEALTH_FACILITY' +): Promise { + const declaration = await getDeclaration({ + partialDeclaration: dec, + placeOfBirthType + }) + + const client = createClient(GATEWAY_HOST + '/events', `Bearer ${token}`) + + const createResponse = await client.event.create.mutate({ + type: 'birth', + transactionId: uuidv4() + }) + + const eventId = createResponse.id as string + + const filename = await uploadFile(getSignatureFile(), token) + + const annotation = { + 'review.comment': 'My comment', + 'review.signature': filename + } + const declareRes = await client.event.actions.declare.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + keepAssignment: action !== ActionType.DECLARE + }) + + if (action === ActionType.DECLARE) { + const declareAction = declareRes.actions.find( + (action: ActionDocument) => action.type === 'DECLARE' + ) + + if (!declareAction || !('declaration' in declareAction)) { + throw new Error('Declaration info not found in action') + } + + return { + eventId, + declaration: declareAction?.declaration as Declaration + } + } + + const validateRes = await client.event.actions.validate.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + duplicates: [], + keepAssignment: true + }) + + if (action === ActionType.VALIDATE) { + const validateAction = validateRes.actions.find( + (action: ActionDocument) => action.type === 'VALIDATE' + ) + + return { + eventId, + declaration: validateAction?.declaration as Declaration + } + } + + const registerRes = await client.event.actions.register.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation + }) + + const registerAction = registerRes.actions.find( + (action: ActionDocument) => + action.type === 'REGISTER' && action.status === 'Accepted' + ) + + const registerRequestAction = registerRes.actions.find( + (action: ActionDocument) => + action.type === 'REGISTER' && action.status === 'Requested' + ) + + const trackingId = registerRes?.trackingId as string + const registrationNumber = registerAction?.registrationNumber as string + + return { + eventId, + declaration: registerRequestAction?.declaration as Declaration, + trackingId, + registrationNumber + } +} + +export async function rejectDeclaration( + token: string, + eventId: string +): Promise { + const client = createClient(GATEWAY_HOST + '/events', `Bearer ${token}`) + + const rejectResponse = await client.event.actions.reject.request.mutate({ + eventId, + declaration: {}, + transactionId: uuidv4(), + reason: { message: 'For test' } + }) + + return rejectResponse +} diff --git a/e2e/testcases/v2-test-data/birth-declaration.ts b/e2e/testcases/v2-test-data/birth-declaration.ts new file mode 100644 index 0000000000..a00046a0fe --- /dev/null +++ b/e2e/testcases/v2-test-data/birth-declaration.ts @@ -0,0 +1,261 @@ +import { v4 as uuidv4 } from 'uuid' +import { GATEWAY_HOST } from '../../constants' +import { faker } from '@faker-js/faker' +import { getAllLocations, getLocationIdByName } from '../birth/helpers' +import { createClient } from '@opencrvs/toolkit/api' +import { + ActionDocument, + ActionType, + ActionUpdate, + AddressType +} from '@opencrvs/toolkit/events' +import { getSignatureFile, uploadFile } from './utils' + +type InformantRelation = 'MOTHER' | 'BROTHER' + +function getInformantDetails(informantRelation: InformantRelation) { + if (informantRelation === 'MOTHER') { + return { + 'informant.relation': informantRelation, + 'informant.email': 'mothers@email.com' + } + } + + return { + 'informant.relation': informantRelation, + 'informant.email': 'brothers@email.com', + 'informant.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'informant.dob': '2008-09-12', + 'informant.nationality': 'FAR', + 'informant.idType': 'NATIONAL_ID', + 'informant.nid': faker.string.numeric(10) + } +} + +export async function getPlaceOfBirth( + type: 'PRIVATE_HOME' | 'HEALTH_FACILITY' +) { + if (type === 'HEALTH_FACILITY') { + const locations = await getAllLocations('HEALTH_FACILITY') + const locationId = getLocationIdByName( + locations, + 'Ibombo Rural Health Centre' + ) + + return { + 'child.placeOfBirth': 'HEALTH_FACILITY', + 'child.birthLocation': locationId + } + } + + if (type === 'PRIVATE_HOME') { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + return { + 'child.placeOfBirth': 'PRIVATE_HOME', + 'child.birthLocation.privateHome': { + country: 'FAR', + addressType: AddressType.DOMESTIC, + administrativeArea: district + } + } + } + + throw new Error('Invalid place of birth type') +} + +export async function getDeclaration({ + informantRelation = 'MOTHER', + partialDeclaration = {}, + placeOfBirthType = 'PRIVATE_HOME' +}: { + informantRelation?: InformantRelation + partialDeclaration?: Record + placeOfBirthType?: 'PRIVATE_HOME' | 'HEALTH_FACILITY' +}) { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + const mockDeclaration = { + 'father.detailsNotAvailable': true, + // Only include 'father.reason' if partialDeclaration doesn't have 'father.detailsNotAvailable' + ...(!('father.detailsNotAvailable' in partialDeclaration) + ? { 'father.reason': 'Father is missing.' } + : {}), + 'mother.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'mother.dob': '1995-09-12', + 'mother.nationality': 'FAR', + 'mother.idType': 'NATIONAL_ID', + 'mother.nid': faker.string.numeric(10), + 'mother.address': { + country: 'FAR', + province, + district, + town: null, + residentialArea: null, + street: null, + number: null, + zipCode: null, + village: null, + state: null, + district2: null, + cityOrTown: null, + addressLine1: null, + addressLine2: null, + addressLine3: null, + postcodeOrZip: null, + addressType: AddressType.DOMESTIC + }, + 'child.name': { + firstname: faker.person.firstName(), + surname: faker.person.lastName() + }, + 'child.gender': 'female', + 'child.dob': new Date(Date.now() - 60 * 60 * 24 * 1000) + .toISOString() + .split('T')[0], // yesterday + ...(await getPlaceOfBirth(placeOfBirthType)), + ...getInformantDetails(informantRelation) + } + + // 💡 Merge overriden fields + return { + ...mockDeclaration, + ...partialDeclaration + } +} + +export type Declaration = Awaited> + +export interface CreateDeclarationResponse { + eventId: string + declaration: Declaration + trackingId?: string + registrationNumber?: string +} + +export async function createDeclaration( + token: string, + dec?: ActionUpdate, + action: ActionType = ActionType.REGISTER, + placeOfBirthType?: 'PRIVATE_HOME' | 'HEALTH_FACILITY' +): Promise { + const declaration = + dec ?? + (await getDeclaration({ + placeOfBirthType + })) + + const client = createClient(GATEWAY_HOST + '/events', `Bearer ${token}`) + + const createResponse = await client.event.create.mutate({ + type: 'birth', + transactionId: uuidv4() + }) + + const eventId = createResponse.id as string + + const filename = await uploadFile(getSignatureFile(), token) + + const annotation = { + 'review.comment': 'My comment', + 'review.signature': filename + } + + const declareRes = await client.event.actions.declare.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + keepAssignment: action !== ActionType.DECLARE + }) + + if (action === ActionType.DECLARE) { + const declareAction = declareRes.actions.find( + (action: ActionDocument) => action.type === 'DECLARE' + ) + + if (!declareAction || !('declaration' in declareAction)) { + throw new Error('Declaration info not found in action') + } + + return { + eventId, + declaration: declareAction?.declaration as Declaration + } + } + + const validateRes = await client.event.actions.validate.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + duplicates: [], + keepAssignment: true + }) + + if (action === ActionType.VALIDATE) { + const validateAction = validateRes.actions.find( + (action: ActionDocument) => action.type === 'VALIDATE' + ) + + return { + eventId, + declaration: validateAction?.declaration as Declaration + } + } + + const registerRes = await client.event.actions.register.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation + }) + + const registerAction = registerRes.actions.find( + (action: ActionDocument) => action.type === 'REGISTER' + ) + + const trackingId = registerRes?.trackingId as string + const registrationNumber = registerAction?.registrationNumber as string + + return { + eventId, + declaration: registerAction?.declaration as Declaration, + trackingId, + registrationNumber + } +} + +export async function rejectDeclaration( + token: string, + eventId: string +): Promise { + const client = createClient(GATEWAY_HOST + '/events', `Bearer ${token}`) + + const rejectResponse = await client.event.actions.reject.request.mutate({ + eventId, + declaration: {}, + transactionId: uuidv4(), + reason: { message: 'For test' } + }) + + return rejectResponse +} diff --git a/e2e/testcases/v2-test-data/death-declaration.ts b/e2e/testcases/v2-test-data/death-declaration.ts new file mode 100644 index 0000000000..1592f39088 --- /dev/null +++ b/e2e/testcases/v2-test-data/death-declaration.ts @@ -0,0 +1,196 @@ +import { v4 as uuidv4 } from 'uuid' +import { GATEWAY_HOST } from '../../constants' +import { faker } from '@faker-js/faker' +import { getAllLocations, getLocationIdByName } from '../birth/helpers' +import { createClient } from '@opencrvs/toolkit/api' +import { + ActionDocument, + ActionType, + ActionUpdate, + AddressType +} from '@opencrvs/toolkit/events' +import { getSignatureFile, uploadFile } from './utils' +import { omitBy } from 'lodash' + +async function getPlaceOfDeath( + type: 'DECEASED_USUAL_RESIDENCE' | 'HEALTH_FACILITY' +) { + if (type === 'HEALTH_FACILITY') { + const locations = await getAllLocations('HEALTH_FACILITY') + const locationId = getLocationIdByName( + locations, + 'Ibombo Rural Health Centre' + ) + + return { + 'deceased.deathLocation': locationId + } + } + + if (type === 'DECEASED_USUAL_RESIDENCE') { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + return { + 'deceased.address': { + country: 'FAR', + addressType: AddressType.DOMESTIC, + administrativeArea: district + } + } + } + + throw new Error('Invalid place of birth type') +} + +export async function getDeclaration({ + partialDeclaration = {}, + placeOfDeathType: placeOfDeathType = 'DECEASED_USUAL_RESIDENCE' +}: { + partialDeclaration?: Record + placeOfDeathType?: 'DECEASED_USUAL_RESIDENCE' | 'HEALTH_FACILITY' +}) { + const locations = await getAllLocations('ADMIN_STRUCTURE') + const province = getLocationIdByName(locations, 'Central') + const district = getLocationIdByName(locations, 'Ibombo') + + if (!province || !district) { + throw new Error('Province or district not found') + } + + const mockDeclaration = { + 'spouse.dob': '1975-02-18', + 'spouse.age': undefined, + 'spouse.nid': faker.string.numeric(10), + 'spouse.name': { + firstname: faker.person.firstName('female'), + surname: faker.person.lastName('female') + }, + 'deceased.dob': '1950-04-21', + 'deceased.nid': faker.string.numeric(10), + 'deceased.name': { + firstname: faker.person.firstName('male'), + surname: faker.person.lastName('male') + }, + 'spouse.idType': 'NATIONAL_ID', + 'deceased.gender': 'male', + 'deceased.idType': 'NATIONAL_ID', + 'informant.email': faker.internet.email(), + 'eventDetails.date': new Date(Date.now() - 60 * 60 * 24 * 1000) + .toISOString() + .split('T')[0], // yesterday + 'informant.relation': 'SPOUSE', + 'spouse.nationality': 'FAR', + 'deceased.nationality': 'FAR', + 'spouse.addressSameAs': 'YES', + 'deceased.maritalStatus': 'MARRIED', + 'eventDetails.placeOfDeath': placeOfDeathType, + 'eventDetails.mannerOfDeath': 'MANNER_NATURAL', + 'deceased.numberOfDependants': 3, + 'eventDetails.sourceCauseDeath': 'PHYSICIAN', + 'eventDetails.causeOfDeathEstablished': true, + ...(await getPlaceOfDeath(placeOfDeathType)) + } + + // 💡 Merge overriden fields, clear payload + return omitBy( + { + ...mockDeclaration, + ...partialDeclaration + }, + (d) => d === undefined + ) as typeof mockDeclaration +} + +export type Declaration = Awaited> + +export interface CreateDeclarationResponse { + eventId: string + declaration: Declaration +} + +export async function createDeclaration( + token: string, + dec?: Partial, + action: ActionType = ActionType.REGISTER, + placeOfDeathType?: 'DECEASED_USUAL_RESIDENCE' | 'HEALTH_FACILITY' +): Promise { + const declaration = await getDeclaration({ + partialDeclaration: dec, + placeOfDeathType: placeOfDeathType + }) + + const client = createClient(GATEWAY_HOST + '/events', `Bearer ${token}`) + + const createResponse = await client.event.create.mutate({ + type: 'death', + transactionId: uuidv4() + }) + + const eventId = createResponse.id as string + + const filename = await uploadFile(getSignatureFile(), token) + + const annotation = { + 'review.comment': 'My comment', + 'review.signature': filename + } + + const declareRes = await client.event.actions.declare.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + keepAssignment: action !== ActionType.DECLARE + }) + + if (action === ActionType.DECLARE) { + const declareAction = declareRes.actions.find( + (action: ActionDocument) => action.type === 'DECLARE' + ) + + if (!declareAction || !('declaration' in declareAction)) { + throw new Error('Declaration info not found in action') + } + + return { eventId, declaration: declareAction?.declaration as Declaration } + } + + const validateRes = await client.event.actions.validate.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation, + duplicates: [], + keepAssignment: true + }) + + if (action === ActionType.VALIDATE) { + const validateAction = validateRes.actions.find( + (action: ActionDocument) => action.type === 'VALIDATE' + ) + + return { + eventId, + declaration: validateAction?.declaration as Declaration + } + } + + const registerRes = await client.event.actions.register.request.mutate({ + eventId: eventId, + transactionId: uuidv4(), + declaration, + annotation + }) + + const registerAction = registerRes.actions.find( + (action: ActionDocument) => action.type === 'REGISTER' + ) + + return { eventId, declaration: registerAction?.declaration as Declaration } +} diff --git a/e2e/testcases/v2-test-data/eventDeletion.ts b/e2e/testcases/v2-test-data/eventDeletion.ts new file mode 100644 index 0000000000..c901a622e4 --- /dev/null +++ b/e2e/testcases/v2-test-data/eventDeletion.ts @@ -0,0 +1,42 @@ +import { test } from '@playwright/test' +import { getToken } from '../../helpers' +import { CREDENTIALS, GATEWAY_HOST } from '../../constants' +import { createClient } from '@opencrvs/toolkit/api' + +async function deleteEvent(token: string, eventId: string) { + const client = createClient(GATEWAY_HOST + '/events', `Bearer ${token}`) + + await client.event.delete.mutate({ eventId }) +} + +export function trackAndDeleteCreatedEvents() { + const createdEventIds: string[] = [] + let token: string + + test.beforeEach(async ({ page }) => { + token = await getToken( + CREDENTIALS.LOCAL_REGISTRAR.USERNAME, + CREDENTIALS.LOCAL_REGISTRAR.PASSWORD + ) + + page.on('response', async (response) => { + if ( + response.status() === 200 && + response.url().includes('/api/events/event.create') + ) { + try { + const resBody = await response.json() + createdEventIds.push(resBody.result.data.json.id) + } catch (e) { + // Do nothing + } + } + }) + }) + + test.afterAll(async () => { + await Promise.allSettled( + createdEventIds.map((eventId) => deleteEvent(token, eventId)) + ) + }) +} diff --git a/e2e/testcases/v2-test-data/signature.png b/e2e/testcases/v2-test-data/signature.png new file mode 100644 index 0000000000..426a618f6c Binary files /dev/null and b/e2e/testcases/v2-test-data/signature.png differ diff --git a/e2e/testcases/v2-test-data/utils.ts b/e2e/testcases/v2-test-data/utils.ts new file mode 100644 index 0000000000..9bcbe07982 --- /dev/null +++ b/e2e/testcases/v2-test-data/utils.ts @@ -0,0 +1,37 @@ +import { v4 as uuidv4 } from 'uuid' +import { GATEWAY_HOST } from '../../constants' +import fs from 'fs' +import path from 'path' + +export function getSignatureFile() { + const buffer = fs.readFileSync(path.join(__dirname, 'signature.png')) + return new File([buffer], `signature-${Date.now()}.png`, { + type: 'image/png' + }) +} + +export async function uploadFile(file: File, token: string) { + const formData = new FormData() + const transactionId = uuidv4() + formData.append('file', file) + formData.append('transactionId', transactionId) + + const url = new URL('/upload', GATEWAY_HOST) + const res = await fetch(url, { + method: 'POST', + headers: { + Authorization: `Bearer ${token}` + }, + body: formData + }) + + if (!res.ok) { + throw new Error(`Failed to upload file: ${res.statusText}`) + } + + return { + path: await res.text(), + originalFilename: file.name, + type: file.type + } +} diff --git a/e2e/v2-utils.ts b/e2e/v2-utils.ts new file mode 100644 index 0000000000..337b0bf0e5 --- /dev/null +++ b/e2e/v2-utils.ts @@ -0,0 +1,125 @@ +import { Page, expect } from '@playwright/test' +import { + SAFE_INPUT_CHANGE_TIMEOUT_MS, + SAFE_OUTBOX_TIMEOUT_MS +} from './constants' + +export async function selectAction( + page: Page, + action: + | 'Print' + | 'Declare' + | 'Validate' + | 'Review' + | 'Register' + | 'Assign' + | 'Unassign' + | 'Delete' + | 'Correct record' + | 'View' + | 'Archive' +) { + if ( + (await page.getByTestId('status-value').innerText()) !== 'Draft' && + action !== 'View' + ) { + await ensureAssigned(page) + } + + // Keep retrying the click until the dropdown is visible + let isVisible = false + let attempts = 0 + const maxAttempts = 10 + + while (!isVisible && attempts < maxAttempts) { + await page.getByRole('button', { name: 'Action', exact: true }).click() + isVisible = await page + .locator('#action-Dropdown-Content') + .getByText(action, { exact: true }) + .isVisible() + + if (!isVisible) { + // Small wait before retrying + await page.waitForTimeout(500) + attempts++ + } + } + + await page + .locator('#action-Dropdown-Content') + .getByText(action, { exact: true }) + .click() +} + +export async function ensureAssigned(page: Page) { + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + + await page.getByRole('button', { name: 'Action' }).click() + + const unAssignAction = page + .locator('#action-Dropdown-Content li') + .filter({ hasText: new RegExp(`^Unassign$`, 'i') }) + .first() + + let assignAction = page + .locator('#action-Dropdown-Content li') + .filter({ hasText: new RegExp(`^Assign$`, 'i') }) + .first() + + // Wait until either "Unassign" or "Assign" is visible + await Promise.race([ + unAssignAction.waitFor({ state: 'visible' }), + assignAction.waitFor({ state: 'visible' }) + ]) + + if (await unAssignAction.isVisible()) { + await unAssignAction.click() + // Wait for the unassign modal to appear + await page.getByRole('button', { name: 'Unassign', exact: true }).click() + await expect(page.getByTestId('assignedTo-value')).toHaveText( + 'Not assigned', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) + await page.getByRole('button', { name: 'Action' }).click() + + assignAction = page + .locator('#action-Dropdown-Content li') + .filter({ hasText: new RegExp(`^Assign$`, 'i') }) + .first() + } + + if (await assignAction.isVisible()) { + await assignAction.click() + // Wait for the assign modal to appear + await page.getByRole('button', { name: 'Assign', exact: true }).click() + } + + await expect(page.getByTestId('assignedTo-value')).not.toHaveText( + 'Not assigned', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) +} + +export async function expectInUrl(page: Page, assertionString: string) { + await expect(page.url().includes(assertionString)).toBeTruthy() +} + +export async function ensureOutboxIsEmpty(page: Page) { + await page.waitForTimeout(SAFE_INPUT_CHANGE_TIMEOUT_MS) + + await expect(page.locator('#navigation_workqueue_outbox')).toHaveText( + 'Outbox', + { + timeout: SAFE_OUTBOX_TIMEOUT_MS + } + ) +} + +export async function type(page: Page, locator: string, text: string) { + await page.locator(locator).fill(text) + await page.locator(locator).blur() +} diff --git a/graphql.schema.json b/graphql.schema.json new file mode 100644 index 0000000000..3b6456bcc4 --- /dev/null +++ b/graphql.schema.json @@ -0,0 +1,21796 @@ +{ + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": null, + "types": [ + { + "kind": "OBJECT", + "name": "AdditionalIdWithCompositionId", + "description": null, + "fields": [ + { + "name": "compositionId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Address", + "description": null, + "fields": [ + { + "name": "city", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "district", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "districtName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "from", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineName", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "postalCode", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "city", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "district", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "from", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "line", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "postalCode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AdvancedSeachParameters", + "description": null, + "fields": [ + { + "name": "childDoB", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childDoBEnd", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childDoBStart", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childFirstNames", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childGender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childLastName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "compositionType", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfEvent", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfEventEnd", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfEventStart", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfRegistration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfRegistrationEnd", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfRegistrationStart", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedDoB", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedDoBEnd", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedDoBStart", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedFamilyName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedFirstNames", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedGender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "declarationJurisdictionId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "declarationLocationId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "event", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "Event", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventCountry", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel1", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel2", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel3", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel4", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel5", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherDoB", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherDoBEnd", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherDoBStart", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherFamilyName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherFirstNames", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantDoB", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantDoBEnd", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantDoBStart", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantFamilyName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantFirstNames", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherDoB", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherDoBEnd", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherDoBStart", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherFamilyName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherFirstNames", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nationalId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationStatuses", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AdvancedSearchParametersInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "brideDoB", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideDoBEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideDoBStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideFamilyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideFirstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideIdentifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childDoB", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childDoBEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childDoBStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childFirstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childGender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childLastName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "compositionType", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfEvent", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfEventEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfEventStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfMarriage", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfRegistration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfRegistrationEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfRegistrationStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedDoB", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedDoBEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedDoBStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedFamilyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedFirstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedGender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedIdentifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "declarationJurisdictionId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "declarationLocationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "event", + "description": null, + "type": { + "kind": "ENUM", + "name": "Event", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventCountry", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel2", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel3", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel4", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationLevel5", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherDoB", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherDoBEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherDoBStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherFamilyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherFirstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherIdentifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomDoB", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomDoBEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomDoBStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomFamilyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomFirstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomIdentifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantDoB", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantDoBEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantDoBStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantFamilyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantFirstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantIdentifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherDoB", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherDoBEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherDoBStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherFamilyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherFirstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherIdentifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nationalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "recordId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationStatuses", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ApplicationConfiguration", + "description": null, + "fields": [ + { + "name": "APPLICATION_NAME", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "BIRTH", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Birth", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "COUNTRY_LOGO", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CountryLogo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CURRENCY", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Currency", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DATE_OF_BIRTH_UNKNOWN", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DEATH", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Death", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "EXTERNAL_VALIDATION_WORKQUEUE", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_AGENT_AUDIT_LOCATIONS", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INFORMANT_NOTIFICATION_DELIVERY_METHOD", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INFORMANT_SIGNATURE", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INFORMANT_SIGNATURE_REQUIRED", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LOGIN_BACKGROUND", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "LoginBackground", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MARRIAGE", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Marriage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MARRIAGE_REGISTRATION", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NID_NUMBER_PATTERN", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PHONE_NUMBER_PATTERN", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "USER_NOTIFICATION_DELIVERY_METHOD", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApplicationConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "APPLICATION_NAME", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "BIRTH", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BirthInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "COUNTRY_LOGO", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CountryLogoInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CURRENCY", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CurrencyInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DATE_OF_BIRTH_UNKNOWN", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DEATH", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DeathInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "EXTERNAL_VALIDATION_WORKQUEUE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_AGENT_AUDIT_LOCATIONS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INFORMANT_NOTIFICATION_DELIVERY_METHOD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INFORMANT_SIGNATURE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INFORMANT_SIGNATURE_REQUIRED", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LOGIN_BACKGROUND", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LoginBackgroundInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MARRIAGE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MarriageInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NID_NUMBER_PATTERN", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PHONE_NUMBER_PATTERN", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "USER_NOTIFICATION_DELIVERY_METHOD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AssignmentData", + "description": null, + "fields": [ + { + "name": "avatarURL", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "officeName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Attachment", + "description": null, + "fields": [ + { + "name": "_fhirID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalFileName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subject", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "systemFileName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uri", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttachmentInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirID", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "originalFileName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subject", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "systemFileName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uri", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "AuditLogItemBase", + "description": null, + "fields": [ + { + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipAddress", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "practitionerId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userAgent", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UserAuditLogItem", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserAuditLogItemWithComposition", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Avatar", + "description": null, + "fields": [ + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AvatarInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Birth", + "description": null, + "fields": [ + { + "name": "FEE", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "BirthFee", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LATE_REGISTRATION_TARGET", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRINT_IN_ADVANCE", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTRATION_TARGET", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BirthEventSearchSet", + "description": null, + "fields": [ + { + "name": "childGender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childName", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherDateOfBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fatherIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fathersFirstName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fathersLastName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherDateOfBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "motherIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mothersFirstName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mothersLastName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operationHistories", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OperationHistorySearchSet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "placeOfBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RegistrationSearchSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "EventSearchSet", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BirthFee", + "description": null, + "fields": [ + { + "name": "DELAYED", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LATE", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ON_TIME", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BirthFeeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "DELAYED", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LATE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ON_TIME", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BirthInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "FEE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BirthFeeInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LATE_REGISTRATION_TARGET", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRINT_IN_ADVANCE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTRATION_TARGET", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BirthRegResultSet", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalItems", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BirthRegistration", + "description": null, + "fields": [ + { + "name": "_fhirIDMap", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Map", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attendantAtBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "child", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenBornAliveToMother", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocation", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "father", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "foetalDeathsToMother", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "history", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "History", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RelatedPerson", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPreviousLiveBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mother", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherAttendantAtBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questionnaire", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionnaireQuestion", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Registration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "weightAtBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "EventRegistration", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirIDMap", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Map", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attendantAtBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "child", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childrenBornAliveToMother", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "father", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "foetalDeathsToMother", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelatedPersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastPreviousLiveBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mother", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherAttendantAtBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questionnaire", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionnaireQuestionInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "weightAtBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BookMarkedSearches", + "description": null, + "fields": [ + { + "name": "searchList", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BookmarkedSeachItem", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BookmarkSearchInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameters", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AdvancedSearchParametersInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BookmarkedSeachItem", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameters", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdvancedSeachParameters", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Certificate", + "description": null, + "fields": [ + { + "name": "collector", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RelatedPerson", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasShowedVerifiedDocument", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "payments", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CertificateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "collector", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelatedPersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasShowedVerifiedDocument", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "payments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PaymentInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CertificateSVG", + "description": null, + "fields": [ + { + "name": "event", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Event", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertificateStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgDateCreated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgDateUpdated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgFilename", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CertificateSVGInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Event", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertificateStatus", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgDateCreated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgDateUpdated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "svgFilename", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CertificateStatus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ACTIVE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INACTIVE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CertificationMetric", + "description": null, + "fields": [ + { + "name": "eventType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Comment", + "description": null, + "fields": [ + { + "name": "comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ComparisonInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ne", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nin", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ContactPoint", + "description": null, + "fields": [ + { + "name": "system", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ContactPointInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "system", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CorrectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attestedAndCopied", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasShowedVerifiedDocument", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "noSupportingDocumentationRequired", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "note", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherReason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "payments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PaymentInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requester", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "values", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CorrectionValueInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CorrectionMetric", + "description": null, + "fields": [ + { + "name": "reason", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CorrectionValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "newValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oldValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "section", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CountryLogo", + "description": null, + "fields": [ + { + "name": "file", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CountryLogoInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "file", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreatedIds", + "description": null, + "fields": [ + { + "name": "compositionId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isPotentiallyDuplicate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Currency", + "description": null, + "fields": [ + { + "name": "isoCode", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "languagesAndCountry", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CurrencyInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isoCode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "languagesAndCountry", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Date", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Death", + "description": null, + "fields": [ + { + "name": "FEE", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "DeathFee", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRINT_IN_ADVANCE", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTRATION_TARGET", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeathEventSearchSet", + "description": null, + "fields": [ + { + "name": "dateOfDeath", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedGender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceasedName", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operationHistories", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OperationHistorySearchSet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RegistrationSearchSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "EventSearchSet", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeathFee", + "description": null, + "fields": [ + { + "name": "DELAYED", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ON_TIME", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeathFeeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "DELAYED", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ON_TIME", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeathInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "FEE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DeathFeeInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRINT_IN_ADVANCE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTRATION_TARGET", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeathRegistration", + "description": null, + "fields": [ + { + "name": "_fhirIDMap", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Map", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "causeOfDeath", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "causeOfDeathEstablished", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "causeOfDeathMethod", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deathDescription", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocation", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "father", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "femaleDependentsOfDeceased", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "history", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "History", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RelatedPerson", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maleDependentsOfDeceased", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mannerOfDeath", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "medicalPractitioner", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "MedicalPractitioner", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mother", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questionnaire", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionnaireQuestion", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Registration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "spouse", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "EventRegistration", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirIDMap", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Map", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "causeOfDeath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "causeOfDeathEstablished", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "causeOfDeathMethod", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deathDescription", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "father", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "femaleDependentsOfDeceased", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelatedPersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maleDependentsOfDeceased", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mannerOfDeath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "medicalPractitioner", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MedicalPractitionerInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mother", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questionnaire", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionnaireQuestionInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "spouse", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Deceased", + "description": null, + "fields": [ + { + "name": "deathDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeceasedInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deathDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeclarationsStartedMetrics", + "description": null, + "fields": [ + { + "name": "fieldAgentDeclarations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hospitalDeclarations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "officeDeclarations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Dummy", + "description": null, + "fields": [ + { + "name": "dummy", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DuplicatesInfo", + "description": null, + "fields": [ + { + "name": "compositionId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Estimation", + "description": null, + "fields": [ + { + "name": "femaleEstimation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationLevel", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maleEstimation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalEstimation", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Event", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "birth", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "death", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marriage", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventMetrics", + "description": null, + "fields": [ + { + "name": "eventLocationType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "practitionerRole", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeLabel", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventMetricsByLocation", + "description": null, + "fields": [ + { + "name": "delayed", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "healthFacility", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "home", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "late", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventMetricsByRegistrar", + "description": null, + "fields": [ + { + "name": "delayed", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "late", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrarPractitioner", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventMetricsByTime", + "description": null, + "fields": [ + { + "name": "delayed", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "healthFacility", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "home", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "late", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "month", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventProgressData", + "description": null, + "fields": [ + { + "name": "timeInProgress", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeInReadyForReview", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeInReadyToPrint", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeInRequiresUpdates", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeInWaitingForApproval", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeInWaitingForBRIS", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventProgressResultSet", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventProgressSet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalItems", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventProgressSet", + "description": null, + "fields": [ + { + "name": "dateOfEvent", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "progressReport", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "EventProgressData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RegistrationSearchSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedByFacility", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "EventRegistration", + "description": null, + "fields": [ + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "history", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "History", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Registration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DeathRegistration", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MarriageRegistration", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "EventSearchResultSet", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "EventSearchSet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalItems", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "EventSearchSet", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operationHistories", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OperationHistorySearchSet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RegistrationSearchSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BirthEventSearchSet", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DeathEventSearchSet", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MarriageEventSearchSet", + "ofType": null + } + ] + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "History", + "description": null, + "fields": [ + { + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "RegAction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "certificates", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Certificate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comments", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dhis2Notification", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duplicateOf", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasShowedVerifiedDocument", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "input", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InputOutput", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipAddress", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "office", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "output", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InputOutput", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "potentialDuplicates", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "regStatus", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "RegStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requester", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Signature", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statusReason", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "StatusReason", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "system", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "IntegratedSystem", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "HumanName", + "description": null, + "fields": [ + { + "name": "familyName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstNames", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marriedLastName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "HumanNameInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "familyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstNames", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "marriedLastName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Identifier", + "description": null, + "fields": [ + { + "name": "system", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IdentityInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldsModifiedByIdentity", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IdentityType", + "description": null, + "fields": [ + { + "name": "fieldsModifiedByIdentity", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ImageFit", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "FILL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TILE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InputOutput", + "description": null, + "fields": [ + { + "name": "valueCode", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "valueId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "valueString", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegratedSystem", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "IntegratingSystemType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "MOSIP", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OSIA", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OTHER", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LabelInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lang", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalRegistrar", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SystemRoleType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Signature", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Location", + "description": null, + "fields": [ + { + "name": "_fhirID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "alias", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "altitude", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "geoData", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identifier", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "latitude", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "longitude", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "partOf", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "telecom", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContactPoint", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirID", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "alias", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "altitude", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "geoData", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "latitude", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "longitude", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "partOf", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "telecom", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ContactPointInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocationStatisticsResponse", + "description": null, + "fields": [ + { + "name": "offices", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "population", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrars", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocationWiseEstimationMetric", + "description": null, + "fields": [ + { + "name": "estimated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "within1Year", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "within5Years", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "withinTarget", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LoginBackground", + "description": null, + "fields": [ + { + "name": "backgroundColor", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "backgroundImage", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageFit", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "ImageFit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LoginBackgroundInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "backgroundColor", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "backgroundImage", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageFit", + "description": null, + "type": { + "kind": "ENUM", + "name": "ImageFit", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Map", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Marriage", + "description": null, + "fields": [ + { + "name": "FEE", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "MarriageFee", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRINT_IN_ADVANCE", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTRATION_TARGET", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MarriageEventSearchSet", + "description": null, + "fields": [ + { + "name": "brideIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideName", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfMarriage", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomIdentifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomName", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operationHistories", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OperationHistorySearchSet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RegistrationSearchSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "EventSearchSet", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MarriageFee", + "description": null, + "fields": [ + { + "name": "DELAYED", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ON_TIME", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MarriageFeeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "DELAYED", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ON_TIME", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MarriageInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "FEE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MarriageFeeInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRINT_IN_ADVANCE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTRATION_TARGET", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MarriageRegistration", + "description": null, + "fields": [ + { + "name": "_fhirIDMap", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Map", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bride", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocation", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "history", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "History", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RelatedPerson", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questionnaire", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QuestionnaireQuestion", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Registration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeOfMarriage", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessOne", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RelatedPerson", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessTwo", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "RelatedPerson", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "EventRegistration", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MarriageRegistrationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirIDMap", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Map", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bride", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelatedPersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questionnaire", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QuestionnaireQuestionInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeOfMarriage", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessOne", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelatedPersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessTwo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelatedPersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MedicalPractitioner", + "description": null, + "fields": [ + { + "name": "lastVisitDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qualification", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MedicalPractitionerInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lastVisitDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qualification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "MixedTotalMetricsResult", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "TotalMetricsByLocation", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TotalMetricsByRegistrar", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TotalMetricsByTime", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "MonthWiseEstimationMetric", + "description": null, + "fields": [ + { + "name": "estimated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "month", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "within1Year", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "within5Years", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "withinTarget", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "year", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "activateUser", + "description": null, + "args": [ + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "securityQNAs", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SecurityQuestionAnswer", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auditUser", + "description": null, + "args": [ + { + "name": "action", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bookmarkAdvancedSearch", + "description": null, + "args": [ + { + "name": "bookmarkSearchInput", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BookmarkSearchInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BookMarkedSearches", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeAvatar", + "description": null, + "args": [ + { + "name": "avatar", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AvatarInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Avatar", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changeEmail", + "description": null, + "args": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nonce", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifyCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changePassword", + "description": null, + "args": [ + { + "name": "existingPassword", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changePhone", + "description": null, + "args": [ + { + "name": "nonce", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phoneNumber", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifyCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createBirthRegistration", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIds", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createDeathRegistration", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIds", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMarriageRegistration", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarriageRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreatedIds", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createNotification", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Notification", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createOrUpdateCertificateSVG", + "description": null, + "args": [ + { + "name": "certificateSVG", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertificateSVGInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CertificateSVG", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createOrUpdateUser", + "description": null, + "args": [ + { + "name": "user", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivateSystem", + "description": null, + "args": [ + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "System", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteSystem", + "description": null, + "args": [ + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "System", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markBirthAsCertified", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markBirthAsIssued", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markBirthAsRegistered", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markBirthAsValidated", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markBirthAsVerified", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markDeathAsCertified", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markDeathAsIssued", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markDeathAsRegistered", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeathRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markDeathAsValidated", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markDeathAsVerified", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DeathRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markEventAsArchived", + "description": null, + "args": [ + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duplicateTrackingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markEventAsDuplicate", + "description": null, + "args": [ + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duplicateTrackingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markEventAsNotDuplicate", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markEventAsReinstated", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Reinstated", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markEventAsUnassigned", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markEventAsVoided", + "description": null, + "args": [ + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markMarriageAsCertified", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarriageRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markMarriageAsIssued", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarriageRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markMarriageAsRegistered", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarriageRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MarriageRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markMarriageAsValidated", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MarriageRegistrationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reactivateSystem", + "description": null, + "args": [ + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "System", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refreshSystemSecret", + "description": null, + "args": [ + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SystemSecret", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registerSystem", + "description": null, + "args": [ + { + "name": "system", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SystemInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SystemSecret", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removeBookmarkedAdvancedSearch", + "description": null, + "args": [ + { + "name": "removeBookmarkedSearchInput", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RemoveBookmarkedSeachInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BookMarkedSearches", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestBirthRegistrationCorrection", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestDeathRegistrationCorrection", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMarriageRegistrationCorrection", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MarriageRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resendInvite", + "description": null, + "args": [ + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resetPasswordInvite", + "description": null, + "args": [ + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toggleInformantSMSNotification", + "description": null, + "args": [ + { + "name": "smsNotifications", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SMSNotificationInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SMSNotification", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateApplicationConfig", + "description": null, + "args": [ + { + "name": "applicationConfig", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ApplicationConfigurationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ApplicationConfiguration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateBirthRegistration", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BirthRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateDeathRegistration", + "description": null, + "args": [ + { + "name": "details", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeathRegistrationInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatePermissions", + "description": null, + "args": [ + { + "name": "setting", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdatePermissionsInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "System", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateRole", + "description": null, + "args": [ + { + "name": "systemRole", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SystemRoleInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Response", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "usernameReminder", + "description": null, + "args": [ + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "voidNotification", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Notification", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Notification", + "description": null, + "fields": [ + { + "name": "child", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "father", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mother", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "child", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "father", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mother", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OIDPUserAddress", + "description": null, + "fields": [ + { + "name": "city", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formatted", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locality", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "postal_code", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "street_address", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OIDPUserInfo", + "description": null, + "fields": [ + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "OIDPUserAddress", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthdate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email_verified", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "family_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "given_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "middle_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nickname", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phone_number", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phone_number_verified", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "picture", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preferred_username", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "profile", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sub", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "website", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zoneinfo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OperationHistorySearchSet", + "description": null, + "fields": [ + { + "name": "notificationFacilityAlias", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationFacilityName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatedOn", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operationType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatorName", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatorOfficeAlias", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatorOfficeName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatorRole", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rejectComment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rejectReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Payment", + "description": null, + "fields": [ + { + "name": "amount", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "outcome", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "PaymentOutcomeType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "PaymentType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "amount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "outcome", + "description": null, + "type": { + "kind": "ENUM", + "name": "PaymentOutcomeType", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "PaymentType", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PaymentMetric", + "description": null, + "fields": [ + { + "name": "paymentType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PaymentOutcomeType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "COMPLETED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ERROR", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PARTIAL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PaymentType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "MANUAL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Person", + "description": null, + "fields": [ + { + "name": "_fhirID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "age", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ageOfIndividualInYears", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfMarriage", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Deceased", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "detailsExist", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "educationalAttainment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exactDateOfBirthUnknown", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IdentityType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maritalStatus", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multipleBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nationality", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "occupation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "photo", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reasonNotApplying", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "telecom", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContactPoint", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PersonInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirID", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "age", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ageOfIndividualInYears", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfMarriage", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DeceasedInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "detailsExist", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "educationalAttainment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IdentityInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maritalStatus", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multipleBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "HumanNameInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nationality", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "occupation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "photo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reasonNotApplying", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "telecom", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ContactPointInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "fetchBirthRegistration", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchDeathRegistration", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DeathRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchEventRegistration", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "EventRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchLocationWiseEventMetrics", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocationWiseEstimationMetric", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchMarriageRegistration", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MarriageRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchMonthWiseEventMetrics", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MonthWiseEstimationMetric", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchRecordDetailsForVerification", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "UNION", + "name": "RecordDetails", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchRegistration", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "EventRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchRegistrationCountByStatus", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "RegistrationCountResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchRegistrationForViewing", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "EventRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fetchSystem", + "description": null, + "args": [ + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "System", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getActiveCertificatesSVG", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertificateSVG", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getCertificateSVG", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Event", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertificateStatus", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CertificateSVG", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getDeclarationsStartedMetrics", + "description": null, + "args": [ + { + "name": "locationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DeclarationsStartedMetrics", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getEventsWithProgress", + "description": null, + "args": [ + { + "name": "compositionType", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "declarationJurisdictionId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationStatuses", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "EventProgressResultSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getLocationStatistics", + "description": null, + "args": [ + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "populationYear", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "LocationStatisticsResponse", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getOIDPUserInfo", + "description": null, + "args": [ + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "grantType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "redirectUri", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "UserInfo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getRegistrationsListByFilter", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filterBy", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "UNION", + "name": "MixedTotalMetricsResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getSystemRoles", + "description": null, + "args": [ + { + "name": "active", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortBy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ComparisonInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SystemRole", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTotalCertifications", + "description": null, + "args": [ + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertificationMetric", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTotalCorrections", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CorrectionMetric", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTotalMetrics", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TotalMetricsResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getTotalPayments", + "description": null, + "args": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PaymentMetric", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getUser", + "description": null, + "args": [ + { + "name": "userId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getUserAuditLog", + "description": null, + "args": [ + { + "name": "count", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "practitionerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "UserAuditLogResultSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getUserByEmail", + "description": null, + "args": [ + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getUserByMobile", + "description": null, + "args": [ + { + "name": "mobile", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getVSExports", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TotalVSExport", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasChildLocation", + "description": null, + "args": [ + { + "name": "parentId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantSMSNotifications", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SMSNotification", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "listBirthRegistrations", + "description": null, + "args": [ + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "from", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationIds", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BirthRegResultSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "listNotifications", + "description": null, + "args": [ + { + "name": "from", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationIds", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Notification", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationById", + "description": null, + "args": [ + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationsByParent", + "description": null, + "args": [ + { + "name": "parentId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryPersonByIdentifier", + "description": null, + "args": [ + { + "name": "identifier", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryPersonByNidIdentifier", + "description": null, + "args": [ + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dob", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nid", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryRegistrationByIdentifier", + "description": null, + "args": [ + { + "name": "identifier", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchBirthRegistrations", + "description": null, + "args": [ + { + "name": "fromDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchDeathRegistrations", + "description": null, + "args": [ + { + "name": "fromDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeathRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchEvents", + "description": null, + "args": [ + { + "name": "advancedSearchParameters", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AdvancedSearchParametersInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortColumn", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "EventSearchResultSet", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchFieldAgents", + "description": null, + "args": [ + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "event", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "language", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primaryOfficeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeEnd", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeStart", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SearchFieldAgentResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchUsers", + "description": null, + "args": [ + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mobile", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primaryOfficeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "systemRole", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SearchUserResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verifyPasswordById", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "VerifyPasswordResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QuestionnaireQuestion", + "description": null, + "fields": [ + { + "name": "fieldId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QuestionnaireQuestionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "RecordDetails", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BirthRegistration", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DeathRegistration", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "RegAction", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ASSIGNED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DOWNLOADED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FLAGGED_AS_POTENTIAL_DUPLICATE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MARKED_AS_DUPLICATE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MARKED_AS_NOT_DUPLICATE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REINSTATED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REQUESTED_CORRECTION", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNASSIGNED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VERIFIED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VIEWED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "RegStatus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ARCHIVED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CERTIFIED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DECLARATION_UPDATED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DECLARED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IN_PROGRESS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ISSUED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTERED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REJECTED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VALIDATED", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "WAITING_VALIDATION", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RegWorkflow", + "description": null, + "fields": [ + { + "name": "comments", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "office", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeLogged", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "RegStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RegWorkflowInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "comments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeLoggedMS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "RegStatus", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UserInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Registration", + "description": null, + "fields": [ + { + "name": "_fhirID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assignment", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "AssignmentData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachments", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "book", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideSignature", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideSignatureURI", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "certificates", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Certificate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contact", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactEmail", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactPhoneNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactRelationship", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "draftId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duplicates", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DuplicatesInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomSignature", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomSignatureURI", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inCompleteFields", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantsSignature", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantsSignatureURI", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mosipAid", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherInformantType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "page", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paperFormID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RegWorkflow", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "RegistrationType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessOneSignature", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessOneSignatureURI", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessTwoSignature", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessTwoSignatureURI", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RegistrationCountResult", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StatusWiseRegistrationCount", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RegistrationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirID", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "book", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brideSignature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "certificates", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertificateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactEmail", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactPhoneNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "correction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CorrectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "draftId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groomSignature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inCompleteFields", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "informantsSignature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mosipAid", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherInformantType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "page", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paperFormID", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RegWorkflowInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "RegistrationType", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessOneSignature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "witnessTwoSignature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RegistrationSearchSet", + "description": null, + "fields": [ + { + "name": "assignment", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "AssignmentData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactRelationship", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfDeclaration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duplicates", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLocationId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modifiedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registeredLocationId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registrationNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "RegistrationType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "BIRTH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DEATH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MARRIAGE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Reinstated", + "description": null, + "fields": [ + { + "name": "registrationStatus", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "RegStatus", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taskEntryResourceID", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RelatedPerson", + "description": null, + "fields": [ + { + "name": "_fhirID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_fhirIDPatient", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "affidavit", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "age", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ageOfIndividualInYears", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfMarriage", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Deceased", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "detailsExist", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "educationalAttainment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exactDateOfBirthUnknown", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IdentityType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maritalStatus", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multipleBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nationality", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "occupation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherRelationship", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "photo", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reasonNotApplying", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relationship", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "telecom", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContactPoint", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RelatedPersonInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_fhirID", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_fhirIDPatient", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "affidavit", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "age", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ageOfIndividualInYears", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "birthDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfMarriage", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deceased", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DeceasedInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "detailsExist", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "educationalAttainment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exactDateOfBirthUnknown", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IdentityInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maritalStatus", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multipleBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "HumanNameInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nationality", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "occupation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherRelationship", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "photo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reasonNotApplying", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relationship", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "telecom", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ContactPointInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveBookmarkedSeachInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "searchId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Response", + "description": null, + "fields": [ + { + "name": "roleIdMap", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Map", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Role", + "description": null, + "fields": [ + { + "name": "_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoleLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RoleInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LabelInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoleLabel", + "description": null, + "fields": [ + { + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lang", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SMSNotification", + "description": null, + "fields": [ + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enabled", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SMSNotificationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "enabled", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SearchFieldAgentResponse", + "description": null, + "fields": [ + { + "name": "avatar", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Avatar", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "averageTimeForDeclaredDeclarations", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creationDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fullName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "practitionerId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primaryOfficeId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Role", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "Status", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalNumberOfDeclarationStarted", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalNumberOfInProgressAppStarted", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalNumberOfRejectedDeclarations", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SearchFieldAgentResult", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SearchFieldAgentResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalItems", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SearchUserResult", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalItems", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SecurityQuestionAnswer", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "answer", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "questionKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Signature", + "description": null, + "fields": [ + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SignatureInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Status", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "active", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivated", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pending", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusReason", + "description": null, + "fields": [ + { + "name": "text", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusWiseRegistrationCount", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "System", + "description": null, + "fields": [ + { + "name": "_id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integratingSystemType", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "IntegratingSystemType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "settings", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SystemSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shaSecret", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SystemStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SystemType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SystemInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "integratingSystemType", + "description": null, + "type": { + "kind": "ENUM", + "name": "IntegratingSystemType", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "settings", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SystemSettingsInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SystemType", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SystemRole", + "description": null, + "fields": [ + { + "name": "active", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roles", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Role", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SystemRoleType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SystemRoleInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "active", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roles", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoleInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SystemRoleType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "FIELD_AGENT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LOCAL_REGISTRAR", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LOCAL_SYSTEM_ADMIN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NATIONAL_REGISTRAR", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NATIONAL_SYSTEM_ADMIN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PERFORMANCE_MANAGEMENT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REGISTRATION_AGENT", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SystemSecret", + "description": null, + "fields": [ + { + "name": "clientSecret", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "system", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "System", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SystemSettings", + "description": null, + "fields": [ + { + "name": "dailyQuota", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "openIdProviderBaseUrl", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "openIdProviderClaims", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "openIdProviderClientId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WebhookPermission", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SystemSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dailyQuota", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WebhookInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SystemStatus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "active", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivated", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SystemType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "HEALTH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NATIONAL_ID", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "RECORD_SEARCH", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "WEBHOOK", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TotalMetricsByLocation", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventMetricsByLocation", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TotalMetricsByRegistrar", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventMetricsByRegistrar", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TotalMetricsByTime", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventMetricsByTime", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TotalMetricsResult", + "description": null, + "fields": [ + { + "name": "estimated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Estimation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventMetrics", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TotalVSExport", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VSExport", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatePermissionsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WebhookInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "User", + "description": null, + "fields": [ + { + "name": "avatar", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Avatar", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "catchmentArea", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creationDate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "device", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Identifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localRegistrar", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "LocalRegistrar", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mobile", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HumanName", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "practitionerId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primaryOffice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Location", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Role", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searches", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BookmarkedSeachItem", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Signature", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Status", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "systemRole", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SystemRoleType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "underInvestigation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userMgntUserID", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserAuditLogItem", + "description": null, + "fields": [ + { + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipAddress", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "practitionerId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userAgent", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditLogItemBase", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserAuditLogItemWithComposition", + "description": null, + "fields": [ + { + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AdditionalIdWithCompositionId", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipAddress", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "practitionerId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "time", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userAgent", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AuditLogItemBase", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "UserAuditLogResultItem", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "UserAuditLogItem", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserAuditLogItemWithComposition", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "UserAuditLogResultSet", + "description": null, + "fields": [ + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "UNION", + "name": "UserAuditLogResultItem", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserIdentifierInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "system", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "use", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserInfo", + "description": null, + "fields": [ + { + "name": "districtFhirId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationLevel3FhirId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oidpUserInfo", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "OIDPUserInfo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateFhirId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "catchmentArea", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "device", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserIdentifierInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mobile", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "HumanNameInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primaryOffice", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SignatureInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "Status", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "systemRole", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SystemRoleType", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "VSExport", + "description": null, + "fields": [ + { + "name": "createdOn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endDate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "event", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileSize", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startDate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "VerifyPasswordResult", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mobile", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scrope", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "username", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WebhookInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "event", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WebhookPermission", + "description": null, + "fields": [ + { + "name": "event", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Directive", + "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isRepeatable", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__EnumValue", + "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Schema", + "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", + "fields": [ + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types", + "description": "A list of all types supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Directive", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Type", + "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "fields": [ + { + "name": "kind", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "specifiedByURL", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Field", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaces", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "possibleTypes", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enumValues", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputFields", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ofType", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCALAR", + "description": "Indicates this type is a scalar.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + } + ], + "directives": [ + { + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "isRepeatable": false, + "locations": [ + "ARGUMENT_DEFINITION", + "ENUM_VALUE", + "FIELD_DEFINITION", + "INPUT_FIELD_DEFINITION" + ], + "args": [ + { + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"", + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "isRepeatable": false, + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Included when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "isRepeatable": false, + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Skipped when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ] + }, + { + "name": "specifiedBy", + "description": "Exposes a URL that specifies the behaviour of this scalar.", + "isRepeatable": false, + "locations": [ + "SCALAR" + ], + "args": [ + { + "name": "url", + "description": "The URL that specifies the behaviour of this scalar.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ] + } + ] + } +} \ No newline at end of file diff --git a/infrastructure/.kube b/infrastructure/.kube new file mode 100644 index 0000000000..779ba33a7a --- /dev/null +++ b/infrastructure/.kube @@ -0,0 +1 @@ +This file is used to check compatibility with kubernetes at: https://github.com/opencrvs/e2e/actions/workflows/deploy-and-e2e.yml diff --git a/infrastructure/backups/backup.sh b/infrastructure/backups/backup.sh index 0946476311..d1b08fceef 100755 --- a/infrastructure/backups/backup.sh +++ b/infrastructure/backups/backup.sh @@ -133,6 +133,7 @@ mkdir -p $ROOT_PATH/backups/influxdb mkdir -p $ROOT_PATH/backups/mongo mkdir -p $ROOT_PATH/backups/minio mkdir -p $ROOT_PATH/backups/vsexport +mkdir -p $ROOT_PATH/backups/sqlite mkdir -p $ROOT_PATH/backups/postgres # This enables root-created directory to be writable by the docker user @@ -183,6 +184,13 @@ get_target_indices() { | sed 's/\,$//' } +get_target_indices() { + docker run --rm --network=$NETWORK appropriate/curl curl -s "http://$(elasticsearch_host)/_cat/indices?h=index" \ + | grep -E '^(ocrvs-|events_)' \ + | paste -sd, - \ + | sed 's/\,$//' +} + # Today's date is used for filenames if LABEL is not provided #----------------------------------- BACKUP_DATE=$(date +%Y-%m-%d) @@ -215,6 +223,17 @@ docker run --rm \ postgres:17 \ bash -c "pg_dump -h postgres -U $POSTGRES_USER -d events -F c -f /backups/events-${LABEL:-$BACKUP_DATE}.dump" +# Backup SQLite +# --------------------------------------------------------------------------------------------- +echo "Creating a backup for SQLite" + +docker run --rm \ + -v $ROOT_PATH/sqlite:/data/sqlite \ + -v $ROOT_PATH/backups/sqlite:/data/backup \ + alpine sh -c "apk add --no-cache sqlite && \ + sqlite3 /data/sqlite/mosip-api.db \".backup '/data/backup/mosip-api-${LABEL:-$BACKUP_DATE}.sqlite'\"" + + #------------------------------------------------------------------------------------- echo "" @@ -245,12 +264,17 @@ echo "Backup Elasticsearch as a set of snapshot files into an elasticsearch sub echo "" create_elasticsearch_backup() { + indices=$(get_target_indices) + echo "List indices for backup: $indices" indices=$(get_target_indices) echo "List indices for backup: $indices" OUTPUT="" json_payload="{\"indices\": \"${indices}\"}" OUTPUT=$(docker run --rm --network=$NETWORK appropriate/curl curl -sS -X PUT -H "Content-Type: application/json;charset=UTF-8" "http://$(elasticsearch_host)/_snapshot/ocrvs/snapshot_${LABEL:-$BACKUP_DATE}?wait_for_completion=true&pretty" -d "$json_payload" 2>/dev/null) || true + json_payload="{\"indices\": \"${indices}\"}" + OUTPUT=$(docker run --rm --network=$NETWORK appropriate/curl curl -sS -X PUT -H "Content-Type: application/json;charset=UTF-8" "http://$(elasticsearch_host)/_snapshot/ocrvs/snapshot_${LABEL:-$BACKUP_DATE}?wait_for_completion=true&pretty" -d "$json_payload" 2>/dev/null) || true + if echo $OUTPUT | jq -e '.snapshot.state == "SUCCESS"' > /dev/null; then echo "Snapshot state is SUCCESS" else @@ -312,6 +336,7 @@ mkdir -p $BACKUP_RAW_FILES_DIR/mongo/ && cp $ROOT_PATH/backups/mongo/application mkdir -p $BACKUP_RAW_FILES_DIR/mongo/ && cp $ROOT_PATH/backups/mongo/metrics-${LABEL:-$BACKUP_DATE}.gz $BACKUP_RAW_FILES_DIR/mongo/ mkdir -p $BACKUP_RAW_FILES_DIR/mongo/ && cp $ROOT_PATH/backups/mongo/webhooks-${LABEL:-$BACKUP_DATE}.gz $BACKUP_RAW_FILES_DIR/mongo/ mkdir -p $BACKUP_RAW_FILES_DIR/mongo/ && cp $ROOT_PATH/backups/mongo/performance-${LABEL:-$BACKUP_DATE}.gz $BACKUP_RAW_FILES_DIR/mongo/ +mkdir -p $BACKUP_RAW_FILES_DIR/sqlite/ && cp $ROOT_PATH/backups/sqlite/mosip-api-${LABEL:-$BACKUP_DATE}.sqlite $BACKUP_RAW_FILES_DIR/sqlite/ mkdir -p $BACKUP_RAW_FILES_DIR/postgres/ && cp $ROOT_PATH/backups/postgres/events-${LABEL:-$BACKUP_DATE}.dump $BACKUP_RAW_FILES_DIR/postgres/ tar -czf /tmp/${LABEL:-$BACKUP_DATE}.tar.gz -C "$BACKUP_RAW_FILES_DIR" . diff --git a/infrastructure/clear-all-data.sh b/infrastructure/clear-all-data.sh index 2c4707720f..ece8a38429 100755 --- a/infrastructure/clear-all-data.sh +++ b/infrastructure/clear-all-data.sh @@ -151,4 +151,4 @@ echo "🚀 Reinitializing Postgres with on-deploy.sh..." docker service update --force opencrvs_postgres-on-update -echo "✅ All data cleared." \ No newline at end of file +echo "✅ All data cleared." diff --git a/infrastructure/deployment/deploy.sh b/infrastructure/deployment/deploy.sh index 6eaa9dfe2d..49ce7019ef 100755 --- a/infrastructure/deployment/deploy.sh +++ b/infrastructure/deployment/deploy.sh @@ -270,9 +270,18 @@ get_docker_tags_from_compose_files() { | sed -E "s/:-[A-Za-z_0-9]+//g" \ | sed -E "s/[{}]//g") + # FIXME: | grep -v 'docker.elastic.co/elasticsearch/elasticsearch' expression added to bypass + # duplicates in the docker-compose files. + # e/g if top level docker-compose file has elasticsearch image is docker.elastic.co/elasticsearch/elasticsearch + # and then redefined to ghcr.io/***/elasticsearch:8.16.4, script pull logic will try to pull + # both images and fail with error: + # Error response from daemon: Get "https://docker.elastic.co/v2/": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) + # Next steps: + # Use yq to parse the docker-compose files and remove duplicates. echo $IMAGE_TAG_LIST_WITHOUT_VARIABLE_SUBSTITUTION_DEFAULT_VALUES \ | envsubst \ - | sed 's/ /\n/g' + | sed 's/ /\n/g' \ + | grep -v 'docker.elastic.co/elasticsearch/elasticsearch' } split_and_join() { @@ -318,16 +327,8 @@ docker_stack_deploy() { docker stack deploy --prune -c '$(split_and_join " " " -c " "$(to_remote_paths $COMPOSE_FILES_USED)")' --with-registry-auth opencrvs' } -get_opencrvs_version() { - PREVIOUS_VERSION=$(configured_ssh "docker service ls | grep opencrvs_base | cut -d ':' -f 2") - echo "Previous opencrvs version: $PREVIOUS_VERSION" - echo "Current opencrvs version: $VERSION" -} - validate_options -get_opencrvs_version - # Create new passwords for all MongoDB users created in # infrastructure/mongodb/docker-entrypoint-initdb.d/create-mongo-users.sh # @@ -357,8 +358,8 @@ export WEBHOOKS_REDIS_PASSWORD=`generate_password` export EVENTS_APP_POSTGRES_PASSWORD=`generate_password` export EVENTS_MIGRATOR_POSTGRES_PASSWORD=`generate_password` export ANALYTICS_POSTGRES_PASSWORD=`generate_password` +export ANALYTICS_POSTGRES_USER=`generate_password` -# # Elasticsearch credentials # # Notice that all of these passwords change on each deployment. @@ -461,4 +462,4 @@ EMAIL_PAYLOAD='{ configured_ssh "docker run --rm --network=opencrvs_overlay_net appropriate/curl \ -X POST 'http://countryconfig:3040/email' \ -H 'Content-Type: application/json' \ - -d '$EMAIL_PAYLOAD'" \ No newline at end of file + -d '$EMAIL_PAYLOAD'" diff --git a/infrastructure/docker-compose.deploy.yml b/infrastructure/docker-compose.deploy.yml index c38db38456..6949d058c1 100644 --- a/infrastructure/docker-compose.deploy.yml +++ b/infrastructure/docker-compose.deploy.yml @@ -60,7 +60,7 @@ services: - overlay_net filebeat: - image: docker.elastic.co/beats/filebeat:8.16.4 + image: ghcr.io/opencrvs/filebeat:8.16.4 user: root networks: - overlay_net @@ -85,7 +85,7 @@ services: - 'traefik.enable=false' metricbeat: - image: docker.elastic.co/beats/metricbeat:8.16.4 + image: ghcr.io/opencrvs/metricbeat:8.16.4 user: root cap_add: - SYS_PTRACE @@ -123,7 +123,7 @@ services: gelf-address: 'udp://127.0.0.1:12201' tag: 'metricbeat' setup-kibana-config: - image: curlimages/curl:7.83.1 + image: curlimages/curl:7.88.1 entrypoint: [ 'curl', @@ -156,7 +156,7 @@ services: gelf-address: 'udp://127.0.0.1:12201' tag: 'setup-kibana-config' kibana: - image: docker.elastic.co/kibana/kibana:8.16.4 + image: ghcr.io/opencrvs/kibana:8.16.4 restart: always deploy: labels: @@ -272,6 +272,7 @@ services: tag: 'redis' # Configure elasticsearch elasticsearch: + image: ghcr.io/opencrvs/elasticsearch:8.16.4 volumes: - '/data/elasticsearch:/usr/share/elasticsearch/data' - '/data/backups/elasticsearch:/data/backups/elasticsearch' @@ -442,7 +443,7 @@ services: - 'traefik.enable=false' replicas: 1 apm-server: - image: docker.elastic.co/apm/apm-server:7.17.22 + image: ghcr.io/opencrvs/apm-server:7.17.22 cap_add: ['CHOWN', 'DAC_OVERRIDE', 'SETGID', 'SETUID'] cap_drop: ['ALL'] restart: always @@ -539,7 +540,7 @@ services: deploy: labels: - 'traefik.enable=true' - - 'traefik.http.routers.countryconfig.rule=Host(`countryconfig.{{hostname}}`) && !Path(`/reindex`) && !Path(`/email`) && !Path(`/notification`) && !Path(`/dashboards/queries.json`)' + - 'traefik.http.routers.countryconfig.rule=(Host(`countryconfig.{{hostname}}`)|| Host(`registry.{{hostname}}`)) && !Path(`/reindex`) && !Path(`/email`) && !Path(`/notification`) && !Path(`/dashboards/queries.json`)' - 'traefik.http.services.countryconfig.loadbalancer.server.port=3040' - 'traefik.http.routers.countryconfig.tls=true' - 'traefik.http.routers.countryconfig.tls.certresolver=certResolver' @@ -591,6 +592,11 @@ services: - INFOBIP_SENDER_ID=${INFOBIP_SENDER_ID:-} - DOMAIN={{hostname}} - ANALYTICS_DATABASE_URL=postgres://events_analytics:${ANALYTICS_POSTGRES_PASSWORD}@postgres/events + # Identity mock + - ESIGNET_REDIRECT_URL=https://esignet-mock.{{hostname}}/authorize + - MOSIP_API_USERINFO_URL=https://mosip-api.{{hostname}}/esignet/get-oidp-user-info + - OPENID_PROVIDER_CLAIMS=name,family_name,given_name,middle_name,birthdate,address + - OPENID_PROVIDER_CLIENT_ID=mock-client_id networks: - overlay_net logging: @@ -658,6 +664,11 @@ services: - 'traefik.http.middlewares.auth.headers.stsseconds=31536000' - 'traefik.http.middlewares.auth.headers.stsincludesubdomains=true' - 'traefik.http.middlewares.auth.headers.stspreload=true' + # This is an invalid IP range, effectively blocking all IPs from accessing below paths. + # It's only meant to be accessed from the internal docker network. + - 'traefik.http.middlewares.block-internal-routes.ipwhitelist.sourcerange=255.255.255.255' + - 'traefik.http.routers.block-internal.rule=Host(`countryconfig.{{hostname}}`) && PathPrefix(`/internal`)' + - 'traefik.http.routers.block-internal.middlewares=block-internal-routes' replicas: 1 networks: - overlay_net @@ -893,7 +904,7 @@ services: deploy: labels: - 'traefik.enable=true' - - 'traefik.http.routers.config.rule=Host(`config.{{hostname}}`)' + - 'traefik.http.routers.config.rule=Host(`config.{{hostname}}`) && !Path(`/dashboardQueries`)' - 'traefik.http.services.config.loadbalancer.server.port=2021' - 'traefik.http.routers.config.tls=true' - 'traefik.http.routers.config.tls.certresolver=certResolver' @@ -905,6 +916,9 @@ services: - 'traefik.http.middlewares.config.headers.stsseconds=31536000' - 'traefik.http.middlewares.config.headers.stsincludesubdomains=true' - 'traefik.http.middlewares.config.headers.stspreload=true' + - 'traefik.http.middlewares.block-internal-routes.ipwhitelist.sourcerange=255.255.255.255' + - 'traefik.http.routers.block-dashboard-queries.rule=Host(`countryconfig.{{hostname}}`) && Path(`/dashboardQueries`)' + - 'traefik.http.routers.block-dashboard-queries.middlewares=block-internal-routes' replicas: 1 networks: - overlay_net @@ -1099,6 +1113,131 @@ services: placement: constraints: - node.labels.data1 == true + + mosip-api: + volumes: + - /data/sqlite:/data/sqlite + - /certs:/certs:ro + image: ghcr.io/opencrvs/mosip-api:1.8.0 + environment: + - NODE_ENV=production + - MOSIP_BIRTH_WEBHOOK_URL=http://mosip-mock:20240/webhooks/opencrvs/birth + - MOSIP_DEATH_WEBHOOK_URL=http://mosip-mock:20240/webhooks/opencrvs/death + - OPENCRVS_GRAPHQL_GATEWAY_URL=http://gateway:7070/graphql + - OPENCRVS_PUBLIC_KEY_URL=http://auth:4040/.well-known + - LOCALE=en + - ESIGNET_USERINFO_URL=http://esignet-mock:20260/oidc/userinfo + - ESIGNET_TOKEN_URL=http://esignet-mock:20260/oauth/token + - OIDP_CLIENT_PRIVATE_KEY_PATH=/certs/esignet-jwk.txt + - OPENID_PROVIDER_CLAIMS=name,family_name,given_name,middle_name,birthdate,address + - DECRYPT_P12_FILE_PATH=/certs/keystore.p12 + - DECRYPT_P12_FILE_PASSWORD=mosip123 + - ENCRYPT_CERT_PATH=/certs/ida-partner.crt + - IDA_AUTH_DOMAIN_URI=http://mosip-mock:20240/ + - IDA_AUTH_URL=http://mosip-mock:20240/idauthentication/v1/auth + - PARTNER_APIKEY=123456 + - PARTNER_ID=aaaaaAAAAAbbbbbBBBBBcccccCCCCCdddddDDDDD + - PARTNER_MISP_LK=crvs-partner + - SIGN_P12_FILE_PATH=/certs/keystore.p12 + - SIGN_P12_FILE_PASSWORD=mosip123 + - CLIENT_APP_URL=https://register.{{hostname}} + - SQLITE_DATABASE_PATH=/data/sqlite/mosip-api.db + - MOSIP_AUTH_URL=http://mosip-mock:20240/v1/authmanager/authenticate/clientidsecretkey + - MOSIP_AUTH_CLIENT_APP_ID=admin + - MOSIP_PACKET_AUTH_CLIENT_ID=mosip-regproc-client + - MOSIP_PACKET_AUTH_CLIENT_SECRET=abcdeABCDE123456 + - MOSIP_WEBSUB_AUTH_CLIENT_ID=mosip-websub-client + - MOSIP_WEBSUB_AUTH_CLIENT_SECRET=abcdeABCDE123456 + - MOSIP_WEBSUB_CALLBACK_URL=http://mosip-api:2024/websub/callback + - MOSIP_WEBSUB_HUB_URL=http://mosip-mock:20240/websub/hub + - MOSIP_WEBSUB_SECRET=mosip-websub-secret + - MOSIP_WEBSUB_TOPIC=CREDENTIAL_ISSUED + - MOSIP_CREATE_PACKET_URL=http://mosip-mock:20240/commons/v1/packetmanager/createPacket + - MOSIP_PROCESS_PACKET_URL=http://mosip-mock:20240/registrationprocessor/v1/workflowmanager/workflowinstance + - MOSIP_VERIFIABLE_CREDENTIAL_ALLOWLIST=http://mosip-mock:20240/.well-known/public-key.json + - MOSIP_CENTER_ID=10123 + - MOSIP_MACHINE_ID=10234 + deploy: + replicas: 1 + labels: + - 'traefik.enable=true' + - 'traefik.http.routers.mosip-api.rule=Host(`mosip-api.{{hostname}}`)' + - 'traefik.http.services.mosip-api.loadbalancer.server.port=2024' + - 'traefik.http.routers.mosip-api.tls=true' + - 'traefik.http.routers.mosip-api.tls.certresolver=certResolver' + - 'traefik.http.routers.mosip-api.entrypoints=web,websecure' + - 'traefik.http.routers.mosip-api.middlewares=gzip-compression' + - 'traefik.docker.network=opencrvs_overlay_net' + - 'traefik.http.middlewares.mosip-api.headers.customresponseheaders.Pragma=no-cache' + - 'traefik.http.middlewares.mosip-api.headers.customresponseheaders.Cache-control=no-store' + - 'traefik.http.middlewares.mosip-api.headers.customresponseheaders.X-Robots-Tag=none' + - 'traefik.http.middlewares.mosip-api.headers.stsseconds=31536000' + - 'traefik.http.middlewares.mosip-api.headers.stsincludesubdomains=true' + - 'traefik.http.middlewares.mosip-api.headers.stspreload=true' + networks: + - overlay_net + logging: + driver: gelf + options: + gelf-address: 'udp://127.0.0.1:12201' + tag: 'mosip-api' + + mosip-mock: + image: ghcr.io/opencrvs/mosip-mock:1.8.0-beta.18 + depends_on: + - mosip-api + environment: + - NODE_ENV=production + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + - MOSIP_WEBSUB_CALLBACK_URL=http://mosip-api:2024/websub/callback + - ISSUER_URL=http://mosip-mock:20240 + - MOSIP_WEBSUB_TOPIC=CREDENTIAL_ISSUED + networks: + - overlay_net + logging: + driver: gelf + options: + gelf-address: 'udp://127.0.0.1:12201' + tag: 'mosip-mock' + + esignet-mock: + image: ghcr.io/opencrvs/esignet-mock:1.8.0-beta.18 + volumes: + - /certs:/certs:ro + environment: + - NODE_ENV=production + - CLIENT_APP_URL=https://register.{{hostname}} + - OIDP_CLIENT_PRIVATE_KEY_PATH=/certs/esignet-jwk.txt + deploy: + replicas: 1 + labels: + - 'traefik.enable=true' + - 'traefik.http.routers.esignet-mock.rule=Host(`esignet-mock.{{hostname}}`)' + - 'traefik.http.services.esignet-mock.loadbalancer.server.port=20260' + - 'traefik.http.routers.esignet-mock.tls=true' + - 'traefik.http.routers.esignet-mock.tls.certresolver=certResolver' + - 'traefik.http.routers.esignet-mock.entrypoints=web,websecure' + - 'traefik.http.routers.esignet-mock.middlewares=gzip-compression' + - 'traefik.docker.network=opencrvs_overlay_net' + - 'traefik.http.middlewares.esignet-mock.headers.customresponseheaders.Pragma=no-cache' + - 'traefik.http.middlewares.esignet-mock.headers.customresponseheaders.Cache-control=no-store' + - 'traefik.http.middlewares.esignet-mock.headers.customresponseheaders.X-Robots-Tag=none' + - 'traefik.http.middlewares.esignet-mock.headers.stsseconds=31536000' + - 'traefik.http.middlewares.esignet-mock.headers.stsincludesubdomains=true' + - 'traefik.http.middlewares.esignet-mock.headers.stspreload=true' + networks: + - overlay_net + logging: + driver: gelf + options: + gelf-address: 'udp://127.0.0.1:12201' + tag: 'esignet-mock' secrets: redis-acl.{{ts}}: external: true diff --git a/infrastructure/docker-compose.development-deploy.yml b/infrastructure/docker-compose.development-deploy.yml index 10450eb28b..a08f2208d2 100644 --- a/infrastructure/docker-compose.development-deploy.yml +++ b/infrastructure/docker-compose.development-deploy.yml @@ -14,10 +14,6 @@ services: environment: - NODE_ENV=production - QA_ENV=true - - FHIR_URL=http://hearth:3447/fhir - - AUTH_URL=http://auth:4040 - - APPLICATION_CONFIG_URL=http://config:2021 - - CONFIRM_REGISTRATION_URL=http://workflow:5050/confirm/registration - CHECK_INVALID_TOKEN=true - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 - SENTRY_DSN=${SENTRY_DSN:-} @@ -28,6 +24,7 @@ services: - SMTP_USERNAME=${SMTP_USERNAME} - SMTP_PASSWORD=${SMTP_PASSWORD} - SMTP_SECURE=${SMTP_SECURE} + - V2_EVENTS=true deploy: replicas: 1 networks: @@ -43,6 +40,7 @@ services: - SENTRY_DSN=${SENTRY_DSN:-} - QA_ENV=true - NODE_ENV=production + - DISABLE_RATE_LIMIT=true workflow: environment: diff --git a/infrastructure/docker-compose.e2e-deploy.yml b/infrastructure/docker-compose.e2e-deploy.yml new file mode 100644 index 0000000000..35e7aaab89 --- /dev/null +++ b/infrastructure/docker-compose.e2e-deploy.yml @@ -0,0 +1,122 @@ +services: + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production + + traefik: + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true diff --git a/infrastructure/docker-compose.fix-analytics-deploy.yml b/infrastructure/docker-compose.fix-analytics-deploy.yml new file mode 100644 index 0000000000..d7ae89f15a --- /dev/null +++ b/infrastructure/docker-compose.fix-analytics-deploy.yml @@ -0,0 +1,124 @@ +services: + traefik: + networks: + - overlay_net + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true + + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production diff --git a/infrastructure/docker-compose.mosip-deploy.yml b/infrastructure/docker-compose.mosip-deploy.yml new file mode 100644 index 0000000000..d7ae89f15a --- /dev/null +++ b/infrastructure/docker-compose.mosip-deploy.yml @@ -0,0 +1,124 @@ +services: + traefik: + networks: + - overlay_net + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true + + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production diff --git a/infrastructure/docker-compose.openfn-deploy.yml b/infrastructure/docker-compose.openfn-deploy.yml new file mode 100644 index 0000000000..d7ae89f15a --- /dev/null +++ b/infrastructure/docker-compose.openfn-deploy.yml @@ -0,0 +1,124 @@ +services: + traefik: + networks: + - overlay_net + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true + + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production diff --git a/infrastructure/docker-compose.pentest-deploy.yml b/infrastructure/docker-compose.pentest-deploy.yml new file mode 100644 index 0000000000..d7ae89f15a --- /dev/null +++ b/infrastructure/docker-compose.pentest-deploy.yml @@ -0,0 +1,124 @@ +services: + traefik: + networks: + - overlay_net + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true + + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production diff --git a/infrastructure/docker-compose.production-deploy.yml b/infrastructure/docker-compose.production-deploy.yml index dbeae21052..e39de14b76 100644 --- a/infrastructure/docker-compose.production-deploy.yml +++ b/infrastructure/docker-compose.production-deploy.yml @@ -7,6 +7,89 @@ # services: + gateway: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + workflow: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + search: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + metrics: + environment: + - QA_ENV=true + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://metrics:${METRICS_MONGODB_PASSWORD}@mongo1,mongo2/metrics?replicaSet=rs0 + - HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + - DASHBOARD_MONGO_URL=mongodb://performance:${PERFORMANCE_MONGODB_PASSWORD}@mongo1,mongo2/performance?replicaSet=rs0 + + auth: + environment: + - QA_ENV=true + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + user-mgnt: + environment: + - QA_ENV=true + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://user-mgnt:${USER_MGNT_MONGODB_PASSWORD}@mongo1,mongo2/user-mgnt?replicaSet=rs0 + deploy: + replicas: 2 + + notification: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://notification:${NOTIFICATION_MONGODB_PASSWORD}@mongo1,mongo2/notification?replicaSet=rs0 + deploy: + replicas: 2 + + webhooks: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://webhooks:${WEBHOOKS_MONGODB_PASSWORD}@mongo1,mongo2/webhooks?replicaSet=rs0 + deploy: + replicas: 2 + + config: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1,mongo2/application-config?replicaSet=rs0 + deploy: + replicas: 2 + + scheduler: + environment: + - NODE_ENV=production + - OPENHIM_MONGO_URL=mongodb://openhim:${OPENHIM_MONGODB_PASSWORD}@mongo1,mongo2/openhim-dev?replicaSet=rs0 + + documents: + environment: + - NODE_ENV=production + countryconfig: image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} restart: unless-stopped @@ -23,6 +106,75 @@ services: - SMTP_USERNAME=${SMTP_USERNAME} - SMTP_PASSWORD=${SMTP_PASSWORD} - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 2 + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + deploy: + replicas: 2 + + logstash: + deploy: + replicas: 2 + + apm-server: + deploy: + replicas: 2 + + login: + deploy: + replicas: 2 + + hearth: + environment: + - mongodb__url=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + + deploy: + replicas: 2 + + migration: + environment: + - USER_MGNT_MONGO_URL=mongodb://user-mgnt:${USER_MGNT_MONGODB_PASSWORD}@mongo1,mongo2/user-mgnt?replicaSet=rs0 + - APPLICATION_CONFIG_MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1,mongo2/application-config?replicaSet=rs0 + - PERFORMANCE_MONGO_URL=mongodb://performance:${PERFORMANCE_MONGODB_PASSWORD}@mongo1,mongo2/performance?replicaSet=rs0 + - HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + - OPENHIM_MONGO_URL=mongodb://openhim:${OPENHIM_MONGODB_PASSWORD}@mongo1,mongo2/openhim-dev?replicaSet=rs0 + - WAIT_HOSTS=mongo1:27017,mongo2:27017,influxdb:8086,minio:9000,elasticsearch:9200 + + mongo2: + image: mongo:4.4 + hostname: 'mongo2' + restart: unless-stopped + command: mongod --auth --replSet rs0 --keyFile /etc/mongodb-keyfile + volumes: + - '/data/mongo:/data/db' + - '/mongodb-keyfile:/mongodb-keyfile' + entrypoint: + - bash + - -c + - | + cp /mongodb-keyfile /etc/mongodb-keyfile + chmod 400 /etc/mongodb-keyfile + chown 999:999 /etc/mongodb-keyfile + exec docker-entrypoint.sh $$@ + environment: + - MONGO_INITDB_ROOT_USERNAME=${MONGODB_ADMIN_USER} + - MONGO_INITDB_ROOT_PASSWORD=${MONGODB_ADMIN_PASSWORD} + deploy: + labels: + - 'traefik.enable=false' + replicas: 1 + placement: + constraints: + - node.labels.data2 == true + networks: + - overlay_net + + mongo-on-update: + environment: + - REPLICAS=2 traefik: # These templates use an Automatic Certificate Management Environment (Let's Encrypt). diff --git a/infrastructure/docker-compose.qa-deploy.yml b/infrastructure/docker-compose.qa-deploy.yml index 68a3154346..d7ae89f15a 100644 --- a/infrastructure/docker-compose.qa-deploy.yml +++ b/infrastructure/docker-compose.qa-deploy.yml @@ -43,10 +43,6 @@ services: environment: - NODE_ENV=production - QA_ENV=true - - FHIR_URL=http://hearth:3447/fhir - - AUTH_URL=http://auth:4040 - - APPLICATION_CONFIG_URL=http://config:2021 - - CONFIRM_REGISTRATION_URL=http://workflow:5050/confirm/registration - CHECK_INVALID_TOKEN=true - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 - SENTRY_DSN=${SENTRY_DSN:-} @@ -72,6 +68,7 @@ services: - SENTRY_DSN=${SENTRY_DSN:-} - QA_ENV=true - NODE_ENV=production + - DISABLE_RATE_LIMIT=true workflow: environment: diff --git a/infrastructure/docker-compose.staging-deploy.yml b/infrastructure/docker-compose.staging-deploy.yml index 364cee7b23..7652afe985 100644 --- a/infrastructure/docker-compose.staging-deploy.yml +++ b/infrastructure/docker-compose.staging-deploy.yml @@ -32,6 +32,7 @@ services: metrics: environment: + - QA_ENV=true - NODE_ENV=production - SENTRY_DSN=${SENTRY_DSN:-} - MONGO_URL=mongodb://metrics:${METRICS_MONGODB_PASSWORD}@mongo1/metrics?replicaSet=rs0 @@ -40,6 +41,7 @@ services: auth: environment: + - QA_ENV=true - NODE_ENV=production - SENTRY_DSN=${SENTRY_DSN:-} deploy: @@ -47,6 +49,7 @@ services: user-mgnt: environment: + - QA_ENV=true - NODE_ENV=production - SENTRY_DSN=${SENTRY_DSN:-} - MONGO_URL=mongodb://user-mgnt:${USER_MGNT_MONGODB_PASSWORD}@mongo1/user-mgnt?replicaSet=rs0 @@ -95,10 +98,6 @@ services: - jwt-public-key.{{ts}} environment: - NODE_ENV=production - - FHIR_URL=http://hearth:3447/fhir - - AUTH_URL=http://auth:4040 - - APPLICATION_CONFIG_URL=http://config:2021 - - CONFIRM_REGISTRATION_URL=http://workflow:5050/confirm/registration - CHECK_INVALID_TOKEN=true - SENTRY_DSN=${SENTRY_DSN:-} - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} @@ -144,6 +143,8 @@ services: - OPENHIM_MONGO_URL=mongodb://openhim:${OPENHIM_MONGODB_PASSWORD}@mongo1/openhim-dev?replicaSet=rs0 - EVENTS_POSTGRES_URL=postgres://events_migrator:${EVENTS_MIGRATOR_POSTGRES_PASSWORD}@postgres/events - WAIT_HOSTS=mongo1:27017,influxdb:8086,minio:9000,elasticsearch:9200,postgres:5432 + depends_on: + - mongo1 mongo-on-update: environment: diff --git a/infrastructure/docker-compose.v17-deploy.yml b/infrastructure/docker-compose.v17-deploy.yml new file mode 100644 index 0000000000..d7ae89f15a --- /dev/null +++ b/infrastructure/docker-compose.v17-deploy.yml @@ -0,0 +1,124 @@ +services: + traefik: + networks: + - overlay_net + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true + + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production diff --git a/infrastructure/docker-compose.v19-beta-prod-deploy.yml b/infrastructure/docker-compose.v19-beta-prod-deploy.yml new file mode 100644 index 0000000000..03efedc22e --- /dev/null +++ b/infrastructure/docker-compose.v19-beta-prod-deploy.yml @@ -0,0 +1,228 @@ +# +# Production deployments of OpenCRVS should never be exposed to the internet. +# Instead, they should be deployed on a private network and exposed to the internet via a VPN. +# +# Before you deploy staging or production environments, make sure the application servers are +# either in an internal network or protected with a firewall. No ports should be exposed to the internet. +# + +services: + gateway: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + workflow: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + search: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + metrics: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://metrics:${METRICS_MONGODB_PASSWORD}@mongo1,mongo2/metrics?replicaSet=rs0 + - HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + - DASHBOARD_MONGO_URL=mongodb://performance:${PERFORMANCE_MONGODB_PASSWORD}@mongo1,mongo2/performance?replicaSet=rs0 + + auth: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + user-mgnt: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://user-mgnt:${USER_MGNT_MONGODB_PASSWORD}@mongo1,mongo2/user-mgnt?replicaSet=rs0 + deploy: + replicas: 2 + + notification: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://notification:${NOTIFICATION_MONGODB_PASSWORD}@mongo1,mongo2/notification?replicaSet=rs0 + deploy: + replicas: 2 + + webhooks: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://webhooks:${WEBHOOKS_MONGODB_PASSWORD}@mongo1,mongo2/webhooks?replicaSet=rs0 + deploy: + replicas: 2 + + config: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1,mongo2/application-config?replicaSet=rs0 + deploy: + replicas: 2 + + scheduler: + environment: + - NODE_ENV=production + - OPENHIM_MONGO_URL=mongodb://openhim:${OPENHIM_MONGODB_PASSWORD}@mongo1,mongo2/openhim-dev?replicaSet=rs0 + + documents: + environment: + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - V2_EVENTS=true + - CHECK_INVALID_TOKEN=true + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 2 + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + deploy: + replicas: 2 + + logstash: + deploy: + replicas: 2 + + apm-server: + deploy: + replicas: 2 + + login: + deploy: + replicas: 2 + + hearth: + environment: + - mongodb__url=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + + deploy: + replicas: 2 + + migration: + environment: + - USER_MGNT_MONGO_URL=mongodb://user-mgnt:${USER_MGNT_MONGODB_PASSWORD}@mongo1,mongo2/user-mgnt?replicaSet=rs0 + - APPLICATION_CONFIG_MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1,mongo2/application-config?replicaSet=rs0 + - PERFORMANCE_MONGO_URL=mongodb://performance:${PERFORMANCE_MONGODB_PASSWORD}@mongo1,mongo2/performance?replicaSet=rs0 + - HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + - OPENHIM_MONGO_URL=mongodb://openhim:${OPENHIM_MONGODB_PASSWORD}@mongo1,mongo2/openhim-dev?replicaSet=rs0 + - WAIT_HOSTS=mongo1:27017,mongo2:27017,influxdb:8086,minio:9000,elasticsearch:9200 + + mongo2: + image: mongo:4.4 + hostname: 'mongo2' + restart: unless-stopped + command: mongod --auth --replSet rs0 --keyFile /etc/mongodb-keyfile + volumes: + - '/data/mongo:/data/db' + - '/mongodb-keyfile:/mongodb-keyfile' + entrypoint: + - bash + - -c + - | + cp /mongodb-keyfile /etc/mongodb-keyfile + chmod 400 /etc/mongodb-keyfile + chown 999:999 /etc/mongodb-keyfile + exec docker-entrypoint.sh $$@ + environment: + - MONGO_INITDB_ROOT_USERNAME=${MONGODB_ADMIN_USER} + - MONGO_INITDB_ROOT_PASSWORD=${MONGODB_ADMIN_PASSWORD} + deploy: + labels: + - 'traefik.enable=false' + replicas: 1 + placement: + constraints: + - node.labels.data2 == true + networks: + - overlay_net + + mongo-on-update: + environment: + - REPLICAS=2 + + traefik: + # These templates use an Automatic Certificate Management Environment (Let's Encrypt). + # This makes sure that the HTTPS certificates are automatically generated and renewed without manual maintenance. + # + # This default configuration will only work if OpenCRVS is directly accessible from the internet. + # + # WE STRONGLY RECOMMEND THAT YOU DO NOT EXPOSE PRODUCTION OPENCRVS TO THE INTERNET! + # + # If you are deploying OpenCRVS in a private network, you have two options: + # 1. Use a DNS provider that supports ACME DNS-01 challenges. + # 2. Use a manually renewed certificate file. + + # For your country to use the DNS-01 challenge, your domain's DNS provider must be one of the ones listed here + # https://doc.traefik.io/traefik/https/acme/#providers + # + # If your DNS provider is not listed, you can use manually renewed certificate files instead of Let's Encrypt. + # To do this, remove the `environment` and `certificatesresolvers.certResolver.acme` sections and uncomment the following lines. + # You will also need to place your certificates in the `/data/traefik/certs` directory. + # Ensure that the file names match the ones defined below. + # + # volumes: + # - /var/run/docker.sock:/var/run/docker.sock + # - /data/traefik/certs:/certs + # command: + # - --tls.certificates.certfile=/certs/crvs.cm.crt + # - --tls.certificates.keyfile=/certs/crvs.cm.key + # - --tls.certificates.stores=default + # - --tls.stores.default.defaultcertificate.certfile=/certs/crvs.cm.crt + # - --tls.stores.default.defaultcertificate.keyfile=/certs/crvs.cm.key + + command: + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true diff --git a/infrastructure/docker-compose.v19-beta-staging-deploy.yml b/infrastructure/docker-compose.v19-beta-staging-deploy.yml new file mode 100644 index 0000000000..d7ae89f15a --- /dev/null +++ b/infrastructure/docker-compose.v19-beta-staging-deploy.yml @@ -0,0 +1,124 @@ +services: + traefik: + networks: + - overlay_net + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true + + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production diff --git a/infrastructure/environments/setup-environment.ts b/infrastructure/environments/setup-environment.ts index 3654b0de85..56473bd9d8 100644 --- a/infrastructure/environments/setup-environment.ts +++ b/infrastructure/environments/setup-environment.ts @@ -819,7 +819,8 @@ const SPECIAL_NON_APPLICATION_ENVIRONMENTS = ['jump', 'backup'] value: 'production' }, { title: 'Jump / Bastion', value: 'jump' }, - { title: 'Other', value: 'development' } + { title: 'Other', value: 'development' }, + { title: 'E2E', value: 'e2e' } ] } ].map(questionToPrompt) @@ -913,11 +914,11 @@ const SPECIAL_NON_APPLICATION_ENVIRONMENTS = ['jump', 'backup'] existingValues ) - const SSH_KEY_EXISTS = existingValues.find( + const sshKeyExists = existingValues.find( (value) => value.name === 'SSH_KEY' && value.scope === 'ENVIRONMENT' ) - if (!SSH_KEY_EXISTS) { + if (!sshKeyExists) { const sshKey = await editor({ message: `Paste the SSH private key for ${kleur.cyan( 'SSH_USER (provision)' diff --git a/infrastructure/known-hosts b/infrastructure/known-hosts index e69de29bb2..6979fc46f1 100644 --- a/infrastructure/known-hosts +++ b/infrastructure/known-hosts @@ -0,0 +1,182 @@ +159.89.14.13 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPKu2YyZ2niXGic9PZU+V1HppnRUPbXLF5WiQkSKg0hlwgwSawcraziuBmtrT29xJoXs88OKm2gHIwsIH04BbKY= +159.89.14.13 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxAtyELjJseUKkHz7TaBARqig3XMI1mBYerN0zprmh7KVp+kcK/MVjvg73cjH5AnRUKksoD6dMCO4VP4b80sNyFhbBp8c4u3zyFFENZ0jiv46fdp0KS4jbczmcnwK/XfYVsnFP/EIYbvwNbAtlk6DOPAn8+VKy2ZRRNWwYtzpH/TFwbueX2xp/5L/OJTjsjPSzsxTuksQ1Tg9ahUsnA6jI6keyB1NLsHi5/E+HcExlArESiUChmlek5yNKGNChZE5mlmlpLm12f9LCEKrRykk0e44IjZc46YtFVrkCsYLXL2Z+oLgSlOH/xAU6I9NZnkYCy12Y1Fwac3JYNFwgCxoRMlYT23e3xTAZ5WQUFprjSY7v75HQVz0aYI4ZkpAAipNhM1+027I+ZVS9KEpdp+wwS02uamf0kM3afxqA1U3iNs5Z6zQwYeggrHPQBvt+P2x0ehkVFDNTEc0slgbLP+KugWsK98ezppjqizsNuw/7SuWF8gMVDbn/XKIGGaawlHU= +159.89.14.13 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF+MHhrQvwDOYP1pYFZ61WaYnr4vtgXtFuimxGCy4plV +188.245.61.69 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDjYsDKtnQQOCDQALAnsyqbesNPui82JolfgAAr5mHYuj3dpidPvjVB6ZsHN2RbigCmH3YGrGc+g9JNdTE3+0q7zNXup9ZEdVTBvts5RsxE4ztemHpmhshB1fT3Igi40Uamw/UpUQNw3lBpoeN8PCRM5QWQKScD4uPiDtfh7Ma9PCDCbEKyBOGI4GRj9nCeiKSp9uArl7PhEQHF2zD6yY5J6Cynnvdp4TCdqKsQcKf5nJMN+BUVcwrf1/o0A6cYbDPVnGXlR2C0tPDym+ffIOTnkaj4ekY2Fh7mSGoDFjvBATNSc5Jv5TkYeTHAyrdpLL+/8TDcuggAJ3w/iLh+Sgigv/78PvGNTH98PRM4ONCrQDwlx+Lgzq3wszrFr1GYapuCdAb44yKyYD8Y+7kRE0WqNVh5ToKuz+XJ4n2Ff4NHGTg8GLDTWHyWcolEI3nCo6Pf93YMJZ3PBcq/ATa5rUOj4+GLMd/lM7/9c/iA/wouYrN5xJsDAQIIIqr8FAwDBEs= +188.245.61.69 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCZB4NOBvOaYoVQBCMTpAWkFNA+slkroBHW4hndNRk21jUPY1x8ommbGX8cALmb6zbgWw3pgcMNc2k/QaTL6uZs= +188.245.61.69 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJTTic204SRitgcwPl3O0BM537JO3Ct15MkUUzxzqUP/ +farajaland-qa.opencrvs.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCdxsUOL1IzVBm0FoiW1O4HRcaU1IMOZA90CSsOVAbbUC4WRp0e/wgVibWbS5Loja1G4wKohHd9jQTfDF7Y6MxIlQhFPtD2OAvkXci5jwg+9vNYafLXEzkRYisTbd8q1n/P7TjmcBl+3goE27OK05N4AAULM43RyRa0Mh2ntzz7qadYM0FTZ5niCjfuGL2RfkU2/joqI/1O8EKqxvMTajPefH+BWP8pBhZl33b+IbbXMgw3cDq88sCjGsvTlSm2f9kH0fLffDjPMdhJlwaEp9f7u3/jeQjN82JfMnEY54Lh6tIgrsQGGbfT9DtyHpRIo0ApWNdOiEQLTn2BeXxXL6IMZbR1qDs02eODLFVJ9pbmkyk1TRsjcuAKC3Z7fTfczgl9rlf3w0f89LkZLN9y3qR7DI/Lo+Idyc46DXBj11HFGjVSSZlbfo2T/NmTCiayA7G+jYBFghOqwW13ZgFF4Rxw8nKSaYwWYfBGhJcbQKMRDYl5z+EHiPt5sOyLYQLFqAM= +farajaland-qa.opencrvs.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBLM0HYX9qnFCIQEPM+Qz+/RtnkBly+YRqvHLJYSV3g0fU2RL3o+Mof9C1rtUvFKSjRYwu0TFKKaySBmZ3yc3aA= +farajaland-qa.opencrvs.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOCxp5U416Teyc6gXHppVle3D3k5LzLleQ+t4Q3KOBOP +5.223.46.129 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCdxsUOL1IzVBm0FoiW1O4HRcaU1IMOZA90CSsOVAbbUC4WRp0e/wgVibWbS5Loja1G4wKohHd9jQTfDF7Y6MxIlQhFPtD2OAvkXci5jwg+9vNYafLXEzkRYisTbd8q1n/P7TjmcBl+3goE27OK05N4AAULM43RyRa0Mh2ntzz7qadYM0FTZ5niCjfuGL2RfkU2/joqI/1O8EKqxvMTajPefH+BWP8pBhZl33b+IbbXMgw3cDq88sCjGsvTlSm2f9kH0fLffDjPMdhJlwaEp9f7u3/jeQjN82JfMnEY54Lh6tIgrsQGGbfT9DtyHpRIo0ApWNdOiEQLTn2BeXxXL6IMZbR1qDs02eODLFVJ9pbmkyk1TRsjcuAKC3Z7fTfczgl9rlf3w0f89LkZLN9y3qR7DI/Lo+Idyc46DXBj11HFGjVSSZlbfo2T/NmTCiayA7G+jYBFghOqwW13ZgFF4Rxw8nKSaYwWYfBGhJcbQKMRDYl5z+EHiPt5sOyLYQLFqAM= +5.223.46.129 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBLM0HYX9qnFCIQEPM+Qz+/RtnkBly+YRqvHLJYSV3g0fU2RL3o+Mof9C1rtUvFKSjRYwu0TFKKaySBmZ3yc3aA= +5.223.46.129 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOCxp5U416Teyc6gXHppVle3D3k5LzLleQ+t4Q3KOBOP +farajaland-staging.opencrvs.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDzWeNbOz1NzYIGWgSpRe6aR2N7CnNqEXyjHzKXYQ4y4Zt20sGxZaevuXOf3byqxEP9ERnG8pwsOn5CwHLOCQdcglj0dVnKF67/GNkkaKvBGws444OQEj+81zFR8jOZh9Sb+6IDkbujgqEWi3fl/Nqrt7+1dtEK5+bTJaNi+vj8/huVPq4NKVnJuWKX0Lg8m82oyMvu8x1sj2Qcg2tPK8Rw1jVTEkmjiTJYb8FsfzlG9BZWpFHhlwf8p8x+wyzV4C5VEt40Xn6qat2enr9uZ1T7+WW1IJyy080/aaA0P1IIh1r8R8FG0gWkMQIs9mnfRkHz4C9XAUco52RfFvpUsURrBzczt7JQ+52eY042J8zXdK46caBBfv1P9zQ58xUbtJg2paoIGqPjYllnyXIHCnmdAuh+wqnJFwGHkxZimhi9SXOlnvmAOgxyMIXblmhnNU0W0wEE50a9VxGqzVkJ3Nv6CnhXP0zS7z+JKecB71rukJ0W8c4aCKLBTXOZqd0BERE= +farajaland-staging.opencrvs.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHTsaRzl0X0GDiqkpkLvEAyKBVnKw++meoJ2S3rxY3VuqjvjwU5t4gM3vW2F7+LkwYuDmOLDdDcqvuyUQkHjzHg= +farajaland-staging.opencrvs.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOWueyYkQj/JpsyqbWkR5/8ybhRhh8P1QJV7k2sV8mtS +5.223.47.53 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDzWeNbOz1NzYIGWgSpRe6aR2N7CnNqEXyjHzKXYQ4y4Zt20sGxZaevuXOf3byqxEP9ERnG8pwsOn5CwHLOCQdcglj0dVnKF67/GNkkaKvBGws444OQEj+81zFR8jOZh9Sb+6IDkbujgqEWi3fl/Nqrt7+1dtEK5+bTJaNi+vj8/huVPq4NKVnJuWKX0Lg8m82oyMvu8x1sj2Qcg2tPK8Rw1jVTEkmjiTJYb8FsfzlG9BZWpFHhlwf8p8x+wyzV4C5VEt40Xn6qat2enr9uZ1T7+WW1IJyy080/aaA0P1IIh1r8R8FG0gWkMQIs9mnfRkHz4C9XAUco52RfFvpUsURrBzczt7JQ+52eY042J8zXdK46caBBfv1P9zQ58xUbtJg2paoIGqPjYllnyXIHCnmdAuh+wqnJFwGHkxZimhi9SXOlnvmAOgxyMIXblmhnNU0W0wEE50a9VxGqzVkJ3Nv6CnhXP0zS7z+JKecB71rukJ0W8c4aCKLBTXOZqd0BERE= +5.223.47.53 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHTsaRzl0X0GDiqkpkLvEAyKBVnKw++meoJ2S3rxY3VuqjvjwU5t4gM3vW2F7+LkwYuDmOLDdDcqvuyUQkHjzHg= +5.223.47.53 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOWueyYkQj/JpsyqbWkR5/8ybhRhh8P1QJV7k2sV8mtS +farajaland.opencrvs.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC9I1ZqQRWEkXU0MZ4FJUaxSkVnxtjogNft/W6WxCVUaYHakXLZqrWMEbQgOY8RZgsNGJXMKQVhFR4NmMSvP3/eSvLNAtBStAkEqk3KHOb8r6/dRL0i9+IFpOIJuAYC/RbyqYEQyHm989GVYwd5QJLraObBmcFLERhl5eBIa/OaFMBMcL1iTseVDFMIIaVu/V5vlWH+08DmqluydGHtNqsbwuwuFR7k6lspzEvD6jYwE2dwxT+qg9d17aZmbLGWhH8YnJNjf8dkgFX3KKlLM7msyyUcBZaNzhYPZbGozzyYAqyUbxsvpg4srQnD3+TVKI9bOIrOVtWeD7y9fuHmji4R+QO5eNRM97WxMsqGyadXy01M9okiAj2KwhWvzSKUT9UFiiuN/zviXd1PqvbCqkQ7vKXHvAh3Y+mB4G30DGA+0xRHWzgNA1b9IBCSbSMsV1KrQj0jCpTfXkvC081KK5Lph/tRJtBolKbr2IuKEaeaDqJhEsS2zIkXht4+a6hx8Ec= +farajaland.opencrvs.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBZQ2LbjmgyBA56IAMSmG+GqraKhgHt+o22KDsj7mX1rR00FbZTfmlIXjb5W5Gf+pwhIGHMfk1jyAVWb4xiahuU= +farajaland.opencrvs.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICogAQju3/dugNOeKJTYQJXefgjvalRPdldP8fEivC7f +188.245.160.165 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC9I1ZqQRWEkXU0MZ4FJUaxSkVnxtjogNft/W6WxCVUaYHakXLZqrWMEbQgOY8RZgsNGJXMKQVhFR4NmMSvP3/eSvLNAtBStAkEqk3KHOb8r6/dRL0i9+IFpOIJuAYC/RbyqYEQyHm989GVYwd5QJLraObBmcFLERhl5eBIa/OaFMBMcL1iTseVDFMIIaVu/V5vlWH+08DmqluydGHtNqsbwuwuFR7k6lspzEvD6jYwE2dwxT+qg9d17aZmbLGWhH8YnJNjf8dkgFX3KKlLM7msyyUcBZaNzhYPZbGozzyYAqyUbxsvpg4srQnD3+TVKI9bOIrOVtWeD7y9fuHmji4R+QO5eNRM97WxMsqGyadXy01M9okiAj2KwhWvzSKUT9UFiiuN/zviXd1PqvbCqkQ7vKXHvAh3Y+mB4G30DGA+0xRHWzgNA1b9IBCSbSMsV1KrQj0jCpTfXkvC081KK5Lph/tRJtBolKbr2IuKEaeaDqJhEsS2zIkXht4+a6hx8Ec= +188.245.160.165 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBZQ2LbjmgyBA56IAMSmG+GqraKhgHt+o22KDsj7mX1rR00FbZTfmlIXjb5W5Gf+pwhIGHMfk1jyAVWb4xiahuU= +188.245.160.165 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICogAQju3/dugNOeKJTYQJXefgjvalRPdldP8fEivC7f +farajaland-e2e.opencrvs.dev ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCm0OmPHjJR7CRN88VlLduTnBfOAB6wCN2KT/kL4cD6u+Ch2VTAir6WqSzRjXP6DXU5Do9FmfQx6T+UyK2tcc95wqzaZDH+v4f9UnOczVhPzHBZMqdrDsqCUC3fOHnA/qoORhb1rn0CtWfALr7M6TvIijRaPgNzSWp6ZacDDEjuS/18rbevFBrZUy3GBVCqTnV3QwDAzVHtwn7oH+Ak04UpvrU2iNzYiUBU5qXvRJUz/4TCGRvJqhQL6xgAYKxYvV/oWf8V/GHMAHWKbs5vAzfr7kei+Vta+lCzrw4UK7yuhAQ+jIoXLoWuuc30XP3/WejD/Ccf8Oowb/TJy7nVinSpEpG8AS6YGscUdMXz9ly6Y6Q+NEUqOzsaDt0/1ZtvO2n4AJGC6kjMCgv+hczl31Wkfi9pjUvFhKOf/CO5aBCPJYOxqtwjGi1BikgY2Fm65LrwGmUubf1KQCINu9GnYxIGg8DVJUcvdpbuuxSRr/qbdxbokZah0uFj8LKHt8uDpfc= +farajaland-e2e.opencrvs.dev ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLeLluDmyIrAxJheL9t1YWb8xBUYr47PAhIXOx6iyKxcIel4rbrkQ4pSKZTAhDv4tm05umQaV2b5hvkI6ijfTt8= +farajaland-e2e.opencrvs.dev ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEJF3A+wz6YWmHG3Zhee5rzY8+OAenYzAWEl5IJhlA1s +49.13.216.104 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCm0OmPHjJR7CRN88VlLduTnBfOAB6wCN2KT/kL4cD6u+Ch2VTAir6WqSzRjXP6DXU5Do9FmfQx6T+UyK2tcc95wqzaZDH+v4f9UnOczVhPzHBZMqdrDsqCUC3fOHnA/qoORhb1rn0CtWfALr7M6TvIijRaPgNzSWp6ZacDDEjuS/18rbevFBrZUy3GBVCqTnV3QwDAzVHtwn7oH+Ak04UpvrU2iNzYiUBU5qXvRJUz/4TCGRvJqhQL6xgAYKxYvV/oWf8V/GHMAHWKbs5vAzfr7kei+Vta+lCzrw4UK7yuhAQ+jIoXLoWuuc30XP3/WejD/Ccf8Oowb/TJy7nVinSpEpG8AS6YGscUdMXz9ly6Y6Q+NEUqOzsaDt0/1ZtvO2n4AJGC6kjMCgv+hczl31Wkfi9pjUvFhKOf/CO5aBCPJYOxqtwjGi1BikgY2Fm65LrwGmUubf1KQCINu9GnYxIGg8DVJUcvdpbuuxSRr/qbdxbokZah0uFj8LKHt8uDpfc= +49.13.216.104 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLeLluDmyIrAxJheL9t1YWb8xBUYr47PAhIXOx6iyKxcIel4rbrkQ4pSKZTAhDv4tm05umQaV2b5hvkI6ijfTt8= +49.13.216.104 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEJF3A+wz6YWmHG3Zhee5rzY8+OAenYzAWEl5IJhlA1s +farajaland-dev.opencrvs.dev ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDMk3pHg1VkGnNP3RodI0ylhYvUItLxslQQqAzJe4M9iScMhTgWT5xzNM4uhP3RBnZG33ySvsOkt0ElyIOEm2GhpiYHnz1ettDaQVsdDWQgXzES5jAloQ8ZyEEejh82M8CqbHIP/LnD/Nyh01PuzoWE3b2Od+KFQnTxkaLGIMjXQkF3Ch9dT7Gu1NyIXIn1vFiohasyMP36X/ORUrXqv5RYXdvWw4ja+bk/FUZo8odxKyWsuB2UhgUllqKVI54ZSLxB3NbNRGLyou16CHZ+IZOfvQOgodU+UWCbp2B656A2hKOzEMDrmYJ2guHjY/Pu1reV3yljET3xghqAJJxeq+4F/BuWXUckveJRd4vYhJTL1/ZfITGDVUT9VmpwjwLPPyMyPdyaekncBcXcbhC962ZjSi/pSvqTMjEMJTxNDYO0efPHk2vpia5A5J+/spxnSnFlevfX98PH5uzFzrDZkGLQtJENFV8gUwxpQIkVDIHy2+DLYLhEAVaGVgZTAfQZFbc= +farajaland-dev.opencrvs.dev ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL9CLbk+Y8IiMp4z6lqob3DflgKD9rxY0ar2J1umhlSS311ObHRzGxWohdiJZMzSMCfarA2qPJzTzwtTY8T1G4M= +farajaland-dev.opencrvs.dev ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINScxf0uLitNKf2GvoibGFW//dfi4uLdKg2MrUYiL6/P +37.27.182.181 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDMk3pHg1VkGnNP3RodI0ylhYvUItLxslQQqAzJe4M9iScMhTgWT5xzNM4uhP3RBnZG33ySvsOkt0ElyIOEm2GhpiYHnz1ettDaQVsdDWQgXzES5jAloQ8ZyEEejh82M8CqbHIP/LnD/Nyh01PuzoWE3b2Od+KFQnTxkaLGIMjXQkF3Ch9dT7Gu1NyIXIn1vFiohasyMP36X/ORUrXqv5RYXdvWw4ja+bk/FUZo8odxKyWsuB2UhgUllqKVI54ZSLxB3NbNRGLyou16CHZ+IZOfvQOgodU+UWCbp2B656A2hKOzEMDrmYJ2guHjY/Pu1reV3yljET3xghqAJJxeq+4F/BuWXUckveJRd4vYhJTL1/ZfITGDVUT9VmpwjwLPPyMyPdyaekncBcXcbhC962ZjSi/pSvqTMjEMJTxNDYO0efPHk2vpia5A5J+/spxnSnFlevfX98PH5uzFzrDZkGLQtJENFV8gUwxpQIkVDIHy2+DLYLhEAVaGVgZTAfQZFbc= +37.27.182.181 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL9CLbk+Y8IiMp4z6lqob3DflgKD9rxY0ar2J1umhlSS311ObHRzGxWohdiJZMzSMCfarA2qPJzTzwtTY8T1G4M= +37.27.182.181 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINScxf0uLitNKf2GvoibGFW//dfi4uLdKg2MrUYiL6/P# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +65.21.176.128 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDlLiBM3KArfEXxkJgOl/7U7h7xFRRBAZwPQ3jB/y4uGJKkMqj9gcJBjwLisH6uG9tG2Fb1/kIQQU2cXErIyjJZ8u+3cHPWcldsDomIlIFFpoEWg/lMuapU8DyJbv33NkjgkY4Bmq9FnOgYMkciMABML61LP1BGwMqB2m9W+pOrwWfYybLiTI7JpGwZqtvYN/NFCbiGsGF+x5YYOY5Ie1z/9N/U20oPTIhwH18GC6XmfeN5Ecic3WQM5wvgsnEQoSdxFc6th8u8pWm2LeoekpoyRJ4Q/VXFI+hYueERSjWb8vzBCeiXKHrSEQTjNyhBoFsaVEU4bMcuT+4m/5XfMmroekVyWISPj/pzyUBWUev/oaVc8Zkc+YcZNehvQwX2CYyDWvQqVM1Xrx7bt4NojMQoyp+pRhRsyNbntrLBVyKr0K4JsEYTmqN+NV/v2EOeigT5elOKzE2Bonj86/7DZWpKXyqkaOZUko+94A9NjlKtoiQCDcPPsd0BjwTSxVJG4eE= +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +65.21.176.128 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE4t7aK6Fmx5lCFE6U0h2tn3BGg71cq17qDShcZJvbJc +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +65.21.176.128 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU6i0QaP1xG8V+LTFnRrOTQw9EwmKTmE2Da0Q30pZba +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +65.21.176.128 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC31XD/YEwj5OmAqGWw8IcjMjOS38pU9gJFRegHNdpe3ba0emUFot8v2L7odH5rHzEzKpq8IYTX1W3yizaCCbtXAuI5fYHu+om8CuxOmym+1Y3UXGyp0/O+WSTGxprraay+J65JefD5FRvNfW5cQIUWV2t+YFNvPIhlCxJeOS/1aQLum0KW2OJBQxJX88D7lSx9kyI0Hlm7GiIIVJwXy/MHWz5J/JY6P6CJGDiG85MakwjHPqrdSH+ERU02Gmidb/TeK7KFCh4lyMJRhI2Nwe8UkL+LjWY0bP7gltRBuPWfJBAh5B/1TZNHVr2ul+TwQ42hUw29xgjd972TLyAbhtnCXCASwym4jTbzEotQ5CSwr/AunhUW/52FVxRystcx4Y3e5Sw/eSjCqdRLzZXPa8lrLgJz1T4ztoHSHNO0J6m9/5oGCoatDysmSqaJXXLWxWkhlL+B2T5GO1GADZPn0ywH+gEs1O67NFrtEFIspWOVAeS6AHkhMskfgyFeVg+WCJk= +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +65.21.176.128 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBF9Yq2PPtwmLXgMpzuh53KbFjXOtG3e+Ckd5ZNnkA9fSwemQ7iZVLaDVfkvdXCPdDRrGxnhc0QHmYvQawVWBW6Q= +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +# 65.21.176.128:22 SSH-2.0-OpenSSH_9.6p1 Ubuntu-3ubuntu13.11 +65.21.63.108 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC6DJLJkmSYJoWGTwlkOkDxbdEIQeRAfG5uqiilXCW3cpq+AuP6sYMiRmLM6h8x2Dgg9GwnVY82ji7dRS5DPJVwfxDEwnOxguH4qVJUdwu2MUj0xq3lIF6rEgxXIt8E2qD1S1fI8RIlm9EQOpKn9fbt8b2jOCvs1lZYaIcBrS4FgXjEntLU36qj0nDXOQvk05/QYE8jnxjkz87VYOwevbr2hbVLBPt3pYShx3cTDjpkEyLqZ3OiY9gs9JEP9zlj9OS9pwNT8J+BBopifT4x4l59u8MV6uXo7die9O23h5arWDQpiCh4Sau0GST+bfSoQD7JP4EGe+FZuL/52NHHCf3AXzNj8CLqFm1ImVMUZHslNx6dYPb/txLP3F7fSRpMGzyAzHm2+swDYbeTuoi9WpMBXG3bk6Ggo+tvBkDVPJ+/tVjo6GN7H8JpDhBjVp/pCmghCXXr0kphpOCQci1x8uQAm8Qd9NMmXQsVDxuoIERGK+m+3RsE6WZ5JUsGvS0ZdzU= +65.21.63.108 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJEtpQaMFLWG0XKWY+Vl2TTaAc4l5BGYXLvRtO8RKsAWLEGn4OEisRQylvoGFS5+k/ozHrQvYQD+uqJKt8s5CP4= +65.21.63.108 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIODFsDfQ4AgxmVRSnXroPbUTAtAtBlAOaw7Tc/tWjJuS +91.99.117.53 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCIkxjUf08yUhNzKm25vAsU1qsmAk3RFk2AK6COGxkhE2wXmm7QiuKBrzljLzyKju4oAE9WpeWG+Rpm2TLm7jFjxOkM1nfe+RM8sepZYT7hu5LsXox7pXY2ghUGzfZabY7JWW6KikLozZD7xq9JzDj8swaUZ1y/+q9EDTtG9iMj0cPzRc1fDOAOjEDrMV/S8s5SiIQBbkm3MuRue0ETIRzVYPCptBBvtSAMW6ZWT2Pb20YYU7ZXlg3/jocO5mRs0gkKcBv4/44yH2M54L9K3vTW7SmcPFIXv08fFJvO9VPMofLIG9v56yxp6U6B6WOhESWi2p4ZO766W0wWvY+ooM0b+sUBKLb3Guy0sy/HVKE6HkPtDZEvb36eq4CcbJOKig1hvPlEx+eIDoOvrIoK5Bp8pPRUr6gASvSL2+f6Lb14FYg3hWjgfrM/yTxXW5WGtrzrDJbRkpkEzR+rbT+YPSL7C59RgfO23Te3qX6sDSq4QEWI9hs/jD4kBtJjgreXUyM= +91.99.117.53 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJaHFi0RTBqZ97VuXV5dIf/lIiudiDQnYeS6cvaSOcILyE77waLaIqbwB2BUHwrazLFZqbUNIFVuCYBg/9xIVUk= +91.99.117.53 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILpF71mszAVx2tn9rYYu8fNOnXdKZVWJI+FUmCbvz6+/ +49.12.218.32 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICh6pj8pvLOHKA3E4SQfAoY5Soayk5V9TwktYHo5CsGs +49.12.218.32 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDjSbbtgXQMCjfynIEf2zVsYfyJOJYL3otI8x8NYUx3Nv0fz+y0PSoy6+ywcU4hDnqhFV8FCZcDJXY8wqg7pEtf5WkuvmA4HkBM3tZCHGjc+8aznq6QY0V5MjriTq2t0VOcL1226ty5utDP5nIXe5Cyzg1Mz9/YQx9aVvvreW9rNG8qdvqUQxobdmITLah22BSbUG0Gv0SJNiI5F2Oq/M3g1G5MogTEjuQ1vtMw44VJmkiNEV1rvMyOyiPVx8qlqJ2bc+2Q45U8TMJWYymHjoMAM4hRH2AZIuPPPzmose7mbHYhm2Ge6UY7DNeM+kSpEXHieR1v9PLueejfUU+9dYZFVcuxiVtIJVV5hIwt1MmwNC/fo845K6dXowFq1MN+IyXAIrzDuSP8ZzqF5hybCkN1F8fP8g9OKpbD+mL/Q1hUJJaG9rCfY0JDV4Wp7QJmHX3Wv3heWgon0vsfdnfq3ppqSAXzunxHKuZksRx3fm7qc5tLCQHXbfspwLye8KdPuUs= +49.12.218.32 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDqfh5fz27v9nHl0BYB72BNeP1C4ipLHbjQHTQ5VLCJsY+gBc0i2f5328j0Kr6dJw5LMnKcOBWCjdrXOIXLCTtA= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIb0H4HAEx0znsXNe0oRFs2s7jONvqF3Tpv9gPRllysA +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDZSNM+XAAycwxp6Rk1Gv3mdC2YnB4a+7UBWIwHYiVlGFQfcPK1Q9equgzlGGJJH/e4DNjSfQ5T1CO1oxvB89alUe++iWKPVRax5KIRJuViruu/KHaGVoxlsPQRMIesW2pqfn0hJhXh1BmKcdiaxj5uv1uMu/uOJ76X3iHk1ho/SegNpczhVYUBieC7jxicCXIkYZ0XsW/JE4qXTov6u8XN9KIugamgFJ8JfBbZPt7xkakiu6zTyj7gz7P0u6OSPGDpiiC4wOY6ldnr/DZSGTHOgeh/Hry/WMKzSgmw+Llmg6L89IfC6FQaDvJVtfpzhJGly6Zsz0Hkckb5YV2pCOI7Sml7+9vjyCQt3herp2vOOGP0erH17vHFKyWMgR+qoDTHsMuFbZzmMpmuDlcpYMeN0UKV90HsalsTQBt30f4g8pY0A8rZTNBryLjmr9aUWcFPpHT4ItAPpoyB//9DHfluJhbEUF8lPx1NrpJwl5m/21FpuhJuxNjkSoLq+RlGbbU= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAS4t7BaVEgpllS3iKB/p4P1dDORb36hM6iYfJhoTuVNVxjRJ0F5T3lERGtuJREU2ePk8lB+V2jjt8nVRKI0jVs= +91.99.118.205 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAOdlspWxJ2pyNLlVR0QlNHtKik1zNbvr5fJRBbVdzXx2QH+kBUyxETvINc0OF4Emiue9md5e7WwczlZZ2+9eaY= +91.99.118.205 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzMpjXATSi4VO5kP8iW/sWFj4f/uz/VlMTHJfGMD1e6tBnmtRlqm/2neHxED7nfHoz6vAnmICYV3uFA3tRTlbKkxLanFyQCqLlnm6c/UNHfyImgEYlHC6TKdmW5z3PNWJnwQ2cftvQMg8KkwmmQJng8y2hUrvJ5MdiTHHTiy/8NlDK/gSOUy0ThrqEV0RvQqO/ODEDEYVJq+SX6toF0orUu+EnXu2WM06qXNIMMZ3xJZF7eQrEza4ekuHlojZtR2NoHGc4UaiEQqW3XQ99JQ60doCmsEQ5gqqkydWg7cS/P7KXtACbC0VAkk3V34ZbVRo77DB6wBc+IIShmhK+O/uIoEBpuJNydmnVzzkJRYuiQuT6kSuG9F/M44F6/Lrbth/SjbW87xPrwbexMxdxPf6FQrv60CcjZkaFNQ03WEwc/+NyaIzDzf1dDhbiU/SuDHYbyK5PS9CCh2QHT4W5ZXmiPmhftoNrhrL8aKXi3racEfCOFYJVl/6WkFXE7SJQZL8= +91.99.118.205 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEWCiHx88zcTuNtUf/D7lF6fdrCoizzjQ5qCQb01JxAu +49.12.218.32 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDjSbbtgXQMCjfynIEf2zVsYfyJOJYL3otI8x8NYUx3Nv0fz+y0PSoy6+ywcU4hDnqhFV8FCZcDJXY8wqg7pEtf5WkuvmA4HkBM3tZCHGjc+8aznq6QY0V5MjriTq2t0VOcL1226ty5utDP5nIXe5Cyzg1Mz9/YQx9aVvvreW9rNG8qdvqUQxobdmITLah22BSbUG0Gv0SJNiI5F2Oq/M3g1G5MogTEjuQ1vtMw44VJmkiNEV1rvMyOyiPVx8qlqJ2bc+2Q45U8TMJWYymHjoMAM4hRH2AZIuPPPzmose7mbHYhm2Ge6UY7DNeM+kSpEXHieR1v9PLueejfUU+9dYZFVcuxiVtIJVV5hIwt1MmwNC/fo845K6dXowFq1MN+IyXAIrzDuSP8ZzqF5hybCkN1F8fP8g9OKpbD+mL/Q1hUJJaG9rCfY0JDV4Wp7QJmHX3Wv3heWgon0vsfdnfq3ppqSAXzunxHKuZksRx3fm7qc5tLCQHXbfspwLye8KdPuUs= +49.12.218.32 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDqfh5fz27v9nHl0BYB72BNeP1C4ipLHbjQHTQ5VLCJsY+gBc0i2f5328j0Kr6dJw5LMnKcOBWCjdrXOIXLCTtA= +49.12.218.32 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICh6pj8pvLOHKA3E4SQfAoY5Soayk5V9TwktYHo5CsGs +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIb0H4HAEx0znsXNe0oRFs2s7jONvqF3Tpv9gPRllysA +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDZSNM+XAAycwxp6Rk1Gv3mdC2YnB4a+7UBWIwHYiVlGFQfcPK1Q9equgzlGGJJH/e4DNjSfQ5T1CO1oxvB89alUe++iWKPVRax5KIRJuViruu/KHaGVoxlsPQRMIesW2pqfn0hJhXh1BmKcdiaxj5uv1uMu/uOJ76X3iHk1ho/SegNpczhVYUBieC7jxicCXIkYZ0XsW/JE4qXTov6u8XN9KIugamgFJ8JfBbZPt7xkakiu6zTyj7gz7P0u6OSPGDpiiC4wOY6ldnr/DZSGTHOgeh/Hry/WMKzSgmw+Llmg6L89IfC6FQaDvJVtfpzhJGly6Zsz0Hkckb5YV2pCOI7Sml7+9vjyCQt3herp2vOOGP0erH17vHFKyWMgR+qoDTHsMuFbZzmMpmuDlcpYMeN0UKV90HsalsTQBt30f4g8pY0A8rZTNBryLjmr9aUWcFPpHT4ItAPpoyB//9DHfluJhbEUF8lPx1NrpJwl5m/21FpuhJuxNjkSoLq+RlGbbU= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAS4t7BaVEgpllS3iKB/p4P1dDORb36hM6iYfJhoTuVNVxjRJ0F5T3lERGtuJREU2ePk8lB+V2jjt8nVRKI0jVs= +91.99.118.205 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEWCiHx88zcTuNtUf/D7lF6fdrCoizzjQ5qCQb01JxAu +91.99.118.205 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzMpjXATSi4VO5kP8iW/sWFj4f/uz/VlMTHJfGMD1e6tBnmtRlqm/2neHxED7nfHoz6vAnmICYV3uFA3tRTlbKkxLanFyQCqLlnm6c/UNHfyImgEYlHC6TKdmW5z3PNWJnwQ2cftvQMg8KkwmmQJng8y2hUrvJ5MdiTHHTiy/8NlDK/gSOUy0ThrqEV0RvQqO/ODEDEYVJq+SX6toF0orUu+EnXu2WM06qXNIMMZ3xJZF7eQrEza4ekuHlojZtR2NoHGc4UaiEQqW3XQ99JQ60doCmsEQ5gqqkydWg7cS/P7KXtACbC0VAkk3V34ZbVRo77DB6wBc+IIShmhK+O/uIoEBpuJNydmnVzzkJRYuiQuT6kSuG9F/M44F6/Lrbth/SjbW87xPrwbexMxdxPf6FQrv60CcjZkaFNQ03WEwc/+NyaIzDzf1dDhbiU/SuDHYbyK5PS9CCh2QHT4W5ZXmiPmhftoNrhrL8aKXi3racEfCOFYJVl/6WkFXE7SJQZL8= +91.99.118.205 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAOdlspWxJ2pyNLlVR0QlNHtKik1zNbvr5fJRBbVdzXx2QH+kBUyxETvINc0OF4Emiue9md5e7WwczlZZ2+9eaY= +49.12.218.32 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDjSbbtgXQMCjfynIEf2zVsYfyJOJYL3otI8x8NYUx3Nv0fz+y0PSoy6+ywcU4hDnqhFV8FCZcDJXY8wqg7pEtf5WkuvmA4HkBM3tZCHGjc+8aznq6QY0V5MjriTq2t0VOcL1226ty5utDP5nIXe5Cyzg1Mz9/YQx9aVvvreW9rNG8qdvqUQxobdmITLah22BSbUG0Gv0SJNiI5F2Oq/M3g1G5MogTEjuQ1vtMw44VJmkiNEV1rvMyOyiPVx8qlqJ2bc+2Q45U8TMJWYymHjoMAM4hRH2AZIuPPPzmose7mbHYhm2Ge6UY7DNeM+kSpEXHieR1v9PLueejfUU+9dYZFVcuxiVtIJVV5hIwt1MmwNC/fo845K6dXowFq1MN+IyXAIrzDuSP8ZzqF5hybCkN1F8fP8g9OKpbD+mL/Q1hUJJaG9rCfY0JDV4Wp7QJmHX3Wv3heWgon0vsfdnfq3ppqSAXzunxHKuZksRx3fm7qc5tLCQHXbfspwLye8KdPuUs= +49.12.218.32 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDqfh5fz27v9nHl0BYB72BNeP1C4ipLHbjQHTQ5VLCJsY+gBc0i2f5328j0Kr6dJw5LMnKcOBWCjdrXOIXLCTtA= +49.12.218.32 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICh6pj8pvLOHKA3E4SQfAoY5Soayk5V9TwktYHo5CsGs +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAS4t7BaVEgpllS3iKB/p4P1dDORb36hM6iYfJhoTuVNVxjRJ0F5T3lERGtuJREU2ePk8lB+V2jjt8nVRKI0jVs= +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDZSNM+XAAycwxp6Rk1Gv3mdC2YnB4a+7UBWIwHYiVlGFQfcPK1Q9equgzlGGJJH/e4DNjSfQ5T1CO1oxvB89alUe++iWKPVRax5KIRJuViruu/KHaGVoxlsPQRMIesW2pqfn0hJhXh1BmKcdiaxj5uv1uMu/uOJ76X3iHk1ho/SegNpczhVYUBieC7jxicCXIkYZ0XsW/JE4qXTov6u8XN9KIugamgFJ8JfBbZPt7xkakiu6zTyj7gz7P0u6OSPGDpiiC4wOY6ldnr/DZSGTHOgeh/Hry/WMKzSgmw+Llmg6L89IfC6FQaDvJVtfpzhJGly6Zsz0Hkckb5YV2pCOI7Sml7+9vjyCQt3herp2vOOGP0erH17vHFKyWMgR+qoDTHsMuFbZzmMpmuDlcpYMeN0UKV90HsalsTQBt30f4g8pY0A8rZTNBryLjmr9aUWcFPpHT4ItAPpoyB//9DHfluJhbEUF8lPx1NrpJwl5m/21FpuhJuxNjkSoLq+RlGbbU= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIb0H4HAEx0znsXNe0oRFs2s7jONvqF3Tpv9gPRllysA +91.99.118.205 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzMpjXATSi4VO5kP8iW/sWFj4f/uz/VlMTHJfGMD1e6tBnmtRlqm/2neHxED7nfHoz6vAnmICYV3uFA3tRTlbKkxLanFyQCqLlnm6c/UNHfyImgEYlHC6TKdmW5z3PNWJnwQ2cftvQMg8KkwmmQJng8y2hUrvJ5MdiTHHTiy/8NlDK/gSOUy0ThrqEV0RvQqO/ODEDEYVJq+SX6toF0orUu+EnXu2WM06qXNIMMZ3xJZF7eQrEza4ekuHlojZtR2NoHGc4UaiEQqW3XQ99JQ60doCmsEQ5gqqkydWg7cS/P7KXtACbC0VAkk3V34ZbVRo77DB6wBc+IIShmhK+O/uIoEBpuJNydmnVzzkJRYuiQuT6kSuG9F/M44F6/Lrbth/SjbW87xPrwbexMxdxPf6FQrv60CcjZkaFNQ03WEwc/+NyaIzDzf1dDhbiU/SuDHYbyK5PS9CCh2QHT4W5ZXmiPmhftoNrhrL8aKXi3racEfCOFYJVl/6WkFXE7SJQZL8= +91.99.118.205 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAOdlspWxJ2pyNLlVR0QlNHtKik1zNbvr5fJRBbVdzXx2QH+kBUyxETvINc0OF4Emiue9md5e7WwczlZZ2+9eaY= +91.99.118.205 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEWCiHx88zcTuNtUf/D7lF6fdrCoizzjQ5qCQb01JxAu +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC9LPMu7iVaNIHlTgl6nhA3ETr2adPM57U2qCBVcnooyzIS2T67xpujL9fEi9ce8Lg8uTOzGnUMurs/ucuVHFhzbmsoV00747bfWJeW1dm8TIWXlBHyMlRSGb6Loj7fgaHlF3tsHuHIXwAdFKREgH2jPUYELkTR4yWKY5Rj/X2QlUe/m7xrkumBrTCkUV1I4GJVGKEK+Vn98KWkkIFhZkUubbNpALEgtSyVmmdTOzESsdpmu1XYsLJryTXlwor0qWsKxbJDVHnDePJ0fzPCcq5gWHuAJGJXr+u8aCfIecrK1R+QtF9wYHIOagknQkRshpR/BOhi3b1/MEeJQKHE22Izp+7MmboN4a7FP5u/C4Qj7xBDoUOC8lMfmJtsa5yh+EzkVL6WDF3K7S+74ovVvqn03QBsLH77trf/L7FXXsd2YwP0junbAl3QRT2rehbOW4S8RwnVtLS1PzWwA0GXgqkqlhCxQ+SZHyE2fnvVaXmTP+YGf6uZG4Jo81fwiNp0MwU= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGmbWyHyyOmvylZRlEszZCQLfo7fMGQ/UTyZ9+HJzSA+sNPAId5VZMwVB2QBlaypf4KiuGDt7xthf6sLNC+4Qhs= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU9zWFHPxeTxIHT4fsfYFNELqUXkQasMRZGu6RxBx3h +91.99.118.205 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCr8ToxUI/wPyDxt6GmY6U37XpxfDydABu98UySZqb/y4R/6pb4tAczThmjCbiOiR31ewySTaOx+Xyt0DS9uqjCG/0dGqrvpgbB4hWZjQSCRLZW9ecwGbHNYXVrmAl8re7+g1rPegFV6IOjWdI0qPM+BXLVDjrNxrLSHAkIiNR/5501v0OLyY20zBVBx3+fLOdvxj5r4u06V86bpIXPN/+EeW9o9uNt7IvEWRemn6L03koK1tJibr1MvgxAbC3DXauaBIWqGBzQvlc/jQyd1aZ5Ht/5Gyt8+51eOdOwjrUH9rLHKR6BGDg19njTgOhTs4CnjOLSdkJyaxuYfssNLAiyO5yJ5cnKKeXPNUtoH0YMMuNyr0melS39n0C+yGsPkqGllz1jppPpjW+c8Pg6zxQb3lv9yIcwR1yG1zr7FaW8onCQ7jFjepsqaudzg9SSFAr4NVk/cxpv5QcWhJsuT8M7D5Y9ZO1gyrNBA+L9acn6eP9yEvQ7Nn5eyErHWGY17N8= +91.99.118.205 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+HouWgxcLTIlK38FlIa6DQF/n91UhXMNHkZSM+9jid +91.99.118.205 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBK1NI8yvzKULjZQNbOyj6ZzW6+QunZ7N8Ek81/yslM9xYQlq38KJ7PBfiVr7vdRw/gi95bJHihV8UIRGOKdNS7s= +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDG3O5k72GNchEptVr4F85gmT2yhjZc1LV819Hg/pRe6VKJE5gA3f4JQblLwKw4zHhBG4EGDq0onu7IERhCaOn2F1v8oLuOYrmZgrIoAOQhgCVguZRNv0U/3x17LngrqWAZ9LnDDZMsBApI5zMhspW1Ug1SUqLgLCuTRK4zNZQSqc0J6J7EhtqXslWVu+KD4CRdtUg5CaU2m2RRrAis5VOXGK3+ZkVHkg37PS+9ru3aUG479BNxEQ/dy4x8lZB/l41dC6QAp+aWbBfkV5mT+k4ksTaUqfXN14Oj2pmJCWPD0kAf3PTbiqTSfYmd3xd+Q+fQq0oAWPwl6sQaLyfkEd9dwhD9uLY8XShdJORhRuQI1LDIYUZ90CWpk21wW+gZaVdBMaNk4nf+27UoeDh9CItDlw9OdS39Bwad92bbPFcwlJnlk1HPXNp+7BEVGXbrHVAT4aXBQlw1m/+aojLq5Eo2/jw4nIBHizsAl8UtxiK0Jwefp0vq/xPAij54ty2USZU= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLlceNFs4jzKNtTrZ2r7FKpuswTsFQSpZbnmE1qGhXqQ6OEU2LQ0k3GB70CbZ9ifN7cfGb7f+L7WguqkKJZQD4s= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHY1wqEoRW+KSg2zPBzUo28AOXx6WYG82JE01M4VwBIG +49.12.218.32 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/nvgVhXvzZF9Z8+j4J8XAZjzFb+XDH+WIhCToRdHBZeAYWHFY+CYCh7y3pLJQRjFSTeyK6iwaRhpm0Yktxbj5lBrnsrErjUUP4poDUrup3MeC8+DfuCwyP10Nu+IjDFNS8DSKCY1GQwKm6ZGwMIuxSEm9mZh4CNLVCn+7bq/GE9wBX4k9Ev5tcvxLfZOJbX8NDuUbuby8XJzNa9oyv1f5Q78Mx9klg/zRShtF77mxqNfrf7nunU9znSl2Joszmcp5QJdfJG9RXSLPPfjmW4nrgK9uIbIL+o9gDipQxks/FPlNGT1QHGmVjIi5uynWq2l2/+WZ/WiMYJUzffVGPUzko0QioZyLwtGW9oAlH9e99yhmzUgnAqa6HVn7mU5HKg54ht2+q7JYiCEj79nwRGCCs0gib9enLpRkOjAplirODd75g3ybPshKaUi/kYgbzp3i68N1KjrsJ3KOc/THprtQDhDBrD9NBrW6bNsbcpeA1joe00Kb2c5FfVmKMJ+vXMc= +49.12.218.32 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIY7VzZCjFYvZndY1hqIrw+t67/jzjxOO7NGr9BNMDa3 +49.12.218.32 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPk/nMHOxwrhAOl5hc7HJ1c8gbrgCQDwW1DwEl9t4kbjcdnqb0I0eEEMmOBpWEuE3X4mRd4EZCfEmsnu9jIr1UY= +88.99.123.138 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJA7qswC/o+mDoU0QDgOxjU+a8eHC53uzcJWrbKzZ9pAhKIC2ibmWEvhps5EDXNh7NAAUUY5AcUARc3zRwm2drk= +88.99.123.138 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCfXjpmFQjFP4AiQm7vbIYyUd+W/Z6NnoWIx9UyM7VEYuKW7U5mgRC4MMq+bYusOqJ7EGz5xt3CVeLdQ9MX/y8hdNM44XA2tkf1j9hCM5BLUGM0D5iDR4W08nruaqkDiAirPHDTQjy98b5ja6M72lkUVK/pCHVN2KTDsc4BsOL4cVFajq3tGCmvxQBr8cDu0OxszcPr0XfKELRLJyydhPy/Zz9TmvobPxLpkLdZVvtXWBVahCi89fiqFr4F/vGjTMJODr8bhYkb3UMd0zSU8fkYQ9Nosv7x7UbgsMBR9zCBgQFg56WlAPeMTFQw7aHryJswwtGb09cCzvFL6lJMj6qGiKyj68Rrzc4fVnP9geiD4kRTfuDIlzZw9gyH4ZoSNvl5W3WMpRRv8xtbRUcaY6zza6e3tZ0Kqw0/vbbZqVrEzWcuHcBHX9wqkRHxXOJQ3pziIhQVqz8AQf37qeQjJ3jtYhvPyPKNSs/sk0ksHN7KZ4FBodades7tl7tA9my60ps= +88.99.123.138 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKxMoK7w4Yo+BVKzA0mtl9iS11b62A1TcoRn7BR3l3DA +91.99.118.205 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBND/EUY5qytJA6/Ty/2Knsaf7I1vI1bRvtqnN83toqofvfh36w4DmyFMzhGBGfYONEkATFuRrumuAzMvXZAqW/4= +91.99.118.205 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCufIRffyeWpIC0lRTz0KRMB1Adw1WAkXoKwlqlhH5SunoWjoCyFpRtNGbg47Cozd8X0OsZGX91upeVm897Bb9aKY1oosX6C+TsHXx3rk9H9mLr6LZl3i/0B0/HdD8+JmnrA2FC6uFibjg+7hgAguc19RkKi6XcEwDTHoqOmDwJ3/dIPkz+HUqAincWpjAa5omVNjAmtzBSLuNuAm14UJwiLrDNW6EEvXE12sz8KmR3lFeLqfrSaew9GlFfCZgFIQ6dPVz3UzyvC9YURpZGJq3MbcDPb9kp7M3aYYvMnD+18D9WGfeB5RPrWTjoEBNYMYtkvvjHCDfxnmr0uIDX+A+53cVaMxUU4/aTE+FStXVE+Iztbe+Ye5ZWVG1+bZMPRjaD2Zy42kJZfmzWT8x5YpF3rkGXWfhCIMdRFVdZ7KJHIywAtDNvFIHyzoqKCqy67yWY4nj2yZNDUxwrFeK8MgM1WrtFlcPncD2MiuGznmtbFEJQNs1gIegB68uaz39HNrU= +91.99.118.205 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJCSMLJiyuvwAJdNiKx06OJ1DflKb8U1ho3mGc9OopQ9 +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFyJndovR9x/wX/ThjuOYmPYy2DMvl1WT2/KheCzLsV9 +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3raoySaxuP21cgqoJi3bQcIdTGzuZ+ZpvkA7CYj0MaRs2iYdU/vdRfu1dof3aTvPvKeCwyRkc3fjKd9L8vVcIoNamA8mprB/sK2DFxNzV9IbUGdyDrqQ3TTr5jaqGBvMC6WphQFxZiH6Pfu7qjDvI+76u2hRYbUCB4YKneRVPwcTYdaDrmiFZzkK6CEW2IQ+GIq+0Gb/bpRHB0+6g09hFuNyi9MbE4/4cJ54oaBjeaIijMePVnAwMeoPQq8YZPM0JRvqNKI/5SYsi0JA3Kiq6AcF5LQKPv73Zix9lBxURq357ONyvejf1YmzA360C/+BaVYSzwQQmADMtZIbGcdo24yX549MLIogzKkyediRR09XlaYgj0CUJyNiFnVAu6j3XPrU4yYIb8rnozkjiAiUgBzIk8fW81y3o9KYlKKfL37UK3hiecQs4hgHiIGxypU48P/v8iNBleKiD0othEOFu3/FS9HkG8oOT5viT/Q0In7HVrABC/ZrHqO1hqrIbgZc= +5.75.255.25 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBP98S7kV+ooKbxoQMPMwTm2fkqlpyWINunH7sZVFRIXIdrQgcfzKfBtmN3bVzcgXMgzlZW3fwohLLB1pU0r1A/s= +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDTdNBkPeK91w9IrHl5Ah+sh6EKVRBmm53Cm/deXEB0WIa3eRyy4Begn0wON0OyAzCWypyV5WAJXXdwkUDOY177Y39nCZfGeW0Xqa4sDWO08mrLFaSPw88JAPLvuURHGJLbfLAWvJLMxtbbk+grDOLe7BdjR8LzR583wOj+Xs3nx06TOYaina0liP2HM/OlgHUTQebAxG2Gzag0JnTpHc/6PX8beOSO27GmfTnQRYQRtB9PipgUVbNpSE8V5Y5XLwkgwikGA5lJ6/tpwgae3VnvvyqUmCCfpcJg6ibc+sc1D+9z8TJ8XEVFyW74qo/G41xArg5Aq8oteNwFXf6xsWLRct21X6o1Fwph43s5yt8JCBCBlqOutvTd08R3Vg1ti8bIwfc1t8JYmVkhtxcwxRt1WxCXetajwGOzD99Lp7gfvsYrZ9Yg0xUFoe23uAUe4gUtZ97RN21e/SrGM38Ty/tZx+H0eyhjTKhVCHmsVWp1aiTpAysrH5TLSo+CRuIFzlM= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPzXRG0FxK8Qhzq3hobkrszQR2wf18R5nU4PA54Xip5l7VafIHwDXR5CsYshnTIHjarCoJ1TWR1YS8q5ZTgtPmg= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQq7hFemsROkRmLe4OMCMRj2ErXdgulOvnPS/+E/Qkf +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDTdNBkPeK91w9IrHl5Ah+sh6EKVRBmm53Cm/deXEB0WIa3eRyy4Begn0wON0OyAzCWypyV5WAJXXdwkUDOY177Y39nCZfGeW0Xqa4sDWO08mrLFaSPw88JAPLvuURHGJLbfLAWvJLMxtbbk+grDOLe7BdjR8LzR583wOj+Xs3nx06TOYaina0liP2HM/OlgHUTQebAxG2Gzag0JnTpHc/6PX8beOSO27GmfTnQRYQRtB9PipgUVbNpSE8V5Y5XLwkgwikGA5lJ6/tpwgae3VnvvyqUmCCfpcJg6ibc+sc1D+9z8TJ8XEVFyW74qo/G41xArg5Aq8oteNwFXf6xsWLRct21X6o1Fwph43s5yt8JCBCBlqOutvTd08R3Vg1ti8bIwfc1t8JYmVkhtxcwxRt1WxCXetajwGOzD99Lp7gfvsYrZ9Yg0xUFoe23uAUe4gUtZ97RN21e/SrGM38Ty/tZx+H0eyhjTKhVCHmsVWp1aiTpAysrH5TLSo+CRuIFzlM= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPzXRG0FxK8Qhzq3hobkrszQR2wf18R5nU4PA54Xip5l7VafIHwDXR5CsYshnTIHjarCoJ1TWR1YS8q5ZTgtPmg= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOQq7hFemsROkRmLe4OMCMRj2ErXdgulOvnPS/+E/Qkf +49.12.218.32 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCpPdh0YqGBaT128Plc3e1AlzAdJt8+CsvidOumTn/IVf2sb4sZRTbQWv2il8IE+2c48dWYgN+LQohnRze2ySZ1j8uNk8rO5I/t71Ht1rb21b0J7seDW6e3mqHgRHQNd+Lo5gUN8fNQPqCuJA/N7INlifxciKF4BCcgG7fDnO9qOz5VHVwJH+qjbjKtR35i0nbbQMvL1x6O4qtILqodGQfw+iMDfoF43l0nec2VZQBVnlQNmE/oRAXUTGQCk+LqSPDQXfNiWcOq3HFILTAQzCjbR23OLMhZxnQu5oBKT/O/hqkXmQ0Dg/cFJurDIDb53fqS3K0mIslI4cFypLF/lzirLB1qIwNi6tCTqzcOgHkvDVwqs32TtqhrfthujX0hKsfIN8hpmXDceU6wpDE8dIxl1qYOvWNK51o294f+KUCBwRFjhrriQ2TkMx9HIQihtio+jaBe33BANIgtb/h+cT+yWDSB3Jiv/JyIvSnubgdI+ndwYGdCT91aZmx0baUWAdM= +49.12.218.32 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGjSwNDP1AiCxVsAsR+HnQw/cQ5fyHlqscMkKsZrYJkmAkgDCLle5l+K/kPxOsKu9uucW2ujU1dBaM0qQfToBCE= +49.12.218.32 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK1uxF+hhSEZDf8zt71n5tzuTEG2xCDya9YOGA65nmpV +49.12.218.32 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCpPdh0YqGBaT128Plc3e1AlzAdJt8+CsvidOumTn/IVf2sb4sZRTbQWv2il8IE+2c48dWYgN+LQohnRze2ySZ1j8uNk8rO5I/t71Ht1rb21b0J7seDW6e3mqHgRHQNd+Lo5gUN8fNQPqCuJA/N7INlifxciKF4BCcgG7fDnO9qOz5VHVwJH+qjbjKtR35i0nbbQMvL1x6O4qtILqodGQfw+iMDfoF43l0nec2VZQBVnlQNmE/oRAXUTGQCk+LqSPDQXfNiWcOq3HFILTAQzCjbR23OLMhZxnQu5oBKT/O/hqkXmQ0Dg/cFJurDIDb53fqS3K0mIslI4cFypLF/lzirLB1qIwNi6tCTqzcOgHkvDVwqs32TtqhrfthujX0hKsfIN8hpmXDceU6wpDE8dIxl1qYOvWNK51o294f+KUCBwRFjhrriQ2TkMx9HIQihtio+jaBe33BANIgtb/h+cT+yWDSB3Jiv/JyIvSnubgdI+ndwYGdCT91aZmx0baUWAdM= +49.12.218.32 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGjSwNDP1AiCxVsAsR+HnQw/cQ5fyHlqscMkKsZrYJkmAkgDCLle5l+K/kPxOsKu9uucW2ujU1dBaM0qQfToBCE= +49.12.218.32 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK1uxF+hhSEZDf8zt71n5tzuTEG2xCDya9YOGA65nmpV +5.75.255.25 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOWbHyVh5nPNlszyOVsghNhjR3cPf9IVCOGyqmEnRYDlCU3ZJVDIAEWWgEXfaGtXn6hFsB7mb385WjkP3jMFl0s= +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCrLmWupzpsYdhAAeGvhxY8nlOODcv7G3gwyVAhuBrF/Ei7dXLqTsye2TglxrYQog0DLaFXsnHqnU9dRvSr1rJOfjdQfhmmBHgVpwChLzV/txlrDDsbo0IkKyJyNOrCTPnxuDc2u8xMldx3eCEC03sD+Yt5gOj10o9GZTtChwFAleCMqdbidUVoJf/AY2C+H41p+rMOVNXUV9ZpLSMDOCOnq7GN/8FMz0BNbNd7R8VCWsdV/PEX7/neKT87DZrHOcDSW11ar4wQpTrI74uJNNy+qUW12AiRIUIhCQzQca3/N5f0WC87ynlEQPng3YFvJ7oF76+TpAmDixaCxHlgr/hH8xtEhCoZIybiWAwxVrvA0zVUueUkn5QXwKYM7SIF/RzdHi22sIWg3JCmiwLuQcUzNqJg0XfI7jwUjJVudLVDkOTiJD9meA+GfgbM1OsRMLqhuqnGuCscljxLvh1jPDPYV9laxJMoGyqjI5JFaQCulzdhf9iUSzfvA3AVTSG8P6E= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOiKW3C435vR1Mi6/MNJzJGIAfzsfDud/FtSRj61gksy +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCmX03y6t4zlCEehNOapBMFRVokubLQZKzLIK7U4sLOUnDH6FygQgv3h12rNWoSHlHXL0kN67YeCG8Ivu7dJt3DIJpmUX+xDkJf05RqfFi+iMxndYk3bUdfcCbNvnZ0pQ8N/wcBieMBATOHyqUcH8e0i3VlUSXVhBrIwmAVm+Y5zhMo2pQlQIRMJI891TxiWZRayOXXKbh9nQCkNGFQYKJ3hcKm3/ASS2QHoRfgnYFPKe1XQMDH5kZWH2Zy1TYemb8z8PXvbQPEWxted1A2Wug94KmbvzDufLTswSlEE2rleYU9wJ4oaXtV6PC7JAC8sihMDt0rpN8K1pCfqADkLqd1wbB55c0ygfkqT8lt2n8RQwiMNTqLVlDgC6Od9D6DiaeypzhZQGPMI0Q1E2hubcBdVsEi0HEBYmTqvetH97uDBAxl4VQMchNOh7/LQ3jfhYKHvgjoiq+3HTy1c6BW8sXx0mZ3S74T5Zo10X/Ia9uCadZgKftIwNIdUj7Io1CFAfs= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMYJmWGmQYQZbNh2FOXLJC+x/BpxAssdF46NFdPV8Fye1Nx7g9teBKGW5NJ2ryczSc5Tis4D3JklZbHPhJ2nWAE= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIODjtIqyZZ9qbzI3qkomdgoAqFssM31K+1hwyIf34F/k +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3TfeHhPYDFctfHb06CgOrSVHB0LbrrmElC5m/74XiyLgCmOZREVhOiDJlY+rFNmmoaHMLLa9hn3TE97N4sWiBa5axhwbI7YmQuABOEgjDa1XP2BK4o2MFNSRlIW0750/Ds2B/6mChn8FPQ//yMiXXEAYOe934y2yJ2sD9vVJ/UZqTUmOZp6omN09kdRy1vh5qG4bZPofvETd7lPIJ2D2CgMvJ8tczcUdZHfFQj+qfW4DPgK1BlhT5e2HaYi1Lq3t46dAGE4varpj9YijofhNMRfnUZCk5NIDliECUKWgBkwzib7nMaMRx8EOUoc1EMMHPw2zySm2CDvIUtvEEJlv8iDriUz93rAYm4YRY36kKL11G9+qU7g11cvipoCCXo+n1Emqsefe5pgKBC9pVy4MSIxpByjF9HXehIR4WB9ZB/0nCPGzJO1gw47uUwIHZKecgzELu8zpaLZDeW3SL8By39sFlsy22XXs7lfX8s6PBt9jzTURlr+maYcboiUFGId8= +5.75.255.25 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC3ptox6KrWRAEPF2aDPmQXNEalBbCfC7r13iMWCmX3ufNd7AO1etxZDke1tKu/Zx+D/GNYyVQJ8/qGQiyTzFxk= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbbNpcmzTJ3y5Zx7p8XNw5jDXtOVK7h09Ssia+Lmjob +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIODjtIqyZZ9qbzI3qkomdgoAqFssM31K+1hwyIf34F/k +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCmX03y6t4zlCEehNOapBMFRVokubLQZKzLIK7U4sLOUnDH6FygQgv3h12rNWoSHlHXL0kN67YeCG8Ivu7dJt3DIJpmUX+xDkJf05RqfFi+iMxndYk3bUdfcCbNvnZ0pQ8N/wcBieMBATOHyqUcH8e0i3VlUSXVhBrIwmAVm+Y5zhMo2pQlQIRMJI891TxiWZRayOXXKbh9nQCkNGFQYKJ3hcKm3/ASS2QHoRfgnYFPKe1XQMDH5kZWH2Zy1TYemb8z8PXvbQPEWxted1A2Wug94KmbvzDufLTswSlEE2rleYU9wJ4oaXtV6PC7JAC8sihMDt0rpN8K1pCfqADkLqd1wbB55c0ygfkqT8lt2n8RQwiMNTqLVlDgC6Od9D6DiaeypzhZQGPMI0Q1E2hubcBdVsEi0HEBYmTqvetH97uDBAxl4VQMchNOh7/LQ3jfhYKHvgjoiq+3HTy1c6BW8sXx0mZ3S74T5Zo10X/Ia9uCadZgKftIwNIdUj7Io1CFAfs= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMYJmWGmQYQZbNh2FOXLJC+x/BpxAssdF46NFdPV8Fye1Nx7g9teBKGW5NJ2ryczSc5Tis4D3JklZbHPhJ2nWAE= +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3TfeHhPYDFctfHb06CgOrSVHB0LbrrmElC5m/74XiyLgCmOZREVhOiDJlY+rFNmmoaHMLLa9hn3TE97N4sWiBa5axhwbI7YmQuABOEgjDa1XP2BK4o2MFNSRlIW0750/Ds2B/6mChn8FPQ//yMiXXEAYOe934y2yJ2sD9vVJ/UZqTUmOZp6omN09kdRy1vh5qG4bZPofvETd7lPIJ2D2CgMvJ8tczcUdZHfFQj+qfW4DPgK1BlhT5e2HaYi1Lq3t46dAGE4varpj9YijofhNMRfnUZCk5NIDliECUKWgBkwzib7nMaMRx8EOUoc1EMMHPw2zySm2CDvIUtvEEJlv8iDriUz93rAYm4YRY36kKL11G9+qU7g11cvipoCCXo+n1Emqsefe5pgKBC9pVy4MSIxpByjF9HXehIR4WB9ZB/0nCPGzJO1gw47uUwIHZKecgzELu8zpaLZDeW3SL8By39sFlsy22XXs7lfX8s6PBt9jzTURlr+maYcboiUFGId8= +5.75.255.25 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC3ptox6KrWRAEPF2aDPmQXNEalBbCfC7r13iMWCmX3ufNd7AO1etxZDke1tKu/Zx+D/GNYyVQJ8/qGQiyTzFxk= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbbNpcmzTJ3y5Zx7p8XNw5jDXtOVK7h09Ssia+Lmjob +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCmX03y6t4zlCEehNOapBMFRVokubLQZKzLIK7U4sLOUnDH6FygQgv3h12rNWoSHlHXL0kN67YeCG8Ivu7dJt3DIJpmUX+xDkJf05RqfFi+iMxndYk3bUdfcCbNvnZ0pQ8N/wcBieMBATOHyqUcH8e0i3VlUSXVhBrIwmAVm+Y5zhMo2pQlQIRMJI891TxiWZRayOXXKbh9nQCkNGFQYKJ3hcKm3/ASS2QHoRfgnYFPKe1XQMDH5kZWH2Zy1TYemb8z8PXvbQPEWxted1A2Wug94KmbvzDufLTswSlEE2rleYU9wJ4oaXtV6PC7JAC8sihMDt0rpN8K1pCfqADkLqd1wbB55c0ygfkqT8lt2n8RQwiMNTqLVlDgC6Od9D6DiaeypzhZQGPMI0Q1E2hubcBdVsEi0HEBYmTqvetH97uDBAxl4VQMchNOh7/LQ3jfhYKHvgjoiq+3HTy1c6BW8sXx0mZ3S74T5Zo10X/Ia9uCadZgKftIwNIdUj7Io1CFAfs= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMYJmWGmQYQZbNh2FOXLJC+x/BpxAssdF46NFdPV8Fye1Nx7g9teBKGW5NJ2ryczSc5Tis4D3JklZbHPhJ2nWAE= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIODjtIqyZZ9qbzI3qkomdgoAqFssM31K+1hwyIf34F/k +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbbNpcmzTJ3y5Zx7p8XNw5jDXtOVK7h09Ssia+Lmjob +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3TfeHhPYDFctfHb06CgOrSVHB0LbrrmElC5m/74XiyLgCmOZREVhOiDJlY+rFNmmoaHMLLa9hn3TE97N4sWiBa5axhwbI7YmQuABOEgjDa1XP2BK4o2MFNSRlIW0750/Ds2B/6mChn8FPQ//yMiXXEAYOe934y2yJ2sD9vVJ/UZqTUmOZp6omN09kdRy1vh5qG4bZPofvETd7lPIJ2D2CgMvJ8tczcUdZHfFQj+qfW4DPgK1BlhT5e2HaYi1Lq3t46dAGE4varpj9YijofhNMRfnUZCk5NIDliECUKWgBkwzib7nMaMRx8EOUoc1EMMHPw2zySm2CDvIUtvEEJlv8iDriUz93rAYm4YRY36kKL11G9+qU7g11cvipoCCXo+n1Emqsefe5pgKBC9pVy4MSIxpByjF9HXehIR4WB9ZB/0nCPGzJO1gw47uUwIHZKecgzELu8zpaLZDeW3SL8By39sFlsy22XXs7lfX8s6PBt9jzTURlr+maYcboiUFGId8= +5.75.255.25 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC3ptox6KrWRAEPF2aDPmQXNEalBbCfC7r13iMWCmX3ufNd7AO1etxZDke1tKu/Zx+D/GNYyVQJ8/qGQiyTzFxk= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIODjtIqyZZ9qbzI3qkomdgoAqFssM31K+1hwyIf34F/k +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCmX03y6t4zlCEehNOapBMFRVokubLQZKzLIK7U4sLOUnDH6FygQgv3h12rNWoSHlHXL0kN67YeCG8Ivu7dJt3DIJpmUX+xDkJf05RqfFi+iMxndYk3bUdfcCbNvnZ0pQ8N/wcBieMBATOHyqUcH8e0i3VlUSXVhBrIwmAVm+Y5zhMo2pQlQIRMJI891TxiWZRayOXXKbh9nQCkNGFQYKJ3hcKm3/ASS2QHoRfgnYFPKe1XQMDH5kZWH2Zy1TYemb8z8PXvbQPEWxted1A2Wug94KmbvzDufLTswSlEE2rleYU9wJ4oaXtV6PC7JAC8sihMDt0rpN8K1pCfqADkLqd1wbB55c0ygfkqT8lt2n8RQwiMNTqLVlDgC6Od9D6DiaeypzhZQGPMI0Q1E2hubcBdVsEi0HEBYmTqvetH97uDBAxl4VQMchNOh7/LQ3jfhYKHvgjoiq+3HTy1c6BW8sXx0mZ3S74T5Zo10X/Ia9uCadZgKftIwNIdUj7Io1CFAfs= +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3TfeHhPYDFctfHb06CgOrSVHB0LbrrmElC5m/74XiyLgCmOZREVhOiDJlY+rFNmmoaHMLLa9hn3TE97N4sWiBa5axhwbI7YmQuABOEgjDa1XP2BK4o2MFNSRlIW0750/Ds2B/6mChn8FPQ//yMiXXEAYOe934y2yJ2sD9vVJ/UZqTUmOZp6omN09kdRy1vh5qG4bZPofvETd7lPIJ2D2CgMvJ8tczcUdZHfFQj+qfW4DPgK1BlhT5e2HaYi1Lq3t46dAGE4varpj9YijofhNMRfnUZCk5NIDliECUKWgBkwzib7nMaMRx8EOUoc1EMMHPw2zySm2CDvIUtvEEJlv8iDriUz93rAYm4YRY36kKL11G9+qU7g11cvipoCCXo+n1Emqsefe5pgKBC9pVy4MSIxpByjF9HXehIR4WB9ZB/0nCPGzJO1gw47uUwIHZKecgzELu8zpaLZDeW3SL8By39sFlsy22XXs7lfX8s6PBt9jzTURlr+maYcboiUFGId8= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbbNpcmzTJ3y5Zx7p8XNw5jDXtOVK7h09Ssia+Lmjob +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIODjtIqyZZ9qbzI3qkomdgoAqFssM31K+1hwyIf34F/k +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCmX03y6t4zlCEehNOapBMFRVokubLQZKzLIK7U4sLOUnDH6FygQgv3h12rNWoSHlHXL0kN67YeCG8Ivu7dJt3DIJpmUX+xDkJf05RqfFi+iMxndYk3bUdfcCbNvnZ0pQ8N/wcBieMBATOHyqUcH8e0i3VlUSXVhBrIwmAVm+Y5zhMo2pQlQIRMJI891TxiWZRayOXXKbh9nQCkNGFQYKJ3hcKm3/ASS2QHoRfgnYFPKe1XQMDH5kZWH2Zy1TYemb8z8PXvbQPEWxted1A2Wug94KmbvzDufLTswSlEE2rleYU9wJ4oaXtV6PC7JAC8sihMDt0rpN8K1pCfqADkLqd1wbB55c0ygfkqT8lt2n8RQwiMNTqLVlDgC6Od9D6DiaeypzhZQGPMI0Q1E2hubcBdVsEi0HEBYmTqvetH97uDBAxl4VQMchNOh7/LQ3jfhYKHvgjoiq+3HTy1c6BW8sXx0mZ3S74T5Zo10X/Ia9uCadZgKftIwNIdUj7Io1CFAfs= +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3TfeHhPYDFctfHb06CgOrSVHB0LbrrmElC5m/74XiyLgCmOZREVhOiDJlY+rFNmmoaHMLLa9hn3TE97N4sWiBa5axhwbI7YmQuABOEgjDa1XP2BK4o2MFNSRlIW0750/Ds2B/6mChn8FPQ//yMiXXEAYOe934y2yJ2sD9vVJ/UZqTUmOZp6omN09kdRy1vh5qG4bZPofvETd7lPIJ2D2CgMvJ8tczcUdZHfFQj+qfW4DPgK1BlhT5e2HaYi1Lq3t46dAGE4varpj9YijofhNMRfnUZCk5NIDliECUKWgBkwzib7nMaMRx8EOUoc1EMMHPw2zySm2CDvIUtvEEJlv8iDriUz93rAYm4YRY36kKL11G9+qU7g11cvipoCCXo+n1Emqsefe5pgKBC9pVy4MSIxpByjF9HXehIR4WB9ZB/0nCPGzJO1gw47uUwIHZKecgzELu8zpaLZDeW3SL8By39sFlsy22XXs7lfX8s6PBt9jzTURlr+maYcboiUFGId8= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbbNpcmzTJ3y5Zx7p8XNw5jDXtOVK7h09Ssia+Lmjob +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCmX03y6t4zlCEehNOapBMFRVokubLQZKzLIK7U4sLOUnDH6FygQgv3h12rNWoSHlHXL0kN67YeCG8Ivu7dJt3DIJpmUX+xDkJf05RqfFi+iMxndYk3bUdfcCbNvnZ0pQ8N/wcBieMBATOHyqUcH8e0i3VlUSXVhBrIwmAVm+Y5zhMo2pQlQIRMJI891TxiWZRayOXXKbh9nQCkNGFQYKJ3hcKm3/ASS2QHoRfgnYFPKe1XQMDH5kZWH2Zy1TYemb8z8PXvbQPEWxted1A2Wug94KmbvzDufLTswSlEE2rleYU9wJ4oaXtV6PC7JAC8sihMDt0rpN8K1pCfqADkLqd1wbB55c0ygfkqT8lt2n8RQwiMNTqLVlDgC6Od9D6DiaeypzhZQGPMI0Q1E2hubcBdVsEi0HEBYmTqvetH97uDBAxl4VQMchNOh7/LQ3jfhYKHvgjoiq+3HTy1c6BW8sXx0mZ3S74T5Zo10X/Ia9uCadZgKftIwNIdUj7Io1CFAfs= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIODjtIqyZZ9qbzI3qkomdgoAqFssM31K+1hwyIf34F/k +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3TfeHhPYDFctfHb06CgOrSVHB0LbrrmElC5m/74XiyLgCmOZREVhOiDJlY+rFNmmoaHMLLa9hn3TE97N4sWiBa5axhwbI7YmQuABOEgjDa1XP2BK4o2MFNSRlIW0750/Ds2B/6mChn8FPQ//yMiXXEAYOe934y2yJ2sD9vVJ/UZqTUmOZp6omN09kdRy1vh5qG4bZPofvETd7lPIJ2D2CgMvJ8tczcUdZHfFQj+qfW4DPgK1BlhT5e2HaYi1Lq3t46dAGE4varpj9YijofhNMRfnUZCk5NIDliECUKWgBkwzib7nMaMRx8EOUoc1EMMHPw2zySm2CDvIUtvEEJlv8iDriUz93rAYm4YRY36kKL11G9+qU7g11cvipoCCXo+n1Emqsefe5pgKBC9pVy4MSIxpByjF9HXehIR4WB9ZB/0nCPGzJO1gw47uUwIHZKecgzELu8zpaLZDeW3SL8By39sFlsy22XXs7lfX8s6PBt9jzTURlr+maYcboiUFGId8= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbbNpcmzTJ3y5Zx7p8XNw5jDXtOVK7h09Ssia+Lmjob +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDl2eo/h2hHCGrfhUKrF1w873XTGJezZN9kOkP+sT2KpyGCKG9mi0ltuaq7NPDWlHFPaVy4MxIfH/qyA3O3VasN/Lg4juhJMS0+jVOYAmeTVtQVkjQ2v6Mmv/6nMNTFHZ+twNkymjWd/YK9gcIX1t0SHYRJ0nkTah1kHoVqewf2DcbfhBrTyGVL0FnesMPUmL9pm5iRVymhJgTCJHDyzgxMriQv/qcur17JB8fbDxlknNjwgKLG1pN4k2xI7Z/twKCT1/xaKvRu/YubB7TICsxGdSTd2xRmxAGqGSxCiLngNvmRHhbqqMUtOjSY0E/Mjtl/Cjbk5XyY6twFpywUAgXcrsgWV2oP9uK3VgwBKqLVXVSA4N65n8s53rgwOJlyOlVO5pr1gBbwNN2hdX3Nap28MF3OeiJ4X0shwOon3s9atjvTv/DQz4/Rfdd6NYk7Uiv9g0LGnmyS4rxaOW2kwLAd0XdpcJpgYo60EGRFDLA1j191N1b1tqBJUeYJ+PqsO2E= +5.75.255.25 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAPhvDVLj4GJFlg3dm3hAtNZRj8u66pXwxJR7rtw1daoDDLJw3UWwhQkBpcz/k2CcrL9R31YCr6UGUeOQeJr/vs= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ7MllnZECewfcMSrih1MPk6aPenEoG2gISHdEY2zQOj +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDF5wctzmYyuujrDceFw/G1Ck0BZFCK4Zfh2eifroqiU3RMVyuf6o8qrzl2KN2Mzxtdco5d3bU7ndak8WVLhxTpieNE+kX/1Q+tf3n3uBmeqKqf4qezyb5WNk+FbrITKUYdOoH88gaGNdKfv28DpJW7I0Y2clDB353Lliz9VwO2HDsH6I6XHdWhhi49xgzvQ0E34FVwdzgRXYaNecroZkQ1R2u6VI9GDs7CrOe7y7thCLn0Kz1b8qfM75qQRlkyrdB5O8yQmX1iTuvJqpJs6DggxbWY3D1YrYkiFz1JOOIYlgqANSghOomqAuXN3uMJS3HEyCh6z+605UxnOHqsB66gD0hGq3LcvYojEUzmn4LB24cANYTZKLAA4ee1AnJOhkcmOodu9KCXdvdrEtZpTyH+YGwjIDfdRrQ3B9NyDqtahtIou9lyNbefieElYTUVOZu9loNhoj8gGlI8m2FL8yF7ARWqyKIHt7O2+xoAXZorMUQsT6wMjcbmgu59HunICv0= +128.140.124.6 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM7T9z5NkUs5suxPDzMIuh03lnf/zR1Xpt9T2/5bsvkBK0r7sIl4T9Av1ZO24YpuD4t1rviQPcpPm28bzQXEg1A= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIAs7iNEpbflEf5C55mc4AR9viEWmsglOwMnkvx2Yqyt +5.75.255.25 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDl2eo/h2hHCGrfhUKrF1w873XTGJezZN9kOkP+sT2KpyGCKG9mi0ltuaq7NPDWlHFPaVy4MxIfH/qyA3O3VasN/Lg4juhJMS0+jVOYAmeTVtQVkjQ2v6Mmv/6nMNTFHZ+twNkymjWd/YK9gcIX1t0SHYRJ0nkTah1kHoVqewf2DcbfhBrTyGVL0FnesMPUmL9pm5iRVymhJgTCJHDyzgxMriQv/qcur17JB8fbDxlknNjwgKLG1pN4k2xI7Z/twKCT1/xaKvRu/YubB7TICsxGdSTd2xRmxAGqGSxCiLngNvmRHhbqqMUtOjSY0E/Mjtl/Cjbk5XyY6twFpywUAgXcrsgWV2oP9uK3VgwBKqLVXVSA4N65n8s53rgwOJlyOlVO5pr1gBbwNN2hdX3Nap28MF3OeiJ4X0shwOon3s9atjvTv/DQz4/Rfdd6NYk7Uiv9g0LGnmyS4rxaOW2kwLAd0XdpcJpgYo60EGRFDLA1j191N1b1tqBJUeYJ+PqsO2E= +5.75.255.25 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ7MllnZECewfcMSrih1MPk6aPenEoG2gISHdEY2zQOj +128.140.124.6 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDF5wctzmYyuujrDceFw/G1Ck0BZFCK4Zfh2eifroqiU3RMVyuf6o8qrzl2KN2Mzxtdco5d3bU7ndak8WVLhxTpieNE+kX/1Q+tf3n3uBmeqKqf4qezyb5WNk+FbrITKUYdOoH88gaGNdKfv28DpJW7I0Y2clDB353Lliz9VwO2HDsH6I6XHdWhhi49xgzvQ0E34FVwdzgRXYaNecroZkQ1R2u6VI9GDs7CrOe7y7thCLn0Kz1b8qfM75qQRlkyrdB5O8yQmX1iTuvJqpJs6DggxbWY3D1YrYkiFz1JOOIYlgqANSghOomqAuXN3uMJS3HEyCh6z+605UxnOHqsB66gD0hGq3LcvYojEUzmn4LB24cANYTZKLAA4ee1AnJOhkcmOodu9KCXdvdrEtZpTyH+YGwjIDfdRrQ3B9NyDqtahtIou9lyNbefieElYTUVOZu9loNhoj8gGlI8m2FL8yF7ARWqyKIHt7O2+xoAXZorMUQsT6wMjcbmgu59HunICv0= +128.140.124.6 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIAs7iNEpbflEf5C55mc4AR9viEWmsglOwMnkvx2Yqyt +5.78.128.98 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLU8vRA/JAJN/8NSt001/h2/s/4Nvd7DzIy4JpUCQbY +5.78.128.98 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCkTZi196DBmZA3HJ7iGbUdmbvPRhQq+LUrft4mjD2zN1Trs8VOnnH4UZXOixEyS+hzLduz/ZbH4ITkyJu67o/rkMFnABlyObx3EZKWF+toP7oW0D7fEOrx27NPSNdZo04PWxEkZY8Jp/Kv4v6psgUgvC4yQ+xxK/xwPjXJ4IUilMCf0uPidpX4RbLzFoFkE4DRHz+K/2tIyIPnuUt8AwBPVWDX2s6YkbpaBzxiT6eXSUUdAevuijGi44bM1YK5zGsVGVT6FIs3FDl5KYK/o5AT4jZYwrPp8Gw1SyYFKVQvJUcPt5TitMURASWrSCUMZkEM1dw7KyWPs91aMByOnzK5F/VNtSO6R328Snh77iPk3E5UfUkhmO1wRAlLyzkf6YXdA+Je69NenkIILFjBBYBvlXiP22uhajwyOFwJVnk45txRrp/PtJFgI2e2mwuVgfluOy1tz180VMKfdBuNOAUuxjuUQPcRNeaZ7w7BjpQGEMO3nQjhRXyrVEFW7NS6KFM= +5.78.128.98 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBP1PTv6gzmWWmPfloMQsLGqLhlI5hNoeoGSolJvEDN3ZgjfQv9Q4GjiUo0NVeduCxNEGtLoXvROrx0WRhCLvzeM= +5.78.128.98 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCkTZi196DBmZA3HJ7iGbUdmbvPRhQq+LUrft4mjD2zN1Trs8VOnnH4UZXOixEyS+hzLduz/ZbH4ITkyJu67o/rkMFnABlyObx3EZKWF+toP7oW0D7fEOrx27NPSNdZo04PWxEkZY8Jp/Kv4v6psgUgvC4yQ+xxK/xwPjXJ4IUilMCf0uPidpX4RbLzFoFkE4DRHz+K/2tIyIPnuUt8AwBPVWDX2s6YkbpaBzxiT6eXSUUdAevuijGi44bM1YK5zGsVGVT6FIs3FDl5KYK/o5AT4jZYwrPp8Gw1SyYFKVQvJUcPt5TitMURASWrSCUMZkEM1dw7KyWPs91aMByOnzK5F/VNtSO6R328Snh77iPk3E5UfUkhmO1wRAlLyzkf6YXdA+Je69NenkIILFjBBYBvlXiP22uhajwyOFwJVnk45txRrp/PtJFgI2e2mwuVgfluOy1tz180VMKfdBuNOAUuxjuUQPcRNeaZ7w7BjpQGEMO3nQjhRXyrVEFW7NS6KFM= +5.78.128.98 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLU8vRA/JAJN/8NSt001/h2/s/4Nvd7DzIy4JpUCQbY +5.78.92.202 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFTs+O4CGh5imOyAdLRuqCG+YyXbxMlCCqK6dIHtleHqD8Z0fl7B11k1Q7yW/pa/i+QxKrYRjyFuHB3Be8Qj60U= +5.78.92.202 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAvbTjZPqHu6DeArTSudtXV2iOVOrElnZgpBSA5y+AuXRtX7gwfz1hOnA7jfhVovyOyunMRvoyRf7P/kWRU1QXaapSIVtlwuD5zVNxwVgundqjHDiBCJn+Blbb42vnZj4rMNKqFJZCnXI4btutfYfwPeIIqSNNIG+KB7vu++ENGQTC9CZq4jJKIcTJU04R1SMl9Vn6/73DCjCnyKn/1eUefRKikQ0C3F/6Dh4dVE7TNcRRMGpDLPKstGbI4aWrbXVTCngknjybDD0vCsjRNvmXbEXFBQlPYev8fmhRWNeGjCY0wFQ5DAKsh6CKiRsJelD5vJgHj+zH0astxhJ0R5P2glkaO14Ql0PsYaPEoqGi6aRrLMHmYrQu3mMWBUx5xP/6Q7x1g6thE21roPkTMTQqwlelf7gLkfAsXWCWFBarpPb7iGrWrlIyz+RJ63O2TmCjCpof+y8C2VAXOFu1bxjFK1dGhgyxJxM+AY33y7ahbIS7MuZ7tz5oZd3tDafjOfs= +5.78.92.202 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIApZFUG5RP36VV2s6/5XNT2CkMtUA/k+r2MB9MLEeJto +5.78.121.37 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDKEeJx4yQPUnEAd13hHudlkPz2vf0QCPhBwRkcko1ZpJwin7ZNb95FJauHV6AHv4d9eKru7zOx+hAcCtwQHGygJUzLlW7h94zxhvbsceo11XE2uf21FiOiNIwWO7dThj6Xyme/ZXVUTUjg4muUiMjFBDKY8ox0igllbNovPpQVdyg5e2ideAAp3+vDr8jO1gNGU/X8BB0iPVpeziwrriPwuuM5/S584pnEiQYKXTAIuzttUD5TCCqi9P/SMJJJGVitxBMyUk5RKB0IliaJElFMnCreRwIy3nKtOSgSzL9SQx6DJexs7H93Iiv+OiNm6ahjRPxfazDb3zoUT5IZH/DRXuMMJwNCcgTFC1/VWT/0TJDcEcvErC1oudbtWHAyhCLLNa+KWfdiJcFUJqRsgG8ZSb1AwsGJhIbk4OG5OtX+hoJpJxVjQASBk26FBF2wV0GvaJuXN+rhtFMbt3+BUqQiWf8cX70vRazosk1c8J9CdDNWieHJD+9aR7fQ718RwJ8= +5.78.121.37 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBC5hI7S54k7oqUOVs8ugIzyncwL4pmYXM+E8HycSN335LArM3DI6Z+blClsogvikPa15OETEscvikOhUdp7OALU= +5.78.121.37 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE9NNCdxobFO98tL8+zCUNJTRfOw4iOHuWRSQBeeRg/C +5.78.157.108 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSMsLeGm5z/JYKQSrR8bbH/58dXpgy379mw2He1XBiG+wJrPMhslN+BqIUlMl62yPb7vNUo5af+P3m4Ws2x+NLW6FUJ5MY4lCYFzGBd82MM7RsilW83he+b/MGwElwlfAx6BnBHxgxpLui+7sj6dqKHj4zwxvf5LiwP7TPfILb5xKsNRyRot965fmBgFc3TvW5RXOYKQEsVYC/ykqPGRK97RZFwN7WgObNYKGmAO/FEasNYXnB7kHJWgAsfHtKPTnBoZPDc3EjljbHDN3k3SNByyfcvvNoq4F6Ni+fW0tv7oBqjMhTNrerGH9EnUzjq40V+aOUsv/LkPczGZKnwzviJM0IIYYbwaRRZgQwvo5mVktwd9AWpc6TNTs9MkKe7zgML2evXD5JSiHQSBx1Q04YYnWbSavBn0uccqvveD2YGwC8HepnQhC+Zf/Drzs4W+YYnwkgnxUfqUAtAcLxsQSA4xoWUXa2rQ7EBp3j0BFTsQOv6EO2eplgAzx/NrwHV0k= +5.78.157.108 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBVAOfVA6r5fy5+fQHR9KKrl/kEsvXekdtvysTjuqqawyTia5PENFVG6IcENSiPD6hTgh0FPI7PHAD+Y2PTvka0= +5.78.157.108 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIABwGMj4wXmxcMYX+HHhD2bgE+ZT9L0kT1HUSIn/8crN +5.78.67.99 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC7M4vofAtH0eWDbBlJh4pIpQsjEXvhED2az6ygLuXkZ6BjSzo6EaMs8X5he8ejbKpTE9PDsi1bZD8alXwoqt6hPvWWT4Qy0d+N4kToM56LIZdA7b9NHZIDR3vbG7hI/6cTcm2W1nLRC1UK7OhKf2w0xgy8u8j0im0UwUY4GOaxqDm2DIk1D+CjByVsiC6EInGWwu88T52zLc/gAK7sQEhSnLSKEaUoOq+ilJQY0ARuOrewproM8UOoIbPzJUmYCY7sfYvN7LV5deGn5XN48yx53OOuy5kNQRPzcdFKkchWblqvH0KBOSu1vb3NRKFQGi1u6bgMo7S0ga72YxyM1OVjXmtMnAnP+ZrhzEGlUub3q4sbMnuDguSB0DNC74IQ/kyuu3skaLXvlJsvccKkc/2yu1jaGomFuthMxpx3RmKvXX3n83uxxc/kP0Tgu7KFQI+0hin57UY4BG2nuYQlac3U8a557BwSzsd/StZ0dZ34QCGz8jfwDvknBynl21kE6HE= +5.78.67.99 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGjkxQ3MFYZ31ZRY+xEvSio3HybgszHlanEHkCuDt9xorNLIMmx7xofVCoPqKNE2XCl0VV4lKXPkigeoG7oS8Q8= +5.78.67.99 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFu7x0Nbn2DSiO1nYoYyxPLjdcIVQQitfnXbOit86A7h +5.78.141.177 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBQHkqiJCgoUOuIPFnSjDdyWzvOQGLIi/jMBEOpYp5ud +5.78.141.177 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAgEG/E4QrPbD4neZQcPTBXlEPaIgpRC1qlB+PTNlV3nvgAsApkbC0ulAwnRS8QtCcKZKsfAqbgXmvUd4+Z3XrTXywZdPbM7o094TS++Fv0tiDgtXjUH+zvovqoVCjefmOTKWSt14umxo50fU1quFM3qF57Mf0YvdhFlSH1xn0SG+Ta1/d2dXyBF+URUDeCm+KPjN0WDUSMBPlJUBR5gu71JpPGvg5PVS0vR3qhMorr3XwQ5x4yVFmpwyi6/Af3+EP1MLDmqcjtMWCrLtonGeYx7+pAY98ZrywkImxIeNJQ20PI9yrdE7vyJTHezqH7homdO6N6kjBcYTSiHUcq2JNqDF07OhsPTYYzPlJTrjzuDgs/4Xx4RtLxSqPm9silw2kBC4S5r6MgKt/3PUXD5giafJ7QgriKZ5u0wizmt+EH0c8q0oD+CFYk9K7/GdxYCWeAhVae2H5Ue2rVhBi/lG0+H2C+q8rU9zoLhCrN0iq3xofcCvCVaQMHMIyxpd+UQE= +5.78.141.177 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIoOyfBvKQ9sxaliKZ1CSfFQyl/maeLaAXhZtkBBdB4yCcUfLfEkLGFWN5SgSHER31TMXpna2pDvwzZXa++d5h8= +5.78.109.16 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIICB28yvGzGBNyoMi1VWiCbkBOPSL+4ZgEpwP3eUtwod +5.78.109.16 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxfDTy7E0T88UW0numuulgcYuY7rVSboD76NW2kPzMETAH/7fwwfiNH1FwyE7kLOtsU6fjbRT+BhGvmxC0uxg8pLsN2HKh6PpUASvhGnCrPHO4OWCKF6GNCRWL/2iWQcar18S7rTZdRz/YRArKu1ABJVKpo4944qrrMUDxKrBP8LZNWl9TJ/Rm6GGfQdwUM06bfCkyncEsvQM2y9r+0nDs0gNvINq/Uk9bVtWQg3r3ibTti9yDGpqWVmyIzrnsf33eSrswAaBGqi7v6ZDNVlckl4HMGHF093lB5vBxJymLY6x0YDpFuJrcUxw41pvL5cImxwEOQA8mzG6lo7jnOOQWUyfRYLVp0jwxJNI5HRk5Mi8ZXQKfEz4sNMiH0DdCWrjJWBtYuH2avgIJjufS4YPCjm4cvnqCbw3M5RDcmncCBWqLAjZk1Fq/dF4O5EwjqT0rY2wkAnupu475KhDc3TPKDkLyLtfOfQS1s8MVFC0G1ClfgxVUKfOAWiYYUC4QCYE= +5.78.109.16 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNKRAzJqLpHxBoB4tm0fz0YQI+liJEIEsKOZI0Nc3bHNIdgcPsPHCEk58RRDmmbN5RnYjTTmI6deDXy9EyX2efQ= diff --git a/infrastructure/monitoring/kibana/setup-config.sh b/infrastructure/monitoring/kibana/setup-config.sh index 68ea002236..0f6d5d4dc3 100755 --- a/infrastructure/monitoring/kibana/setup-config.sh +++ b/infrastructure/monitoring/kibana/setup-config.sh @@ -95,4 +95,4 @@ curl --connect-timeout 60 -u elastic:$ELASTICSEARCH_SUPERUSER_PASSWORD -X POST " curl --connect-timeout 60 -u elastic:$ELASTICSEARCH_SUPERUSER_PASSWORD "$kibana_alerting_api_url" | jq -r '.data[].id' | while read -r id; do curl --connect-timeout 60 -X POST -H 'kbn-xsrf: true' -u elastic:$ELASTICSEARCH_SUPERUSER_PASSWORD "http://kibana:5601/api/alerting/rule/$id/_disable" curl --connect-timeout 60 -X POST -H 'kbn-xsrf: true' -u elastic:$ELASTICSEARCH_SUPERUSER_PASSWORD "http://kibana:5601/api/alerting/rule/$id/_enable" -done \ No newline at end of file +done diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/.gitignore b/infrastructure/provision-server/hetzner-cloud-empty-server/.gitignore new file mode 100644 index 0000000000..b4ddc884c6 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/.gitignore @@ -0,0 +1 @@ +.secrets \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/cloud-init.yaml b/infrastructure/provision-server/hetzner-cloud-empty-server/cloud-init.yaml new file mode 100644 index 0000000000..bcaa6b33f4 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/cloud-init.yaml @@ -0,0 +1,18 @@ +#cloud-config +packages: + - curl + +users: + - name: provision + ssh-authorized-keys: + - ${ssh_key} + groups: sudo + uid: 1000 + sudo: ALL=(ALL) NOPASSWD:ALL + shell: /bin/bash + package_update: true + package_upgrade: true +runcmd: +- groupmod -g 1000 provision +- chage -E -1 -I -1 -m 0 -M 99999 -W 7 root +- bash -c 'echo "root:$(openssl rand -base64 16)" | chpasswd' diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/cloudflare-dns.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/cloudflare-dns.tf new file mode 100644 index 0000000000..b26a401b6a --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/cloudflare-dns.tf @@ -0,0 +1,17 @@ +resource "cloudflare_dns_record" "a_record" { + zone_id = var.cloudflare_zone_id + name = "${var.env_name}.opencrvs.dev" + content = var.env_type == "single-node" ? module.opencrvs_single_node[0].public_ip : module.opencrvs_multi_node[0].public_ip + proxied = false + ttl = 3600 + type = "A" +} + +resource "cloudflare_dns_record" "wildcard_record" { + zone_id = var.cloudflare_zone_id + name = "*.${var.env_name}.opencrvs.dev" + content = var.env_type == "single-node" ? module.opencrvs_single_node[0].public_ip : module.opencrvs_multi_node[0].public_ip + proxied = false + ttl = 3600 + type = "A" +} diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/main.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/main.tf new file mode 100644 index 0000000000..da8a91a1e1 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/main.tf @@ -0,0 +1,35 @@ +resource "hcloud_server" "master" { + name = "${var.country_name}-${var.env_name}-master" + image = var.os_image + server_type = var.server_type + location = var.location + public_net { + ipv4_enabled = true + ipv6_enabled = true + } + user_data = var.user_data +} + +resource "hcloud_server" "worker" { + name = "${var.country_name}-${var.env_name}-worker" + image = var.os_image + server_type = var.server_type + location = var.location + public_net { + ipv4_enabled = true + ipv6_enabled = true + } + user_data = var.user_data +} + +# resource "hcloud_server" "backup" { +# name = "${var.country_name}-${var.env_name}-backup" +# image = var.os_image +# server_type = var.server_type +# location = var.location +# public_net { +# ipv4_enabled = true +# ipv6_enabled = true +# } +# user_data = var.user_data +# } \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/outputs.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/outputs.tf new file mode 100644 index 0000000000..6b65c49885 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/outputs.tf @@ -0,0 +1,12 @@ +output "public_ip" { + value = hcloud_server.master.ipv4_address +} +output "master_ip" { + value = hcloud_server.master.ipv4_address +} +output "worker_ip" { + value = hcloud_server.worker.ipv4_address +} +# output "backup_ip" { +# value = hcloud_server.backup.ipv4_address +# } \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/providers.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/providers.tf new file mode 100644 index 0000000000..73556ca135 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/providers.tf @@ -0,0 +1,9 @@ +terraform { + required_providers { + hcloud = { + source = "hetznercloud/hcloud" + # Here we use version 1.50.0, this may change in the future + version = "1.50.0" + } + } +} \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/variables.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/variables.tf new file mode 100644 index 0000000000..94df08d698 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/multi-node/variables.tf @@ -0,0 +1,45 @@ +variable "country_name" { + default = "Farajaland" + type = string +} + +variable "env_name" { + type = string +} + +variable "server_type" { + description = "Type of the server" + type = string + default = "cpx41" + +} + +variable "location" { + description = "Location of the server" + type = string + default = "fsn1" + +} + +variable "os_image" { + description = "Operating system image" + type = string + default = "ubuntu-24.04" + +} +# TODO: Multinode setup will need this attribute to interact within the network +# variable "private_network_id" { +# description = "Private network ID" +# type = string + +# } + +variable "ip" { + type = string + default = null +} + +variable "user_data" { + description = "Cloud-init user data script" + type = string +} \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/outputs.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/outputs.tf new file mode 100644 index 0000000000..5c17405c47 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/outputs.tf @@ -0,0 +1,32 @@ + +output "public_ip" { + value = ( + var.env_type == "single-node" && length(module.opencrvs_single_node) > 0 + ? module.opencrvs_single_node[0].public_ip + : module.opencrvs_multi_node[0].public_ip + ) +} + +output "master_ip" { + value = ( + var.env_type != "single-node" && length(module.opencrvs_multi_node) > 0 + ? module.opencrvs_multi_node[0].master_ip + : module.opencrvs_single_node[0].public_ip + ) +} + +output "worker_ip" { + value = ( + var.env_type != "single-node" && length(module.opencrvs_multi_node) > 0 + ? module.opencrvs_multi_node[0].worker_ip + : null + ) +} + +# output "backup_ip" { +# value = ( +# var.env_type != "single-node" && length(module.opencrvs_multi_node) > 0 +# ? module.opencrvs_multi_node[0].backup_ip +# : null +# ) +# } \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/providers.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/providers.tf new file mode 100644 index 0000000000..3bd7adb4c1 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/providers.tf @@ -0,0 +1,23 @@ +# Tell Terraform to include the hcloud provider +terraform { + required_providers { + hcloud = { + source = "hetznercloud/hcloud" + # Here we use version 1.50.0, this may change in the future + version = "1.50.0" + } + cloudflare = { + source = "cloudflare/cloudflare" + version = "~> 5" + } + } +} + +# Configure the Hetzner Cloud Provider with your token +provider "hcloud" { + token = var.hcloud_token +} + +provider "cloudflare" { + api_token = var.cloudflare_api_token +} \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/servers.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/servers.tf new file mode 100644 index 0000000000..ccfc95fc71 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/servers.tf @@ -0,0 +1,25 @@ + + +module "opencrvs_single_node" { + count = (var.env_type == "single-node") ? 1 : 0 + source = "./single-node" + name = "${var.country_name}-${var.env_name}" + location = "hil" + server_type = "cpx41" + user_data = templatefile("cloud-init.yaml", { + ssh_key = trimspace(file(".ssh/id_rsa.pub")) + }) + +} + +module "opencrvs_multi_node" { + count = (var.env_type == "multi-node") ? 1 : 0 + source = "./multi-node" + country_name = var.country_name + env_name = var.env_name + location = "hil" + server_type = "cpx41" + user_data = templatefile("cloud-init.yaml", { + ssh_key = trimspace(file(".ssh/id_rsa.pub")) + }) +} diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/main.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/main.tf new file mode 100644 index 0000000000..abe374c7cf --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/main.tf @@ -0,0 +1,17 @@ +resource "hcloud_server" "node" { + name = var.name + image = var.os_image + server_type = var.server_type + location = var.location + public_net { + ipv4_enabled = true + ipv6_enabled = true + } + # network { + # network_id = var.private_network_id + # # IP Used by the master node, needs to be static + # # Here the worker nodes will use 10.0.1.1 to communicate with the master node + # ip = var.ip + # } + user_data = var.user_data +} \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/outputs.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/outputs.tf new file mode 100644 index 0000000000..b88d24e597 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/outputs.tf @@ -0,0 +1,3 @@ +output "public_ip" { + value = hcloud_server.node.ipv4_address +} \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/providers.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/providers.tf new file mode 100644 index 0000000000..2c2653e14d --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/providers.tf @@ -0,0 +1,9 @@ +terraform { + required_providers { + hcloud = { + source = "hetznercloud/hcloud" + # Here we use version 1.50.0, this may change in the future + version = "1.50.0" + } + } +} \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/variables.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/variables.tf new file mode 100644 index 0000000000..d0bde488e2 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/single-node/variables.tf @@ -0,0 +1,41 @@ +variable "name" { + description = "Name of the node" + type = string +} + +variable "server_type" { + description = "Type of the server" + type = string + default = "cpx41" + +} + +variable "location" { + description = "Location of the server" + type = string + default = "fsn1" + +} + +variable "os_image" { + description = "Operating system image" + type = string + default = "ubuntu-24.04" + +} + +# variable "private_network_id" { +# description = "Private network ID" +# type = string + +# } + +variable "ip" { + type = string + default = null +} + +variable "user_data" { + description = "Cloud-init user data script" + type = string +} \ No newline at end of file diff --git a/infrastructure/provision-server/hetzner-cloud-empty-server/variables.tf b/infrastructure/provision-server/hetzner-cloud-empty-server/variables.tf new file mode 100644 index 0000000000..a336e1fb91 --- /dev/null +++ b/infrastructure/provision-server/hetzner-cloud-empty-server/variables.tf @@ -0,0 +1,35 @@ +# Declare the hcloud_token variable from .tfvars +variable "hcloud_token" { + sensitive = true +} + +variable "cloudflare_api_token" { + sensitive = true +} + +variable "cloudflare_zone_id" { + description = "The Cloudflare zone ID for the domain." + type = string +} +variable "country_name" { + description = "The country name for the Hetzner Cloud data center." + default = "farajaland" + type = string +} + +variable "users" { + type = map(list(string)) + default = { + } +} + +variable "env_type" { + description = "The environment type for the Hetzner Cloud server." + default = "single-node" + type = string +} + +variable "env_name" { + description = "The environment name for the Hetzner Cloud server." + type = string +} \ No newline at end of file diff --git a/infrastructure/provision-server/templates/docker-compose.multi-node.yml b/infrastructure/provision-server/templates/docker-compose.multi-node.yml new file mode 100644 index 0000000000..e39de14b76 --- /dev/null +++ b/infrastructure/provision-server/templates/docker-compose.multi-node.yml @@ -0,0 +1,230 @@ +# +# Production deployments of OpenCRVS should never be exposed to the internet. +# Instead, they should be deployed on a private network and exposed to the internet via a VPN. +# +# Before you deploy staging or production environments, make sure the application servers are +# either in an internal network or protected with a firewall. No ports should be exposed to the internet. +# + +services: + gateway: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + workflow: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + search: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + metrics: + environment: + - QA_ENV=true + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://metrics:${METRICS_MONGODB_PASSWORD}@mongo1,mongo2/metrics?replicaSet=rs0 + - HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + - DASHBOARD_MONGO_URL=mongodb://performance:${PERFORMANCE_MONGODB_PASSWORD}@mongo1,mongo2/performance?replicaSet=rs0 + + auth: + environment: + - QA_ENV=true + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + deploy: + replicas: 2 + + user-mgnt: + environment: + - QA_ENV=true + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://user-mgnt:${USER_MGNT_MONGODB_PASSWORD}@mongo1,mongo2/user-mgnt?replicaSet=rs0 + deploy: + replicas: 2 + + notification: + environment: + - NODE_ENV=production + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://notification:${NOTIFICATION_MONGODB_PASSWORD}@mongo1,mongo2/notification?replicaSet=rs0 + deploy: + replicas: 2 + + webhooks: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://webhooks:${WEBHOOKS_MONGODB_PASSWORD}@mongo1,mongo2/webhooks?replicaSet=rs0 + deploy: + replicas: 2 + + config: + environment: + - NODE_ENV=production + - SENTRY_DSN=${SENTRY_DSN:-} + - MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1,mongo2/application-config?replicaSet=rs0 + deploy: + replicas: 2 + + scheduler: + environment: + - NODE_ENV=production + - OPENHIM_MONGO_URL=mongodb://openhim:${OPENHIM_MONGODB_PASSWORD}@mongo1,mongo2/openhim-dev?replicaSet=rs0 + + documents: + environment: + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - CHECK_INVALID_TOKEN=true + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 2 + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + deploy: + replicas: 2 + + logstash: + deploy: + replicas: 2 + + apm-server: + deploy: + replicas: 2 + + login: + deploy: + replicas: 2 + + hearth: + environment: + - mongodb__url=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + + deploy: + replicas: 2 + + migration: + environment: + - USER_MGNT_MONGO_URL=mongodb://user-mgnt:${USER_MGNT_MONGODB_PASSWORD}@mongo1,mongo2/user-mgnt?replicaSet=rs0 + - APPLICATION_CONFIG_MONGO_URL=mongodb://config:${CONFIG_MONGODB_PASSWORD}@mongo1,mongo2/application-config?replicaSet=rs0 + - PERFORMANCE_MONGO_URL=mongodb://performance:${PERFORMANCE_MONGODB_PASSWORD}@mongo1,mongo2/performance?replicaSet=rs0 + - HEARTH_MONGO_URL=mongodb://hearth:${HEARTH_MONGODB_PASSWORD}@mongo1,mongo2/hearth-dev?replicaSet=rs0 + - OPENHIM_MONGO_URL=mongodb://openhim:${OPENHIM_MONGODB_PASSWORD}@mongo1,mongo2/openhim-dev?replicaSet=rs0 + - WAIT_HOSTS=mongo1:27017,mongo2:27017,influxdb:8086,minio:9000,elasticsearch:9200 + + mongo2: + image: mongo:4.4 + hostname: 'mongo2' + restart: unless-stopped + command: mongod --auth --replSet rs0 --keyFile /etc/mongodb-keyfile + volumes: + - '/data/mongo:/data/db' + - '/mongodb-keyfile:/mongodb-keyfile' + entrypoint: + - bash + - -c + - | + cp /mongodb-keyfile /etc/mongodb-keyfile + chmod 400 /etc/mongodb-keyfile + chown 999:999 /etc/mongodb-keyfile + exec docker-entrypoint.sh $$@ + environment: + - MONGO_INITDB_ROOT_USERNAME=${MONGODB_ADMIN_USER} + - MONGO_INITDB_ROOT_PASSWORD=${MONGODB_ADMIN_PASSWORD} + deploy: + labels: + - 'traefik.enable=false' + replicas: 1 + placement: + constraints: + - node.labels.data2 == true + networks: + - overlay_net + + mongo-on-update: + environment: + - REPLICAS=2 + + traefik: + # These templates use an Automatic Certificate Management Environment (Let's Encrypt). + # This makes sure that the HTTPS certificates are automatically generated and renewed without manual maintenance. + # + # This default configuration will only work if OpenCRVS is directly accessible from the internet. + # + # WE STRONGLY RECOMMEND THAT YOU DO NOT EXPOSE PRODUCTION OPENCRVS TO THE INTERNET! + # + # If you are deploying OpenCRVS in a private network, you have two options: + # 1. Use a DNS provider that supports ACME DNS-01 challenges. + # 2. Use a manually renewed certificate file. + + # For your country to use the DNS-01 challenge, your domain's DNS provider must be one of the ones listed here + # https://doc.traefik.io/traefik/https/acme/#providers + # + # If your DNS provider is not listed, you can use manually renewed certificate files instead of Let's Encrypt. + # To do this, remove the `environment` and `certificatesresolvers.certResolver.acme` sections and uncomment the following lines. + # You will also need to place your certificates in the `/data/traefik/certs` directory. + # Ensure that the file names match the ones defined below. + # + # volumes: + # - /var/run/docker.sock:/var/run/docker.sock + # - /data/traefik/certs:/certs + # command: + # - --tls.certificates.certfile=/certs/crvs.cm.crt + # - --tls.certificates.keyfile=/certs/crvs.cm.key + # - --tls.certificates.stores=default + # - --tls.stores.default.defaultcertificate.certfile=/certs/crvs.cm.crt + # - --tls.stores.default.defaultcertificate.keyfile=/certs/crvs.cm.key + + command: + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true diff --git a/infrastructure/provision-server/templates/docker-compose.single-node.yml b/infrastructure/provision-server/templates/docker-compose.single-node.yml new file mode 100644 index 0000000000..d7ae89f15a --- /dev/null +++ b/infrastructure/provision-server/templates/docker-compose.single-node.yml @@ -0,0 +1,124 @@ +services: + traefik: + networks: + - overlay_net + command: + # Use HTTP-01 challenge as the web server is publicly available + # https://doc.traefik.io/traefik/https/acme/#httpchallenge + # For DNS-01 challenge and manual certificates, check staging and production configurations + - --certificatesresolvers.certResolver.acme.email=riku@opencrvs.org + - --certificatesresolvers.certResolver.acme.storage=acme.json + - --certificatesresolvers.certResolver.acme.caserver=https://acme-v02.api.letsencrypt.org/directory + - --certificatesresolvers.certResolver.acme.httpchallenge.entrypoint=web + - --certificatesresolvers.certResolver.acme.httpchallenge=true + + - --entrypoints.web.address=:80 + - --entrypoints.websecure.address=:443 + - --providers.docker + - --providers.docker.swarmMode=true + - --api.dashboard=true + - --api.insecure=true + - --log.level=WARNING + - --entrypoints.web.http.redirections.entryPoint.to=websecure + - --entrypoints.web.http.redirections.entryPoint.scheme=https + - --entrypoints.web.http.redirections.entrypoint.permanent=true + - --serverstransport.insecureskipverify=true + - --entrypoints.websecure.address=:443 + - --accesslog=true + - --accesslog.format=json + - --ping=true + + notification: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + countryconfig: + image: ${DOCKERHUB_ACCOUNT}/${DOCKERHUB_REPO}:${COUNTRY_CONFIG_VERSION} + restart: unless-stopped + secrets: + - jwt-public-key.{{ts}} + environment: + - NODE_ENV=production + - QA_ENV=true + - CHECK_INVALID_TOKEN=true + - MONGO_URL=mongodb://mongo1/user-mgnt?replicaSet=rs0 + - SENTRY_DSN=${SENTRY_DSN:-} + - SENDER_EMAIL_ADDRESS=${SENDER_EMAIL_ADDRESS} + - ALERT_EMAIL=${ALERT_EMAIL} + - SMTP_HOST=${SMTP_HOST} + - SMTP_PORT=${SMTP_PORT} + - SMTP_USERNAME=${SMTP_USERNAME} + - SMTP_PASSWORD=${SMTP_PASSWORD} + - SMTP_SECURE=${SMTP_SECURE} + deploy: + replicas: 1 + networks: + - overlay_net + + client: + environment: + - DECLARED_DECLARATION_SEARCH_QUERY_COUNT=100 + + gateway: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + - DISABLE_RATE_LIMIT=true + + workflow: + environment: + - LANGUAGES=en,fr + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + search: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + metrics: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + auth: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + user-mgnt: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + webhooks: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + config: + environment: + - SENTRY_DSN=${SENTRY_DSN:-} + - QA_ENV=true + - NODE_ENV=production + + documents: + environment: + - QA_ENV=true + - NODE_ENV=production + + scheduler: + environment: + - QA_ENV=true + - NODE_ENV=production diff --git a/infrastructure/provision-server/templates/environment.secrets.tpl b/infrastructure/provision-server/templates/environment.secrets.tpl new file mode 100644 index 0000000000..7d0299fab5 --- /dev/null +++ b/infrastructure/provision-server/templates/environment.secrets.tpl @@ -0,0 +1,21 @@ +BACKUP_ENCRYPTION_PASSPHRASE +ELASTICSEARCH_SUPERUSER_PASSWORD +ENCRYPTION_KEY +KIBANA_PASSWORD +KIBANA_USERNAME=opencrvs-admin +KIBANA_SYSTEM_PASSWORD +MINIO_ROOT_PASSWORD +MINIO_ROOT_USER +MONGODB_ADMIN_PASSWORD +MONGODB_ADMIN_USER +ANALYTICS_POSTGRES_USER +ANALYTICS_POSTGRES_PASSWORD +OPENCRVS_METABASE_ADMIN_EMAIL +OPENCRVS_METABASE_ADMIN_PASSWORD +SUPER_USER_PASSWORD +SENDER_EMAIL_ADDRESS=admin@opencrvs.dev +SMTP_SECURE=false +SSH_USER=provision +ACTIVATE_USERS=true +POSTGRES_USER=postgres +POSTGRES_PASSWORD diff --git a/infrastructure/provision-server/templates/environment.variables.multi-node.tpl b/infrastructure/provision-server/templates/environment.variables.multi-node.tpl new file mode 100644 index 0000000000..b50d9de65b --- /dev/null +++ b/infrastructure/provision-server/templates/environment.variables.multi-node.tpl @@ -0,0 +1,15 @@ +AUTH_HOST=https://auth.#DOMAIN# +CLIENT_APP_URL=https://register.#DOMAIN# +CONFIG_HOST=https://config.#DOMAIN#/ +CONTENT_SECURITY_POLICY_WILDCARD=*.#DOMAIN# +COUNTRY_CONFIG_HOST=https://countryconfig.#DOMAIN# +DISK_SPACE=50g +DOMAIN=#DOMAIN# +GATEWAY_HOST=https://gateway.#DOMAIN# +LOGIN_URL=https://login.#DOMAIN# +NOTIFICATION_TRANSPORT=email +REPLICAS=2 +SSH_HOST=#SSH_HOST# +SSH_PORT=22 +SMTP_PORT=587 +ACTIVATE_USERS=true diff --git a/infrastructure/provision-server/templates/environment.variables.single-node.tpl b/infrastructure/provision-server/templates/environment.variables.single-node.tpl new file mode 100644 index 0000000000..6a44230411 --- /dev/null +++ b/infrastructure/provision-server/templates/environment.variables.single-node.tpl @@ -0,0 +1,15 @@ +AUTH_HOST=https://auth.#DOMAIN# +CLIENT_APP_URL=https://register.#DOMAIN# +CONFIG_HOST=https://config.#DOMAIN#/ +CONTENT_SECURITY_POLICY_WILDCARD=*.#DOMAIN# +COUNTRY_CONFIG_HOST=https://countryconfig.#DOMAIN# +DISK_SPACE=50g +DOMAIN=#DOMAIN# +GATEWAY_HOST=https://gateway.#DOMAIN# +LOGIN_URL=https://login.#DOMAIN# +NOTIFICATION_TRANSPORT=email +REPLICAS=1 +SSH_HOST=#SSH_HOST# +SSH_PORT=22 +SMTP_PORT=587 +ACTIVATE_USERS=true diff --git a/infrastructure/provision-server/templates/multi-node-with-backup-ansible-env.yml b/infrastructure/provision-server/templates/multi-node-with-backup-ansible-env.yml new file mode 100644 index 0000000000..c5f38532c7 --- /dev/null +++ b/infrastructure/provision-server/templates/multi-node-with-backup-ansible-env.yml @@ -0,0 +1,76 @@ +######################################################## +# This template will act as production server with backup +######################################################## +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + +all: + vars: + # This configuration variable blocks all access to the server, including SSH, except from the IP addresses specified below. + # This should always be set when configuring a production server if there is no other firewall in front of the server. + # SSH and other services should never be exposed to the public internet. + # Enable backups + enable_backups: true + backup_server_remote_target_directory: /home/backup/TARGET_ENV_BACKUP + single_node: false # At least 2 nodes are recommended for production environment. Set "single_node: true" at your own discretion. + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true +docker-manager-first: + hosts: + HOSTNAME_MASTER: + ansible_host: 'SSH_HOST_MASTER' + data_label: data1 + +# We recommend you add 2-4 workers for a scaled production deployment +# This should depend on the size of your country and the number of end users. +# If you are only using one production worker for very small countries or small pilot projects, replace with an empty block like so: docker-workers: {} +docker-workers: + hosts: + HOSTNAME_WORKER: + ansible_host: 'SSH_HOST_WORKER' + data_label: data2 + +backups: + hosts: + farajaland-backup: + ansible_host: '188.245.61.69' + # Written by provision pipeline. Assumes "backup" environment + # exists in Github environments + ansible_ssh_private_key_file: /tmp/backup_ssh_private_key diff --git a/infrastructure/provision-server/templates/single-node-ansible-env.yml b/infrastructure/provision-server/templates/single-node-ansible-env.yml new file mode 100644 index 0000000000..cc88997370 --- /dev/null +++ b/infrastructure/provision-server/templates/single-node-ansible-env.yml @@ -0,0 +1,77 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + enable_backups: false +docker-manager-first: + hosts: + HOSTNAME_MASTER: + ansible_host: 'SSH_HOST_MASTER' + data_label: data1 + +docker-workers: {} \ No newline at end of file diff --git a/infrastructure/provision-server/templates/single-node-with-backup-ansible-env.yml b/infrastructure/provision-server/templates/single-node-with-backup-ansible-env.yml new file mode 100644 index 0000000000..ad7ac5f0b0 --- /dev/null +++ b/infrastructure/provision-server/templates/single-node-with-backup-ansible-env.yml @@ -0,0 +1,97 @@ +######################################################## +# This template will act as staging server with backup +######################################################## +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + # This configuration variable blocks all access to the server, including SSH, except from the IP addresses specified below. + # In most cases these should be left empty, as the VPN server should be the only source of traffic. + # OpenCRVS should never be exposed to the public internet. If this is not possible to organise, + # then this should always be set when configuring a production server if there is no other firewall in front of the server. + # BE CAREFUL! This will block all SSH traffic except from the IP addresses listed here. + # Enable backups but write them to a different location from where production writes them + enable_backups: true + backup_server_remote_target_directory: /home/backup/TARGET_ENV_BACKUP + backup_server_remote_source_directory: /home/backup/SOURCE_ENV_BACKUP + periodic_restore_from_backup: true + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true +docker-manager-first: + hosts: + HOSTNAME_MASTER: + ansible_host: 'SSH_HOST_MASTER' + data_label: data1 + +# QA and staging servers are not configured to use workers. +docker-workers: {} +backups: + hosts: + farajaland-backup: + ansible_host: '188.245.61.69' + # Written by provision pipeline. Assumes "backup" environment + # exists in Github environments + ansible_ssh_private_key_file: /tmp/backup_ssh_private_key diff --git a/infrastructure/run-migrations.sh b/infrastructure/run-migrations.sh index fbe00d8b0b..545bd7833a 100755 --- a/infrastructure/run-migrations.sh +++ b/infrastructure/run-migrations.sh @@ -27,3 +27,21 @@ elasticsearch_host() { # run migration by restarting migration service docker service update --force --update-parallelism 1 --update-delay 30s opencrvs_migration + +# wait for migration service to finish before continuing +while true; do + # Get current state of the task(s) + state=$(docker service ps --format "{{.CurrentState}}" opencrvs_migration | head -n1) + + echo "Current state: $state" + + if [[ "$state" == *"Complete"* ]]; then + echo "Migration finished successfully ✅" + break + elif [[ "$state" == *"Failed"* ]] || [[ "$state" == *"Rejected"* ]]; then + echo "Migration failed ❌" + exit 1 + fi + + sleep 5 +done diff --git a/infrastructure/server-setup/backups.yml b/infrastructure/server-setup/backups.yml index 2e0ad6faf9..fac7064e1c 100644 --- a/infrastructure/server-setup/backups.yml +++ b/infrastructure/server-setup/backups.yml @@ -211,6 +211,9 @@ - name: Download the test connection file from the backup server shell: rsync --timeout=30 -avz -e "ssh -o StrictHostKeyChecking=no" {{ backup_server_user }}@{{ destination_server }}:{{ backup_server_remote_source_directory }}/downloaded_from_backup.txt /tmp/downloaded_from_backup.txt + # FIXME: Don't merge this to countryconfig template + # Temporal fix to allow staging provision before production + ignore_errors: yes remote_user: '{{ crontab_user }}' when: "'backups' in groups and groups['backups'] | length > 0 and periodic_restore_from_backup" tags: diff --git a/infrastructure/server-setup/inventory/backup.yml b/infrastructure/server-setup/inventory/backup.yml index dd4a5a6817..89f3ac7d32 100644 --- a/infrastructure/server-setup/inventory/backup.yml +++ b/infrastructure/server-setup/inventory/backup.yml @@ -15,20 +15,42 @@ all: vars: - # @todo how many days to store backups for? - amount_of_backups_to_keep: 7 + amount_of_backups_to_keep: 3 backup_server_remote_target_directory: /home/backup/backups single_node: true users: - # @todo this is where you define which development team members have access to the server. - # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent - - name: my-user + - name: riku ssh_keys: - - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABg...Z/rhU= user@example.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com state: present sudoer: true - backups-host: hosts: - backup: # @todo set this to be the hostname of your backup server - ansible_host: '66.66.66.66' + farajaland-backup: + ansible_host: '188.245.61.69' diff --git a/infrastructure/server-setup/inventory/development.yml b/infrastructure/server-setup/inventory/development.yml index e904906e35..700fe01403 100644 --- a/infrastructure/server-setup/inventory/development.yml +++ b/infrastructure/server-setup/inventory/development.yml @@ -10,19 +10,74 @@ all: vars: single_node: true users: - # @todo this is where you define which development team members have access to the server. # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent - - name: my-user + - name: pyry ssh_keys: - - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABg...Z/rhU= user@example.com + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashwin + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDD+XVbhu1otffgnbMQzi+qwRhIjRdj9F2Sc7hxS/LzTiMhvj+0CrAw+Uw3dgvv+yDHaKPN1JJfsDpxtMqEldmv3DoEdfGHvfsRf+Q7kIycOBv31q2PLtMNH3/Jx6377SttB/g06zLWotHhpfw4rDZeBrJaCY+ZUXaFa8c7C723Rt8kUeS8wuiNNS17dijYNa/PxG2v3Clfp3suW/IWe8iPFkPY/6/BnGHlZ1mOgzoxCHshWureBlLWXyIEX/484vf6Q/N7nVpFpDjiCJeKGoDNVlbDuh/E/HPyx3tmv5GJceAzA3nVoifwp2x147Me1yGp5mm6SqZPCIroKeyJKbFOrnxX6hVGcZH9Kta8a1aPhk7Up9xJMvtrsS0TscHHL50IFKs3xu9Y1PvB2qu8G/T9q+Z7B+15qz9oW9ohhE6K06awWFpt8jqHiAUSn6T7rY1G/77c0lR0WngcgQxd3jQ0GtoPNPLCAfHZ6rHAer8ulGPwdGmDmSOjS0dyOliRABY+GA6VCEnOlpE51XjHTw/dPtQeDm8Pgg9tH4Q5DeXxHEto7PAk68SdlC7CcpzEBBD4zGzmptToppjrww37AsjnX/vkkRW2Yoaclk56iz7zEuK5AwIsZODucOVKoVwRH1A9DZrtB4yf+FpBuwKcFVup4Jauu2fLoeMGhviApRxvFQ== ashwin@opencrvs.org + state: present + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com state: present sudoer: true enable_backups: false docker-manager-first: hosts: - dev: # @todo set this to be the hostname of your target server - ansible_host: '44.44.44.44' # @todo set this to be the IP address of your server - data_label: data1 # for manager machines, this should always be "data1" + farajaland-dev: + ansible_host: '37.27.182.181' + data_label: data1 -# Development servers are not configured to use workers. +# QA and staging servers are not configured to use workers. docker-workers: {} diff --git a/infrastructure/server-setup/inventory/e2e.yml b/infrastructure/server-setup/inventory/e2e.yml new file mode 100644 index 0000000000..b065cdab27 --- /dev/null +++ b/infrastructure/server-setup/inventory/e2e.yml @@ -0,0 +1,87 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashwin + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDD+XVbhu1otffgnbMQzi+qwRhIjRdj9F2Sc7hxS/LzTiMhvj+0CrAw+Uw3dgvv+yDHaKPN1JJfsDpxtMqEldmv3DoEdfGHvfsRf+Q7kIycOBv31q2PLtMNH3/Jx6377SttB/g06zLWotHhpfw4rDZeBrJaCY+ZUXaFa8c7C723Rt8kUeS8wuiNNS17dijYNa/PxG2v3Clfp3suW/IWe8iPFkPY/6/BnGHlZ1mOgzoxCHshWureBlLWXyIEX/484vf6Q/N7nVpFpDjiCJeKGoDNVlbDuh/E/HPyx3tmv5GJceAzA3nVoifwp2x147Me1yGp5mm6SqZPCIroKeyJKbFOrnxX6hVGcZH9Kta8a1aPhk7Up9xJMvtrsS0TscHHL50IFKs3xu9Y1PvB2qu8G/T9q+Z7B+15qz9oW9ohhE6K06awWFpt8jqHiAUSn6T7rY1G/77c0lR0WngcgQxd3jQ0GtoPNPLCAfHZ6rHAer8ulGPwdGmDmSOjS0dyOliRABY+GA6VCEnOlpE51XjHTw/dPtQeDm8Pgg9tH4Q5DeXxHEto7PAk68SdlC7CcpzEBBD4zGzmptToppjrww37AsjnX/vkkRW2Yoaclk56iz7zEuK5AwIsZODucOVKoVwRH1A9DZrtB4yf+FpBuwKcFVup4Jauu2fLoeMGhviApRxvFQ== ashwin@opencrvs.org + state: present + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true + enable_backups: false +docker-manager-first: + hosts: + farajaland-integration-e2e: + ansible_host: '49.13.216.104' + data_label: data1 + +# QA and staging servers are not configured to use workers. +docker-workers: {} diff --git a/infrastructure/server-setup/inventory/fix-analytics.yml b/infrastructure/server-setup/inventory/fix-analytics.yml new file mode 100644 index 0000000000..ba33242b1d --- /dev/null +++ b/infrastructure/server-setup/inventory/fix-analytics.yml @@ -0,0 +1,77 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + enable_backups: false +docker-manager-first: + hosts: + farajaland-fix-analytics: + ansible_host: '5.78.109.16' + data_label: data1 + +docker-workers: {} \ No newline at end of file diff --git a/infrastructure/server-setup/inventory/jump.yml b/infrastructure/server-setup/inventory/jump.yml index 50d96e16fa..9258b40943 100644 --- a/infrastructure/server-setup/inventory/jump.yml +++ b/infrastructure/server-setup/inventory/jump.yml @@ -16,15 +16,66 @@ all: vars: users: - # @todo this is where you define which development team members have access to the server. # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent - - name: my-user + - name: pyry ssh_keys: - - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABg...Z/rhU= user@example.com + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: jump + state: present + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDk15q1EI7FXqX9sgSpO7u89ZjcZV00k2yyq/9YNLk2XWHE54qPhOdaPPgJyuIhgDGQB20uDow/E8mIkPHNstX/Gp0GXn06L7fd/BfwFmFWi0YhLwvX5RaYjm1vIkCLDZrYQiH/GBP9GKMJv3DGORA1tWhFBKIerDwtDTBFC0ysT/nmHSEq1xYb5cSj55UaSyIQUjd1UgqO98OhzItXX4ZWeUil5gEC014dZxNMwM08F6X1XGsy5u6CP4CtpcMGk3fWQz+AdcL0nHZoLjXnIMBNLTyBjThQvupZFhLkKvqOxwQkzEBPjfaQQadnFg0N4rpMrUYqakkpAhgdwmemv13jZk41m5jofS+C4R2uBAb6dbPI0YiRgqaj1kSBGgEEPNhtT9Y0+nrJhmrypLxD0TnDl+hI/EfNpJd4TravCyjpsxUsLRpBp9A3rPAxkHrAt59r0rdCsp57KZ2dGPXJU0QPC30XJrVg05cOQdzPvfJn2Qsx+2JFW2cR4X+R2bWD6k9g8ItFq87DfN2LIeXArffkG735sCR12HCKkyyA8bS6HVr/nAxohb5UvN1HafLmL61gwbsv3OtVkpxT+SNqoXutDkqHW3+efu27dsGLdXsYyQxELZoKkJLJJW4ToU6jTvb3v9wqIEHjayBdGERH06SdXN38BFUMIa44MJVC61h/uw== runner@fv-az1386-243 + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDMiGYD2au1bsyZGfCCrOQUKkW1wIGbwHOef0u4BIvI30pXH6tL3rFM3lKa+7ejP6OBQznhRCPZCMIYMDLas9CGoAJxG4fv91iBcrk4i9J4Q+dhHm2PZv8Nq1d36jW5a4mwmDThR/ZRSFLKkaKl61k7iL8eCULakmYlVP618tk3f0mZ/jXsbUrBYt3YeVHvajPK2HVq0SpvoLQIHn2rtlEXzdAHEW1aD1dJLm2AtbHe1NWH7tJMjcWNjoiQGbuA/FYI4lVuJywmgYU/er7GcO2jnejLRWgXtBrpFSvPs4s34BpxNX/EnAvGyjM09f71LjZFtUT4EKz7x/Ct3CXgLGOe0UfTE68ZPVrySzIKZhrkXKEM7gvCrXroFRKY7S/2RcK/l4tFOgspRw9mXvhnDvv0SDdRzhQ5tSVmjk95C8vviDvypmZfBgtrAbBcQquDS/mrpu3CXgcj5Uhkpot7+fehIQo2qhq1I9wbTsD137JsOgZFYl93X1zE51G4eaHXtNNx7v9Sga/4dlOkQoxDkypw3fL2pR44xqJip+vE374aWYDrxa5NN64M1vt1bZqSvwyRyntbBL0P/oi2X30mO8I2pUDc0LZLzUeIqrVYiQc6CS+KB0kIHlAxQQdtPP4DC0AaRdyv5GTJ7+lF4urDjfj7YlZppX+t9n6qvQdqzjfvnQ== runner@fv-az982-41 + sudoer: false + two_factor: false + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com state: present sudoer: true - jump-host: hosts: - your-jumpserver-hostname-here: # @todo set this to be the hostname of your jump server - ansible_host: '55.55.55.55' + backup: + ansible_host: '159.89.14.13' diff --git a/infrastructure/server-setup/inventory/mosip.yml b/infrastructure/server-setup/inventory/mosip.yml new file mode 100644 index 0000000000..730c9fd5fe --- /dev/null +++ b/infrastructure/server-setup/inventory/mosip.yml @@ -0,0 +1,77 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + enable_backups: false +docker-manager-first: + hosts: + farajaland-mosip: + ansible_host: '5.78.141.177' + data_label: data1 + +docker-workers: {} \ No newline at end of file diff --git a/infrastructure/server-setup/inventory/openfn.yml b/infrastructure/server-setup/inventory/openfn.yml new file mode 100644 index 0000000000..b32b6a67c3 --- /dev/null +++ b/infrastructure/server-setup/inventory/openfn.yml @@ -0,0 +1,77 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + enable_backups: false +docker-manager-first: + hosts: + farajaland-openfn: + ansible_host: '5.78.109.16' + data_label: data1 + +docker-workers: {} \ No newline at end of file diff --git a/infrastructure/server-setup/inventory/pentest.yml b/infrastructure/server-setup/inventory/pentest.yml new file mode 100644 index 0000000000..8f1dfb8a7a --- /dev/null +++ b/infrastructure/server-setup/inventory/pentest.yml @@ -0,0 +1,77 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + enable_backups: false +docker-manager-first: + hosts: + farajaland-pentest: + ansible_host: '5.78.92.202' + data_label: data1 + +docker-workers: {} \ No newline at end of file diff --git a/infrastructure/server-setup/inventory/production.yml b/infrastructure/server-setup/inventory/production.yml index 5a74d89fc5..2fdab7cb29 100644 --- a/infrastructure/server-setup/inventory/production.yml +++ b/infrastructure/server-setup/inventory/production.yml @@ -7,64 +7,69 @@ # # Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. -# Example IP addressses used in this file: -# 22.22.22.22 - Target staging server's IP address -# 33.33.33.33 - Second worker node in this 2-server setup -# 55.55.55.55 - This IP address is both the VPN server the server used as a bastion / jump host -# 66.66.66.66 - This IP address is the address of a backup server - all: vars: - # "enable_backups" is set to true on production. Production will always backup it's own data. - enable_backups: true # This configuration variable blocks all access to the server, including SSH, except from the IP addresses specified below. - # In most cases these should be left empty, as the VPN server should be the only source of traffic. - # OpenCRVS should never be exposed to the public internet. If this is not possible to organise, - # then this should always be set when configuring a production server if there is no other firewall in front of the server. - # BE CAREFUL! This will block all SSH traffic except from the IP addresses listed here. - only_allow_access_from_addresses: - # @todo place the IP address of your jump server or other explicitly allowed traffic sources here - #- 55.55.55.55 # example jump server IP address - [] + # This should always be set when configuring a production server if there is no other firewall in front of the server. + # SSH and other services should never be exposed to the public internet. + # Enable backups + enable_backups: true backup_server_remote_target_directory: /home/backup/backups + # external_backup_server_ssh_port: Defined in --extra-vars by the provisioning pipeline + # external_backup_server_ip: Defined in --extra-vars by the provisioning pipeline single_node: false # At least 2 nodes are recommended for production environment. Set "single_node: true" at your own discretion. users: - # @todo this is where you define which development team members have access to the server. # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent - - name: my-user + - name: riku ssh_keys: - - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABg...Z/rhU= user@example.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com state: present sudoer: true - docker-manager-first: hosts: - prod-01: # @todo set this to be the hostname of your target server - ansible_host: '22.22.22.22' # @todo set this to be the hostname of your target server + farajaland-prod-1: + ansible_host: '188.245.160.165' data_label: data1 - # If you are using a jump server to access this environment, enter other SSH args here. - # ansible_ssh_common_args: '-J jump@55.55.55.55 -o StrictHostKeyChecking=no' # @todo set this to be the IP address of your jump server -# @todo We recommend you add 2-4 workers for a scaled production deployment +# We recommend you add 2-4 workers for a scaled production deployment # This should depend on the size of your country and the number of end users. # If you are only using one production worker for very small countries or small pilot projects, replace with an empty block like so: docker-workers: {} docker-workers: hosts: - prod-02: # @todo set this to be the hostname of your target server - ansible_host: '33.33.33.33' - # If you are using a jump server to access this environment, enter other SSH args here. - # ansible_ssh_common_args: '-J jump@55.55.55.55 -o StrictHostKeyChecking=no' + farajaland-prod-2: + ansible_host: '49.13.124.87' + data_label: data2 backups: hosts: - backup: # @todo set this to be the hostname of your backup server - ansible_host: '66.66.66.66' + farajaland-backup: + ansible_host: '188.245.61.69' # Written by provision pipeline. Assumes "backup" environment # exists in Github environments ansible_ssh_private_key_file: /tmp/backup_ssh_private_key -# If you are using a jump server to access this environment -# jump: -# hosts: -# your-jumpserver-hostname-here: # @todo set this to be the hostname of your jump server -# ansible_ssh_private_key_file: /tmp/jump_ssh_private_key # Written by provision pipeline. Assumes "jump" environment exists in Github environments -# ansible_host: '55.55.55.55' diff --git a/infrastructure/server-setup/inventory/qa.yml b/infrastructure/server-setup/inventory/qa.yml index acde39c9f4..74e07dc339 100644 --- a/infrastructure/server-setup/inventory/qa.yml +++ b/infrastructure/server-setup/inventory/qa.yml @@ -10,21 +10,85 @@ all: vars: single_node: true users: - # @todo this is where you define which development team members have access to the server. # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent - - name: my-user + - name: pyry ssh_keys: - - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABg...Z/rhU= user@example.com + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org state: present sudoer: true - + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: jump + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDk15q1EI7FXqX9sgSpO7u89ZjcZV00k2yyq/9YNLk2XWHE54qPhOdaPPgJyuIhgDGQB20uDow/E8mIkPHNstX/Gp0GXn06L7fd/BfwFmFWi0YhLwvX5RaYjm1vIkCLDZrYQiH/GBP9GKMJv3DGORA1tWhFBKIerDwtDTBFC0ysT/nmHSEq1xYb5cSj55UaSyIQUjd1UgqO98OhzItXX4ZWeUil5gEC014dZxNMwM08F6X1XGsy5u6CP4CtpcMGk3fWQz+AdcL0nHZoLjXnIMBNLTyBjThQvupZFhLkKvqOxwQkzEBPjfaQQadnFg0N4rpMrUYqakkpAhgdwmemv13jZk41m5jofS+C4R2uBAb6dbPI0YiRgqaj1kSBGgEEPNhtT9Y0+nrJhmrypLxD0TnDl+hI/EfNpJd4TravCyjpsxUsLRpBp9A3rPAxkHrAt59r0rdCsp57KZ2dGPXJU0QPC30XJrVg05cOQdzPvfJn2Qsx+2JFW2cR4X+R2bWD6k9g8ItFq87DfN2LIeXArffkG735sCR12HCKkyyA8bS6HVr/nAxohb5UvN1HafLmL61gwbsv3OtVkpxT+SNqoXutDkqHW3+efu27dsGLdXsYyQxELZoKkJLJJW4ToU6jTvb3v9wqIEHjayBdGERH06SdXN38BFUMIa44MJVC61h/uw== runner@fv-az1386-243 + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDMiGYD2au1bsyZGfCCrOQUKkW1wIGbwHOef0u4BIvI30pXH6tL3rFM3lKa+7ejP6OBQznhRCPZCMIYMDLas9CGoAJxG4fv91iBcrk4i9J4Q+dhHm2PZv8Nq1d36jW5a4mwmDThR/ZRSFLKkaKl61k7iL8eCULakmYlVP618tk3f0mZ/jXsbUrBYt3YeVHvajPK2HVq0SpvoLQIHn2rtlEXzdAHEW1aD1dJLm2AtbHe1NWH7tJMjcWNjoiQGbuA/FYI4lVuJywmgYU/er7GcO2jnejLRWgXtBrpFSvPs4s34BpxNX/EnAvGyjM09f71LjZFtUT4EKz7x/Ct3CXgLGOe0UfTE68ZPVrySzIKZhrkXKEM7gvCrXroFRKY7S/2RcK/l4tFOgspRw9mXvhnDvv0SDdRzhQ5tSVmjk95C8vviDvypmZfBgtrAbBcQquDS/mrpu3CXgcj5Uhkpot7+fehIQo2qhq1I9wbTsD137JsOgZFYl93X1zE51G4eaHXtNNx7v9Sga/4dlOkQoxDkypw3fL2pR44xqJip+vE374aWYDrxa5NN64M1vt1bZqSvwyRyntbBL0P/oi2X30mO8I2pUDc0LZLzUeIqrVYiQc6CS+KB0kIHlAxQQdtPP4DC0AaRdyv5GTJ7+lF4urDjfj7YlZppX+t9n6qvQdqzjfvnQ== runner@fv-az982-41 + state: present + sudoer: false + two_factor: false + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + # If the machine is repurposed to also be the backup host, we need to add more keys to the authorized_keys file so that + # when the application servers get provisioned, the provision user of this machine can be used. + additional_keys_for_provisioning_user: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDk15q1EI7FXqX9sgSpO7u89ZjcZV00k2yyq/9YNLk2XWHE54qPhOdaPPgJyuIhgDGQB20uDow/E8mIkPHNstX/Gp0GXn06L7fd/BfwFmFWi0YhLwvX5RaYjm1vIkCLDZrYQiH/GBP9GKMJv3DGORA1tWhFBKIerDwtDTBFC0ysT/nmHSEq1xYb5cSj55UaSyIQUjd1UgqO98OhzItXX4ZWeUil5gEC014dZxNMwM08F6X1XGsy5u6CP4CtpcMGk3fWQz+AdcL0nHZoLjXnIMBNLTyBjThQvupZFhLkKvqOxwQkzEBPjfaQQadnFg0N4rpMrUYqakkpAhgdwmemv13jZk41m5jofS+C4R2uBAb6dbPI0YiRgqaj1kSBGgEEPNhtT9Y0+nrJhmrypLxD0TnDl+hI/EfNpJd4TravCyjpsxUsLRpBp9A3rPAxkHrAt59r0rdCsp57KZ2dGPXJU0QPC30XJrVg05cOQdzPvfJn2Qsx+2JFW2cR4X+R2bWD6k9g8ItFq87DfN2LIeXArffkG735sCR12HCKkyyA8bS6HVr/nAxohb5UvN1HafLmL61gwbsv3OtVkpxT+SNqoXutDkqHW3+efu27dsGLdXsYyQxELZoKkJLJJW4ToU6jTvb3v9wqIEHjayBdGERH06SdXN38BFUMIa44MJVC61h/uw== runner@fv-az1386-243 + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDMiGYD2au1bsyZGfCCrOQUKkW1wIGbwHOef0u4BIvI30pXH6tL3rFM3lKa+7ejP6OBQznhRCPZCMIYMDLas9CGoAJxG4fv91iBcrk4i9J4Q+dhHm2PZv8Nq1d36jW5a4mwmDThR/ZRSFLKkaKl61k7iL8eCULakmYlVP618tk3f0mZ/jXsbUrBYt3YeVHvajPK2HVq0SpvoLQIHn2rtlEXzdAHEW1aD1dJLm2AtbHe1NWH7tJMjcWNjoiQGbuA/FYI4lVuJywmgYU/er7GcO2jnejLRWgXtBrpFSvPs4s34BpxNX/EnAvGyjM09f71LjZFtUT4EKz7x/Ct3CXgLGOe0UfTE68ZPVrySzIKZhrkXKEM7gvCrXroFRKY7S/2RcK/l4tFOgspRw9mXvhnDvv0SDdRzhQ5tSVmjk95C8vviDvypmZfBgtrAbBcQquDS/mrpu3CXgcj5Uhkpot7+fehIQo2qhq1I9wbTsD137JsOgZFYl93X1zE51G4eaHXtNNx7v9Sga/4dlOkQoxDkypw3fL2pR44xqJip+vE374aWYDrxa5NN64M1vt1bZqSvwyRyntbBL0P/oi2X30mO8I2pUDc0LZLzUeIqrVYiQc6CS+KB0kIHlAxQQdtPP4DC0AaRdyv5GTJ7+lF4urDjfj7YlZppX+t9n6qvQdqzjfvnQ== runner@fv-az982-41 docker-manager-first: hosts: - qa: # @todo set this to be the hostname of your target server - ansible_host: '55.55.55.55' # @todo set this to be the IP address of your server - # ansible_port: '23' # @todo set this to be the SSH port if it's not 22 - # internal_ssh_port: '22' # @todo if you are port-forwarding and server SSH port is not the same as ansible_port, set it here - data_label: data1 # for manager machines, this should always be "data1" + farajaland-qa: + ansible_host: '5.223.46.129' + data_label: data1 # QA and staging servers are not configured to use workers. docker-workers: {} diff --git a/infrastructure/server-setup/inventory/staging.yml b/infrastructure/server-setup/inventory/staging.yml index 492dce3eca..dd34d878a3 100644 --- a/infrastructure/server-setup/inventory/staging.yml +++ b/infrastructure/server-setup/inventory/staging.yml @@ -6,12 +6,6 @@ # & Healthcare Disclaimer located at http://opencrvs.org/license. # # Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. - -# Example IP addressses used in this file: -# 11.11.11.11 - Target staging server's IP address -# 55.55.55.55 - This IP address is both the VPN server the server used as a bastion / jump host -# 66.66.66.66 - This IP address is the address of a backup server - all: vars: # This configuration variable blocks all access to the server, including SSH, except from the IP addresses specified below. @@ -19,49 +13,89 @@ all: # OpenCRVS should never be exposed to the public internet. If this is not possible to organise, # then this should always be set when configuring a production server if there is no other firewall in front of the server. # BE CAREFUL! This will block all SSH traffic except from the IP addresses listed here. - only_allow_access_from_addresses: - # If you are using a jump server to access this environment, place the IP address of the jump server or other explicitly allowed traffic sources here - #- 55.55.55.55 # example jump server IP address - [] - # "enable_backups" is set to false on staging. Staging will not backup it's own data. - enable_backups: false - # "periodic_restore_from_backup" restores daily production backups to your staging server. - # For this you need to first setup a backup environment - periodic_restore_from_backup: true + # Enable backups but write them to a different location from where production writes them + enable_backups: true + backup_server_remote_target_directory: /home/backup/staging-backups backup_server_remote_source_directory: /home/backup/backups + periodic_restore_from_backup: true + # external_backup_server_ssh_port: Defined in --extra-vars by the provisioning pipeline + # external_backup_server_ip: Defined in --extra-vars by the provisioning pipeline single_node: true users: - # @todo this is where you define which development team members have access to the server. # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent - - name: my-user + - name: riku ssh_keys: - - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABg...Z/rhU= user@example.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + - name: barry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICw4vvV33xxrTzxAiPoRhuwyWUzmgrP5NPo2n4bmKx7P state: present sudoer: true - docker-manager-first: hosts: - staging: # @todo set this to be the hostname of your target server - ansible_host: '11.11.11.11' # @todo set this to be the hostname of your target server + farajaland-staging: + ansible_host: '5.223.47.53' data_label: data1 - # If you are using a jump server to access this environment, enter other SSH args here. - # ansible_ssh_common_args: '-J jump@55.55.55.55 -o StrictHostKeyChecking=no' # @todo set this to be the IP address of your jump server -# This staging servers is configured to only use one server +# QA and staging servers are not configured to use workers. docker-workers: {} - -# For staging server to be able to restore from backups, it needs to have access to the backup server. -# @todo if you do not intend to set up automatic sync from the backup server, you can remove this section. backups: hosts: - backup: # @todo set this to be the hostname of your backup server - ansible_host: '66.66.66.66' # set this to be the IP address of your backup server + farajaland-backup: + ansible_host: '188.245.61.69' # Written by provision pipeline. Assumes "backup" environment # exists in Github environments ansible_ssh_private_key_file: /tmp/backup_ssh_private_key -# If you are using a jump server to access this environment -# jump: -# hosts: -# your-jumpserver-hostname-here: # @todo set this to be the hostname of your backup server -# ansible_ssh_private_key_file: /tmp/jump_ssh_private_key # Written by provision pipeline. Assumes "jump" environment exists in Github environments -# ansible_host: '55.55.55.55' diff --git a/infrastructure/server-setup/inventory/v17.yml b/infrastructure/server-setup/inventory/v17.yml new file mode 100644 index 0000000000..867bc8e855 --- /dev/null +++ b/infrastructure/server-setup/inventory/v17.yml @@ -0,0 +1,77 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: jamil + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINMSNTIIsM0C3uJg3V/Fqh2gi4lvl2y6nenrb2Ft1JlX jamil31415926@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + enable_backups: false + +docker-manager-first: + hosts: + farajaland-v17: + ansible_host: '65.21.176.128' + data_label: data1 +docker-workers: {} \ No newline at end of file diff --git a/infrastructure/server-setup/inventory/v19-beta-prod.yml b/infrastructure/server-setup/inventory/v19-beta-prod.yml new file mode 100644 index 0000000000..945c620d9f --- /dev/null +++ b/infrastructure/server-setup/inventory/v19-beta-prod.yml @@ -0,0 +1,86 @@ +######################################################## +# This template will act as production server with backup +######################################################## +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + +all: + vars: + # This configuration variable blocks all access to the server, including SSH, except from the IP addresses specified below. + # This should always be set when configuring a production server if there is no other firewall in front of the server. + # SSH and other services should never be exposed to the public internet. + # Enable backups + enable_backups: true + backup_server_remote_target_directory: /home/backup/v19-beta-prod + single_node: false # At least 2 nodes are recommended for production environment. Set "single_node: true" at your own discretion. + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: markus + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGvvjFxXqcdKn9kk8VHzm38R3nLWvvwP8W0e3uXxOgby/7LJZx2bosXCZ28FyPTYwVRezHE9lguKiaCo2kxqzNwwx64MzUFRH60sE5cYeH1IqjCBTY3Ht8hkZlYaVoRmsHiqiqogW+bJPo8PBO+ydCh53KUdJFEOXAYvKZ/RfDsWh7/SjeQrQzpRFNeb9keefX+uNNBbKRm9/AEWIHFCGJpDvpJcz3i8hKbRPtXi5OTcEx1Kr4iOMikGXvGzsC1u84qgiy5moeBzpWeROwyJOHRLqPqQ/IHvUkE4F1BXen02G69nHpFdmjTOcjBbT1RzGTeWZs+ehc/kJaS3dUMHd5rSPsimjiCKZ5+wCAyxc5gJlQof71IpHVN4ZDoetH4Lo2bnLdA1YX6DaVU1Fd/6rPWw02DA1OEIhrjJ3Gak87/HUYGNhpZVyIxyNYGXBMPkmHCHCjzjN7sPdMRvkbl5tahD2PoS4172tsO7YYMfAZ/UYYZw745CDxQYIjjfrFRn8= markuslaurila@MacBook-Pro.local + state: present + sudoer: true +docker-manager-first: + hosts: + farajaland-v19-beta-prod-master: + ansible_host: '5.78.157.108' + data_label: data1 + +# We recommend you add 2-4 workers for a scaled production deployment +# This should depend on the size of your country and the number of end users. +# If you are only using one production worker for very small countries or small pilot projects, replace with an empty block like so: docker-workers: {} +docker-workers: + hosts: + farajaland-v19-beta-prod-worker: + ansible_host: '5.78.67.99' + data_label: data2 + +backups: + hosts: + farajaland-backup: + ansible_host: '188.245.61.69' + # Written by provision pipeline. Assumes "backup" environment + # exists in Github environments + ansible_ssh_private_key_file: /tmp/backup_ssh_private_key diff --git a/infrastructure/server-setup/inventory/v19-beta-staging.yml b/infrastructure/server-setup/inventory/v19-beta-staging.yml new file mode 100644 index 0000000000..2708066fae --- /dev/null +++ b/infrastructure/server-setup/inventory/v19-beta-staging.yml @@ -0,0 +1,97 @@ +######################################################## +# This template will act as staging server with backup +######################################################## +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# OpenCRVS is also distributed under the terms of the Civil Registration +# & Healthcare Disclaimer located at http://opencrvs.org/license. +# +# Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. +all: + vars: + # This configuration variable blocks all access to the server, including SSH, except from the IP addresses specified below. + # In most cases these should be left empty, as the VPN server should be the only source of traffic. + # OpenCRVS should never be exposed to the public internet. If this is not possible to organise, + # then this should always be set when configuring a production server if there is no other firewall in front of the server. + # BE CAREFUL! This will block all SSH traffic except from the IP addresses listed here. + # Enable backups but write them to a different location from where production writes them + enable_backups: true + backup_server_remote_target_directory: /home/backup/v19-beta-staging + backup_server_remote_source_directory: /home/backup/v19-beta-prod + periodic_restore_from_backup: true + single_node: true + users: + # If you need to remove access from someone, do not remove them from this list, but instead set their state: absent + - name: riku + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDWIF63S4f3z9wQMvWibmvl7MPuJ6EVrkP0HuvgNhcs/4DZYMcR/GRBvV4ldOSYMlBevIXycgGzNDxKJgENUuwIWanjBu7uVAHyD6+cIRD1h63qq7Cjv/2HYTfBDKOrKzPOhA6zWvKO0ZGWsjRXk5LWMCbKOkvKJCxOpj/NVBxeE4FTK5YADYPV3OSsmBtqTHrVLm2sMmShU/2hMYYswWkobidjX65+nK/X+3C+yJbHwiydVvn+QCrFlFfCLPWKe8rUpOxyxofPqWVQh6CHhHfT8okaOc9sOE8Qeip9ljo84DftJh3Xm3ynOdWK1hH2BvRvxNadWqcE1qECbkg4tx2x riku.rouvila@gmail.com + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGfWxxQHJv6Md/vBVoDH2UNm/uYgIBlFpP1mfh2Yj6jRNiQ/TQrfwpTawq0Sg+UW4LfYk5yxttsZ0h6L/v6PLiawgbMtf2ZqSviRTYSZTSihkK2zLmeJA2ByBCh57w4tR6IGqJK4w0kjYQSaaU6V5skQ4u+gnLQoKtkVQ4K34EFXAiIur96tLwjwDd/xCm+9T91+cAxGLv8Pe0PjirjwnvktUtzpgOhedkYK7KX0l8SKxQXUK6Ul2/QbpGO3rmguzEdtrl3Dw1TAEfu2njXbNGVQ+JWV9htH+ymsMIGoeumJRaaAZ4AXLlQPBCxTXcdQDuAjfFDPuppms/h7qB1S4Aioz7zqyd7pL7Z6Z8mJBZZlP3PsfGvADM2CdShpbL4HAa+n9miNNSYcJ7cHvC/zCitNjfaEYLVYkB5G+ggeK8Ss/MDcnsh3YFB8WnT582zt/TTJda5n+5Q7tquc1m+61t2gEKKTfBoDft9UYW2/4ViHj3ROL2Oyj7udrh/oAqV8M= riku@MBP16inch2231 + state: present + sudoer: true + - name: euan + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDECqHO65UpyrrO8uueD06RxGaVVq22f152Rf8qVQQAAIGAMu6gCs7ztlZ8a3yQgSEIjM/Jl1/RqIVs6CziTEef74nLFTZ5Ufz3CLRVgdebBeSBEmhTfTUV0HLkSyNzwKFpuzJxucGd72ulPvEp6eHvyJAPJz37YcU8cjaL1v05T6s2ee99li35GlDDtCzfjVV4ZPAg5JdfWuTj41RAVC0LQhk2/NB4qEu37UxGGjhRFSjBEsS5LxI9QfvgrsHpl/VOn+soH7ZkK7kS6qRgNP/uYsXRWXhHaamcl5OX68gJWTbrW6c7PCqlbCWGnsHJswCmqPIthwXXMfC7ULDNLSKG6mslAt5Dyc8/MCr3vTW7pDyr2d0FvvY86SMQUggxv3qF7TZewqfX1bhK0fMLarIxVMQ1RFo//wN9QGA+2we8rxd2Y1Kr1DBuJyuwXPfv+Exo8yNYQ+x/AYH5k6UVcSYuaB8eYmplG2KQCxt8RBFtoChrwOKNRWLqXdKyfpdp5XmnnWxPvR95gf3h3yLocVYkF0i0uvKKJ0vt8J0Ezfkdfow0B1kUg5bPXKJROX7PwbaCPdYcxyDaO6wwOigRnSmoFvkH1pLb4j1RQAXcX531CHgfN6Izi/h0mpMS4bnyIUcv2GQr+h4z4TxcCtj7qpH2y6yw7XG12jVh7TfeesXG2Q== euanmillar77@gmail.com + state: present + sudoer: true + - name: tameem + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUprcQyUFYwRto0aRpgriR95C1pgNxrQ0lEWEe1D8he haidertameem@gmail.com + state: present + sudoer: true + - name: ashikul + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFr/v3hUGEbc2wQsDLCmqLrwiz964yVrnLZ6kafemjmX8aRGLp1CNFvrZ674SLnXidZGMkx9d5xVvv8IdFR3R50MqSqfolF43MV34/JVHjQHh9Vk4MJT/3GIaeNmr2GQ/38qAmt2BQn1ecnb7FjNO2bFvHokLhm2wCXt+A4avuTgJe0p4e6uu01IHeIzDb5sPzZ3ID0h6jJnjEDcET+Lf5NGpCjn7YKhLhBWSSl9cXQdOGLzNzg3aBk32kgJ1beP1funSeVd0jniJPZeZRC1G/kRdqBUOHKiENtwgquzZxXzdHkZV9+4mF7YGlx6LpQdNuDpW7JADtYNldtdbexdyfrgNoRzKwyMmaKNDbeHd1FsIHSDJmGm9hCoLTM2dEtsGzgghfe0tat8sOWmsj5v2en0V8rKV+w8OQEmHtaQkgMjqmZaAnd8uWiB2xIbrUuax5Pq8zkj37xnfbRxUPOEkMlOUbhh1wzGbqeUEB7nbv/vXZxwC0b7ryMk5egBP+0ZRONsdib9RkSTr3B9uSb7iTOQftdhy+CTqqOq+6s+TyC2qnu12B1WZb9sx9jQl0mBHd9gx/FgYDs8jfIr2vF4jRkejW/moaVqvCd/FLyS91eCMXQjIXdGKWKPUUL7GEBqdZRLnYSJOqgPp9sk1+NEvMabTXlWmoUjaShq8z+o7JsQ== nileeeem36@gmail.com + state: present + sudoer: true + - name: tahmid + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUml9O5ySwPtEMD1yGEYHlf9Z3jro97NWAnM9+ew9gn tahmidrahman.dsi@gmail.com + state: present + sudoer: true + - name: pyry + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJBcrSLLdrkLrhqNQi7Uo/ZIWXb1y4kc0vGb16e2s0Jq pyry@opencrvs.org + state: present + sudoer: true + - name: niko + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDGy93egakrVxXHb9LafRQ7T0Cl+p+gCTuymLyofTLK2ncwKhOZ/uV5SuzaKb4lJbBnpmxNdvAxsYXff5srvJfrV0ZZXFQdAAg0mmWuXxrhNfaE52S4s6WVKknTqDE5PhMxzVxzynBnaTdW9Cno7mO+rnS/VybjZIadpOuv5Bek1PztBmrUi4h0Qg1PxXNmFqzyc1dsil1T0nFeu5cH59G5fF1/oSUlC6CYBNoHdQ62IBoydBwMumk/trFoTlxPNK1wXgcUvsr8Sa5A4lN2Rrc6Y22CEGwomtyjHb2kDVbI+7B1Zq+S89yyyvkPFezEsCdK/Ehaj8HzfcsR/bassSn0/Xv3bL20eh7wv7cnut40kFizYifNGfpEqPvSzjfJbB4iG2WSKkW8F9t0/cvd0AdY/3jB0vXhvnRvCqHm1X6JVdGamF3GJeHUMk9JDg3rQdT47BZUtSJer4MGWWcNiALjeWPNLXK9cAvrI/6GbHbPyTzACfR6nhs03Z/eebuvpp0= + state: absent + sudoer: true + - name: tareq + ssh_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWQihdKkwxTItN+rwYAX1vBg+8sv59sFsjYoVaO2mzS01rARfh+M+UVqpEv3zFT/3v6Dr5Z5VhzYvvbH8akiGQxURqie9quEi1iBCqcq+LApkMZxNm7yyvexlFsbkKMHsSZyVCzjE2Wt+6fwR1NqkMQgJjZS+b4CB+CUTNP2i6ytUTmck9K5iAOp1Gpm+Xgyvz6ZEJPkAJ16gV7gzNJUt/DSCkCyV8G2BqYLWeR2QxAbKyuf3LzO5i4XZdiZi9o60QAt3A6KGGLazd0UuYdehQDqVwXzwimLeeuZbaPNmwoAy7DeatOdurrWbnL7ytaiPvAbwai6Grt3PhhM41qO+uojnqTdnFdSOEPVIYMR7+mYu9tuwHZcMJIbbvMPD6EvKumD5Ndn5OxiLY/zQF5PuG89pBdTkTzzREvbV1Dkh2hwAIvgavlZl3P64On+4+FAgjrAx5U55khoRAe2FbEvB+EUGwro0bRffiM2NmxkUBraEuT2Xt5K01ZoBU6F4feO0= tareq.aziz@dsinnovators.com + state: present + sudoer: true + - name: shoumik + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINRSRTqm3vOfjyTutISEtbVp7ZddoWa9NZDZLeWZGzLy dsi@dsi-Inspiron-15-3511 + state: present + sudoer: true + - name: vmudryi + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINgMcsSBwTE0EbMDRSF1T4vJDcN/5HAjKGbi2DqV7g/Q vmudryi@opencrvs.org + state: present + sudoer: true + - name: cihan + ssh_keys: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEtz5M5hYKcUehDiCm84BplV+3t1ex8DPjIsMtQEWGv cihan.m.bebek@gmail.com + state: present + sudoer: true +docker-manager-first: + hosts: + farajaland-v19-beta-staging: + ansible_host: '5.78.121.37' + data_label: data1 + +# QA and staging servers are not configured to use workers. +docker-workers: {} +backups: + hosts: + farajaland-backup: + ansible_host: '188.245.61.69' + # Written by provision pipeline. Assumes "backup" environment + # exists in Github environments + ansible_ssh_private_key_file: /tmp/backup_ssh_private_key diff --git a/infrastructure/server-setup/tasks/data-partition.yml b/infrastructure/server-setup/tasks/data-partition.yml index de472183f0..9f8dd0a445 100644 --- a/infrastructure/server-setup/tasks/data-partition.yml +++ b/infrastructure/server-setup/tasks/data-partition.yml @@ -239,6 +239,34 @@ mode: ugo+rwx when: not vsexport_data_backup.stat.exists +- name: Check SQLite data directory + stat: + path: /data/sqlite + register: sqlite_data + +- name: Create SQLite data directory + file: + path: /data/sqlite + state: directory + group: 1000 + owner: 1000 + mode: ugo+rwx + when: not sqlite_data.stat.exists + +- name: Check SQLite data backup directory + stat: + path: /data/backups/sqlite + register: sqlite_data_backup + +- name: Create SQLite backup directory + file: + path: /data/backups/sqlite + state: directory + group: 1000 + owner: 1000 + mode: ugo+rwx + when: not sqlite_data_backup.stat.exists + - name: 'Create secrets directory' file: path: /data/secrets diff --git a/package.json b/package.json index cc16b6fb98..b965c37add 100644 --- a/package.json +++ b/package.json @@ -17,13 +17,19 @@ }, "scripts": { "dev": "yarn start", + "e2e": "NODE_OPTIONS=--dns-result-order=ipv4first yarn playwright test --ui", + "e2e-dev": "NODE_ENV=development NODE_OPTIONS=--dns-result-order=ipv4first yarn playwright test --ui", + "e2e:generate-types": "graphql-codegen --config e2e/codegen.yml && yarn prettier --write e2e/gateway.ts", "precommit": "lint-staged", - "test": "vitest", - "test:compilation": "tsc --noEmit", + "test": "vitest 'src/**/*.test.ts' --passWithNoTests", + "test:watch": "vitest", + "test:compilation": "tsc --noEmit --resolveJsonModule", "lint": "eslint -c .eslintrc.js", "setup-analytics": "docker exec -i -e POSTGRES_HOST=localhost -e POSTGRES_PORT=5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e ANALYTICS_POSTGRES_USER=events_analytics -e ANALYTICS_POSTGRES_PASSWORD=analytics_password postgres bash -s < ./infrastructure/postgres/setup-analytics.sh", "start": "yarn setup-analytics && cross-env NODE_ENV=development NODE_OPTIONS=--dns-result-order=ipv4first nodemon --exec ts-node -r tsconfig-paths/register src/index.ts", "start:prod": "ts-node --transpile-only -r tsconfig-paths/register src/index.ts", + "data-generator": "ts-node -r tsconfig-paths/register -T src/data-generator/index.ts", + "data-generator:generate-types": "graphql-codegen --config codegen.yml && yarn prettier --write src/data-generator/gateway.ts", "metabase": "bash infrastructure/metabase/run-dev.sh", "deploy": "bash infrastructure/deployment/deploy.sh", "restore-snapshot": "bash infrastructure/backups/restore-snapshot.sh", @@ -34,9 +40,17 @@ "sort-translations": "cross-env NODE_ENV=development ts-node -r tsconfig-paths/register src/sort-translations.ts" }, "devDependencies": { + "@graphql-codegen/add": "^3.1.1", + "@graphql-codegen/cli": "^3.3.1", + "@graphql-codegen/introspection": "^3.0.1", + "@graphql-codegen/typescript": "^3.0.4", + "@graphql-codegen/typescript-operations": "^3.0.4", "@inquirer/editor": "^1.2.13", - "@octokit/core": "4.2.1", + "@octokit/core": "4.2.4", + "@playwright/test": "^1.48.0", + "@types/google-libphonenumber": "^7.4.23", "@types/handlebars": "^4.1.0", + "@types/hapi__h2o2": "8.3.3", "@types/hapi__inert": "5.2.1", "@types/inquirer": "^9.0.7", "@types/libsodium-wrappers": "^0.7.10", @@ -45,7 +59,6 @@ "@types/react-intl": "^3.0.0", "@typescript-eslint/eslint-plugin": "^5.60.1", "@typescript-eslint/parser": "^5.60.1", - "cypress-xpath": "^2.0.1", "eslint": "^8.43.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", @@ -58,39 +71,49 @@ "node-ssh": "^13.2.0", "nodemon": "^2.0.22", "pino-pretty": "^11.0.0", + "playwright-ctrf-json-reporter": "^0.0.18", "prettier": "^3.4.2", "react-intl": "^6.4.3", "vite-tsconfig-paths": "^3.5.0", "vitest": "^2.1.2" }, "dependencies": { - "@faker-js/faker": "^6.0.0-alpha.5", + "@faker-js/faker": "^9.3.0", "@hapi/boom": "^9.1.1", + "@hapi/h2o2": "^9.1.0", "@hapi/hapi": "^20.0.1", "@hapi/inert": "^6.0.3", + "@opencrvs/mosip": "^1.8.0", "@opencrvs/toolkit": "1.8.1-rc.a5eecfe", "@types/chalk": "^2.2.0", + "@types/code": "^4.0.3", "@types/csv2json": "^1.4.0", - "@types/fhir": "^0.0.30", + "@types/fhir": "0.0.30", "@types/geojson": "^7946.0.4", "@types/hapi__boom": "^9.0.1", "@types/hapi__hapi": "^20.0.0", + "@types/jest": "^24.0.13", "@types/jwt-decode": "^2.2.1", "@types/lodash": "^4.14.117", "@types/luxon": "^3.7.1", "@types/node": "^18.19.1", "@types/node-fetch": "^2.6.2", "@types/nodemailer": "^6.4.14", + "@types/uuid": "^10.0.0", "@types/stream-json": "^1.7.8", "app-module-path": "^2.2.0", "chalk": "^2.4.1", + "country-data": "^0.0.31", "cross-env": "^6.0.3", "csv-stringify": "^6.4.6", - "csv2json": "^2.0.2", + "csv2json": "^1.4.2", "date-fns": "^2.28.0", "dotenv": "^16.4.5", "envalid": "^8.0.0", "esbuild": "^0.18.9", + "google-libphonenumber": "^3.2.32", + "graphql": "^16.3.0", + "graphql-tag": "^2.12.6", "handlebars": "^4.7.7", "hapi-auth-jwt2": "10.4.0", "hapi-pino": "^9.0.0", @@ -104,19 +127,23 @@ "node-fetch": "^2.6.1", "nodemailer": "^6.9.8", "opener": "^1.5.1", + "p-queue": "^6.6.2", "pg": "^8.16.3", "pino": "^7.0.0", "prompts": "^2.4.2", + "regex-to-strings": "^2.1.0", "short-uid": "^0.1.0", "stream-json": "^1.9.1", "ts-node": "^10.9.1", "tsconfig-paths": "^3.8.0", "typescript": "^5.1.6", "uuid": "^11.1.0", + "whatwg-fetch": "^3.0.0", + "yargs": "^17.7.2", "zod": "^3.24.1" }, "lint-staged": { - "src/**/*.{ts,graphql}": [ + "{src,e2e}/**/*.{ts,graphql}": [ "eslint --fix", "prettier --write", "git add" @@ -128,5 +155,6 @@ }, "resolutions": { "acorn": "^6.4.1" - } + }, + "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" } diff --git a/playwright.config.ts b/playwright.config.ts new file mode 100644 index 0000000000..20d9452c57 --- /dev/null +++ b/playwright.config.ts @@ -0,0 +1,108 @@ +import { defineConfig, devices } from '@playwright/test' + +const TEST_TIMEOUT = 90000 + +const subdomains = ['register'] // TODO: Add more subdomains if needed +const insecureOrigins = subdomains.map( + (subdomain) => + `--unsafely-treat-insecure-origin-as-secure=https://${subdomain}.${process.env.DOMAIN}` +) + +const ignoreHTTPSErrors = process.env.CI ? true : false +/** + * Read environment variables from file. + * https://github.com/motdotla/dotenv + */ +// require('dotenv').config(); + +/** + * See https://playwright.dev/docs/test-configuration. + */ +export default defineConfig({ + timeout: TEST_TIMEOUT, + testDir: './e2e/testcases', + /* Run tests in files in parallel */ + fullyParallel: true, + /* Fail the build on CI if you accidentally left test.only in the source code. */ + forbidOnly: !!process.env.CI, + /* Don't retry */ + retries: process.env.CI ? 3 : 0, + /* Opt out of parallel tests on CI. */ + workers: process.env.CI ? 1 : undefined, + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ + reporter: [ + ['html', { open: 'never' }], + ['playwright-ctrf-json-reporter', {}] + ], + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ + use: { + /* Base URL to use in actions like `await page.goto('/')`. */ + // baseURL: 'http://127.0.0.1:3000', + /* Capture screenshot on failure */ + screenshot: 'on', + /* Collect trace when the test failed. See https://playwright.dev/docs/trace-viewer */ + trace: 'on', + // Ignore HTTPS errors (like untrusted or self-signed certificates) during Playwright tests on CI + // This is useful for Let's Encrypt staging certificates that aren't publicly trusted. + ignoreHTTPSErrors + }, + + /* Configure projects for major browsers */ + projects: [ + { + name: 'chromium', + use: { + ...devices['Desktop Chrome'], + ignoreHTTPSErrors, + launchOptions: { + args: process.env.CI + ? [ + '--ignore-certificate-errors', + '--ignore-ssl-errors', + '--allow-running-insecure-content', + '--disable-web-security', + ...insecureOrigins + ] + : [] + } + } + } + + // { + // name: 'firefox', + // use: { ...devices['Desktop Firefox'] } + // }, + + // { + // name: 'webkit', + // use: { ...devices['Desktop Safari'] } + // } + + /* Test against mobile viewports. */ + // { + // name: 'Mobile Chrome', + // use: { ...devices['Pixel 5'] }, + // }, + // { + // name: 'Mobile Safari', + // use: { ...devices['iPhone 12'] }, + // }, + + /* Test against branded browsers. */ + // { + // name: 'Microsoft Edge', + // use: { ...devices['Desktop Edge'], channel: 'msedge' }, + // }, + // { + // name: 'Google Chrome', + // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, + // }, + ] + + /* Run your local dev server before starting the tests */ + // webServer: { + // command: 'npm run start', + // url: 'http://127.0.0.1:3000', + // reuseExistingServer: !process.env.CI, + // }, +}) diff --git a/postman/Event Notification.postman_collection.json b/postman/Event Notification.postman_collection.json index e893f5d3a1..fe1b2c96a8 100644 --- a/postman/Event Notification.postman_collection.json +++ b/postman/Event Notification.postman_collection.json @@ -158,4 +158,4 @@ "value": "da30f792-d28c-4a92-bb2f-43d6a8ef9254" } ] -} \ No newline at end of file +} diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000000..b9cc58286b --- /dev/null +++ b/public/index.html @@ -0,0 +1,126 @@ + + + + + + + + + Print all registrations + + + +
+
+
+
+
+

+ Print all registrations +

+

+ List of births registered between + + + and + +

+ +
+
+
+ +
+
+
+
+ + + + + + + + + + + +
+ Tracking ID + + Registration number + + Registered at + + Birth date + + Name +
+
+
+
+
+
+
+ + + diff --git a/public/main.js b/public/main.js new file mode 100644 index 0000000000..c95786f8a5 --- /dev/null +++ b/public/main.js @@ -0,0 +1,186 @@ +/* + * Check user has an authorization token. If not, redirect to login page. + */ +const token = new URLSearchParams(window.location.search).get('token') + +if (!token) { + window.location.href = + window.config.LOGIN_URL + + '?redirectTo=' + + encodeURIComponent(window.location.href) +} + +async function downloadRecords({ startDate, endDate }) { + const res = await fetch('/graphql', { + headers: { + authorization: 'Bearer ' + token, + 'content-type': 'application/json' + }, + body: JSON.stringify({ + operationName: 'searchEvents', + variables: { + advancedSearchParameters: { + registrationStatuses: ['REGISTERED', 'CERTIFIED', 'ISSUED'], + dateOfRegistrationStart: startDate, + dateOfRegistrationEnd: endDate + }, + count: 10, + skip: 0 + }, + query: ` + query searchEvents($advancedSearchParameters: AdvancedSearchParametersInput!, $sort: String, $count: Int, $skip: Int) { + searchEvents( + advancedSearchParameters: $advancedSearchParameters + sort: $sort + count: $count + skip: $skip + ) { + totalItems + results { + id + type + registration { + status + contactNumber + contactEmail + trackingId + registrationNumber + registeredLocationId + duplicates + assignment { + practitionerId + firstName + lastName + officeName + avatarURL + } + createdAt + modifiedAt + } + operationHistories { + operationType + operatedOn + } + ... on BirthEventSearchSet { + dateOfBirth + childName { + firstNames + middleName + familyName + use + } + } + __typename + } + } + } + ` + }), + method: 'POST', + mode: 'cors', + credentials: 'include' + }) + + return res.json() +} + +/* + * Initialise date inputs + */ +const $startDate = document.getElementById('start-date') +const $endDate = document.getElementById('end-date') +$startDate.value = new Date(new Date().getFullYear(), new Date().getMonth(), 1) + .toISOString() + .split('T')[0] +$endDate.value = new Date( + new Date().getFullYear(), + new Date().getMonth() + 1, + 0 +) + .toISOString() + .split('T')[0] + +$startDate.addEventListener('change', update) +$endDate.addEventListener('change', update) + +/* + * Views + */ + +function update() { + downloadRecords({ startDate: $startDate.value, endDate: $endDate.value }) + .then((data) => renderTable(data.data.searchEvents.results)) + .catch((err) => console.error(err)) +} + +const $results = document.getElementById('results') + +window.printAll = async function renderPrintout() { + const data = await downloadRecords({ + startDate: $startDate.value, + endDate: $endDate.value + }) + const results = data.data.searchEvents.results + const pages = results + .filter((event) => event.__typename === 'BirthEventSearchSet') + .map((event) => { + /* + * Replace this with what ever you want to render for each page + */ + const page = ` +
+
+

${event.childName[0].firstNames} ${event.childName[0].middleName} ${event.childName[0].familyName}

+

${event.dateOfBirth}

+
+
+ ` + + return page + }) + .join('') + + html2pdf() + .set({ + pagebreak: { after: '.page' } + }) + .from(pages) + .save() +} +function renderTable(results) { + const rows = results + .filter((event) => event.__typename === 'BirthEventSearchSet') + .map((event) => { + const row = ` + + ${ + event.registration.trackingId + } + ${ + event.registration.registrationNumber + } + ${ + new Date(parseInt(event.registration.createdAt, 10)) + .toISOString() + .split('T')[0] + } + ${ + event.dateOfBirth + } + ${ + event.childName[0].firstNames + } ${event.childName[0].middleName} ${event.childName[0].familyName} + + ` + + return row + }) + .join('') + + $results.innerHTML = rows +} + +/* + * First render + */ +update() diff --git a/reqs-gathering-templates/Administrative Statistics.xlsx b/reqs-gathering-templates/Administrative Statistics.xlsx new file mode 100644 index 0000000000..6f04c48875 Binary files /dev/null and b/reqs-gathering-templates/Administrative Statistics.xlsx differ diff --git a/reqs-gathering-templates/Administrative Structure.xlsx b/reqs-gathering-templates/Administrative Structure.xlsx new file mode 100644 index 0000000000..29a949963d Binary files /dev/null and b/reqs-gathering-templates/Administrative Structure.xlsx differ diff --git a/reqs-gathering-templates/Applications Settings.xlsx b/reqs-gathering-templates/Applications Settings.xlsx new file mode 100644 index 0000000000..aa1542e13c Binary files /dev/null and b/reqs-gathering-templates/Applications Settings.xlsx differ diff --git a/reqs-gathering-templates/CRVS Offices.xlsx b/reqs-gathering-templates/CRVS Offices.xlsx new file mode 100644 index 0000000000..770bc257bd Binary files /dev/null and b/reqs-gathering-templates/CRVS Offices.xlsx differ diff --git a/reqs-gathering-templates/Declaration Forms.xlsx b/reqs-gathering-templates/Declaration Forms.xlsx new file mode 100644 index 0000000000..c5420f433f Binary files /dev/null and b/reqs-gathering-templates/Declaration Forms.xlsx differ diff --git a/reqs-gathering-templates/Health Facilities.xlsx b/reqs-gathering-templates/Health Facilities.xlsx new file mode 100644 index 0000000000..5742eaf5e3 Binary files /dev/null and b/reqs-gathering-templates/Health Facilities.xlsx differ diff --git a/reqs-gathering-templates/Users.xlsx b/reqs-gathering-templates/Users.xlsx new file mode 100644 index 0000000000..7760f40c56 Binary files /dev/null and b/reqs-gathering-templates/Users.xlsx differ diff --git a/src/api/application/application-config.ts b/src/api/application/application-config.ts index e9b35e64ed..1592896da0 100644 --- a/src/api/application/application-config.ts +++ b/src/api/application/application-config.ts @@ -61,9 +61,9 @@ export const applicationConfig = { DECLARATION_AUDIT_LOCATIONS: 'DISTRICT', FEATURES: { DEATH_REGISTRATION: true, - MARRIAGE_REGISTRATION: false, - EXTERNAL_VALIDATION_WORKQUEUE: false, - PRINT_DECLARATION: false, + MARRIAGE_REGISTRATION: true, + EXTERNAL_VALIDATION_WORKQUEUE: true, + PRINT_DECLARATION: true, DATE_OF_BIRTH_UNKNOWN: true }, USER_NOTIFICATION_DELIVERY_METHOD: 'email', // or 'sms', or '' ... You can use 'sms' for WhatsApp diff --git a/src/api/certificates/handler.ts b/src/api/certificates/handler.ts index bca8ca46df..6fe88f79fe 100644 --- a/src/api/certificates/handler.ts +++ b/src/api/certificates/handler.ts @@ -92,7 +92,7 @@ export async function certificateHandler(request: Request, h: ResponseToolkit) { }, isDefault: false, fee: { - onTime: 8, + onTime: 0, late: 11.5, delayed: 17 }, @@ -105,14 +105,7 @@ export async function certificateHandler(request: Request, h: ResponseToolkit) { italics: '/api/countryconfig/fonts/NotoSans-Regular.ttf', bolditalics: '/api/countryconfig/fonts/NotoSans-Regular.ttf' } - }, - conditionals: [ - { - type: 'SHOW', - // Show only if original certificate was printed - conditional: event.hasAction(ActionType.PRINT_CERTIFICATE).minCount(1) - } - ] + } }, { id: 'birth-registration-receipt', @@ -172,7 +165,7 @@ export async function certificateHandler(request: Request, h: ResponseToolkit) { }, isDefault: false, fee: { - onTime: 6, + onTime: 0, late: 9, delayed: 14.5 }, diff --git a/src/api/certificates/source/birth-certificate-certified-copy.svg b/src/api/certificates/source/birth-certificate-certified-copy.svg index bb9f23bfad..d7299a2fb5 100644 --- a/src/api/certificates/source/birth-certificate-certified-copy.svg +++ b/src/api/certificates/source/birth-certificate-certified-copy.svg @@ -2,7 +2,7 @@ - {{ordinalFormatDate registrar.date}} + {{certificateDate}} Date of certification / Date de certification @@ -14,12 +14,8 @@ Place of certification / Lieu de certification - + NID + {{ childIdentifier }} Certified by: {{registrar.name}} @@ -317,22 +313,7 @@ {{ registrar.name }} - - - - - - - - - - - - - - - @@ -394,8 +375,9 @@ + {{#ifCond printInAdvance '!==' true}} {{/ifCond}} - \ No newline at end of file + diff --git a/src/api/certificates/source/birth-certificate.svg b/src/api/certificates/source/birth-certificate.svg index 09cf0dfac2..7f41a80d5c 100644 --- a/src/api/certificates/source/birth-certificate.svg +++ b/src/api/certificates/source/birth-certificate.svg @@ -1,7 +1,7 @@ - + CAUTION : THERE ARE OFFENCES RELATING TO FALSIFYING OR ALTERING A CERTIFICATE AND USING OR POSSESSING A FALSE CERTIFICATE IS NOT PROOF OF IDENTITY / ATTENTION : IL EXISTE DES INFRACTIONS RELATIVES A LA FALSIFIATION OU À LA MODIFICATION D'UN CERTIFICAT ET A L'UTILISATION OU LA POSSESSION D'UN FAUX CERTIFICAT. UN CERTIFICAT N'EST PAS UNE PREUVE D'IDENTITE @@ -48,12 +48,8 @@ Place of certification / Lieu de délivrance - + NID + {{ childIdentifier }} @@ -224,22 +220,7 @@ - - - - - - - - - - - - - - - @@ -280,8 +261,9 @@ + {{#ifCond printInAdvance '!==' true}} {{/ifCond}} - \ No newline at end of file + diff --git a/src/api/certificates/source/death-certificate-certified-copy.svg b/src/api/certificates/source/death-certificate-certified-copy.svg index 27cc4b114d..a8a7b9431f 100644 --- a/src/api/certificates/source/death-certificate-certified-copy.svg +++ b/src/api/certificates/source/death-certificate-certified-copy.svg @@ -14,12 +14,12 @@ Place of certification / Lieu de certification - - 12345678912345678912345678900 - - - MOSIP Application ID / MOSIP Application ID - + + + + + + Registrar {{registrar.name}} @@ -234,22 +234,7 @@ - - - - - - - - - - - - - - - @@ -293,8 +278,9 @@ + {{#ifCond printInAdvance '!==' true}} {{/ifCond}} - \ No newline at end of file + diff --git a/src/api/certificates/source/death-certificate.svg b/src/api/certificates/source/death-certificate.svg index 6ae8da3820..ed8b1252e7 100644 --- a/src/api/certificates/source/death-certificate.svg +++ b/src/api/certificates/source/death-certificate.svg @@ -1,7 +1,7 @@ - + CAUTION : THERE ARE OFFENCES RELATING TO FALSIFYING OR ALTERING A CERTIFICATE AND USING OR POSSESSING A FALSE CERTIFICATE IS NOT PROOF OF IDENTITY / ATTENTION : IL EXISTE DES INFRACTIONS RELATIVES A LA FALSIFIATION OU À LA MODIFICATION D'UN CERTIFICAT ET A L'UTILISATION OU LA POSSESSION D'UN FAUX CERTIFICAT. UN CERTIFICAT N'EST PAS UNE PREUVE D'IDENTITE @@ -201,22 +201,7 @@ CERTIFICATE OF DEATH / ACTE DE DEATH - - - - - - - - - - - - - - - @@ -254,8 +239,9 @@ + {{#ifCond printInAdvance '!==' true}} {{/ifCond}} - \ No newline at end of file + diff --git a/src/api/certificates/source/marriage-certificate-certified-copy.svg b/src/api/certificates/source/marriage-certificate-certified-copy.svg index 0d204c59d9..f36d63fa1f 100644 --- a/src/api/certificates/source/marriage-certificate-certified-copy.svg +++ b/src/api/certificates/source/marriage-certificate-certified-copy.svg @@ -2,7 +2,7 @@ - {{ordinalFormatDate registrar.date}} + {{certificateDate}} Date of certification / Date de certification @@ -311,22 +311,7 @@ - - - - - - - - - - - - - - - @@ -388,8 +373,9 @@ + {{#ifCond printInAdvance '!==' true}} {{/ifCond}} - \ No newline at end of file + diff --git a/src/api/certificates/source/marriage-certificate.svg b/src/api/certificates/source/marriage-certificate.svg index 4ff925bc54..eba8e1db5f 100644 --- a/src/api/certificates/source/marriage-certificate.svg +++ b/src/api/certificates/source/marriage-certificate.svg @@ -1,7 +1,7 @@ - + CAUTION : THERE ARE OFFENCES RELATING TO FALSIFYING OR ALTERING A CERTIFICATE AND USING OR POSSESSING A FALSE CERTIFICATE IS NOT PROOF OF IDENTITY / ATTENTION : IL EXISTE DES INFRACTIONS RELATIVES A LA FALSIFIATION OU À LA MODIFICATION D'UN CERTIFICAT ET A L'UTILISATION OU LA POSSESSION D'UN FAUX CERTIFICAT. UN CERTIFICAT N'EST PAS UNE PREUVE D'IDENTITE @@ -208,22 +208,7 @@ - - - - - - - - - - - - - - - @@ -264,10 +249,11 @@ + {{#ifCond printInAdvance '!==' true}} {{/ifCond}} - \ No newline at end of file + diff --git a/src/api/certificates/source/test/UsingAddressHandlebars.svg b/src/api/certificates/source/test/UsingAddressHandlebars.svg index 557957a07e..6c42b54185 100644 --- a/src/api/certificates/source/test/UsingAddressHandlebars.svg +++ b/src/api/certificates/source/test/UsingAddressHandlebars.svg @@ -14,8 +14,8 @@ {{countryPrimaryInformant}} -{{location statePrimaryInformantId 'name'}}{{internationalStatePrimaryInformant}} -{{location districtPrimaryInformantId 'name'}}{{internationalDistrictPrimaryInformant}} +{{statePrimaryInformant}}{{internationalStatePrimaryInformant}} +{{districtPrimaryInformant}}{{internationalDistrictPrimaryInformant}} {{cityPrimaryInformant}}{{internationalCityPrimaryInformant}}{{addressLine1RuralOptionPrimaryInformant}} {{addressLine1UrbanOptionPrimaryInformant}}{{internationalAddressLine1PrimaryInformant}} {{addressLine2UrbanOptionPrimaryInformant}}{{internationalAddressLine2PrimaryInformant}} @@ -27,8 +27,8 @@ {{countryPlaceofbirth}}{{countryPlaceofdeath}}{{countryPlaceofmarriage}} -{{location statePlaceofbirthId 'name'}}{{internationalStatePlaceofbirth}}{{location statePlaceofdeathId 'name'}}{{internationalStatePlaceofdeath}}{{location statePlaceofmarriageId 'name'}}{{internationalStatePlaceofmarriage}} -{{location districtPlaceofbirthId 'name'}}{{internationalDistrictPlaceofbirth}}{{location districtPlaceofdeathId 'name'}}{{internationalDistrictPlaceofdeath}}{{location districtPlaceofmarriageId 'name'}}{{internationalDistrictPlaceofmarriage}} +{{statePlaceofbirth}}{{internationalStatePlaceofbirth}}{{statePlaceofdeath}}{{internationalStatePlaceofdeath}}{{statePlaceofmarriage}}{{internationalStatePlaceofmarriage}} +{{districtPlaceofbirth}}{{internationalDistrictPlaceofbirth}}{{districtPlaceofdeath}}{{internationalDistrictPlaceofdeath}}{{districtPlaceofmarriage}}{{internationalDistrictPlaceofmarriage}} {{cityPlaceofbirth}}{{internationalCityPlaceofbirth}}{{cityPlaceofdeath}}{{internationalCityPlaceofdeath}}{{cityPlaceofmarriage}}{{internationalCityPlaceofmarriage}}{{addressLine1RuralOptionPlaceofbirth}}{{addressLine1RuralOptionPlaceofdeath}}{{addressLine1RuralOptionPlaceofmarriage}} {{addressLine1UrbanOptionPlaceofbirth}}{{internationalAddressLine1Placeofbirth}}{{addressLine1UrbanOptionPlaceofdeath}}{{internationalAddressLine1Placeofdeath}}{{addressLine1UrbanOptionPlaceofmarriage}}{{internationalAddressLine1Placeofmarriage}} {{addressLine2UrbanOptionPlaceofbirth}}{{internationalAddressLine2Placeofbirth}}{{addressLine2UrbanOptionPlaceofdeath}}{{internationalAddressLine2Placeofdeath}}{{addressLine2UrbanOptionPlaceofmarriage}}{{internationalAddressLine2Placeofmarriage}} @@ -40,8 +40,8 @@ {{countryPrimaryMother}}{{countryPrimaryBride}} -{{location statePrimaryMotherId 'name'}}{{internationalStatePrimaryMother}}{{location statePrimaryBrideId 'name'}}{{internationalStatePrimaryBride}} -{{location districtPrimaryMotherId 'name'}}{{internationalDistrictPrimaryMother}}{{location districtPrimaryBrideId 'name'}}{{internationalDistrictPrimaryBride}} +{{statePrimaryMother}}{{internationalStatePrimaryMother}}{{statePrimaryBride}}{{internationalStatePrimaryBride}} +{{districtPrimaryMother}}{{internationalDistrictPrimaryMother}}{{districtPrimaryBride}}{{internationalDistrictPrimaryBride}} {{cityPrimaryMother}}{{internationalCityPrimaryMother}}{{addressLine1RuralOptionPrimaryMother}}{{cityPrimaryBride}}{{internationalCityPrimaryBride}}{{addressLine1RuralOptionPrimaryBride}} {{addressLine1UrbanOptionPrimaryMother}}{{internationalAddressLine1PrimaryMother}}{{addressLine1UrbanOptionPrimaryBride}}{{internationalAddressLine1PrimaryBride}} {{addressLine2UrbanOptionPrimaryMother}}{{internationalAddressLine2PrimaryMother}}{{addressLine2UrbanOptionPrimaryBride}}{{internationalAddressLine2PrimaryBride}} @@ -53,8 +53,8 @@ {{countryPrimaryFather}}{{countryPrimaryGroom}} -{{location statePrimaryFatherId 'name'}}{{internationalStatePrimaryFather}}{{location statePrimaryGroomId 'name'}}{{internationalStatePrimaryGroom}} -{{location districtPrimaryFatherId 'name'}}{{internationalDistrictPrimaryFather}}{{location districtPrimaryGroomId 'name'}}{{internationalDistrictPrimaryGroom}} +{{statePrimaryFather}}{{internationalStatePrimaryFather}}{{statePrimaryGroom}}{{internationalStatePrimaryGroom}} +{{districtPrimaryFather}}{{internationalDistrictPrimaryFather}}{{districtPrimaryGroom}}{{internationalDistrictPrimaryGroom}} {{cityPrimaryFather}}{{internationalCityPrimaryFather}}{{addressLine1RuralOptionPrimaryFather}}{{cityPrimaryGroom}}{{internationalCityPrimaryGroom}}{{addressLine1RuralOptionPrimaryGroom}} {{addressLine1UrbanOptionPrimaryFather}}{{internationalAddressLine1PrimaryFather}}{{addressLine1UrbanOptionPrimaryGroom}}{{internationalAddressLine1PrimaryGroom}} {{addressLine2UrbanOptionPrimaryFather}}{{internationalAddressLine2PrimaryFather}}{{addressLine2UrbanOptionPrimaryGroom}}{{internationalAddressLine2PrimaryGroom}} @@ -88,4 +88,4 @@ - + \ No newline at end of file diff --git a/src/api/dashboards/file/metabase.init.db.sql b/src/api/dashboards/file/metabase.init.db.sql new file mode 100644 index 0000000000..92ec84603d --- /dev/null +++ b/src/api/dashboards/file/metabase.init.db.sql @@ -0,0 +1,175652 @@ +SET DB_CLOSE_DELAY -1; +; +CREATE USER IF NOT EXISTS "" SALT '' HASH '' ADMIN; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F7B5E9FA_651D_4581_B07D_55005BC5AC7E START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_FA47720B_962C_473D_8841_5794EBD7CFCE START WITH 725 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_CA8F9CC6_8730_4733_A518_B4A26ABBA961 START WITH 19 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_434C90C8_ED94_4F09_9963_E66966B3858F START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_9543541B_5507_46A3_A990_9384645E1E07 START WITH 3 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_30D101F9_4CD1_4E8E_8767_7B882B1F9975 START WITH 2 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_926BB83A_3559_4264_8724_8F830EE62844 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_2CF79133_88CE_4929_85C1_F880B342C009 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_CC5C7B7A_71AA_4186_A8A9_E7348F961AA4 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_5A28C5A7_FD5A_486C_A6A1_B943ED518FCF START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_B98AB84C_B0B7_437D_AB7A_EEBD7CDDA984 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_1DDA2DDF_5A61_4A27_B552_908FF1E2661D START WITH 35 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_81F642AC_A8A9_4BEB_A3CD_C9EBFB66DFE2 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_AC3E8137_FFD8_404A_854F_521F53AA6922 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_1682BD83_90A2_40CB_9FA5_1A0E7BE1CD50 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_56CA509B_A3B8_4C20_9E08_80268FB36B0C START WITH 3 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_6EF803E1_4CA2_450D_B70F_13849C2FFAC9 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_A02A3E48_A07E_45F0_A81A_3315B8C485C8 START WITH 101 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_E88969E3_EF69_4C8A_89CD_33B223F94AF9 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F4C56B52_1BFF_4853_A2EF_57491E1A4079 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_095A6096_F5BB_4053_B59C_DAA6E5A9D843 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_44FF26BA_7F0F_4B97_BCB3_DB3CF7789B64 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_FBF2FDCE_D5D9_485D_90C3_3A1219D2190D START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F3B8CE94_5AB1_44BD_A377_36174FB04171 START WITH 3 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_C9109A6C_C7C9_477B_8AA6_F1D8E4A94FF4 START WITH 401 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_760D42BD_A3B0_46CF_BDCC_A01B1DBC9EA8 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_3060F49C_9F3D_4C7C_87B9_5C097CC99538 START WITH 59227 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_0E16F799_1A31_4961_9020_CDCADFFD2ECE START WITH 34 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_58B20A80_514C_42CB_820F_81176F60E87F START WITH 70 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_593AEEFE_653C_4232_B108_90A1A101A9B0 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_1998AEFF_9509_4479_9F00_1BA4A9D619EE START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_620C6AAA_F68E_4094_B4AE_7C4D6E261B94 START WITH 65575 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_E3507FDA_AFF2_4430_90F0_BD1EECE334CF START WITH 35508 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_AE8D7640_4A16_4E34_954B_085CBB99D93B START WITH 5 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_8A249DF1_A301_4484_93C8_E107A0A1AD69 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_7EA0412E_E359_4406_B651_BBD8BECBA72F START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_7A80ACE0_9C07_42F6_A9B9_68058F1BC407 START WITH 339 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_40E7D26C_4D5D_4B18_BC95_929288F4E47E START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_17DCFE6D_690E_41E4_A8B3_F49A479585E4 START WITH 39 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_11F3DA6A_236E_4119_98AA_C73C22B072F5 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_9FB79DA5_1ADE_447D_8990_E43EB458767A START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_15D8716F_B800_42F5_A3D2_D7D6FC2C574D START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_DCB0374C_7489_4F6E_9092_4F963B681F16 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_D7E75EE8_2E04_488D_9DBB_35B17738893A START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_921E3E57_56A0_49A0_AE48_CA7806C6D314 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_97C4EFC0_64EF_4BEE_828C_7923504AD6F2 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_D640115F_5EEE_4A4B_940C_6BFF8723C873 START WITH 715 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_51D5A3C6_C497_4CAD_B02A_5D59F75D44D5 START WITH 101 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F6D2CDE7_60C9_4D97_8623_1512A01B69BD START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_2EDFDDA6_2A96_4716_9C8C_D4D703FA32F3 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_EECAE83F_73F8_44BE_9265_A330443A1826 START WITH 1 BELONGS_TO_TABLE; +CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_3C4E6475_0A1E_415F_9EB4_DB0920D42268 START WITH 1 BELONGS_TO_TABLE; +CREATE CACHED TABLE PUBLIC.DATABASECHANGELOG( + ID VARCHAR(255) NOT NULL, + AUTHOR VARCHAR(255) NOT NULL, + FILENAME VARCHAR(255) NOT NULL, + DATEEXECUTED TIMESTAMP NOT NULL, + ORDEREXECUTED INT NOT NULL, + EXECTYPE VARCHAR(10) NOT NULL, + MD5SUM VARCHAR(35), + DESCRIPTION VARCHAR(255), + COMMENTS VARCHAR(255), + TAG VARCHAR(255), + LIQUIBASE VARCHAR(20), + CONTEXTS VARCHAR(255), + LABELS VARCHAR(255), + DEPLOYMENT_ID VARCHAR(10) +); +-- 504 +/- SELECT COUNT(*) FROM PUBLIC.DATABASECHANGELOG; +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('1', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.466', 1, 'EXECUTED', '8:c6ae58b391611a9317a5235970daf2bd', 'createTable tableName=core_organization; createTable tableName=core_user; createTable tableName=core_userorgperm; addUniqueConstraint constraintName=idx_unique_user_id_organization_id, tableName=core_userorgperm; createIndex indexName=idx_userorgp...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('2', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.473', 2, 'EXECUTED', '8:b93383f26ef8fd74b0d0c79f71f6dafb', 'createTable tableName=core_session', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('4', 'cammsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.478', 3, 'EXECUTED', '8:a8e7822a91ea122212d376f5c2d4158f', 'createTable tableName=setting', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('5', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.506', 4, 'EXECUTED', '8:4f8653d16f4b102b3dff647277b6b988', 'addColumn tableName=core_organization', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('6', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.532', 5, 'EXECUTED', '8:2d2f5d1756ecb81da7c09ccfb9b1565a', 'dropNotNullConstraint columnName=organization_id, tableName=metabase_database; dropForeignKeyConstraint baseTableName=metabase_database, constraintName=fk_database_ref_organization_id; dropNotNullConstraint columnName=organization_id, tableName=re...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('7', 'cammsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.547', 6, 'EXECUTED', '8:4f23ddbddd447461588462fa8bb443dd', 'addColumn tableName=metabase_field', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('8', 'tlrobinson', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.562', 7, 'EXECUTED', '8:960ec59bbcb4c9f3fa8362eca9af4075', 'addColumn tableName=metabase_table; addColumn tableName=metabase_field', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('9', 'tlrobinson', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.57', 8, 'EXECUTED', '8:d560283a190e3c60802eb04f5532a49d', 'addColumn tableName=metabase_table', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('10', 'cammsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.58', 9, 'EXECUTED', '8:f924eb06dc111a886a9e5bbd597d4b41', 'createTable tableName=revision; createIndex indexName=idx_revision_model_model_id, tableName=revision', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('11', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.587', 10, 'EXECUTED', '8:ca6561cab1eedbcf4dcb6d6e22cd46c6', 'sql', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('12', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.605', 11, 'EXECUTED', '8:1cc6a5e29970d1ae5008ccd842b0b06a', 'addColumn tableName=report_card; addColumn tableName=report_card; addColumn tableName=report_card', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('13', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.611', 12, 'EXECUTED', '8:c9e4ba392843ecb8ef2a4e818894edb1', 'createTable tableName=activity; createIndex indexName=idx_activity_timestamp, tableName=activity; createIndex indexName=idx_activity_user_id, tableName=activity; createIndex indexName=idx_activity_custom_id, tableName=activity', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('14', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.616', 13, 'EXECUTED', '8:e0ab939d4315c87ed232b71989dfa7a5', 'createTable tableName=view_log; createIndex indexName=idx_view_log_user_id, tableName=view_log; createIndex indexName=idx_view_log_timestamp, tableName=view_log', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('15', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.62', 14, 'EXECUTED', '8:505b91530103673a9be3382cd2db1070', 'addColumn tableName=revision', '', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('16', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.623', 15, 'EXECUTED', '8:b81df46fe16c3e8659a81798b97a4793', 'dropNotNullConstraint columnName=last_login, tableName=core_user', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('17', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.628', 16, 'EXECUTED', '8:051c23cd15359364b9895c1569c319e7', 'addColumn tableName=metabase_database; sql', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('18', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.632', 17, 'EXECUTED', '8:62a0483dde183cfd18dd0a86e9354288', 'createTable tableName=data_migrations; createIndex indexName=idx_data_migrations_id, tableName=data_migrations', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('19', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.636', 18, 'EXECUTED', '8:269b129dbfc39a6f9e0d3bc61c3c3b70', 'addColumn tableName=metabase_table', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('20', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.653', 19, 'EXECUTED', '8:40b0729e80f3f66f92c590268ce390dd', 'createTable tableName=pulse; createIndex indexName=idx_pulse_creator_id, tableName=pulse; createTable tableName=pulse_card; createIndex indexName=idx_pulse_card_pulse_id, tableName=pulse_card; createIndex indexName=idx_pulse_card_card_id, tableNam...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('21', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.657', 20, 'EXECUTED', '8:625a55f4f516a883eae4933528ac08fd', 'createTable tableName=segment; createIndex indexName=idx_segment_creator_id, tableName=segment; createIndex indexName=idx_segment_table_id, tableName=segment', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('22', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.662', 21, 'EXECUTED', '8:80bc8a62a90791a79adedcf1ac3c6f08', 'addColumn tableName=revision', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('23', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.666', 22, 'EXECUTED', '8:b6f054835db2b2688a1be1de3707f9a9', 'modifyDataType columnName=rows, tableName=metabase_table', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('24', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.67', 23, 'EXECUTED', '8:5e7354b3f92782d1151be0aa9d3fe625', 'createTable tableName=dependency; createIndex indexName=idx_dependency_model, tableName=dependency; createIndex indexName=idx_dependency_model_id, tableName=dependency; createIndex indexName=idx_dependency_dependent_on_model, tableName=dependency;...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('25', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.675', 24, 'EXECUTED', '8:d4523147fa777867f757fb1b5a83969a', 'createTable tableName=metric; createIndex indexName=idx_metric_creator_id, tableName=metric; createIndex indexName=idx_metric_table_id, tableName=metric', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('26', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.679', 25, 'EXECUTED', '8:ddef40b95c55cf4ac0e6a5161911a4cb', 'addColumn tableName=metabase_database; sql', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('27', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.683', 26, 'EXECUTED', '8:522ded869baeb030fa3889e16e28cbad', 'createTable tableName=dashboardcard_series; createIndex indexName=idx_dashboardcard_series_dashboardcard_id, tableName=dashboardcard_series; createIndex indexName=idx_dashboardcard_series_card_id, tableName=dashboardcard_series', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('28', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.692', 27, 'EXECUTED', '8:428e4eb05e4e29141735adf9ae141a0b', 'addColumn tableName=core_user', '', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('29', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.695', 28, 'EXECUTED', '8:8b02731cc34add3722c926dfd7376ae0', 'addColumn tableName=pulse_channel', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('30', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.7', 29, 'EXECUTED', '8:2c3a50cef177cb90d47a9973cd5934e5', 'addColumn tableName=metabase_field; addNotNullConstraint columnName=visibility_type, tableName=metabase_field', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('31', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.704', 30, 'EXECUTED', '8:30a33a82bab0bcbb2ccb6738d48e1421', 'addColumn tableName=metabase_field', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('32', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.712', 31, 'EXECUTED', '8:28afcfc9b7f1bd1b08caa9d527355c48', 'createTable tableName=label; createIndex indexName=idx_label_slug, tableName=label; createTable tableName=card_label; addUniqueConstraint constraintName=unique_card_label_card_id_label_id, tableName=card_label; createIndex indexName=idx_card_label...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('32', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.727', 32, 'EXECUTED', '8:ccbc51ac2b9446103414e98e68332036', 'createTable tableName=raw_table; createIndex indexName=idx_rawtable_database_id, tableName=raw_table; addUniqueConstraint constraintName=uniq_raw_table_db_schema_name, tableName=raw_table; createTable tableName=raw_column; createIndex indexName=id...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('34', 'tlrobinson', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.73', 33, 'EXECUTED', '8:52b082600b05bbbc46bfe837d1f37a82', 'addColumn tableName=pulse_channel', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('35', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.732', 34, 'EXECUTED', '8:91b72167fca724e6b6a94b64f886cf09', 'modifyDataType columnName=value, tableName=setting', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('36', 'agilliland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.74', 35, 'EXECUTED', '8:252e08892449dceb16c3d91337bd9573', 'addColumn tableName=report_dashboard; addNotNullConstraint columnName=parameters, tableName=report_dashboard; addColumn tableName=report_dashboardcard; addNotNullConstraint columnName=parameter_mappings, tableName=report_dashboardcard', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('37', 'tlrobinson', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.762', 36, 'EXECUTED', '8:07d959eff81777e5690e2920583cfe5f', 'addColumn tableName=query_queryexecution; addNotNullConstraint columnName=query_hash, tableName=query_queryexecution; createIndex indexName=idx_query_queryexecution_query_hash, tableName=query_queryexecution; createIndex indexName=idx_query_querye...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('38', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.8', 37, 'EXECUTED', '8:c9251b99ab1122ef441117d5d9852d29', 'addColumn tableName=metabase_database; addColumn tableName=metabase_table; addColumn tableName=metabase_field; addColumn tableName=report_dashboard; addColumn tableName=metric; addColumn tableName=segment; addColumn tableName=metabase_database; ad...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('39', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.808', 38, 'EXECUTED', '8:334adc22af5ded71ff27759b7a556951', 'addColumn tableName=core_user', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('40', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.826', 39, 'EXECUTED', '8:69326196bb1696f76fbce059b6d7520e', 'createTable tableName=permissions_group; createIndex indexName=idx_permissions_group_name, tableName=permissions_group; createTable tableName=permissions_group_membership; addUniqueConstraint constraintName=unique_permissions_group_membership_user...', '', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('41', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.832', 40, 'EXECUTED', '8:fae0855adf2f702f1133e32fc98d02a5', 'dropColumn columnName=field_type, tableName=metabase_field; addDefaultValue columnName=active, tableName=metabase_field; addDefaultValue columnName=preview_display, tableName=metabase_field; addDefaultValue columnName=position, tableName=metabase_...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('42', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.861', 41, 'EXECUTED', '8:e32b3a1624fa289a6ee1f3f0a2dac1f6', 'dropForeignKeyConstraint baseTableName=query_queryexecution, constraintName=fk_queryexecution_ref_query_id; dropColumn columnName=query_id, tableName=query_queryexecution; dropColumn columnName=is_staff, tableName=core_user; dropColumn columnName=...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('43', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.866', 42, 'EXECUTED', '8:3cf48c3e52ea315379a8ed538c9f2624', 'createTable tableName=permissions_revision', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('44', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.874', 43, 'EXECUTED', '8:2e356e8a1049286f1c78324828ee7867', 'dropColumn columnName=public_perms, tableName=report_card; dropColumn columnName=public_perms, tableName=report_dashboard; dropColumn columnName=public_perms, tableName=pulse', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('45', 'tlrobinson', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.878', 44, 'EXECUTED', '8:421edd38ee0cb0983162f57193f81b0b', 'addColumn tableName=report_dashboardcard; addNotNullConstraint columnName=visualization_settings, tableName=report_dashboardcard', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('46', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.882', 45, 'EXECUTED', '8:131df3cdd9a8c67b32c5988a3fb7fe3d', 'addNotNullConstraint columnName=row, tableName=report_dashboardcard; addNotNullConstraint columnName=col, tableName=report_dashboardcard; addDefaultValue columnName=row, tableName=report_dashboardcard; addDefaultValue columnName=col, tableName=rep...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('47', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.892', 46, 'EXECUTED', '8:717ed16b2f279bd4fdf5c4aa2b5f5857', 'createTable tableName=collection; createIndex indexName=idx_collection_slug, tableName=collection; addColumn tableName=report_card; createIndex indexName=idx_card_collection_id, tableName=report_card', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('48', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.896', 47, 'EXECUTED', '8:b3b418a4bbcf558e40f5d32effd2c7da', 'createTable tableName=collection_revision', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('49', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.915', 48, 'EXECUTED', '8:a9a777c7ecd1c6a338126b800a8b46e8', 'addColumn tableName=report_card; addColumn tableName=report_card; createIndex indexName=idx_card_public_uuid, tableName=report_card; addColumn tableName=report_dashboard; addColumn tableName=report_dashboard; createIndex indexName=idx_dashboard_pu...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('50', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.931', 49, 'EXECUTED', '8:98a6ab6428ea7a589507464e34ade58a', 'addColumn tableName=report_card; addColumn tableName=report_card; addColumn tableName=report_dashboard; addColumn tableName=report_dashboard', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('51', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.937', 50, 'EXECUTED', '8:43c90b5b9f6c14bfd0e41cc0b184617e', 'createTable tableName=query_execution; createIndex indexName=idx_query_execution_started_at, tableName=query_execution; createIndex indexName=idx_query_execution_query_hash_started_at, tableName=query_execution', '', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('52', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.944', 51, 'EXECUTED', '8:329695cb161ceb86f6d9473819359351', 'createTable tableName=query_cache; createIndex indexName=idx_query_cache_updated_at, tableName=query_cache; addColumn tableName=report_card', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('53', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.947', 52, 'EXECUTED', '8:78d015c5090c57cd6972eb435601d3d0', 'createTable tableName=query', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('54', 'tlrobinson', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.95', 53, 'EXECUTED', '8:e410005b585f5eeb5f202076ff9468f7', 'addColumn tableName=pulse', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('55', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.961', 54, 'EXECUTED', '8:088fee4d7555e104bc96fed923bce9aa', 'addColumn tableName=report_dashboard; addColumn tableName=report_dashboard; createTable tableName=dashboard_favorite; addUniqueConstraint constraintName=unique_dashboard_favorite_user_id_dashboard_id, tableName=dashboard_favorite; createIndex inde...', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('56', 'wwwiiilll', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.968', 55, 'EXECUTED', '8:9f46051abaee599e2838733512a32ad0', 'addColumn tableName=core_user', 'Added 0.25.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('57', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.973', 56, 'EXECUTED', '8:aab81d477e2d19a9ab18c58b78c9af88', 'addColumn tableName=report_card', 'Added 0.25.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('58', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.979', 57, 'EXECUTED', '8:9e6d48acacceb109e0bd27e4e44a8cb4', 'createTable tableName=dimension; addUniqueConstraint constraintName=unique_dimension_field_id_name, tableName=dimension; createIndex indexName=idx_dimension_field_id, tableName=dimension', 'Added 0.25.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('59', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.983', 58, 'EXECUTED', '8:5b6ce52371e0e9eee88e6d766225a94b', 'addColumn tableName=metabase_field', 'Added 0.26.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('60', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.987', 59, 'EXECUTED', '8:2141162a1c99a5dd95e5a67c5595e6d7', 'addColumn tableName=metabase_database; addColumn tableName=metabase_database', 'Added 0.26.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('61', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.991', 60, 'EXECUTED', '8:7dded6fd5bf74d79b9a0b62511981272', 'addColumn tableName=metabase_field', 'Added 0.26.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('62', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.995', 61, 'EXECUTED', '8:cb32e6eaa1a2140703def2730f81fef2', 'addColumn tableName=metabase_database', 'Added 0.26.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('63', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:08.999', 62, 'EXECUTED', '8:226f73b9f6617495892d281b0f8303db', 'addColumn tableName=metabase_database', 'Added 0.26.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('64', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.001', 63, 'EXECUTED', '8:4dcc8ffd836b56756f494d5dfce07b50', 'dropForeignKeyConstraint baseTableName=raw_table, constraintName=fk_rawtable_ref_database', 'Added 0.26.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('66', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.003', 64, 'EXECUTED', '8:e77d66af8e3b83d46c5a0064a75a1aac', 'sql; sql', 'Added 0.26.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('67', 'attekei', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.007', 65, 'EXECUTED', '8:a03608d97e19b8a716989e918efad0a6', 'createTable tableName=computation_job; createTable tableName=computation_job_result', 'Added 0.27.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('68', 'sbelak', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.017', 66, 'EXECUTED', '8:b4ac06d133dfbdc6567d992c7e18c6ec', 'addColumn tableName=computation_job; addColumn tableName=computation_job', 'Added 0.27.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('69', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.025', 67, 'EXECUTED', '8:eadbe00e97eb53df4b3df60462f593f6', 'addColumn tableName=pulse; addColumn tableName=pulse; addColumn tableName=pulse; dropNotNullConstraint columnName=name, tableName=pulse', 'Added 0.27.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('70', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.029', 68, 'EXECUTED', '8:4e4eff7abb983b1127a32ba8107e7fb8', 'addColumn tableName=metabase_field; addNotNullConstraint columnName=database_type, tableName=metabase_field', 'Added 0.28.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('71', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.031', 69, 'EXECUTED', '8:755e5c3dd8a55793f29b2c95cb79c211', 'dropNotNullConstraint columnName=card_id, tableName=report_dashboardcard', 'Added 0.28.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('72', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.035', 70, 'EXECUTED', '8:4dc6debdf779ab9273cf2158a84bb154', 'addColumn tableName=pulse_card; addColumn tableName=pulse_card', 'Added 0.28.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('73', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.038', 71, 'EXECUTED', '8:3c0f03d18ff78a0bcc9915e1d9c518d6', 'addColumn tableName=metabase_database', 'Added 0.29.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('74', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.041', 72, 'EXECUTED', '8:16726d6560851325930c25caf3c8ab96', 'addColumn tableName=metabase_field', 'Added 0.29.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('75', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.047', 73, 'EXECUTED', '8:6072cabfe8188872d8e3da9a675f88c1', 'addColumn tableName=report_card', 'Added 0.28.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('76', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.051', 74, 'EXECUTED', '8:9b7190c9171ccca72617d508875c3c82', 'addColumn tableName=metabase_table', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('77', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.059', 75, 'EXECUTED', '8:07f0a6cd8dbbd9b89be0bd7378f7bdc8', 'addColumn tableName=core_user', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('78', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.064', 76, 'EXECUTED', '8:8ea54a54fa04fe657b0b8072125981af', 'createTable tableName=group_table_access_policy; createIndex indexName=idx_gtap_table_id_group_id, tableName=group_table_access_policy; addUniqueConstraint constraintName=unique_gtap_table_id_group_id, tableName=group_table_access_policy', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('79', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.072', 77, 'EXECUTED', '8:37825e0d48bd4ed5cf1a068de30edc60', 'addColumn tableName=report_dashboard; createIndex indexName=idx_dashboard_collection_id, tableName=report_dashboard; addColumn tableName=pulse; createIndex indexName=idx_pulse_collection_id, tableName=pulse', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('80', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.076', 78, 'EXECUTED', '8:199d0ce28955117819ca15bcc29323e5', 'addColumn tableName=collection; createIndex indexName=idx_collection_location, tableName=collection', '', NULL, '4.10.0', NULL, NULL, '0912528239'), +('81', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.087', 79, 'EXECUTED', '8:3a6dc22403660529194d004ca7f7ad39', 'addColumn tableName=report_dashboard; addColumn tableName=report_card; addColumn tableName=pulse', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('82', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.095', 80, 'EXECUTED', '8:ac4b94df8c648f88cfff661284d6392d', 'addColumn tableName=core_user; sql', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('83', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.096', 81, 'EXECUTED', '8:ccd897d737737c05248293c7d56efe96', 'dropNotNullConstraint columnName=card_id, tableName=group_table_access_policy', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('84', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.102', 82, 'EXECUTED', '8:58afc10c3e283a8050ea471aac447a97', 'renameColumn newColumnName=archived, oldColumnName=is_active, tableName=metric; addDefaultValue columnName=archived, tableName=metric; renameColumn newColumnName=archived, oldColumnName=is_active, tableName=segment; addDefaultValue columnName=arch...', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('85', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.116', 83, 'EXECUTED', '8:624bb71d09dc2bef7c16c025f57edff0', 'addColumn tableName=collection; createIndex indexName=idx_collection_personal_owner_id, tableName=collection; addColumn tableName=collection; sql; addNotNullConstraint columnName=_slug, tableName=collection; dropColumn columnName=slug, tableName=c...', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('86', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.118', 84, 'EXECUTED', '8:50c75bb29f479e0b3fb782d89f7d6717', 'sql', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('87', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.121', 85, 'EXECUTED', '8:0eccf19a93cb0ba4017aafd1d308c097', 'dropTable tableName=raw_column; dropTable tableName=raw_table', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('88', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.132', 86, 'EXECUTED', '8:04ff5a0738473938fc31d68c1d9952e1', 'addColumn tableName=core_user', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('89', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.16', 87, 'EXECUTED', '8:ab526907b26b1bb43ac9f9548043f2a7', 'createTable tableName=QRTZ_JOB_DETAILS; addPrimaryKey constraintName=PK_QRTZ_JOB_DETAILS, tableName=QRTZ_JOB_DETAILS; createTable tableName=QRTZ_TRIGGERS; addPrimaryKey constraintName=PK_QRTZ_TRIGGERS, tableName=QRTZ_TRIGGERS; addForeignKeyConstra...', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('90', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.179', 88, 'EXECUTED', '8:8562a72a1190deadc5fa59a23a6396dc', 'addColumn tableName=core_user; sql; dropColumn columnName=saml_auth, tableName=core_user', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('91', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.187', 89, 'EXECUTED', '8:9b8831e1e409f08e874c4ece043d0340', 'dropColumn columnName=raw_table_id, tableName=metabase_table; dropColumn columnName=raw_column_id, tableName=metabase_field', 'Added 0.30.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('92', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.19', 90, 'EXECUTED', '8:1e5bc2d66778316ea640a561862c23b4', 'addColumn tableName=query_execution', 'Added 0.31.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('93', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.193', 91, 'EXECUTED', '8:93b0d408a3970e30d7184ed1166b5476', 'addColumn tableName=query', 'Added 0.31.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('94', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.196', 92, 'EXECUTED', '8:a2a1eedf1e8f8756856c9d49c7684bfe', 'createTable tableName=task_history; createIndex indexName=idx_task_history_end_time, tableName=task_history; createIndex indexName=idx_task_history_db_id, tableName=task_history', 'Added 0.31.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('95', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.203', 93, 'EXECUTED', '8:9824808283004e803003b938399a4cf0', 'addUniqueConstraint constraintName=idx_databasechangelog_id_author_filename, tableName=DATABASECHANGELOG', 'Added 0.31.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('96', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.208', 94, 'EXECUTED', '8:5cb2f36edcca9c6e14c5e109d6aeb68b', 'addColumn tableName=metabase_field', 'Added 0.31.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('97', 'senior', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.211', 95, 'MARK_RAN', '8:9169e238663c5d036bd83428d2fa8e4b', 'modifyDataType columnName=results, tableName=query_cache', 'Added 0.32.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('98', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.214', 96, 'EXECUTED', '8:f036d20a4dc86fb60ffb64ea838ed6b9', 'addUniqueConstraint constraintName=idx_uniq_table_db_id_schema_name, tableName=metabase_table; sql', 'Added 0.32.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('99', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.216', 97, 'EXECUTED', '8:274bb516dd95b76c954b26084eed1dfe', 'addUniqueConstraint constraintName=idx_uniq_field_table_id_parent_id_name, tableName=metabase_field; sql', 'Added 0.32.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('100', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.219', 98, 'EXECUTED', '8:28b6b684c539d4668110b920985ee363', 'sql; sql', 'Added 0.32.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('101', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.22', 99, 'EXECUTED', '8:58eabb08a175fafe8985208545374675', 'createIndex indexName=idx_field_parent_id, tableName=metabase_field', 'Added 0.32.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('103', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.224', 100, 'EXECUTED', '8:fda3670fd16a40fd9d0f89a003098d54', 'addColumn tableName=metabase_database', 'Added 0.32.10', NULL, '4.10.0', NULL, NULL, '0912528239'), +('104', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.227', 101, 'EXECUTED', '8:21709f17e6d1b521d3d3b8cbb5445218', 'addColumn tableName=core_session', 'Added EE 1.1.6/CE 0.33.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('106', 'sb', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.235', 102, 'EXECUTED', '8:a3dd42bbe25c415ce21e4c180dc1c1d7', 'modifyDataType columnName=database_type, tableName=metabase_field', 'Added 0.33.5', NULL, '4.10.0', NULL, NULL, '0912528239'), +('107', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.237', 103, 'MARK_RAN', '8:605c2b4d212315c83727aa3d914cf57f', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('108', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.239', 104, 'MARK_RAN', '8:d11419da9384fd27d7b1670707ac864c', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('109', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.24', 105, 'MARK_RAN', '8:a5f4ea412eb1d5c1bc824046ad11692f', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('110', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.241', 106, 'MARK_RAN', '8:82343097044b9652f73f3d3a2ddd04fe', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('111', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.243', 107, 'MARK_RAN', '8:528de1245ba3aa106871d3e5b3eee0ba', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('112', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.244', 108, 'MARK_RAN', '8:010a3931299429d1adfa91941c806ea4', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('113', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.245', 109, 'MARK_RAN', '8:8f8e0836064bdea82487ecf64a129767', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('114', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.247', 110, 'MARK_RAN', '8:7a0bcb25ece6d9a311d6c6be7ed89bb7', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('115', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.248', 111, 'MARK_RAN', '8:55c10c2ff7e967e3ea1fdffc5aeed93a', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('116', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.25', 112, 'MARK_RAN', '8:dbf7c3a1d8b1eb77b7f5888126b13c2e', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('117', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.252', 113, 'MARK_RAN', '8:f2d7f9fb1b6713bc5362fe40bfe3f91f', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('118', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.253', 114, 'MARK_RAN', '8:17f4410e30a0c7e84a36517ebf4dab64', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('119', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.255', 115, 'MARK_RAN', '8:195cf171ac1d5531e455baf44d9d6561', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('120', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.256', 116, 'MARK_RAN', '8:61f53fac337020aec71868656a719bba', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('121', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.257', 117, 'MARK_RAN', '8:1baa145d2ffe1e18d097a63a95476c5f', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('122', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.259', 118, 'MARK_RAN', '8:929b3c551a8f631cdce2511612d82d62', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('123', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.26', 119, 'MARK_RAN', '8:35e5baddf78df5829fe6889d216436e5', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('124', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.262', 120, 'MARK_RAN', '8:ce2322ca187dfac51be8f12f6a132818', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('125', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.263', 121, 'MARK_RAN', '8:dd948ac004ceb9d0a300a8e06806945f', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('126', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.265', 122, 'MARK_RAN', '8:3d34c0d4e5dbb32b432b83d5322e2aa3', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('127', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.266', 123, 'MARK_RAN', '8:18314b269fe11898a433ca9048400975', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('128', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.268', 124, 'MARK_RAN', '8:44acbe257817286d88b7892e79363b66', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('129', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.269', 125, 'MARK_RAN', '8:f890168c47cc2113a8af77ed3875c4b3', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('130', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.271', 126, 'MARK_RAN', '8:ecdcf1fd66b3477e5b6882c3286b2fd8', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('131', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.272', 127, 'MARK_RAN', '8:453af2935194978c65b19eae445d85c9', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('132', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.274', 128, 'MARK_RAN', '8:d2c37bc80b42a15b65f148bcb1daa86e', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('133', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.276', 129, 'MARK_RAN', '8:5b9b539d146fbdb762577dc98e7f3430', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('134', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.277', 130, 'MARK_RAN', '8:4d0f688a168db3e357a808263b6ad355', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('135', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.279', 131, 'MARK_RAN', '8:2ca54b0828c6aca615fb42064f1ec728', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('136', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.28', 132, 'MARK_RAN', '8:7115eebbcf664509b9fc0c39cb6f29e9', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('137', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.281', 133, 'MARK_RAN', '8:da754ac6e51313a32de6f6389b29e1ca', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('138', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.283', 134, 'MARK_RAN', '8:bfb201761052189e96538f0de3ac76cf', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('139', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.284', 135, 'MARK_RAN', '8:fdad4ec86aefb0cdf850b1929b618508', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('140', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.286', 136, 'MARK_RAN', '8:a0cfe6468160bba8c9d602da736c41fb', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('141', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.287', 137, 'MARK_RAN', '8:b6b7faa02cba069e1ed13e365f59cb6b', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('142', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.288', 138, 'MARK_RAN', '8:0c291eb50cc0f1fef3d55cfe6b62bedb', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('143', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.29', 139, 'MARK_RAN', '8:3d9a5cb41f77a33e834d0562fdddeab6', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('144', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.291', 140, 'MARK_RAN', '8:1d5b7f79f97906105e90d330a17c4062', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('145', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.293', 141, 'MARK_RAN', '8:b162dd48ef850ab4300e2d714eac504e', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('146', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.294', 142, 'MARK_RAN', '8:8c0c1861582d15fe7859358f5d553c91', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('147', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.295', 143, 'MARK_RAN', '8:5ccf590332ea0744414e40a990a43275', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('148', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.297', 144, 'MARK_RAN', '8:12b42e87d40cd7b6399c1fb0c6704fa7', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('149', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.298', 145, 'MARK_RAN', '8:dd45bfc4af5e05701a064a5f2a046d7f', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('150', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.3', 146, 'MARK_RAN', '8:48beda94aeaa494f798c38a66b90fb2a', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('151', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.301', 147, 'MARK_RAN', '8:bb752a7d09d437c7ac294d5ab2600079', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('152', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.302', 148, 'MARK_RAN', '8:4bcbc472f2d6ae3a5e7eca425940e52b', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('153', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.304', 149, 'MARK_RAN', '8:adce2cca96fe0531b00f9bed6bed8352', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('154', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.305', 150, 'MARK_RAN', '8:7a1df4f7a679f47459ea1a1c0991cfba', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('155', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.307', 151, 'MARK_RAN', '8:3c78b79c784e3a3ce09a77db1b1d0374', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('156', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.308', 152, 'MARK_RAN', '8:51859ee6cca4aca9d141a3350eb5d6b1', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('157', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.31', 153, 'MARK_RAN', '8:0197c46bf8536a75dbf7e9aee731f3b2', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('158', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.312', 154, 'MARK_RAN', '8:2ebdd5a179ce2487b2e23b6be74a407c', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('159', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.313', 155, 'MARK_RAN', '8:c62719dad239c51f045315273b56e2a9', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('160', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.314', 156, 'MARK_RAN', '8:1441c71af662abb809cba3b3b360ce81', 'sql', 'Added 0.34.2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('162', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.352', 157, 'EXECUTED', '8:c37f015ad11d77d66e09925eed605cdf', 'dropTable tableName=query_queryexecution', 'Added 0.23.0 as a data migration; converted to Liquibase migration in 0.35.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('163', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.358', 158, 'EXECUTED', '8:9ef66a82624d70738fc89807a2398ed1', 'dropColumn columnName=read_permissions, tableName=report_card', 'Added 0.35.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('164', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.367', 159, 'EXECUTED', '8:f19470701bbb33f19f91b1199a915881', 'addColumn tableName=core_user', 'Added 0.35.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('165', 'sb', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.377', 160, 'EXECUTED', '8:b3ae2b90db5c4264ea2ac50d304d6ad4', 'addColumn tableName=metabase_field; addColumn tableName=metabase_field; addColumn tableName=metabase_table; sql', 'Added field_order to Table and database_position to Field', NULL, '4.10.0', NULL, NULL, '0912528239'), +('166', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.381', 161, 'EXECUTED', '8:92dafa5c15c46e2af8380304449c7dfa', 'modifyDataType columnName=updated_at, tableName=metabase_fieldvalues; modifyDataType columnName=updated_at, tableName=query_cache', 'Added 0.36.0/1.35.4', NULL, '4.10.0', NULL, NULL, '0912528239'), +('167', 'walterl, camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.386', 162, 'EXECUTED', '8:4ed8c3a2d7d00700cc564095ddbb290f', 'sql; createTable tableName=native_query_snippet; createIndex indexName=idx_snippet_name, tableName=native_query_snippet', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('168', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.389', 163, 'EXECUTED', '8:6d40bfa472bccd2d54284aeb89e1ec3c', 'modifyDataType columnName=started_at, tableName=query_execution', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('169', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.393', 164, 'EXECUTED', '8:2b97e6eaa7854e179abb9f3749f73b18', 'dropColumn columnName=rows, tableName=metabase_table', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('170', 'sb', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.397', 165, 'EXECUTED', '8:dbd6ee52b0f9195e449a6d744606b599', 'dropColumn columnName=fields_hash, tableName=metabase_table', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('171', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.401', 166, 'EXECUTED', '8:57f4fb33fe80309af71dc8c0c8d90362', 'addColumn tableName=native_query_snippet; createIndex indexName=idx_snippet_collection_id, tableName=native_query_snippet', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('172', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.406', 167, 'EXECUTED', '8:212f4010b504e358853fd017032f844f', 'addColumn tableName=collection', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('173', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.407', 168, 'EXECUTED', '8:4d32b4b7be3f4801e51aeffa5dd47649', 'dropForeignKeyConstraint baseTableName=activity, constraintName=fk_activity_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('174', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.411', 169, 'EXECUTED', '8:66f31503ba532702e54ea531af668531', 'addForeignKeyConstraint baseTableName=activity, constraintName=fk_activity_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('175', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.413', 170, 'EXECUTED', '8:c3ceddfca8827d73474cd9a70ea01d1c', 'dropForeignKeyConstraint baseTableName=card_label, constraintName=fk_card_label_ref_card_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('176', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.415', 171, 'EXECUTED', '8:89c918faa84b7f3f5fa291d4da74414c', 'addForeignKeyConstraint baseTableName=card_label, constraintName=fk_card_label_ref_card_id, referencedTableName=report_card', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('177', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.417', 172, 'EXECUTED', '8:d45f2198befc83de1f1f963c750607af', 'dropForeignKeyConstraint baseTableName=card_label, constraintName=fk_card_label_ref_label_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('178', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.419', 173, 'EXECUTED', '8:63d396999449da2d42b3d3e22f3454fa', 'addForeignKeyConstraint baseTableName=card_label, constraintName=fk_card_label_ref_label_id, referencedTableName=label', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('179', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.421', 174, 'EXECUTED', '8:2a0a7956402ef074e5d54c73ac2d5405', 'dropForeignKeyConstraint baseTableName=collection, constraintName=fk_collection_personal_owner_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('180', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.423', 175, 'EXECUTED', '8:b02225e5940a2bcca3d550f24f80123e', 'addForeignKeyConstraint baseTableName=collection, constraintName=fk_collection_personal_owner_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('181', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.426', 176, 'EXECUTED', '8:16923f06b2bbb60c6ac78a0c4b7e4d4f', 'dropForeignKeyConstraint baseTableName=collection_revision, constraintName=fk_collection_revision_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('182', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.428', 177, 'EXECUTED', '8:d59d864c038c530a49056704c93f231d', 'addForeignKeyConstraint baseTableName=collection_revision, constraintName=fk_collection_revision_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('183', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.43', 178, 'EXECUTED', '8:c5ed9a4f44ee92af620a47c80e010a6b', 'dropForeignKeyConstraint baseTableName=computation_job, constraintName=fk_computation_job_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('184', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.432', 179, 'EXECUTED', '8:70317e2bdaac90b9ddc33b1b93ada479', 'addForeignKeyConstraint baseTableName=computation_job, constraintName=fk_computation_job_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('185', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.434', 180, 'EXECUTED', '8:12e7457ec2d2b1a99a3fadfc64d7b7f9', 'dropForeignKeyConstraint baseTableName=computation_job_result, constraintName=fk_computation_result_ref_job_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('186', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.436', 181, 'EXECUTED', '8:526987d0f6b2f01d7bfc9e3179721be6', 'addForeignKeyConstraint baseTableName=computation_job_result, constraintName=fk_computation_result_ref_job_id, referencedTableName=computation_job', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('187', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.438', 182, 'EXECUTED', '8:3fbb75c0c491dc6628583184202b8f39', 'dropForeignKeyConstraint baseTableName=core_session, constraintName=fk_session_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('188', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.44', 183, 'EXECUTED', '8:4dc500830cd4c5715ca8b0956e37b3d5', 'addForeignKeyConstraint baseTableName=core_session, constraintName=fk_session_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('189', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.442', 184, 'EXECUTED', '8:e07396e0ee587dcf321d21cffa9eec29', 'dropForeignKeyConstraint baseTableName=dashboardcard_series, constraintName=fk_dashboardcard_series_ref_card_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('190', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.445', 185, 'EXECUTED', '8:eded791094a16bf398896c790645c411', 'addForeignKeyConstraint baseTableName=dashboardcard_series, constraintName=fk_dashboardcard_series_ref_card_id, referencedTableName=report_card', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('191', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.446', 186, 'EXECUTED', '8:bb5b9a3d64b2e44318e159e7f1fecde2', 'dropForeignKeyConstraint baseTableName=dashboardcard_series, constraintName=fk_dashboardcard_series_ref_dashboardcard_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('192', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.449', 187, 'EXECUTED', '8:7d96911036dec2fee64fe8ae57c131b3', 'addForeignKeyConstraint baseTableName=dashboardcard_series, constraintName=fk_dashboardcard_series_ref_dashboardcard_id, referencedTableName=report_dashboardcard', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('193', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.452', 188, 'EXECUTED', '8:db171179fe094db9fee7e2e7df60fa4e', 'dropForeignKeyConstraint baseTableName=group_table_access_policy, constraintName=fk_gtap_card_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('194', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.455', 189, 'EXECUTED', '8:fccb724d7ae7606e2e7638de1791392a', 'addForeignKeyConstraint baseTableName=group_table_access_policy, constraintName=fk_gtap_card_id, referencedTableName=report_card', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('195', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.457', 190, 'EXECUTED', '8:1d720af9f917007024c91d40410bc91d', 'dropForeignKeyConstraint baseTableName=metabase_field, constraintName=fk_field_parent_ref_field_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('196', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.46', 191, 'EXECUTED', '8:c52f5dbf742feef12a3803bda92a425b', 'addForeignKeyConstraint baseTableName=metabase_field, constraintName=fk_field_parent_ref_field_id, referencedTableName=metabase_field', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('197', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.462', 192, 'EXECUTED', '8:9c1c950b709050abe91cea17fd5970cc', 'dropForeignKeyConstraint baseTableName=metabase_field, constraintName=fk_field_ref_table_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('198', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.464', 193, 'EXECUTED', '8:e24198ff4825a41d17ceaebd71692103', 'addForeignKeyConstraint baseTableName=metabase_field, constraintName=fk_field_ref_table_id, referencedTableName=metabase_table', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('199', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.466', 194, 'EXECUTED', '8:146efae3f2938538961835fe07433ee1', 'dropForeignKeyConstraint baseTableName=metabase_fieldvalues, constraintName=fk_fieldvalues_ref_field_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('200', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.468', 195, 'EXECUTED', '8:f5e7e79cb81b8d2245663c482746c853', 'addForeignKeyConstraint baseTableName=metabase_fieldvalues, constraintName=fk_fieldvalues_ref_field_id, referencedTableName=metabase_field', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('201', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.47', 196, 'EXECUTED', '8:2d79321a27fde6cb3c4fabdb86dc60ec', 'dropForeignKeyConstraint baseTableName=metabase_table, constraintName=fk_table_ref_database_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('202', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.472', 197, 'EXECUTED', '8:d0cefed061c4abbf2b0a0fd2a66817cb', 'addForeignKeyConstraint baseTableName=metabase_table, constraintName=fk_table_ref_database_id, referencedTableName=metabase_database', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('203', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.474', 198, 'EXECUTED', '8:28b4ec07bfbf4b86532fe9357effdb8b', 'dropForeignKeyConstraint baseTableName=metric, constraintName=fk_metric_ref_creator_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('204', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.476', 199, 'EXECUTED', '8:7195937fd2144533edfa2302ba2ae653', 'addForeignKeyConstraint baseTableName=metric, constraintName=fk_metric_ref_creator_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('205', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.478', 200, 'EXECUTED', '8:4b2d5f1458641dd1b9dbc5f41600be8e', 'dropForeignKeyConstraint baseTableName=metric, constraintName=fk_metric_ref_table_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('206', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.48', 201, 'EXECUTED', '8:959ef448c23aaf3acf5b69f297fe4b2f', 'addForeignKeyConstraint baseTableName=metric, constraintName=fk_metric_ref_table_id, referencedTableName=metabase_table', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('207', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.482', 202, 'EXECUTED', '8:18135d674f2fe502313adb0475f5f139', 'dropForeignKeyConstraint baseTableName=metric_important_field, constraintName=fk_metric_important_field_metabase_field_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('208', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.484', 203, 'EXECUTED', '8:4c86c17a00a81dfdf35a181e3dd3b08f', 'addForeignKeyConstraint baseTableName=metric_important_field, constraintName=fk_metric_important_field_metabase_field_id, referencedTableName=metabase_field', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('209', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.486', 204, 'EXECUTED', '8:1b9c3544bf89093fc9e4f7f191fdc6df', 'dropForeignKeyConstraint baseTableName=metric_important_field, constraintName=fk_metric_important_field_metric_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('210', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.488', 205, 'EXECUTED', '8:842d166cdf7b0a29c88efdaf95c9d0bf', 'addForeignKeyConstraint baseTableName=metric_important_field, constraintName=fk_metric_important_field_metric_id, referencedTableName=metric', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('211', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.49', 206, 'EXECUTED', '8:91c64815a1aefb07dd124d493bfeeea9', 'dropForeignKeyConstraint baseTableName=native_query_snippet, constraintName=fk_snippet_collection_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('212', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.493', 207, 'EXECUTED', '8:b25064ee26b71f61906a833bc22ebbc2', 'addForeignKeyConstraint baseTableName=native_query_snippet, constraintName=fk_snippet_collection_id, referencedTableName=collection', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('213', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.496', 208, 'EXECUTED', '8:60a7d628e4f68ee4c85f5f298b1d9865', 'dropForeignKeyConstraint baseTableName=permissions, constraintName=fk_permissions_group_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('214', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.498', 209, 'EXECUTED', '8:1c3c480313967a2d9f324a094ba25f4d', 'addForeignKeyConstraint baseTableName=permissions, constraintName=fk_permissions_group_id, referencedTableName=permissions_group', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('215', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.501', 210, 'EXECUTED', '8:5d2c67ccead52970e9d85beb7eda48b9', 'dropForeignKeyConstraint baseTableName=permissions_group_membership, constraintName=fk_permissions_group_group_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('216', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.504', 211, 'EXECUTED', '8:35fcd5d48600e887188eb1b990e6cc35', 'addForeignKeyConstraint baseTableName=permissions_group_membership, constraintName=fk_permissions_group_group_id, referencedTableName=permissions_group', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('217', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.506', 212, 'EXECUTED', '8:da7460a35a724109ae9b5096cd18666b', 'dropForeignKeyConstraint baseTableName=permissions_group_membership, constraintName=fk_permissions_group_membership_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('218', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.508', 213, 'EXECUTED', '8:dc04b7eb04cd870c53102cb37fd75a5f', 'addForeignKeyConstraint baseTableName=permissions_group_membership, constraintName=fk_permissions_group_membership_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('219', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.51', 214, 'EXECUTED', '8:02c690f34fe8803e42441f5037d33017', 'dropForeignKeyConstraint baseTableName=permissions_revision, constraintName=fk_permissions_revision_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('220', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.513', 215, 'EXECUTED', '8:8b8447405d7b2b52358c9676d64b7651', 'addForeignKeyConstraint baseTableName=permissions_revision, constraintName=fk_permissions_revision_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('221', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.515', 216, 'EXECUTED', '8:54a4c0d8a4eda80dc81fb549a629d075', 'dropForeignKeyConstraint baseTableName=pulse, constraintName=fk_pulse_collection_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('222', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.517', 217, 'EXECUTED', '8:c5f22e925be3a8fd0e4f47a491f599ee', 'addForeignKeyConstraint baseTableName=pulse, constraintName=fk_pulse_collection_id, referencedTableName=collection', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('223', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.521', 218, 'EXECUTED', '8:de743e384ff90a6a31a3caebe0abb775', 'dropForeignKeyConstraint baseTableName=pulse, constraintName=fk_pulse_ref_creator_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('224', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.523', 219, 'EXECUTED', '8:b8fdf9c14d7ea3131a0a6b1f1036f91a', 'addForeignKeyConstraint baseTableName=pulse, constraintName=fk_pulse_ref_creator_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('225', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.526', 220, 'EXECUTED', '8:495a4e12cf75cac5ff54738772e6a998', 'dropForeignKeyConstraint baseTableName=pulse_card, constraintName=fk_pulse_card_ref_card_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('226', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.528', 221, 'EXECUTED', '8:cf383d74bc407065c78c060203ba4560', 'addForeignKeyConstraint baseTableName=pulse_card, constraintName=fk_pulse_card_ref_card_id, referencedTableName=report_card', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('227', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.53', 222, 'EXECUTED', '8:e23eaf74ab7edacfb34bd5caf05cf66f', 'dropForeignKeyConstraint baseTableName=pulse_card, constraintName=fk_pulse_card_ref_pulse_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('228', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.532', 223, 'EXECUTED', '8:d458ddb160f61e93bb69738f262de2b4', 'addForeignKeyConstraint baseTableName=pulse_card, constraintName=fk_pulse_card_ref_pulse_id, referencedTableName=pulse', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('229', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.534', 224, 'EXECUTED', '8:1cb939d172989cb1629e9a3da768596d', 'dropForeignKeyConstraint baseTableName=pulse_channel, constraintName=fk_pulse_channel_ref_pulse_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('230', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.537', 225, 'EXECUTED', '8:62baea3334ac5f21feac84497f6bf643', 'addForeignKeyConstraint baseTableName=pulse_channel, constraintName=fk_pulse_channel_ref_pulse_id, referencedTableName=pulse', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('231', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.539', 226, 'EXECUTED', '8:d096a9ce70fc0b7dfbc67ee1be4c3e31', 'dropForeignKeyConstraint baseTableName=pulse_channel_recipient, constraintName=fk_pulse_channel_recipient_ref_pulse_channel_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('232', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.541', 227, 'EXECUTED', '8:be2457ae1e386c9d5ec5bfa4ae681fd6', 'addForeignKeyConstraint baseTableName=pulse_channel_recipient, constraintName=fk_pulse_channel_recipient_ref_pulse_channel_id, referencedTableName=pulse_channel', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('233', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.543', 228, 'EXECUTED', '8:d5c018882af16093de446e025e2599b7', 'dropForeignKeyConstraint baseTableName=pulse_channel_recipient, constraintName=fk_pulse_channel_recipient_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('234', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.546', 229, 'EXECUTED', '8:edb6ced6c353064c46fa00b54e187aef', 'addForeignKeyConstraint baseTableName=pulse_channel_recipient, constraintName=fk_pulse_channel_recipient_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('235', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.547', 230, 'EXECUTED', '8:550c64e41e55233d52ac3ef24d664be1', 'dropForeignKeyConstraint baseTableName=report_card, constraintName=fk_card_collection_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('236', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.55', 231, 'EXECUTED', '8:04300b298b663fc2a2f3a324d1051c3c', 'addForeignKeyConstraint baseTableName=report_card, constraintName=fk_card_collection_id, referencedTableName=collection', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('237', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.552', 232, 'EXECUTED', '8:227a9133cdff9f1b60d8af53688ab12e', 'dropForeignKeyConstraint baseTableName=report_card, constraintName=fk_card_made_public_by_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('238', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.554', 233, 'EXECUTED', '8:7000766ddca2c914ac517611e7d86549', 'addForeignKeyConstraint baseTableName=report_card, constraintName=fk_card_made_public_by_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('239', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.556', 234, 'EXECUTED', '8:672f4972653f70464982008a7abea3e1', 'dropForeignKeyConstraint baseTableName=report_card, constraintName=fk_card_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('240', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.559', 235, 'EXECUTED', '8:165b07c8ceb004097c83ee1b689164e4', 'addForeignKeyConstraint baseTableName=report_card, constraintName=fk_card_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('241', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.56', 236, 'EXECUTED', '8:b0a9e3d801e64e0a66c3190e458c01ae', 'dropForeignKeyConstraint baseTableName=report_card, constraintName=fk_report_card_ref_database_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('242', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.563', 237, 'EXECUTED', '8:bf10f944715f87c3ad0dd7472d84df62', 'addForeignKeyConstraint baseTableName=report_card, constraintName=fk_report_card_ref_database_id, referencedTableName=metabase_database', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('243', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.564', 238, 'EXECUTED', '8:cba5d2bfb36e13c60d82cc6cca659b61', 'dropForeignKeyConstraint baseTableName=report_card, constraintName=fk_report_card_ref_table_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('244', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.567', 239, 'EXECUTED', '8:4d40104eaa47d01981644462ef56f369', 'addForeignKeyConstraint baseTableName=report_card, constraintName=fk_report_card_ref_table_id, referencedTableName=metabase_table', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('245', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.568', 240, 'EXECUTED', '8:a8f9206dadfe23662d547035f71e3846', 'dropForeignKeyConstraint baseTableName=report_cardfavorite, constraintName=fk_cardfavorite_ref_card_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('246', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.57', 241, 'EXECUTED', '8:e5db34b9db22254f7445fd65ecf45356', 'addForeignKeyConstraint baseTableName=report_cardfavorite, constraintName=fk_cardfavorite_ref_card_id, referencedTableName=report_card', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('247', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.572', 242, 'EXECUTED', '8:76de7337a12a5ef42dcbb9274bd2d70f', 'dropForeignKeyConstraint baseTableName=report_cardfavorite, constraintName=fk_cardfavorite_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('248', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.575', 243, 'EXECUTED', '8:0640fb00a090cbe5dc545afbe0d25811', 'addForeignKeyConstraint baseTableName=report_cardfavorite, constraintName=fk_cardfavorite_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('249', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.58', 244, 'EXECUTED', '8:16ef5909a72ac4779427e432b3b3ce18', 'dropForeignKeyConstraint baseTableName=report_dashboard, constraintName=fk_dashboard_collection_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('250', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.583', 245, 'EXECUTED', '8:2e80ebe19816b7bde99050638772cf99', 'addForeignKeyConstraint baseTableName=report_dashboard, constraintName=fk_dashboard_collection_id, referencedTableName=collection', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('251', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.586', 246, 'EXECUTED', '8:c12aa099f293b1e3d71da5e3edb3c45a', 'dropForeignKeyConstraint baseTableName=report_dashboard, constraintName=fk_dashboard_made_public_by_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('252', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.589', 247, 'EXECUTED', '8:26b16d4d0cf7a77c1d687f49b029f421', 'addForeignKeyConstraint baseTableName=report_dashboard, constraintName=fk_dashboard_made_public_by_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('253', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.592', 248, 'EXECUTED', '8:bbf118edaa88a8ad486ec0d6965504b6', 'dropForeignKeyConstraint baseTableName=report_dashboard, constraintName=fk_dashboard_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('254', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.596', 249, 'EXECUTED', '8:7fc35d78c63f41eb4dbd23cfd1505f0b', 'addForeignKeyConstraint baseTableName=report_dashboard, constraintName=fk_dashboard_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('255', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.599', 250, 'EXECUTED', '8:f6564a7516ace55104a3173eebf4c629', 'dropForeignKeyConstraint baseTableName=report_dashboardcard, constraintName=fk_dashboardcard_ref_card_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('256', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.602', 251, 'EXECUTED', '8:61db9be3b4dd7ed1e9d01a7254e87544', 'addForeignKeyConstraint baseTableName=report_dashboardcard, constraintName=fk_dashboardcard_ref_card_id, referencedTableName=report_card', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('257', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.604', 252, 'EXECUTED', '8:c8b51dc7ba4da9f7995a0b0c17fadad2', 'dropForeignKeyConstraint baseTableName=report_dashboardcard, constraintName=fk_dashboardcard_ref_dashboard_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('258', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.606', 253, 'EXECUTED', '8:58974c6ad8aee63f09e6e48b1a78c267', 'addForeignKeyConstraint baseTableName=report_dashboardcard, constraintName=fk_dashboardcard_ref_dashboard_id, referencedTableName=report_dashboard', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('259', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.609', 254, 'EXECUTED', '8:be4a52feb3b12e655c0bbd34477749b0', 'dropForeignKeyConstraint baseTableName=revision, constraintName=fk_revision_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('260', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.611', 255, 'EXECUTED', '8:4b370f9c9073a6f8f585aab713c57f47', 'addForeignKeyConstraint baseTableName=revision, constraintName=fk_revision_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('261', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.614', 256, 'EXECUTED', '8:173fe552fdf72fdb4efbc01a6ac4f7ad', 'dropForeignKeyConstraint baseTableName=segment, constraintName=fk_segment_ref_creator_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('262', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.616', 257, 'EXECUTED', '8:50927b8b1d1809f32c11d2e649dbcb94', 'addForeignKeyConstraint baseTableName=segment, constraintName=fk_segment_ref_creator_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('263', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.618', 258, 'EXECUTED', '8:0b10c8664506917cc50359e9634c121c', 'dropForeignKeyConstraint baseTableName=segment, constraintName=fk_segment_ref_table_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('264', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.621', 259, 'EXECUTED', '8:b132aedf6fbdcc5d956a2d3a154cc035', 'addForeignKeyConstraint baseTableName=segment, constraintName=fk_segment_ref_table_id, referencedTableName=metabase_table', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('265', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.623', 260, 'EXECUTED', '8:2e339ecb05463b3765f9bb266bd28297', 'dropForeignKeyConstraint baseTableName=view_log, constraintName=fk_view_log_ref_user_id', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('266', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.625', 261, 'EXECUTED', '8:31506e118764f5e520f755f26c696bb8', 'addForeignKeyConstraint baseTableName=view_log, constraintName=fk_view_log_ref_user_id, referencedTableName=core_user', 'Added 0.36.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('268', 'rlotun', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.627', 262, 'MARK_RAN', '8:4ccc4d50f9b233bc6515780d9cae360b', 'createIndex indexName=idx_lower_email, tableName=core_user', 'Added 0.37.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('269', 'rlotun', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.63', 263, 'EXECUTED', '8:215609ca9dce2181687b4fa65e7351ba', 'sql', 'Added 0.37.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('270', 'rlotun', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.632', 264, 'MARK_RAN', '8:17001a192ba1df02104cc0d15569cbe5', 'sql', 'Added 0.37.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('271', 'rlotun', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.634', 265, 'MARK_RAN', '8:ce8ddb253a303d4f8924ff5a187080c0', 'modifyDataType columnName=email, tableName=core_user', 'Added 0.37.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('272', 'rlotun', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.642', 266, 'EXECUTED', '8:54ad09ee0c67d58e78ccafe9b1499379', 'modifyDataType columnName=email, tableName=core_user', 'Added 0.37.0', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('273', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.644', 267, 'EXECUTED', '8:5348576bb9852f6f947e1aa39cd1626f', 'addDefaultValue columnName=is_superuser, tableName=core_user', 'Added 0.37.1', NULL, '4.10.0', NULL, NULL, '0912528239'), +('274', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.646', 268, 'EXECUTED', '8:11a8a84b9ba7634aeda625ff3f487d22', 'addDefaultValue columnName=is_active, tableName=core_user', 'Added 0.37.1', NULL, '4.10.0', NULL, NULL, '0912528239'), +('275', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.65', 269, 'EXECUTED', '8:447d9e294f59dd1058940defec7e0f40', 'addColumn tableName=metabase_database', 'Added 0.38.0 refingerprint to Database', NULL, '4.10.0', NULL, NULL, '0912528239'), +('276', 'robroland', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.653', 270, 'EXECUTED', '8:ae43765761ef0f32c8a6f1fb88ead0ca', 'addColumn tableName=pulse_card', 'Added 0.38.0 - Dashboard subscriptions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('277', 'tsmacdonald', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.655', 271, 'EXECUTED', '8:367180f0820b72ad2c60212e67ae53e7', 'dropForeignKeyConstraint baseTableName=pulse_card, constraintName=fk_pulse_card_ref_pulse_card_id', 'Added 0.38.0 - Dashboard subscriptions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('278', 'tsmacdonald', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.658', 272, 'EXECUTED', '8:fc4fb1c1e3344374edd7b9f1f0d34c89', 'addForeignKeyConstraint baseTableName=pulse_card, constraintName=fk_pulse_card_ref_pulse_card_id, referencedTableName=report_dashboardcard', 'Added 0.38.0 - Dashboard subscrptions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('279', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.664', 273, 'EXECUTED', '8:63dfccd51b62b939da71fe4435f58679', 'addColumn tableName=pulse', 'Added 0.38.0 - Dashboard subscriptions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('280', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.666', 274, 'EXECUTED', '8:ae966ee1e40f20ea438daba954a8c2a6', 'addForeignKeyConstraint baseTableName=pulse, constraintName=fk_pulse_ref_dashboard_id, referencedTableName=report_dashboard', 'Added 0.38.0 - Dashboard subscriptions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('281', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.67', 275, 'EXECUTED', '8:3039286581c58eee7cca9c25fdf6d792', 'renameColumn newColumnName=semantic_type, oldColumnName=special_type, tableName=metabase_field', 'Added 0.39 - Semantic type system - rename special_type', NULL, '4.10.0', NULL, NULL, '0912528239'), +('282', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.675', 276, 'EXECUTED', '8:d4b8566ee11d9f8a3d6c8c9539f6526d', 'sql; sql; sql', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('283', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.679', 277, 'EXECUTED', '8:2220e1b1cdb57212820b96fa3107f7c3', 'sql; sql; sql', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('284', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.684', 278, 'EXECUTED', '8:c7dc9a60bcaf9b2ffcbaabd650c959b2', 'addColumn tableName=metabase_field', 'Added 0.39 - Semantic type system - add effective type', NULL, '4.10.0', NULL, NULL, '0912528239'), +('285', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.689', 279, 'EXECUTED', '8:cf7d6f5135fa3397a7dc67509d1c286e', 'addColumn tableName=metabase_field', 'Added 0.39 - Semantic type system - add coercion column', NULL, '4.10.0', NULL, NULL, '0912528239'), +('286', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.691', 280, 'EXECUTED', '8:bce9ab328411f05d8c52d64bff5bded0', 'sql', 'Added 0.39 - Semantic type system - set effective_type default', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('287', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.694', 281, 'EXECUTED', '8:0679eedae767a8648383aac2f923e413', 'sql', 'Added 0.39 - Semantic type system - migrate ISO8601 strings', NULL, '4.10.0', NULL, NULL, '0912528239'), +('288', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.697', 282, 'EXECUTED', '8:943c6dd0c9339729fefcee9207227849', 'sql', 'Added 0.39 - Semantic type system - migrate unix timestamps', NULL, '4.10.0', NULL, NULL, '0912528239'), +('289', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.7', 283, 'EXECUTED', '8:9f7f2e9bbf3236f204c644dc8ea7abef', 'sql', 'Added 0.39 - Semantic type system - migrate unix timestamps (corrects typo- seconds was migrated correctly, not millis and micros)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('290', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.702', 284, 'EXECUTED', '8:98ea7254bc843302db4afe493c4c75e6', 'sql', 'Added 0.39 - Semantic type system - Clobber semantic_type where there was a coercion', NULL, '4.10.0', NULL, NULL, '0912528239'), +('291', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.707', 285, 'EXECUTED', '8:f1b9110e87c7cb627c29fe6fb243b675', 'createTable tableName=login_history', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('292', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.709', 286, 'EXECUTED', '8:e4ac005f4d4e73d5e1176bcbde510d6e', 'createIndex indexName=idx_user_id, tableName=login_history', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('293', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.711', 287, 'EXECUTED', '8:7ba1bd887f8ae11a186b0e3fe69ab3e0', 'addForeignKeyConstraint baseTableName=login_history, constraintName=fk_login_history_session_id, referencedTableName=core_session', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('294', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.713', 288, 'EXECUTED', '8:88d7a9c88866af42b9f0e7c1df9c2fd0', 'createIndex indexName=idx_session_id, tableName=login_history', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('295', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.715', 289, 'EXECUTED', '8:501e85a50912649416ec22b2871af087', 'createIndex indexName=idx_timestamp, tableName=login_history', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('296', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.717', 290, 'EXECUTED', '8:f9eb8b15c2c889334f3848a6bb4ebdb4', 'createIndex indexName=idx_user_id_device_id, tableName=login_history', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('297', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.719', 291, 'EXECUTED', '8:06c180e4c8361f7550f6f4deaf9fc855', 'createIndex indexName=idx_user_id_timestamp, tableName=login_history', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('298', 'tsmacdonald', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.724', 292, 'EXECUTED', '8:3c73f77d8d939d14320964a35aeaad5e', 'addColumn tableName=pulse', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('299', 'tsmacdonald', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.726', 293, 'EXECUTED', '8:ee3a96e30b07f37240a933e2f0710082', 'addNotNullConstraint columnName=parameters, tableName=pulse', 'Added 0.39.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('300', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.729', 294, 'EXECUTED', '8:8b142aea1e3697d8630a4620ae763c4d', 'renameTable newTableName=collection_permission_graph_revision, oldTableName=collection_revision', 'Added 0.40.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('301', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.731', 295, 'MARK_RAN', '8:aaf1a546a6f5932a157d016f72c02f8a', 'sql', 'Added 0.40.0 renaming collection_revision to collection_permission_graph_revision', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('303', 'tsmacdonald', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.735', 296, 'EXECUTED', '8:506e174d6656b09ddedf19e97c0d3c3d', 'createTable tableName=moderation_review', 'Added 0.40.0', NULL, '4.10.0', NULL, NULL, '0912528239'), +('304', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.738', 297, 'EXECUTED', '8:35960cd7ee3081be719bfb5267ae1a83', 'sql', 'Added 0.40.0 (replaces a data migration dating back to 0.20.0)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('305', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.742', 298, 'EXECUTED', '8:0a0c65f58b80bf74c149a3854cbeeae4', 'sql', 'Added 0.40.0 (replaces a data migration dating back to 0.20.0)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('308', 'howonlee', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.746', 299, 'EXECUTED', '8:4a52c3a0391a0313a062b60a52c0d7de', 'addColumn tableName=query_execution', 'Added 0.40.0 Track cache hits in query_execution table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('309', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.752', 300, 'EXECUTED', '8:26cc1f3ba949d8ce0d56350caacffbd8', 'addColumn tableName=collection', 'Added 0.40.0 - Add type to collections', NULL, '4.10.0', NULL, NULL, '0912528239'), +('310', 'howonlee', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.756', 301, 'EXECUTED', '8:eeba2296f23236d035812360122fd065', 'update tableName=setting', 'Added 0.40.0 Migrate friendly field names', NULL, '4.10.0', NULL, NULL, '0912528239'), +('311', 'howonlee', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.758', 302, 'EXECUTED', '8:a26e31914822a5176848abbb7c5415bd', 'sql; sql', 'Added 0.40.0 Migrate friendly field names, not noop', NULL, '4.10.0', NULL, NULL, '0912528239'), +('312', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.761', 303, 'EXECUTED', '8:77ef89ba2e7bc19231d9364492091764', 'sql; sql; sql', 'Added 0.41.0 Backfill collection_id for dashboard subscriptions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('313', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.766', 304, 'EXECUTED', '8:b57e2a114a2273ff4a7754be789ea6fe', 'createTable tableName=secret', 'Added 0.42.0 - Secret domain object.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('314', 'howonlee', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.77', 305, 'EXECUTED', '8:c9ad2637412d91b26b616a4df4190704', 'addColumn tableName=metabase_database', 'Added 0.41.0 Fine grained caching controls', NULL, '4.10.0', NULL, NULL, '0912528239'), +('315', 'howonlee', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.775', 306, 'EXECUTED', '8:5b186b8ab743cde5a7f4bf5eadcd520c', 'addColumn tableName=report_dashboard', 'Added 0.41.0 Fine grained caching controls, pt 2', NULL, '4.10.0', NULL, NULL, '0912528239'), +('316', 'howonlee', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.779', 307, 'EXECUTED', '8:1b7c340684b27af9179613bc351e444f', 'addColumn tableName=view_log', 'Added 0.41.0 Fine grained caching controls, pt 3', NULL, '4.10.0', NULL, NULL, '0912528239'), +('381', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.781', 308, 'EXECUTED', '8:048be5b22042724ab3db240e14e43886', 'createIndex indexName=idx_query_execution_card_id, tableName=query_execution', 'Added 0.41.2 Add index to QueryExecution card_id to fix performance issues (#18759)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('382', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.783', 309, 'EXECUTED', '8:e8c01b2cf428b1e8968393cf31afb188', 'createIndex indexName=idx_moderation_review_item_type_item_id, tableName=moderation_review', 'Added 0.41.2 Add index to ModerationReview moderated_item_type + moderated_item_id to fix performance issues (#18759)', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('383', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.785', 310, 'EXECUTED', '8:eacd3281e0397c61047e4a69e725a5ec', 'createIndex indexName=idx_query_execution_card_id_started_at, tableName=query_execution', 'Added 0.41.3 -- Add index to QueryExecution card_id + started_at to fix performance issue', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-000', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.789', 311, 'EXECUTED', '8:5500782a64248810f4a5ca1dc9a6144d', 'dropColumn columnName=entity_name, tableName=metabase_table', 'Added 0.42.0 Remove unused column (#5240)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-001', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.791', 312, 'MARK_RAN', '8:9952153cbff16147bcb47b4a26e02089', 'sql; sql; sql', 'Added 0.42.0 Attempt to add Card.database_id (by parsing query) to rows that are missing it (#5999)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-002', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.794', 313, 'EXECUTED', '8:81e0ab53dd2e20cde32e7449155551c2', 'addNotNullConstraint columnName=database_id, tableName=report_card', 'Added 0.42.0 Added constraint we should have had all along (#5999)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-003', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.8', 314, 'EXECUTED', '8:4a2036164dac96df6066a0d633fab7b5', 'addColumn tableName=report_card', 'Added 0.42.0 Initial support for datasets based on questions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-004', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.802', 315, 'EXECUTED', '8:d9a1dbf5cdc249516796fd9ed81305a4', 'modifyDataType columnName=details, tableName=activity', 'Added 0.42.0 - modify type of activity.details from text to text', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-005', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.804', 316, 'MARK_RAN', '8:136b2b7ee7dd813b8d3a3154d1bea708', 'modifyDataType columnName=description, tableName=collection', 'Added 0.42.0 - modify type of collection.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-006', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.806', 317, 'MARK_RAN', '8:5fe4654ed7abd89f71eb9372ac208da3', 'modifyDataType columnName=name, tableName=collection', 'Added 0.42.0 - modify type of collection.name from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-007', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.808', 318, 'MARK_RAN', '8:592bfa5fba147bd0ba28c267c796a65d', 'modifyDataType columnName=context, tableName=computation_job', 'Added 0.42.0 - modify type of computation_job.context from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-008', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.81', 319, 'MARK_RAN', '8:ea964b569fd70a9f937967179ad96e96', 'modifyDataType columnName=payload, tableName=computation_job_result', 'Added 0.42.0 - modify type of computation_job_result.payload from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-009', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.812', 320, 'MARK_RAN', '8:faa3d926a4c1ea101a87f80469e4c3b5', 'modifyDataType columnName=anti_csrf_token, tableName=core_session', 'Added 0.42.0 - modify type of core_session.anti_csrf_token from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-010', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.813', 321, 'MARK_RAN', '8:1538ae25e827ae059a7cc4b7cf225258', 'modifyDataType columnName=login_attributes, tableName=core_user', 'Added 0.42.0 - modify type of core_user.login_attributes from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v42.00-011', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.815', 322, 'MARK_RAN', '8:5a13403a42ddb4948873a5f115bb949e', 'modifyDataType columnName=attribute_remappings, tableName=group_table_access_policy', 'Added 0.42.0 - modify type of group_table_access_policy.attribute_remappings from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-012', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.817', 323, 'MARK_RAN', '8:0f7f6537b8a60d83024bcfeff9c5c9d6', 'modifyDataType columnName=device_description, tableName=login_history', 'Added 0.42.0 - modify type of login_history.device_description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-013', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.818', 324, 'MARK_RAN', '8:0ee5d0c8b49419900a86acce11698b9f', 'modifyDataType columnName=ip_address, tableName=login_history', 'Added 0.42.0 - modify type of login_history.ip_address from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-014', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.82', 325, 'MARK_RAN', '8:49dfb6668ca9c8d1cabf8c9656e7ba5b', 'modifyDataType columnName=caveats, tableName=metabase_database', 'Added 0.42.0 - modify type of metabase_database.caveats from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-015', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.822', 326, 'MARK_RAN', '8:90a5ba43867c1a0772641ce942de8fe6', 'modifyDataType columnName=description, tableName=metabase_database', 'Added 0.42.0 - modify type of metabase_database.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-016', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.824', 327, 'MARK_RAN', '8:09ea3ac9939b25db92cc5d4053e6fd4a', 'modifyDataType columnName=details, tableName=metabase_database', 'Added 0.42.0 - modify type of metabase_database.details from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-017', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.825', 328, 'MARK_RAN', '8:14bf9629c1e94583b8240298df8fa6e7', 'modifyDataType columnName=options, tableName=metabase_database', 'Added 0.42.0 - modify type of metabase_database.options from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-018', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.827', 329, 'MARK_RAN', '8:00408a84f8098e850a465a2c98e6aff5', 'modifyDataType columnName=points_of_interest, tableName=metabase_database', 'Added 0.42.0 - modify type of metabase_database.points_of_interest from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-019', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.829', 330, 'MARK_RAN', '8:afa168a1d459106a0ec607f76d15a0aa', 'modifyDataType columnName=caveats, tableName=metabase_field', 'Added 0.42.0 - modify type of metabase_field.caveats from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-020', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.831', 331, 'MARK_RAN', '8:a3dd42bbe25c415ce21e4c180dc1c1d7', 'modifyDataType columnName=database_type, tableName=metabase_field', 'Added 0.42.0 - modify type of metabase_field.database_type from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-021', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.832', 332, 'MARK_RAN', '8:041c129167b10c951f337dba672020d6', 'modifyDataType columnName=description, tableName=metabase_field', 'Added 0.42.0 - modify type of metabase_field.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v42.00-022', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.834', 333, 'MARK_RAN', '8:60241b3d3d5f05f238adecfdca69b3b2', 'modifyDataType columnName=fingerprint, tableName=metabase_field', 'Added 0.42.0 - modify type of metabase_field.fingerprint from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-023', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.836', 334, 'MARK_RAN', '8:fc6f2fc275a8f025c150215beb9aa776', 'modifyDataType columnName=has_field_values, tableName=metabase_field', 'Added 0.42.0 - modify type of metabase_field.has_field_values from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-024', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.838', 335, 'MARK_RAN', '8:5f7b73eb4774392a1239d7725bad052b', 'modifyDataType columnName=points_of_interest, tableName=metabase_field', 'Added 0.42.0 - modify type of metabase_field.points_of_interest from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-025', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.843', 336, 'MARK_RAN', '8:5ac77fe617f8f4481e8de7da9015c64f', 'modifyDataType columnName=settings, tableName=metabase_field', 'Added 0.42.0 - modify type of metabase_field.settings from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-026', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.845', 337, 'MARK_RAN', '8:fa7d6c62a44d0c1425fe9e9c43d9d359', 'modifyDataType columnName=human_readable_values, tableName=metabase_fieldvalues', 'Added 0.42.0 - modify type of metabase_fieldvalues.human_readable_values from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-027', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.847', 338, 'MARK_RAN', '8:dd1d2de653ed0fb632760c99987ad312', 'modifyDataType columnName=values, tableName=metabase_fieldvalues', 'Added 0.42.0 - modify type of metabase_fieldvalues.values from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-028', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.848', 339, 'MARK_RAN', '8:12a413714ca4b88f6a502d624b8b6895', 'modifyDataType columnName=caveats, tableName=metabase_table', 'Added 0.42.0 - modify type of metabase_table.caveats from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-029', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.85', 340, 'MARK_RAN', '8:96ae84ed0739fc71247112c488963883', 'modifyDataType columnName=description, tableName=metabase_table', 'Added 0.42.0 - modify type of metabase_table.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-030', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.852', 341, 'MARK_RAN', '8:59e52a188f1d131bb62161ee3ab8f0b0', 'modifyDataType columnName=points_of_interest, tableName=metabase_table', 'Added 0.42.0 - modify type of metabase_table.points_of_interest from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-031', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.854', 342, 'MARK_RAN', '8:7d7a5bc0d758e61a5d48b9d0f46cdf9a', 'modifyDataType columnName=caveats, tableName=metric', 'Added 0.42.0 - modify type of metric.caveats from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-032', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.856', 343, 'MARK_RAN', '8:7d8e0965438cd14097b835a598bcfdf7', 'modifyDataType columnName=definition, tableName=metric', 'Added 0.42.0 - modify type of metric.definition from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v42.00-033', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.858', 344, 'MARK_RAN', '8:ecfed282a484cb27d2ac0122a9861d9c', 'modifyDataType columnName=description, tableName=metric', 'Added 0.42.0 - modify type of metric.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-034', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.859', 345, 'MARK_RAN', '8:016c2de3176fa0b3c2d0238923e74e2e', 'modifyDataType columnName=how_is_this_calculated, tableName=metric', 'Added 0.42.0 - modify type of metric.how_is_this_calculated from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-035', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.861', 346, 'MARK_RAN', '8:c8e3cf661d802b8772fefb28d54cc4d2', 'modifyDataType columnName=points_of_interest, tableName=metric', 'Added 0.42.0 - modify type of metric.points_of_interest from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-036', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.863', 347, 'MARK_RAN', '8:18880508f09bb76535dffb5226055256', 'modifyDataType columnName=text, tableName=moderation_review', 'Added 0.42.0 - modify type of moderation_review.text from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-037', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.865', 348, 'MARK_RAN', '8:75b3734278af63ba604e709f3452330e', 'modifyDataType columnName=content, tableName=native_query_snippet', 'Added 0.42.0 - modify type of native_query_snippet.content from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-038', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.867', 349, 'MARK_RAN', '8:50c5ebd57728d39a79c5de02b78d446f', 'modifyDataType columnName=description, tableName=native_query_snippet', 'Added 0.42.0 - modify type of native_query_snippet.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-039', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.868', 350, 'MARK_RAN', '8:1126511637c1da363e26a8abfe0cd9a9', 'modifyDataType columnName=parameters, tableName=pulse', 'Added 0.42.0 - modify type of pulse.parameters from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-040', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.87', 351, 'MARK_RAN', '8:ffcc4cd6e10c850dd78016c75947943f', 'modifyDataType columnName=details, tableName=pulse_channel', 'Added 0.42.0 - modify type of pulse_channel.details from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-041', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.872', 352, 'MARK_RAN', '8:aeffafbd763b7b2b20246dc780e352e2', 'modifyDataType columnName=query, tableName=query', 'Added 0.42.0 - modify type of query.query from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-042', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.874', 353, 'MARK_RAN', '8:337f1a807936a453d20339d05ef6505e', 'modifyDataType columnName=error, tableName=query_execution', 'Added 0.42.0 - modify type of query_execution.error from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-043', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.876', 354, 'MARK_RAN', '8:d6d5d5f81726012b2c72e59d60a9894e', 'modifyDataType columnName=dataset_query, tableName=report_card', 'Added 0.42.0 - modify type of report_card.dataset_query from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-044', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.878', 355, 'MARK_RAN', '8:63f3133301c1baca7b13a6266cf11e8d', 'modifyDataType columnName=description, tableName=report_card', 'Added 0.42.0 - modify type of report_card.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v42.00-045', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.88', 356, 'MARK_RAN', '8:b3c0fc88880ccd64a880d439f7668307', 'modifyDataType columnName=embedding_params, tableName=report_card', 'Added 0.42.0 - modify type of report_card.embedding_params from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-046', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.882', 357, 'MARK_RAN', '8:4b4c50c0dbc197c5a15f21d46cae81a9', 'modifyDataType columnName=result_metadata, tableName=report_card', 'Added 0.42.0 - modify type of report_card.result_metadata from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-047', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.884', 358, 'MARK_RAN', '8:35f9bd24b4a500f748168d03273d91bf', 'modifyDataType columnName=visualization_settings, tableName=report_card', 'Added 0.42.0 - modify type of report_card.visualization_settings from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-048', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.886', 359, 'MARK_RAN', '8:783ce0d26e51ba9244c5a25d0e8bfc1f', 'modifyDataType columnName=caveats, tableName=report_dashboard', 'Added 0.42.0 - modify type of report_dashboard.caveats from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-049', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.887', 360, 'MARK_RAN', '8:de19cbe028a00c5831d676a0e9bb9453', 'modifyDataType columnName=description, tableName=report_dashboard', 'Added 0.42.0 - modify type of report_dashboard.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-050', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.889', 361, 'MARK_RAN', '8:7f8278a770d9514f2d4518497bdd53d5', 'modifyDataType columnName=embedding_params, tableName=report_dashboard', 'Added 0.42.0 - modify type of report_dashboard.embedding_params from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-051', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.891', 362, 'MARK_RAN', '8:e3727da5c8fd5077ba3c541d05e9d329', 'modifyDataType columnName=parameters, tableName=report_dashboard', 'Added 0.42.0 - modify type of report_dashboard.parameters from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-052', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.893', 363, 'MARK_RAN', '8:bee03ae62b47cd8c7c7e78ef225be531', 'modifyDataType columnName=points_of_interest, tableName=report_dashboard', 'Added 0.42.0 - modify type of report_dashboard.points_of_interest from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-053', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.895', 364, 'MARK_RAN', '8:bf16b19d46ed69eb51663bbbec93d0a6', 'modifyDataType columnName=parameter_mappings, tableName=report_dashboardcard', 'Added 0.42.0 - modify type of report_dashboardcard.parameter_mappings from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-054', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.897', 365, 'MARK_RAN', '8:3088bdaabb4e1e04951ee3ab22487867', 'modifyDataType columnName=visualization_settings, tableName=report_dashboardcard', 'Added 0.42.0 - modify type of report_dashboardcard.visualization_settings from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-055', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.899', 366, 'MARK_RAN', '8:d6753fc353f44b790b9e750952a869f9', 'modifyDataType columnName=message, tableName=revision', 'Added 0.42.0 - modify type of revision.message from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v42.00-056', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.901', 367, 'EXECUTED', '8:6f1e02c9122309b99ac4329631724805', 'modifyDataType columnName=object, tableName=revision', 'Added 0.42.0 - modify type of revision.object from text to text', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-057', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.903', 368, 'MARK_RAN', '8:21a0331ed3ba2796081a6ce6d5850ed8', 'modifyDataType columnName=caveats, tableName=segment', 'Added 0.42.0 - modify type of segment.caveats from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-058', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.905', 369, 'MARK_RAN', '8:123b3de75914cd8415b20dbc964ac655', 'modifyDataType columnName=definition, tableName=segment', 'Added 0.42.0 - modify type of segment.definition from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-059', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.907', 370, 'MARK_RAN', '8:edbe944897f5694257f7edc661b7067c', 'modifyDataType columnName=description, tableName=segment', 'Added 0.42.0 - modify type of segment.description from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-060', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.911', 371, 'MARK_RAN', '8:30b35e6afdbc2cdf9588fdf40d9bc1b5', 'modifyDataType columnName=points_of_interest, tableName=segment', 'Added 0.42.0 - modify type of segment.points_of_interest from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-061', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.914', 372, 'MARK_RAN', '8:ae76887a049949a201f45132bb7cc23c', 'modifyDataType columnName=value, tableName=setting', 'Added 0.42.0 - modify type of setting.value from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-062', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.917', 373, 'MARK_RAN', '8:b986105790c336d4f9e6c1a8755f23ca', 'modifyDataType columnName=task_details, tableName=task_history', 'Added 0.42.0 - modify type of task_history.task_details from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-063', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.919', 374, 'MARK_RAN', '8:69c5877d81b6cd3974530db1127f90b4', 'modifyDataType columnName=metadata, tableName=view_log', 'Added 0.42.0 - modify type of view_log.metadata from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-064', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.921', 375, 'MARK_RAN', '8:9169e238663c5d036bd83428d2fa8e4b', 'modifyDataType columnName=results, tableName=query_cache', 'Added 0.42.0 - fix type of query_cache.results on upgrade (in case changeSet 97 was run before #16095)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-065', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.933', 376, 'EXECUTED', '8:5befdc16aff1cda15744a577889f242a', 'addColumn tableName=core_user', 'Added 0.42.0 - Another modal dismissed state on user. Retaining the same suffix and boolean style to ease an eventual migration.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-066', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.937', 377, 'EXECUTED', '8:b43c6357a5dacd4f7eb3b49c7372b908', 'addColumn tableName=metabase_database', 'Added 0.42.0 - new columns for initial DB sync progress UX. Indicates whether a database has succesfully synced at least one time.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-067', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.941', 378, 'EXECUTED', '8:cc9373fbb8ae35f5599105b1612f762c', 'addColumn tableName=metabase_table', 'Added 0.42.0 - new columns for initial DB sync progress UX. Indicates whether a table has succesfully synced at least one time.', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v42.00-068', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.946', 379, 'EXECUTED', '8:5f3144422c5fa86d1344f6fe0cf2049f', 'addColumn tableName=metabase_database', 'Added 0.42.0 - new columns for initial DB sync progress UX. Records the ID of the admin who added a database. May be null for the sample dataset, or for databases added prior to 0.42.0.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-069', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.949', 380, 'EXECUTED', '8:1497ad69b4a6855a232a4ea121687ba2', 'addForeignKeyConstraint baseTableName=metabase_database, constraintName=fk_database_creator_id, referencedTableName=core_user', 'Added 0.42.0 - adds FK constraint for creator_id column, containing the ID of the admin who added a database.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-070', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.954', 381, 'EXECUTED', '8:82016397101b9d4444381f63d584fa7a', 'addColumn tableName=metabase_database', 'Added 0.42.0 - add Database.settings column to implement Database-local Settings', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v42.00-071', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.957', 382, 'EXECUTED', '8:315c004fe2776340730f660504260575', 'sql', 'Added 0.42.0 - migrates the Sample Dataset to the name "Sample Database"', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-001', 'jeff303', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.96', 383, 'EXECUTED', '8:200f0cc5989f637c12a497a5cad56a58', 'sql', 'Added 0.43.0 - migrates any Database using the old bigquery driver to bigquery-cloud-sdk instead', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-002', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.964', 384, 'EXECUTED', '8:f964db8e5d278f825b9eb6414195d54d', 'sql', 'Added 0.43.0. Create magic ''All Users'' Permissions Group if it does not already exist.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-003', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.968', 385, 'EXECUTED', '8:d220feb098ef8e5c6bd44e94166a92d9', 'sql', 'Added 0.43.0. Create magic ''Administrators'' Permissions Group if it does not already exist.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-004', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.973', 386, 'EXECUTED', '8:1c28c6de37700b0ae5f679b86d335764', 'sql', 'Added 0.43.0. Add existing Users to ''All Users'' magic Permissions Group if needed.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-005', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.978', 387, 'EXECUTED', '8:17c0d62516f4af2090010ff9f0f1bf1c', 'sql', 'Added 0.43.0. Add existing Users with ''is_superuser'' flag to ''Administrators'' magic Permissions Group if needed.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-006', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.983', 388, 'EXECUTED', '8:e83e560209f8aa4e57e10a6745715483', 'sql', 'Added 0.43.0. Create root ''/'' permissions entry for the ''Administrators'' magic Permissions Group if needed.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-007', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.989', 389, 'EXECUTED', '8:134265766925f53d8da208089e4e1082', 'sql', 'Added 0.43.0. Grant permissions for existing Databases to ''All Users'' permissions group.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-008', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.991', 390, 'EXECUTED', '8:32b1397273c60028aa633d23428527ef', 'sql; sql', 'Added 0.43.0. Migrate legacy ''-site-url'' Setting to ''site-url''. Trim trailing slashes.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-009', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.994', 391, 'EXECUTED', '8:4042df2ae3ac452a896df3cd5f7a839e', 'sql; sql', 'Added 0.43.0. Make sure ''site-url'' Setting includes protocol.', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v43.00-010', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.997', 392, 'EXECUTED', '8:a26d3c4c474c13897e0d8a677b7443ae', 'sql; sql', 'Added 0.43.0. Migrates value of legacy enable-advanced-humanization Setting to humanization-strategy Setting added in 0.28.0.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-011', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:09.999', 393, 'EXECUTED', '8:5760bcc26e036a34e918cf5eecd109ee', 'sql; sql', 'Added 0.43.0. Remove legacy enable-advanced-humanization Setting.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-012', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.004', 394, 'EXECUTED', '8:a59acc0e562305bbef5721982deb2028', 'sql', 'Added 0.43.0. Set Field.has_field_values to ''list'' if semantic_type derives from :type/Category.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-014', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.008', 395, 'MARK_RAN', '8:bf03710cb176dd7c720a3e2e47ae7782', 'sql', 'Added 0.43.0. Add ''Migrated Dashboards'' Collection if needed and there are any Dashboards not in a Collection.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-015', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.01', 396, 'MARK_RAN', '8:f615da33f8be6bd251faac925bfc9bbd', 'sql', 'Added 0.43.0. Add ''Migrated Pulses'' Collection if needed and there are any Pulses not in a Collection.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-016', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.013', 397, 'MARK_RAN', '8:d31ad47d1aa56ddee95c15726b6810d8', 'sql', 'Added 0.43.0. Add ''Migrated Questions'' Collection if needed and there are any Cards not in a Collection.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-017', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.016', 398, 'EXECUTED', '8:969b947a5066941617a9add82975de9a', 'sql', 'Added 0.43.0. Move Dashboards not in a Collection to ''Migrated Dashboards''.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-018', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.019', 399, 'EXECUTED', '8:b105395ddb21d04c12756e8924ccba83', 'sql', 'Added 0.43.0. Move Pulses not in a Collection to ''Migrated Pulses''.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-019', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.021', 400, 'EXECUTED', '8:6b2e7344dbf0f3be8ec39b4efdb7a4d5', 'sql', 'Added 0.43.0. Move Cards not in a Collection to ''Migrated Questions''.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-020', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.025', 401, 'EXECUTED', '8:e3399a0ef504c5f5140e9e866a2e49fd', 'sql', 'Added 0.43.0. Grant the ''All Users'' Permissions Group readwrite perms for the Root Collection.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-021', 'adam-james', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.033', 402, 'EXECUTED', '8:6b432682f811c4099b7018083dfab7a2', 'createTable tableName=timeline', 'Added 0.43.0 - Timeline table for Events', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-022', 'adam-james', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.039', 403, 'EXECUTED', '8:d4a7fd96d5f8299825fbed4a3e001d33', 'createTable tableName=timeline_event', 'Added 0.43.0 - Events table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-023', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.041', 404, 'EXECUTED', '8:68ea023407382a8f54dc282f601ac6cb', 'createIndex indexName=idx_timeline_collection_id, tableName=timeline', 'Added 0.43.0 - Index on timeline collection_id', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-024', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.043', 405, 'EXECUTED', '8:0056b773435253b7e8e40d5261897823', 'createIndex indexName=idx_timeline_event_timeline_id, tableName=timeline_event', 'Added 0.43.0 - Index on timeline_event timeline_id', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v43.00-025', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.046', 406, 'EXECUTED', '8:8839ff170d1faac11237f79ce729d637', 'createIndex indexName=idx_timeline_event_timeline_id_timestamp, tableName=timeline_event', 'Added 0.43.0 - Index on timeline timestamp', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-026', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.056', 407, 'EXECUTED', '8:a04fac9421e10f1901979560afee3b7c', 'addColumn tableName=core_user', 'Added 0.43.0 - adds User.settings column to implement User-local Settings', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-027', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.058', 408, 'EXECUTED', '8:141420f027b84d0d08e944ffc0d005df', 'dropNotNullConstraint columnName=password, tableName=core_user', 'Added 0.43.0. Drop NOT NULL constraint for core_user.password', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-028', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.061', 409, 'EXECUTED', '8:c86e72e67598f29e10de00fe346095b3', 'dropNotNullConstraint columnName=password_salt, tableName=core_user', 'Added 0.43.0. Drop NOT NULL constraint for core_user.password_salt', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-029', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.063', 410, 'EXECUTED', '8:4d5632ee6fae1f8d0d5e6068700ccb2e', 'sql', 'Added 0.43.0. Clear local password for Users using LDAP auth.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-030', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.067', 411, 'EXECUTED', '8:3b73196410d9a3716f705cdc96a0b98b', 'createTable tableName=dashboard_bookmark', 'Added 0.43.0 - Dashboard bookmarks table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-031', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.07', 412, 'EXECUTED', '8:1081aff22c7fef2be2c63cdec33aad06', 'addUniqueConstraint constraintName=unique_dashboard_bookmark_user_id_dashboard_id, tableName=dashboard_bookmark', 'Added 0.43.0 - Dashboard bookmarks table unique constraint', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-032', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.072', 413, 'EXECUTED', '8:573e98bd0b8392f3c207ae49b1eb20ce', 'createIndex indexName=idx_dashboard_bookmark_user_id, tableName=dashboard_bookmark', 'Added 0.43.0 - Dashboard bookmarks table index on user_id', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-033', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.079', 414, 'EXECUTED', '8:d9471b53e0666a6d3fc99e3c768ccafa', 'createIndex indexName=idx_dashboard_bookmark_dashboard_id, tableName=dashboard_bookmark', 'Added 0.43.0 - Dashboard bookmarks table index on dashboard_id', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-034', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.083', 415, 'EXECUTED', '8:1db8bd1c85b5337a1560c0da7fb8e062', 'createTable tableName=card_bookmark', 'Added 0.43.0 - Card bookmarks table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-035', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.085', 416, 'EXECUTED', '8:9cce81eb78b0c25d01a23d2f74377eda', 'addUniqueConstraint constraintName=unique_card_bookmark_user_id_card_id, tableName=card_bookmark', 'Added 0.43.0 - Card bookmarks table unique constraint', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-036', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.087', 417, 'EXECUTED', '8:a107c119de1ee902e9526a0413158093', 'createIndex indexName=idx_card_bookmark_user_id, tableName=card_bookmark', 'Added 0.43.0 - Card bookmarks table index on user_id', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-037', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.09', 418, 'EXECUTED', '8:80b451e8506f3d3092347cb3f9a96c0c', 'createIndex indexName=idx_card_bookmark_card_id, tableName=card_bookmark', 'Added 0.43.0 - Card bookmarks table index on card_id', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v43.00-038', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.095', 419, 'EXECUTED', '8:12e445545dfcf946fd2f04b3f33e8bb7', 'createTable tableName=collection_bookmark', 'Added 0.43.0 - Collection bookmarks table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-039', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.097', 420, 'EXECUTED', '8:88c30bdf22c1bcae694850d81a65b175', 'addUniqueConstraint constraintName=unique_collection_bookmark_user_id_collection_id, tableName=collection_bookmark', 'Added 0.43.0 - Collection bookmarks table unique constraint', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-040', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.099', 421, 'EXECUTED', '8:455175f303c3f64cb9588aca5c6641e0', 'createIndex indexName=idx_collection_bookmark_user_id, tableName=collection_bookmark', 'Added 0.43.0 - Collection bookmarks table index on user_id', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-041', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.102', 422, 'EXECUTED', '8:b3a84ea8c47896be2931fb73e07459ce', 'createIndex indexName=idx_collection_bookmark_collection_id, tableName=collection_bookmark', 'Added 0.43.0 - Collection bookmarks table index on collection_id', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-042', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.105', 423, 'EXECUTED', '8:e0b982be997b8e591172f4a7c9dab869', 'sql', 'Added 0.43.0. Grant download permissions for existing Databases to ''All Users'' permissions group', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-043', 'howonlee', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.11', 424, 'EXECUTED', '8:2b0195448dad18ba671d64a0c35ceb79', 'addColumn tableName=metabase_field', 'Added 0.43.0 - Nested field columns in fields', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-044', 'noahmoss', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.113', 425, 'EXECUTED', '8:537bbbdc3a39703e704e80d757d8cead', 'sql', 'Added 0.43.0 - Removes MetaBot permissions group', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-046', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.117', 426, 'EXECUTED', '8:de349aff4c691f7abd7417421ed4e54e', 'createTable tableName=general_permissions_revision', 'Added 0.43.0 - create General Permission Revision table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-047', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.12', 427, 'EXECUTED', '8:35c7324ab207528726cc332a5b433a58', 'sql', 'Added 0.43.0. Grant the ''All Users'' Group permissions to create/edit subscriptions and alerts', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-049', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.125', 428, 'EXECUTED', '8:3223a3f02b151cdca259da680de7f848', 'modifyDataType columnName=timestamp, tableName=view_log', 'Added 0.43.0 - Unify datatype with query_execution.started_at so comparable (see 168).', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-050', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.129', 429, 'EXECUTED', '8:d4bc347f147647b361bbe3740d035413', 'addColumn tableName=permissions_group_membership', 'Added 0.43.0. Add permissions_group_membership.is_group_manager', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-051', 'adam-james', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.134', 430, 'EXECUTED', '8:cd0b3deabba3be0abcabd7b8f7fe03c8', 'addColumn tableName=timeline', 'Added 0.43.0 - default boolean on timelines to indicate default timeline for a collection', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-052', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.138', 431, 'EXECUTED', '8:b3963d6c168f5c30f1288c222b8e0e83', 'createTable tableName=bookmark_ordering', 'Added 0.43.0 - bookmark ordering', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v43.00-053', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.141', 432, 'EXECUTED', '8:9660924a1b14881a4d5d11e535c6d838', 'addUniqueConstraint constraintName=unique_bookmark_user_id_type_item_id, tableName=bookmark_ordering', 'Added 0.43.0 - bookmark ordering', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-054', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.143', 433, 'EXECUTED', '8:b353fff839dde25895deba810f64c704', 'addUniqueConstraint constraintName=unique_bookmark_user_id_ordering, tableName=bookmark_ordering', 'Added 0.43.0 - bookmark ordering', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-055', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.145', 434, 'EXECUTED', '8:bd8dd0c8f4391a2ed375f369971b4023', 'createIndex indexName=idx_bookmark_ordering_user_id, tableName=bookmark_ordering', 'Added 0.43.0 - bookmark ordering', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-056', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.148', 435, 'EXECUTED', '8:c418d33e471acbbcd9f86e57b1df4468', 'renameTable newTableName=application_permissions_revision, oldTableName=general_permissions_revision', 'Added 0.43.0 - Rename general permission revision table It''s safe to rename this table without breaking downgrades compatibility because this table was also added in 0.43.0.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-057', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.15', 436, 'MARK_RAN', '8:a96791b95827101abd2cb77361c847ce', 'sql', 'Added 0.43.0 - Rename general_permissions_revision_id_seq', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-058', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.153', 437, 'EXECUTED', '8:bbef3f445957c95a3d42b74b7c8b1fa3', 'sql', 'Added 0.43.0 - Rename general permissios to application permissions', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-059', 'adam-james', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.158', 438, 'EXECUTED', '8:57fb18b8a2b231c107b4d138521166dd', 'addNotNullConstraint columnName=icon, tableName=timeline', 'Added 0.43.0 - disallow nil timeline icons', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-060', 'adam-james', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.163', 439, 'EXECUTED', '8:25978d2800f7e2dd6e8f4ad61027dfa3', 'addNotNullConstraint columnName=icon, tableName=timeline_event', 'Added 0.43.0 - disallow nil timeline event icons', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v43.00-062', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.167', 440, 'EXECUTED', '8:2c24e7af74d3053920fb809b29190303', 'modifyDataType columnName=timestamp, tableName=revision', 'Added 0.43.0 - Unify datatype with revision.timestamp for timezone info (see 17829).', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-000', 'dpsutton', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.175', 441, 'EXECUTED', '8:05de4b32e627b65202e15435c344e135', 'createTable tableName=persisted_info', 'Added 0.44.0 - Persisted Info for models', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-001', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.178', 442, 'EXECUTED', '8:ca1fe70c2560c013653bbc00b58e2964', 'dropNotNullConstraint columnName=creator_id, tableName=persisted_info', 'Added 0.44.0 - Remove not null constraint from persisted_info.creator_id', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-002', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.183', 443, 'EXECUTED', '8:6dc28d92f89811023b6bcd9d77395634', 'addColumn tableName=metric', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-003', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.188', 444, 'EXECUTED', '8:9bd778cae47bb09833a901fdcf76fee8', 'addColumn tableName=segment', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v44.00-004', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.193', 445, 'EXECUTED', '8:4d9ac5fd2c5dbbb6768bb920bd2890cb', 'addColumn tableName=collection', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-005', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.199', 446, 'EXECUTED', '8:8a3712f3787b8c58c3c6f307d5b641c5', 'addColumn tableName=report_dashboard', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-006', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.204', 447, 'EXECUTED', '8:9d9eee07c7b8a7a3c87f6f98e4856b13', 'addColumn tableName=dimension', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-007', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.208', 448, 'EXECUTED', '8:007f472f4397fba9deb7731ddd4a2a9e', 'addColumn tableName=pulse', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-008', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.215', 449, 'EXECUTED', '8:ea3332f011482a9a9e709f922830ba95', 'addColumn tableName=report_card', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-009', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.22', 450, 'EXECUTED', '8:ef0054e0f1d1ac22ff1c81cf01519d0b', 'addColumn tableName=native_query_snippet', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-010', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.225', 451, 'EXECUTED', '8:0e58282581d53882d032811c4ea52c8d', 'addColumn tableName=timeline', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-011', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.229', 452, 'EXECUTED', '8:6a606a9c9351749947263fea4255dc1e', 'addColumn tableName=report_dashboardcard', 'Added 0.44.0 - add entity_id column to all internal entities', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-023', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.236', 453, 'EXECUTED', '8:493153694fde9482c906922a6c63bf88', 'addColumn tableName=report_card', 'Added 0.44.0 - Add parameters to report_card', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-025', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.243', 454, 'EXECUTED', '8:653792e7485e6c6d9063cdd085d8584c', 'addColumn tableName=report_card', 'Added 0.44.0 - Add parameter_mappings to report_card', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-027', 'adam-james', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.246', 455, 'EXECUTED', '8:4fb924ff28472bf113fd4abf5ec8cf1b', 'dropNotNullConstraint columnName=first_name, tableName=core_user', 'Added 0.44.0. Drop NOT NULL constraint for core_user.first_name', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-028', 'adam-james', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.248', 456, 'EXECUTED', '8:8c5c6b0342b7970e15fb93ed618a44c3', 'dropNotNullConstraint columnName=last_name, tableName=core_user', 'Added 0.44.0. Drop NOT NULL constraint for core_user.last_name', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-029', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.253', 457, 'EXECUTED', '8:3380ac2de7c5c6a0b313c81c8a438f28', 'addColumn tableName=metabase_fieldvalues', 'Added 0.44.0 - Add has_more_values to metabase_fieldvalues', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-030', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.258', 458, 'EXECUTED', '8:757a6d90116ca360a4d70bf9f910af1d', 'addColumn tableName=metabase_field', 'Added 0.44.0 - Add database_required to metabase_field', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v44.00-033', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.262', 459, 'EXECUTED', '8:2407250e09ed3bd6e36f0fa340b206ac', 'sql', 'Added 0.43.0. Grant the ''All Users'' Permissions Group readwrite perms for the Root Snippets Collection.', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-035', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.266', 460, 'EXECUTED', '8:38dcbf6c407d7a19591ea6c7baa287e3', 'addColumn tableName=metabase_fieldvalues', 'Added 0.44.0. Add type to fieldvalues', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-037', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.27', 461, 'EXECUTED', '8:6bb5be3d1c58c69d0dc42a38fa150d57', 'addColumn tableName=metabase_fieldvalues', 'Added 0.44.0. Add type to fieldvalues', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-038', 'metamben', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.28', 462, 'EXECUTED', '8:327897734fed2d9f16707cd16c0395f3', 'addColumn tableName=report_card', 'Added 0.44.0 - Add collection_preview to report_card', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-039', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.286', 463, 'EXECUTED', '8:381712e81a39de0ddec9107419c1450a', 'addColumn tableName=native_query_snippet', 'Added 0.44.0 - Add template_tags to native_query_snippet', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-041', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.29', 464, 'EXECUTED', '8:7fba8d5b9bfe7136d1a78c8d8d8fc402', 'addColumn tableName=pulse_card', 'Added 0.44.0 - add entity_id column to PulseCard, PulseChannel', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-042', 'braden', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.295', 465, 'EXECUTED', '8:ca3a5364fcac3da951d35f25d660144f', 'addColumn tableName=pulse_channel', 'Added 0.44.0 - add entity_id column to PulseCard, PulseChannel', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v44.00-044', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.3', 466, 'EXECUTED', '8:601311f94a0587a67013e27d793d2cc2', 'dropColumn columnName=template_tags, tableName=native_query_snippet', 'Added 0.44.0 - drop native_query_snippet.template_tags added in v44.00-039', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-001', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.304', 467, 'EXECUTED', '8:da99b71a4ac7eb662f6a95e69585935e', 'createTable tableName=action', 'Added 0.44.0 - writeback', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-002', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.308', 468, 'EXECUTED', '8:6da7a6285edb138c404de0eeba209570', 'createTable tableName=query_action', 'Added 0.44.0 - writeback', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-003', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.313', 469, 'EXECUTED', '8:512337d6d4af38016aa79585abbe03a1', 'addPrimaryKey constraintName=pk_query_action, tableName=query_action', 'Added 0.44.0 - writeback', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-011', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.324', 470, 'EXECUTED', '8:dcf1cda9f20dca4b6ff8101b13b98c4a', 'addColumn tableName=report_card', 'Added 0.44.0 - writeback', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-012', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.329', 471, 'EXECUTED', '8:aadf28229f585cff7c4b4c1918e558b2', 'createTable tableName=http_action', 'Added 0.44.0 - writeback', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-013', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.332', 472, 'EXECUTED', '8:26dba276b14255d4346507a1a25d117b', 'addPrimaryKey constraintName=pk_http_action, tableName=http_action', 'Added 0.44.0 - writeback', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v45.00-022', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.337', 473, 'EXECUTED', '8:d46fa24e4d75a11b2e92aecbf39c6ee1', 'createTable tableName=app', 'Added 0.45.0 - add app container', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-023', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.34', 474, 'EXECUTED', '8:c6c1ff9ca3b62d4cda3a2d782dd86f2f', 'addForeignKeyConstraint baseTableName=app, constraintName=fk_app_ref_dashboard_id, referencedTableName=report_dashboard', 'Added 0.45.0 - add app container', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-025', 'metamben', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.345', 475, 'EXECUTED', '8:50a43cea3123ecdb602123825f5a7dbf', 'addColumn tableName=report_dashboard', 'Added 0.45.0 - mark app pages', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-026', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.35', 476, 'EXECUTED', '8:ae77d4086998911877e3207fcf90c9c7', 'addColumn tableName=report_dashboardcard', 'Added 0.45.0 - apps add action_id to report_dashboardcard', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-027', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.353', 477, 'EXECUTED', '8:40c3c8391c1416a3bce09ca3c7237173', 'addForeignKeyConstraint baseTableName=report_dashboardcard, constraintName=fk_report_dashboardcard_ref_action_id, referencedTableName=action', 'Added 0.45.0 - apps add fk for action_id to report_dashboardcard', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-028', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.355', 478, 'EXECUTED', '8:f8f68f80627aeb2ef7f28f2af2b5a31b', 'renameColumn newColumnName=size_x, oldColumnName=sizeX, tableName=report_dashboardcard', 'Added 0.45.0 -- rename DashboardCard sizeX to size_x. See https://github.com/metabase/metabase/issues/16344', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-029', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.358', 479, 'EXECUTED', '8:579957652133eab3ee023dd911162a1e', 'renameColumn newColumnName=size_y, oldColumnName=sizeY, tableName=report_dashboardcard', 'Added 0.45.0 -- rename DashboardCard size_y to size_y. See https://github.com/metabase/metabase/issues/16344', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-030', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.361', 480, 'EXECUTED', '8:41eda097feb034c4d01b2dbda74753c8', 'addDefaultValue columnName=size_x, tableName=report_dashboardcard', 'Added 0.45.0 -- add default value to DashboardCard size_x -- this was previously done by Toucan', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-031', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.364', 481, 'EXECUTED', '8:6416e373e335dc1c12c7571af674dede', 'addDefaultValue columnName=size_y, tableName=report_dashboardcard', 'Added 0.45.0 -- add default value to DashboardCard size_y -- this was previously done by Toucan', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-032', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.366', 482, 'EXECUTED', '8:d97444fe24a2dca618a2804741335f6d', 'addDefaultValue columnName=created_at, tableName=report_dashboardcard', 'Added 0.45.0 -- add default value for DashboardCard created_at (Postgres/H2)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-033', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.368', 483, 'MARK_RAN', '8:34df79fc79e086ab05bb2fd79bb4e322', 'sql', 'Added 0.45.0 -- add default value for DashboardCard created_at (MySQL/MariaDB)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-034', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.371', 484, 'EXECUTED', '8:ba0505a87ef876026759cdcb4e704f41', 'addDefaultValue columnName=updated_at, tableName=report_dashboardcard', 'Added 0.45.0 -- add default value for DashboardCard updated_at (Postgres/H2)', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v45.00-035', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.373', 485, 'MARK_RAN', '8:dcee49781d80d9c4be5ad9dd51975a07', 'sql', 'Added 0.45.0 -- add default value for DashboardCard updated_at (MySQL/MariaDB)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-036', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.379', 486, 'EXECUTED', '8:cd4009254bd2c56aaf281082038c1f0b', 'createTable tableName=model_action', 'Added 0.45.0 - add model action table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-037', 'snoe', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.382', 487, 'EXECUTED', '8:56f548cc84a53cc6d18302761ee71554', 'addUniqueConstraint constraintName=unique_model_action_card_id_slug, tableName=model_action', 'Added 0.45.0 - model action', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-038', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.386', 488, 'EXECUTED', '8:c38ddc295206e807c7254581ed9566c3', 'addDefaultValue columnName=created_at, tableName=metabase_database', 'Added 0.45.0 -- add default value for Database created_at (Postgres/H2)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-039', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.388', 489, 'MARK_RAN', '8:2c539d76d3aead7f7366b15333132b30', 'sql', 'Added 0.45.0 -- add default value for Database created_at (MySQL/MariaDB)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-040', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.393', 490, 'EXECUTED', '8:00ac7c24cfd3e7ea3a21f21f4e45dbcf', 'addDefaultValue columnName=updated_at, tableName=metabase_database', 'Added 0.45.0 -- add default value for Database updated_at (Postgres/H2)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-041', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.397', 491, 'MARK_RAN', '8:82dc368fa3e0163a06929da6e9556fe2', 'sql', 'Added 0.45.0 -- add default value for Database updated_at (MySQL/MariaDB)', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-042', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.401', 492, 'EXECUTED', '8:d04207471480e335f14094e9a7a5d293', 'sql', 'Added 0.45.0 -- add default value for Database with NULL details', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-043', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.404', 493, 'EXECUTED', '8:1d07a5435e51abd0663458d907865a6b', 'addNotNullConstraint columnName=details, tableName=metabase_database', 'Added 0.45.0 -- make Database details NOT NULL', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-044', 'metamben', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.409', 494, 'EXECUTED', '8:0b23976c5d2248d511ac31b244efef22', 'createTable tableName=app_permission_graph_revision', 'Added 0.45.0 -- create app permission graph revision table', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-048', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.416', 495, 'EXECUTED', '8:0aca8f157f163e62805b7202f8aa202f', 'addColumn tableName=collection', 'Added 0.45.0 -- add created_at to Collection', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-049', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.419', 496, 'EXECUTED', '8:df2097d176fad99c142c5dd75ce8a3db', 'sql; sql; sql', 'Added 0.45.0 -- set Collection.created_at to User.date_joined for Personal Collections', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-050', 'camsaul', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.424', 497, 'EXECUTED', '8:65ecfe481e7c0141bb82bb3401cfa94e', 'sql; sql; sql', 'Added 0.45.0 -- seed Collection.created_at with value of oldest item for non-Personal Collections', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-051', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.428', 498, 'MARK_RAN', '8:2378c7031da6871dcf1c737bf323d211', 'modifyDataType columnName=after, tableName=collection_permission_graph_revision', 'Added 0.45.0 - modify type of collection_permission_graph_revision.after from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'); +INSERT INTO PUBLIC.DATABASECHANGELOG(ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, EXECTYPE, MD5SUM, DESCRIPTION, COMMENTS, TAG, LIQUIBASE, CONTEXTS, LABELS, DEPLOYMENT_ID) VALUES +('v45.00-052', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.43', 499, 'MARK_RAN', '8:b7343eb9556c3e636b6f8dd70708c0b3', 'modifyDataType columnName=before, tableName=collection_permission_graph_revision', 'Added 0.45.0 - modify type of collection_permission_graph_revision.before from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-053', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.433', 500, 'MARK_RAN', '8:fa552605d5a587c4fa74e0c6bd358097', 'modifyDataType columnName=remark, tableName=collection_permission_graph_revision', 'Added 0.45.0 - modify type of collection_permission_graph_revision.remark from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-054', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.436', 501, 'MARK_RAN', '8:60862c4ecf505727e839ac5e94f95528', 'modifyDataType columnName=after, tableName=permissions_revision', 'Added 0.45.0 - modify type of permissions_revision.after from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-055', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.438', 502, 'MARK_RAN', '8:717f0c266da5768098a2ead6168f3b18', 'modifyDataType columnName=before, tableName=permissions_revision', 'Added 0.45.0 - modify type of permissions_revision.before from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-056', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.441', 503, 'MARK_RAN', '8:a1f364d45a922c90b4fac741a22e66b3', 'modifyDataType columnName=remark, tableName=permissions_revision', 'Added 0.45.0 - modify type of permissions_revision.remark from text to text on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'), +('v45.00-057', 'qnkhuat', 'migrations/000_migrations.yaml', TIMESTAMP '2022-12-13 12:22:10.443', 504, 'MARK_RAN', '8:650a5b435f8195765a2ab1e3e4bc7b14', 'modifyDataType columnName=value, tableName=secret', 'Added 0.45.0 - modify type of secret.value from blob to longblob on mysql,mariadb', NULL, '4.10.0', NULL, NULL, '0912528239'); +CREATE CACHED TABLE PUBLIC.DATABASECHANGELOGLOCK( + ID INT NOT NULL, + LOCKED BOOLEAN NOT NULL, + LOCKGRANTED TIMESTAMP, + LOCKEDBY VARCHAR(255) +); +ALTER TABLE PUBLIC.DATABASECHANGELOGLOCK ADD CONSTRAINT PUBLIC.PK_DATABASECHANGELOGLOCK PRIMARY KEY(ID); +-- 1 +/- SELECT COUNT(*) FROM PUBLIC.DATABASECHANGELOGLOCK; +INSERT INTO PUBLIC.DATABASECHANGELOGLOCK(ID, LOCKED, LOCKGRANTED, LOCKEDBY) VALUES +(1, FALSE, NULL, NULL); +CREATE CACHED TABLE PUBLIC.PERMISSIONS_REVISION COMMENT 'Used to keep track of changes made to permissions.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_15D8716F_B800_42F5_A3D2_D7D6FC2C574D) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_15D8716F_B800_42F5_A3D2_D7D6FC2C574D, + BEFORE CLOB NOT NULL COMMENT 'Serialized JSON of the permissions before the changes.', + AFTER CLOB NOT NULL COMMENT 'Serialized JSON of the permissions after the changes.', + USER_ID INT NOT NULL COMMENT 'The ID of the admin who made this set of changes.', + CREATED_AT TIMESTAMP NOT NULL COMMENT 'The timestamp of when these changes were made.', + REMARK CLOB COMMENT 'Optional remarks explaining why these changes were made.' +); +ALTER TABLE PUBLIC.PERMISSIONS_REVISION ADD CONSTRAINT PUBLIC.PK_PERMISSIONS_REVISION PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.PERMISSIONS_REVISION; +CREATE CACHED TABLE PUBLIC.METABASE_FIELDVALUES( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_7A80ACE0_9C07_42F6_A9B9_68058F1BC407) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_7A80ACE0_9C07_42F6_A9B9_68058F1BC407, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP WITH TIME ZONE NOT NULL, + VALUES CLOB, + HUMAN_READABLE_VALUES CLOB, + FIELD_ID INT NOT NULL, + HAS_MORE_VALUES BOOLEAN DEFAULT FALSE COMMENT 'true if the stored values list is a subset of all possible values', + TYPE VARCHAR(32) DEFAULT 'full' NOT NULL COMMENT 'Type of FieldValues', + HASH_KEY CLOB COMMENT 'Hash key for a cached fieldvalues' +); +ALTER TABLE PUBLIC.METABASE_FIELDVALUES ADD CONSTRAINT PUBLIC.PK_METABASE_FIELDVALUES PRIMARY KEY(ID); +-- 35 +/- SELECT COUNT(*) FROM PUBLIC.METABASE_FIELDVALUES; +INSERT INTO PUBLIC.METABASE_FIELDVALUES(ID, CREATED_AT, UPDATED_AT, VALUES, HUMAN_READABLE_VALUES, FIELD_ID, HAS_MORE_VALUES, TYPE, HASH_KEY) VALUES +(238, TIMESTAMP '2022-12-28 20:19:38.824', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.448+06', '["Central","Chuminga","Pualula","Sulaka"]', NULL, 659, FALSE, 'full', NULL), +(239, TIMESTAMP '2022-12-28 20:19:39.002', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:39.002+00', '["Birth"]', NULL, 662, FALSE, 'full', NULL), +(240, TIMESTAMP '2022-12-28 20:19:39.101', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.667+06', '["20230221121625-create-performance-views.js"]', NULL, 665, FALSE, 'full', NULL), +(241, TIMESTAMP '2022-12-28 21:07:37.967', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.232+06', '["Central","Chuminga","Pualula","Sulaka"]', NULL, 671, FALSE, 'full', NULL), +(242, TIMESTAMP '2022-12-28 21:07:53.986', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:44.862+06', '[null]', NULL, 670, FALSE, 'full', NULL), +(243, TIMESTAMP '2022-12-28 21:08:21.239', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.261+06', '["Ama District Office","Embe District Office","Ibombo District Office","Ilanga District Office"]', NULL, 676, FALSE, 'full', NULL), +(244, TIMESTAMP '2022-12-28 21:14:28.014', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.014+00', '["Birth"]', NULL, 666, FALSE, 'full', NULL), +(245, TIMESTAMP '2022-12-28 21:14:28.028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:07.585+00', '[null,"ILLITERATE","LITERATE"]', NULL, 667, FALSE, 'full', NULL), +(246, TIMESTAMP '2022-12-28 21:14:28.042', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.143+06', '["PRIVATE_HOME"]', NULL, 668, FALSE, 'full', NULL), +(247, TIMESTAMP '2022-12-28 21:14:28.056', TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:12.062+00', '[null,"ILLITERATE","LITERATE"]', NULL, 669, FALSE, 'full', NULL), +(248, TIMESTAMP '2022-12-28 21:14:28.096', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.247+06', '[" Bulaya, Derrick"," Mweene, Kennedy","Chuminga, Mr.","Embe, Mr."]', NULL, 673, FALSE, 'full', NULL), +(249, TIMESTAMP '2022-12-28 21:14:28.11', TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:13.767+00', '["QUADRUPLET","SINGLE","TWIN"]', NULL, 674, FALSE, 'full', NULL), +(250, TIMESTAMP '2022-12-28 21:14:28.135', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.721+06', '[null]', NULL, 678, FALSE, 'full', NULL), +(251, TIMESTAMP '2022-12-28 21:14:28.149', TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:01.435+00', '[0,1,2,3,4,5,6,8]', NULL, 679, FALSE, 'full', NULL), +(252, TIMESTAMP '2022-12-28 21:14:28.167', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.732+06', '["male"]', NULL, 680, FALSE, 'full', NULL), +(253, TIMESTAMP '2022-12-28 21:14:28.178', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.745+06', '[null]', NULL, 681, FALSE, 'full', NULL), +(254, TIMESTAMP '2022-12-28 21:14:28.191', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.758+06', '["REGISTERED"]', NULL, 682, FALSE, 'full', NULL), +(255, TIMESTAMP '2022-12-28 21:14:28.204', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.306+06', '["3c0eaf08-29d2-4b91-878a-6e75529446fd","73008d3d-e90a-4b35-9766-9ac312571081","afa4d23f-484c-432b-83c5-81a78c04796b","c6f7c437-fa7d-4d52-be98-07292f33717e"]', NULL, 685, FALSE, 'full', NULL), +(256, TIMESTAMP '2022-12-28 21:14:28.218', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:44.975+06', '["LOCAL_REGISTRAR"]', NULL, 686, FALSE, 'full', NULL), +(257, TIMESTAMP '2022-12-28 21:14:56.164', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.865+06', '["Ibombo District Office"]', NULL, 694, FALSE, 'full', NULL), +(258, TIMESTAMP '2022-12-28 21:15:06.822', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.04+06', '[]', NULL, 692, FALSE, 'full', NULL), +(259, TIMESTAMP '2022-12-28 21:15:11.497', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.836+06', '["Central"]', NULL, 690, FALSE, 'full', NULL), +(260, TIMESTAMP '2022-12-29 02:00:00.511', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.805+06', '["male"]', NULL, 687, FALSE, 'full', NULL), +(261, TIMESTAMP '2022-12-29 02:00:00.523', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.82+06', '["JUDICIAL_ORDER"]', NULL, 688, FALSE, 'full', NULL); +INSERT INTO PUBLIC.METABASE_FIELDVALUES(ID, CREATED_AT, UPDATED_AT, VALUES, HUMAN_READABLE_VALUES, FIELD_ID, HAS_MORE_VALUES, TYPE, HASH_KEY) VALUES +(262, TIMESTAMP '2022-12-29 02:00:00.555', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.852+06', '["Birth"]', NULL, 693, FALSE, 'full', NULL), +(263, TIMESTAMP '2022-12-29 02:00:00.577', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.881+06', '["49e027ce-51ed-4289-9941-f2089d27a255"]', NULL, 696, FALSE, 'full', NULL), +(264, TIMESTAMP '2022-12-29 02:00:00.588', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.896+06', '["c8279f77-bc8b-42fc-8f9f-f1c12d581f3b"]', NULL, 697, FALSE, 'full', NULL), +(265, TIMESTAMP '2022-12-29 02:00:00.6', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.122+06', '[]', NULL, 698, FALSE, 'full', NULL), +(266, TIMESTAMP '2022-12-29 02:00:00.612', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.911+06', '["92185fc3-bbf6-4169-886c-5250cfbe079f"]', NULL, 699, FALSE, 'full', NULL), +(267, TIMESTAMP '2022-12-29 02:00:00.636', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.925+06', '["e149ef65-158d-408f-946e-9b8400ea032b"]', NULL, 700, FALSE, 'full', NULL), +(268, TIMESTAMP '2022-12-29 02:00:00.647', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.941+06', '[null]', NULL, 701, FALSE, 'full', NULL), +(269, TIMESTAMP '2022-12-29 02:00:00.658', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.956+06', '["5b5dfc57-4691-438c-8b2b-ba101b4bd271"]', NULL, 702, FALSE, 'full', NULL), +(270, TIMESTAMP '2022-12-29 02:00:00.668', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.975+06', '["c03ccf8a-a0e1-4113-9cd8-f5ebc0c396f3"]', NULL, 703, FALSE, 'full', NULL), +(337, TIMESTAMP '2023-05-10 16:28:42.485', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.328+06', '["Ama","Embe","Ibombo","Ilanga"]', NULL, 723, FALSE, 'full', NULL), +(338, TIMESTAMP '2023-05-22 12:45:31.99', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.99+06', '["Ibombo"]', NULL, 724, FALSE, 'full', NULL); +CREATE INDEX PUBLIC.IDX_FIELDVALUES_FIELD_ID ON PUBLIC.METABASE_FIELDVALUES(FIELD_ID); +CREATE CACHED TABLE PUBLIC.SETTING( + KEY VARCHAR(254) NOT NULL, + VALUE CLOB NOT NULL +); +ALTER TABLE PUBLIC.SETTING ADD CONSTRAINT PUBLIC.PK_SETTING PRIMARY KEY(KEY); +-- 21 +/- SELECT COUNT(*) FROM PUBLIC.SETTING; +CREATE TABLE IF NOT EXISTS SYSTEM_LOB_STREAM(ID INT NOT NULL, PART INT NOT NULL, CDATA VARCHAR, BDATA BINARY); +CREATE PRIMARY KEY SYSTEM_LOB_STREAM_PRIMARY_KEY ON SYSTEM_LOB_STREAM(ID, PART); +CREATE ALIAS IF NOT EXISTS SYSTEM_COMBINE_CLOB FOR "org.h2.command.dml.ScriptCommand.combineClob"; +CREATE ALIAS IF NOT EXISTS SYSTEM_COMBINE_BLOB FOR "org.h2.command.dml.ScriptCommand.combineBlob"; +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 0, STRINGDECODE('{\"latest\":{\"version\":\"v0.46.6\",\"released\":\"2023-06-29\",\"patch\":true,\"highlights\":[\"Remove `task` snowplow event\",\"Incorrect query on nested questions in BigQuery\",\"Snowflake won''t sync without password (user using only private key)\",\"Don''t auto-run sql questions when there''s an edit\",\"Error custom column \\\"only binary :- is supported\\\"\"]},\"older\":[{\"version\":\"v0.46.5\",\"released\":\"2023-06-13\",\"patch\":true,\"highlights\":[\"Add to Dashboard/Save Question Menu doesn''t respect Collection Alphabetical order as in Main Menu\",\"Downloading data from cards in dashboards does not respect download limit\",\"Respect alphabetical order of collections in \\\"Move\\\" modal\",\"Attempting to upload RSA private key (PEM PK8) to connect to Snowflake fails with Private key provided is invalid or not supported\",\"Dump broken on 46.x on instances with more than 65K categorical fields\",\"MySQL default timeout needs to be increased\",\"Question with source query containing aggregation and sorting by that aggregation fails on mongodb\",\"Upgrade to 1.46 fails due to invalid state in permissions table\",\"Reverting to an earlier version of a dashboard creates an erroneous event in revision history\",\"Model caching not working anymore in 0.46.x with MySQL if query takes more than 29 seconds\",\"Question breaks after trying to create pivot table and edit on aggregated results that are not grouped\",\"Not able to Enable/Disable Actions when Choose when syncs and scans happen is Enabled\",\"Native editor buttons are incorrectly rendering on top of model metadata screen\",\"Unable to summarize models\",\"Sporadic \\\"we''re a little lost...\\\" pop-up when scrolling up and down my query after expanding a row\",\"Basic actions (CUD) display order is non-deterministic\",\"Do not offer to save database changes if there were none\",\"There is no confirmation when running an action without parameters in dashboards\",\"Make the \\\"save\\\" modal context-aware\",\"SSO does not respect Metabase subpath\",\"MB_SESSION_TIMEOUT behavior does not match documentation\",\"Doing \\\"Zoom in\\\" from dashboard drops fields from joined tables\",\"Google Sign-in ignores \\\"Notify admins of new SSO users\\\" toggle\",\"Drill-through to questions with add columns (implicit join) causes no filtering to be defined\",\"Better error message/validation if SAML Keystore has no private key\",\"Cannot run native queries against MongoDB unless explicitly selecting the table\",\"When setting/resetting password, `sign in with your new password` shouldn''t make you retype your password again\"]},{\"version\":\"v0.46.4\",\"released\":\"2023-05-24\",\"patch\":true,\"highlights\":[\"Link Cards that link to internal entities should open the object in the same iFrame in Full-App embedding\",\"Activity feed leaks metadata\",\"Mongodb won\u2019t work if version does fall into the \u201csemantic-version-gte\u201d pattern (Percona)\",\"46 regression: `datetimeAdd` is apparently supposed to allow non-integer amounts\",\"If you bring the sample dataset back then go to ''Browse Data'' it does not appear unless you refresh the page\",\"Add series modal pulls all cards and viz settings and it''s unusable on big instances\",\"/recent_views endpoint query uses non-indexed fields\"]},{\"version\":\"v0.46.3\",\"released\":\"2023-05-18\",\"patch\":true,\"highlights\":[]},{\"version\":\"v0.46.2\",\"released\":\"2023-04-28\",\"patch\":true,\"highlights\":[\"Users with No Access to the Collection Our Analytics are not able to define a dropdown list from models/questions\",\"MongoDB Custom Column SUM with arithmetic operation producing wrong MongoQL\",\"Race condition after deleting the Sample Database\",\"Include checklist task to migrate off h2\",\"[Snowflake] Syntax error: unexpected \\\"?\\\" when using filters inside window frames, or inside INTERVAL syntax\",\"Revision history erratically loads and removes historic changes\",\"\\\"People can pick\\\" ->multiple values in dashboards and custom dropdown filter don''t go together\",\"Changing column order on model view then almost saving without preview breaks model with custom columns\",\"Metric tooltip description gets cut\",\"Metadata is required when trying join on an SQL based questions\",\"Adding more than one'), NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 1, ' field filter blows up the frontend in Mongo and MySQL","Filter values no longer work inside single quoted strings","Serialization v1 errors when trying to load an instance with actions","Cannot get into a card from a dashboard on \"no self-service\" permissions","\"First day of the week\" not changing calendar widget on filters"]},{"version":"v0.46.1","released":"2023-04-05","patch":true,"highlights":["drill-through not working correctly in legend for stacked charts","SSO mapping: users are removed from groups that are not mapped","Date Filter (Specific Dates) doesn''t show first days of the month","Fix implicit actions not created in a deterministic order","Currency list: Add Mauritania ouguiya (MRU) as currency","Big xslx file downloaded from BigQuery are corrupted in v0.45.3 and were not in v0.45.1","Infinite loop, logging at warn level, filling disk for a GCP BigQuery connection","Dashboard sticky filter incorrectly positioned, when moving between dashboards","Unable to properly filter on an aggregation"]},{"version":"v0.46.0","released":"2023-03-28","patch":false,"highlights":["Cannot save dashboard when using \"Add a saved question\" text","Ensure we use the ssh tunnel on action execution","Under specific circumstances, when editing an existing sandbox, the \"Parameter or variable\" dropdown for a filter is incorrectly grayed out","Date Filter \"Exclude\" option fails on Dashboard if you are on a different language than English","Exclude non required PKs from implicit create action","Adding classname prop to ObjectDetail","Object Detail View is no longer scrollable inside Query Builder","Let users download questions as a PNG in-product","Offer question downloads from dashboard cards","\"Pulse card query error\" on user without native SQL permissions","Don''t include auto-incremented fields in the implicit create action form if it''s an auto increment ID","pulling out column title logic and sharing with settings","Chartsettings use custom column names","Updated Column names are not present in Chart Settings","GUI Cached models that have joins will generate the query incorrectly and fail","Remove personal collections from collection detail page","Standardize chart settings icon buttons","Updating Close Icon","Centering tab labels","Viz Charts don''t support customisation of series with more than 20 groups","Fix exclusion of CLJS devtools from release builds","The order of series in a visualization should match the order in the sidebar","Release script can stomp over root `./deps.edn` dependencies and break the build ","Personal collection shows up as a sub-collection of \"Our analytics\"","[Epic] Improve Upgrade CTA Tracking","Adding flex grow to card wrapper","update the row chart style","stack area chart with breakouts","open chart settings when clicking active display type","Keep filter and fields clauses in trivial nested queries"]},{"version":"v0.45.3","released":"2023-02-21","patch":true,"highlights":["Fix ObjectDrill on queries with joined tables","Send \"threads blocked\" via Prometheus exporter","Make educational messaging in native questions less distracting","Fix \"Powered by Metabase\" badge partially invisible with transparent theme","Pre-existing category filters were not migrated to new ones","Doing \"Zoom in\" from dashboard drops fields from joined tables","Links for the IDs are showing wrong objects when table join is in place","Column filters not working on Questions using custom columns","Drill-through to questions with add columns (implicit join) causes no filtering to be defined","Data selector not working in FullApp embedding if going directly from location that hasn''t loaded `/api/database` yet"]},{"version":"v0.45.2.1","released":"2023-01-27","patch":true,"highlights":[]},{"version":"v0.45.2","released":"2023-01-17","patch":true,"highlights":["Log4j2.xml file not read on 0.45","Cannot select fields for double aggregated metrics, and existing sections gets removed on change","Background color on hover for items in data picker looks off","Static viz fails when there''s an unused column returned","\', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 2, STRINGDECODE('\"Something''s gone wrong\\\" error when moving between dashboards that has/hasn''t filters\",\"Changing sorting does not apply for X-axis anymore\",\"Number filter with `0` (zero) as default value shows as empty in the widget\",\"Relieve db pressure on api/health check\",\"Static viz fails when date formatting contains day\",\"\\\"Replace missing values with\\\" set to `Zero` or `Nothing` causes the line to become zeroed/hidden\",\"Update token check URL\",\"Static viz fails when date formatting is abbreviated\",\"Disable Athena driver IAM role-based auth in Cloud\",\"Improve collection breadcrumbs with embedding parameters\",\"Snowflake sync is consuming more resources than necessary\",\"Click Behavior cannot handle absolute URLs outside of Metabase\",\"Avoid updating dashboard cards unless filter changes\",\"Using filter Contains on dashboard is case-insensitive, but on drill-through to question becomes case-sensitive\",\"BigQuery data type `BIGDECIMAL` is recognized as mixed string/numeric\",\"Text filter over a custom column in simple embedding expects a number\",\"Comma separated filter value would not hand over from dashboard to question\",\"Embedding Dashboard with Locked parameters does not allow numeric values\",\"Column name auto-classification not working for _latitude\",\"Corrupted question shows \\\"Something''s gone wrong\\\" with no more info, and breaks \\\"Add series\\\" modal on the dashboard, and breaks Archive page\",\"unset MB_API_KEY for notify endpoint could use some feedback\"]},{\"version\":\"v0.45.1\",\"released\":\"2022-12-07\",\"patch\":true,\"highlights\":[\"SQL Server driver not loaded in 0.45.0\"]},{\"version\":\"v0.45.0\",\"released\":\"2022-12-05\",\"patch\":false,\"highlights\":[\"Editing a model''s metadata bricks the question when mapping to an underlying DB column that has an enum mapping\",\"Remove `is_write` card property on the FE\",\"Audit dashboards click behavior does not work\",\"Fixes remapped columns support for the row chart type\",\"`has-user-setup` Setting does not actually cache truthy results like it says\",\"Visualization settings can crash Query Builder\",\"Build datetime filters as datetime before question is saved\",\"Analysis of Sample DB on initial startup takes ~2 minutes\",\"[Epic] Let users know why there\u2019s no drill-through on their SQL/native questions\",\"Record application database version in Snowplow metrics\",\"In Mongo, the filter does not work for uuid fields\",\"Sync of new tables stops working if an existing table has a description set to empty (not null)\",\"BigQuery Arrays are not exported correctly to CSV\",\"Dashboard sticky filter incorrectly positioned, when moving between dashboards\",\"Sidebar covers dashboard sticky filters, when scrolling on dashboard\",\"Changing permissions can fail with `Data too long for column ''before'' at row 1` when using MySQL/MariaDB application database\",\"Serdes v2: it should be possible to load content to an instance without the serialized data model (if the target instance already contains the data model)\",\"Serdes v2 is not transferring `report_card.result_metadata` on models\",\"Model list appears empty when creating new question, even though models exist\",\"Click Behavior not working for Funnel\",\"Modal filtering doesn''t work on joined table when Question has a filter after aggregation \",\"Reordering columns in pivot tables breaks the UI\",\"Dashboard Slack Subscription hits slack API max characters allowed per block\",\"Notify endpoint will always return 200 even if the tables don''t exist\",\"[Epic] metabase-lib consolidation\",\"Add journey to create fresh Model using New button\",\"Add page to create Model without a Question using Native Query Editor\",\"Add page to create Model without a Question using Notebook Editor\",\"Data Model keeps resetting input fields while editing\",\"Persistent caching for Models fails to enable for MySQL\"]},{\"version\":\"v0.44.6\",\"released\":\"2022-11-01\",\"patch\":true,\"highlights\":[\"Google Sign-in fails because of unannounced change by Google\",\"Load in serialization with --mode update fails on upserts\",\"Between() in custom filter expression switches min and max upon adding new filter\",\"Collection list fails to display '), NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 3, 'if there''s an invalid parameter in a question","Inconsistent behavior when sending certain payloads to /permissions/graph","Loss of old translations in v0.44.1"]},{"version":"v0.44.5","released":"2022-10-18","patch":true,"highlights":["Slack request error leads to sensitive authorization token being logged","Synchronized tables that were initially marked as `cruft` has their `initial_sync_status` as `incomplete`","Cannot drill-through \"View these ...\" when aggregated results are filtered"]},{"version":"v0.44.4","released":"2022-09-29","patch":true,"highlights":["When LDAP is enabled but password login is disabled, login doesn''t work","Bump Postgres driver to 42.5.0","404 on loading models when instance is configured in another language","Loading spinners in filters don''t appear anymore","Inform admins if their account is in bad standing","Bump MinaSSHD to 2.9.1","MYSQL disable JSON unfolding doesn''t work","MySQL unfolding of JSON fails for `boolean` and `bigint` attributes","Aggregation in Models causes the column name to incorrectly be parsed down to questions based on that Model","Envar to disable custom maps / GeoJSON","Changing filters on Simple question drops anything after first aggregation","Metabase Prometheus Exporter","Changing filters on Simple question drops aggregated filters","Drill through / underlying records action doesn''t respect filters in metric definitions"]},{"version":"v0.44.3","released":"2022-09-15","patch":true,"highlights":["SessionStorage can become filled causing the frontend to throw errors until browser restart","Filters incorrectly showing as linked to all fields on combined charts","First created question not in Saved Questions inside Data Selector until page reload","Cannot change email From-name and Reply-to-address when environment variables are used for other settings","Column filters not working on multi-aggregation","Tooltip periods are not displayed nicely on SQL questions","Can''t change filters via ''Show filters''","Bubble size not consistent across multiple series","A hidden Database Sync doesn''t allow descriptions for tables or fields to be edited","Newly created Model not an option when creating a new question","Dashboard filter does not show Search widget when trying to workaround other filter issues","Chinese weekdays in calendar widget are incorrect","Field filter linked to Boolean column causes an error when refreshing a public question","Slack files channel can be confusing after initial setup"]},{"version":"v0.44.0","released":"2022-08-04","patch":false,"highlights":["Blank screen if user without permissions to view dashboard card tries to edit the dashboard filter","Bump jetty-server to 9.4.48.v20220622","Click behavior to another dashboard/question makes the browser open the destination on a new window","False warning that `No self-service` means higher access than `Block` permissions","Bookmark icon not updated when question is converted to model and vice-versa","Scalars show short number before showing the full number","Default /api/collection/tree call does not include \"exclude-archived=true\"","Archive page does not render all items","Revert buttons shown on dashboard revision history for users without edit permissions","Search returns irrelevant matches for non-native questions","Can''t embed cards with filters after v0.44.0-RC1 - Invalid Parameters: \"missing id\"","CASE statements don''t evaluate to False if using `, False` and nested CASE statements","\"Custom...\" model refresh setting does not work on first request","\"Our analytics\" appears on \"Save question\" collection search header even when user doesn''t have access to it","Exports fail on specific date styles","Bubble size is scaling according to y-axis on scatter charts","Error sending emails when reply-to setting contains empty string","Email settings needs to use real password, not obfuscated password","Wrong username/password on Office365 for email settings has misleading error","Bulk Filter Modal v3","Add snowplow tracking for new records on TaskHistory","Missing full-screen button on public dashbo', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 4, 'ards","Primary color is not being used on background colors, so branding is not kept consistent","Full Screen Night Mode Dashboard Has light background when scrolled down","Dark primary color in data visualization makes icons almost disappear.","Primary color in text with dark backgrounds makes text hard to read","Relative Date filters on dashboard does not include the filter on drill-through","Dashboard causes scrollbars to constantly go on/off depending on viewport size","Items in the saved question picker are sorted case-sensitive","Sandboxed group managers can''t see other users in the People tab"]},{"version":"v0.43.4.2","released":"2022-07-29","patch":true,"highlights":[]},{"version":"v0.43.4.1","released":"2022-07-28","patch":true,"highlights":[]},{"version":"v0.43.4","released":"2022-06-28","patch":true,"highlights":["Blank screen on questions with certain orphaned visualization settings","Metabase returns \"No results!\" when the SSH tunnel is down on a query","Changing account password to a non-complex password misleads the user with a success message even though the process fails","Relative \"quarter\" filter doesn''t work in SQL queries","New Slack setup not working, because App isn''t joining the files channel","Tooltips goes outside of iframe in some cases","\"Can''t pop empty vector\" when binning JSON fields","Collection name under dashboard title wraps weirdly when viewport is narrow","Incorrect use of types during Postgres JSON unfolding","Cannot filter `time` columns unless using the QB Sidebar","Frontend incorrectly shows empty boolean values as `false`"]},{"version":"v0.43.3","released":"2022-06-13","patch":true,"highlights":["Slack setup doesn''t work if channels cache was recently cleared","Custom Expression field is not respecting the modal size","Bump google oauth version","Relative filter with a lower \"Starting from\" period is confusing","Cannot print large dashboards (multi page)","Sync of JSON columns fails in schemas where schema names contains system characters","Sync of fields fails, when table name contains uppercase characters","Preview function in Notebook does not respect the columns selected on base source","Viewing Metadata for a Model and cancelling can result in error, and further in blank screen","Do not offer \"Explore results\" unless the database supports it","Cannot view Object Detail of non-numeric IDs","Incorrect use of types during Postgres JSON unfolding","Click Behavior not redirecting in some cases","Uploading certificates causes failure in TrustManager/KeyManager because of bad MIME-type","New Slack App does not allow selecting private channels for pulses","Query executions hitting the cache are not recorded","Pulse fails when there is a column type `time`"]},{"version":"v0.43.2","released":"2022-05-31","patch":true,"highlights":["Bump transitive com.google.code.gson/gson","Login page: Whitelabeled logo clips top of page if vertical","Sign in input fields are outside of screen on mobile","Filters are taking 100% viewport width on mobile/tablet in v.43.1","Updating data permissions counts questions as tables","Fix deadlock in pivot table connection management","Size of bubbles not respected on scatter chart","Strings in the time series chrome UI aren''t tagged for translation","dont read settings at require time","Unable to edit field name and description in Field page","Custom Expression aggregation in Metrics does not work","CPU spiking every hour since v0.43.0 upgrade","Negative Y axis points not rendered on scatter plot","X-ray charts don''t seem to respect whitelabel colors","Users with `block` permissions see ambiguous error message when they open a dashboard","It is possible to change filter column when filter date columns from the table header","We should cut the \"Navigation bar color\" option from /admin/settings/whitelabel","Site URL setting reverting to default randomly","Cannot use Click Behavior for filters with multiple options selected","Click Behavior with filter pass-thru causes permission error (even for admins)"]},{"version":"v0.43.1","released":"2022-05-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 5, STRINGDECODE('\",\"patch\":true,\"highlights\":[]},{\"version\":\"v0.43.0\",\"released\":\"2022-05-02\",\"patch\":false,\"highlights\":[\"Inconsistent colors in relative datetime filtering in sidebar\",\"Non-admin database manager can delete database using the API\",\"Query Builder data picker can \\\"forget\\\" about multiple schemas\",\"Data Model > Visibility buttons should \\\"signal\\\" they are clickable\",\"Date filter in the chart footer shows \\\"Previous\\\" filter type when \\\"All Time\\\" is selected\",\"\\\"Next\\\" relative filter tokens should read \\\"from now\\\" instead of \\\"ago\\\"\",\"Can''t change a relative month filter''s values when using the \\\"starting from\\\" feature\",\"Date preview is wrong when using the \\\"Starting from\u2026\\\" action when it pushes back before the current year\",\"`Include this quarter` action is missing the words \\\"this quarter\\\"\",\"Purple borders in date filter popover should be blue\",\"In the relative date picker, changing the granularity of the Past/Next range picker should change the granularity of the Starting From picker\",\"Let''s add the \\\"Metabase tips\\\" link for installers, too\",\"Errors when hiding/unhiding specific columns in table\",\"moving timelines and default interact poorly\",\"Sidebar stays open after entering a dashboard''s fullscreen mode\",\"Exports fail when certain columns are hidden and a field is remapped\",\"Random comma in \\\"Display values\\\" section of data model settings for a field\",\"Selecting language Indonesian causes error\",\"Can not get the minimum or maximum of some SQL fields\",\"MAX/MIN aggregation on categories incorrectly inferred as numbers\",\"[Data Permissions] Saved questions showing in the list of databases\",\"Textbox on dashboards are difficult move and missing options\",\"Permission graph does not support schemas with slashes\",\"Backend should deserialize dashboard `Starting From`/`Exclude` datetime filters\",\"Datetime shortcut \\\"Relative dates...\\\" should default to \\\"Past\\\" filters\",\"Embedding/Public sharing of questions does not show download button in the footer\",\"Dashboard shows scrollbar in fullscreen\",\"Subscriptions button shown on dashboard in fullscreen\",\"Global search input is shorter than the field\",\"Popover menu position floating too far initiator\"]},{\"version\":\"v0.42.4\",\"released\":\"2022-04-07\",\"patch\":true,\"highlights\":[]},{\"version\":\"v0.42.3\",\"released\":\"2022-03-23\",\"patch\":true,\"highlights\":[\"Exclude /_internals from production build (#21162)\",\"Upgrade MySQL/MariaDB JDBC driver to version 2.7.5\",\"Comma Separate Numbers filter not working as it previously did\",\"Markdown parsing on backend doesn''t support autolinks\",\"Subscription fails, when there''s specific characters that causes Markdown failure\",\"Custom Column allows aggregation functions together with algebra, which fails on query\",\"Cannot connect Google Analytics because of deprecated OAuth OOB\",\"Postgres certificate SSL key reference incorrect\",\"Embedding with Locked parameters does not allow numeric values\",\"Models should not be shareable (embedding/public)\",\"BigQuery: Aggregating by a datetime in a saved question fails because of bad aliasing\",\"\\\"Saved\\\" overlay in data model UI in weird location on smaller screen\",\"\\\"Compare to the rest\\\" action in drill-through menu looks busted\",\"Autocomplete suggestions are not working for most of the database tables\",\"Permissions paths validation is `GET` API endpoints is too strict; causes numerous endpoints to 500 if unknown entry is present\",\"Main page loading spinner spins forever on API error\",\"Cannot use Data Selector when going directly to a question in new tab (or browser refresh)\",\"\\\"Show error details\\\" in Query Builder should be toggleable\",\"No visual feedback when setting column properties in Admin > Data Model\",\"QP/MBQL: `[:relative-datetime :current]` doesn''t work inside `[:between]` filter\",\"Icon on empty activity page is misaligned\",\"Google Analytics updated Credentials aren''t used for Connection\",\"Google Analytics database connection stopped working.\",\"Binning not working in table with a single row\",\"Fix error in send-abandonment-emails task\",\"Can''t change Google Analytics DB settings\",\"when adding google a'), NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 6, 'nalytics as source, it''s not clear that I have to enable the API"]},{"version":"v0.42.2","released":"2022-02-28","patch":true,"highlights":["Dashboards breaks when there''s filters to cards that a user don''t have permissions to view","Questions with Field Filter with widget type \"None\" will not show results","Can''t combine saved questions on a dashboard card ","Setting a filter to \"Locked\" in Embedding question is not possible","Nested queries with long Data Model names causes failing query with incorrect aliasing","Dropdown list filtering not working, when there''s nulls","BigQuery - nested query generating bad aliases, when columns are renamed in Data Model","Summarizing with implicit join does not allow subsequent joins and nested query","Databases shows sync-spinner and doesn''t allow to remove it or do a forced sync"]},{"version":"v0.42.1","released":"2022-02-17","patch":true,"highlights":["Filter dropdown only allows filtering on \"starts with\"","Unable to filter dashboards for dashboard subscription emails","Dashboard filter with defaults, doesn''t work if values are removed, query fails","Pulse Question Alert to Slack sending cropped images","Cannot remove Google Sign-in setup","Embed dashboard Field Filter cannot work when choosing single option","Custom expression - Count needs parentheses, but deletes them afterwards","Cannot open Model sidebar in some cases","BigQuery incorrectly aliasing, which can make the query fail","Filtering on nested questions causes error in Public and Embedding","BigQuery nested query with ambiguous columns causes error","Setting a filter to \"Locked\" in Embedding is not possible","Remove unused dep on aleph (and thus unused transient dep on Netty)","Oracle queries don''t work when aliases (auto-generated or otherwise) contain double quotes or null characters","When no-data user views a nested question, then all editing options are exposed","When no-data user views a nested question, then \"Ask question\" and \"Browse data\" appears","Oracle fails queries on joins with tables with long display names","Pivot Table: Cannot change name of fields used for \"values\""]},{"version":"v0.42.0","released":"2022-02-08","patch":false,"highlights":["Waterfall static viz default settings","\"By coordinates\" map in People X-ray shows a nonsensical pin map","Pins do not appear on pin map","\"Explore results\" shown for no-data users resulting in blank screen when clicked","Blank screen when accessing Models with no-data user","Secret connection property file path is not retained when revisiting database edit page","Licensing page goes into reload-loop if token is expired","Descriptions missing in search results"," the Time picker AM and PM color can not be distinguished obviously","Horizontal scroll of pinned table doesn''t work on Firefox","Metadata tooltip popup on colum header casues data table to reset for number columns that are all NULLs ","Certain visualization_settings can cause empty/missing columns on export","Postgres unnecessarily casts `timestamptz` and `date` columns to `timestamp` inside `date_trunc()` ","Alert Stopped email is Unhelpful","Exports ignore column ordering regression in v0.41.6","Premature calls to `to-sql` inside `sql.qp/->honeysql` methods","Visualization \"auto-viz\" doesn''t keep existing settings, when changing fields returned","Can''t add a filter if the value isn''t in the field filters dropdown","Clean up database guide usability during configuration","defsetting `:tag` metadata should be on the arglists themselves, not the var","Clean up how we show deprecated database drivers","SQLite/Redshift/SQL Server/MySQL queries don''t work correctly with multiple column aliases with same name but different case","Archived sub-collections are still showing in Permissions","Clean up how we show deprecated database drivers","XLSX exports are leaving temporary files, which can block instance from working","Add a way to return to previous page from sign in cases","Consolidate first db sync modal and X-ray selection","[Epic] Migrate Slack implementation from Bot to App","Improve', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 7, ' Filters for 42","Clean Up Settings Navigation"]},{"version":"v0.41.6","released":"2022-01-14","patch":true,"highlights":["Specific visualization_settings can cause empty export","Cannot change Field Filter reference to another schema/table if viewing the question directly","Upgrade Log4j to 2.17.1","Names of schemas or namespaces in the Data Model should wrap","Broken layout on Data Model page on locales with longer text"]},{"version":"v0.41.5","released":"2021-12-16","patch":true,"highlights":["Upgrade Log4j to 2.16.0","X-rays fails if there''s a filter in the question","XLSX export does not respect \"Separator style\"","One cannot change any of the LDAP Settings once it''s been initially setup","Custom Expression `coalesce` is using wrong field reference when nested query","Custom Expression `case` is using wrong field reference when nested query","Dashboard causes permission error, when \"Click Behavior\" linking to dashboard/question without access","Site URL validation too strict, doesn''t accept underscore","Reverse proxy reset email should use site URL in email body and not localhost"]},{"version":"v0.41.4","released":"2021-12-10","patch":true,"highlights":[]},{"version":"v0.41.3.1","released":"2021-12-02","patch":true,"highlights":["BigQuery and Google Analytics drivers broken on x.41.3","BigQuery connection error on 0.41.1"]},{"version":"v0.41.3","released":"2021-12-01","patch":true,"highlights":["Static viz creates Picaso painting, when data is unordered Timeseries","Harmonize Google dependency versions, which could cause conflict between GA and new BigQuery driver","Saving/updating questions can take a very long time (seconds or minutes) on large instances","Funnel chart showing retained NaN% when all rows from aggregate column are zero","Changing a (old) pivoted table to less than 3 columns results in blank screen","Exports fails, when there''s invalid visualization `column_settings` references","Cannot send test emails before creating subscription, when using non-default filter values","Native editor autocomplete suggestions makes object lookup without `limit`","Strip whitespace from Google sign-in client IDs","Validate Google sign-in client IDs","Dashboard causes permission error, when \"Click Behavior\" linking to dashboard/question without access","Clicking on legend in native question breaks the UI","Trend tile on dashboard differs from tile on full screen"]},{"version":"v0.41.2","released":"2021-11-09","patch":true,"highlights":["Frontend crashes when opening admin database permissions page","Cannot access Notebook for questions that uses a Custom Column as joining column","Requests to `GET /api/card/123` is making slow queries on larger instances","BigQuery can cause conflict with some column names like `source`","\"Verify this question\" button is shown even when content moderation feature is not enabled","New BigQuery driver with \"Project ID (override)\" defined causes different Field Filter references","Dashboard subscription send by Email fails with xlsx attachements","Textbox markdown links on images difficult to click","Some questions with old field dimensions or changed columns cannot be viewed, because of Javascript loop","Multi-column join interface defaults binning for numeric fields causing incorrect results","Sandboxing queries fails with caching is enabled","Changing redshift db details leads to closed or broken resource pool","Audit visualizations does not show correct information, when there''s more than 1000 aggregated dates","\"Set up your own alert\" text needs padding ","Dashboard Subscriptions are not deactivated, when dashboard is archived","Update Uberjar builds on CircleCI to new build script","ED25519 keys not working for built-in SSH tunnels","Pin Maps with more than 1000 results (LeafletTilePinMap) not working with native queries"]},{"version":"v0.41.1","released":"2021-10-21","patch":true,"highlights":["Not all endpoints are called, when doing FullApp embedding","XLSX export of large columns fails because of formatting limitations","Caching on 0.41.0 caches results for very long', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 8, STRINGDECODE(' time (does not respect settings defined)\",\"Exporting large amount of data can result in OutOfMemory\",\"Chart descriptions (except table) is not shown in dashboards\",\"Better approach for column ordering in exports\",\"Remapped (display value) columns are dropped in downloads\",\"Tools for fixing errors problems with postgres semantics of limits (blank display of error table)\",\"Filtering null-column via the drill-through action menu causes blank screen\",\"Data Model shows blank page if there are any hidden tables in the database\",\"Columns missing from exports, when viz settings are using older field dimensions\",\"Pulses with rounded floats render a hanging decimal point in 0.41.0\",\"Raise MB_DB_CONNECTION_TIMEOUT_MS to 10000 as default\",\"Pulse/Subscription table cards with two columns (string, integer) fail to render\",\"[Add Database > Presto] Multiple JDBC field options\",\"Impossible to choose fields from different schema on Field Filters\",\"In email subscription, the original question title is shown instead of the curated title (v41)\",\"Audit > Questions > Total runtime displays link instead of an actual time\",\"KeyExchange signature verification failed for key type=ssh-rsa\",\"Export to XLSX can fail, when there''s a very high integer value\",\"Questions -> all questions in Audit feature sorts by null values\",\"Allow caching of fonts and images\",\"Dashboard Subscription test email button does not show error messages\",\"EE Audit App frontend does not display error messages if queries fail\",\"Dashboard Textbox does not render links unless using Markdown\",\"Pin map only containing null location results causes the frontend to constantly reload or blank page\",\"X-Rays: Table field is shown as \\\"null\\\" in the title\",\"Custom Column with the same name as a table column returns incorrect results when grouped\",\"Adding data series to dashboard widget lags then sometimes hangs the UI\"]},{\"version\":\"v0.41.0\",\"released\":\"2021-10-06\",\"patch\":false,\"highlights\":[\"Went setting up multiple Dashboard Subscriptions, \\\"Send email now\\\" always sends the first one you set up until you refresh the page\",\"Pull in translations for 0.41\",\"Export in 0.41.0-rc1 does not include aggregated columns\",\"Whitelabel color options are not translatable\",\"Error inserting to view_log in 41-RC1\",\"Fix filter alignment in emails with many or long values\",\"Whitelabel includes `Metabase` in the subject for Alerts\",\"XLSX download fails, when settings still has the old `k:mm` hour-format instead of `HH:mm`\",\"History of last edited questions\",\"Search fields in `Tools > Errors` should be disabled when there are no questions\",\"\\\"Rerun Selected\\\" button is always enabled (even when there are no broken questions)\",\"Dragging dashboards filters makes them hidden while dragging\",\"Fix x-ray dashboards crash on first open\",\"Fix Audit logging not showing ad-hoc native queries\",\"X-ray dashboards crash on first opening\",\"Send to Slack/Send email now buttons on dashboard subscriptions send the wrong dashboard\",\"master - the upper-corner Run/Reload button has become very big\",\"Schemas with only hidden tables are shown in the data selector\",\"Saved Question: changing the breakout field (summarize) removes order-by (sort)\",\"Notebook Join UI display wrong table name with multiple join (master)\",\"Active filter widget are not using whitelabel color on border\",\"Data point value can be slightly cut-off for the top Y-axis values\",\"Dashboard sticky filter section is visible even when there aren''t any filters\",\"Click Behavior does not work with old Pivot\",\"BigQuery Custom Column difficult to use because of name restrictions\",\"Revision history does not update until page reload\",\"Visualizations are not always using whitelabel colors by default\",\"BigQuery Custom Expression function `Percentile` and `Median` not using correct backtick quoting\",\"BigQuery `BIGNUMERIC` is recognized as `type/*` and displayed as string\",\"Joining behavior on datetime columns needs to be clearer\"]},{\"version\":\"v0.40.5\",\"released\":\"2021-09-21\",\"patch\":true,\"highlights\":[\"\ud83e\udd16 backported \\\"GeoJSON URL validation fix\\\"\",\"Grid map causes frontend'), NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 9, STRINGDECODE(' reload or blank screen, when hovering the grids if there is no metric\",\"Cannot create more than 2 metrics, when UI language is Turkish - screen goes blank or displays \\\"Something went wrong\\\"\",\"Visualizations with more than 100 series just shows a blank chart\",\"Data point values uses formatting Style of first serie on all series\"]},{\"version\":\"v0.40.4\",\"released\":\"2021-09-09\",\"patch\":true,\"highlights\":[\"Dashboard filter autocomplete not working with mixed Search/Dropdown when dropdown has a `null` value\",\"Not possible to delete Dashboard Subscription unless dashboard is in root collection\",\"Possible to not input recipient of Subscription, which will then cause blank screen\",\"Valid Email settings disappear on save, but re-appear after refresh\",\"Unable to click \\\"Learn more\\\" on custom expression\",\"Editing an alert causes it to be deleted in some circumstances\",\"New databases with \\\"This is a large database ...\\\" still uses the default sync+scan settings\",\"Adding cards to dashboard via search can cause the card to show spinner until browser refresh\",\"Cannot login with OpenAM SAML since 1.38.3\",\"Native question \\\"Filter widget type\\\"=\\\"None\\\" hides the filter widget even after changing it to something else\"]},{\"version\":\"v0.40.3.1\",\"released\":\"2021-08-26\",\"patch\":true,\"highlights\":[]},{\"version\":\"v0.40.3\",\"released\":\"2021-08-25\",\"patch\":true,\"highlights\":[\"\ud83e\udd16 backported \\\"Keep `collection_id` of dashboard subscriptions in sync with same field on dashboard\\\"\",\"Run-overlay not going away on GUI question\",\"Dashboard causes scrollbars to constantly go on/off depending on viewport size \",\"Serialization `--mode skip` incorrectly updates some objects\",\"Serialization crashes on dump if there''s no collections\",\"Serialization: Cannot load into empty/blank target\",\"Clicking the column formatting button when the sidebar is already open should correctly open that column''s formatting sidebar\",\"Dashboard Subscription doesn''t follow the order of the cards on the dashboard\",\"Clicking away from Sandbox modal breaks perms page\"]},{\"version\":\"v0.40.2\",\"released\":\"2021-08-03\",\"patch\":true,\"highlights\":[\"Update strings for 0.40.2\",\"Docs for 40.2\",\"Snippet folder permissions are always applied to root\",\"Cannot start development in VS Code because of missing Node.js\",\"Search widget on question builder hangs tab, API field search limit not respected\",\"Only 50 groups are displayed\",\"People search dropdown goes outside of the screen\",\"Only 50 users shown in email autocomplete and \\\"Other user''s personal collection\\\"\",\"Dashboard - Adding \u2018Click Behavior\u2019 to an image field converts image to URL\",\"Cannot upgrade to v0.40.x on AWS Elastic Beanstalk due to AWS Inspector not being available in certain regions\",\"Add Metabase Cloud link to admin settings for hosted instances\",\"Fix dashboard card hovering buttons drag behaviour\",\"Elastic Beanstalk nginx config is not updated on latest EB docker images\",\"Cannot deactivate users after the first 50 users\",\"Tabs in the Audit section look broken\",\"Duplication of the displayed table\",\"Allow selecting text in Textbox cards, while dashboard is in edit-mode\",\"Metabase on old AWS Elastic Beanstalk (Amazon Linux w/ old Docker) upgrade to 0.40 failed\",\"Popover footer is displaced when using filter with a search input\",\"Public Sharing footer is double-size because action buttons are stacked\",\"Error when setting column type to Number in data model settings\",\"Site URL can sometimes be incorrectly defined during startup\",\"Padding needed for button on map settings page\",\"LDAP/Email settings gets cleared if validation fails\",\"Serialization: Visualization column settings lost\",\"Waterfall visualization does not work with ordinal X-axis\",\"Clicking \\\"Cancel\\\" on collection archive modal should let you stay in that same collection\",\"Snowflake Connector Requires Deprecated Region Id\",\"Modify instead of replace default EB nginx config\"]},{\"version\":\"v0.40.1\",\"released\":\"2021-07-14\",\"patch\":true,\"highlights\":[\"An error occurs when opening a public question with filters having default parameters\",\"Remove Multi-Release from manifest\",\"'), NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 10, 'Questions filters does not work in Embedded/Public","Long titles in collections push out the last-edited-by and last-edited-at columns","Only first 50 databases are displayed","After hiding the column and then setting a required default value for SQL field filter (connected to that column) shows all fields as hidden and breaks SQL filters completely","Global search suggestions dropdown appears behind the dataset search widget when starting a simple question","Clean up the user-facing strings for coercion options","Clicking Visualize in Notebook makes the question \"dirty\" even if no changes was made"]},{"version":"v0.40.0","released":"2021-07-08","patch":false,"highlights":["Avoid error when user searches with no data perms","Updated saved question data picker - styling improvements","The pinned items from the main collection are not showed on the front page anymore","[0.40 blocker] Handle personal collections better in the new saved question data picker","Remove \"Something went wrong\"","Filter flag causes overlay for required \"Number\" filter with the default value set","Do not show Cloud CTA for Enterprise Edition","The list of collections available on homepage \"Our analytics\" depends on the name of the first 50 objects","Filter feature flag causes Run-overlay of results in Native editor unless editor is expanded","Error message missing when logging in to a disabled account with Google sign-in","unix-timestamp->honeysql implementation for h2 is incorrect for microseconds","Fix funnel appearance","Confusing UI when adding GeoJSON with no identifiers","Better error handling when adding malformed GeoJSON","Can''t archive a question from the Question page","Can''t move item to \"Our analytics\" using drag-n-drop","Can''t \"Select All\" collection items if all items are pinned","Bulk archive doesn''t work","Selecting bin count on intermediate data question fails","Collections Metadata FE Implementation","Group by on a `:Coercion/YYYYMMDDHHMMSSBytes->Temporal` postgres column fails","Double binning menu for date fields when using Saved Question (Native)","Cannot filter only on longitude/latitude range - UX is forcing user to fill out values for both fields","Bug in values on data points for waterfall charts","Table view on Permissions shows error on browser refresh","Password login on SSO instance drops the redirect URL","No error is reported when adding SQLite database that doesn''t exist","Specific combination of filters can cause frontend reload or blank screen","Dashboard Contains filter doesn''t remain when clicking on Question title","Normal login errors are not surfaced if SSO is also active"]},{"version":"v0.39.4","released":"2021-06-16","patch":true,"highlights":["Javascript error when enabling JWT authentication","Switch to column settings when sidebar is already open","Questions on MongoDB return ''No results!'' after upgrade from 0.38.5 to 0.39.0 when filtering against array ","Login blocked till timeout if Metabase can''t reach GeoJS API","Missing tooltip for sharing individual question","Histograms should filter out null x values","Shifted chart values on line with ordinal x axis","Don''t show Custom Expression helper, when input is not in focus","Dashboard filters dropdown only list the first 100 values","Cannot use arithmetic between two `case()` function in Custom Expression","LDAP login fails with Group Sync when user is assigned to 1 group","LDAP auth errors with \"did not match stored password\" if `givenName` or `sn` is missing","Cannot join Saved Questions that themselves contains joins","Human-reable numering not working properly","Time series filter and granularity widgets at bottom of screen are missing","LDAP group sync - LDAPException after removing user from a mapped group","Dashboard text cards aren''t scrolling"]},{"version":"v0.39.3","released":"2021-05-27","patch":true,"highlights":["Feature flag causes problems with Number filters in Native query","Revoking access to users in multiple groups does not correctly cleanup GTAP","LDAP settings form hitting wrong API endpoint on save","ExpressionEditor ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 11, 'loses value when user resizes browser window","ExpressionEditor loses value when user clicks away from associated name input","Filter dropdown not working for non-data users, when field has 300+ distinct values.","Tooltip only shows first Y-axis value when X-axis is numeric and style is Ordinal/Histogram","Gauge visualization on small screens can cause frontend refresh on hover","Serialization: `field-literal` converted to `field` since 1.39.0","Serialization dumps with static references instead of paths in 1.39.0","Fix Serialization P1s","Incorrect result + loss of user input when summarizing with Saved Question","Some places shows `{0}` placeholder instead of expected value","Serialization load-process does not update `source-table` in joins, leading to broken questions","Unchecking \"Remember me\" box has no effect -- close the browser and reopen, then go back to your MB instance and you''re still logged in","Serialization `dump` includes Personal Collections","Serialization: Nested question references questions in other collection are moved and becomes corrupted","Serialization: Snippet folders and Collections collide on `dump` because of missing namespace separation","Serialization: Snippets are not transferred correctly, leading to incorrect references and broken queries","Serialization: Click Behavior not translating entitiy ID on dump, potentially referencing wrong entities on load","Wrong LDAP port input (non-numeric) can cause complete lockout","Nested queries using metric got wrong SQL","Cannot aggregate question with unix timestamp column that is converted/cast in Metabase","Test LDAP settings before saving","Nested queries using metrics need to include all columns used in metric filters"]},{"version":"v0.39.2","released":"2021-05-17","patch":true,"highlights":["Regression combining Druid date filters with dimension filters","Regression in filtering Druid table where greater than date","Variable Field Type after upgrade \"Input to parse-value-to-field-type does not match schema\"","Whitelabel favicon does not work correctly in all browsers","Show right versions on enterprise custom builds","Not possible to select pinned collection item using checkbox","The new \"contains\" behavior for field value lookup doesn''t work outside of dashboards","Cannot restore table visibility in Data Model, when database is down","LDAP user authorization failed with `$` in password","Difficult to use some filters, when user has no data permissions [FE - Filter widget stops working if API endpoint returns 403]","Serialization: Dashboard cards are corrupted, when questions are outside of dashboard collection","Collection tree loader causes UI jump","Filters with dropdown lists uses query on the database","Login Failing for LDAP if user email isn''t lowercase","Startup warning about unsupported class will impact performance","Auth Returns 400 Bad Request instead of 401 Unauthorized upon wrong credentials submission","Need better instructions for setting up Google Auth"]},{"version":"v0.39.1","released":"2021-04-27","patch":true,"highlights":["Tooltip shows incorrect values on unaggregated data with breakout","Can''t use parentheses as expected in filter expressions","UI prevents adding 2 parameters to `Percentile()` function","Login logo is left-aligned on EE, when whitelabel features are enabled","No loading spinner when clicking a Collection on the home page","Tooltip on unaggregated data does not show summed value like the visualization","Table with multiple Entity Key columns incorrectly filtering on \"Connected To\" drill-through"]},{"version":"v0.39.0.1","released":"2021-04-20","patch":false,"highlights":["Cannot select category Field Filter in Native query on 0.39.0","map category/location to string so we can treat them like string/= in UI"]},{"version":"v0.39.0","released":"2021-04-19","patch":false,"highlights":["Strings with placeholders like {0} aren''t translating correctly","Wrong tooltip labels and values for multiple series charts in dashboard","Add feature flag for the new 0.39.0 dashboard filter types","Pulse fails when', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 12, ' visualization_settings is referring to a field-literal column","Login History not recording correct IP address","Add an ENV var setting for typeahead search","BigQuery with filter after aggregation of join table fails query with wrong alias reference on 38.x","Dashboard Textbox images are 100% width","Questions based on Saved Questions is not using the same query for date filters leading to wrong results","0.39 string translations","0.39 Docs","Add missing \"is\" assertions to various tests","Custom Expression autocomplete operator selection is appended to what was typed","Custom Expression formula starts with high cursor placement on Firefox","Custom Expression filter not setting the \"Done\" button to current state of the formula until onblur","Custom Expression editor is removing spaces too aggressive","Hitting return when modifying a custom expression incorrectly discards changes","metabase/metabase-enterprise-head Docker image doesn''t have enterprise extensions","Custom expressions: UI is too wide when shown in the sidebar","Search: some results are as being in a folder which doesn''t exist in the data reference","Error saving metric in data reference","Dashboard Subscription Filters: Set Parameter Values","Normalize queries in URL fragments on FE","Support string and number filter operators in dashboard parameter filters ","defsetting macro throw an Exception if you try to define a setting that''s already defined in a different namespace","Fix render error when removing a dashboard parameter","Upgrade HoneySQL version to latest","Dashboard Filter Improvements (to support large-scale rollout)","SSH Connectivity Improvements","MBQL Refactor: Combine various Field clauses into one new clause"]},{"version":"v0.38.4","released":"2021-04-12","patch":true,"highlights":["Not possible to position Y-axis if there''s only one series","Tooltip on unaggregated data does not show summed value like the visualization","For a new Custom column, I can set Style to \"Currency\", but cannot choose the Unit of Currency","Add Kyrgyz Som to currency list"]},{"version":"v0.38.3","released":"2021-04-01","patch":true,"highlights":["Overflow text on Ask a question page ","Filtering on coerced column doesn''t always know its coerced","Wrong series label in multiple series scatterplot","Dashboard Subscription fails for all SQL questions with a Field Filter on date column connected on dashboard","Dashboard Subscription Emails do not work with filtered Native Queries","Dashboard Subscription sidebar broken for Sandboxed users","Provide more logging information on permission errors when creating Cards"," In Settings > Email, Save Changes is enabled even when there are no changes","Exports always uses UTC as timezone instead of the selected Report Timezone","Invalid Redirect Location After SAML Sign-in via Full App Embed","Cannot download XLSX if there''s more than 1 million results","Frontend load issue: SMTP Email","Pie chart sometimes does not show total","Users with collections \"edit\" permissions and no data access permissions can''t edit question metadata","Add Bitcoin as a unit of currency","Column \"Custom title\" not working in tooltips","Schema sync does not update changes in column type case","Error on visualization change of a question with SQL queries view only permission","Line chart dots don''t have `cursor: pointer` when hovering"]},{"version":"v0.38.2","released":"2021-03-17","patch":true,"highlights":["Data model not showing PostgreSQL tables when they are partitioned","Migrate old pre-1.37 \"Custom Drill-through\" settings to x.37+ \"Click Behavior\"","Regression with URL links"]},{"version":"v0.38.1","released":"2021-03-03","patch":true,"highlights":["Serialization `dump` of aggregated questions are not copied over on `load`","Serialization doesn''t update Sub-Query variable reference","Oracle, BigQuery filtering by column with day-of-week bucketing not working","Pivot Table export not working on unsaved questions","Pivot Table does not work for users without data permissions","Pivot Table not working with Sandboxed user","BigQuery: ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 13, 'Joins in the query builder generate invalid table aliases","BigQuery: Question Stays running until timeout when query is error in Native Query","Serialization: Archived items are included in `dump`","Breadcrumbs can be confusing (the current one \"seems\" clickable when it''s not)","regexextract breaks query on sandboxed table","Multi-level aggregations fails when filter is the last section","Pivot queries aren''t recorded to query execution log","Start of Week not applied to Field Filter in Native question, which can lead to incorrect results","In Safari 14, add-grouping button disappears randomly but consistently","Serialization does not initialize 3rd party drivers when loading a dump","Wrong day names are displayed when using not-Sunday as start of the week and grouping by \"Day of week\"","Difficult to see which cells has \"Click behavior\" vs normal behavior","Object Detail previous/next buttons not working correctly","Global number formatting does not apply to percentages","Native question filter widget reordering doesn''t work"]},{"version":"v0.38.0.1","released":"2021-02-19","patch":false,"highlights":[]},{"version":"v0.38.0","released":"2021-02-16","patch":false,"highlights":["Sandboxed question with `case` Custom Field doesn''t substitute the \"else\" argument''s table","Custom Expression using `case()` function fails when referencing the same column names","Filtering a Custom Column does not give correct results when using \"Not equal to\"","Cannot remove columns via QB sidebar, then query fails, but works if being removed via Notebook","fix(rotate-encryption-key) settings-last-updated is not encrypted","For Pivot Tables, download popup doesn''t show","Dashboard Subscriptions: Have to click the close button multiple times after viewing a Subscription","Advanced Sandboxing ignores Data Model features like Object Detail of FK","Publish \"latest\" OSS JAR","Custom GeoJSON files are not sorted in the dropdown","user@password JDBC connection strings for application DB no longer work","Shrunken bubbles shown in question for null values","Drilling down by a Region Map assigns the wrong value to the filter","Using \"Reset to defaults\" on textbox causes it to become a corrupted card on dashboard","Add a lightweight notify api endpoint","Sandboxing on tables with remapped FK (Display Values) causes query to fail","Allow usage of PKCS-12 certificates with Postgres connections","dump-to-h2 does not return a non-zero exit code on failure","Advanced Sandboxing using questions that return more/other columns than the sandboxed table is not possible anymore, but the errors are not helpful","Bar chart x-axis positions can cause different spacing depending on the dates returned","Custom Columns breaks Pivot Table","Pivot tables broken on dashboard after resize","dump-to-h2 with --dump-plaintext should check for presence of MB_ENCRYPTION_SECRET_KEY","Right alignment of pivot table value cells looks broken","Don''t inform admins about MB cloud on EE instances","add cmd rotate-encryption-key","Token check retry is too aggressive","Login page should automatically focus on the email input field","Dashboard subscriptions including cards no longer in dashboard","UI should update when a collection changes parent"]},{"version":"v0.37.9","released":"2021-02-11","patch":true,"highlights":[]},{"version":"v0.37.8","released":"2021-01-29","patch":true,"highlights":["Cannot add (date) filter if calendar is collapsed"]},{"version":"v0.37.7","released":"2021-01-20","patch":true,"highlights":[]},{"version":"v0.37.6","released":"2021-01-13","patch":true,"highlights":[]},{"version":"v0.37.5","released":"2021-01-05","patch":true,"highlights":["Linked filters breaking SQL questions on v0.37.2","Embedding loading slow","Cannot toggle off ''Automatically run queries when doing simple filtering and summarizing'' "]},{"version":"v0.37.4","released":"2020-12-17","patch":true,"highlights":["Error in Query: Input to aggregation-name does not match schema","Revert #13895","Exports always uses UTC as timezone instead of the selected Report Timezone","Between Dates f', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 14, 'ilter behaves inconsistently based on whether the column is from a joined table or not"]},{"version":"v0.37.3","released":"2020-12-03","patch":true,"highlights":["Fix chain filtering with temporal string params like ''last32weeks''","Linked filters breaking SQL questions on v0.37.2","Running with timezone `Europe/Moscow` shows Pulse timezone as `MT` instead of `MSK` and sends pulses on incorrect time","Order fields to dump by ID","Remove object count from log output"]},{"version":"v0.37.2","released":"2020-11-16","patch":true,"highlights":["When visualization returns `null` (No results), then UI becomes broken"]},{"version":"v0.37.1","released":"2020-11-12","patch":true,"highlights":["Table schema sync performance impact","v0.37.0.2 doesn''t sync Vertica schema","Pie chart shows spinner, when returned measure/value is `null` or `0`","Wrong day names are displayed when using not-Sunday as start of the week and grouping by \"Day of week\"","When result row is `null`, then frontend incorrectly shows as \"No results!\"","Snowflake tables with a GEOGRAPHY column cannot be explored","Cannot edit BigQuery settings without providing service account JSON again","Sync crashes with OOM on very large columns/row samples [proposal]","500 stack overflow error on collection/graph API call","Custom Column after aggregation creates wrong query and fails","The expression editor shouldn''t start in error mode without any user input","Pulse attachment file sent without file extension","Metric with unnamed Custom Expression breaks Data Model for table","Nested queries with duplicate column names fail","pulse attachment file(question name) Korean support problem","Pulse Bar Chart Negative Values Formatting"]},{"version":"v0.37.0.2","released":"2020-10-26","patch":false,"highlights":[]},{"version":"v0.36.8.2","released":"2020-10-26","patch":true,"highlights":[]},{"version":"v0.37.0.1","released":"2020-10-23","patch":false,"highlights":[]},{"version":"v0.36.8.1","released":"2020-10-23","patch":true,"highlights":[]},{"version":"v0.37.0","released":"2020-10-22","patch":false,"highlights":["Fix null handling in filters regression","Add translation for Bulgarian","0.37.0-rc3: Click behavior to Dashboard shown on Public/Embedded","NO_COLOR/MB_COLORIZE_LOGS does not remove all ansi codes","0.37.0-rc3: Filtering a joined table column by \"Is not\" or \"Does not contain\" fails","Update translations for final 0.37 release","0.37.0-rc2: Monday week start displays incorrectly on bar chart","0.37.0-rc2: Linked filter showing all values (not filtering)","Only get substrings in fingerprinting when supported [ci drivers]","0.37.0-rc2: log4j should not output to file by default","0.37-RC2: we should suppress drag behavior when custom click behavior is set","0.37-RC2: disable Done button in cases where click behavior target isn''t specified","0.37-RC2: weird edit state when saving a dashboard with incomplete click behavior","0.37-RC2: Interactivity summary tokens squashed on small dashboard cards","0.37.0-rc2: Hovering on custom map no longer displays region name, displays region identifier instead","0.37.0-rc1: \"Click behavior\" to URL for non-table card, doesn''t show reference fields to use as variables","0.37.0-rc1: Variables from Saved Question are referencing the same question","0.37.0-rc2: Cannot create custom drill-through to dashboard","0.37-rc1: after clicking a custom link that passes a value to a param, clicking Back shouldn''t bring that value to the original dashboard","0.37-rc1: When mapping dashboard filters to columns, SQL questions should display the name of the column mapped to the field filter","0.37-rc1: customizing a dashboard card''s click behavior without specifying a destination causes strange behavior","0.37-rc1: canceling the dashboard archive action takes you to the collection","Embedded versions of new chain filters endpoints ","\"Does not contain\" and \"Is not\" filter also removes nulls","Docs - 37 release - new dashboard functionality","forward slash on table name causes ORA-01424 and blocks the sync step","Update login layout and ill', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 15, STRINGDECODE('ustration.\",\"MySQL grouping on a TIME field is not working\",\"Field Filter variables in SQL question don\u2019t show table name when connecting filters in dashboard\",\"Upgrade to log4j 2.x\"]},{\"version\":\"v0.36.8\",\"released\":\"2020-10-22\",\"patch\":true,\"highlights\":[]},{\"version\":\"v0.36.7\",\"released\":\"2020-10-09\",\"patch\":true,\"highlights\":[\"Presto not respecting SSL and always uses http instead of https\",\"Footer (with export/fullscreen/refresh buttons) on Public/Embedded questions disappears when using Premium Embedding\",\"Postgres sync not respecting SSH tunneling\"]},{\"version\":\"v0.36.6\",\"released\":\"2020-09-15T22:58:04.727Z\",\"patch\":true,\"highlights\":[\"Various bug fixes\"]},{\"version\":\"v0.36.5.1\",\"released\":\"2020-09-11T23:16:26.199Z\",\"patch\":true,\"highlights\":[\"Remappings should work on broken out fields\"]},{\"version\":\"v0.36.4\",\"released\":\"2020-08-17T22:41:20.449Z\",\"patch\":true,\"highlights\":[\"Various bug fixes\"]},{\"version\":\"v0.36.3\",\"released\":\"2020-08-04T23:57:45.595Z\",\"patch\":true,\"highlights\":[\"Support for externally linked tables\"]},{\"version\":\"v0.36.2\",\"released\":\"2020-07-31T17:46:34.479Z\",\"patch\":true,\"highlights\":[\"Various bug fixes\"]},{\"version\":\"v0.36.1\",\"released\":\"2020-07-30T18:10:44.459Z\",\"patch\":true,\"highlights\":[\"Various bug fixes\"]},{\"version\":\"v0.36.0\",\"released\":\"2020-07-21T19:56:40.066Z\",\"patch\":false,\"highlights\":[\"SQL/native query snippets\",\"Language selection\"]},{\"version\":\"v0.35.4\",\"released\":\"2020-05-29T17:31:58.191Z\",\"patch\":true,\"highlights\":[\"Security fix for BigQuery and SparkSQL\",\"Turkish translation available again\",\"More than 20 additional bug fixes and enhancements\"]},{\"version\":\"v0.35.3\",\"released\":\"2020-04-21T21:18:24.959Z\",\"patch\":true,\"highlights\":[\"Various bug fixes\"]},{\"version\":\"v0.35.2\",\"released\":\"2020-04-10T23:03:53.756Z\",\"patch\":true,\"highlights\":[\"Fix email and premium embedding settings\",\"Fix table permissions for database without a schema\",\"Fix \\\"Error reducing result rows\\\" error\"]},{\"version\":\"v0.35.1\",\"released\":\"2020-04-02T21:52:06.867Z\",\"patch\":true,\"highlights\":[\"Issue with date field filters after v0.35.0 upgrade\",\"Unable to filter on manually JOINed table\"]},{\"version\":\"v0.35.0\",\"released\":\"2020-03-25T18:29:17.286Z\",\"patch\":false,\"highlights\":[\"Filter expressions, string extracts, and more\",\"Reference saved questions in your SQL queries\",\"Performance improvements\"]},{\"version\":\"v0.34.3\",\"released\":\"2020-02-25T20:47:03.897Z\",\"patch\":true,\"highlights\":[\"Line, area, bar, combo, and scatter charts now allow a maximum of 100 series instead of 20.\",\"Chart labels now have more options to show significant decimal values.\",\"Various bug fixes\"]},{\"version\":\"v0.34.2\",\"released\":\"2020-02-05T22:02:15.277Z\",\"patch\":true,\"highlights\":[\"Various bug fixes\"]},{\"version\":\"v0.34.1\",\"released\":\"2020-01-14T00:02:42.489Z\",\"patch\":true,\"highlights\":[\"Various bug fixes\"]},{\"version\":\"v0.34.0\",\"released\":\"2019-12-20T01:21:39.568Z\",\"patch\":false,\"highlights\":[\"Added support for variables and field filters in native Mongo queries\",\"Added option to display data values on Line, Bar, and Area charts\",\"Many Timezone fixes\"]},{\"version\":\"v0.33.7.3\",\"released\":\"2019-12-17T01:45:45.720Z\",\"patch\":true,\"highlights\":[\"Important security fix for Google Auth login\"]},{\"version\":\"v0.33.7\",\"released\":\"2019-12-13T20:35:14.667Z\",\"patch\":true,\"highlights\":[\"Important security fix for Google Auth login\"]},{\"version\":\"v0.33.6\",\"released\":\"2019-11-19T20:35:14.667Z\",\"patch\":true,\"highlights\":[\"Fixed regression that could cause saved questions to fail to render (#11297)\",\"Fixed regression where No Results icon didn''t show (#11282)\",\"Pie chart visual improvements (#10837)\"]},{\"version\":\"v0.33.5\",\"released\":\"2019-11-08T20:35:14.667Z\",\"patch\":true,\"highlights\":[\"Added Slovak translation\",\"Fixed support for MySQL 8 with the default authentication method\",\"Fixed issues with X-axis label formatting in timeseries charts\"]},{\"version\":\"v0.33.4\",\"released\":\"2019-10-08T20:35:14.667Z\",\"patch\":true,\"highlights\":[\"Custom expression support for joined columns\",\"Fixed issue with filtering by month-of-year in MongoDB\",\"Misc Bug Fixes\"]},{\"ver'), NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 16, 'sion":"v0.33.3","released":"2019-09-20T08:09:36.358Z","patch":true,"highlights":["Chinese and Persian translations now available again","Misc Bug Fixes "]},{"version":"v0.33.2","released":"2019-09-04T08:09:36.358Z","patch":true,"highlights":["Fixed Cards not saving","Fixed searrch not working "]},{"version":"v0.33.1","released":"2019-09-04T08:09:36.358Z","patch":true,"highlights":["Fixed conditional formatting not working","Fixed an issue where some previously saved column settings were not applied ","Fixed an issue where pulses were not loading "]},{"version":"v0.33.0","released":"2019-08-19T08:09:36.358Z","patch":false,"highlights":["Notebook mode + Simple Query Mode","Joins","Post Aggregation filters"]},{"version":"v0.32.10","released":"2019-07-28T08:09:36.358Z","patch":true,"highlights":["Fix User can''t logout / gets automatically logged in.","Fix No data displayed when pivoting data","Fixed Dashboard Filters on Linked Entities Broke"]},{"version":"v0.32.9","released":"2019-06-14T08:09:36.358Z","patch":true,"highlights":["Fix issues connecting to MongoDB Atlas Cluster","Fix database addition on setup","Fixed numeric category error with Postgres"]},{"version":"v0.32.8","released":"2019-05-13T08:09:36.358Z","patch":true,"highlights":["Fix i18n"]},{"version":"v0.32.7","released":"2019-05-09T08:09:36.358Z","patch":true,"highlights":["Fix published SHA Hash"]},{"version":"v0.32.6","released":"2019-05-08T12:09:36.358Z","patch":true,"highlights":["Fixed regression where Dashboards would fail to fully populate","Performance improvements when running queries","Security improvements"]},{"version":"v0.32.5","released":"2019-04-20T12:09:36.358Z","patch":true,"highlights":["Improve long-running query handling","Fix H2 to MySQL/Postgres migration issue","Fix issue with embedded maps with custom GeoJSON"]},{"version":"v0.32.4","released":"2019-04-09T12:09:36.358Z","patch":true,"highlights":["Fix issue where Google Auth login did not work","FFix issue where Google Auth login did not work"]},{"version":"v0.32.3","released":"2019-04-08T12:09:36.358Z","patch":true,"highlights":["Fixed Snowflake connection issues","Fixed Dashboard copy","Fixed non-root context logins"]},{"version":"v0.32.2","released":"2019-04-03T12:09:36.358Z","patch":true,"highlights":["Fixed dashboard date filters ","Fixed SSL error using Quartz w/ MySQL","Fix colors in dashboards"]},{"version":"v0.32.1","released":"2019-03-29T12:09:36.358Z","patch":true,"highlights":["Fixed MySQL connections with SSL","Fixed table sync issue"]},{"version":"v0.32.0","released":"2019-03-28T12:09:36.358Z","patch":false,"highlights":["Modular Drivers (reducing memory consumption)","Async queries (improving responsiveness)","Reduced memory consumption."]},{"version":"v0.31.2","released":"2018-12-07T12:09:36.358Z","patch":true,"highlights":["Added German translation","Fixed Heroku out-of-memory errors","Fixed issue with Slack-based Pulses due to rate limiting."]},{"version":"v0.31.1","released":"2018-11-21T12:09:36.358Z","patch":true,"highlights":["Ability to clone dashboards","Faster startup time and lower memory consumption","Migration issue fixes."]},{"version":"v0.31.0","released":"2018-11-08T12:09:36.358Z","patch":false,"highlights":["New visualizations and combo charts","Granular formatting controls","Snowflake Support"]},{"version":"v0.30.4","released":"2018-09-27T12:09:36.358Z","patch":true,"highlights":["Metabase fails to launch in Chinese","Fix token status checking","Fix BigQuery SQL parameters with encrypted DB details"]},{"version":"v0.30.3","released":"2018-09-13T12:09:36.358Z","patch":true,"highlights":["Localization for Chinese, Japanese, Turkish, Persian","Self referencing FK leads to exception","Security improvements"]},{"version":"v0.30.2","released":"2018-09-06T12:09:36.358Z","patch":true,"highlights":["Localization for French + Norwegian","Stability fixes for HTTP/2"]},{"version":"v0.30.1","released":"2018-08-08T12:09:36.358Z","patch":true,"highlights":["Localization for Portuguese","Timezone fix","SQL Template tag re-ordering fix"]},{"version":"v0.30.0","released":"2', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 17, '018-08-08T12:09:36.358Z","patch":false,"highlights":["App wide search","Enhanced Collection permissions","Comparison X-Rays"]},{"version":"v0.29.3","released":"2018-05-12T12:09:36.358Z","patch":true,"highlights":["Fix X-ray rules loading on Oracle JVM 8"]},{"version":"v0.29.2","released":"2018-05-10T12:09:36.358Z","patch":true,"highlights":["Fix Spark Driver"]},{"version":"v0.29.1","released":"2018-05-10T11:09:36.358Z","patch":true,"highlights":["Better heroku memory consumption","Fixed X-Ray Bugs","Drill through from line chart selects wrong date"]},{"version":"v0.29.0","released":"2018-05-01T11:09:36.358Z","patch":false,"highlights":["New and Improved X-Rays","Search field values","Spark SQL Support"]},{"version":"v0.28.6","released":"2018-04-12T11:09:36.358Z","patch":true,"highlights":["Fix chart rendering in pulses"]},{"version":"v0.28.5","released":"2018-04-04T11:09:36.358Z","patch":true,"highlights":["Fix memory consumption for SQL templates","Fix public dashboards parameter validation","Fix Unable to add cards to dashboards or search for cards, StackOverflowError on backend"]},{"version":"v0.28.4","released":"2018-03-29T11:09:36.358Z","patch":true,"highlights":["Fix broken embedded dashboards","Fix migration regression","Fix input typing bug"]},{"version":"v0.28.3","released":"2018-03-23T11:09:36.358Z","patch":true,"highlights":["Security improvements"]},{"version":"v0.28.2","released":"2018-03-20T11:09:36.358Z","patch":true,"highlights":["Security improvements","Sort on custom and saved metrics","Performance improvements for large numbers of questions and dashboards"]},{"version":"v0.28.1","released":"2018-02-09T11:09:36.358Z","patch":true,"highlights":["Fix admin panel update string","Fix pulse rendering bug","Fix CSV & XLS download bug"]},{"version":"v0.28.0","released":"2018-02-07T11:09:36.358Z","patch":false,"highlights":["Text Cards in Dashboards","Pulse + Alert attachments","Performance Improvements"]},{"version":"v0.27.2","released":"2017-12-12T11:09:36.358Z","patch":true,"highlights":["Migration bug fix"]},{"version":"v0.27.1","released":"2017-12-01T11:09:36.358Z","patch":true,"highlights":["Migration bug fix","Apply filters to embedded downloads"]},{"version":"v0.27.0","released":"2017-11-27T11:09:36.358Z","patch":false,"highlights":["Alerts","X-Ray insights","Charting improvements"]},{"version":"v0.26.2","released":"2017-09-27T11:09:36.358Z","patch":true,"highlights":["Update Redshift Driver","Support Java 9","Fix performance issue with fields listing"]},{"version":"v0.26.1","released":"2017-09-27T11:09:36.358Z","patch":true,"highlights":["Fix migration issue on MySQL"]},{"version":"v0.26.0","released":"2017-09-26T11:09:36.358Z","patch":true,"highlights":["Segment + Metric X-Rays and Comparisons","Better control over metadata introspection process","Improved Timezone support and bug fixes"]},{"version":"v0.25.2","released":"2017-08-09T11:09:36.358Z","patch":true,"highlights":["Bug and performance fixes"]},{"version":"v0.25.1","released":"2017-07-27T11:09:36.358Z","patch":true,"highlights":["After upgrading to 0.25, unknown protocol error.","Don''t show saved questions in the permissions database lists","Elastic beanstalk upgrades broken in 0.25 "]},{"version":"v0.25.0","released":"2017-07-25T11:09:36.358Z","patch":false,"highlights":["Nested questions","Enum and custom remapping support","LDAP authentication support"]},{"version":"v0.24.2","released":"2017-06-01T11:09:36.358Z","patch":true,"highlights":["Misc Bug fixes"]},{"version":"v0.24.1","released":"2017-05-10T11:09:36.358Z","patch":true,"highlights":["Fix upgrades with MySQL/Mariadb"]},{"version":"v0.24.0","released":"2017-05-10T11:09:36.358Z","patch":false,"highlights":["Drill-through + Actions","Result Caching","Presto Driver"]},{"version":"v0.23.1","released":"2017-03-30T11:09:36.358Z","patch":true,"highlights":["Filter widgets for SQL Template Variables","Fix spurious startup error","Java 7 startup bug fixed"]},{"version":"v0.23.0","released":"2017-03-21T11:09:36.358Z","patch":false,"highlights":["Public links for cards + dashboards","Embedding', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(0, 18, ' cards + dashboards in other applications","Encryption of database credentials"]},{"version":"v0.22.2","released":"2017-01-10T11:09:36.358Z","patch":true,"highlights":["Fix startup on OpenJDK 7"]},{"version":"v0.22.1","released":"2017-01-10T11:09:36.358Z","patch":true,"highlights":["IMPORTANT: Closed a Collections Permissions security hole","Improved startup performance","Bug fixes"]},{"version":"v0.22.0","released":"2017-01-10T11:09:36.358Z","patch":false,"highlights":["Collections + Collections Permissions","Multiple Aggregations","Custom Expressions"]},{"version":"v0.21.1","released":"2016-12-08T11:09:36.358Z","patch":true,"highlights":["BigQuery bug fixes","Charting bug fixes"]},{"version":"v0.21.0","released":"2016-12-08T11:09:36.358Z","patch":false,"highlights":["Google Analytics Driver","Vertica Driver","Better Time + Date Filters"]},{"version":"v0.20.3","released":"2016-10-26T11:09:36.358Z","patch":true,"highlights":["Fix H2->MySQL/PostgreSQL migrations, part 2"]},{"version":"v0.20.2","released":"2016-10-25T11:09:36.358Z","patch":true,"highlights":["Support Oracle 10+11","Fix H2->MySQL/PostgreSQL migrations","Revision timestamp fix"]},{"version":"v0.20.1","released":"2016-10-18T11:09:36.358Z","patch":true,"highlights":["Lots of bug fixes"]},{"version":"v0.20.0","released":"2016-10-11T11:09:36.358Z","patch":false,"highlights":["Data access permissions","Oracle Driver","Charting improvements"]},{"version":"v0.19.3","released":"2016-08-12T11:09:36.358Z","patch":true,"highlights":["fix Dashboard editing header"]},{"version":"v0.19.2","released":"2016-08-10T11:09:36.358Z","patch":true,"highlights":["fix Dashboard chart titles","fix pin map saving"]},{"version":"v0.19.1","released":"2016-08-04T11:09:36.358Z","patch":true,"highlights":["fix Dashboard Filter Editing","fix CSV Download of SQL Templates","fix Metabot enabled toggle"]},{"version":"v0.19.0","released":"2016-08-01T21:09:36.358Z","patch":false,"highlights":["SSO via Google Accounts","SQL Templates","Better charting controls"]},{"version":"v0.18.1","released":"2016-06-29T21:09:36.358Z","patch":true,"highlights":["Fix for Hour of day sorting bug","Fix for Column ordering bug in BigQuery","Fix for Mongo charting bug"]},{"version":"v0.18.0","released":"2016-06-022T21:09:36.358Z","patch":false,"highlights":["Dashboard Filters","Crate.IO Support","Checklist for Metabase Admins","Converting Metabase Questions -> SQL"]},{"version":"v0.17.1","released":"2016-05-04T21:09:36.358Z","patch":true,"highlights":["Fix for Line chart ordering bug","Fix for Time granularity bugs"]},{"version":"v0.17.0","released":"2016-05-04T21:09:36.358Z","patch":false,"highlights":["Tags + Search for Saved Questions","Calculated columns","Faster Syncing of Metadata","Lots of database driver improvements and bug fixes"]},{"version":"v0.16.1","released":"2016-05-04T21:09:36.358Z","patch":true,"highlights":["Fixes for several time alignment issues (timezones)","Resolved problem with SQL Server db connections"]},{"version":"v0.16.0","released":"2016-05-04T21:09:36.358Z","patch":false,"highlights":["Fullscreen (and fabulous) Dashboards","Say hello to Metabot in Slack"]}]}', NULL); +INSERT INTO PUBLIC.SETTING(KEY, VALUE) VALUES +('setup-token', '4cb972e8-1342-49c1-be29-59f5181b5b43'), +('analytics-uuid', '00ef249c-c384-4da5-acf0-ff09ec8d1956'), +('instance-creation', '2022-12-13T12:22:11.400639+06:00'), +('site-locale', 'en'), +('anon-tracking-enabled', 'false'), +('site-uuid', 'f0a35aa0-c2db-4375-aeb8-23ea7c5113e7'), +('site-uuid-for-version-info-fetching', '58899333-aee4-409a-a0b1-e71c119d6956'), +('enable-embedding', 'true'), +('embedding-secret-key', '62ed1e847caf926083af93073ba44677d3ef4b8b220a838796ea2eb73975d745'), +('map-tile-server-url', 'https://www.openstreetmap.org/#map=6/9.004/5.933.png'), +('enable-public-sharing', 'true'), +('redirect-all-requests-to-https', 'false'), +('admin-email', 'team@opencrvs.org'), +('enable-query-caching', 'false'), +('version-info-last-checked', '2023-07-12T18:15:00.005078+06:00'), +('version-info', SYSTEM_COMBINE_CLOB(0)), +('startup-time-millis', '2957'), +('settings-last-updated', '2023-08-25 18:23:44.053'), +('site-name', 'OpenCRVS Local'), +('site-url', 'http://localhost:4444'), +('custom-geojson', '{"cdc1d5eb-c7f8-8b01-b296-eda34d06b6da":{"name":"Farajaland","url":"http://localhost:3040/content/farajaland-map.geojson","region_key":"State","region_name":"State"}}'); +CREATE CACHED TABLE PUBLIC.METRIC_IMPORTANT_FIELD( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_1682BD83_90A2_40CB_9FA5_1A0E7BE1CD50) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_1682BD83_90A2_40CB_9FA5_1A0E7BE1CD50, + METRIC_ID INT NOT NULL, + FIELD_ID INT NOT NULL +); +ALTER TABLE PUBLIC.METRIC_IMPORTANT_FIELD ADD CONSTRAINT PUBLIC.PK_METRIC_IMPORTANT_FIELD PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.METRIC_IMPORTANT_FIELD; +CREATE INDEX PUBLIC.IDX_METRIC_IMPORTANT_FIELD_METRIC_ID ON PUBLIC.METRIC_IMPORTANT_FIELD(METRIC_ID); +CREATE INDEX PUBLIC.IDX_METRIC_IMPORTANT_FIELD_FIELD_ID ON PUBLIC.METRIC_IMPORTANT_FIELD(FIELD_ID); +CREATE CACHED TABLE PUBLIC.METABASE_FIELD( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_FA47720B_962C_473D_8841_5794EBD7CFCE) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_FA47720B_962C_473D_8841_5794EBD7CFCE SELECTIVITY 100, + CREATED_AT TIMESTAMP NOT NULL SELECTIVITY 55, + UPDATED_AT TIMESTAMP NOT NULL SELECTIVITY 98, + NAME VARCHAR(254) NOT NULL SELECTIVITY 71, + BASE_TYPE VARCHAR(255) NOT NULL SELECTIVITY 9, + SEMANTIC_TYPE VARCHAR(255) SELECTIVITY 19, + ACTIVE BOOLEAN DEFAULT TRUE NOT NULL SELECTIVITY 1, + DESCRIPTION CLOB, + PREVIEW_DISPLAY BOOLEAN DEFAULT TRUE NOT NULL SELECTIVITY 1, + POSITION INT DEFAULT 0 NOT NULL SELECTIVITY 17, + TABLE_ID INT NOT NULL SELECTIVITY 10, + PARENT_ID INT SELECTIVITY 1, + DISPLAY_NAME VARCHAR(254) SELECTIVITY 67, + VISIBILITY_TYPE VARCHAR(32) DEFAULT 'normal' NOT NULL SELECTIVITY 1, + FK_TARGET_FIELD_ID INT SELECTIVITY 3, + LAST_ANALYZED TIMESTAMP SELECTIVITY 5, + POINTS_OF_INTEREST CLOB, + CAVEATS CLOB, + FINGERPRINT CLOB COMMENT 'Serialized JSON containing non-identifying information about this Field, such as min, max, and percent JSON. Used for classification.', + FINGERPRINT_VERSION INT DEFAULT '0' NOT NULL SELECTIVITY 1 COMMENT 'The version of the fingerprint for this Field. Used so we can keep track of which Fields need to be analyzed again when new things are added to fingerprints.', + DATABASE_TYPE CLOB NOT NULL, + HAS_FIELD_VALUES CLOB COMMENT 'Whether we have FieldValues ("list"), should ad-hoc search ("search"), disable entirely ("none"), or infer dynamically (null)"', + SETTINGS CLOB COMMENT 'Serialized JSON FE-specific settings like formatting, etc. Scope of what is stored here may increase in future.', + DATABASE_POSITION INT DEFAULT 0 NOT NULL SELECTIVITY 18, + CUSTOM_POSITION INT DEFAULT 0 NOT NULL SELECTIVITY 1, + EFFECTIVE_TYPE VARCHAR(255) SELECTIVITY 9 COMMENT 'The effective type of the field after any coercions.', + COERCION_STRATEGY VARCHAR(255) SELECTIVITY 1 COMMENT 'A strategy to coerce the base_type into the effective_type.', + NFC_PATH VARCHAR(254) SELECTIVITY 1 COMMENT 'Nested field column paths, flattened', + DATABASE_REQUIRED BOOLEAN DEFAULT FALSE NOT NULL SELECTIVITY 1 COMMENT 'Indicates this field is required by the database for new records. Usually not null and without a default.' +); +ALTER TABLE PUBLIC.METABASE_FIELD ADD CONSTRAINT PUBLIC.PK_METABASE_FIELD PRIMARY KEY(ID); +-- 49 +/- SELECT COUNT(*) FROM PUBLIC.METABASE_FIELD; +INSERT INTO PUBLIC.METABASE_FIELD(ID, CREATED_AT, UPDATED_AT, NAME, BASE_TYPE, SEMANTIC_TYPE, ACTIVE, DESCRIPTION, PREVIEW_DISPLAY, POSITION, TABLE_ID, PARENT_ID, DISPLAY_NAME, VISIBILITY_TYPE, FK_TARGET_FIELD_ID, LAST_ANALYZED, POINTS_OF_INTEREST, CAVEATS, FINGERPRINT, FINGERPRINT_VERSION, DATABASE_TYPE, HAS_FIELD_VALUES, SETTINGS, DATABASE_POSITION, CUSTOM_POSITION, EFFECTIVE_TYPE, COERCION_STRATEGY, NFC_PATH, DATABASE_REQUIRED) VALUES +(658, TIMESTAMP '2022-12-28 20:19:35.77', TIMESTAMP '2022-12-28 20:19:56.443', 'date', 'type/Instant', 'type/CreationTimestamp', TRUE, NULL, TRUE, 2, 69, NULL, 'Date', 'normal', NULL, TIMESTAMP '2022-12-28 20:19:38.243', NULL, NULL, '{"global":{"distinct-count":731,"nil%":0.0},"type":{"type/DateTime":{"earliest":"2020-02-02T00:00:00Z","latest":"2022-02-01T00:00:00Z"}}}', 5, 'java.time.Instant', 'none', NULL, 2, 0, 'type/Instant', NULL, NULL, FALSE), +(659, TIMESTAMP '2022-12-28 20:19:35.779', TIMESTAMP '2022-12-28 20:19:38.114', 'name', 'type/Text', 'type/Name', TRUE, NULL, TRUE, 1, 69, NULL, 'Name', 'normal', NULL, TIMESTAMP '2022-12-28 20:19:38.243', NULL, NULL, '{"global":{"distinct-count":14,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":6.0965}}}', 5, 'java.lang.String', 'auto-list', NULL, 1, 0, 'type/Text', NULL, NULL, FALSE), +(660, TIMESTAMP '2022-12-28 20:19:35.78', TIMESTAMP '2022-12-28 20:19:35.78', '_id', 'type/Text', 'type/PK', TRUE, NULL, TRUE, 0, 69, NULL, 'ID', 'normal', NULL, NULL, NULL, NULL, NULL, 0, 'java.lang.String', NULL, NULL, 0, 0, 'type/Text', NULL, NULL, FALSE), +(661, TIMESTAMP '2022-12-28 20:19:35.781', TIMESTAMP '2022-12-28 20:20:04.108', 'estimatedNumberOfBirths', 'type/Float', 'type/Quantity', TRUE, NULL, TRUE, 3, 69, NULL, 'EstimatedNumberOfBirths', 'normal', NULL, TIMESTAMP '2022-12-28 20:19:38.243', NULL, NULL, '{"global":{"distinct-count":28,"nil%":0.0},"type":{"type/Number":{"min":0.1502666666666667,"q1":0.3904216775480734,"q3":0.5787427151532459,"max":0.8464424657534246,"sd":0.1738183371260056,"avg":0.5014776617260274}}}', 5, 'java.lang.Double', 'none', NULL, 3, 0, 'type/Float', NULL, NULL, FALSE), +(662, TIMESTAMP '2022-12-28 20:19:35.782', TIMESTAMP '2022-12-28 20:19:38.128', 'event', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 4, 69, NULL, 'Event', 'normal', NULL, TIMESTAMP '2022-12-28 20:19:38.243', NULL, NULL, '{"global":{"distinct-count":1,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":5.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 4, 0, 'type/Text', NULL, NULL, FALSE), +(663, TIMESTAMP '2022-12-28 20:19:35.815', TIMESTAMP '2022-12-28 20:19:38.074', 'appliedAt', 'type/Instant', NULL, TRUE, NULL, TRUE, 2, 72, NULL, 'AppliedAt', 'normal', NULL, TIMESTAMP '2022-12-28 20:19:38.243', NULL, NULL, '{"global":{"distinct-count":1,"nil%":0.0},"type":{"type/DateTime":{"earliest":"2022-12-28T20:11:42.763Z","latest":"2022-12-28T20:11:42.763Z"}}}', 5, 'java.time.Instant', NULL, NULL, 2, 0, 'type/Instant', NULL, NULL, FALSE), +(664, TIMESTAMP '2022-12-28 20:19:35.823', TIMESTAMP '2022-12-28 20:19:35.823', '_id', 'type/MongoBSONID', 'type/PK', TRUE, NULL, TRUE, 0, 72, NULL, 'ID', 'normal', NULL, NULL, NULL, NULL, NULL, 0, 'org.bson.types.ObjectId', NULL, NULL, 0, 0, 'type/MongoBSONID', NULL, NULL, FALSE), +(665, TIMESTAMP '2022-12-28 20:19:35.824', TIMESTAMP '2022-12-28 20:19:38.14', 'fileName', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 1, 72, NULL, 'FileName', 'normal', NULL, TIMESTAMP '2022-12-28 20:19:38.243', NULL, NULL, '{"global":{"distinct-count":1,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":42.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 1, 0, 'type/Text', NULL, NULL, FALSE), +(666, TIMESTAMP '2022-12-28 20:55:06.593', TIMESTAMP '2023-07-12 12:49:00.415', 'event', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 12, 70, NULL, 'Event', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":1,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":5.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 10, 0, 'type/Text', NULL, NULL, FALSE); +INSERT INTO PUBLIC.METABASE_FIELD(ID, CREATED_AT, UPDATED_AT, NAME, BASE_TYPE, SEMANTIC_TYPE, ACTIVE, DESCRIPTION, PREVIEW_DISPLAY, POSITION, TABLE_ID, PARENT_ID, DISPLAY_NAME, VISIBILITY_TYPE, FK_TARGET_FIELD_ID, LAST_ANALYZED, POINTS_OF_INTEREST, CAVEATS, FINGERPRINT, FINGERPRINT_VERSION, DATABASE_TYPE, HAS_FIELD_VALUES, SETTINGS, DATABASE_POSITION, CUSTOM_POSITION, EFFECTIVE_TYPE, COERCION_STRATEGY, NFC_PATH, DATABASE_REQUIRED) VALUES +(667, TIMESTAMP '2022-12-28 20:55:06.595', TIMESTAMP '2023-02-22 16:49:05.69', 'mothersLiteracy', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 20, 70, NULL, 'MothersLiteracy', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":2,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":8.461538461538462}}}', 5, 'java.lang.String', 'auto-list', NULL, 21, 0, 'type/Text', NULL, NULL, FALSE), +(668, TIMESTAMP '2022-12-28 20:55:06.596', TIMESTAMP '2023-02-22 16:49:05.507', 'placeOfBirthType', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 3, 70, NULL, 'PlaceOfBirthType', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":5,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":14.76923076923077}}}', 5, 'java.lang.String', 'auto-list', NULL, 3, 0, 'type/Text', NULL, NULL, FALSE), +(669, TIMESTAMP '2022-12-28 20:55:06.596', TIMESTAMP '2023-02-22 16:49:05.409', 'fathersLiteracy', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 17, 70, NULL, 'FathersLiteracy', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":3,"nil%":0.3461538461538462},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":5.615384615384615}}}', 5, 'java.lang.String', 'auto-list', NULL, 17, 0, 'type/Text', NULL, NULL, FALSE), +(670, TIMESTAMP '2022-12-28 20:55:06.603', TIMESTAMP '2023-05-10 16:26:46.027', 'lgaName', 'type/Text', 'type/City', FALSE, NULL, TRUE, 10, 70, NULL, 'LgaName', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":6,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":5.538461538461538}}}', 5, 'java.lang.String', 'list', NULL, 8, 0, 'type/Text', NULL, NULL, FALSE), +(671, TIMESTAMP '2022-12-28 20:55:06.603', TIMESTAMP '2023-02-22 16:49:05.524', 'stateName', 'type/Text', 'type/State', TRUE, NULL, TRUE, 1, 70, NULL, 'StateName', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":6,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":5.538461538461538}}}', 5, 'java.lang.String', 'list', '{"view_as":null,"link_text":""}', 1, 0, 'type/Text', NULL, NULL, FALSE), +(672, TIMESTAMP '2022-12-28 20:55:06.604', TIMESTAMP '2023-02-22 16:49:05.63', 'childsAgeInDaysAtDeclaration', 'type/Float', NULL, TRUE, NULL, TRUE, 5, 70, NULL, 'ChildsAgeInDaysAtDeclaration', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":26,"nil%":0.0},"type":{"type/Number":{"min":1.6547208217592593,"q1":11.454063101851851,"q3":1854.3232252199075,"max":4835.456382256944,"sd":1798.8779763697275,"avg":1289.3917543883547}}}', 5, 'java.lang.Double', NULL, NULL, 5, 0, 'type/Float', NULL, NULL, FALSE), +(673, TIMESTAMP '2022-12-28 20:55:06.604', TIMESTAMP '2023-07-12 12:49:00.422', 'practitionerName', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 11, 70, NULL, 'PractitionerName', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":11,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":14.5}}}', 5, 'java.lang.String', 'auto-list', NULL, 9, 0, 'type/Text', NULL, NULL, FALSE), +(674, TIMESTAMP '2022-12-28 20:55:06.605', TIMESTAMP '2023-05-08 12:49:00.49', 'birthType', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 16, 70, NULL, 'BirthType', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":5.8076923076923075}}}', 5, 'java.lang.String', 'auto-list', NULL, 15, 0, 'type/Text', NULL, NULL, FALSE); +INSERT INTO PUBLIC.METABASE_FIELD(ID, CREATED_AT, UPDATED_AT, NAME, BASE_TYPE, SEMANTIC_TYPE, ACTIVE, DESCRIPTION, PREVIEW_DISPLAY, POSITION, TABLE_ID, PARENT_ID, DISPLAY_NAME, VISIBILITY_TYPE, FK_TARGET_FIELD_ID, LAST_ANALYZED, POINTS_OF_INTEREST, CAVEATS, FINGERPRINT, FINGERPRINT_VERSION, DATABASE_TYPE, HAS_FIELD_VALUES, SETTINGS, DATABASE_POSITION, CUSTOM_POSITION, EFFECTIVE_TYPE, COERCION_STRATEGY, NFC_PATH, DATABASE_REQUIRED) VALUES +(675, TIMESTAMP '2022-12-28 20:55:06.605', TIMESTAMP '2023-02-22 16:49:05.633', '_id', 'type/MongoBSONID', 'type/PK', TRUE, NULL, TRUE, 0, 70, NULL, 'ID', 'normal', NULL, NULL, NULL, NULL, NULL, 0, 'org.bson.types.ObjectId', NULL, NULL, 0, 0, 'type/MongoBSONID', NULL, NULL, FALSE), +(676, TIMESTAMP '2022-12-28 20:55:06.605', TIMESTAMP '2023-07-12 12:49:00.419', 'officeName', 'type/Text', 'type/ZipCode', TRUE, NULL, TRUE, 19, 70, NULL, 'OfficeName', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":10,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":18.23076923076923}}}', 5, 'java.lang.String', 'list', NULL, 14, 0, 'type/Text', NULL, NULL, FALSE), +(677, TIMESTAMP '2022-12-28 20:55:06.607', TIMESTAMP '2023-05-03 09:49:00.385', 'createdAt', 'type/Instant', 'type/CreationTimestamp', TRUE, NULL, TRUE, 7, 70, NULL, 'CreatedAt', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":26,"nil%":0.0},"type":{"type/DateTime":{"earliest":"2022-12-08T08:03:53.732Z","latest":"2022-12-21T14:00:11.284Z"}}}', 5, 'java.time.Instant', NULL, NULL, 6, 0, 'type/Instant', NULL, NULL, FALSE), +(678, TIMESTAMP '2022-12-28 20:55:06.607', TIMESTAMP '2023-07-12 12:49:00.41', 'mothersEducationalAttainment', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 13, 70, NULL, 'MothersEducationalAttainment', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":7,"nil%":0.2307692307692308},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":6.884615384615385}}}', 5, 'java.lang.String', 'auto-list', NULL, 12, 0, 'type/Text', NULL, NULL, FALSE), +(679, TIMESTAMP '2022-12-28 20:55:06.607', TIMESTAMP '2023-02-22 16:49:05.456', 'birthOrder', 'type/Integer', 'type/Category', FALSE, NULL, TRUE, 6, 70, NULL, 'BirthOrder', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.0},"type":{"type/Number":{"min":1.0,"q1":1.0,"q3":2.4,"max":5.0,"sd":1.1668498024760778,"avg":1.8076923076923077}}}', 5, 'java.lang.Integer', 'auto-list', NULL, 6, 0, 'type/Integer', NULL, NULL, FALSE), +(680, TIMESTAMP '2022-12-28 20:55:06.614', TIMESTAMP '2023-07-12 12:49:00.418', 'gender', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 18, 70, NULL, 'Gender', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":2,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":4.538461538461538}}}', 5, 'java.lang.String', 'auto-list', NULL, 13, 0, 'type/Text', NULL, NULL, FALSE), +(681, TIMESTAMP '2022-12-28 20:55:06.614', TIMESTAMP '2023-07-12 12:49:00.407', 'fathersEducationalAttainment', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 8, 70, NULL, 'FathersEducationalAttainment', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":6,"nil%":0.5384615384615385},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":4.884615384615385}}}', 5, 'java.lang.String', 'auto-list', NULL, 7, 0, 'type/Text', NULL, NULL, FALSE), +(682, TIMESTAMP '2022-12-28 20:55:06.615', TIMESTAMP '2023-07-12 12:49:00.417', 'status', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 14, 70, NULL, 'Status', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":2,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":9.423076923076923}}}', 5, 'java.lang.String', 'auto-list', NULL, 11, 0, 'type/Text', NULL, NULL, FALSE); +INSERT INTO PUBLIC.METABASE_FIELD(ID, CREATED_AT, UPDATED_AT, NAME, BASE_TYPE, SEMANTIC_TYPE, ACTIVE, DESCRIPTION, PREVIEW_DISPLAY, POSITION, TABLE_ID, PARENT_ID, DISPLAY_NAME, VISIBILITY_TYPE, FK_TARGET_FIELD_ID, LAST_ANALYZED, POINTS_OF_INTEREST, CAVEATS, FINGERPRINT, FINGERPRINT_VERSION, DATABASE_TYPE, HAS_FIELD_VALUES, SETTINGS, DATABASE_POSITION, CUSTOM_POSITION, EFFECTIVE_TYPE, COERCION_STRATEGY, NFC_PATH, DATABASE_REQUIRED) VALUES +(683, TIMESTAMP '2022-12-28 20:55:06.615', TIMESTAMP '2023-07-12 12:49:00.416', 'id', 'type/Text', 'type/PK', TRUE, NULL, TRUE, 15, 70, NULL, 'ID', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, NULL, 5, 'java.lang.String', NULL, NULL, 12, 0, 'type/Text', NULL, NULL, FALSE), +(684, TIMESTAMP '2022-12-28 20:55:06.615', TIMESTAMP '2023-07-12 12:49:00.421', 'mothersAgeAtBirthOfChildInYears', 'type/Float', 'type/Quantity', TRUE, NULL, TRUE, 9, 70, NULL, 'MothersAgeAtBirthOfChildInYears', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":16,"nil%":0.0},"type":{"type/Number":{"min":9.005479452054795,"q1":19.281647822568107,"q3":29.019178082191782,"max":40.02739726027397,"sd":7.704502619924791,"avg":23.016337372672986}}}', 5, 'java.lang.Double', 'none', NULL, 8, 0, 'type/Float', NULL, NULL, FALSE), +(685, TIMESTAMP '2022-12-28 20:55:06.616', TIMESTAMP '2023-02-22 16:49:05.701', 'createdBy', 'type/Text', 'type/Author', TRUE, NULL, TRUE, 2, 70, NULL, 'CreatedBy', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":11,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":36.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 2, 0, 'type/Text', NULL, NULL, FALSE), +(686, TIMESTAMP '2022-12-28 20:55:06.616', TIMESTAMP '2023-02-22 16:49:05.59', 'practitionerRole', 'type/Text', 'type/Category', TRUE, NULL, TRUE, 4, 70, NULL, 'PractitionerRole', 'normal', NULL, TIMESTAMP '2022-12-28 20:55:07.549', NULL, NULL, '{"global":{"distinct-count":2,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":4.384615384615385}}}', 5, 'java.lang.String', 'auto-list', NULL, 4, 0, 'type/Text', NULL, NULL, FALSE), +(687, TIMESTAMP '2022-12-28 21:14:28.895', TIMESTAMP '2023-05-31 18:49:00.513', 'gender', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 15, 71, NULL, 'Gender', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":2,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":4.8}}}', 5, 'java.lang.String', 'auto-list', NULL, 14, 0, 'type/Text', NULL, NULL, FALSE), +(688, TIMESTAMP '2022-12-28 21:14:28.896', TIMESTAMP '2023-05-31 18:49:00.512', 'reason', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 4, 71, NULL, 'Reason', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":2,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":14.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 4, 0, 'type/Text', NULL, NULL, FALSE), +(689, TIMESTAMP '2022-12-28 21:14:28.896', TIMESTAMP '2023-05-31 18:49:00.515', 'extensions', 'type/Dictionary', NULL, FALSE, NULL, TRUE, 6, 71, NULL, 'Extensions', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":3,"nil%":0.0}}', 5, 'clojure.lang.PersistentArrayMap', NULL, NULL, 6, 0, 'type/Dictionary', NULL, NULL, FALSE), +(690, TIMESTAMP '2022-12-28 21:14:28.897', TIMESTAMP '2023-05-31 18:49:00.518', 'stateName', 'type/Text', 'type/State', FALSE, NULL, TRUE, 1, 71, NULL, 'StateName', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":3,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":6.4}}}', 5, 'java.lang.String', 'list', NULL, 1, 0, 'type/Text', NULL, NULL, FALSE), +(691, TIMESTAMP '2022-12-28 21:14:28.897', TIMESTAMP '2023-05-31 18:49:00.521', '_id', 'type/Text', 'type/PK', FALSE, NULL, TRUE, 0, 71, NULL, 'ID', 'normal', NULL, NULL, NULL, NULL, NULL, 0, 'java.lang.String', NULL, NULL, 0, 0, 'type/MongoBSONID', NULL, NULL, FALSE); +INSERT INTO PUBLIC.METABASE_FIELD(ID, CREATED_AT, UPDATED_AT, NAME, BASE_TYPE, SEMANTIC_TYPE, ACTIVE, DESCRIPTION, PREVIEW_DISPLAY, POSITION, TABLE_ID, PARENT_ID, DISPLAY_NAME, VISIBILITY_TYPE, FK_TARGET_FIELD_ID, LAST_ANALYZED, POINTS_OF_INTEREST, CAVEATS, FINGERPRINT, FINGERPRINT_VERSION, DATABASE_TYPE, HAS_FIELD_VALUES, SETTINGS, DATABASE_POSITION, CUSTOM_POSITION, EFFECTIVE_TYPE, COERCION_STRATEGY, NFC_PATH, DATABASE_REQUIRED) VALUES +(692, TIMESTAMP '2022-12-28 21:14:28.898', TIMESTAMP '2023-05-11 14:49:00.555', 'lgaName', 'type/Text', 'type/City', FALSE, NULL, TRUE, 3, 71, NULL, 'LgaName', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":1,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":5.0}}}', 5, 'java.lang.String', 'list', NULL, 3, 0, 'type/Text', NULL, NULL, FALSE), +(693, TIMESTAMP '2022-12-28 21:14:28.898', TIMESTAMP '2023-05-31 18:49:00.519', 'event', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 5, 71, NULL, 'Event', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":3,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":20.4}}}', 5, 'java.lang.String', 'auto-list', NULL, 5, 0, 'type/Text', NULL, NULL, FALSE), +(694, TIMESTAMP '2022-12-28 21:14:28.899', TIMESTAMP '2023-05-31 18:49:00.522', 'officeName', 'type/Text', 'type/ZipCode', FALSE, NULL, TRUE, 16, 71, NULL, 'OfficeName', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":5,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":24.0}}}', 5, 'java.lang.String', 'list', NULL, 15, 0, 'type/Text', NULL, NULL, FALSE), +(695, TIMESTAMP '2022-12-28 21:14:28.899', TIMESTAMP '2023-05-31 18:49:00.516', 'createdAt', 'type/Instant', 'type/CreationTimestamp', FALSE, NULL, TRUE, 2, 71, NULL, 'CreatedAt', 'normal', NULL, TIMESTAMP '2022-12-28 21:49:01.18', NULL, NULL, '{"global":{"distinct-count":5,"nil%":0.0},"type":{"type/DateTime":{"earliest":"2022-12-09T23:27:03.829Z","latest":"2022-12-23T10:53:51.052Z"}}}', 5, 'java.time.Instant', 'none', NULL, 2, 0, 'type/Instant', NULL, NULL, FALSE), +(696, TIMESTAMP '2022-12-28 21:14:28.905', TIMESTAMP '2023-05-31 18:49:00.531', 'informant-details', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 8, 71, 689, 'Informant Details', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":36.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 8, 0, 'type/Text', NULL, NULL, FALSE), +(697, TIMESTAMP '2022-12-28 21:14:28.906', TIMESTAMP '2023-05-31 18:49:00.528', 'birth-encounter', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 7, 71, 689, 'Birth Encounter', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":2,"nil%":0.8},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":7.2}}}', 5, 'java.lang.String', 'auto-list', NULL, 7, 0, 'type/Text', NULL, NULL, FALSE), +(698, TIMESTAMP '2022-12-28 21:14:28.906', TIMESTAMP '2023-05-11 14:49:00.557', 'certificates', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 14, 71, 689, 'Certificates', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":36.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 14, 0, 'type/Text', NULL, NULL, FALSE), +(699, TIMESTAMP '2022-12-28 21:14:28.906', TIMESTAMP '2023-05-31 18:49:00.532', 'mother-details', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 12, 71, 689, 'Mother Details', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":36.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 12, 0, 'type/Text', NULL, NULL, FALSE); +INSERT INTO PUBLIC.METABASE_FIELD(ID, CREATED_AT, UPDATED_AT, NAME, BASE_TYPE, SEMANTIC_TYPE, ACTIVE, DESCRIPTION, PREVIEW_DISPLAY, POSITION, TABLE_ID, PARENT_ID, DISPLAY_NAME, VISIBILITY_TYPE, FK_TARGET_FIELD_ID, LAST_ANALYZED, POINTS_OF_INTEREST, CAVEATS, FINGERPRINT, FINGERPRINT_VERSION, DATABASE_TYPE, HAS_FIELD_VALUES, SETTINGS, DATABASE_POSITION, CUSTOM_POSITION, EFFECTIVE_TYPE, COERCION_STRATEGY, NFC_PATH, DATABASE_REQUIRED) VALUES +(700, TIMESTAMP '2022-12-28 21:14:28.907', TIMESTAMP '2023-05-31 18:49:00.526', 'child-details', 'type/Text', NULL, FALSE, NULL, TRUE, 11, 71, 689, 'Child Details', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":1,"nil%":1.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":0.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 11, 0, 'type/Text', NULL, NULL, FALSE), +(701, TIMESTAMP '2022-12-28 21:14:28.907', TIMESTAMP '2023-05-31 18:49:00.53', 'correction-certificates', 'type/*', 'type/Category', FALSE, NULL, TRUE, 9, 71, 689, 'Correction Certificates', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.2}}', 5, 'NULL', 'auto-list', NULL, 9, 0, 'type/*', NULL, NULL, FALSE), +(702, TIMESTAMP '2022-12-28 21:14:28.908', TIMESTAMP '2023-05-31 18:49:00.525', 'birth-correction-encounters', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 10, 71, 689, 'Birth Correction Encounters', 'normal', NULL, TIMESTAMP '2022-12-28 21:14:29.088', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":36.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 10, 0, 'type/Text', NULL, NULL, FALSE), +(703, TIMESTAMP '2022-12-28 21:14:28.908', TIMESTAMP '2023-05-31 18:49:00.529', 'father-details', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 13, 71, 689, 'Father Details', 'normal', NULL, TIMESTAMP '2022-12-28 21:49:01.18', NULL, NULL, '{"global":{"distinct-count":4,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":36.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 13, 0, 'type/Text', NULL, NULL, FALSE), +(722, TIMESTAMP '2022-12-29 13:49:05.217', TIMESTAMP '2023-02-22 16:49:05.593', 'createdAtDate', 'type/Instant', 'type/CreationTimestamp', FALSE, NULL, TRUE, 20, 70, NULL, 'CreatedAtDate', 'normal', NULL, TIMESTAMP '2022-12-29 13:49:05.895', NULL, NULL, '{"global":{"distinct-count":356,"nil%":0.0},"type":{"type/DateTime":{"earliest":"2022-01-01T00:00:00Z","latest":"2022-12-22T00:00:00Z"}}}', 5, 'java.time.Instant', NULL, NULL, 20, 0, 'type/Instant', NULL, NULL, FALSE), +(723, TIMESTAMP '2023-05-10 16:26:46.02', TIMESTAMP '2023-07-12 12:49:00.423', 'districtName', 'type/Text', 'type/State', TRUE, NULL, TRUE, 8, 70, NULL, 'DistrictName', 'normal', NULL, TIMESTAMP '2023-05-10 16:26:46.173', NULL, NULL, '{"global":{"distinct-count":1,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":6.0}}}', 5, 'java.lang.String', 'list', NULL, 7, 0, 'type/Text', NULL, NULL, FALSE), +(724, TIMESTAMP '2023-05-11 14:49:00.548', TIMESTAMP '2023-05-31 18:49:00.51', 'districtName', 'type/Text', 'type/Category', FALSE, NULL, TRUE, 3, 71, NULL, 'DistrictName', 'normal', NULL, TIMESTAMP '2023-05-11 14:49:00.701', NULL, NULL, '{"global":{"distinct-count":1,"nil%":0.0},"type":{"type/Text":{"percent-json":0.0,"percent-url":0.0,"percent-email":0.0,"percent-state":0.0,"average-length":6.0}}}', 5, 'java.lang.String', 'auto-list', NULL, 3, 0, 'type/Text', NULL, NULL, FALSE); +CREATE INDEX PUBLIC.IDX_FIELD_TABLE_ID ON PUBLIC.METABASE_FIELD(TABLE_ID); +CREATE INDEX PUBLIC.IDX_FIELD_PARENT_ID ON PUBLIC.METABASE_FIELD(PARENT_ID); +CREATE CACHED TABLE PUBLIC.TASK_HISTORY COMMENT 'Timing and metadata info about background/quartz processes'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_E3507FDA_AFF2_4430_90F0_BD1EECE334CF) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_E3507FDA_AFF2_4430_90F0_BD1EECE334CF SELECTIVITY 100, + TASK VARCHAR(254) NOT NULL SELECTIVITY 1 COMMENT 'Name of the task', + DB_ID INT SELECTIVITY 1, + STARTED_AT TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP() NOT NULL SELECTIVITY 99, + ENDED_AT TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP() NOT NULL SELECTIVITY 99, + DURATION INT NOT NULL SELECTIVITY 31, + TASK_DETAILS CLOB COMMENT 'JSON string with additional info on the task' +); +ALTER TABLE PUBLIC.TASK_HISTORY ADD CONSTRAINT PUBLIC.PK_TASK_HISTORY PRIMARY KEY(ID); +-- 35474 +/- SELECT COUNT(*) FROM PUBLIC.TASK_HISTORY; +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:10.812028+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.354646+06', 542, NULL), +(2, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:10.812628+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:10.915655+06', 103, '{"timezone-id":"Asia/Dhaka"}'), +(3, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:10.916134+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:10.992954+06', 76, '{"updated-tables":8,"total-tables":0}'), +(4, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:10.993059+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.251249+06', 258, '{"total-fields":71,"updated-fields":71}'), +(5, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.251342+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.294732+06', 43, '{"total-fks":6,"updated-fks":6,"total-failed":0}'), +(6, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.29481+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.354602+06', 59, NULL), +(7, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.64639+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.700074+06', 3053, NULL), +(8, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:11.64642+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.595462+06', 2949, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":63,"fingerprints-attempted":63}'), +(9, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.595516+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.689274+06', 93, '{"fields-classified":63,"fields-failed":0}'), +(10, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.68932+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.700024+06', 10, '{"total-tables":8,"tables-classified":8}'), +(11, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.724999+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:15.344354+06', 619, NULL), +(12, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.725033+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.79426+06', 69, '{"deleted":0}'), +(13, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:14.794306+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:22:15.34431+06', 550, '{"errors":0,"created":24,"updated":0,"deleted":1}'), +(14, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:43.769997+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.067469+06', 4297, NULL), +(15, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:43.770041+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:43.770898+06', 0, '{"timezone-id":null}'), +(16, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:43.770978+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:43.850004+06', 79, '{"updated-tables":25,"total-tables":0}'), +(17, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:43.850078+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.056639+06', 4206, '{"total-fields":272,"updated-fields":466}'), +(18, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.056691+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.066949+06', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.067001+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.067448+06', 0, NULL), +(20, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.078115+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.708127+06', 9630, NULL), +(21, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:48.07814+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.460021+06', 9381, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":307,"fingerprints-attempted":307}'), +(22, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.460073+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.680601+06', 220, '{"fields-classified":307,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.680651+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.70809+06', 27, '{"total-tables":25,"tables-classified":25}'), +(24, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.779909+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:59.808336+06', 2028, NULL), +(25, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:57.779931+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:58.060646+06', 280, '{"deleted":0}'), +(26, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:58.06069+06', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:59.808308+06', 1747, '{"errors":0,"created":102,"updated":0,"deleted":2}'), +(27, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.012189+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.395162+06', 382, NULL), +(28, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.013418+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.098849+06', 85, '{"timezone-id":"Asia/Dhaka"}'), +(29, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.099218+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.129601+06', 30, '{"updated-tables":0,"total-tables":8}'), +(30, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.129706+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.306222+06', 176, '{"total-fields":71,"updated-fields":0}'), +(31, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.30628+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.323073+06', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.323134+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.39511+06', 71, NULL), +(33, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.427869+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.48886+06', 60, NULL), +(34, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.427901+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.469638+06', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.469745+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.478375+06', 8, '{"fields-classified":0,"fields-failed":0}'), +(36, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.478456+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:19:00.488766+06', 10, '{"total-tables":8,"tables-classified":0}'), +(37, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:00.005039+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.599873+06', 3594, NULL), +(38, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:00.005058+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:00.00569+06', 0, '{"timezone-id":null}'), +(39, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:00.005743+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:00.040885+06', 35, '{"updated-tables":2,"total-tables":25}'), +(40, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:00.040938+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.597698+06', 3556, '{"total-fields":246,"updated-fields":90}'), +(41, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.597751+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.599516+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(42, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.599546+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.599858+06', 0, NULL), +(43, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.610967+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:06.42868+06', 2817, NULL), +(44, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:03.610992+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:06.301339+06', 2690, '{"no-data-fingerprints":0,"failed-fingerprints":7,"updated-fingerprints":96,"fingerprints-attempted":103}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(45, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:06.301379+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:06.416164+06', 114, '{"fields-classified":96,"fields-failed":0}'), +(46, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:06.416215+06', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:06.428651+06', 12, '{"total-tables":23,"tables-classified":0}'), +(47, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 08:00:00.018+00', TIMESTAMP WITH TIME ZONE '2022-12-13 08:00:00.019+00', 1, NULL), +(48, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 08:00:00.012+00', TIMESTAMP WITH TIME ZONE '2022-12-13 08:00:00.024+00', 12, NULL), +(49, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.003449+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.155431+06', 151, NULL), +(50, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.003461+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.015139+06', 11, '{"timezone-id":"Asia/Dhaka"}'), +(51, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.015192+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.022014+06', 6, '{"updated-tables":0,"total-tables":8}'), +(52, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.022051+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.108562+06', 86, '{"total-fields":71,"updated-fields":0}'), +(53, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.1086+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.117622+06', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(54, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.117667+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.155409+06', 37, NULL), +(55, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.165116+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.181904+06', 16, NULL), +(56, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.16513+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.175781+06', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(57, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.175821+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.179072+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(58, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.179114+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:19:00.181877+06', 2, '{"total-tables":8,"tables-classified":0}'), +(59, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:36.274965+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:39.56266+06', 3287, NULL), +(60, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:36.274989+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:36.526171+06', 251, '{"deleted":0}'), +(61, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:36.526216+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:39.562635+06', 3036, '{"errors":0,"created":47,"updated":32,"deleted":2}'), +(62, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:37.088568+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.072142+06', 2983, NULL), +(63, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:37.088589+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:37.089559+06', 0, '{"timezone-id":null}'), +(64, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:37.089634+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:37.102321+06', 12, '{"updated-tables":0,"total-tables":23}'), +(65, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:37.102375+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.069868+06', 2967, '{"total-fields":248,"updated-fields":10}'), +(66, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.069905+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.071878+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(67, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.071908+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.072125+06', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(68, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.080954+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.829527+06', 748, NULL), +(69, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.080977+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.79749+06', 716, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":26,"fingerprints-attempted":26}'), +(70, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.797527+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.822183+06', 24, '{"fields-classified":26,"fields-failed":0}'), +(71, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.822214+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:40.829493+06', 7, '{"total-tables":23,"tables-classified":0}'), +(72, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:00.011326+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.226552+06', 2215, NULL), +(73, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:00.011338+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:00.01166+06', 0, '{"timezone-id":null}'), +(74, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:00.011702+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:00.019063+06', 7, '{"updated-tables":0,"total-tables":23}'), +(75, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:00.019101+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.224946+06', 2205, '{"total-fields":248,"updated-fields":0}'), +(76, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.224979+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.22636+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(77, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.226387+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.226541+06', 0, NULL), +(78, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.240661+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.275331+06', 34, NULL), +(79, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.240686+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.261881+06', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(80, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.261915+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.266671+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(81, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.266707+06', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:02.275301+06', 8, '{"total-tables":23,"tables-classified":0}'), +(82, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 09:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-13 09:00:00.009+00', 1, NULL), +(83, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 09:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-13 09:00:00.011+00', 0, NULL), +(84, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.012709+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.114953+06', 102, NULL), +(85, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.012725+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.01642+06', 3, '{"timezone-id":"Asia/Dhaka"}'), +(86, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.016455+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.020783+06', 4, '{"updated-tables":0,"total-tables":8}'), +(87, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.020816+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.085843+06', 65, '{"total-fields":71,"updated-fields":0}'), +(88, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.085895+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.090837+06', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(89, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.090871+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.114935+06', 24, NULL), +(90, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.121631+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.156466+06', 34, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(91, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.121644+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.151557+06', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(92, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.151595+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.154003+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(93, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.154048+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:19:00.156432+06', 2, '{"total-tables":8,"tables-classified":0}'), +(94, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.138765+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:30.252875+06', 2114, NULL), +(95, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.138789+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.337175+06', 198, '{"deleted":0}'), +(96, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.337217+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:30.252834+06', 1915, '{"errors":0,"created":10,"updated":59,"deleted":0}'), +(97, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.666114+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.382187+06', 2716, NULL), +(98, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.666131+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.666514+06', 0, '{"timezone-id":null}'), +(99, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.666561+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.694356+06', 27, '{"updated-tables":2,"total-tables":23}'), +(100, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:28.69443+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.380007+06', 2685, '{"total-fields":267,"updated-fields":62}'), +(101, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.380038+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.381884+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(102, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.381927+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.382178+06', 0, NULL), +(103, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.388693+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.460776+06', 72, NULL), +(104, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.388707+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.439686+06', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":18,"fingerprints-attempted":18}'), +(105, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.439717+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.452648+06', 12, '{"fields-classified":18,"fields-failed":0}'), +(106, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.452685+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:31.460733+06', 8, '{"total-tables":25,"tables-classified":2}'), +(107, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:00.004202+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.899035+06', 2894, NULL), +(108, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:00.004215+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:00.004456+06', 0, '{"timezone-id":null}'), +(109, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:00.004486+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:00.010207+06', 5, '{"updated-tables":0,"total-tables":25}'), +(110, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:00.010249+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.897258+06', 2887, '{"total-fields":267,"updated-fields":0}'), +(111, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.89731+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.898809+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(112, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.898847+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.899022+06', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(113, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.906528+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.974405+06', 67, NULL), +(114, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.906541+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.954845+06', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":7,"fingerprints-attempted":7}'), +(115, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.954893+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.966424+06', 11, '{"fields-classified":7,"fields-failed":0}'), +(116, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.966485+06', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:02.97438+06', 7, '{"total-tables":25,"tables-classified":0}'), +(117, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 10:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-13 10:00:00.008+00', 5, NULL), +(118, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 10:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-13 10:00:00.009+00', 1, NULL), +(119, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.526549+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.9264+06', 399, NULL), +(120, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.527489+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.621176+06', 93, '{"timezone-id":"Asia/Dhaka"}'), +(121, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.621611+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.654389+06', 32, '{"updated-tables":0,"total-tables":8}'), +(122, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.654465+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.840213+06', 185, '{"total-fields":71,"updated-fields":0}'), +(123, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.840276+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.858065+06', 17, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(124, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.858135+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.926347+06', 68, NULL), +(125, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.961552+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:48.002135+06', 40, NULL), +(126, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.961586+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.985031+06', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(127, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.985116+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.992299+06', 7, '{"fields-classified":0,"fields-failed":0}'), +(128, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:47.992397+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:30:48.002071+06', 9, '{"total-tables":8,"tables-classified":0}'), +(129, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:00.005279+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.74752+06', 3742, NULL), +(130, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:00.00531+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:00.005841+06', 0, '{"timezone-id":null}'), +(131, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:00.005891+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:00.039643+06', 33, '{"updated-tables":0,"total-tables":25}'), +(132, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:00.039688+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.730119+06', 3690, '{"total-fields":267,"updated-fields":0}'), +(133, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.730184+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.74711+06', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(134, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.747168+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.747494+06', 0, NULL), +(135, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.760966+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.976235+06', 215, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(136, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.760995+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.942095+06', 181, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":2,"fingerprints-attempted":2}'), +(137, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.942141+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.963712+06', 21, '{"fields-classified":2,"fields-failed":0}'), +(138, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.963756+06', TIMESTAMP WITH TIME ZONE '2022-12-13 16:56:03.976196+06', 12, '{"total-tables":25,"tables-classified":0}'), +(139, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 11:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-13 11:00:00.017+00', 13, NULL), +(140, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 11:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-13 11:00:00.009+00', 2, NULL), +(141, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.003967+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.180415+06', 176, NULL), +(142, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.003982+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.014325+06', 10, '{"timezone-id":"Asia/Dhaka"}'), +(143, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.014376+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.023311+06', 8, '{"updated-tables":0,"total-tables":8}'), +(144, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.023361+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.127326+06', 103, '{"total-fields":71,"updated-fields":0}'), +(145, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.127374+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.137601+06', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(146, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.137668+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.180394+06', 42, NULL), +(147, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.189643+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.206111+06', 16, NULL), +(148, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.18966+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.199694+06', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(149, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.199739+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.20299+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(150, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.203032+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:00.206082+06', 3, '{"total-tables":8,"tables-classified":0}'), +(151, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:00.010782+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.295096+06', 2284, NULL), +(152, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:00.0108+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:00.011112+06', 0, '{"timezone-id":null}'), +(153, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:00.011159+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:00.019921+06', 8, '{"updated-tables":0,"total-tables":25}'), +(154, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:00.019976+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.293563+06', 2273, '{"total-fields":267,"updated-fields":0}'), +(155, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.293601+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.294943+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(156, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.294968+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.295088+06', 0, NULL), +(157, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.301311+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.333822+06', 32, NULL), +(158, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.301326+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.32245+06', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(159, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.322486+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.326846+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(160, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.32688+06', TIMESTAMP WITH TIME ZONE '2022-12-13 17:56:02.333797+06', 6, '{"total-tables":25,"tables-classified":0}'), +(161, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 12:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-13 12:00:00.004+00', 1, NULL), +(162, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 12:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-13 12:00:00.007+00', 1, NULL), +(163, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.013169+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.168428+06', 155, NULL), +(164, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.013191+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.016959+06', 3, '{"timezone-id":"Asia/Dhaka"}'), +(165, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.017192+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.023399+06', 6, '{"updated-tables":0,"total-tables":8}'), +(166, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.023441+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.122126+06', 98, '{"total-fields":71,"updated-fields":0}'), +(167, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.12217+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.128378+06', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(168, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.128416+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.168388+06', 39, NULL), +(169, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.179922+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.195776+06', 15, NULL), +(170, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.179939+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.189404+06', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(171, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.189449+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.191818+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(172, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.19186+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:00.195741+06', 3, '{"total-tables":8,"tables-classified":0}'), +(173, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:00.004623+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.210146+06', 2205, NULL), +(174, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:00.004637+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:00.004833+06', 0, '{"timezone-id":null}'), +(175, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:00.004868+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:00.011582+06', 6, '{"updated-tables":0,"total-tables":25}'), +(176, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:00.011616+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.208723+06', 2197, '{"total-fields":267,"updated-fields":0}'), +(177, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.208754+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.20998+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(178, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.210022+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.210138+06', 0, NULL), +(179, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.215887+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.243538+06', 27, NULL), +(180, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.215905+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.232661+06', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(181, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.232694+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.236687+06', 3, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(182, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.236733+06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:02.243508+06', 6, '{"total-tables":25,"tables-classified":0}'), +(183, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 13:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-13 13:00:00.006+00', 1, NULL), +(184, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 13:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-13 13:00:00.011+00', 0, NULL), +(185, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:00.017392+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:01.639106+06', 1621, NULL), +(186, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:00.017416+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:00.194894+06', 177, '{"deleted":0}'), +(187, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:00.194932+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:01.639063+06', 1444, '{"errors":0,"created":9,"updated":1,"deleted":0}'), +(188, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.010021+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.119435+06', 109, NULL), +(189, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.010033+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.018462+06', 8, '{"timezone-id":"Asia/Dhaka"}'), +(190, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.018536+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.023958+06', 5, '{"updated-tables":0,"total-tables":8}'), +(191, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.024008+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.087552+06', 63, '{"total-fields":71,"updated-fields":0}'), +(192, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.087598+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.09421+06', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(193, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.094253+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.119411+06', 25, NULL), +(194, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.125866+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.136594+06', 10, NULL), +(195, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.125877+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.132788+06', 6, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(196, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.132823+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.134573+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(197, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.134606+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:19:00.136572+06', 1, '{"total-tables":8,"tables-classified":0}'), +(198, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:00.003529+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.28453+06', 2281, NULL), +(199, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:00.00354+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:00.003731+06', 0, '{"timezone-id":null}'), +(200, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:00.003764+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:00.008722+06', 4, '{"updated-tables":0,"total-tables":25}'), +(201, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:00.008748+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.282987+06', 2274, '{"total-fields":267,"updated-fields":0}'), +(202, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.283015+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.284391+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(203, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.284413+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.284524+06', 0, NULL), +(204, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.289624+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.318883+06', 29, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(205, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.289634+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.307239+06', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(206, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.307269+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.310747+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(207, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.310778+06', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:02.318856+06', 8, '{"total-tables":25,"tables-classified":0}'), +(208, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 14:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-13 14:00:00.002+00', 1, NULL), +(209, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-13 14:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-13 14:00:00.008+00', 0, NULL), +(210, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.089827+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.59656+06', 506, NULL), +(211, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.092194+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.32234+06', 230, '{"timezone-id":"Asia/Dhaka"}'), +(212, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.323293+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.396617+06', 73, '{"updated-tables":0,"total-tables":8}'), +(213, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.396671+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.525562+06', 128, '{"total-fields":71,"updated-fields":0}'), +(214, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.52563+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.541311+06', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(215, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.541381+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.596525+06', 55, NULL), +(216, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.636916+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.671978+06', 35, NULL), +(217, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.636953+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.656121+06', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(218, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.656185+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.664526+06', 8, '{"fields-classified":0,"fields-failed":0}'), +(219, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.664581+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:19:00.671937+06', 7, '{"total-tables":8,"tables-classified":0}'), +(220, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:00.010744+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.615716+06', 3604, NULL), +(221, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:00.010758+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:00.011065+06', 0, '{"timezone-id":null}'), +(222, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:00.011094+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:00.027738+06', 16, '{"updated-tables":0,"total-tables":25}'), +(223, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:00.027774+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.614142+06', 3586, '{"total-fields":267,"updated-fields":0}'), +(224, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.614174+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.615526+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(225, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.61555+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.615703+06', 0, NULL), +(226, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.623077+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.659934+06', 36, NULL), +(227, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.62309+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.645657+06', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(228, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.645698+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.650893+06', 5, '{"fields-classified":0,"fields-failed":0}'), +(229, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.650936+06', TIMESTAMP WITH TIME ZONE '2022-12-14 12:56:03.659902+06', 8, '{"total-tables":25,"tables-classified":0}'), +(230, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 07:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-14 07:00:00.021+00', 10, NULL), +(231, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 07:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-14 07:00:00.012+00', 1, NULL), +(232, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.004143+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.124423+06', 120, NULL), +(233, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.004155+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.006377+06', 2, '{"timezone-id":"Asia/Dhaka"}'), +(234, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.006439+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.0106+06', 4, '{"updated-tables":0,"total-tables":8}'), +(235, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.010638+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.083451+06', 72, '{"total-fields":71,"updated-fields":0}'), +(236, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.083482+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.088292+06', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(237, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.088341+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.12438+06', 36, NULL), +(238, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.133326+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.149048+06', 15, NULL), +(239, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.133341+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.143287+06', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(240, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.143342+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.146077+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(241, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.146128+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:19:00.149014+06', 2, '{"total-tables":8,"tables-classified":0}'), +(242, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:00.003493+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.002153+06', 1998, NULL), +(243, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:00.003505+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:00.003696+06', 0, '{"timezone-id":null}'), +(244, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:00.003723+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:00.009088+06', 5, '{"updated-tables":0,"total-tables":25}'), +(245, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:00.009124+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:01.99992+06', 1990, '{"total-fields":267,"updated-fields":0}'), +(246, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:01.999956+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.001865+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(247, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.001907+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.002136+06', 0, NULL), +(248, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.008254+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.043802+06', 35, NULL), +(249, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.008267+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.031489+06', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(250, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.031534+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.036429+06', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(251, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.036483+06', TIMESTAMP WITH TIME ZONE '2022-12-14 13:56:02.04377+06', 7, '{"total-tables":25,"tables-classified":0}'), +(252, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 08:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-14 08:00:00.002+00', 1, NULL), +(253, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-14 08:00:00.004+00', 1, NULL), +(254, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.003262+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.126131+06', 122, NULL), +(255, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.003274+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.005208+06', 1, '{"timezone-id":"Asia/Dhaka"}'), +(256, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.005243+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.008795+06', 3, '{"updated-tables":0,"total-tables":8}'), +(257, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.008826+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.089499+06', 80, '{"total-fields":71,"updated-fields":0}'), +(258, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.089533+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.095317+06', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(259, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.095352+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.1261+06', 30, NULL), +(260, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.13197+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.143773+06', 11, NULL), +(261, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.131989+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.139592+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(262, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.139653+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.141823+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(263, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.141855+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:19:00.143743+06', 1, '{"total-tables":8,"tables-classified":0}'), +(264, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:00.003976+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.120509+06', 2116, NULL), +(265, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:00.00399+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:00.00422+06', 0, '{"timezone-id":null}'), +(266, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:00.004259+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:00.01029+06', 6, '{"updated-tables":0,"total-tables":25}'), +(267, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:00.010337+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.118972+06', 2108, '{"total-fields":267,"updated-fields":0}'), +(268, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.119003+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.120347+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(269, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.120375+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.120499+06', 0, NULL), +(270, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.12617+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.161114+06', 34, NULL), +(271, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.126184+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.14544+06', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(272, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.145495+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.152676+06', 7, '{"fields-classified":0,"fields-failed":0}'), +(273, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.152757+06', TIMESTAMP WITH TIME ZONE '2022-12-14 14:56:02.16107+06', 8, '{"total-tables":25,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(274, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 09:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-14 09:00:00.003+00', 1, NULL), +(275, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-14 09:00:00.004+00', 0, NULL), +(276, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.003395+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.094841+06', 91, NULL), +(277, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.003408+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.005036+06', 1, '{"timezone-id":"Asia/Dhaka"}'), +(278, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.005085+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.007885+06', 2, '{"updated-tables":0,"total-tables":8}'), +(279, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.007912+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.067642+06', 59, '{"total-fields":71,"updated-fields":0}'), +(280, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.067674+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.07214+06', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(281, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.072174+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.094814+06', 22, NULL), +(282, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.101694+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.112845+06', 11, NULL), +(283, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.10171+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.108709+06', 6, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(284, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.108751+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.110694+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(285, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.110737+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:19:00.112816+06', 2, '{"total-tables":8,"tables-classified":0}'), +(286, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:00.003468+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.020036+06', 2016, NULL), +(287, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:00.00348+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:00.00365+06', 0, '{"timezone-id":null}'), +(288, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:00.003679+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:00.009723+06', 6, '{"updated-tables":0,"total-tables":25}'), +(289, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:00.009775+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.018645+06', 2008, '{"total-fields":267,"updated-fields":0}'), +(290, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.018675+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.019904+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(291, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.019928+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.020028+06', 0, NULL), +(292, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.026047+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.05481+06', 28, NULL), +(293, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.026068+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.04377+06', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(294, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.043802+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.047601+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(295, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.047644+06', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:02.054771+06', 7, '{"total-tables":25,"tables-classified":0}'), +(296, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 10:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-14 10:00:00.002+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(297, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 10:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-14 10:00:00.003+00', 0, NULL), +(298, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.003826+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.116257+06', 112, NULL), +(299, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.003838+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.005718+06', 1, '{"timezone-id":"Asia/Dhaka"}'), +(300, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.005754+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.010376+06', 4, '{"updated-tables":0,"total-tables":8}'), +(301, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.010417+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.083278+06', 72, '{"total-fields":71,"updated-fields":0}'), +(302, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.083313+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.08852+06', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(303, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.088552+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.116233+06', 27, NULL), +(304, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.12307+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.135481+06', 12, NULL), +(305, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.123083+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.130741+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(306, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.130777+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.133458+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(307, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.133494+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:19:00.135445+06', 1, '{"total-tables":8,"tables-classified":0}'), +(308, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.178094+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.770286+06', 2592, NULL), +(309, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.178117+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.178571+06', 0, '{"timezone-id":null}'), +(310, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.178672+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.183768+06', 5, '{"updated-tables":0,"total-tables":25}'), +(311, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.183802+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.768426+06', 2584, '{"total-fields":267,"updated-fields":18}'), +(312, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.768466+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.770097+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(313, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.770125+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.770273+06', 0, NULL), +(314, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.667094+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.775127+06', 2108, NULL), +(315, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.667117+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.936729+06', 269, '{"deleted":0}'), +(316, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:34.936781+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.775084+06', 1838, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(317, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.777708+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.837174+06', 59, NULL), +(318, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.777737+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.815144+06', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":1,"fingerprints-attempted":1}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(319, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.815175+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.830425+06', 15, '{"fields-classified":1,"fields-failed":0}'), +(320, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.830457+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:36.837135+06', 6, '{"total-tables":25,"tables-classified":0}'), +(321, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:00.009451+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.287898+06', 2278, NULL), +(322, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:00.009469+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:00.009708+06', 0, '{"timezone-id":null}'), +(323, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:00.009739+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:00.014817+06', 5, '{"updated-tables":0,"total-tables":25}'), +(324, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:00.014847+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.286425+06', 2271, '{"total-fields":267,"updated-fields":0}'), +(325, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.286465+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.287759+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(326, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.287782+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.28789+06', 0, NULL), +(327, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.294174+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.328275+06', 34, NULL), +(328, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.294188+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.313973+06', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(329, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.314028+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.320989+06', 6, '{"fields-classified":0,"fields-failed":0}'), +(330, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.321025+06', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:02.328246+06', 7, '{"total-tables":25,"tables-classified":0}'), +(331, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 11:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-14 11:00:00.003+00', 1, NULL), +(332, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-14 11:00:00.003+00', 0, NULL), +(333, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.002946+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.120002+06', 117, NULL), +(334, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.002969+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.014851+06', 11, '{"timezone-id":"Asia/Dhaka"}'), +(335, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.014916+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.019502+06', 4, '{"updated-tables":0,"total-tables":8}'), +(336, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.019546+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.085887+06', 66, '{"total-fields":71,"updated-fields":0}'), +(337, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.085916+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.09029+06', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(338, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.090324+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.119974+06', 29, NULL), +(339, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.131892+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.153961+06', 22, NULL), +(340, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.131912+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.146361+06', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(341, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.146435+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.150275+06', 3, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(342, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.150335+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:19:00.15391+06', 3, '{"total-tables":8,"tables-classified":0}'), +(343, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.711488+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:42.865557+06', 2154, NULL), +(344, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.711506+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.892557+06', 181, '{"deleted":0}'), +(345, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.892598+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:42.865527+06', 1972, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(346, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.31358+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.077617+06', 2764, NULL), +(347, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.313597+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.313875+06', 0, '{"timezone-id":null}'), +(348, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.313914+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.320602+06', 6, '{"updated-tables":0,"total-tables":25}'), +(349, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:40.320634+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.076064+06', 2755, '{"total-fields":267,"updated-fields":18}'), +(350, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.076114+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.07743+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(351, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.077457+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.077607+06', 0, NULL), +(352, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.082489+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.10852+06', 26, NULL), +(353, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.082501+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.09832+06', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(354, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.09835+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.101578+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(355, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.101605+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:52:43.108492+06', 6, '{"total-tables":25,"tables-classified":0}'), +(356, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.999705+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:55.85453+06', 1854, NULL), +(357, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.999721+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:54.177022+06', 177, '{"deleted":0}'), +(358, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:54.177086+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:55.854507+06', 1677, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(359, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.615414+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.154265+06', 2538, NULL), +(360, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.615429+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.615761+06', 0, '{"timezone-id":null}'), +(361, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.61581+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.621657+06', 5, '{"updated-tables":0,"total-tables":25}'), +(362, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:53.62169+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.152771+06', 2531, '{"total-fields":267,"updated-fields":0}'), +(363, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.1528+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.154042+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(364, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.1541+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.154254+06', 0, NULL), +(365, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.166421+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.193885+06', 27, NULL), +(366, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.166445+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.185091+06', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(367, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.185133+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.188777+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(368, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.188812+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:54:56.193862+06', 5, '{"total-tables":25,"tables-classified":0}'), +(369, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:00.003601+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.967984+06', 1964, NULL), +(370, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:00.003613+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:00.003786+06', 0, '{"timezone-id":null}'), +(371, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:00.003814+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:00.00839+06', 4, '{"updated-tables":0,"total-tables":25}'), +(372, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:00.008422+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.966476+06', 1958, '{"total-fields":267,"updated-fields":0}'), +(373, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.966504+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.967825+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(374, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.967852+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.967975+06', 0, NULL), +(375, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.973315+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:02.000378+06', 27, NULL), +(376, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.973331+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.989295+06', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(377, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.989339+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.993489+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(378, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:01.993536+06', TIMESTAMP WITH TIME ZONE '2022-12-14 17:56:02.000341+06', 6, '{"total-tables":25,"tables-classified":0}'), +(379, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 12:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-14 12:00:00.003+00', 1, NULL), +(380, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 12:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-14 12:00:00.005+00', 0, NULL), +(381, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.003202+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.130492+06', 127, NULL), +(382, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.003212+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.004663+06', 1, '{"timezone-id":"Asia/Dhaka"}'), +(383, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.004698+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.007465+06', 2, '{"updated-tables":0,"total-tables":8}'), +(384, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.007494+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.094734+06', 87, '{"total-fields":71,"updated-fields":0}'), +(385, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.094787+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.100717+06', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(386, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.100764+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.130469+06', 29, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(387, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.136648+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.145083+06', 8, NULL), +(388, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.136664+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.142194+06', 5, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(389, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.142222+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.143573+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(390, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.143603+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:00.145063+06', 1, '{"total-tables":8,"tables-classified":0}'), +(391, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:00.008922+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.649492+06', 3640, NULL), +(392, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:00.009576+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:00.011254+06', 1, '{"timezone-id":null}'), +(393, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:00.011445+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:00.028646+06', 17, '{"updated-tables":0,"total-tables":25}'), +(394, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:00.028687+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.645349+06', 3616, '{"total-fields":267,"updated-fields":0}'), +(395, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.645387+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.648672+06', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(396, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.648702+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.649456+06', 0, NULL), +(397, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.672918+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.719942+06', 47, NULL), +(398, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.672935+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.700353+06', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(399, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.70039+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.70818+06', 7, '{"fields-classified":0,"fields-failed":0}'), +(400, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.70822+06', TIMESTAMP WITH TIME ZONE '2022-12-14 18:56:03.719911+06', 11, '{"total-tables":25,"tables-classified":0}'), +(401, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 13:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-14 13:00:00.015+00', 9, NULL), +(402, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-14 13:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-14 13:00:00.012+00', 2, NULL), +(403, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:00.007703+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:02.260414+06', 2252, NULL), +(404, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:00.007727+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:00.328053+06', 320, '{"deleted":0}'), +(405, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:00.328107+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:02.26039+06', 1932, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(406, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.004152+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.290779+06', 286, NULL), +(407, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.004165+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.099707+06', 95, '{"timezone-id":"Asia/Dhaka"}'), +(408, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.099771+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.126668+06', 26, '{"updated-tables":0,"total-tables":8}'), +(409, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.126723+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.236646+06', 109, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(410, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.236701+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.247332+06', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(411, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.247371+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.290754+06', 43, NULL), +(412, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.316904+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.336853+06', 19, NULL), +(413, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.316927+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.330742+06', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(414, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.330802+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.333752+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(415, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.333805+06', TIMESTAMP WITH TIME ZONE '2022-12-14 19:19:00.336814+06', 3, '{"total-tables":8,"tables-classified":0}'), +(416, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 06:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-15 06:00:00.017+00', 9, NULL), +(417, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 06:00:00.019+00', TIMESTAMP WITH TIME ZONE '2022-12-15 06:00:00.024+00', 5, NULL), +(418, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.474934+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.037714+06', 562, NULL), +(419, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.478604+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.619462+06', 140, '{"timezone-id":"Asia/Dhaka"}'), +(420, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.619935+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.660473+06', 40, '{"updated-tables":0,"total-tables":8}'), +(421, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.660591+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.903408+06', 242, '{"total-fields":71,"updated-fields":0}'), +(422, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.903495+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.928829+06', 25, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(423, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:18.928892+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.037639+06', 108, NULL), +(424, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.082746+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.146136+06', 63, NULL), +(425, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.082807+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.11979+06', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(426, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.11989+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.130124+06', 10, '{"fields-classified":0,"fields-failed":0}'), +(427, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.130218+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:19.146078+06', 15, '{"total-tables":8,"tables-classified":0}'), +(428, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:13.121263+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.92014+06', 3798, NULL), +(429, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:13.122414+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:13.12665+06', 4, '{"timezone-id":null}'), +(430, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:13.127237+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:13.197514+06', 70, '{"updated-tables":0,"total-tables":25}'), +(431, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:13.197633+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.909584+06', 3711, '{"total-fields":267,"updated-fields":0}'), +(432, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.909665+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.91819+06', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(433, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.918261+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.920089+06', 1, NULL), +(434, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.974003+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:17.100401+06', 126, NULL), +(435, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:16.974049+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:17.047496+06', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(436, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:17.047566+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:17.067072+06', 19, '{"fields-classified":0,"fields-failed":0}'), +(437, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:17.067141+06', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:17.10033+06', 33, '{"total-tables":25,"tables-classified":0}'), +(438, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-15 07:00:00.014+00', 10, NULL), +(439, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 07:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-15 07:00:00.011+00', 4, NULL), +(440, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.005213+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.300293+06', 295, NULL), +(441, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.005228+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.092545+06', 87, '{"timezone-id":"Asia/Dhaka"}'), +(442, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.09261+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.119161+06', 26, '{"updated-tables":0,"total-tables":8}'), +(443, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.119207+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.23313+06', 113, '{"total-fields":71,"updated-fields":0}'), +(444, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.233176+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.245752+06', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(445, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.245797+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.300259+06', 54, NULL), +(446, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.316419+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.344295+06', 27, NULL), +(447, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.316456+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.33185+06', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(448, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.331914+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.338494+06', 6, '{"fields-classified":0,"fields-failed":0}'), +(449, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.338605+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:19:00.344256+06', 5, '{"total-tables":8,"tables-classified":0}'), +(450, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:00.004026+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.82816+06', 2824, NULL), +(451, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:00.004044+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:00.004352+06', 0, '{"timezone-id":null}'), +(452, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:00.004392+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:00.011786+06', 7, '{"updated-tables":0,"total-tables":25}'), +(453, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:00.011833+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.826498+06', 2814, '{"total-fields":267,"updated-fields":0}'), +(454, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.826541+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.827965+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(455, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.827998+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.828149+06', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(456, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.83821+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.880099+06', 41, NULL), +(457, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.838227+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.860655+06', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(458, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.860693+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.867472+06', 6, '{"fields-classified":0,"fields-failed":0}'), +(459, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.867513+06', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:02.880061+06', 12, '{"total-tables":25,"tables-classified":0}'), +(460, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 08:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-15 08:00:00.003+00', 2, NULL), +(461, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-15 08:00:00.003+00', 0, NULL), +(462, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.003568+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.124667+06', 121, NULL), +(463, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.00358+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.006316+06', 2, '{"timezone-id":"Asia/Dhaka"}'), +(464, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.006388+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.010997+06', 4, '{"updated-tables":0,"total-tables":8}'), +(465, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.011027+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.085371+06', 74, '{"total-fields":71,"updated-fields":0}'), +(466, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.085408+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.091218+06', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(467, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.091257+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.124643+06', 33, NULL), +(468, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.132026+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.143849+06', 11, NULL), +(469, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.132055+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.139709+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(470, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.139749+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.141796+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(471, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.141832+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:19:00.143824+06', 1, '{"total-tables":8,"tables-classified":0}'), +(472, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:00.004079+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.11686+06', 2112, NULL), +(473, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:00.004099+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:00.004387+06', 0, '{"timezone-id":null}'), +(474, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:00.004432+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:00.009682+06', 5, '{"updated-tables":0,"total-tables":25}'), +(475, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:00.009714+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.115355+06', 2105, '{"total-fields":267,"updated-fields":0}'), +(476, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.11539+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.116674+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(477, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.116695+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.11685+06', 0, NULL), +(478, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.123387+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.184395+06', 61, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(479, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.123404+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.172904+06', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(480, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.172938+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.17742+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(481, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.177457+06', TIMESTAMP WITH TIME ZONE '2022-12-15 14:56:02.18437+06', 6, '{"total-tables":25,"tables-classified":0}'), +(482, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 09:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-15 09:00:00.002+00', 1, NULL), +(483, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-15 09:00:00.003+00', 0, NULL), +(484, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.004077+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.092397+06', 88, NULL), +(485, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.004088+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.005795+06', 1, '{"timezone-id":"Asia/Dhaka"}'), +(486, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.005826+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.008876+06', 3, '{"updated-tables":0,"total-tables":8}'), +(487, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.0089+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.065332+06', 56, '{"total-fields":71,"updated-fields":0}'), +(488, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.065365+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.069012+06', 3, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(489, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.069041+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.092378+06', 23, NULL), +(490, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.098491+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.107926+06', 9, NULL), +(491, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.098505+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.104367+06', 5, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(492, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.104402+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.106074+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(493, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.106108+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:19:00.107903+06', 1, '{"total-tables":8,"tables-classified":0}'), +(494, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:14.136832+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.445075+06', 2308, NULL), +(495, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:14.136855+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:14.450123+06', 313, '{"deleted":0}'), +(496, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:14.450169+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.445052+06', 1994, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(497, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:13.616703+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.478017+06', 2861, NULL), +(498, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:13.616717+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:13.617007+06', 0, '{"timezone-id":null}'), +(499, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:13.617051+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:13.624794+06', 7, '{"updated-tables":0,"total-tables":25}'), +(500, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:13.62487+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.476704+06', 2851, '{"total-fields":267,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(501, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.476732+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.477826+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(502, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.477848+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.478008+06', 0, NULL), +(503, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.484118+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.508131+06', 24, NULL), +(504, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.484132+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.49892+06', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(505, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.498976+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.502515+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(506, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.502546+06', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:16.508111+06', 5, '{"total-tables":25,"tables-classified":0}'), +(507, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.106521+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.058945+02', 17952, NULL), +(508, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.107455+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.120267+02', 12, '{"timezone-id":null}'), +(509, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.121503+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.570395+02', 448, '{"updated-tables":21,"total-tables":25}'), +(510, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.570501+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.020409+02', 17449, '{"total-fields":62,"updated-fields":5}'), +(511, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.022037+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.047821+02', 25, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(512, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.048947+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.058384+02', 9, NULL), +(513, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.195653+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:19.28092+02', 1085, NULL), +(514, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.197467+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.963964+02', 766, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":4,"fingerprints-attempted":4}'), +(515, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:18.965592+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:19.118003+02', 152, '{"fields-classified":4,"fields-failed":0}'), +(516, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:19.119631+02', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:19.280708+02', 161, '{"total-tables":6,"tables-classified":1}'), +(517, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 18:00:00.042+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:00:00.154+00', 112, NULL), +(518, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 18:00:00.17+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:00:00.191+00', 21, NULL), +(519, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.021078+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.490835+02', 1469, NULL), +(520, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.021126+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.704797+02', 683, '{"timezone-id":"Europe/Helsinki"}'), +(521, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.704979+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.847517+02', 142, '{"updated-tables":0,"total-tables":8}'), +(522, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.847572+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.254117+02', 406, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(1, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(1, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(523, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.254225+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.287296+02', 33, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(524, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.287355+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.490122+02', 202, NULL), +(525, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.538591+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.623623+02', 85, NULL), +(526, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.538621+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.603947+02', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(527, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.604003+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.611831+02', 7, '{"fields-classified":0,"fields-failed":0}'), +(528, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.611907+02', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:01.623571+02', 11, '{"total-tables":8,"tables-classified":0}'), +(539, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:56:00.215002+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:10.812482+00', 70597, NULL), +(540, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:56:00.218455+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:56:00.238934+00', 20, '{"timezone-id":null}'), +(541, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:56:00.239467+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:56:10.262762+00', 10023, SYSTEM_COMBINE_CLOB(1)), +(542, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:56:10.26499+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:10.786628+00', 60521, '{"total-fields":0,"updated-fields":121}'), +(543, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:10.786728+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:10.804929+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(544, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:10.805024+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:10.808798+00', 3, NULL), +(545, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.179344+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.282789+00', 103, NULL), +(546, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.179389+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.25259+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(547, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.252713+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.267792+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(548, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.267913+00', TIMESTAMP WITH TIME ZONE '2022-12-15 18:57:11.282692+00', 14, '{"total-tables":6,"tables-classified":0}'), +(549, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:00.042+00', 36, NULL), +(550, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:00.017+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:00.022+00', 5, NULL), +(551, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.009577+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.722059+00', 712, NULL), +(552, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.009605+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.374002+00', 364, '{"timezone-id":"UTC"}'), +(553, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.374111+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.444395+00', 70, '{"updated-tables":0,"total-tables":8}'), +(554, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.444507+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.627265+00', 182, '{"total-fields":71,"updated-fields":0}'), +(555, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.627366+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.643439+00', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(2, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(2, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(556, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.643546+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.721985+00', 78, NULL), +(557, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.736988+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.765008+00', 28, NULL), +(558, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.73701+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.75204+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(559, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.752176+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.759008+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(560, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.759136+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:19:00.76494+00', 5, '{"total-tables":8,"tables-classified":0}'), +(561, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.01177+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.061507+00', 70049, NULL), +(562, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.011797+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.012536+00', 0, '{"timezone-id":null}'), +(563, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:00.013804+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:10.017179+00', 10003, SYSTEM_COMBINE_CLOB(2)), +(564, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:56:10.017362+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.058156+00', 60040, '{"total-fields":0,"updated-fields":0}'), +(565, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.058229+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.060833+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(566, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.060885+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.061482+00', 0, NULL), +(567, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.092408+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.156544+00', 64, NULL), +(568, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.092428+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.120289+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(569, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.120598+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.1349+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(570, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.135421+00', TIMESTAMP WITH TIME ZONE '2022-12-15 19:57:10.156483+00', 21, '{"total-tables":6,"tables-classified":0}'), +(571, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 20:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:00:00.007+00', 2, NULL), +(572, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 20:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:00:00.019+00', 14, NULL), +(573, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.008133+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.602539+00', 594, NULL), +(574, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.00816+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.016605+00', 8, '{"timezone-id":"UTC"}'), +(575, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.016663+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.039342+00', 22, '{"updated-tables":0,"total-tables":8}'), +(576, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.039491+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.45445+00', 414, '{"total-fields":71,"updated-fields":0}'), +(577, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.454512+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.478864+00', 24, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(578, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.478929+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.602472+00', 123, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(3, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(3, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(579, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.617065+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.644785+00', 27, NULL), +(580, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.61709+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.632828+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(581, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.63289+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.637673+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(582, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.637725+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:19:00.644745+00', 7, '{"total-tables":8,"tables-classified":0}'), +(583, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:56:00.00968+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.056192+00', 70046, NULL), +(584, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:56:00.009707+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:56:00.016923+00', 7, '{"timezone-id":null}'), +(585, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:56:00.016996+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:56:10.020548+00', 10003, SYSTEM_COMBINE_CLOB(3)), +(586, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:56:10.020711+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.052737+00', 60032, '{"total-fields":0,"updated-fields":0}'), +(587, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.052804+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.055553+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(588, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.055604+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.056162+00', 0, NULL), +(589, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.104196+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.17149+00', 67, NULL), +(590, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.104223+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.14194+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(591, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.142026+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.156205+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(592, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.156291+00', TIMESTAMP WITH TIME ZONE '2022-12-15 20:57:10.171439+00', 15, '{"total-tables":6,"tables-classified":0}'), +(593, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.011+00', 1, NULL), +(594, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.024+00', 13, NULL), +(595, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.049333+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:02.194582+00', 2145, NULL), +(596, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.049365+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.260617+00', 211, '{"deleted":0}'), +(597, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:00.260693+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:00:02.194531+00', 1933, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(598, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.008115+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.489791+00', 481, NULL), +(599, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.008143+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.012181+00', 4, '{"timezone-id":"UTC"}'), +(600, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.012238+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.02046+00', 8, '{"updated-tables":0,"total-tables":8}'), +(601, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.020515+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.277386+00', 256, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(4, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(4, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(602, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.27746+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.334696+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(603, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.334772+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.489745+00', 154, NULL), +(604, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.563435+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.666735+00', 103, NULL), +(605, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.563483+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.623491+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(606, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.623615+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.645306+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(607, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.645815+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:19:00.666665+00', 20, '{"total-tables":8,"tables-classified":0}'), +(608, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:56:00.008486+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.049515+00', 70041, NULL), +(609, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:56:00.008524+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:56:00.009102+00', 0, '{"timezone-id":null}'), +(610, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:56:00.009152+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:56:10.012049+00', 10002, SYSTEM_COMBINE_CLOB(4)), +(611, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:56:10.012228+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.047197+00', 60034, '{"total-fields":0,"updated-fields":0}'), +(612, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.047266+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.048989+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(613, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.049034+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.049491+00', 0, NULL), +(614, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.063838+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.082752+00', 18, NULL), +(615, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.063856+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.073437+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(616, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.073494+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.077475+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(617, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.077528+00', TIMESTAMP WITH TIME ZONE '2022-12-15 21:57:10.082721+00', 5, '{"total-tables":6,"tables-classified":0}'), +(618, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 22:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:00:00.004+00', 2, NULL), +(619, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 22:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:00:00.008+00', 1, NULL), +(620, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.014843+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.429511+00', 414, NULL), +(621, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.014876+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.029788+00', 14, '{"timezone-id":"UTC"}'), +(622, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.029883+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.049805+00', 19, '{"updated-tables":0,"total-tables":8}'), +(623, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.04994+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.260484+00', 210, '{"total-fields":71,"updated-fields":0}'), +(624, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.260576+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.278035+00', 17, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(5, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(5, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(625, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.279432+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.429465+00', 150, NULL), +(626, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.459625+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.519646+00', 60, NULL), +(627, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.459647+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.495856+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(628, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.495934+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.505724+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(629, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.507058+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:19:00.519529+00', 12, '{"total-tables":8,"tables-classified":0}'), +(630, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:56:00.022686+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.065595+00', 70042, NULL), +(631, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:56:00.022715+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:56:00.026107+00', 3, '{"timezone-id":null}'), +(632, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:56:00.026176+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:56:10.029012+00', 10002, SYSTEM_COMBINE_CLOB(5)), +(633, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:56:10.029179+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.062408+00', 60033, '{"total-fields":0,"updated-fields":0}'), +(634, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.062493+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.064848+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(635, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.064905+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.065503+00', 0, NULL), +(636, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.107344+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.132216+00', 24, NULL), +(637, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.107372+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.12027+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(638, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.120386+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.126313+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(639, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.126372+00', TIMESTAMP WITH TIME ZONE '2022-12-15 22:57:10.13218+00', 5, '{"total-tables":6,"tables-classified":0}'), +(640, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 23:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:00:00.013+00', 4, NULL), +(641, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-15 23:00:00.013+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:00:00.02+00', 7, NULL), +(642, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.011541+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.699458+00', 687, NULL), +(643, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.011567+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.03042+00', 18, '{"timezone-id":"UTC"}'), +(644, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.030483+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.050872+00', 20, '{"updated-tables":0,"total-tables":8}'), +(645, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.050933+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.539973+00', 489, '{"total-fields":71,"updated-fields":0}'), +(646, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.540039+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.563046+00', 23, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(647, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.563106+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.699415+00', 136, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(6, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(6, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(648, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.717059+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.771409+00', 54, NULL), +(649, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.717081+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.732423+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(650, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.732484+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.742559+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(651, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.742674+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:19:00.771354+00', 28, '{"total-tables":8,"tables-classified":0}'), +(652, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:56:00.028547+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.067902+00', 70039, NULL), +(653, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:56:00.028576+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:56:00.029152+00', 0, '{"timezone-id":null}'), +(654, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:56:00.029206+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:56:10.034131+00', 10004, SYSTEM_COMBINE_CLOB(6)), +(655, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:56:10.034297+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.064442+00', 60030, '{"total-fields":0,"updated-fields":0}'), +(656, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.064512+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.067402+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(657, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.067454+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.067879+00', 0, NULL), +(658, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.096294+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.131977+00', 35, NULL), +(659, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.096316+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.118521+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(660, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.118595+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.121773+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(661, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.121855+00', TIMESTAMP WITH TIME ZONE '2022-12-15 23:57:10.131887+00', 10, '{"total-tables":6,"tables-classified":0}'), +(662, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 00:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:00:00.006+00', 1, NULL), +(663, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 00:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:00:00.036+00', 30, NULL), +(664, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.026859+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.222517+00', 195, NULL), +(665, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.026886+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.034447+00', 7, '{"timezone-id":"UTC"}'), +(666, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.034512+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.041246+00', 6, '{"updated-tables":0,"total-tables":8}'), +(667, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.041317+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.153233+00', 111, '{"total-fields":71,"updated-fields":0}'), +(668, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.153336+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.161043+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(669, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.161099+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.222476+00', 61, NULL), +(670, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.23515+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.267703+00', 32, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(7, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(7, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(671, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.235173+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.256786+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(672, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.256855+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.26353+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(673, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.263594+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:19:00.267665+00', 4, '{"total-tables":8,"tables-classified":0}'), +(674, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:56:00.008456+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.042966+00', 70034, NULL), +(675, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:56:00.008484+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:56:00.009589+00', 1, '{"timezone-id":null}'), +(676, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:56:00.00964+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:56:10.012668+00', 10003, SYSTEM_COMBINE_CLOB(7)), +(677, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:56:10.012846+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.040675+00', 60027, '{"total-fields":0,"updated-fields":0}'), +(678, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.040742+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.042552+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(679, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.0426+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.042945+00', 0, NULL), +(680, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.06138+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.112208+00', 50, NULL), +(681, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.0614+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.080757+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(682, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.080827+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.100986+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(683, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.101094+00', TIMESTAMP WITH TIME ZONE '2022-12-16 00:57:10.112162+00', 11, '{"total-tables":6,"tables-classified":0}'), +(684, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 01:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:00:00.014+00', 9, NULL), +(685, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 01:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:00:00.015+00', 9, NULL), +(686, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.012066+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.370462+00', 358, NULL), +(687, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.012095+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.020043+00', 7, '{"timezone-id":"UTC"}'), +(688, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.020099+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.040676+00', 20, '{"updated-tables":0,"total-tables":8}'), +(689, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.040746+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.279345+00', 238, '{"total-fields":71,"updated-fields":0}'), +(690, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.279407+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.298692+00', 19, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(691, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.298756+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.370418+00', 71, NULL), +(692, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.395009+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.427176+00', 32, NULL), +(693, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.395032+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.416633+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(8, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(8, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(694, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.416703+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.420522+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(695, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.420568+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:19:00.427143+00', 6, '{"total-tables":8,"tables-classified":0}'), +(696, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:56:00.008259+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.048533+00', 70040, NULL), +(697, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:56:00.008291+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:56:00.010845+00', 2, '{"timezone-id":null}'), +(698, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:56:00.010914+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:56:10.016135+00', 10005, SYSTEM_COMBINE_CLOB(8)), +(699, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:56:10.019193+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.046525+00', 60027, '{"total-fields":0,"updated-fields":0}'), +(700, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.04659+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.048124+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(701, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.048169+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.048513+00', 0, NULL), +(702, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.062791+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.082395+00', 19, NULL), +(703, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.06281+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.074279+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(704, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.074331+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.077551+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(705, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.077593+00', TIMESTAMP WITH TIME ZONE '2022-12-16 01:57:10.082364+00', 4, '{"total-tables":6,"tables-classified":0}'), +(706, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 02:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:00:00.007+00', 2, NULL), +(707, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:00:00.005+00', 1, NULL), +(708, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.056939+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.328948+00', 272, NULL), +(709, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.056965+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.06107+00', 4, '{"timezone-id":"UTC"}'), +(710, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.061122+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.068124+00', 7, '{"updated-tables":0,"total-tables":8}'), +(711, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.068173+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.221249+00', 153, '{"total-fields":71,"updated-fields":0}'), +(712, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.221318+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.23262+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(713, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.232687+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.328905+00', 96, NULL), +(714, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.3442+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.366512+00', 22, NULL), +(715, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.344231+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.354902+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(716, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.355033+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.360672+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(9, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(9, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(717, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.360801+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:19:00.366403+00', 5, '{"total-tables":8,"tables-classified":0}'), +(718, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:56:00.011216+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.056366+00', 70045, NULL), +(719, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:56:00.011243+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:56:00.017578+00', 6, '{"timezone-id":null}'), +(720, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:56:00.017648+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:56:10.020758+00', 10003, SYSTEM_COMBINE_CLOB(9)), +(721, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:56:10.020925+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.054488+00', 60033, '{"total-fields":0,"updated-fields":0}'), +(722, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.054555+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.055981+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(723, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.056029+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.056345+00', 0, NULL), +(724, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.102643+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.134888+00', 32, NULL), +(725, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.102673+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.116783+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(726, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.116851+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.127161+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(727, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.127225+00', TIMESTAMP WITH TIME ZONE '2022-12-16 02:57:10.134843+00', 7, '{"total-tables":6,"tables-classified":0}'), +(728, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:00:00.006+00', 2, NULL), +(729, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 03:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:00:00.006+00', 1, NULL), +(730, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.006194+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.590698+00', 584, NULL), +(731, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.006221+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.009506+00', 3, '{"timezone-id":"UTC"}'), +(732, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.00956+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.024849+00', 15, '{"updated-tables":0,"total-tables":8}'), +(733, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.024905+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.243526+00', 218, '{"total-fields":71,"updated-fields":0}'), +(734, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.243589+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.266263+00', 22, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(735, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.266329+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.590651+00', 324, NULL), +(736, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.608402+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.648178+00', 39, NULL), +(737, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.608425+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.631944+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(738, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.63201+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.643967+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(739, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.644052+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:19:00.648135+00', 4, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(10, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(10, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(740, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:56:00.009017+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.047039+00', 70038, NULL), +(741, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:56:00.009046+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:56:00.010161+00', 1, '{"timezone-id":null}'), +(742, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:56:00.010221+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:56:10.01279+00', 10002, SYSTEM_COMBINE_CLOB(10)), +(743, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:56:10.012966+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.043632+00', 60030, '{"total-fields":0,"updated-fields":0}'), +(744, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.043791+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.046202+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(745, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.046386+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.046968+00', 0, NULL), +(746, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.068882+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.092101+00', 23, NULL), +(747, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.068912+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.082261+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(748, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.082326+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.08614+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(749, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.086211+00', TIMESTAMP WITH TIME ZONE '2022-12-16 03:57:10.092059+00', 5, '{"total-tables":6,"tables-classified":0}'), +(750, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 04:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:00:00.004+00', 1, NULL), +(751, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 04:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:00:00.008+00', 3, NULL), +(752, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.005625+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.428131+00', 422, NULL), +(753, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.005651+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.009285+00', 3, '{"timezone-id":"UTC"}'), +(754, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.009338+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.021259+00', 11, '{"updated-tables":0,"total-tables":8}'), +(755, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.021316+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.220531+00', 199, '{"total-fields":71,"updated-fields":0}'), +(756, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.220593+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.252344+00', 31, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(757, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.255755+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.42809+00', 172, NULL), +(758, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.448405+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.466159+00', 17, NULL), +(759, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.448428+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.458961+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(760, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.459023+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.462268+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(761, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.462311+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:19:00.466131+00', 3, '{"total-tables":8,"tables-classified":0}'), +(762, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:56:00.008466+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.04149+00', 70033, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(11, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(11, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(763, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:56:00.008492+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:56:00.00897+00', 0, '{"timezone-id":null}'), +(764, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:56:00.00905+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:56:10.012616+00', 10003, SYSTEM_COMBINE_CLOB(11)), +(765, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:56:10.012781+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.039275+00', 60026, '{"total-fields":0,"updated-fields":0}'), +(766, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.039341+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.040872+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(767, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.040944+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.041423+00', 0, NULL), +(768, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.06168+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.094607+00', 32, NULL), +(769, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.061699+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.0749+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(770, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.080114+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.083669+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(771, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.083778+00', TIMESTAMP WITH TIME ZONE '2022-12-16 04:57:10.094508+00', 10, '{"total-tables":6,"tables-classified":0}'), +(772, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:00:00.004+00', 1, NULL), +(773, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 05:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:00:00.006+00', 2, NULL), +(774, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.006433+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.198681+00', 192, NULL), +(775, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.006461+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.010552+00', 4, '{"timezone-id":"UTC"}'), +(776, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.010636+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.019357+00', 8, '{"updated-tables":0,"total-tables":8}'), +(777, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.01941+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.110472+00', 91, '{"total-fields":71,"updated-fields":0}'), +(778, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.11056+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.121922+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(779, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.121987+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.198643+00', 76, NULL), +(780, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.244706+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.306154+00', 61, NULL), +(781, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.244732+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.284426+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(782, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.284502+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.293156+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(783, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.293229+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:19:00.30608+00', 12, '{"total-tables":8,"tables-classified":0}'), +(784, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:56:00.016823+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.052778+00', 70035, NULL), +(785, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:56:00.016853+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:56:00.018733+00', 1, '{"timezone-id":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(12, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(12, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(13, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoTimeoutException","message":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]","at":["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179]}],"trace":[["com.mongodb.internal.connection.BaseCluster","getDescription","BaseCluster.java",179],["com.mongodb.internal.connection.SingleServerCluster","getDescription","SingleServerCluster.java",41],["com.mongodb.client.internal.MongoClientDelegate","getConnectedClusterDescription","MongoClientDelegate.java",136],["com.mongodb.client.internal.MongoClientDelegate","createClientSession","MongoClientDelegate.java",94],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","getClientSession","MongoClientDelegate.java",249],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",172],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connectio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(13, 1, 'n$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(786, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:56:00.018834+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:56:10.021692+00', 10002, SYSTEM_COMBINE_CLOB(12)), +(787, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:56:10.021927+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.050603+00', 60028, '{"total-fields":0,"updated-fields":0}'), +(788, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.050676+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.052323+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(789, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.052369+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.052754+00', 0, NULL), +(790, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.065215+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.108702+00', 43, NULL), +(791, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.065231+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.086541+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(792, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.086601+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.091267+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(793, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.091313+00', TIMESTAMP WITH TIME ZONE '2022-12-16 05:57:10.108664+00', 17, '{"total-tables":6,"tables-classified":0}'), +(794, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:00:00.005+00', 1, NULL), +(795, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:00:00.005+00', 1, NULL), +(796, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.007811+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.163046+00', 155, NULL), +(797, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.007839+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.011662+00', 3, '{"timezone-id":"UTC"}'), +(798, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.011727+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.022442+00', 10, '{"updated-tables":0,"total-tables":8}'), +(799, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.022501+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.112702+00', 90, '{"total-fields":71,"updated-fields":0}'), +(800, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.112767+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.121884+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(801, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.121939+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.163004+00', 41, NULL), +(802, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.177816+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.198117+00', 20, NULL), +(803, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.177874+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.188722+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(804, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.188806+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.193761+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(805, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.193875+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:19:00.198051+00', 4, '{"total-tables":8,"tables-classified":0}'), +(806, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:56:00.241376+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.332552+00', 70091, NULL), +(807, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:56:00.241635+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:56:00.243621+00', 1, '{"timezone-id":null}'), +(808, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:56:00.24379+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:56:10.248258+00', 10004, SYSTEM_COMBINE_CLOB(13)); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(809, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:56:10.249425+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.310307+00', 60060, '{"total-fields":0,"updated-fields":0}'), +(810, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.310384+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.3207+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(811, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.320754+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.332503+00', 11, NULL), +(812, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.657853+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.77162+00', 113, NULL), +(813, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.657881+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.753137+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(814, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.753246+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.756616+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(815, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.756724+00', TIMESTAMP WITH TIME ZONE '2022-12-16 06:57:10.771588+00', 14, '{"total-tables":6,"tables-classified":0}'), +(816, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 07:00:00.063+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:00:00.065+00', 2, NULL), +(817, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 07:00:00.059+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:00:00.079+00', 20, NULL), +(818, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.007872+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.29263+00', 284, NULL), +(819, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.007902+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.040805+00', 32, '{"timezone-id":"UTC"}'), +(820, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.040895+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.055012+00', 14, '{"updated-tables":0,"total-tables":8}'), +(821, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.05507+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.19262+00', 137, '{"total-fields":71,"updated-fields":0}'), +(822, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.19268+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.212182+00', 19, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(823, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.212245+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.292584+00', 80, NULL), +(824, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.331733+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.40081+00', 69, NULL), +(825, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.331759+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.369711+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(826, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.370523+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.390671+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(827, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.390945+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:19:00.400772+00', 9, '{"total-tables":8,"tables-classified":0}'), +(828, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:00.007424+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.581764+00', 11574, NULL), +(829, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:00.00745+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:00.007791+00', 0, '{"timezone-id":null}'), +(830, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:00.007847+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:00.091366+00', 83, '{"updated-tables":21,"total-tables":6}'), +(831, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:00.091436+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.571421+00', 11479, '{"total-fields":293,"updated-fields":199}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(832, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.571493+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.5813+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(833, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.581363+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.581732+00', 0, NULL), +(834, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.642348+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:12.467689+00', 825, NULL), +(835, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:11.64238+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:12.343693+00', 701, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":18,"fingerprints-attempted":18}'), +(836, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:12.343859+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:12.42041+00', 76, '{"fields-classified":18,"fields-failed":0}'), +(837, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:12.421911+00', TIMESTAMP WITH TIME ZONE '2022-12-16 07:56:12.467364+00', 45, '{"total-tables":27,"tables-classified":1}'), +(838, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 08:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:00:00.007+00', 2, NULL), +(839, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 08:00:00.022+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:00:00.079+00', 57, NULL), +(840, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.157402+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.724415+00', 567, NULL), +(841, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.157436+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.184653+00', 27, '{"timezone-id":"UTC"}'), +(842, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.184737+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.337486+00', 152, '{"updated-tables":0,"total-tables":8}'), +(843, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.337547+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.513539+00', 175, '{"total-fields":71,"updated-fields":0}'), +(844, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.513602+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.551056+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(845, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.55112+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.724363+00', 173, NULL), +(846, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.7504+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.784277+00', 33, NULL), +(847, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.750427+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.769374+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(848, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.770223+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.78064+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(849, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.780716+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:00.784209+00', 3, '{"total-tables":8,"tables-classified":0}'), +(850, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:00.032442+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.407144+00', 7374, NULL), +(851, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:00.032476+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:00.041781+00', 9, '{"timezone-id":null}'), +(852, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:00.042033+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:00.114907+00', 72, '{"updated-tables":0,"total-tables":27}'), +(853, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:00.11498+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.403723+00', 7288, '{"total-fields":293,"updated-fields":0}'), +(854, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.403792+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.406827+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(855, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.406878+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.407126+00', 0, NULL), +(856, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.433234+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.588505+00', 155, NULL), +(857, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.433259+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.539475+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":2,"fingerprints-attempted":2}'), +(858, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.539585+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.56014+00', 20, '{"fields-classified":2,"fields-failed":0}'), +(859, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.560241+00', TIMESTAMP WITH TIME ZONE '2022-12-16 08:56:07.588324+00', 28, '{"total-tables":27,"tables-classified":0}'), +(860, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 09:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:00:00.016+00', 10, NULL), +(861, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 09:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:00:00.018+00', 10, NULL), +(862, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.014656+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.292318+00', 277, NULL), +(863, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.014689+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.018493+00', 3, '{"timezone-id":"UTC"}'), +(864, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.027218+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.034907+00', 7, '{"updated-tables":0,"total-tables":8}'), +(865, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.034967+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.214671+00', 179, '{"total-fields":71,"updated-fields":0}'), +(866, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.21504+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.229497+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(867, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.232593+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.291897+00', 59, NULL), +(868, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.3049+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.34393+00', 39, NULL), +(869, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.304923+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.334866+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(870, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.334969+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.337609+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(871, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.337664+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:00.343898+00', 6, '{"total-tables":8,"tables-classified":0}'), +(872, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:00.006843+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.023398+00', 6016, NULL), +(873, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:00.006867+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:00.007153+00', 0, '{"timezone-id":null}'), +(874, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:00.007201+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:00.074324+00', 67, '{"updated-tables":0,"total-tables":27}'), +(875, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:00.074423+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.020701+00', 5946, '{"total-fields":293,"updated-fields":1}'), +(876, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.020757+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.023023+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(877, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.023068+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.023378+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(878, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.035132+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.132319+00', 97, NULL), +(879, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.03515+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.089284+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(880, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.089351+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.104689+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(881, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.104759+00', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:06.132269+00', 27, '{"total-tables":27,"tables-classified":0}'), +(882, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 10:00:00.013+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:00:00.015+00', 2, NULL), +(883, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 10:00:00.021+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:00:00.022+00', 1, NULL), +(884, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.005296+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.158024+00', 152, NULL), +(885, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.005321+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.009942+00', 4, '{"timezone-id":"UTC"}'), +(886, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.009999+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.015043+00', 5, '{"updated-tables":0,"total-tables":8}'), +(887, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.015093+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.107789+00', 92, '{"total-fields":71,"updated-fields":0}'), +(888, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.107851+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.114173+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(889, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.114223+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.157795+00', 43, NULL), +(890, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.171807+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.188829+00', 17, NULL), +(891, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.171861+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.182749+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(892, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.182813+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.185754+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(893, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.185801+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:00.188801+00', 3, '{"total-tables":8,"tables-classified":0}'), +(894, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:00.006018+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.041906+00', 9035, NULL), +(895, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:00.006133+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:00.006454+00', 0, '{"timezone-id":null}'), +(896, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:00.006523+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:00.043793+00', 37, '{"updated-tables":0,"total-tables":27}'), +(897, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:00.043885+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.039112+00', 8995, '{"total-fields":293,"updated-fields":0}'), +(898, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.039181+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.041517+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(899, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.041552+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.041873+00', 0, NULL), +(900, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.066858+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.151461+00', 84, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(901, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.066877+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.120112+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(902, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.120175+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.131934+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(903, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.131993+00', TIMESTAMP WITH TIME ZONE '2022-12-16 10:56:09.15142+00', 19, '{"total-tables":27,"tables-classified":0}'), +(904, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.014+00', 10, NULL), +(905, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.043+00', 29, NULL), +(906, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.006895+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.290691+00', 283, NULL), +(907, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.006961+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.010015+00', 3, '{"timezone-id":"UTC"}'), +(908, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.010083+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.018983+00', 8, '{"updated-tables":0,"total-tables":8}'), +(909, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.019041+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.114251+00', 95, '{"total-fields":71,"updated-fields":0}'), +(910, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.114344+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.166792+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(911, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.166858+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.290657+00', 123, NULL), +(912, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.300673+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.331962+00', 31, NULL), +(913, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.300804+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.312895+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(914, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.312952+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.327746+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(915, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.327971+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:19:00.331926+00', 3, '{"total-tables":8,"tables-classified":0}'), +(916, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:00.008222+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.429112+00', 14420, NULL), +(917, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:00.008242+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:00.008508+00', 0, '{"timezone-id":null}'), +(918, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:00.00855+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:00.058767+00', 50, '{"updated-tables":0,"total-tables":27}'), +(919, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:00.058849+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.425871+00', 14367, '{"total-fields":293,"updated-fields":0}'), +(920, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.425971+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.428557+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(921, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.428693+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.42905+00', 0, NULL), +(922, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.462765+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.593189+00', 130, NULL), +(923, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.462784+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.569375+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(924, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.569439+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.578185+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(925, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.57824+00', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:14.593163+00', 14, '{"total-tables":27,"tables-classified":0}'), +(926, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:00.045+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:00.047+00', 2, NULL), +(927, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:00.071+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:00.088+00', 17, NULL), +(928, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.00661+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.366219+00', 359, NULL), +(929, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.006631+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.023365+00', 16, '{"timezone-id":"UTC"}'), +(930, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.023442+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.054748+00', 31, '{"updated-tables":0,"total-tables":8}'), +(931, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.054806+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.288175+00', 233, '{"total-fields":71,"updated-fields":0}'), +(932, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.288227+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.297793+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(933, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.297863+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.366182+00', 68, NULL), +(934, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.374168+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.388524+00', 14, NULL), +(935, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.374184+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.382954+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(936, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.382999+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.385483+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(937, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.385519+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:19:00.388501+00', 2, '{"total-tables":8,"tables-classified":0}'), +(938, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:00.021062+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.814216+00', 9793, NULL), +(939, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:00.021085+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:00.021468+00', 0, '{"timezone-id":null}'), +(940, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:00.021673+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:00.156447+00', 134, '{"updated-tables":0,"total-tables":27}'), +(941, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:00.156501+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.811793+00', 9655, '{"total-fields":293,"updated-fields":0}'), +(942, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.811841+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.814001+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(943, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.814037+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.814202+00', 0, NULL), +(944, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.830966+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.944522+00', 113, NULL), +(945, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.830984+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.912517+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(946, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.912587+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.928533+00', 15, '{"fields-classified":1,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(947, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.928598+00', TIMESTAMP WITH TIME ZONE '2022-12-16 12:56:09.944479+00', 15, '{"total-tables":27,"tables-classified":0}'), +(948, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.013+00', 2, NULL), +(949, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.017+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.023+00', 6, NULL), +(950, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.008694+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:04.203039+00', 4194, NULL), +(951, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.008713+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.427247+00', 418, '{"deleted":0}'), +(952, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:00.427309+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:04.202771+00', 3775, '{"errors":0,"created":10,"updated":84,"deleted":1}'), +(953, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.038967+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.22331+00', 184, NULL), +(954, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.038994+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.042358+00', 3, '{"timezone-id":"UTC"}'), +(955, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.042403+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.048231+00', 5, '{"updated-tables":0,"total-tables":8}'), +(956, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.048296+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.16293+00', 114, '{"total-fields":71,"updated-fields":0}'), +(957, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.162979+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.170943+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(958, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.171344+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.223252+00', 51, NULL), +(959, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.232987+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.249413+00', 16, NULL), +(960, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.233015+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.243719+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(961, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.243801+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.246495+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(962, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.246534+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:00.249388+00', 2, '{"total-tables":8,"tables-classified":0}'), +(963, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:00.011493+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.929342+00', 12917, NULL), +(964, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:00.011516+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:00.018389+00', 6, '{"timezone-id":null}'), +(965, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:00.018478+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:00.073226+00', 54, '{"updated-tables":0,"total-tables":27}'), +(966, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:00.073275+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.909235+00', 12835, '{"total-fields":293,"updated-fields":0}'), +(967, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.912788+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.928828+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(968, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.92892+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.929273+00', 0, NULL), +(969, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.992771+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:13.189752+00', 196, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(970, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:12.992794+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:13.152091+00', 159, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(971, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:13.152157+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:13.168+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(972, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:13.168068+00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:56:13.189384+00', 21, '{"total-tables":27,"tables-classified":0}'), +(973, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:00:00.009+00', 5, NULL), +(974, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 14:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:00:00.015+00', 4, NULL), +(975, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.007094+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.340266+00', 333, NULL), +(976, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.007139+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.012413+00', 5, '{"timezone-id":"UTC"}'), +(977, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.012467+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.023437+00', 10, '{"updated-tables":0,"total-tables":8}'), +(978, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.023623+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.163961+00', 140, '{"total-fields":71,"updated-fields":0}'), +(979, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.164036+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.177626+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(980, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.177706+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.34024+00', 162, NULL), +(981, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.356105+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.378077+00', 21, NULL), +(982, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.356123+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.370907+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(983, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.37096+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.373365+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(984, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.373406+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:19:00.37805+00', 4, '{"total-tables":8,"tables-classified":0}'), +(985, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:00.007053+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.791912+00', 9784, NULL), +(986, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:00.007074+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:00.007302+00', 0, '{"timezone-id":null}'), +(987, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:00.007337+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:00.0388+00', 31, '{"updated-tables":0,"total-tables":27}'), +(988, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:00.038848+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.788858+00', 9750, '{"total-fields":293,"updated-fields":0}'), +(989, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.788947+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.791357+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(990, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.79155+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.791872+00', 0, NULL), +(991, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.804279+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.878244+00', 73, NULL), +(992, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.804368+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.850658+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(993, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.850717+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.85884+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(994, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.858909+00', TIMESTAMP WITH TIME ZONE '2022-12-16 14:56:09.878207+00', 19, '{"total-tables":27,"tables-classified":0}'), +(995, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 15:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:00:00.014+00', 9, NULL), +(996, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 15:00:00.016+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:00:00.017+00', 1, NULL), +(997, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.005645+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.151578+00', 145, NULL), +(998, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.005665+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.008118+00', 2, '{"timezone-id":"UTC"}'), +(999, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.008162+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.013199+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1000, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.013246+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.105019+00', 91, '{"total-fields":71,"updated-fields":0}'), +(1001, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.105062+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.111631+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1002, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.111673+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.151553+00', 39, NULL), +(1003, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.158405+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.171873+00', 13, NULL), +(1004, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.158424+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.166734+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1005, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.166781+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.169201+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1006, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.169252+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:19:00.171846+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1007, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:00.008129+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.0079+00', 4999, NULL), +(1008, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:00.008148+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:00.008468+00', 0, '{"timezone-id":null}'), +(1009, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:00.008562+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:00.080706+00', 72, '{"updated-tables":0,"total-tables":27}'), +(1010, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:00.080791+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.005553+00', 4924, '{"total-fields":293,"updated-fields":0}'), +(1011, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.005618+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.007698+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1012, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.007732+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.007888+00', 0, NULL), +(1013, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.018175+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.07437+00', 56, NULL), +(1014, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.018189+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.044345+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1015, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.044387+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.053421+00', 9, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1016, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.053459+00', TIMESTAMP WITH TIME ZONE '2022-12-16 15:56:05.074345+00', 20, '{"total-tables":27,"tables-classified":0}'), +(1017, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 16:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:00:00.011+00', 2, NULL), +(1018, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 16:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:00:00.015+00', 1, NULL), +(1019, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.006849+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.21317+00', 206, NULL), +(1020, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.006868+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.018984+00', 12, '{"timezone-id":"UTC"}'), +(1021, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.019042+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.031944+00', 12, '{"updated-tables":0,"total-tables":8}'), +(1022, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.032031+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.143967+00', 111, '{"total-fields":71,"updated-fields":0}'), +(1023, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.144024+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.153912+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1024, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.153958+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.213145+00', 59, NULL), +(1025, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.221857+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.244358+00', 22, NULL), +(1026, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.221874+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.238342+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1027, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.238388+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.241566+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1028, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.241603+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:19:00.244338+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1029, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:00.006974+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.65235+00', 7645, NULL), +(1030, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:00.006994+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:00.007214+00', 0, '{"timezone-id":null}'), +(1031, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:00.007249+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:00.17235+00', 165, '{"updated-tables":0,"total-tables":27}'), +(1032, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:00.172409+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.648318+00', 7475, '{"total-fields":293,"updated-fields":0}'), +(1033, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.648364+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.652139+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1034, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.652177+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.652338+00', 0, NULL), +(1035, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.667733+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:09.8137+00', 2145, NULL), +(1036, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.667749+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.713002+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1037, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:07.713089+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:09.793338+00', 2080, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1038, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:09.79342+00', TIMESTAMP WITH TIME ZONE '2022-12-16 16:56:09.81362+00', 20, '{"total-tables":27,"tables-classified":0}'), +(1039, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 17:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:00:00.006+00', 1, NULL), +(1040, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:00:00.006+00', 2, NULL), +(1041, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.004838+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.261188+00', 256, NULL), +(1042, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.004858+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.026011+00', 21, '{"timezone-id":"UTC"}'), +(1043, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.026067+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.031703+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1044, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.031754+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.161219+00', 129, '{"total-fields":71,"updated-fields":0}'), +(1045, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.161273+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.198669+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1046, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.198725+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.261134+00', 62, NULL), +(1047, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.276486+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.305113+00', 28, NULL), +(1048, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.276505+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.295122+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1049, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.295188+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.300311+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(1050, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.300361+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:19:00.305086+00', 4, '{"total-tables":8,"tables-classified":0}'), +(1051, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:00.015153+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.574567+00', 6559, NULL), +(1052, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:00.015175+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:00.01554+00', 0, '{"timezone-id":null}'), +(1053, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:00.015627+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:00.361007+00', 345, '{"updated-tables":0,"total-tables":27}'), +(1054, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:00.361057+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.571766+00', 6210, '{"total-fields":293,"updated-fields":0}'), +(1055, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.571822+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.574149+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1056, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.574205+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.574545+00', 0, NULL), +(1057, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.583898+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.639673+00', 55, NULL), +(1058, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.583913+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.617572+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1059, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.617701+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.626498+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1060, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.626554+00', TIMESTAMP WITH TIME ZONE '2022-12-16 17:56:06.639634+00', 13, '{"total-tables":27,"tables-classified":0}'), +(1061, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 18:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:00:00.004+00', 1, NULL), +(1062, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 18:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:00:00.01+00', 1, NULL), +(1063, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.006808+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.245303+00', 238, NULL), +(1064, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.006827+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.009495+00', 2, '{"timezone-id":"UTC"}'), +(1065, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.009536+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.01494+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1066, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.014983+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.201635+00', 186, '{"total-fields":71,"updated-fields":0}'), +(1067, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.201697+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.21349+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1068, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.213538+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.245278+00', 31, NULL), +(1069, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.252213+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.266106+00', 13, NULL), +(1070, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.25223+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.26127+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1071, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.261323+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.263626+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1072, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.263664+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:19:00.266084+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1073, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:00.007798+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.887851+00', 4880, NULL), +(1074, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:00.007829+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:00.008169+00', 0, '{"timezone-id":null}'), +(1075, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:00.008254+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:00.301313+00', 293, '{"updated-tables":0,"total-tables":27}'), +(1076, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:00.301471+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.885432+00', 4583, '{"total-fields":293,"updated-fields":0}'), +(1077, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.885514+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.887462+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1078, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.887497+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.887814+00', 0, NULL), +(1079, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.897079+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.956903+00', 59, NULL), +(1080, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.897093+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.937431+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1081, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.937515+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.944679+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1082, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.944749+00', TIMESTAMP WITH TIME ZONE '2022-12-16 18:56:04.956876+00', 12, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1083, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:00:00.005+00', 2, NULL), +(1084, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 19:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:00:00.006+00', 1, NULL), +(1085, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.005757+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.264525+00', 258, NULL), +(1086, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.005776+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.011939+00', 6, '{"timezone-id":"UTC"}'), +(1087, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.012036+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.018005+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1088, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.018073+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.209885+00', 191, '{"total-fields":71,"updated-fields":0}'), +(1089, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.209967+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.221097+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1090, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.225862+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.264468+00', 38, NULL), +(1091, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.271657+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.286434+00', 14, NULL), +(1092, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.271674+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.280352+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1093, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.280397+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.283344+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1094, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.283409+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:19:00.286386+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1095, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:00.00712+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.896707+00', 5889, NULL), +(1096, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:00.007143+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:00.007449+00', 0, '{"timezone-id":null}'), +(1097, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:00.007488+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:00.194865+00', 187, '{"updated-tables":0,"total-tables":27}'), +(1098, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:00.194933+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.893737+00', 5698, '{"total-fields":293,"updated-fields":0}'), +(1099, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.893785+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.896263+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1100, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.896301+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.896688+00', 0, NULL), +(1101, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.912789+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:06.138948+00', 226, NULL), +(1102, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:05.912807+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:06.089584+00', 176, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1103, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:06.089665+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:06.110669+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(1104, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:06.110739+00', TIMESTAMP WITH TIME ZONE '2022-12-16 19:56:06.138897+00', 28, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1105, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 20:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:00:00.007+00', 1, NULL), +(1106, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:00:00.008+00', 4, NULL), +(1107, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.015629+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.240821+00', 225, NULL), +(1108, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.01565+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.02725+00', 11, '{"timezone-id":"UTC"}'), +(1109, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.027298+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.038234+00', 10, '{"updated-tables":0,"total-tables":8}'), +(1110, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.038282+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.160653+00', 122, '{"total-fields":71,"updated-fields":0}'), +(1111, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.160711+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.169171+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1112, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.169219+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.240795+00', 71, NULL), +(1113, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.247907+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.267547+00', 19, NULL), +(1114, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.247924+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.261427+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1115, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.261507+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.264963+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1116, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.264998+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:19:00.267526+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1117, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:00.00705+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.033082+00', 9026, NULL), +(1118, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:00.00707+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:00.007274+00', 0, '{"timezone-id":null}'), +(1119, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:00.007304+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:00.162522+00', 155, '{"updated-tables":0,"total-tables":27}'), +(1120, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:00.16257+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.030111+00', 8867, '{"total-fields":293,"updated-fields":0}'), +(1121, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.030236+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.032659+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1122, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.032699+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.033043+00', 0, NULL), +(1123, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.066519+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.118369+00', 51, NULL), +(1124, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.066549+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.099206+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1125, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.099259+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.106169+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(1126, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.106211+00', TIMESTAMP WITH TIME ZONE '2022-12-16 20:56:09.118317+00', 12, '{"total-tables":27,"tables-classified":0}'), +(1127, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.009+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1128, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.038+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.039+00', 1, NULL), +(1129, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.00842+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.627622+00', 619, NULL), +(1130, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.00844+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.134929+00', 126, '{"deleted":0}'), +(1131, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.134998+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:00:00.627589+00', 492, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(1132, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.004878+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.207386+00', 202, NULL), +(1133, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.004898+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.009059+00', 4, '{"timezone-id":"UTC"}'), +(1134, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.009102+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.013672+00', 4, '{"updated-tables":0,"total-tables":8}'), +(1135, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.013709+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.148477+00', 134, '{"total-fields":71,"updated-fields":0}'), +(1136, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.148531+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.15902+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1137, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.159353+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.207349+00', 47, NULL), +(1138, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.218007+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.234148+00', 16, NULL), +(1139, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.218025+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.226651+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1140, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.226692+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.228996+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1141, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.229035+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:19:00.234128+00', 5, '{"total-tables":8,"tables-classified":0}'), +(1142, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:00.005729+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.433372+00', 6427, NULL), +(1143, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:00.005749+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:00.006323+00', 0, '{"timezone-id":null}'), +(1144, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:00.006363+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:00.111816+00', 105, '{"updated-tables":0,"total-tables":27}'), +(1145, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:00.111866+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.429357+00', 6317, '{"total-fields":293,"updated-fields":0}'), +(1146, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.429411+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.433045+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1147, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.433128+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.433357+00', 0, NULL), +(1148, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.471745+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.551806+00', 80, NULL), +(1149, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.471764+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.527822+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1150, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.527885+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.537422+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(1151, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.537472+00', TIMESTAMP WITH TIME ZONE '2022-12-16 21:56:06.551769+00', 14, '{"total-tables":27,"tables-classified":0}'), +(1152, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 22:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:00:00.005+00', 3, NULL), +(1153, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 22:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:00:00.005+00', 1, NULL), +(1154, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.004745+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.217447+00', 212, NULL), +(1155, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.004766+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.009954+00', 5, '{"timezone-id":"UTC"}'), +(1156, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.009999+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.015833+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1157, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.01587+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.168297+00', 152, '{"total-fields":71,"updated-fields":0}'), +(1158, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.168342+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.174838+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1159, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.174878+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.217399+00', 42, NULL), +(1160, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.225811+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.240573+00', 14, NULL), +(1161, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.225875+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.234701+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1162, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.234788+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.237569+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1163, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.23763+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:19:00.240526+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1164, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:00.006437+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.925213+00', 7918, NULL), +(1165, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:00.006497+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:00.006722+00', 0, '{"timezone-id":null}'), +(1166, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:00.006814+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:00.09293+00', 86, '{"updated-tables":0,"total-tables":27}'), +(1167, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:00.093004+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.922349+00', 7829, '{"total-fields":293,"updated-fields":0}'), +(1168, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.922435+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.925006+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1169, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.925039+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.9252+00', 0, NULL), +(1170, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.977447+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:08.138218+00', 160, NULL), +(1171, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:07.97747+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:08.083603+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1172, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:08.083661+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:08.109055+00', 25, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1173, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:08.109174+00', TIMESTAMP WITH TIME ZONE '2022-12-16 22:56:08.138176+00', 29, '{"total-tables":27,"tables-classified":0}'), +(1174, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:00:00.005+00', 2, NULL), +(1175, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-16 23:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:00:00.006+00', 1, NULL), +(1176, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.016264+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.29247+00', 276, NULL), +(1177, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.016297+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.022135+00', 5, '{"timezone-id":"UTC"}'), +(1178, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.022184+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.045061+00', 22, '{"updated-tables":0,"total-tables":8}'), +(1179, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.045109+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.229693+00', 184, '{"total-fields":71,"updated-fields":0}'), +(1180, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.229741+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.240101+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1181, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.240155+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.292439+00', 52, NULL), +(1182, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.304702+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.330016+00', 25, NULL), +(1183, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.304721+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.323335+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1184, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.32339+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.326666+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1185, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.326705+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:19:00.329994+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1186, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:00.007132+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.90487+00', 7897, NULL), +(1187, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:00.007148+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:00.007351+00', 0, '{"timezone-id":null}'), +(1188, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:00.00738+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:00.094278+00', 86, '{"updated-tables":0,"total-tables":27}'), +(1189, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:00.094314+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.893276+00', 7798, '{"total-fields":293,"updated-fields":0}'), +(1190, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.893326+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.901114+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1191, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.901157+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.904848+00', 3, NULL), +(1192, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.951483+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:08.11504+00', 163, NULL), +(1193, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:07.951502+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:08.039523+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1194, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:08.039587+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:08.079289+00', 39, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1195, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:08.079357+00', TIMESTAMP WITH TIME ZONE '2022-12-16 23:56:08.114992+00', 35, '{"total-tables":27,"tables-classified":0}'), +(1196, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 00:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:00:00.007+00', 2, NULL), +(1197, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 00:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:00:00.011+00', 9, NULL), +(1198, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.005155+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.26712+00', 261, NULL), +(1199, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.005176+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.008645+00', 3, '{"timezone-id":"UTC"}'), +(1200, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.008689+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.017901+00', 9, '{"updated-tables":0,"total-tables":8}'), +(1201, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.017945+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.223938+00', 205, '{"total-fields":71,"updated-fields":0}'), +(1202, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.224036+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.231256+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1203, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.231349+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.26705+00', 35, NULL), +(1204, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.274432+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.289706+00', 15, NULL), +(1205, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.274447+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.283539+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1206, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.283618+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.286638+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1207, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.286711+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:19:00.289647+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1208, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:00.010597+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.690667+00', 6680, NULL), +(1209, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:00.010617+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:00.01084+00', 0, '{"timezone-id":null}'), +(1210, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:00.010877+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:00.171785+00', 160, '{"updated-tables":0,"total-tables":27}'), +(1211, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:00.171833+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.68774+00', 6515, '{"total-fields":293,"updated-fields":0}'), +(1212, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.687803+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.690312+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1213, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.690348+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.690581+00', 0, NULL), +(1214, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.747331+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.82839+00', 81, NULL), +(1215, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.747353+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.790011+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1216, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.790073+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.800839+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(1217, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.800887+00', TIMESTAMP WITH TIME ZONE '2022-12-17 00:56:06.828344+00', 27, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1218, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:00:00.008+00', 4, NULL), +(1219, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 01:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:00:00.011+00', 2, NULL), +(1220, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.006218+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.177097+00', 170, NULL), +(1221, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.006237+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.0104+00', 4, '{"timezone-id":"UTC"}'), +(1222, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.010441+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.015691+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1223, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.015733+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.111929+00', 96, '{"total-fields":71,"updated-fields":0}'), +(1224, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.111973+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.11844+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1225, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.118481+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.177072+00', 58, NULL), +(1226, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.184405+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.204332+00', 19, NULL), +(1227, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.184423+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.19511+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1228, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.195166+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.197341+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1229, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.197373+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:19:00.204308+00', 6, '{"total-tables":8,"tables-classified":0}'), +(1230, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:00.008929+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.630082+00', 6621, NULL), +(1231, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:00.008948+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:00.009138+00', 0, '{"timezone-id":null}'), +(1232, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:00.009167+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:00.236351+00', 227, '{"updated-tables":0,"total-tables":27}'), +(1233, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:00.23639+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.627118+00', 6390, '{"total-fields":293,"updated-fields":0}'), +(1234, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.627162+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.629298+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1235, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.629451+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.629996+00', 0, NULL), +(1236, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.644353+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.71811+00', 73, NULL), +(1237, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.644369+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.683024+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1238, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.683094+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.6993+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(1239, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.699348+00', TIMESTAMP WITH TIME ZONE '2022-12-17 01:56:06.718078+00', 18, '{"total-tables":27,"tables-classified":0}'), +(1240, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:00:00.005+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1241, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 02:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:00:00.005+00', 3, NULL), +(1242, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.005256+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.214408+00', 209, NULL), +(1243, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.005275+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.011534+00', 6, '{"timezone-id":"UTC"}'), +(1244, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.011577+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.016897+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1245, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.016937+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.147072+00', 130, '{"total-fields":71,"updated-fields":0}'), +(1246, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.147117+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.178963+00', 31, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1247, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.179417+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.214389+00', 34, NULL), +(1248, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.221548+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.235528+00', 13, NULL), +(1249, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.221564+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.22992+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1250, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.229956+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.232401+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1251, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.232523+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:19:00.235503+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1252, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:00.010221+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.7676+00', 7757, NULL), +(1253, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:00.010247+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:00.010952+00', 0, '{"timezone-id":null}'), +(1254, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:00.010991+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:00.176771+00', 165, '{"updated-tables":0,"total-tables":27}'), +(1255, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:00.176819+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.765166+00', 7588, '{"total-fields":293,"updated-fields":0}'), +(1256, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.765215+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.767347+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1257, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.767387+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.767585+00', 0, NULL), +(1258, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.777873+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.877147+00', 99, NULL), +(1259, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.777894+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.823243+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1260, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.823303+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.848379+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(1261, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.84846+00', TIMESTAMP WITH TIME ZONE '2022-12-17 02:56:07.877101+00', 28, '{"total-tables":27,"tables-classified":0}'), +(1262, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:00:00.006+00', 2, NULL), +(1263, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:00:00.006+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1264, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.010736+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.283296+00', 272, NULL), +(1265, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.010761+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.037762+00', 27, '{"timezone-id":"UTC"}'), +(1266, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.037818+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.04279+00', 4, '{"updated-tables":0,"total-tables":8}'), +(1267, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.042828+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.210477+00', 167, '{"total-fields":71,"updated-fields":0}'), +(1268, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.210524+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.238749+00', 28, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1269, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.238827+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.283264+00', 44, NULL), +(1270, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.295852+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.334985+00', 39, NULL), +(1271, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.295869+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.310962+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1272, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.311173+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.323115+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(1273, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.323169+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:19:00.334827+00', 11, '{"total-tables":8,"tables-classified":0}'), +(1274, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:00.010182+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.6169+00', 7606, NULL), +(1275, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:00.010203+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:00.010437+00', 0, '{"timezone-id":null}'), +(1276, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:00.010472+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:00.17648+00', 166, '{"updated-tables":0,"total-tables":27}'), +(1277, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:00.176535+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.614671+00', 7438, '{"total-fields":293,"updated-fields":0}'), +(1278, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.614716+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.616572+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1279, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.616606+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.616882+00', 0, NULL), +(1280, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.642852+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.690994+00', 48, NULL), +(1281, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.642865+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.672649+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1282, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.672688+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.6798+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1283, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.679835+00', TIMESTAMP WITH TIME ZONE '2022-12-17 03:56:07.69097+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1284, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 04:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:00:00.004+00', 1, NULL), +(1285, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 04:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:00:00.007+00', 1, NULL), +(1286, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.0059+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.185126+00', 179, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1287, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.00592+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.012985+00', 7, '{"timezone-id":"UTC"}'), +(1288, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.013035+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.017567+00', 4, '{"updated-tables":0,"total-tables":8}'), +(1289, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.017615+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.129027+00', 111, '{"total-fields":71,"updated-fields":0}'), +(1290, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.129074+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.140548+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1291, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.140605+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.185098+00', 44, NULL), +(1292, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.199637+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.212182+00', 12, NULL), +(1293, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.199654+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.207511+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1294, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.20755+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.20978+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1295, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.209813+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:19:00.212161+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1296, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:00.013087+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.267115+00', 8254, NULL), +(1297, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:00.013115+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:00.013336+00', 0, '{"timezone-id":null}'), +(1298, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:00.013368+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:00.113299+00', 99, '{"updated-tables":0,"total-tables":27}'), +(1299, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:00.113346+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.26462+00', 8151, '{"total-fields":293,"updated-fields":0}'), +(1300, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.264693+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.266708+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1301, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.266777+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.267078+00', 0, NULL), +(1302, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.277022+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.386769+00', 109, NULL), +(1303, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.277038+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.331933+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1304, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.332071+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.357958+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(1305, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.358079+00', TIMESTAMP WITH TIME ZONE '2022-12-17 04:56:08.384955+00', 26, '{"total-tables":27,"tables-classified":0}'), +(1306, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:00:00.005+00', 2, NULL), +(1307, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 05:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:00:00.022+00', 14, NULL), +(1308, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.006207+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.233791+00', 227, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1309, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.006233+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.011493+00', 5, '{"timezone-id":"UTC"}'), +(1310, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.011602+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.018745+00', 7, '{"updated-tables":0,"total-tables":8}'), +(1311, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.018883+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.162618+00', 143, '{"total-fields":71,"updated-fields":0}'), +(1312, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.162701+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.169424+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1313, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.169497+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.233766+00', 64, NULL), +(1314, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.2449+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.262304+00', 17, NULL), +(1315, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.244918+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.254715+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1316, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.254787+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.256945+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1317, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.259093+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:19:00.262276+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1318, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:00.007659+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.48586+00', 9478, NULL), +(1319, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:00.007679+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:00.008414+00', 0, '{"timezone-id":null}'), +(1320, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:00.008488+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:00.211237+00', 202, '{"updated-tables":0,"total-tables":27}'), +(1321, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:00.211288+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.477606+00', 9266, '{"total-fields":293,"updated-fields":0}'), +(1322, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.477654+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.479477+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1323, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.47951+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.479664+00', 0, NULL), +(1324, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.496589+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.565859+00', 69, NULL), +(1325, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.496605+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.533662+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1326, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.533718+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.546428+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(1327, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.546483+00', TIMESTAMP WITH TIME ZONE '2022-12-17 05:56:09.565775+00', 19, '{"total-tables":27,"tables-classified":0}'), +(1328, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:00:00.003+00', 1, NULL), +(1329, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:00:00.006+00', 2, NULL), +(1330, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.008033+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.504535+00', 496, NULL), +(1331, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.008054+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.010724+00', 2, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1332, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.010765+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.021706+00', 10, '{"updated-tables":0,"total-tables":8}'), +(1333, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.021761+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.394706+00', 372, '{"total-fields":71,"updated-fields":0}'), +(1334, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.394906+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.401157+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1335, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.401206+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.5045+00', 103, NULL), +(1336, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.524417+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.539265+00', 14, NULL), +(1337, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.524436+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.533124+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1338, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.533175+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.536033+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1339, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.536072+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:19:00.539239+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1340, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:00.007505+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.972118+00', 7964, NULL), +(1341, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:00.007524+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:00.00774+00', 0, '{"timezone-id":null}'), +(1342, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:00.007772+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:00.097106+00', 89, '{"updated-tables":0,"total-tables":27}'), +(1343, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:00.097159+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.962553+00', 7865, '{"total-fields":293,"updated-fields":0}'), +(1344, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.963301+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.965548+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1345, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.965701+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.972095+00', 6, NULL), +(1346, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.99679+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:08.100425+00', 103, NULL), +(1347, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:07.996813+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:08.057291+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1348, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:08.057416+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:08.082716+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(1349, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:08.082769+00', TIMESTAMP WITH TIME ZONE '2022-12-17 06:56:08.100378+00', 17, '{"total-tables":27,"tables-classified":0}'), +(1350, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 07:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:00:00.01+00', 2, NULL), +(1351, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 07:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:00:00.011+00', 3, NULL), +(1352, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.018353+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.473383+00', 455, NULL), +(1353, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.018372+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.02099+00', 2, '{"timezone-id":"UTC"}'), +(1354, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.021042+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.063466+00', 42, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1355, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.063516+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.398621+00', 335, '{"total-fields":71,"updated-fields":0}'), +(1356, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.398675+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.429398+00', 30, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1357, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.429452+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.473356+00', 43, NULL), +(1358, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.507175+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.530657+00', 23, NULL), +(1359, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.507196+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.521151+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1360, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.521265+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.52412+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1361, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.524157+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:19:00.53063+00', 6, '{"total-tables":8,"tables-classified":0}'), +(1362, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:00.015826+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.377581+00', 8361, NULL), +(1363, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:00.015847+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:00.016142+00', 0, '{"timezone-id":null}'), +(1364, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:00.016185+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:00.201801+00', 185, '{"updated-tables":0,"total-tables":27}'), +(1365, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:00.201888+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.375478+00', 8173, '{"total-fields":293,"updated-fields":0}'), +(1366, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.375526+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.377379+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1367, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.377412+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.377569+00', 0, NULL), +(1368, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.411103+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.521738+00', 110, NULL), +(1369, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.411122+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.458556+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1370, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.45862+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.490291+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(1371, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.490366+00', TIMESTAMP WITH TIME ZONE '2022-12-17 07:56:08.521685+00', 31, '{"total-tables":27,"tables-classified":0}'), +(1372, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 08:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:00:00.004+00', 2, NULL), +(1373, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 08:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:00:00.007+00', 2, NULL), +(1374, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.022798+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.269398+00', 246, NULL), +(1375, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.022871+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.026023+00', 3, '{"timezone-id":"UTC"}'), +(1376, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.026064+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.033642+00', 7, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1377, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.03368+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.208696+00', 175, '{"total-fields":71,"updated-fields":0}'), +(1378, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.208794+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.219275+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1379, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.21935+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.264809+00', 45, NULL), +(1380, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.28747+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.31333+00', 25, NULL), +(1381, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.287488+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.299323+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1382, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.300145+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.307843+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1383, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.307909+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:19:00.313278+00', 5, '{"total-tables":8,"tables-classified":0}'), +(1384, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:00.006691+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.631402+00', 9624, NULL), +(1385, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:00.006712+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:00.006928+00', 0, '{"timezone-id":null}'), +(1386, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:00.006961+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:00.24062+00', 233, '{"updated-tables":0,"total-tables":27}'), +(1387, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:00.24067+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.628936+00', 9388, '{"total-fields":293,"updated-fields":0}'), +(1388, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.629014+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.630977+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1389, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.631015+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.631383+00', 0, NULL), +(1390, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.645241+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.688829+00', 43, NULL), +(1391, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.645257+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.671423+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1392, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.671502+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.678212+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(1393, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.678253+00', TIMESTAMP WITH TIME ZONE '2022-12-17 08:56:09.688803+00', 10, '{"total-tables":27,"tables-classified":0}'), +(1394, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 09:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:00:00.008+00', 2, NULL), +(1395, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 09:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:00:00.008+00', 2, NULL), +(1396, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.006148+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.336609+00', 330, NULL), +(1397, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.006168+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.026157+00', 19, '{"timezone-id":"UTC"}'), +(1398, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.02621+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.03204+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1399, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.03215+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.2889+00', 256, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1400, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.288945+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.296986+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1401, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.297025+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.336586+00', 39, NULL), +(1402, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.34423+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.362282+00', 18, NULL), +(1403, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.344247+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.35581+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1404, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.355856+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.359002+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1405, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.359122+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:19:00.362172+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1406, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:00.025031+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.195116+00', 8170, NULL), +(1407, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:00.02506+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:00.025518+00', 0, '{"timezone-id":null}'), +(1408, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:00.025565+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:00.308451+00', 282, '{"updated-tables":0,"total-tables":27}'), +(1409, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:00.308501+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.185202+00', 7876, '{"total-fields":293,"updated-fields":0}'), +(1410, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.185261+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.194734+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1411, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.194793+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.195094+00', 0, NULL), +(1412, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.228559+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.349664+00', 121, NULL), +(1413, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.22858+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.304618+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1414, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.304735+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.316635+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(1415, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.316689+00', TIMESTAMP WITH TIME ZONE '2022-12-17 09:56:08.349589+00', 32, '{"total-tables":27,"tables-classified":0}'), +(1416, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 10:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:00:00.011+00', 2, NULL), +(1417, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:00:00.018+00', 14, NULL), +(1418, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.007118+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.232543+00', 225, NULL), +(1419, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.007136+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.015805+00', 8, '{"timezone-id":"UTC"}'), +(1420, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.015867+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.022945+00', 7, '{"updated-tables":0,"total-tables":8}'), +(1421, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.022983+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.118404+00', 95, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1422, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.118483+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.135932+00', 17, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1423, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.135983+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.228429+00', 92, NULL), +(1424, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.241557+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.261029+00', 19, NULL), +(1425, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.241574+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.252515+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1426, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.252593+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.256881+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(1427, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.256943+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:19:00.260996+00', 4, '{"total-tables":8,"tables-classified":0}'), +(1428, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:00.006955+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.195104+00', 9188, NULL), +(1429, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:00.006976+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:00.0072+00', 0, '{"timezone-id":null}'), +(1430, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:00.007235+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:00.530622+00', 523, '{"updated-tables":0,"total-tables":27}'), +(1431, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:00.530674+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.192602+00', 8661, '{"total-fields":293,"updated-fields":0}'), +(1432, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.192684+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.1947+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1433, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.194775+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.195067+00', 0, NULL), +(1434, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.208649+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.254263+00', 45, NULL), +(1435, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.208664+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.235292+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1436, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.235367+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.242673+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1437, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.242718+00', TIMESTAMP WITH TIME ZONE '2022-12-17 10:56:09.254211+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1438, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 11:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:00:00.013+00', 3, NULL), +(1439, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 11:00:00.02+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:00:00.023+00', 3, NULL), +(1440, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.006232+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.363273+00', 357, NULL), +(1441, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.006253+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.010663+00', 4, '{"timezone-id":"UTC"}'), +(1442, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.010715+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.017813+00', 7, '{"updated-tables":0,"total-tables":8}'), +(1443, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.017876+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.260825+00', 242, '{"total-fields":71,"updated-fields":0}'), +(1444, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.261067+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.273046+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1445, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.27309+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.363245+00', 90, NULL), +(1446, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.374909+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.407751+00', 32, NULL), +(1447, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.374928+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.399161+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1448, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.399224+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.404504+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(1449, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.404552+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:19:00.407727+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1450, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:00.017761+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.051082+00', 7033, NULL), +(1451, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:00.017783+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:00.018156+00', 0, '{"timezone-id":null}'), +(1452, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:00.018215+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:00.430297+00', 412, '{"updated-tables":0,"total-tables":27}'), +(1453, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:00.430443+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.046241+00', 6615, '{"total-fields":293,"updated-fields":0}'), +(1454, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.046328+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.050664+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1455, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.050707+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.051063+00', 0, NULL), +(1456, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.066081+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.14834+00', 82, NULL), +(1457, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.066101+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.119816+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1458, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.119882+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.128915+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(1459, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.128969+00', TIMESTAMP WITH TIME ZONE '2022-12-17 11:56:07.148287+00', 19, '{"total-tables":27,"tables-classified":0}'), +(1460, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 12:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:00:00.007+00', 1, NULL), +(1461, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 12:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:00:00.011+00', 3, NULL), +(1462, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.006104+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.205494+00', 199, NULL), +(1463, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.006128+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.016012+00', 9, '{"timezone-id":"UTC"}'), +(1464, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.016064+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.022024+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1465, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.022061+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.158113+00', 136, '{"total-fields":71,"updated-fields":0}'), +(1466, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.158162+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.170176+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1467, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.170217+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.205473+00', 35, NULL), +(1468, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.212489+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.226312+00', 13, NULL), +(1469, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.212505+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.22046+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1470, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.220508+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.223652+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1471, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.223685+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:19:00.22629+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1472, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:00.008724+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.803946+00', 8795, NULL), +(1473, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:00.008743+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:00.008981+00', 0, '{"timezone-id":null}'), +(1474, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:00.009014+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:00.125866+00', 116, '{"updated-tables":0,"total-tables":27}'), +(1475, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:00.125915+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.798998+00', 8673, '{"total-fields":293,"updated-fields":0}'), +(1476, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.799056+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.803723+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1477, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.803768+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.803934+00', 0, NULL), +(1478, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.824042+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.89444+00', 70, NULL), +(1479, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.824061+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.876492+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1480, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.876555+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.883193+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(1481, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.883234+00', TIMESTAMP WITH TIME ZONE '2022-12-17 12:56:08.894384+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1482, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.007+00', 1, NULL), +(1483, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.012+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.015+00', 3, NULL), +(1484, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.006847+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:06.718221+00', 6711, NULL), +(1485, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.006868+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.343944+00', 337, '{"deleted":0}'), +(1486, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:00.343999+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:00:06.718182+00', 6374, '{"errors":0,"created":0,"updated":41,"deleted":0}'), +(1487, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.005604+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.226626+00', 221, NULL), +(1488, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.005621+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.029666+00', 24, '{"timezone-id":"UTC"}'), +(1489, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.029725+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.042958+00', 13, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1490, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.043002+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.178677+00', 135, '{"total-fields":71,"updated-fields":0}'), +(1491, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.178752+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.186093+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1492, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.186135+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.226598+00', 40, NULL), +(1493, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.23457+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.254147+00', 19, NULL), +(1494, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.234587+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.248871+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1495, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.248916+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.251607+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1496, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.251641+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:19:00.254127+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1497, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:00.009839+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.938548+00', 8928, NULL), +(1498, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:00.009859+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:00.010088+00', 0, '{"timezone-id":null}'), +(1499, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:00.010123+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:00.178001+00', 167, '{"updated-tables":0,"total-tables":27}'), +(1500, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:00.178135+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.935246+00', 8757, '{"total-fields":293,"updated-fields":0}'), +(1501, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.935296+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.93792+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1502, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.937956+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.938525+00', 0, NULL), +(1503, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.951835+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:09.005974+00', 54, NULL), +(1504, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.951889+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.986975+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1505, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.987091+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.994677+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1506, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:08.994714+00', TIMESTAMP WITH TIME ZONE '2022-12-17 13:56:09.005949+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1507, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 14:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:00:00.009+00', 4, NULL), +(1508, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 14:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:00:00.017+00', 12, NULL), +(1509, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.006726+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.178726+00', 172, NULL), +(1510, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.006745+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.018064+00', 11, '{"timezone-id":"UTC"}'), +(1511, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.01811+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.024199+00', 6, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1512, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.024297+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.133797+00', 109, '{"total-fields":71,"updated-fields":0}'), +(1513, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.133855+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.141632+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1514, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.141675+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.178703+00', 37, NULL), +(1515, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.185122+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.200962+00', 15, NULL), +(1516, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.185138+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.196418+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1517, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.19646+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.198649+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1518, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.198681+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:19:00.200942+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1519, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:00.010773+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.906292+00', 8895, NULL), +(1520, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:00.010793+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:00.011078+00', 0, '{"timezone-id":null}'), +(1521, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:00.011116+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:00.147879+00', 136, '{"updated-tables":0,"total-tables":27}'), +(1522, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:00.147966+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.90204+00', 8754, '{"total-fields":293,"updated-fields":0}'), +(1523, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.903671+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.906095+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1524, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.906139+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.906282+00', 0, NULL), +(1525, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.920509+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:09.010398+00', 89, NULL), +(1526, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.920525+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.961364+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1527, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.961426+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.972077+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(1528, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:08.972146+00', TIMESTAMP WITH TIME ZONE '2022-12-17 14:56:09.01035+00', 38, '{"total-tables":27,"tables-classified":0}'), +(1529, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:00:00.004+00', 2, NULL), +(1530, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 15:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:00:00.02+00', 16, NULL), +(1531, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.004906+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.216317+00', 211, NULL), +(1532, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.004926+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.010113+00', 5, '{"timezone-id":"UTC"}'), +(1533, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.010159+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.016544+00', 6, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1534, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.01658+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.106601+00', 90, '{"total-fields":71,"updated-fields":0}'), +(1535, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.106815+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.11244+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1536, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.112577+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.216291+00', 103, NULL), +(1537, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.224693+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.237666+00', 12, NULL), +(1538, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.224711+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.23297+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1539, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.233006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.235388+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1540, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.23542+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:19:00.23761+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1541, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:00.008726+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.044741+00', 9036, NULL), +(1542, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:00.008758+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:00.009011+00', 0, '{"timezone-id":null}'), +(1543, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:00.009049+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:00.074891+00', 65, '{"updated-tables":0,"total-tables":27}'), +(1544, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:00.074945+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.040544+00', 8965, '{"total-fields":293,"updated-fields":0}'), +(1545, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.04092+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.043879+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1546, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.044314+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.04467+00', 0, NULL), +(1547, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.068314+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.157555+00', 89, NULL), +(1548, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.068336+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.118552+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1549, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.118611+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.134768+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(1550, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.134848+00', TIMESTAMP WITH TIME ZONE '2022-12-17 15:56:09.157486+00', 22, '{"total-tables":27,"tables-classified":0}'), +(1551, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 16:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:00:00.004+00', 1, NULL), +(1552, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 16:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:00:00.009+00', 2, NULL), +(1553, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.004689+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.234294+00', 229, NULL), +(1554, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.00471+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.012793+00', 8, '{"timezone-id":"UTC"}'), +(1555, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.012932+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.027002+00', 14, '{"updated-tables":0,"total-tables":8}'), +(1556, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.027156+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.17339+00', 146, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1557, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.173438+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.186626+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1558, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.186681+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.234262+00', 47, NULL), +(1559, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.241997+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.257489+00', 15, NULL), +(1560, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.242014+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.25169+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1561, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.251767+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.254621+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1562, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.254681+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:19:00.257464+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1563, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:00.023806+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.456989+00', 7433, NULL), +(1564, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:00.023826+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:00.024084+00', 0, '{"timezone-id":null}'), +(1565, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:00.02412+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:00.093223+00', 69, '{"updated-tables":0,"total-tables":27}'), +(1566, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:00.093298+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.451121+00', 7357, '{"total-fields":293,"updated-fields":0}'), +(1567, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.451242+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.453063+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1568, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.453092+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.456971+00', 3, NULL), +(1569, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.502628+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.657684+00', 155, NULL), +(1570, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.502643+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.618482+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1571, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.618528+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.631033+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(1572, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.631074+00', TIMESTAMP WITH TIME ZONE '2022-12-17 16:56:07.657651+00', 26, '{"total-tables":27,"tables-classified":0}'), +(1573, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:00:00.006+00', 2, NULL), +(1574, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 17:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:00:00.007+00', 2, NULL), +(1575, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.005265+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.13693+00', 131, NULL), +(1576, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.005285+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.010645+00', 5, '{"timezone-id":"UTC"}'), +(1577, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.010778+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.018049+00', 7, '{"updated-tables":0,"total-tables":8}'), +(1578, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.018086+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.097435+00', 79, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1579, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.097489+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.103282+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1580, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.103317+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.13691+00', 33, NULL), +(1581, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.144245+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.157919+00', 13, NULL), +(1582, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.144261+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.152692+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1583, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.152729+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.155386+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1584, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.15546+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:19:00.1579+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1585, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:00.010971+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.487198+00', 8476, NULL), +(1586, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:00.01099+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:00.011207+00', 0, '{"timezone-id":null}'), +(1587, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:00.011238+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:00.291654+00', 280, '{"updated-tables":0,"total-tables":27}'), +(1588, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:00.293389+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.482789+00', 8189, '{"total-fields":293,"updated-fields":0}'), +(1589, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.482901+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.486987+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1590, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.487032+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.487186+00', 0, NULL), +(1591, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.496455+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.544279+00', 47, NULL), +(1592, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.496472+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.527088+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1593, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.527148+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.533388+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(1594, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.533454+00', TIMESTAMP WITH TIME ZONE '2022-12-17 17:56:08.544241+00', 10, '{"total-tables":27,"tables-classified":0}'), +(1595, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 18:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:00:00.005+00', 2, NULL), +(1596, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 18:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:00:00.007+00', 2, NULL), +(1597, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.004251+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.213591+00', 209, NULL), +(1598, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.004271+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.027279+00', 23, '{"timezone-id":"UTC"}'), +(1599, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.027347+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.047012+00', 19, '{"updated-tables":0,"total-tables":8}'), +(1600, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.047062+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.16903+00', 121, '{"total-fields":71,"updated-fields":0}'), +(1601, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.169076+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.181253+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1602, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.181296+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.213567+00', 32, NULL), +(1603, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.220419+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.233266+00', 12, NULL), +(1604, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.220435+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.228433+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1605, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.228472+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.230807+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1606, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.230841+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:19:00.233246+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1607, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:00.009209+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.069802+00', 6060, NULL), +(1608, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:00.009229+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:00.009445+00', 0, '{"timezone-id":null}'), +(1609, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:00.009479+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:00.18902+00', 179, '{"updated-tables":0,"total-tables":27}'), +(1610, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:00.189069+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.067516+00', 5878, '{"total-fields":293,"updated-fields":0}'), +(1611, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.067562+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.069602+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1612, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.069632+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.06979+00', 0, NULL), +(1613, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.078893+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.123401+00', 44, NULL), +(1614, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.078906+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.106371+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1615, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.106417+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.112954+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(1616, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.112993+00', TIMESTAMP WITH TIME ZONE '2022-12-17 18:56:06.123378+00', 10, '{"total-tables":27,"tables-classified":0}'), +(1617, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:00:00.005+00', 2, NULL), +(1618, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 19:00:00.018+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:00:00.02+00', 2, NULL), +(1619, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.004345+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.294798+00', 290, NULL), +(1620, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.004366+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.050908+00', 46, '{"timezone-id":"UTC"}'), +(1621, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.05097+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.055435+00', 4, '{"updated-tables":0,"total-tables":8}'), +(1622, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.055467+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.259087+00', 203, '{"total-fields":71,"updated-fields":0}'), +(1623, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.259139+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.266735+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1624, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.266776+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.29478+00', 28, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1625, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.301361+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.313757+00', 12, NULL), +(1626, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.301375+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.309117+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1627, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.309152+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.311391+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1628, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.311422+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:19:00.313738+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1629, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:00.007254+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.306696+00', 8299, NULL), +(1630, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:00.007274+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:00.007485+00', 0, '{"timezone-id":null}'), +(1631, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:00.007519+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:00.222406+00', 214, '{"updated-tables":0,"total-tables":27}'), +(1632, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:00.222454+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.301946+00', 8079, '{"total-fields":293,"updated-fields":0}'), +(1633, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.302021+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.306438+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1634, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.306474+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.306672+00', 0, NULL), +(1635, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.317458+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.371903+00', 54, NULL), +(1636, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.317472+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.350682+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1637, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.350735+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.36014+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(1638, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.360212+00', TIMESTAMP WITH TIME ZONE '2022-12-17 19:56:08.37188+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1639, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:00:00.006+00', 2, NULL), +(1640, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:00:00.007+00', 3, NULL), +(1641, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.053872+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.427526+00', 373, NULL), +(1642, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.053893+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.104984+00', 51, '{"timezone-id":"UTC"}'), +(1643, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.105042+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.180728+00', 75, '{"updated-tables":0,"total-tables":8}'), +(1644, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.180774+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.351356+00', 170, '{"total-fields":71,"updated-fields":0}'), +(1645, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.351406+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.365753+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1646, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.365806+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.427495+00', 61, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1647, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.440228+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.666619+00', 226, NULL), +(1648, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.440246+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.454217+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1649, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.454265+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.463788+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(1650, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.463832+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:19:00.66657+00', 202, '{"total-tables":8,"tables-classified":0}'), +(1651, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:00.009164+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.890703+00', 7881, NULL), +(1652, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:00.009185+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:00.00947+00', 0, '{"timezone-id":null}'), +(1653, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:00.009508+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:00.174863+00', 165, '{"updated-tables":0,"total-tables":27}'), +(1654, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:00.174913+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.888287+00', 7713, '{"total-fields":293,"updated-fields":0}'), +(1655, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.888343+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.890498+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1656, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.890547+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.890692+00', 0, NULL), +(1657, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.90922+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.965858+00', 56, NULL), +(1658, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.909237+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.944657+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1659, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.944749+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.95367+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(1660, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.953755+00', TIMESTAMP WITH TIME ZONE '2022-12-17 20:56:07.965831+00', 12, '{"total-tables":27,"tables-classified":0}'), +(1661, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.015+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.016+00', 1, NULL), +(1662, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.017+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.019+00', 2, NULL), +(1663, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.016725+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.556476+00', 539, NULL), +(1664, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.016747+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.07778+00', 61, '{"deleted":0}'), +(1665, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.077851+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:00:00.556446+00', 478, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(1666, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.005037+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.136591+00', 131, NULL), +(1667, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.00506+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.008128+00', 3, '{"timezone-id":"UTC"}'), +(1668, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.008206+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.017525+00', 9, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1669, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.017586+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.09962+00', 82, '{"total-fields":71,"updated-fields":0}'), +(1670, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.099701+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.105737+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1671, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.105838+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.136538+00', 30, NULL), +(1672, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.143275+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.158713+00', 15, NULL), +(1673, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.143291+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.153276+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1674, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.153348+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.155906+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1675, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.155966+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:19:00.158692+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1676, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:00.052803+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.170712+00', 8117, NULL), +(1677, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:00.052828+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:00.05324+00', 0, '{"timezone-id":null}'), +(1678, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:00.05328+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:00.460716+00', 407, '{"updated-tables":0,"total-tables":27}'), +(1679, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:00.460781+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.167764+00', 7706, '{"total-fields":293,"updated-fields":0}'), +(1680, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.167812+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.170331+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1681, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.170383+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.170692+00', 0, NULL), +(1682, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.190105+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.246805+00', 56, NULL), +(1683, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.190121+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.222926+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1684, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.223046+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.23254+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(1685, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.232649+00', TIMESTAMP WITH TIME ZONE '2022-12-17 21:56:08.246778+00', 14, '{"total-tables":27,"tables-classified":0}'), +(1686, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 22:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:00:00.005+00', 1, NULL), +(1687, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 22:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:00:00.007+00', 1, NULL), +(1688, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.006911+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.219562+00', 212, NULL), +(1689, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.006932+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.014776+00', 7, '{"timezone-id":"UTC"}'), +(1690, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.014824+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.046953+00', 32, '{"updated-tables":0,"total-tables":8}'), +(1691, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.046999+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.164931+00', 117, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1692, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.164976+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.180451+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1693, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.180505+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.219527+00', 39, NULL), +(1694, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.227003+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.239348+00', 12, NULL), +(1695, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.227019+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.234758+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1696, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.234794+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.23713+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1697, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.237161+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:19:00.239329+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1698, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:00.034497+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.91968+00', 7885, NULL), +(1699, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:00.034518+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:00.034808+00', 0, '{"timezone-id":null}'), +(1700, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:00.034846+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:00.248035+00', 213, '{"updated-tables":0,"total-tables":27}'), +(1701, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:00.248083+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.916995+00', 7668, '{"total-fields":293,"updated-fields":0}'), +(1702, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.917095+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.919317+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1703, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.919355+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.91966+00', 0, NULL), +(1704, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.934894+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.984313+00', 49, NULL), +(1705, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.934914+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.964753+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1706, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.964817+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.972819+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(1707, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.972871+00', TIMESTAMP WITH TIME ZONE '2022-12-17 22:56:07.984279+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1708, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:00:00.005+00', 1, NULL), +(1709, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-17 23:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:00:00.018+00', 12, NULL), +(1710, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.006625+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.163248+00', 156, NULL), +(1711, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.006645+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.010995+00', 4, '{"timezone-id":"UTC"}'), +(1712, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.011073+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.016654+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1713, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.01671+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.107966+00', 91, '{"total-fields":71,"updated-fields":0}'), +(1714, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.108052+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.113882+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1715, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.113944+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.163217+00', 49, NULL), +(1716, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.171603+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.190583+00', 18, NULL), +(1717, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.17162+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.181396+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1718, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.181466+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.186898+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(1719, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.18696+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:19:00.190541+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1720, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:00.062174+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.040695+00', 7978, NULL), +(1721, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:00.062195+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:00.062504+00', 0, '{"timezone-id":null}'), +(1722, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:00.062543+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:00.173811+00', 111, '{"updated-tables":0,"total-tables":27}'), +(1723, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:00.173899+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.038012+00', 7864, '{"total-fields":293,"updated-fields":0}'), +(1724, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.038079+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.040439+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1725, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.04049+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.040681+00', 0, NULL), +(1726, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.056136+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.12085+00', 64, NULL), +(1727, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.056153+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.100613+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1728, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.100669+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.108644+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1729, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.10872+00', TIMESTAMP WITH TIME ZONE '2022-12-17 23:56:08.12079+00', 12, '{"total-tables":27,"tables-classified":0}'), +(1730, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 00:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:00:00.007+00', 2, NULL), +(1731, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 00:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:00:00.005+00', 1, NULL), +(1732, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.006325+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.204565+00', 198, NULL), +(1733, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.006347+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.010516+00', 4, '{"timezone-id":"UTC"}'), +(1734, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.010559+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.018523+00', 7, '{"updated-tables":0,"total-tables":8}'), +(1735, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.018561+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.13684+00', 118, '{"total-fields":71,"updated-fields":0}'), +(1736, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.136885+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.145761+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1737, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.145811+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.204539+00', 58, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1738, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.21586+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.235236+00', 19, NULL), +(1739, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.215879+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.224777+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1740, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.224828+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.229783+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(1741, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.229843+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:19:00.235207+00', 5, '{"total-tables":8,"tables-classified":0}'), +(1742, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:00.008793+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.683377+00', 8674, NULL), +(1743, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:00.00881+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:00.009022+00', 0, '{"timezone-id":null}'), +(1744, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:00.009052+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:00.214696+00', 205, '{"updated-tables":0,"total-tables":27}'), +(1745, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:00.214827+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.680579+00', 8465, '{"total-fields":293,"updated-fields":0}'), +(1746, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.680625+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.682953+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1747, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.682983+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.683302+00', 0, NULL), +(1748, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.694707+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.8437+00', 148, NULL), +(1749, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.694718+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.786948+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1750, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.787096+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.82047+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(1751, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.820588+00', TIMESTAMP WITH TIME ZONE '2022-12-18 00:56:08.843596+00', 23, '{"total-tables":27,"tables-classified":0}'), +(1752, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 01:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:00:00.008+00', 3, NULL), +(1753, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 01:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:00:00.008+00', 5, NULL), +(1754, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.007905+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.210982+00', 203, NULL), +(1755, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.007924+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.013845+00', 5, '{"timezone-id":"UTC"}'), +(1756, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.013891+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.021646+00', 7, '{"updated-tables":0,"total-tables":8}'), +(1757, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.021683+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.138047+00', 116, '{"total-fields":71,"updated-fields":0}'), +(1758, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.138237+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.143937+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1759, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.144498+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.210953+00', 66, NULL), +(1760, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.219046+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.235342+00', 16, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1761, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.219063+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.22857+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1762, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.228614+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.231912+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1763, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.231954+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:19:00.235313+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1764, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:00.010082+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.925955+00', 6915, NULL), +(1765, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:00.010102+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:00.010329+00', 0, '{"timezone-id":null}'), +(1766, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:00.010363+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:00.100488+00', 90, '{"updated-tables":0,"total-tables":27}'), +(1767, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:00.100596+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.923286+00', 6822, '{"total-fields":293,"updated-fields":0}'), +(1768, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.923384+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.925504+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1769, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.925543+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.925934+00', 0, NULL), +(1770, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.936268+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.994755+00', 58, NULL), +(1771, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.936282+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.967435+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1772, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.967499+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.97862+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(1773, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.978663+00', TIMESTAMP WITH TIME ZONE '2022-12-18 01:56:06.994726+00', 16, '{"total-tables":27,"tables-classified":0}'), +(1774, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 02:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:00:00.006+00', 1, NULL), +(1775, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:00:00.007+00', 3, NULL), +(1776, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.006842+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.361728+00', 354, NULL), +(1777, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.00688+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.013875+00', 6, '{"timezone-id":"UTC"}'), +(1778, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.014026+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.019678+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1779, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.019713+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.304633+00', 284, '{"total-fields":71,"updated-fields":0}'), +(1780, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.304838+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.313279+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1781, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.315616+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.361699+00', 46, NULL), +(1782, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.368945+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.383604+00', 14, NULL), +(1783, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.368962+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.377767+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1784, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.37781+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.38069+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1785, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.380726+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:19:00.38358+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1786, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:00.020902+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.187248+00', 7166, NULL), +(1787, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:00.020923+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:00.021403+00', 0, '{"timezone-id":null}'), +(1788, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:00.02145+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:00.114628+00', 93, '{"updated-tables":0,"total-tables":27}'), +(1789, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:00.114702+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.180428+00', 7065, '{"total-fields":293,"updated-fields":0}'), +(1790, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.180535+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.186956+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1791, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.187004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.187179+00', 0, NULL), +(1792, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.246973+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.346786+00', 99, NULL), +(1793, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.246994+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.313208+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1794, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.31327+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.326622+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(1795, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.326683+00', TIMESTAMP WITH TIME ZONE '2022-12-18 02:56:07.346737+00', 20, '{"total-tables":27,"tables-classified":0}'), +(1796, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 03:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:00:00.011+00', 1, NULL), +(1797, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 03:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:00:00.016+00', 2, NULL), +(1798, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.006597+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.208793+00', 202, NULL), +(1799, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.006618+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.0146+00', 7, '{"timezone-id":"UTC"}'), +(1800, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.014661+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.02554+00', 10, '{"updated-tables":0,"total-tables":8}'), +(1801, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.025586+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.156839+00', 131, '{"total-fields":71,"updated-fields":0}'), +(1802, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.156883+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.163269+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1803, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.163308+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.208763+00', 45, NULL), +(1804, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.227209+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.246044+00', 18, NULL), +(1805, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.227228+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.238507+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1806, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.238554+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.240876+00', 2, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1807, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.240909+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:19:00.246023+00', 5, '{"total-tables":8,"tables-classified":0}'), +(1808, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:00.008551+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.31646+00', 7307, NULL), +(1809, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:00.008571+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:00.008866+00', 0, '{"timezone-id":null}'), +(1810, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:00.008903+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:00.090021+00', 81, '{"updated-tables":0,"total-tables":27}'), +(1811, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:00.090069+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.314333+00', 7224, '{"total-fields":293,"updated-fields":0}'), +(1812, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.314381+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.316244+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1813, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.316283+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.316446+00', 0, NULL), +(1814, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.331628+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.383266+00', 51, NULL), +(1815, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.331643+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.36398+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1816, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.364035+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.371539+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1817, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.371581+00', TIMESTAMP WITH TIME ZONE '2022-12-18 03:56:07.383238+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1818, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 04:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:00:00.004+00', 2, NULL), +(1819, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 04:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:00:00.007+00', 2, NULL), +(1820, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.006319+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.534349+00', 528, NULL), +(1821, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.006343+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.024982+00', 18, '{"timezone-id":"UTC"}'), +(1822, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.025034+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.035909+00', 10, '{"updated-tables":0,"total-tables":8}'), +(1823, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.036025+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.459696+00', 423, '{"total-fields":71,"updated-fields":0}'), +(1824, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.461538+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.477317+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1825, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.477364+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.534308+00', 56, NULL), +(1826, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.543143+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.558235+00', 15, NULL), +(1827, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.543186+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.553025+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1828, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.553084+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.555671+00', 2, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1829, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.55572+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:19:00.558212+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1830, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:00.006961+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.432123+00', 6425, NULL), +(1831, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:00.006981+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:00.008221+00', 1, '{"timezone-id":null}'), +(1832, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:00.008273+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:00.05635+00', 48, '{"updated-tables":0,"total-tables":27}'), +(1833, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:00.056423+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.423092+00', 6366, '{"total-fields":293,"updated-fields":0}'), +(1834, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.425923+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.43167+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1835, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.431742+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.432079+00', 0, NULL), +(1836, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.464609+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.610507+00', 145, NULL), +(1837, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.464628+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.56947+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1838, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.56956+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.594808+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(1839, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.594875+00', TIMESTAMP WITH TIME ZONE '2022-12-18 04:56:06.610465+00', 15, '{"total-tables":27,"tables-classified":0}'), +(1840, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 05:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:00:00.006+00', 2, NULL), +(1841, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:00:00.007+00', 4, NULL), +(1842, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.004619+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.231235+00', 226, NULL), +(1843, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.004638+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.044133+00', 39, '{"timezone-id":"UTC"}'), +(1844, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.044183+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.048645+00', 4, '{"updated-tables":0,"total-tables":8}'), +(1845, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.048685+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.172669+00', 123, '{"total-fields":71,"updated-fields":0}'), +(1846, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.172717+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.181522+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1847, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.18176+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.23121+00', 49, NULL), +(1848, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.238537+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.251344+00', 12, NULL), +(1849, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.238554+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.246611+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1850, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.246653+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.248855+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1851, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.248887+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:19:00.251322+00', 2, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1852, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:00.035473+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.734113+00', 6698, NULL), +(1853, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:00.035497+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:00.035926+00', 0, '{"timezone-id":null}'), +(1854, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:00.035969+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:00.144129+00', 108, '{"updated-tables":0,"total-tables":27}'), +(1855, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:00.144227+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.724446+00', 6580, '{"total-fields":293,"updated-fields":0}'), +(1856, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.7245+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.733063+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1857, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.733182+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.73404+00', 0, NULL), +(1858, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.760062+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.814668+00', 54, NULL), +(1859, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.760079+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.795976+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1860, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.796047+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.8032+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1861, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.803243+00', TIMESTAMP WITH TIME ZONE '2022-12-18 05:56:06.814641+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1862, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:00:00.003+00', 1, NULL), +(1863, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:00:00.007+00', 3, NULL), +(1864, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.005584+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.3674+00', 361, NULL), +(1865, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.005603+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.016891+00', 11, '{"timezone-id":"UTC"}'), +(1866, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.016944+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.028758+00', 11, '{"updated-tables":0,"total-tables":8}'), +(1867, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.028798+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.303864+00', 275, '{"total-fields":71,"updated-fields":0}'), +(1868, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.303931+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.319855+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1869, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.319908+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.367373+00', 47, NULL), +(1870, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.374249+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.389083+00', 14, NULL), +(1871, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.374266+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.383611+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1872, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.383652+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.386253+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1873, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.386288+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:19:00.389062+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1874, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:00.010141+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.243231+00', 8233, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1875, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:00.010167+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:00.010447+00', 0, '{"timezone-id":null}'), +(1876, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:00.010485+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:00.162141+00', 151, '{"updated-tables":0,"total-tables":27}'), +(1877, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:00.162342+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.237875+00', 8075, '{"total-fields":293,"updated-fields":0}'), +(1878, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.237968+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.24199+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1879, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.242046+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.243209+00', 1, NULL), +(1880, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.260074+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.361932+00', 101, NULL), +(1881, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.260094+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.31381+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1882, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.31403+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.328094+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(1883, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.333977+00', TIMESTAMP WITH TIME ZONE '2022-12-18 06:56:08.361879+00', 27, '{"total-tables":27,"tables-classified":0}'), +(1884, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 07:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:00:00.004+00', 2, NULL), +(1885, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:00:00.007+00', 3, NULL), +(1886, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.005692+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.404458+00', 398, NULL), +(1887, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.005713+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.105577+00', 99, '{"timezone-id":"UTC"}'), +(1888, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.105672+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.116552+00', 10, '{"updated-tables":0,"total-tables":8}'), +(1889, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.116597+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.32629+00', 209, '{"total-fields":71,"updated-fields":0}'), +(1890, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.326371+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.340873+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1891, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.340923+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.404431+00', 63, NULL), +(1892, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.411766+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.430254+00', 18, NULL), +(1893, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.411782+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.421995+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1894, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.422204+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.426536+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(1895, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.42657+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:19:00.430184+00', 3, '{"total-tables":8,"tables-classified":0}'), +(1896, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:00.029116+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.85382+00', 5824, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1897, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:00.029138+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:00.029398+00', 0, '{"timezone-id":null}'), +(1898, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:00.029436+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:00.248489+00', 219, '{"updated-tables":0,"total-tables":27}'), +(1899, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:00.248539+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.851652+00', 5603, '{"total-fields":293,"updated-fields":0}'), +(1900, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.851704+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.853638+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1901, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.853668+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.853808+00', 0, NULL), +(1902, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.863404+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.943+00', 79, NULL), +(1903, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.863417+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.910811+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1904, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.910869+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.921722+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(1905, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.921758+00', TIMESTAMP WITH TIME ZONE '2022-12-18 07:56:05.942974+00', 21, '{"total-tables":27,"tables-classified":0}'), +(1906, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 08:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:00:00.008+00', 2, NULL), +(1907, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 08:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:00:00.017+00', 11, NULL), +(1908, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.014875+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.395758+00', 380, NULL), +(1909, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.014896+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.042051+00', 27, '{"timezone-id":"UTC"}'), +(1910, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.042143+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.08491+00', 42, '{"updated-tables":0,"total-tables":8}'), +(1911, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.085033+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.287841+00', 202, '{"total-fields":71,"updated-fields":0}'), +(1912, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.287898+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.314738+00', 26, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1913, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.314794+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.39572+00', 80, NULL), +(1914, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.408722+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.433807+00', 25, NULL), +(1915, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.408741+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.424697+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1916, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.424752+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.429543+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(1917, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.429586+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:19:00.433783+00', 4, '{"total-tables":8,"tables-classified":0}'), +(1918, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:00.062242+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.568917+00', 5506, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1919, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:00.062267+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:00.06267+00', 0, '{"timezone-id":null}'), +(1920, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:00.062712+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:00.30678+00', 244, '{"updated-tables":0,"total-tables":27}'), +(1921, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:00.306827+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.566778+00', 5259, '{"total-fields":293,"updated-fields":0}'), +(1922, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.566834+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.568728+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1923, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.568761+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.568907+00', 0, NULL), +(1924, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.579753+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.626138+00', 46, NULL), +(1925, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.579767+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.606828+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1926, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.606883+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.614964+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(1927, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.615002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 08:56:05.626115+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1928, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 09:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:00:00.003+00', 1, NULL), +(1929, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:00:00.006+00', 2, NULL), +(1930, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.009271+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.241329+00', 232, NULL), +(1931, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.009303+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.021531+00', 12, '{"timezone-id":"UTC"}'), +(1932, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.021579+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.026805+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1933, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.026835+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.198873+00', 172, '{"total-fields":71,"updated-fields":0}'), +(1934, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.198917+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.204945+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1935, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.204978+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.241311+00', 36, NULL), +(1936, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.25238+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.266573+00', 14, NULL), +(1937, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.2524+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.261457+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1938, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.261493+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.264057+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(1939, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.264089+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:19:00.266553+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1940, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:00.012509+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.065122+00', 8052, NULL), +(1941, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:00.012529+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:00.01295+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1942, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:00.013119+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:00.158114+00', 144, '{"updated-tables":0,"total-tables":27}'), +(1943, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:00.158165+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.062788+00', 7904, '{"total-fields":293,"updated-fields":0}'), +(1944, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.062834+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.06471+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1945, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.06478+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.065083+00', 0, NULL), +(1946, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.083018+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.129608+00', 46, NULL), +(1947, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.083037+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.110503+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1948, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.110586+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.117668+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1949, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.117714+00', TIMESTAMP WITH TIME ZONE '2022-12-18 09:56:08.129576+00', 11, '{"total-tables":27,"tables-classified":0}'), +(1950, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:00:00.007+00', 3, NULL), +(1951, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 10:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:00:00.008+00', 3, NULL), +(1952, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.020346+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.328498+00', 308, NULL), +(1953, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.020366+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.030985+00', 10, '{"timezone-id":"UTC"}'), +(1954, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.031055+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.039604+00', 8, '{"updated-tables":0,"total-tables":8}'), +(1955, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.041639+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.202362+00', 160, '{"total-fields":71,"updated-fields":0}'), +(1956, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.202411+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.266799+00', 64, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1957, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.266858+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.32847+00', 61, NULL), +(1958, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.341692+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.373316+00', 31, NULL), +(1959, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.341711+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.355756+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1960, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.355883+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.367403+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(1961, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.367457+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:19:00.373285+00', 5, '{"total-tables":8,"tables-classified":0}'), +(1962, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:00.008726+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.636385+00', 6627, NULL), +(1963, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:00.008748+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:00.008981+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1964, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:00.009017+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:00.072875+00', 63, '{"updated-tables":0,"total-tables":27}'), +(1965, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:00.072923+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.620362+00', 6547, '{"total-fields":293,"updated-fields":0}'), +(1966, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.620421+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.636139+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1967, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.636204+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.636374+00', 0, NULL), +(1968, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.753294+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:07.249644+00', 496, NULL), +(1969, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:06.753319+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:07.021887+00', 268, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1970, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:07.022016+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:07.076546+00', 54, '{"fields-classified":0,"fields-failed":0}'), +(1971, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:07.207328+00', TIMESTAMP WITH TIME ZONE '2022-12-18 10:56:07.249564+00', 42, '{"total-tables":27,"tables-classified":0}'), +(1972, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:00:00.006+00', 3, NULL), +(1973, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 11:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:00:00.008+00', 3, NULL), +(1974, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.005543+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.25157+00', 246, NULL), +(1975, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.005564+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.013+00', 7, '{"timezone-id":"UTC"}'), +(1976, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.013057+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.019468+00', 6, '{"updated-tables":0,"total-tables":8}'), +(1977, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.019498+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.158586+00', 139, '{"total-fields":71,"updated-fields":0}'), +(1978, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.158633+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.178823+00', 20, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(1979, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.178866+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.251547+00', 72, NULL), +(1980, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.262423+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.281794+00', 19, NULL), +(1981, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.262439+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.275431+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1982, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.275475+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.279435+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(1983, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.279467+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:19:00.281773+00', 2, '{"total-tables":8,"tables-classified":0}'), +(1984, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:00.027764+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.140813+00', 7113, NULL), +(1985, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:00.027786+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:00.028097+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(1986, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:00.028134+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:00.102867+00', 74, '{"updated-tables":0,"total-tables":27}'), +(1987, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:00.102916+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.138358+00', 7035, '{"total-fields":293,"updated-fields":0}'), +(1988, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.138407+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.140603+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(1989, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.140637+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.140801+00', 0, NULL), +(1990, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.153388+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.223675+00', 70, NULL), +(1991, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.153404+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.191944+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(1992, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.192406+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.199624+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(1993, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.199767+00', TIMESTAMP WITH TIME ZONE '2022-12-18 11:56:07.223634+00', 23, '{"total-tables":27,"tables-classified":0}'), +(1994, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 12:00:00.027+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:00:00.028+00', 1, NULL), +(1995, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 12:00:00.033+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:00:00.035+00', 2, NULL), +(1996, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.004254+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.225424+00', 221, NULL), +(1997, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.004274+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.012145+00', 7, '{"timezone-id":"UTC"}'), +(1998, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.012198+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.017633+00', 5, '{"updated-tables":0,"total-tables":8}'), +(1999, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.017671+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.18705+00', 169, '{"total-fields":71,"updated-fields":0}'), +(2000, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.187098+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.193627+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2001, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.193667+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.225406+00', 31, NULL), +(2002, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.232437+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.245939+00', 13, NULL), +(2003, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.232452+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.241111+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2004, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.241149+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.243495+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2005, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.243526+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:19:00.245919+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2006, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:00.014575+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.688586+00', 5674, NULL), +(2007, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:00.014598+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:00.014878+00', 0, '{"timezone-id":null}'), +(2008, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:00.014918+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:00.088189+00', 73, '{"updated-tables":0,"total-tables":27}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2009, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:00.088241+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.686562+00', 5598, '{"total-fields":293,"updated-fields":0}'), +(2010, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.686607+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.688408+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2011, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.68844+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.688576+00', 0, NULL), +(2012, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.702103+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.747973+00', 45, NULL), +(2013, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.702121+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.729819+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2014, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.730061+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.737079+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2015, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.737126+00', TIMESTAMP WITH TIME ZONE '2022-12-18 12:56:05.747942+00', 10, '{"total-tables":27,"tables-classified":0}'), +(2016, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.009+00', 1, NULL), +(2017, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.019+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.021+00', 2, NULL), +(2018, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.014404+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:04.721514+00', 4707, NULL), +(2019, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.014422+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.723113+00', 708, '{"deleted":0}'), +(2020, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:00.72317+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:00:04.721473+00', 3998, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(2021, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.005167+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.329967+00', 324, NULL), +(2022, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.005187+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.043251+00', 38, '{"timezone-id":"UTC"}'), +(2023, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.043313+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.054631+00', 11, '{"updated-tables":0,"total-tables":8}'), +(2024, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.054686+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.246572+00', 191, '{"total-fields":71,"updated-fields":0}'), +(2025, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.246623+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.265179+00', 18, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2026, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.265233+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.329939+00', 64, NULL), +(2027, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.345811+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.364055+00', 18, NULL), +(2028, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.345883+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.357424+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2029, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.357484+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.360184+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2030, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.360227+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:19:00.364018+00', 3, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2031, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:00.01135+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.594378+00', 6583, NULL), +(2032, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:00.011371+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:00.011589+00', 0, '{"timezone-id":null}'), +(2033, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:00.011621+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:00.072122+00', 60, '{"updated-tables":0,"total-tables":27}'), +(2034, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:00.072171+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.5921+00', 6519, '{"total-fields":293,"updated-fields":0}'), +(2035, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.592154+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.594175+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2036, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.594222+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.594367+00', 0, NULL), +(2037, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.611828+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.66079+00', 48, NULL), +(2038, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.611847+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.639551+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2039, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.639609+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.646862+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2040, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.64692+00', TIMESTAMP WITH TIME ZONE '2022-12-18 13:56:06.660753+00', 13, '{"total-tables":27,"tables-classified":0}'), +(2041, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 14:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:00:00.003+00', 1, NULL), +(2042, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:00:00.007+00', 3, NULL), +(2043, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.009134+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.195534+00', 186, NULL), +(2044, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.00915+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.018374+00', 9, '{"timezone-id":"UTC"}'), +(2045, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.018412+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.030385+00', 11, '{"updated-tables":0,"total-tables":8}'), +(2046, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.030421+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.148406+00', 117, '{"total-fields":71,"updated-fields":0}'), +(2047, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.14845+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.155763+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2048, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.155803+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.195512+00', 39, NULL), +(2049, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.208977+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.237054+00', 28, NULL), +(2050, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.208999+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.229971+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2051, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.230029+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.234634+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(2052, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.234671+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:19:00.237033+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2053, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:00.008634+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.163053+00', 6154, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2054, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:00.008655+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:00.008886+00', 0, '{"timezone-id":null}'), +(2055, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:00.00892+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:00.05842+00', 49, '{"updated-tables":0,"total-tables":27}'), +(2056, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:00.058467+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.160617+00', 6102, '{"total-fields":293,"updated-fields":0}'), +(2057, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.160674+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.162867+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2058, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.162903+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.163042+00', 0, NULL), +(2059, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.194194+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.368165+00', 173, NULL), +(2060, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.194214+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.294358+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2061, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.29443+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.306951+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(2062, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.307008+00', TIMESTAMP WITH TIME ZONE '2022-12-18 14:56:06.368117+00', 61, '{"total-tables":27,"tables-classified":0}'), +(2063, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 15:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:00:00.008+00', 4, NULL), +(2064, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 15:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:00:00.009+00', 4, NULL), +(2065, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.007835+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.305913+00', 298, NULL), +(2066, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.007854+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.022795+00', 14, '{"timezone-id":"UTC"}'), +(2067, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.02285+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.037069+00', 14, '{"updated-tables":0,"total-tables":8}'), +(2068, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.037125+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.263946+00', 226, '{"total-fields":71,"updated-fields":0}'), +(2069, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.264064+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.270301+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2070, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.270344+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.305886+00', 35, NULL), +(2071, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.312793+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.327584+00', 14, NULL), +(2072, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.31281+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.321239+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2073, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.321287+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.324313+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(2074, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.324353+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:19:00.327558+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2075, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:00.010279+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.331953+00', 8321, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2076, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:00.0103+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:00.01055+00', 0, '{"timezone-id":null}'), +(2077, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:00.010586+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:00.060956+00', 50, '{"updated-tables":0,"total-tables":27}'), +(2078, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:00.06101+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.324085+00', 8263, '{"total-fields":293,"updated-fields":0}'), +(2079, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.324186+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.331394+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2080, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.331459+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.331933+00', 0, NULL), +(2081, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.365899+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.473982+00', 108, NULL), +(2082, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.365919+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.437671+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2083, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.437771+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.449466+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(2084, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.449528+00', TIMESTAMP WITH TIME ZONE '2022-12-18 15:56:08.473933+00', 24, '{"total-tables":27,"tables-classified":0}'), +(2085, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 16:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:00:00.007+00', 3, NULL), +(2086, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 16:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:00:00.007+00', 5, NULL), +(2087, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.009347+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.229679+00', 220, NULL), +(2088, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.009367+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.015109+00', 5, '{"timezone-id":"UTC"}'), +(2089, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.015154+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.019957+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2090, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.019993+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.1383+00', 118, '{"total-fields":71,"updated-fields":0}'), +(2091, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.138354+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.155636+00', 17, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2092, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.155688+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.229651+00', 73, NULL), +(2093, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.240613+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.254809+00', 14, NULL), +(2094, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.240631+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.249109+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2095, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.249227+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.252028+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2096, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.252124+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:19:00.254785+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2097, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:00.016522+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.207181+00', 7190, NULL), +(2098, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:00.016544+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:00.016838+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2099, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:00.016896+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:00.150991+00', 134, '{"updated-tables":0,"total-tables":27}'), +(2100, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:00.151046+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.204542+00', 7053, '{"total-fields":293,"updated-fields":0}'), +(2101, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.204626+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.206784+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2102, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.20685+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.207143+00', 0, NULL), +(2103, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.224064+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.29057+00', 66, NULL), +(2104, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.224082+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.259606+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2105, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.259753+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.274672+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(2106, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.274815+00', TIMESTAMP WITH TIME ZONE '2022-12-18 16:56:07.290495+00', 15, '{"total-tables":27,"tables-classified":0}'), +(2107, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 17:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:00:00.004+00', 2, NULL), +(2108, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 17:00:00.012+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:00:00.014+00', 2, NULL), +(2109, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.007838+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.380572+00', 372, NULL), +(2110, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.007857+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.018699+00', 10, '{"timezone-id":"UTC"}'), +(2111, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.018759+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.061763+00', 43, '{"updated-tables":0,"total-tables":8}'), +(2112, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.061809+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.313541+00', 251, '{"total-fields":71,"updated-fields":0}'), +(2113, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.313589+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.332704+00', 19, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2114, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.332754+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.380544+00', 47, NULL), +(2115, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.387974+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.40216+00', 14, NULL), +(2116, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.387991+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.396104+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2117, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.396151+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.398281+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2118, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.398315+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:19:00.402071+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2119, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:00.04139+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.1656+00', 7124, NULL), +(2120, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:00.041414+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:00.041812+00', 0, '{"timezone-id":null}'), +(2121, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:00.041868+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:00.172247+00', 130, '{"updated-tables":0,"total-tables":27}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2122, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:00.172294+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.161519+00', 6989, '{"total-fields":293,"updated-fields":0}'), +(2123, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.161593+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.165173+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2124, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.165213+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.16558+00', 0, NULL), +(2125, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.176033+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.244888+00', 68, NULL), +(2126, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.176046+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.210567+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2127, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.210617+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.221027+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(2128, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.221073+00', TIMESTAMP WITH TIME ZONE '2022-12-18 17:56:07.244859+00', 23, '{"total-tables":27,"tables-classified":0}'), +(2129, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 18:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:00:00.003+00', 1, NULL), +(2130, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:00:00.006+00', 2, NULL), +(2131, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.00558+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.19459+00', 189, NULL), +(2132, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.005601+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.011918+00', 6, '{"timezone-id":"UTC"}'), +(2133, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.011964+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.017805+00', 5, '{"updated-tables":0,"total-tables":8}'), +(2134, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.017856+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.134774+00', 116, '{"total-fields":71,"updated-fields":0}'), +(2135, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.134839+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.14087+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2136, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.140914+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.194564+00', 53, NULL), +(2137, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.201604+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.214527+00', 12, NULL), +(2138, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.201622+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.209612+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2139, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.209652+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.211988+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2140, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.212021+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:19:00.214505+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2141, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:00.010431+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.715079+00', 6704, NULL), +(2142, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:00.010463+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:00.010727+00', 0, '{"timezone-id":null}'), +(2143, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:00.010767+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:00.11483+00', 104, '{"updated-tables":0,"total-tables":27}'), +(2144, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:00.114908+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.711844+00', 6596, '{"total-fields":293,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2145, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.711922+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.71466+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2146, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.714703+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.715057+00', 0, NULL), +(2147, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.732988+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.800231+00', 67, NULL), +(2148, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.733005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.775774+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2149, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.775861+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.784463+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(2150, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.784554+00', TIMESTAMP WITH TIME ZONE '2022-12-18 18:56:06.800196+00', 15, '{"total-tables":27,"tables-classified":0}'), +(2151, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 19:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:00:00.008+00', 3, NULL), +(2152, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:00:00.01+00', 7, NULL), +(2153, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.004587+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.26301+00', 258, NULL), +(2154, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.004607+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.009152+00', 4, '{"timezone-id":"UTC"}'), +(2155, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.0092+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.015986+00', 6, '{"updated-tables":0,"total-tables":8}'), +(2156, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.016049+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.180429+00', 164, '{"total-fields":71,"updated-fields":0}'), +(2157, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.180586+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.189382+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2158, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.189797+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.262982+00', 73, NULL), +(2159, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.279237+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.304574+00', 25, NULL), +(2160, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.279259+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.295131+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2161, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.29518+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.297285+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2162, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.297317+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:19:00.304553+00', 7, '{"total-tables":8,"tables-classified":0}'), +(2163, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:00.017862+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.931967+00', 7914, NULL), +(2164, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:00.017885+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:00.018284+00', 0, '{"timezone-id":null}'), +(2165, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:00.018357+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:00.141052+00', 122, '{"updated-tables":0,"total-tables":27}'), +(2166, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:00.141111+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.929102+00', 7787, '{"total-fields":293,"updated-fields":0}'), +(2167, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.929193+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.931748+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2168, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.931782+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.931954+00', 0, NULL), +(2169, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.946047+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.999706+00', 53, NULL), +(2170, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.946063+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.977345+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2171, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.977467+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.986753+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(2172, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.986836+00', TIMESTAMP WITH TIME ZONE '2022-12-18 19:56:07.999681+00', 12, '{"total-tables":27,"tables-classified":0}'), +(2173, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 20:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:00:00.004+00', 2, NULL), +(2174, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:00:00.01+00', 6, NULL), +(2175, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.007149+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.290068+00', 282, NULL), +(2176, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.007169+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.085207+00', 78, '{"timezone-id":"UTC"}'), +(2177, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.08534+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.107945+00', 22, '{"updated-tables":0,"total-tables":8}'), +(2178, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.107999+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.243354+00', 135, '{"total-fields":71,"updated-fields":0}'), +(2179, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.243431+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.249376+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2180, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.249418+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.29004+00', 40, NULL), +(2181, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.296668+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.311897+00', 15, NULL), +(2182, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.296685+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.305413+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2183, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.305454+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.30813+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2184, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.308175+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:19:00.311874+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2185, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:00.034342+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.560292+00', 8525, NULL), +(2186, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:00.034363+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:00.034642+00', 0, '{"timezone-id":null}'), +(2187, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:00.034679+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:00.142389+00', 107, '{"updated-tables":0,"total-tables":27}'), +(2188, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:00.142451+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.557944+00', 8415, '{"total-fields":293,"updated-fields":0}'), +(2189, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.558+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.560015+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2190, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.56006+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.560276+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2191, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.571333+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.668165+00', 96, NULL), +(2192, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.571346+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.610669+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2193, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.610835+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.640654+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(2194, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.640718+00', TIMESTAMP WITH TIME ZONE '2022-12-18 20:56:08.668095+00', 27, '{"total-tables":27,"tables-classified":0}'), +(2195, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.012+00', 1, NULL), +(2196, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.013+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.015+00', 2, NULL), +(2197, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.012755+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.476558+00', 463, NULL), +(2198, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.012775+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.065265+00', 52, '{"deleted":0}'), +(2199, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.065325+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:00:00.476524+00', 411, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(2200, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.004657+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.173236+00', 168, NULL), +(2201, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.004678+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.025381+00', 20, '{"timezone-id":"UTC"}'), +(2202, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.025449+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.032981+00', 7, '{"updated-tables":0,"total-tables":8}'), +(2203, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.033099+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.132596+00', 99, '{"total-fields":71,"updated-fields":0}'), +(2204, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.132662+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.144121+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2205, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.144173+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.173212+00', 29, NULL), +(2206, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.180326+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.194276+00', 13, NULL), +(2207, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.180343+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.189015+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2208, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.189067+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.191329+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2209, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.191364+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:19:00.194254+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2210, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:00.014111+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.681185+00', 7667, NULL), +(2211, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:00.014137+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:00.014414+00', 0, '{"timezone-id":null}'), +(2212, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:00.014461+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:00.097613+00', 83, '{"updated-tables":0,"total-tables":27}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2213, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:00.097665+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.664087+00', 7566, '{"total-fields":293,"updated-fields":0}'), +(2214, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.664146+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.680876+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2215, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.680941+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.681169+00', 0, NULL), +(2216, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.71112+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:08.006717+00', 295, NULL), +(2217, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.71114+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.783757+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2218, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.78382+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.965633+00', 181, '{"fields-classified":0,"fields-failed":0}'), +(2219, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:07.967439+00', TIMESTAMP WITH TIME ZONE '2022-12-18 21:56:08.006659+00', 39, '{"total-tables":27,"tables-classified":0}'), +(2220, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 22:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:00:00.006+00', 2, NULL), +(2221, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 22:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:00:00.006+00', 3, NULL), +(2222, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.00949+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.345134+00', 335, NULL), +(2223, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.009509+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.022743+00', 13, '{"timezone-id":"UTC"}'), +(2224, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.022792+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.040984+00', 18, '{"updated-tables":0,"total-tables":8}'), +(2225, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.041106+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.279611+00', 238, '{"total-fields":71,"updated-fields":0}'), +(2226, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.279658+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.288829+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2227, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.288885+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.345108+00', 56, NULL), +(2228, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.359164+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.381094+00', 21, NULL), +(2229, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.359182+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.375466+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2230, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.37552+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.378355+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2231, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.378389+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:19:00.381073+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2232, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:00.042558+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.968247+00', 8925, NULL), +(2233, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:00.042582+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:00.043025+00', 0, '{"timezone-id":null}'), +(2234, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:00.043066+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:00.119007+00', 75, '{"updated-tables":0,"total-tables":27}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2235, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:00.119067+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.96576+00', 8846, '{"total-fields":293,"updated-fields":0}'), +(2236, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.965891+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.967853+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2237, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.967918+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.968209+00', 0, NULL), +(2238, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.979693+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:09.029587+00', 49, NULL), +(2239, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:08.979708+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:09.011659+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2240, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:09.011744+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:09.019+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2241, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:09.019047+00', TIMESTAMP WITH TIME ZONE '2022-12-18 22:56:09.029536+00', 10, '{"total-tables":27,"tables-classified":0}'), +(2242, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:00:00.007+00', 3, NULL), +(2243, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-18 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:00:00.008+00', 4, NULL), +(2244, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.006046+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.182507+00', 176, NULL), +(2245, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.006066+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.015194+00', 9, '{"timezone-id":"UTC"}'), +(2246, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.015241+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.019875+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2247, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.019908+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.118933+00', 99, '{"total-fields":71,"updated-fields":0}'), +(2248, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.11898+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.125708+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2249, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.126449+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.182425+00', 55, NULL), +(2250, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.194788+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.208339+00', 13, NULL), +(2251, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.194806+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.20296+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2252, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.203034+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.205585+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2253, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.205648+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:19:00.208316+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2254, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:00.007509+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.141116+00', 8133, NULL), +(2255, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:00.00753+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:00.007768+00', 0, '{"timezone-id":null}'), +(2256, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:00.007802+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:00.057354+00', 49, '{"updated-tables":0,"total-tables":27}'), +(2257, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:00.0574+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.135727+00', 8078, '{"total-fields":293,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2258, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.135783+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.14079+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2259, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.14083+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.1411+00', 0, NULL), +(2260, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.153723+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.214965+00', 61, NULL), +(2261, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.153735+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.1894+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2262, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.189513+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.201603+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(2263, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.201668+00', TIMESTAMP WITH TIME ZONE '2022-12-18 23:56:08.214936+00', 13, '{"total-tables":27,"tables-classified":0}'), +(2264, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 00:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:00:00.007+00', 3, NULL), +(2265, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 00:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:00:00.008+00', 2, NULL), +(2266, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.006351+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.300617+00', 294, NULL), +(2267, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.006371+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.014966+00', 8, '{"timezone-id":"UTC"}'), +(2268, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.01501+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.021202+00', 6, '{"updated-tables":0,"total-tables":8}'), +(2269, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.021236+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.141236+00', 120, '{"total-fields":71,"updated-fields":0}'), +(2270, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.141284+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.176413+00', 35, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2271, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.176471+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.300582+00', 124, NULL), +(2272, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.331829+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.362847+00', 31, NULL), +(2273, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.331856+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.354586+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2274, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.354663+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.359168+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(2275, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.359211+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:19:00.36282+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2276, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:00.020464+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.3872+00', 8366, NULL), +(2277, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:00.020486+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:00.020789+00', 0, '{"timezone-id":null}'), +(2278, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:00.020826+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:00.114775+00', 93, '{"updated-tables":0,"total-tables":27}'), +(2279, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:00.114828+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.383969+00', 8269, '{"total-fields":293,"updated-fields":0}'), +(2280, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.384196+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.386991+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2281, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.387026+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.387188+00', 0, NULL), +(2282, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.427362+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.542529+00', 115, NULL), +(2283, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.427384+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.489529+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2284, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.489589+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.515543+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(2285, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.515664+00', TIMESTAMP WITH TIME ZONE '2022-12-19 00:56:08.542482+00', 26, '{"total-tables":27,"tables-classified":0}'), +(2286, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 01:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:00:00.011+00', 4, NULL), +(2287, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 01:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:00:00.012+00', 5, NULL), +(2288, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.005744+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.147052+00', 141, NULL), +(2289, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.005764+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.014479+00', 8, '{"timezone-id":"UTC"}'), +(2290, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.014528+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.019326+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2291, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.019383+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.096494+00', 77, '{"total-fields":71,"updated-fields":0}'), +(2292, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.096665+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.102604+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2293, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.102755+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.147038+00', 44, NULL), +(2294, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.156631+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.181949+00', 25, NULL), +(2295, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.156644+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.16947+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2296, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.169532+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.174836+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(2297, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.174868+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:19:00.181928+00', 7, '{"total-tables":8,"tables-classified":0}'), +(2298, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:00.018899+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.592521+00', 7573, NULL), +(2299, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:00.018921+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:00.019252+00', 0, '{"timezone-id":null}'), +(2300, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:00.019303+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:00.127477+00', 108, '{"updated-tables":0,"total-tables":27}'), +(2301, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:00.127526+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.589382+00', 7461, '{"total-fields":293,"updated-fields":0}'), +(2302, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.589431+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.591614+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2303, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.591651+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.592502+00', 0, NULL), +(2304, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.608153+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.67834+00', 70, NULL), +(2305, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.608172+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.643913+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2306, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.643969+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.666347+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(2307, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.666419+00', TIMESTAMP WITH TIME ZONE '2022-12-19 01:56:07.678285+00', 11, '{"total-tables":27,"tables-classified":0}'), +(2308, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 02:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:00:00.01+00', 5, NULL), +(2309, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:00:00.015+00', 11, NULL), +(2310, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.006302+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.183952+00', 177, NULL), +(2311, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.006321+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.012928+00', 6, '{"timezone-id":"UTC"}'), +(2312, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.012977+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.018829+00', 5, '{"updated-tables":0,"total-tables":8}'), +(2313, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.018869+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.134746+00', 115, '{"total-fields":71,"updated-fields":0}'), +(2314, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.134789+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.141031+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2315, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.141075+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.183923+00', 42, NULL), +(2316, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.193475+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.209968+00', 16, NULL), +(2317, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.193492+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.202956+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2318, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.203+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.206207+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(2319, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.206243+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:19:00.209946+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2320, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:00.016655+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.026678+00', 8010, NULL), +(2321, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:00.016675+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:00.016925+00', 0, '{"timezone-id":null}'), +(2322, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:00.01696+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:00.165678+00', 148, '{"updated-tables":0,"total-tables":27}'), +(2323, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:00.170026+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.024058+00', 7854, '{"total-fields":293,"updated-fields":0}'), +(2324, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.024117+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.026357+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2325, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.026393+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.026659+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2326, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.042009+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.09977+00', 57, NULL), +(2327, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.04203+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.074506+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2328, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.074571+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.082247+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2329, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.082304+00', TIMESTAMP WITH TIME ZONE '2022-12-19 02:56:08.099727+00', 17, '{"total-tables":27,"tables-classified":0}'), +(2330, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:00:00.007+00', 3, NULL), +(2331, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 03:00:00.013+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:00:00.016+00', 3, NULL), +(2332, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.019881+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.388806+00', 368, NULL), +(2333, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.0199+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.027904+00', 8, '{"timezone-id":"UTC"}'), +(2334, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.027946+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.045755+00', 17, '{"updated-tables":0,"total-tables":8}'), +(2335, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.045795+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.316187+00', 270, '{"total-fields":71,"updated-fields":0}'), +(2336, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.316234+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.331669+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2337, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.331734+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.388782+00', 57, NULL), +(2338, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.396944+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.410617+00', 13, NULL), +(2339, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.39696+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.405313+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2340, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.405354+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.407898+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2341, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.407957+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:19:00.410597+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2342, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:00.011443+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.463492+00', 6452, NULL), +(2343, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:00.011463+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:00.011793+00', 0, '{"timezone-id":null}'), +(2344, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:00.011826+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:00.078707+00', 66, '{"updated-tables":0,"total-tables":27}'), +(2345, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:00.078756+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.460991+00', 6382, '{"total-fields":293,"updated-fields":0}'), +(2346, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.461046+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.463131+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2347, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.463167+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.463474+00', 0, NULL), +(2348, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.474601+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.522609+00', 48, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2349, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.474611+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.504513+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2350, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.504559+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.511482+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(2351, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.511517+00', TIMESTAMP WITH TIME ZONE '2022-12-19 03:56:06.522586+00', 11, '{"total-tables":27,"tables-classified":0}'), +(2352, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 04:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:00:00.003+00', 1, NULL), +(2353, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:00:00.006+00', 2, NULL), +(2354, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.006406+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.179067+00', 172, NULL), +(2355, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.006426+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.010848+00', 4, '{"timezone-id":"UTC"}'), +(2356, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.010935+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.016502+00', 5, '{"updated-tables":0,"total-tables":8}'), +(2357, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.01658+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.113438+00', 96, '{"total-fields":71,"updated-fields":0}'), +(2358, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.113512+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.119368+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2359, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.119443+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.17884+00', 59, NULL), +(2360, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.199266+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.218756+00', 19, NULL), +(2361, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.199288+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.213858+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2362, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.213916+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.21637+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2363, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.21641+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:19:00.218735+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2364, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:00.090081+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.584633+00', 8494, NULL), +(2365, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:00.090104+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:00.090461+00', 0, '{"timezone-id":null}'), +(2366, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:00.090502+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:00.252391+00', 161, '{"updated-tables":0,"total-tables":27}'), +(2367, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:00.252447+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.58222+00', 8329, '{"total-fields":293,"updated-fields":0}'), +(2368, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.582263+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.584434+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2369, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.584463+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.584622+00', 0, NULL), +(2370, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.594273+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.644896+00', 50, NULL), +(2371, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.594285+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.625169+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2372, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.625209+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.633246+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(2373, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.633281+00', TIMESTAMP WITH TIME ZONE '2022-12-19 04:56:08.644866+00', 11, '{"total-tables":27,"tables-classified":0}'), +(2374, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:00:00.005+00', 2, NULL), +(2375, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 05:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:00:00.008+00', 3, NULL), +(2376, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.006079+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.179953+00', 173, NULL), +(2377, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.006099+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.010034+00', 3, '{"timezone-id":"UTC"}'), +(2378, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.010076+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.027249+00', 17, '{"updated-tables":0,"total-tables":8}'), +(2379, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.027285+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.115538+00', 88, '{"total-fields":71,"updated-fields":0}'), +(2380, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.115583+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.120704+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2381, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.120735+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.179928+00', 59, NULL), +(2382, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.191695+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.206806+00', 15, NULL), +(2383, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.191738+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.201534+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2384, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.201646+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.204077+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2385, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.204109+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:19:00.206761+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2386, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:00.028099+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.558006+00', 7529, NULL), +(2387, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:00.028121+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:00.028379+00', 0, '{"timezone-id":null}'), +(2388, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:00.028416+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:00.168517+00', 140, '{"updated-tables":0,"total-tables":27}'), +(2389, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:00.168578+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.551214+00', 7382, '{"total-fields":293,"updated-fields":0}'), +(2390, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.551269+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.557603+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2391, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.557653+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.557891+00', 0, NULL), +(2392, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.569029+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.629887+00', 60, NULL), +(2393, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.569046+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.60017+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2394, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.600226+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.613187+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(2395, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.613247+00', TIMESTAMP WITH TIME ZONE '2022-12-19 05:56:07.629817+00', 16, '{"total-tables":27,"tables-classified":0}'), +(2396, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:00:00.004+00', 2, NULL), +(2397, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 06:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:00:00.015+00', 4, NULL), +(2398, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.00559+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.131592+00', 126, NULL), +(2399, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.005613+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.010764+00', 5, '{"timezone-id":"UTC"}'), +(2400, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.010805+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.015463+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2401, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.015499+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.094213+00', 78, '{"total-fields":71,"updated-fields":0}'), +(2402, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.094288+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.100493+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2403, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.100558+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.131571+00', 31, NULL), +(2404, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.137729+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.150606+00', 12, NULL), +(2405, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.137744+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.145289+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2406, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.145322+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.148344+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(2407, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.148374+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:19:00.150586+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2408, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:00.029412+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.120571+00', 8091, NULL), +(2409, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:00.029433+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:00.029674+00', 0, '{"timezone-id":null}'), +(2410, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:00.029784+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:00.107625+00', 77, '{"updated-tables":0,"total-tables":27}'), +(2411, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:00.107674+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.117484+00', 8009, '{"total-fields":293,"updated-fields":0}'), +(2412, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.117543+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.120358+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2413, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.120396+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.120558+00', 0, NULL), +(2414, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.136142+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.204303+00', 68, NULL), +(2415, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.136158+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.170075+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2416, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.170132+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.180355+00', 10, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2417, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.18041+00', TIMESTAMP WITH TIME ZONE '2022-12-19 06:56:08.204257+00', 23, '{"total-tables":27,"tables-classified":0}'), +(2418, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 07:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:00:00.003+00', 2, NULL), +(2419, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 07:00:00.012+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:00:00.015+00', 3, NULL), +(2420, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.004981+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.173029+00', 168, NULL), +(2421, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.005001+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.008151+00', 3, '{"timezone-id":"UTC"}'), +(2422, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.008192+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.012244+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2423, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.012273+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.109809+00', 97, '{"total-fields":71,"updated-fields":0}'), +(2424, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.109903+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.115952+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2425, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.115994+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.172995+00', 57, NULL), +(2426, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.183001+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.198657+00', 15, NULL), +(2427, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.183063+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.193541+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2428, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.193633+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.195923+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2429, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.196024+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:00.198638+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2430, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:00.01739+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.435636+00', 10418, NULL), +(2431, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:00.017685+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:00.021022+00', 3, '{"timezone-id":null}'), +(2432, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:00.021093+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:00.095253+00', 74, '{"updated-tables":0,"total-tables":27}'), +(2433, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:00.095305+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.425998+00', 10330, '{"total-fields":293,"updated-fields":0}'), +(2434, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.426191+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.43397+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2435, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.434011+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.435615+00', 1, NULL), +(2436, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.465623+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.531054+00', 65, NULL), +(2437, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.465641+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.51081+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2438, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.510885+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.518321+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2439, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.51836+00', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:10.531024+00', 12, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2440, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 08:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:00:00.065+00', 58, NULL), +(2441, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 08:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:00:00.064+00', 59, NULL), +(2442, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.007281+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.277683+00', 270, NULL), +(2443, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.007306+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.029132+00', 21, '{"timezone-id":"UTC"}'), +(2444, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.029193+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.058783+00', 29, '{"updated-tables":0,"total-tables":8}'), +(2445, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.058824+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.214871+00', 156, '{"total-fields":71,"updated-fields":0}'), +(2446, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.214907+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.230095+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2447, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.230134+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.277662+00', 47, NULL), +(2448, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.28428+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.29938+00', 15, NULL), +(2449, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.284295+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.292379+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2450, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.292443+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.296355+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(2451, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.296433+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:00.299335+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2452, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:00.015605+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.952391+00', 9936, NULL), +(2453, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:00.015625+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:00.015825+00', 0, '{"timezone-id":null}'), +(2454, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:00.015854+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:00.048433+00', 32, '{"updated-tables":0,"total-tables":27}'), +(2455, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:00.048525+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.949975+00', 9901, '{"total-fields":293,"updated-fields":0}'), +(2456, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.950021+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.952021+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2457, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.952051+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.952373+00', 0, NULL), +(2458, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.961602+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:10.027136+00', 65, NULL), +(2459, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.961619+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.997413+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2460, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:09.997541+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:10.012979+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(2461, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:10.013057+00', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:10.027073+00', 14, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2462, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 09:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:00:00.067+00', 61, NULL), +(2463, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 09:00:00.025+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:00:00.073+00', 48, NULL), +(2464, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.022095+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.36388+00', 341, NULL), +(2465, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.022115+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.024905+00', 2, '{"timezone-id":"UTC"}'), +(2466, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.024945+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.029187+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2467, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.029221+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.281271+00', 252, '{"total-fields":71,"updated-fields":0}'), +(2468, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.283032+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.295275+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2469, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.295356+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.359828+00', 64, NULL), +(2470, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.376611+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.409506+00', 32, NULL), +(2471, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.37663+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.3922+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2472, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.400614+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.406984+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(2473, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.407038+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:19:00.409476+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2474, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:00.025614+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.511278+00', 7485, NULL), +(2475, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:00.025634+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:00.025839+00', 0, '{"timezone-id":null}'), +(2476, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:00.025869+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:00.070729+00', 44, '{"updated-tables":0,"total-tables":27}'), +(2477, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:00.070804+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.50519+00', 7434, '{"total-fields":293,"updated-fields":0}'), +(2478, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.505639+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.511091+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2479, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.511121+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.511267+00', 0, NULL), +(2480, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.518851+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.566783+00', 47, NULL), +(2481, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.518865+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.546959+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2482, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.547005+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.553112+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(2483, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.553147+00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:07.566758+00', 13, '{"total-tables":27,"tables-classified":0}'), +(2484, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 10:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:00:00.008+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2485, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 10:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:00:00.014+00', 4, NULL), +(2486, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.004581+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.169772+00', 165, NULL), +(2487, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.004602+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.037284+00', 32, '{"timezone-id":"UTC"}'), +(2488, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.037348+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.041833+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2489, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.041945+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.123932+00', 81, '{"total-fields":71,"updated-fields":0}'), +(2490, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.123968+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.129871+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2491, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.129901+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.169753+00', 39, NULL), +(2492, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.201921+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.215659+00', 13, NULL), +(2493, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.201933+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.210029+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2494, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.210062+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.212752+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2495, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.212783+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:00.215637+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2496, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:00.00625+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.54818+00', 7541, NULL), +(2497, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:00.006272+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:00.006582+00', 0, '{"timezone-id":null}'), +(2498, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:00.006621+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:00.038339+00', 31, '{"updated-tables":0,"total-tables":27}'), +(2499, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:00.038424+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.545714+00', 7507, '{"total-fields":293,"updated-fields":0}'), +(2500, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.545759+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.547838+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2501, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.547873+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.548162+00', 0, NULL), +(2502, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.560089+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.6123+00', 52, NULL), +(2503, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.560108+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.587333+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2504, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.587373+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.594541+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2505, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.594573+00', TIMESTAMP WITH TIME ZONE '2022-12-19 10:56:07.612273+00', 17, '{"total-tables":27,"tables-classified":0}'), +(2506, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:00:00.004+00', 1, NULL), +(2507, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 11:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:00:00.026+00', 21, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2508, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.003842+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.20637+00', 202, NULL), +(2509, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.003862+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.012989+00', 9, '{"timezone-id":"UTC"}'), +(2510, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.013035+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.021085+00', 8, '{"updated-tables":0,"total-tables":8}'), +(2511, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.021128+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.146599+00', 125, '{"total-fields":71,"updated-fields":0}'), +(2512, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.146647+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.153165+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2513, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.153204+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.206337+00', 53, NULL), +(2514, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.217169+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.239371+00', 22, NULL), +(2515, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.217189+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.232043+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2516, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.232093+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.236196+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(2517, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.236241+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:00.23935+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2518, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:00.006679+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.187045+00', 6180, NULL), +(2519, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:00.006699+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:00.006918+00', 0, '{"timezone-id":null}'), +(2520, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:00.006949+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:00.078394+00', 71, '{"updated-tables":0,"total-tables":27}'), +(2521, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:00.078481+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.184807+00', 6106, '{"total-fields":293,"updated-fields":0}'), +(2522, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.184846+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.18685+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2523, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.186877+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.187033+00', 0, NULL), +(2524, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.21685+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.299483+00', 82, NULL), +(2525, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.216865+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.281115+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2526, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.281162+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.288525+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2527, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.28856+00', TIMESTAMP WITH TIME ZONE '2022-12-19 11:56:06.299459+00', 10, '{"total-tables":27,"tables-classified":0}'), +(2528, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 12:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:00:00.01+00', 1, NULL), +(2529, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 12:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:00:00.028+00', 17, NULL), +(2530, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.005465+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.241934+00', 236, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2531, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.005484+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.016002+00', 10, '{"timezone-id":"UTC"}'), +(2532, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.016055+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.027595+00', 11, '{"updated-tables":0,"total-tables":8}'), +(2533, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.027635+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.144852+00', 117, '{"total-fields":71,"updated-fields":0}'), +(2534, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.145019+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.173127+00', 28, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2535, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.173473+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.241906+00', 68, NULL), +(2536, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.25016+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.268135+00', 17, NULL), +(2537, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.250176+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.260631+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2538, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.260793+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.26404+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(2539, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.264389+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:19:00.268016+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2540, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:00.005037+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:06.991075+00', 6986, NULL), +(2541, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:00.005059+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:00.005316+00', 0, '{"timezone-id":null}'), +(2542, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:00.005351+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:00.040014+00', 34, '{"updated-tables":0,"total-tables":27}'), +(2543, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:00.04016+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:06.987425+00', 6947, '{"total-fields":293,"updated-fields":0}'), +(2544, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:06.987466+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:06.990835+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2545, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:06.990878+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:06.991063+00', 0, NULL), +(2546, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.027926+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.187807+00', 159, NULL), +(2547, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.027945+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.162787+00', 134, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2548, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.162837+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.173783+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(2549, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.173904+00', TIMESTAMP WITH TIME ZONE '2022-12-19 12:56:07.18774+00', 13, '{"total-tables":27,"tables-classified":0}'), +(2550, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.026+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.026+00', 0, NULL), +(2551, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.029+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.032+00', 3, NULL), +(2552, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.031255+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:03.903992+00', 3872, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2553, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.031274+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.449125+00', 417, '{"deleted":0}'), +(2554, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:00.449264+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:03.903963+00', 3454, '{"errors":0,"created":0,"updated":4,"deleted":0}'), +(2555, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.006426+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.194493+00', 188, NULL), +(2556, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.006446+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.010833+00', 4, '{"timezone-id":"UTC"}'), +(2557, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.010871+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.024093+00', 13, '{"updated-tables":0,"total-tables":8}'), +(2558, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.024222+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.139461+00', 115, '{"total-fields":71,"updated-fields":0}'), +(2559, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.139506+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.147999+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2560, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.148136+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.19447+00', 46, NULL), +(2561, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.21275+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.227437+00', 14, NULL), +(2562, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.212768+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.2218+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2563, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.221859+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.224782+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2564, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.224811+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:19:00.227409+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2565, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:00.006088+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.567754+00', 8561, NULL), +(2566, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:00.006112+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:00.006665+00', 0, '{"timezone-id":null}'), +(2567, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:00.006704+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:00.249804+00', 243, '{"updated-tables":0,"total-tables":27}'), +(2568, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:00.249872+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.563491+00', 8313, '{"total-fields":293,"updated-fields":0}'), +(2569, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.563551+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.5672+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2570, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.567237+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.567738+00', 0, NULL), +(2571, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.580238+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.812531+00', 232, NULL), +(2572, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.580258+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.689042+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2573, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.689329+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.799874+00', 110, '{"fields-classified":0,"fields-failed":0}'), +(2574, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.799984+00', TIMESTAMP WITH TIME ZONE '2022-12-19 13:56:08.812459+00', 12, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2575, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 14:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:00:00.003+00', 1, NULL), +(2576, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:00:00.009+00', 5, NULL), +(2577, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.007458+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.235215+00', 227, NULL), +(2578, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.007477+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.018288+00', 10, '{"timezone-id":"UTC"}'), +(2579, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.018333+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.024625+00', 6, '{"updated-tables":0,"total-tables":8}'), +(2580, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.02466+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.195426+00', 170, '{"total-fields":71,"updated-fields":0}'), +(2581, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.195463+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.201398+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2582, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.201433+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.235192+00', 33, NULL), +(2583, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.241652+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.254117+00', 12, NULL), +(2584, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.241668+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.249709+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2585, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.249748+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.251863+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2586, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.251893+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:19:00.254098+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2587, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:00.009757+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.11811+00', 10108, NULL), +(2588, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:00.009779+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:00.01012+00', 0, '{"timezone-id":null}'), +(2589, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:00.010153+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:00.134725+00', 124, '{"updated-tables":0,"total-tables":27}'), +(2590, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:00.134771+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.112704+00', 9977, '{"total-fields":293,"updated-fields":0}'), +(2591, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.112744+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.115214+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2592, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.117869+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.118096+00', 0, NULL), +(2593, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.142426+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.289937+00', 147, NULL), +(2594, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.142451+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.264833+00', 122, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2595, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.264885+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.274139+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(2596, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.274184+00', TIMESTAMP WITH TIME ZONE '2022-12-19 14:56:10.289892+00', 15, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2597, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:00:00.005+00', 3, NULL), +(2598, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 15:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:00:00.012+00', 4, NULL), +(2599, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.003789+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.17317+00', 169, NULL), +(2600, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.003809+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.010525+00', 6, '{"timezone-id":"UTC"}'), +(2601, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.010567+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.01565+00', 5, '{"updated-tables":0,"total-tables":8}'), +(2602, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.01568+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.125652+00', 109, '{"total-fields":71,"updated-fields":0}'), +(2603, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.125689+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.1427+00', 17, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2604, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.142739+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.173153+00', 30, NULL), +(2605, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.179401+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.191748+00', 12, NULL), +(2606, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.179415+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.186855+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2607, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.186899+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.189076+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2608, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.189102+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:19:00.191731+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2609, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:00.013876+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.374362+00', 12360, NULL), +(2610, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:00.013902+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:00.014415+00', 0, '{"timezone-id":null}'), +(2611, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:00.014458+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:00.130385+00', 115, '{"updated-tables":0,"total-tables":27}'), +(2612, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:00.130438+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.284959+00', 12154, '{"total-fields":293,"updated-fields":0}'), +(2613, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.285048+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.374102+00', 89, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2614, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.374161+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.37435+00', 0, NULL), +(2615, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.469588+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.661678+00', 192, NULL), +(2616, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.469608+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.587848+00', 118, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2617, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.587903+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.619703+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(2618, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.619791+00', TIMESTAMP WITH TIME ZONE '2022-12-19 15:56:12.661633+00', 41, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2619, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 16:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:00:00.008+00', 3, NULL), +(2620, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 16:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:00:00.011+00', 1, NULL), +(2621, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.011712+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.156925+00', 145, NULL), +(2622, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.011732+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.017392+00', 5, '{"timezone-id":"UTC"}'), +(2623, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.017432+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.02653+00', 9, '{"updated-tables":0,"total-tables":8}'), +(2624, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.02656+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.122026+00', 95, '{"total-fields":71,"updated-fields":0}'), +(2625, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.122074+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.128073+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2626, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.128145+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.156871+00', 28, NULL), +(2627, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.163753+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.177905+00', 14, NULL), +(2628, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.16377+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.172343+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2629, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.172383+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.175103+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2630, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.175155+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:19:00.177863+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2631, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:00.009338+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.776977+00', 7767, NULL), +(2632, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:00.00936+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:00.009625+00', 0, '{"timezone-id":null}'), +(2633, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:00.009661+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:00.116253+00', 106, '{"updated-tables":0,"total-tables":27}'), +(2634, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:00.116327+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.774852+00', 7658, '{"total-fields":293,"updated-fields":0}'), +(2635, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.774905+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.776791+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2636, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.77682+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.776966+00', 0, NULL), +(2637, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.807434+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.993919+00', 186, NULL), +(2638, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.807453+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.942786+00', 135, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2639, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.942953+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.955565+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(2640, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.955672+00', TIMESTAMP WITH TIME ZONE '2022-12-19 16:56:07.99361+00', 37, '{"total-tables":27,"tables-classified":0}'), +(2641, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 17:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:00:00.003+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2642, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:00:00.008+00', 4, NULL), +(2643, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.003707+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.184133+00', 180, NULL), +(2644, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.003722+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.012204+00', 8, '{"timezone-id":"UTC"}'), +(2645, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.012248+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.024765+00', 12, '{"updated-tables":0,"total-tables":8}'), +(2646, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.024837+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.134874+00', 110, '{"total-fields":71,"updated-fields":0}'), +(2647, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.134947+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.141296+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2648, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.142304+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.184082+00', 41, NULL), +(2649, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.194421+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.208669+00', 14, NULL), +(2650, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.194436+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.202963+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2651, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.203043+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.205903+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2652, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.205974+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:19:00.208606+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2653, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:00.007079+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.564253+00', 7557, NULL), +(2654, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:00.007098+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:00.0073+00', 0, '{"timezone-id":null}'), +(2655, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:00.00733+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:00.230159+00', 222, '{"updated-tables":0,"total-tables":27}'), +(2656, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:00.230207+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.561287+00', 7331, '{"total-fields":293,"updated-fields":0}'), +(2657, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.561334+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.563882+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2658, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.563912+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.564236+00', 0, NULL), +(2659, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.587064+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.669542+00', 82, NULL), +(2660, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.58708+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.620647+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2661, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.62076+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.652371+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(2662, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.652428+00', TIMESTAMP WITH TIME ZONE '2022-12-19 17:56:07.669479+00', 17, '{"total-tables":27,"tables-classified":0}'), +(2663, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 18:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:00:00.008+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2664, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 18:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:00:00.003+00', 1, NULL), +(2665, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.008081+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.249851+00', 241, NULL), +(2666, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.0081+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.017114+00', 9, '{"timezone-id":"UTC"}'), +(2667, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.017179+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.030269+00', 13, '{"updated-tables":0,"total-tables":8}'), +(2668, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.030383+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.191948+00', 161, '{"total-fields":71,"updated-fields":0}'), +(2669, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.192133+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.205961+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2670, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.206007+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.249815+00', 43, NULL), +(2671, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.25716+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.29155+00', 34, NULL), +(2672, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.257177+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.28287+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2673, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.282917+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.285471+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2674, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.285502+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:19:00.291528+00', 6, '{"total-tables":8,"tables-classified":0}'), +(2675, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:00.008388+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.390155+00', 6381, NULL), +(2676, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:00.008409+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:00.008625+00', 0, '{"timezone-id":null}'), +(2677, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:00.008655+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:00.058976+00', 50, '{"updated-tables":0,"total-tables":27}'), +(2678, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:00.059018+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.38291+00', 6323, '{"total-fields":293,"updated-fields":0}'), +(2679, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.382992+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.389799+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2680, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.38986+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.390066+00', 0, NULL), +(2681, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.436233+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.719609+00', 283, NULL), +(2682, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.436252+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.686356+00', 250, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2683, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.686539+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.699256+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(2684, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.699313+00', TIMESTAMP WITH TIME ZONE '2022-12-19 18:56:06.719568+00', 20, '{"total-tables":27,"tables-classified":0}'), +(2685, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 19:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:00:00.005+00', 1, NULL), +(2686, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 19:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:00:00.01+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2687, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.005477+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.155462+00', 149, NULL), +(2688, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.005495+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.008165+00', 2, '{"timezone-id":"UTC"}'), +(2689, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.008199+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.015867+00', 7, '{"updated-tables":0,"total-tables":8}'), +(2690, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.0159+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.113227+00', 97, '{"total-fields":71,"updated-fields":0}'), +(2691, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.113266+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.119211+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2692, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.119248+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.155437+00', 36, NULL), +(2693, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.161945+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.174365+00', 12, NULL), +(2694, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.161962+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.169716+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2695, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.169757+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.171881+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2696, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.171913+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:19:00.174344+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2697, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:00.01889+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.426789+00', 7407, NULL), +(2698, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:00.018913+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:00.019169+00', 0, '{"timezone-id":null}'), +(2699, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:00.019203+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:00.202589+00', 183, '{"updated-tables":0,"total-tables":27}'), +(2700, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:00.202635+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.424452+00', 7221, '{"total-fields":293,"updated-fields":0}'), +(2701, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.424494+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.42659+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2702, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.426625+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.426778+00', 0, NULL), +(2703, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.475505+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.653857+00', 178, NULL), +(2704, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.475526+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.617721+00', 142, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2705, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.620057+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.637897+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(2706, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.637975+00', TIMESTAMP WITH TIME ZONE '2022-12-19 19:56:07.653732+00', 15, '{"total-tables":27,"tables-classified":0}'), +(2707, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:00:00.005+00', 1, NULL), +(2708, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 20:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:00:00.008+00', 2, NULL), +(2709, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.0061+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.213629+00', 207, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2710, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.006121+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.013079+00', 6, '{"timezone-id":"UTC"}'), +(2711, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.01312+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.021475+00', 8, '{"updated-tables":0,"total-tables":8}'), +(2712, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.021504+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.168633+00', 147, '{"total-fields":71,"updated-fields":0}'), +(2713, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.168678+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.175188+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2714, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.175222+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.213606+00', 38, NULL), +(2715, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.221309+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.2352+00', 13, NULL), +(2716, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.221324+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.230192+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2717, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.230228+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.232542+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2718, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.23257+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:19:00.235182+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2719, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:00.048414+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.914515+00', 7866, NULL), +(2720, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:00.048436+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:00.048806+00', 0, '{"timezone-id":null}'), +(2721, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:00.048839+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:00.217157+00', 168, '{"updated-tables":0,"total-tables":27}'), +(2722, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:00.217204+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.911731+00', 7694, '{"total-fields":293,"updated-fields":0}'), +(2723, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.911777+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.914093+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2724, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.9142+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.914438+00', 0, NULL), +(2725, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.925543+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.974331+00', 48, NULL), +(2726, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.925556+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.954875+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2727, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.954913+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.962593+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2728, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.962626+00', TIMESTAMP WITH TIME ZONE '2022-12-19 20:56:07.974308+00', 11, '{"total-tables":27,"tables-classified":0}'), +(2729, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.007+00', 1, NULL), +(2730, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.013+00', 4, NULL), +(2731, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.008387+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.705358+00', 696, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2732, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.008405+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.11814+00', 109, '{"deleted":0}'), +(2733, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.118201+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:00:00.705326+00', 587, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(2734, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.003989+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.12646+00', 122, NULL), +(2735, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.004009+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.006838+00', 2, '{"timezone-id":"UTC"}'), +(2736, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.006878+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.012156+00', 5, '{"updated-tables":0,"total-tables":8}'), +(2737, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.012211+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.091935+00', 79, '{"total-fields":71,"updated-fields":0}'), +(2738, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.091968+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.098058+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2739, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.098158+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.126446+00', 28, NULL), +(2740, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.133145+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.147+00', 13, NULL), +(2741, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.133158+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.141037+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2742, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.141137+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.143647+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2743, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.143745+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:19:00.14698+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2744, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:00.009935+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.09003+00', 8080, NULL), +(2745, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:00.009961+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:00.010336+00', 0, '{"timezone-id":null}'), +(2746, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:00.010376+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:00.058671+00', 48, '{"updated-tables":0,"total-tables":27}'), +(2747, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:00.058748+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.086741+00', 8027, '{"total-fields":293,"updated-fields":0}'), +(2748, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.086843+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.089845+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2749, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.089876+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.09002+00', 0, NULL), +(2750, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.100193+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.145955+00', 45, NULL), +(2751, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.100207+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.127444+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2752, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.127526+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.134635+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2753, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.134706+00', TIMESTAMP WITH TIME ZONE '2022-12-19 21:56:08.145898+00', 11, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2754, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 22:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:00:00.007+00', 3, NULL), +(2755, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 22:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:00:00.016+00', 12, NULL), +(2756, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.006886+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.198766+00', 191, NULL), +(2757, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.006906+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.011801+00', 4, '{"timezone-id":"UTC"}'), +(2758, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.012034+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.019657+00', 7, '{"updated-tables":0,"total-tables":8}'), +(2759, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.019692+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.154494+00', 134, '{"total-fields":71,"updated-fields":0}'), +(2760, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.154537+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.164262+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2761, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.164383+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.198656+00', 34, NULL), +(2762, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.205878+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.219986+00', 14, NULL), +(2763, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.205893+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.214278+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2764, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.214313+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.217127+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2765, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.217222+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:19:00.219963+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2766, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:00.012427+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.503414+00', 7490, NULL), +(2767, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:00.01245+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:00.012699+00', 0, '{"timezone-id":null}'), +(2768, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:00.012733+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:00.120879+00', 108, '{"updated-tables":0,"total-tables":27}'), +(2769, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:00.120931+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.49752+00', 7376, '{"total-fields":293,"updated-fields":0}'), +(2770, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.497567+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.502595+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2771, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.502728+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.50339+00', 0, NULL), +(2772, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.528958+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.61112+00', 82, NULL), +(2773, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.528978+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.579789+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2774, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.580393+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.590658+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(2775, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.590699+00', TIMESTAMP WITH TIME ZONE '2022-12-19 22:56:07.611048+00', 20, '{"total-tables":27,"tables-classified":0}'), +(2776, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:00:00.004+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2777, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-19 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:00:00.012+00', 8, NULL), +(2778, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.006373+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.14198+00', 135, NULL), +(2779, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.006393+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.024963+00', 18, '{"timezone-id":"UTC"}'), +(2780, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.02502+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.029166+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2781, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.029195+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.109559+00', 80, '{"total-fields":71,"updated-fields":0}'), +(2782, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.109597+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.11477+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2783, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.1148+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.141964+00', 27, NULL), +(2784, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.148302+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.162309+00', 14, NULL), +(2785, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.148315+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.156682+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2786, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.156781+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.159244+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2787, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.159272+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:19:00.162286+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2788, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:00.006005+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.795652+00', 7789, NULL), +(2789, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:00.006027+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:00.006233+00', 0, '{"timezone-id":null}'), +(2790, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:00.006263+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:00.075286+00', 69, '{"updated-tables":0,"total-tables":27}'), +(2791, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:00.075334+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.792564+00', 7717, '{"total-fields":293,"updated-fields":0}'), +(2792, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.792604+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.795437+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2793, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.79547+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.795641+00', 0, NULL), +(2794, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.819932+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.884302+00', 64, NULL), +(2795, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.81995+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.8586+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2796, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.858654+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.870248+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(2797, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.870301+00', TIMESTAMP WITH TIME ZONE '2022-12-19 23:56:07.884266+00', 13, '{"total-tables":27,"tables-classified":0}'), +(2798, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 00:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:00:00.013+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2799, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 00:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:00:00.014+00', 5, NULL), +(2800, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.006066+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.23583+00', 229, NULL), +(2801, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.006085+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.011789+00', 5, '{"timezone-id":"UTC"}'), +(2802, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.011829+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.022701+00', 10, '{"updated-tables":0,"total-tables":8}'), +(2803, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.022734+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.171997+00', 149, '{"total-fields":71,"updated-fields":0}'), +(2804, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.172049+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.177792+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2805, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.177855+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.235808+00', 57, NULL), +(2806, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.244104+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.262885+00', 18, NULL), +(2807, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.244121+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.258264+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2808, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.258305+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.260603+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2809, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.260631+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:19:00.262865+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2810, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:00.008122+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.024717+00', 8016, NULL), +(2811, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:00.008143+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:00.008421+00', 0, '{"timezone-id":null}'), +(2812, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:00.008494+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:00.058214+00', 49, '{"updated-tables":0,"total-tables":27}'), +(2813, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:00.058263+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.018401+00', 7960, '{"total-fields":293,"updated-fields":0}'), +(2814, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.018445+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.024326+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2815, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.024369+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.024694+00', 0, NULL), +(2816, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.03689+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.101761+00', 64, NULL), +(2817, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.036905+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.081356+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2818, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.081553+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.089145+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(2819, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.089292+00', TIMESTAMP WITH TIME ZONE '2022-12-20 00:56:08.10161+00', 12, '{"total-tables":27,"tables-classified":0}'), +(2820, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 01:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:00:00.004+00', 2, NULL), +(2821, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 01:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:00:00.008+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2822, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.004954+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.285641+00', 280, NULL), +(2823, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.004975+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.008686+00', 3, '{"timezone-id":"UTC"}'), +(2824, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.008726+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.014434+00', 5, '{"updated-tables":0,"total-tables":8}'), +(2825, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.014462+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.222196+00', 207, '{"total-fields":71,"updated-fields":0}'), +(2826, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.222276+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.22962+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2827, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.229654+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.285618+00', 55, NULL), +(2828, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.297745+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.31642+00', 18, NULL), +(2829, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.297762+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.310184+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2830, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.310229+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.313243+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(2831, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.31366+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:19:00.316398+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2832, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:00.012804+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.084577+00', 8071, NULL), +(2833, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:00.012826+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:00.013061+00', 0, '{"timezone-id":null}'), +(2834, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:00.013092+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:00.201234+00', 188, '{"updated-tables":0,"total-tables":27}'), +(2835, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:00.201278+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.081527+00', 7880, '{"total-fields":293,"updated-fields":0}'), +(2836, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.081602+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.084066+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2837, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.084151+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.084517+00', 0, NULL), +(2838, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.103813+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.181768+00', 77, NULL), +(2839, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.103829+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.160469+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2840, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.160549+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.167477+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(2841, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.167511+00', TIMESTAMP WITH TIME ZONE '2022-12-20 01:56:08.18174+00', 14, '{"total-tables":27,"tables-classified":0}'), +(2842, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 02:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:00:00.003+00', 2, NULL), +(2843, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 02:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:00:00.006+00', 3, NULL), +(2844, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.00526+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.470929+00', 465, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2845, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.00528+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.01924+00', 13, '{"timezone-id":"UTC"}'), +(2846, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.019289+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.023719+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2847, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.02375+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.317635+00', 293, '{"total-fields":71,"updated-fields":0}'), +(2848, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.317686+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.34868+00', 30, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2849, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.348734+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.470899+00', 122, NULL), +(2850, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.492726+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.539118+00', 46, NULL), +(2851, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.492743+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.524784+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2852, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.525923+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.532151+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(2853, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.532192+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:19:00.539093+00', 6, '{"total-tables":8,"tables-classified":0}'), +(2854, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:00.008659+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.730258+00', 5721, NULL), +(2855, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:00.008681+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:00.009104+00', 0, '{"timezone-id":null}'), +(2856, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:00.009172+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:00.121332+00', 112, '{"updated-tables":0,"total-tables":27}'), +(2857, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:00.121401+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.726656+00', 5605, '{"total-fields":293,"updated-fields":0}'), +(2858, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.726698+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.730043+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2859, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.730076+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.730247+00', 0, NULL), +(2860, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.75927+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.899954+00', 140, NULL), +(2861, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.759289+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.850721+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2862, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.850773+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.871566+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(2863, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.871622+00', TIMESTAMP WITH TIME ZONE '2022-12-20 02:56:05.899899+00', 28, '{"total-tables":27,"tables-classified":0}'), +(2864, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 03:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:00:00.009+00', 4, NULL), +(2865, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:00:00.01+00', 7, NULL), +(2866, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.003896+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.224385+00', 220, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2867, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.003914+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.007986+00', 4, '{"timezone-id":"UTC"}'), +(2868, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.008018+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.026713+00', 18, '{"updated-tables":0,"total-tables":8}'), +(2869, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.026744+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.175148+00', 148, '{"total-fields":71,"updated-fields":0}'), +(2870, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.175178+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.185079+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2871, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.1852+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.22437+00', 39, NULL), +(2872, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.230742+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.248258+00', 17, NULL), +(2873, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.230754+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.242696+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2874, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.242828+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.245494+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2875, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.245522+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:19:00.24824+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2876, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:00.007982+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.493279+00', 7485, NULL), +(2877, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:00.008003+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:00.008216+00', 0, '{"timezone-id":null}'), +(2878, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:00.008246+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:00.099122+00', 90, '{"updated-tables":0,"total-tables":27}'), +(2879, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:00.099171+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.488961+00', 7389, '{"total-fields":293,"updated-fields":0}'), +(2880, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.489018+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.492958+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2881, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.492991+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.493261+00', 0, NULL), +(2882, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.516754+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.61352+00', 96, NULL), +(2883, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.516771+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.590897+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2884, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.591049+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.600486+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(2885, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.600548+00', TIMESTAMP WITH TIME ZONE '2022-12-20 03:56:07.613452+00', 12, '{"total-tables":27,"tables-classified":0}'), +(2886, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:00:00.005+00', 1, NULL), +(2887, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 04:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:00:00.009+00', 3, NULL), +(2888, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.006946+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.163424+00', 156, NULL), +(2889, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.006969+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.013471+00', 6, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2890, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.013575+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.023376+00', 9, '{"updated-tables":0,"total-tables":8}'), +(2891, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.023457+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.120671+00', 97, '{"total-fields":71,"updated-fields":0}'), +(2892, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.120884+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.128376+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2893, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.128594+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.163401+00', 34, NULL), +(2894, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.171127+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.187829+00', 16, NULL), +(2895, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.171144+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.180256+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2896, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.180512+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.184098+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(2897, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.184311+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:19:00.187737+00', 3, '{"total-tables":8,"tables-classified":0}'), +(2898, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:00.006441+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.090116+00', 8083, NULL), +(2899, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:00.006465+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:00.006695+00', 0, '{"timezone-id":null}'), +(2900, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:00.006727+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:00.111828+00', 105, '{"updated-tables":0,"total-tables":27}'), +(2901, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:00.111897+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.087884+00', 7975, '{"total-fields":293,"updated-fields":0}'), +(2902, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.087923+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.089896+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2903, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.089926+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.090072+00', 0, NULL), +(2904, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.099418+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.152567+00', 53, NULL), +(2905, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.099481+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.132335+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2906, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.132383+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.140498+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(2907, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.140536+00', TIMESTAMP WITH TIME ZONE '2022-12-20 04:56:08.152542+00', 12, '{"total-tables":27,"tables-classified":0}'), +(2908, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:00:00.005+00', 2, NULL), +(2909, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 05:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:00:00.012+00', 3, NULL), +(2910, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.00526+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.165426+00', 160, NULL), +(2911, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.005281+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.037659+00', 32, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2912, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.037706+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.042253+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2913, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.042437+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.12387+00', 81, '{"total-fields":71,"updated-fields":0}'), +(2914, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.124043+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.129942+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2915, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.130096+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.165409+00', 35, NULL), +(2916, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.171809+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.184178+00', 12, NULL), +(2917, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.171821+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.179774+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2918, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.179803+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.182002+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2919, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.182029+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:19:00.184161+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2920, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:00.006246+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.793098+00', 6786, NULL), +(2921, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:00.006267+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:00.006461+00', 0, '{"timezone-id":null}'), +(2922, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:00.006491+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:00.038354+00', 31, '{"updated-tables":0,"total-tables":27}'), +(2923, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:00.038423+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.790713+00', 6752, '{"total-fields":293,"updated-fields":0}'), +(2924, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.790754+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.792855+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2925, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.792905+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.793084+00', 0, NULL), +(2926, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.815429+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.970516+00', 155, NULL), +(2927, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.815445+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.859121+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2928, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.859174+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.949509+00', 90, '{"fields-classified":0,"fields-failed":0}'), +(2929, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.949572+00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:56:06.970473+00', 20, '{"total-tables":27,"tables-classified":0}'), +(2930, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:00.004+00', 2, NULL), +(2931, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:00.038+00', 33, NULL), +(2932, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.005719+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.19409+00', 188, NULL), +(2933, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.005735+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.013756+00', 8, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2934, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.01389+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.018208+00', 4, '{"updated-tables":0,"total-tables":8}'), +(2935, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.018238+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.155646+00', 137, '{"total-fields":71,"updated-fields":0}'), +(2936, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.155689+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.161191+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2937, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.161223+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.194073+00', 32, NULL), +(2938, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.209307+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.22221+00', 12, NULL), +(2939, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.209321+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.217588+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2940, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.217621+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.219934+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2941, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.219961+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:00.222191+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2942, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:00.077788+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.227523+00', 17149, NULL), +(2943, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:00.077812+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:00.078055+00', 0, '{"timezone-id":null}'), +(2944, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:00.078101+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:00.122891+00', 44, '{"updated-tables":0,"total-tables":27}'), +(2945, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:00.122967+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.222481+00', 17099, '{"total-fields":293,"updated-fields":0}'), +(2946, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.222522+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.227327+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2947, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.227355+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.227512+00', 0, NULL), +(2948, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.249297+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.409692+00', 160, NULL), +(2949, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.24931+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.343766+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2950, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.343815+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.36132+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(2951, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.36137+00', TIMESTAMP WITH TIME ZONE '2022-12-20 06:56:17.409647+00', 48, '{"total-tables":27,"tables-classified":0}'), +(2952, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 07:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:00:00.014+00', 12, NULL), +(2953, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 07:00:00.015+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:00:00.027+00', 12, NULL), +(2954, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.003912+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.248345+00', 244, NULL), +(2955, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.003932+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.0422+00', 38, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2956, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.042252+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.05151+00', 9, '{"updated-tables":0,"total-tables":8}'), +(2957, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.051541+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.197842+00', 146, '{"total-fields":71,"updated-fields":0}'), +(2958, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.197887+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.206118+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(2959, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.206179+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.248325+00', 42, NULL), +(2960, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.260724+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.277628+00', 16, NULL), +(2961, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.26074+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.271863+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(2962, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.27197+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.27486+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(2963, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.274954+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:19:00.277587+00', 2, '{"total-tables":8,"tables-classified":0}'), +(2964, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:00.167855+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:08.458464+00', 8290, NULL), +(2965, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:00.167876+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:01.456166+00', 1288, '{"deleted":0}'), +(2966, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:01.456223+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:08.458389+00', 7002, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(2967, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:59.587186+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.450476+00', 12863, NULL), +(2968, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:59.587206+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:59.587414+00', 0, '{"timezone-id":null}'), +(2969, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:59.587445+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:59.661647+00', 74, '{"updated-tables":0,"total-tables":27}'), +(2970, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:59.661723+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.44781+00', 12786, '{"total-fields":310,"updated-fields":19}'), +(2971, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.447856+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.449996+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2972, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.45009+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.450458+00', 0, NULL), +(2973, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.462806+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.70812+00', 245, NULL), +(2974, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.462821+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.622304+00', 159, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":17,"fingerprints-attempted":17}'), +(2975, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.622354+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.676049+00', 53, '{"fields-classified":17,"fields-failed":0}'), +(2976, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.676101+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:12.708077+00', 31, '{"total-tables":27,"tables-classified":0}'), +(2977, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.889571+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:52.697144+00', 7807, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(2978, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.88959+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:45.448614+00', 559, '{"deleted":0}'), +(2979, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:45.448665+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:52.697113+00', 7248, '{"errors":0,"created":13,"updated":0,"deleted":0}'), +(2980, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.207562+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.525975+00', 11318, NULL), +(2981, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.207583+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.207793+00', 0, '{"timezone-id":null}'), +(2982, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.207822+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.235681+00', 27, '{"updated-tables":0,"total-tables":27}'), +(2983, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:44.235719+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.51636+00', 11280, '{"total-fields":315,"updated-fields":13}'), +(2984, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.516536+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.523606+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2985, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.523747+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.525758+00', 2, NULL), +(2986, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.567983+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.944033+00', 376, NULL), +(2987, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.568008+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.854631+00', 286, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":12,"fingerprints-attempted":12}'), +(2988, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.854685+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.90212+00', 47, '{"fields-classified":12,"fields-failed":0}'), +(2989, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.902173+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:55.943981+00', 41, '{"total-tables":27,"tables-classified":0}'), +(2990, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:34.092017+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:39.395883+00', 5303, NULL), +(2991, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:34.092039+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:34.791177+00', 699, '{"deleted":0}'), +(2992, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:34.791232+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:39.395853+00', 4604, '{"errors":0,"created":10,"updated":0,"deleted":0}'), +(2993, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:33.716092+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.874885+00', 8158, NULL), +(2994, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:33.716113+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:33.716369+00', 0, '{"timezone-id":null}'), +(2995, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:33.716402+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:33.785905+00', 69, '{"updated-tables":0,"total-tables":27}'), +(2996, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:33.78595+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.872365+00', 8086, '{"total-fields":316,"updated-fields":16}'), +(2997, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.872407+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.874669+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(2998, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.8747+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.874873+00', 0, NULL), +(2999, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.899123+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:42.140807+00', 241, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3000, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:41.899142+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:42.069432+00', 170, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":2,"fingerprints-attempted":2}'), +(3001, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:42.069479+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:42.107209+00', 37, '{"fields-classified":2,"fields-failed":0}'), +(3002, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:42.107257+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:42.140752+00', 33, '{"total-tables":27,"tables-classified":0}'), +(3003, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:00.007066+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.480233+00', 8473, NULL), +(3004, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:00.007088+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:00.007296+00', 0, '{"timezone-id":null}'), +(3005, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:00.007334+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:00.040674+00', 33, '{"updated-tables":0,"total-tables":27}'), +(3006, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:00.040744+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.477166+00', 8436, '{"total-fields":316,"updated-fields":0}'), +(3007, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.47721+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.479838+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3008, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.479969+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.480216+00', 0, NULL), +(3009, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.500883+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.572362+00', 71, NULL), +(3010, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.5009+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.539964+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3011, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.540088+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.549973+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(3012, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.550016+00', TIMESTAMP WITH TIME ZONE '2022-12-20 07:56:08.572328+00', 22, '{"total-tables":27,"tables-classified":0}'), +(3013, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 08:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:00:00.003+00', 1, NULL), +(3014, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 08:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:00:00.035+00', 31, NULL), +(3015, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.005961+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.142973+00', 137, NULL), +(3016, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.005984+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.018008+00', 12, '{"timezone-id":"UTC"}'), +(3017, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.018051+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.022307+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3018, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.022337+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.103784+00', 81, '{"total-fields":71,"updated-fields":0}'), +(3019, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.103819+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.110303+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3020, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.110331+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.142958+00', 32, NULL), +(3021, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.152039+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.166065+00', 14, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3022, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.152054+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.160506+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3023, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.160538+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.163471+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3024, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.163525+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:19:00.166047+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3025, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:00.00693+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.416415+00', 7409, NULL), +(3026, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:00.00695+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:00.007152+00', 0, '{"timezone-id":null}'), +(3027, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:00.007181+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:00.04895+00', 41, '{"updated-tables":0,"total-tables":27}'), +(3028, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:00.04919+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.407447+00', 7358, '{"total-fields":316,"updated-fields":0}'), +(3029, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.407497+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.41596+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3030, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.416063+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.416396+00', 0, NULL), +(3031, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.432268+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.610731+00', 178, NULL), +(3032, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.432284+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.571983+00', 139, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3033, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.572038+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.588304+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(3034, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.588355+00', TIMESTAMP WITH TIME ZONE '2022-12-20 08:56:07.610696+00', 22, '{"total-tables":27,"tables-classified":0}'), +(3035, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:00:00.004+00', 1, NULL), +(3036, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:00:00.036+00', 32, NULL), +(3037, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.007568+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.29931+00', 291, NULL), +(3038, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.00759+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.017539+00', 9, '{"timezone-id":"UTC"}'), +(3039, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.018579+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.034064+00', 15, '{"updated-tables":0,"total-tables":8}'), +(3040, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.0341+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.224674+00', 190, '{"total-fields":71,"updated-fields":0}'), +(3041, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.224707+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.24169+00', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3042, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.241734+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.299294+00', 57, NULL), +(3043, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.308419+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.327807+00', 19, NULL), +(3044, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.308432+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.320321+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3045, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.320359+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.325264+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(3046, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.325292+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:00.32779+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3047, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.671814+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:55.275404+00', 8603, NULL), +(3048, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.67183+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:47.116538+00', 444, '{"deleted":0}'), +(3049, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:47.11659+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:55.275372+00', 8158, '{"errors":0,"created":1,"updated":9,"deleted":0}'), +(3050, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.237002+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.282355+00', 13045, NULL), +(3051, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.237024+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.237256+00', 0, '{"timezone-id":null}'), +(3052, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.237301+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.277341+00', 40, '{"updated-tables":0,"total-tables":27}'), +(3053, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:46.277384+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.279814+00', 13002, '{"total-fields":316,"updated-fields":0}'), +(3054, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.279862+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.281936+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3055, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.281971+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.282336+00', 0, NULL), +(3056, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.298089+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.381174+00', 83, NULL), +(3057, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.298104+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.356932+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3058, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.356987+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.36462+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3059, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.364736+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:59.381144+00', 16, '{"total-tables":27,"tables-classified":0}'), +(3060, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:00.006241+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.80963+00', 12803, NULL), +(3061, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:00.006261+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:00.006464+00', 0, '{"timezone-id":null}'), +(3062, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:00.00649+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:00.084867+00', 78, '{"updated-tables":0,"total-tables":27}'), +(3063, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:00.084903+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.805775+00', 12720, '{"total-fields":317,"updated-fields":7}'), +(3064, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.807054+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.809308+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3065, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.809343+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.809614+00', 0, NULL), +(3066, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.839148+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.967045+00', 127, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3067, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.839177+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.945487+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":1,"fingerprints-attempted":1}'), +(3068, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.945538+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.956788+00', 11, '{"fields-classified":1,"fields-failed":0}'), +(3069, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.956834+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:12.96699+00', 10, '{"total-tables":27,"tables-classified":0}'), +(3070, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:55.470484+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:03.840799+00', 8370, NULL), +(3071, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:55.470503+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:56.55896+00', 1088, '{"deleted":0}'), +(3072, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:56.559114+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:03.840773+00', 7281, '{"errors":0,"created":1,"updated":6,"deleted":0}'), +(3073, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:54.673355+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.747615+00', 11074, NULL), +(3074, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:54.673376+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:54.673575+00', 0, '{"timezone-id":null}'), +(3075, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:54.673603+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:54.737058+00', 63, '{"updated-tables":0,"total-tables":27}'), +(3076, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:54.73719+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.745393+00', 11008, '{"total-fields":317,"updated-fields":0}'), +(3077, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.745432+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.747425+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3078, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.747454+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.747604+00', 0, NULL), +(3079, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.758596+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.841381+00', 82, NULL), +(3080, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.758614+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.803809+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3081, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.803863+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.826677+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(3082, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.826741+00', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:05.84134+00', 14, '{"total-tables":27,"tables-classified":0}'), +(3083, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:00.019+00', 10, NULL), +(3084, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:00.009+00', 5, NULL), +(3085, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.005098+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.158064+00', 152, NULL), +(3086, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.005131+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.020961+00', 15, '{"timezone-id":"UTC"}'), +(3087, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.021006+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.036246+00', 15, '{"updated-tables":0,"total-tables":8}'), +(3088, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.036286+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.121231+00', 84, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3089, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.121275+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.127469+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3090, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.127505+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.158041+00', 30, NULL), +(3091, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.165174+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.179115+00', 13, NULL), +(3092, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.165188+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.173456+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3093, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.17349+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.176283+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3094, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.176314+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:00.179085+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3095, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:00.060986+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.891868+00', 5830, NULL), +(3096, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:00.061015+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:00.061201+00', 0, '{"timezone-id":null}'), +(3097, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:00.061226+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:00.095776+00', 34, '{"updated-tables":0,"total-tables":27}'), +(3098, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:00.095814+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.889543+00', 5793, '{"total-fields":317,"updated-fields":0}'), +(3099, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.889586+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.891551+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3100, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.891583+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.89185+00', 0, NULL), +(3101, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.902359+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.944765+00', 42, NULL), +(3102, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.902372+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.927905+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3103, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.927943+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.93483+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3104, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.934861+00', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:05.944742+00', 9, '{"total-tables":27,"tables-classified":0}'), +(3105, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:00.017+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:00.018+00', 1, NULL), +(3106, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:00.017+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:00.025+00', 8, NULL), +(3107, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.019028+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.267893+00', 248, NULL), +(3108, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.019059+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.024259+00', 5, '{"timezone-id":"UTC"}'), +(3109, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.024302+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.032031+00', 7, '{"updated-tables":0,"total-tables":8}'), +(3110, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.032074+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.182709+00', 150, '{"total-fields":71,"updated-fields":0}'), +(3111, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.182751+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.203643+00', 20, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3112, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.203687+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.267869+00', 64, NULL), +(3113, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.278547+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.297976+00', 19, NULL), +(3114, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.278563+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.290627+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3115, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.290666+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.293654+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3116, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.293687+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:00.297793+00', 4, '{"total-tables":8,"tables-classified":0}'), +(3117, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:00.062209+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.299274+00', 14237, NULL), +(3118, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:00.06223+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:00.062502+00', 0, '{"timezone-id":null}'), +(3119, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:00.062537+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:00.20155+00', 139, '{"updated-tables":0,"total-tables":27}'), +(3120, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:00.201601+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.290433+00', 14088, '{"total-fields":317,"updated-fields":0}'), +(3121, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.290492+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.299057+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3122, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.299098+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.299262+00', 0, NULL), +(3123, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.324096+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.466653+00', 142, NULL), +(3124, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.324117+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.420315+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3125, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.420377+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.444957+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(3126, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.445019+00', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:14.466588+00', 21, '{"total-tables":27,"tables-classified":0}'), +(3127, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 12:00:00.023+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:00:00.034+00', 11, NULL), +(3128, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 12:00:00.06+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:00:00.061+00', 1, NULL), +(3129, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.00413+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.173349+00', 169, NULL), +(3130, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.004147+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.007684+00', 3, '{"timezone-id":"UTC"}'), +(3131, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.00772+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.02009+00', 12, '{"updated-tables":0,"total-tables":8}'), +(3132, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.020125+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.131861+00', 111, '{"total-fields":71,"updated-fields":0}'), +(3133, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.131906+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.13766+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3134, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.137698+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.173322+00', 35, NULL), +(3135, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.183029+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.199222+00', 16, NULL), +(3136, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.183046+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.19341+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3137, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.193452+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.19651+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3138, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.196594+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:00.199201+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3139, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:00.015214+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.400985+00', 14385, NULL), +(3140, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:00.01523+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:00.015445+00', 0, '{"timezone-id":null}'), +(3141, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:00.015478+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:00.090014+00', 74, '{"updated-tables":0,"total-tables":27}'), +(3142, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:00.09005+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.398751+00', 14308, '{"total-fields":317,"updated-fields":0}'), +(3143, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.398784+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.40077+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3144, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.400796+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.400975+00', 0, NULL), +(3145, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.41153+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.617568+00', 206, NULL), +(3146, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.411569+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.574797+00', 163, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3147, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.574838+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.591153+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(3148, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.591201+00', TIMESTAMP WITH TIME ZONE '2022-12-20 12:56:14.617457+00', 26, '{"total-tables":27,"tables-classified":0}'), +(3149, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.026+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.027+00', 1, NULL), +(3150, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.033+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.076+00', 43, NULL), +(3151, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.031339+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:06.509528+00', 6478, NULL), +(3152, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.031358+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.773434+00', 742, '{"deleted":0}'), +(3153, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:00.773477+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:00:06.509497+00', 5736, '{"errors":0,"created":0,"updated":25,"deleted":0}'), +(3154, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.050958+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.407818+00', 5356, NULL), +(3155, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.050983+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.152524+00', 101, '{"timezone-id":"UTC"}'), +(3156, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.260638+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.684391+00', 423, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3157, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.684436+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.166805+00', 4482, '{"total-fields":71,"updated-fields":0}'), +(3158, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.166881+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.232852+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3159, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.232937+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.407788+00', 174, NULL), +(3160, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.446487+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.560389+00', 113, NULL), +(3161, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.446505+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.516999+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3162, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.51705+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.543301+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(3163, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.543356+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.560353+00', 16, '{"total-tables":8,"tables-classified":0}'), +(3164, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:56.395174+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:08.303795+00', 11908, NULL), +(3165, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:56.395194+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:57.118386+00', 723, '{"deleted":0}'), +(3166, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:57.118438+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:08.303729+00', 11185, '{"errors":0,"created":0,"updated":5,"deleted":0}'), +(3167, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:55.682657+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.725665+00', 15043, NULL), +(3168, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:55.68268+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:55.683556+00', 0, '{"timezone-id":null}'), +(3169, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:55.683593+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:55.713688+00', 30, '{"updated-tables":0,"total-tables":27}'), +(3170, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:55.713722+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.72006+00', 15006, '{"total-fields":317,"updated-fields":0}'), +(3171, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.720113+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.725319+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3172, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.725432+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.725651+00', 0, NULL), +(3173, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.746715+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.796787+00', 50, NULL), +(3174, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.746733+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.776832+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3175, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.776877+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.78385+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3176, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.783888+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.796762+00', 12, '{"total-tables":27,"tables-classified":0}'), +(3177, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:00.089158+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.703356+00', 15614, NULL), +(3178, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:00.08918+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:00.089407+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3179, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:00.089438+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:00.136441+00', 47, '{"updated-tables":0,"total-tables":27}'), +(3180, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:00.136487+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.700494+00', 15564, '{"total-fields":317,"updated-fields":0}'), +(3181, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.700535+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.70311+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3182, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.70314+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.703339+00', 0, NULL), +(3183, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.715363+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.758307+00', 42, NULL), +(3184, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.71538+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.741539+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3185, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.741584+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.748316+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3186, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.748351+00', TIMESTAMP WITH TIME ZONE '2022-12-20 13:56:15.758283+00', 9, '{"total-tables":27,"tables-classified":0}'), +(3187, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 14:00:00.038+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:00:00.047+00', 9, NULL), +(3188, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 14:00:00.024+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:00:00.068+00', 44, NULL), +(3189, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.279081+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.041961+00', 762, NULL), +(3190, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.280035+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.40638+00', 126, '{"timezone-id":"UTC"}'), +(3191, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.434395+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.663436+00', 229, '{"updated-tables":0,"total-tables":8}'), +(3192, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.66349+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.878753+00', 215, '{"total-fields":71,"updated-fields":0}'), +(3193, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.878793+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.910209+00', 31, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3194, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.910257+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.041936+00', 131, NULL), +(3195, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.088694+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.138965+00', 50, NULL), +(3196, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.088714+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.10276+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3197, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.102805+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.106906+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(3198, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.10694+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:01.138934+00', 31, '{"total-tables":8,"tables-classified":0}'), +(3199, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:00.017607+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.164839+00', 10147, NULL), +(3200, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:00.017629+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:00.017876+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3201, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:00.01791+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:00.161783+00', 143, '{"updated-tables":0,"total-tables":27}'), +(3202, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:00.161947+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.158988+00', 9997, '{"total-fields":317,"updated-fields":0}'), +(3203, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.159024+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.164664+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3204, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.164691+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.164829+00', 0, NULL), +(3205, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.251563+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.316574+00', 65, NULL), +(3206, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.251578+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.292287+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3207, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.292327+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.298999+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3208, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.303121+00', TIMESTAMP WITH TIME ZONE '2022-12-20 14:56:10.316551+00', 13, '{"total-tables":27,"tables-classified":0}'), +(3209, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 15:00:00.122+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:00:00.202+00', 80, NULL), +(3210, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 15:00:00.163+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:00:00.202+00', 39, NULL), +(3211, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.075493+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.618165+00', 542, NULL), +(3212, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.075549+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.326877+00', 251, '{"timezone-id":"UTC"}'), +(3213, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.326938+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.335446+00', 8, '{"updated-tables":0,"total-tables":8}'), +(3214, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.335493+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.554768+00', 219, '{"total-fields":71,"updated-fields":0}'), +(3215, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.554826+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.573808+00', 18, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3216, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.573899+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.61814+00', 44, NULL), +(3217, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.629506+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.67305+00', 43, NULL), +(3218, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.629525+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.659887+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3219, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.659945+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.670272+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(3220, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.670324+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:19:00.673025+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3221, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:00.011894+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:07.868416+00', 7856, NULL), +(3222, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:00.011916+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:00.012134+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3223, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:00.012166+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:00.0469+00', 34, '{"updated-tables":0,"total-tables":27}'), +(3224, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:00.046945+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:07.854286+00', 7807, '{"total-fields":317,"updated-fields":0}'), +(3225, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:07.855364+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:07.866782+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3226, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:07.867994+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:07.868395+00', 0, NULL), +(3227, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.042522+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.098815+00', 56, NULL), +(3228, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.042542+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.079021+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3229, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.079071+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.086547+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3230, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.086593+00', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:08.098784+00', 12, '{"total-tables":27,"tables-classified":0}'), +(3231, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.028+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.029+00', 1, NULL), +(3232, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.28+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.345+00', 65, NULL), +(3233, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.014203+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.29276+00', 278, NULL), +(3234, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.014227+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.040277+00', 26, '{"timezone-id":"UTC"}'), +(3235, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.040327+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.061174+00', 20, '{"updated-tables":0,"total-tables":8}'), +(3236, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.061208+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.20805+00', 146, '{"total-fields":71,"updated-fields":0}'), +(3237, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.208233+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.214787+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3238, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.21491+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.292736+00', 77, NULL), +(3239, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.339909+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.374838+00', 34, NULL), +(3240, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.339928+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.357736+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3241, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.357889+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.36691+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(3242, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.366948+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:00.374814+00', 7, '{"total-tables":8,"tables-classified":0}'), +(3243, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:00.007386+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.845812+00', 11838, NULL), +(3244, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:00.007409+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:00.007599+00', 0, '{"timezone-id":null}'), +(3245, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:00.007637+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:00.050756+00', 43, '{"updated-tables":0,"total-tables":27}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3246, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:00.050798+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.83737+00', 11786, '{"total-fields":317,"updated-fields":0}'), +(3247, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.837443+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.845366+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3248, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.845445+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.845794+00', 0, NULL), +(3249, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.869283+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.972368+00', 103, NULL), +(3250, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.869303+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.925854+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3251, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.925908+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.937773+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(3252, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.937847+00', TIMESTAMP WITH TIME ZONE '2022-12-20 16:56:11.972303+00', 34, '{"total-tables":27,"tables-classified":0}'), +(3253, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 17:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:00:00.014+00', 8, NULL), +(3254, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 17:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:00:00.014+00', 8, NULL), +(3255, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.028699+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.249251+00', 220, NULL), +(3256, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.028716+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.032444+00', 3, '{"timezone-id":"UTC"}'), +(3257, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.032488+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.053561+00', 21, '{"updated-tables":0,"total-tables":8}'), +(3258, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.053599+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.191674+00', 138, '{"total-fields":71,"updated-fields":0}'), +(3259, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.191711+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.201642+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3260, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.201679+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.24923+00', 47, NULL), +(3261, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.262251+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.558622+00', 296, NULL), +(3262, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.262268+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.546544+00', 284, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3263, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.546598+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.550712+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(3264, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.55112+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:19:00.558599+00', 7, '{"total-tables":8,"tables-classified":0}'), +(3265, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:00.005027+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.661794+00', 15656, NULL), +(3266, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:00.005048+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:00.005237+00', 0, '{"timezone-id":null}'), +(3267, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:00.005266+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:00.042859+00', 37, '{"updated-tables":0,"total-tables":27}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3268, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:00.042903+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.654649+00', 15611, '{"total-fields":317,"updated-fields":0}'), +(3269, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.654702+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.660809+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3270, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.661171+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.661774+00', 0, NULL), +(3271, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.715854+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.782493+00', 66, NULL), +(3272, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.715875+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.76057+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3273, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.760623+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.768142+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3274, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.768184+00', TIMESTAMP WITH TIME ZONE '2022-12-20 17:56:15.782462+00', 14, '{"total-tables":27,"tables-classified":0}'), +(3275, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 18:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:00:00.01+00', 2, NULL), +(3276, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 18:00:00.013+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:00:00.018+00', 5, NULL), +(3277, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.004697+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.158168+00', 153, NULL), +(3278, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.004718+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.01865+00', 13, '{"timezone-id":"UTC"}'), +(3279, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.018707+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.028294+00', 9, '{"updated-tables":0,"total-tables":8}'), +(3280, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.028329+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.118273+00', 89, '{"total-fields":71,"updated-fields":0}'), +(3281, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.118309+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.125505+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3282, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.125663+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.15815+00', 32, NULL), +(3283, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.16599+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.179349+00', 13, NULL), +(3284, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.166006+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.174263+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3285, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.174296+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.176689+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3286, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.176716+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:19:00.17933+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3287, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:00.00833+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.392324+00', 8383, NULL), +(3288, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:00.008352+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:00.008577+00', 0, '{"timezone-id":null}'), +(3289, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:00.008608+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:00.076761+00', 68, '{"updated-tables":0,"total-tables":27}'), +(3290, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:00.076804+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.388634+00', 8311, '{"total-fields":317,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3291, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.389518+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.391918+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3292, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.391954+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.392306+00', 0, NULL), +(3293, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.445226+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.527497+00', 82, NULL), +(3294, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.445247+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.500004+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3295, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.500066+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.510668+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(3296, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.510709+00', TIMESTAMP WITH TIME ZONE '2022-12-20 18:56:08.527453+00', 16, '{"total-tables":27,"tables-classified":0}'), +(3297, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 19:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:00:00.008+00', 1, NULL), +(3298, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 19:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:00:00.012+00', 3, NULL), +(3299, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.005094+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.18589+00', 180, NULL), +(3300, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.005114+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.02905+00', 23, '{"timezone-id":"UTC"}'), +(3301, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.029101+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.043129+00', 14, '{"updated-tables":0,"total-tables":8}'), +(3302, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.043169+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.152186+00', 109, '{"total-fields":71,"updated-fields":0}'), +(3303, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.152226+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.158055+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3304, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.158098+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.185872+00', 27, NULL), +(3305, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.194559+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.207902+00', 13, NULL), +(3306, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.194581+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.202749+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3307, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.202784+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.20523+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3308, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.205262+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:19:00.207879+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3309, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:00.015329+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.950283+00', 7934, NULL), +(3310, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:00.015366+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:00.015652+00', 0, '{"timezone-id":null}'), +(3311, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:00.015697+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:00.099367+00', 83, '{"updated-tables":0,"total-tables":27}'), +(3312, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:00.099477+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.947332+00', 7847, '{"total-fields":317,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3313, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.947505+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.949739+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3314, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.949874+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.950186+00', 0, NULL), +(3315, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.964457+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:08.049972+00', 85, NULL), +(3316, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:07.964472+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:08.026493+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3317, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:08.026577+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:08.034225+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3318, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:08.034277+00', TIMESTAMP WITH TIME ZONE '2022-12-20 19:56:08.04993+00', 15, '{"total-tables":27,"tables-classified":0}'), +(3319, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 20:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:00:00.003+00', 1, NULL), +(3320, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:00:00.006+00', 2, NULL), +(3321, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.006108+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.188863+00', 182, NULL), +(3322, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.006125+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.011435+00', 5, '{"timezone-id":"UTC"}'), +(3323, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.011476+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.016523+00', 5, '{"updated-tables":0,"total-tables":8}'), +(3324, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.016553+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.149658+00', 133, '{"total-fields":71,"updated-fields":0}'), +(3325, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.149696+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.154786+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3326, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.154817+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.188843+00', 34, NULL), +(3327, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.195718+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.220517+00', 24, NULL), +(3328, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.195731+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.207975+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3329, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.208029+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.215504+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3330, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.215546+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:19:00.220491+00', 4, '{"total-tables":8,"tables-classified":0}'), +(3331, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:00.006993+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.907932+00', 7900, NULL), +(3332, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:00.007032+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:00.007385+00', 0, '{"timezone-id":null}'), +(3333, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:00.007424+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:00.167257+00', 159, '{"updated-tables":0,"total-tables":27}'), +(3334, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:00.167302+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.902119+00', 7734, '{"total-fields":317,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3335, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.902198+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.907507+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3336, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.907546+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.90788+00', 0, NULL), +(3337, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.920909+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.990103+00', 69, NULL), +(3338, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.920921+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.953011+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3339, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.953057+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.970561+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(3340, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.970618+00', TIMESTAMP WITH TIME ZONE '2022-12-20 20:56:07.990072+00', 19, '{"total-tables":27,"tables-classified":0}'), +(3341, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.028+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.029+00', 1, NULL), +(3342, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.03+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.032+00', 2, NULL), +(3343, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.046825+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.648638+00', 601, NULL), +(3344, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.046841+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.130874+00', 84, '{"deleted":0}'), +(3345, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.131038+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:00:00.648613+00', 517, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(3346, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.006423+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.250935+00', 244, NULL), +(3347, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.00644+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.010169+00', 3, '{"timezone-id":"UTC"}'), +(3348, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.01022+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.014326+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3349, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.014356+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.126345+00', 111, '{"total-fields":71,"updated-fields":0}'), +(3350, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.126385+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.131445+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3351, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.131482+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.250907+00', 119, NULL), +(3352, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.257511+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.271603+00', 14, NULL), +(3353, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.257523+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.265982+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3354, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.266019+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.26878+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3355, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.268811+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:19:00.271583+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3356, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:00.009113+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.163865+00', 7154, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3357, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:00.009129+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:00.009318+00', 0, '{"timezone-id":null}'), +(3358, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:00.009347+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:00.116333+00', 106, '{"updated-tables":0,"total-tables":27}'), +(3359, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:00.116382+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.159329+00', 7042, '{"total-fields":317,"updated-fields":0}'), +(3360, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.159378+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.163664+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3361, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.163699+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.163855+00', 0, NULL), +(3362, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.178934+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.423739+00', 244, NULL), +(3363, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.178947+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.381277+00', 202, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3364, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.381474+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.405242+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(3365, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.40534+00', TIMESTAMP WITH TIME ZONE '2022-12-20 21:56:07.423682+00', 18, '{"total-tables":27,"tables-classified":0}'), +(3366, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 22:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:00:00.007+00', 1, NULL), +(3367, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 22:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:00:00.015+00', 7, NULL), +(3368, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.005728+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.126502+00', 120, NULL), +(3369, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.005743+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.009852+00', 4, '{"timezone-id":"UTC"}'), +(3370, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.009892+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.014101+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3371, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.01413+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.09061+00', 76, '{"total-fields":71,"updated-fields":0}'), +(3372, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.090646+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.09594+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3373, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.095971+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.126489+00', 30, NULL), +(3374, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.132631+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.144654+00', 12, NULL), +(3375, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.13264+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.140244+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3376, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.140273+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.142388+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3377, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.142414+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:19:00.144637+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3378, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:00.005582+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.36507+00', 7359, NULL), +(3379, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:00.0056+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:00.005797+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3380, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:00.006146+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:00.163059+00', 156, '{"updated-tables":0,"total-tables":27}'), +(3381, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:00.163107+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.333559+00', 7170, '{"total-fields":317,"updated-fields":0}'), +(3382, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.333621+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.364567+00', 30, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3383, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.364633+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.365053+00', 0, NULL), +(3384, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.400435+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.571177+00', 170, NULL), +(3385, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.400451+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.443462+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3386, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.44352+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.451414+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3387, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.45146+00', TIMESTAMP WITH TIME ZONE '2022-12-20 22:56:07.571133+00', 119, '{"total-tables":27,"tables-classified":0}'), +(3388, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 23:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:00:00.007+00', 1, NULL), +(3389, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-20 23:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:00:00.044+00', 36, NULL), +(3390, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.005362+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.246869+00', 241, NULL), +(3391, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.005377+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.012824+00', 7, '{"timezone-id":"UTC"}'), +(3392, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.012866+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.025275+00', 12, '{"updated-tables":0,"total-tables":8}'), +(3393, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.025303+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.137881+00', 112, '{"total-fields":71,"updated-fields":0}'), +(3394, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.137929+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.143304+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3395, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.143333+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.246853+00', 103, NULL), +(3396, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.255137+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.270926+00', 15, NULL), +(3397, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.255148+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.263291+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3398, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.263321+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.268302+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(3399, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.268327+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:19:00.270909+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3400, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:00.008149+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.427868+00', 8419, NULL), +(3401, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:00.008166+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:00.008377+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3402, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:00.008407+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:00.1045+00', 96, '{"updated-tables":0,"total-tables":27}'), +(3403, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:00.104547+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.425214+00', 8320, '{"total-fields":317,"updated-fields":0}'), +(3404, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.425264+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.427616+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3405, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.427648+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.427858+00', 0, NULL), +(3406, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.438829+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.527247+00', 88, NULL), +(3407, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.438844+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.499647+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3408, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.499703+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.509571+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(3409, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.509629+00', TIMESTAMP WITH TIME ZONE '2022-12-20 23:56:08.527191+00', 17, '{"total-tables":27,"tables-classified":0}'), +(3410, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 00:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:00:00.008+00', 6, NULL), +(3411, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 00:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:00:00.008+00', 5, NULL), +(3412, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.004076+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.202568+00', 198, NULL), +(3413, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.004091+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.016064+00', 11, '{"timezone-id":"UTC"}'), +(3414, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.016111+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.022736+00', 6, '{"updated-tables":0,"total-tables":8}'), +(3415, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.022773+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.15903+00', 136, '{"total-fields":71,"updated-fields":0}'), +(3416, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.15907+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.164326+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3417, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.164358+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.202546+00', 38, NULL), +(3418, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.210277+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.224968+00', 14, NULL), +(3419, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.210289+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.219181+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3420, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.219284+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.221957+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3421, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.222052+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:19:00.224946+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3422, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:00.005306+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:07.982002+00', 7976, NULL), +(3423, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:00.005322+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:00.005522+00', 0, '{"timezone-id":null}'), +(3424, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:00.005552+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:00.069328+00', 63, '{"updated-tables":0,"total-tables":27}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3425, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:00.069372+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:07.979404+00', 7910, '{"total-fields":317,"updated-fields":0}'), +(3426, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:07.979454+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:07.981769+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3427, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:07.9818+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:07.981991+00', 0, NULL), +(3428, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.005742+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.114491+00', 108, NULL), +(3429, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.005755+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.085744+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3430, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.085864+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.099326+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(3431, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.099381+00', TIMESTAMP WITH TIME ZONE '2022-12-21 00:56:08.114415+00', 15, '{"total-tables":27,"tables-classified":0}'), +(3432, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 01:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:00:00.003+00', 1, NULL), +(3433, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:00:00.007+00', 3, NULL), +(3434, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.004644+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.34122+00', 336, NULL), +(3435, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.00466+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.025298+00', 20, '{"timezone-id":"UTC"}'), +(3436, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.025359+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.032408+00', 7, '{"updated-tables":0,"total-tables":8}'), +(3437, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.03245+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.196708+00', 164, '{"total-fields":71,"updated-fields":0}'), +(3438, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.197142+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.211238+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3439, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.211283+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.341197+00', 129, NULL), +(3440, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.36269+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.398231+00', 35, NULL), +(3441, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.362703+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.383819+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3442, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.383874+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.395805+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(3443, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.395854+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:19:00.398211+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3444, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:00.004852+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.75684+00', 6751, NULL), +(3445, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:00.00487+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:00.00506+00', 0, '{"timezone-id":null}'), +(3446, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:00.00509+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:00.138558+00', 133, '{"updated-tables":0,"total-tables":27}'), +(3447, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:00.138613+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.747331+00', 6608, '{"total-fields":317,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3448, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.747387+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.756591+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3449, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.756638+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.756829+00', 0, NULL), +(3450, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.770702+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.828385+00', 57, NULL), +(3451, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.770717+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.810104+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3452, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.810157+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.816965+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3453, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.817005+00', TIMESTAMP WITH TIME ZONE '2022-12-21 01:56:06.828354+00', 11, '{"total-tables":27,"tables-classified":0}'), +(3454, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 02:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:00:00.003+00', 1, NULL), +(3455, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 02:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:00:00.009+00', 6, NULL), +(3456, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.004569+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.218347+00', 213, NULL), +(3457, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.004585+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.010788+00', 6, '{"timezone-id":"UTC"}'), +(3458, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.010833+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.018433+00', 7, '{"updated-tables":0,"total-tables":8}'), +(3459, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.018504+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.175734+00', 157, '{"total-fields":71,"updated-fields":0}'), +(3460, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.175778+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.18252+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3461, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.182593+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.218321+00', 35, NULL), +(3462, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.22668+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.242571+00', 15, NULL), +(3463, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.226693+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.236104+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3464, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.236147+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.239101+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3465, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.239134+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:19:00.242551+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3466, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:00.005007+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.966828+00', 7961, NULL), +(3467, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:00.005024+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:00.005226+00', 0, '{"timezone-id":null}'), +(3468, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:00.005255+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:00.177918+00', 172, '{"updated-tables":0,"total-tables":27}'), +(3469, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:00.177963+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.95115+00', 7773, '{"total-fields":317,"updated-fields":0}'), +(3470, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.951225+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.964914+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3471, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.965067+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.966807+00', 1, NULL), +(3472, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.988322+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:08.052707+00', 64, NULL), +(3473, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:07.988336+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:08.023617+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3474, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:08.02369+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:08.033817+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(3475, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:08.033876+00', TIMESTAMP WITH TIME ZONE '2022-12-21 02:56:08.05267+00', 18, '{"total-tables":27,"tables-classified":0}'), +(3476, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:00:00.006+00', 3, NULL), +(3477, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 03:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:00:00.008+00', 6, NULL), +(3478, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.004286+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.127556+00', 123, NULL), +(3479, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.004298+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.007935+00', 3, '{"timezone-id":"UTC"}'), +(3480, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.007968+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.013299+00', 5, '{"updated-tables":0,"total-tables":8}'), +(3481, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.013326+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.095896+00', 82, '{"total-fields":71,"updated-fields":0}'), +(3482, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.095924+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.100679+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3483, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.100705+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.127545+00', 26, NULL), +(3484, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.133365+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.14611+00', 12, NULL), +(3485, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.133373+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.140899+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3486, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.14093+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.14302+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3487, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.143047+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:19:00.146093+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3488, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:00.006577+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.03033+00', 10023, NULL), +(3489, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:00.006594+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:00.006792+00', 0, '{"timezone-id":null}'), +(3490, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:00.006821+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:00.146779+00', 139, '{"updated-tables":0,"total-tables":27}'), +(3491, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:00.149075+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.027812+00', 9878, '{"total-fields":317,"updated-fields":0}'), +(3492, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.027869+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.030017+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3493, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.03005+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.030315+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3494, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.040283+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.090005+00', 49, NULL), +(3495, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.040292+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.071246+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3496, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.071291+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.078509+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3497, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.078547+00', TIMESTAMP WITH TIME ZONE '2022-12-21 03:56:10.089981+00', 11, '{"total-tables":27,"tables-classified":0}'), +(3498, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:00:00.018+00', 14, NULL), +(3499, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:00:00.019+00', 15, NULL), +(3500, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.006152+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.366279+00', 360, NULL), +(3501, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.00617+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.011845+00', 5, '{"timezone-id":"UTC"}'), +(3502, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.011891+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.022522+00', 10, '{"updated-tables":0,"total-tables":8}'), +(3503, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.022593+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.226907+00', 204, '{"total-fields":71,"updated-fields":0}'), +(3504, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.226956+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.245895+00', 18, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3505, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.245943+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.366253+00', 120, NULL), +(3506, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.399872+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.437013+00', 37, NULL), +(3507, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.399889+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.424051+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3508, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.424105+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.43127+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3509, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.431313+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:19:00.436988+00', 5, '{"total-tables":8,"tables-classified":0}'), +(3510, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:00.006547+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.730145+00', 7723, NULL), +(3511, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:00.006565+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:00.006829+00', 0, '{"timezone-id":null}'), +(3512, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:00.006872+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:00.118362+00', 111, '{"updated-tables":0,"total-tables":27}'), +(3513, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:00.118432+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.727092+00', 7608, '{"total-fields":317,"updated-fields":0}'), +(3514, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.727177+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.729945+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3515, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.729977+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.730135+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3516, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.76095+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.900969+00', 140, NULL), +(3517, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.760965+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.85559+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3518, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.856073+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.875339+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(3519, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.875496+00', TIMESTAMP WITH TIME ZONE '2022-12-21 04:56:07.900932+00', 25, '{"total-tables":27,"tables-classified":0}'), +(3520, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 05:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:00:00.009+00', 5, NULL), +(3521, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 05:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:00:00.009+00', 5, NULL), +(3522, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.004809+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.163558+00', 158, NULL), +(3523, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.004826+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.019367+00', 14, '{"timezone-id":"UTC"}'), +(3524, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.019413+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.024062+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3525, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.024098+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.126851+00', 102, '{"total-fields":71,"updated-fields":0}'), +(3526, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.12689+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.134856+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3527, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.134903+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.163537+00', 28, NULL), +(3528, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.169937+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.182625+00', 12, NULL), +(3529, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.169951+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.178013+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3530, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.178057+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.180328+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3531, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.180361+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:19:00.182607+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3532, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:00.010766+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.980514+00', 6969, NULL), +(3533, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:00.010784+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:00.011004+00', 0, '{"timezone-id":null}'), +(3534, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:00.011033+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:00.205455+00', 194, '{"updated-tables":0,"total-tables":27}'), +(3535, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:00.205504+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.977455+00', 6771, '{"total-fields":317,"updated-fields":0}'), +(3536, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.977501+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.98029+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3537, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.980321+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.980503+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3538, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.994145+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:07.057874+00', 63, NULL), +(3539, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:06.994158+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:07.031819+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3540, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:07.031869+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:07.040204+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(3541, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:07.040242+00', TIMESTAMP WITH TIME ZONE '2022-12-21 05:56:07.057842+00', 17, '{"total-tables":27,"tables-classified":0}'), +(3542, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 06:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:00:00.003+00', 2, NULL), +(3543, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 06:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:00:00.008+00', 5, NULL), +(3544, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.004791+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.215655+00', 210, NULL), +(3545, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.004813+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.010448+00', 5, '{"timezone-id":"UTC"}'), +(3546, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.010492+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.031603+00', 21, '{"updated-tables":0,"total-tables":8}'), +(3547, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.031646+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.166074+00', 134, '{"total-fields":71,"updated-fields":0}'), +(3548, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.166113+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.173772+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3549, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.173809+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.215631+00', 41, NULL), +(3550, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.222652+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.239563+00', 16, NULL), +(3551, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.222665+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.231768+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3552, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.231808+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.234442+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3553, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.234477+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:19:00.239542+00', 5, '{"total-tables":8,"tables-classified":0}'), +(3554, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:00.006531+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.36167+00', 6355, NULL), +(3555, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:00.006549+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:00.006756+00', 0, '{"timezone-id":null}'), +(3556, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:00.006786+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:00.078692+00', 71, '{"updated-tables":0,"total-tables":27}'), +(3557, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:00.078809+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.359393+00', 6280, '{"total-fields":317,"updated-fields":0}'), +(3558, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.359432+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.361345+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3559, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.361375+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.361656+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3560, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.372364+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.415537+00', 43, NULL), +(3561, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.372374+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.398976+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3562, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.399082+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.405509+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3563, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.405541+00', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:06.415516+00', 9, '{"total-tables":27,"tables-classified":0}'), +(3564, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:00.006+00', 1, NULL), +(3565, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:00.14+00', 130, NULL), +(3566, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.004992+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.149331+00', 144, NULL), +(3567, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.005008+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.009716+00', 4, '{"timezone-id":"UTC"}'), +(3568, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.009753+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.014678+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3569, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.014714+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.097447+00', 82, '{"total-fields":71,"updated-fields":0}'), +(3570, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.097485+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.118864+00', 21, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3571, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.118903+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.149313+00', 30, NULL), +(3572, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.157785+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.170833+00', 13, NULL), +(3573, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.157797+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.166418+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3574, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.166451+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.168545+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3575, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.168578+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:19:00.170812+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3576, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:00.007982+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.927496+00', 6919, NULL), +(3577, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:00.008003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:00.013409+00', 5, '{"timezone-id":null}'), +(3578, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:00.013482+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:00.119575+00', 106, '{"updated-tables":0,"total-tables":27}'), +(3579, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:00.119626+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.921562+00', 6801, '{"total-fields":317,"updated-fields":0}'), +(3580, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.921615+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.925292+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3581, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.925332+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.927479+00', 2, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3582, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.947899+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:07.018703+00', 70, NULL), +(3583, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.947914+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.989568+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3584, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.98962+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.999187+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(3585, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:06.99923+00', TIMESTAMP WITH TIME ZONE '2022-12-21 07:56:07.018666+00', 19, '{"total-tables":27,"tables-classified":0}'), +(3586, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:00.003+00', 0, NULL), +(3587, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:00.016+00', 11, NULL), +(3588, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.007837+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.272987+00', 265, NULL), +(3589, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.007854+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.018797+00', 10, '{"timezone-id":"UTC"}'), +(3590, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.018844+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.027952+00', 9, '{"updated-tables":0,"total-tables":8}'), +(3591, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.027987+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.194203+00', 166, '{"total-fields":71,"updated-fields":0}'), +(3592, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.194255+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.20379+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3593, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.203897+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.272963+00', 69, NULL), +(3594, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.279965+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.297754+00', 17, NULL), +(3595, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.279981+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.290356+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3596, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.290477+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.294294+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3597, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.294334+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:19:00.29773+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3598, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:00.005431+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.359334+00', 8353, NULL), +(3599, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:00.005446+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:00.005728+00', 0, '{"timezone-id":null}'), +(3600, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:00.005759+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:00.09443+00', 88, '{"updated-tables":0,"total-tables":27}'), +(3601, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:00.094532+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.356665+00', 8262, '{"total-fields":317,"updated-fields":0}'), +(3602, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.356752+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.358948+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3603, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.358985+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.359319+00', 0, NULL), +(3604, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.375026+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.455805+00', 80, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3605, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.375036+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.417237+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3606, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.417311+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.425338+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(3607, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.425413+00', TIMESTAMP WITH TIME ZONE '2022-12-21 08:56:08.455748+00', 30, '{"total-tables":27,"tables-classified":0}'), +(3608, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 09:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:00:00.003+00', 2, NULL), +(3609, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:00:00.008+00', 5, NULL), +(3610, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.006436+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.234277+00', 227, NULL), +(3611, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.006452+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.01559+00', 9, '{"timezone-id":"UTC"}'), +(3612, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.015637+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.026852+00', 11, '{"updated-tables":0,"total-tables":8}'), +(3613, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.026917+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.175884+00', 148, '{"total-fields":71,"updated-fields":0}'), +(3614, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.175929+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.183365+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3615, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.183407+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.234251+00', 50, NULL), +(3616, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.249199+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.280658+00', 31, NULL), +(3617, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.249214+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.271693+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3618, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.271745+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.275368+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3619, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.275404+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:19:00.280632+00', 5, '{"total-tables":8,"tables-classified":0}'), +(3620, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:00.008811+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.446428+00', 7437, NULL), +(3621, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:00.008827+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:00.009044+00', 0, '{"timezone-id":null}'), +(3622, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:00.009074+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:00.159814+00', 150, '{"updated-tables":0,"total-tables":27}'), +(3623, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:00.159861+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.443525+00', 7283, '{"total-fields":317,"updated-fields":0}'), +(3624, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.443784+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.446038+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3625, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.44607+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.446413+00', 0, NULL), +(3626, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.454801+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.502885+00', 48, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3627, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.454812+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.484181+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3628, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.484248+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.490792+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3629, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.490824+00', TIMESTAMP WITH TIME ZONE '2022-12-21 09:56:07.502865+00', 12, '{"total-tables":27,"tables-classified":0}'), +(3630, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 10:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:00:00.003+00', 1, NULL), +(3631, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:00:00.008+00', 4, NULL), +(3632, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.010484+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.255782+00', 245, NULL), +(3633, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.0105+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.019322+00', 8, '{"timezone-id":"UTC"}'), +(3634, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.019373+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.02519+00', 5, '{"updated-tables":0,"total-tables":8}'), +(3635, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.025225+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.205902+00', 180, '{"total-fields":71,"updated-fields":0}'), +(3636, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.205942+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.211728+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3637, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.211762+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.255762+00', 44, NULL), +(3638, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.264078+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.279754+00', 15, NULL), +(3639, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.264097+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.274442+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3640, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.274476+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.276915+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3641, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.276945+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:19:00.279703+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3642, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:00.004684+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.056741+00', 6052, NULL), +(3643, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:00.004697+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:00.00488+00', 0, '{"timezone-id":null}'), +(3644, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:00.004906+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:00.034991+00', 30, '{"updated-tables":0,"total-tables":27}'), +(3645, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:00.035054+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.0538+00', 6018, '{"total-fields":317,"updated-fields":0}'), +(3646, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.05395+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.056369+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3647, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.056428+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.056704+00', 0, NULL), +(3648, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.079614+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.156461+00', 76, NULL), +(3649, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.079623+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.128704+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3650, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.128741+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.135591+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3651, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.135634+00', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:06.156443+00', 20, '{"total-tables":27,"tables-classified":0}'), +(3652, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:00.005+00', 2, NULL), +(3653, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:00.019+00', 12, NULL), +(3654, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.00734+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.210287+00', 202, NULL), +(3655, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.007353+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.010326+00', 2, '{"timezone-id":"UTC"}'), +(3656, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.010366+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.018902+00', 8, '{"updated-tables":0,"total-tables":8}'), +(3657, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.018927+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.146573+00', 127, '{"total-fields":71,"updated-fields":0}'), +(3658, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.146628+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.153803+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3659, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.15387+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.210258+00', 56, NULL), +(3660, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.229511+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.259332+00', 29, NULL), +(3661, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.229525+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.246079+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3662, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.246126+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.248765+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3663, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.248804+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:00.259307+00', 10, '{"total-tables":8,"tables-classified":0}'), +(3664, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:00.014233+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.309436+00', 5295, NULL), +(3665, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:00.01425+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:00.014442+00', 0, '{"timezone-id":null}'), +(3666, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:00.014475+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:00.082818+00', 68, '{"updated-tables":0,"total-tables":27}'), +(3667, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:00.082861+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.303654+00', 5220, '{"total-fields":317,"updated-fields":0}'), +(3668, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.303693+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.309099+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3669, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.309213+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.309422+00', 0, NULL), +(3670, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.321559+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.371016+00', 49, NULL), +(3671, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.321571+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.34989+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3672, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.350036+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.358979+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3673, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.359081+00', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.370991+00', 11, '{"total-tables":27,"tables-classified":0}'), +(3674, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:00.01+00', 1, NULL), +(3675, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:00.024+00', 13, NULL), +(3676, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.007429+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.198152+00', 190, NULL), +(3677, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.007442+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.014116+00', 6, '{"timezone-id":"UTC"}'), +(3678, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.014158+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.026033+00', 11, '{"updated-tables":0,"total-tables":8}'), +(3679, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.02607+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.143713+00', 117, '{"total-fields":71,"updated-fields":0}'), +(3680, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.143752+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.156246+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3681, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.156283+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.198131+00', 41, NULL), +(3682, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.206318+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.219955+00', 13, NULL), +(3683, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.20633+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.214304+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3684, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.21434+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.216672+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3685, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.216701+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:00.219935+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3686, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:00.008037+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.282667+00', 10274, NULL), +(3687, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:00.008054+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:00.008258+00', 0, '{"timezone-id":null}'), +(3688, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:00.00829+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:00.115851+00', 107, '{"updated-tables":0,"total-tables":27}'), +(3689, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:00.115912+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.274726+00', 10158, '{"total-fields":317,"updated-fields":0}'), +(3690, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.274811+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.282451+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3691, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.282503+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.282658+00', 0, NULL), +(3692, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.298948+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.462112+00', 163, NULL), +(3693, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.298963+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.394002+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3694, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.394072+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.430657+00', 36, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3695, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.434748+00', TIMESTAMP WITH TIME ZONE '2022-12-21 12:56:10.462079+00', 27, '{"total-tables":27,"tables-classified":0}'), +(3696, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.014+00', 0, NULL), +(3697, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.013+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.072+00', 59, NULL), +(3698, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.071408+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:03.695441+00', 3624, NULL), +(3699, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.071424+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.637763+00', 566, '{"deleted":0}'), +(3700, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:00.637814+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:00:03.695417+00', 3057, '{"errors":0,"created":0,"updated":50,"deleted":0}'), +(3701, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.022103+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.224204+00', 202, NULL), +(3702, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.022122+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.037342+00', 15, '{"timezone-id":"UTC"}'), +(3703, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.037398+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.047475+00', 10, '{"updated-tables":0,"total-tables":8}'), +(3704, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.047515+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.147436+00', 99, '{"total-fields":71,"updated-fields":0}'), +(3705, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.147495+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.166848+00', 19, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3706, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.1669+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.224174+00', 57, NULL), +(3707, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.235141+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.250137+00', 14, NULL), +(3708, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.235156+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.244136+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3709, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.244179+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.247286+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3710, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.24732+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:19:00.250115+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3711, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.106559+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.662229+00', 9555, NULL), +(3712, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.106575+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.106885+00', 0, '{"timezone-id":null}'), +(3713, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.106912+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.217982+00', 111, '{"updated-tables":0,"total-tables":27}'), +(3714, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.218031+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.655454+00', 9437, '{"total-fields":317,"updated-fields":0}'), +(3715, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.655572+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.661188+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3716, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.661255+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.662149+00', 0, NULL), +(3717, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.688342+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.900909+00', 212, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3718, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.688356+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.772744+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3719, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.772898+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.786403+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(3720, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.786452+00', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:09.900866+00', 114, '{"total-tables":27,"tables-classified":0}'), +(3721, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:00:00.014+00', 10, NULL), +(3722, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 14:00:00.021+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:00:00.043+00', 22, NULL), +(3723, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.004815+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.13339+00', 128, NULL), +(3724, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.004829+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.007659+00', 2, '{"timezone-id":"UTC"}'), +(3725, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.007696+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.01534+00', 7, '{"updated-tables":0,"total-tables":8}'), +(3726, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.015372+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.095445+00', 80, '{"total-fields":71,"updated-fields":0}'), +(3727, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.095645+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.101694+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3728, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.101763+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.133373+00', 31, NULL), +(3729, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.140175+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.155012+00', 14, NULL), +(3730, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.140184+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.149132+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3731, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.149164+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.152729+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3732, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.152755+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:19:00.154994+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3733, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:00.005026+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.121865+00', 8116, NULL), +(3734, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:00.005044+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:00.005271+00', 0, '{"timezone-id":null}'), +(3735, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:00.005317+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:00.036678+00', 31, '{"updated-tables":0,"total-tables":27}'), +(3736, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:00.036715+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.119941+00', 8083, '{"total-fields":317,"updated-fields":0}'), +(3737, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.119972+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.121685+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3738, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.121709+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.121857+00', 0, NULL), +(3739, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.142815+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.188943+00', 46, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3740, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.142824+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.173652+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3741, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.173684+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.179393+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(3742, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.179419+00', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:08.188926+00', 9, '{"total-tables":27,"tables-classified":0}'), +(3743, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:00.059+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:00.103+00', 44, NULL), +(3744, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:00.059+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:00.103+00', 44, NULL), +(3745, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.011377+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.238442+00', 227, NULL), +(3746, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.011392+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.044055+00', 32, '{"timezone-id":"UTC"}'), +(3747, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.044105+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.04965+00', 5, '{"updated-tables":0,"total-tables":8}'), +(3748, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.049679+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.166391+00', 116, '{"total-fields":71,"updated-fields":0}'), +(3749, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.166435+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.179056+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3750, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.179103+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.238421+00', 59, NULL), +(3751, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.247594+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.271664+00', 24, NULL), +(3752, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.247608+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.261412+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3753, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.261454+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.265226+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3754, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.265257+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:19:00.271643+00', 6, '{"total-tables":8,"tables-classified":0}'), +(3755, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:00.042795+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.688171+00', 7645, NULL), +(3756, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:00.042812+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:00.043018+00', 0, '{"timezone-id":null}'), +(3757, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:00.043048+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:00.180067+00', 137, '{"updated-tables":0,"total-tables":27}'), +(3758, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:00.180113+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.686067+00', 7505, '{"total-fields":317,"updated-fields":0}'), +(3759, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.686107+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.688006+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3760, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.688031+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.688163+00', 0, NULL), +(3761, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.69817+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.843205+00', 145, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3762, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.698179+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.818244+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3763, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.818351+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.826408+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(3764, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.826446+00', TIMESTAMP WITH TIME ZONE '2022-12-21 15:56:07.843178+00', 16, '{"total-tables":27,"tables-classified":0}'), +(3765, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 16:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:00:00.005+00', 2, NULL), +(3766, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 16:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:00:00.04+00', 35, NULL), +(3767, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.005779+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.147537+00', 141, NULL), +(3768, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.005796+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.012887+00', 7, '{"timezone-id":"UTC"}'), +(3769, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.012942+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.019473+00', 6, '{"updated-tables":0,"total-tables":8}'), +(3770, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.019515+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.11403+00', 94, '{"total-fields":71,"updated-fields":0}'), +(3771, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.114072+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.119997+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3772, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.12003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.147518+00', 27, NULL), +(3773, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.155086+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.17409+00', 19, NULL), +(3774, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.155097+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.1669+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3775, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.166946+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.17049+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3776, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.170534+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:19:00.174066+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3777, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:00.004689+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.897351+00', 6892, NULL), +(3778, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:00.004706+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:00.004907+00', 0, '{"timezone-id":null}'), +(3779, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:00.004937+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:00.036294+00', 31, '{"updated-tables":0,"total-tables":27}'), +(3780, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:00.036361+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.892615+00', 6856, '{"total-fields":317,"updated-fields":0}'), +(3781, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.892721+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.896827+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3782, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.896872+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.897334+00', 0, NULL), +(3783, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.921205+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:07.030787+00', 109, NULL), +(3784, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.921218+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.985698+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3785, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:06.985752+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:07.002404+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(3786, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:07.002492+00', TIMESTAMP WITH TIME ZONE '2022-12-21 16:56:07.03072+00', 28, '{"total-tables":27,"tables-classified":0}'), +(3787, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 17:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:00:00.008+00', 1, NULL), +(3788, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 17:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:00:00.022+00', 14, NULL), +(3789, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.010323+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.232273+00', 221, NULL), +(3790, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.010338+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.018331+00', 7, '{"timezone-id":"UTC"}'), +(3791, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.018525+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.029202+00', 10, '{"updated-tables":0,"total-tables":8}'), +(3792, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.029239+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.153+00', 123, '{"total-fields":71,"updated-fields":0}'), +(3793, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.15308+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.16091+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3794, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.160948+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.232252+00', 71, NULL), +(3795, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.242383+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.262725+00', 20, NULL), +(3796, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.242446+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.254377+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3797, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.254435+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.260063+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(3798, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.260098+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:19:00.262705+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3799, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:00.015887+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.617682+00', 8601, NULL), +(3800, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:00.015902+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:00.016235+00', 0, '{"timezone-id":null}'), +(3801, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:00.016311+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:00.045073+00', 28, '{"updated-tables":0,"total-tables":27}'), +(3802, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:00.045173+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.613359+00', 8568, '{"total-fields":317,"updated-fields":0}'), +(3803, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.614977+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.61711+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3804, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.617258+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.617597+00', 0, NULL), +(3805, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.639562+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.693099+00', 53, NULL), +(3806, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.639576+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.674947+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3807, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.674997+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.682096+00', 7, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3808, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.682196+00', TIMESTAMP WITH TIME ZONE '2022-12-21 17:56:08.693071+00', 10, '{"total-tables":27,"tables-classified":0}'), +(3809, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 18:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:00:00.003+00', 1, NULL), +(3810, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:00:00.007+00', 3, NULL), +(3811, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.004102+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.190772+00', 186, NULL), +(3812, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.004118+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.010151+00', 6, '{"timezone-id":"UTC"}'), +(3813, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.010191+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.014728+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3814, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.014756+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.151632+00', 136, '{"total-fields":71,"updated-fields":0}'), +(3815, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.151671+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.16015+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3816, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.160187+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.190753+00', 30, NULL), +(3817, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.199855+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.214339+00', 14, NULL), +(3818, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.199868+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.208605+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3819, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.208646+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.211019+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3820, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.211047+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:19:00.214321+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3821, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:00.004971+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.157213+00', 9152, NULL), +(3822, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:00.004988+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:00.005194+00', 0, '{"timezone-id":null}'), +(3823, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:00.005236+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:00.087199+00', 81, '{"updated-tables":0,"total-tables":27}'), +(3824, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:00.087245+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.153364+00', 9066, '{"total-fields":317,"updated-fields":0}'), +(3825, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.153463+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.156944+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3826, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.156974+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.157199+00', 0, NULL), +(3827, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.182822+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.265155+00', 82, NULL), +(3828, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.182842+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.239358+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3829, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.239409+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.25117+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(3830, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.251212+00', TIMESTAMP WITH TIME ZONE '2022-12-21 18:56:09.265131+00', 13, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3831, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:00:00.004+00', 1, NULL), +(3832, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 19:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:00:00.009+00', 4, NULL), +(3833, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.005569+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.207353+00', 201, NULL), +(3834, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.005585+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.010254+00', 4, '{"timezone-id":"UTC"}'), +(3835, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.010316+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.026017+00', 15, '{"updated-tables":0,"total-tables":8}'), +(3836, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.026058+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.148475+00', 122, '{"total-fields":71,"updated-fields":0}'), +(3837, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.148521+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.167406+00', 18, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3838, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.167452+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.207323+00', 39, NULL), +(3839, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.217683+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.243757+00', 26, NULL), +(3840, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.217697+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.231461+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3841, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.23212+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.239367+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3842, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.239428+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:19:00.243708+00', 4, '{"total-tables":8,"tables-classified":0}'), +(3843, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:00.014822+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.569372+00', 7554, NULL), +(3844, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:00.01484+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:00.015111+00', 0, '{"timezone-id":null}'), +(3845, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:00.015147+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:00.123314+00', 108, '{"updated-tables":0,"total-tables":27}'), +(3846, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:00.123434+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.567124+00', 7443, '{"total-fields":317,"updated-fields":0}'), +(3847, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.567175+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.569215+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3848, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.569242+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.569365+00', 0, NULL), +(3849, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.58088+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.646202+00', 65, NULL), +(3850, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.580892+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.624061+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3851, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.624112+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.633602+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(3852, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.633656+00', TIMESTAMP WITH TIME ZONE '2022-12-21 19:56:07.64617+00', 12, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3853, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 20:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:00:00.015+00', 12, NULL), +(3854, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:00:00.017+00', 13, NULL), +(3855, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.007616+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.205984+00', 198, NULL), +(3856, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.007631+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.012055+00', 4, '{"timezone-id":"UTC"}'), +(3857, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.01209+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.01703+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3858, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.017095+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.1631+00', 146, '{"total-fields":71,"updated-fields":0}'), +(3859, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.163151+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.169565+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3860, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.1696+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.205964+00', 36, NULL), +(3861, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.212396+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.227824+00', 15, NULL), +(3862, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.212409+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.220525+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3863, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.220563+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.224136+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3864, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.224168+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:19:00.227803+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3865, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:00.007168+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.256901+00', 6249, NULL), +(3866, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:00.007185+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:00.007398+00', 0, '{"timezone-id":null}'), +(3867, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:00.007429+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:00.0884+00', 80, '{"updated-tables":0,"total-tables":27}'), +(3868, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:00.088448+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.252662+00', 6164, '{"total-fields":317,"updated-fields":0}'), +(3869, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.252755+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.2564+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3870, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.256475+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.256862+00', 0, NULL), +(3871, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.27064+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.328548+00', 57, NULL), +(3872, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.270654+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.306659+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3873, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.306737+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.31551+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(3874, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.315577+00', TIMESTAMP WITH TIME ZONE '2022-12-21 20:56:06.328492+00', 12, '{"total-tables":27,"tables-classified":0}'), +(3875, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.011+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3876, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.018+00', 4, NULL), +(3877, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.013791+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.703315+00', 689, NULL), +(3878, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.013806+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.084878+00', 71, '{"deleted":0}'), +(3879, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.085031+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:00:00.703055+00', 618, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(3880, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.008445+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.254064+00', 245, NULL), +(3881, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.008461+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.012259+00', 3, '{"timezone-id":"UTC"}'), +(3882, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.012303+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.02546+00', 13, '{"updated-tables":0,"total-tables":8}'), +(3883, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.025504+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.159543+00', 134, '{"total-fields":71,"updated-fields":0}'), +(3884, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.159745+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.16626+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3885, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.166418+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.253877+00', 87, NULL), +(3886, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.260797+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.275741+00', 14, NULL), +(3887, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.26081+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.269469+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3888, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.269618+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.272592+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3889, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.272622+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:19:00.27563+00', 3, '{"total-tables":8,"tables-classified":0}'), +(3890, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:00.008634+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.486174+00', 8477, NULL), +(3891, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:00.008651+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:00.009246+00', 0, '{"timezone-id":null}'), +(3892, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:00.009286+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:00.113585+00', 104, '{"updated-tables":0,"total-tables":27}'), +(3893, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:00.113633+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.482239+00', 8368, '{"total-fields":317,"updated-fields":0}'), +(3894, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.482413+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.485921+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3895, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.485955+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.486111+00', 0, NULL), +(3896, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.494127+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.541305+00', 47, NULL), +(3897, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.494137+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.521718+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3898, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.521759+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.527893+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(3899, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.527924+00', TIMESTAMP WITH TIME ZONE '2022-12-21 21:56:08.541282+00', 13, '{"total-tables":27,"tables-classified":0}'), +(3900, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 22:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:00:00.004+00', 1, NULL), +(3901, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 22:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:00:00.011+00', 4, NULL), +(3902, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.004153+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.190434+00', 186, NULL), +(3903, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.004168+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.008669+00', 4, '{"timezone-id":"UTC"}'), +(3904, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.008712+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.013267+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3905, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.013295+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.152831+00', 139, '{"total-fields":71,"updated-fields":0}'), +(3906, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.15287+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.158206+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3907, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.158235+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.190421+00', 32, NULL), +(3908, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.197349+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.20985+00', 12, NULL), +(3909, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.197358+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.205288+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3910, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.205316+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.207618+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3911, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.207644+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:19:00.209819+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3912, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:00.010191+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.711534+00', 7701, NULL), +(3913, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:00.010208+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:00.01047+00', 0, '{"timezone-id":null}'), +(3914, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:00.010507+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:00.106994+00', 96, '{"updated-tables":0,"total-tables":27}'), +(3915, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:00.107042+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.700199+00', 7593, '{"total-fields":317,"updated-fields":0}'), +(3916, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.700242+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.707964+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3917, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.708015+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.711513+00', 3, NULL), +(3918, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.827329+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.974063+00', 146, NULL), +(3919, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.827344+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.926314+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3920, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.926388+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.945541+00', 19, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3921, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.945607+00', TIMESTAMP WITH TIME ZONE '2022-12-21 22:56:07.974021+00', 28, '{"total-tables":27,"tables-classified":0}'), +(3922, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:00:00.007+00', 3, NULL), +(3923, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-21 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:00:00.008+00', 5, NULL), +(3924, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.00637+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.144565+00', 138, NULL), +(3925, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.006386+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.015191+00', 8, '{"timezone-id":"UTC"}'), +(3926, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.015259+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.023558+00', 8, '{"updated-tables":0,"total-tables":8}'), +(3927, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.023585+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.10909+00', 85, '{"total-fields":71,"updated-fields":0}'), +(3928, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.109126+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.11517+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3929, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.115277+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.144551+00', 29, NULL), +(3930, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.15198+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.166198+00', 14, NULL), +(3931, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.151991+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.160403+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3932, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.160502+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.16367+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3933, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.163697+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:19:00.166155+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3934, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:00.006195+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.062692+00', 7056, NULL), +(3935, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:00.006219+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:00.006476+00', 0, '{"timezone-id":null}'), +(3936, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:00.006515+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:00.140329+00', 133, '{"updated-tables":0,"total-tables":27}'), +(3937, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:00.140375+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.060244+00', 6919, '{"total-fields":317,"updated-fields":0}'), +(3938, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.060301+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.06238+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3939, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.062423+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.062676+00', 0, NULL), +(3940, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.072247+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.146237+00', 73, NULL), +(3941, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.072258+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.102111+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3942, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.102163+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.110144+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3943, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.110201+00', TIMESTAMP WITH TIME ZONE '2022-12-21 23:56:07.146179+00', 35, '{"total-tables":27,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3944, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 00:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:00:00.009+00', 5, NULL), +(3945, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 00:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:00:00.013+00', 7, NULL), +(3946, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.00508+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.173733+00', 168, NULL), +(3947, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.005096+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.011174+00', 6, '{"timezone-id":"UTC"}'), +(3948, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.011215+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.017953+00', 6, '{"updated-tables":0,"total-tables":8}'), +(3949, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.017986+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.137855+00', 119, '{"total-fields":71,"updated-fields":0}'), +(3950, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.137892+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.143858+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3951, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.143891+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.173718+00', 29, NULL), +(3952, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.17992+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.197105+00', 17, NULL), +(3953, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.179943+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.187785+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3954, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.187817+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.194891+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3955, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.194947+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:19:00.197088+00', 2, '{"total-tables":8,"tables-classified":0}'), +(3956, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:00.010273+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.709348+00', 7699, NULL), +(3957, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:00.010293+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:00.01056+00', 0, '{"timezone-id":null}'), +(3958, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:00.010597+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:00.162426+00', 151, '{"updated-tables":0,"total-tables":27}'), +(3959, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:00.162504+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.706703+00', 7544, '{"total-fields":317,"updated-fields":0}'), +(3960, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.706778+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.708948+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3961, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.709012+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.709333+00', 0, NULL), +(3962, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.720195+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.775901+00', 55, NULL), +(3963, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.720206+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.755955+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3964, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.756081+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.763782+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(3965, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.763917+00', TIMESTAMP WITH TIME ZONE '2022-12-22 00:56:07.775847+00', 11, '{"total-tables":27,"tables-classified":0}'), +(3966, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 01:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:00:00.004+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3967, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 01:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:00:00.009+00', 4, NULL), +(3968, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.00742+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.323932+00', 316, NULL), +(3969, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.007436+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.010963+00', 3, '{"timezone-id":"UTC"}'), +(3970, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.011311+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.016897+00', 5, '{"updated-tables":0,"total-tables":8}'), +(3971, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.016928+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.275671+00', 258, '{"total-fields":71,"updated-fields":0}'), +(3972, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.27571+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.291413+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3973, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.291454+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.323909+00', 32, NULL), +(3974, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.33203+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.362315+00', 30, NULL), +(3975, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.332041+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.340095+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3976, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.340131+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.343136+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(3977, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.343233+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:19:00.361993+00', 18, '{"total-tables":8,"tables-classified":0}'), +(3978, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:00.010148+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:07.988405+00', 7978, NULL), +(3979, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:00.010165+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:00.010506+00', 0, '{"timezone-id":null}'), +(3980, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:00.010544+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:00.124444+00', 113, '{"updated-tables":0,"total-tables":27}'), +(3981, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:00.124547+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:07.983175+00', 7858, '{"total-fields":317,"updated-fields":0}'), +(3982, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:07.983228+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:07.987372+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(3983, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:07.988195+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:07.988393+00', 0, NULL), +(3984, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.002236+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.054802+00', 52, NULL), +(3985, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.00225+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.03343+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3986, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.033483+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.041857+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(3987, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.041909+00', TIMESTAMP WITH TIME ZONE '2022-12-22 01:56:08.054759+00', 12, '{"total-tables":27,"tables-classified":0}'), +(3988, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 02:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:00:00.006+00', 3, NULL), +(3989, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 02:00:00.018+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:00:00.021+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(3990, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.005518+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.145877+00', 140, NULL), +(3991, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.005568+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.024637+00', 19, '{"timezone-id":"UTC"}'), +(3992, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.024689+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.029093+00', 4, '{"updated-tables":0,"total-tables":8}'), +(3993, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.029124+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.114311+00', 85, '{"total-fields":71,"updated-fields":0}'), +(3994, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.114353+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.119491+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(3995, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.119521+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.145859+00', 26, NULL), +(3996, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.162318+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.178622+00', 16, NULL), +(3997, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.162333+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.173986+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(3998, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.174028+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.17621+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(3999, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.176288+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:19:00.178604+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4000, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:00.045721+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.895742+00', 7850, NULL), +(4001, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:00.04574+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:00.046179+00', 0, '{"timezone-id":null}'), +(4002, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:00.046217+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:00.239506+00', 193, '{"updated-tables":0,"total-tables":27}'), +(4003, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:00.23957+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.89292+00', 7653, '{"total-fields":317,"updated-fields":0}'), +(4004, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.892983+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.895539+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4005, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.895572+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.895732+00', 0, NULL), +(4006, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.910306+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.965562+00', 55, NULL), +(4007, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.910317+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.945678+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4008, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.945721+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.954399+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(4009, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.954433+00', TIMESTAMP WITH TIME ZONE '2022-12-22 02:56:07.965543+00', 11, '{"total-tables":27,"tables-classified":0}'), +(4010, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:00:00.005+00', 2, NULL), +(4011, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 03:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:00:00.015+00', 10, NULL), +(4012, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.004364+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.170975+00', 166, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4013, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.00438+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.009685+00', 5, '{"timezone-id":"UTC"}'), +(4014, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.00979+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.015116+00', 5, '{"updated-tables":0,"total-tables":8}'), +(4015, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.015146+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.129388+00', 114, '{"total-fields":71,"updated-fields":0}'), +(4016, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.129598+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.135357+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4017, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.135509+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.17095+00', 35, NULL), +(4018, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.180215+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.19666+00', 16, NULL), +(4019, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.180228+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.190043+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4020, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.190167+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.193532+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(4021, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.193675+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:19:00.196522+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4022, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:00.016707+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.23185+00', 7215, NULL), +(4023, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:00.016725+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:00.016999+00', 0, '{"timezone-id":null}'), +(4024, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:00.017033+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:00.10704+00', 90, '{"updated-tables":0,"total-tables":27}'), +(4025, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:00.107088+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.227804+00', 7120, '{"total-fields":317,"updated-fields":0}'), +(4026, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.22789+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.230855+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4027, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.231445+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.231813+00', 0, NULL), +(4028, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.248789+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.310432+00', 61, NULL), +(4029, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.248805+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.291747+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4030, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.291796+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.30005+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(4031, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.300088+00', TIMESTAMP WITH TIME ZONE '2022-12-22 03:56:07.310406+00', 10, '{"total-tables":27,"tables-classified":0}'), +(4032, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:00:00.005+00', 1, NULL), +(4033, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 04:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:00:00.011+00', 5, NULL), +(4034, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.008204+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.217058+00', 208, NULL), +(4035, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.008244+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.01477+00', 6, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4036, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.014838+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.026058+00', 11, '{"updated-tables":0,"total-tables":8}'), +(4037, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.026131+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.17791+00', 151, '{"total-fields":71,"updated-fields":0}'), +(4038, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.177956+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.184183+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4039, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.18422+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.217038+00', 32, NULL), +(4040, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.228542+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.244525+00', 15, NULL), +(4041, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.228577+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.23883+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4042, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.238868+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.24165+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4043, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.241682+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:19:00.244504+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4044, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:00.010168+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.408194+00', 7398, NULL), +(4045, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:00.010185+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:00.010396+00', 0, '{"timezone-id":null}'), +(4046, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:00.010426+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:00.324412+00', 313, '{"updated-tables":0,"total-tables":27}'), +(4047, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:00.324456+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.404988+00', 7080, '{"total-fields":317,"updated-fields":0}'), +(4048, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.405031+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.407787+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4049, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.407823+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.408178+00', 0, NULL), +(4050, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.437579+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.578305+00', 140, NULL), +(4051, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.437599+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.521035+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4052, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.521112+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.54281+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(4053, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.542891+00', TIMESTAMP WITH TIME ZONE '2022-12-22 04:56:07.578238+00', 35, '{"total-tables":27,"tables-classified":0}'), +(4054, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:00:00.004+00', 1, NULL), +(4055, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 05:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:00:00.011+00', 6, NULL), +(4056, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.007641+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.182692+00', 175, NULL), +(4057, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.007657+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.01094+00', 3, '{"timezone-id":"UTC"}'), +(4058, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.011001+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.019893+00', 8, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4059, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.019984+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.147428+00', 127, '{"total-fields":71,"updated-fields":0}'), +(4060, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.147464+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.154325+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4061, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.154474+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.182678+00', 28, NULL), +(4062, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.189132+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.204794+00', 15, NULL), +(4063, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.189143+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.19952+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4064, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.199551+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.202148+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4065, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.202248+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:19:00.204775+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4066, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:00.005816+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.170066+00', 7164, NULL), +(4067, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:00.005846+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:00.006051+00', 0, '{"timezone-id":null}'), +(4068, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:00.006081+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:00.206374+00', 200, '{"updated-tables":0,"total-tables":27}'), +(4069, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:00.206422+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.163743+00', 6957, '{"total-fields":317,"updated-fields":0}'), +(4070, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.163813+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.169453+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4071, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.169523+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.17005+00', 0, NULL), +(4072, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.18319+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.260222+00', 77, NULL), +(4073, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.183202+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.228744+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4074, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.228795+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.237634+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(4075, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.237704+00', TIMESTAMP WITH TIME ZONE '2022-12-22 05:56:07.260184+00', 22, '{"total-tables":27,"tables-classified":0}'), +(4076, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:00:00.008+00', 4, NULL), +(4077, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 06:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:00:00.008+00', 3, NULL), +(4078, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.004409+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.184228+00', 179, NULL), +(4079, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.004424+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.022865+00', 18, '{"timezone-id":"UTC"}'), +(4080, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.022907+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.033676+00', 10, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4081, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.033762+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.153139+00', 119, '{"total-fields":71,"updated-fields":0}'), +(4082, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.153302+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.158535+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4083, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.158575+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.184217+00', 25, NULL), +(4084, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.192519+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.206431+00', 13, NULL), +(4085, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.192531+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.201096+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4086, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.201129+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.203609+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4087, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.20364+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:19:00.20641+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4088, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:00.036616+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.4143+00', 7377, NULL), +(4089, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:00.036635+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:00.036961+00', 0, '{"timezone-id":null}'), +(4090, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:00.036997+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:00.155212+00', 118, '{"updated-tables":0,"total-tables":27}'), +(4091, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:00.155257+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.411425+00', 7256, '{"total-fields":317,"updated-fields":0}'), +(4092, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.411465+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.41413+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4093, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.414162+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.414293+00', 0, NULL), +(4094, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.434618+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.529433+00', 94, NULL), +(4095, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.434634+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.471081+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4096, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.471129+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.515853+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(4097, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.515914+00', TIMESTAMP WITH TIME ZONE '2022-12-22 06:56:07.529393+00', 13, '{"total-tables":27,"tables-classified":0}'), +(4098, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 07:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:00:00.007+00', 2, NULL), +(4099, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 07:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:00:00.013+00', 5, NULL), +(4100, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.004797+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.151854+00', 147, NULL), +(4101, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.004813+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.009646+00', 4, '{"timezone-id":"UTC"}'), +(4102, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.009784+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.014883+00', 5, '{"updated-tables":0,"total-tables":8}'), +(4103, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.014942+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.102634+00', 87, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4104, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.10267+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.11917+00', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4105, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.119299+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.151835+00', 32, NULL), +(4106, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.160104+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.173037+00', 12, NULL), +(4107, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.160117+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.168513+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4108, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.168549+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.170784+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4109, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.170814+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:19:00.17302+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4110, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:00.010276+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.473201+00', 7462, NULL), +(4111, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:00.010294+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:00.010519+00', 0, '{"timezone-id":null}'), +(4112, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:00.010551+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:00.111362+00', 100, '{"updated-tables":0,"total-tables":27}'), +(4113, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:00.111431+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.470687+00', 7359, '{"total-fields":317,"updated-fields":0}'), +(4114, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.470731+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.472799+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4115, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.472834+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.473185+00', 0, NULL), +(4116, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.486882+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.53076+00', 43, NULL), +(4117, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.486892+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.51391+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4118, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.513955+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.520559+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4119, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.520594+00', TIMESTAMP WITH TIME ZONE '2022-12-22 07:56:07.53074+00', 10, '{"total-tables":27,"tables-classified":0}'), +(4120, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 08:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:00:00.004+00', 2, NULL), +(4121, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 08:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:00:00.008+00', 4, NULL), +(4122, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.004056+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.147702+00', 143, NULL), +(4123, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.004071+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.010088+00', 6, '{"timezone-id":"UTC"}'), +(4124, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.010129+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.014802+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4125, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.014833+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.092801+00', 77, '{"total-fields":71,"updated-fields":0}'), +(4126, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.09284+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.098231+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4127, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.09827+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.147682+00', 49, NULL), +(4128, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.166184+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.181497+00', 15, NULL), +(4129, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.166198+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.175471+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4130, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.175605+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.178805+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(4131, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.178905+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:19:00.181477+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4132, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:00.005882+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.753667+00', 6747, NULL), +(4133, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:00.0059+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:00.006095+00', 0, '{"timezone-id":null}'), +(4134, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:00.006126+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:00.192144+00', 186, '{"updated-tables":1,"total-tables":27}'), +(4135, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:00.192194+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.742055+00', 6549, '{"total-fields":297,"updated-fields":0}'), +(4136, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.742113+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.753066+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4137, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.753121+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.753625+00', 0, NULL), +(4138, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.788545+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.894113+00', 105, NULL), +(4139, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.788566+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.841235+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4140, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.841313+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.861208+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(4141, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.861301+00', TIMESTAMP WITH TIME ZONE '2022-12-22 08:56:06.894064+00', 32, '{"total-tables":26,"tables-classified":0}'), +(4142, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:00:00.004+00', 1, NULL), +(4143, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 09:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:00:00.088+00', 83, NULL), +(4144, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.004177+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.309768+00', 305, NULL), +(4145, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.004194+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.008384+00', 4, '{"timezone-id":"UTC"}'), +(4146, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.008425+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.020369+00', 11, '{"updated-tables":0,"total-tables":8}'), +(4147, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.020411+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.275347+00', 254, '{"total-fields":71,"updated-fields":0}'), +(4148, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.275516+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.281523+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4149, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.281631+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.30975+00', 28, NULL), +(4150, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.324735+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.339364+00', 14, NULL), +(4151, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.32475+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.334847+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4152, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.334892+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.337091+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4153, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.337121+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:19:00.339341+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4154, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:00.009138+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.269254+00', 8260, NULL), +(4155, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:00.009156+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:00.009394+00', 0, '{"timezone-id":null}'), +(4156, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:00.009428+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:00.055084+00', 45, '{"updated-tables":0,"total-tables":26}'), +(4157, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:00.055128+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.265698+00', 8210, '{"total-fields":297,"updated-fields":1}'), +(4158, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.265751+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.267731+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4159, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.26776+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.269204+00', 1, NULL), +(4160, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.281738+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.343428+00', 61, NULL), +(4161, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.28175+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.321034+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4162, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.321084+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.330321+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(4163, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.330429+00', TIMESTAMP WITH TIME ZONE '2022-12-22 09:56:08.343399+00', 12, '{"total-tables":26,"tables-classified":0}'), +(4164, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 10:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:00:00.006+00', 3, NULL), +(4165, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:00:00.008+00', 4, NULL), +(4166, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.009555+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.162801+00', 153, NULL), +(4167, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.00957+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.019929+00', 10, '{"timezone-id":"UTC"}'), +(4168, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.019994+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.025985+00', 5, '{"updated-tables":0,"total-tables":8}'), +(4169, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.026024+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.12695+00', 100, '{"total-fields":71,"updated-fields":0}'), +(4170, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.126991+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.133805+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4171, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.133878+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.162778+00', 28, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4172, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.169714+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.184641+00', 14, NULL), +(4173, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.169727+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.179377+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4174, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.179555+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.182055+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4175, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.182087+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:19:00.184622+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4176, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:00.004589+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.280286+00', 8275, NULL), +(4177, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:00.004605+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:00.016228+00', 11, '{"timezone-id":null}'), +(4178, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:00.016288+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:00.124806+00', 108, '{"updated-tables":0,"total-tables":26}'), +(4179, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:00.124853+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.278023+00', 8153, '{"total-fields":297,"updated-fields":0}'), +(4180, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.278066+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.279998+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4181, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.280036+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.280272+00', 0, NULL), +(4182, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.288954+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.343079+00', 54, NULL), +(4183, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.288966+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.319482+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4184, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.31953+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.326166+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4185, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.326208+00', TIMESTAMP WITH TIME ZONE '2022-12-22 10:56:08.343046+00', 16, '{"total-tables":26,"tables-classified":0}'), +(4186, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 11:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:00:00.021+00', 17, NULL), +(4187, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:00:00.021+00', 18, NULL), +(4188, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.010075+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.177072+00', 166, NULL), +(4189, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.010093+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.022799+00', 12, '{"timezone-id":"UTC"}'), +(4190, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.022874+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.031417+00', 8, '{"updated-tables":0,"total-tables":8}'), +(4191, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.031449+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.134911+00', 103, '{"total-fields":71,"updated-fields":0}'), +(4192, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.135063+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.140358+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4193, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.140453+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.177056+00', 36, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4194, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.184155+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.200696+00', 16, NULL), +(4195, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.184168+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.196456+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4196, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.19649+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.198595+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4197, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.198625+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:19:00.200668+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4198, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.324206+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.536655+00', 16212, NULL), +(4199, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.324225+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.324591+00', 0, '{"timezone-id":null}'), +(4200, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.324622+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.88555+00', 560, '{"updated-tables":0,"total-tables":26}'), +(4201, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.885594+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.534747+00', 15649, '{"total-fields":297,"updated-fields":1}'), +(4202, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.534781+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.536491+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4203, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.536514+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.536647+00', 0, NULL), +(4204, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.554926+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.622665+00', 67, NULL), +(4205, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.554936+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.600082+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4206, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.60019+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.609447+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(4207, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.609473+00', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:16.622649+00', 13, '{"total-tables":26,"tables-classified":0}'), +(4208, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:00.009+00', 1, NULL), +(4209, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:00.031+00', 20, NULL), +(4210, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.007256+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.239811+00', 232, NULL), +(4211, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.007269+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.022388+00', 15, '{"timezone-id":"UTC"}'), +(4212, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.022424+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.030018+00', 7, '{"updated-tables":0,"total-tables":8}'), +(4213, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.030169+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.19187+00', 161, '{"total-fields":71,"updated-fields":0}'), +(4214, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.191916+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.197231+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4215, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.197264+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.239793+00', 42, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4216, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.245794+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.259143+00', 13, NULL), +(4217, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.245803+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.25416+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4218, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.254193+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.256595+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4219, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.256623+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:19:00.259124+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4220, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:00.0095+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.164796+00', 9155, NULL), +(4221, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:00.009517+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:00.009761+00', 0, '{"timezone-id":null}'), +(4222, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:00.009794+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:00.128967+00', 119, '{"updated-tables":0,"total-tables":26}'), +(4223, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:00.129014+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.157988+00', 9028, '{"total-fields":297,"updated-fields":0}'), +(4224, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.158036+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.164567+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4225, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.164627+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.164785+00', 0, NULL), +(4226, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.196478+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.316948+00', 120, NULL), +(4227, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.196492+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.280607+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4228, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.280668+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.300331+00', 19, '{"fields-classified":1,"fields-failed":0}'), +(4229, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.300376+00', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:09.316912+00', 16, '{"total-tables":26,"tables-classified":0}'), +(4230, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.026+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.028+00', 2, NULL), +(4231, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.044+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.092+00', 48, NULL), +(4232, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.029169+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:08.019843+00', 7990, NULL), +(4233, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.029184+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.503697+00', 474, '{"deleted":0}'), +(4234, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:00.50375+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:00:08.019816+00', 7516, '{"errors":0,"created":0,"updated":27,"deleted":1}'), +(4235, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.00656+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.155322+00', 148, NULL), +(4236, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.006576+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.009442+00', 2, '{"timezone-id":"UTC"}'), +(4237, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.009479+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.017453+00', 7, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4238, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.017481+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.120576+00', 103, '{"total-fields":71,"updated-fields":0}'), +(4239, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.120612+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.126211+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4240, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.126242+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.155306+00', 29, NULL), +(4241, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.161245+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.17325+00', 12, NULL), +(4242, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.161256+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.16896+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4243, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.168992+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.17111+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4244, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.171136+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:19:00.173233+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4245, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:00.006826+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.605612+00', 9598, NULL), +(4246, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:00.006843+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:00.007076+00', 0, '{"timezone-id":null}'), +(4247, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:00.007115+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:00.115389+00', 108, '{"updated-tables":0,"total-tables":26}'), +(4248, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:00.115436+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.603046+00', 9487, '{"total-fields":297,"updated-fields":0}'), +(4249, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.603088+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.605445+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4250, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.605473+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.605603+00', 0, NULL), +(4251, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.615062+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.665901+00', 50, NULL), +(4252, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.615072+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.645737+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4253, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.645784+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.6548+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(4254, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.654837+00', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:09.665879+00', 11, '{"total-tables":26,"tables-classified":0}'), +(4255, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 14:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:00:00.004+00', 1, NULL), +(4256, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 14:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:00:00.022+00', 16, NULL), +(4257, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.005985+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.148779+00', 142, NULL), +(4258, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.006001+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.023405+00', 17, '{"timezone-id":"UTC"}'), +(4259, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.023457+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.027987+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4260, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.028039+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.110097+00', 82, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4261, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.110175+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.115359+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4262, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.115422+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.148763+00', 33, NULL), +(4263, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.156626+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.170033+00', 13, NULL), +(4264, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.156637+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.165503+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4265, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.165538+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.167721+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4266, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.167749+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:00.170014+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4267, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:00.012312+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.640192+00', 11627, NULL), +(4268, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:00.01233+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:00.012634+00', 0, '{"timezone-id":null}'), +(4269, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:00.01267+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:00.134751+00', 122, '{"updated-tables":0,"total-tables":26}'), +(4270, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:00.134799+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.628464+00', 11493, '{"total-fields":297,"updated-fields":0}'), +(4271, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.628562+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.638634+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4272, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.638682+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.640173+00', 1, NULL), +(4273, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.676722+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.804114+00', 127, NULL), +(4274, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.676737+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.743991+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4275, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.744047+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.762987+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(4276, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.763044+00', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:11.80407+00', 41, '{"total-tables":26,"tables-classified":0}'), +(4277, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:00.003+00', 1, NULL), +(4278, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:00.012+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:00.024+00', 12, NULL), +(4279, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.007398+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.240667+00', 233, NULL), +(4280, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.007413+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.019026+00', 11, '{"timezone-id":"UTC"}'), +(4281, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.019069+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.029516+00', 10, '{"updated-tables":0,"total-tables":8}'), +(4282, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.029557+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.179797+00', 150, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4283, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.180507+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.190315+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4284, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.190357+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.240525+00', 50, NULL), +(4285, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.259431+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.273973+00', 14, NULL), +(4286, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.259444+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.268357+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4287, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.268394+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.271074+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4288, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.271102+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.273942+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4289, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:00.015004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.309627+00', 7294, NULL), +(4290, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:00.015022+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:00.015251+00', 0, '{"timezone-id":null}'), +(4291, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:00.015283+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:00.118041+00', 102, '{"updated-tables":0,"total-tables":26}'), +(4292, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:00.11809+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.30728+00', 7189, '{"total-fields":302,"updated-fields":52}'), +(4293, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.307326+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.30943+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4294, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.309466+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.309617+00', 0, NULL), +(4295, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.341451+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.556934+00', 215, NULL), +(4296, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.341466+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.495816+00', 154, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":5,"fingerprints-attempted":5}'), +(4297, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.495864+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.525605+00', 29, '{"fields-classified":5,"fields-failed":0}'), +(4298, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.525654+00', TIMESTAMP WITH TIME ZONE '2022-12-22 15:56:07.556893+00', 31, '{"total-tables":26,"tables-classified":0}'), +(4299, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 16:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:00:00.004+00', 2, NULL), +(4300, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 16:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:00:00.03+00', 26, NULL), +(4301, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.004163+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.203307+00', 199, NULL), +(4302, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.004178+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.006941+00', 2, '{"timezone-id":"UTC"}'), +(4303, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.00698+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.035599+00', 28, '{"updated-tables":0,"total-tables":8}'), +(4304, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.035636+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.172601+00', 136, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4305, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.172637+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.1777+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4306, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.177728+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.203292+00', 25, NULL), +(4307, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.209262+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.221032+00', 11, NULL), +(4308, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.209272+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.216785+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4309, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.216815+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.218857+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4310, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.218883+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:19:00.221014+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4311, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:00.01999+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.10757+00', 7087, NULL), +(4312, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:00.020008+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:00.020441+00', 0, '{"timezone-id":null}'), +(4313, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:00.020484+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:00.072481+00', 51, '{"updated-tables":0,"total-tables":26}'), +(4314, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:00.072655+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.105314+00', 7032, '{"total-fields":302,"updated-fields":0}'), +(4315, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.105359+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.107368+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4316, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.107398+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.10756+00', 0, NULL), +(4317, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.115757+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.196236+00', 80, NULL), +(4318, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.115769+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.179144+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":1,"fingerprints-attempted":1}'), +(4319, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.179196+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.186246+00', 7, '{"fields-classified":1,"fields-failed":0}'), +(4320, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.186283+00', TIMESTAMP WITH TIME ZONE '2022-12-22 16:56:07.196215+00', 9, '{"total-tables":26,"tables-classified":0}'), +(4321, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:00:00.007+00', 3, NULL), +(4322, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:00:00.011+00', 7, NULL), +(4323, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.006255+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.259404+00', 253, NULL), +(4324, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.006272+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.042668+00', 36, '{"timezone-id":"UTC"}'), +(4325, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.042725+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.048929+00', 6, '{"updated-tables":0,"total-tables":8}'), +(4326, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.048961+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.221883+00', 172, '{"total-fields":71,"updated-fields":0}'), +(4327, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.221922+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.227389+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4328, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.22742+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.259386+00', 31, NULL), +(4329, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.266193+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.279459+00', 13, NULL), +(4330, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.266204+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.274641+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4331, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.274676+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.277028+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4332, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.277058+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:19:00.279414+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4333, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:00.008689+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.96982+00', 6961, NULL), +(4334, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:00.008704+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:00.008913+00', 0, '{"timezone-id":null}'), +(4335, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:00.008943+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:00.061817+00', 52, '{"updated-tables":0,"total-tables":26}'), +(4336, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:00.064334+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.967622+00', 6903, '{"total-fields":302,"updated-fields":0}'), +(4337, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.967667+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.969607+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4338, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.969646+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.96981+00', 0, NULL), +(4339, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.978398+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:07.024026+00', 45, NULL), +(4340, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:06.97841+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:07.007453+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4341, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:07.007495+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:07.014256+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4342, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:07.014291+00', TIMESTAMP WITH TIME ZONE '2022-12-22 17:56:07.024007+00', 9, '{"total-tables":26,"tables-classified":0}'), +(4343, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:00:00.006+00', 2, NULL), +(4344, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 18:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:00:00.029+00', 20, NULL), +(4345, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.007477+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.164003+00', 156, NULL), +(4346, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.007489+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.011462+00', 3, '{"timezone-id":"UTC"}'), +(4347, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.011493+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.018778+00', 7, '{"updated-tables":0,"total-tables":8}'), +(4348, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.018802+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.13197+00', 113, '{"total-fields":71,"updated-fields":0}'), +(4349, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.131996+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.137525+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4350, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.137551+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.163992+00', 26, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4351, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.171841+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.185247+00', 13, NULL), +(4352, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.171849+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.180845+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4353, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.180873+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.183046+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4354, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.183073+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:19:00.18523+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4355, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:00.012309+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.372432+00', 7360, NULL), +(4356, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:00.012327+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:00.012549+00', 0, '{"timezone-id":null}'), +(4357, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:00.012592+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:00.049074+00', 36, '{"updated-tables":0,"total-tables":26}'), +(4358, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:00.049121+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.368295+00', 7319, '{"total-fields":302,"updated-fields":0}'), +(4359, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.368343+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.372249+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4360, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.372283+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.372422+00', 0, NULL), +(4361, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.387252+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.44633+00', 59, NULL), +(4362, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.387264+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.428657+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4363, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.428709+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.434423+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(4364, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.434464+00', TIMESTAMP WITH TIME ZONE '2022-12-22 18:56:07.446208+00', 11, '{"total-tables":26,"tables-classified":0}'), +(4365, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 19:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:00:00.036+00', 32, NULL), +(4366, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 19:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:00:00.038+00', 33, NULL), +(4367, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.004975+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.265388+00', 260, NULL), +(4368, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.00499+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.023667+00', 18, '{"timezone-id":"UTC"}'), +(4369, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.023724+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.02865+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4370, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.028708+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.133446+00', 104, '{"total-fields":71,"updated-fields":0}'), +(4371, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.133482+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.138977+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4372, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.139008+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.265355+00', 126, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4373, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.287092+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.32944+00', 42, NULL), +(4374, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.287117+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.311681+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4375, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.311761+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.320392+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(4376, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.320446+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:19:00.329402+00', 8, '{"total-tables":8,"tables-classified":0}'), +(4377, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:00.044388+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.485405+00', 7441, NULL), +(4378, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:00.044545+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:00.046305+00', 1, '{"timezone-id":null}'), +(4379, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:00.046606+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:00.154267+00', 107, '{"updated-tables":0,"total-tables":26}'), +(4380, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:00.154319+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.483286+00', 7328, '{"total-fields":302,"updated-fields":0}'), +(4381, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.483321+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.485218+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4382, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.485244+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.485396+00', 0, NULL), +(4383, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.496223+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.576828+00', 80, NULL), +(4384, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.496326+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.557962+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4385, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.558005+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.566483+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(4386, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.566516+00', TIMESTAMP WITH TIME ZONE '2022-12-22 19:56:07.576811+00', 10, '{"total-tables":26,"tables-classified":0}'), +(4387, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:00:00.008+00', 4, NULL), +(4388, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 20:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:00:00.015+00', 13, NULL), +(4389, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.004506+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.201149+00', 196, NULL), +(4390, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.004521+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.043572+00', 39, '{"timezone-id":"UTC"}'), +(4391, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.043631+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.048303+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4392, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.048332+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.155867+00', 107, '{"total-fields":71,"updated-fields":0}'), +(4393, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.155908+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.163698+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4394, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.163736+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.201129+00', 37, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4395, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.209698+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.224364+00', 14, NULL), +(4396, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.209711+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.219893+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4397, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.219936+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.222038+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4398, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.222075+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:19:00.224346+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4399, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:00.007505+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.874141+00', 8866, NULL), +(4400, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:00.007521+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:00.007726+00', 0, '{"timezone-id":null}'), +(4401, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:00.007756+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:00.321728+00', 313, '{"updated-tables":0,"total-tables":26}'), +(4402, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:00.321774+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.870943+00', 8549, '{"total-fields":302,"updated-fields":0}'), +(4403, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.871246+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.873446+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4404, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.873618+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.874009+00', 0, NULL), +(4405, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.884407+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.940241+00', 55, NULL), +(4406, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.884416+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.915347+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4407, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.915432+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.922727+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(4408, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.922805+00', TIMESTAMP WITH TIME ZONE '2022-12-22 20:56:08.940167+00', 17, '{"total-tables":26,"tables-classified":0}'), +(4409, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.025+00', 16, NULL), +(4410, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.028+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.032+00', 4, NULL), +(4411, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.00979+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.760022+00', 750, NULL), +(4412, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.009805+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.100136+00', 90, '{"deleted":0}'), +(4413, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.100187+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:00:00.759994+00', 659, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(4414, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.003908+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.279965+00', 276, NULL), +(4415, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.003924+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.014598+00', 10, '{"timezone-id":"UTC"}'), +(4416, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.014657+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.0223+00', 7, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4417, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.02234+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.233239+00', 210, '{"total-fields":71,"updated-fields":0}'), +(4418, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.233279+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.244218+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4419, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.244262+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.279944+00', 35, NULL), +(4420, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.288572+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.30425+00', 15, NULL), +(4421, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.288587+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.297198+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4422, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.297341+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.300249+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4423, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.30031+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:19:00.304229+00', 3, '{"total-tables":8,"tables-classified":0}'), +(4424, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:00.006921+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.755382+00', 7748, NULL), +(4425, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:00.006938+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:00.007177+00', 0, '{"timezone-id":null}'), +(4426, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:00.007207+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:00.103261+00', 96, '{"updated-tables":0,"total-tables":26}'), +(4427, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:00.103309+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.753381+00', 7650, '{"total-fields":302,"updated-fields":0}'), +(4428, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.753427+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.755223+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4429, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.75525+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.755374+00', 0, NULL), +(4430, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.76378+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.806986+00', 43, NULL), +(4431, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.76379+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.79075+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4432, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.790783+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.796798+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4433, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.796826+00', TIMESTAMP WITH TIME ZONE '2022-12-22 21:56:07.806969+00', 10, '{"total-tables":26,"tables-classified":0}'), +(4434, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 22:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:00:00.006+00', 2, NULL), +(4435, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 22:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:00:00.011+00', 3, NULL), +(4436, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.005205+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.187635+00', 182, NULL), +(4437, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.005222+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.009173+00', 3, '{"timezone-id":"UTC"}'), +(4438, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.00921+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.013619+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4439, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.013646+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.145273+00', 131, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4440, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.145481+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.151501+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4441, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.151631+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.187621+00', 35, NULL), +(4442, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.195496+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.21069+00', 15, NULL), +(4443, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.195507+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.204784+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4444, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.204818+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.207789+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4445, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.207821+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:19:00.21067+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4446, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:00.011446+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.485245+00', 7473, NULL), +(4447, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:00.011461+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:00.011692+00', 0, '{"timezone-id":null}'), +(4448, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:00.011723+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:00.071199+00', 59, '{"updated-tables":0,"total-tables":26}'), +(4449, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:00.071243+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.481899+00', 7410, '{"total-fields":302,"updated-fields":0}'), +(4450, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.481944+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.484294+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4451, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.484325+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.485228+00', 0, NULL), +(4452, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.500743+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.579462+00', 78, NULL), +(4453, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.500766+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.554978+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4454, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.555032+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.567785+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(4455, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.567828+00', TIMESTAMP WITH TIME ZONE '2022-12-22 22:56:07.579438+00', 11, '{"total-tables":26,"tables-classified":0}'), +(4456, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 23:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:00:00.003+00', 1, NULL), +(4457, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-22 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:00:00.008+00', 5, NULL), +(4458, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.006761+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.216184+00', 209, NULL), +(4459, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.006775+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.024799+00', 18, '{"timezone-id":"UTC"}'), +(4460, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.024861+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.029067+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4461, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.029107+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.160327+00', 131, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4462, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.160373+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.175474+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4463, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.175526+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.216156+00', 40, NULL), +(4464, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.223047+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.239096+00', 16, NULL), +(4465, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.223061+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.232456+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4466, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.232497+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.236102+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(4467, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.236135+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:19:00.239055+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4468, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:00.012162+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.060792+00', 8048, NULL), +(4469, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:00.012182+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:00.012486+00', 0, '{"timezone-id":null}'), +(4470, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:00.012524+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:00.099093+00', 86, '{"updated-tables":0,"total-tables":26}'), +(4471, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:00.099232+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.058775+00', 7959, '{"total-fields":302,"updated-fields":0}'), +(4472, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.058822+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.060619+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4473, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.060646+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.060783+00', 0, NULL), +(4474, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.070479+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.158236+00', 87, NULL), +(4475, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.070489+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.14238+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4476, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.142435+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.148704+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4477, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.148734+00', TIMESTAMP WITH TIME ZONE '2022-12-22 23:56:08.158217+00', 9, '{"total-tables":26,"tables-classified":0}'), +(4478, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 00:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:00:00.004+00', 1, NULL), +(4479, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 00:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:00:00.009+00', 4, NULL), +(4480, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.004676+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.227873+00', 223, NULL), +(4481, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.004693+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.01185+00', 7, '{"timezone-id":"UTC"}'), +(4482, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.011895+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.016909+00', 5, '{"updated-tables":0,"total-tables":8}'), +(4483, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.017106+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.158711+00', 141, '{"total-fields":71,"updated-fields":0}'), +(4484, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.158755+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.167291+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4485, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.167367+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.227846+00', 60, NULL), +(4486, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.239444+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.258528+00', 19, NULL), +(4487, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.239457+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.251203+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4488, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.251272+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.255058+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(4489, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.255101+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:19:00.258507+00', 3, '{"total-tables":8,"tables-classified":0}'), +(4490, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:00.01035+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.488832+00', 7478, NULL), +(4491, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:00.010367+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:00.010576+00', 0, '{"timezone-id":null}'), +(4492, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:00.010606+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:00.339583+00', 328, '{"updated-tables":0,"total-tables":26}'), +(4493, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:00.339628+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.486434+00', 7146, '{"total-fields":302,"updated-fields":0}'), +(4494, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.486483+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.488651+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4495, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.488682+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.488824+00', 0, NULL), +(4496, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.498736+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.585294+00', 86, NULL), +(4497, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.498747+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.546805+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4498, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.546856+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.558978+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(4499, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.559023+00', TIMESTAMP WITH TIME ZONE '2022-12-23 00:56:07.585256+00', 26, '{"total-tables":26,"tables-classified":0}'), +(4500, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 01:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:00:00.053+00', 44, NULL), +(4501, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 01:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:00:00.054+00', 40, NULL), +(4502, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.004332+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.242814+00', 238, NULL), +(4503, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.004349+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.014223+00', 9, '{"timezone-id":"UTC"}'), +(4504, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.014269+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.026747+00', 12, '{"updated-tables":0,"total-tables":8}'), +(4505, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.026791+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.209588+00', 182, '{"total-fields":71,"updated-fields":0}'), +(4506, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.209627+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.215443+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4507, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.215475+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.242769+00', 27, NULL), +(4508, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.249122+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.263136+00', 14, NULL), +(4509, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.249133+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.257073+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4510, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.257137+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.25995+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4511, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.260006+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:19:00.263092+00', 3, '{"total-tables":8,"tables-classified":0}'), +(4512, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:00.004908+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.387691+00', 7382, NULL), +(4513, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:00.004926+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:00.005112+00', 0, '{"timezone-id":null}'), +(4514, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:00.005142+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:00.03688+00', 31, '{"updated-tables":0,"total-tables":26}'), +(4515, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:00.036926+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.381695+00', 7344, '{"total-fields":302,"updated-fields":0}'), +(4516, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.381745+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.387196+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4517, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.387256+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.387673+00', 0, NULL), +(4518, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.408859+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.47389+00', 65, NULL), +(4519, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.408872+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.449283+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4520, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.449333+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.459216+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(4521, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.459255+00', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:07.473865+00', 14, '{"total-tables":26,"tables-classified":0}'), +(4522, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:00.002+00', 1, NULL), +(4523, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:00.02+00', 15, NULL), +(4524, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.006302+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.191235+00', 184, NULL), +(4525, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.006319+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.010476+00', 4, '{"timezone-id":"UTC"}'), +(4526, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.010513+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.031067+00', 20, '{"updated-tables":0,"total-tables":8}'), +(4527, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.03117+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.132783+00', 101, '{"total-fields":71,"updated-fields":0}'), +(4528, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.132827+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.140435+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4529, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.140468+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.19121+00', 50, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4530, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.201069+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.215751+00', 14, NULL), +(4531, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.201081+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.209536+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4532, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.209608+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.212716+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(4533, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.212787+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:19:00.215691+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4534, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:00.012914+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.750704+00', 5737, NULL), +(4535, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:00.013+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:00.013405+00', 0, '{"timezone-id":null}'), +(4536, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:00.013466+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:00.08759+00', 74, '{"updated-tables":0,"total-tables":26}'), +(4537, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:00.087663+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.748105+00', 5660, '{"total-fields":302,"updated-fields":0}'), +(4538, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.748188+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.750283+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4539, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.750316+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.750689+00', 0, NULL), +(4540, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.779256+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.825001+00', 45, NULL), +(4541, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.779268+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.806394+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4542, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.806438+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.813321+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4543, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.813357+00', TIMESTAMP WITH TIME ZONE '2022-12-23 02:56:05.824967+00', 11, '{"total-tables":26,"tables-classified":0}'), +(4544, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 03:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:00:00.003+00', 1, NULL), +(4545, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 03:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:00:00.043+00', 32, NULL), +(4546, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.004162+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.184036+00', 179, NULL), +(4547, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.004178+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.015639+00', 11, '{"timezone-id":"UTC"}'), +(4548, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.015682+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.029588+00', 13, '{"updated-tables":0,"total-tables":8}'), +(4549, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.029631+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.147844+00', 118, '{"total-fields":71,"updated-fields":0}'), +(4550, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.147888+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.153792+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4551, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.153844+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.184015+00', 30, NULL), +(4552, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.193891+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.208126+00', 14, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4553, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.193903+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.201792+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4554, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.201841+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.204461+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4555, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.204491+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:19:00.208104+00', 3, '{"total-tables":8,"tables-classified":0}'), +(4556, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:00.027055+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.639817+00', 6612, NULL), +(4557, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:00.027073+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:00.027386+00', 0, '{"timezone-id":null}'), +(4558, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:00.02742+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:00.213555+00', 186, '{"updated-tables":0,"total-tables":26}'), +(4559, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:00.213622+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.637143+00', 6423, '{"total-fields":302,"updated-fields":0}'), +(4560, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.637191+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.639396+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4561, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.639431+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.639801+00', 0, NULL), +(4562, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.686281+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.912505+00', 226, NULL), +(4563, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.686298+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.874961+00', 188, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4564, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.875014+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.892888+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(4565, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.892939+00', TIMESTAMP WITH TIME ZONE '2022-12-23 03:56:06.912467+00', 19, '{"total-tables":26,"tables-classified":0}'), +(4566, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:00:00.005+00', 1, NULL), +(4567, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 04:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:00:00.009+00', 4, NULL), +(4568, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.004174+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.158794+00', 154, NULL), +(4569, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.00419+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.011683+00', 7, '{"timezone-id":"UTC"}'), +(4570, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.011728+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.015919+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4571, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.015952+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.115298+00', 99, '{"total-fields":71,"updated-fields":0}'), +(4572, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.115374+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.123258+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4573, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.123319+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.15875+00', 35, NULL), +(4574, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.165957+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.179794+00', 13, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4575, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.165969+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.174246+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4576, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.174305+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.177013+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4577, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.177074+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:19:00.179752+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4578, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:00.012479+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.465545+00', 6453, NULL), +(4579, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:00.012496+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:00.012782+00', 0, '{"timezone-id":null}'), +(4580, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:00.012816+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:00.20449+00', 191, '{"updated-tables":0,"total-tables":26}'), +(4581, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:00.204536+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.463278+00', 6258, '{"total-fields":302,"updated-fields":0}'), +(4582, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.46332+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.465271+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4583, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.4653+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.465531+00', 0, NULL), +(4584, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.474384+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.786586+00', 312, NULL), +(4585, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.474394+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.752296+00', 277, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4586, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.752358+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.766361+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(4587, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.766421+00', TIMESTAMP WITH TIME ZONE '2022-12-23 04:56:06.786546+00', 20, '{"total-tables":26,"tables-classified":0}'), +(4588, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 05:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:00:00.003+00', 1, NULL), +(4589, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:00:00.007+00', 4, NULL), +(4590, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.005918+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.17801+00', 172, NULL), +(4591, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.005933+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.018274+00', 12, '{"timezone-id":"UTC"}'), +(4592, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.018348+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.033916+00', 15, '{"updated-tables":0,"total-tables":8}'), +(4593, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.03399+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.136385+00', 102, '{"total-fields":71,"updated-fields":0}'), +(4594, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.136423+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.142794+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4595, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.142831+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.177992+00', 35, NULL), +(4596, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.19904+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.215897+00', 16, NULL), +(4597, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.199053+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.210359+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4598, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.210432+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.213147+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4599, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.213178+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:19:00.215852+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4600, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:00.073196+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.143066+00', 8069, NULL), +(4601, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:00.07322+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:00.073683+00', 0, '{"timezone-id":null}'), +(4602, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:00.073722+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:00.495344+00', 421, '{"updated-tables":0,"total-tables":26}'), +(4603, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:00.49539+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.137177+00', 7641, '{"total-fields":302,"updated-fields":0}'), +(4604, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.137238+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.142821+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4605, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.142869+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.143055+00', 0, NULL), +(4606, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.154315+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.243166+00', 88, NULL), +(4607, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.154331+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.208489+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4608, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.208552+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.217128+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(4609, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.217179+00', TIMESTAMP WITH TIME ZONE '2022-12-23 05:56:08.243119+00', 25, '{"total-tables":26,"tables-classified":0}'), +(4610, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 06:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:00:00.003+00', 2, NULL), +(4611, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 06:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:00:00.008+00', 5, NULL), +(4612, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.02834+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.184533+00', 156, NULL), +(4613, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.028557+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.032797+00', 4, '{"timezone-id":"UTC"}'), +(4614, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.032838+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.037788+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4615, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.03797+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.141619+00', 103, '{"total-fields":71,"updated-fields":0}'), +(4616, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.141692+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.152332+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4617, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.15237+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.184513+00', 32, NULL), +(4618, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.193682+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.280533+00', 86, NULL), +(4619, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.193695+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.270194+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4620, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.270246+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.276072+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4621, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.276112+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:19:00.280437+00', 4, '{"total-tables":8,"tables-classified":0}'), +(4622, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:00.057308+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.854278+00', 7796, NULL), +(4623, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:00.057329+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:00.057735+00', 0, '{"timezone-id":null}'), +(4624, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:00.057773+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:00.284704+00', 226, '{"updated-tables":0,"total-tables":26}'), +(4625, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:00.28477+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.851304+00', 7566, '{"total-fields":302,"updated-fields":0}'), +(4626, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.851362+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.853798+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4627, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.85409+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.854265+00', 0, NULL), +(4628, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.863506+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.911359+00', 47, NULL), +(4629, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.863517+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.892509+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4630, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.892589+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.898981+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4631, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.89913+00', TIMESTAMP WITH TIME ZONE '2022-12-23 06:56:07.911306+00', 12, '{"total-tables":26,"tables-classified":0}'), +(4632, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:00:00.008+00', 4, NULL), +(4633, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 07:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:00:00.01+00', 5, NULL), +(4634, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.00543+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.225144+00', 219, NULL), +(4635, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.00546+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.029303+00', 23, '{"timezone-id":"UTC"}'), +(4636, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.029367+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.037034+00', 7, '{"updated-tables":0,"total-tables":8}'), +(4637, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.037071+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.176572+00', 139, '{"total-fields":71,"updated-fields":0}'), +(4638, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.176666+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.184905+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4639, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.184946+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.225123+00', 40, NULL), +(4640, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.232242+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.253415+00', 21, NULL), +(4641, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.232266+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.247314+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4642, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.247361+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.250363+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(4643, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.250396+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:19:00.253394+00', 2, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4644, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:00.006306+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.676712+00', 7670, NULL), +(4645, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:00.006327+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:00.006543+00', 0, '{"timezone-id":null}'), +(4646, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:00.006575+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:00.037099+00', 30, '{"updated-tables":0,"total-tables":26}'), +(4647, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:00.037206+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.674689+00', 7637, '{"total-fields":302,"updated-fields":0}'), +(4648, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.674743+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.676531+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4649, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.676559+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.676703+00', 0, NULL), +(4650, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.687675+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.732176+00', 44, NULL), +(4651, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.687687+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.714797+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4652, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.714842+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.722162+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(4653, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.722198+00', TIMESTAMP WITH TIME ZONE '2022-12-23 07:56:07.732151+00', 9, '{"total-tables":26,"tables-classified":0}'), +(4654, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:00:00.097+00', 94, NULL), +(4655, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:00:00.098+00', 95, NULL), +(4656, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.01237+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.296299+00', 283, NULL), +(4657, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.017992+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.057029+00', 39, '{"timezone-id":"UTC"}'), +(4658, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.057244+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.068411+00', 11, '{"updated-tables":0,"total-tables":8}'), +(4659, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.068454+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.236346+00', 167, '{"total-fields":71,"updated-fields":0}'), +(4660, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.236387+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.244441+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4661, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.244482+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.296278+00', 51, NULL), +(4662, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.309033+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.327225+00', 18, NULL), +(4663, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.309047+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.321554+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4664, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.321598+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.324319+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4665, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.324397+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:00.327205+00', 2, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4666, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:00.013104+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.786648+00', 7773, NULL), +(4667, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:00.013122+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:00.013334+00', 0, '{"timezone-id":null}'), +(4668, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:00.013365+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:00.136942+00', 123, '{"updated-tables":0,"total-tables":26}'), +(4669, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:00.137117+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.780093+00', 7642, '{"total-fields":302,"updated-fields":0}'), +(4670, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.780163+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.786258+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4671, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.786304+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.786631+00', 0, NULL), +(4672, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.811076+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:08.000399+00', 189, NULL), +(4673, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.81109+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.935846+00', 124, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4674, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.935897+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.960769+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(4675, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:07.96083+00', TIMESTAMP WITH TIME ZONE '2022-12-23 08:56:08.000345+00', 39, '{"total-tables":26,"tables-classified":0}'), +(4676, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:00.005+00', 1, NULL), +(4677, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:00.077+00', 68, NULL), +(4678, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.005655+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.182538+00', 176, NULL), +(4679, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.005667+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.007987+00', 2, '{"timezone-id":"UTC"}'), +(4680, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.00802+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.011504+00', 3, '{"updated-tables":0,"total-tables":8}'), +(4681, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.011529+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.11075+00', 99, '{"total-fields":71,"updated-fields":0}'), +(4682, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.110778+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.118924+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4683, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.11896+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.182521+00', 63, NULL), +(4684, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.190867+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.217367+00', 26, NULL), +(4685, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.190878+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.207768+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4686, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.207815+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.212041+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(4687, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.212072+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:19:00.216162+00', 4, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4688, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:00.021101+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.803933+00', 6782, NULL), +(4689, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:00.021118+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:00.021324+00', 0, '{"timezone-id":null}'), +(4690, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:00.021355+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:00.113597+00', 92, '{"updated-tables":0,"total-tables":26}'), +(4691, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:00.113642+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.799506+00', 6685, '{"total-fields":302,"updated-fields":0}'), +(4692, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.799557+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.803563+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4693, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.803596+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.803917+00', 0, NULL), +(4694, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.824149+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.873359+00', 49, NULL), +(4695, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.824163+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.853436+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4696, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.853494+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.86116+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(4697, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.861207+00', TIMESTAMP WITH TIME ZONE '2022-12-23 09:56:06.873329+00', 12, '{"total-tables":26,"tables-classified":0}'), +(4698, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 10:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:00:00.004+00', 1, NULL), +(4699, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 10:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:00:00.11+00', 105, NULL), +(4700, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.00801+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.195148+00', 187, NULL), +(4701, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.008025+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.019456+00', 11, '{"timezone-id":"UTC"}'), +(4702, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.019504+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.023868+00', 4, '{"updated-tables":0,"total-tables":8}'), +(4703, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.023943+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.11695+00', 93, '{"total-fields":71,"updated-fields":0}'), +(4704, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.117107+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.122367+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4705, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.122472+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.195094+00', 72, NULL), +(4706, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.212143+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.238536+00', 26, NULL), +(4707, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.212181+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.228205+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4708, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.228291+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.231388+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(4709, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.231424+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:19:00.238516+00', 7, '{"total-tables":8,"tables-classified":0}'), +(4710, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:00.027617+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.952285+00', 12924, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4711, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:00.027641+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:00.029807+00', 2, '{"timezone-id":null}'), +(4712, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:00.029878+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:00.104787+00', 74, '{"updated-tables":0,"total-tables":26}'), +(4713, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:00.104835+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.949723+00', 12844, '{"total-fields":302,"updated-fields":0}'), +(4714, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.949774+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.952019+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4715, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.952084+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.952272+00', 0, NULL), +(4716, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.962472+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:13.051955+00', 89, NULL), +(4717, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:12.962487+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:13.023029+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4718, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:13.023091+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:13.038787+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(4719, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:13.038843+00', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:13.051918+00', 13, '{"total-tables":26,"tables-classified":0}'), +(4720, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:00.022+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:00.032+00', 10, NULL), +(4721, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:00.022+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:00.032+00', 10, NULL), +(4722, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.132556+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.019483+00', 3886, NULL), +(4723, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.132578+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.699853+00', 567, '{"timezone-id":"UTC"}'), +(4724, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.699907+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.833962+00', 134, '{"updated-tables":0,"total-tables":8}'), +(4725, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.834041+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:03.019306+00', 2185, '{"total-fields":71,"updated-fields":0}'), +(4726, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:03.019351+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:03.216742+00', 197, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4727, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:03.216797+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.017797+00', 801, NULL), +(4728, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.086773+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.254307+00', 167, NULL), +(4729, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.086793+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.198742+00', 111, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4730, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.198806+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.234119+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(4731, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.234186+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:04.254266+00', 20, '{"total-tables":8,"tables-classified":0}'), +(4732, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.255806+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.262836+00', 7007, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4733, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.255823+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.256024+00', 0, '{"timezone-id":null}'), +(4734, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.256055+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.307108+00', 51, '{"updated-tables":0,"total-tables":26}'), +(4735, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.307141+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.257942+00', 6950, '{"total-fields":302,"updated-fields":0}'), +(4736, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.257987+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.262522+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4737, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.262556+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.26282+00', 0, NULL), +(4738, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.282987+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.745249+00', 462, NULL), +(4739, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.282998+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.509736+00', 226, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4740, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.509799+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.556584+00', 46, '{"fields-classified":0,"fields-failed":0}'), +(4741, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.556841+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:50.745211+00', 188, '{"total-tables":26,"tables-classified":0}'), +(4742, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.996313+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:51.749618+00', 7753, NULL), +(4743, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:43.996326+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:44.356597+00', 360, '{"deleted":0}'), +(4744, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:44.356648+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:51.749562+00', 7392, '{"errors":0,"created":4,"updated":48,"deleted":0}'), +(4745, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:00.030178+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.139637+00', 9109, NULL), +(4746, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:00.030195+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:00.030417+00', 0, '{"timezone-id":null}'), +(4747, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:00.03045+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:00.077013+00', 46, '{"updated-tables":0,"total-tables":26}'), +(4748, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:00.077149+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.136929+00', 9059, '{"total-fields":302,"updated-fields":0}'), +(4749, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.136976+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.139318+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4750, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.139354+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.139623+00', 0, NULL), +(4751, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.162279+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.287095+00', 124, NULL), +(4752, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.162293+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.25813+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4753, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.258185+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.271583+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(4754, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.271653+00', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.28703+00', 15, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4755, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:00.032+00', 25, NULL), +(4756, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:00.033+00', 24, NULL), +(4757, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.012696+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.222292+00', 209, NULL), +(4758, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.012712+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.019399+00', 6, '{"timezone-id":"UTC"}'), +(4759, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.019444+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.036564+00', 17, '{"updated-tables":0,"total-tables":8}'), +(4760, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.036604+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.14624+00', 109, '{"total-fields":71,"updated-fields":0}'), +(4761, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.146285+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.174145+00', 27, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4762, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.17419+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.22227+00', 48, NULL), +(4763, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.233639+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.253303+00', 19, NULL), +(4764, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.233686+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.248709+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4765, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.248754+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.251132+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4766, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.251163+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:00.253283+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4767, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:00.014787+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.430196+00', 6415, NULL), +(4768, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:00.014806+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:00.015036+00', 0, '{"timezone-id":null}'), +(4769, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:00.015066+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:00.088385+00', 73, '{"updated-tables":0,"total-tables":26}'), +(4770, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:00.088429+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.427859+00', 6339, '{"total-fields":302,"updated-fields":0}'), +(4771, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.427938+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.429801+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4772, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.429882+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.430162+00', 0, NULL), +(4773, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.462244+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.530773+00', 68, NULL), +(4774, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.462259+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.505982+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4775, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.506034+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.511848+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(4776, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.511882+00', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:06.530745+00', 18, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4777, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.071+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.071+00', 0, NULL), +(4778, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.151+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.172+00', 21, NULL), +(4779, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.151236+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:06.000689+00', 5849, NULL), +(4780, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.151263+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.948831+00', 797, '{"deleted":0}'), +(4781, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:00.948886+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:00:06.000664+00', 5051, '{"errors":0,"created":0,"updated":5,"deleted":0}'), +(4782, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.018811+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.157189+00', 138, NULL), +(4783, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.018826+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.021398+00', 2, '{"timezone-id":"UTC"}'), +(4784, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.021434+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.025316+00', 3, '{"updated-tables":0,"total-tables":8}'), +(4785, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.025343+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.118115+00', 92, '{"total-fields":71,"updated-fields":0}'), +(4786, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.118154+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.127716+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4787, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.127751+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.157172+00', 29, NULL), +(4788, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.163653+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.194619+00', 30, NULL), +(4789, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.163664+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.183697+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4790, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.183756+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.186146+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4791, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.186208+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:19:00.194543+00', 8, '{"total-tables":8,"tables-classified":0}'), +(4792, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:00.008239+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.443228+00', 12434, NULL), +(4793, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:00.008258+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:00.008471+00', 0, '{"timezone-id":null}'), +(4794, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:00.008502+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:00.072264+00', 63, '{"updated-tables":0,"total-tables":26}'), +(4795, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:00.072488+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.439586+00', 12367, '{"total-fields":302,"updated-fields":0}'), +(4796, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.439634+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.441732+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4797, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.441761+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.443211+00', 1, NULL), +(4798, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.46671+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.564919+00', 98, NULL), +(4799, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.466722+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.531942+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4800, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.531997+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.544907+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(4801, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.544946+00', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:12.564892+00', 19, '{"total-tables":26,"tables-classified":0}'), +(4802, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:00.004+00', 1, NULL), +(4803, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:00.113+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:00.139+00', 26, NULL), +(4804, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.013679+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.297317+00', 283, NULL), +(4805, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.013695+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.067546+00', 53, '{"timezone-id":"UTC"}'), +(4806, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.06763+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.080821+00', 13, '{"updated-tables":0,"total-tables":8}'), +(4807, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.080866+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.21934+00', 138, '{"total-fields":71,"updated-fields":0}'), +(4808, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.219426+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.22577+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4809, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.225816+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.297289+00', 71, NULL), +(4810, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.307439+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.32809+00', 20, NULL), +(4811, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.307454+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.322177+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4812, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.322252+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.325039+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4813, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.325096+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:00.328043+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4814, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:00.008387+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.414308+00', 17405, NULL), +(4815, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:00.008403+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:00.00861+00', 0, '{"timezone-id":null}'), +(4816, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:00.008654+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:00.143361+00', 134, '{"updated-tables":0,"total-tables":26}'), +(4817, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:00.143517+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.411766+00', 17268, '{"total-fields":302,"updated-fields":0}'), +(4818, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.411811+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.413815+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4819, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.41388+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.414287+00', 0, NULL), +(4820, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.439843+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.48573+00', 45, NULL), +(4821, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.439864+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.4661+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4822, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.466153+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.4744+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4823, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.474437+00', TIMESTAMP WITH TIME ZONE '2022-12-23 14:56:17.485707+00', 11, '{"total-tables":26,"tables-classified":0}'), +(4824, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:00.005+00', 1, NULL), +(4825, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:00.163+00', 157, NULL), +(4826, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.009748+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.231407+00', 221, NULL), +(4827, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.009763+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.013107+00', 3, '{"timezone-id":"UTC"}'), +(4828, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.013146+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.046202+00', 33, '{"updated-tables":0,"total-tables":8}'), +(4829, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.046243+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.172886+00', 126, '{"total-fields":71,"updated-fields":0}'), +(4830, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.172926+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.179119+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4831, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.179151+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.231384+00', 52, NULL), +(4832, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.239555+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.253563+00', 14, NULL), +(4833, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.239568+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.248277+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4834, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.24832+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.250403+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4835, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.250433+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:19:00.253544+00', 3, '{"total-tables":8,"tables-classified":0}'), +(4836, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:00.008325+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.335249+00', 14326, NULL), +(4837, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:00.008342+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:00.008548+00', 0, '{"timezone-id":null}'), +(4838, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:00.008578+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:00.052512+00', 43, '{"updated-tables":0,"total-tables":26}'), +(4839, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:00.052617+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.332888+00', 14280, '{"total-fields":302,"updated-fields":0}'), +(4840, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.332966+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.335069+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4841, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.335098+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.33524+00', 0, NULL), +(4842, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.350557+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.403971+00', 53, NULL), +(4843, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.35057+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.380638+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4844, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.381524+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.389748+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4845, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.389808+00', TIMESTAMP WITH TIME ZONE '2022-12-23 15:56:14.403147+00', 13, '{"total-tables":26,"tables-classified":0}'), +(4846, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 16:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:00:00.017+00', 13, NULL), +(4847, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 16:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:00:00.03+00', 24, NULL), +(4848, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.008306+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.394996+00', 386, NULL), +(4849, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.008323+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.011188+00', 2, '{"timezone-id":"UTC"}'), +(4850, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.011224+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.023473+00', 12, '{"updated-tables":0,"total-tables":8}'), +(4851, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.023502+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.301174+00', 277, '{"total-fields":71,"updated-fields":0}'), +(4852, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.301215+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.331012+00', 29, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4853, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.331074+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.394975+00', 63, NULL), +(4854, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.402529+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.417533+00', 15, NULL), +(4855, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.402542+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.412411+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4856, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.412448+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.415009+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4857, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.415039+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:19:00.417514+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4858, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:00.012816+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.679263+00', 8666, NULL), +(4859, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:00.012834+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:00.013137+00', 0, '{"timezone-id":null}'), +(4860, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:00.013188+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:00.101935+00', 88, '{"updated-tables":0,"total-tables":26}'), +(4861, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:00.101984+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.676906+00', 8574, '{"total-fields":302,"updated-fields":0}'), +(4862, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.676983+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.678894+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4863, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.678955+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.679228+00', 0, NULL), +(4864, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.68669+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.821933+00', 135, NULL), +(4865, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.686699+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.71137+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4866, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.711436+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.788924+00', 77, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4867, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.789728+00', TIMESTAMP WITH TIME ZONE '2022-12-23 16:56:08.821735+00', 32, '{"total-tables":26,"tables-classified":0}'), +(4868, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:00:00.008+00', 4, NULL), +(4869, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 17:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:00:00.013+00', 10, NULL), +(4870, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.020441+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.264417+00', 243, NULL), +(4871, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.020454+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.035537+00', 15, '{"timezone-id":"UTC"}'), +(4872, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.035571+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.052055+00', 16, '{"updated-tables":0,"total-tables":8}'), +(4873, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.05208+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.194359+00', 142, '{"total-fields":71,"updated-fields":0}'), +(4874, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.19439+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.199738+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4875, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.199773+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.264405+00', 64, NULL), +(4876, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.275957+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.297723+00', 21, NULL), +(4877, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.275966+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.289464+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4878, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.2895+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.293614+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(4879, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.293641+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:19:00.297704+00', 4, '{"total-tables":8,"tables-classified":0}'), +(4880, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:00.007073+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.670554+00', 7663, NULL), +(4881, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:00.007089+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:00.007322+00', 0, '{"timezone-id":null}'), +(4882, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:00.007353+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:00.236995+00', 229, '{"updated-tables":0,"total-tables":26}'), +(4883, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:00.237042+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.664038+00', 7426, '{"total-fields":302,"updated-fields":0}'), +(4884, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.664096+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.670356+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4885, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.670394+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.670545+00', 0, NULL), +(4886, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.701143+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.808527+00', 107, NULL), +(4887, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.701159+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.785137+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4888, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.785193+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.794569+00', 9, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4889, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.794619+00', TIMESTAMP WITH TIME ZONE '2022-12-23 17:56:07.808407+00', 13, '{"total-tables":26,"tables-classified":0}'), +(4890, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 18:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:00:00.01+00', 8, NULL), +(4891, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:00:00.065+00', 61, NULL), +(4892, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.009225+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.365484+00', 356, NULL), +(4893, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.009242+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.026018+00', 16, '{"timezone-id":"UTC"}'), +(4894, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.026078+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.034674+00', 8, '{"updated-tables":0,"total-tables":8}'), +(4895, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.034719+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.24661+00', 211, '{"total-fields":71,"updated-fields":0}'), +(4896, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.246656+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.267941+00', 21, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4897, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.26801+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.365457+00', 97, NULL), +(4898, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.397592+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.437265+00', 39, NULL), +(4899, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.397611+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.427636+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4900, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.427722+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.433268+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(4901, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.433386+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:19:00.437194+00', 3, '{"total-tables":8,"tables-classified":0}'), +(4902, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:00.009151+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.154088+00', 8144, NULL), +(4903, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:00.009167+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:00.017651+00', 8, '{"timezone-id":null}'), +(4904, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:00.017703+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:00.19427+00', 176, '{"updated-tables":0,"total-tables":26}'), +(4905, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:00.194326+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.151701+00', 7957, '{"total-fields":302,"updated-fields":0}'), +(4906, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.151746+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.153721+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4907, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.153753+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.154073+00', 0, NULL), +(4908, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.165444+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.214601+00', 49, NULL), +(4909, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.165459+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.195588+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4910, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.1957+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.203313+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(4911, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.203409+00', TIMESTAMP WITH TIME ZONE '2022-12-23 18:56:08.214577+00', 11, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4912, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 19:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:00:00.006+00', 2, NULL), +(4913, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 19:00:00.015+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:00:00.019+00', 4, NULL), +(4914, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.006078+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.179775+00', 173, NULL), +(4915, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.006096+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.019109+00', 13, '{"timezone-id":"UTC"}'), +(4916, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.019159+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.030555+00', 11, '{"updated-tables":0,"total-tables":8}'), +(4917, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.030594+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.126871+00', 96, '{"total-fields":71,"updated-fields":0}'), +(4918, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.126955+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.132516+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4919, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.132578+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.179725+00', 47, NULL), +(4920, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.186624+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.202811+00', 16, NULL), +(4921, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.186638+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.196932+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4922, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.196973+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.199792+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4923, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.199847+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:19:00.202788+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4924, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:00.005279+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.477398+00', 6472, NULL), +(4925, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:00.005296+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:00.005511+00', 0, '{"timezone-id":null}'), +(4926, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:00.005546+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:00.197303+00', 191, '{"updated-tables":0,"total-tables":26}'), +(4927, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:00.197348+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.474496+00', 6277, '{"total-fields":302,"updated-fields":0}'), +(4928, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.474592+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.476999+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4929, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.477036+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.47737+00', 0, NULL), +(4930, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.496339+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.553034+00', 56, NULL), +(4931, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.496354+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.530036+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4932, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.530114+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.540663+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(4933, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.540747+00', TIMESTAMP WITH TIME ZONE '2022-12-23 19:56:06.552985+00', 12, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4934, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 20:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:00:00.007+00', 4, NULL), +(4935, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 20:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:00:00.007+00', 6, NULL), +(4936, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.004468+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.215537+00', 211, NULL), +(4937, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.004484+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.009015+00', 4, '{"timezone-id":"UTC"}'), +(4938, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.009054+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.014354+00', 5, '{"updated-tables":0,"total-tables":8}'), +(4939, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.014384+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.173564+00', 159, '{"total-fields":71,"updated-fields":0}'), +(4940, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.173604+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.17972+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4941, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.179758+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.215507+00', 35, NULL), +(4942, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.22269+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.242115+00', 19, NULL), +(4943, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.222704+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.231932+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4944, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.231971+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.23887+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(4945, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.238928+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:19:00.242068+00', 3, '{"total-tables":8,"tables-classified":0}'), +(4946, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:00.038489+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.913392+00', 6874, NULL), +(4947, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:00.038511+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:00.038813+00', 0, '{"timezone-id":null}'), +(4948, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:00.038848+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:00.282629+00', 243, '{"updated-tables":0,"total-tables":26}'), +(4949, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:00.282698+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.908996+00', 6626, '{"total-fields":302,"updated-fields":0}'), +(4950, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.909082+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.912678+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4951, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.912721+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.913007+00', 0, NULL), +(4952, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.94173+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:07.049627+00', 107, NULL), +(4953, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.941746+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.995826+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4954, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:06.995897+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:07.02821+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(4955, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:07.028288+00', TIMESTAMP WITH TIME ZONE '2022-12-23 20:56:07.049582+00', 21, '{"total-tables":26,"tables-classified":0}'), +(4956, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.012+00', 4, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4957, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.012+00', 3, NULL), +(4958, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.007957+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.579013+00', 571, NULL), +(4959, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.007975+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.070069+00', 62, '{"deleted":0}'), +(4960, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.070124+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:00:00.578979+00', 508, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(4961, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.004764+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.162262+00', 157, NULL), +(4962, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.00478+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.007554+00', 2, '{"timezone-id":"UTC"}'), +(4963, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.007594+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.013803+00', 6, '{"updated-tables":0,"total-tables":8}'), +(4964, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.013865+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.099428+00', 85, '{"total-fields":71,"updated-fields":0}'), +(4965, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.099471+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.105233+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4966, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.105277+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.162239+00', 56, NULL), +(4967, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.172855+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.187931+00', 15, NULL), +(4968, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.172868+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.183002+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4969, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.183054+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.185257+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4970, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.185291+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:19:00.18791+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4971, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:00.004274+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.120097+00', 7115, NULL), +(4972, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:00.004287+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:00.004462+00', 0, '{"timezone-id":null}'), +(4973, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:00.004486+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:00.087022+00', 82, '{"updated-tables":0,"total-tables":26}'), +(4974, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:00.087058+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.117959+00', 7030, '{"total-fields":302,"updated-fields":0}'), +(4975, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.11801+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.119925+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4976, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.119964+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.120088+00', 0, NULL), +(4977, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.144566+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.220747+00', 76, NULL), +(4978, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.144578+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.186809+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(4979, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.186861+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.197017+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(4980, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.19706+00', TIMESTAMP WITH TIME ZONE '2022-12-23 21:56:07.220603+00', 23, '{"total-tables":26,"tables-classified":0}'), +(4981, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 22:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:00:00.005+00', 2, NULL), +(4982, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 22:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:00:00.023+00', 12, NULL), +(4983, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.004538+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.3861+00', 381, NULL), +(4984, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.004554+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.016236+00', 11, '{"timezone-id":"UTC"}'), +(4985, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.016279+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.022722+00', 6, '{"updated-tables":0,"total-tables":8}'), +(4986, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.022755+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.305198+00', 282, '{"total-fields":71,"updated-fields":0}'), +(4987, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.305239+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.314758+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(4988, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.314881+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.386076+00', 71, NULL), +(4989, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.392931+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.407992+00', 15, NULL), +(4990, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.392945+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.40358+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(4991, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.403622+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.405719+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(4992, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.405748+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:19:00.407973+00', 2, '{"total-tables":8,"tables-classified":0}'), +(4993, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:00.009399+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.195048+00', 7185, NULL), +(4994, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:00.009425+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:00.009682+00', 0, '{"timezone-id":null}'), +(4995, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:00.009729+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:00.062804+00', 53, '{"updated-tables":0,"total-tables":26}'), +(4996, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:00.062852+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.192975+00', 7130, '{"total-fields":302,"updated-fields":0}'), +(4997, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.193034+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.194869+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(4998, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.194898+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.195039+00', 0, NULL), +(4999, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.210939+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.253032+00', 42, NULL), +(5000, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.210951+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.238519+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5001, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.238568+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.244068+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(5002, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.2441+00', TIMESTAMP WITH TIME ZONE '2022-12-23 22:56:07.253005+00', 8, '{"total-tables":26,"tables-classified":0}'), +(5003, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:00:00.009+00', 6, NULL), +(5004, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-23 23:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:00:00.009+00', 4, NULL), +(5005, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.00503+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.149427+00', 144, NULL), +(5006, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.005046+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.011935+00', 6, '{"timezone-id":"UTC"}'), +(5007, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.011976+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.017366+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5008, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.017393+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.100542+00', 83, '{"total-fields":71,"updated-fields":0}'), +(5009, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.100576+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.112622+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5010, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.112658+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.149404+00', 36, NULL), +(5011, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.161035+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.179968+00', 18, NULL), +(5012, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.161048+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.174814+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5013, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.174854+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.177272+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5014, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.177302+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:19:00.179949+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5015, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:00.00737+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.364425+00', 7357, NULL), +(5016, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:00.007387+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:00.007611+00', 0, '{"timezone-id":null}'), +(5017, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:00.007649+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:00.24568+00', 238, '{"updated-tables":0,"total-tables":26}'), +(5018, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:00.245725+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.361021+00', 7115, '{"total-fields":302,"updated-fields":0}'), +(5019, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.361073+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.364238+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5020, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.364267+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.364415+00', 0, NULL), +(5021, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.3797+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.558152+00', 178, NULL), +(5022, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.37971+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.525936+00', 146, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5023, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.525989+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.538492+00', 12, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5024, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.538539+00', TIMESTAMP WITH TIME ZONE '2022-12-23 23:56:07.558117+00', 19, '{"total-tables":26,"tables-classified":0}'), +(5025, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 00:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:00:00.01+00', 6, NULL), +(5026, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 00:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:00:00.009+00', 4, NULL), +(5027, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.004553+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.276424+00', 271, NULL), +(5028, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.004569+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.089262+00', 84, '{"timezone-id":"UTC"}'), +(5029, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.089311+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.107087+00', 17, '{"updated-tables":0,"total-tables":8}'), +(5030, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.107119+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.233586+00', 126, '{"total-fields":71,"updated-fields":0}'), +(5031, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.233626+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.244101+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5032, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.244141+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.276404+00', 32, NULL), +(5033, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.282982+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.296267+00', 13, NULL), +(5034, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.282995+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.291056+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5035, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.291162+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.29375+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5036, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.293779+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:19:00.296249+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5037, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:00.005502+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.030864+00', 8025, NULL), +(5038, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:00.005519+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:00.005708+00', 0, '{"timezone-id":null}'), +(5039, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:00.005737+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:00.360364+00', 354, '{"updated-tables":0,"total-tables":26}'), +(5040, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:00.360411+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.028324+00', 7667, '{"total-fields":302,"updated-fields":0}'), +(5041, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.028378+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.030459+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5042, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.030521+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.030829+00', 0, NULL), +(5043, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.051265+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.129784+00', 78, NULL), +(5044, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.05128+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.099077+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5045, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.099169+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.109956+00', 10, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5046, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.110328+00', TIMESTAMP WITH TIME ZONE '2022-12-24 00:56:08.129723+00', 19, '{"total-tables":26,"tables-classified":0}'), +(5047, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:00:00.008+00', 4, NULL), +(5048, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:00:00.009+00', 5, NULL), +(5049, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.005567+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.147412+00', 141, NULL), +(5050, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.005587+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.016252+00', 10, '{"timezone-id":"UTC"}'), +(5051, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.016302+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.021809+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5052, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.021887+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.103366+00', 81, '{"total-fields":71,"updated-fields":0}'), +(5053, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.103538+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.116217+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5054, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.116254+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.147258+00', 31, NULL), +(5055, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.155474+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.171947+00', 16, NULL), +(5056, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.155484+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.165121+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5057, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.165156+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.168432+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(5058, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.16858+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:19:00.171921+00', 3, '{"total-tables":8,"tables-classified":0}'), +(5059, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:00.005681+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.777493+00', 10771, NULL), +(5060, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:00.005698+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:00.006003+00', 0, '{"timezone-id":null}'), +(5061, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:00.006042+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:00.212632+00', 206, '{"updated-tables":0,"total-tables":26}'), +(5062, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:00.212678+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.775594+00', 10562, '{"total-fields":302,"updated-fields":0}'), +(5063, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.775634+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.777311+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5064, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.777349+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.777484+00', 0, NULL), +(5065, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.786622+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.832393+00', 45, NULL), +(5066, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.786632+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.814468+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5067, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.814573+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.821068+00', 6, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5068, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.821098+00', TIMESTAMP WITH TIME ZONE '2022-12-24 01:56:10.832375+00', 11, '{"total-tables":26,"tables-classified":0}'), +(5069, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:00:00.009+00', 5, NULL), +(5070, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 02:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:00:00.009+00', 4, NULL), +(5071, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.015475+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.235956+00', 220, NULL), +(5072, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.015491+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.019439+00', 3, '{"timezone-id":"UTC"}'), +(5073, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.01951+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.026002+00', 6, '{"updated-tables":0,"total-tables":8}'), +(5074, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.026042+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.15178+00', 125, '{"total-fields":71,"updated-fields":0}'), +(5075, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.15183+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.162616+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5076, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.162661+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.235928+00', 73, NULL), +(5077, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.248626+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.272873+00', 24, NULL), +(5078, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.248638+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.264026+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5079, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.264148+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.267896+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(5080, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.26793+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:19:00.272851+00', 4, '{"total-tables":8,"tables-classified":0}'), +(5081, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:00.004993+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.26235+00', 7257, NULL), +(5082, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:00.005008+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:00.005223+00', 0, '{"timezone-id":null}'), +(5083, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:00.005254+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:00.290189+00', 284, '{"updated-tables":0,"total-tables":26}'), +(5084, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:00.290256+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.255193+00', 6964, '{"total-fields":302,"updated-fields":0}'), +(5085, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.256202+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.2615+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5086, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.261652+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.262332+00', 0, NULL), +(5087, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.35918+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.421775+00', 62, NULL), +(5088, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.359195+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.397533+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5089, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.397707+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.405221+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5090, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.405363+00', TIMESTAMP WITH TIME ZONE '2022-12-24 02:56:07.42162+00', 16, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5091, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 03:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:00:00.004+00', 2, NULL), +(5092, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:00:00.009+00', 5, NULL), +(5093, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.005708+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.175809+00', 170, NULL), +(5094, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.005723+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.013731+00', 8, '{"timezone-id":"UTC"}'), +(5095, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.013772+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.01833+00', 4, '{"updated-tables":0,"total-tables":8}'), +(5096, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.018362+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.134034+00', 115, '{"total-fields":71,"updated-fields":0}'), +(5097, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.134075+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.143626+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5098, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.143669+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.175788+00', 32, NULL), +(5099, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.182494+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.196338+00', 13, NULL), +(5100, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.182506+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.190615+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5101, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.190652+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.193484+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5102, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.193571+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:19:00.196318+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5103, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:00.007397+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.244923+00', 7237, NULL), +(5104, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:00.007415+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:00.007614+00', 0, '{"timezone-id":null}'), +(5105, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:00.007645+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:00.254828+00', 247, '{"updated-tables":0,"total-tables":26}'), +(5106, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:00.254873+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.242439+00', 6987, '{"total-fields":302,"updated-fields":0}'), +(5107, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.242535+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.244489+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5108, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.24457+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.244872+00', 0, NULL), +(5109, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.273907+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.360604+00', 86, NULL), +(5110, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.27392+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.342449+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5111, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.342502+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.349317+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5112, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.349389+00', TIMESTAMP WITH TIME ZONE '2022-12-24 03:56:07.360582+00', 11, '{"total-tables":26,"tables-classified":0}'), +(5113, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:00:00.011+00', 7, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5114, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 04:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:00:00.012+00', 9, NULL), +(5115, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.013692+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.152741+00', 139, NULL), +(5116, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.013708+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.018671+00', 4, '{"timezone-id":"UTC"}'), +(5117, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.018882+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.028589+00', 9, '{"updated-tables":0,"total-tables":8}'), +(5118, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.028664+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.1205+00', 91, '{"total-fields":71,"updated-fields":0}'), +(5119, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.120591+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.126329+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5120, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.126384+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.152725+00', 26, NULL), +(5121, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.159488+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.173226+00', 13, NULL), +(5122, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.159539+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.167548+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5123, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.16758+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.170381+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5124, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.170411+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:19:00.173205+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5125, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:00.008094+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.322637+00', 8314, NULL), +(5126, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:00.00811+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:00.008322+00', 0, '{"timezone-id":null}'), +(5127, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:00.008354+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:00.342611+00', 334, '{"updated-tables":0,"total-tables":26}'), +(5128, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:00.342657+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.320468+00', 7977, '{"total-fields":302,"updated-fields":0}'), +(5129, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.320515+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.322465+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5130, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.322494+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.322629+00', 0, NULL), +(5131, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.332117+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.371166+00', 39, NULL), +(5132, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.332127+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.356363+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5133, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.356401+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.361938+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(5134, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.361976+00', TIMESTAMP WITH TIME ZONE '2022-12-24 04:56:08.371148+00', 9, '{"total-tables":26,"tables-classified":0}'), +(5135, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:00:00.004+00', 1, NULL), +(5136, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 05:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:00:00.009+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5137, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.004385+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.293498+00', 289, NULL), +(5138, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.004401+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.012733+00', 8, '{"timezone-id":"UTC"}'), +(5139, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.012784+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.023413+00', 10, '{"updated-tables":0,"total-tables":8}'), +(5140, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.023484+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.215702+00', 192, '{"total-fields":71,"updated-fields":0}'), +(5141, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.215742+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.231002+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5142, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.231045+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.293277+00', 62, NULL), +(5143, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.304059+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.325512+00', 21, NULL), +(5144, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.304106+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.320213+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5145, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.32053+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.323286+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5146, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.323313+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:19:00.325495+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5147, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:00.011619+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.849419+00', 6837, NULL), +(5148, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:00.011636+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:00.011839+00', 0, '{"timezone-id":null}'), +(5149, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:00.011872+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:00.27046+00', 258, '{"updated-tables":0,"total-tables":26}'), +(5150, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:00.270585+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.847466+00', 6576, '{"total-fields":302,"updated-fields":0}'), +(5151, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.847506+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.849252+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5152, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.84928+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.84941+00', 0, NULL), +(5153, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.861467+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.911008+00', 49, NULL), +(5154, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.861479+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.895034+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5155, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.895085+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.900992+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(5156, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.901028+00', TIMESTAMP WITH TIME ZONE '2022-12-24 05:56:06.910982+00', 9, '{"total-tables":26,"tables-classified":0}'), +(5157, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:00:00.003+00', 1, NULL), +(5158, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:00:00.008+00', 4, NULL), +(5159, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.006099+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.241741+00', 235, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5160, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.006115+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.040397+00', 34, '{"timezone-id":"UTC"}'), +(5161, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.040447+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.053069+00', 12, '{"updated-tables":0,"total-tables":8}'), +(5162, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.053102+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.193299+00', 140, '{"total-fields":71,"updated-fields":0}'), +(5163, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.193339+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.198941+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5164, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.198975+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.241719+00', 42, NULL), +(5165, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.257917+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.275182+00', 17, NULL), +(5166, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.257931+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.269133+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5167, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.269181+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.271999+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5168, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.272033+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:19:00.275159+00', 3, '{"total-tables":8,"tables-classified":0}'), +(5169, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:00.07491+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.411316+00', 8336, NULL), +(5170, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:00.074931+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:00.07535+00', 0, '{"timezone-id":null}'), +(5171, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:00.075388+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:00.366486+00', 291, '{"updated-tables":0,"total-tables":26}'), +(5172, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:00.366535+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.408508+00', 8041, '{"total-fields":302,"updated-fields":0}'), +(5173, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.408593+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.410809+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5174, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.410923+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.411262+00', 0, NULL), +(5175, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.421897+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.471989+00', 50, NULL), +(5176, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.421905+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.453554+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5177, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.453585+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.460165+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5178, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.460324+00', TIMESTAMP WITH TIME ZONE '2022-12-24 06:56:08.471973+00', 11, '{"total-tables":26,"tables-classified":0}'), +(5179, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:00:00.005+00', 1, NULL), +(5180, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 07:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:00:00.012+00', 6, NULL), +(5181, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.01655+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.203351+00', 186, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5182, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.016566+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.021762+00', 5, '{"timezone-id":"UTC"}'), +(5183, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.021803+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.028906+00', 7, '{"updated-tables":0,"total-tables":8}'), +(5184, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.028937+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.155907+00', 126, '{"total-fields":71,"updated-fields":0}'), +(5185, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.155959+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.163882+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5186, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.163925+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.203329+00', 39, NULL), +(5187, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.214435+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.235855+00', 21, NULL), +(5188, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.214449+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.231124+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5189, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.231176+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.233531+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5190, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.233563+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:19:00.235836+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5191, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:00.051348+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.89943+00', 7848, NULL), +(5192, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:00.051371+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:00.051852+00', 0, '{"timezone-id":null}'), +(5193, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:00.051892+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:00.308246+00', 256, '{"updated-tables":0,"total-tables":26}'), +(5194, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:00.308296+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.887706+00', 7579, '{"total-fields":302,"updated-fields":0}'), +(5195, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.887763+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.898151+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5196, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.898312+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.899306+00', 0, NULL), +(5197, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.93925+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:08.147016+00', 207, NULL), +(5198, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:07.939265+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:08.113359+00', 174, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5199, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:08.113443+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:08.120679+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5200, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:08.120764+00', TIMESTAMP WITH TIME ZONE '2022-12-24 07:56:08.146953+00', 26, '{"total-tables":26,"tables-classified":0}'), +(5201, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 08:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:00:00.002+00', 1, NULL), +(5202, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:00:00.01+00', 7, NULL), +(5203, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.004529+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.134925+00', 130, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5204, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.004544+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.006738+00', 2, '{"timezone-id":"UTC"}'), +(5205, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.006776+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.010569+00', 3, '{"updated-tables":0,"total-tables":8}'), +(5206, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.010597+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.102001+00', 91, '{"total-fields":71,"updated-fields":0}'), +(5207, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.102042+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.107739+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5208, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.107778+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.134903+00', 27, NULL), +(5209, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.14122+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.154243+00', 13, NULL), +(5210, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.141235+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.149529+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5211, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.149569+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.152003+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5212, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.152036+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:19:00.154224+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5213, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:00.00664+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.496754+00', 7490, NULL), +(5214, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:00.006653+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:00.006849+00', 0, '{"timezone-id":null}'), +(5215, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:00.006876+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:00.316245+00', 309, '{"updated-tables":0,"total-tables":26}'), +(5216, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:00.316281+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.494411+00', 7178, '{"total-fields":302,"updated-fields":0}'), +(5217, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.494458+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.496394+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5218, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.496421+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.496737+00', 0, NULL), +(5219, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.507637+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.554617+00', 46, NULL), +(5220, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.507647+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.535628+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5221, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.535689+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.544286+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(5222, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.544328+00', TIMESTAMP WITH TIME ZONE '2022-12-24 08:56:07.554585+00', 10, '{"total-tables":26,"tables-classified":0}'), +(5223, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:00:00.009+00', 6, NULL), +(5224, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:00:00.009+00', 6, NULL), +(5225, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.005243+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.255073+00', 249, NULL), +(5226, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.005259+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.009564+00', 4, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5227, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.009601+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.041815+00', 32, '{"updated-tables":0,"total-tables":8}'), +(5228, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.042135+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.19896+00', 156, '{"total-fields":71,"updated-fields":0}'), +(5229, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.199015+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.219936+00', 20, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5230, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.220003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.255049+00', 35, NULL), +(5231, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.264396+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.281697+00', 17, NULL), +(5232, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.264409+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.275035+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5233, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.275076+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.279155+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(5234, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.279187+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:19:00.281676+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5235, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:00.010696+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.36502+00', 7354, NULL), +(5236, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:00.010713+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:00.010918+00', 0, '{"timezone-id":null}'), +(5237, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:00.010946+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:00.369594+00', 358, '{"updated-tables":0,"total-tables":26}'), +(5238, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:00.369638+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.362298+00', 6992, '{"total-fields":302,"updated-fields":0}'), +(5239, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.362346+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.364847+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5240, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.364876+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.365012+00', 0, NULL), +(5241, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.41792+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.466669+00', 48, NULL), +(5242, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.417934+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.448522+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5243, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.448563+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.454413+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(5244, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.454444+00', TIMESTAMP WITH TIME ZONE '2022-12-24 09:56:07.46665+00', 12, '{"total-tables":26,"tables-classified":0}'), +(5245, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 10:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:00:00.01+00', 5, NULL), +(5246, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:00:00.009+00', 5, NULL), +(5247, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.003892+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.398429+00', 394, NULL), +(5248, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.003908+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.031903+00', 27, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5249, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.031947+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.049534+00', 17, '{"updated-tables":0,"total-tables":8}'), +(5250, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.049564+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.151192+00', 101, '{"total-fields":71,"updated-fields":0}'), +(5251, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.151353+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.176861+00', 25, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5252, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.180485+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.398406+00', 217, NULL), +(5253, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.421483+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.458892+00', 37, NULL), +(5254, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.421497+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.448256+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5255, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.448315+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.450877+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5256, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.450907+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:19:00.458871+00', 7, '{"total-tables":8,"tables-classified":0}'), +(5257, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:00.094713+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.623945+00', 12529, NULL), +(5258, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:00.094733+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:00.095134+00', 0, '{"timezone-id":null}'), +(5259, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:00.095175+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:00.341034+00', 245, '{"updated-tables":0,"total-tables":26}'), +(5260, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:00.341082+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.620793+00', 12279, '{"total-fields":302,"updated-fields":0}'), +(5261, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.620839+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.623057+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5262, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.623086+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.62391+00', 0, NULL), +(5263, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.643156+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.862691+00', 219, NULL), +(5264, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.643168+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.701726+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5265, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.701778+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.790931+00', 89, '{"fields-classified":0,"fields-failed":0}'), +(5266, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.790993+00', TIMESTAMP WITH TIME ZONE '2022-12-24 10:56:12.862636+00', 71, '{"total-tables":26,"tables-classified":0}'), +(5267, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 11:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:00:00.003+00', 2, NULL), +(5268, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 11:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:00:00.014+00', 10, NULL), +(5269, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.004591+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.264698+00', 260, NULL), +(5270, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.004606+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.057179+00', 52, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5271, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.057228+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.070303+00', 13, '{"updated-tables":0,"total-tables":8}'), +(5272, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.070341+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.211301+00', 140, '{"total-fields":71,"updated-fields":0}'), +(5273, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.211396+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.21835+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5274, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.21848+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.264674+00', 46, NULL), +(5275, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.273924+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.293843+00', 19, NULL), +(5276, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.273939+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.284731+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5277, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.284775+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.289142+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(5278, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.289179+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:19:00.293806+00', 4, '{"total-tables":8,"tables-classified":0}'), +(5279, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:00.040636+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.642989+00', 8602, NULL), +(5280, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:00.040655+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:00.040952+00', 0, '{"timezone-id":null}'), +(5281, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:00.040986+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:00.341406+00', 300, '{"updated-tables":0,"total-tables":26}'), +(5282, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:00.341449+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.640178+00', 8298, '{"total-fields":302,"updated-fields":0}'), +(5283, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.640227+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.64282+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5284, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.642847+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.642981+00', 0, NULL), +(5285, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.654339+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.703109+00', 48, NULL), +(5286, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.65435+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.687537+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5287, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.68758+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.693462+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(5288, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.693492+00', TIMESTAMP WITH TIME ZONE '2022-12-24 11:56:08.70309+00', 9, '{"total-tables":26,"tables-classified":0}'), +(5289, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 12:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:00:00.016+00', 10, NULL), +(5290, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 12:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:00:00.017+00', 12, NULL), +(5291, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.007369+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.19463+00', 187, NULL), +(5292, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.007385+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.014316+00', 6, '{"timezone-id":"UTC"}'), +(5293, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.01436+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.018787+00', 4, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5294, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.018817+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.155959+00', 137, '{"total-fields":71,"updated-fields":0}'), +(5295, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.155996+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.162787+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5296, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.162829+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.194607+00', 31, NULL), +(5297, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.200899+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.213685+00', 12, NULL), +(5298, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.200912+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.208941+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5299, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.208988+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.211275+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5300, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.211312+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:19:00.213664+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5301, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:00.010989+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.315438+00', 8304, NULL), +(5302, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:00.011005+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:00.011236+00', 0, '{"timezone-id":null}'), +(5303, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:00.011268+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:00.256719+00', 245, '{"updated-tables":0,"total-tables":26}'), +(5304, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:00.256762+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.3131+00', 8056, '{"total-fields":302,"updated-fields":0}'), +(5305, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.313147+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.315059+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5306, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.3151+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.315423+00', 0, NULL), +(5307, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.332022+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.380921+00', 48, NULL), +(5308, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.332034+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.363634+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5309, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.363679+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.370259+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5310, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.370315+00', TIMESTAMP WITH TIME ZONE '2022-12-24 12:56:08.380899+00', 10, '{"total-tables":26,"tables-classified":0}'), +(5311, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.005+00', 2, NULL), +(5312, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.01+00', 5, NULL), +(5313, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.011295+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:04.842785+00', 4831, NULL), +(5314, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.01131+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.401411+00', 390, '{"deleted":0}'), +(5315, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:00.401586+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:00:04.842762+00', 4441, '{"errors":0,"created":0,"updated":6,"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5316, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.017399+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.143237+00', 125, NULL), +(5317, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.017414+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.021139+00', 3, '{"timezone-id":"UTC"}'), +(5318, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.021175+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.025015+00', 3, '{"updated-tables":0,"total-tables":8}'), +(5319, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.025045+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.112844+00', 87, '{"total-fields":71,"updated-fields":0}'), +(5320, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.112887+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.118043+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5321, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.118071+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.143226+00', 25, NULL), +(5322, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.150333+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.162585+00', 12, NULL), +(5323, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.150342+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.157765+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5324, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.157792+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.159817+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5325, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.159843+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:19:00.162568+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5326, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:00.007786+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.228122+00', 8220, NULL), +(5327, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:00.007802+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:00.008009+00', 0, '{"timezone-id":null}'), +(5328, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:00.008038+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:00.103239+00', 95, '{"updated-tables":0,"total-tables":26}'), +(5329, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:00.103284+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.225614+00', 8122, '{"total-fields":302,"updated-fields":0}'), +(5330, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.225655+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.227769+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5331, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.227799+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.228107+00', 0, NULL), +(5332, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.314455+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.49502+00', 180, NULL), +(5333, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.314471+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.441765+00', 127, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5334, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.441969+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.45838+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(5335, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.458789+00', TIMESTAMP WITH TIME ZONE '2022-12-24 13:56:08.494842+00', 36, '{"total-tables":26,"tables-classified":0}'), +(5336, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:00:00.012+00', 8, NULL), +(5337, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 14:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:00:00.012+00', 6, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5338, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.004081+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.176376+00', 172, NULL), +(5339, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.004096+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.007423+00', 3, '{"timezone-id":"UTC"}'), +(5340, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.007463+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.017428+00', 9, '{"updated-tables":0,"total-tables":8}'), +(5341, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.017462+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.135456+00', 117, '{"total-fields":71,"updated-fields":0}'), +(5342, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.135496+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.141429+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5343, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.141465+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.176355+00', 34, NULL), +(5344, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.299246+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.313277+00', 14, NULL), +(5345, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.299262+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.307636+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5346, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.307682+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.310206+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5347, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.310241+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:19:00.313257+00', 3, '{"total-tables":8,"tables-classified":0}'), +(5348, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:00.024053+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:07.99432+00', 7970, NULL), +(5349, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:00.024071+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:00.024326+00', 0, '{"timezone-id":null}'), +(5350, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:00.024357+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:00.325688+00', 301, '{"updated-tables":0,"total-tables":26}'), +(5351, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:00.325756+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:07.992116+00', 7666, '{"total-fields":302,"updated-fields":0}'), +(5352, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:07.992164+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:07.994141+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5353, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:07.99417+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:07.994311+00', 0, NULL), +(5354, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.01059+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.064847+00', 54, NULL), +(5355, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.010602+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.042489+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5356, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.042538+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.050987+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(5357, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.051229+00', TIMESTAMP WITH TIME ZONE '2022-12-24 14:56:08.064827+00', 13, '{"total-tables":26,"tables-classified":0}'), +(5358, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 15:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:00:00.015+00', 6, NULL), +(5359, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 15:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:00:00.016+00', 8, NULL), +(5360, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.00914+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.208899+00', 199, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5361, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.009167+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.013719+00', 4, '{"timezone-id":"UTC"}'), +(5362, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.013757+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.029252+00', 15, '{"updated-tables":0,"total-tables":8}'), +(5363, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.029293+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.163531+00', 134, '{"total-fields":71,"updated-fields":0}'), +(5364, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.163607+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.170157+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5365, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.170242+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.208878+00', 38, NULL), +(5366, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.215635+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.233574+00', 17, NULL), +(5367, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.215649+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.226142+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5368, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.22631+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.230791+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(5369, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.230834+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:19:00.233509+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5370, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:00.005974+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.65771+00', 8651, NULL), +(5371, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:00.006015+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:00.018294+00', 12, '{"timezone-id":null}'), +(5372, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:00.018348+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:00.343857+00', 325, '{"updated-tables":0,"total-tables":26}'), +(5373, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:00.343918+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.655213+00', 8311, '{"total-fields":302,"updated-fields":0}'), +(5374, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.655301+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.65729+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5375, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.657324+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.657693+00', 0, NULL), +(5376, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.674026+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.71621+00', 42, NULL), +(5377, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.674035+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.699601+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5378, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.699638+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.706269+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5379, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.706301+00', TIMESTAMP WITH TIME ZONE '2022-12-24 15:56:08.716188+00', 9, '{"total-tables":26,"tables-classified":0}'), +(5380, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 16:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:00:00.005+00', 1, NULL), +(5381, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 16:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:00:00.011+00', 6, NULL), +(5382, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.004633+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.166097+00', 161, NULL), +(5383, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.004649+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.009488+00', 4, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5384, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.009527+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.015549+00', 6, '{"updated-tables":0,"total-tables":8}'), +(5385, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.015584+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.116038+00', 100, '{"total-fields":71,"updated-fields":0}'), +(5386, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.116077+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.124632+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5387, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.124674+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.166076+00', 41, NULL), +(5388, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.176754+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.191311+00', 14, NULL), +(5389, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.176768+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.186127+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5390, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.18617+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.188619+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5391, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.188654+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:19:00.191286+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5392, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:00.010272+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.754424+00', 6744, NULL), +(5393, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:00.010295+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:00.010514+00', 0, '{"timezone-id":null}'), +(5394, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:00.010545+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:00.372515+00', 361, '{"updated-tables":0,"total-tables":26}'), +(5395, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:00.372557+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.751936+00', 6379, '{"total-fields":302,"updated-fields":0}'), +(5396, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.752017+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.754048+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5397, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.754082+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.754409+00', 0, NULL), +(5398, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.782065+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.831827+00', 49, NULL), +(5399, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.782084+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.808864+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5400, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.80896+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.816747+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5401, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.816789+00', TIMESTAMP WITH TIME ZONE '2022-12-24 16:56:06.831798+00', 15, '{"total-tables":26,"tables-classified":0}'), +(5402, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:00:00.016+00', 12, NULL), +(5403, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:00:00.017+00', 13, NULL), +(5404, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.005139+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.239747+00', 234, NULL), +(5405, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.005154+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.011018+00', 5, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5406, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.011058+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.016495+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5407, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.016528+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.176431+00', 159, '{"total-fields":71,"updated-fields":0}'), +(5408, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.176508+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.188354+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5409, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.188396+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.239723+00', 51, NULL), +(5410, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.247247+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.270623+00', 23, NULL), +(5411, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.247259+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.263349+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5412, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.263399+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.268011+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(5413, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.268052+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:19:00.270603+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5414, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:00.005721+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.06414+00', 8058, NULL), +(5415, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:00.00574+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:00.005995+00', 0, '{"timezone-id":null}'), +(5416, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:00.00603+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:00.188041+00', 182, '{"updated-tables":0,"total-tables":26}'), +(5417, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:00.188091+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.058379+00', 7870, '{"total-fields":302,"updated-fields":0}'), +(5418, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.058434+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.063917+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5419, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.063962+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.064119+00', 0, NULL), +(5420, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.079766+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.145272+00', 65, NULL), +(5421, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.079781+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.11889+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5422, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.118946+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.132913+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(5423, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.132968+00', TIMESTAMP WITH TIME ZONE '2022-12-24 17:56:08.145242+00', 12, '{"total-tables":26,"tables-classified":0}'), +(5424, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 18:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:00:00.003+00', 1, NULL), +(5425, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:00:00.009+00', 5, NULL), +(5426, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.00503+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.229279+00', 224, NULL), +(5427, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.005045+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.034136+00', 29, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5428, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.034182+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.038662+00', 4, '{"updated-tables":0,"total-tables":8}'), +(5429, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.038815+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.131181+00', 92, '{"total-fields":71,"updated-fields":0}'), +(5430, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.131218+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.200854+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5431, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.200899+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.229262+00', 28, NULL), +(5432, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.235802+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.253096+00', 17, NULL), +(5433, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.235814+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.247415+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5434, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.247519+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.250205+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5435, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.250237+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:19:00.253075+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5436, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:00.01942+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.020503+00', 6001, NULL), +(5437, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:00.019438+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:00.019779+00', 0, '{"timezone-id":null}'), +(5438, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:00.019813+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:00.32985+00', 310, '{"updated-tables":0,"total-tables":26}'), +(5439, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:00.329902+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.01759+00', 5687, '{"total-fields":302,"updated-fields":0}'), +(5440, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.017669+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.020007+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5441, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.020095+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.020446+00', 0, NULL), +(5442, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.03995+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.090112+00', 50, NULL), +(5443, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.039966+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.07109+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5444, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.071249+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.078476+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5445, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.078623+00', TIMESTAMP WITH TIME ZONE '2022-12-24 18:56:06.089991+00', 11, '{"total-tables":26,"tables-classified":0}'), +(5446, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 19:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:00:00.007+00', 1, NULL), +(5447, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 19:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:00:00.013+00', 5, NULL), +(5448, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.003824+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.207353+00', 203, NULL), +(5449, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.00384+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.018484+00', 14, '{"timezone-id":"UTC"}'), +(5450, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.018529+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.026183+00', 7, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5451, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.02622+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.153319+00', 127, '{"total-fields":71,"updated-fields":0}'), +(5452, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.153361+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.159859+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5453, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.159891+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.207332+00', 47, NULL), +(5454, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.213604+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.228505+00', 14, NULL), +(5455, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.213617+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.221437+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5456, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.221475+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.224001+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5457, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.224034+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:19:00.228483+00', 4, '{"total-tables":8,"tables-classified":0}'), +(5458, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:00.00549+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.42842+00', 6422, NULL), +(5459, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:00.005508+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:00.005708+00', 0, '{"timezone-id":null}'), +(5460, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:00.005743+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:00.186265+00', 180, '{"updated-tables":0,"total-tables":26}'), +(5461, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:00.186309+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.426025+00', 6239, '{"total-fields":302,"updated-fields":0}'), +(5462, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.426099+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.428251+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5463, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.428288+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.428412+00', 0, NULL), +(5464, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.443816+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.54388+00', 100, NULL), +(5465, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.443827+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.509442+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5466, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.509497+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.525402+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(5467, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.525455+00', TIMESTAMP WITH TIME ZONE '2022-12-24 19:56:06.543844+00', 18, '{"total-tables":26,"tables-classified":0}'), +(5468, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 20:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:00:00.014+00', 5, NULL), +(5469, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 20:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:00:00.009+00', 7, NULL), +(5470, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.004208+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.167748+00', 163, NULL), +(5471, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.004223+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.008161+00', 3, '{"timezone-id":"UTC"}'), +(5472, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.008199+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.013333+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5473, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.013361+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.118296+00', 104, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5474, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.118333+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.12782+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5475, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.127858+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.16773+00', 39, NULL), +(5476, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.174603+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.18902+00', 14, NULL), +(5477, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.174616+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.184013+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5478, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.184116+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.186568+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5479, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.186658+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:19:00.188963+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5480, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:00.004528+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.17841+00', 8173, NULL), +(5481, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:00.004549+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:00.004787+00', 0, '{"timezone-id":null}'), +(5482, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:00.00482+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:00.323882+00', 319, '{"updated-tables":0,"total-tables":26}'), +(5483, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:00.323925+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.176424+00', 7852, '{"total-fields":302,"updated-fields":0}'), +(5484, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.176472+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.178251+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5485, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.178276+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.178402+00', 0, NULL), +(5486, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.188034+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.253305+00', 65, NULL), +(5487, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.188043+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.228666+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5488, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.229405+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.238241+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(5489, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.238268+00', TIMESTAMP WITH TIME ZONE '2022-12-24 20:56:08.253212+00', 14, '{"total-tables":26,"tables-classified":0}'), +(5490, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.015+00', 1, NULL), +(5491, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.067+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.072+00', 5, NULL), +(5492, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.015397+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.528649+00', 513, NULL), +(5493, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.015412+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.133804+00', 118, '{"deleted":0}'), +(5494, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.133911+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:00:00.528623+00', 394, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(5495, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.006428+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.182798+00', 176, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5496, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.006445+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.009126+00', 2, '{"timezone-id":"UTC"}'), +(5497, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.009176+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.015027+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5498, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.015061+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.147314+00', 132, '{"total-fields":71,"updated-fields":0}'), +(5499, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.147353+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.153514+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5500, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.153551+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.182779+00', 29, NULL), +(5501, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.189882+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.204284+00', 14, NULL), +(5502, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.189895+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.198002+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5503, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.198041+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.201493+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(5504, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.201525+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:19:00.204263+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5505, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:00.006748+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.397843+00', 6391, NULL), +(5506, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:00.006762+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:00.006959+00', 0, '{"timezone-id":null}'), +(5507, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:00.006985+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:00.177638+00', 170, '{"updated-tables":0,"total-tables":26}'), +(5508, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:00.177676+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.395656+00', 6217, '{"total-fields":302,"updated-fields":0}'), +(5509, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.395706+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.397643+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5510, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.397672+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.397815+00', 0, NULL), +(5511, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.4405+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.503559+00', 63, NULL), +(5512, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.440516+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.482285+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5513, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.482408+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.490439+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(5514, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.490557+00', TIMESTAMP WITH TIME ZONE '2022-12-24 21:56:06.503472+00', 12, '{"total-tables":26,"tables-classified":0}'), +(5515, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 22:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:00:00.003+00', 1, NULL), +(5516, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 22:00:00.05+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:00:00.056+00', 6, NULL), +(5517, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.006287+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.173559+00', 167, NULL), +(5518, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.006302+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.011064+00', 4, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5519, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.011102+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.027463+00', 16, '{"updated-tables":0,"total-tables":8}'), +(5520, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.027499+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.126567+00', 99, '{"total-fields":71,"updated-fields":0}'), +(5521, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.126606+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.133211+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5522, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.133253+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.173539+00', 40, NULL), +(5523, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.180407+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.195277+00', 14, NULL), +(5524, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.18042+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.188815+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5525, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.188851+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.192637+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(5526, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.192665+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:19:00.195257+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5527, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:00.02631+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.463309+00', 7436, NULL), +(5528, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:00.026328+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:00.026627+00', 0, '{"timezone-id":null}'), +(5529, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:00.026661+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:00.20063+00', 173, '{"updated-tables":0,"total-tables":26}'), +(5530, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:00.200679+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.459652+00', 7258, '{"total-fields":302,"updated-fields":0}'), +(5531, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.459704+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.463118+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5532, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.463149+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.463301+00', 0, NULL), +(5533, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.483264+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.593028+00', 109, NULL), +(5534, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.483279+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.526798+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5535, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.526915+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.560073+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(5536, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.560142+00', TIMESTAMP WITH TIME ZONE '2022-12-24 22:56:07.592986+00', 32, '{"total-tables":26,"tables-classified":0}'), +(5537, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:00:00.009+00', 6, NULL), +(5538, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-24 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:00:00.01+00', 6, NULL), +(5539, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.005119+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.133461+00', 128, NULL), +(5540, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.005135+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.016979+00', 11, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5541, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.017017+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.021304+00', 4, '{"updated-tables":0,"total-tables":8}'), +(5542, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.02133+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.10297+00', 81, '{"total-fields":71,"updated-fields":0}'), +(5543, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.102999+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.108258+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5544, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.108296+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.133449+00', 25, NULL), +(5545, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.139676+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.151969+00', 12, NULL), +(5546, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.139685+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.147373+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5547, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.147401+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.149468+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5548, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.149496+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:19:00.151952+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5549, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:00.004606+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.771969+00', 7767, NULL), +(5550, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:00.004622+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:00.004825+00', 0, '{"timezone-id":null}'), +(5551, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:00.004854+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:00.228414+00', 223, '{"updated-tables":0,"total-tables":26}'), +(5552, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:00.228457+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.76612+00', 7537, '{"total-fields":302,"updated-fields":0}'), +(5553, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.766173+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.771775+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5554, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.771819+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.77196+00', 0, NULL), +(5555, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.784416+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.838104+00', 53, NULL), +(5556, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.784428+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.816234+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5557, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.81628+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.823899+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5558, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.823938+00', TIMESTAMP WITH TIME ZONE '2022-12-24 23:56:07.83808+00', 14, '{"total-tables":26,"tables-classified":0}'), +(5559, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 00:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:00:00.011+00', 7, NULL), +(5560, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 00:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:00:00.015+00', 12, NULL), +(5561, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.004138+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.190459+00', 186, NULL), +(5562, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.004155+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.008179+00', 4, '{"timezone-id":"UTC"}'), +(5563, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.008219+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.013469+00', 5, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5564, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.013498+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.158368+00', 144, '{"total-fields":71,"updated-fields":0}'), +(5565, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.158406+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.164326+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5566, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.164369+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.190443+00', 26, NULL), +(5567, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.197971+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.210625+00', 12, NULL), +(5568, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.197984+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.205619+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5569, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.20574+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.208127+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5570, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.208156+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:19:00.210582+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5571, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:00.007693+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.868021+00', 7860, NULL), +(5572, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:00.007737+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:00.008178+00', 0, '{"timezone-id":null}'), +(5573, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:00.008217+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:00.579055+00', 570, '{"updated-tables":0,"total-tables":26}'), +(5574, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:00.579171+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.864302+00', 7285, '{"total-fields":302,"updated-fields":0}'), +(5575, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.864371+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.867566+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5576, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.867602+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.868004+00', 0, NULL), +(5577, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.908357+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:08.064297+00', 155, NULL), +(5578, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:07.908372+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:08.016565+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5579, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:08.016744+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:08.037586+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(5580, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:08.037641+00', TIMESTAMP WITH TIME ZONE '2022-12-25 00:56:08.064233+00', 26, '{"total-tables":26,"tables-classified":0}'), +(5581, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 01:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:00:00.003+00', 1, NULL), +(5582, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:00:00.009+00', 5, NULL), +(5583, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.00401+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.163843+00', 159, NULL), +(5584, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.004027+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.007847+00', 3, '{"timezone-id":"UTC"}'), +(5585, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.007885+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.012249+00', 4, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5586, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.012276+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.11919+00', 106, '{"total-fields":71,"updated-fields":0}'), +(5587, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.11923+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.127686+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5588, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.127732+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.163824+00', 36, NULL), +(5589, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.170917+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.191595+00', 20, NULL), +(5590, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.17093+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.186718+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5591, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.186755+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.188867+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5592, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.188896+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:19:00.191575+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5593, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:00.010009+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.663929+00', 6653, NULL), +(5594, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:00.010028+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:00.010268+00', 0, '{"timezone-id":null}'), +(5595, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:00.0103+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:00.257392+00', 247, '{"updated-tables":0,"total-tables":26}'), +(5596, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:00.257441+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.661431+00', 6403, '{"total-fields":302,"updated-fields":0}'), +(5597, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.661482+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.663777+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5598, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.663805+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.663921+00', 0, NULL), +(5599, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.675227+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.748321+00', 73, NULL), +(5600, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.67524+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.715681+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5601, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.715723+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.727391+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(5602, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.727432+00', TIMESTAMP WITH TIME ZONE '2022-12-25 01:56:06.748231+00', 20, '{"total-tables":26,"tables-classified":0}'), +(5603, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 02:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:00:00.009+00', 6, NULL), +(5604, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:00:00.01+00', 6, NULL), +(5605, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.005163+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.200178+00', 195, NULL), +(5606, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.005179+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.012604+00', 7, '{"timezone-id":"UTC"}'), +(5607, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.012656+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.017701+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5608, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.017737+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.153567+00', 135, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5609, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.15364+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.163023+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5610, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.163066+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.200158+00', 37, NULL), +(5611, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.2078+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.220108+00', 12, NULL), +(5612, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.207813+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.215648+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5613, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.215687+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.217976+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5614, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.218004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:19:00.220091+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5615, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:00.005514+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.619934+00', 6614, NULL), +(5616, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:00.005531+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:00.005735+00', 0, '{"timezone-id":null}'), +(5617, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:00.006216+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:00.157552+00', 151, '{"updated-tables":0,"total-tables":26}'), +(5618, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:00.157622+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.613153+00', 6455, '{"total-fields":302,"updated-fields":0}'), +(5619, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.613204+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.618729+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5620, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.61932+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.619917+00', 0, NULL), +(5621, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.646419+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.732609+00', 86, NULL), +(5622, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.646437+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.707283+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5623, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.707343+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.718884+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(5624, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.718941+00', TIMESTAMP WITH TIME ZONE '2022-12-25 02:56:06.732579+00', 13, '{"total-tables":26,"tables-classified":0}'), +(5625, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:00:00.005+00', 1, NULL), +(5626, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 03:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:00:00.011+00', 5, NULL), +(5627, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.010914+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.141877+00', 130, NULL), +(5628, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.010929+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.01732+00', 6, '{"timezone-id":"UTC"}'), +(5629, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.017359+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.021961+00', 4, '{"updated-tables":0,"total-tables":8}'), +(5630, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.021995+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.107356+00', 85, '{"total-fields":71,"updated-fields":0}'), +(5631, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.107393+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.112588+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5632, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.112618+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.141864+00', 29, NULL), +(5633, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.148754+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.162117+00', 13, NULL), +(5634, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.148763+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.156825+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5635, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.156854+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.159141+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5636, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.159169+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:19:00.162094+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5637, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:00.006687+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.546409+00', 6539, NULL), +(5638, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:00.006704+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:00.006918+00', 0, '{"timezone-id":null}'), +(5639, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:00.006948+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:00.139487+00', 132, '{"updated-tables":0,"total-tables":26}'), +(5640, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:00.139532+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.544253+00', 6404, '{"total-fields":302,"updated-fields":0}'), +(5641, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.544304+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.546227+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5642, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.546256+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.546399+00', 0, NULL), +(5643, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.55448+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.598467+00', 43, NULL), +(5644, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.55449+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.582637+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5645, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.582684+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.588652+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(5646, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.588686+00', TIMESTAMP WITH TIME ZONE '2022-12-25 03:56:06.598447+00', 9, '{"total-tables":26,"tables-classified":0}'), +(5647, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 04:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:00:00.003+00', 2, NULL), +(5648, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 04:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:00:00.008+00', 5, NULL), +(5649, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.007056+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.19003+00', 182, NULL), +(5650, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.007073+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.01537+00', 8, '{"timezone-id":"UTC"}'), +(5651, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.015407+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.043512+00', 28, '{"updated-tables":0,"total-tables":8}'), +(5652, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.043565+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.158398+00', 114, '{"total-fields":71,"updated-fields":0}'), +(5653, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.158434+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.163956+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5654, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.16399+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.190015+00', 26, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5655, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.19759+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.209855+00', 12, NULL), +(5656, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.197603+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.205501+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5657, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.205537+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.207562+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5658, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.207591+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:19:00.209836+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5659, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:00.006204+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.496303+00', 6490, NULL), +(5660, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:00.006221+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:00.006444+00', 0, '{"timezone-id":null}'), +(5661, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:00.006474+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:00.081486+00', 75, '{"updated-tables":0,"total-tables":26}'), +(5662, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:00.081558+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.49237+00', 6410, '{"total-fields":302,"updated-fields":0}'), +(5663, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.492454+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.494861+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5664, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.495475+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.495737+00', 0, NULL), +(5665, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.511895+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.601991+00', 90, NULL), +(5666, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.511919+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.566583+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5667, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.566668+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.581415+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(5668, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.581483+00', TIMESTAMP WITH TIME ZONE '2022-12-25 04:56:06.601958+00', 20, '{"total-tables":26,"tables-classified":0}'), +(5669, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 05:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:00:00.026+00', 21, NULL), +(5670, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 05:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:00:00.026+00', 22, NULL), +(5671, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.006979+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.133594+00', 126, NULL), +(5672, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.006995+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.011307+00', 4, '{"timezone-id":"UTC"}'), +(5673, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.011347+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.016752+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5674, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.016788+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.097455+00', 80, '{"total-fields":71,"updated-fields":0}'), +(5675, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.097499+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.103446+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5676, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.103486+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.133568+00', 30, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5677, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.140817+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.158093+00', 17, NULL), +(5678, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.14083+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.152528+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5679, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.152573+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.155243+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5680, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.155274+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:19:00.158072+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5681, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:00.004853+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.512976+00', 7508, NULL), +(5682, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:00.00487+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:00.005056+00', 0, '{"timezone-id":null}'), +(5683, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:00.005087+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:00.069575+00', 64, '{"updated-tables":0,"total-tables":26}'), +(5684, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:00.069618+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.504423+00', 7434, '{"total-fields":302,"updated-fields":0}'), +(5685, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.504481+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.512717+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5686, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.512788+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.512965+00', 0, NULL), +(5687, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.539144+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.68233+00', 143, NULL), +(5688, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.539156+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.662294+00', 123, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5689, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.662359+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.669154+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5690, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.66923+00', TIMESTAMP WITH TIME ZONE '2022-12-25 05:56:07.682263+00', 13, '{"total-tables":26,"tables-classified":0}'), +(5691, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:00:00.003+00', 1, NULL), +(5692, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:00:00.01+00', 6, NULL), +(5693, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.004663+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.178287+00', 173, NULL), +(5694, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.004678+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.014195+00', 9, '{"timezone-id":"UTC"}'), +(5695, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.014235+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.024259+00', 10, '{"updated-tables":0,"total-tables":8}'), +(5696, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.024301+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.133584+00', 109, '{"total-fields":71,"updated-fields":0}'), +(5697, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.133627+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.143584+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5698, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.143625+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.178265+00', 34, NULL), +(5699, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.185245+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.200009+00', 14, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5700, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.185256+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.194082+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5701, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.194118+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.196693+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5702, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.196724+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:19:00.199988+00', 3, '{"total-tables":8,"tables-classified":0}'), +(5703, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:00.008893+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.484184+00', 7475, NULL), +(5704, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:00.00891+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:00.009148+00', 0, '{"timezone-id":null}'), +(5705, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:00.009179+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:00.113886+00', 104, '{"updated-tables":0,"total-tables":26}'), +(5706, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:00.113931+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.47616+00', 7362, '{"total-fields":302,"updated-fields":0}'), +(5707, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.47625+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.48369+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5708, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.483743+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.484166+00', 0, NULL), +(5709, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.507722+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.587485+00', 79, NULL), +(5710, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.50774+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.56094+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5711, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.561059+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.569928+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(5712, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.569981+00', TIMESTAMP WITH TIME ZONE '2022-12-25 06:56:07.587444+00', 17, '{"total-tables":26,"tables-classified":0}'), +(5713, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 07:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:00:00.004+00', 1, NULL), +(5714, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 07:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:00:00.012+00', 7, NULL), +(5715, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.004719+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.243903+00', 239, NULL), +(5716, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.004734+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.014686+00', 9, '{"timezone-id":"UTC"}'), +(5717, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.01473+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.022094+00', 7, '{"updated-tables":0,"total-tables":8}'), +(5718, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.022159+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.201184+00', 179, '{"total-fields":71,"updated-fields":0}'), +(5719, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.201318+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.206898+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5720, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.208726+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.243875+00', 35, NULL), +(5721, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.250358+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.264393+00', 14, NULL), +(5722, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.250369+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.258936+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5723, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.258971+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.261354+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5724, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.261381+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:19:00.264309+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5725, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:00.005744+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:07.996088+00', 7990, NULL), +(5726, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:00.00576+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:00.006206+00', 0, '{"timezone-id":null}'), +(5727, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:00.00624+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:00.111313+00', 105, '{"updated-tables":0,"total-tables":26}'), +(5728, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:00.111358+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:07.992098+00', 7880, '{"total-fields":302,"updated-fields":0}'), +(5729, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:07.992138+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:07.995924+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5730, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:07.995956+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:07.996079+00', 0, NULL), +(5731, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.014927+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.066847+00', 51, NULL), +(5732, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.014943+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.049103+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5733, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.049187+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.056304+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5734, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.056348+00', TIMESTAMP WITH TIME ZONE '2022-12-25 07:56:08.06682+00', 10, '{"total-tables":26,"tables-classified":0}'), +(5735, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 08:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:00:00.013+00', 8, NULL), +(5736, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 08:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:00:00.016+00', 11, NULL), +(5737, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.004129+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.174711+00', 170, NULL), +(5738, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.004145+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.021673+00', 17, '{"timezone-id":"UTC"}'), +(5739, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.021718+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.030546+00', 8, '{"updated-tables":0,"total-tables":8}'), +(5740, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.030581+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.123442+00', 92, '{"total-fields":71,"updated-fields":0}'), +(5741, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.123486+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.130308+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5742, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.130362+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.174691+00', 44, NULL), +(5743, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.181983+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.198819+00', 16, NULL), +(5744, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.181996+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.191696+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5745, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.191736+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.195461+00', 3, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5746, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.195545+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:19:00.198798+00', 3, '{"total-tables":8,"tables-classified":0}'), +(5747, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:00.007615+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.257601+00', 6249, NULL), +(5748, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:00.007636+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:00.00863+00', 0, '{"timezone-id":null}'), +(5749, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:00.008682+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:00.095844+00', 87, '{"updated-tables":0,"total-tables":26}'), +(5750, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:00.095918+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.254931+00', 6159, '{"total-fields":302,"updated-fields":0}'), +(5751, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.255011+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.256958+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5752, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.257223+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.257556+00', 0, NULL), +(5753, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.267695+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.319282+00', 51, NULL), +(5754, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.267707+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.299986+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5755, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.300034+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.306514+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5756, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.306548+00', TIMESTAMP WITH TIME ZONE '2022-12-25 08:56:06.319259+00', 12, '{"total-tables":26,"tables-classified":0}'), +(5757, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:00:00.01+00', 7, NULL), +(5758, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 09:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:00:00.003+00', 1, NULL), +(5759, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.004579+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.236418+00', 231, NULL), +(5760, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.004595+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.01057+00', 5, '{"timezone-id":"UTC"}'), +(5761, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.01062+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.023156+00', 12, '{"updated-tables":0,"total-tables":8}'), +(5762, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.023237+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.187871+00', 164, '{"total-fields":71,"updated-fields":0}'), +(5763, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.187915+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.199869+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5764, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.199909+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.236395+00', 36, NULL), +(5765, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.243129+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.256701+00', 13, NULL), +(5766, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.243141+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.251376+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5767, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.251411+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.253923+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5768, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.254046+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:19:00.25668+00', 2, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5769, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:00.01711+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.895172+00', 9878, NULL), +(5770, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:00.017128+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:00.017373+00', 0, '{"timezone-id":null}'), +(5771, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:00.017403+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:00.101962+00', 84, '{"updated-tables":0,"total-tables":26}'), +(5772, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:00.102008+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.892192+00', 9790, '{"total-fields":302,"updated-fields":0}'), +(5773, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.892373+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.894683+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5774, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.894858+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.895102+00', 0, NULL), +(5775, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.913775+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.962492+00', 48, NULL), +(5776, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.913786+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.94394+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5777, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.944041+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.951522+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5778, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.951619+00', TIMESTAMP WITH TIME ZONE '2022-12-25 09:56:09.962472+00', 10, '{"total-tables":26,"tables-classified":0}'), +(5779, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 10:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:00:00.004+00', 2, NULL), +(5780, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:00:00.012+00', 8, NULL), +(5781, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.00718+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.182505+00', 175, NULL), +(5782, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.007195+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.016341+00', 9, '{"timezone-id":"UTC"}'), +(5783, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.016385+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.022068+00', 5, '{"updated-tables":0,"total-tables":8}'), +(5784, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.022104+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.134331+00', 112, '{"total-fields":71,"updated-fields":0}'), +(5785, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.134462+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.143034+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5786, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.143147+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.182486+00', 39, NULL), +(5787, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.190869+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.206407+00', 15, NULL), +(5788, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.190883+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.201699+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5789, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.201753+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.204204+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5790, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.204235+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:19:00.20639+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5791, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:00.005356+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.359626+00', 8354, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5792, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:00.005372+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:00.005583+00', 0, '{"timezone-id":null}'), +(5793, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:00.005611+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:00.035377+00', 29, '{"updated-tables":0,"total-tables":26}'), +(5794, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:00.03542+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.35739+00', 8321, '{"total-fields":302,"updated-fields":0}'), +(5795, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.357436+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.359372+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5796, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.359407+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.359611+00', 0, NULL), +(5797, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.371071+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.506823+00', 135, NULL), +(5798, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.371082+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.401517+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5799, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.40163+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.488206+00', 86, '{"fields-classified":0,"fields-failed":0}'), +(5800, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.488797+00', TIMESTAMP WITH TIME ZONE '2022-12-25 10:56:08.506798+00', 18, '{"total-tables":26,"tables-classified":0}'), +(5801, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 11:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:00:00.011+00', 6, NULL), +(5802, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 11:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:00:00.013+00', 3, NULL), +(5803, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.006183+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.145266+00', 139, NULL), +(5804, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.006199+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.011524+00', 5, '{"timezone-id":"UTC"}'), +(5805, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.011589+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.020412+00', 8, '{"updated-tables":0,"total-tables":8}'), +(5806, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.020452+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.108304+00', 87, '{"total-fields":71,"updated-fields":0}'), +(5807, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.108348+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.114068+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5808, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.114109+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.145234+00', 31, NULL), +(5809, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.151972+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.166003+00', 14, NULL), +(5810, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.151984+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.160419+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5811, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.160458+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.163301+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5812, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.163332+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:19:00.165983+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5813, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:00.008381+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.799275+00', 7790, NULL), +(5814, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:00.008401+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:00.008781+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5815, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:00.008941+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:00.055136+00', 46, '{"updated-tables":0,"total-tables":26}'), +(5816, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:00.055214+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.791491+00', 7736, '{"total-fields":302,"updated-fields":0}'), +(5817, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.7916+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.798446+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5818, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.798575+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.79916+00', 0, NULL), +(5819, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.839928+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.947861+00', 107, NULL), +(5820, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.839943+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.889953+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5821, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.889999+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.897109+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(5822, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.897143+00', TIMESTAMP WITH TIME ZONE '2022-12-25 11:56:07.947821+00', 50, '{"total-tables":26,"tables-classified":0}'), +(5823, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 12:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:00:00.006+00', 1, NULL), +(5824, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 12:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:00:00.02+00', 13, NULL), +(5825, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.004332+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.146852+00', 142, NULL), +(5826, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.004348+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.009139+00', 4, '{"timezone-id":"UTC"}'), +(5827, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.009187+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.027628+00', 18, '{"updated-tables":0,"total-tables":8}'), +(5828, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.027661+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.114865+00', 87, '{"total-fields":71,"updated-fields":0}'), +(5829, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.114898+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.120213+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5830, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.12024+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.146842+00', 26, NULL), +(5831, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.154636+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.167763+00', 13, NULL), +(5832, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.154646+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.163216+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5833, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.163247+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.165456+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5834, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.165487+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:19:00.167744+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5835, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:00.013104+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.419888+00', 8406, NULL), +(5836, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:00.013121+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:00.013352+00', 0, '{"timezone-id":null}'), +(5837, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:00.013382+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:00.144542+00', 131, '{"updated-tables":0,"total-tables":26}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5838, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:00.144589+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.417635+00', 8273, '{"total-fields":302,"updated-fields":0}'), +(5839, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.417692+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.419711+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5840, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.41974+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.419879+00', 0, NULL), +(5841, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.429872+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.477417+00', 47, NULL), +(5842, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.429882+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.455709+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5843, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.455745+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.466701+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(5844, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.466732+00', TIMESTAMP WITH TIME ZONE '2022-12-25 12:56:08.477332+00', 10, '{"total-tables":26,"tables-classified":0}'), +(5845, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.009+00', 0, NULL), +(5846, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.03+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.051+00', 21, NULL), +(5847, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.010815+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:07.879431+00', 7868, NULL), +(5848, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.010828+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.52659+00', 515, '{"deleted":0}'), +(5849, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:00.526631+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:00:07.879407+00', 7352, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(5850, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.00446+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.211959+00', 207, NULL), +(5851, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.004486+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.00822+00', 3, '{"timezone-id":"UTC"}'), +(5852, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.008254+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.02288+00', 14, '{"updated-tables":0,"total-tables":8}'), +(5853, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.022918+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.139613+00', 116, '{"total-fields":71,"updated-fields":0}'), +(5854, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.139656+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.154674+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5855, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.154724+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.211932+00', 57, NULL), +(5856, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.223995+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.241022+00', 17, NULL), +(5857, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.22401+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.232112+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5858, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.232153+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.238568+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5859, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.238606+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:19:00.241001+00', 2, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5860, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:00.004834+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.127698+00', 7122, NULL), +(5861, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:00.004851+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:00.005205+00', 0, '{"timezone-id":null}'), +(5862, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:00.005244+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:00.066506+00', 61, '{"updated-tables":0,"total-tables":26}'), +(5863, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:00.066549+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.125208+00', 7058, '{"total-fields":302,"updated-fields":0}'), +(5864, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.125253+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.127362+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5865, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.127398+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.127682+00', 0, NULL), +(5866, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.158565+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.217867+00', 59, NULL), +(5867, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.158579+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.191156+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5868, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.191334+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.205464+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(5869, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.2056+00', TIMESTAMP WITH TIME ZONE '2022-12-25 13:56:07.217756+00', 12, '{"total-tables":26,"tables-classified":0}'), +(5870, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 14:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:00:00.003+00', 1, NULL), +(5871, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:00:00.009+00', 5, NULL), +(5872, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.004592+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.125013+00', 120, NULL), +(5873, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.004608+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.007401+00', 2, '{"timezone-id":"UTC"}'), +(5874, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.007436+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.011627+00', 4, '{"updated-tables":0,"total-tables":8}'), +(5875, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.011654+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.089651+00', 77, '{"total-fields":71,"updated-fields":0}'), +(5876, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.08969+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.095198+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5877, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.095228+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.124987+00', 29, NULL), +(5878, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.131487+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.145115+00', 13, NULL), +(5879, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.131496+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.139503+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5880, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.139534+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.142164+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5881, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.142193+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:19:00.145094+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5882, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:00.005145+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.391549+00', 6386, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5883, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:00.005163+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:00.005376+00', 0, '{"timezone-id":null}'), +(5884, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:00.005407+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:00.06744+00', 62, '{"updated-tables":0,"total-tables":26}'), +(5885, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:00.068583+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.388664+00', 6320, '{"total-fields":302,"updated-fields":0}'), +(5886, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.388712+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.391375+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5887, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.391404+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.39154+00', 0, NULL), +(5888, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.399554+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.565958+00', 166, NULL), +(5889, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.399565+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.426105+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5890, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.426156+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.432502+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5891, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.432538+00', TIMESTAMP WITH TIME ZONE '2022-12-25 14:56:06.565915+00', 133, '{"total-tables":26,"tables-classified":0}'), +(5892, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:00:00.004+00', 2, NULL), +(5893, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 15:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:00:00.01+00', 6, NULL), +(5894, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.008639+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.208102+00', 199, NULL), +(5895, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.008654+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.019678+00', 11, '{"timezone-id":"UTC"}'), +(5896, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.019723+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.029148+00', 9, '{"updated-tables":0,"total-tables":8}'), +(5897, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.029184+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.159182+00', 129, '{"total-fields":71,"updated-fields":0}'), +(5898, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.159224+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.165897+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5899, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.165937+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.208078+00', 42, NULL), +(5900, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.216835+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.236805+00', 19, NULL), +(5901, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.216849+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.230017+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5902, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.230064+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.233759+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(5903, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.233795+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:19:00.236783+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5904, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:00.006094+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.092162+00', 20086, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5905, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:00.00611+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:00.016251+00', 10, '{"timezone-id":null}'), +(5906, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:00.016318+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:00.09762+00', 81, '{"updated-tables":0,"total-tables":26}'), +(5907, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:00.098065+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.075798+00', 19977, '{"total-fields":302,"updated-fields":0}'), +(5908, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.089391+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.091721+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5909, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.091915+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.092147+00', 0, NULL), +(5910, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.108325+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.200159+00', 91, NULL), +(5911, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.108337+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.162938+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5912, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.16304+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.177718+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(5913, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.177761+00', TIMESTAMP WITH TIME ZONE '2022-12-25 15:56:20.200128+00', 22, '{"total-tables":26,"tables-classified":0}'), +(5914, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 16:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:00:00.025+00', 21, NULL), +(5915, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 16:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:00:00.024+00', 20, NULL), +(5916, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.004595+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.224693+00', 220, NULL), +(5917, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.004611+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.008678+00', 4, '{"timezone-id":"UTC"}'), +(5918, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.008714+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.021252+00', 12, '{"updated-tables":0,"total-tables":8}'), +(5919, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.021296+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.167464+00', 146, '{"total-fields":71,"updated-fields":0}'), +(5920, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.167505+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.177723+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5921, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.177771+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.224668+00', 46, NULL), +(5922, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.234276+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.254089+00', 19, NULL), +(5923, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.23429+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.248765+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5924, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.248809+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.251277+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5925, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.251307+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:19:00.254009+00', 2, '{"total-tables":8,"tables-classified":0}'), +(5926, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:00.010223+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.622712+00', 8612, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5927, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:00.010241+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:00.01045+00', 0, '{"timezone-id":null}'), +(5928, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:00.01048+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:00.066746+00', 56, '{"updated-tables":0,"total-tables":26}'), +(5929, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:00.066792+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.61972+00', 8552, '{"total-fields":302,"updated-fields":0}'), +(5930, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.61976+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.62256+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5931, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.622586+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.622705+00', 0, NULL), +(5932, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.633885+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.692382+00', 58, NULL), +(5933, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.633894+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.668555+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5934, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.668587+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.678687+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(5935, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.678717+00', TIMESTAMP WITH TIME ZONE '2022-12-25 16:56:08.692364+00', 13, '{"total-tables":26,"tables-classified":0}'), +(5936, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 17:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:00:00.003+00', 2, NULL), +(5937, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 17:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:00:00.008+00', 5, NULL), +(5938, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.004529+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.126803+00', 122, NULL), +(5939, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.004542+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.008102+00', 3, '{"timezone-id":"UTC"}'), +(5940, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.008134+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.012035+00', 3, '{"updated-tables":0,"total-tables":8}'), +(5941, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.012058+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.089549+00', 77, '{"total-fields":71,"updated-fields":0}'), +(5942, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.089616+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.095029+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5943, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.095062+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.12675+00', 31, NULL), +(5944, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.134354+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.151505+00', 17, NULL), +(5945, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.134364+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.143778+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5946, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.143813+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.147609+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(5947, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.147643+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:19:00.151483+00', 3, '{"total-tables":8,"tables-classified":0}'), +(5948, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:00.02386+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.873271+00', 6849, NULL), +(5949, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:00.023875+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:00.02408+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5950, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:00.024109+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:00.112286+00', 88, '{"updated-tables":0,"total-tables":26}'), +(5951, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:00.112442+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.871015+00', 6758, '{"total-fields":302,"updated-fields":0}'), +(5952, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.871053+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.872967+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5953, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.872998+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.873257+00', 0, NULL), +(5954, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.881887+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.923718+00', 41, NULL), +(5955, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.881896+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.908292+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5956, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.908325+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.914287+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(5957, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.914314+00', TIMESTAMP WITH TIME ZONE '2022-12-25 17:56:06.923698+00', 9, '{"total-tables":26,"tables-classified":0}'), +(5958, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 18:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:00:00.003+00', 1, NULL), +(5959, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 18:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:00:00.012+00', 9, NULL), +(5960, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.005169+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.591403+00', 586, NULL), +(5961, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.005185+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.015338+00', 10, '{"timezone-id":"UTC"}'), +(5962, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.015388+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.019313+00', 3, '{"updated-tables":0,"total-tables":8}'), +(5963, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.019344+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.341058+00', 321, '{"total-fields":71,"updated-fields":0}'), +(5964, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.341097+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.384715+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5965, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.38477+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.591381+00', 206, NULL), +(5966, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.625287+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.688021+00', 62, NULL), +(5967, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.625307+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.669598+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5968, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.669653+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.67833+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(5969, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.678376+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:19:00.687991+00', 9, '{"total-tables":8,"tables-classified":0}'), +(5970, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:00.015822+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.563707+00', 6547, NULL), +(5971, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:00.015842+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:00.016143+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5972, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:00.016179+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:00.081666+00', 65, '{"updated-tables":0,"total-tables":26}'), +(5973, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:00.081711+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.561455+00', 6479, '{"total-fields":302,"updated-fields":0}'), +(5974, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.5615+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.563398+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5975, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.563432+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.563692+00', 0, NULL), +(5976, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.582763+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.628478+00', 45, NULL), +(5977, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.582776+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.609868+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5978, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.609915+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.616207+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(5979, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.616244+00', TIMESTAMP WITH TIME ZONE '2022-12-25 18:56:06.628451+00', 12, '{"total-tables":26,"tables-classified":0}'), +(5980, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 19:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:00:00.003+00', 1, NULL), +(5981, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:00:00.009+00', 6, NULL), +(5982, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.006432+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.165097+00', 158, NULL), +(5983, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.006449+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.015763+00', 9, '{"timezone-id":"UTC"}'), +(5984, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.015817+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.020231+00', 4, '{"updated-tables":0,"total-tables":8}'), +(5985, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.02027+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.12584+00', 105, '{"total-fields":71,"updated-fields":0}'), +(5986, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.125886+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.131188+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(5987, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.131228+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.165075+00', 33, NULL), +(5988, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.173381+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.191235+00', 17, NULL), +(5989, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.173395+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.184593+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(5990, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.184641+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.18759+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(5991, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.187632+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:19:00.191209+00', 3, '{"total-tables":8,"tables-classified":0}'), +(5992, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:00.010569+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.468143+00', 6457, NULL), +(5993, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:00.01059+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:00.011+00', 0, '{"timezone-id":null}'), +(5994, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:00.011039+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:00.084266+00', 73, '{"updated-tables":0,"total-tables":26}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(5995, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:00.08431+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.466102+00', 6381, '{"total-fields":302,"updated-fields":0}'), +(5996, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.46615+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.467906+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(5997, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.467933+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.468129+00', 0, NULL), +(5998, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.476412+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.517857+00', 41, NULL), +(5999, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.476423+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.501079+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6000, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.501115+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.508395+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6001, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.508424+00', TIMESTAMP WITH TIME ZONE '2022-12-25 19:56:06.517769+00', 9, '{"total-tables":26,"tables-classified":0}'), +(6002, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 20:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:00:00.015+00', 10, NULL), +(6003, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 20:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:00:00.022+00', 17, NULL), +(6004, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.00393+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.123931+00', 120, NULL), +(6005, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.003947+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.007878+00', 3, '{"timezone-id":"UTC"}'), +(6006, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.007916+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.01214+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6007, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.012166+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.089736+00', 77, '{"total-fields":71,"updated-fields":0}'), +(6008, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.089771+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.094738+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6009, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.094765+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.123917+00', 29, NULL), +(6010, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.130253+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.142142+00', 11, NULL), +(6011, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.130264+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.137906+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6012, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.138003+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.139957+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(6013, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.139987+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:19:00.142125+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6014, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:00.00904+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.974038+00', 6964, NULL), +(6015, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:00.009058+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:00.009276+00', 0, '{"timezone-id":null}'), +(6016, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:00.009317+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:00.052139+00', 42, '{"updated-tables":0,"total-tables":26}'), +(6017, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:00.052187+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.971847+00', 6919, '{"total-fields":302,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6018, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.971891+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.973691+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6019, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.973724+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.974023+00', 0, NULL), +(6020, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.982081+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:07.160077+00', 177, NULL), +(6021, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:06.982091+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:07.006945+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6022, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:07.006983+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:07.014436+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6023, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:07.01447+00', TIMESTAMP WITH TIME ZONE '2022-12-25 20:56:07.160024+00', 145, '{"total-tables":26,"tables-classified":0}'), +(6024, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.045+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.046+00', 1, NULL), +(6025, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.047+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.053+00', 6, NULL), +(6026, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.012486+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.798696+00', 786, NULL), +(6027, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.012502+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.109144+00', 96, '{"deleted":0}'), +(6028, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.109194+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:00:00.798668+00', 689, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(6029, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.004866+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.264249+00', 259, NULL), +(6030, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.004882+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.008693+00', 3, '{"timezone-id":"UTC"}'), +(6031, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.008933+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.039674+00', 30, '{"updated-tables":0,"total-tables":8}'), +(6032, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.039715+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.191828+00', 152, '{"total-fields":71,"updated-fields":0}'), +(6033, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.191865+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.200645+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6034, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.200679+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.264228+00', 63, NULL), +(6035, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.278042+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.30997+00', 31, NULL), +(6036, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.278058+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.29004+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6037, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.290111+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.293073+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6038, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.293109+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:19:00.30994+00', 16, '{"total-tables":8,"tables-classified":0}'), +(6039, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:00.00734+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.316645+00', 6309, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6040, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:00.007355+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:00.007557+00', 0, '{"timezone-id":null}'), +(6041, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:00.007586+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:00.09586+00', 88, '{"updated-tables":0,"total-tables":26}'), +(6042, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:00.095891+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.313435+00', 6217, '{"total-fields":302,"updated-fields":0}'), +(6043, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.313483+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.315985+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6044, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.316014+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.316627+00', 0, NULL), +(6045, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.376196+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.537008+00', 160, NULL), +(6046, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.376219+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.513957+00', 137, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6047, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.514261+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.521386+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6048, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.52142+00', TIMESTAMP WITH TIME ZONE '2022-12-25 21:56:06.536986+00', 15, '{"total-tables":26,"tables-classified":0}'), +(6049, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 22:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:00:00.018+00', 9, NULL), +(6050, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 22:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:00:00.009+00', 3, NULL), +(6051, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.008719+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.140948+00', 132, NULL), +(6052, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.008734+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.01272+00', 3, '{"timezone-id":"UTC"}'), +(6053, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.012757+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.0186+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6054, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.018631+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.109174+00', 90, '{"total-fields":71,"updated-fields":0}'), +(6055, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.109211+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.114523+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6056, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.114551+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.140936+00', 26, NULL), +(6057, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.146755+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.159246+00', 12, NULL), +(6058, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.146764+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.154717+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6059, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.154747+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.156984+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6060, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.157023+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:19:00.159229+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6061, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:00.009118+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.870974+00', 8861, NULL), +(6062, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:00.009135+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:00.009374+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6063, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:00.009405+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:00.079466+00', 70, '{"updated-tables":0,"total-tables":26}'), +(6064, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:00.079509+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.865662+00', 8786, '{"total-fields":302,"updated-fields":0}'), +(6065, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.865807+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.87037+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6066, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.870478+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.870939+00', 0, NULL), +(6067, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.882772+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.97872+00', 95, NULL), +(6068, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.882783+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.925092+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6069, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.925223+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.950206+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(6070, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.950354+00', TIMESTAMP WITH TIME ZONE '2022-12-25 22:56:08.978688+00', 28, '{"total-tables":26,"tables-classified":0}'), +(6071, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 23:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:00:00.01+00', 9, NULL), +(6072, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-25 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:00:00.011+00', 7, NULL), +(6073, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.006694+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.243463+00', 236, NULL), +(6074, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.00671+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.01271+00', 6, '{"timezone-id":"UTC"}'), +(6075, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.012751+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.021895+00', 9, '{"updated-tables":0,"total-tables":8}'), +(6076, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.021941+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.177404+00', 155, '{"total-fields":71,"updated-fields":0}'), +(6077, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.177452+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.189689+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6078, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.189743+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.243443+00', 53, NULL), +(6079, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.250976+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.269026+00', 18, NULL), +(6080, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.250989+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.263581+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6081, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.263623+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.266321+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6082, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.266352+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:19:00.269007+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6083, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:00.00663+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.955679+00', 6949, NULL), +(6084, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:00.00665+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:00.007152+00', 0, '{"timezone-id":null}'), +(6085, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:00.007224+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:00.077081+00', 69, '{"updated-tables":0,"total-tables":26}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6086, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:00.077127+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.951329+00', 6874, '{"total-fields":302,"updated-fields":0}'), +(6087, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.951376+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.955121+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6088, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.95518+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.955558+00', 0, NULL), +(6089, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.970722+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:07.050935+00', 80, NULL), +(6090, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:06.970734+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:07.019787+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6091, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:07.019928+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:07.030943+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(6092, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:07.031191+00', TIMESTAMP WITH TIME ZONE '2022-12-25 23:56:07.050881+00', 19, '{"total-tables":26,"tables-classified":0}'), +(6093, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 00:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:00:00.012+00', 10, NULL), +(6094, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 00:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:00:00.018+00', 15, NULL), +(6095, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.004261+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.176743+00', 172, NULL), +(6096, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.004277+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.008275+00', 3, '{"timezone-id":"UTC"}'), +(6097, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.00831+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.012972+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6098, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.013009+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.132104+00', 119, '{"total-fields":71,"updated-fields":0}'), +(6099, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.132148+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.138836+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6100, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.138873+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.176721+00', 37, NULL), +(6101, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.184785+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.205375+00', 20, NULL), +(6102, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.184798+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.198577+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6103, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.198621+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.202459+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(6104, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.202493+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:19:00.205354+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6105, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:00.00775+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.440969+00', 7433, NULL), +(6106, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:00.007766+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:00.008012+00', 0, '{"timezone-id":null}'), +(6107, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:00.008044+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:00.116604+00', 108, '{"updated-tables":0,"total-tables":26}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6108, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:00.116649+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.437259+00', 7320, '{"total-fields":302,"updated-fields":0}'), +(6109, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.437455+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.440002+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6110, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.440546+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.440869+00', 0, NULL), +(6111, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.458662+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.502527+00', 43, NULL), +(6112, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.458675+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.483821+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6113, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.4839+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.490467+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6114, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.490529+00', TIMESTAMP WITH TIME ZONE '2022-12-26 00:56:07.502476+00', 11, '{"total-tables":26,"tables-classified":0}'), +(6115, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:00:00.005+00', 1, NULL), +(6116, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 01:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:00:00.015+00', 8, NULL), +(6117, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.004588+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.2144+00', 209, NULL), +(6118, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.004604+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.008155+00', 3, '{"timezone-id":"UTC"}'), +(6119, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.00819+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.012246+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6120, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.012272+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.112391+00', 100, '{"total-fields":71,"updated-fields":0}'), +(6121, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.112433+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.187852+00', 75, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6122, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.187901+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.214381+00', 26, NULL), +(6123, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.220318+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.235795+00', 15, NULL), +(6124, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.220331+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.230696+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6125, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.230736+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.233389+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6126, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.233419+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:19:00.235777+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6127, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:00.005303+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.277817+00', 6272, NULL), +(6128, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:00.005319+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:00.00552+00', 0, '{"timezone-id":null}'), +(6129, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:00.005548+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:00.084736+00', 79, '{"updated-tables":0,"total-tables":26}'), +(6130, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:00.084813+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.268413+00', 6183, '{"total-fields":302,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6131, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.268457+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.277634+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6132, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.277672+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.277808+00', 0, NULL), +(6133, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.36551+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.443691+00', 78, NULL), +(6134, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.365526+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.421986+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6135, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.422038+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.430665+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(6136, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.430773+00', TIMESTAMP WITH TIME ZONE '2022-12-26 01:56:06.443657+00', 12, '{"total-tables":26,"tables-classified":0}'), +(6137, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 02:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:00:00.009+00', 6, NULL), +(6138, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:00:00.01+00', 6, NULL), +(6139, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.005782+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.189278+00', 183, NULL), +(6140, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.005798+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.026679+00', 20, '{"timezone-id":"UTC"}'), +(6141, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.026736+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.031934+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6142, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.032008+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.14596+00', 113, '{"total-fields":71,"updated-fields":0}'), +(6143, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.146031+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.157366+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6144, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.157503+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.189262+00', 31, NULL), +(6145, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.19592+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.209346+00', 13, NULL), +(6146, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.195932+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.204145+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6147, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.204253+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.206779+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6148, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.206871+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:19:00.209324+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6149, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:00.007484+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.453444+00', 9445, NULL), +(6150, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:00.007501+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:00.007753+00', 0, '{"timezone-id":null}'), +(6151, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:00.007781+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:00.072916+00', 65, '{"updated-tables":0,"total-tables":26}'), +(6152, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:00.073005+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.450601+00', 9377, '{"total-fields":302,"updated-fields":0}'), +(6153, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.450864+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.453143+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6154, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.45317+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.453404+00', 0, NULL), +(6155, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.46411+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.525521+00', 61, NULL), +(6156, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.464442+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.498784+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6157, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.498825+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.50912+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(6158, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.509164+00', TIMESTAMP WITH TIME ZONE '2022-12-26 02:56:09.525486+00', 16, '{"total-tables":26,"tables-classified":0}'), +(6159, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 03:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:00:00.003+00', 2, NULL), +(6160, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:00:00.01+00', 6, NULL), +(6161, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.005083+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.178254+00', 173, NULL), +(6162, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.005099+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.017667+00', 12, '{"timezone-id":"UTC"}'), +(6163, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.017711+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.023198+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6164, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.023234+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.134922+00', 111, '{"total-fields":71,"updated-fields":0}'), +(6165, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.134959+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.141927+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6166, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.141963+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.178226+00', 36, NULL), +(6167, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.18546+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.202986+00', 17, NULL), +(6168, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.185473+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.195098+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6169, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.195137+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.197445+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6170, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.197479+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:19:00.202966+00', 5, '{"total-tables":8,"tables-classified":0}'), +(6171, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:00.007155+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.891933+00', 7884, NULL), +(6172, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:00.007172+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:00.00738+00', 0, '{"timezone-id":null}'), +(6173, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:00.007407+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:00.05694+00', 49, '{"updated-tables":0,"total-tables":26}'), +(6174, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:00.05703+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.886645+00', 7829, '{"total-fields":302,"updated-fields":0}'), +(6175, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.886882+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.891717+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6176, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.891752+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.891922+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6177, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.905+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.953744+00', 48, NULL), +(6178, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.905012+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.936295+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6179, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.936341+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.943+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6180, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.943065+00', TIMESTAMP WITH TIME ZONE '2022-12-26 03:56:07.953716+00', 10, '{"total-tables":26,"tables-classified":0}'), +(6181, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 04:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:00:00.003+00', 1, NULL), +(6182, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 04:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:00:00.014+00', 6, NULL), +(6183, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.006999+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.180496+00', 173, NULL), +(6184, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.007015+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.011264+00', 4, '{"timezone-id":"UTC"}'), +(6185, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.011302+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.020709+00', 9, '{"updated-tables":0,"total-tables":8}'), +(6186, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.020742+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.129527+00', 108, '{"total-fields":71,"updated-fields":0}'), +(6187, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.129604+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.135528+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6188, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.135562+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.18047+00', 44, NULL), +(6189, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.190085+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.205519+00', 15, NULL), +(6190, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.190099+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.201399+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6191, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.201438+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.203492+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6192, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.203521+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:19:00.205502+00', 1, '{"total-tables":8,"tables-classified":0}'), +(6193, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:00.008411+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.069049+00', 9060, NULL), +(6194, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:00.008428+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:00.008639+00', 0, '{"timezone-id":null}'), +(6195, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:00.008668+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:00.1164+00', 107, '{"updated-tables":0,"total-tables":26}'), +(6196, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:00.116443+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.066533+00', 8950, '{"total-fields":302,"updated-fields":0}'), +(6197, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.066579+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.068684+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6198, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.068743+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.069016+00', 0, NULL), +(6199, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.081474+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.264819+00', 183, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6200, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.081486+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.218299+00', 136, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6201, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.21862+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.231946+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(6202, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.232089+00', TIMESTAMP WITH TIME ZONE '2022-12-26 04:56:09.26476+00', 32, '{"total-tables":26,"tables-classified":0}'), +(6203, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 05:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:00:00.003+00', 1, NULL), +(6204, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:00:00.009+00', 6, NULL), +(6205, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.005577+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.254847+00', 249, NULL), +(6206, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.005594+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.009723+00', 4, '{"timezone-id":"UTC"}'), +(6207, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.009759+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.017251+00', 7, '{"updated-tables":0,"total-tables":8}'), +(6208, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.017296+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.141627+00', 124, '{"total-fields":71,"updated-fields":0}'), +(6209, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.14167+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.147726+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6210, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.147763+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.254822+00', 107, NULL), +(6211, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.262395+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.276509+00', 14, NULL), +(6212, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.262413+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.271227+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6213, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.271316+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.273948+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6214, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.27398+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:19:00.276488+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6215, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:00.014122+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.746555+00', 5732, NULL), +(6216, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:00.01415+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:00.014411+00', 0, '{"timezone-id":null}'), +(6217, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:00.014444+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:00.057894+00', 43, '{"updated-tables":0,"total-tables":26}'), +(6218, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:00.05794+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.740055+00', 5682, '{"total-fields":302,"updated-fields":0}'), +(6219, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.740106+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.746339+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6220, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.746372+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.746544+00', 0, NULL), +(6221, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.793518+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.966825+00', 173, NULL), +(6222, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.793537+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.929139+00', 135, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6223, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.933883+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.946139+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(6224, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.946192+00', TIMESTAMP WITH TIME ZONE '2022-12-26 05:56:05.966795+00', 20, '{"total-tables":26,"tables-classified":0}'), +(6225, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 06:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:00:00.022+00', 13, NULL), +(6226, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 06:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:00:00.022+00', 13, NULL), +(6227, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.006793+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.132009+00', 125, NULL), +(6228, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.006808+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.010851+00', 4, '{"timezone-id":"UTC"}'), +(6229, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.010892+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.01702+00', 6, '{"updated-tables":0,"total-tables":8}'), +(6230, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.017052+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.098943+00', 81, '{"total-fields":71,"updated-fields":0}'), +(6231, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.099035+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.104312+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6232, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.104346+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.13199+00', 27, NULL), +(6233, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.138+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.150796+00', 12, NULL), +(6234, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.138012+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.146215+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6235, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.146251+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.148286+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6236, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.148313+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:19:00.150779+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6237, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:00.04641+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.737219+00', 7690, NULL), +(6238, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:00.046431+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:00.046912+00', 0, '{"timezone-id":null}'), +(6239, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:00.046951+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:00.089176+00', 42, '{"updated-tables":0,"total-tables":26}'), +(6240, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:00.089293+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.732239+00', 7642, '{"total-fields":302,"updated-fields":0}'), +(6241, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.732298+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.737012+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6242, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.737051+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.737209+00', 0, NULL), +(6243, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.76142+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.865804+00', 104, NULL), +(6244, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.761435+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.844697+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6245, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.844752+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.853311+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6246, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.853355+00', TIMESTAMP WITH TIME ZONE '2022-12-26 06:56:07.865751+00', 12, '{"total-tables":26,"tables-classified":0}'), +(6247, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 07:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:00:00.016+00', 14, NULL), +(6248, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:00:00.016+00', 12, NULL), +(6249, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.005584+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.183211+00', 177, NULL), +(6250, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.005601+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.013075+00', 7, '{"timezone-id":"UTC"}'), +(6251, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.013119+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.020482+00', 7, '{"updated-tables":0,"total-tables":8}'), +(6252, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.020516+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.140583+00', 120, '{"total-fields":71,"updated-fields":0}'), +(6253, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.140621+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.147003+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6254, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.147039+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.183189+00', 36, NULL), +(6255, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.202928+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.227165+00', 24, NULL), +(6256, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.202943+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.2173+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6257, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.217347+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.223713+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6258, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.223754+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:19:00.227142+00', 3, '{"total-tables":8,"tables-classified":0}'), +(6259, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:00.005882+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.441439+00', 6435, NULL), +(6260, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:00.005898+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:00.006799+00', 0, '{"timezone-id":null}'), +(6261, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:00.006835+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:00.052203+00', 45, '{"updated-tables":0,"total-tables":26}'), +(6262, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:00.052255+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.438849+00', 6386, '{"total-fields":302,"updated-fields":0}'), +(6263, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.438896+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.441264+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6264, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.441293+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.44143+00', 0, NULL), +(6265, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.450337+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.521945+00', 71, NULL), +(6266, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.450348+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.491199+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6267, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.491347+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.502417+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6268, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.502563+00', TIMESTAMP WITH TIME ZONE '2022-12-26 07:56:06.521922+00', 19, '{"total-tables":26,"tables-classified":0}'), +(6269, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:00.002+00', 1, NULL), +(6270, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:00.009+00', 6, NULL), +(6271, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.005841+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.163286+00', 157, NULL), +(6272, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.005857+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.01984+00', 13, '{"timezone-id":"UTC"}'), +(6273, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.019892+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.025178+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6274, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.025205+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.117154+00', 91, '{"total-fields":71,"updated-fields":0}'), +(6275, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.11719+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.123031+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6276, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.123063+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.163265+00', 40, NULL), +(6277, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.172004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.186422+00', 14, NULL), +(6278, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.172016+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.180818+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6279, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.180855+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.183696+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6280, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.183731+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:00.186403+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6281, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:00.007235+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.764404+00', 6757, NULL), +(6282, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:00.007252+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:00.007473+00', 0, '{"timezone-id":null}'), +(6283, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:00.007505+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:00.113956+00', 106, '{"updated-tables":0,"total-tables":26}'), +(6284, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:00.114055+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.698354+00', 6584, '{"total-fields":302,"updated-fields":0}'), +(6285, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.698427+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.761548+00', 63, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6286, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.76404+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.764366+00', 0, NULL), +(6287, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.785548+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.834925+00', 49, NULL), +(6288, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.785564+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.818028+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6289, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.818107+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.824847+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6290, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.824913+00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:56:06.834876+00', 9, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6291, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:00.005+00', 2, NULL), +(6292, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:00.026+00', 19, NULL), +(6293, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.012746+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.208336+00', 195, NULL), +(6294, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.012763+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.015038+00', 2, '{"timezone-id":"UTC"}'), +(6295, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.015075+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.019423+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6296, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.019449+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.157091+00', 137, '{"total-fields":71,"updated-fields":0}'), +(6297, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.157128+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.162633+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6298, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.162664+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.208322+00', 45, NULL), +(6299, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.219897+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.241412+00', 21, NULL), +(6300, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.219912+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.233941+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6301, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.234096+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.238139+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(6302, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.238169+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:19:00.241393+00', 3, '{"total-tables":8,"tables-classified":0}'), +(6303, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:00.00644+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.531004+00', 8524, NULL), +(6304, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:00.006459+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:00.006677+00', 0, '{"timezone-id":null}'), +(6305, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:00.006708+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:00.065172+00', 58, '{"updated-tables":0,"total-tables":26}'), +(6306, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:00.065245+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.527831+00', 8462, '{"total-fields":302,"updated-fields":0}'), +(6307, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.527874+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.530839+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6308, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.530871+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.530996+00', 0, NULL), +(6309, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.559459+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.628188+00', 68, NULL), +(6310, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.55947+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.601591+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6311, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.601636+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.613054+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(6312, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.613103+00', TIMESTAMP WITH TIME ZONE '2022-12-26 09:56:08.628164+00', 15, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6313, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:00:00.042+00', 38, NULL), +(6314, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:00:00.056+00', 52, NULL), +(6315, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.010846+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.211325+00', 200, NULL), +(6316, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.010865+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.013781+00', 2, '{"timezone-id":"UTC"}'), +(6317, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.013942+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.018448+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6318, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.018546+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.160065+00', 141, '{"total-fields":71,"updated-fields":0}'), +(6319, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.160263+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.1673+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6320, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.167444+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.211305+00', 43, NULL), +(6321, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.220218+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.237253+00', 17, NULL), +(6322, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.22023+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.230117+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6323, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.230232+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.233136+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6324, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.233232+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:19:00.237172+00', 3, '{"total-tables":8,"tables-classified":0}'), +(6325, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:00.007565+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:07.994462+00', 7986, NULL), +(6326, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:00.007583+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:00.007798+00', 0, '{"timezone-id":null}'), +(6327, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:00.00783+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:00.092296+00', 84, '{"updated-tables":0,"total-tables":26}'), +(6328, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:00.092347+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:07.990702+00', 7898, '{"total-fields":302,"updated-fields":0}'), +(6329, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:07.990762+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:07.994263+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6330, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:07.9943+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:07.994452+00', 0, NULL), +(6331, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.004158+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.146309+00', 142, NULL), +(6332, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.004171+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.054118+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6333, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.054188+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.128105+00', 73, '{"fields-classified":0,"fields-failed":0}'), +(6334, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.128168+00', TIMESTAMP WITH TIME ZONE '2022-12-26 10:56:08.146268+00', 18, '{"total-tables":26,"tables-classified":0}'), +(6335, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 11:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:00:00.015+00', 11, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6336, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 11:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:00:00.049+00', 44, NULL), +(6337, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.009636+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.18848+00', 178, NULL), +(6338, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.009653+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.062372+00', 52, '{"timezone-id":"UTC"}'), +(6339, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.062427+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.073212+00', 10, '{"updated-tables":0,"total-tables":8}'), +(6340, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.073247+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.156835+00', 83, '{"total-fields":71,"updated-fields":0}'), +(6341, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.156876+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.162619+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6342, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.16265+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.188467+00', 25, NULL), +(6343, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.194645+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.20738+00', 12, NULL), +(6344, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.194655+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.202399+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6345, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.202498+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.20493+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6346, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.204957+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:19:00.207361+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6347, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:00.017998+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.115686+00', 8097, NULL), +(6348, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:00.018016+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:00.018304+00', 0, '{"timezone-id":null}'), +(6349, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:00.018341+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:00.055003+00', 36, '{"updated-tables":0,"total-tables":26}'), +(6350, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:00.055049+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.111949+00', 8056, '{"total-fields":302,"updated-fields":0}'), +(6351, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.112+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.115494+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6352, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.115528+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.115677+00', 0, NULL), +(6353, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.126331+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.179379+00', 53, NULL), +(6354, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.126342+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.159596+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6355, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.159703+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.168242+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(6356, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.168278+00', TIMESTAMP WITH TIME ZONE '2022-12-26 11:56:08.179357+00', 11, '{"total-tables":26,"tables-classified":0}'), +(6357, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 12:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:00:00.007+00', 1, NULL), +(6358, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 12:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:00:00.012+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6359, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.005481+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.138983+00', 133, NULL), +(6360, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.005496+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.010038+00', 4, '{"timezone-id":"UTC"}'), +(6361, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.010077+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.016269+00', 6, '{"updated-tables":0,"total-tables":8}'), +(6362, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.016312+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.107144+00', 90, '{"total-fields":71,"updated-fields":0}'), +(6363, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.107343+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.112532+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6364, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.112676+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.138968+00', 26, NULL), +(6365, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.146136+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.161001+00', 14, NULL), +(6366, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.146148+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.155728+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6367, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.155778+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.158309+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6368, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.158337+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:19:00.160982+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6369, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:00.007436+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.821123+00', 7813, NULL), +(6370, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:00.007454+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:00.007639+00', 0, '{"timezone-id":null}'), +(6371, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:00.007667+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:00.082137+00', 74, '{"updated-tables":0,"total-tables":26}'), +(6372, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:00.082183+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.818904+00', 7736, '{"total-fields":302,"updated-fields":0}'), +(6373, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.818946+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.820951+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6374, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.820983+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.821111+00', 0, NULL), +(6375, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.829595+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.877225+00', 47, NULL), +(6376, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.829608+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.858013+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6377, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.858058+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.865692+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6378, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.865734+00', TIMESTAMP WITH TIME ZONE '2022-12-26 12:56:07.877199+00', 11, '{"total-tables":26,"tables-classified":0}'), +(6379, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.005+00', 1, NULL), +(6380, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.01+00', 5, NULL), +(6381, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.011674+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:04.082263+00', 4070, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6382, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.011689+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.381062+00', 369, '{"deleted":0}'), +(6383, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:00.381112+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:00:04.082233+00', 3701, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(6384, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.004778+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.226854+00', 222, NULL), +(6385, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.004793+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.007395+00', 2, '{"timezone-id":"UTC"}'), +(6386, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.007512+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.042246+00', 34, '{"updated-tables":0,"total-tables":8}'), +(6387, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.042359+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.191018+00', 148, '{"total-fields":71,"updated-fields":0}'), +(6388, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.191057+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.197534+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6389, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.197566+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.226836+00', 29, NULL), +(6390, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.233675+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.24713+00', 13, NULL), +(6391, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.233686+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.24209+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6392, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.242131+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.244712+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6393, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.244745+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:19:00.247112+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6394, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:00.013557+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.083617+00', 7070, NULL), +(6395, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:00.013588+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:00.014301+00', 0, '{"timezone-id":null}'), +(6396, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:00.014338+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:00.074995+00', 60, '{"updated-tables":0,"total-tables":26}'), +(6397, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:00.07504+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.080985+00', 7005, '{"total-fields":302,"updated-fields":0}'), +(6398, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.081031+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.083221+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6399, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.083255+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.083601+00', 0, NULL), +(6400, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.092394+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.170251+00', 77, NULL), +(6401, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.092404+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.140335+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6402, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.140407+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.147777+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6403, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.147812+00', TIMESTAMP WITH TIME ZONE '2022-12-26 13:56:07.170224+00', 22, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6404, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 14:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:00:00.012+00', 10, NULL), +(6405, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:00:00.012+00', 8, NULL), +(6406, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.006317+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.148189+00', 141, NULL), +(6407, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.006357+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.009723+00', 3, '{"timezone-id":"UTC"}'), +(6408, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.009768+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.016192+00', 6, '{"updated-tables":0,"total-tables":8}'), +(6409, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.016226+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.112851+00', 96, '{"total-fields":71,"updated-fields":0}'), +(6410, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.112954+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.118125+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6411, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.118186+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.148146+00', 29, NULL), +(6412, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.158932+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.186543+00', 27, NULL), +(6413, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.158959+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.178178+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6414, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.178266+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.184091+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(6415, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.184124+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:19:00.186423+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6416, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:00.007337+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.106327+00', 9098, NULL), +(6417, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:00.007355+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:00.007826+00', 0, '{"timezone-id":null}'), +(6418, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:00.007928+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:00.075494+00', 67, '{"updated-tables":0,"total-tables":26}'), +(6419, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:00.075563+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.098125+00', 9022, '{"total-fields":302,"updated-fields":0}'), +(6420, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.098191+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.103365+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6421, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.103421+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.106231+00', 2, NULL), +(6422, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.130336+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.257866+00', 127, NULL), +(6423, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.130353+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.179345+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6424, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.179401+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.233312+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(6425, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.233375+00', TIMESTAMP WITH TIME ZONE '2022-12-26 14:56:09.25777+00', 24, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6426, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 15:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:00:00.011+00', 1, NULL), +(6427, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 15:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:00:00.019+00', 12, NULL), +(6428, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.004579+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.134706+00', 130, NULL), +(6429, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.004607+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.017284+00', 12, '{"timezone-id":"UTC"}'), +(6430, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.017334+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.02165+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6431, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.021678+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.100194+00', 78, '{"total-fields":71,"updated-fields":0}'), +(6432, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.10023+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.105661+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6433, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.105691+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.134695+00', 29, NULL), +(6434, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.141957+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.158752+00', 16, NULL), +(6435, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.141967+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.154281+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6436, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.154318+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.156477+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6437, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.156506+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:19:00.158732+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6438, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:00.028029+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.799562+00', 7771, NULL), +(6439, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:00.028048+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:00.028327+00', 0, '{"timezone-id":null}'), +(6440, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:00.02836+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:00.096542+00', 68, '{"updated-tables":0,"total-tables":26}'), +(6441, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:00.096585+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.792127+00', 7695, '{"total-fields":302,"updated-fields":0}'), +(6442, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.792219+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.799118+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6443, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.799189+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.799545+00', 0, NULL), +(6444, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.812866+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:08.117048+00', 304, NULL), +(6445, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.812878+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.872058+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6446, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.872141+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.905234+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(6447, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:07.90541+00', TIMESTAMP WITH TIME ZONE '2022-12-26 15:56:08.117007+00', 211, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6448, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 16:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:00:00.009+00', 6, NULL), +(6449, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 16:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:00:00.009+00', 6, NULL), +(6450, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.007831+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.201028+00', 193, NULL), +(6451, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.007846+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.013744+00', 5, '{"timezone-id":"UTC"}'), +(6452, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.013898+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.026452+00', 12, '{"updated-tables":0,"total-tables":8}'), +(6453, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.026506+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.145054+00', 118, '{"total-fields":71,"updated-fields":0}'), +(6454, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.145093+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.154651+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6455, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.15469+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.201008+00', 46, NULL), +(6456, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.278668+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.303704+00', 25, NULL), +(6457, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.278687+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.291446+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6458, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.29149+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.296175+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(6459, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.296216+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:19:00.303452+00', 7, '{"total-tables":8,"tables-classified":0}'), +(6460, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:00.007503+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.750395+00', 5742, NULL), +(6461, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:00.007522+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:00.007759+00', 0, '{"timezone-id":null}'), +(6462, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:00.007792+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:00.078355+00', 70, '{"updated-tables":0,"total-tables":26}'), +(6463, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:00.078407+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.747806+00', 5669, '{"total-fields":302,"updated-fields":0}'), +(6464, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.747853+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.750014+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6465, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.750045+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.750379+00', 0, NULL), +(6466, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.761912+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.807277+00', 45, NULL), +(6467, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.761933+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.788876+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6468, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.788926+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.796233+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6469, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.796266+00', TIMESTAMP WITH TIME ZONE '2022-12-26 16:56:05.807219+00', 10, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6470, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:00:00.009+00', 5, NULL), +(6471, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 17:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:00:00.009+00', 7, NULL), +(6472, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.008637+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.254938+00', 246, NULL), +(6473, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.008657+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.019884+00', 11, '{"timezone-id":"UTC"}'), +(6474, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.020028+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.025973+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6475, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.026002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.181513+00', 155, '{"total-fields":71,"updated-fields":0}'), +(6476, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.181555+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.191799+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6477, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.191839+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.254918+00', 63, NULL), +(6478, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.266201+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.292436+00', 26, NULL), +(6479, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.266215+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.283884+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6480, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.283925+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.285931+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6481, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.285958+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:19:00.292418+00', 6, '{"total-tables":8,"tables-classified":0}'), +(6482, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:00.008698+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.143174+00', 7134, NULL), +(6483, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:00.008715+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:00.008915+00', 0, '{"timezone-id":null}'), +(6484, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:00.008945+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:00.096851+00', 87, '{"updated-tables":0,"total-tables":26}'), +(6485, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:00.096897+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.140754+00', 7043, '{"total-fields":302,"updated-fields":0}'), +(6486, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.140808+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.142919+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6487, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.142949+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.143149+00', 0, NULL), +(6488, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.155418+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.209609+00', 54, NULL), +(6489, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.15543+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.190661+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6490, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.190717+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.197949+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6491, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.197997+00', TIMESTAMP WITH TIME ZONE '2022-12-26 17:56:07.209515+00', 11, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6492, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 18:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:00:00.019+00', 9, NULL), +(6493, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 18:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:00:00.02+00', 13, NULL), +(6494, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.004842+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.138854+00', 134, NULL), +(6495, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.00486+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.009654+00', 4, '{"timezone-id":"UTC"}'), +(6496, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.009694+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.014136+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6497, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.014164+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.106298+00', 92, '{"total-fields":71,"updated-fields":0}'), +(6498, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.106329+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.11175+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6499, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.111777+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.138843+00', 27, NULL), +(6500, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.144947+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.158216+00', 13, NULL), +(6501, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.144956+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.153247+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6502, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.153274+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.155719+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6503, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.155745+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:19:00.158169+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6504, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:00.006684+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.560721+00', 7554, NULL), +(6505, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:00.006704+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:00.006916+00', 0, '{"timezone-id":null}'), +(6506, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:00.006952+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:00.036751+00', 29, '{"updated-tables":0,"total-tables":26}'), +(6507, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:00.036817+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.545015+00', 7508, '{"total-fields":302,"updated-fields":0}'), +(6508, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.545066+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.559737+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6509, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.560453+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.560708+00', 0, NULL), +(6510, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.586083+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.686528+00', 100, NULL), +(6511, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.586098+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.655853+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6512, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.655912+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.67161+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(6513, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.671655+00', TIMESTAMP WITH TIME ZONE '2022-12-26 18:56:07.686506+00', 14, '{"total-tables":26,"tables-classified":0}'), +(6514, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 19:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:00:00.003+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6515, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:00:00.011+00', 8, NULL), +(6516, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.005986+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.217414+00', 211, NULL), +(6517, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.006002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.017015+00', 11, '{"timezone-id":"UTC"}'), +(6518, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.017068+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.02298+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6519, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.023016+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.169344+00', 146, '{"total-fields":71,"updated-fields":0}'), +(6520, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.169387+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.175562+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6521, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.175646+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.217389+00', 41, NULL), +(6522, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.22712+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.242642+00', 15, NULL), +(6523, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.227148+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.235492+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6524, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.235533+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.238183+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6525, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.238215+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:19:00.242621+00', 4, '{"total-tables":8,"tables-classified":0}'), +(6526, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:00.009984+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.538764+00', 13528, NULL), +(6527, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:00.010005+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:00.010296+00', 0, '{"timezone-id":null}'), +(6528, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:00.010339+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:00.050283+00', 39, '{"updated-tables":0,"total-tables":26}'), +(6529, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:00.05036+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.535296+00', 13484, '{"total-fields":302,"updated-fields":0}'), +(6530, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.535471+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.53824+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6531, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.538391+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.538681+00', 0, NULL), +(6532, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.550558+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.613551+00', 62, NULL), +(6533, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.550572+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.582828+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6534, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.582957+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.592147+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(6535, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.592347+00', TIMESTAMP WITH TIME ZONE '2022-12-26 19:56:13.613509+00', 21, '{"total-tables":26,"tables-classified":0}'), +(6536, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 20:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:00:00.003+00', 1, NULL), +(6537, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 20:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:00:00.014+00', 9, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6538, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.005513+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.134295+00', 128, NULL), +(6539, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.005531+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.009393+00', 3, '{"timezone-id":"UTC"}'), +(6540, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.009438+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.01355+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6541, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.013584+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.100978+00', 87, '{"total-fields":71,"updated-fields":0}'), +(6542, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.10103+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.107407+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6543, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.10746+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.134265+00', 26, NULL), +(6544, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.143265+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.162865+00', 19, NULL), +(6545, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.143278+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.155884+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6546, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.155953+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.159031+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(6547, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.159099+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:19:00.162844+00', 3, '{"total-tables":8,"tables-classified":0}'), +(6548, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:00.004971+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.954308+00', 7949, NULL), +(6549, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:00.004988+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:00.005183+00', 0, '{"timezone-id":null}'), +(6550, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:00.005212+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:00.047469+00', 42, '{"updated-tables":0,"total-tables":26}'), +(6551, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:00.047529+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.952004+00', 7904, '{"total-fields":302,"updated-fields":0}'), +(6552, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.952061+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.954133+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6553, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.954164+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.954299+00', 0, NULL), +(6554, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.964379+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:08.039335+00', 74, NULL), +(6555, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:07.96439+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:08.004733+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6556, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:08.004907+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:08.023654+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(6557, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:08.024453+00', TIMESTAMP WITH TIME ZONE '2022-12-26 20:56:08.03931+00', 14, '{"total-tables":26,"tables-classified":0}'), +(6558, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.035+00', 26, NULL), +(6559, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.026+00', 12, NULL), +(6560, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.005025+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.693204+00', 688, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6561, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.00504+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.109712+00', 104, '{"deleted":0}'), +(6562, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.109777+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:00:00.693178+00', 583, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(6563, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.004935+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.120047+00', 115, NULL), +(6564, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.00495+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.007461+00', 2, '{"timezone-id":"UTC"}'), +(6565, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.007496+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.011881+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6566, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.011906+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.088774+00', 76, '{"total-fields":71,"updated-fields":0}'), +(6567, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.088806+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.093646+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6568, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.093674+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.120035+00', 26, NULL), +(6569, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.125852+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.137391+00', 11, NULL), +(6570, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.125861+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.133362+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6571, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.13339+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.135393+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6572, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.13542+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:19:00.137374+00', 1, '{"total-tables":8,"tables-classified":0}'), +(6573, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:00.006739+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.22709+00', 8220, NULL), +(6574, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:00.006756+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:00.007147+00', 0, '{"timezone-id":null}'), +(6575, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:00.007207+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:00.073441+00', 66, '{"updated-tables":0,"total-tables":26}'), +(6576, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:00.073487+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.224881+00', 8151, '{"total-fields":302,"updated-fields":0}'), +(6577, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.224935+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.22692+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6578, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.226947+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.227081+00', 0, NULL), +(6579, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.240292+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.305705+00', 65, NULL), +(6580, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.240305+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.27484+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6581, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.274892+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.292415+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(6582, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.292468+00', TIMESTAMP WITH TIME ZONE '2022-12-26 21:56:08.305674+00', 13, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6583, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 22:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:00:00.003+00', 2, NULL), +(6584, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 22:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:00:00.016+00', 12, NULL), +(6585, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.005783+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.150934+00', 145, NULL), +(6586, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.005799+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.008718+00', 2, '{"timezone-id":"UTC"}'), +(6587, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.008752+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.017274+00', 8, '{"updated-tables":0,"total-tables":8}'), +(6588, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.017313+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.119294+00', 101, '{"total-fields":71,"updated-fields":0}'), +(6589, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.119331+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.124222+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6590, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.124253+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.15092+00', 26, NULL), +(6591, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.159256+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.172164+00', 12, NULL), +(6592, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.159267+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.167336+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6593, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.167367+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.169318+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(6594, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.169344+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:19:00.172146+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6595, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:00.004891+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.232643+00', 7227, NULL), +(6596, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:00.004907+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:00.005082+00', 0, '{"timezone-id":null}'), +(6597, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:00.005109+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:00.08539+00', 80, '{"updated-tables":0,"total-tables":26}'), +(6598, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:00.085435+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.229661+00', 7144, '{"total-fields":302,"updated-fields":0}'), +(6599, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.229761+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.232209+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6600, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.232247+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.232628+00', 0, NULL), +(6601, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.25055+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.350506+00', 99, NULL), +(6602, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.250565+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.318279+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6603, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.318363+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.326799+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(6604, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.326842+00', TIMESTAMP WITH TIME ZONE '2022-12-26 22:56:07.350468+00', 23, '{"total-tables":26,"tables-classified":0}'), +(6605, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 23:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:00:00.013+00', 7, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6606, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-26 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:00:00.013+00', 10, NULL), +(6607, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.008062+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.17456+00', 166, NULL), +(6608, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.008077+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.021908+00', 13, '{"timezone-id":"UTC"}'), +(6609, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.021953+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.035816+00', 13, '{"updated-tables":0,"total-tables":8}'), +(6610, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.035854+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.136987+00', 101, '{"total-fields":71,"updated-fields":0}'), +(6611, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.137022+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.142817+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6612, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.142847+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.174545+00', 31, NULL), +(6613, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.182043+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.194696+00', 12, NULL), +(6614, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.182055+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.190087+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6615, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.190119+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.192376+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6616, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.192404+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:19:00.194677+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6617, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:00.011937+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.066601+00', 8054, NULL), +(6618, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:00.011957+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:00.012145+00', 0, '{"timezone-id":null}'), +(6619, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:00.012174+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:00.047939+00', 35, '{"updated-tables":0,"total-tables":26}'), +(6620, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:00.048023+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.063532+00', 8015, '{"total-fields":302,"updated-fields":0}'), +(6621, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.063595+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.066306+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6622, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.066339+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.066586+00', 0, NULL), +(6623, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.07698+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.185765+00', 108, NULL), +(6624, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.076996+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.143782+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6625, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.143878+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.165001+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(6626, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.165132+00', TIMESTAMP WITH TIME ZONE '2022-12-26 23:56:08.18573+00', 20, '{"total-tables":26,"tables-classified":0}'), +(6627, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 00:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:00:00.02+00', 11, NULL), +(6628, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 00:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:00:00.021+00', 17, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6629, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.004376+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.379054+00', 374, NULL), +(6630, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.004393+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.07854+00', 74, '{"timezone-id":"UTC"}'), +(6631, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.078621+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.083377+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6632, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.083411+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.214265+00', 130, '{"total-fields":71,"updated-fields":0}'), +(6633, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.21432+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.272594+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6634, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.272641+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.379032+00', 106, NULL), +(6635, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.399509+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.425165+00', 25, NULL), +(6636, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.399524+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.419066+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6637, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.419115+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.422861+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(6638, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.422898+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:19:00.425146+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6639, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:00.012297+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.869675+00', 5857, NULL), +(6640, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:00.012316+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:00.012669+00', 0, '{"timezone-id":null}'), +(6641, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:00.012707+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:00.076813+00', 64, '{"updated-tables":0,"total-tables":26}'), +(6642, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:00.07687+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.867677+00', 5790, '{"total-fields":302,"updated-fields":0}'), +(6643, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.867733+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.869511+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6644, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.86954+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.869668+00', 0, NULL), +(6645, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.878768+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.918229+00', 39, NULL), +(6646, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.878778+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.903366+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6647, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.903405+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.90925+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(6648, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.909281+00', TIMESTAMP WITH TIME ZONE '2022-12-27 00:56:05.91821+00', 8, '{"total-tables":26,"tables-classified":0}'), +(6649, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 01:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:00:00.009+00', 6, NULL), +(6650, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 01:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:00:00.009+00', 8, NULL), +(6651, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.00757+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.284828+00', 277, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6652, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.007586+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.01276+00', 5, '{"timezone-id":"UTC"}'), +(6653, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.012803+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.017557+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6654, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.017595+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.217972+00', 200, '{"total-fields":71,"updated-fields":0}'), +(6655, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.218013+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.228265+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6656, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.22831+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.284807+00', 56, NULL), +(6657, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.298998+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.327949+00', 28, NULL), +(6658, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.299013+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.315875+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6659, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.315928+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.322385+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6660, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.322448+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:19:00.327911+00', 5, '{"total-tables":8,"tables-classified":0}'), +(6661, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:00.005122+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.474719+00', 7469, NULL), +(6662, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:00.005136+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:00.005319+00', 0, '{"timezone-id":null}'), +(6663, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:00.005343+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:00.082698+00', 77, '{"updated-tables":0,"total-tables":26}'), +(6664, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:00.082732+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.464367+00', 7381, '{"total-fields":302,"updated-fields":0}'), +(6665, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.464416+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.474537+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6666, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.474573+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.474711+00', 0, NULL), +(6667, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.502858+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.657018+00', 154, NULL), +(6668, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.502872+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.597182+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6669, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.597235+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.627794+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(6670, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.627852+00', TIMESTAMP WITH TIME ZONE '2022-12-27 01:56:07.65698+00', 29, '{"total-tables":26,"tables-classified":0}'), +(6671, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 02:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:00:00.01+00', 7, NULL), +(6672, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 02:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:00:00.01+00', 8, NULL), +(6673, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.004515+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.123937+00', 119, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6674, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.004531+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.008351+00', 3, '{"timezone-id":"UTC"}'), +(6675, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.008387+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.012631+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6676, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.012657+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.090089+00', 77, '{"total-fields":71,"updated-fields":0}'), +(6677, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.090215+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.095574+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6678, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.095669+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.123925+00', 28, NULL), +(6679, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.130326+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.143328+00', 13, NULL), +(6680, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.130335+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.138279+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6681, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.138308+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.140873+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6682, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.140901+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:19:00.143286+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6683, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:00.005116+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.112226+00', 7107, NULL), +(6684, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:00.005134+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:00.005307+00', 0, '{"timezone-id":null}'), +(6685, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:00.005345+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:00.098758+00', 93, '{"updated-tables":0,"total-tables":26}'), +(6686, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:00.098993+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.104746+00', 7005, '{"total-fields":302,"updated-fields":0}'), +(6687, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.104793+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.112057+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6688, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.112089+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.112218+00', 0, NULL), +(6689, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.139193+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.271802+00', 132, NULL), +(6690, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.139206+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.189729+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6691, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.189775+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.207538+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(6692, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.207585+00', TIMESTAMP WITH TIME ZONE '2022-12-27 02:56:07.271747+00', 64, '{"total-tables":26,"tables-classified":0}'), +(6693, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:00:00.009+00', 6, NULL), +(6694, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:00:00.01+00', 6, NULL), +(6695, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.004151+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.147116+00', 142, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6696, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.004166+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.009311+00', 5, '{"timezone-id":"UTC"}'), +(6697, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.00935+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.015443+00', 6, '{"updated-tables":0,"total-tables":8}'), +(6698, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.015478+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.116792+00', 101, '{"total-fields":71,"updated-fields":0}'), +(6699, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.116833+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.12199+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6700, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.122024+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.147096+00', 25, NULL), +(6701, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.153088+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.165932+00', 12, NULL), +(6702, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.1531+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.160836+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6703, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.160869+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.163536+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6704, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.163566+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:19:00.165912+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6705, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:00.011963+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.081072+00', 9069, NULL), +(6706, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:00.011982+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:00.012212+00', 0, '{"timezone-id":null}'), +(6707, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:00.012245+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:00.067015+00', 54, '{"updated-tables":0,"total-tables":26}'), +(6708, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:00.067061+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.079011+00', 9011, '{"total-fields":302,"updated-fields":0}'), +(6709, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.079053+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.080919+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6710, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.080947+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.081065+00', 0, NULL), +(6711, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.101315+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.144517+00', 43, NULL), +(6712, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.101328+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.127121+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6713, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.127162+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.133097+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(6714, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.133131+00', TIMESTAMP WITH TIME ZONE '2022-12-27 03:56:09.144441+00', 11, '{"total-tables":26,"tables-classified":0}'), +(6715, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 04:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:00:00.003+00', 2, NULL), +(6716, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:00:00.01+00', 6, NULL), +(6717, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.019081+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.199272+00', 180, NULL), +(6718, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.019097+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.022824+00', 3, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6719, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.022862+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.02695+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6720, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.026986+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.155868+00', 128, '{"total-fields":71,"updated-fields":0}'), +(6721, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.155938+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.162172+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6722, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.162235+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.19917+00', 36, NULL), +(6723, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.210529+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.22876+00', 18, NULL), +(6724, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.210542+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.221462+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6725, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.221531+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.226161+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(6726, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.226198+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:19:00.228742+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6727, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:00.010391+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.921749+00', 6911, NULL), +(6728, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:00.010412+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:00.010673+00', 0, '{"timezone-id":null}'), +(6729, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:00.010709+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:00.05723+00', 46, '{"updated-tables":0,"total-tables":26}'), +(6730, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:00.057313+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.919071+00', 6861, '{"total-fields":302,"updated-fields":0}'), +(6731, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.919109+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.921373+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6732, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.921432+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.921731+00', 0, NULL), +(6733, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.930848+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.972111+00', 41, NULL), +(6734, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.930857+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.95585+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6735, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.955886+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.962395+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6736, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.962424+00', TIMESTAMP WITH TIME ZONE '2022-12-27 04:56:06.972094+00', 9, '{"total-tables":26,"tables-classified":0}'), +(6737, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:00:00.009+00', 6, NULL), +(6738, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:00:00.01+00', 7, NULL), +(6739, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.006469+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.211274+00', 204, NULL), +(6740, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.006486+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.010704+00', 4, '{"timezone-id":"UTC"}'), +(6741, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.010743+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.017479+00', 6, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6742, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.017508+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.159192+00', 141, '{"total-fields":71,"updated-fields":0}'), +(6743, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.159242+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.164168+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6744, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.164202+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.211244+00', 47, NULL), +(6745, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.219247+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.238468+00', 19, NULL), +(6746, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.219261+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.231795+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6747, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.231838+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.235549+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(6748, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.235583+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:19:00.238448+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6749, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:00.00554+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.862843+00', 7857, NULL), +(6750, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:00.005556+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:00.005731+00', 0, '{"timezone-id":null}'), +(6751, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:00.005758+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:00.035181+00', 29, '{"updated-tables":0,"total-tables":26}'), +(6752, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:00.03522+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.857713+00', 7822, '{"total-fields":302,"updated-fields":0}'), +(6753, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.857796+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.861739+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6754, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.861858+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.862676+00', 0, NULL), +(6755, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.880232+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.973895+00', 93, NULL), +(6756, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.880246+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.945734+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6757, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.945805+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.954649+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(6758, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.954722+00', TIMESTAMP WITH TIME ZONE '2022-12-27 05:56:07.973817+00', 19, '{"total-tables":26,"tables-classified":0}'), +(6759, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:00:00.006+00', 2, NULL), +(6760, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 06:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:00:00.015+00', 9, NULL), +(6761, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.003768+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.15347+00', 149, NULL), +(6762, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.003781+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.011148+00', 7, '{"timezone-id":"UTC"}'), +(6763, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.011183+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.0178+00', 6, '{"updated-tables":0,"total-tables":8}'), +(6764, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.017844+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.123159+00', 105, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6765, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.123187+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.127764+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6766, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.127792+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.153457+00', 25, NULL), +(6767, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.158972+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.170208+00', 11, NULL), +(6768, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.158983+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.166318+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6769, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.166347+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.168241+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(6770, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.168267+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:19:00.170192+00', 1, '{"total-tables":8,"tables-classified":0}'), +(6771, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:00.008756+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.337086+00', 9328, NULL), +(6772, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:00.008772+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:00.00897+00', 0, '{"timezone-id":null}'), +(6773, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:00.008998+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:00.047619+00', 38, '{"updated-tables":0,"total-tables":26}'), +(6774, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:00.04766+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.334395+00', 9286, '{"total-fields":302,"updated-fields":0}'), +(6775, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.334457+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.336767+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6776, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.336801+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.337071+00', 0, NULL), +(6777, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.345436+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.449093+00', 103, NULL), +(6778, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.345446+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.370585+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6779, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.370619+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.377541+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6780, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.377573+00', TIMESTAMP WITH TIME ZONE '2022-12-27 06:56:09.449004+00', 71, '{"total-tables":26,"tables-classified":0}'), +(6781, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 07:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:00:00.009+00', 1, NULL), +(6782, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 07:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:00:00.017+00', 7, NULL), +(6783, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.004333+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.132874+00', 128, NULL), +(6784, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.004349+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.00852+00', 4, '{"timezone-id":"UTC"}'), +(6785, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.008653+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.013055+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6786, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.013109+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.101756+00', 88, '{"total-fields":71,"updated-fields":0}'), +(6787, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.101787+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.107324+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6788, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.107353+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.132863+00', 25, NULL), +(6789, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.138958+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.151719+00', 12, NULL), +(6790, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.138967+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.146606+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6791, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.146644+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.148978+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6792, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.149003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:19:00.151608+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6793, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:00.005717+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.38433+00', 7378, NULL), +(6794, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:00.005733+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:00.005933+00', 0, '{"timezone-id":null}'), +(6795, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:00.00596+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:00.052009+00', 46, '{"updated-tables":0,"total-tables":26}'), +(6796, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:00.052159+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.379978+00', 7327, '{"total-fields":302,"updated-fields":0}'), +(6797, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.380026+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.383921+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6798, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.383984+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.384314+00', 0, NULL), +(6799, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.394043+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.44489+00', 50, NULL), +(6800, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.394053+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.426006+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6801, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.426044+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.434017+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(6802, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.434049+00', TIMESTAMP WITH TIME ZONE '2022-12-27 07:56:07.44487+00', 10, '{"total-tables":26,"tables-classified":0}'), +(6803, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 08:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:00:00.017+00', 13, NULL), +(6804, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 08:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:00:00.017+00', 11, NULL), +(6805, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.003888+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.126435+00', 122, NULL), +(6806, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.003903+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.008062+00', 4, '{"timezone-id":"UTC"}'), +(6807, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.008101+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.012195+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6808, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.01222+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.094906+00', 82, '{"total-fields":71,"updated-fields":0}'), +(6809, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.094948+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.100631+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6810, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.100661+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.126423+00', 25, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6811, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.132273+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.191601+00', 59, NULL), +(6812, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.132282+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.187186+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6813, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.187231+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.189415+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6814, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.189447+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:19:00.191583+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6815, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:00.005683+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.918415+00', 6912, NULL), +(6816, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:00.005699+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:00.005918+00', 0, '{"timezone-id":null}'), +(6817, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:00.005947+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:00.077982+00', 72, '{"updated-tables":0,"total-tables":26}'), +(6818, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:00.078029+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.914998+00', 6836, '{"total-fields":302,"updated-fields":0}'), +(6819, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.915042+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.918091+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6820, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.918128+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.9184+00', 0, NULL), +(6821, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.925951+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.982053+00', 56, NULL), +(6822, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.925962+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.954389+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6823, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.954454+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.960671+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6824, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.96073+00', TIMESTAMP WITH TIME ZONE '2022-12-27 08:56:06.981968+00', 21, '{"total-tables":26,"tables-classified":0}'), +(6825, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:00:00.005+00', 1, NULL), +(6826, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 09:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:00:00.012+00', 6, NULL), +(6827, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.004516+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.127118+00', 122, NULL), +(6828, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.004531+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.00829+00', 3, '{"timezone-id":"UTC"}'), +(6829, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.008328+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.012124+00', 3, '{"updated-tables":0,"total-tables":8}'), +(6830, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.012161+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.09242+00', 80, '{"total-fields":71,"updated-fields":0}'), +(6831, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.092456+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.097596+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6832, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.097627+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.127105+00', 29, NULL), +(6833, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.133645+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.146416+00', 12, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6834, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.133654+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.141389+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6835, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.141419+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.143689+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6836, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.143716+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:19:00.146398+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6837, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:00.00562+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.629117+00', 7623, NULL), +(6838, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:00.005638+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:00.00674+00', 1, '{"timezone-id":null}'), +(6839, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:00.006784+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:00.069742+00', 62, '{"updated-tables":0,"total-tables":26}'), +(6840, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:00.069804+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.625344+00', 7555, '{"total-fields":302,"updated-fields":0}'), +(6841, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.625399+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.6287+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6842, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.628732+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.629101+00', 0, NULL), +(6843, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.641796+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.752103+00', 110, NULL), +(6844, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.641807+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.695634+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6845, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.695711+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.721233+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(6846, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.721478+00', TIMESTAMP WITH TIME ZONE '2022-12-27 09:56:07.752066+00', 30, '{"total-tables":26,"tables-classified":0}'), +(6847, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:00:00.005+00', 1, NULL), +(6848, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 10:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:00:00.022+00', 8, NULL), +(6849, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.006269+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.23402+00', 227, NULL), +(6850, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.006285+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.016329+00', 10, '{"timezone-id":"UTC"}'), +(6851, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.016372+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.031011+00', 14, '{"updated-tables":0,"total-tables":8}'), +(6852, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.031073+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.163378+00', 132, '{"total-fields":71,"updated-fields":0}'), +(6853, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.163418+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.190056+00', 26, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6854, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.190103+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.234+00', 43, NULL), +(6855, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.241598+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.255674+00', 14, NULL), +(6856, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.241611+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.249405+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6857, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.249441+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.253288+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(6858, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.253319+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:19:00.255656+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6859, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:00.010545+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.469783+00', 6459, NULL), +(6860, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:00.010563+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:00.010778+00', 0, '{"timezone-id":null}'), +(6861, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:00.010807+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:00.130744+00', 119, '{"updated-tables":0,"total-tables":26}'), +(6862, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:00.130872+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.467179+00', 6336, '{"total-fields":302,"updated-fields":0}'), +(6863, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.467226+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.469418+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6864, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.469445+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.469711+00', 0, NULL), +(6865, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.478784+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.523687+00', 44, NULL), +(6866, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.478795+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.504026+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6867, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.504063+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.510475+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6868, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.510506+00', TIMESTAMP WITH TIME ZONE '2022-12-27 10:56:06.523598+00', 13, '{"total-tables":26,"tables-classified":0}'), +(6869, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 11:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:00:00.012+00', 1, NULL), +(6870, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 11:00:00.025+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:00:00.032+00', 7, NULL), +(6871, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.014371+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.320184+00', 305, NULL), +(6872, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.014388+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.022918+00', 8, '{"timezone-id":"UTC"}'), +(6873, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.022967+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.027813+00', 4, '{"updated-tables":0,"total-tables":8}'), +(6874, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.027868+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.25637+00', 228, '{"total-fields":71,"updated-fields":0}'), +(6875, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.256525+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.273317+00', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6876, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.27336+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.320151+00', 46, NULL), +(6877, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.328329+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.346801+00', 18, NULL), +(6878, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.328342+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.340723+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6879, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.340762+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.343635+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6880, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.343664+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:19:00.346752+00', 3, '{"total-tables":8,"tables-classified":0}'), +(6881, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:00.006869+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.855615+00', 8848, NULL), +(6882, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:00.006885+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:00.007078+00', 0, '{"timezone-id":null}'), +(6883, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:00.007106+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:00.078566+00', 71, '{"updated-tables":0,"total-tables":26}'), +(6884, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:00.078611+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.853251+00', 8774, '{"total-fields":302,"updated-fields":0}'), +(6885, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.853327+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.855235+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6886, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.855296+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.85558+00', 0, NULL), +(6887, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.874943+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.952077+00', 77, NULL), +(6888, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.874956+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.906469+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6889, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.90652+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.926977+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(6890, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.927034+00', TIMESTAMP WITH TIME ZONE '2022-12-27 11:56:08.952036+00', 25, '{"total-tables":26,"tables-classified":0}'), +(6891, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 12:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:00:00.006+00', 1, NULL), +(6892, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 12:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:00:00.014+00', 7, NULL), +(6893, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.007861+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.188147+00', 180, NULL), +(6894, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.007877+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.019456+00', 11, '{"timezone-id":"UTC"}'), +(6895, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.019504+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.023331+00', 3, '{"updated-tables":0,"total-tables":8}'), +(6896, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.02336+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.157337+00', 133, '{"total-fields":71,"updated-fields":0}'), +(6897, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.157376+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.162363+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6898, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.162396+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.18813+00', 25, NULL), +(6899, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.19492+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.212173+00', 17, NULL), +(6900, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.194932+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.204641+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6901, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.20468+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.206815+00', 2, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6902, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.206844+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:19:00.212149+00', 5, '{"total-tables":8,"tables-classified":0}'), +(6903, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:00.012103+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.807957+00', 8795, NULL), +(6904, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:00.012124+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:00.012464+00', 0, '{"timezone-id":null}'), +(6905, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:00.012507+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:00.054839+00', 42, '{"updated-tables":0,"total-tables":26}'), +(6906, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:00.054944+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.805451+00', 8750, '{"total-fields":302,"updated-fields":0}'), +(6907, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.805544+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.807568+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6908, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.807601+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.807941+00', 0, NULL), +(6909, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.81706+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.866989+00', 49, NULL), +(6910, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.81707+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.843758+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6911, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.8438+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.855311+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(6912, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.855356+00', TIMESTAMP WITH TIME ZONE '2022-12-27 12:56:08.866962+00', 11, '{"total-tables":26,"tables-classified":0}'), +(6913, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.005+00', 1, NULL), +(6914, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.043+00', 36, NULL), +(6915, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.008947+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:11.133695+00', 11124, NULL), +(6916, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.008962+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.45061+00', 441, '{"deleted":0}'), +(6917, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:00.45066+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:00:11.133666+00', 10683, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(6918, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.00381+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.154341+00', 150, NULL), +(6919, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.003826+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.009574+00', 5, '{"timezone-id":"UTC"}'), +(6920, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.010031+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.015904+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6921, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.015938+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.112679+00', 96, '{"total-fields":71,"updated-fields":0}'), +(6922, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.112753+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.118082+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6923, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.118142+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.154324+00', 36, NULL), +(6924, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.1609+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.178217+00', 17, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6925, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.160913+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.172927+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6926, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.17296+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.17556+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6927, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.17565+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:19:00.178197+00', 2, '{"total-tables":8,"tables-classified":0}'), +(6928, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:00.00767+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.753967+00', 6746, NULL), +(6929, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:00.007688+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:00.007872+00', 0, '{"timezone-id":null}'), +(6930, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:00.007901+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:00.073716+00', 65, '{"updated-tables":0,"total-tables":26}'), +(6931, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:00.073758+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.751934+00', 6678, '{"total-fields":302,"updated-fields":0}'), +(6932, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.751976+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.753777+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6933, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.753806+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.753958+00', 0, NULL), +(6934, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.768336+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.867415+00', 99, NULL), +(6935, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.768347+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.832659+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6936, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.83272+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.843218+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(6937, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.843272+00', TIMESTAMP WITH TIME ZONE '2022-12-27 13:56:06.867383+00', 24, '{"total-tables":26,"tables-classified":0}'), +(6938, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 14:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:00:00.006+00', 1, NULL), +(6939, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 14:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:00:00.018+00', 11, NULL), +(6940, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.004789+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.26741+00', 262, NULL), +(6941, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.004805+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.007233+00', 2, '{"timezone-id":"UTC"}'), +(6942, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.007268+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.024328+00', 17, '{"updated-tables":0,"total-tables":8}'), +(6943, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.024373+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.158299+00', 133, '{"total-fields":71,"updated-fields":0}'), +(6944, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.158345+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.205648+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6945, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.205704+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.267389+00', 61, NULL), +(6946, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.283399+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.475323+00', 191, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6947, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.283414+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.299725+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6948, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.299774+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.302054+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(6949, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.302083+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:19:00.475277+00', 173, '{"total-tables":8,"tables-classified":0}'), +(6950, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:00.01318+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.376692+00', 7363, NULL), +(6951, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:00.013199+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:00.013424+00', 0, '{"timezone-id":null}'), +(6952, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:00.013481+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:00.038915+00', 25, '{"updated-tables":0,"total-tables":26}'), +(6953, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:00.038952+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.373461+00', 7334, '{"total-fields":302,"updated-fields":0}'), +(6954, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.373519+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.376535+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6955, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.376564+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.376684+00', 0, NULL), +(6956, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.389026+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.457373+00', 68, NULL), +(6957, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.389087+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.430698+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6958, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.430752+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.440735+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(6959, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.440797+00', TIMESTAMP WITH TIME ZONE '2022-12-27 14:56:07.457337+00', 16, '{"total-tables":26,"tables-classified":0}'), +(6960, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:00:00.003+00', 1, NULL), +(6961, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 15:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:00:00.01+00', 7, NULL), +(6962, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.005809+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.158285+00', 152, NULL), +(6963, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.005842+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.013691+00', 7, '{"timezone-id":"UTC"}'), +(6964, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.013782+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.019508+00', 5, '{"updated-tables":0,"total-tables":8}'), +(6965, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.01964+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.119801+00', 100, '{"total-fields":71,"updated-fields":0}'), +(6966, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.120032+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.12551+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6967, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.125632+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.158265+00', 32, NULL), +(6968, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.165135+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.194029+00', 28, NULL), +(6969, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.165148+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.187149+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6970, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.187287+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.190672+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(6971, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.190779+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:19:00.194009+00', 3, '{"total-tables":8,"tables-classified":0}'), +(6972, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:00.005042+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.033061+00', 6028, NULL), +(6973, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:00.005059+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:00.005231+00', 0, '{"timezone-id":null}'), +(6974, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:00.005266+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:00.044809+00', 39, '{"updated-tables":0,"total-tables":26}'), +(6975, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:00.044851+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.030756+00', 5985, '{"total-fields":302,"updated-fields":0}'), +(6976, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.030809+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.032775+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6977, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.032805+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.033047+00', 0, NULL), +(6978, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.046925+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.089577+00', 42, NULL), +(6979, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.046937+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.073382+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6980, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.073429+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.079834+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(6981, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.079871+00', TIMESTAMP WITH TIME ZONE '2022-12-27 15:56:06.089558+00', 9, '{"total-tables":26,"tables-classified":0}'), +(6982, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 16:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:00:00.004+00', 2, NULL), +(6983, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 16:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:00:00.04+00', 35, NULL), +(6984, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.004399+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.240248+00', 235, NULL), +(6985, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.004414+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.010354+00', 5, '{"timezone-id":"UTC"}'), +(6986, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.010547+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.02375+00', 13, '{"updated-tables":0,"total-tables":8}'), +(6987, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.023889+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.208775+00', 184, '{"total-fields":71,"updated-fields":0}'), +(6988, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.208812+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.213778+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(6989, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.213808+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.240235+00', 26, NULL), +(6990, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.246129+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.259702+00', 13, NULL), +(6991, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.246141+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.253942+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(6992, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.253972+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.256334+00', 2, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(6993, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.256424+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:19:00.259682+00', 3, '{"total-tables":8,"tables-classified":0}'), +(6994, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:00.008052+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.014609+00', 10006, NULL), +(6995, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:00.008068+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:00.008257+00', 0, '{"timezone-id":null}'), +(6996, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:00.008283+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:00.079492+00', 71, '{"updated-tables":0,"total-tables":26}'), +(6997, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:00.079565+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.012581+00', 9933, '{"total-fields":302,"updated-fields":0}'), +(6998, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.012629+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.014448+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(6999, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.014475+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.014601+00', 0, NULL), +(7000, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.024305+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.083486+00', 59, NULL), +(7001, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.024316+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.059452+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7002, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.059499+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.073407+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(7003, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.073445+00', TIMESTAMP WITH TIME ZONE '2022-12-27 16:56:10.083465+00', 10, '{"total-tables":26,"tables-classified":0}'), +(7004, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 17:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:00:00.003+00', 1, NULL), +(7005, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:00:00.027+00', 23, NULL), +(7006, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.003799+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.129403+00', 125, NULL), +(7007, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.003816+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.007279+00', 3, '{"timezone-id":"UTC"}'), +(7008, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.007318+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.011683+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7009, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.011711+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.094039+00', 82, '{"total-fields":71,"updated-fields":0}'), +(7010, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.094078+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.099718+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7011, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.099755+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.129388+00', 29, NULL), +(7012, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.135785+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.150272+00', 14, NULL), +(7013, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.135796+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.143672+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7014, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.143704+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.147202+00', 3, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7015, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.147229+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:19:00.150253+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7016, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:00.007028+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.504826+00', 7497, NULL), +(7017, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:00.007044+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:00.007215+00', 0, '{"timezone-id":null}'), +(7018, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:00.007241+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:00.044272+00', 37, '{"updated-tables":0,"total-tables":26}'), +(7019, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:00.044411+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.501775+00', 7457, '{"total-fields":302,"updated-fields":0}'), +(7020, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.501888+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.504419+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7021, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.504453+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.504811+00', 0, NULL), +(7022, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.516379+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.573294+00', 56, NULL), +(7023, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.51639+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.548848+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7024, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.548895+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.558979+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(7025, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.559047+00', TIMESTAMP WITH TIME ZONE '2022-12-27 17:56:07.573259+00', 14, '{"total-tables":26,"tables-classified":0}'), +(7026, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 18:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:00:00.006+00', 1, NULL), +(7027, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 18:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:00:00.017+00', 9, NULL), +(7028, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.004414+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.435222+00', 430, NULL), +(7029, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.004432+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.017253+00', 12, '{"timezone-id":"UTC"}'), +(7030, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.017329+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.023495+00', 6, '{"updated-tables":0,"total-tables":8}'), +(7031, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.023535+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.258782+00', 235, '{"total-fields":71,"updated-fields":0}'), +(7032, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.258824+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.269046+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7033, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.269117+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.435201+00', 166, NULL), +(7034, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.446321+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.474961+00', 28, NULL), +(7035, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.446336+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.464337+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7036, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.46479+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.469393+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7037, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.469578+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:19:00.474815+00', 5, '{"total-tables":8,"tables-classified":0}'), +(7038, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:00.005393+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.589253+00', 9583, NULL), +(7039, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:00.005411+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:00.005593+00', 0, '{"timezone-id":null}'), +(7040, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:00.005619+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:00.06666+00', 61, '{"updated-tables":0,"total-tables":26}'), +(7041, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:00.066768+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.58724+00', 9520, '{"total-fields":302,"updated-fields":0}'), +(7042, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.587283+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.589087+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7043, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.589118+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.589245+00', 0, NULL), +(7044, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.603562+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.65762+00', 54, NULL), +(7045, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.603573+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.634922+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7046, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.634969+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.643822+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(7047, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.643863+00', TIMESTAMP WITH TIME ZONE '2022-12-27 18:56:09.657594+00', 13, '{"total-tables":26,"tables-classified":0}'), +(7048, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 19:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:00:00.01+00', 6, NULL), +(7049, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 19:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:00:00.011+00', 7, NULL), +(7050, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.00522+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.134601+00', 129, NULL), +(7051, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.005235+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.008919+00', 3, '{"timezone-id":"UTC"}'), +(7052, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.008958+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.012854+00', 3, '{"updated-tables":0,"total-tables":8}'), +(7053, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.012897+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.098554+00', 85, '{"total-fields":71,"updated-fields":0}'), +(7054, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.09859+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.10374+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7055, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.103772+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.134587+00', 30, NULL), +(7056, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.141616+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.155849+00', 14, NULL), +(7057, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.141626+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.151025+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7058, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.151057+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.153446+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7059, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.153474+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:19:00.15583+00', 2, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7060, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:00.012269+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.087608+00', 8075, NULL), +(7061, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:00.01229+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:00.012502+00', 0, '{"timezone-id":null}'), +(7062, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:00.012533+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:00.071425+00', 58, '{"updated-tables":0,"total-tables":26}'), +(7063, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:00.071467+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.085132+00', 8013, '{"total-fields":302,"updated-fields":0}'), +(7064, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.085213+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.087226+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7065, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.087293+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.087575+00', 0, NULL), +(7066, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.095969+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.138157+00', 42, NULL), +(7067, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.095978+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.121687+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7068, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.121719+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.128324+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(7069, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.128352+00', TIMESTAMP WITH TIME ZONE '2022-12-27 19:56:08.138141+00', 9, '{"total-tables":26,"tables-classified":0}'), +(7070, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 20:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:00:00.003+00', 1, NULL), +(7071, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:00:00.01+00', 6, NULL), +(7072, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.004703+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.197682+00', 192, NULL), +(7073, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.004719+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.023825+00', 19, '{"timezone-id":"UTC"}'), +(7074, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.023869+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.032506+00', 8, '{"updated-tables":0,"total-tables":8}'), +(7075, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.032543+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.143408+00', 110, '{"total-fields":71,"updated-fields":0}'), +(7076, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.143447+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.151336+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7077, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.151371+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.197662+00', 46, NULL), +(7078, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.203693+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.215721+00', 12, NULL), +(7079, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.203705+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.211666+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7080, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.211702+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.21369+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(7081, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.213716+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:19:00.215704+00', 1, '{"total-tables":8,"tables-classified":0}'), +(7082, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:00.006002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.888647+00', 7882, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7083, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:00.006019+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:00.006208+00', 0, '{"timezone-id":null}'), +(7084, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:00.006245+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:00.049014+00', 42, '{"updated-tables":0,"total-tables":26}'), +(7085, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:00.049088+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.886466+00', 7837, '{"total-fields":302,"updated-fields":0}'), +(7086, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.88651+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.888479+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7087, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.88851+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.888639+00', 0, NULL), +(7088, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.902638+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.974544+00', 71, NULL), +(7089, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.90265+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.953352+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7090, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.953467+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.962317+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(7091, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.962352+00', TIMESTAMP WITH TIME ZONE '2022-12-27 20:56:07.974519+00', 12, '{"total-tables":26,"tables-classified":0}'), +(7092, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.008+00', 1, NULL), +(7093, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.022+00', 14, NULL), +(7094, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.007157+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.411821+00', 404, NULL), +(7095, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.007173+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.068189+00', 61, '{"deleted":0}'), +(7096, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.068233+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:00:00.411792+00', 343, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(7097, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.007609+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.15395+00', 146, NULL), +(7098, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.007625+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.010947+00', 3, '{"timezone-id":"UTC"}'), +(7099, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.010985+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.014697+00', 3, '{"updated-tables":0,"total-tables":8}'), +(7100, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.014724+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.109611+00', 94, '{"total-fields":71,"updated-fields":0}'), +(7101, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.109648+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.114862+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7102, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.114894+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.15393+00', 39, NULL), +(7103, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.160448+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.173838+00', 13, NULL), +(7104, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.160462+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.169206+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7105, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.169245+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.171649+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7106, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.171679+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:19:00.173806+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7107, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:00.0048+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.704486+00', 8699, NULL), +(7108, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:00.004817+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:00.004997+00', 0, '{"timezone-id":null}'), +(7109, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:00.005025+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:00.050422+00', 45, '{"updated-tables":0,"total-tables":26}'), +(7110, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:00.050501+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.695354+00', 8644, '{"total-fields":302,"updated-fields":0}'), +(7111, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.6954+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.701788+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7112, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.701888+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.704466+00', 2, NULL), +(7113, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.731853+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:09.018541+00', 286, NULL), +(7114, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.731871+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.902566+00', 170, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7115, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.902626+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.952921+00', 50, '{"fields-classified":0,"fields-failed":0}'), +(7116, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:08.952997+00', TIMESTAMP WITH TIME ZONE '2022-12-27 21:56:09.018488+00', 65, '{"total-tables":26,"tables-classified":0}'), +(7117, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 22:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:00:00.01+00', 8, NULL), +(7118, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 22:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:00:00.01+00', 7, NULL), +(7119, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.004607+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.125957+00', 121, NULL), +(7120, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.004626+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.006968+00', 2, '{"timezone-id":"UTC"}'), +(7121, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.007005+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.014435+00', 7, '{"updated-tables":0,"total-tables":8}'), +(7122, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.014463+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.092664+00', 78, '{"total-fields":71,"updated-fields":0}'), +(7123, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.092699+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.097661+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7124, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.097692+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.125939+00', 28, NULL), +(7125, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.132631+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.148044+00', 15, NULL), +(7126, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.132644+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.140813+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7127, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.140849+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.143632+00', 2, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7128, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.143663+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:19:00.147999+00', 4, '{"total-tables":8,"tables-classified":0}'), +(7129, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:00.006995+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.583512+00', 8576, NULL), +(7130, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:00.007037+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:00.007414+00', 0, '{"timezone-id":null}'), +(7131, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:00.007477+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:00.040046+00', 32, '{"updated-tables":0,"total-tables":26}'), +(7132, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:00.040087+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.581019+00', 8540, '{"total-fields":302,"updated-fields":0}'), +(7133, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.581102+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.583144+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7134, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.583199+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.583479+00', 0, NULL), +(7135, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.591557+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.687483+00', 95, NULL), +(7136, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.591565+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.669446+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7137, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.669527+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.676442+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(7138, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.676505+00', TIMESTAMP WITH TIME ZONE '2022-12-27 22:56:08.687435+00', 10, '{"total-tables":26,"tables-classified":0}'), +(7139, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 23:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:00:00.004+00', 2, NULL), +(7140, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-27 23:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:00:00.013+00', 7, NULL), +(7141, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.004689+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.208522+00', 203, NULL), +(7142, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.004706+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.011645+00', 6, '{"timezone-id":"UTC"}'), +(7143, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.011686+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.020633+00', 8, '{"updated-tables":0,"total-tables":8}'), +(7144, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.020686+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.139027+00', 118, '{"total-fields":71,"updated-fields":0}'), +(7145, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.139071+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.146728+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7146, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.14677+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.208401+00', 61, NULL), +(7147, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.21893+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.235435+00', 16, NULL), +(7148, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.218944+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.229904+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7149, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.229948+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.232644+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7150, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.232679+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:19:00.235414+00', 2, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7151, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:00.011978+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.252046+00', 8240, NULL), +(7152, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:00.011995+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:00.012189+00', 0, '{"timezone-id":null}'), +(7153, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:00.012217+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:00.072601+00', 60, '{"updated-tables":0,"total-tables":26}'), +(7154, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:00.072831+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.249521+00', 8176, '{"total-fields":302,"updated-fields":0}'), +(7155, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.2496+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.251672+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7156, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.251733+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.252011+00', 0, NULL), +(7157, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.260217+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.329141+00', 68, NULL), +(7158, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.260227+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.309463+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7159, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.309621+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.316225+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(7160, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.316313+00', TIMESTAMP WITH TIME ZONE '2022-12-27 23:56:08.329014+00', 12, '{"total-tables":26,"tables-classified":0}'), +(7161, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 00:00:00.011+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:00:00.026+00', 15, NULL), +(7162, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 00:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:00:00.026+00', 12, NULL), +(7163, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.004712+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.121507+00', 116, NULL), +(7164, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.004729+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.008645+00', 3, '{"timezone-id":"UTC"}'), +(7165, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.008681+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.012757+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7166, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.012787+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.090013+00', 77, '{"total-fields":71,"updated-fields":0}'), +(7167, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.090048+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.094751+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7168, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.094782+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.121493+00', 26, NULL), +(7169, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.127477+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.139425+00', 11, NULL), +(7170, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.127488+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.135199+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7171, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.135229+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.137286+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7172, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.137313+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:19:00.139408+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7173, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:00.009854+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.972119+00', 6962, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7174, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:00.009873+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:00.010098+00', 0, '{"timezone-id":null}'), +(7175, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:00.010142+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:00.09113+00', 80, '{"updated-tables":0,"total-tables":26}'), +(7176, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:00.091175+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.968564+00', 6877, '{"total-fields":302,"updated-fields":0}'), +(7177, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.968623+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.971944+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7178, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.971979+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.972111+00', 0, NULL), +(7179, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.987351+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:07.041424+00', 54, NULL), +(7180, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:06.987367+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:07.016235+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7181, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:07.016286+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:07.02481+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(7182, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:07.024862+00', TIMESTAMP WITH TIME ZONE '2022-12-28 00:56:07.04136+00', 16, '{"total-tables":26,"tables-classified":0}'), +(7183, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 01:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:00:00.012+00', 2, NULL), +(7184, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 01:00:00.015+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:00:00.021+00', 6, NULL), +(7185, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.012099+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.178857+00', 166, NULL), +(7186, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.012114+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.01612+00', 4, '{"timezone-id":"UTC"}'), +(7187, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.01616+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.020626+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7188, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.020658+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.119964+00', 99, '{"total-fields":71,"updated-fields":0}'), +(7189, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.120034+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.127722+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7190, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.127763+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.178829+00', 51, NULL), +(7191, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.185433+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.205384+00', 19, NULL), +(7192, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.185447+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.200317+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7193, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.200358+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.202873+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7194, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.202907+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:19:00.205361+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7195, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:00.005513+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.835275+00', 7829, NULL), +(7196, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:00.005531+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:00.005701+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7197, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:00.005728+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:00.054574+00', 48, '{"updated-tables":0,"total-tables":26}'), +(7198, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:00.054619+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.832889+00', 7778, '{"total-fields":302,"updated-fields":0}'), +(7199, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.832966+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.83491+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7200, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.834978+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.835241+00', 0, NULL), +(7201, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.845635+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:08.029772+00', 184, NULL), +(7202, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.845646+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.872577+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7203, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.87265+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.974303+00', 101, '{"fields-classified":0,"fields-failed":0}'), +(7204, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:07.974411+00', TIMESTAMP WITH TIME ZONE '2022-12-28 01:56:08.029568+00', 55, '{"total-tables":26,"tables-classified":0}'), +(7205, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 02:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:00:00.018+00', 14, NULL), +(7206, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 02:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:00:00.019+00', 16, NULL), +(7207, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.005526+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.181316+00', 175, NULL), +(7208, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.005542+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.009938+00', 4, '{"timezone-id":"UTC"}'), +(7209, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.010045+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.015916+00', 5, '{"updated-tables":0,"total-tables":8}'), +(7210, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.016+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.126555+00', 110, '{"total-fields":71,"updated-fields":0}'), +(7211, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.126595+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.135627+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7212, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.136473+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.181293+00', 44, NULL), +(7213, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.188615+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.20498+00', 16, NULL), +(7214, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.188627+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.199241+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7215, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.199291+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.202345+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(7216, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.202377+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:19:00.204959+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7217, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:00.007947+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.819111+00', 8811, NULL), +(7218, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:00.007964+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:00.008151+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7219, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:00.00818+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:00.139948+00', 131, '{"updated-tables":0,"total-tables":26}'), +(7220, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:00.140104+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.816198+00', 8676, '{"total-fields":302,"updated-fields":0}'), +(7221, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.816252+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.818723+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7222, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.818791+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.819095+00', 0, NULL), +(7223, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.828092+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.874629+00', 46, NULL), +(7224, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.828104+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.855344+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7225, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.855454+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.86356+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(7226, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.863591+00', TIMESTAMP WITH TIME ZONE '2022-12-28 02:56:08.874609+00', 11, '{"total-tables":26,"tables-classified":0}'), +(7227, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:00:00.004+00', 1, NULL), +(7228, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:00:00.029+00', 25, NULL), +(7229, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.005141+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.132871+00', 127, NULL), +(7230, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.00516+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.009561+00', 4, '{"timezone-id":"UTC"}'), +(7231, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.009603+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.014991+00', 5, '{"updated-tables":0,"total-tables":8}'), +(7232, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.015036+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.101386+00', 86, '{"total-fields":71,"updated-fields":0}'), +(7233, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.101427+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.107221+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7234, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.107253+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.132855+00', 25, NULL), +(7235, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.138936+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.152764+00', 13, NULL), +(7236, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.138945+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.147341+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7237, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.147371+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.150325+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7238, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.150354+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:19:00.152745+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7239, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:00.004728+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.857882+00', 6853, NULL), +(7240, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:00.004745+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:00.004939+00', 0, '{"timezone-id":null}'), +(7241, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:00.004968+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:00.045172+00', 40, '{"updated-tables":0,"total-tables":26}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7242, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:00.045227+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.854838+00', 6809, '{"total-fields":302,"updated-fields":0}'), +(7243, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.854896+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.85768+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7244, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.85771+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.857872+00', 0, NULL), +(7245, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.872114+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.957488+00', 85, NULL), +(7246, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.872126+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.904459+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7247, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.90451+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.912015+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(7248, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.912059+00', TIMESTAMP WITH TIME ZONE '2022-12-28 03:56:06.957438+00', 45, '{"total-tables":26,"tables-classified":0}'), +(7249, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 04:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:00:00.003+00', 2, NULL), +(7250, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 04:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:00:00.013+00', 10, NULL), +(7251, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.003914+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.128525+00', 124, NULL), +(7252, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.003929+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.007861+00', 3, '{"timezone-id":"UTC"}'), +(7253, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.007901+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.016371+00', 8, '{"updated-tables":0,"total-tables":8}'), +(7254, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.016408+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.096974+00', 80, '{"total-fields":71,"updated-fields":0}'), +(7255, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.097009+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.102299+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7256, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.10233+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.128513+00', 26, NULL), +(7257, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.134487+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.147928+00', 13, NULL), +(7258, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.134496+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.142403+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7259, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.142502+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.145497+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7260, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.145588+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:19:00.147851+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7261, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:00.006771+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.654455+00', 7647, NULL), +(7262, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:00.006788+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:00.006982+00', 0, '{"timezone-id":null}'), +(7263, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:00.00701+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:00.066732+00', 59, '{"updated-tables":0,"total-tables":26}'), +(7264, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:00.066778+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.649786+00', 7583, '{"total-fields":302,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7265, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.649891+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.654077+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7266, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.654142+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.654421+00', 0, NULL), +(7267, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.667468+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.736652+00', 69, NULL), +(7268, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.667482+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.715929+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7269, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.717909+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.724418+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(7270, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.724459+00', TIMESTAMP WITH TIME ZONE '2022-12-28 04:56:07.736625+00', 12, '{"total-tables":26,"tables-classified":0}'), +(7271, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:00:00.005+00', 2, NULL), +(7272, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 05:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:00:00.018+00', 12, NULL), +(7273, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.004489+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.126897+00', 122, NULL), +(7274, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.004504+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.008817+00', 4, '{"timezone-id":"UTC"}'), +(7275, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.008855+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.013+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7276, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.013028+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.093322+00', 80, '{"total-fields":71,"updated-fields":0}'), +(7277, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.093359+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.098651+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7278, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.098682+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.126882+00', 28, NULL), +(7279, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.133119+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.147112+00', 13, NULL), +(7280, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.133129+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.141033+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7281, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.141065+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.143499+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7282, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.143528+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:19:00.147093+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7283, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:00.006297+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.066742+00', 8060, NULL), +(7284, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:00.00636+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:00.007959+00', 1, '{"timezone-id":null}'), +(7285, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:00.008037+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:00.050193+00', 42, '{"updated-tables":0,"total-tables":26}'), +(7286, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:00.050237+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.06464+00', 8014, '{"total-fields":302,"updated-fields":0}'), +(7287, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.064681+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.066558+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7288, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.066588+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.066732+00', 0, NULL), +(7289, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.074277+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.121874+00', 47, NULL), +(7290, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.074289+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.105982+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7291, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.106035+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.11163+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(7292, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.111664+00', TIMESTAMP WITH TIME ZONE '2022-12-28 05:56:08.121853+00', 10, '{"total-tables":26,"tables-classified":0}'), +(7293, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:00:00.003+00', 1, NULL), +(7294, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:00:00.01+00', 6, NULL), +(7295, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.007032+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.215191+00', 208, NULL), +(7296, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.007048+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.010643+00', 3, '{"timezone-id":"UTC"}'), +(7297, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.01068+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.015542+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7298, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.015571+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.132822+00', 117, '{"total-fields":71,"updated-fields":0}'), +(7299, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.132862+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.147345+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7300, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.147393+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.215169+00', 67, NULL), +(7301, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.222902+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.235689+00', 12, NULL), +(7302, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.222915+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.231258+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7303, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.231294+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.233553+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7304, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.233583+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:19:00.235672+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7305, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:00.006103+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.805362+00', 8799, NULL), +(7306, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:00.006117+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:00.006301+00', 0, '{"timezone-id":null}'), +(7307, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:00.006325+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:00.046683+00', 40, '{"updated-tables":0,"total-tables":26}'), +(7308, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:00.046717+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.803097+00', 8756, '{"total-fields":302,"updated-fields":0}'), +(7309, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.803141+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.805027+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7310, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.805054+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.805349+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7311, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.813511+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.971074+00', 157, NULL), +(7312, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.81352+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.952942+00', 139, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7313, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.952982+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.958625+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(7314, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.958653+00', TIMESTAMP WITH TIME ZONE '2022-12-28 06:56:08.971058+00', 12, '{"total-tables":26,"tables-classified":0}'), +(7315, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:00:00.005+00', 1, NULL), +(7316, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 07:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:00:00.125+00', 118, NULL), +(7317, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.004526+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.132353+00', 127, NULL), +(7318, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.004542+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.0077+00', 3, '{"timezone-id":"UTC"}'), +(7319, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.007738+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.011846+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7320, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.011871+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.100669+00', 88, '{"total-fields":71,"updated-fields":0}'), +(7321, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.100704+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.105667+00', 4, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7322, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.105697+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.132341+00', 26, NULL), +(7323, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.138154+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.150327+00', 12, NULL), +(7324, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.138165+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.145631+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7325, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.14566+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.147826+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7326, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.147853+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:19:00.150308+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7327, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:00.005535+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.124646+00', 8119, NULL), +(7328, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:00.005554+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:00.005779+00', 0, '{"timezone-id":null}'), +(7329, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:00.00581+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:00.035822+00', 30, '{"updated-tables":0,"total-tables":26}'), +(7330, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:00.035896+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.12151+00', 8085, '{"total-fields":302,"updated-fields":0}'), +(7331, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.121562+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.124487+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7332, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.124518+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.124638+00', 0, NULL), +(7333, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.143036+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.21734+00', 74, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7334, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.143052+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.189688+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7335, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.18974+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.200146+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(7336, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.200217+00', TIMESTAMP WITH TIME ZONE '2022-12-28 07:56:08.217251+00', 17, '{"total-tables":26,"tables-classified":0}'), +(7337, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:00:00.005+00', 2, NULL), +(7338, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 08:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:00:00.016+00', 7, NULL), +(7339, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.004705+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.260803+00', 256, NULL), +(7340, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.004723+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.023185+00', 18, '{"timezone-id":"UTC"}'), +(7341, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.023234+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.027685+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7342, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.027714+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.203012+00', 175, '{"total-fields":71,"updated-fields":0}'), +(7343, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.203069+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.211017+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7344, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.211057+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.26077+00', 49, NULL), +(7345, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.279369+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.299795+00', 20, NULL), +(7346, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.279385+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.292957+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7347, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.293002+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.296834+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(7348, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.296868+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:19:00.299762+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7349, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:00.005478+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.652126+00', 7646, NULL), +(7350, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:00.005499+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:00.0057+00', 0, '{"timezone-id":null}'), +(7351, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:00.00573+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:00.035229+00', 29, '{"updated-tables":0,"total-tables":26}'), +(7352, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:00.035267+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.648735+00', 7613, '{"total-fields":302,"updated-fields":0}'), +(7353, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.648817+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.651703+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7354, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.651773+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.652088+00', 0, NULL), +(7355, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.662141+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.811348+00', 149, NULL), +(7356, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.662156+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.777515+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7357, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.777602+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.789162+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(7358, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.789207+00', TIMESTAMP WITH TIME ZONE '2022-12-28 08:56:07.811295+00', 22, '{"total-tables":26,"tables-classified":0}'), +(7359, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:00:00.004+00', 1, NULL), +(7360, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 09:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:00:00.015+00', 10, NULL), +(7361, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.00637+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.340224+00', 333, NULL), +(7362, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.006385+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.011077+00', 4, '{"timezone-id":"UTC"}'), +(7363, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.011115+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.019985+00', 8, '{"updated-tables":0,"total-tables":8}'), +(7364, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.020017+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.195623+00', 175, '{"total-fields":71,"updated-fields":0}'), +(7365, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.195664+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.287032+00', 91, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7366, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.287078+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.340203+00', 53, NULL), +(7367, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.363536+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.387705+00', 24, NULL), +(7368, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.36355+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.371247+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7369, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.371285+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.373188+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(7370, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.373215+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:19:00.387681+00', 14, '{"total-tables":8,"tables-classified":0}'), +(7371, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:00.01523+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.095516+00', 7080, NULL), +(7372, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:00.015247+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:00.019742+00', 4, '{"timezone-id":null}'), +(7373, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:00.019794+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:00.070669+00', 50, '{"updated-tables":0,"total-tables":26}'), +(7374, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:00.070713+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.086591+00', 7015, '{"total-fields":302,"updated-fields":0}'), +(7375, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.086651+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.095075+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7376, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.095123+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.095499+00', 0, NULL), +(7377, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.229588+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.446953+00', 217, NULL), +(7378, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.229606+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.365228+00', 135, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7379, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.365284+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.390187+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(7380, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.390244+00', TIMESTAMP WITH TIME ZONE '2022-12-28 09:56:07.446893+00', 56, '{"total-tables":26,"tables-classified":0}'), +(7381, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 10:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:00:00.021+00', 15, NULL), +(7382, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 10:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:00:00.022+00', 17, NULL), +(7383, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.005507+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.13101+00', 125, NULL), +(7384, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.005527+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.010537+00', 5, '{"timezone-id":"UTC"}'), +(7385, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.010577+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.014706+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7386, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.014732+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.097726+00', 82, '{"total-fields":71,"updated-fields":0}'), +(7387, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.097772+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.103828+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7388, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.103859+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.130997+00', 27, NULL), +(7389, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.137182+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.150403+00', 13, NULL), +(7390, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.137192+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.145417+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7391, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.145447+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.147658+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7392, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.14769+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:19:00.150385+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7393, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:00.005678+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.94773+00', 7942, NULL), +(7394, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:00.005695+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:00.007223+00', 1, '{"timezone-id":null}'), +(7395, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:00.007269+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:00.053216+00', 45, '{"updated-tables":0,"total-tables":26}'), +(7396, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:00.053257+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.945163+00', 7891, '{"total-fields":302,"updated-fields":0}'), +(7397, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.945211+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.947413+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7398, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.947448+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.947715+00', 0, NULL), +(7399, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.955845+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:08.003009+00', 47, NULL), +(7400, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.955855+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.984038+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7401, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.984085+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.991631+00', 7, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7402, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:07.991665+00', TIMESTAMP WITH TIME ZONE '2022-12-28 10:56:08.002989+00', 11, '{"total-tables":26,"tables-classified":0}'), +(7403, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 11:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:00:00.005+00', 1, NULL), +(7404, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 11:00:00.025+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:00:00.032+00', 7, NULL), +(7405, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.004671+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.183479+00', 178, NULL), +(7406, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.004686+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.009468+00', 4, '{"timezone-id":"UTC"}'), +(7407, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.00962+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.013905+00', 4, '{"updated-tables":0,"total-tables":8}'), +(7408, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.013999+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.15164+00', 137, '{"total-fields":71,"updated-fields":0}'), +(7409, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.151805+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.157091+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7410, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.15716+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.183462+00', 26, NULL), +(7411, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.190312+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.203706+00', 13, NULL), +(7412, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.190324+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.198674+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7413, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.198737+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.20117+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7414, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.201233+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:19:00.203622+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7415, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:00.007519+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.187965+00', 8180, NULL), +(7416, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:00.007542+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:00.007823+00', 0, '{"timezone-id":null}'), +(7417, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:00.00787+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:00.126373+00', 118, '{"updated-tables":0,"total-tables":26}'), +(7418, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:00.126423+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.185471+00', 8059, '{"total-fields":302,"updated-fields":0}'), +(7419, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.185521+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.18763+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7420, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.187658+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.187951+00', 0, NULL), +(7421, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.196968+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.269791+00', 72, NULL), +(7422, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.196979+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.234569+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7423, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.234641+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.245059+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(7424, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.245217+00', TIMESTAMP WITH TIME ZONE '2022-12-28 11:56:08.26976+00', 24, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7425, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 12:00:00.018+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:00:00.019+00', 1, NULL), +(7426, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 12:00:00.021+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:00:00.027+00', 6, NULL), +(7427, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.005445+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.43073+00', 425, NULL), +(7428, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.005464+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.010438+00', 4, '{"timezone-id":"UTC"}'), +(7429, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.010482+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.016189+00', 5, '{"updated-tables":0,"total-tables":8}'), +(7430, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.016253+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.353642+00', 337, '{"total-fields":71,"updated-fields":0}'), +(7431, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.353712+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.377435+00', 23, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7432, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.377481+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.43071+00', 53, NULL), +(7433, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.43695+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.45015+00', 13, NULL), +(7434, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.436963+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.444823+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7435, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.444862+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.447304+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7436, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.447372+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:19:00.45013+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7437, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:00.006658+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.401229+00', 7394, NULL), +(7438, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:00.006675+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:00.006874+00', 0, '{"timezone-id":null}'), +(7439, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:00.006903+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:00.05503+00', 48, '{"updated-tables":0,"total-tables":26}'), +(7440, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:00.055078+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.398626+00', 7343, '{"total-fields":302,"updated-fields":0}'), +(7441, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.398865+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.400789+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7442, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.400817+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.401214+00', 0, NULL), +(7443, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.409302+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.455098+00', 45, NULL), +(7444, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.409311+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.436896+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7445, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.436947+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.444544+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(7446, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.444585+00', TIMESTAMP WITH TIME ZONE '2022-12-28 12:56:07.455073+00', 10, '{"total-tables":26,"tables-classified":0}'), +(7447, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.005+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7448, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.015+00', 8, NULL), +(7449, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.007771+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:03.684269+00', 3676, NULL), +(7450, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.007785+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.351535+00', 343, '{"deleted":0}'), +(7451, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:00.351584+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:00:03.684244+00', 3332, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(7452, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.011281+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.205159+00', 193, NULL), +(7453, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.011294+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.02029+00', 8, '{"timezone-id":"UTC"}'), +(7454, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.020324+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.023898+00', 3, '{"updated-tables":0,"total-tables":8}'), +(7455, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.023922+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.155117+00', 131, '{"total-fields":71,"updated-fields":0}'), +(7456, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.155147+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.163383+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7457, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.163415+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.205144+00', 41, NULL), +(7458, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.213642+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.236913+00', 23, NULL), +(7459, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.213652+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.228353+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7460, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.228386+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.234702+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(7461, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.23473+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:19:00.236896+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7462, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:00.091737+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.779951+00', 10688, NULL), +(7463, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:00.091758+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:00.092172+00', 0, '{"timezone-id":null}'), +(7464, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:00.09222+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:00.195057+00', 102, '{"updated-tables":0,"total-tables":26}'), +(7465, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:00.195101+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.760469+00', 10565, '{"total-fields":302,"updated-fields":0}'), +(7466, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.76052+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.779714+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7467, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.779768+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.779941+00', 0, NULL), +(7468, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.802246+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.955761+00', 153, NULL), +(7469, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.80233+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.910849+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7470, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.910904+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.933087+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(7471, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.933144+00', TIMESTAMP WITH TIME ZONE '2022-12-28 13:56:10.955718+00', 22, '{"total-tables":26,"tables-classified":0}'), +(7472, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 14:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:00:00.008+00', 5, NULL), +(7473, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 14:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:00:00.01+00', 7, NULL), +(7474, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.005864+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.203908+00', 198, NULL), +(7475, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.00588+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.008525+00', 2, '{"timezone-id":"UTC"}'), +(7476, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.008564+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.020326+00', 11, '{"updated-tables":0,"total-tables":8}'), +(7477, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.020454+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.130621+00', 110, '{"total-fields":71,"updated-fields":0}'), +(7478, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.130679+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.137182+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7479, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.137218+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.203885+00', 66, NULL), +(7480, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.222041+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.2468+00', 24, NULL), +(7481, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.222056+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.238871+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7482, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.23892+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.24129+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7483, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.241329+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:19:00.246774+00', 5, '{"total-tables":8,"tables-classified":0}'), +(7484, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:00.004869+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.435915+00', 7431, NULL), +(7485, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:00.004885+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:00.005074+00', 0, '{"timezone-id":null}'), +(7486, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:00.005102+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:00.034738+00', 29, '{"updated-tables":0,"total-tables":26}'), +(7487, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:00.034778+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.433916+00', 7399, '{"total-fields":302,"updated-fields":0}'), +(7488, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.433964+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.435752+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7489, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.435781+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.435907+00', 0, NULL), +(7490, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.450851+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.490594+00', 39, NULL), +(7491, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.450863+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.475114+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7492, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.475151+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.481097+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7493, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.481126+00', TIMESTAMP WITH TIME ZONE '2022-12-28 14:56:07.490576+00', 9, '{"total-tables":26,"tables-classified":0}'), +(7494, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:00:00.003+00', 1, NULL), +(7495, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 15:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:00:00.014+00', 10, NULL), +(7496, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.007236+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.157593+00', 150, NULL), +(7497, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.007253+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.020297+00', 13, '{"timezone-id":"UTC"}'), +(7498, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.020458+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.030207+00', 9, '{"updated-tables":0,"total-tables":8}'), +(7499, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.030241+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.123256+00', 93, '{"total-fields":71,"updated-fields":0}'), +(7500, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.123351+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.130262+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7501, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.130343+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.157555+00', 27, NULL), +(7502, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.164303+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.177484+00', 13, NULL), +(7503, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.164313+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.172449+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7504, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.172506+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.174924+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7505, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.174977+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:19:00.177442+00', 2, '{"total-tables":8,"tables-classified":0}'), +(7506, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:00.005078+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.746631+00', 6741, NULL), +(7507, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:00.005095+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:00.005271+00', 0, '{"timezone-id":null}'), +(7508, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:00.005298+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:00.036661+00', 31, '{"updated-tables":0,"total-tables":26}'), +(7509, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:00.0367+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.741369+00', 6704, '{"total-fields":302,"updated-fields":0}'), +(7510, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.741444+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.745624+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7511, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.746242+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.746548+00', 0, NULL), +(7512, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.758434+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.932009+00', 173, NULL), +(7513, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.758445+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.80645+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7514, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.806503+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.911586+00', 105, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7515, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.91172+00', TIMESTAMP WITH TIME ZONE '2022-12-28 15:56:06.931864+00', 20, '{"total-tables":26,"tables-classified":0}'), +(7516, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 16:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:00:00.011+00', 1, NULL), +(7517, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 16:00:00.012+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:00:00.023+00', 11, NULL), +(7518, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.010502+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.196492+00', 185, NULL), +(7519, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.010518+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.01408+00', 3, '{"timezone-id":"UTC"}'), +(7520, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.014117+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.017754+00', 3, '{"updated-tables":0,"total-tables":8}'), +(7521, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.017781+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.141854+00', 124, '{"total-fields":71,"updated-fields":0}'), +(7522, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.141892+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.150231+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7523, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.150275+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.196395+00', 46, NULL), +(7524, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.212029+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.250622+00', 38, NULL), +(7525, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.212105+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.2301+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7526, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.23014+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.236826+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(7527, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.236871+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:19:00.250584+00', 13, '{"total-tables":8,"tables-classified":0}'), +(7528, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:00.009003+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.414976+00', 8405, NULL), +(7529, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:00.009021+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:00.009375+00', 0, '{"timezone-id":null}'), +(7530, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:00.009444+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:00.05616+00', 46, '{"updated-tables":0,"total-tables":26}'), +(7531, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:00.056206+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.412717+00', 8356, '{"total-fields":302,"updated-fields":0}'), +(7532, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.412765+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.41479+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7533, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.41482+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.414967+00', 0, NULL), +(7534, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.456421+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.518771+00', 62, NULL), +(7535, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.456434+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.496683+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7536, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.496728+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.505689+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(7537, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.505723+00', TIMESTAMP WITH TIME ZONE '2022-12-28 16:56:08.518751+00', 13, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7538, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:00:00.018+00', 14, NULL), +(7539, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 17:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:00:00.017+00', 11, NULL), +(7540, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:00.357016+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.743835+00', 2386, NULL), +(7541, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:00.369422+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:01.669405+00', 1299, '{"timezone-id":"UTC"}'), +(7542, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:01.669703+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.114123+00', 444, '{"updated-tables":0,"total-tables":8}'), +(7543, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.114173+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.548696+00', 434, '{"total-fields":71,"updated-fields":0}'), +(7544, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.548738+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.616925+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7545, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.616971+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.743814+00', 126, NULL), +(7546, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.816613+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.905443+00', 88, NULL), +(7547, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.81663+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.870297+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7548, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.870348+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.882819+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(7549, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.882858+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:19:02.90541+00', 22, '{"total-tables":8,"tables-classified":0}'), +(7550, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:00.34692+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.534461+00', 26187, NULL), +(7551, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:00.346943+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:00.348075+00', 1, '{"timezone-id":null}'), +(7552, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:00.348128+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:00.949738+00', 601, '{"updated-tables":0,"total-tables":26}'), +(7553, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:00.949785+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.527559+00', 25577, '{"total-fields":302,"updated-fields":0}'), +(7554, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.527625+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.534274+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7555, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.534314+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.534452+00', 0, NULL), +(7556, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.581017+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.703807+00', 122, NULL), +(7557, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.581035+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.650009+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7558, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.650091+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.680909+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(7559, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.680971+00', TIMESTAMP WITH TIME ZONE '2022-12-28 17:56:26.703765+00', 22, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7560, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 18:00:00.002+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:00:00.003+00', 1, NULL), +(7561, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 18:00:00.005+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:00:00.012+00', 7, NULL), +(7562, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.006535+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.218642+00', 212, NULL), +(7563, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.006552+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.013296+00', 6, '{"timezone-id":"UTC"}'), +(7564, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.01335+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.019019+00', 5, '{"updated-tables":0,"total-tables":8}'), +(7565, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.01954+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.173542+00', 154, '{"total-fields":71,"updated-fields":0}'), +(7566, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.176062+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.182094+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7567, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.18335+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.218623+00', 35, NULL), +(7568, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.226912+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.245299+00', 18, NULL), +(7569, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.226925+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.238072+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7570, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.238136+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.241681+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(7571, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.241737+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:19:00.245254+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7572, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:00.016964+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.252704+00', 10235, NULL), +(7573, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:00.016982+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:00.017179+00', 0, '{"timezone-id":null}'), +(7574, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:00.01721+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:00.068394+00', 51, '{"updated-tables":0,"total-tables":26}'), +(7575, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:00.068468+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.248278+00', 10179, '{"total-fields":302,"updated-fields":0}'), +(7576, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.248334+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.252512+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7577, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.252545+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.252695+00', 0, NULL), +(7578, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.276457+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.542363+00', 265, NULL), +(7579, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.276471+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.444141+00', 167, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7580, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.444192+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.451341+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(7581, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.451383+00', TIMESTAMP WITH TIME ZONE '2022-12-28 18:56:10.542038+00', 90, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7582, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 19:00:00.001+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:00:00.003+00', 2, NULL), +(7583, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 19:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:00:00.018+00', 8, NULL), +(7584, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.005162+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.332689+00', 327, NULL), +(7585, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.005176+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.027523+00', 22, '{"timezone-id":"UTC"}'), +(7586, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.027555+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.031093+00', 3, '{"updated-tables":0,"total-tables":8}'), +(7587, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.03115+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.24972+00', 218, '{"total-fields":71,"updated-fields":0}'), +(7588, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.24975+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.255045+00', 5, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7589, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.25508+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.33267+00', 77, NULL), +(7590, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.36711+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.446399+00', 79, NULL), +(7591, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.367125+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.410819+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7592, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.410877+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.432342+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(7593, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.432395+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:19:00.446364+00', 13, '{"total-tables":8,"tables-classified":0}'), +(7594, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:01.420054+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.159589+00', 19739, NULL), +(7595, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:01.427127+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:01.487415+00', 60, '{"timezone-id":null}'), +(7596, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:01.499031+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:02.550134+00', 1051, '{"updated-tables":0,"total-tables":26}'), +(7597, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:02.550364+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.016982+00', 18466, '{"total-fields":302,"updated-fields":0}'), +(7598, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.01712+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.129057+00', 111, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7599, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.129187+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.159495+00', 30, NULL), +(7600, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.816324+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:23.41407+00', 1597, NULL), +(7601, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:21.816401+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:22.76627+00', 949, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7602, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:22.766426+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:22.995263+00', 228, '{"fields-classified":0,"fields-failed":0}'), +(7603, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:22.995376+00', TIMESTAMP WITH TIME ZONE '2022-12-28 19:56:23.403977+00', 408, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7604, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 20:00:00.018+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:00:00.355+00', 337, NULL), +(7605, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 20:00:00.125+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:00:00.372+00', 247, NULL), +(7606, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.063178+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.9245+00', 861, NULL), +(7607, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.067784+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.267827+00', 200, '{"timezone-id":"UTC"}'), +(7608, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.268433+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.382014+00', 113, '{"updated-tables":0,"total-tables":8}'), +(7609, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.382156+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.767395+00', 385, '{"total-fields":71,"updated-fields":0}'), +(7610, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.767498+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.801093+00', 33, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7611, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.801198+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:00.924348+00', 123, NULL), +(7612, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.004478+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.05808+00', 53, NULL), +(7613, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.00454+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.033096+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7614, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.033196+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.045635+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(7615, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.045726+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:01.057983+00', 12, '{"total-tables":8,"tables-classified":0}'), +(7616, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:34.019323+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.846895+00', 1827, NULL), +(7617, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:34.019372+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:34.020202+00', 0, '{"timezone-id":null}'), +(7618, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:34.020267+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:34.455758+00', 435, '{"updated-tables":4,"total-tables":0}'), +(7619, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:34.455863+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.828824+00', 1372, '{"total-fields":8,"updated-fields":8}'), +(7620, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.828937+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.845771+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7621, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.845914+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.846829+00', 0, NULL), +(7622, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.885627+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.203198+00', 2317, NULL), +(7623, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:35.88566+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.076844+00', 2191, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":6,"fingerprints-attempted":6}'), +(7624, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.076916+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.142817+00', 65, '{"fields-classified":6,"fields-failed":0}'), +(7625, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.142895+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.20284+00', 59, '{"total-tables":4,"tables-classified":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7626, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.261578+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:39.111147+00', 849, NULL), +(7627, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.26162+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.400651+00', 139, '{"deleted":0}'), +(7628, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:38.400758+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:19:39.111081+00', 710, '{"errors":0,"created":3,"updated":0,"deleted":0}'), +(7629, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:00.054189+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.379882+00', 2325, NULL), +(7630, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:00.054254+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:00.055539+00', 1, '{"timezone-id":null}'), +(7631, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:00.05561+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:00.232122+00', 176, '{"updated-tables":0,"total-tables":4}'), +(7632, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:00.232194+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.374017+00', 2141, '{"total-fields":8,"updated-fields":0}'), +(7633, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.374105+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.379183+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7634, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.379245+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.379853+00', 0, NULL), +(7635, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.486308+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.571286+00', 84, NULL), +(7636, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.486344+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.542645+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7637, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.54442+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.560734+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(7638, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.560866+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:49:02.571227+00', 10, '{"total-tables":4,"tables-classified":0}'), +(7639, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:05.119876+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.25621+00', 1136, NULL), +(7640, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:05.119917+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:05.168361+00', 48, '{"deleted":0}'), +(7641, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:05.171066+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.256088+00', 1085, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(7642, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:04.290556+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.693717+00', 2403, NULL), +(7643, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:04.29059+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:04.324698+00', 34, '{"timezone-id":null}'), +(7644, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:04.324818+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:04.566409+00', 241, '{"updated-tables":0,"total-tables":4}'), +(7645, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:04.566506+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.682409+00', 2115, '{"total-fields":29,"updated-fields":21}'), +(7646, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.682477+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.691379+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7647, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.691552+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.693656+00', 2, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7648, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.751574+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:07.513289+00', 761, NULL), +(7649, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:06.751609+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:07.154679+00', 403, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":20,"fingerprints-attempted":20}'), +(7650, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:07.154864+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:07.491303+00', 336, '{"fields-classified":20,"fields-failed":0}'), +(7651, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:07.491398+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:55:07.513226+00', 21, '{"total-tables":4,"tables-classified":0}'), +(7652, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:00.08785+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.783253+00', 15695, NULL), +(7653, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:00.087884+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:00.088678+00', 0, '{"timezone-id":null}'), +(7654, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:00.089268+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:00.152898+00', 63, '{"updated-tables":0,"total-tables":26}'), +(7655, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:00.152967+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.771859+00', 15618, '{"total-fields":302,"updated-fields":0}'), +(7656, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.771966+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.782113+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7657, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.782207+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.783226+00', 1, NULL), +(7658, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.859533+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:16.100367+00', 240, NULL), +(7659, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:15.859562+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:16.007132+00', 147, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7660, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:16.007204+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:16.064507+00', 57, '{"fields-classified":0,"fields-failed":0}'), +(7661, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:16.064595+00', TIMESTAMP WITH TIME ZONE '2022-12-28 20:56:16.100304+00', 35, '{"total-tables":26,"tables-classified":0}'), +(7662, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.112+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.174+00', 62, NULL), +(7663, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.073+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.164+00', 91, NULL), +(7664, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.046738+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:03.055368+00', 3008, NULL), +(7665, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.04678+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.372207+00', 325, '{"deleted":0}'), +(7666, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:00.372284+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:00:03.055103+00', 2682, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(7667, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:27.800694+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.234032+00', 433, NULL), +(7668, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:27.800717+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:27.840651+00', 39, '{"deleted":0}'), +(7669, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:27.840714+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.233992+00', 393, '{"errors":0,"created":13,"updated":0,"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7670, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.441873+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.927405+00', 485, NULL), +(7671, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.441899+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.442541+00', 0, '{"timezone-id":null}'), +(7672, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.442595+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.475432+00', 32, '{"updated-tables":0,"total-tables":4}'), +(7673, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.475488+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.924685+00', 449, '{"total-fields":38,"updated-fields":17}'), +(7674, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.924941+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.926683+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7675, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.926733+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.927354+00', 0, NULL), +(7676, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.958313+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:29.081149+00', 122, NULL), +(7677, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:28.958337+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:29.053493+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":1,"updated-fingerprints":14,"fingerprints-attempted":15}'), +(7678, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:29.053618+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:29.077061+00', 23, '{"fields-classified":14,"fields-failed":0}'), +(7679, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:29.077125+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:14:29.08111+00', 3, '{"total-tables":4,"tables-classified":0}'), +(7680, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.010042+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.656616+00', 646, NULL), +(7681, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.010072+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.015544+00', 5, '{"timezone-id":"UTC"}'), +(7682, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.015619+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.052875+00', 37, '{"updated-tables":0,"total-tables":8}'), +(7683, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.052942+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.467721+00', 414, '{"total-fields":71,"updated-fields":0}'), +(7684, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.467975+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.49821+00', 30, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7685, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.498563+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.656568+00', 158, NULL), +(7686, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.69389+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.77846+00', 84, NULL), +(7687, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.693917+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.74412+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7688, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.744199+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.768043+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(7689, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.768137+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:19:00.778402+00', 10, '{"total-tables":8,"tables-classified":0}'), +(7690, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.019121+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.9605+00', 941, NULL), +(7691, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.019149+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.019917+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7692, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.020115+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.067191+00', 47, '{"updated-tables":0,"total-tables":4}'), +(7693, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.067308+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.957874+00', 890, '{"total-fields":38,"updated-fields":0}'), +(7694, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.957959+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.95986+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7695, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.95992+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:00.960464+00', 0, NULL), +(7696, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.006655+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.163118+00', 156, NULL), +(7697, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.006689+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.115146+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":2,"fingerprints-attempted":2}'), +(7698, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.115243+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.153876+00', 38, '{"fields-classified":2,"fields-failed":0}'), +(7699, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.153974+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:49:01.163054+00', 9, '{"total-tables":4,"tables-classified":0}'), +(7700, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:00.01315+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.042978+00', 10029, NULL), +(7701, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:00.013295+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:00.014806+00', 1, '{"timezone-id":null}'), +(7702, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:00.014994+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:00.105207+00', 90, '{"updated-tables":0,"total-tables":26}'), +(7703, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:00.105275+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.03115+00', 9925, '{"total-fields":302,"updated-fields":0}'), +(7704, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.03139+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.040335+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7705, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.042223+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.042923+00', 0, NULL), +(7706, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.087492+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.178539+00', 91, NULL), +(7707, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.087519+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.146788+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7708, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.146866+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.160653+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(7709, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.160728+00', TIMESTAMP WITH TIME ZONE '2022-12-28 21:56:10.178495+00', 17, '{"total-tables":26,"tables-classified":0}'), +(7710, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 22:00:00.02+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:00:00.024+00', 4, NULL), +(7711, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 22:00:00.036+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:00:00.136+00', 100, NULL), +(7712, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.066627+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.110817+00', 1044, NULL), +(7713, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.066658+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.073039+00', 6, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7714, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.073102+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.117449+00', 44, '{"updated-tables":0,"total-tables":8}'), +(7715, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.117529+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.869421+00', 751, '{"total-fields":71,"updated-fields":0}'), +(7716, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.869517+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.910524+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7717, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:00.910605+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.110758+00', 200, NULL), +(7718, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.153503+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.242537+00', 89, NULL), +(7719, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.153528+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.196682+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7720, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.196764+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.205773+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(7721, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.209908+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:19:01.241954+00', 32, '{"total-tables":8,"tables-classified":0}'), +(7722, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.0213+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.629981+00', 608, NULL), +(7723, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.02133+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.022017+00', 0, '{"timezone-id":null}'), +(7724, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.022087+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.132602+00', 110, '{"updated-tables":0,"total-tables":4}'), +(7725, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.132704+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.627702+00', 494, '{"total-fields":38,"updated-fields":0}'), +(7726, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.627773+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.629259+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7727, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.629339+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.629931+00', 0, NULL), +(7728, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.682334+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.707037+00', 24, NULL), +(7729, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.682355+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.700779+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7730, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.700844+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.703683+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7731, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.703759+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:49:00.707007+00', 3, '{"total-tables":4,"tables-classified":0}'), +(7732, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:00.020499+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.644+00', 9623, NULL), +(7733, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:00.020559+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:00.021376+00', 0, '{"timezone-id":null}'), +(7734, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:00.021471+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:00.086047+00', 64, '{"updated-tables":0,"total-tables":26}'), +(7735, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:00.08611+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.639684+00', 9553, '{"total-fields":302,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7736, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.639782+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.643596+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7737, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.643649+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.643977+00', 0, NULL), +(7738, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.689042+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.892949+00', 203, NULL), +(7739, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.689068+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.803159+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7740, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.803231+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.840268+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(7741, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.840352+00', TIMESTAMP WITH TIME ZONE '2022-12-28 22:56:09.892889+00', 52, '{"total-tables":26,"tables-classified":0}'), +(7742, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 23:00:00.046+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:00:00.062+00', 16, NULL), +(7743, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-28 23:00:00.045+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:00:00.055+00', 10, NULL), +(7744, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.015782+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.610984+00', 595, NULL), +(7745, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.01582+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.028795+00', 12, '{"timezone-id":"UTC"}'), +(7746, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.02886+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.04279+00', 13, '{"updated-tables":0,"total-tables":8}'), +(7747, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.042854+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.392267+00', 349, '{"total-fields":71,"updated-fields":0}'), +(7748, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.392348+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.430246+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7749, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.430339+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.610943+00', 180, NULL), +(7750, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.624851+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.697049+00', 72, NULL), +(7751, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.624872+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.670657+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7752, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.670751+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.685076+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(7753, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.685156+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:19:00.696992+00', 11, '{"total-tables":8,"tables-classified":0}'), +(7754, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.023263+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.602007+00', 578, NULL), +(7755, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.023291+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.023797+00', 0, '{"timezone-id":null}'), +(7756, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.023856+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.122569+00', 98, '{"updated-tables":0,"total-tables":4}'), +(7757, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.122645+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.600022+00', 477, '{"total-fields":38,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7758, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.600116+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.601372+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7759, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.601449+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.601984+00', 0, NULL), +(7760, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.63289+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.663107+00', 30, NULL), +(7761, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.632914+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.642205+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7762, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.642293+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.644608+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7763, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.644682+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:49:00.66307+00', 18, '{"total-tables":4,"tables-classified":0}'), +(7764, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:00.009333+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.965491+00', 6956, NULL), +(7765, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:00.009361+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:00.009893+00', 0, '{"timezone-id":null}'), +(7766, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:00.00995+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:00.049905+00', 39, '{"updated-tables":0,"total-tables":26}'), +(7767, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:00.049969+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.957486+00', 6907, '{"total-fields":302,"updated-fields":0}'), +(7768, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.95756+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.964847+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7769, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.964916+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.965461+00', 0, NULL), +(7770, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.985482+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:07.126532+00', 141, NULL), +(7771, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:06.985506+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:07.083837+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7772, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:07.083915+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:07.096699+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(7773, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:07.096787+00', TIMESTAMP WITH TIME ZONE '2022-12-28 23:56:07.126365+00', 29, '{"total-tables":26,"tables-classified":0}'), +(7774, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 00:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:00:00.013+00', 6, NULL), +(7775, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 00:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:00:00.048+00', 39, NULL), +(7776, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.00779+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.287382+00', 279, NULL), +(7777, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.007818+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.011776+00', 3, '{"timezone-id":"UTC"}'), +(7778, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.01183+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.034237+00', 22, '{"updated-tables":0,"total-tables":8}'), +(7779, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.034297+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.178807+00', 144, '{"total-fields":71,"updated-fields":0}'), +(7780, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.17887+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.188449+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7781, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.188592+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.287342+00', 98, NULL), +(7782, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.298057+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.333262+00', 35, NULL), +(7783, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.298078+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.311708+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7784, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.311762+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.322749+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(7785, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.322809+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:19:00.333223+00', 10, '{"total-tables":8,"tables-classified":0}'), +(7786, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.016912+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.79251+00', 775, NULL), +(7787, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.016971+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.017781+00', 0, '{"timezone-id":null}'), +(7788, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.017882+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.138889+00', 121, '{"updated-tables":0,"total-tables":4}'), +(7789, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.140169+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.790841+00', 650, '{"total-fields":38,"updated-fields":0}'), +(7790, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.790905+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.792142+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7791, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.792187+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.792491+00', 0, NULL), +(7792, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.821958+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.878083+00', 56, NULL), +(7793, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.821986+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.849969+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7794, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.850043+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.873738+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(7795, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.87382+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:49:00.877799+00', 3, '{"total-tables":4,"tables-classified":0}'), +(7796, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:00.017212+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:12.997013+00', 12979, NULL), +(7797, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:00.01724+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:00.017746+00', 0, '{"timezone-id":null}'), +(7798, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:00.017808+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:00.079875+00', 62, '{"updated-tables":0,"total-tables":26}'), +(7799, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:00.079947+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:12.993425+00', 12913, '{"total-fields":302,"updated-fields":0}'), +(7800, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:12.993507+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:12.996657+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7801, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:12.996701+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:12.996981+00', 0, NULL), +(7802, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.059699+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.191807+00', 132, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7803, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.060109+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.124291+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7804, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.124366+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.163946+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(7805, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.164041+00', TIMESTAMP WITH TIME ZONE '2022-12-29 00:56:13.191743+00', 27, '{"total-tables":26,"tables-classified":0}'), +(7806, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 01:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:00:00.012+00', 2, NULL), +(7807, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 01:00:00.038+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:00:00.048+00', 10, NULL), +(7808, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.023807+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.229412+00', 205, NULL), +(7809, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.023856+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.070929+00', 47, '{"timezone-id":"UTC"}'), +(7810, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.070987+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.078583+00', 7, '{"updated-tables":0,"total-tables":8}'), +(7811, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.078631+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.176001+00', 97, '{"total-fields":71,"updated-fields":0}'), +(7812, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.176068+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.18328+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7813, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.18333+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.229375+00', 46, NULL), +(7814, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.240286+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.256767+00', 16, NULL), +(7815, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.240305+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.249925+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7816, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.249976+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.253423+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(7817, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.253468+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:19:00.256731+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7818, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:00.023866+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.157309+00', 1133, NULL), +(7819, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:00.023893+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:00.024294+00', 0, '{"timezone-id":null}'), +(7820, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:00.02436+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:00.139854+00', 115, '{"updated-tables":0,"total-tables":4}'), +(7821, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:00.140044+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.155462+00', 1015, '{"total-fields":38,"updated-fields":0}'), +(7822, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.155564+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.156765+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7823, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.156842+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.157261+00', 0, NULL), +(7824, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.174317+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.197263+00', 22, NULL), +(7825, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.17434+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.185964+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7826, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.186057+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.193613+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(7827, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.193696+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:49:01.197225+00', 3, '{"total-tables":4,"tables-classified":0}'), +(7828, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:00.013132+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.04428+00', 9031, NULL), +(7829, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:00.013166+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:00.01584+00', 2, '{"timezone-id":null}'), +(7830, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:00.017148+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:00.096871+00', 79, '{"updated-tables":0,"total-tables":26}'), +(7831, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:00.097085+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.041501+00', 8944, '{"total-fields":302,"updated-fields":0}'), +(7832, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.041562+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.043967+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7833, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.044008+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.044263+00', 0, NULL), +(7834, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.057113+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.121374+00', 64, NULL), +(7835, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.05713+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.099697+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7836, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.099763+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.1085+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(7837, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.108548+00', TIMESTAMP WITH TIME ZONE '2022-12-29 01:56:09.121339+00', 12, '{"total-tables":26,"tables-classified":0}'), +(7838, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.022+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.023+00', 1, NULL), +(7839, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.042+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.05+00', 8, NULL), +(7840, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.033595+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.68065+00', 647, NULL), +(7841, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.033621+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.119573+00', 85, '{"deleted":0}'), +(7842, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.119642+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:00:00.680427+00', 560, '{"errors":0,"created":11,"updated":0,"deleted":0}'), +(7843, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.009055+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.172119+00', 163, NULL), +(7844, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.009123+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.017721+00', 8, '{"timezone-id":"UTC"}'), +(7845, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.017805+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.026883+00', 9, '{"updated-tables":0,"total-tables":8}'), +(7846, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.027+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.123968+00', 96, '{"total-fields":71,"updated-fields":0}'), +(7847, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.124031+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.131782+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7848, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.131837+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.172077+00', 40, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7849, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.181975+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.206665+00', 24, NULL), +(7850, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.181996+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.192137+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7851, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.192236+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.202553+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(7852, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.202632+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:19:00.206631+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7853, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.018242+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.504079+00', 485, NULL), +(7854, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.018273+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.018738+00', 0, '{"timezone-id":null}'), +(7855, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.018794+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.10289+00', 84, '{"updated-tables":0,"total-tables":4}'), +(7856, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.102951+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.502295+00', 399, '{"total-fields":38,"updated-fields":0}'), +(7857, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.502418+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.503565+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7858, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.503612+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.504056+00', 0, NULL), +(7859, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.531563+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.556566+00', 25, NULL), +(7860, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.531585+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.551547+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7861, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.551646+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.553621+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(7862, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.553664+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:49:00.556535+00', 2, '{"total-tables":4,"tables-classified":0}'), +(7863, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:00.013386+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.679043+00', 7665, NULL), +(7864, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:00.013414+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:00.013814+00', 0, '{"timezone-id":null}'), +(7865, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:00.013881+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:00.128954+00', 115, '{"updated-tables":0,"total-tables":26}'), +(7866, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:00.129034+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.672755+00', 7543, '{"total-fields":302,"updated-fields":0}'), +(7867, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.672846+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.678339+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7868, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.678432+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.679015+00', 0, NULL), +(7869, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.71817+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.868287+00', 150, NULL), +(7870, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.718197+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.798839+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7871, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.799718+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.831053+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(7872, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.831152+00', TIMESTAMP WITH TIME ZONE '2022-12-29 02:56:07.868222+00', 37, '{"total-tables":26,"tables-classified":0}'), +(7873, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 03:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:00:00.017+00', 11, NULL), +(7874, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:00:00.019+00', 16, NULL), +(7875, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.007469+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.247062+00', 239, NULL), +(7876, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.007497+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.014948+00', 7, '{"timezone-id":"UTC"}'), +(7877, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.015176+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.034414+00', 19, '{"updated-tables":0,"total-tables":8}'), +(7878, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.034477+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.198763+00', 164, '{"total-fields":71,"updated-fields":0}'), +(7879, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.198833+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.205895+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7880, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.205946+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.247026+00', 41, NULL), +(7881, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.256491+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.276445+00', 19, NULL), +(7882, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.256512+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.268903+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7883, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.268986+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.272562+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(7884, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.272638+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:19:00.276416+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7885, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.010113+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.465979+00', 455, NULL), +(7886, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.010139+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.010502+00', 0, '{"timezone-id":null}'), +(7887, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.010549+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.084817+00', 74, '{"updated-tables":0,"total-tables":4}'), +(7888, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.084884+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.464146+00', 379, '{"total-fields":38,"updated-fields":0}'), +(7889, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.464245+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.465441+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7890, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.465492+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.465928+00', 0, NULL), +(7891, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.478119+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.493502+00', 15, NULL), +(7892, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.478157+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.484528+00', 6, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7893, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.484654+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.486823+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7894, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.486893+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:49:00.493472+00', 6, '{"total-tables":4,"tables-classified":0}'), +(7895, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:00.01572+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.512195+00', 6496, NULL), +(7896, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:00.015745+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:00.016064+00', 0, '{"timezone-id":null}'), +(7897, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:00.016104+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:00.072494+00', 56, '{"updated-tables":0,"total-tables":26}'), +(7898, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:00.072539+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.49974+00', 6427, '{"total-fields":302,"updated-fields":0}'), +(7899, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.499838+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.511859+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7900, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.511898+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.512178+00', 0, NULL), +(7901, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.565736+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.703247+00', 137, NULL), +(7902, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.565753+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.643256+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7903, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.643302+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.666691+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(7904, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.666738+00', TIMESTAMP WITH TIME ZONE '2022-12-29 03:56:06.703212+00', 36, '{"total-tables":26,"tables-classified":0}'), +(7905, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 04:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:00:00.012+00', 6, NULL), +(7906, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:00:00.016+00', 12, NULL), +(7907, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.008512+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.406497+00', 397, NULL), +(7908, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.008542+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.015668+00', 7, '{"timezone-id":"UTC"}'), +(7909, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.015722+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.054706+00', 38, '{"updated-tables":0,"total-tables":8}'), +(7910, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.05476+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.302052+00', 247, '{"total-fields":71,"updated-fields":0}'), +(7911, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.302122+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.325281+00', 23, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7912, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.325347+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.406462+00', 81, NULL), +(7913, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.415115+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.430216+00', 15, NULL), +(7914, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.415135+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.424163+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7915, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.424213+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.427064+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(7916, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.427118+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:19:00.430188+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7917, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.036604+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.73128+00', 694, NULL), +(7918, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.036634+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.0372+00', 0, '{"timezone-id":null}'), +(7919, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.037253+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.127234+00', 89, '{"updated-tables":0,"total-tables":4}'), +(7920, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.127292+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.728511+00', 601, '{"total-fields":38,"updated-fields":0}'), +(7921, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.728748+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.730532+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7922, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.730692+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.731259+00', 0, NULL), +(7923, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.783572+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.819762+00', 36, NULL), +(7924, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.783601+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.80652+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7925, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.806589+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.813372+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(7926, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.813438+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:49:00.819726+00', 6, '{"total-tables":4,"tables-classified":0}'), +(7927, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:00.009153+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.063106+00', 9053, NULL), +(7928, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:00.009181+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:00.013978+00', 4, '{"timezone-id":null}'), +(7929, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:00.014042+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:00.069552+00', 55, '{"updated-tables":0,"total-tables":26}'), +(7930, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:00.06972+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.059211+00', 8989, '{"total-fields":302,"updated-fields":0}'), +(7931, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.059297+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.062673+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7932, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.062754+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.063086+00', 0, NULL), +(7933, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.078306+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.154988+00', 76, NULL), +(7934, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.078324+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.111204+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7935, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.111294+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.119878+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(7936, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.119951+00', TIMESTAMP WITH TIME ZONE '2022-12-29 04:56:09.154915+00', 34, '{"total-tables":26,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7937, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 05:00:00.017+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:00:00.047+00', 30, NULL), +(7938, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 05:00:00.027+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:00:00.052+00', 25, NULL), +(7939, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.006707+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.249554+00', 242, NULL), +(7940, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.006734+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.011398+00', 4, '{"timezone-id":"UTC"}'), +(7941, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.011448+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.036411+00', 24, '{"updated-tables":0,"total-tables":8}'), +(7942, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.036467+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.188943+00', 152, '{"total-fields":71,"updated-fields":0}'), +(7943, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.189189+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.201579+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7944, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.201666+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.249514+00', 47, NULL), +(7945, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.265894+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.28288+00', 16, NULL), +(7946, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.265941+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.275838+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7947, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.27598+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.279311+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(7948, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.279401+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:19:00.28277+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7949, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.031683+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.834772+00', 803, NULL), +(7950, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.031715+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.032436+00', 0, '{"timezone-id":null}'), +(7951, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.032488+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.209362+00', 176, '{"updated-tables":0,"total-tables":4}'), +(7952, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.20942+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.833425+00', 624, '{"total-fields":38,"updated-fields":0}'), +(7953, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.833479+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.834458+00', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7954, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.834495+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.834755+00', 0, NULL), +(7955, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.846468+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.857812+00', 11, NULL), +(7956, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.846486+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.853103+00', 6, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7957, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.853147+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.854914+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(7958, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.854954+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:49:00.857786+00', 2, '{"total-tables":4,"tables-classified":0}'), +(7959, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:00.031654+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.186075+00', 8154, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7960, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:00.031683+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:00.033272+00', 1, '{"timezone-id":null}'), +(7961, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:00.034673+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:00.110008+00', 75, '{"updated-tables":0,"total-tables":26}'), +(7962, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:00.110194+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.179994+00', 8069, '{"total-fields":302,"updated-fields":0}'), +(7963, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.180054+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.185625+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7964, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.185686+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.186054+00', 0, NULL), +(7965, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.218157+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.368952+00', 150, NULL), +(7966, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.218182+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.289114+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7967, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.289178+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.325481+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(7968, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.325551+00', TIMESTAMP WITH TIME ZONE '2022-12-29 05:56:08.368898+00', 43, '{"total-tables":26,"tables-classified":0}'), +(7969, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 06:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:00:00.007+00', 4, NULL), +(7970, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 06:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:00:00.022+00', 12, NULL), +(7971, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.011975+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.169638+00', 157, NULL), +(7972, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.012001+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.017256+00', 5, '{"timezone-id":"UTC"}'), +(7973, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.017308+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.028221+00', 10, '{"updated-tables":0,"total-tables":8}'), +(7974, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.028265+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.126554+00', 98, '{"total-fields":71,"updated-fields":0}'), +(7975, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.126601+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.13306+00', 6, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(7976, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.133102+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.16961+00', 36, NULL), +(7977, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.17844+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.278848+00', 100, NULL), +(7978, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.178459+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.271115+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7979, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.27119+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.274817+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(7980, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.274868+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:19:00.27882+00', 3, '{"total-tables":8,"tables-classified":0}'), +(7981, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.013582+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.65463+00', 641, NULL), +(7982, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.013617+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.014158+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(7983, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.014206+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.177531+00', 163, '{"updated-tables":0,"total-tables":4}'), +(7984, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.17759+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.6532+00', 475, '{"total-fields":38,"updated-fields":0}'), +(7985, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.653252+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.65431+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7986, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.654348+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.654601+00', 0, NULL), +(7987, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.686387+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.70982+00', 23, NULL), +(7988, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.686411+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.692888+00', 6, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7989, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.692942+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.703359+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(7990, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.703414+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:49:00.709785+00', 6, '{"total-tables":4,"tables-classified":0}'), +(7991, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:00.026693+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.527822+00', 7501, NULL), +(7992, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:00.02672+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:00.02721+00', 0, '{"timezone-id":null}'), +(7993, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:00.027331+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:00.231152+00', 203, '{"updated-tables":0,"total-tables":26}'), +(7994, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:00.23135+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.524058+00', 7292, '{"total-fields":302,"updated-fields":0}'), +(7995, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.524126+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.527407+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(7996, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.527463+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.527782+00', 0, NULL), +(7997, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.575925+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.704523+00', 128, NULL), +(7998, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.575953+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.666293+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(7999, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.666359+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.675006+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(8000, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.675066+00', TIMESTAMP WITH TIME ZONE '2022-12-29 06:56:07.704472+00', 29, '{"total-tables":26,"tables-classified":0}'), +(8001, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 07:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:00:00.016+00', 2, NULL), +(8002, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 07:00:00.018+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:00:00.032+00', 14, NULL), +(8003, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.007715+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.462245+00', 454, NULL), +(8004, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.00774+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.011884+00', 4, '{"timezone-id":"UTC"}'), +(8005, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.011931+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.026089+00', 14, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8006, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.026145+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.370543+00', 344, '{"total-fields":71,"updated-fields":0}'), +(8007, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.370603+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.413473+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8008, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.413536+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.462212+00', 48, NULL), +(8009, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.471319+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.509192+00', 37, NULL), +(8010, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.471341+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.501233+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8011, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.501407+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.504887+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(8012, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.505046+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:19:00.509161+00', 4, '{"total-tables":8,"tables-classified":0}'), +(8013, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.020708+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.645381+00', 624, NULL), +(8014, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.020864+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.021521+00', 0, '{"timezone-id":null}'), +(8015, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.021643+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.132457+00', 110, '{"updated-tables":0,"total-tables":4}'), +(8016, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.132516+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.643507+00', 510, '{"total-fields":38,"updated-fields":0}'), +(8017, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.643604+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.644791+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8018, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.644868+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.645359+00', 0, NULL), +(8019, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.692036+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.726656+00', 34, NULL), +(8020, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.692058+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.704767+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8021, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.704837+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.721549+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(8022, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.721705+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:49:00.726624+00', 4, '{"total-tables":4,"tables-classified":0}'), +(8023, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:00.008998+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.534331+00', 7525, NULL), +(8024, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:00.009026+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:00.009385+00', 0, '{"timezone-id":null}'), +(8025, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:00.009426+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:00.073099+00', 63, '{"updated-tables":0,"total-tables":26}'), +(8026, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:00.073158+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.531001+00', 7457, '{"total-fields":302,"updated-fields":0}'), +(8027, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.531067+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.533848+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8028, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.533894+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.53431+00', 0, NULL), +(8029, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.571811+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.674489+00', 102, NULL), +(8030, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.571841+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.630781+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8031, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.630849+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.647676+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(8032, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.647746+00', TIMESTAMP WITH TIME ZONE '2022-12-29 07:56:07.674434+00', 26, '{"total-tables":26,"tables-classified":0}'), +(8033, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:00:00.018+00', 15, NULL), +(8034, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 08:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:00:00.025+00', 19, NULL), +(8035, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.00651+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.224984+00', 218, NULL), +(8036, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.006536+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.016276+00', 9, '{"timezone-id":"UTC"}'), +(8037, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.016341+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.04432+00', 27, '{"updated-tables":0,"total-tables":8}'), +(8038, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.044407+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.170115+00', 125, '{"total-fields":71,"updated-fields":0}'), +(8039, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.170362+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.180698+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8040, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.18084+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.224951+00', 44, NULL), +(8041, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.233399+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.249806+00', 16, NULL), +(8042, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.233419+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.243661+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8043, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.243712+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.246595+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(8044, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.24664+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:19:00.249779+00', 3, '{"total-tables":8,"tables-classified":0}'), +(8045, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.021681+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.707691+00', 686, NULL), +(8046, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.021712+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.026308+00', 4, '{"timezone-id":null}'), +(8047, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.026381+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.155788+00', 129, '{"updated-tables":0,"total-tables":4}'), +(8048, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.155873+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.706039+00', 550, '{"total-fields":38,"updated-fields":0}'), +(8049, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.7061+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.707014+00', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8050, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.70705+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.707672+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8051, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.736387+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.75699+00', 20, NULL), +(8052, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.736415+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.746358+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8053, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.746422+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.748873+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(8054, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.748926+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:49:00.756942+00', 8, '{"total-tables":4,"tables-classified":0}'), +(8055, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:00.012259+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:08.972231+00', 8959, NULL), +(8056, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:00.012285+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:00.014174+00', 1, '{"timezone-id":null}'), +(8057, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:00.014234+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:00.095324+00', 81, '{"updated-tables":0,"total-tables":26}'), +(8058, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:00.09549+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:08.9686+00', 8873, '{"total-fields":302,"updated-fields":0}'), +(8059, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:08.96867+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:08.97189+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8060, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:08.971944+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:08.972214+00', 0, NULL), +(8061, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.020205+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.121187+00', 100, NULL), +(8062, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.020233+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.098994+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8063, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.099062+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.107167+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(8064, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.107228+00', TIMESTAMP WITH TIME ZONE '2022-12-29 08:56:09.121128+00', 13, '{"total-tables":26,"tables-classified":0}'), +(8065, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 09:00:00.008+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:00:00.03+00', 22, NULL), +(8066, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 09:00:00.007+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:00:00.03+00', 23, NULL), +(8067, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.009752+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.27997+00', 270, NULL), +(8068, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.00979+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.032218+00', 22, '{"timezone-id":"UTC"}'), +(8069, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.032282+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.045487+00', 13, '{"updated-tables":0,"total-tables":8}'), +(8070, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.045535+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.216236+00', 170, '{"total-fields":71,"updated-fields":0}'), +(8071, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.21629+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.223557+00', 7, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8072, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.223601+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.279927+00', 56, NULL), +(8073, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.290007+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.325598+00', 35, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8074, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.290028+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.313294+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8075, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.313351+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.318701+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(8076, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.318755+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:19:00.325402+00', 6, '{"total-tables":8,"tables-classified":0}'), +(8077, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.013498+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.624763+00', 611, NULL), +(8078, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.013525+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.014195+00', 0, '{"timezone-id":null}'), +(8079, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.01424+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.123263+00', 109, '{"updated-tables":0,"total-tables":4}'), +(8080, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.123312+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.62343+00', 500, '{"total-fields":38,"updated-fields":0}'), +(8081, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.623486+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.624465+00', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8082, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.624503+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.624747+00', 0, NULL), +(8083, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.637493+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.648864+00', 11, NULL), +(8084, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.637513+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.644641+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8085, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.644685+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.646395+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(8086, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.646434+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:49:00.648839+00', 2, '{"total-tables":4,"tables-classified":0}'), +(8087, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:00.017396+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.835777+00', 6818, NULL), +(8088, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:00.01757+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:00.018429+00', 0, '{"timezone-id":null}'), +(8089, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:00.018477+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:00.072872+00', 54, '{"updated-tables":0,"total-tables":26}'), +(8090, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:00.072947+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.773084+00', 6700, '{"total-fields":302,"updated-fields":0}'), +(8091, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.773219+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.835376+00', 62, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8092, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.835451+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.835757+00', 0, NULL), +(8093, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.853618+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.908457+00', 54, NULL), +(8094, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.853639+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.885539+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8095, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.885598+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.895836+00', 10, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8096, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.895895+00', TIMESTAMP WITH TIME ZONE '2022-12-29 09:56:06.908417+00', 12, '{"total-tables":26,"tables-classified":0}'), +(8097, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 10:00:00.006+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:00:00.014+00', 8, NULL), +(8098, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 10:00:00.02+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:00:00.028+00', 8, NULL), +(8099, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.0056+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.505122+00', 499, NULL), +(8100, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.005623+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.085307+00', 79, '{"timezone-id":"UTC"}'), +(8101, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.085375+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.114207+00', 28, '{"updated-tables":0,"total-tables":8}'), +(8102, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.114261+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.40378+00', 289, '{"total-fields":71,"updated-fields":0}'), +(8103, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.403863+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.420475+00', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8104, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.420538+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.504211+00', 83, NULL), +(8105, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.536741+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.578109+00', 41, NULL), +(8106, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.536764+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.565066+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8107, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.565159+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.572184+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(8108, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.572272+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.57795+00', 5, '{"total-tables":8,"tables-classified":0}'), +(8109, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.016418+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.619529+00', 603, NULL), +(8110, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.016447+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.016729+00', 0, '{"timezone-id":null}'), +(8111, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.016768+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.091211+00', 74, '{"updated-tables":0,"total-tables":4}'), +(8112, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.091293+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.618179+00', 526, '{"total-fields":38,"updated-fields":0}'), +(8113, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.61823+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.619127+00', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8114, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.61919+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.619511+00', 0, NULL), +(8115, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.633277+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.652438+00', 19, NULL), +(8116, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.633338+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.647682+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8117, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.64774+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.649813+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(8118, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.649905+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:49:00.652396+00', 2, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8119, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:00.011658+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.024436+00', 7012, NULL), +(8120, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:00.01168+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:00.012146+00', 0, '{"timezone-id":null}'), +(8121, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:00.01219+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:00.068429+00', 56, '{"updated-tables":0,"total-tables":26}'), +(8122, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:00.068481+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.016507+00', 6948, '{"total-fields":302,"updated-fields":0}'), +(8123, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.016614+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.023589+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8124, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.023759+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.02441+00', 0, NULL), +(8125, 'analyze', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.040118+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.133519+00', 93, NULL), +(8126, 'fingerprint-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.040308+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.099212+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8127, 'classify-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.099292+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.117063+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(8128, 'classify-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.117398+00', TIMESTAMP WITH TIME ZONE '2022-12-29 10:56:07.133424+00', 16, '{"total-tables":26,"tables-classified":0}'), +(8129, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 11:00:00.012+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:00:00.013+00', 1, NULL), +(8130, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 11:00:00.014+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:00:00.098+00', 84, NULL), +(8150, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:49.353349+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.283906+00', 930, NULL), +(8151, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:49.354744+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:49.527619+00', 172, '{"timezone-id":"UTC"}'), +(8152, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:49.528543+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:49.629445+00', 100, '{"updated-tables":0,"total-tables":8}'), +(8153, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:49.629635+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.108465+00', 478, '{"total-fields":71,"updated-fields":0}'), +(8154, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.10859+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.147674+00', 39, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8155, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.147953+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.283804+00', 135, NULL), +(8156, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.357021+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.437681+00', 80, NULL), +(8157, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.357078+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.403549+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8158, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.403667+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.41873+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(8159, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.418869+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:26:50.437546+00', 18, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8160, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.8558+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:10.097543+00', 4241, NULL), +(8161, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.855906+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.981462+00', 125, '{"deleted":0}'), +(8162, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.981583+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:10.097446+00', 4115, '{"errors":0,"created":0,"updated":28,"deleted":0}'), +(8163, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.285663+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.197327+00', 5911, NULL), +(8164, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.28571+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.286973+00', 1, '{"timezone-id":null}'), +(8165, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.287131+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.383387+00', 96, '{"updated-tables":0,"total-tables":4}'), +(8166, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:05.38354+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.191898+00', 5808, '{"total-fields":29,"updated-fields":17}'), +(8167, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.192009+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.195955+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8168, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.196057+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.197263+00', 1, NULL), +(8169, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.225767+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.268866+00', 43, NULL), +(8170, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.225817+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.252999+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8171, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.253142+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.260015+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(8172, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.260145+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:11.268776+00', 8, '{"total-tables":4,"tables-classified":0}'), +(8173, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:00.139428+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.459569+00', 10320, NULL), +(8174, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:00.140827+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:00.145306+00', 4, '{"timezone-id":null}'), +(8175, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:00.147083+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:00.499996+00', 352, '{"updated-tables":0,"total-tables":4}'), +(8176, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:00.500239+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.428687+00', 9928, '{"total-fields":29,"updated-fields":0}'), +(8177, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.428776+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.45625+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8178, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.456367+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.459514+00', 3, NULL), +(8179, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.602778+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.768327+00', 165, NULL), +(8180, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.602815+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.649205+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8181, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.64932+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.693519+00', 44, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(14, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoSecurityException","message":"Exception authenticating MongoCredential{mechanism=SCRAM-SHA-256, userName=''opencrvs-admin'', source=''admin'', password=, mechanismProperties={}}","at":["com.mongodb.internal.connection.SaslAuthenticator","wrapException","SaslAuthenticator.java",173]},{"type":"com.mongodb.MongoCommandException","message":"Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { \"ok\" : 0.0, \"errmsg\" : \"Authentication failed.\", \"code\" : 18, \"codeName\" : \"AuthenticationFailed\", \"$clusterTime\" : { \"clusterTime\" : { \"$timestamp\" : { \"t\" : 1672314958, \"i\" : 1 } }, \"signature\" : { \"hash\" : { \"$binary\" : \"adGxZFyozHgBxhA6KBgEgLXQPh4=\", \"$type\" : \"00\" }, \"keyId\" : { \"$numberLong\" : \"7149877279361859586\" } } }, \"operationTime\" : { \"$timestamp\" : { \"t\" : 1672314958, \"i\" : 1 } } }","at":["com.mongodb.internal.connection.ProtocolHelper","getCommandFailureException","ProtocolHelper.java",179]}],"trace":[["com.mongodb.internal.connection.ProtocolHelper","getCommandFailureException","ProtocolHelper.java",179],["com.mongodb.internal.connection.InternalStreamConnection","receiveCommandMessageResponse","InternalStreamConnection.java",299],["com.mongodb.internal.connection.InternalStreamConnection","sendAndReceive","InternalStreamConnection.java",255],["com.mongodb.internal.connection.CommandHelper","sendAndReceive","CommandHelper.java",83],["com.mongodb.internal.connection.CommandHelper","executeCommand","CommandHelper.java",33],["com.mongodb.internal.connection.SaslAuthenticator","sendSaslContinue","SaslAuthenticator.java",134],["com.mongodb.internal.connection.SaslAuthenticator","access$200","SaslAuthenticator.java",40],["com.mongodb.internal.connection.SaslAuthenticator$1","run","SaslAuthenticator.java",67],["com.mongodb.internal.connection.SaslAuthenticator$1","run","SaslAuthenticator.java",47],["com.mongodb.internal.connection.SaslAuthenticator","doAsSubject","SaslAuthenticator.java",179],["com.mongodb.internal.connection.SaslAuthenticator","authenticate","SaslAuthenticator.java",47],["com.mongodb.internal.connection.InternalStreamConnectionInitializer","authenticateAll","InternalStreamConnectionInitializer.java",151],["com.mongodb.internal.connection.InternalStreamConnectionInitializer","initialize","InternalStreamConnectionInitializer.java",64],["com.mongodb.internal.connection.InternalStreamConnection","open","InternalStreamConnection.java",127],["com.mongodb.internal.connection.UsageTrackingInternalConnection","open","UsageTrackingInternalConnection.java",50],["com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","open","DefaultConnectionPool.java",390],["com.mongodb.internal.connection.DefaultConnectionPool","get","DefaultConnectionPool.java",106],["com.mongodb.internal.connection.DefaultConnectionPool","get","DefaultConnectionPool.java",92],["com.mongodb.internal.connection.DefaultServer","getConnection","DefaultServer.java",85],["com.mongodb.binding.ClusterBinding$ClusterBindingConnectionSource","getConnection","ClusterBinding.java",115],["com.mongodb.client.internal.ClientSessionBinding$SessionBindingConnectionSource","getConnection","ClientSessionBinding.java",111],["com.mongodb.operation.OperationHelper","withConnectionSource","OperationHelper.java",460],["com.mongodb.operation.OperationHelper","withConnection","OperationHelper.java",406],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",206],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",82],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",179],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(14, 1, 'internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connection$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metab', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(14, 2, 'ase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { \"ok\" : 0.0, \"errmsg\" : \"Authentication failed.\", \"code\" : 18, \"codeName\" : \"AuthenticationFailed\", \"$clusterTime\" : { \"clusterTime\" : { \"$timestamp\" : { \"t\" : 1672314958, \"i\" : 1 } }, \"signature\" : { \"hash\" : { \"$binary\" : \"adGxZFyozHgBxhA6KBgEgLXQPh4=\", \"$type\" : \"00\" }, \"keyId\" : { \"$numberLong\" : \"7149877279361859586\" } } }, \"operationTime\" : { \"$timestamp\" : { \"t\" : 1672314958, \"i\" : 1 } } }"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8182, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.693633+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:49:10.767157+00', 73, '{"total-tables":4,"tables-classified":0}'), +(8183, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:00.078808+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:03.879401+00', 3800, NULL), +(8184, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:00.079335+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:00.081275+00', 1, '{"timezone-id":null}'), +(8185, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:00.081352+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:00.294532+00', 213, SYSTEM_COMBINE_CLOB(14)), +(8186, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:00.323424+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:03.856943+00', 3533, '{"total-fields":0,"updated-fields":500}'), +(8187, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:03.857044+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:03.877642+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8188, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:03.877835+00', TIMESTAMP WITH TIME ZONE '2022-12-29 11:56:03.879297+00', 1, NULL), +(8189, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 12:00:00.098+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:00:00.307+00', 209, NULL), +(8190, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 12:00:00.062+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:00:00.308+00', 246, NULL), +(8191, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.009815+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.255742+00', 1245, NULL), +(8192, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.009841+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.060639+00', 50, '{"timezone-id":"UTC"}'), +(8193, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.060756+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.097018+00', 36, '{"updated-tables":0,"total-tables":8}'), +(8194, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.09709+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.873458+00', 776, '{"total-fields":71,"updated-fields":0}'), +(8195, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:00.873533+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.007639+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8196, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.007717+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.255701+00', 247, NULL), +(8197, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.30769+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.356971+00', 49, NULL), +(8198, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.30772+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.334701+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8199, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.33479+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.34137+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(8200, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.341441+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:19:01.356912+00', 15, '{"total-tables":8,"tables-classified":0}'), +(8201, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:00.044739+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.288805+00', 7244, NULL), +(8202, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:00.044774+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:00.045556+00', 0, '{"timezone-id":null}'), +(8203, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:00.045645+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:00.130511+00', 84, '{"updated-tables":0,"total-tables":4}'), +(8204, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:00.130581+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.285745+00', 7155, '{"total-fields":29,"updated-fields":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(15, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoSecurityException","message":"Exception authenticating MongoCredential{mechanism=SCRAM-SHA-256, userName=''opencrvs-admin'', source=''admin'', password=, mechanismProperties={}}","at":["com.mongodb.internal.connection.SaslAuthenticator","wrapException","SaslAuthenticator.java",173]},{"type":"com.mongodb.MongoCommandException","message":"Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { \"ok\" : 0.0, \"errmsg\" : \"Authentication failed.\", \"code\" : 18, \"codeName\" : \"AuthenticationFailed\", \"$clusterTime\" : { \"clusterTime\" : { \"$timestamp\" : { \"t\" : 1672318558, \"i\" : 1 } }, \"signature\" : { \"hash\" : { \"$binary\" : \"K7lLcaE8NGHBOsxIl7DJ9l/pP00=\", \"$type\" : \"00\" }, \"keyId\" : { \"$numberLong\" : \"7149877279361859586\" } } }, \"operationTime\" : { \"$timestamp\" : { \"t\" : 1672318558, \"i\" : 1 } } }","at":["com.mongodb.internal.connection.ProtocolHelper","getCommandFailureException","ProtocolHelper.java",179]}],"trace":[["com.mongodb.internal.connection.ProtocolHelper","getCommandFailureException","ProtocolHelper.java",179],["com.mongodb.internal.connection.InternalStreamConnection","receiveCommandMessageResponse","InternalStreamConnection.java",299],["com.mongodb.internal.connection.InternalStreamConnection","sendAndReceive","InternalStreamConnection.java",255],["com.mongodb.internal.connection.CommandHelper","sendAndReceive","CommandHelper.java",83],["com.mongodb.internal.connection.CommandHelper","executeCommand","CommandHelper.java",33],["com.mongodb.internal.connection.SaslAuthenticator","sendSaslContinue","SaslAuthenticator.java",134],["com.mongodb.internal.connection.SaslAuthenticator","access$200","SaslAuthenticator.java",40],["com.mongodb.internal.connection.SaslAuthenticator$1","run","SaslAuthenticator.java",67],["com.mongodb.internal.connection.SaslAuthenticator$1","run","SaslAuthenticator.java",47],["com.mongodb.internal.connection.SaslAuthenticator","doAsSubject","SaslAuthenticator.java",179],["com.mongodb.internal.connection.SaslAuthenticator","authenticate","SaslAuthenticator.java",47],["com.mongodb.internal.connection.InternalStreamConnectionInitializer","authenticateAll","InternalStreamConnectionInitializer.java",151],["com.mongodb.internal.connection.InternalStreamConnectionInitializer","initialize","InternalStreamConnectionInitializer.java",64],["com.mongodb.internal.connection.InternalStreamConnection","open","InternalStreamConnection.java",127],["com.mongodb.internal.connection.UsageTrackingInternalConnection","open","UsageTrackingInternalConnection.java",50],["com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","open","DefaultConnectionPool.java",390],["com.mongodb.internal.connection.DefaultConnectionPool","get","DefaultConnectionPool.java",106],["com.mongodb.internal.connection.DefaultConnectionPool","get","DefaultConnectionPool.java",92],["com.mongodb.internal.connection.DefaultServer","getConnection","DefaultServer.java",85],["com.mongodb.binding.ClusterBinding$ClusterBindingConnectionSource","getConnection","ClusterBinding.java",115],["com.mongodb.client.internal.ClientSessionBinding$SessionBindingConnectionSource","getConnection","ClientSessionBinding.java",111],["com.mongodb.operation.OperationHelper","withConnectionSource","OperationHelper.java",460],["com.mongodb.operation.OperationHelper","withConnection","OperationHelper.java",406],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",206],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",82],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",179],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(15, 1, 'internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connection$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metab', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(15, 2, 'ase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { \"ok\" : 0.0, \"errmsg\" : \"Authentication failed.\", \"code\" : 18, \"codeName\" : \"AuthenticationFailed\", \"$clusterTime\" : { \"clusterTime\" : { \"$timestamp\" : { \"t\" : 1672318558, \"i\" : 1 } }, \"signature\" : { \"hash\" : { \"$binary\" : \"K7lLcaE8NGHBOsxIl7DJ9l/pP00=\", \"$type\" : \"00\" }, \"keyId\" : { \"$numberLong\" : \"7149877279361859586\" } } }, \"operationTime\" : { \"$timestamp\" : { \"t\" : 1672318558, \"i\" : 1 } } }"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8205, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.286031+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.287614+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8206, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.287793+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.288777+00', 0, NULL), +(8207, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.308896+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.328762+00', 19, NULL), +(8208, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.308922+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.320893+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8209, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.321016+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.324279+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(8210, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.324403+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:49:07.328673+00', 4, '{"total-tables":4,"tables-classified":0}'), +(8211, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.019618+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.447625+00', 428, NULL), +(8212, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.019652+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.020639+00', 0, '{"timezone-id":null}'), +(8213, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.020714+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.089631+00', 68, SYSTEM_COMBINE_CLOB(15)), +(8214, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.09078+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.442727+00', 351, '{"total-fields":0,"updated-fields":0}'), +(8215, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.442802+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.446816+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8216, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.446911+00', TIMESTAMP WITH TIME ZONE '2022-12-29 12:56:00.447578+00', 0, NULL), +(8217, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.119+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.236+00', 117, NULL), +(8218, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.1+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.236+00', 136, NULL), +(8219, 'field values scanning', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.103867+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.292328+00', 188, NULL), +(8220, 'delete-expired-advanced-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.103896+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.259757+00', 155, '{"deleted":0}'), +(8221, 'update-field-values', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.260129+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:00:00.29225+00', 32, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(8222, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:00.401769+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.075423+00', 3673, NULL), +(8223, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:00.404017+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:00.757629+00', 353, '{"timezone-id":"UTC"}'), +(8224, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:00.760623+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:01.032928+00', 272, '{"updated-tables":0,"total-tables":8}'), +(8225, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:01.033468+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:03.337184+00', 2303, '{"total-fields":71,"updated-fields":0}'), +(8226, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:03.337506+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:03.470051+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8227, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:03.470204+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.075378+00', 605, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(16, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoSecurityException","message":"Exception authenticating MongoCredential{mechanism=SCRAM-SHA-256, userName=''opencrvs-admin'', source=''admin'', password=, mechanismProperties={}}","at":["com.mongodb.internal.connection.SaslAuthenticator","wrapException","SaslAuthenticator.java",173]},{"type":"com.mongodb.MongoCommandException","message":"Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { \"ok\" : 0.0, \"errmsg\" : \"Authentication failed.\", \"code\" : 18, \"codeName\" : \"AuthenticationFailed\", \"$clusterTime\" : { \"clusterTime\" : { \"$timestamp\" : { \"t\" : 1672322158, \"i\" : 1 } }, \"signature\" : { \"hash\" : { \"$binary\" : \"1nqR0viw5NhFtXqSIzQfnNX7z1s=\", \"$type\" : \"00\" }, \"keyId\" : { \"$numberLong\" : \"7149877279361859586\" } } }, \"operationTime\" : { \"$timestamp\" : { \"t\" : 1672322158, \"i\" : 1 } } }","at":["com.mongodb.internal.connection.ProtocolHelper","getCommandFailureException","ProtocolHelper.java",179]}],"trace":[["com.mongodb.internal.connection.ProtocolHelper","getCommandFailureException","ProtocolHelper.java",179],["com.mongodb.internal.connection.InternalStreamConnection","receiveCommandMessageResponse","InternalStreamConnection.java",299],["com.mongodb.internal.connection.InternalStreamConnection","sendAndReceive","InternalStreamConnection.java",255],["com.mongodb.internal.connection.CommandHelper","sendAndReceive","CommandHelper.java",83],["com.mongodb.internal.connection.CommandHelper","executeCommand","CommandHelper.java",33],["com.mongodb.internal.connection.SaslAuthenticator","sendSaslContinue","SaslAuthenticator.java",134],["com.mongodb.internal.connection.SaslAuthenticator","access$200","SaslAuthenticator.java",40],["com.mongodb.internal.connection.SaslAuthenticator$1","run","SaslAuthenticator.java",67],["com.mongodb.internal.connection.SaslAuthenticator$1","run","SaslAuthenticator.java",47],["com.mongodb.internal.connection.SaslAuthenticator","doAsSubject","SaslAuthenticator.java",179],["com.mongodb.internal.connection.SaslAuthenticator","authenticate","SaslAuthenticator.java",47],["com.mongodb.internal.connection.InternalStreamConnectionInitializer","authenticateAll","InternalStreamConnectionInitializer.java",151],["com.mongodb.internal.connection.InternalStreamConnectionInitializer","initialize","InternalStreamConnectionInitializer.java",64],["com.mongodb.internal.connection.InternalStreamConnection","open","InternalStreamConnection.java",127],["com.mongodb.internal.connection.UsageTrackingInternalConnection","open","UsageTrackingInternalConnection.java",50],["com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","open","DefaultConnectionPool.java",390],["com.mongodb.internal.connection.DefaultConnectionPool","get","DefaultConnectionPool.java",106],["com.mongodb.internal.connection.DefaultConnectionPool","get","DefaultConnectionPool.java",92],["com.mongodb.internal.connection.DefaultServer","getConnection","DefaultServer.java",85],["com.mongodb.binding.ClusterBinding$ClusterBindingConnectionSource","getConnection","ClusterBinding.java",115],["com.mongodb.client.internal.ClientSessionBinding$SessionBindingConnectionSource","getConnection","ClientSessionBinding.java",111],["com.mongodb.operation.OperationHelper","withConnectionSource","OperationHelper.java",460],["com.mongodb.operation.OperationHelper","withConnection","OperationHelper.java",406],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",206],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",82],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",179],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(16, 1, 'internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connection$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metab', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(16, 2, 'ase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { \"ok\" : 0.0, \"errmsg\" : \"Authentication failed.\", \"code\" : 18, \"codeName\" : \"AuthenticationFailed\", \"$clusterTime\" : { \"clusterTime\" : { \"$timestamp\" : { \"t\" : 1672322158, \"i\" : 1 } }, \"signature\" : { \"hash\" : { \"$binary\" : \"1nqR0viw5NhFtXqSIzQfnNX7z1s=\", \"$type\" : \"00\" }, \"keyId\" : { \"$numberLong\" : \"7149877279361859586\" } } }, \"operationTime\" : { \"$timestamp\" : { \"t\" : 1672322158, \"i\" : 1 } } }"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8228, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.279363+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.460885+00', 181, NULL), +(8229, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.279431+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.422942+00', 143, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8230, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.423105+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.441423+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(8231, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.441514+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:19:04.460815+00', 19, '{"total-tables":8,"tables-classified":0}'), +(8232, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:00.043157+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.384633+00', 5341, NULL), +(8233, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:00.043535+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:00.045413+00', 1, '{"timezone-id":null}'), +(8234, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:00.046022+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:00.104043+00', 58, '{"updated-tables":0,"total-tables":4}'), +(8235, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:00.104116+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.258166+00', 5154, '{"total-fields":30,"updated-fields":2}'), +(8236, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.258382+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.382193+00', 123, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8237, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.382393+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.38457+00', 2, NULL), +(8238, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.407001+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.887931+00', 480, NULL), +(8239, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.407031+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.843772+00', 436, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":1,"fingerprints-attempted":1}'), +(8240, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.843846+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.880572+00', 36, '{"fields-classified":1,"fields-failed":0}'), +(8241, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.880672+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:49:05.887874+00', 7, '{"total-tables":4,"tables-classified":0}'), +(8242, 'sync', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.029364+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.31234+00', 282, NULL), +(8243, 'sync-timezone', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.029403+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.031421+00', 2, '{"timezone-id":null}'), +(8244, 'sync-tables', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.031667+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.082064+00', 50, SYSTEM_COMBINE_CLOB(16)), +(8245, 'sync-fields', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.082844+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.307979+00', 225, '{"total-fields":0,"updated-fields":0}'), +(8246, 'sync-fks', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.308045+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.31187+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8247, 'sync-metabase-metadata', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.311938+00', TIMESTAMP WITH TIME ZONE '2022-12-29 13:56:00.312313+00', 0, NULL), +(8248, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 14:00:00.056+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:00:00.178+00', 122, NULL), +(8249, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 14:00:00.047+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:00:00.178+00', 131, NULL), +(8250, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.03852+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.744153+00', 705, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8251, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.039056+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.115619+00', 76, '{"timezone-id":"UTC"}'), +(8252, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.116279+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.163483+00', 47, '{"updated-tables":0,"total-tables":8}'), +(8253, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.163772+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.465327+00', 301, '{"total-fields":71,"updated-fields":0}'), +(8254, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.465626+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.502404+00', 36, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8255, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.502697+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.740071+00', 237, NULL), +(8256, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.800839+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.908723+00', 107, NULL), +(8257, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.800874+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.878188+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8258, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.878283+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.890214+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(8259, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.890322+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:19:00.908663+00', 18, '{"total-tables":8,"tables-classified":0}'), +(8260, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:01.829322+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:16.054362+00', 14225, NULL), +(8261, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:01.840839+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:01.903454+00', 62, '{"timezone-id":null}'), +(8262, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:01.912932+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:02.755782+00', 842, '{"updated-tables":0,"total-tables":4}'), +(8263, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:02.756158+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:16.043747+00', 13287, '{"total-fields":30,"updated-fields":0}'), +(8264, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:16.043894+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:16.050561+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8265, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:16.050695+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:16.054304+00', 3, NULL), +(8266, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.082253+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.271307+00', 189, NULL), +(8267, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.082554+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.22309+00', 140, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8268, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.223434+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.254916+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(8269, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.255218+00', TIMESTAMP WITH TIME ZONE '2022-12-29 14:49:17.271088+00', 15, '{"total-tables":4,"tables-classified":0}'), +(8270, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 15:00:00.204+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:00:01.049+00', 845, NULL), +(8271, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 15:00:00.187+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:00:01.233+00', 1046, NULL), +(8272, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.026645+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.39913+00', 372, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8273, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.02668+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.092502+00', 65, '{"timezone-id":"UTC"}'), +(8274, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.09314+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.171704+00', 78, '{"updated-tables":0,"total-tables":8}'), +(8275, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.171827+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.3315+00', 159, '{"total-fields":71,"updated-fields":0}'), +(8276, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.33164+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.342381+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8277, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.342512+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.399086+00', 56, NULL), +(8278, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.413838+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.4385+00', 24, NULL), +(8279, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.413863+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.429474+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8280, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.429611+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.433982+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(8281, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.434082+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:19:00.438427+00', 4, '{"total-tables":8,"tables-classified":0}'), +(8282, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:00.043193+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.339322+00', 6296, NULL), +(8283, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:00.043229+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:00.04426+00', 1, '{"timezone-id":null}'), +(8284, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:00.048359+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:00.141379+00', 93, '{"updated-tables":0,"total-tables":4}'), +(8285, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:00.141449+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.336658+00', 6195, '{"total-fields":30,"updated-fields":0}'), +(8286, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.336923+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.338478+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8287, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.338683+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.339285+00', 0, NULL), +(8288, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.360404+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.380881+00', 20, NULL), +(8289, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.360448+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.372877+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8290, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.372993+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.376581+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(8291, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.37669+00', TIMESTAMP WITH TIME ZONE '2022-12-29 15:49:06.38083+00', 4, '{"total-tables":4,"tables-classified":0}'), +(8292, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 16:00:00.191+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:00:00.533+00', 342, NULL), +(8293, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 16:00:00.209+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:00:00.531+00', 322, NULL), +(8294, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:00.065944+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.311865+00', 2245, NULL), +(8295, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:00.06598+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:00.140262+00', 74, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8296, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:00.140767+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:00.226232+00', 85, '{"updated-tables":0,"total-tables":8}'), +(8297, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:00.226493+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.123656+00', 1897, '{"total-fields":71,"updated-fields":0}'), +(8298, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.123729+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.139135+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8299, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.139212+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.311814+00', 172, NULL), +(8300, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.327229+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.372761+00', 45, NULL), +(8301, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.327254+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.362137+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8302, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.362217+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.368249+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(8303, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.368328+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:19:02.372707+00', 4, '{"total-tables":8,"tables-classified":0}'), +(8304, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:00.031313+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.057333+00', 8026, NULL), +(8305, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:00.031361+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:00.03298+00', 1, '{"timezone-id":null}'), +(8306, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:00.033098+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:00.15391+00', 120, '{"updated-tables":0,"total-tables":4}'), +(8307, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:00.153996+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.054961+00', 7900, '{"total-fields":30,"updated-fields":0}'), +(8308, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.055122+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.056628+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8309, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.056779+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.05728+00', 0, NULL), +(8310, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.083054+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.1051+00', 22, NULL), +(8311, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.083081+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.093343+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8312, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.093462+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.09656+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(8313, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.096661+00', TIMESTAMP WITH TIME ZONE '2022-12-29 16:49:08.105001+00', 8, '{"total-tables":4,"tables-classified":0}'), +(8314, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 17:00:01.004+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:00:01.686+00', 682, NULL), +(8315, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 17:00:01.004+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:00:01.689+00', 685, NULL), +(8316, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:01.286676+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.293409+00', 11006, NULL), +(8317, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:01.28932+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:02.093531+00', 804, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8318, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:02.098676+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:02.44149+00', 342, '{"updated-tables":0,"total-tables":8}'), +(8319, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:02.44179+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:10.094929+00', 7653, '{"total-fields":71,"updated-fields":0}'), +(8320, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:10.095417+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:10.273278+00', 177, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8321, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:10.273407+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.293281+00', 2019, NULL), +(8322, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.610664+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.749482+00', 138, NULL), +(8323, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.610693+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.721605+00', 110, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8324, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.721895+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.734235+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(8325, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.734393+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:19:12.74919+00', 14, '{"total-tables":8,"tables-classified":0}'), +(8326, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:02.301024+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.168718+00', 30867, NULL), +(8327, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:02.307302+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:02.490536+00', 183, '{"timezone-id":null}'), +(8328, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:02.505264+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:04.150954+00', 1645, '{"updated-tables":0,"total-tables":4}'), +(8329, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:04.151092+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.150143+00', 28999, '{"total-fields":30,"updated-fields":0}'), +(8330, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.153051+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.164246+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8331, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.164382+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.168664+00', 4, NULL), +(8332, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.3352+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.535952+00', 200, NULL), +(8333, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.335232+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.454552+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8334, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.455375+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.490644+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(8335, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.491433+00', TIMESTAMP WITH TIME ZONE '2022-12-29 17:49:33.535862+00', 44, '{"total-tables":4,"tables-classified":0}'), +(8336, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 18:00:00.303+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:00:00.919+00', 616, NULL), +(8337, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 18:00:00.303+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:00:01.106+00', 803, NULL), +(8338, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:00.095327+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.786779+00', 2691, NULL), +(8339, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:00.095383+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:00.234075+00', 138, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8340, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:00.234192+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:00.407428+00', 173, '{"updated-tables":0,"total-tables":8}'), +(8341, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:00.407554+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.330432+00', 1922, '{"total-fields":71,"updated-fields":0}'), +(8342, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.330593+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.474066+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8343, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.474183+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.786728+00', 312, NULL), +(8344, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.827559+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.881786+00', 54, NULL), +(8345, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.827591+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.860535+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8346, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.860625+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.867673+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(8347, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.867852+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:02.88158+00', 13, '{"total-tables":8,"tables-classified":0}'), +(8348, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:13.333011+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:30.459064+00', 17126, NULL), +(8349, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:13.346745+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:13.719985+00', 373, '{"timezone-id":null}'), +(8350, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:13.738256+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:16.837928+00', 3099, '{"updated-tables":0,"total-tables":4}'), +(8351, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:16.838553+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:30.303398+00', 13464, '{"total-fields":30,"updated-fields":0}'), +(8352, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:30.309617+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:30.441349+00', 131, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8353, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:30.441536+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:30.458948+00', 17, NULL), +(8354, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:31.779816+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:32.37601+00', 596, NULL), +(8355, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:31.779885+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:32.116867+00', 336, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8356, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:32.117018+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:32.189658+00', 72, '{"fields-classified":0,"fields-failed":0}'), +(8357, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:32.190394+00', TIMESTAMP WITH TIME ZONE '2022-12-29 18:49:32.375817+00', 185, '{"total-tables":4,"tables-classified":0}'), +(8358, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 19:00:01.126+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:00:02.522+00', 1396, NULL), +(8359, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 19:00:01.126+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:00:03.194+00', 2068, NULL), +(8360, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:01.528023+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:15.471786+00', 13943, NULL), +(8361, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:01.536838+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:07.582725+00', 6045, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8362, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:07.584119+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:09.105806+00', 1521, '{"updated-tables":0,"total-tables":8}'), +(8363, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:09.112709+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:12.42302+00', 3310, '{"total-fields":71,"updated-fields":0}'), +(8364, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:12.423341+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:12.825035+00', 401, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8365, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:12.832302+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:15.471662+00', 2639, NULL), +(8366, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.092219+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.269632+00', 177, NULL), +(8367, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.092303+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.205755+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8368, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.205889+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.231052+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(8369, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.231167+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:19:16.269243+00', 38, '{"total-tables":8,"tables-classified":0}'), +(8370, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:01.599735+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.68571+00', 13085, NULL), +(8371, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:01.613407+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:01.655393+00', 41, '{"timezone-id":null}'), +(8372, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:01.65859+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:02.52672+00', 868, '{"updated-tables":0,"total-tables":4}'), +(8373, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:02.527062+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.644914+00', 12117, '{"total-fields":30,"updated-fields":0}'), +(8374, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.645156+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.667019+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8375, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.66994+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.679559+00', 9, NULL), +(8376, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.854823+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:15.09132+00', 236, NULL), +(8377, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:14.854887+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:15.004246+00', 149, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8378, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:15.005993+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:15.041952+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(8379, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:15.042739+00', TIMESTAMP WITH TIME ZONE '2022-12-29 19:49:15.091222+00', 48, '{"total-tables":4,"tables-classified":0}'), +(8380, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 20:00:00.187+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:00:00.694+00', 507, NULL), +(8381, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 20:00:00.176+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:00:01.046+00', 870, NULL), +(8382, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:01.40154+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:12.844466+00', 11442, NULL), +(8383, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:01.436312+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:01.897133+00', 460, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8384, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:01.902145+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:02.377528+00', 475, '{"updated-tables":0,"total-tables":8}'), +(8385, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:02.378122+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:10.276151+00', 7898, '{"total-fields":71,"updated-fields":0}'), +(8386, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:10.287416+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:10.644655+00', 357, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8387, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:10.648521+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:12.844326+00', 2195, NULL), +(8388, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:13.512726+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:14.155988+00', 643, NULL), +(8389, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:13.513046+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:13.973825+00', 460, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8390, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:13.974636+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:14.065135+00', 90, '{"fields-classified":0,"fields-failed":0}'), +(8391, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:14.065285+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:19:14.155022+00', 89, '{"total-tables":8,"tables-classified":0}'), +(8392, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:02.26907+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.258521+00', 14989, NULL), +(8393, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:02.278371+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:02.475781+00', 197, '{"timezone-id":null}'), +(8394, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:02.481904+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:03.265804+00', 783, '{"updated-tables":0,"total-tables":4}'), +(8395, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:03.266234+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.20277+00', 13936, '{"total-fields":30,"updated-fields":0}'), +(8396, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.204096+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.244214+00', 40, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8397, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.244371+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.258425+00', 14, NULL), +(8398, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.663635+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.838187+00', 174, NULL), +(8399, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.663694+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.74111+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8400, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.741241+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.752567+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(8401, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.752671+00', TIMESTAMP WITH TIME ZONE '2022-12-29 20:49:17.838082+00', 85, '{"total-tables":4,"tables-classified":0}'), +(8402, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:00.685+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:01.425+00', 740, NULL), +(8403, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:00.654+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:01.519+00', 865, NULL), +(8404, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:02.121048+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:15.121447+00', 13000, NULL), +(8405, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:02.135539+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:05.179067+00', 3043, '{"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8406, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:05.181666+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:00:15.121118+00', 9939, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(8407, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:01.232083+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:09.858517+00', 8626, NULL), +(8408, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:01.24237+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:01.80859+00', 566, '{"timezone-id":"UTC"}'), +(8409, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:01.810698+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:02.592232+00', 781, '{"updated-tables":0,"total-tables":8}'), +(8410, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:02.592764+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:06.738349+00', 4145, '{"total-fields":71,"updated-fields":0}'), +(8411, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:06.738584+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:06.890764+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8412, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:06.890938+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:09.858445+00', 2967, NULL), +(8413, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.14727+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.666335+00', 519, NULL), +(8414, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.147457+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.423269+00', 275, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8415, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.423479+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.539514+00', 116, '{"fields-classified":0,"fields-failed":0}'), +(8416, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.5399+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:19:10.666228+00', 126, '{"total-tables":8,"tables-classified":0}'), +(8417, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:01.354755+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:16.74769+00', 15392, NULL), +(8418, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:01.362755+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:01.429974+00', 67, '{"timezone-id":null}'), +(8419, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:01.43287+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:02.171725+00', 738, '{"updated-tables":0,"total-tables":4}'), +(8420, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:02.172087+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:16.721635+00', 14549, '{"total-fields":30,"updated-fields":0}'), +(8421, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:16.723481+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:16.74099+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8422, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:16.741407+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:16.747594+00', 6, NULL), +(8423, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.099912+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.4937+00', 393, NULL), +(8424, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.099982+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.391449+00', 291, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8425, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.391674+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.420379+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(8426, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.42063+00', TIMESTAMP WITH TIME ZONE '2022-12-29 21:49:17.491094+00', 70, '{"total-tables":4,"tables-classified":0}'), +(8427, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 22:00:00.261+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:00:01.671+00', 1410, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8428, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 22:00:00.229+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:00:02.09+00', 1861, NULL), +(8429, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:01.037337+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.200786+00', 4163, NULL), +(8430, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:01.0447+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:01.661432+00', 616, '{"timezone-id":"UTC"}'), +(8431, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:01.663928+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:02.141247+00', 477, '{"updated-tables":0,"total-tables":8}'), +(8432, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:02.141562+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:04.590959+00', 2449, '{"total-fields":71,"updated-fields":0}'), +(8433, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:04.591897+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:04.693101+00', 101, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8434, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:04.693413+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.200508+00', 507, NULL), +(8435, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.447815+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.724107+00', 276, NULL), +(8436, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.447869+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.623496+00', 175, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8437, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.623614+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.663991+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(8438, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.664353+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:19:05.723862+00', 59, '{"total-tables":8,"tables-classified":0}'), +(8439, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:01.820763+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.343341+00', 19522, NULL), +(8440, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:01.830255+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:02.004708+00', 174, '{"timezone-id":null}'), +(8441, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:02.022018+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:02.855443+00', 833, '{"updated-tables":0,"total-tables":4}'), +(8442, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:02.855828+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.324293+00', 18468, '{"total-fields":30,"updated-fields":0}'), +(8443, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.326605+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.33842+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8444, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.338691+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.343147+00', 4, NULL), +(8445, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.673173+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.933488+00', 260, NULL), +(8446, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.673228+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.786085+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8447, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.786205+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.843894+00', 57, '{"fields-classified":0,"fields-failed":0}'), +(8448, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.844051+00', TIMESTAMP WITH TIME ZONE '2022-12-29 22:49:21.933389+00', 89, '{"total-tables":4,"tables-classified":0}'), +(8449, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 23:00:00.314+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:00:00.935+00', 621, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8450, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-29 23:00:00.275+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:00:01.196+00', 921, NULL), +(8451, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:02.097809+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:08.514618+00', 6416, NULL), +(8452, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:02.122381+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:02.634806+00', 512, '{"timezone-id":"UTC"}'), +(8453, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:02.637331+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:02.989588+00', 352, '{"updated-tables":0,"total-tables":8}'), +(8454, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:02.989984+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:07.393866+00', 4403, '{"total-fields":71,"updated-fields":0}'), +(8455, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:07.393966+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:07.533064+00', 139, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8456, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:07.533414+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:08.514231+00', 980, NULL), +(8457, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.085344+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.771667+00', 686, NULL), +(8458, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.085485+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.603801+00', 518, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8459, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.604138+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.686573+00', 82, '{"fields-classified":0,"fields-failed":0}'), +(8460, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.68674+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:19:09.771559+00', 84, '{"total-tables":8,"tables-classified":0}'), +(8461, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:01.524277+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:16.658228+00', 15133, NULL), +(8462, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:01.531172+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:01.573771+00', 42, '{"timezone-id":null}'), +(8463, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:01.577358+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:02.324555+00', 747, '{"updated-tables":0,"total-tables":4}'), +(8464, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:02.325013+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:16.617002+00', 14291, '{"total-fields":30,"updated-fields":0}'), +(8465, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:16.617236+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:16.644912+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8466, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:16.645019+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:16.658134+00', 13, NULL), +(8467, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.077918+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.263766+00', 185, NULL), +(8468, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.07797+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.202425+00', 124, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8469, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.202515+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.214301+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(8470, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.214401+00', TIMESTAMP WITH TIME ZONE '2022-12-29 23:49:17.263656+00', 49, '{"total-tables":4,"tables-classified":0}'), +(8471, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 00:00:00.421+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:00:01.445+00', 1024, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8472, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 00:00:00.323+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:00:02.433+00', 2110, NULL), +(8473, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:03.491524+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:18.118164+00', 14626, NULL), +(8474, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:03.517828+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:08.182962+00', 4665, '{"timezone-id":"UTC"}'), +(8475, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:08.189585+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:12.478175+00', 4288, '{"updated-tables":0,"total-tables":8}'), +(8476, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:12.479529+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:17.28792+00', 4808, '{"total-fields":71,"updated-fields":0}'), +(8477, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:17.288712+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:17.498246+00', 209, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8478, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:17.498488+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:18.118072+00', 619, NULL), +(8479, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:18.912301+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:19.516662+00', 604, NULL), +(8480, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:18.913493+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:19.152368+00', 238, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8481, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:19.15259+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:19.243858+00', 91, '{"fields-classified":0,"fields-failed":0}'), +(8482, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:19.244+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:19:19.515461+00', 271, '{"total-tables":8,"tables-classified":0}'), +(8483, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:08.184818+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:20.947981+00', 12763, NULL), +(8484, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:08.190591+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:08.284225+00', 93, '{"timezone-id":null}'), +(8485, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:08.288051+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:09.538121+00', 1250, '{"updated-tables":0,"total-tables":4}'), +(8486, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:09.538475+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:20.934716+00', 11396, '{"total-fields":30,"updated-fields":0}'), +(8487, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:20.93488+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:20.944253+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8488, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:20.944394+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:20.94791+00', 3, NULL), +(8489, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.437842+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.576121+00', 138, NULL), +(8490, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.437951+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.531412+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8491, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.531614+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.553327+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(8492, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.553451+00', TIMESTAMP WITH TIME ZONE '2022-12-30 00:49:21.575992+00', 22, '{"total-tables":4,"tables-classified":0}'), +(8493, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 01:00:04.015+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:00:06.199+00', 2184, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8494, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 01:00:04.015+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:00:06.993+00', 2978, NULL), +(8495, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:03.273378+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:11.681014+00', 8407, NULL), +(8496, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:03.297678+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:03.740574+00', 442, '{"timezone-id":"UTC"}'), +(8497, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:03.743258+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:04.715711+00', 972, '{"updated-tables":0,"total-tables":8}'), +(8498, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:04.716149+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:11.139622+00', 6423, '{"total-fields":71,"updated-fields":0}'), +(8499, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:11.14019+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:11.326828+00', 186, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8500, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:11.326978+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:11.680856+00', 353, NULL), +(8501, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.150259+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.427569+00', 277, NULL), +(8502, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.150564+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.33081+00', 180, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8503, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.330933+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.375207+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(8504, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.375418+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:19:12.427471+00', 52, '{"total-tables":8,"tables-classified":0}'), +(8505, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:01.868853+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:25.624958+00', 23756, NULL), +(8506, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:01.877635+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:01.917417+00', 39, '{"timezone-id":null}'), +(8507, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:01.921388+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:03.01898+00', 1097, '{"updated-tables":0,"total-tables":4}'), +(8508, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:03.019426+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:25.565506+00', 22546, '{"total-fields":30,"updated-fields":0}'), +(8509, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:25.576643+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:25.613233+00', 36, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8510, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:25.613727+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:25.624821+00', 11, NULL), +(8511, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:26.352941+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:27.012056+00', 659, NULL), +(8512, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:26.353038+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:26.77311+00', 420, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8513, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:26.773325+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:26.79739+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(8514, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:26.797521+00', TIMESTAMP WITH TIME ZONE '2022-12-30 01:49:27.011905+00', 214, '{"total-tables":4,"tables-classified":0}'), +(8515, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:03.818+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:06.825+00', 3007, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8516, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:03.725+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:06.826+00', 3101, NULL), +(8517, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:07.956088+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:24.900778+00', 16944, NULL), +(8518, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:07.958562+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:11.191514+00', 3232, '{"deleted":0}'), +(8519, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:11.192745+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:00:24.900615+00', 13707, '{"errors":0,"created":0,"updated":4,"deleted":0}'), +(8520, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:01.088174+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:07.172361+00', 6084, NULL), +(8521, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:01.099111+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:01.607093+00', 507, '{"timezone-id":"UTC"}'), +(8522, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:01.610481+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:02.300227+00', 689, '{"updated-tables":0,"total-tables":8}'), +(8523, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:02.300665+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:06.305381+00', 4004, '{"total-fields":71,"updated-fields":0}'), +(8524, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:06.305561+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:06.454125+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8525, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:06.455886+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:07.172111+00', 716, NULL), +(8526, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:07.600476+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:08.206086+00', 605, NULL), +(8527, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:07.600559+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:07.898726+00', 298, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8528, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:07.898865+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:08.124263+00', 225, '{"fields-classified":0,"fields-failed":0}'), +(8529, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:08.124685+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:19:08.205767+00', 81, '{"total-tables":8,"tables-classified":0}'), +(8530, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:01.760694+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:16.865321+00', 15104, NULL), +(8531, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:01.771177+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:01.834831+00', 63, '{"timezone-id":null}'), +(8532, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:01.873358+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:03.405584+00', 1532, '{"updated-tables":0,"total-tables":4}'), +(8533, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:03.40595+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:16.841124+00', 13435, '{"total-fields":30,"updated-fields":0}'), +(8534, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:16.841328+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:16.856193+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8535, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:16.8563+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:16.865214+00', 8, NULL), +(8536, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.05502+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.165682+00', 110, NULL), +(8537, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.05509+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.130691+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8538, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.130803+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.145323+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(8539, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.145434+00', TIMESTAMP WITH TIME ZONE '2022-12-30 02:49:17.165587+00', 20, '{"total-tables":4,"tables-classified":0}'), +(8540, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 03:00:00.332+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:00:01.007+00', 675, NULL), +(8541, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 03:00:00.251+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:00:03.953+00', 3702, NULL), +(8542, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:02.588303+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:18.1807+00', 15592, NULL), +(8543, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:02.636734+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:03.207578+00', 570, '{"timezone-id":"UTC"}'), +(8544, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:03.218595+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:04.054406+00', 835, '{"updated-tables":0,"total-tables":8}'), +(8545, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:04.054577+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:10.47177+00', 6417, '{"total-fields":71,"updated-fields":0}'), +(8546, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:10.471958+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:11.013601+00', 541, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8547, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:11.01402+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:18.180588+00', 7166, NULL), +(8548, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.138949+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.804487+00', 665, NULL), +(8549, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.13903+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.442291+00', 303, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8550, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.443021+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.53609+00', 93, '{"fields-classified":0,"fields-failed":0}'), +(8551, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.536702+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:19:19.804354+00', 267, '{"total-tables":8,"tables-classified":0}'), +(8552, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:01.781702+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:14.831969+00', 13050, NULL), +(8553, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:01.797661+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:01.841991+00', 44, '{"timezone-id":null}'), +(8554, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:01.845661+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:02.675176+00', 829, '{"updated-tables":0,"total-tables":4}'), +(8555, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:02.676668+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:14.8008+00', 12124, '{"total-fields":30,"updated-fields":0}'), +(8556, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:14.801266+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:14.820262+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8557, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:14.820475+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:14.831752+00', 11, NULL), +(8558, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.068682+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.408176+00', 339, NULL), +(8559, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.069988+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.277669+00', 207, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(17, 0, '{"throwable":{"via":[{"type":"com.mongodb.MongoNodeIsRecoveringException","message":"Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { \"topologyVersion\" : { \"processId\" : { \"$oid\" : \"63ae2ad82c83bb5c5038d864\" }, \"counter\" : { \"$numberLong\" : \"48\" } }, \"ok\" : 0.0, \"errmsg\" : \"node is not in primary or recovering state\", \"code\" : 13436, \"codeName\" : \"NotPrimaryOrSecondary\" }","at":["com.mongodb.internal.connection.ProtocolHelper","createSpecialException","ProtocolHelper.java",246]}],"trace":[["com.mongodb.internal.connection.ProtocolHelper","createSpecialException","ProtocolHelper.java",246],["com.mongodb.internal.connection.ProtocolHelper","getCommandFailureException","ProtocolHelper.java",175],["com.mongodb.internal.connection.InternalStreamConnection","receiveCommandMessageResponse","InternalStreamConnection.java",299],["com.mongodb.internal.connection.InternalStreamConnection","sendAndReceive","InternalStreamConnection.java",255],["com.mongodb.internal.connection.UsageTrackingInternalConnection","sendAndReceive","UsageTrackingInternalConnection.java",99],["com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","sendAndReceive","DefaultConnectionPool.java",444],["com.mongodb.internal.connection.CommandProtocolImpl","execute","CommandProtocolImpl.java",72],["com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","execute","DefaultServer.java",200],["com.mongodb.internal.connection.DefaultServerConnection","executeProtocol","DefaultServerConnection.java",269],["com.mongodb.internal.connection.DefaultServerConnection","command","DefaultServerConnection.java",131],["com.mongodb.internal.connection.DefaultServerConnection","command","DefaultServerConnection.java",123],["com.mongodb.operation.CommandOperationHelper","executeWrappedCommandProtocol","CommandOperationHelper.java",242],["com.mongodb.operation.CommandOperationHelper","executeWrappedCommandProtocol","CommandOperationHelper.java",233],["com.mongodb.operation.CommandOperationHelper","executeWrappedCommandProtocol","CommandOperationHelper.java",136],["com.mongodb.operation.ListCollectionsOperation$1","call","ListCollectionsOperation.java",211],["com.mongodb.operation.ListCollectionsOperation$1","call","ListCollectionsOperation.java",206],["com.mongodb.operation.OperationHelper","withConnectionSource","OperationHelper.java",462],["com.mongodb.operation.OperationHelper","withConnection","OperationHelper.java",406],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",206],["com.mongodb.operation.ListCollectionsOperation","execute","ListCollectionsOperation.java",82],["com.mongodb.client.internal.MongoClientDelegate$DelegateOperationExecutor","execute","MongoClientDelegate.java",179],["com.mongodb.client.internal.MongoIterableImpl","execute","MongoIterableImpl.java",132],["com.mongodb.client.internal.MongoIterableImpl","iterator","MongoIterableImpl.java",86],["com.mongodb.client.internal.MongoIterableImpl","forEach","MongoIterableImpl.java",110],["com.mongodb.client.internal.MappingIterable","forEach","MappingIterable.java",54],["com.mongodb.client.internal.MappingIterable","into","MappingIterable.java",64],["com.mongodb.DB","getCollectionNames","DB.java",295],["monger.db$get_collection_names","invokeStatic","db.clj",62],["monger.db$get_collection_names","invoke","db.clj",59],["metabase.driver.mongo$fn__98687$f__97064__auto____98688","invoke","mongo.clj",182],["metabase.driver.mongo$fn__98687","invokeStatic","mongo.clj",181],["metabase.driver.mongo$fn__98687","invoke","mongo.clj",179],["clojure.lang.MultiFn","invoke","MultiFn.java",234],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594$fn__67595","invoke","fetch_metadata.clj",14],["metabase.sync.fetch_metadata$fn__67589$db_metadata__67594","invoke","fetch_metadata.clj",11],["metabase.sync.sync_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909$fn__68910","invoke","tables.clj",176],["metabase.sync.syn', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(17, 1, 'c_metadata.tables$fn__68904$sync_tables_and_database_BANG___68909","invoke","tables.clj",170],["clojure.lang.AFn","applyToHelper","AFn.java",154],["clojure.lang.AFn","applyTo","AFn.java",144],["clojure.core$apply","invokeStatic","core.clj",669],["clojure.core$apply","invoke","core.clj",662],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828$fn__42830","doInvoke","util.clj",388],["clojure.lang.RestFn","invoke","RestFn.java",397],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_debug_logging","invokeStatic","util.clj",119],["metabase.sync.util$with_start_and_finish_debug_logging","invoke","util.clj",116],["metabase.sync.util$fn__42819$run_step_with_metadata__42824$fn__42828","invoke","util.clj",383],["metabase.sync.util$fn__42819$run_step_with_metadata__42824","invoke","util.clj",378],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046$fn__43054","invoke","util.clj",495],["metabase.sync.util$fn__43040$run_sync_operation__43045$fn__43046","invoke","util.clj",493],["metabase.sync.util$fn__43040$run_sync_operation__43045","invoke","util.clj",487],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993$fn__69994","invoke","sync_metadata.clj",50],["metabase.sync.util$do_with_error_handling","invokeStatic","util.clj",160],["metabase.sync.util$do_with_error_handling","invoke","util.clj",153],["clojure.core$partial$fn__5910","invoke","core.clj",2647],["metabase.driver.mongo$fn__98631$f__97064__auto____98632","invoke","mongo.clj",97],["metabase.driver.mongo.util$do_with_mongo_connection$fn__97055","invoke","util.clj",226],["metabase.util.ssh$do_with_ssh_tunnel","invokeStatic","ssh.clj",139],["metabase.util.ssh$do_with_ssh_tunnel","invoke","ssh.clj",128],["metabase.driver.mongo.util$do_with_mongo_connection","invokeStatic","util.clj",220],["metabase.driver.mongo.util$do_with_mongo_connection","invoke","util.clj",215],["metabase.driver.mongo$fn__98631","invokeStatic","mongo.clj",96],["metabase.driver.mongo$fn__98631","invoke","mongo.clj",94],["clojure.lang.MultiFn","invoke","MultiFn.java",239],["metabase.sync.util$sync_in_context$fn__42740","invoke","util.clj",138],["metabase.sync.util$with_db_logging_disabled$fn__42737","invoke","util.clj",129],["metabase.sync.util$with_start_and_finish_logging_STAR_","invokeStatic","util.clj",102],["metabase.sync.util$with_start_and_finish_logging_STAR_","invoke","util.clj",96],["metabase.sync.util$with_start_and_finish_logging$fn__42726","invoke","util.clj",114],["metabase.sync.util$with_sync_events$fn__42721","invoke","util.clj",88],["metabase.sync.util$with_duplicate_ops_prevented$fn__42712","invoke","util.clj",67],["metabase.sync.util$do_sync_operation","invokeStatic","util.clj",181],["metabase.sync.util$do_sync_operation","invoke","util.clj",178],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992$fn__69993","invoke","sync_metadata.clj",49],["metabase.sync.sync_metadata$fn__69987$sync_db_metadata_BANG___69992","invoke","sync_metadata.clj",46],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invokeStatic","sync_databases.clj",72],["metabase.task.sync_databases$sync_and_analyze_database_BANG_","invoke","sync_databases.clj",63],["metabase.task.sync_databases.SyncAndAnalyzeDatabase","execute","sync_databases.clj",82],["org.quartz.core.JobRunShell","run","JobRunShell.java",202],["org.quartz.simpl.SimpleThreadPool$WorkerThread","run","SimpleThreadPool.java",573]],"cause":"Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { \"topologyVersion\" : { \"processId\" : { \"$oid\" : \"63ae2ad82c83bb5c5038d864\" }, \"counter\" : { \"$numberLong\" : \"48\" } }, \"ok\" : 0.0, \"errmsg\" : \"node is not in primary or recovering state\", \"code\" : 13436, \"codeName\" : \"NotPrimaryOrSecondary\" }"}}', NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8560, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.277774+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.291076+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(8561, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.291175+00', TIMESTAMP WITH TIME ZONE '2022-12-30 03:49:15.408064+00', 116, '{"total-tables":4,"tables-classified":0}'), +(8562, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 04:00:00.475+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:00:01.065+00', 590, NULL), +(8563, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 04:00:00.393+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:00:01.386+00', 993, NULL), +(8564, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:01.453121+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:14.2088+00', 12755, NULL), +(8565, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:01.476531+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:02.02452+00', 547, '{"timezone-id":"UTC"}'), +(8566, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:02.028238+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:02.39495+00', 366, '{"updated-tables":0,"total-tables":8}'), +(8567, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:02.395361+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:12.582948+00', 10187, '{"total-fields":71,"updated-fields":0}'), +(8568, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:12.5842+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:12.917701+00', 333, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8569, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:12.918871+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:14.208516+00', 1289, NULL), +(8570, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:14.909414+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:15.467827+00', 558, NULL), +(8571, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:14.909675+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:15.196641+00', 286, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8572, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:15.197066+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:15.283086+00', 86, '{"fields-classified":0,"fields-failed":0}'), +(8573, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:15.283549+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:19:15.467453+00', 183, '{"total-tables":8,"tables-classified":0}'), +(8574, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:07.672631+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.52746+00', 11854, NULL), +(8575, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:07.678227+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:07.719118+00', 40, '{"timezone-id":null}'), +(8576, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:07.723245+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:09.994233+00', 2270, SYSTEM_COMBINE_CLOB(17)), +(8577, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:10.046111+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.51262+00', 9466, '{"total-fields":30,"updated-fields":0}'), +(8578, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.512718+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.521305+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8579, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.521408+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.527377+00', 5, NULL), +(8580, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.771776+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.859217+00', 87, NULL), +(8581, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.771826+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.823608+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8582, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.823719+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.835348+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(8583, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.835535+00', TIMESTAMP WITH TIME ZONE '2022-12-30 04:49:19.859135+00', 23, '{"total-tables":4,"tables-classified":0}'), +(8584, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 05:00:00.269+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:00:00.716+00', 447, NULL), +(8585, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 05:00:00.179+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:00:00.861+00', 682, NULL), +(8586, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:00.826719+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.266223+00', 4439, NULL), +(8587, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:00.83163+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:01.459149+00', 627, '{"timezone-id":"UTC"}'), +(8588, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:01.462484+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:01.930154+00', 467, '{"updated-tables":0,"total-tables":8}'), +(8589, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:01.930504+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:04.573672+00', 2643, '{"total-fields":71,"updated-fields":0}'), +(8590, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:04.57378+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:04.704093+00', 130, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8591, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:04.704495+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.265937+00', 561, NULL), +(8592, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.524733+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.836126+00', 311, NULL), +(8593, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.524786+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.73345+00', 208, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8594, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.733972+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.784702+00', 50, '{"fields-classified":0,"fields-failed":0}'), +(8595, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.784848+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:19:05.835751+00', 50, '{"total-tables":8,"tables-classified":0}'), +(8596, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:00.863803+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.501497+00', 9637, NULL), +(8597, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:00.870386+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:00.907338+00', 36, '{"timezone-id":null}'), +(8598, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:00.912173+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:01.381807+00', 469, '{"updated-tables":0,"total-tables":4}'), +(8599, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:01.382255+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.466259+00', 9084, '{"total-fields":30,"updated-fields":0}'), +(8600, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.466352+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.488641+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8601, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.488747+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.501405+00', 12, NULL), +(8602, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.88922+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:11.09486+00', 205, NULL), +(8603, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:10.889288+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:11.031373+00', 142, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8604, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:11.031877+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:11.070281+00', 38, '{"fields-classified":0,"fields-failed":0}'), +(8605, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:11.070405+00', TIMESTAMP WITH TIME ZONE '2022-12-30 05:49:11.094775+00', 24, '{"total-tables":4,"tables-classified":0}'), +(8606, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 06:00:00.033+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:00:00.244+00', 211, NULL), +(8607, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 06:00:00.05+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:00:00.244+00', 194, NULL), +(8608, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.081534+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.066851+00', 985, NULL), +(8609, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.081594+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.246515+00', 164, '{"timezone-id":"UTC"}'), +(8610, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.247218+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.387459+00', 140, '{"updated-tables":0,"total-tables":8}'), +(8611, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.387997+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.884377+00', 496, '{"total-fields":71,"updated-fields":0}'), +(8612, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.884522+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.910728+00', 26, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8613, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:00.910829+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.066752+00', 155, NULL), +(8614, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.093086+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.145748+00', 52, NULL), +(8615, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.093148+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.122372+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8616, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.122517+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.132755+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(8617, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.132888+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:19:01.145639+00', 12, '{"total-tables":8,"tables-classified":0}'), +(8618, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:00.180705+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.266402+00', 7085, NULL), +(8619, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:00.180759+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:00.182951+00', 2, '{"timezone-id":null}'), +(8620, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:00.183051+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:00.337289+00', 154, '{"updated-tables":0,"total-tables":4}'), +(8621, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:00.337386+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.261288+00', 6923, '{"total-fields":30,"updated-fields":0}'), +(8622, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.261484+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.265125+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8623, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.26525+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.266267+00', 1, NULL), +(8624, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.300466+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.33755+00', 37, NULL), +(8625, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.300525+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.318783+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8626, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.319015+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.326408+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(8627, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.326521+00', TIMESTAMP WITH TIME ZONE '2022-12-30 06:49:07.337423+00', 10, '{"total-tables":4,"tables-classified":0}'), +(8628, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 07:00:00.009+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:00:00.016+00', 7, NULL), +(8629, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 07:00:00.022+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:00:00.038+00', 16, NULL), +(8630, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.018653+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.341994+00', 323, NULL), +(8631, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.018707+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.051904+00', 33, '{"timezone-id":"UTC"}'), +(8632, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.052055+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.071774+00', 19, '{"updated-tables":0,"total-tables":8}'), +(8633, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.071908+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.25429+00', 182, '{"total-fields":71,"updated-fields":0}'), +(8634, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.25438+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.272227+00', 17, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8635, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.272443+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.341805+00', 69, NULL), +(8636, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.359757+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.393468+00', 33, NULL), +(8637, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.359786+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.377423+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8638, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.377632+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.384918+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(8639, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.385031+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:19:00.393318+00', 8, '{"total-tables":8,"tables-classified":0}'), +(8640, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:00.119005+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.183769+00', 8064, NULL), +(8641, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:00.119057+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:00.120688+00', 1, '{"timezone-id":null}'), +(8642, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:00.120789+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:00.291551+00', 170, '{"updated-tables":0,"total-tables":4}'), +(8643, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:00.291656+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.176091+00', 7884, '{"total-fields":30,"updated-fields":0}'), +(8644, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.176465+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.180367+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8645, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.180645+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.183541+00', 2, NULL), +(8646, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.242617+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.280682+00', 38, NULL), +(8647, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.242693+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.263255+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8648, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.26353+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.271194+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(8649, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.271319+00', TIMESTAMP WITH TIME ZONE '2022-12-30 07:49:08.2806+00', 9, '{"total-tables":4,"tables-classified":0}'), +(8650, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 08:00:00.096+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:00:00.239+00', 143, NULL), +(8651, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 08:00:00.083+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:00:00.342+00', 259, NULL), +(8652, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:00.184668+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.072118+00', 2887, NULL), +(8653, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:00.187858+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:00.458239+00', 270, '{"timezone-id":"UTC"}'), +(8654, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:00.463192+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:00.693532+00', 230, '{"updated-tables":0,"total-tables":8}'), +(8655, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:00.693846+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:02.902277+00', 2208, '{"total-fields":71,"updated-fields":0}'), +(8656, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:02.902374+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:02.935272+00', 32, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8657, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:02.935354+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.07206+00', 136, NULL), +(8658, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.13462+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.233666+00', 99, NULL), +(8659, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.134663+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.191083+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8660, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.191249+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.207154+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(8661, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.20727+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:19:03.233517+00', 26, '{"total-tables":8,"tables-classified":0}'), +(8662, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:00.168434+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.352605+00', 9184, NULL), +(8663, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:00.168484+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:00.170661+00', 2, '{"timezone-id":null}'), +(8664, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:00.170771+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:00.382092+00', 211, '{"updated-tables":0,"total-tables":4}'), +(8665, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:00.382185+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.347122+00', 8964, '{"total-fields":30,"updated-fields":0}'), +(8666, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.347201+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.350856+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8667, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.350937+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.352564+00', 1, NULL), +(8668, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.530937+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.566192+00', 35, NULL), +(8669, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.530978+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.551508+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8670, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.551624+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.558309+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(8671, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.558419+00', TIMESTAMP WITH TIME ZONE '2022-12-30 08:49:09.566125+00', 7, '{"total-tables":4,"tables-classified":0}'), +(8672, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 09:00:00.066+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:00:00.137+00', 71, NULL), +(8673, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 09:00:00.057+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:00:00.187+00', 130, NULL), +(8674, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:00.102632+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.445702+00', 2343, NULL), +(8675, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:00.103587+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:00.198201+00', 94, '{"timezone-id":"UTC"}'), +(8676, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:00.198577+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:00.322495+00', 123, '{"updated-tables":0,"total-tables":8}'), +(8677, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:00.32279+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.162755+00', 1839, '{"total-fields":71,"updated-fields":0}'), +(8678, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.16293+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.248153+00', 85, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8679, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.248281+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.445652+00', 197, NULL), +(8680, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.484946+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.558935+00', 73, NULL), +(8681, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.485019+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.521595+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8682, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.521729+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.535024+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(8683, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.535166+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:19:02.558857+00', 23, '{"total-tables":8,"tables-classified":0}'), +(8684, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:00.141234+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.475206+00', 8333, NULL), +(8685, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:00.141278+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:00.143434+00', 2, '{"timezone-id":null}'), +(8686, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:00.143534+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:00.275962+00', 132, '{"updated-tables":0,"total-tables":4}'), +(8687, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:00.276146+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.469613+00', 8193, '{"total-fields":30,"updated-fields":0}'), +(8688, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.469713+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.473121+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8689, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.473208+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.475161+00', 1, NULL), +(8690, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.523304+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.603364+00', 80, NULL), +(8691, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.523334+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.583773+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8692, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.583952+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.591698+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(8693, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.591784+00', TIMESTAMP WITH TIME ZONE '2022-12-30 09:49:08.603274+00', 11, '{"total-tables":4,"tables-classified":0}'), +(8694, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 10:00:00.03+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:00:00.05+00', 20, NULL), +(8695, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 10:00:00.052+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:00:00.095+00', 43, NULL), +(8696, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:00.194209+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.123508+00', 2929, NULL), +(8697, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:00.195724+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:00.427934+00', 232, '{"timezone-id":"UTC"}'), +(8698, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:00.428215+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:00.67626+00', 248, '{"updated-tables":0,"total-tables":8}'), +(8699, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:00.676474+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:02.342937+00', 1666, '{"total-fields":71,"updated-fields":0}'), +(8700, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:02.343476+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:02.487821+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8701, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:02.488131+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.123208+00', 635, NULL), +(8702, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.267979+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.582303+00', 314, NULL), +(8703, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.268147+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.404148+00', 136, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8704, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.404766+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.475534+00', 70, '{"fields-classified":0,"fields-failed":0}'), +(8705, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.476185+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:19:03.582+00', 105, '{"total-tables":8,"tables-classified":0}'), +(8706, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:00.147786+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.783509+00', 8635, NULL), +(8707, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:00.147853+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:00.151002+00', 3, '{"timezone-id":null}'), +(8708, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:00.151321+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:00.734159+00', 582, '{"updated-tables":0,"total-tables":4}'), +(8709, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:00.734254+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.776233+00', 8041, '{"total-fields":30,"updated-fields":0}'), +(8710, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.776318+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.780356+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8711, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.780476+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.783451+00', 2, NULL), +(8712, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.90647+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.992148+00', 85, NULL), +(8713, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.906508+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.968693+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8714, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.968806+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.983944+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(8715, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.984049+00', TIMESTAMP WITH TIME ZONE '2022-12-30 10:49:08.992078+00', 8, '{"total-tables":4,"tables-classified":0}'), +(8716, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 11:00:00.01+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:00:00.016+00', 6, NULL), +(8717, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 11:00:00.02+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:00:00.032+00', 12, NULL), +(8718, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:00.124941+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.488693+00', 1363, NULL), +(8719, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:00.12561+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:00.28888+00', 163, '{"timezone-id":"UTC"}'), +(8720, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:00.290806+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:00.390619+00', 99, '{"updated-tables":0,"total-tables":8}'), +(8721, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:00.390978+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.362546+00', 971, '{"total-fields":71,"updated-fields":0}'), +(8722, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.362632+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.387565+00', 24, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8723, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.387655+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.488382+00', 100, NULL), +(8724, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.535891+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.605735+00', 69, NULL), +(8725, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.535927+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.580068+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8726, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.580173+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.590075+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(8727, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.590176+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:19:01.605661+00', 15, '{"total-tables":8,"tables-classified":0}'), +(8728, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:00.362078+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.623077+00', 14260, NULL), +(8729, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:00.362769+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:00.376791+00', 14, '{"timezone-id":null}'), +(8730, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:00.378232+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:00.662663+00', 284, '{"updated-tables":0,"total-tables":4}'), +(8731, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:00.662766+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.619158+00', 13956, '{"total-fields":30,"updated-fields":0}'), +(8732, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.619302+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.622182+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8733, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.622271+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.623032+00', 0, NULL), +(8734, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.677655+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.710475+00', 32, NULL), +(8735, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.677688+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.698644+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8736, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.698757+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.703657+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(8737, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.703741+00', TIMESTAMP WITH TIME ZONE '2022-12-30 11:49:14.710396+00', 6, '{"total-tables":4,"tables-classified":0}'), +(8738, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 12:00:01.527+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:00:02.546+00', 1019, NULL), +(8739, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 12:00:01.664+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:00:02.546+00', 882, NULL), +(8740, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:00.187875+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.232704+00', 2044, NULL), +(8741, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:00.189057+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:00.249066+00', 60, '{"timezone-id":"UTC"}'), +(8742, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:00.250115+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:00.278603+00', 28, '{"updated-tables":0,"total-tables":8}'), +(8743, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:00.278682+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:01.426748+00', 1148, '{"total-fields":71,"updated-fields":0}'), +(8744, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:01.427146+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:01.554602+00', 127, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8745, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:01.554736+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.232323+00', 677, NULL), +(8746, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.364673+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.570355+00', 205, NULL), +(8747, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.364976+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.509048+00', 144, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8748, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.509371+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.542047+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(8749, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.542168+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:19:02.570281+00', 28, '{"total-tables":8,"tables-classified":0}'), +(8750, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:00.140089+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.477038+00', 10336, NULL), +(8751, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:00.140189+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:00.145426+00', 5, '{"timezone-id":null}'), +(8752, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:00.145548+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:00.291812+00', 146, '{"updated-tables":0,"total-tables":4}'), +(8753, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:00.291907+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.462625+00', 10170, '{"total-fields":30,"updated-fields":0}'), +(8754, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.462763+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.465365+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8755, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.465448+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.476943+00', 11, NULL), +(8756, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.58491+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.633274+00', 48, NULL), +(8757, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.58495+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.619176+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8758, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.619302+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.626317+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(8759, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.626413+00', TIMESTAMP WITH TIME ZONE '2022-12-30 12:49:10.633211+00', 6, '{"total-tables":4,"tables-classified":0}'), +(8760, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 13:00:00.155+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:00:00.344+00', 189, NULL), +(8761, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 13:00:00.147+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:00:00.547+00', 400, NULL), +(8762, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:00.198595+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.321392+00', 5122, NULL), +(8763, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:00.202118+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:00.714971+00', 512, '{"timezone-id":"UTC"}'), +(8764, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:00.716639+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:00.974333+00', 257, '{"updated-tables":0,"total-tables":8}'), +(8765, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:00.974439+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:04.788608+00', 3814, '{"total-fields":71,"updated-fields":0}'), +(8766, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:04.788752+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:04.827704+00', 38, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8767, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:04.827796+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.321336+00', 493, NULL), +(8768, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.531757+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.638778+00', 107, NULL), +(8769, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.531797+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.597375+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8770, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.597458+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.610564+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(8771, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.610652+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:19:05.638719+00', 28, '{"total-tables":8,"tables-classified":0}'), +(8772, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:00.193397+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.607519+00', 13414, NULL), +(8773, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:00.193435+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:00.195978+00', 2, '{"timezone-id":null}'), +(8774, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:00.196076+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:00.429787+00', 233, '{"updated-tables":0,"total-tables":4}'), +(8775, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:00.429918+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.603977+00', 13174, '{"total-fields":30,"updated-fields":0}'), +(8776, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.604113+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.606632+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8777, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.606748+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.607433+00', 0, NULL), +(8778, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.645041+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.673855+00', 28, NULL), +(8779, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.645075+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.659896+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8780, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.660007+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.665594+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(8781, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.665688+00', TIMESTAMP WITH TIME ZONE '2022-12-30 13:49:13.673753+00', 8, '{"total-tables":4,"tables-classified":0}'), +(8782, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 14:00:00.046+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:00:00.223+00', 177, NULL), +(8783, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 14:00:00.068+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:00:00.223+00', 155, NULL), +(8784, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:00.18832+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.485096+00', 4296, NULL), +(8785, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:00.191253+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:00.561703+00', 370, '{"timezone-id":"UTC"}'), +(8786, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:00.56346+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:00.85294+00', 289, '{"updated-tables":0,"total-tables":8}'), +(8787, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:00.853329+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:03.74608+00', 2892, '{"total-fields":71,"updated-fields":0}'), +(8788, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:03.746609+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:03.893293+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8789, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:03.893685+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.48502+00', 591, NULL), +(8790, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.605189+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.802806+00', 197, NULL), +(8791, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.605462+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.763272+00', 157, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8792, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.763685+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.779099+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(8793, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.779197+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:19:04.802737+00', 23, '{"total-tables":8,"tables-classified":0}'), +(8794, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:00.140073+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.563725+00', 7423, NULL), +(8795, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:00.140116+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:00.142078+00', 1, '{"timezone-id":null}'), +(8796, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:00.142173+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:00.393356+00', 251, '{"updated-tables":0,"total-tables":4}'), +(8797, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:00.393444+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.558528+00', 7165, '{"total-fields":30,"updated-fields":0}'), +(8798, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.558599+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.561237+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8799, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.561345+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.563478+00', 2, NULL), +(8800, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.601299+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.634648+00', 33, NULL), +(8801, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.601329+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.624187+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8802, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.624302+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.628586+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(8803, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.628701+00', TIMESTAMP WITH TIME ZONE '2022-12-30 14:49:07.634552+00', 5, '{"total-tables":4,"tables-classified":0}'), +(8804, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 15:00:00.089+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:00:00.246+00', 157, NULL), +(8805, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 15:00:00.103+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:00:00.208+00', 105, NULL), +(8806, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:00.225417+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.931554+00', 2706, NULL), +(8807, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:00.227723+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:00.673289+00', 445, '{"timezone-id":"UTC"}'), +(8808, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:00.675531+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:00.922533+00', 247, '{"updated-tables":0,"total-tables":8}'), +(8809, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:00.922802+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.753576+00', 1830, '{"total-fields":71,"updated-fields":0}'), +(8810, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.753681+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.779219+00', 25, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8811, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.779326+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.931348+00', 152, NULL), +(8812, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.989191+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:03.081564+00', 92, NULL), +(8813, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:02.989234+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:03.056497+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8814, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:03.056594+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:03.066746+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(8815, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:03.066835+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:19:03.0815+00', 14, '{"total-tables":8,"tables-classified":0}'), +(8816, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:00.142931+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.88255+00', 10739, NULL), +(8817, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:00.142973+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:00.147347+00', 4, '{"timezone-id":null}'), +(8818, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:00.14786+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:00.392235+00', 244, '{"updated-tables":0,"total-tables":4}'), +(8819, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:00.392358+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.876279+00', 10483, '{"total-fields":30,"updated-fields":0}'), +(8820, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.876508+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.880881+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8821, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.880995+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.882461+00', 1, NULL), +(8822, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.923759+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.958804+00', 35, NULL), +(8823, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.926681+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.946368+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8824, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.946536+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.951102+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(8825, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.951226+00', TIMESTAMP WITH TIME ZONE '2022-12-30 15:49:10.958739+00', 7, '{"total-tables":4,"tables-classified":0}'), +(8826, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 16:00:00.029+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:00:00.033+00', 4, NULL), +(8827, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 16:00:00.052+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:00:00.062+00', 10, NULL), +(8828, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:00.075705+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.614345+00', 2538, NULL), +(8829, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:00.076173+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:00.157781+00', 81, '{"timezone-id":"UTC"}'), +(8830, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:00.157928+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:00.22635+00', 68, '{"updated-tables":0,"total-tables":8}'), +(8831, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:00.226446+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:01.233024+00', 1006, '{"total-fields":71,"updated-fields":0}'), +(8832, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:01.233109+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:01.411994+00', 178, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8833, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:01.412453+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.613799+00', 1201, NULL), +(8834, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.876602+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.979214+00', 102, NULL), +(8835, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.876637+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.952908+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8836, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.953+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.962244+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(8837, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.962332+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:19:02.9791+00', 16, '{"total-tables":8,"tables-classified":0}'), +(8838, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:01.121119+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.058463+00', 37937, NULL), +(8839, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:01.129218+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:01.185846+00', 56, '{"timezone-id":null}'), +(8840, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:01.193992+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:01.697565+00', 503, '{"updated-tables":0,"total-tables":4}'), +(8841, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:01.698008+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.035827+00', 37337, '{"total-fields":30,"updated-fields":0}'), +(8842, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.036571+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.047684+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8843, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.04955+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.058394+00', 8, NULL), +(8844, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.175539+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.281712+00', 106, NULL), +(8845, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.175586+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.239061+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8846, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.239328+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.257083+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(8847, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.257296+00', TIMESTAMP WITH TIME ZONE '2022-12-30 16:49:39.281636+00', 24, '{"total-tables":4,"tables-classified":0}'), +(8848, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 17:00:06.194+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:00:22.065+00', 15871, NULL), +(8849, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 17:00:14.393+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:00:22.034+00', 7641, NULL), +(8850, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:00.830549+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.450788+00', 4620, NULL), +(8851, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:00.838123+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:01.416086+00', 577, '{"timezone-id":"UTC"}'), +(8852, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:01.421056+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:01.77855+00', 357, '{"updated-tables":0,"total-tables":8}'), +(8853, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:01.779231+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:04.881835+00', 3102, '{"total-fields":71,"updated-fields":0}'), +(8854, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:04.882214+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:04.977658+00', 95, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8855, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:04.977966+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.450592+00', 472, NULL), +(8856, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.727056+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.955299+00', 228, NULL), +(8857, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.727277+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.895054+00', 167, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8858, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.895217+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.915134+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(8859, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.915315+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:19:05.955194+00', 39, '{"total-tables":8,"tables-classified":0}'), +(8860, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:00.850623+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.205276+00', 14354, NULL), +(8861, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:00.856661+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:00.894845+00', 38, '{"timezone-id":null}'), +(8862, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:00.899616+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:01.394886+00', 495, '{"updated-tables":0,"total-tables":4}'), +(8863, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:01.395223+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.176507+00', 13781, '{"total-fields":30,"updated-fields":0}'), +(8864, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.176841+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.192618+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8865, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.192874+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.205046+00', 12, NULL), +(8866, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.410854+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.520437+00', 109, NULL), +(8867, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.410905+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.476966+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8868, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.477212+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.48883+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(8869, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.489003+00', TIMESTAMP WITH TIME ZONE '2022-12-30 17:49:15.520273+00', 31, '{"total-tables":4,"tables-classified":0}'), +(8870, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 18:00:00.08+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:00:00.411+00', 331, NULL), +(8871, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 18:00:00.062+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:00:00.501+00', 439, NULL), +(8872, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:00.192727+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.897186+00', 2704, NULL), +(8873, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:00.195833+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:00.485+00', 289, '{"timezone-id":"UTC"}'), +(8874, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:00.486979+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:00.71292+00', 225, '{"updated-tables":0,"total-tables":8}'), +(8875, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:00.713309+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.734054+00', 2020, '{"total-fields":71,"updated-fields":0}'), +(8876, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.734268+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.774386+00', 40, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8877, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.774539+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.897139+00', 122, NULL), +(8878, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.960469+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:03.059836+00', 99, NULL), +(8879, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:02.960533+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:03.021103+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8880, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:03.021195+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:03.041665+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(8881, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:03.041776+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:19:03.059767+00', 17, '{"total-tables":8,"tables-classified":0}'), +(8882, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:00.144085+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.871278+00', 6727, NULL), +(8883, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:00.144133+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:00.145966+00', 1, '{"timezone-id":null}'), +(8884, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:00.146106+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:00.401848+00', 255, '{"updated-tables":0,"total-tables":4}'), +(8885, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:00.40196+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.86372+00', 6461, '{"total-fields":30,"updated-fields":0}'), +(8886, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.86386+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.869001+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8887, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.869131+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.871184+00', 2, NULL), +(8888, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.935921+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.971409+00', 35, NULL), +(8889, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.935951+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.959684+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8890, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.95978+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.96412+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(8891, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.964306+00', TIMESTAMP WITH TIME ZONE '2022-12-30 18:49:06.971263+00', 6, '{"total-tables":4,"tables-classified":0}'), +(8892, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 19:00:00.125+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:00:00.464+00', 339, NULL), +(8893, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 19:00:00.125+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:00:00.591+00', 466, NULL), +(8894, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:00.222871+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.063539+00', 3840, NULL), +(8895, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:00.22621+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:00.78112+00', 554, '{"timezone-id":"UTC"}'), +(8896, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:00.783082+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:01.11761+00', 334, '{"updated-tables":0,"total-tables":8}'), +(8897, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:01.118058+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:03.723306+00', 2605, '{"total-fields":71,"updated-fields":0}'), +(8898, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:03.723438+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:03.751436+00', 27, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8899, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:03.751521+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.063486+00', 311, NULL), +(8900, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.151768+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.257475+00', 105, NULL), +(8901, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.151803+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.20849+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8902, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.208583+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.225284+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(8903, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.22538+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:19:04.257407+00', 32, '{"total-tables":8,"tables-classified":0}'), +(8904, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:00.127008+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.262056+00', 8135, NULL), +(8905, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:00.127062+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:00.128738+00', 1, '{"timezone-id":null}'), +(8906, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:00.128828+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:00.461856+00', 333, '{"updated-tables":0,"total-tables":4}'), +(8907, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:00.461946+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.254311+00', 7792, '{"total-fields":30,"updated-fields":0}'), +(8908, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.254408+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.259094+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8909, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.259259+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.261995+00', 2, NULL), +(8910, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.584692+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.622198+00', 37, NULL), +(8911, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.584723+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.609493+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8912, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.609635+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.6146+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(8913, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.614714+00', TIMESTAMP WITH TIME ZONE '2022-12-30 19:49:08.622139+00', 7, '{"total-tables":4,"tables-classified":0}'), +(8914, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 20:00:00.08+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:00:00.256+00', 176, NULL), +(8915, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 20:00:00.062+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:00:00.304+00', 242, NULL), +(8916, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:00.093665+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.415028+00', 2321, NULL), +(8917, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:00.095273+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:00.217805+00', 122, '{"timezone-id":"UTC"}'), +(8918, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:00.218259+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:00.347658+00', 129, '{"updated-tables":0,"total-tables":8}'), +(8919, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:00.347872+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.165658+00', 1817, '{"total-fields":71,"updated-fields":0}'), +(8920, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.165751+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.228904+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8921, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.229047+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.414971+00', 185, NULL), +(8922, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.473403+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.534778+00', 61, NULL), +(8923, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.47344+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.505439+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8924, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.505527+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.522022+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(8925, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.522109+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:19:02.534723+00', 12, '{"total-tables":8,"tables-classified":0}'), +(8926, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:00.103863+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.060798+00', 7956, NULL), +(8927, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:00.103914+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:00.107797+00', 3, '{"timezone-id":null}'), +(8928, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:00.107896+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:00.277021+00', 169, '{"updated-tables":0,"total-tables":4}'), +(8929, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:00.277136+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.055808+00', 7778, '{"total-fields":30,"updated-fields":0}'), +(8930, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.055886+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.058442+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8931, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.05852+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.060725+00', 2, NULL), +(8932, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.097552+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.122258+00', 24, NULL), +(8933, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.097582+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.113454+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8934, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.113538+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.116846+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(8935, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.116937+00', TIMESTAMP WITH TIME ZONE '2022-12-30 20:49:08.122195+00', 5, '{"total-tables":4,"tables-classified":0}'), +(8936, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:00.091+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:00.428+00', 337, NULL), +(8937, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:00.101+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:00.393+00', 292, NULL), +(8938, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:00.479355+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:06.438592+00', 5959, NULL), +(8939, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:00.479575+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:01.49561+00', 1016, '{"deleted":0}'), +(8940, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:01.496236+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:00:06.438456+00', 4942, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(8941, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:00.454216+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:03.962262+00', 3508, NULL), +(8942, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:00.460976+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:00.761361+00', 300, '{"timezone-id":"UTC"}'), +(8943, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:00.76377+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:01.118999+00', 355, '{"updated-tables":0,"total-tables":8}'), +(8944, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:01.119383+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:03.527633+00', 2408, '{"total-fields":71,"updated-fields":0}'), +(8945, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:03.527733+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:03.58626+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8946, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:03.586388+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:03.962191+00', 375, NULL), +(8947, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.070799+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.165478+00', 94, NULL), +(8948, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.070839+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.138631+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8949, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.138716+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.14844+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(8950, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.148523+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:19:04.165416+00', 16, '{"total-tables":8,"tables-classified":0}'), +(8951, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:00.202695+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.471765+00', 9269, NULL), +(8952, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:00.202734+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:00.204296+00', 1, '{"timezone-id":null}'), +(8953, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:00.204389+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:00.442803+00', 238, '{"updated-tables":0,"total-tables":4}'), +(8954, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:00.442888+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.463856+00', 9020, '{"total-fields":30,"updated-fields":0}'), +(8955, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.46395+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.469329+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8956, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.469426+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.471714+00', 2, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8957, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.516958+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.547213+00', 30, NULL), +(8958, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.516995+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.539583+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8959, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.539679+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.542761+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(8960, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.542835+00', TIMESTAMP WITH TIME ZONE '2022-12-30 21:49:09.54716+00', 4, '{"total-tables":4,"tables-classified":0}'), +(8961, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 22:00:00.843+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:00:01.551+00', 708, NULL), +(8962, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 22:00:00.791+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:00:01.563+00', 772, NULL), +(8963, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:00.153448+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.399057+00', 3245, NULL), +(8964, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:00.155654+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:00.527372+00', 371, '{"timezone-id":"UTC"}'), +(8965, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:00.528824+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:00.787052+00', 258, '{"updated-tables":0,"total-tables":8}'), +(8966, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:00.787311+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.189788+00', 2402, '{"total-fields":71,"updated-fields":0}'), +(8967, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.189902+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.223915+00', 34, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8968, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.224047+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.398985+00', 174, NULL), +(8969, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.467441+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.573763+00', 106, NULL), +(8970, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.467476+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.515808+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8971, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.51591+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.530393+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(8972, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.530491+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:19:03.573686+00', 43, '{"total-tables":8,"tables-classified":0}'), +(8973, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:00.231041+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.817269+00', 9586, NULL), +(8974, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:00.231803+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:00.239435+00', 7, '{"timezone-id":null}'), +(8975, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:00.241534+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:00.350488+00', 108, '{"updated-tables":0,"total-tables":4}'), +(8976, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:00.350825+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.814331+00', 9463, '{"total-fields":30,"updated-fields":0}'), +(8977, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.814411+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.816603+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(8978, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.816672+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.817234+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(8979, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.842357+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.87998+00', 37, NULL), +(8980, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.842492+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.862292+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8981, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.862379+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.870487+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(8982, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.870609+00', TIMESTAMP WITH TIME ZONE '2022-12-30 22:49:09.879909+00', 9, '{"total-tables":4,"tables-classified":0}'), +(8983, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 23:00:00.114+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:00:00.291+00', 177, NULL), +(8984, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-30 23:00:00.108+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:00:00.375+00', 267, NULL), +(8985, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:00.167144+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.832142+00', 2664, NULL), +(8986, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:00.170916+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:00.52225+00', 351, '{"timezone-id":"UTC"}'), +(8987, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:00.52393+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:00.739016+00', 215, '{"updated-tables":0,"total-tables":8}'), +(8988, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:00.739117+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.647699+00', 1908, '{"total-fields":71,"updated-fields":0}'), +(8989, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.647786+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.675092+00', 27, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(8990, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.675182+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.832094+00', 156, NULL), +(8991, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.891559+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.957703+00', 66, NULL), +(8992, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.89159+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.929545+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(8993, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.92963+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.942284+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(8994, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.942404+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:19:02.957623+00', 15, '{"total-tables":8,"tables-classified":0}'), +(8995, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:00.140269+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.458975+00', 7318, NULL), +(8996, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:00.140317+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:00.142778+00', 2, '{"timezone-id":null}'), +(8997, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:00.142876+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:00.456017+00', 313, '{"updated-tables":0,"total-tables":4}'), +(8998, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:00.456184+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.447677+00', 6991, '{"total-fields":30,"updated-fields":0}'), +(8999, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.447819+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.452303+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9000, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.452912+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.458881+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9001, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.566153+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.662168+00', 96, NULL), +(9002, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.566187+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.620508+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9003, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.620612+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.636338+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(9004, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.640591+00', TIMESTAMP WITH TIME ZONE '2022-12-30 23:49:07.66195+00', 21, '{"total-tables":4,"tables-classified":0}'), +(9005, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 00:00:00.11+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:00:00.395+00', 285, NULL), +(9006, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 00:00:00.097+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:00:00.525+00', 428, NULL), +(9007, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:00.670943+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.460169+00', 4789, NULL), +(9008, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:00.677906+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:01.229438+00', 551, '{"timezone-id":"UTC"}'), +(9009, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:01.233207+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:01.583977+00', 350, '{"updated-tables":0,"total-tables":8}'), +(9010, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:01.584088+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:04.858529+00', 3274, '{"total-fields":71,"updated-fields":0}'), +(9011, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:04.858636+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:04.980051+00', 121, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9012, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:04.980253+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.460097+00', 479, NULL), +(9013, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.777167+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:06.042435+00', 265, NULL), +(9014, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.777207+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.959271+00', 182, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9015, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.959576+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.997871+00', 38, '{"fields-classified":0,"fields-failed":0}'), +(9016, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:05.997975+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:19:06.042348+00', 44, '{"total-tables":8,"tables-classified":0}'), +(9017, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:00.163069+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.749293+00', 8586, NULL), +(9018, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:00.163105+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:00.164741+00', 1, '{"timezone-id":null}'), +(9019, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:00.164814+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:00.43039+00', 265, '{"updated-tables":0,"total-tables":4}'), +(9020, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:00.430479+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.743281+00', 8312, '{"total-fields":30,"updated-fields":0}'), +(9021, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.743421+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.746783+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9022, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.746869+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.749231+00', 2, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9023, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.808215+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.856974+00', 48, NULL), +(9024, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.808248+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.839035+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9025, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.839157+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.84572+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(9026, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.845805+00', TIMESTAMP WITH TIME ZONE '2022-12-31 00:49:08.856912+00', 11, '{"total-tables":4,"tables-classified":0}'), +(9027, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 01:00:00.104+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:00:00.366+00', 262, NULL), +(9028, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 01:00:00.104+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:00:00.479+00', 375, NULL), +(9029, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:00.171685+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.269116+00', 3097, NULL), +(9030, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:00.17479+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:00.570331+00', 395, '{"timezone-id":"UTC"}'), +(9031, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:00.571818+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:00.815719+00', 243, '{"updated-tables":0,"total-tables":8}'), +(9032, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:00.816186+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.090901+00', 2274, '{"total-fields":71,"updated-fields":0}'), +(9033, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.090997+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.116006+00', 25, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9034, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.116075+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.26907+00', 152, NULL), +(9035, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.331493+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.409392+00', 77, NULL), +(9036, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.331527+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.373197+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9037, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.373273+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.38483+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9038, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.38492+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:19:03.409318+00', 24, '{"total-tables":8,"tables-classified":0}'), +(9039, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:00.146274+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.782836+00', 8636, NULL), +(9040, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:00.146317+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:00.148663+00', 2, '{"timezone-id":null}'), +(9041, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:00.148755+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:00.500163+00', 351, '{"updated-tables":0,"total-tables":4}'), +(9042, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:00.500257+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.771659+00', 8271, '{"total-fields":30,"updated-fields":0}'), +(9043, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.77202+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.775579+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9044, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.775779+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.782625+00', 6, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9045, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.827168+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.861023+00', 33, NULL), +(9046, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.827209+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.847693+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9047, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.847974+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.852757+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9048, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.85284+00', TIMESTAMP WITH TIME ZONE '2022-12-31 01:49:08.860964+00', 8, '{"total-tables":4,"tables-classified":0}'), +(9049, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:00.146+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:00.377+00', 231, NULL), +(9050, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:00.17+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:00.359+00', 189, NULL), +(9051, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:00.658259+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:07.584576+00', 6926, NULL), +(9052, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:00.660153+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:01.448525+00', 788, '{"deleted":0}'), +(9053, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:01.450029+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:00:07.583943+00', 6133, '{"errors":0,"created":0,"updated":4,"deleted":0}'), +(9054, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.109428+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.421551+00', 1312, NULL), +(9055, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.109474+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.293833+00', 184, '{"timezone-id":"UTC"}'), +(9056, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.293977+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.411443+00', 117, '{"updated-tables":0,"total-tables":8}'), +(9057, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.411536+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.717462+00', 305, '{"total-fields":71,"updated-fields":0}'), +(9058, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.71755+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.775571+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9059, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:00.775905+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.421308+00', 645, NULL), +(9060, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.46687+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.579422+00', 112, NULL), +(9061, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.466906+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.534752+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9062, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.534849+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.559462+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(9063, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.559558+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:19:01.579339+00', 19, '{"total-tables":8,"tables-classified":0}'), +(9064, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:00.719654+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:14.990203+00', 14270, NULL), +(9065, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:00.724661+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:00.761075+00', 36, '{"timezone-id":null}'), +(9066, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:00.76637+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:01.278451+00', 512, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9067, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:01.282135+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:14.980987+00', 13698, '{"total-fields":30,"updated-fields":0}'), +(9068, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:14.981175+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:14.989121+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9069, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:14.989286+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:14.990167+00', 0, NULL), +(9070, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.378943+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.431098+00', 52, NULL), +(9071, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.378976+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.393971+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9072, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.395352+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.402949+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(9073, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.40305+00', TIMESTAMP WITH TIME ZONE '2022-12-31 02:49:15.431016+00', 27, '{"total-tables":4,"tables-classified":0}'), +(9074, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 03:00:00.103+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:00:00.32+00', 217, NULL), +(9075, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 03:00:00.092+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:00:00.401+00', 309, NULL), +(9076, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:00.188741+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:03.946468+00', 3757, NULL), +(9077, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:00.192521+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:00.505419+00', 312, '{"timezone-id":"UTC"}'), +(9078, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:00.507842+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:00.7209+00', 213, '{"updated-tables":0,"total-tables":8}'), +(9079, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:00.721293+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:03.329404+00', 2608, '{"total-fields":71,"updated-fields":0}'), +(9080, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:03.329832+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:03.420692+00', 90, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9081, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:03.421017+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:03.946258+00', 525, NULL), +(9082, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.083174+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.229662+00', 146, NULL), +(9083, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.083282+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.188293+00', 105, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9084, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.189126+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.207635+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(9085, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.207728+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:19:04.229588+00', 21, '{"total-tables":8,"tables-classified":0}'), +(9086, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:00.671344+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.54+00', 11868, NULL), +(9087, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:00.671807+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:00.686459+00', 14, '{"timezone-id":null}'), +(9088, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:00.687894+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:00.926709+00', 238, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9089, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:00.926833+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.534889+00', 11608, '{"total-fields":30,"updated-fields":0}'), +(9090, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.535018+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.538681+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9091, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.538796+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.539937+00', 1, NULL), +(9092, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.587483+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.642773+00', 55, NULL), +(9093, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.58752+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.606511+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9094, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.606606+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.612668+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(9095, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.612762+00', TIMESTAMP WITH TIME ZONE '2022-12-31 03:49:12.641228+00', 28, '{"total-tables":4,"tables-classified":0}'), +(9096, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 04:00:00.035+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:00:00.172+00', 137, NULL), +(9097, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 04:00:00.027+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:00:00.172+00', 145, NULL), +(9098, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:00.238662+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.462838+00', 3224, NULL), +(9099, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:00.242392+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:00.615618+00', 373, '{"timezone-id":"UTC"}'), +(9100, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:00.617637+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:00.898994+00', 281, '{"updated-tables":0,"total-tables":8}'), +(9101, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:00.899237+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.06838+00', 2169, '{"total-fields":71,"updated-fields":0}'), +(9102, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.068854+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.175207+00', 106, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9103, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.175631+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.462793+00', 287, NULL), +(9104, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.507289+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.569935+00', 62, NULL), +(9105, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.507339+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.545274+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9106, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.545366+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.556396+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9107, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.556499+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:19:03.569836+00', 13, '{"total-tables":8,"tables-classified":0}'), +(9108, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:00.80587+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.366998+00', 13561, NULL), +(9109, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:00.812979+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:00.857585+00', 44, '{"timezone-id":null}'), +(9110, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:00.865053+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:01.211234+00', 346, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9111, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:01.211561+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.363557+00', 13151, '{"total-fields":30,"updated-fields":0}'), +(9112, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.36365+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.366182+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9113, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.366256+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.366962+00', 0, NULL), +(9114, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.408979+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.435235+00', 26, NULL), +(9115, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.40902+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.425509+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9116, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.425605+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.429529+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9117, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.42961+00', TIMESTAMP WITH TIME ZONE '2022-12-31 04:49:14.435179+00', 5, '{"total-tables":4,"tables-classified":0}'), +(9118, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 05:00:00.105+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:00:00.37+00', 265, NULL), +(9119, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 05:00:00.105+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:00:00.373+00', 268, NULL), +(9120, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:00.234584+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.270227+00', 2035, NULL), +(9121, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:00.238568+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:00.531014+00', 292, '{"timezone-id":"UTC"}'), +(9122, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:00.532875+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:00.715044+00', 182, '{"updated-tables":0,"total-tables":8}'), +(9123, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:00.715696+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:01.821314+00', 1105, '{"total-fields":71,"updated-fields":0}'), +(9124, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:01.821433+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:01.881494+00', 60, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9125, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:01.882069+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.270139+00', 388, NULL), +(9126, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.382746+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.603329+00', 220, NULL), +(9127, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.382785+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.561187+00', 178, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9128, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.561524+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.572776+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9129, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.572877+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:19:02.603216+00', 30, '{"total-tables":8,"tables-classified":0}'), +(9130, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:00.118238+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.265391+00', 8147, NULL), +(9131, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:00.118278+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:00.119938+00', 1, '{"timezone-id":null}'), +(9132, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:00.120011+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:00.361573+00', 241, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9133, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:00.361657+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.259783+00', 7898, '{"total-fields":30,"updated-fields":0}'), +(9134, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.260151+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.262956+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9135, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.26323+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.26533+00', 2, NULL), +(9136, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.298465+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.350887+00', 52, NULL), +(9137, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.29851+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.32318+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9138, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.323363+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.334731+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9139, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.334977+00', TIMESTAMP WITH TIME ZONE '2022-12-31 05:49:08.350572+00', 15, '{"total-tables":4,"tables-classified":0}'), +(9140, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 06:00:00.117+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:00:00.431+00', 314, NULL), +(9141, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 06:00:00.117+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:00:00.551+00', 434, NULL), +(9142, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:00.146591+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.351968+00', 2205, NULL), +(9143, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:00.149966+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:00.429429+00', 279, '{"timezone-id":"UTC"}'), +(9144, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:00.431137+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:00.658058+00', 226, '{"updated-tables":0,"total-tables":8}'), +(9145, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:00.658165+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.187147+00', 1528, '{"total-fields":71,"updated-fields":0}'), +(9146, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.187394+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.243623+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9147, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.243725+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.351927+00', 108, NULL), +(9148, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.41561+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.505024+00', 89, NULL), +(9149, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.41564+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.462478+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9150, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.462576+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.475006+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(9151, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.475086+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:19:02.504948+00', 29, '{"total-tables":8,"tables-classified":0}'), +(9152, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:00.536245+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.566308+00', 9030, NULL), +(9153, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:00.536588+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:00.541841+00', 5, '{"timezone-id":null}'), +(9154, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:00.542483+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:00.70757+00', 165, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9155, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:00.70781+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.560193+00', 8852, '{"total-fields":30,"updated-fields":0}'), +(9156, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.560802+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.565356+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9157, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.565438+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.566268+00', 0, NULL), +(9158, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.594373+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.63107+00', 36, NULL), +(9159, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.594405+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.609423+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9160, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.609641+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.613852+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9161, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.613942+00', TIMESTAMP WITH TIME ZONE '2022-12-31 06:49:09.630964+00', 17, '{"total-tables":4,"tables-classified":0}'), +(9162, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 07:00:00.123+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:00:00.38+00', 257, NULL), +(9163, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 07:00:00.123+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:00:00.381+00', 258, NULL), +(9164, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:00.1993+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.676941+00', 4477, NULL), +(9165, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:00.203147+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:00.71989+00', 516, '{"timezone-id":"UTC"}'), +(9166, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:00.722057+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:00.902816+00', 180, '{"updated-tables":0,"total-tables":8}'), +(9167, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:00.903028+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.088166+00', 3185, '{"total-fields":71,"updated-fields":0}'), +(9168, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.088394+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.189456+00', 101, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9169, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.189955+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.676882+00', 486, NULL), +(9170, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.817811+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:05.095418+00', 277, NULL), +(9171, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:04.817999+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:05.005847+00', 187, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9172, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:05.006178+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:05.045303+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(9173, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:05.045624+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:19:05.095334+00', 49, '{"total-tables":8,"tables-classified":0}'), +(9174, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:00.693957+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.681935+00', 9987, NULL), +(9175, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:00.701662+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:00.735449+00', 33, '{"timezone-id":null}'), +(9176, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:00.739135+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:01.036806+00', 297, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9177, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:01.036913+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.669606+00', 9632, '{"total-fields":30,"updated-fields":0}'), +(9178, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.669765+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.677321+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9179, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.67743+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.681848+00', 4, NULL), +(9180, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.74562+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.78723+00', 41, NULL), +(9181, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.745666+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.768697+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9182, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.768783+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.775093+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(9183, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.775306+00', TIMESTAMP WITH TIME ZONE '2022-12-31 07:49:10.787169+00', 11, '{"total-tables":4,"tables-classified":0}'), +(9184, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 08:00:00.028+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:00:00.143+00', 115, NULL), +(9185, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 08:00:00.028+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:00:00.143+00', 115, NULL), +(9186, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:00.205548+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:02.975552+00', 2770, NULL), +(9187, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:00.209393+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:00.549423+00', 340, '{"timezone-id":"UTC"}'), +(9188, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:00.551131+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:00.759008+00', 207, '{"updated-tables":0,"total-tables":8}'), +(9189, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:00.759314+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:02.778307+00', 2018, '{"total-fields":71,"updated-fields":0}'), +(9190, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:02.778606+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:02.833829+00', 55, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9191, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:02.834168+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:02.975511+00', 141, NULL), +(9192, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.011115+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.07811+00', 66, NULL), +(9193, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.011142+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.042884+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9194, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.043204+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.057695+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(9195, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.057773+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:19:03.078048+00', 20, '{"total-tables":8,"tables-classified":0}'), +(9196, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:00.161711+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.874341+00', 8712, NULL), +(9197, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:00.161749+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:00.163762+00', 2, '{"timezone-id":null}'), +(9198, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:00.163854+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:00.425028+00', 261, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9199, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:00.425113+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.86971+00', 8444, '{"total-fields":30,"updated-fields":0}'), +(9200, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.870035+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.87239+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9201, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.872596+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.874299+00', 1, NULL), +(9202, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.926581+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:09.107779+00', 181, NULL), +(9203, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:08.926623+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:09.046479+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9204, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:09.046777+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:09.06942+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(9205, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:09.069548+00', TIMESTAMP WITH TIME ZONE '2022-12-31 08:49:09.107414+00', 37, '{"total-tables":4,"tables-classified":0}'), +(9206, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 09:00:00.095+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:00:00.351+00', 256, NULL), +(9207, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 09:00:00.084+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:00:00.415+00', 331, NULL), +(9208, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:00.20635+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.155339+00', 2948, NULL), +(9209, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:00.210494+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:00.63602+00', 425, '{"timezone-id":"UTC"}'), +(9210, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:00.639106+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:00.975759+00', 336, '{"updated-tables":0,"total-tables":8}'), +(9211, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:00.976056+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:02.989755+00', 2013, '{"total-fields":71,"updated-fields":0}'), +(9212, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:02.989878+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.027041+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9213, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.027112+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.155269+00', 128, NULL), +(9214, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.212922+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.285236+00', 72, NULL), +(9215, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.212956+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.25732+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9216, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.257398+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.267151+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(9217, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.26723+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:19:03.285172+00', 17, '{"total-tables":8,"tables-classified":0}'), +(9218, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:00.213563+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.867088+00', 12653, NULL), +(9219, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:00.213791+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:00.217964+00', 4, '{"timezone-id":null}'), +(9220, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:00.218045+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:00.815833+00', 597, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9221, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:00.815948+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.862373+00', 12046, '{"total-fields":30,"updated-fields":0}'), +(9222, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.862493+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.865064+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9223, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.865142+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.867032+00', 1, NULL), +(9224, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.903913+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.953498+00', 49, NULL), +(9225, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.903947+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.934484+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9226, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.934633+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.94563+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(9227, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.945721+00', TIMESTAMP WITH TIME ZONE '2022-12-31 09:49:12.953438+00', 7, '{"total-tables":4,"tables-classified":0}'), +(9228, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 10:00:00.1+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:00:00.251+00', 151, NULL), +(9229, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 10:00:00.076+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:00:00.251+00', 175, NULL), +(9230, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:00.202721+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.715797+00', 3513, NULL), +(9231, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:00.2063+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:00.68009+00', 473, '{"timezone-id":"UTC"}'), +(9232, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:00.68328+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:00.973814+00', 290, '{"updated-tables":0,"total-tables":8}'), +(9233, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:00.974264+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.533626+00', 2559, '{"total-fields":71,"updated-fields":0}'), +(9234, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.533738+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.57747+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9235, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.577538+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.715745+00', 138, NULL), +(9236, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.790878+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.867408+00', 76, NULL), +(9237, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.790912+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.8398+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9238, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.840039+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.850154+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(9239, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.850229+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:19:03.867305+00', 17, '{"total-tables":8,"tables-classified":0}'), +(9240, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:00.831389+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.400333+00', 11568, NULL), +(9241, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:00.834655+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:00.862296+00', 27, '{"timezone-id":null}'), +(9242, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:00.864754+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:01.322574+00', 457, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9243, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:01.322704+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.383175+00', 11060, '{"total-fields":30,"updated-fields":0}'), +(9244, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.383273+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.396939+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9245, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.397037+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.400277+00', 3, NULL), +(9246, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.486316+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.553059+00', 66, NULL), +(9247, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.48635+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.529164+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9248, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.529255+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.538071+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(9249, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.538163+00', TIMESTAMP WITH TIME ZONE '2022-12-31 10:49:12.553004+00', 14, '{"total-tables":4,"tables-classified":0}'), +(9250, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 11:00:00.111+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:00:00.495+00', 384, NULL), +(9251, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 11:00:00.111+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:00:00.495+00', 384, NULL), +(9252, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:00.22182+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.767121+00', 3545, NULL), +(9253, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:00.225785+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:00.57553+00', 349, '{"timezone-id":"UTC"}'), +(9254, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:00.577261+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:01.083382+00', 506, '{"updated-tables":0,"total-tables":8}'), +(9255, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:01.083935+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.056184+00', 1972, '{"total-fields":71,"updated-fields":0}'), +(9256, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.056317+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.181418+00', 125, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9257, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.181869+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.766702+00', 584, NULL), +(9258, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.951822+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:04.283897+00', 332, NULL), +(9259, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:03.952357+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:04.181868+00', 229, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9260, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:04.183379+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:04.221448+00', 38, '{"fields-classified":0,"fields-failed":0}'), +(9261, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:04.221801+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:19:04.28382+00', 62, '{"total-tables":8,"tables-classified":0}'), +(9262, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:00.146353+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.427465+00', 8281, NULL), +(9263, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:00.146405+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:00.148847+00', 2, '{"timezone-id":null}'), +(9264, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:00.148979+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:00.483772+00', 334, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9265, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:00.483956+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.406692+00', 7922, '{"total-fields":30,"updated-fields":0}'), +(9266, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.406804+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.423413+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9267, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.42353+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.427393+00', 3, NULL), +(9268, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.543678+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.625237+00', 81, NULL), +(9269, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.543735+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.606212+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9270, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.60631+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.611225+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9271, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.611325+00', TIMESTAMP WITH TIME ZONE '2022-12-31 11:49:08.625157+00', 13, '{"total-tables":4,"tables-classified":0}'), +(9272, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 12:00:00.149+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:00:00.289+00', 140, NULL), +(9273, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 12:00:00.138+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:00:00.29+00', 152, NULL), +(9274, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:00.331458+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:03.816583+00', 3485, NULL), +(9275, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:00.334678+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:00.57602+00', 241, '{"timezone-id":"UTC"}'), +(9276, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:00.577712+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:00.817914+00', 240, '{"updated-tables":0,"total-tables":8}'), +(9277, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:00.818238+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:02.991564+00', 2173, '{"total-fields":71,"updated-fields":0}'), +(9278, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:02.991857+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:03.096546+00', 104, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9279, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:03.096864+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:03.816523+00', 719, NULL), +(9280, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.023689+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.357451+00', 333, NULL), +(9281, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.023727+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.242173+00', 218, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9282, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.242529+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.285123+00', 42, '{"fields-classified":0,"fields-failed":0}'), +(9283, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.285504+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:19:04.357148+00', 71, '{"total-tables":8,"tables-classified":0}'), +(9284, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:00.160105+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.316813+00', 8156, NULL), +(9285, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:00.160151+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:00.162272+00', 2, '{"timezone-id":null}'), +(9286, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:00.162384+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:00.439966+00', 277, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9287, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:00.440094+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.31146+00', 7871, '{"total-fields":30,"updated-fields":0}'), +(9288, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.311554+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.314729+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9289, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.314803+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.316764+00', 1, NULL), +(9290, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.368659+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.468892+00', 100, NULL), +(9291, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.368696+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.448538+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9292, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.448668+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.460814+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(9293, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.460926+00', TIMESTAMP WITH TIME ZONE '2022-12-31 12:49:08.468825+00', 7, '{"total-tables":4,"tables-classified":0}'), +(9294, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 13:00:00.07+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:00:00.293+00', 223, NULL), +(9295, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 13:00:00.055+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:00:00.293+00', 238, NULL), +(9296, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:00.197132+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.106161+00', 3909, NULL), +(9297, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:00.200394+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:00.532556+00', 332, '{"timezone-id":"UTC"}'), +(9298, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:00.534316+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:00.747098+00', 212, '{"updated-tables":0,"total-tables":8}'), +(9299, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:00.747413+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:03.212971+00', 2465, '{"total-fields":71,"updated-fields":0}'), +(9300, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:03.213391+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:03.312622+00', 99, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9301, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:03.312772+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.105884+00', 793, NULL), +(9302, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.197805+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.248808+00', 51, NULL), +(9303, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.197834+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.226585+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9304, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.226834+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.236721+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(9305, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.2368+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:19:04.24869+00', 11, '{"total-tables":8,"tables-classified":0}'), +(9306, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:00.159683+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.552688+00', 9393, NULL), +(9307, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:00.159733+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:00.161762+00', 2, '{"timezone-id":null}'), +(9308, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:00.161929+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:00.431943+00', 270, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9309, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:00.432036+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.468265+00', 9036, '{"total-fields":30,"updated-fields":0}'), +(9310, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.468344+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.550562+00', 82, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9311, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.55065+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.552629+00', 1, NULL), +(9312, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.582813+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.625321+00', 42, NULL), +(9313, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.582862+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.613905+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9314, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.614028+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.619043+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(9315, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.619134+00', TIMESTAMP WITH TIME ZONE '2022-12-31 13:49:09.625255+00', 6, '{"total-tables":4,"tables-classified":0}'), +(9316, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 14:00:00.059+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:00:00.169+00', 110, NULL), +(9317, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 14:00:00.045+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:00:00.226+00', 181, NULL), +(9318, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:00.122916+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.007893+00', 2884, NULL), +(9319, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:00.12553+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:00.345247+00', 219, '{"timezone-id":"UTC"}'), +(9320, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:00.346521+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:00.516573+00', 170, '{"updated-tables":0,"total-tables":8}'), +(9321, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:00.516844+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:02.369852+00', 1853, '{"total-fields":71,"updated-fields":0}'), +(9322, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:02.370932+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:02.509822+00', 138, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9323, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:02.510164+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.007606+00', 497, NULL), +(9324, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.152879+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.25797+00', 105, NULL), +(9325, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.152924+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.235117+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9326, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.235227+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.243673+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(9327, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.243768+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:19:03.257903+00', 14, '{"total-tables":8,"tables-classified":0}'), +(9328, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:00.216274+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.81839+00', 9602, NULL), +(9329, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:00.216322+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:00.219398+00', 3, '{"timezone-id":null}'), +(9330, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:00.219507+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:00.591725+00', 372, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9331, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:00.591807+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.806591+00', 9214, '{"total-fields":30,"updated-fields":0}'), +(9332, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.80669+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.815512+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9333, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.815626+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.818294+00', 2, NULL), +(9334, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.964603+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:10.09489+00', 130, NULL), +(9335, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:09.964642+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:10.07852+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9336, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:10.078613+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:10.08223+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9337, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:10.082309+00', TIMESTAMP WITH TIME ZONE '2022-12-31 14:49:10.094772+00', 12, '{"total-tables":4,"tables-classified":0}'), +(9338, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 15:00:00.129+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:00:00.441+00', 312, NULL), +(9339, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 15:00:00.129+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:00:00.585+00', 456, NULL), +(9340, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:00.283571+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.274276+00', 4990, NULL), +(9341, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:00.288017+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:00.708992+00', 420, '{"timezone-id":"UTC"}'), +(9342, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:00.710816+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:01.119704+00', 408, '{"updated-tables":0,"total-tables":8}'), +(9343, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:01.120087+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:04.511605+00', 3391, '{"total-fields":71,"updated-fields":0}'), +(9344, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:04.511717+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:04.659485+00', 147, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9345, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:04.659829+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.27421+00', 614, NULL), +(9346, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.465145+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.885751+00', 420, NULL), +(9347, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.465329+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.741887+00', 276, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9348, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.742241+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.8041+00', 61, '{"fields-classified":0,"fields-failed":0}'), +(9349, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.804213+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:19:05.885669+00', 81, '{"total-tables":8,"tables-classified":0}'), +(9350, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:00.156176+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.33111+00', 8174, NULL), +(9351, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:00.156225+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:00.160591+00', 4, '{"timezone-id":null}'), +(9352, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:00.160697+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:00.435784+00', 275, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9353, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:00.435868+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.327257+00', 7891, '{"total-fields":30,"updated-fields":0}'), +(9354, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.32738+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.329889+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9355, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.329972+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.331073+00', 1, NULL), +(9356, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.386739+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.475269+00', 88, NULL), +(9357, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.386802+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.42273+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9358, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.422903+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.426763+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9359, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.426905+00', TIMESTAMP WITH TIME ZONE '2022-12-31 15:49:08.475197+00', 48, '{"total-tables":4,"tables-classified":0}'), +(9360, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 16:00:00.114+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:00:00.473+00', 359, NULL), +(9361, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 16:00:00.094+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:00:00.626+00', 532, NULL), +(9362, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:00.456431+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.556193+00', 7099, NULL), +(9363, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:00.460907+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:00.957885+00', 496, '{"timezone-id":"UTC"}'), +(9364, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:00.960066+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:01.394939+00', 434, '{"updated-tables":0,"total-tables":8}'), +(9365, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:01.39544+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:06.911924+00', 5516, '{"total-fields":71,"updated-fields":0}'), +(9366, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:06.912258+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.046035+00', 133, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9367, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.046476+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.555217+00', 508, NULL), +(9368, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.650068+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.746266+00', 96, NULL), +(9369, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.650106+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.713891+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9370, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.713983+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.726951+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(9371, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.727026+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:19:07.746201+00', 19, '{"total-tables":8,"tables-classified":0}'), +(9372, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:00.666965+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.475453+00', 8808, NULL), +(9373, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:00.66702+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:00.767256+00', 100, '{"timezone-id":null}'), +(9374, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:00.767381+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:01.378598+00', 611, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9375, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:01.378701+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.471085+00', 8092, '{"total-fields":30,"updated-fields":0}'), +(9376, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.471222+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.473335+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9377, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.473409+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.475405+00', 1, NULL), +(9378, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.51365+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.546864+00', 33, NULL), +(9379, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.513682+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.537149+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9380, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.537233+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.541264+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9381, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.541344+00', TIMESTAMP WITH TIME ZONE '2022-12-31 16:49:09.546809+00', 5, '{"total-tables":4,"tables-classified":0}'), +(9382, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 17:00:00.108+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:00:00.241+00', 133, NULL), +(9383, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 17:00:00.089+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:00:00.241+00', 152, NULL), +(9384, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:00.305522+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:04.97098+00', 4665, NULL), +(9385, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:00.309115+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:00.678833+00', 369, '{"timezone-id":"UTC"}'), +(9386, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:00.680823+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:00.992992+00', 312, '{"updated-tables":0,"total-tables":8}'), +(9387, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:00.993372+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:03.525489+00', 2532, '{"total-fields":71,"updated-fields":0}'), +(9388, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:03.534949+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:04.171458+00', 636, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9389, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:04.171909+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:04.970926+00', 799, NULL), +(9390, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.072779+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.155506+00', 82, NULL), +(9391, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.072812+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.124808+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9392, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.124909+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.135153+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(9393, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.135229+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:19:05.155456+00', 20, '{"total-tables":8,"tables-classified":0}'), +(9394, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:00.157183+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.177308+00', 10020, NULL), +(9395, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:00.157221+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:00.158841+00', 1, '{"timezone-id":null}'), +(9396, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:00.159082+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:00.477109+00', 318, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9397, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:00.47721+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.173747+00', 9696, '{"total-fields":30,"updated-fields":0}'), +(9398, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.173826+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.175722+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9399, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.175779+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.177274+00', 1, NULL), +(9400, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.208489+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.233297+00', 24, NULL), +(9401, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.208528+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.226938+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9402, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.227012+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.22941+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(9403, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.229483+00', TIMESTAMP WITH TIME ZONE '2022-12-31 17:49:10.233252+00', 3, '{"total-tables":4,"tables-classified":0}'), +(9404, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 18:00:00.078+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:00:00.342+00', 264, NULL), +(9405, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 18:00:00.089+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:00:00.341+00', 252, NULL), +(9406, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:00.181784+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.304716+00', 4122, NULL), +(9407, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:00.185428+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:00.551394+00', 365, '{"timezone-id":"UTC"}'), +(9408, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:00.553683+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:00.795545+00', 241, '{"updated-tables":0,"total-tables":8}'), +(9409, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:00.795846+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.091526+00', 3295, '{"total-fields":71,"updated-fields":0}'), +(9410, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.091805+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.18884+00', 97, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9411, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.188934+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.30467+00', 115, NULL), +(9412, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.361433+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.442454+00', 81, NULL), +(9413, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.361466+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.406273+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9414, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.406359+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.419245+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(9415, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.419324+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:19:04.442399+00', 23, '{"total-tables":8,"tables-classified":0}'), +(9416, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:00.280659+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.476245+00', 8195, NULL), +(9417, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:00.280701+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:00.283381+00', 2, '{"timezone-id":null}'), +(9418, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:00.283487+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:00.50457+00', 221, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9419, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:00.50467+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.472459+00', 7967, '{"total-fields":30,"updated-fields":0}'), +(9420, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.472575+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.474303+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9421, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.474381+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.476187+00', 1, NULL), +(9422, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.51254+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.540714+00', 28, NULL), +(9423, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.512573+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.532559+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9424, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.532776+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.536319+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9425, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.5364+00', TIMESTAMP WITH TIME ZONE '2022-12-31 18:49:08.540648+00', 4, '{"total-tables":4,"tables-classified":0}'), +(9426, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 19:00:00.124+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:00:00.42+00', 296, NULL), +(9427, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 19:00:00.124+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:00:00.421+00', 297, NULL), +(9428, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:00.201704+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.425742+00', 7224, NULL), +(9429, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:00.205294+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:00.684912+00', 479, '{"timezone-id":"UTC"}'), +(9430, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:00.686696+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:01.145354+00', 458, '{"updated-tables":0,"total-tables":8}'), +(9431, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:01.145794+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:06.497094+00', 5351, '{"total-fields":71,"updated-fields":0}'), +(9432, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:06.497423+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:06.608812+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9433, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:06.608969+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.425702+00', 816, NULL), +(9434, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.499986+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.591413+00', 91, NULL), +(9435, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.500017+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.551216+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9436, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.551289+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.560537+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(9437, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.560611+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:19:07.591235+00', 30, '{"total-tables":8,"tables-classified":0}'), +(9438, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:00.157742+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.602326+00', 7444, NULL), +(9439, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:00.157789+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:00.161076+00', 3, '{"timezone-id":null}'), +(9440, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:00.161185+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:00.425963+00', 264, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9441, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:00.426046+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.598964+00', 7172, '{"total-fields":30,"updated-fields":0}'), +(9442, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.599052+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.6007+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9443, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.600756+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.602292+00', 1, NULL), +(9444, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.673082+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.706174+00', 33, NULL), +(9445, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.673115+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.697556+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9446, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.697655+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.701108+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9447, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.701197+00', TIMESTAMP WITH TIME ZONE '2022-12-31 19:49:07.706091+00', 4, '{"total-tables":4,"tables-classified":0}'), +(9448, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 20:00:00.059+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:00:00.336+00', 277, NULL), +(9449, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 20:00:00.088+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:00:00.333+00', 245, NULL), +(9450, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:00.270065+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:03.837208+00', 3567, NULL), +(9451, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:00.275167+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:00.580895+00', 305, '{"timezone-id":"UTC"}'), +(9452, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:00.582437+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:00.884391+00', 301, '{"updated-tables":0,"total-tables":8}'), +(9453, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:00.88456+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:03.166935+00', 2282, '{"total-fields":71,"updated-fields":0}'), +(9454, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:03.167233+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:03.297416+00', 130, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9455, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:03.297757+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:03.83684+00', 539, NULL), +(9456, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.64221+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.770487+00', 128, NULL), +(9457, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.64226+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.738625+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9458, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.73872+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.750156+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9459, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.750243+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:19:04.770322+00', 20, '{"total-tables":8,"tables-classified":0}'), +(9460, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:00.140313+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.250566+00', 8110, NULL), +(9461, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:00.140369+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:00.141997+00', 1, '{"timezone-id":null}'), +(9462, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:00.142101+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:00.398094+00', 255, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9463, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:00.398226+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.24423+00', 7846, '{"total-fields":30,"updated-fields":0}'), +(9464, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.244402+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.248221+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9465, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.248341+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.250478+00', 2, NULL), +(9466, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.295014+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.331852+00', 36, NULL), +(9467, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.295048+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.317475+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9468, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.3176+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.321535+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9469, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.321653+00', TIMESTAMP WITH TIME ZONE '2022-12-31 20:49:08.331751+00', 10, '{"total-tables":4,"tables-classified":0}'), +(9470, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:00.264+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:00.336+00', 72, NULL), +(9471, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:00.267+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:00.334+00', 67, NULL), +(9472, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:00.504194+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:07.86899+00', 7364, NULL), +(9473, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:00.50689+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:02.173085+00', 1666, '{"deleted":0}'), +(9474, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:02.177423+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:00:07.868622+00', 5691, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(9475, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:00.169977+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.214325+00', 1044, NULL), +(9476, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:00.171847+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:00.315263+00', 143, '{"timezone-id":"UTC"}'), +(9477, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:00.31598+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:00.492144+00', 176, '{"updated-tables":0,"total-tables":8}'), +(9478, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:00.492251+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.037295+00', 545, '{"total-fields":71,"updated-fields":0}'), +(9479, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.037761+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.078889+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9480, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.07896+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.214277+00', 135, NULL), +(9481, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.285644+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.697717+00', 412, NULL), +(9482, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.285689+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.6344+00', 348, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9483, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.634556+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.66678+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(9484, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.666905+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:19:01.6976+00', 30, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9485, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:01.218171+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:12.971406+00', 11753, NULL), +(9486, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:01.225478+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:01.257946+00', 32, '{"timezone-id":null}'), +(9487, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:01.260461+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:01.55942+00', 298, '{"updated-tables":0,"total-tables":4}'), +(9488, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:01.55978+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:12.950582+00', 11390, '{"total-fields":30,"updated-fields":0}'), +(9489, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:12.950741+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:12.965699+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9490, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:12.965784+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:12.971324+00', 5, NULL), +(9491, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.170348+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.286072+00', 115, NULL), +(9492, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.170386+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.247324+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9493, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.247471+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.25944+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9494, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.259599+00', TIMESTAMP WITH TIME ZONE '2022-12-31 21:49:13.286001+00', 26, '{"total-tables":4,"tables-classified":0}'), +(9495, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 22:00:00.124+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:00:00.322+00', 198, NULL), +(9496, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 22:00:00.124+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:00:00.32+00', 196, NULL), +(9497, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:00.207098+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.171194+00', 3964, NULL), +(9498, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:00.209693+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:00.575353+00', 365, '{"timezone-id":"UTC"}'), +(9499, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:00.576894+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:00.794287+00', 217, '{"updated-tables":0,"total-tables":8}'), +(9500, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:00.794568+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:03.588631+00', 2794, '{"total-fields":71,"updated-fields":0}'), +(9501, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:03.588998+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:03.710079+00', 121, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9502, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:03.710525+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.170962+00', 460, NULL), +(9503, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.250596+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.35042+00', 99, NULL), +(9504, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.250636+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.308645+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9505, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.308793+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.318741+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(9506, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.318831+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:19:04.350331+00', 31, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9507, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:00.135944+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.594586+00', 7458, NULL), +(9508, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:00.13599+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:00.137941+00', 1, '{"timezone-id":null}'), +(9509, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:00.138034+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:00.422848+00', 284, '{"updated-tables":0,"total-tables":4}'), +(9510, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:00.423124+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.588069+00', 7164, '{"total-fields":30,"updated-fields":0}'), +(9511, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.588247+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.590892+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9512, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.590989+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.594505+00', 3, NULL), +(9513, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.634039+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.658229+00', 24, NULL), +(9514, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.634074+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.650618+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9515, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.650762+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.653834+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9516, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.653932+00', TIMESTAMP WITH TIME ZONE '2022-12-31 22:49:07.658135+00', 4, '{"total-tables":4,"tables-classified":0}'), +(9517, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 23:00:00.113+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:00:01.552+00', 1439, NULL), +(9518, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2022-12-31 23:00:00.113+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:00:01.67+00', 1557, NULL), +(9519, 'sync', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:00.170458+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:03.808172+00', 3637, NULL), +(9520, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:00.174166+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:00.488633+00', 314, '{"timezone-id":"UTC"}'), +(9521, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:00.490694+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:00.723128+00', 232, '{"updated-tables":0,"total-tables":8}'), +(9522, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:00.72343+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:02.903485+00', 2180, '{"total-fields":71,"updated-fields":0}'), +(9523, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:02.90382+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:03.041987+00', 138, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9524, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:03.042246+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:03.80781+00', 765, NULL), +(9525, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.130317+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.212577+00', 82, NULL), +(9526, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.130352+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.182817+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9527, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.182898+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.192963+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(9528, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.193037+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:19:04.212514+00', 19, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9529, 'sync', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:00.204555+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.444565+00', 10240, NULL), +(9530, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:00.204598+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:00.207025+00', 2, '{"timezone-id":null}'), +(9531, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:00.207157+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:00.500811+00', 293, '{"updated-tables":0,"total-tables":4}'), +(9532, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:00.500907+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.442618+00', 9941, '{"total-fields":30,"updated-fields":0}'), +(9533, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.442727+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.444156+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9534, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.444211+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.444535+00', 0, NULL), +(9535, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.474983+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.498522+00', 23, NULL), +(9536, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.475014+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.487595+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9537, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.487778+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.49239+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9538, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.492577+00', TIMESTAMP WITH TIME ZONE '2022-12-31 23:49:10.498367+00', 5, '{"total-tables":4,"tables-classified":0}'), +(9539, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 00:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:00:00.557+00', 396, NULL), +(9540, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 00:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:00:00.556+00', 395, NULL), +(9541, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:00.219057+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.061216+00', 3842, NULL), +(9542, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:00.222727+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:00.811342+00', 588, '{"timezone-id":"UTC"}'), +(9543, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:00.813265+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:01.209896+00', 396, '{"updated-tables":0,"total-tables":8}'), +(9544, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:01.210194+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:03.427293+00', 2217, '{"total-fields":71,"updated-fields":0}'), +(9545, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:03.427413+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:03.546365+00', 118, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9546, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:03.54677+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.060954+00', 514, NULL), +(9547, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.263516+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.563358+00', 299, NULL), +(9548, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.263558+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.460791+00', 197, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9549, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.460916+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.510484+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(9550, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.510619+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:19:04.563269+00', 52, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9551, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:00.614393+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.45634+00', 8841, NULL), +(9552, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:00.617703+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:00.62815+00', 10, '{"timezone-id":null}'), +(9553, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:00.628933+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:00.956184+00', 327, '{"updated-tables":0,"total-tables":4}'), +(9554, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:00.956476+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.441245+00', 8484, '{"total-fields":30,"updated-fields":0}'), +(9555, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.441356+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.446887+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9556, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.447736+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.456254+00', 8, NULL), +(9557, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.638151+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.69082+00', 52, NULL), +(9558, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.638191+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.678833+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9559, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.679272+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.683509+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9560, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.683584+00', TIMESTAMP WITH TIME ZONE '2023-01-01 00:49:09.690765+00', 7, '{"total-tables":4,"tables-classified":0}'), +(9561, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 01:00:01.223+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:00:01.766+00', 543, NULL), +(9562, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 01:00:00.745+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:00:01.767+00', 1022, NULL), +(9563, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:00.159982+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.407664+00', 3247, NULL), +(9564, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:00.16361+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:00.428962+00', 265, '{"timezone-id":"UTC"}'), +(9565, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:00.430699+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:00.617213+00', 186, '{"updated-tables":0,"total-tables":8}'), +(9566, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:00.617434+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:02.590564+00', 1973, '{"total-fields":71,"updated-fields":0}'), +(9567, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:02.590919+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:02.706197+00', 115, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9568, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:02.706507+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.407616+00', 701, NULL), +(9569, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.474111+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.56328+00', 89, NULL), +(9570, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.474147+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.52255+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9571, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.522628+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.534044+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9572, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.534126+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:19:03.563227+00', 29, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9573, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:00.144742+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.412989+00', 7268, NULL), +(9574, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:00.14478+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:00.146332+00', 1, '{"timezone-id":null}'), +(9575, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:00.146401+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:00.461221+00', 314, '{"updated-tables":0,"total-tables":4}'), +(9576, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:00.461385+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.409339+00', 6947, '{"total-fields":30,"updated-fields":0}'), +(9577, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.409425+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.411173+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9578, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.411229+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.412957+00', 1, NULL), +(9579, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.475943+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.520928+00', 44, NULL), +(9580, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.475982+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.503623+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9581, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.503708+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.507896+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9582, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.508002+00', TIMESTAMP WITH TIME ZONE '2023-01-01 01:49:07.520801+00', 12, '{"total-tables":4,"tables-classified":0}'), +(9583, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:00.371+00', 247, NULL), +(9584, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:00.371+00', 238, NULL), +(9585, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:00.668994+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:07.369295+00', 6700, NULL), +(9586, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:00.672626+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:01.213732+00', 541, '{"deleted":0}'), +(9587, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:01.232063+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:00:07.369166+00', 6137, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(9588, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:00.054043+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.443306+00', 1389, NULL), +(9589, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:00.054102+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:00.354688+00', 300, '{"timezone-id":"UTC"}'), +(9590, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:00.354803+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:00.567422+00', 212, '{"updated-tables":0,"total-tables":8}'), +(9591, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:00.567756+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.328172+00', 760, '{"total-fields":71,"updated-fields":0}'), +(9592, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.328241+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.356408+00', 28, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9593, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.35651+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.443267+00', 86, NULL), +(9594, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.463629+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.537377+00', 73, NULL), +(9595, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.46366+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.513199+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9596, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.513276+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.522109+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(9597, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.52224+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:19:01.537323+00', 15, '{"total-tables":8,"tables-classified":0}'), +(9598, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:00.032104+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.691363+00', 8659, NULL), +(9599, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:00.032151+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:00.033139+00', 0, '{"timezone-id":null}'), +(9600, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:00.03327+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:00.136882+00', 103, '{"updated-tables":0,"total-tables":4}'), +(9601, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:00.136958+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.686923+00', 8549, '{"total-fields":30,"updated-fields":0}'), +(9602, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.68709+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.690482+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9603, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.690565+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.691328+00', 0, NULL), +(9604, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.720685+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.769576+00', 48, NULL), +(9605, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.720719+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.740098+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9606, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.740221+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.744694+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9607, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.744782+00', TIMESTAMP WITH TIME ZONE '2023-01-01 02:49:08.769513+00', 24, '{"total-tables":4,"tables-classified":0}'), +(9608, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 03:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:00:00.362+00', 243, NULL), +(9609, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 03:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:00:00.362+00', 243, NULL), +(9610, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:00.237663+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:03.846702+00', 3609, NULL), +(9611, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:00.241394+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:00.691246+00', 449, '{"timezone-id":"UTC"}'), +(9612, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:00.693656+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:00.880658+00', 187, '{"updated-tables":0,"total-tables":8}'), +(9613, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:00.881194+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:03.272879+00', 2391, '{"total-fields":71,"updated-fields":0}'), +(9614, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:03.272974+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:03.366213+00', 93, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9615, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:03.366454+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:03.846494+00', 480, NULL), +(9616, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.012084+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.348851+00', 336, NULL), +(9617, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.012319+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.236054+00', 223, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9618, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.236196+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.283089+00', 46, '{"fields-classified":0,"fields-failed":0}'), +(9619, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.2834+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:19:04.348751+00', 65, '{"total-tables":8,"tables-classified":0}'), +(9620, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:00.172758+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.363417+00', 13190, NULL), +(9621, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:00.172808+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:00.176189+00', 3, '{"timezone-id":null}'), +(9622, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:00.176475+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:00.657925+00', 481, '{"updated-tables":0,"total-tables":4}'), +(9623, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:00.658235+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.361373+00', 12703, '{"total-fields":30,"updated-fields":0}'), +(9624, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.361465+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.362782+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9625, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.362903+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.363391+00', 0, NULL), +(9626, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.411309+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.452954+00', 41, NULL), +(9627, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.411347+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.445477+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9628, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.445588+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.448404+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(9629, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.448496+00', TIMESTAMP WITH TIME ZONE '2023-01-01 03:49:13.452898+00', 4, '{"total-tables":4,"tables-classified":0}'), +(9630, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 04:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:00:00.363+00', 243, NULL), +(9631, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 04:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:00:00.441+00', 324, NULL), +(9632, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:00.137186+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.622486+00', 3485, NULL), +(9633, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:00.141219+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:00.489056+00', 347, '{"timezone-id":"UTC"}'), +(9634, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:00.490986+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:00.777995+00', 287, '{"updated-tables":0,"total-tables":8}'), +(9635, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:00.778092+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.447125+00', 2669, '{"total-fields":71,"updated-fields":0}'), +(9636, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.447238+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.481418+00', 34, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9637, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.481516+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.622411+00', 140, NULL), +(9638, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.688336+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.76784+00', 79, NULL), +(9639, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.688369+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.727092+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9640, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.727197+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.749626+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(9641, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.749711+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:19:03.767778+00', 18, '{"total-tables":8,"tables-classified":0}'), +(9642, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:00.119371+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.07767+00', 8958, NULL), +(9643, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:00.119407+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:00.124601+00', 5, '{"timezone-id":null}'), +(9644, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:00.124691+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:00.34139+00', 216, '{"updated-tables":0,"total-tables":4}'), +(9645, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:00.341468+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.071201+00', 8729, '{"total-fields":30,"updated-fields":0}'), +(9646, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.071342+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.073758+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9647, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.073879+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.077512+00', 3, NULL), +(9648, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.23338+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.284183+00', 50, NULL), +(9649, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.233411+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.271929+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9650, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.272007+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.277556+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(9651, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.277635+00', TIMESTAMP WITH TIME ZONE '2023-01-01 04:49:09.282845+00', 5, '{"total-tables":4,"tables-classified":0}'), +(9652, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 05:00:00.044+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:00:00.274+00', 230, NULL), +(9653, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 05:00:00.081+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:00:00.274+00', 193, NULL), +(9654, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:00.185917+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.65303+00', 2467, NULL), +(9655, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:00.188345+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:00.600179+00', 411, '{"timezone-id":"UTC"}'), +(9656, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:00.60343+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:00.858084+00', 254, '{"updated-tables":0,"total-tables":8}'), +(9657, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:00.858178+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.434399+00', 1576, '{"total-fields":71,"updated-fields":0}'), +(9658, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.434516+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.480274+00', 45, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9659, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.480354+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.652947+00', 172, NULL), +(9660, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.714101+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.78184+00', 67, NULL), +(9661, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.714138+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.758322+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9662, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.758494+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.768035+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(9663, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.768166+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:19:02.781781+00', 13, '{"total-tables":8,"tables-classified":0}'), +(9664, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:00.169164+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.587883+00', 7418, NULL), +(9665, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:00.169413+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:00.171581+00', 2, '{"timezone-id":null}'), +(9666, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:00.172122+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:00.469015+00', 296, '{"updated-tables":0,"total-tables":4}'), +(9667, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:00.469118+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.577127+00', 7108, '{"total-fields":30,"updated-fields":0}'), +(9668, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.577211+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.582465+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9669, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.582533+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.587836+00', 5, NULL), +(9670, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.631507+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.678801+00', 47, NULL), +(9671, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.631539+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.662677+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9672, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.662863+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.668076+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(9673, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.668232+00', TIMESTAMP WITH TIME ZONE '2023-01-01 05:49:07.678647+00', 10, '{"total-tables":4,"tables-classified":0}'), +(9674, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 06:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:00:00.279+00', 208, NULL), +(9675, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 06:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:00:00.241+00', 150, NULL), +(9676, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:00.129219+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.035955+00', 3906, NULL), +(9677, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:00.131129+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:00.280181+00', 149, '{"timezone-id":"UTC"}'), +(9678, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:00.280578+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:01.40936+00', 1128, '{"updated-tables":0,"total-tables":8}'), +(9679, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:01.409493+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:03.667722+00', 2258, '{"total-fields":71,"updated-fields":0}'), +(9680, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:03.66801+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:03.764662+00', 96, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9681, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:03.764944+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.035907+00', 270, NULL), +(9682, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.089067+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.201946+00', 112, NULL), +(9683, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.089106+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.167945+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9684, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.16836+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.180266+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9685, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.180357+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:19:04.201887+00', 21, '{"total-tables":8,"tables-classified":0}'), +(9686, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:00.132223+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.35939+00', 8227, NULL), +(9687, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:00.13227+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:00.133869+00', 1, '{"timezone-id":null}'), +(9688, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:00.133954+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:00.346689+00', 212, '{"updated-tables":0,"total-tables":4}'), +(9689, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:00.346769+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.356276+00', 8009, '{"total-fields":30,"updated-fields":0}'), +(9690, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.356373+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.357841+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9691, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.357913+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.359345+00', 1, NULL), +(9692, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.409645+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.430956+00', 21, NULL), +(9693, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.409675+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.42323+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9694, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.423317+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.426431+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9695, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.426501+00', TIMESTAMP WITH TIME ZONE '2023-01-01 06:49:08.43088+00', 4, '{"total-tables":4,"tables-classified":0}'), +(9696, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 07:00:00.39+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:00:01.152+00', 762, NULL), +(9697, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 07:00:00.335+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:00:01.209+00', 874, NULL), +(9698, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:00.062336+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.175357+00', 3113, NULL), +(9699, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:00.063344+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:00.241363+00', 178, '{"timezone-id":"UTC"}'), +(9700, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:00.241843+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:00.378762+00', 136, '{"updated-tables":0,"total-tables":8}'), +(9701, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:00.37904+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:02.424773+00', 2045, '{"total-fields":71,"updated-fields":0}'), +(9702, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:02.42517+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:02.544716+00', 119, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9703, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:02.545256+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.175293+00', 630, NULL), +(9704, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.334014+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:04.014848+00', 680, NULL), +(9705, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.334244+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.928961+00', 594, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9706, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.929242+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.961668+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(9707, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:03.96199+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:19:04.014766+00', 52, '{"total-tables":8,"tables-classified":0}'), +(9708, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:00.337524+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.398579+00', 7061, NULL), +(9709, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:00.337571+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:00.33916+00', 1, '{"timezone-id":null}'), +(9710, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:00.339572+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:00.604461+00', 264, '{"updated-tables":0,"total-tables":4}'), +(9711, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:00.60456+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.394921+00', 6790, '{"total-fields":30,"updated-fields":0}'), +(9712, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.394997+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.396754+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9713, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.396811+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.398544+00', 1, NULL), +(9714, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.428441+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.45988+00', 31, NULL), +(9715, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.428472+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.449004+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9716, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.4491+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.45512+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(9717, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.455206+00', TIMESTAMP WITH TIME ZONE '2023-01-01 07:49:07.459825+00', 4, '{"total-tables":4,"tables-classified":0}'), +(9718, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 08:00:00.081+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:00:00.213+00', 132, NULL), +(9719, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 08:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:00:00.213+00', 122, NULL), +(9720, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:00.122366+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.686079+00', 3563, NULL), +(9721, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:00.125009+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:00.345061+00', 220, '{"timezone-id":"UTC"}'), +(9722, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:00.345763+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:00.550432+00', 204, '{"updated-tables":0,"total-tables":8}'), +(9723, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:00.550712+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.407725+00', 2857, '{"total-fields":71,"updated-fields":0}'), +(9724, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.408041+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.491977+00', 83, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9725, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.492452+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.686005+00', 193, NULL), +(9726, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.731936+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.826214+00', 94, NULL), +(9727, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.731966+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.777139+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9728, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.777448+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.797378+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(9729, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.797458+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:19:03.826121+00', 28, '{"total-tables":8,"tables-classified":0}'), +(9730, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:00.147118+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.623158+00', 7476, NULL), +(9731, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:00.147158+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:00.148593+00', 1, '{"timezone-id":null}'), +(9732, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:00.148671+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:00.402034+00', 253, '{"updated-tables":0,"total-tables":4}'), +(9733, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:00.402118+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.617275+00', 7215, '{"total-fields":30,"updated-fields":0}'), +(9734, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.617401+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.619431+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9735, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.619524+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.623085+00', 3, NULL), +(9736, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.650631+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.691307+00', 40, NULL), +(9737, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.650664+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.680846+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9738, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.680937+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.684774+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9739, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.684859+00', TIMESTAMP WITH TIME ZONE '2023-01-01 08:49:07.691255+00', 6, '{"total-tables":4,"tables-classified":0}'), +(9740, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 09:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:00:00.441+00', 313, NULL), +(9741, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 09:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:00:00.55+00', 422, NULL), +(9742, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:00.329298+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.319582+00', 3990, NULL), +(9743, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:00.332771+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:00.749929+00', 417, '{"timezone-id":"UTC"}'), +(9744, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:00.753555+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:01.095908+00', 342, '{"updated-tables":0,"total-tables":8}'), +(9745, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:01.096314+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:03.63153+00', 2535, '{"total-fields":71,"updated-fields":0}'), +(9746, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:03.632152+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:03.770357+00', 138, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9747, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:03.770655+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.319509+00', 548, NULL), +(9748, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.461492+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.728896+00', 267, NULL), +(9749, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.461533+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.643281+00', 181, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9750, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.643804+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.68466+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(9751, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.6849+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:19:04.728819+00', 43, '{"total-tables":8,"tables-classified":0}'), +(9752, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:00.143225+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:08.916005+00', 8772, NULL), +(9753, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:00.143269+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:00.144713+00', 1, '{"timezone-id":null}'), +(9754, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:00.144791+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:00.417488+00', 272, '{"updated-tables":0,"total-tables":4}'), +(9755, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:00.417569+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:08.909679+00', 8492, '{"total-fields":30,"updated-fields":0}'), +(9756, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:08.909779+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:08.913259+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9757, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:08.913391+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:08.915961+00', 2, NULL), +(9758, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.007031+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.031651+00', 24, NULL), +(9759, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.007066+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.022795+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9760, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.02301+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.026397+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9761, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.026509+00', TIMESTAMP WITH TIME ZONE '2023-01-01 09:49:09.031578+00', 5, '{"total-tables":4,"tables-classified":0}'), +(9762, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 10:00:00.074+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:00:00.258+00', 184, NULL), +(9763, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 10:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:00:00.258+00', 161, NULL), +(9764, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:00.092479+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.725949+00', 3633, NULL), +(9765, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:00.093202+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:00.313599+00', 220, '{"timezone-id":"UTC"}'), +(9766, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:00.314658+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:00.484168+00', 169, '{"updated-tables":0,"total-tables":8}'), +(9767, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:00.484562+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.075437+00', 2590, '{"total-fields":71,"updated-fields":0}'), +(9768, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.075847+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.198573+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9769, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.198715+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.725862+00', 527, NULL), +(9770, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.836068+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.913699+00', 77, NULL), +(9771, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.836098+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.876542+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9772, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.87662+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.883814+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(9773, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.884115+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:19:03.913605+00', 29, '{"total-tables":8,"tables-classified":0}'), +(9774, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:00.302939+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.139298+00', 8836, NULL), +(9775, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:00.303538+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:00.313331+00', 9, '{"timezone-id":null}'), +(9776, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:00.314356+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:00.631705+00', 317, '{"updated-tables":0,"total-tables":4}'), +(9777, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:00.631801+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.131386+00', 8499, '{"total-fields":30,"updated-fields":0}'), +(9778, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.131534+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.136683+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9779, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.136783+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.13924+00', 2, NULL), +(9780, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.211002+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.252118+00', 41, NULL), +(9781, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.211052+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.239203+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9782, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.239279+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.24408+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9783, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.244148+00', TIMESTAMP WITH TIME ZONE '2023-01-01 10:49:09.252055+00', 7, '{"total-tables":4,"tables-classified":0}'), +(9784, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 11:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:00:00.365+00', 247, NULL), +(9785, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 11:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:00:00.446+00', 329, NULL), +(9786, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:00.146787+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.083207+00', 3936, NULL), +(9787, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:00.14864+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:00.446931+00', 298, '{"timezone-id":"UTC"}'), +(9788, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:00.448955+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:00.659624+00', 210, '{"updated-tables":0,"total-tables":8}'), +(9789, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:00.66031+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:02.915992+00', 2255, '{"total-fields":71,"updated-fields":0}'), +(9790, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:02.916364+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:03.032555+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9791, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:03.032681+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.083157+00', 1050, NULL), +(9792, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.259088+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.33766+00', 78, NULL), +(9793, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.259121+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.303217+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9794, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.3033+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.311802+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(9795, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.311882+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:19:04.337529+00', 25, '{"total-tables":8,"tables-classified":0}'), +(9796, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:00.120665+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.002276+00', 7881, NULL), +(9797, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:00.120706+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:00.123178+00', 2, '{"timezone-id":null}'), +(9798, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:00.123262+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:00.38592+00', 262, '{"updated-tables":0,"total-tables":4}'), +(9799, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:00.386119+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:07.996597+00', 7610, '{"total-fields":30,"updated-fields":0}'), +(9800, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:07.996673+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:07.997986+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9801, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:07.998038+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.002117+00', 4, NULL), +(9802, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.047516+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.079572+00', 32, NULL), +(9803, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.047554+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.065181+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9804, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.065389+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.068195+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(9805, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.068283+00', TIMESTAMP WITH TIME ZONE '2023-01-01 11:49:08.079476+00', 11, '{"total-tables":4,"tables-classified":0}'), +(9806, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 12:00:00.075+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:00:00.246+00', 171, NULL), +(9807, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 12:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:00:00.245+00', 151, NULL), +(9808, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:00.160409+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.622931+00', 3462, NULL), +(9809, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:00.163416+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:00.39902+00', 235, '{"timezone-id":"UTC"}'), +(9810, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:00.400272+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:00.606956+00', 206, '{"updated-tables":0,"total-tables":8}'), +(9811, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:00.607287+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.213164+00', 2605, '{"total-fields":71,"updated-fields":0}'), +(9812, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.213508+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.307745+00', 94, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9813, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.307829+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.622878+00', 315, NULL), +(9814, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.675117+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.759439+00', 84, NULL), +(9815, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.675152+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.718413+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9816, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.71851+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.726833+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(9817, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.726908+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:19:03.759377+00', 32, '{"total-tables":8,"tables-classified":0}'), +(9818, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:00.171701+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.631968+00', 10460, NULL), +(9819, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:00.171745+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:00.173914+00', 2, '{"timezone-id":null}'), +(9820, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:00.174107+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:00.430064+00', 255, '{"updated-tables":0,"total-tables":4}'), +(9821, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:00.430182+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.621109+00', 10190, '{"total-fields":30,"updated-fields":0}'), +(9822, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.621229+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.624593+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9823, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.624672+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.63186+00', 7, NULL), +(9824, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.752061+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.82816+00', 76, NULL), +(9825, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.752895+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.803432+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9826, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.803643+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.810335+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(9827, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.810438+00', TIMESTAMP WITH TIME ZONE '2023-01-01 12:49:10.827963+00', 17, '{"total-tables":4,"tables-classified":0}'), +(9828, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 13:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:00:00.329+00', 225, NULL), +(9829, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 13:00:00.099+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:00:00.397+00', 298, NULL), +(9830, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:00.185087+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:03.854137+00', 3669, NULL), +(9831, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:00.187453+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:00.52441+00', 336, '{"timezone-id":"UTC"}'), +(9832, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:00.526064+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:00.731109+00', 205, '{"updated-tables":0,"total-tables":8}'), +(9833, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:00.731392+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:02.808614+00', 2077, '{"total-fields":71,"updated-fields":0}'), +(9834, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:02.813282+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:02.933587+00', 120, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9835, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:02.933935+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:03.854086+00', 920, NULL), +(9836, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:03.972509+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:04.114498+00', 141, NULL), +(9837, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:03.972556+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:04.065641+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9838, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:04.065749+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:04.078447+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(9839, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:04.07854+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:19:04.114444+00', 35, '{"total-tables":8,"tables-classified":0}'), +(9840, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:00.154468+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.792072+00', 8637, NULL), +(9841, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:00.15451+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:00.155965+00', 1, '{"timezone-id":null}'), +(9842, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:00.156171+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:00.432806+00', 276, '{"updated-tables":0,"total-tables":4}'), +(9843, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:00.432906+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.788183+00', 8355, '{"total-fields":30,"updated-fields":0}'), +(9844, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.788276+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.7901+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9845, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.790166+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.792034+00', 1, NULL), +(9846, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.837972+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.87119+00', 33, NULL), +(9847, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.838869+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.861772+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9848, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.861883+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.865236+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9849, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.865318+00', TIMESTAMP WITH TIME ZONE '2023-01-01 13:49:08.871124+00', 5, '{"total-tables":4,"tables-classified":0}'), +(9850, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 14:00:00.103+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:00:00.394+00', 291, NULL), +(9851, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 14:00:00.121+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:00:00.392+00', 271, NULL), +(9852, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:00.184554+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.05872+00', 4874, NULL), +(9853, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:00.187233+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:00.585876+00', 398, '{"timezone-id":"UTC"}'), +(9854, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:00.587562+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:00.911418+00', 323, '{"updated-tables":0,"total-tables":8}'), +(9855, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:00.911792+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:04.306311+00', 3394, '{"total-fields":71,"updated-fields":0}'), +(9856, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:04.306658+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:04.442688+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9857, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:04.442933+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.058374+00', 615, NULL), +(9858, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.118991+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.250917+00', 131, NULL), +(9859, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.119031+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.18964+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9860, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.189775+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.208352+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(9861, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.208494+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:19:05.250801+00', 42, '{"total-tables":8,"tables-classified":0}'), +(9862, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:00.169433+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.729139+00', 9559, NULL), +(9863, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:00.169552+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:00.171685+00', 2, '{"timezone-id":null}'), +(9864, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:00.171777+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:00.467808+00', 296, '{"updated-tables":0,"total-tables":4}'), +(9865, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:00.467916+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.725415+00', 9257, '{"total-fields":30,"updated-fields":0}'), +(9866, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.725534+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.727592+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9867, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.727669+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.729037+00', 1, NULL), +(9868, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.797455+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.941511+00', 144, NULL), +(9869, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.797935+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.922421+00', 124, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9870, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.922521+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.934509+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(9871, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.934616+00', TIMESTAMP WITH TIME ZONE '2023-01-01 14:49:09.941442+00', 6, '{"total-tables":4,"tables-classified":0}'), +(9872, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 15:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:00:00.597+00', 437, NULL), +(9873, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 15:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:00:00.598+00', 448, NULL), +(9874, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:00.233748+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:05.771039+00', 5537, NULL), +(9875, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:00.238126+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:00.77423+00', 536, '{"timezone-id":"UTC"}'), +(9876, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:00.776604+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:01.190765+00', 414, '{"updated-tables":0,"total-tables":8}'), +(9877, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:01.191378+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:04.982485+00', 3791, '{"total-fields":71,"updated-fields":0}'), +(9878, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:04.982756+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:05.13932+00', 156, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9879, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:05.139576+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:05.770445+00', 630, NULL), +(9880, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:05.951871+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:06.070627+00', 118, NULL), +(9881, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:05.95191+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:06.037968+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9882, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:06.038058+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:06.051029+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(9883, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:06.051113+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:19:06.070566+00', 19, '{"total-tables":8,"tables-classified":0}'), +(9884, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:00.208892+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.331434+00', 10122, NULL), +(9885, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:00.208935+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:00.210466+00', 1, '{"timezone-id":null}'), +(9886, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:00.210597+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:00.600962+00', 390, '{"updated-tables":0,"total-tables":4}'), +(9887, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:00.601069+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.251955+00', 9650, '{"total-fields":30,"updated-fields":0}'), +(9888, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.252103+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.301519+00', 49, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9889, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.3016+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.331329+00', 29, NULL), +(9890, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.867329+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.99699+00', 129, NULL), +(9891, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.86737+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.948033+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9892, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.94812+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.989418+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(9893, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.989523+00', TIMESTAMP WITH TIME ZONE '2023-01-01 15:49:10.996913+00', 7, '{"total-tables":4,"tables-classified":0}'), +(9894, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 16:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:00:00.388+00', 282, NULL), +(9895, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 16:00:00.121+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:00:00.385+00', 264, NULL), +(9896, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:00.208803+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.782153+00', 4573, NULL), +(9897, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:00.212814+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:00.659144+00', 446, '{"timezone-id":"UTC"}'), +(9898, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:00.661635+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:01.091971+00', 430, '{"updated-tables":0,"total-tables":8}'), +(9899, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:01.105554+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:03.479742+00', 2374, '{"total-fields":71,"updated-fields":0}'), +(9900, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:03.480451+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:03.616496+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9901, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:03.617024+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.781594+00', 1164, NULL), +(9902, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.850223+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.938787+00', 88, NULL), +(9903, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.850255+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.911435+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9904, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.911512+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.920981+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(9905, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.921053+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:19:04.938722+00', 17, '{"total-tables":8,"tables-classified":0}'), +(9906, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:00.166336+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.249286+00', 8082, NULL), +(9907, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:00.166372+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:00.168491+00', 2, '{"timezone-id":null}'), +(9908, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:00.168574+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:00.501019+00', 332, '{"updated-tables":0,"total-tables":4}'), +(9909, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:00.501167+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.245106+00', 7743, '{"total-fields":30,"updated-fields":0}'), +(9910, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.245187+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.246802+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9911, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.246857+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.24924+00', 2, NULL), +(9912, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.293511+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.331287+00', 37, NULL), +(9913, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.293545+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.321756+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9914, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.321909+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.32592+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9915, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.326021+00', TIMESTAMP WITH TIME ZONE '2023-01-01 16:49:08.331223+00', 5, '{"total-tables":4,"tables-classified":0}'), +(9916, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 17:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:00:00.599+00', 432, NULL), +(9917, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 17:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:00:00.715+00', 551, NULL), +(9918, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:00.204457+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.470892+00', 4266, NULL), +(9919, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:00.208735+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:00.698549+00', 489, '{"timezone-id":"UTC"}'), +(9920, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:00.70176+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:01.083542+00', 381, '{"updated-tables":0,"total-tables":8}'), +(9921, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:01.083849+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:03.927348+00', 2843, '{"total-fields":71,"updated-fields":0}'), +(9922, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:03.927613+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.070874+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9923, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.071183+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.470668+00', 399, NULL), +(9924, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.549764+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.648196+00', 98, NULL), +(9925, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.549798+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.600127+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9926, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.600372+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.617345+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(9927, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.617549+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:19:04.648132+00', 30, '{"total-tables":8,"tables-classified":0}'), +(9928, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:01.766434+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.64988+00', 7883, NULL), +(9929, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:01.76648+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:01.768748+00', 2, '{"timezone-id":null}'), +(9930, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:01.768864+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:02.162889+00', 394, '{"updated-tables":0,"total-tables":4}'), +(9931, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:02.16303+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.646585+00', 7483, '{"total-fields":30,"updated-fields":0}'), +(9932, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.646676+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.648634+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9933, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.648696+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.649837+00', 1, NULL), +(9934, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.688688+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.771733+00', 83, NULL), +(9935, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.688715+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.762248+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9936, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.76239+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.766635+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(9937, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.766734+00', TIMESTAMP WITH TIME ZONE '2023-01-01 17:49:09.771678+00', 4, '{"total-tables":4,"tables-classified":0}'), +(9938, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 18:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:00:00.656+00', 515, NULL), +(9939, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 18:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:00:00.654+00', 509, NULL), +(9940, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:00.171567+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.258021+00', 5086, NULL), +(9941, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:00.174911+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:00.600079+00', 425, '{"timezone-id":"UTC"}'), +(9942, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:00.60234+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:00.937056+00', 334, '{"updated-tables":0,"total-tables":8}'), +(9943, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:00.937444+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:04.359436+00', 3421, '{"total-fields":71,"updated-fields":0}'), +(9944, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:04.35995+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:04.521501+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9945, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:04.521929+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.25761+00', 735, NULL), +(9946, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.354952+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.472552+00', 117, NULL), +(9947, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.354995+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.420907+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9948, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.420986+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.443965+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(9949, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.444044+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:19:05.472499+00', 28, '{"total-tables":8,"tables-classified":0}'), +(9950, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:00.184576+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.590389+00', 9405, NULL), +(9951, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:00.184618+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:00.187946+00', 3, '{"timezone-id":null}'), +(9952, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:00.188113+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:00.480203+00', 292, '{"updated-tables":0,"total-tables":4}'), +(9953, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:00.480276+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.58296+00', 9102, '{"total-fields":30,"updated-fields":0}'), +(9954, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.583268+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.587455+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9955, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.587707+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.590247+00', 2, NULL), +(9956, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.647938+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.686352+00', 38, NULL), +(9957, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.647974+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.669989+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9958, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.67027+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.677676+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(9959, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.677924+00', TIMESTAMP WITH TIME ZONE '2023-01-01 18:49:09.686168+00', 8, '{"total-tables":4,"tables-classified":0}'), +(9960, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 19:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:00:00.595+00', 432, NULL), +(9961, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 19:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:00:00.594+00', 424, NULL), +(9962, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:00.207507+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:05.64383+00', 5436, NULL), +(9963, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:00.211136+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:00.791583+00', 580, '{"timezone-id":"UTC"}'), +(9964, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:00.800076+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:01.403004+00', 602, '{"updated-tables":0,"total-tables":8}'), +(9965, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:01.404025+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:04.816525+00', 3412, '{"total-fields":71,"updated-fields":0}'), +(9966, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:04.816832+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:04.962587+00', 145, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9967, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:04.962988+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:05.643252+00', 680, NULL), +(9968, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:05.837008+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:06.062603+00', 225, NULL), +(9969, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:05.837298+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:05.98883+00', 151, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9970, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:05.98907+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:06.008663+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(9971, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:06.008762+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:19:06.062523+00', 53, '{"total-tables":8,"tables-classified":0}'), +(9972, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:00.17908+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.777191+00', 8598, NULL), +(9973, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:00.17912+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:00.181677+00', 2, '{"timezone-id":null}'), +(9974, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:00.181787+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:00.533009+00', 351, '{"updated-tables":0,"total-tables":4}'), +(9975, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:00.533088+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.772978+00', 8239, '{"total-fields":30,"updated-fields":0}'), +(9976, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.773109+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.775432+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9977, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.775504+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.777157+00', 1, NULL), +(9978, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.884114+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.974441+00', 90, NULL), +(9979, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.884206+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.903214+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(9980, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.903377+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.90666+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(9981, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.90679+00', TIMESTAMP WITH TIME ZONE '2023-01-01 19:49:08.974341+00', 67, '{"total-tables":4,"tables-classified":0}'), +(9982, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 20:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:00:00.309+00', 226, NULL), +(9983, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 20:00:00.066+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:00:00.35+00', 284, NULL), +(9984, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:00.097505+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.72536+00', 4627, NULL), +(9985, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:00.099663+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:00.386542+00', 286, '{"timezone-id":"UTC"}'), +(9986, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:00.387652+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:00.619837+00', 232, '{"updated-tables":0,"total-tables":8}'), +(9987, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:00.619927+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:03.321684+00', 2701, '{"total-fields":71,"updated-fields":0}'), +(9988, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:03.3218+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:03.470093+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(9989, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:03.470381+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.725051+00', 1254, NULL), +(9990, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.827463+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.901981+00', 74, NULL), +(9991, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.827489+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.875146+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(9992, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.875213+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.88532+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(9993, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.885438+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:19:04.901909+00', 16, '{"total-tables":8,"tables-classified":0}'), +(9994, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:00.16594+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.445099+00', 7279, NULL), +(9995, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:00.16598+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:00.167516+00', 1, '{"timezone-id":null}'), +(9996, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:00.167597+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:00.45586+00', 288, '{"updated-tables":0,"total-tables":4}'), +(9997, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:00.455932+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.440627+00', 6984, '{"total-fields":30,"updated-fields":0}'), +(9998, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.440698+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.442286+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(9999, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.442331+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.445062+00', 2, NULL), +(10000, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.477862+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.509822+00', 31, NULL), +(10001, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.477889+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.493884+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10002, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.494147+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.505282+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10003, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.505408+00', TIMESTAMP WITH TIME ZONE '2023-01-01 20:49:07.509712+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10004, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:00.137+00', 26, NULL), +(10005, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:00.297+00', 165, NULL), +(10006, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:00.348129+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:06.597551+00', 6249, NULL), +(10007, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:00.350962+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:01.977195+00', 1626, '{"deleted":0}'), +(10008, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:01.978385+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:00:06.597159+00', 4618, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(10009, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:00.234461+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.531636+00', 1297, NULL), +(10010, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:00.23622+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:00.338605+00', 102, '{"timezone-id":"UTC"}'), +(10011, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:00.340164+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:00.538214+00', 198, '{"updated-tables":0,"total-tables":8}'), +(10012, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:00.538526+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.25006+00', 711, '{"total-fields":71,"updated-fields":0}'), +(10013, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.25015+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.301203+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10014, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.301437+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.531589+00', 230, NULL), +(10015, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.627308+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:02.169206+00', 541, NULL), +(10016, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:01.627341+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:02.105213+00', 477, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10017, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:02.105321+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:02.120101+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(10018, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:02.120206+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:19:02.169117+00', 48, '{"total-tables":8,"tables-classified":0}'), +(10019, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:00.663046+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.47337+00', 12810, NULL), +(10020, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:00.66769+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:00.698989+00', 31, '{"timezone-id":null}'), +(10021, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:00.710374+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:01.143263+00', 432, '{"updated-tables":0,"total-tables":4}'), +(10022, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:01.143582+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.458225+00', 12314, '{"total-fields":30,"updated-fields":0}'), +(10023, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.458347+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.469819+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10024, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.469921+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.473012+00', 3, NULL), +(10025, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.636044+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.732974+00', 96, NULL), +(10026, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.636077+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.709576+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10027, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.709654+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.716562+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(10028, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.716636+00', TIMESTAMP WITH TIME ZONE '2023-01-01 21:49:13.732914+00', 16, '{"total-tables":4,"tables-classified":0}'), +(10029, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 22:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:00:00.385+00', 248, NULL), +(10030, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 22:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:00:00.512+00', 375, NULL), +(10031, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:00.190833+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.757228+00', 3566, NULL), +(10032, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:00.194555+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:00.498909+00', 304, '{"timezone-id":"UTC"}'), +(10033, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:00.500482+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:00.692839+00', 192, '{"updated-tables":0,"total-tables":8}'), +(10034, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:00.693144+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.378405+00', 2685, '{"total-fields":71,"updated-fields":0}'), +(10035, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.378835+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.474845+00', 96, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10036, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.475138+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.757027+00', 281, NULL), +(10037, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.794896+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.875491+00', 80, NULL), +(10038, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.794922+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.832905+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10039, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.832995+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.841543+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(10040, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.841664+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:19:03.875431+00', 33, '{"total-tables":8,"tables-classified":0}'), +(10041, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:00.14203+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.5668+00', 7424, NULL), +(10042, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:00.142069+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:00.14352+00', 1, '{"timezone-id":null}'), +(10043, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:00.14359+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:00.414021+00', 270, '{"updated-tables":0,"total-tables":4}'), +(10044, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:00.414092+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.56211+00', 7148, '{"total-fields":30,"updated-fields":0}'), +(10045, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.562233+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.564231+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10046, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.564381+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.566753+00', 2, NULL), +(10047, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.653153+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.70255+00', 49, NULL), +(10048, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.653185+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.693282+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10049, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.693424+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.696719+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10050, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.696804+00', TIMESTAMP WITH TIME ZONE '2023-01-01 22:49:07.702507+00', 5, '{"total-tables":4,"tables-classified":0}'), +(10051, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 23:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:00:00.358+00', 264, NULL), +(10052, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-01 23:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:00:00.36+00', 266, NULL), +(10053, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:00.172739+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:03.475566+00', 3302, NULL), +(10054, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:00.176891+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:00.520109+00', 343, '{"timezone-id":"UTC"}'), +(10055, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:00.521901+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:00.78107+00', 259, '{"updated-tables":0,"total-tables":8}'), +(10056, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:00.781378+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:02.887817+00', 2106, '{"total-fields":71,"updated-fields":0}'), +(10057, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:02.888038+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:02.992585+00', 104, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10058, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:02.992852+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:03.474985+00', 482, NULL), +(10059, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:03.617694+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:04.257268+00', 639, NULL), +(10060, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:03.617731+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:04.166141+00', 548, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10061, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:04.166434+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:04.209696+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(10062, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:04.209923+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:19:04.256857+00', 46, '{"total-tables":8,"tables-classified":0}'), +(10063, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:00.087521+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.951098+00', 6863, NULL), +(10064, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:00.087562+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:00.089195+00', 1, '{"timezone-id":null}'), +(10065, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:00.089268+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:00.263867+00', 174, '{"updated-tables":0,"total-tables":4}'), +(10066, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:00.263941+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.947728+00', 6683, '{"total-fields":30,"updated-fields":0}'), +(10067, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.947913+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.950022+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10068, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.950101+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.951052+00', 0, NULL), +(10069, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.984956+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:07.018757+00', 33, NULL), +(10070, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:06.984984+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:07.010457+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10071, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:07.010688+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:07.013678+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10072, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:07.013783+00', TIMESTAMP WITH TIME ZONE '2023-01-01 23:49:07.018625+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10073, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 00:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:00:00.397+00', 261, NULL), +(10074, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 00:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:00:00.48+00', 356, NULL), +(10075, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:00.506213+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.210269+00', 3704, NULL), +(10076, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:00.510733+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:01.107012+00', 596, '{"timezone-id":"UTC"}'), +(10077, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:01.109407+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:01.40938+00', 299, '{"updated-tables":0,"total-tables":8}'), +(10078, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:01.409726+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:03.583144+00', 2173, '{"total-fields":71,"updated-fields":0}'), +(10079, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:03.58326+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:03.700151+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10080, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:03.700468+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.209931+00', 509, NULL), +(10081, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.394499+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.678125+00', 283, NULL), +(10082, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.394534+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.572604+00', 178, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10083, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.573047+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.609359+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(10084, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.60958+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:19:04.677964+00', 68, '{"total-tables":8,"tables-classified":0}'), +(10085, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:00.340395+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.105559+00', 9765, NULL), +(10086, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:00.340705+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:00.347524+00', 6, '{"timezone-id":null}'), +(10087, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:00.348652+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:00.745587+00', 396, '{"updated-tables":0,"total-tables":4}'), +(10088, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:00.745658+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.099151+00', 9353, '{"total-fields":30,"updated-fields":0}'), +(10089, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.099228+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.103123+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10090, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.103184+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.105523+00', 2, NULL), +(10091, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.185071+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.232887+00', 47, NULL), +(10092, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.185114+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.224742+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10093, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.224824+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.228156+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10094, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.228221+00', TIMESTAMP WITH TIME ZONE '2023-01-02 00:49:10.232831+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10095, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 01:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:00:00.45+00', 258, NULL), +(10096, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 01:00:00.102+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:00:00.528+00', 426, NULL), +(10097, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:00.183613+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:03.535484+00', 3351, NULL), +(10098, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:00.187373+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:00.508135+00', 320, '{"timezone-id":"UTC"}'), +(10099, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:00.51003+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:00.802464+00', 292, '{"updated-tables":0,"total-tables":8}'), +(10100, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:00.802803+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:02.936278+00', 2133, '{"total-fields":71,"updated-fields":0}'), +(10101, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:02.936553+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:03.063136+00', 126, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10102, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:03.063793+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:03.534977+00', 471, NULL), +(10103, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.067446+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.152366+00', 84, NULL), +(10104, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.067478+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.116563+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10105, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.116673+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.128051+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10106, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.128127+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:19:04.152298+00', 24, '{"total-tables":8,"tables-classified":0}'), +(10107, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:00.135457+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.6372+00', 8501, NULL), +(10108, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:00.13549+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:00.137498+00', 2, '{"timezone-id":null}'), +(10109, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:00.137571+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:00.466331+00', 328, '{"updated-tables":0,"total-tables":4}'), +(10110, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:00.466415+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.632361+00', 8165, '{"total-fields":30,"updated-fields":0}'), +(10111, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.632514+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.6348+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10112, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.634886+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.637133+00', 2, NULL), +(10113, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.699042+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.72731+00', 28, NULL), +(10114, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.699069+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.719734+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10115, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.719824+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.722816+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10116, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.722896+00', TIMESTAMP WITH TIME ZONE '2023-01-02 01:49:08.727255+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10117, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:00.37+00', 229, NULL), +(10118, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:00.371+00', 245, NULL), +(10119, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:00.638388+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:06.508146+00', 5869, NULL), +(10120, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:00.642135+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:01.207178+00', 565, '{"deleted":0}'), +(10121, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:01.2092+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:00:06.507674+00', 5298, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(10122, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:00.05346+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.260618+00', 1207, NULL), +(10123, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:00.053651+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:00.34311+00', 289, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10124, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:00.343523+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:00.531686+00', 188, '{"updated-tables":0,"total-tables":8}'), +(10125, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:00.531968+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.103215+00', 571, '{"total-fields":71,"updated-fields":0}'), +(10126, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.103289+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.137185+00', 33, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10127, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.137261+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.260579+00', 123, NULL), +(10128, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.284544+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.455982+00', 171, NULL), +(10129, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.284572+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.433157+00', 148, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10130, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.433257+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.442681+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(10131, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.442904+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:19:01.455931+00', 13, '{"total-tables":8,"tables-classified":0}'), +(10132, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:00.037704+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.28189+00', 7244, NULL), +(10133, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:00.037741+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:00.040123+00', 2, '{"timezone-id":null}'), +(10134, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:00.040213+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:00.192077+00', 151, '{"updated-tables":0,"total-tables":4}'), +(10135, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:00.192149+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.276078+00', 7083, '{"total-fields":30,"updated-fields":0}'), +(10136, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.276367+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.279133+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10137, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.279331+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.281845+00', 2, NULL), +(10138, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.310723+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.348732+00', 38, NULL), +(10139, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.310752+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.334908+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10140, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.335048+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.338211+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10141, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.338302+00', TIMESTAMP WITH TIME ZONE '2023-01-02 02:49:07.348669+00', 10, '{"total-tables":4,"tables-classified":0}'), +(10142, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 03:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:00:00.327+00', 236, NULL), +(10143, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 03:00:00.085+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:00:00.328+00', 243, NULL), +(10144, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:00.291782+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.311717+00', 4019, NULL), +(10145, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:00.294154+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:00.694512+00', 400, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10146, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:00.696167+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:01.064384+00', 368, '{"updated-tables":0,"total-tables":8}'), +(10147, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:01.064764+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:03.702476+00', 2637, '{"total-fields":71,"updated-fields":0}'), +(10148, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:03.702849+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:03.813852+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10149, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:03.814122+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.311403+00', 497, NULL), +(10150, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.479824+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.775654+00', 295, NULL), +(10151, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.479855+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.687239+00', 207, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10152, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.687544+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.726975+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(10153, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.727214+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:19:04.775308+00', 48, '{"total-tables":8,"tables-classified":0}'), +(10154, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:00.129834+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.414836+00', 8285, NULL), +(10155, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:00.129871+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:00.133305+00', 3, '{"timezone-id":null}'), +(10156, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:00.1334+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:00.37592+00', 242, '{"updated-tables":0,"total-tables":4}'), +(10157, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:00.376005+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.411112+00', 8035, '{"total-fields":30,"updated-fields":0}'), +(10158, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.411192+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.41264+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10159, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.412956+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.414802+00', 1, NULL), +(10160, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.496707+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.527243+00', 30, NULL), +(10161, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.496736+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.51632+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10162, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.51639+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.520981+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(10163, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.521049+00', TIMESTAMP WITH TIME ZONE '2023-01-02 03:49:08.527193+00', 6, '{"total-tables":4,"tables-classified":0}'), +(10164, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 04:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:00:00.552+00', 424, NULL), +(10165, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 04:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:00:00.555+00', 431, NULL), +(10166, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:00.182415+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:03.98996+00', 3807, NULL), +(10167, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:00.18663+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:00.668362+00', 481, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10168, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:00.670436+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:00.936384+00', 265, '{"updated-tables":0,"total-tables":8}'), +(10169, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:00.936601+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:03.485383+00', 2548, '{"total-fields":71,"updated-fields":0}'), +(10170, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:03.485497+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:03.591895+00', 106, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10171, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:03.592156+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:03.989668+00', 397, NULL), +(10172, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.042781+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.138185+00', 95, NULL), +(10173, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.042811+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.102817+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10174, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.10292+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.1237+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(10175, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.123778+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:19:04.138136+00', 14, '{"total-tables":8,"tables-classified":0}'), +(10176, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:00.175321+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.057636+00', 9882, NULL), +(10177, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:00.175353+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:00.176694+00', 1, '{"timezone-id":null}'), +(10178, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:00.176781+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:00.506739+00', 329, '{"updated-tables":0,"total-tables":4}'), +(10179, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:00.506826+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.042249+00', 9535, '{"total-fields":30,"updated-fields":0}'), +(10180, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.042671+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.053875+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10181, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.054428+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.057572+00', 3, NULL), +(10182, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.200719+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.417953+00', 217, NULL), +(10183, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.200757+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.354529+00', 153, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10184, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.35474+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.405165+00', 50, '{"fields-classified":0,"fields-failed":0}'), +(10185, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.405278+00', TIMESTAMP WITH TIME ZONE '2023-01-02 04:49:10.417614+00', 12, '{"total-tables":4,"tables-classified":0}'), +(10186, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 05:00:00.035+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:00:00.18+00', 145, NULL), +(10187, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 05:00:00.063+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:00:00.179+00', 116, NULL), +(10188, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:00.173577+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.68571+00', 4512, NULL), +(10189, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:00.178046+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:00.542202+00', 364, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10190, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:00.543586+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:00.856383+00', 312, '{"updated-tables":0,"total-tables":8}'), +(10191, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:00.856621+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:03.693254+00', 2836, '{"total-fields":71,"updated-fields":0}'), +(10192, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:03.693537+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:03.812744+00', 119, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10193, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:03.813047+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.685235+00', 872, NULL), +(10194, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.788486+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.864459+00', 75, NULL), +(10195, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.788731+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.836287+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10196, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.836393+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.848643+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(10197, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.848726+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:19:04.864391+00', 15, '{"total-tables":8,"tables-classified":0}'), +(10198, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:00.129954+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:09.996054+00', 9866, NULL), +(10199, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:00.129997+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:00.131809+00', 1, '{"timezone-id":null}'), +(10200, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:00.131877+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:00.390226+00', 258, '{"updated-tables":0,"total-tables":4}'), +(10201, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:00.39043+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:09.715161+00', 9324, '{"total-fields":30,"updated-fields":0}'), +(10202, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:09.715307+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:09.99219+00', 276, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10203, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:09.992349+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:09.99592+00', 3, NULL), +(10204, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:11.490202+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:12.165239+00', 675, NULL), +(10205, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:11.490234+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:11.996795+00', 506, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10206, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:11.996876+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:12.054943+00', 58, '{"fields-classified":0,"fields-failed":0}'), +(10207, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:12.055022+00', TIMESTAMP WITH TIME ZONE '2023-01-02 05:49:12.165119+00', 110, '{"total-tables":4,"tables-classified":0}'), +(10208, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 06:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:00:00.473+00', 366, NULL), +(10209, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 06:00:00.089+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:00:00.594+00', 505, NULL), +(10210, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:00.17101+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.7772+00', 4606, NULL), +(10211, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:00.173608+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:00.595539+00', 421, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10212, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:00.597049+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:00.839579+00', 242, '{"updated-tables":0,"total-tables":8}'), +(10213, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:00.839847+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.618996+00', 3779, '{"total-fields":71,"updated-fields":0}'), +(10214, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.619104+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.65142+00', 32, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10215, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.6515+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.777135+00', 125, NULL), +(10216, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.843166+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.928828+00', 85, NULL), +(10217, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.843199+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.892576+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10218, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.892681+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.910809+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(10219, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.910933+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:19:04.928758+00', 17, '{"total-tables":8,"tables-classified":0}'), +(10220, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:00.143377+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.11872+00', 7975, NULL), +(10221, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:00.14341+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:00.145336+00', 1, '{"timezone-id":null}'), +(10222, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:00.145413+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:00.560991+00', 415, '{"updated-tables":0,"total-tables":4}'), +(10223, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:00.561058+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.114841+00', 7553, '{"total-fields":30,"updated-fields":0}'), +(10224, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.114925+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.11682+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10225, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.116872+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.11869+00', 1, NULL), +(10226, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.155109+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.187961+00', 32, NULL), +(10227, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.155137+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.181241+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10228, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.181319+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.183841+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10229, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.183908+00', TIMESTAMP WITH TIME ZONE '2023-01-02 06:49:08.187913+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10230, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 07:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:00:00.294+00', 156, NULL), +(10231, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 07:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:00:00.293+00', 142, NULL), +(10232, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:00.157301+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.34127+00', 4183, NULL), +(10233, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:00.161197+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:00.396082+00', 234, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10234, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:00.398163+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:00.609408+00', 211, '{"updated-tables":0,"total-tables":8}'), +(10235, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:00.609508+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:03.189492+00', 2579, '{"total-fields":71,"updated-fields":0}'), +(10236, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:03.189854+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:03.312002+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10237, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:03.312297+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.341034+00', 1028, NULL), +(10238, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.410184+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.495277+00', 85, NULL), +(10239, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.41021+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.459842+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10240, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.459926+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.470749+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(10241, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.470844+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:19:04.49522+00', 24, '{"total-tables":8,"tables-classified":0}'), +(10242, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:00.215673+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.551654+00', 8335, NULL), +(10243, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:00.215713+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:00.21803+00', 2, '{"timezone-id":null}'), +(10244, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:00.21813+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:00.647277+00', 429, '{"updated-tables":0,"total-tables":4}'), +(10245, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:00.647377+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.5464+00', 7899, '{"total-fields":30,"updated-fields":0}'), +(10246, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.546486+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.548948+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10247, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.549015+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.551604+00', 2, NULL), +(10248, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.685413+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.728707+00', 43, NULL), +(10249, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.685479+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.713094+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10250, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.713203+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.716706+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10251, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.716831+00', TIMESTAMP WITH TIME ZONE '2023-01-02 07:49:08.72861+00', 11, '{"total-tables":4,"tables-classified":0}'), +(10252, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 08:00:00.102+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:00:00.357+00', 255, NULL), +(10253, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 08:00:00.089+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:00:00.362+00', 273, NULL), +(10254, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:00.241337+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.781158+00', 3539, NULL), +(10255, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:00.254903+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:00.724403+00', 469, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10256, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:00.726352+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:00.966691+00', 240, '{"updated-tables":0,"total-tables":8}'), +(10257, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:00.967025+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.452128+00', 2485, '{"total-fields":71,"updated-fields":0}'), +(10258, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.452773+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.545565+00', 92, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10259, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.546096+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.780711+00', 234, NULL), +(10260, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.841074+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.929836+00', 88, NULL), +(10261, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.841107+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.891449+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10262, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.891524+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.914082+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(10263, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.914843+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:19:03.929742+00', 14, '{"total-tables":8,"tables-classified":0}'), +(10264, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:00.148588+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.527173+00', 8378, NULL), +(10265, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:00.148646+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:00.150451+00', 1, '{"timezone-id":null}'), +(10266, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:00.150525+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:00.464351+00', 313, '{"updated-tables":0,"total-tables":4}'), +(10267, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:00.464457+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.521208+00', 8056, '{"total-fields":30,"updated-fields":0}'), +(10268, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.521558+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.525334+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10269, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.525609+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.527019+00', 1, NULL), +(10270, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.578459+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.61299+00', 34, NULL), +(10271, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.578493+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.597618+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10272, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.59782+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.60459+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(10273, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.604776+00', TIMESTAMP WITH TIME ZONE '2023-01-02 08:49:08.612851+00', 8, '{"total-tables":4,"tables-classified":0}'), +(10274, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 09:00:00.271+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:00:00.546+00', 275, NULL), +(10275, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 09:00:00.27+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:00:00.626+00', 356, NULL), +(10276, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:00.187083+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.336034+00', 4148, NULL), +(10277, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:00.189921+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:00.532629+00', 342, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10278, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:00.534346+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:00.796277+00', 261, '{"updated-tables":0,"total-tables":8}'), +(10279, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:00.796574+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:03.633655+00', 2837, '{"total-fields":71,"updated-fields":0}'), +(10280, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:03.63377+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:03.799547+00', 165, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10281, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:03.799901+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.335759+00', 535, NULL), +(10282, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.395592+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.489022+00', 93, NULL), +(10283, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.395627+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.457942+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10284, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.458018+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.468187+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(10285, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.468259+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:19:04.488958+00', 20, '{"total-tables":8,"tables-classified":0}'), +(10286, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:00.136334+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.021374+00', 7885, NULL), +(10287, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:00.136365+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:00.138064+00', 1, '{"timezone-id":null}'), +(10288, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:00.138146+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:00.45214+00', 313, '{"updated-tables":0,"total-tables":4}'), +(10289, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:00.452333+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.01772+00', 7565, '{"total-fields":30,"updated-fields":0}'), +(10290, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.017799+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.019426+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10291, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.019487+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.021236+00', 1, NULL), +(10292, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.057785+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.08215+00', 24, NULL), +(10293, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.057818+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.074229+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10294, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.074311+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.077167+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10295, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.077308+00', TIMESTAMP WITH TIME ZONE '2023-01-02 09:49:08.08209+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10296, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 10:00:00.09+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:00:00.259+00', 169, NULL), +(10297, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 10:00:00.068+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:00:00.332+00', 264, NULL), +(10298, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:00.153461+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.260717+00', 4107, NULL), +(10299, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:00.156347+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:00.621043+00', 464, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10300, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:00.622953+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:00.905302+00', 282, '{"updated-tables":0,"total-tables":8}'), +(10301, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:00.905576+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:03.601296+00', 2695, '{"total-fields":71,"updated-fields":0}'), +(10302, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:03.601524+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:03.706065+00', 104, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10303, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:03.706153+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.260366+00', 554, NULL), +(10304, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.589229+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.663815+00', 74, NULL), +(10305, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.589259+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.636667+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10306, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.636757+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.647712+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(10307, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.647783+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:19:04.663765+00', 15, '{"total-tables":8,"tables-classified":0}'), +(10308, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:00.79393+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.835372+00', 13041, NULL), +(10309, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:00.7945+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:00.800409+00', 5, '{"timezone-id":null}'), +(10310, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:00.800549+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:01.189021+00', 388, '{"updated-tables":0,"total-tables":4}'), +(10311, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:01.189141+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.828687+00', 12639, '{"total-fields":30,"updated-fields":0}'), +(10312, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.828791+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.833012+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10313, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.833096+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.835322+00', 2, NULL), +(10314, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.935291+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.982352+00', 47, NULL), +(10315, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.935321+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.969747+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10316, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.969822+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.975141+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(10317, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.975243+00', TIMESTAMP WITH TIME ZONE '2023-01-02 10:49:13.982293+00', 7, '{"total-tables":4,"tables-classified":0}'), +(10318, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 11:00:00.557+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:00:01.506+00', 949, NULL), +(10319, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 11:00:00.478+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:00:01.611+00', 1133, NULL), +(10320, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:00.230886+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.47985+00', 4248, NULL), +(10321, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:00.233867+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:00.517412+00', 283, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10322, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:00.518422+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:01.786138+00', 1267, '{"updated-tables":0,"total-tables":8}'), +(10323, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:01.786249+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:03.8499+00', 2063, '{"total-fields":71,"updated-fields":0}'), +(10324, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:03.850336+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:03.991473+00', 141, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10325, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:03.991857+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.479813+00', 487, NULL), +(10326, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.529009+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.598288+00', 69, NULL), +(10327, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.529041+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.56793+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10328, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.568138+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.581056+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(10329, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.581193+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:19:04.598231+00', 17, '{"total-tables":8,"tables-classified":0}'), +(10330, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:00.168852+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.041183+00', 7872, NULL), +(10331, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:00.168899+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:00.170851+00', 1, '{"timezone-id":null}'), +(10332, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:00.170947+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:00.480297+00', 309, '{"updated-tables":0,"total-tables":4}'), +(10333, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:00.480369+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.037229+00', 7556, '{"total-fields":30,"updated-fields":0}'), +(10334, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.037369+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.038965+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10335, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.039119+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.041153+00', 2, NULL), +(10336, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.091152+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.116009+00', 24, NULL), +(10337, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.091179+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.104858+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10338, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.104943+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.109938+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(10339, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.110014+00', TIMESTAMP WITH TIME ZONE '2023-01-02 11:49:08.115947+00', 5, '{"total-tables":4,"tables-classified":0}'), +(10340, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 12:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:00:00.359+00', 210, NULL), +(10341, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 12:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:00:00.335+00', 169, NULL), +(10342, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:00.404213+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.077179+00', 5672, NULL), +(10343, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:00.406989+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:01.001452+00', 594, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10344, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:01.004055+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:01.404343+00', 400, '{"updated-tables":0,"total-tables":8}'), +(10345, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:01.404815+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:05.523036+00', 4118, '{"total-fields":71,"updated-fields":0}'), +(10346, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:05.523395+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:05.66119+00', 137, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10347, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:05.661474+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.076653+00', 415, NULL), +(10348, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.145974+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.270749+00', 124, NULL), +(10349, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.146005+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.207818+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10350, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.207889+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.220096+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(10351, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.220172+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:19:06.270679+00', 50, '{"total-tables":8,"tables-classified":0}'), +(10352, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:00.155607+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.777625+00', 8622, NULL), +(10353, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:00.155645+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:00.202906+00', 47, '{"timezone-id":null}'), +(10354, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:00.203114+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:00.540726+00', 337, '{"updated-tables":0,"total-tables":4}'), +(10355, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:00.540811+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.773535+00', 8232, '{"total-fields":30,"updated-fields":0}'), +(10356, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.773674+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.775617+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10357, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.775706+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.777574+00', 1, NULL), +(10358, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.81652+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.844529+00', 28, NULL), +(10359, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.816602+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.836527+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10360, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.83696+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.840091+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10361, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.840152+00', TIMESTAMP WITH TIME ZONE '2023-01-02 12:49:08.844469+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10362, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 13:00:00.056+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:00:00.13+00', 74, NULL), +(10363, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 13:00:00.029+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:00:00.144+00', 115, NULL), +(10364, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:00.119569+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.51451+00', 3394, NULL), +(10365, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:00.121904+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:00.351779+00', 229, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10366, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:00.353061+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:00.562854+00', 209, '{"updated-tables":0,"total-tables":8}'), +(10367, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:00.56294+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:02.787562+00', 2224, '{"total-fields":71,"updated-fields":0}'), +(10368, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:02.787907+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:02.934792+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10369, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:02.935346+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.51422+00', 578, NULL), +(10370, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.669196+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.88545+00', 216, NULL), +(10371, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.669227+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.844002+00', 174, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10372, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.844081+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.854994+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(10373, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.855159+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:19:03.885345+00', 30, '{"total-tables":8,"tables-classified":0}'), +(10374, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:00.117598+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.128246+00', 9010, NULL), +(10375, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:00.117628+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:00.120474+00', 2, '{"timezone-id":null}'), +(10376, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:00.120552+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:00.408059+00', 287, '{"updated-tables":0,"total-tables":4}'), +(10377, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:00.408123+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.124966+00', 8716, '{"total-fields":30,"updated-fields":0}'), +(10378, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.12506+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.126738+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10379, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.126789+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.128217+00', 1, NULL), +(10380, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.173099+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.201814+00', 28, NULL), +(10381, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.173135+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.191409+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10382, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.191483+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.194704+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10383, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.194769+00', TIMESTAMP WITH TIME ZONE '2023-01-02 13:49:09.201762+00', 6, '{"total-tables":4,"tables-classified":0}'), +(10384, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 14:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:00:00.346+00', 209, NULL), +(10385, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 14:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:00:00.449+00', 311, NULL), +(10386, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:00.249679+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.584367+00', 4334, NULL), +(10387, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:00.254769+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:00.725163+00', 470, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10388, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:00.726773+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:01.090097+00', 363, '{"updated-tables":0,"total-tables":8}'), +(10389, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:01.090668+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:03.960435+00', 2869, '{"total-fields":71,"updated-fields":0}'), +(10390, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:03.96052+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.097129+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10391, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.09739+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.584145+00', 486, NULL), +(10392, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.667519+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.770315+00', 102, NULL), +(10393, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.66755+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.726879+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10394, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.726955+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.736817+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(10395, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.736884+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:19:04.770264+00', 33, '{"total-tables":8,"tables-classified":0}'), +(10396, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:00.146006+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:07.960253+00', 7814, NULL), +(10397, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:00.146041+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:00.147612+00', 1, '{"timezone-id":null}'), +(10398, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:00.14776+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:00.449943+00', 302, '{"updated-tables":0,"total-tables":4}'), +(10399, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:00.450004+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:07.957121+00', 7507, '{"total-fields":30,"updated-fields":0}'), +(10400, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:07.957251+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:07.958812+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10401, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:07.958895+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:07.960211+00', 1, NULL), +(10402, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.007391+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.031337+00', 23, NULL), +(10403, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.007421+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.023593+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10404, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.023816+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.027326+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10405, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.027386+00', TIMESTAMP WITH TIME ZONE '2023-01-02 14:49:08.031291+00', 3, '{"total-tables":4,"tables-classified":0}'), +(10406, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 15:00:00.06+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:00:00.323+00', 263, NULL), +(10407, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 15:00:00.044+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:00:00.361+00', 317, NULL), +(10408, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:00.143239+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.792449+00', 3649, NULL), +(10409, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:00.146556+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:00.509475+00', 362, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10410, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:00.511555+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:00.751684+00', 240, '{"updated-tables":0,"total-tables":8}'), +(10411, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:00.751978+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.112642+00', 2360, '{"total-fields":71,"updated-fields":0}'), +(10412, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.112951+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.235614+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10413, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.235705+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.792137+00', 556, NULL), +(10414, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.939669+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:04.035594+00', 95, NULL), +(10415, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:03.939941+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:04.007479+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10416, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:04.007581+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:04.015502+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(10417, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:04.015565+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:19:04.035533+00', 19, '{"total-tables":8,"tables-classified":0}'), +(10418, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:00.240324+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.397372+00', 10157, NULL), +(10419, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:00.240364+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:00.242332+00', 1, '{"timezone-id":null}'), +(10420, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:00.242401+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:00.530384+00', 287, '{"updated-tables":0,"total-tables":4}'), +(10421, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:00.530492+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.391859+00', 9861, '{"total-fields":30,"updated-fields":0}'), +(10422, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.391942+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.394234+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10423, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.39428+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.39734+00', 3, NULL), +(10424, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.481996+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.579976+00', 97, NULL), +(10425, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.482024+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.570348+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10426, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.57046+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.574614+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(10427, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.574729+00', TIMESTAMP WITH TIME ZONE '2023-01-02 15:49:10.579928+00', 5, '{"total-tables":4,"tables-classified":0}'), +(10428, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 16:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:00:00.354+00', 217, NULL), +(10429, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 16:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:00:00.445+00', 309, NULL), +(10430, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:00.289151+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.433724+00', 4144, NULL), +(10431, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:00.293174+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:00.669923+00', 376, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10432, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:00.671663+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:00.971751+00', 300, '{"updated-tables":0,"total-tables":8}'), +(10433, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:00.972182+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:03.823827+00', 2851, '{"total-fields":71,"updated-fields":0}'), +(10434, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:03.824155+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:03.971255+00', 147, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10435, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:03.971347+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.433224+00', 461, NULL), +(10436, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.479381+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.563703+00', 84, NULL), +(10437, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.479409+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.537461+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10438, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.537551+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.547547+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(10439, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.547613+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:19:04.563632+00', 16, '{"total-tables":8,"tables-classified":0}'), +(10440, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:00.17238+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.231336+00', 8058, NULL), +(10441, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:00.172425+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:00.17496+00', 2, '{"timezone-id":null}'), +(10442, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:00.175143+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:00.486926+00', 311, '{"updated-tables":0,"total-tables":4}'), +(10443, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:00.487086+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.221715+00', 7734, '{"total-fields":30,"updated-fields":0}'), +(10444, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.221947+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.227932+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10445, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.228086+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.231177+00', 3, NULL), +(10446, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.356785+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.468131+00', 111, NULL), +(10447, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.356814+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.446997+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10448, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.447062+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.452141+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(10449, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.452212+00', TIMESTAMP WITH TIME ZONE '2023-01-02 16:49:08.46808+00', 15, '{"total-tables":4,"tables-classified":0}'), +(10450, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 17:00:00.02+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:00:00.182+00', 162, NULL), +(10451, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 17:00:00.042+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:00:00.182+00', 140, NULL), +(10452, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:00.175449+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.246771+00', 4071, NULL), +(10453, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:00.180385+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:00.655568+00', 475, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10454, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:00.657439+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:00.936835+00', 279, '{"updated-tables":0,"total-tables":8}'), +(10455, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:00.937163+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:03.674078+00', 2736, '{"total-fields":71,"updated-fields":0}'), +(10456, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:03.674311+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:03.78267+00', 108, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10457, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:03.782978+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.246395+00', 463, NULL), +(10458, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.329249+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.416356+00', 87, NULL), +(10459, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.329278+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.382155+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10460, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.38222+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.394734+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(10461, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.394797+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:19:04.416306+00', 21, '{"total-tables":8,"tables-classified":0}'), +(10462, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:00.137875+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.593285+00', 7455, NULL), +(10463, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:00.137942+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:00.139534+00', 1, '{"timezone-id":null}'), +(10464, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:00.139594+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:00.41874+00', 279, '{"updated-tables":0,"total-tables":4}'), +(10465, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:00.41881+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.588784+00', 7169, '{"total-fields":30,"updated-fields":0}'), +(10466, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.588908+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.591259+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10467, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.591349+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.593209+00', 1, NULL), +(10468, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.637847+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.670163+00', 32, NULL), +(10469, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.637879+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.662132+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10470, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.662238+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.665531+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10471, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.66563+00', TIMESTAMP WITH TIME ZONE '2023-01-02 17:49:07.670082+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10472, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 18:00:00.079+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:00:00.244+00', 165, NULL), +(10473, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 18:00:00.042+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:00:00.269+00', 227, NULL), +(10474, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:00.15343+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.250333+00', 3096, NULL), +(10475, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:00.156912+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:00.461811+00', 304, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10476, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:00.46349+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:00.703727+00', 240, '{"updated-tables":0,"total-tables":8}'), +(10477, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:00.703819+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.037277+00', 2333, '{"total-fields":71,"updated-fields":0}'), +(10478, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.037684+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.143602+00', 105, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10479, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.143876+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.250067+00', 106, NULL), +(10480, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.310525+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.546091+00', 235, NULL), +(10481, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.310563+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.374606+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10482, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.374871+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.403177+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(10483, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.403257+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:19:03.545999+00', 142, '{"total-tables":8,"tables-classified":0}'), +(10484, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:00.161847+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.381213+00', 9219, NULL), +(10485, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:00.161884+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:00.163332+00', 1, '{"timezone-id":null}'), +(10486, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:00.163391+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:00.386674+00', 223, '{"updated-tables":0,"total-tables":4}'), +(10487, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:00.386823+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.377894+00', 8991, '{"total-fields":30,"updated-fields":0}'), +(10488, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.377969+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.379831+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10489, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.379876+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.381186+00', 1, NULL), +(10490, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.428781+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.461793+00', 33, NULL), +(10491, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.428808+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.454577+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10492, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.454647+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.457642+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10493, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.457712+00', TIMESTAMP WITH TIME ZONE '2023-01-02 18:49:09.461758+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10494, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 19:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:00:00.656+00', 513, NULL), +(10495, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 19:00:00.295+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:00:00.654+00', 359, NULL), +(10496, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:00.13518+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.477383+00', 3342, NULL), +(10497, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:00.138089+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:00.421313+00', 283, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10498, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:00.422564+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:00.64948+00', 226, '{"updated-tables":0,"total-tables":8}'), +(10499, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:00.649573+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:02.809046+00', 2159, '{"total-fields":71,"updated-fields":0}'), +(10500, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:02.809117+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:02.944759+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10501, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:02.945145+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.47713+00', 531, NULL), +(10502, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.648203+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.973749+00', 325, NULL), +(10503, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.648239+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.863774+00', 215, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10504, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.86405+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.905674+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(10505, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.905768+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:19:03.973668+00', 67, '{"total-tables":8,"tables-classified":0}'), +(10506, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:00.114536+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.758629+00', 7644, NULL), +(10507, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:00.114573+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:00.118171+00', 3, '{"timezone-id":null}'), +(10508, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:00.118253+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:00.374185+00', 255, '{"updated-tables":0,"total-tables":4}'), +(10509, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:00.374252+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.754529+00', 7380, '{"total-fields":30,"updated-fields":0}'), +(10510, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.754587+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.756526+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10511, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.756572+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.758413+00', 1, NULL), +(10512, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.802796+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.834159+00', 31, NULL), +(10513, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.802823+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.827867+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10514, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.827935+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.830287+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10515, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.830346+00', TIMESTAMP WITH TIME ZONE '2023-01-02 19:49:07.834117+00', 3, '{"total-tables":4,"tables-classified":0}'), +(10516, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 20:00:00.052+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:00:00.226+00', 174, NULL), +(10517, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 20:00:00.038+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:00:00.277+00', 239, NULL), +(10518, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:00.066913+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:03.866927+00', 3800, NULL), +(10519, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:00.067082+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:00.169056+00', 101, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10520, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:00.169653+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:00.335015+00', 165, '{"updated-tables":0,"total-tables":8}'), +(10521, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:00.335268+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:03.253927+00', 2918, '{"total-fields":71,"updated-fields":0}'), +(10522, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:03.254295+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:03.3645+00', 110, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10523, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:03.364741+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:03.866876+00', 502, NULL), +(10524, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.055062+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.405412+00', 350, NULL), +(10525, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.055303+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.298746+00', 243, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10526, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.298844+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.343436+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(10527, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.343896+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:19:04.405343+00', 61, '{"total-tables":8,"tables-classified":0}'), +(10528, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:00.342424+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.864933+00', 6522, NULL), +(10529, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:00.347266+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:00.355531+00', 8, '{"timezone-id":null}'), +(10530, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:00.356076+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:00.661087+00', 305, '{"updated-tables":0,"total-tables":4}'), +(10531, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:00.661166+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.860123+00', 6198, '{"total-fields":30,"updated-fields":0}'), +(10532, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.860191+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.862337+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10533, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.862389+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.864899+00', 2, NULL), +(10534, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.907908+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.942529+00', 34, NULL), +(10535, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.907944+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.931185+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10536, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.931255+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.937428+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(10537, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.937497+00', TIMESTAMP WITH TIME ZONE '2023-01-02 20:49:06.942477+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10538, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:00.485+00', 346, NULL), +(10539, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:00.485+00', 356, NULL), +(10540, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:01.085364+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:11.533227+00', 10447, NULL), +(10541, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:01.099227+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:04.794949+00', 3695, '{"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10542, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:04.797842+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:00:11.533177+00', 6735, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(10543, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.038856+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.11773+00', 1078, NULL), +(10544, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.038931+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.167754+00', 128, '{"timezone-id":"UTC"}'), +(10545, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.167928+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.326189+00', 158, '{"updated-tables":0,"total-tables":8}'), +(10546, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.326263+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.849865+00', 523, '{"total-fields":71,"updated-fields":0}'), +(10547, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.849934+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.894601+00', 44, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10548, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:00.894692+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.117646+00', 222, NULL), +(10549, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.164151+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.280716+00', 116, NULL), +(10550, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.164181+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.243091+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10551, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.243823+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.255744+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10552, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.255889+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:19:01.280558+00', 24, '{"total-tables":8,"tables-classified":0}'), +(10553, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:00.471429+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.872222+00', 11400, NULL), +(10554, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:00.475868+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:00.487934+00', 12, '{"timezone-id":null}'), +(10555, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:00.489727+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:00.864536+00', 374, '{"updated-tables":0,"total-tables":4}'), +(10556, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:00.864643+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.868542+00', 11003, '{"total-fields":30,"updated-fields":0}'), +(10557, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.868733+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.870722+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10558, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.870838+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.872144+00', 1, NULL), +(10559, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.893532+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.919183+00', 25, NULL), +(10560, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.893557+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.911721+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10561, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.911871+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.915276+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10562, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.915424+00', TIMESTAMP WITH TIME ZONE '2023-01-02 21:49:11.919074+00', 3, '{"total-tables":4,"tables-classified":0}'), +(10563, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 22:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:00:00.39+00', 267, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10564, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 22:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:00:00.388+00', 265, NULL), +(10565, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:00.262293+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.289885+00', 3027, NULL), +(10566, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:00.265764+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:00.525928+00', 260, '{"timezone-id":"UTC"}'), +(10567, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:00.527824+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:00.724379+00', 196, '{"updated-tables":0,"total-tables":8}'), +(10568, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:00.724668+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:02.562218+00', 1837, '{"total-fields":71,"updated-fields":0}'), +(10569, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:02.562503+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:02.843849+00', 281, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10570, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:02.844163+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.289643+00', 445, NULL), +(10571, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.399792+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.480542+00', 80, NULL), +(10572, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.399973+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.458318+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10573, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.458388+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.468758+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(10574, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.46887+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:19:03.480493+00', 11, '{"total-tables":8,"tables-classified":0}'), +(10575, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:00.106136+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.056225+00', 7950, NULL), +(10576, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:00.10617+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:00.107519+00', 1, '{"timezone-id":null}'), +(10577, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:00.107688+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:00.350465+00', 242, '{"updated-tables":0,"total-tables":4}'), +(10578, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:00.350535+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.051909+00', 7701, '{"total-fields":30,"updated-fields":0}'), +(10579, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.051983+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.053634+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10580, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.053673+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.055995+00', 2, NULL), +(10581, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.091427+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.119154+00', 27, NULL), +(10582, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.091456+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.10801+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10583, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.108068+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.1117+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10584, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.111745+00', TIMESTAMP WITH TIME ZONE '2023-01-02 22:49:08.119106+00', 7, '{"total-tables":4,"tables-classified":0}'), +(10585, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 23:00:00.103+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:00:00.677+00', 574, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10586, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-02 23:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:00:00.757+00', 663, NULL), +(10587, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:00.167587+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.215684+00', 3048, NULL), +(10588, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:00.17047+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:00.514292+00', 343, '{"timezone-id":"UTC"}'), +(10589, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:00.515718+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:00.733633+00', 217, '{"updated-tables":0,"total-tables":8}'), +(10590, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:00.733921+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:02.750072+00', 2016, '{"total-fields":71,"updated-fields":0}'), +(10591, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:02.750771+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:02.892585+00', 141, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10592, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:02.892949+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.21528+00', 322, NULL), +(10593, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.274611+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.375073+00', 100, NULL), +(10594, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.274646+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.342459+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10595, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.343026+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.358548+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(10596, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.358687+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:19:03.374986+00', 16, '{"total-tables":8,"tables-classified":0}'), +(10597, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:00.117701+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.96131+00', 12843, NULL), +(10598, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:00.117737+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:00.119242+00', 1, '{"timezone-id":null}'), +(10599, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:00.119312+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:00.43282+00', 313, '{"updated-tables":0,"total-tables":4}'), +(10600, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:00.432882+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.959527+00', 12526, '{"total-fields":30,"updated-fields":0}'), +(10601, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.959597+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.960926+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10602, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.960972+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.961291+00', 0, NULL), +(10603, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.984179+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:13.012402+00', 28, NULL), +(10604, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:12.984206+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:13.001309+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10605, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:13.001378+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:13.005801+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(10606, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:13.005902+00', TIMESTAMP WITH TIME ZONE '2023-01-02 23:49:13.012352+00', 6, '{"total-tables":4,"tables-classified":0}'), +(10607, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 00:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:00:00.428+00', 331, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10608, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 00:00:00.082+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:00:00.428+00', 346, NULL), +(10609, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:00.164682+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.340147+00', 3175, NULL), +(10610, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:00.16954+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:00.535205+00', 365, '{"timezone-id":"UTC"}'), +(10611, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:00.537032+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:00.804325+00', 267, '{"updated-tables":0,"total-tables":8}'), +(10612, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:00.80476+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:02.830957+00', 2026, '{"total-fields":71,"updated-fields":0}'), +(10613, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:02.831053+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:02.938236+00', 107, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10614, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:02.938543+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.339805+00', 401, NULL), +(10615, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.417904+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.503947+00', 86, NULL), +(10616, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.417935+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.472631+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10617, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.472742+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.484011+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10618, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.484088+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:19:03.503899+00', 19, '{"total-tables":8,"tables-classified":0}'), +(10619, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:00.144583+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.358958+00', 13214, NULL), +(10620, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:00.144621+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:00.14613+00', 1, '{"timezone-id":null}'), +(10621, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:00.146239+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:00.421533+00', 275, '{"updated-tables":0,"total-tables":4}'), +(10622, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:00.421626+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.356685+00', 12935, '{"total-fields":30,"updated-fields":0}'), +(10623, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.356802+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.358339+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10624, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.358405+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.358927+00', 0, NULL), +(10625, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.389894+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.414839+00', 24, NULL), +(10626, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.389928+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.405538+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10627, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.405621+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.409249+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10628, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.409326+00', TIMESTAMP WITH TIME ZONE '2023-01-03 00:49:13.414782+00', 5, '{"total-tables":4,"tables-classified":0}'), +(10629, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 01:00:00.062+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:00:00.112+00', 50, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10630, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 01:00:00.059+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:00:00.153+00', 94, NULL), +(10631, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:00.091695+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.694991+00', 2603, NULL), +(10632, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:00.09496+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:00.542086+00', 447, '{"timezone-id":"UTC"}'), +(10633, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:00.542784+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:00.750851+00', 208, '{"updated-tables":0,"total-tables":8}'), +(10634, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:00.750934+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.159025+00', 1408, '{"total-fields":71,"updated-fields":0}'), +(10635, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.159327+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.251781+00', 92, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10636, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.252245+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.694659+00', 442, NULL), +(10637, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.816749+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.950272+00', 133, NULL), +(10638, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.81678+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.903747+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10639, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.903932+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.915354+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10640, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.91546+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:19:02.950201+00', 34, '{"total-tables":8,"tables-classified":0}'), +(10641, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:00.118438+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.854642+00', 9736, NULL), +(10642, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:00.118476+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:00.120023+00', 1, '{"timezone-id":null}'), +(10643, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:00.12011+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:00.412576+00', 292, '{"updated-tables":0,"total-tables":4}'), +(10644, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:00.412731+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.851143+00', 9438, '{"total-fields":30,"updated-fields":0}'), +(10645, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.851222+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.85282+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10646, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.852876+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.854614+00', 1, NULL), +(10647, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.901125+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.92946+00', 28, NULL), +(10648, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.901157+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.918972+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10649, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.919042+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.925851+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(10650, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.925913+00', TIMESTAMP WITH TIME ZONE '2023-01-03 01:49:09.929387+00', 3, '{"total-tables":4,"tables-classified":0}'), +(10651, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:00.457+00', 280, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10652, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:00.516+00', 357, NULL), +(10653, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:00.820804+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:11.847219+00', 11026, NULL), +(10654, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:00.858282+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:01.590032+00', 731, '{"deleted":0}'), +(10655, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:01.591814+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:00:11.846517+00', 10254, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(10656, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:00.057852+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.668499+00', 2610, NULL), +(10657, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:00.058283+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:00.302681+00', 244, '{"timezone-id":"UTC"}'), +(10658, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:00.302787+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:00.500406+00', 197, '{"updated-tables":0,"total-tables":8}'), +(10659, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:00.501185+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.501464+00', 2000, '{"total-fields":71,"updated-fields":0}'), +(10660, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.50157+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.565234+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10661, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.565428+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.668382+00', 102, NULL), +(10662, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.693059+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.764518+00', 71, NULL), +(10663, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.693086+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.734662+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10664, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.734791+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.746397+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10665, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.746489+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:19:02.764464+00', 17, '{"total-tables":8,"tables-classified":0}'), +(10666, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:00.047809+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.05508+00', 7007, NULL), +(10667, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:00.047852+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:00.05102+00', 3, '{"timezone-id":null}'), +(10668, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:00.051104+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:00.223524+00', 172, '{"updated-tables":0,"total-tables":4}'), +(10669, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:00.223601+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.051688+00', 6828, '{"total-fields":30,"updated-fields":0}'), +(10670, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.051774+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.053158+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10671, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.053218+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.055037+00', 1, NULL), +(10672, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.090091+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.108986+00', 18, NULL), +(10673, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.090119+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.100735+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10674, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.100798+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.103774+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10675, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.103828+00', TIMESTAMP WITH TIME ZONE '2023-01-03 02:49:07.108938+00', 5, '{"total-tables":4,"tables-classified":0}'), +(10676, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 03:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:00:01.187+00', 1093, NULL), +(10677, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 03:00:00.072+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:00:01.371+00', 1299, NULL), +(10678, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.132376+00', 4001, NULL), +(10679, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:00.134966+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:00.608971+00', 474, '{"timezone-id":"UTC"}'), +(10680, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:00.6108+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:00.934882+00', 324, '{"updated-tables":0,"total-tables":8}'), +(10681, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:00.935207+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:03.458578+00', 2523, '{"total-fields":71,"updated-fields":0}'), +(10682, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:03.458948+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:03.592291+00', 133, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10683, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:03.592384+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.132053+00', 539, NULL), +(10684, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.227027+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.309049+00', 82, NULL), +(10685, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.227074+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.28029+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10686, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.280353+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.290272+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(10687, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.290334+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:19:04.309006+00', 18, '{"total-tables":8,"tables-classified":0}'), +(10688, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:00.164442+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.18959+00', 10025, NULL), +(10689, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:00.16449+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:00.16799+00', 3, '{"timezone-id":null}'), +(10690, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:00.168074+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:00.492314+00', 324, '{"updated-tables":0,"total-tables":4}'), +(10691, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:00.492372+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.185186+00', 9692, '{"total-fields":30,"updated-fields":0}'), +(10692, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.185251+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.186959+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10693, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.187014+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.189552+00', 2, NULL), +(10694, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.23918+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.285693+00', 46, NULL), +(10695, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.239207+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.271092+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10696, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.271181+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.274037+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10697, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.274093+00', TIMESTAMP WITH TIME ZONE '2023-01-03 03:49:10.285637+00', 11, '{"total-tables":4,"tables-classified":0}'), +(10698, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 04:00:00.183+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:00:00.691+00', 508, NULL), +(10699, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 04:00:00.183+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:00:00.825+00', 642, NULL), +(10700, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:00.25735+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.453016+00', 4195, NULL), +(10701, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:00.261913+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:00.738829+00', 476, '{"timezone-id":"UTC"}'), +(10702, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:00.740467+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:01.116314+00', 375, '{"updated-tables":0,"total-tables":8}'), +(10703, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:01.116613+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.104646+00', 2988, '{"total-fields":71,"updated-fields":0}'), +(10704, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.104726+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.221364+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10705, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.221691+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.452631+00', 230, NULL), +(10706, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.525984+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.606296+00', 80, NULL), +(10707, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.526013+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.574059+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10708, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.574238+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.585953+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10709, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.586101+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:19:04.606235+00', 20, '{"total-tables":8,"tables-classified":0}'), +(10710, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:00.165506+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.202209+00', 8036, NULL), +(10711, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:00.165538+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:00.167119+00', 1, '{"timezone-id":null}'), +(10712, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:00.16728+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:00.501005+00', 333, '{"updated-tables":0,"total-tables":4}'), +(10713, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:00.501077+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.199687+00', 7698, '{"total-fields":30,"updated-fields":0}'), +(10714, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.19978+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.200941+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10715, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.200978+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.202185+00', 1, NULL), +(10716, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.245208+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.26836+00', 23, NULL), +(10717, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.245234+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.261503+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10718, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.261563+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.263577+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10719, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.263634+00', TIMESTAMP WITH TIME ZONE '2023-01-03 04:49:08.268323+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10720, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 05:00:00.07+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:00:00.405+00', 335, NULL), +(10721, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 05:00:00.039+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:00:00.774+00', 735, NULL), +(10722, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:00.157715+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:03.931782+00', 3774, NULL), +(10723, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:00.161823+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:00.60192+00', 440, '{"timezone-id":"UTC"}'), +(10724, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:00.604716+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:00.892+00', 287, '{"updated-tables":0,"total-tables":8}'), +(10725, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:00.89234+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:03.282062+00', 2389, '{"total-fields":71,"updated-fields":0}'), +(10726, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:03.282354+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:03.40153+00', 119, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10727, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:03.401732+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:03.93132+00', 529, NULL), +(10728, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.373812+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.444109+00', 70, NULL), +(10729, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.373841+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.420705+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10730, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.420761+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.428792+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(10731, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.428853+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:19:04.444058+00', 15, '{"total-tables":8,"tables-classified":0}'), +(10732, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:00.179917+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.454141+00', 8274, NULL), +(10733, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:00.179961+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:00.181598+00', 1, '{"timezone-id":null}'), +(10734, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:00.181699+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:00.48484+00', 303, '{"updated-tables":0,"total-tables":4}'), +(10735, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:00.48491+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.449389+00', 7964, '{"total-fields":30,"updated-fields":0}'), +(10736, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.449497+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.451187+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10737, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.451266+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.454114+00', 2, NULL), +(10738, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.486888+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.519911+00', 33, NULL), +(10739, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.486914+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.512783+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10740, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.512878+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.51599+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10741, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.516107+00', TIMESTAMP WITH TIME ZONE '2023-01-03 05:49:08.51987+00', 3, '{"total-tables":4,"tables-classified":0}'), +(10742, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 06:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:00:00.437+00', 303, NULL), +(10743, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 06:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:00:00.51+00', 376, NULL), +(10744, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:00.149712+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:06.971103+00', 6821, NULL), +(10745, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:00.153485+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:03.645273+00', 3491, '{"timezone-id":"UTC"}'), +(10746, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:03.646833+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:03.932999+00', 286, '{"updated-tables":0,"total-tables":8}'), +(10747, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:03.933389+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:06.066635+00', 2133, '{"total-fields":71,"updated-fields":0}'), +(10748, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:06.066719+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:06.813202+00', 746, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10749, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:06.813294+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:06.970772+00', 157, NULL), +(10750, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.064508+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.142303+00', 77, NULL), +(10751, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.064542+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.115729+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10752, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.115785+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.125691+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(10753, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.125758+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:19:07.14225+00', 16, '{"total-tables":8,"tables-classified":0}'), +(10754, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:00.198596+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.41307+00', 8214, NULL), +(10755, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:00.198635+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:00.200356+00', 1, '{"timezone-id":null}'), +(10756, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:00.200445+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:00.461135+00', 260, '{"updated-tables":0,"total-tables":4}'), +(10757, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:00.461191+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.408711+00', 7947, '{"total-fields":30,"updated-fields":0}'), +(10758, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.408779+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.410676+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10759, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.410718+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.413014+00', 2, NULL), +(10760, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.464254+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.500272+00', 36, NULL), +(10761, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.464283+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.492101+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10762, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.492248+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.494952+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10763, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.495057+00', TIMESTAMP WITH TIME ZONE '2023-01-03 06:49:08.500151+00', 5, '{"total-tables":4,"tables-classified":0}'), +(10764, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 07:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:00:00.367+00', 263, NULL), +(10765, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 07:00:00.088+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:00:00.447+00', 359, NULL), +(10766, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:00.200725+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:03.969461+00', 3768, NULL), +(10767, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:00.205626+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:00.71079+00', 505, '{"timezone-id":"UTC"}'), +(10768, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:00.712788+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:01.01154+00', 298, '{"updated-tables":0,"total-tables":8}'), +(10769, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:01.011766+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:03.337882+00', 2326, '{"total-fields":71,"updated-fields":0}'), +(10770, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:03.337955+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:03.462843+00', 124, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10771, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:03.463148+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:03.968805+00', 505, NULL), +(10772, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.464325+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.592388+00', 128, NULL), +(10773, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.464359+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.558581+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10774, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.558662+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.5729+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(10775, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.572969+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:19:04.592337+00', 19, '{"total-tables":8,"tables-classified":0}'), +(10776, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:00.147662+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:08.997958+00', 8850, NULL), +(10777, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:00.147694+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:00.151568+00', 3, '{"timezone-id":null}'), +(10778, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:00.151653+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:00.484371+00', 332, '{"updated-tables":0,"total-tables":4}'), +(10779, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:00.48446+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:08.991338+00', 8506, '{"total-fields":30,"updated-fields":0}'), +(10780, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:08.991408+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:08.995352+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10781, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:08.995548+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:08.997919+00', 2, NULL), +(10782, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.079703+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.124339+00', 44, NULL), +(10783, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.07973+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.114481+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10784, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.114568+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.118744+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(10785, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.118814+00', TIMESTAMP WITH TIME ZONE '2023-01-03 07:49:09.124217+00', 5, '{"total-tables":4,"tables-classified":0}'), +(10786, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 08:00:00.079+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:00:00.293+00', 214, NULL), +(10787, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 08:00:00.09+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:00:00.292+00', 202, NULL), +(10788, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:00.230553+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.003061+00', 4772, NULL), +(10789, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:00.235947+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:00.710709+00', 474, '{"timezone-id":"UTC"}'), +(10790, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:00.713008+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:01.055662+00', 342, '{"updated-tables":0,"total-tables":8}'), +(10791, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:01.057411+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:04.267918+00', 3210, '{"total-fields":71,"updated-fields":0}'), +(10792, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:04.268226+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:04.40486+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10793, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:04.404928+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.002824+00', 597, NULL), +(10794, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.153184+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.44314+00', 289, NULL), +(10795, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.15323+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.349093+00', 195, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10796, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.349405+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.389131+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(10797, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.38948+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:19:05.442863+00', 53, '{"total-tables":8,"tables-classified":0}'), +(10798, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:00.31448+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.034214+00', 12719, NULL), +(10799, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:00.315469+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:00.318512+00', 3, '{"timezone-id":null}'), +(10800, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:00.319266+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:00.759543+00', 440, '{"updated-tables":0,"total-tables":4}'), +(10801, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:00.759612+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.023847+00', 12264, '{"total-fields":30,"updated-fields":0}'), +(10802, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.023939+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.031665+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10803, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.031751+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.033939+00', 2, NULL), +(10804, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.149906+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.373285+00', 223, NULL), +(10805, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.149935+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.277754+00', 127, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10806, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.277838+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.293571+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(10807, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.29364+00', TIMESTAMP WITH TIME ZONE '2023-01-03 08:49:13.373229+00', 79, '{"total-tables":4,"tables-classified":0}'), +(10808, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 09:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:00:00.598+00', 460, NULL), +(10809, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 09:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:00:00.596+00', 458, NULL), +(10810, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:00.192647+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.381514+00', 4188, NULL), +(10811, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:00.196611+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:00.567599+00', 370, '{"timezone-id":"UTC"}'), +(10812, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:00.569454+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:00.819956+00', 250, '{"updated-tables":0,"total-tables":8}'), +(10813, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:00.820385+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:03.811081+00', 2990, '{"total-fields":71,"updated-fields":0}'), +(10814, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:03.811484+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:03.928105+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10815, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:03.928396+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.381098+00', 452, NULL), +(10816, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.461391+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.536935+00', 75, NULL), +(10817, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.461418+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.498226+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10818, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.498632+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.510873+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(10819, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.510959+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:19:04.536882+00', 25, '{"total-tables":8,"tables-classified":0}'), +(10820, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:00.156912+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.632293+00', 7475, NULL), +(10821, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:00.156951+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:00.159589+00', 2, '{"timezone-id":null}'), +(10822, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:00.159727+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:00.473119+00', 313, '{"updated-tables":0,"total-tables":4}'), +(10823, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:00.473187+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.62943+00', 7156, '{"total-fields":30,"updated-fields":0}'), +(10824, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.629514+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.631165+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10825, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.631224+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.632259+00', 1, NULL), +(10826, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.666862+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.690492+00', 23, NULL), +(10827, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.666892+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.684595+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10828, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.684666+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.686984+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10829, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.687044+00', TIMESTAMP WITH TIME ZONE '2023-01-03 09:49:07.690455+00', 3, '{"total-tables":4,"tables-classified":0}'), +(10830, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 10:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:00:00.48+00', 356, NULL), +(10831, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 10:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:00:00.597+00', 477, NULL), +(10832, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:00.1456+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.63967+00', 3494, NULL), +(10833, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:00.14878+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:00.404789+00', 256, '{"timezone-id":"UTC"}'), +(10834, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:00.405967+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:00.571733+00', 165, '{"updated-tables":0,"total-tables":8}'), +(10835, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:00.571818+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.109858+00', 2538, '{"total-fields":71,"updated-fields":0}'), +(10836, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.109931+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.217487+00', 107, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10837, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.217758+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.639446+00', 421, NULL), +(10838, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.756345+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.827243+00', 70, NULL), +(10839, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.756384+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.801392+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10840, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.801449+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.810874+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(10841, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.810933+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:19:03.827199+00', 16, '{"total-tables":8,"tables-classified":0}'), +(10842, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:00.328907+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.248399+00', 11919, NULL), +(10843, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:00.330845+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:00.343984+00', 13, '{"timezone-id":null}'), +(10844, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:00.345255+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:00.696479+00', 351, '{"updated-tables":0,"total-tables":4}'), +(10845, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:00.696566+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.239766+00', 11543, '{"total-fields":30,"updated-fields":0}'), +(10846, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.239888+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.245911+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10847, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.245986+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.248358+00', 2, NULL), +(10848, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.544618+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.720698+00', 176, NULL), +(10849, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.544649+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.656239+00', 111, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10850, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.656375+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.693437+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(10851, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.693503+00', TIMESTAMP WITH TIME ZONE '2023-01-03 10:49:12.720654+00', 27, '{"total-tables":4,"tables-classified":0}'), +(10852, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 11:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:00:00.812+00', 679, NULL), +(10853, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 11:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:00:00.943+00', 810, NULL), +(10854, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:00.214617+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:03.949207+00', 3734, NULL), +(10855, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:00.218658+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:00.512579+00', 293, '{"timezone-id":"UTC"}'), +(10856, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:00.514668+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:00.734392+00', 219, '{"updated-tables":0,"total-tables":8}'), +(10857, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:00.734672+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:03.241903+00', 2507, '{"total-fields":71,"updated-fields":0}'), +(10858, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:03.242352+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:03.366889+00', 124, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10859, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:03.367205+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:03.948627+00', 581, NULL), +(10860, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.170777+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.321895+00', 151, NULL), +(10861, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.171012+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.284117+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10862, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.284188+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.304087+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(10863, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.304171+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:19:04.321842+00', 17, '{"total-tables":8,"tables-classified":0}'), +(10864, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:00.164828+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.734989+00', 8570, NULL), +(10865, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:00.164866+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:00.166489+00', 1, '{"timezone-id":null}'), +(10866, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:00.166609+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:00.515841+00', 349, '{"updated-tables":0,"total-tables":4}'), +(10867, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:00.515951+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.731154+00', 8215, '{"total-fields":30,"updated-fields":0}'), +(10868, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.731471+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.733104+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10869, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.733264+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.734947+00', 1, NULL), +(10870, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.776387+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.806026+00', 29, NULL), +(10871, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.776445+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.795875+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10872, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.795958+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.799877+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(10873, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.799946+00', TIMESTAMP WITH TIME ZONE '2023-01-03 11:49:08.805974+00', 6, '{"total-tables":4,"tables-classified":0}'), +(10874, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 12:00:00.241+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:00:00.416+00', 175, NULL), +(10875, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 12:00:00.231+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:00:00.417+00', 186, NULL), +(10876, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:00.172898+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:03.749119+00', 3576, NULL), +(10877, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:00.176744+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:00.536571+00', 359, '{"timezone-id":"UTC"}'), +(10878, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:00.538594+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:00.773642+00', 235, '{"updated-tables":0,"total-tables":8}'), +(10879, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:00.774072+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:03.106266+00', 2332, '{"total-fields":71,"updated-fields":0}'), +(10880, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:03.106871+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:03.218871+00', 112, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10881, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:03.219172+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:03.748571+00', 529, NULL), +(10882, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.429275+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.74848+00', 319, NULL), +(10883, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.429543+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.641479+00', 211, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10884, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.641808+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.693704+00', 51, '{"fields-classified":0,"fields-failed":0}'), +(10885, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.693796+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:19:04.747684+00', 53, '{"total-tables":8,"tables-classified":0}'), +(10886, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:00.190354+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.039414+00', 8849, NULL), +(10887, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:00.190393+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:00.192575+00', 2, '{"timezone-id":null}'), +(10888, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:00.192647+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:00.528043+00', 335, '{"updated-tables":0,"total-tables":4}'), +(10889, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:00.528205+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.03238+00', 8504, '{"total-fields":30,"updated-fields":0}'), +(10890, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.032651+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.035675+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10891, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.035735+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.039369+00', 3, NULL), +(10892, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.121769+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.211699+00', 89, NULL), +(10893, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.121796+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.186057+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10894, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.186116+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.195961+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(10895, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.196035+00', TIMESTAMP WITH TIME ZONE '2023-01-03 12:49:09.211651+00', 15, '{"total-tables":4,"tables-classified":0}'), +(10896, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 13:00:00.046+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:00:00.317+00', 271, NULL), +(10897, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 13:00:00.064+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:00:00.244+00', 180, NULL), +(10898, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:00.16287+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.640878+00', 4478, NULL), +(10899, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:00.167747+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:00.65104+00', 483, '{"timezone-id":"UTC"}'), +(10900, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:00.653033+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:00.963415+00', 310, '{"updated-tables":0,"total-tables":8}'), +(10901, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:00.963511+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.257689+00', 3294, '{"total-fields":71,"updated-fields":0}'), +(10902, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.258074+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.373336+00', 115, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10903, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.373569+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.640523+00', 266, NULL), +(10904, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.803652+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.877386+00', 73, NULL), +(10905, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.80368+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.852515+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10906, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.852575+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.863056+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(10907, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.863128+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:19:04.877335+00', 14, '{"total-tables":8,"tables-classified":0}'), +(10908, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:00.143903+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.140555+00', 7996, NULL), +(10909, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:00.143936+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:00.145565+00', 1, '{"timezone-id":null}'), +(10910, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:00.145627+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:00.499969+00', 354, '{"updated-tables":0,"total-tables":4}'), +(10911, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:00.50004+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.136056+00', 7636, '{"total-fields":30,"updated-fields":0}'), +(10912, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.13613+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.138661+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10913, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.138707+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.140519+00', 1, NULL), +(10914, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.207452+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.236111+00', 28, NULL), +(10915, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.20748+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.224088+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10916, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.22419+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.229612+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(10917, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.229988+00', TIMESTAMP WITH TIME ZONE '2023-01-03 13:49:08.23606+00', 6, '{"total-tables":4,"tables-classified":0}'), +(10918, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 14:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:00:00.728+00', 553, NULL), +(10919, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 14:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:00:00.818+00', 645, NULL), +(10920, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:00.354811+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.481051+00', 4126, NULL), +(10921, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:00.357713+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:00.702534+00', 344, '{"timezone-id":"UTC"}'), +(10922, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:00.704459+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:01.004477+00', 300, '{"updated-tables":0,"total-tables":8}'), +(10923, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:01.004587+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:03.789479+00', 2784, '{"total-fields":71,"updated-fields":0}'), +(10924, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:03.789886+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:03.913363+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10925, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:03.913818+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.480526+00', 566, NULL), +(10926, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.651089+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.81192+00', 160, NULL), +(10927, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.651149+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.779691+00', 128, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10928, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.779787+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.791403+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(10929, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.791495+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:19:04.811832+00', 20, '{"total-tables":8,"tables-classified":0}'), +(10930, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:00.166464+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.727462+00', 11560, NULL), +(10931, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:00.166493+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:00.167744+00', 1, '{"timezone-id":null}'), +(10932, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:00.16781+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:00.473222+00', 305, '{"updated-tables":0,"total-tables":4}'), +(10933, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:00.473292+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.719657+00', 11246, '{"total-fields":30,"updated-fields":0}'), +(10934, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.71978+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.721391+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10935, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.721471+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.727388+00', 5, NULL), +(10936, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.960879+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:12.039621+00', 78, NULL), +(10937, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:11.961006+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:12.03222+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10938, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:12.032292+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:12.034641+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10939, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:12.034694+00', TIMESTAMP WITH TIME ZONE '2023-01-03 14:49:12.039574+00', 4, '{"total-tables":4,"tables-classified":0}'), +(10940, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 15:00:00.105+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:00:00.288+00', 183, NULL), +(10941, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 15:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:00:00.29+00', 207, NULL), +(10942, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:00.146791+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.918013+00', 3771, NULL), +(10943, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:00.14858+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:00.490881+00', 342, '{"timezone-id":"UTC"}'), +(10944, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:00.492303+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:00.738996+00', 246, '{"updated-tables":0,"total-tables":8}'), +(10945, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:00.7392+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.479612+00', 2740, '{"total-fields":71,"updated-fields":0}'), +(10946, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.479895+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.592175+00', 112, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10947, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.592494+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.917525+00', 325, NULL), +(10948, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.984785+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:04.083838+00', 99, NULL), +(10949, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:03.984818+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:04.046883+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10950, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:04.047048+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:04.057386+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(10951, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:04.057531+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:19:04.08378+00', 26, '{"total-tables":8,"tables-classified":0}'), +(10952, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:00.17876+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.842021+00', 7663, NULL), +(10953, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:00.178797+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:00.17993+00', 1, '{"timezone-id":null}'), +(10954, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:00.179988+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:00.526754+00', 346, '{"updated-tables":0,"total-tables":4}'), +(10955, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:00.526828+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.836993+00', 7310, '{"total-fields":30,"updated-fields":0}'), +(10956, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.837076+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.840223+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10957, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.840282+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.841992+00', 1, NULL), +(10958, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.926748+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.958415+00', 31, NULL), +(10959, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.926779+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.951498+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10960, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.951576+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.954376+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10961, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.954425+00', TIMESTAMP WITH TIME ZONE '2023-01-03 15:49:07.958284+00', 3, '{"total-tables":4,"tables-classified":0}'), +(10962, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 16:00:00.414+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:00:00.58+00', 166, NULL), +(10963, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 16:00:00.398+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:00:00.63+00', 232, NULL), +(10964, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:00.151606+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.781235+00', 3629, NULL), +(10965, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:00.154263+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:00.569099+00', 414, '{"timezone-id":"UTC"}'), +(10966, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:00.570408+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:00.814545+00', 244, '{"updated-tables":0,"total-tables":8}'), +(10967, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:00.814631+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.415948+00', 2601, '{"total-fields":71,"updated-fields":0}'), +(10968, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.416244+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.571931+00', 155, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10969, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.572294+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.780864+00', 208, NULL), +(10970, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.881277+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.961142+00', 79, NULL), +(10971, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.881305+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.92839+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10972, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.928509+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.943966+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(10973, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.944092+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:19:03.961089+00', 16, '{"total-tables":8,"tables-classified":0}'), +(10974, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:00.159673+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.164172+00', 8004, NULL), +(10975, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:00.159713+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:00.16083+00', 1, '{"timezone-id":null}'), +(10976, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:00.160895+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:00.455072+00', 294, '{"updated-tables":0,"total-tables":4}'), +(10977, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:00.455142+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.159699+00', 7704, '{"total-fields":30,"updated-fields":0}'), +(10978, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.159998+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.161472+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(10979, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.161638+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.164072+00', 2, NULL), +(10980, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.209037+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.238102+00', 29, NULL), +(10981, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.209064+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.228567+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(10982, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.228637+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.230935+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(10983, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.230978+00', TIMESTAMP WITH TIME ZONE '2023-01-03 16:49:08.238059+00', 7, '{"total-tables":4,"tables-classified":0}'), +(10984, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 17:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:00:00.538+00', 432, NULL), +(10985, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 17:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:00:00.613+00', 509, NULL), +(10986, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:00.194353+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.884878+00', 3690, NULL), +(10987, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:00.197408+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:00.410407+00', 212, '{"timezone-id":"UTC"}'), +(10988, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:00.4114+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:00.621339+00', 209, '{"updated-tables":0,"total-tables":8}'), +(10989, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:00.621655+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.332648+00', 2710, '{"total-fields":71,"updated-fields":0}'), +(10990, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.332921+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.446584+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(10991, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.446914+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.884218+00', 437, NULL), +(10992, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.940684+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:04.025361+00', 84, NULL), +(10993, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.940715+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.994863+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(10994, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:03.99516+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:04.007867+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(10995, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:04.00806+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:19:04.025301+00', 17, '{"total-tables":8,"tables-classified":0}'), +(10996, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:00.128976+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.292096+00', 8163, NULL), +(10997, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:00.129016+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:00.131002+00', 1, '{"timezone-id":null}'), +(10998, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:00.131065+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:00.387714+00', 256, '{"updated-tables":0,"total-tables":4}'), +(10999, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:00.387838+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.288302+00', 7900, '{"total-fields":30,"updated-fields":0}'), +(11000, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.28838+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.289972+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11001, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.290024+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.291898+00', 1, NULL), +(11002, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.344588+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.37481+00', 30, NULL), +(11003, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.344615+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.36523+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11004, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.365298+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.368443+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11005, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.368584+00', TIMESTAMP WITH TIME ZONE '2023-01-03 17:49:08.37477+00', 6, '{"total-tables":4,"tables-classified":0}'), +(11006, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 18:00:00.027+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:00:00.237+00', 210, NULL), +(11007, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 18:00:00.049+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:00:00.237+00', 188, NULL), +(11008, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:00.135161+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.212255+00', 3077, NULL), +(11009, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:00.138143+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:00.439828+00', 301, '{"timezone-id":"UTC"}'), +(11010, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:00.441078+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:00.665925+00', 224, '{"updated-tables":0,"total-tables":8}'), +(11011, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:00.666235+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:02.942974+00', 2276, '{"total-fields":71,"updated-fields":0}'), +(11012, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:02.943373+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.050598+00', 107, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11013, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.050819+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.211907+00', 161, NULL), +(11014, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.254525+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.472397+00', 217, NULL), +(11015, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.2546+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.30613+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11016, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.306202+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.324843+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(11017, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.324908+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:19:03.472325+00', 147, '{"total-tables":8,"tables-classified":0}'), +(11018, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:00.118903+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.053279+00', 9934, NULL), +(11019, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:00.118942+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:00.120233+00', 1, '{"timezone-id":null}'), +(11020, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:00.120292+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:00.336204+00', 215, '{"updated-tables":0,"total-tables":4}'), +(11021, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:00.33627+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.048343+00', 9712, '{"total-fields":30,"updated-fields":0}'), +(11022, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.048469+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.051586+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11023, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.051636+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.053199+00', 1, NULL), +(11024, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.148784+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.189135+00', 40, NULL), +(11025, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.148814+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.174547+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11026, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.174613+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.183491+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(11027, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.183563+00', TIMESTAMP WITH TIME ZONE '2023-01-03 18:49:10.189093+00', 5, '{"total-tables":4,"tables-classified":0}'), +(11028, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 19:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:00:00.316+00', 190, NULL), +(11029, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 19:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:00:00.364+00', 239, NULL), +(11030, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:00.168833+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.656843+00', 3488, NULL), +(11031, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:00.172939+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:00.549691+00', 376, '{"timezone-id":"UTC"}'), +(11032, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:00.551103+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:00.814825+00', 263, '{"updated-tables":0,"total-tables":8}'), +(11033, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:00.814911+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.036704+00', 2221, '{"total-fields":71,"updated-fields":0}'), +(11034, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.037001+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.153607+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11035, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.153896+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.656489+00', 502, NULL), +(11036, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.8282+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:04.163998+00', 335, NULL), +(11037, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:03.828229+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:04.053257+00', 225, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11038, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:04.053665+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:04.110683+00', 57, '{"fields-classified":0,"fields-failed":0}'), +(11039, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:04.111326+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:19:04.163756+00', 52, '{"total-tables":8,"tables-classified":0}'), +(11040, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:00.131585+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.778598+00', 7647, NULL), +(11041, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:00.131622+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:00.133303+00', 1, '{"timezone-id":null}'), +(11042, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:00.133414+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:00.438187+00', 304, '{"updated-tables":0,"total-tables":4}'), +(11043, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:00.438303+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.775317+00', 7337, '{"total-fields":30,"updated-fields":0}'), +(11044, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.775378+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.776677+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11045, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.77677+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.778574+00', 1, NULL), +(11046, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.826347+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.874937+00', 48, NULL), +(11047, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.826373+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.865915+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11048, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.866009+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.870564+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11049, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.870655+00', TIMESTAMP WITH TIME ZONE '2023-01-03 19:49:07.874899+00', 4, '{"total-tables":4,"tables-classified":0}'), +(11050, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 20:00:00.425+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:00:01.592+00', 1167, NULL), +(11051, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 20:00:00.445+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:00:01.592+00', 1147, NULL), +(11052, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:00.26305+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.908165+00', 2645, NULL), +(11053, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:00.26682+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:00.614205+00', 347, '{"timezone-id":"UTC"}'), +(11054, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:00.615863+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:00.827659+00', 211, '{"updated-tables":0,"total-tables":8}'), +(11055, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:00.827924+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.763777+00', 1935, '{"total-fields":71,"updated-fields":0}'), +(11056, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.763903+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.800076+00', 36, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11057, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.800171+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.908116+00', 107, NULL), +(11058, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.966677+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:03.086071+00', 119, NULL), +(11059, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:02.966707+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:03.058782+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11060, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:03.058892+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:03.068984+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(11061, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:03.069072+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:19:03.085997+00', 16, '{"total-tables":8,"tables-classified":0}'), +(11062, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:00.146501+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.160689+00', 7014, NULL), +(11063, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:00.146537+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:00.148113+00', 1, '{"timezone-id":null}'), +(11064, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:00.148181+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:00.454412+00', 306, '{"updated-tables":0,"total-tables":4}'), +(11065, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:00.454483+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.151641+00', 6697, '{"total-fields":30,"updated-fields":0}'), +(11066, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.151787+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.153617+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11067, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.153691+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.160633+00', 6, NULL), +(11068, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.368559+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.483495+00', 114, NULL), +(11069, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.368585+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.477927+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11070, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.478002+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.480278+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(11071, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.480322+00', TIMESTAMP WITH TIME ZONE '2023-01-03 20:49:07.48346+00', 3, '{"total-tables":4,"tables-classified":0}'), +(11072, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:00.242+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:00.391+00', 149, NULL), +(11073, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:00.391+00', 170, NULL), +(11074, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:00.538392+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:07.2326+00', 6694, NULL), +(11075, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:00.541045+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:01.620318+00', 1079, '{"deleted":0}'), +(11076, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:01.622193+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:00:07.232553+00', 5610, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(11077, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:00.098224+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.605508+00', 1507, NULL), +(11078, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:00.098708+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:00.225813+00', 127, '{"timezone-id":"UTC"}'), +(11079, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:00.226602+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:00.41678+00', 190, '{"updated-tables":0,"total-tables":8}'), +(11080, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:00.417114+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.320387+00', 903, '{"total-fields":71,"updated-fields":0}'), +(11081, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.320489+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.39264+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11082, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.392795+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.605479+00', 212, NULL), +(11083, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.661376+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.822942+00', 161, NULL), +(11084, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.661408+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.74381+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11085, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.743894+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.769289+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(11086, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.769397+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:19:01.822885+00', 53, '{"total-tables":8,"tables-classified":0}'), +(11087, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:00.625572+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.319153+00', 13693, NULL), +(11088, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:00.628772+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:00.645219+00', 16, '{"timezone-id":null}'), +(11089, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:00.648405+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:01.111478+00', 463, '{"updated-tables":0,"total-tables":4}'), +(11090, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:01.111572+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.30374+00', 13192, '{"total-fields":30,"updated-fields":0}'), +(11091, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.304024+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.312803+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11092, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.312858+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.318889+00', 6, NULL), +(11093, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.46412+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.565753+00', 101, NULL), +(11094, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.464149+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.534971+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11095, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.535033+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.544074+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(11096, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.544145+00', TIMESTAMP WITH TIME ZONE '2023-01-03 21:49:14.565681+00', 21, '{"total-tables":4,"tables-classified":0}'), +(11097, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 22:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:00:00.434+00', 302, NULL), +(11098, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 22:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:00:00.524+00', 399, NULL), +(11099, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:00.182022+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.638261+00', 3456, NULL), +(11100, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:00.186899+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:00.521944+00', 335, '{"timezone-id":"UTC"}'), +(11101, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:00.522936+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:00.718295+00', 195, '{"updated-tables":0,"total-tables":8}'), +(11102, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:00.71867+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.273914+00', 2555, '{"total-fields":71,"updated-fields":0}'), +(11103, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.274147+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.3678+00', 93, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11104, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.368078+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.63799+00', 269, NULL), +(11105, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.703244+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.78907+00', 85, NULL), +(11106, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.703271+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.749421+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11107, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.749479+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.760359+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(11108, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.760577+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:19:03.789018+00', 28, '{"total-tables":8,"tables-classified":0}'), +(11109, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:00.150475+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.528483+00', 7378, NULL), +(11110, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:00.150516+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:00.153695+00', 3, '{"timezone-id":null}'), +(11111, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:00.153768+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:00.474393+00', 320, '{"updated-tables":0,"total-tables":4}'), +(11112, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:00.474451+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.525133+00', 7050, '{"total-fields":30,"updated-fields":0}'), +(11113, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.525189+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.52669+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11114, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.526817+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.528356+00', 1, NULL), +(11115, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.570338+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.593015+00', 22, NULL), +(11116, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.570367+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.585922+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11117, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.586125+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.588516+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(11118, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.588633+00', TIMESTAMP WITH TIME ZONE '2023-01-03 22:49:07.592905+00', 4, '{"total-tables":4,"tables-classified":0}'), +(11119, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 23:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:00:00.339+00', 223, NULL), +(11120, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-03 23:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:00:00.422+00', 306, NULL), +(11121, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:00.181974+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.809219+00', 3627, NULL), +(11122, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:00.188201+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:00.517918+00', 329, '{"timezone-id":"UTC"}'), +(11123, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:00.519446+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:00.806639+00', 287, '{"updated-tables":0,"total-tables":8}'), +(11124, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:00.806928+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.284214+00', 2477, '{"total-fields":71,"updated-fields":0}'), +(11125, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.284503+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.421325+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11126, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.421713+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.808994+00', 387, NULL), +(11127, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.909771+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.996356+00', 86, NULL), +(11128, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.9098+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.955338+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11129, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.955395+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.965349+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(11130, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.965409+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:19:03.996284+00', 30, '{"total-tables":8,"tables-classified":0}'), +(11131, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:00.149257+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.060889+00', 9911, NULL), +(11132, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:00.149298+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:00.150803+00', 1, '{"timezone-id":null}'), +(11133, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:00.150868+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:00.456797+00', 305, '{"updated-tables":0,"total-tables":4}'), +(11134, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:00.456874+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.056774+00', 9599, '{"total-fields":30,"updated-fields":0}'), +(11135, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.05684+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.058675+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11136, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.058804+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.06086+00', 2, NULL), +(11137, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.121075+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.195219+00', 74, NULL), +(11138, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.121135+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.179103+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11139, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.179163+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.184744+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(11140, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.184884+00', TIMESTAMP WITH TIME ZONE '2023-01-03 23:49:10.195168+00', 10, '{"total-tables":4,"tables-classified":0}'), +(11141, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 00:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:00:00.507+00', 410, NULL), +(11142, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 00:00:00.068+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:00:00.563+00', 495, NULL), +(11143, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:00.676744+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.237821+00', 3561, NULL), +(11144, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:00.681103+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:01.106895+00', 425, '{"timezone-id":"UTC"}'), +(11145, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:01.108944+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:01.404481+00', 295, '{"updated-tables":0,"total-tables":8}'), +(11146, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:01.404786+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:03.668877+00', 2264, '{"total-fields":71,"updated-fields":0}'), +(11147, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:03.669479+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:03.765387+00', 95, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11148, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:03.765654+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.237378+00', 471, NULL), +(11149, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.398809+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.576004+00', 177, NULL), +(11150, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.399031+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.524611+00', 125, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11151, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.524677+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.540554+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(11152, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.540636+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:19:04.575953+00', 35, '{"total-tables":8,"tables-classified":0}'), +(11153, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:00.698034+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.816456+00', 10118, NULL), +(11154, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:00.706263+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:00.724297+00', 18, '{"timezone-id":null}'), +(11155, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:00.72716+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:01.187811+00', 460, '{"updated-tables":0,"total-tables":4}'), +(11156, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:01.187898+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.804069+00', 9616, '{"total-fields":30,"updated-fields":0}'), +(11157, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.804146+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.8129+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11158, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.81296+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.816387+00', 3, NULL), +(11159, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.968874+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:11.031771+00', 62, NULL), +(11160, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:10.969065+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:11.019041+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11161, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:11.019133+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:11.022383+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11162, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:11.022465+00', TIMESTAMP WITH TIME ZONE '2023-01-04 00:49:11.031676+00', 9, '{"total-tables":4,"tables-classified":0}'), +(11163, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 01:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:00:00.541+00', 437, NULL), +(11164, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 01:00:00.232+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:00:00.54+00', 308, NULL), +(11165, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:00.157151+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.737289+00', 3580, NULL), +(11166, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:00.161723+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:00.443378+00', 281, '{"timezone-id":"UTC"}'), +(11167, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:00.444945+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:00.652398+00', 207, '{"updated-tables":0,"total-tables":8}'), +(11168, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:00.652671+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.234634+00', 2581, '{"total-fields":71,"updated-fields":0}'), +(11169, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.234967+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.357974+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11170, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.358369+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.737045+00', 378, NULL), +(11171, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.798311+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.881492+00', 83, NULL), +(11172, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.798341+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.853407+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11173, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.853701+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.864616+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(11174, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.864754+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:19:03.88142+00', 16, '{"total-tables":8,"tables-classified":0}'), +(11175, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:00.175979+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.655247+00', 7479, NULL), +(11176, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:00.176012+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:00.179545+00', 3, '{"timezone-id":null}'), +(11177, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:00.179617+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:00.530376+00', 350, '{"updated-tables":0,"total-tables":4}'), +(11178, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:00.530431+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.652079+00', 7121, '{"total-fields":30,"updated-fields":0}'), +(11179, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.652142+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.653494+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11180, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.653545+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.655222+00', 1, NULL), +(11181, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.695732+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.720586+00', 24, NULL), +(11182, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.695775+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.714736+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11183, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.714802+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.717089+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(11184, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.717146+00', TIMESTAMP WITH TIME ZONE '2023-01-04 01:49:07.720551+00', 3, '{"total-tables":4,"tables-classified":0}'), +(11185, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:00.402+00', 251, NULL), +(11186, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:00.401+00', 236, NULL), +(11187, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:00.726559+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:08.339853+00', 7613, NULL), +(11188, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:00.729851+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:01.977181+00', 1247, '{"deleted":0}'), +(11189, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:01.97873+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:00:08.339103+00', 6360, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(11190, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:00.094022+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.395912+00', 1301, NULL), +(11191, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:00.09463+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:00.600792+00', 506, '{"timezone-id":"UTC"}'), +(11192, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:00.601094+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:00.801667+00', 200, '{"updated-tables":0,"total-tables":8}'), +(11193, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:00.801757+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.269843+00', 468, '{"total-fields":71,"updated-fields":0}'), +(11194, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.270319+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.304822+00', 34, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11195, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.304872+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.395864+00', 90, NULL), +(11196, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.419365+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.484045+00', 64, NULL), +(11197, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.419391+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.4597+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11198, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.45977+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.467513+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(11199, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.467583+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:19:01.483995+00', 16, '{"total-tables":8,"tables-classified":0}'), +(11200, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:00.032459+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.947418+00', 7914, NULL), +(11201, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:00.03249+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:00.034634+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11202, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:00.03471+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:00.15388+00', 119, '{"updated-tables":0,"total-tables":4}'), +(11203, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:00.154039+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.94474+00', 7790, '{"total-fields":30,"updated-fields":0}'), +(11204, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.944796+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.945946+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11205, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.945984+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.947394+00', 1, NULL), +(11206, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.972934+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:08.000708+00', 27, NULL), +(11207, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.972958+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.993883+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11208, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.99394+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.996955+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11209, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:07.99703+00', TIMESTAMP WITH TIME ZONE '2023-01-04 02:49:08.000667+00', 3, '{"total-tables":4,"tables-classified":0}'), +(11210, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 03:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:00:00.617+00', 497, NULL), +(11211, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 03:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:00:00.721+00', 601, NULL), +(11212, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:00.234312+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.636487+00', 4402, NULL), +(11213, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:00.239444+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:00.62489+00', 385, '{"timezone-id":"UTC"}'), +(11214, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:00.627509+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:00.963407+00', 335, '{"updated-tables":0,"total-tables":8}'), +(11215, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:00.963687+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:03.654611+00', 2690, '{"total-fields":71,"updated-fields":0}'), +(11216, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:03.654846+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:03.792521+00', 137, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11217, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:03.792736+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.630437+00', 837, NULL), +(11218, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.702856+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.784787+00', 81, NULL), +(11219, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.702885+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.756276+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11220, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.756369+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.767534+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(11221, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.767595+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:19:04.78474+00', 17, '{"total-tables":8,"tables-classified":0}'), +(11222, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:00.163185+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.317304+00', 12154, NULL), +(11223, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:00.163224+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:00.16515+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11224, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:00.165361+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:00.449153+00', 283, '{"updated-tables":0,"total-tables":4}'), +(11225, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:00.44923+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.315667+00', 11866, '{"total-fields":30,"updated-fields":0}'), +(11226, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.315736+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.31692+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11227, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.316958+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.317285+00', 0, NULL), +(11228, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.343023+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.357926+00', 14, NULL), +(11229, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.343054+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.351689+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11230, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.351748+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.354028+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(11231, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.354077+00', TIMESTAMP WITH TIME ZONE '2023-01-04 03:49:12.357872+00', 3, '{"total-tables":4,"tables-classified":0}'), +(11232, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 04:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:00:00.481+00', 369, NULL), +(11233, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 04:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:00:00.481+00', 363, NULL), +(11234, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:00.161463+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.45086+00', 3289, NULL), +(11235, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:00.165385+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:00.587061+00', 421, '{"timezone-id":"UTC"}'), +(11236, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:00.588703+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:00.822035+00', 233, '{"updated-tables":0,"total-tables":8}'), +(11237, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:00.822307+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:02.880645+00', 2058, '{"total-fields":71,"updated-fields":0}'), +(11238, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:02.880737+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:02.989637+00', 108, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11239, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:02.989914+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.450598+00', 460, NULL), +(11240, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.87622+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.947867+00', 71, NULL), +(11241, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.876246+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.914706+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11242, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.914772+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.925466+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(11243, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.925742+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:19:03.947825+00', 22, '{"total-tables":8,"tables-classified":0}'), +(11244, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:00.164894+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.02967+00', 10864, NULL), +(11245, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:00.164926+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:00.167629+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11246, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:00.167949+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:00.475894+00', 307, '{"updated-tables":0,"total-tables":4}'), +(11247, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:00.475989+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.024138+00', 10548, '{"total-fields":30,"updated-fields":0}'), +(11248, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.024278+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.027651+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11249, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.02774+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.029608+00', 1, NULL), +(11250, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.07429+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.105473+00', 31, NULL), +(11251, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.074317+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.095122+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11252, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.095191+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.099507+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11253, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.099574+00', TIMESTAMP WITH TIME ZONE '2023-01-04 04:49:11.105418+00', 5, '{"total-tables":4,"tables-classified":0}'), +(11254, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 05:00:00.052+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:00:00.183+00', 131, NULL), +(11255, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 05:00:00.044+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:00:00.205+00', 161, NULL), +(11256, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:00.176816+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.642741+00', 3465, NULL), +(11257, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:00.180881+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:00.51959+00', 338, '{"timezone-id":"UTC"}'), +(11258, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:00.520876+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:00.770571+00', 249, '{"updated-tables":0,"total-tables":8}'), +(11259, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:00.770659+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:02.957632+00', 2186, '{"total-fields":71,"updated-fields":0}'), +(11260, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:02.957988+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.087341+00', 129, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11261, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.087616+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.642703+00', 555, NULL), +(11262, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.690221+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.772306+00', 82, NULL), +(11263, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.690248+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.742686+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11264, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.742883+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.748636+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(11265, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.748719+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:19:03.771962+00', 23, '{"total-tables":8,"tables-classified":0}'), +(11266, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:00.161136+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.28117+00', 9120, NULL), +(11267, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:00.161226+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:00.162949+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11268, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:00.163007+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:00.517077+00', 354, '{"updated-tables":0,"total-tables":4}'), +(11269, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:00.517136+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.264269+00', 8747, '{"total-fields":30,"updated-fields":0}'), +(11270, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.264344+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.266617+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11271, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.266677+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.271889+00', 5, NULL), +(11272, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.382068+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.418824+00', 36, NULL), +(11273, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.382095+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.404616+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11274, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.404848+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.409078+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11275, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.409172+00', TIMESTAMP WITH TIME ZONE '2023-01-04 05:49:09.418765+00', 9, '{"total-tables":4,"tables-classified":0}'), +(11276, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 06:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:00:00.359+00', 239, NULL), +(11277, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 06:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:00:00.305+00', 174, NULL), +(11278, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:00.188056+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.738441+00', 4550, NULL), +(11279, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:00.19156+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:00.660812+00', 469, '{"timezone-id":"UTC"}'), +(11280, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:00.662397+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:00.922776+00', 260, '{"updated-tables":0,"total-tables":8}'), +(11281, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:00.923029+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.007616+00', 3084, '{"total-fields":71,"updated-fields":0}'), +(11282, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.00793+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.140731+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11283, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.141013+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.737829+00', 596, NULL), +(11284, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.908718+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:05.228934+00', 320, NULL), +(11285, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:04.908893+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:05.128388+00', 219, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11286, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:05.128973+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:05.173446+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(11287, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:05.173832+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:19:05.228763+00', 54, '{"total-tables":8,"tables-classified":0}'), +(11288, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:00.68356+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.34216+00', 13658, NULL), +(11289, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:00.689983+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:00.721313+00', 31, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11290, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:00.72851+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:01.212066+00', 483, '{"updated-tables":0,"total-tables":4}'), +(11291, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:01.21222+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.325329+00', 13113, '{"total-fields":30,"updated-fields":0}'), +(11292, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.325525+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.337842+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11293, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.337937+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.341918+00', 3, NULL), +(11294, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.743217+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.863163+00', 119, NULL), +(11295, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.743263+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.817627+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11296, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.817964+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.828756+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(11297, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.828947+00', TIMESTAMP WITH TIME ZONE '2023-01-04 06:49:14.863063+00', 34, '{"total-tables":4,"tables-classified":0}'), +(11298, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 07:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:00:00.864+00', 729, NULL), +(11299, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 07:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:00:00.951+00', 825, NULL), +(11300, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:00.147822+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.486496+00', 3338, NULL), +(11301, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:00.151445+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:00.461525+00', 310, '{"timezone-id":"UTC"}'), +(11302, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:00.46369+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:00.696592+00', 232, '{"updated-tables":0,"total-tables":8}'), +(11303, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:00.696916+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:02.933307+00', 2236, '{"total-fields":71,"updated-fields":0}'), +(11304, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:02.934015+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.067052+00', 133, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11305, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.067377+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.486463+00', 419, NULL), +(11306, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.526313+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.590909+00', 64, NULL), +(11307, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.526336+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.564153+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11308, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.564222+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.57328+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(11309, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.573836+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:19:03.59083+00', 16, '{"total-tables":8,"tables-classified":0}'), +(11310, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:00.155815+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:08.798716+00', 8642, NULL), +(11311, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:00.155844+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:00.161937+00', 6, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11312, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:00.162074+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:00.467974+00', 305, '{"updated-tables":0,"total-tables":4}'), +(11313, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:00.468037+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:08.791258+00', 8323, '{"total-fields":30,"updated-fields":0}'), +(11314, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:08.791363+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:08.79351+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11315, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:08.793578+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:08.798651+00', 5, NULL), +(11316, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.119953+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.281419+00', 161, NULL), +(11317, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.119976+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.189078+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11318, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.189164+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.198124+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(11319, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.198207+00', TIMESTAMP WITH TIME ZONE '2023-01-04 07:49:09.281363+00', 83, '{"total-tables":4,"tables-classified":0}'), +(11320, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 08:00:00.664+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:00:02.547+00', 1883, NULL), +(11321, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 08:00:00.651+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:00:02.688+00', 2037, NULL), +(11322, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:00.267125+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.844883+00', 3577, NULL), +(11323, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:00.27169+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:00.519149+00', 247, '{"timezone-id":"UTC"}'), +(11324, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:00.521001+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:00.767674+00', 246, '{"updated-tables":0,"total-tables":8}'), +(11325, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:00.76797+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.556748+00', 2788, '{"total-fields":71,"updated-fields":0}'), +(11326, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.557058+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.675353+00', 118, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11327, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.675656+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.84436+00', 168, NULL), +(11328, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.926659+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:04.039732+00', 113, NULL), +(11329, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.92669+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.989292+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11330, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:03.989368+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:04.00234+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(11331, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:04.002416+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:19:04.039675+00', 37, '{"total-tables":8,"tables-classified":0}'), +(11332, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:00.177053+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.079648+00', 8902, NULL), +(11333, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:00.177087+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:00.178918+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11334, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:00.178993+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:00.514327+00', 335, '{"updated-tables":0,"total-tables":4}'), +(11335, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:00.514392+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.063862+00', 8549, '{"total-fields":30,"updated-fields":0}'), +(11336, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.064724+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.069286+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11337, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.069353+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.079566+00', 10, NULL), +(11338, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.155137+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.230886+00', 75, NULL), +(11339, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.155162+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.203997+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11340, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.204127+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.223108+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(11341, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.223197+00', TIMESTAMP WITH TIME ZONE '2023-01-04 08:49:09.230795+00', 7, '{"total-tables":4,"tables-classified":0}'), +(11342, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 09:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:00:00.458+00', 329, NULL), +(11343, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 09:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:00:00.557+00', 428, NULL), +(11344, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:00.330643+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.54555+00', 5214, NULL), +(11345, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:00.33354+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:00.739495+00', 405, '{"timezone-id":"UTC"}'), +(11346, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:00.740957+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:01.091439+00', 350, '{"updated-tables":0,"total-tables":8}'), +(11347, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:01.09166+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:03.473193+00', 2381, '{"total-fields":71,"updated-fields":0}'), +(11348, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:03.47338+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.14502+00', 1671, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11349, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.145125+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.545132+00', 400, NULL), +(11350, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.609822+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.713308+00', 103, NULL), +(11351, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.60984+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.669473+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11352, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.669539+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.68192+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(11353, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.682026+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:19:05.713231+00', 31, '{"total-tables":8,"tables-classified":0}'), +(11354, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:00.185963+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.152667+00', 7966, NULL), +(11355, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:00.185986+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:00.188754+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11356, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:00.18883+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:00.488739+00', 299, '{"updated-tables":0,"total-tables":4}'), +(11357, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:00.488835+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.148672+00', 7659, '{"total-fields":30,"updated-fields":0}'), +(11358, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.148759+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.150651+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11359, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.150727+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.1526+00', 1, NULL), +(11360, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.189183+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.212976+00', 23, NULL), +(11361, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.1892+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.204976+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11362, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.20504+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.208073+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11363, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.208149+00', TIMESTAMP WITH TIME ZONE '2023-01-04 09:49:08.212923+00', 4, '{"total-tables":4,"tables-classified":0}'), +(11364, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 10:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:00:00.406+00', 266, NULL), +(11365, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 10:00:00.113+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:00:00.408+00', 295, NULL), +(11366, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:00.160144+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.556575+00', 4396, NULL), +(11367, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:00.160619+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:00.412888+00', 252, '{"timezone-id":"UTC"}'), +(11368, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:00.413761+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:01.377845+00', 964, '{"updated-tables":0,"total-tables":8}'), +(11369, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:01.37916+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.309623+00', 2930, '{"total-fields":71,"updated-fields":0}'), +(11370, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.310176+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.40942+00', 99, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11371, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.409668+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.556544+00', 146, NULL), +(11372, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.604766+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.700269+00', 95, NULL), +(11373, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.604785+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.650437+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11374, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.650495+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.673304+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(11375, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.673541+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:19:04.70022+00', 26, '{"total-tables":8,"tables-classified":0}'), +(11376, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:00.16415+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.242292+00', 8078, NULL), +(11377, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:00.164179+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:00.165929+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11378, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:00.166009+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:00.482137+00', 316, '{"updated-tables":0,"total-tables":4}'), +(11379, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:00.482211+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.21896+00', 7736, '{"total-fields":30,"updated-fields":0}'), +(11380, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.219282+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.220856+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11381, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.221056+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.241999+00', 20, NULL), +(11382, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.28265+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.32379+00', 41, NULL), +(11383, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.282693+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.309242+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11384, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.30932+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.312543+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11385, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.312612+00', TIMESTAMP WITH TIME ZONE '2023-01-04 10:49:08.323732+00', 11, '{"total-tables":4,"tables-classified":0}'), +(11386, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 11:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:00:00.395+00', 264, NULL), +(11387, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 11:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:00:00.478+00', 347, NULL), +(11388, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:00.189737+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.623049+00', 4433, NULL), +(11389, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:00.190783+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:00.546592+00', 355, '{"timezone-id":"UTC"}'), +(11390, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:00.548153+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:00.845705+00', 297, '{"updated-tables":0,"total-tables":8}'), +(11391, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:00.84582+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:03.734362+00', 2888, '{"total-fields":71,"updated-fields":0}'), +(11392, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:03.734745+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:03.86711+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11393, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:03.867454+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.622593+00', 755, NULL), +(11394, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.69786+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.777771+00', 79, NULL), +(11395, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.697878+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.746178+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11396, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.746279+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.757539+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(11397, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.757639+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:19:04.777721+00', 20, '{"total-tables":8,"tables-classified":0}'), +(11398, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:00.180162+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:10.919422+00', 10739, NULL), +(11399, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:00.180188+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:00.181374+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11400, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:00.181434+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:00.541509+00', 360, '{"updated-tables":0,"total-tables":4}'), +(11401, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:00.541571+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:10.905628+00', 10364, '{"total-fields":30,"updated-fields":0}'), +(11402, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:10.905783+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:10.916669+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11403, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:10.916847+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:10.91936+00', 2, NULL), +(11404, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.074973+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.151866+00', 76, NULL), +(11405, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.075+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.119986+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11406, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.120253+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.127373+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(11407, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.12759+00', TIMESTAMP WITH TIME ZONE '2023-01-04 11:49:11.151767+00', 24, '{"total-tables":4,"tables-classified":0}'), +(11408, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 12:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:00:00.303+00', 162, NULL), +(11409, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 12:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:00:00.292+00', 139, NULL), +(11410, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:00.250447+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:06.544829+00', 6294, NULL), +(11411, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:00.257632+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:00.640114+00', 382, '{"timezone-id":"UTC"}'), +(11412, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:00.642292+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:01.017555+00', 375, '{"updated-tables":0,"total-tables":8}'), +(11413, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:01.017851+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:05.64233+00', 4624, '{"total-fields":71,"updated-fields":0}'), +(11414, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:05.64243+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:05.798597+00', 156, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11415, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:05.798698+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:06.544548+00', 745, NULL), +(11416, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:06.774225+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:07.359439+00', 585, NULL), +(11417, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:06.774249+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:07.038001+00', 263, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11418, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:07.038262+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:07.095181+00', 56, '{"fields-classified":0,"fields-failed":0}'), +(11419, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:07.095358+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:19:07.359364+00', 264, '{"total-tables":8,"tables-classified":0}'), +(11420, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:00.22124+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.325819+00', 9104, NULL), +(11421, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:00.221264+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:00.222863+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11422, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:00.222952+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:00.560258+00', 337, '{"updated-tables":0,"total-tables":4}'), +(11423, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:00.560454+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.317344+00', 8756, '{"total-fields":30,"updated-fields":0}'), +(11424, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.317466+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.319529+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11425, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.319587+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.325769+00', 6, NULL), +(11426, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.459119+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.617542+00', 158, NULL), +(11427, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.459143+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.56064+00', 101, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11428, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.560877+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.576984+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(11429, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.577077+00', TIMESTAMP WITH TIME ZONE '2023-01-04 12:49:09.617483+00', 40, '{"total-tables":4,"tables-classified":0}'), +(11430, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 13:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:00:00.495+00', 365, NULL), +(11431, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 13:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:00:00.592+00', 463, NULL), +(11432, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:00.228109+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.020926+00', 4792, NULL), +(11433, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:00.231402+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:00.810665+00', 579, '{"timezone-id":"UTC"}'), +(11434, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:00.812802+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:01.185642+00', 372, '{"updated-tables":0,"total-tables":8}'), +(11435, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:01.185996+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:04.588034+00', 3402, '{"total-fields":71,"updated-fields":0}'), +(11436, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:04.588605+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:04.728298+00', 139, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11437, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:04.72869+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.019664+00', 290, NULL), +(11438, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.099631+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.203137+00', 103, NULL), +(11439, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.099654+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.16793+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11440, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.168016+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.182825+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(11441, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.182904+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:19:05.203088+00', 20, '{"total-tables":8,"tables-classified":0}'), +(11442, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:00.162756+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.760306+00', 9597, NULL), +(11443, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:00.16278+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:00.164192+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11444, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:00.164262+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:00.599513+00', 435, '{"updated-tables":0,"total-tables":4}'), +(11445, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:00.599574+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.752128+00', 9152, '{"total-fields":30,"updated-fields":0}'), +(11446, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.752325+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.757981+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11447, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.758118+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.760256+00', 2, NULL), +(11448, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.834568+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.902559+00', 67, NULL), +(11449, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.834591+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.887858+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11450, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.887947+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.893891+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(11451, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.893984+00', TIMESTAMP WITH TIME ZONE '2023-01-04 13:49:09.900899+00', 6, '{"total-tables":4,"tables-classified":0}'), +(11452, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 14:00:00.052+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:00:00.199+00', 147, NULL), +(11453, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 14:00:00.038+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:00:00.292+00', 254, NULL), +(11454, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:00.209638+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.935435+00', 4725, NULL), +(11455, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:00.21291+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:00.7245+00', 511, '{"timezone-id":"UTC"}'), +(11456, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:00.726523+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:01.120332+00', 393, '{"updated-tables":0,"total-tables":8}'), +(11457, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:01.121454+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.051362+00', 2929, '{"total-fields":71,"updated-fields":0}'), +(11458, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.051534+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.204893+00', 153, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11459, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.205257+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.934915+00', 729, NULL), +(11460, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.988164+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:05.067988+00', 79, NULL), +(11461, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:04.988184+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:05.038281+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11462, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:05.038529+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:05.048599+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(11463, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:05.048805+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:19:05.06788+00', 19, '{"total-tables":8,"tables-classified":0}'), +(11464, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:00.163284+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.345809+00', 10182, NULL), +(11465, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:00.163305+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:00.165262+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11466, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:00.165334+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:00.51222+00', 346, '{"updated-tables":0,"total-tables":4}'), +(11467, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:00.512322+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.342211+00', 9829, '{"total-fields":30,"updated-fields":0}'), +(11468, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.34248+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.344077+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11469, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.344131+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.345779+00', 1, NULL), +(11470, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.39735+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.437312+00', 39, NULL), +(11471, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.397368+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.426023+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11472, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.426096+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.430794+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11473, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.430858+00', TIMESTAMP WITH TIME ZONE '2023-01-04 14:49:10.437199+00', 6, '{"total-tables":4,"tables-classified":0}'), +(11474, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 15:00:00.093+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:00:00.345+00', 252, NULL), +(11475, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 15:00:00.075+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:00:00.433+00', 358, NULL), +(11476, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:00.716662+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.570327+00', 3853, NULL), +(11477, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:00.719854+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:01.129192+00', 409, '{"timezone-id":"UTC"}'), +(11478, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:01.131791+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:01.474733+00', 342, '{"updated-tables":0,"total-tables":8}'), +(11479, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:01.475103+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.126074+00', 2650, '{"total-fields":71,"updated-fields":0}'), +(11480, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.126437+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.249275+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11481, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.24936+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.56994+00', 320, NULL), +(11482, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.657714+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.741247+00', 83, NULL), +(11483, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.657745+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.710745+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11484, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.710813+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.723913+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(11485, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.723983+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:19:04.741192+00', 17, '{"total-tables":8,"tables-classified":0}'), +(11486, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:00.201656+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.191201+00', 8989, NULL), +(11487, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:00.201681+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:00.203282+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11488, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:00.203383+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:00.524296+00', 320, '{"updated-tables":0,"total-tables":4}'), +(11489, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:00.5244+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.186416+00', 8662, '{"total-fields":30,"updated-fields":0}'), +(11490, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.186504+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.189195+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11491, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.189263+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.191163+00', 1, NULL), +(11492, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.296807+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.336642+00', 39, NULL), +(11493, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.296829+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.325662+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11494, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.325735+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.330137+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11495, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.330214+00', TIMESTAMP WITH TIME ZONE '2023-01-04 15:49:09.336588+00', 6, '{"total-tables":4,"tables-classified":0}'), +(11496, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 16:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:00:00.344+00', 224, NULL), +(11497, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 16:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:00:00.397+00', 291, NULL), +(11498, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:00.177213+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.057257+00', 3880, NULL), +(11499, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:00.180824+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:00.578751+00', 397, '{"timezone-id":"UTC"}'), +(11500, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:00.580318+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:00.845498+00', 265, '{"updated-tables":0,"total-tables":8}'), +(11501, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:00.845722+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:03.739182+00', 2893, '{"total-fields":71,"updated-fields":0}'), +(11502, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:03.739283+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:03.868701+00', 129, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11503, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:03.869013+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.056754+00', 187, NULL), +(11504, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.136115+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.217491+00', 81, NULL), +(11505, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.136135+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.181906+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11506, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.181968+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.193587+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(11507, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.193661+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:19:04.217445+00', 23, '{"total-tables":8,"tables-classified":0}'), +(11508, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:00.155866+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.433037+00', 8277, NULL), +(11509, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:00.155888+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:00.157462+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11510, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:00.157529+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:00.49836+00', 340, '{"updated-tables":0,"total-tables":4}'), +(11511, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:00.498437+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.426482+00', 7928, '{"total-fields":30,"updated-fields":0}'), +(11512, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.426785+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.42893+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11513, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.429097+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.432819+00', 3, NULL), +(11514, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.519977+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.54462+00', 24, NULL), +(11515, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.519996+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.536953+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11516, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.537021+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.53991+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(11517, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.539979+00', TIMESTAMP WITH TIME ZONE '2023-01-04 16:49:08.544572+00', 4, '{"total-tables":4,"tables-classified":0}'), +(11518, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 17:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:00:00.394+00', 277, NULL), +(11519, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 17:00:00.108+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:00:00.465+00', 357, NULL), +(11520, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:00.172075+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.126383+00', 4954, NULL), +(11521, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:00.178186+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:00.711639+00', 533, '{"timezone-id":"UTC"}'), +(11522, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:00.714117+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:00.999684+00', 285, '{"updated-tables":0,"total-tables":8}'), +(11523, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:00.999978+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:04.147563+00', 3147, '{"total-fields":71,"updated-fields":0}'), +(11524, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:04.151424+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:04.309131+00', 157, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11525, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:04.309426+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.126023+00', 816, NULL), +(11526, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.222311+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.32326+00', 100, NULL), +(11527, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.222335+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.281067+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11528, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.281277+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.293948+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(11529, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.294014+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:19:05.323136+00', 29, '{"total-tables":8,"tables-classified":0}'), +(11530, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:00.174111+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.106413+00', 11932, NULL), +(11531, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:00.174135+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:00.177235+00', 3, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11532, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:00.177383+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:00.564669+00', 387, '{"updated-tables":0,"total-tables":4}'), +(11533, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:00.564792+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.101653+00', 11536, '{"total-fields":30,"updated-fields":0}'), +(11534, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.101808+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.103538+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11535, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.103626+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.106369+00', 2, NULL), +(11536, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.156022+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.246586+00', 90, NULL), +(11537, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.156044+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.234857+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11538, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.234952+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.239062+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11539, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.239139+00', TIMESTAMP WITH TIME ZONE '2023-01-04 17:49:12.246408+00', 7, '{"total-tables":4,"tables-classified":0}'), +(11540, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 18:00:00.174+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:00:00.619+00', 445, NULL), +(11541, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 18:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:00:00.733+00', 561, NULL), +(11542, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:00.219621+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:06.885132+00', 6665, NULL), +(11543, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:00.223233+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:00.683756+00', 460, '{"timezone-id":"UTC"}'), +(11544, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:00.686182+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:01.143897+00', 457, '{"updated-tables":0,"total-tables":8}'), +(11545, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:01.144183+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:05.979817+00', 4835, '{"total-fields":71,"updated-fields":0}'), +(11546, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:05.980211+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:06.134194+00', 153, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11547, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:06.134513+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:06.884787+00', 750, NULL), +(11548, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.010125+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.380163+00', 370, NULL), +(11549, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.010153+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.286846+00', 276, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11550, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.287104+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.33583+00', 48, '{"fields-classified":0,"fields-failed":0}'), +(11551, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.335999+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:19:07.380068+00', 44, '{"total-tables":8,"tables-classified":0}'), +(11552, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:01.063715+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.555838+00', 8492, NULL), +(11553, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:01.063738+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:01.065992+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11554, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:01.066073+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:01.842888+00', 776, '{"updated-tables":0,"total-tables":4}'), +(11555, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:01.84301+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.544012+00', 7701, '{"total-fields":30,"updated-fields":0}'), +(11556, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.544138+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.546128+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11557, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.546179+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.555769+00', 9, NULL), +(11558, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.625201+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.657666+00', 32, NULL), +(11559, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.625223+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.646665+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11560, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.646749+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.651415+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11561, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.65157+00', TIMESTAMP WITH TIME ZONE '2023-01-04 18:49:09.657625+00', 6, '{"total-tables":4,"tables-classified":0}'), +(11562, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 19:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:00:00.66+00', 501, NULL), +(11563, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 19:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:00:00.782+00', 627, NULL), +(11564, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:00.228211+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.448066+00', 6219, NULL), +(11565, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:00.232205+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:00.946708+00', 714, '{"timezone-id":"UTC"}'), +(11566, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:00.951467+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:01.484065+00', 532, '{"updated-tables":0,"total-tables":8}'), +(11567, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:01.484526+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:05.988163+00', 4503, '{"total-fields":71,"updated-fields":0}'), +(11568, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:05.988282+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.154207+00', 165, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11569, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.154326+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.447716+00', 293, NULL), +(11570, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.561727+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.665926+00', 104, NULL), +(11571, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.561754+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.629595+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11572, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.629671+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.642637+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(11573, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.642704+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:19:06.665877+00', 23, '{"total-tables":8,"tables-classified":0}'), +(11574, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:00.221422+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.621967+00', 10400, NULL), +(11575, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:00.221444+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:00.223297+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11576, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:00.2234+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:00.670919+00', 447, '{"updated-tables":0,"total-tables":4}'), +(11577, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:00.671023+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.616674+00', 9945, '{"total-fields":30,"updated-fields":0}'), +(11578, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.616763+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.619729+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11579, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.619804+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.62192+00', 2, NULL), +(11580, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.777116+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.827428+00', 50, NULL), +(11581, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.777139+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.813674+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11582, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.813831+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.819097+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(11583, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.819179+00', TIMESTAMP WITH TIME ZONE '2023-01-04 19:49:10.827371+00', 8, '{"total-tables":4,"tables-classified":0}'), +(11584, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 20:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:00:00.654+00', 491, NULL), +(11585, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 20:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:00:00.893+00', 741, NULL), +(11586, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:00.230157+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.258675+00', 5028, NULL), +(11587, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:00.234054+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:00.552205+00', 318, '{"timezone-id":"UTC"}'), +(11588, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:00.553835+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:00.844092+00', 290, '{"updated-tables":0,"total-tables":8}'), +(11589, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:00.844518+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:04.79076+00', 3946, '{"total-fields":71,"updated-fields":0}'), +(11590, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:04.791028+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:04.915021+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11591, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:04.915316+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.25816+00', 342, NULL), +(11592, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.321057+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.461206+00', 140, NULL), +(11593, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.321079+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.43039+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11594, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.430511+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.44131+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(11595, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.441396+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:19:05.461083+00', 19, '{"total-tables":8,"tables-classified":0}'), +(11596, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:00.172569+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.118318+00', 9945, NULL), +(11597, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:00.172598+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:00.174022+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11598, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:00.174094+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:00.53712+00', 363, '{"updated-tables":0,"total-tables":4}'), +(11599, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:00.537191+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.111763+00', 9574, '{"total-fields":30,"updated-fields":0}'), +(11600, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.111849+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.115311+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11601, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.115381+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.118267+00', 2, NULL), +(11602, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.283011+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.353409+00', 70, NULL), +(11603, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.283034+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.341119+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11604, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.341189+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.344953+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11605, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.345013+00', TIMESTAMP WITH TIME ZONE '2023-01-04 20:49:10.353362+00', 8, '{"total-tables":4,"tables-classified":0}'), +(11606, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:00.379+00', 176, NULL), +(11607, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:00.182+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:00.379+00', 197, NULL), +(11608, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:00.566615+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:28.876492+00', 28309, NULL), +(11609, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:00.568386+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:07.380606+00', 6812, '{"deleted":0}'), +(11610, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:07.411079+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:00:28.866688+00', 21455, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(11611, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:00.112562+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.447974+00', 1335, NULL), +(11612, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:00.114613+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:00.337485+00', 222, '{"timezone-id":"UTC"}'), +(11613, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:00.337591+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:00.71227+00', 374, '{"updated-tables":0,"total-tables":8}'), +(11614, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:00.712371+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.134543+00', 422, '{"total-fields":71,"updated-fields":0}'), +(11615, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.134615+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.189902+00', 55, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11616, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.189968+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.447941+00', 257, NULL), +(11617, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.936666+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:02.203628+00', 266, NULL), +(11618, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:01.936691+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:02.080638+00', 143, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11619, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:02.080751+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:02.150399+00', 69, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11620, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:02.150498+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:19:02.203569+00', 53, '{"total-tables":8,"tables-classified":0}'), +(11621, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:00.485384+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:13.986258+00', 13500, NULL), +(11622, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:00.487601+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:00.509131+00', 21, '{"timezone-id":null}'), +(11623, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:00.51402+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:00.810836+00', 296, '{"updated-tables":0,"total-tables":4}'), +(11624, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:00.811158+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:13.97948+00', 13168, '{"total-fields":30,"updated-fields":0}'), +(11625, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:13.979626+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:13.98521+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11626, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:13.985312+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:13.986213+00', 0, NULL), +(11627, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.055155+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.079033+00', 23, NULL), +(11628, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.055175+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.069077+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11629, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.069201+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.073352+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(11630, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.073458+00', TIMESTAMP WITH TIME ZONE '2023-01-04 21:49:14.078988+00', 5, '{"total-tables":4,"tables-classified":0}'), +(11631, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 22:00:00.093+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:00:00.168+00', 75, NULL), +(11632, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 22:00:00.084+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:00:00.191+00', 107, NULL), +(11633, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:00.169265+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:02.966778+00', 2797, NULL), +(11634, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:00.169834+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:00.483413+00', 313, '{"timezone-id":"UTC"}'), +(11635, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:00.483995+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:00.7316+00', 247, '{"updated-tables":0,"total-tables":8}'), +(11636, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:00.73171+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:02.720747+00', 1989, '{"total-fields":71,"updated-fields":0}'), +(11637, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:02.72084+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:02.798286+00', 77, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11638, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:02.798844+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:02.966745+00', 167, NULL), +(11639, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.021992+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.090091+00', 68, NULL), +(11640, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.022016+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.066401+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11641, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.066576+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.078007+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11642, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.078097+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:19:03.090015+00', 11, '{"total-tables":8,"tables-classified":0}'), +(11643, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:00.228782+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.337435+00', 11108, NULL), +(11644, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:00.228808+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:00.231607+00', 2, '{"timezone-id":null}'), +(11645, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:00.231795+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:00.716052+00', 484, '{"updated-tables":0,"total-tables":4}'), +(11646, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:00.716149+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.329981+00', 10613, '{"total-fields":30,"updated-fields":0}'), +(11647, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.330084+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.335034+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11648, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.335115+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.337387+00', 2, NULL), +(11649, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.396112+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.428654+00', 32, NULL), +(11650, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.396132+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.419434+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11651, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.419519+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.423058+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11652, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.423137+00', TIMESTAMP WITH TIME ZONE '2023-01-04 22:49:11.428608+00', 5, '{"total-tables":4,"tables-classified":0}'), +(11653, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 23:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:00:00.838+00', 635, NULL), +(11654, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-04 23:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:00:01.042+00', 839, NULL), +(11655, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:00.336753+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.363655+00', 3026, NULL), +(11656, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:00.339614+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:00.721746+00', 382, '{"timezone-id":"UTC"}'), +(11657, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:00.723315+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:00.983161+00', 259, '{"updated-tables":0,"total-tables":8}'), +(11658, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:00.98325+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.035148+00', 2051, '{"total-fields":71,"updated-fields":0}'), +(11659, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.035421+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.143725+00', 108, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11660, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.143806+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.363237+00', 219, NULL), +(11661, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.40244+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.452654+00', 50, NULL), +(11662, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.402462+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.434024+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11663, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.434084+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.443098+00', 9, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11664, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.443161+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:19:03.452517+00', 9, '{"total-tables":8,"tables-classified":0}'), +(11665, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:00.189101+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.514164+00', 10325, NULL), +(11666, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:00.189125+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:00.193539+00', 4, '{"timezone-id":null}'), +(11667, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:00.19366+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:00.562967+00', 369, '{"updated-tables":0,"total-tables":4}'), +(11668, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:00.563058+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.507074+00', 9944, '{"total-fields":30,"updated-fields":0}'), +(11669, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.507135+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.512125+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11670, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.512307+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.514137+00', 1, NULL), +(11671, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.557972+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.587473+00', 29, NULL), +(11672, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.557997+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.576603+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11673, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.576712+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.582012+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(11674, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.582128+00', TIMESTAMP WITH TIME ZONE '2023-01-04 23:49:10.587399+00', 5, '{"total-tables":4,"tables-classified":0}'), +(11675, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 00:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:00:00.769+00', 573, NULL), +(11676, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 00:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:00:00.96+00', 787, NULL), +(11677, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:01.713471+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:09.816581+00', 8103, NULL), +(11678, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:01.718738+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:02.543716+00', 824, '{"timezone-id":"UTC"}'), +(11679, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:02.548182+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:03.853235+00', 1305, '{"updated-tables":0,"total-tables":8}'), +(11680, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:03.85334+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:08.611471+00', 4758, '{"total-fields":71,"updated-fields":0}'), +(11681, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:08.611991+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:08.967655+00', 355, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11682, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:08.967759+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:09.81612+00', 848, NULL), +(11683, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:10.139165+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:12.220267+00', 2081, NULL), +(11684, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:10.139192+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:11.74735+00', 1608, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11685, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:11.747853+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:11.979092+00', 231, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11686, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:11.979464+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:19:12.220208+00', 240, '{"total-tables":8,"tables-classified":0}'), +(11687, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:00.493421+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.077896+00', 8584, NULL), +(11688, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:00.494095+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:00.501224+00', 7, '{"timezone-id":null}'), +(11689, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:00.501768+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:00.890485+00', 388, '{"updated-tables":0,"total-tables":4}'), +(11690, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:00.89085+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.069893+00', 8179, '{"total-fields":30,"updated-fields":0}'), +(11691, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.069963+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.075129+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11692, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.075372+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.077729+00', 2, NULL), +(11693, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.157223+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.194874+00', 37, NULL), +(11694, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.157244+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.181715+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11695, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.181889+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.187671+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(11696, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.187774+00', TIMESTAMP WITH TIME ZONE '2023-01-05 00:49:09.194834+00', 7, '{"total-tables":4,"tables-classified":0}'), +(11697, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 01:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:00:00.3+00', 185, NULL), +(11698, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 01:00:00.113+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:00:00.378+00', 265, NULL), +(11699, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:00.152751+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.490934+00', 4338, NULL), +(11700, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:00.155456+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:01.209773+00', 1054, '{"timezone-id":"UTC"}'), +(11701, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:01.211346+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:01.417008+00', 205, '{"updated-tables":0,"total-tables":8}'), +(11702, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:01.417315+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.164974+00', 2747, '{"total-fields":71,"updated-fields":0}'), +(11703, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.165064+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.300129+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11704, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.300362+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.490668+00', 190, NULL), +(11705, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.573888+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.672636+00', 98, NULL), +(11706, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.573915+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.626706+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11707, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.626758+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.635063+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11708, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.63512+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:19:04.672588+00', 37, '{"total-tables":8,"tables-classified":0}'), +(11709, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:00.148497+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.90807+00', 11759, NULL), +(11710, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:00.148518+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:00.149888+00', 1, '{"timezone-id":null}'), +(11711, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:00.149946+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:00.448553+00', 298, '{"updated-tables":0,"total-tables":4}'), +(11712, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:00.448613+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.901909+00', 11453, '{"total-fields":30,"updated-fields":0}'), +(11713, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.902197+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.905334+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11714, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.90568+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.908036+00', 2, NULL), +(11715, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.97796+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:12.016644+00', 38, NULL), +(11716, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:11.977979+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:12.002236+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11717, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:12.002526+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:12.007907+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(11718, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:12.008082+00', TIMESTAMP WITH TIME ZONE '2023-01-05 01:49:12.016146+00', 8, '{"total-tables":4,"tables-classified":0}'), +(11719, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:00.186+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:00.699+00', 513, NULL), +(11720, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:00.197+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:00.644+00', 447, NULL), +(11721, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:00.843635+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:09.130011+00', 8286, NULL), +(11722, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:00.846187+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:01.516941+00', 670, '{"deleted":0}'), +(11723, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:01.519733+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:00:09.129668+00', 7609, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(11724, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.067851+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.242817+00', 1174, NULL), +(11725, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.067872+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.351958+00', 284, '{"timezone-id":"UTC"}'), +(11726, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.352499+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.546661+00', 194, '{"updated-tables":0,"total-tables":8}'), +(11727, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.546765+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.918419+00', 371, '{"total-fields":71,"updated-fields":0}'), +(11728, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:00.91847+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.096905+00', 178, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11729, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.096969+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.242792+00', 145, NULL), +(11730, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.271555+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.35864+00', 87, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11731, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.271614+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.32825+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11732, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.328323+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.341864+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(11733, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.341981+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:19:01.358596+00', 16, '{"total-tables":8,"tables-classified":0}'), +(11734, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:00.020547+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.061233+00', 8040, NULL), +(11735, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:00.020573+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:00.024616+00', 4, '{"timezone-id":null}'), +(11736, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:00.024702+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:00.162375+00', 137, '{"updated-tables":0,"total-tables":4}'), +(11737, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:00.162447+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.057652+00', 7895, '{"total-fields":30,"updated-fields":0}'), +(11738, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.057748+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.05972+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11739, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.059803+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.061209+00', 1, NULL), +(11740, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.111516+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.144104+00', 32, NULL), +(11741, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.111533+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.131415+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11742, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.131553+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.139958+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(11743, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.140015+00', TIMESTAMP WITH TIME ZONE '2023-01-05 02:49:08.144069+00', 4, '{"total-tables":4,"tables-classified":0}'), +(11744, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 03:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:00:00.298+00', 192, NULL), +(11745, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 03:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:00:00.359+00', 262, NULL), +(11746, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:00.215314+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.491781+00', 4276, NULL), +(11747, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:00.2193+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:00.646136+00', 426, '{"timezone-id":"UTC"}'), +(11748, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:00.648498+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:00.968797+00', 320, '{"updated-tables":0,"total-tables":8}'), +(11749, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:00.968887+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:03.615964+00', 2647, '{"total-fields":71,"updated-fields":0}'), +(11750, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:03.61618+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:03.760806+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11751, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:03.761098+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.491255+00', 730, NULL), +(11752, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.542316+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.631961+00', 89, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11753, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.542338+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.598058+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11754, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.598168+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.610577+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(11755, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.610703+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:19:04.631914+00', 21, '{"total-tables":8,"tables-classified":0}'), +(11756, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:00.147491+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.82013+00', 9672, NULL), +(11757, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:00.147513+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:00.149101+00', 1, '{"timezone-id":null}'), +(11758, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:00.149167+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:00.44884+00', 299, '{"updated-tables":0,"total-tables":4}'), +(11759, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:00.448954+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.816155+00', 9367, '{"total-fields":30,"updated-fields":0}'), +(11760, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.816216+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.817858+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11761, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.817921+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.820083+00', 2, NULL), +(11762, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.86692+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.91286+00', 45, NULL), +(11763, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.866937+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.888943+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11764, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.889007+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.892201+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11765, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.892268+00', TIMESTAMP WITH TIME ZONE '2023-01-05 03:49:09.912786+00', 20, '{"total-tables":4,"tables-classified":0}'), +(11766, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 04:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:00:00.531+00', 395, NULL), +(11767, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 04:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:00:00.633+00', 497, NULL), +(11768, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:00.37027+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:07.947685+00', 7577, NULL), +(11769, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:00.373637+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:00.857185+00', 483, '{"timezone-id":"UTC"}'), +(11770, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:00.860209+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:01.240314+00', 380, '{"updated-tables":0,"total-tables":8}'), +(11771, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:01.241048+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:04.584157+00', 3343, '{"total-fields":71,"updated-fields":0}'), +(11772, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:04.584607+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:04.717105+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11773, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:04.71721+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:07.947297+00', 3230, NULL), +(11774, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:07.996255+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:08.069092+00', 72, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11775, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:07.996272+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:08.044748+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11776, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:08.044823+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:08.053398+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(11777, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:08.053457+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:19:08.069046+00', 15, '{"total-tables":8,"tables-classified":0}'), +(11778, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:00.200235+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.576252+00', 9376, NULL), +(11779, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:00.200263+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:00.201453+00', 1, '{"timezone-id":null}'), +(11780, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:00.201552+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:00.586457+00', 384, '{"updated-tables":0,"total-tables":4}'), +(11781, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:00.586544+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.571042+00', 8984, '{"total-fields":30,"updated-fields":0}'), +(11782, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.571148+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.572896+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11783, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.572973+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.576194+00', 3, NULL), +(11784, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.731466+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.798271+00', 66, NULL), +(11785, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.731486+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.773618+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11786, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.773701+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.782512+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(11787, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.782627+00', TIMESTAMP WITH TIME ZONE '2023-01-05 04:49:09.798222+00', 15, '{"total-tables":4,"tables-classified":0}'), +(11788, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 05:00:00.046+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:00:00.104+00', 58, NULL), +(11789, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 05:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:00:00.296+00', 164, NULL), +(11790, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:00.178685+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.840931+00', 5662, NULL), +(11791, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:00.179976+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:00.581116+00', 401, '{"timezone-id":"UTC"}'), +(11792, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:00.581924+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:00.926969+00', 345, '{"updated-tables":0,"total-tables":8}'), +(11793, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:00.92727+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.612811+00', 4685, '{"total-fields":71,"updated-fields":0}'), +(11794, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.613134+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.725563+00', 112, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11795, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.725658+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.84013+00', 114, NULL), +(11796, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.890502+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:06.022804+00', 132, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11797, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.890524+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.978862+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11798, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.978961+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.993413+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(11799, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:05.993475+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:19:06.022764+00', 29, '{"total-tables":8,"tables-classified":0}'), +(11800, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:00.16957+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.829592+00', 10660, NULL), +(11801, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:00.169591+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:00.171194+00', 1, '{"timezone-id":null}'), +(11802, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:00.171261+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:00.556047+00', 384, '{"updated-tables":0,"total-tables":4}'), +(11803, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:00.5562+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.822166+00', 10265, '{"total-fields":30,"updated-fields":0}'), +(11804, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.822245+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.8275+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11805, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.827557+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.829558+00', 2, NULL), +(11806, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.952542+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.998517+00', 45, NULL), +(11807, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.952588+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.990799+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11808, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.990898+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.993916+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11809, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.993968+00', TIMESTAMP WITH TIME ZONE '2023-01-05 05:49:10.998458+00', 4, '{"total-tables":4,"tables-classified":0}'), +(11810, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 06:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:00:00.593+00', 421, NULL), +(11811, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 06:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:00:00.694+00', 522, NULL), +(11812, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:00.229277+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.128882+00', 6899, NULL), +(11813, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:00.234319+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:03.42999+00', 3195, '{"timezone-id":"UTC"}'), +(11814, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:03.432834+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:03.817745+00', 384, '{"updated-tables":0,"total-tables":8}'), +(11815, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:03.818153+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:06.973237+00', 3155, '{"total-fields":71,"updated-fields":0}'), +(11816, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:06.973315+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.019536+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11817, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.019594+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.128458+00', 108, NULL), +(11818, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.200623+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.303151+00', 102, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11819, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.200651+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.252926+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11820, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.253+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.266359+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(11821, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.266456+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:19:07.303055+00', 36, '{"total-tables":8,"tables-classified":0}'), +(11822, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:00.204671+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.632028+00', 9427, NULL), +(11823, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:00.204701+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:00.208046+00', 3, '{"timezone-id":null}'), +(11824, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:00.208138+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:00.474145+00', 266, '{"updated-tables":0,"total-tables":4}'), +(11825, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:00.474266+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.628482+00', 9154, '{"total-fields":30,"updated-fields":0}'), +(11826, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.628619+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.630436+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11827, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.630491+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.631998+00', 1, NULL), +(11828, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.67806+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.710789+00', 32, NULL), +(11829, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.678081+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.702707+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11830, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.702793+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.705647+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(11831, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.705709+00', TIMESTAMP WITH TIME ZONE '2023-01-05 06:49:09.710748+00', 5, '{"total-tables":4,"tables-classified":0}'), +(11832, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 07:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:00:00.436+00', 319, NULL), +(11833, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 07:00:00.103+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:00:00.537+00', 434, NULL), +(11834, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:00.260729+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:05.910418+00', 5649, NULL), +(11835, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:00.268209+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:00.75322+00', 485, '{"timezone-id":"UTC"}'), +(11836, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:00.755662+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:01.136861+00', 381, '{"updated-tables":0,"total-tables":8}'), +(11837, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:01.136963+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:04.750383+00', 3613, '{"total-fields":71,"updated-fields":0}'), +(11838, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:04.750484+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:04.887643+00', 137, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11839, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:04.887942+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:05.910366+00', 1022, NULL), +(11840, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.292388+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.40633+00', 113, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11841, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.292409+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.350916+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11842, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.350985+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.378071+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(11843, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.378137+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:19:06.406254+00', 28, '{"total-tables":8,"tables-classified":0}'), +(11844, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:00.220531+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.080154+00', 9859, NULL), +(11845, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:00.220558+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:00.222706+00', 2, '{"timezone-id":null}'), +(11846, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:00.222785+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:00.638205+00', 415, '{"updated-tables":0,"total-tables":4}'), +(11847, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:00.638299+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.075361+00', 9437, '{"total-fields":30,"updated-fields":0}'), +(11848, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.075457+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.077304+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11849, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.077378+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.080063+00', 2, NULL), +(11850, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.291536+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.329653+00', 38, NULL), +(11851, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.291567+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.314654+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11852, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.314722+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.317853+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11853, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.31799+00', TIMESTAMP WITH TIME ZONE '2023-01-05 07:49:10.329566+00', 11, '{"total-tables":4,"tables-classified":0}'), +(11854, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 08:00:00.278+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:00:01.253+00', 975, NULL), +(11855, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 08:00:00.255+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:00:01.469+00', 1214, NULL), +(11856, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:00.241099+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.693563+00', 5452, NULL), +(11857, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:00.244949+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:00.783385+00', 538, '{"timezone-id":"UTC"}'), +(11858, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:00.785287+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:01.15133+00', 366, '{"updated-tables":0,"total-tables":8}'), +(11859, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:01.151784+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.282513+00', 4130, '{"total-fields":71,"updated-fields":0}'), +(11860, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.282863+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.435733+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11861, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.435825+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.693148+00', 257, NULL), +(11862, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.764954+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.903831+00', 138, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11863, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.764989+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.833921+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11864, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.834238+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.874647+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(11865, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.874795+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:19:05.90378+00', 28, '{"total-tables":8,"tables-classified":0}'), +(11866, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:00.19109+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.453102+00', 9262, NULL), +(11867, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:00.191114+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:00.193224+00', 2, '{"timezone-id":null}'), +(11868, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:00.193326+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:00.549244+00', 355, '{"updated-tables":0,"total-tables":4}'), +(11869, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:00.549314+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.449078+00', 8899, '{"total-fields":30,"updated-fields":0}'), +(11870, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.44917+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.450746+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11871, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.450794+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.453065+00', 2, NULL), +(11872, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.52128+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.549915+00', 28, NULL), +(11873, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.521305+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.542908+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11874, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.543111+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.545857+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(11875, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.545971+00', TIMESTAMP WITH TIME ZONE '2023-01-05 08:49:09.549815+00', 3, '{"total-tables":4,"tables-classified":0}'), +(11876, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 09:00:00.867+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:00:06.762+00', 5895, NULL), +(11877, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 09:00:00.867+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:00:07.03+00', 6163, NULL), +(11878, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:00.384365+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:09.87687+00', 9492, NULL), +(11879, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:00.391191+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:01.189919+00', 798, '{"timezone-id":"UTC"}'), +(11880, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:01.194064+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:01.904365+00', 710, '{"updated-tables":0,"total-tables":8}'), +(11881, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:01.905274+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:08.523902+00', 6618, '{"total-fields":71,"updated-fields":0}'), +(11882, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:08.524386+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:08.739676+00', 215, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11883, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:08.74009+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:09.87631+00', 1136, NULL), +(11884, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:09.972349+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:10.103844+00', 131, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11885, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:09.972374+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:10.058513+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11886, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:10.058587+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:10.077354+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(11887, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:10.077435+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:19:10.103677+00', 26, '{"total-tables":8,"tables-classified":0}'), +(11888, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:00.395228+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.266767+00', 17871, NULL), +(11889, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:00.395253+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:00.398761+00', 3, '{"timezone-id":null}'), +(11890, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:00.398848+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:01.353869+00', 955, '{"updated-tables":0,"total-tables":4}'), +(11891, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:01.353961+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.261917+00', 16907, '{"total-fields":30,"updated-fields":0}'), +(11892, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.262036+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.263598+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11893, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.263659+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.266716+00', 3, NULL), +(11894, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.329626+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.371226+00', 41, NULL), +(11895, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.329648+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.362637+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11896, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.362733+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.365824+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11897, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.365888+00', TIMESTAMP WITH TIME ZONE '2023-01-05 09:49:18.371181+00', 5, '{"total-tables":4,"tables-classified":0}'), +(11898, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 10:00:00.322+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:00:01.231+00', 909, NULL), +(11899, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 10:00:00.322+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:00:01.501+00', 1179, NULL), +(11900, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:00.628704+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.168928+00', 6540, NULL), +(11901, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:00.631416+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:01.785063+00', 1153, '{"timezone-id":"UTC"}'), +(11902, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:01.799737+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:02.700593+00', 900, '{"updated-tables":0,"total-tables":8}'), +(11903, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:02.704594+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:06.158268+00', 3453, '{"total-fields":71,"updated-fields":0}'), +(11904, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:06.15843+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:06.353075+00', 194, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11905, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:06.353167+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.167179+00', 814, NULL), +(11906, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.412009+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.618838+00', 206, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11907, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.412281+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.585955+00', 173, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11908, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.586045+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.609158+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(11909, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.609235+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:19:07.61878+00', 9, '{"total-tables":8,"tables-classified":0}'), +(11910, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:00.291206+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.521387+00', 11230, NULL), +(11911, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:00.29169+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:00.295679+00', 3, '{"timezone-id":null}'), +(11912, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:00.29578+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:00.80218+00', 506, '{"updated-tables":0,"total-tables":4}'), +(11913, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:00.802288+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.514466+00', 10712, '{"total-fields":30,"updated-fields":0}'), +(11914, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.514596+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.51848+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11915, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.518553+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.521335+00', 2, NULL), +(11916, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.603435+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.643964+00', 40, NULL), +(11917, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.603456+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.624921+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11918, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.625001+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.636104+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(11919, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.636245+00', TIMESTAMP WITH TIME ZONE '2023-01-05 10:49:11.643908+00', 7, '{"total-tables":4,"tables-classified":0}'), +(11920, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 11:00:00.806+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:00:01.108+00', 302, NULL), +(11921, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 11:00:00.595+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:00:01.253+00', 658, NULL), +(11922, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:00.450741+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.732887+00', 9282, NULL), +(11923, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:00.455677+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:01.562178+00', 1106, '{"timezone-id":"UTC"}'), +(11924, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:01.565394+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:02.368535+00', 803, '{"updated-tables":0,"total-tables":8}'), +(11925, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:02.369903+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:07.75074+00', 5380, '{"total-fields":71,"updated-fields":0}'), +(11926, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:07.750856+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:07.973142+00', 222, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11927, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:07.97356+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.732087+00', 1758, NULL), +(11928, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.843094+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:10.099503+00', 256, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11929, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.843119+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.922763+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11930, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.923007+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.967721+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(11931, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:09.967799+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:19:10.099448+00', 131, '{"total-tables":8,"tables-classified":0}'), +(11932, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:00.532759+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.024471+00', 20491, NULL), +(11933, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:00.532785+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:00.534992+00', 2, '{"timezone-id":null}'), +(11934, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:00.535078+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:01.999095+00', 1464, '{"updated-tables":0,"total-tables":4}'), +(11935, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:01.999172+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.016895+00', 19017, '{"total-fields":30,"updated-fields":0}'), +(11936, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.017269+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.020123+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11937, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.020473+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.024182+00', 3, NULL), +(11938, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.100739+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.141779+00', 41, NULL), +(11939, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.100761+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.133565+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11940, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.133648+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.136788+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11941, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.136858+00', TIMESTAMP WITH TIME ZONE '2023-01-05 11:49:21.141717+00', 4, '{"total-tables":4,"tables-classified":0}'), +(11942, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 12:00:00.325+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:00:01.403+00', 1078, NULL), +(11943, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 12:00:00.347+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:00:01.4+00', 1053, NULL), +(11944, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:00.805269+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.693571+00', 13888, NULL), +(11945, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:00.810937+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:02.788145+00', 1977, '{"timezone-id":"UTC"}'), +(11946, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:02.795667+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:04.032779+00', 1237, '{"updated-tables":0,"total-tables":8}'), +(11947, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:04.033305+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.215529+00', 10182, '{"total-fields":71,"updated-fields":0}'), +(11948, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.215657+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.346021+00', 130, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11949, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.346116+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.687519+00', 341, NULL), +(11950, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.953132+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:15.356746+00', 403, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11951, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:14.953155+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:15.209908+00', 256, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11952, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:15.210016+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:15.253437+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(11953, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:15.25356+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:19:15.35664+00', 103, '{"total-tables":8,"tables-classified":0}'), +(11954, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:00.40301+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.278343+00', 20875, NULL), +(11955, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:00.403036+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:00.405964+00', 2, '{"timezone-id":null}'), +(11956, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:00.40628+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:01.089422+00', 683, '{"updated-tables":0,"total-tables":4}'), +(11957, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:01.089518+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.268907+00', 20179, '{"total-fields":30,"updated-fields":0}'), +(11958, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.26904+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.273336+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11959, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.273626+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.278275+00', 4, NULL), +(11960, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.370503+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.412977+00', 42, NULL), +(11961, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.370529+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.396433+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11962, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.396516+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.400432+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(11963, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.400627+00', TIMESTAMP WITH TIME ZONE '2023-01-05 12:49:21.412901+00', 12, '{"total-tables":4,"tables-classified":0}'), +(11964, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 13:00:00.342+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:00:01.594+00', 1252, NULL), +(11965, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 13:00:00.336+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:00:02.034+00', 1698, NULL), +(11966, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:00.861899+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:10.392168+00', 9530, NULL), +(11967, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:00.867195+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:01.885269+00', 1018, '{"timezone-id":"UTC"}'), +(11968, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:01.914387+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:03.024205+00', 1109, '{"updated-tables":0,"total-tables":8}'), +(11969, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:03.024814+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:09.020114+00', 5995, '{"total-fields":71,"updated-fields":0}'), +(11970, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:09.020813+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:09.271052+00', 250, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11971, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:09.271516+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:10.390568+00', 1119, NULL), +(11972, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:10.796864+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:11.159466+00', 362, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11973, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:10.79689+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:11.085862+00', 288, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11974, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:11.085943+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:11.125976+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(11975, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:11.126057+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:19:11.159411+00', 33, '{"total-tables":8,"tables-classified":0}'), +(11976, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:00.502808+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.488547+00', 19985, NULL), +(11977, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:00.502837+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:00.507992+00', 5, '{"timezone-id":null}'), +(11978, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:00.508117+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:02.037696+00', 1529, '{"updated-tables":0,"total-tables":4}'), +(11979, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:02.037768+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.480545+00', 18442, '{"total-fields":30,"updated-fields":0}'), +(11980, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.480659+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.48452+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(11981, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.484683+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.488399+00', 3, NULL), +(11982, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.55592+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.604352+00', 48, NULL), +(11983, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.55594+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.588914+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11984, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.589054+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.595517+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(11985, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.595645+00', TIMESTAMP WITH TIME ZONE '2023-01-05 13:49:20.604182+00', 8, '{"total-tables":4,"tables-classified":0}'), +(11986, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 14:00:00.75+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:00:03.265+00', 2515, NULL), +(11987, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 14:00:00.75+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:00:03.265+00', 2515, NULL), +(11988, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:00.411647+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.346896+00', 8935, NULL), +(11989, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:00.418503+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:02.372988+00', 1954, '{"timezone-id":"UTC"}'), +(11990, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:02.411192+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:03.818073+00', 1406, '{"updated-tables":0,"total-tables":8}'), +(11991, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:03.818201+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:08.874677+00', 5056, '{"total-fields":71,"updated-fields":0}'), +(11992, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:08.874916+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.05964+00', 184, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(11993, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.060134+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.346229+00', 286, NULL), +(11994, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.531669+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.833201+00', 301, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(11995, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.531691+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.709058+00', 177, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(11996, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.70915+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.749962+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(11997, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.750044+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:19:09.833119+00', 83, '{"total-tables":8,"tables-classified":0}'), +(11998, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:00.272059+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.650299+00', 11378, NULL), +(11999, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:00.272082+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:00.274751+00', 2, '{"timezone-id":null}'), +(12000, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:00.274877+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:00.752675+00', 477, '{"updated-tables":0,"total-tables":4}'), +(12001, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:00.75286+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.644463+00', 10891, '{"total-fields":30,"updated-fields":0}'), +(12002, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.644536+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.646004+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12003, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.646078+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.650236+00', 4, NULL), +(12004, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.722512+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.764832+00', 42, NULL), +(12005, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.72253+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.75471+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12006, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.754801+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.758704+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12007, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.758823+00', TIMESTAMP WITH TIME ZONE '2023-01-05 14:49:11.764787+00', 5, '{"total-tables":4,"tables-classified":0}'), +(12008, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 15:00:00.232+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:00:01.198+00', 966, NULL), +(12009, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 15:00:00.219+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:00:01.451+00', 1232, NULL), +(12010, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:01.534235+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:26.297488+00', 24763, NULL), +(12011, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:01.546846+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:04.843169+00', 3296, '{"timezone-id":"UTC"}'), +(12012, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:04.862351+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:05.912893+00', 1050, '{"updated-tables":0,"total-tables":8}'), +(12013, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:05.913373+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:25.603052+00', 19689, '{"total-fields":71,"updated-fields":0}'), +(12014, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:25.60318+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:25.773729+00', 170, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12015, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:25.773795+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:26.294391+00', 520, NULL), +(12016, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:26.812606+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:28.021227+00', 1208, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12017, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:26.812628+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:27.774284+00', 961, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12018, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:27.774388+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:27.941769+00', 167, '{"fields-classified":0,"fields-failed":0}'), +(12019, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:27.943105+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:19:28.019184+00', 76, '{"total-tables":8,"tables-classified":0}'), +(12020, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:00.187529+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.591016+00', 10403, NULL), +(12021, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:00.187555+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:00.189237+00', 1, '{"timezone-id":null}'), +(12022, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:00.189311+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:00.670239+00', 480, '{"updated-tables":0,"total-tables":4}'), +(12023, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:00.670316+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.583937+00', 9913, '{"total-fields":30,"updated-fields":0}'), +(12024, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.584142+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.58882+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12025, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.589042+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.590936+00', 1, NULL), +(12026, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.771207+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.862172+00', 90, NULL), +(12027, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.771231+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.835571+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12028, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.835767+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.847548+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(12029, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.847652+00', TIMESTAMP WITH TIME ZONE '2023-01-05 15:49:10.861956+00', 14, '{"total-tables":4,"tables-classified":0}'), +(12030, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 16:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:00:00.914+00', 700, NULL), +(12031, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 16:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:00:01.395+00', 1192, NULL), +(12032, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:00.375629+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.094003+00', 4718, NULL), +(12033, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:00.378929+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:00.910985+00', 532, '{"timezone-id":"UTC"}'), +(12034, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:00.920914+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:01.317386+00', 396, '{"updated-tables":0,"total-tables":8}'), +(12035, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:01.318016+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:04.863919+00', 3545, '{"total-fields":71,"updated-fields":0}'), +(12036, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:04.864208+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:04.938527+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12037, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:04.938585+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.093704+00', 155, NULL), +(12038, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.205433+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.355801+00', 150, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12039, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.205456+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.305272+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12040, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.30571+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.319809+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(12041, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.319889+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:19:05.355744+00', 35, '{"total-tables":8,"tables-classified":0}'), +(12042, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:00.210546+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.324144+00', 11113, NULL), +(12043, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:00.210574+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:00.212955+00', 2, '{"timezone-id":null}'), +(12044, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:00.213094+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:00.637154+00', 424, '{"updated-tables":0,"total-tables":4}'), +(12045, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:00.637224+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.319672+00', 10682, '{"total-fields":30,"updated-fields":0}'), +(12046, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.319761+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.322008+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12047, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.32208+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.32406+00', 1, NULL), +(12048, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.497053+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.559353+00', 62, NULL), +(12049, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.497075+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.541221+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12050, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.541294+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.54503+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12051, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.5451+00', TIMESTAMP WITH TIME ZONE '2023-01-05 16:49:11.559298+00', 14, '{"total-tables":4,"tables-classified":0}'), +(12052, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 17:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:00:00.33+00', 192, NULL), +(12053, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 17:00:00.331+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:00:00.536+00', 205, NULL), +(12054, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:00.370118+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.455904+00', 6085, NULL), +(12055, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:00.379639+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:01.155205+00', 775, '{"timezone-id":"UTC"}'), +(12056, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:01.161152+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:01.848712+00', 687, '{"updated-tables":0,"total-tables":8}'), +(12057, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:01.84905+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.234688+00', 4385, '{"total-fields":71,"updated-fields":0}'), +(12058, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.23518+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.327218+00', 92, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12059, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.327274+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.455561+00', 128, NULL), +(12060, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.533969+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.663461+00', 129, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12061, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.534+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.623829+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12062, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.623926+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.63863+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(12063, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.638703+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:19:06.66341+00', 24, '{"total-tables":8,"tables-classified":0}'), +(12064, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:00.255209+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.444235+00', 14189, NULL), +(12065, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:00.255234+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:00.257294+00', 2, '{"timezone-id":null}'), +(12066, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:00.257443+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:01.107085+00', 849, '{"updated-tables":0,"total-tables":4}'), +(12067, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:01.10718+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.437909+00', 13330, '{"total-fields":30,"updated-fields":0}'), +(12068, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.438008+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.440795+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12069, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.440855+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.444177+00', 3, NULL), +(12070, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.542473+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.582647+00', 40, NULL), +(12071, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.542497+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.568226+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12072, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.568302+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.572057+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12073, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.572151+00', TIMESTAMP WITH TIME ZONE '2023-01-05 17:49:14.582599+00', 10, '{"total-tables":4,"tables-classified":0}'), +(12074, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 18:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:00:00.493+00', 369, NULL), +(12075, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 18:00:00.108+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:00:00.547+00', 439, NULL), +(12076, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:00.233043+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:05.939073+00', 5706, NULL), +(12077, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:00.23629+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:01.378189+00', 1141, '{"timezone-id":"UTC"}'), +(12078, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:01.380914+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:02.353769+00', 972, '{"updated-tables":0,"total-tables":8}'), +(12079, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:02.354364+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:05.770696+00', 3416, '{"total-fields":71,"updated-fields":0}'), +(12080, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:05.770826+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:05.81327+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12081, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:05.813363+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:05.938652+00', 125, NULL), +(12082, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.00452+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.085428+00', 80, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12083, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.004541+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.051026+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12084, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.051096+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.066839+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(12085, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.066912+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:19:06.085383+00', 18, '{"total-tables":8,"tables-classified":0}'), +(12086, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:00.141007+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.80177+00', 8660, NULL), +(12087, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:00.141037+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:00.143816+00', 2, '{"timezone-id":null}'), +(12088, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:00.143909+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:00.43409+00', 290, '{"updated-tables":0,"total-tables":4}'), +(12089, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:00.434164+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.797343+00', 8363, '{"total-fields":30,"updated-fields":0}'), +(12090, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.797426+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.799393+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12091, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.799455+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.801721+00', 2, NULL), +(12092, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.87234+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.908742+00', 36, NULL), +(12093, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.872364+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.896615+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12094, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.896687+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.901087+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12095, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.901228+00', TIMESTAMP WITH TIME ZONE '2023-01-05 18:49:08.908622+00', 7, '{"total-tables":4,"tables-classified":0}'), +(12096, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 19:00:00.084+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:00:00.299+00', 215, NULL), +(12097, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 19:00:00.079+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:00:00.359+00', 280, NULL), +(12098, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:00.22453+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.166263+00', 6941, NULL), +(12099, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:00.228607+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:00.864555+00', 635, '{"timezone-id":"UTC"}'), +(12100, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:00.866894+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:01.523532+00', 656, '{"updated-tables":0,"total-tables":8}'), +(12101, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:01.523637+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:06.177609+00', 4653, '{"total-fields":71,"updated-fields":0}'), +(12102, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:06.178012+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:06.345763+00', 167, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12103, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:06.346366+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.165918+00', 819, NULL), +(12104, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.427157+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.838708+00', 411, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12105, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.42742+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.75933+00', 331, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12106, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.75967+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.799734+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(12107, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.79981+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:19:07.838329+00', 38, '{"total-tables":8,"tables-classified":0}'), +(12108, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:00.188902+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.418173+00', 9229, NULL), +(12109, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:00.188927+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:00.190746+00', 1, '{"timezone-id":null}'), +(12110, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:00.190833+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:00.57727+00', 386, '{"updated-tables":0,"total-tables":4}'), +(12111, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:00.577335+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.394042+00', 8816, '{"total-fields":30,"updated-fields":0}'), +(12112, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.394177+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.398061+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12113, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.398216+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.418103+00', 19, NULL), +(12114, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.527021+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.589322+00', 62, NULL), +(12115, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.52704+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.568707+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12116, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.569012+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.580907+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(12117, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.580993+00', TIMESTAMP WITH TIME ZONE '2023-01-05 19:49:09.589278+00', 8, '{"total-tables":4,"tables-classified":0}'), +(12118, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 20:00:00.084+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:00:00.223+00', 139, NULL), +(12119, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 20:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:00:00.278+00', 207, NULL), +(12120, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:00.186705+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.637708+00', 4451, NULL), +(12121, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:00.193037+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:00.641768+00', 448, '{"timezone-id":"UTC"}'), +(12122, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:00.644704+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:00.924089+00', 279, '{"updated-tables":0,"total-tables":8}'), +(12123, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:00.924353+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:03.860028+00', 2935, '{"total-fields":71,"updated-fields":0}'), +(12124, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:03.860099+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:03.971083+00', 110, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12125, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:03.971393+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.637392+00', 665, NULL), +(12126, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.711517+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.783987+00', 72, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12127, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.711536+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.745289+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12128, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.745347+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.75532+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(12129, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.755396+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:19:04.783937+00', 28, '{"total-tables":8,"tables-classified":0}'), +(12130, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:00.239767+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.053965+00', 11814, NULL), +(12131, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:00.23979+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:00.241333+00', 1, '{"timezone-id":null}'), +(12132, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:00.241404+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:00.669736+00', 428, '{"updated-tables":0,"total-tables":4}'), +(12133, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:00.669811+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.045593+00', 11375, '{"total-fields":30,"updated-fields":0}'), +(12134, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.045733+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.04919+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12135, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.049297+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.053867+00', 4, NULL), +(12136, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.165113+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.214038+00', 48, NULL), +(12137, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.165132+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.197381+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12138, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.198037+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.202854+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12139, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.202988+00', TIMESTAMP WITH TIME ZONE '2023-01-05 20:49:12.213976+00', 10, '{"total-tables":4,"tables-classified":0}'), +(12140, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:00.186+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:00.783+00', 597, NULL), +(12141, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:00.781+00', 575, NULL), +(12142, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:01.040632+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:20.245809+00', 19205, NULL), +(12143, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:01.04472+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:07.331327+00', 6286, '{"deleted":0}'), +(12144, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:07.337924+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:00:20.245462+00', 12907, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(12145, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:00.255887+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.382003+00', 1126, NULL), +(12146, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:00.256083+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:00.453881+00', 197, '{"timezone-id":"UTC"}'), +(12147, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:00.454164+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:00.688195+00', 234, '{"updated-tables":0,"total-tables":8}'), +(12148, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:00.688312+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.082191+00', 393, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12149, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.08226+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.182016+00', 99, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12150, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.182099+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.381969+00', 199, NULL), +(12151, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.453767+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.599691+00', 145, NULL), +(12152, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.4538+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.543838+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12153, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.543919+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.564455+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(12154, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.564539+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:19:01.599638+00', 35, '{"total-tables":8,"tables-classified":0}'), +(12155, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:02.445746+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.107754+00', 16662, NULL), +(12156, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:02.449979+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:02.50303+00', 53, '{"timezone-id":null}'), +(12157, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:02.525792+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:03.050497+00', 524, '{"updated-tables":0,"total-tables":4}'), +(12158, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:03.050807+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.084552+00', 16033, '{"total-fields":30,"updated-fields":0}'), +(12159, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.0847+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.103809+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12160, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.103968+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.107376+00', 3, NULL), +(12161, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.306859+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.389581+00', 82, NULL), +(12162, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.306882+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.359461+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12163, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.359525+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.367634+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(12164, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.367701+00', TIMESTAMP WITH TIME ZONE '2023-01-05 21:49:19.38952+00', 21, '{"total-tables":4,"tables-classified":0}'), +(12165, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 22:00:00.355+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:00:00.682+00', 327, NULL), +(12166, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 22:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:00:00.687+00', 521, NULL), +(12167, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:00.260952+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.739551+00', 5478, NULL), +(12168, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:00.26657+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:00.697974+00', 431, '{"timezone-id":"UTC"}'), +(12169, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:00.700861+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:01.049265+00', 348, '{"updated-tables":0,"total-tables":8}'), +(12170, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:01.049523+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.543611+00', 4494, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12171, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.543779+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.570188+00', 26, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12172, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.570296+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.739053+00', 168, NULL), +(12173, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.824883+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.88894+00', 64, NULL), +(12174, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.824907+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.864195+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12175, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.864286+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.873945+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(12176, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.874027+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:19:05.888891+00', 14, '{"total-tables":8,"tables-classified":0}'), +(12177, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:00.12709+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.28966+00', 11162, NULL), +(12178, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:00.127115+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:00.13047+00', 3, '{"timezone-id":null}'), +(12179, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:00.130831+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:00.387385+00', 256, '{"updated-tables":0,"total-tables":4}'), +(12180, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:00.387523+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.279158+00', 10891, '{"total-fields":30,"updated-fields":0}'), +(12181, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.279282+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.281933+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12182, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.282043+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.289582+00', 7, NULL), +(12183, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.371856+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.445695+00', 73, NULL), +(12184, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.371878+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.414355+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12185, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.414468+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.418714+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12186, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.418803+00', TIMESTAMP WITH TIME ZONE '2023-01-05 22:49:11.445645+00', 26, '{"total-tables":4,"tables-classified":0}'), +(12187, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 23:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:00:00.719+00', 589, NULL), +(12188, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-05 23:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:00:00.801+00', 675, NULL), +(12189, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:00.33246+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.767206+00', 5434, NULL), +(12190, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:00.335039+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:00.766142+00', 431, '{"timezone-id":"UTC"}'), +(12191, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:00.768272+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:01.235238+00', 466, '{"updated-tables":0,"total-tables":8}'), +(12192, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:01.235611+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.592089+00', 4356, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12193, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.592182+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.640799+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12194, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.640859+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.766646+00', 125, NULL), +(12195, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.852755+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.994043+00', 141, NULL), +(12196, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.852779+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.949344+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12197, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.949437+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.965878+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(12198, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.965959+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:19:05.993945+00', 27, '{"total-tables":8,"tables-classified":0}'), +(12199, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:00.691726+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.365941+00', 11674, NULL), +(12200, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:00.691756+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:00.69461+00', 2, '{"timezone-id":null}'), +(12201, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:00.69495+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:01.175036+00', 480, '{"updated-tables":0,"total-tables":4}'), +(12202, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:01.175138+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.350323+00', 11175, '{"total-fields":30,"updated-fields":0}'), +(12203, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.350423+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.361841+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12204, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.361947+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.365492+00', 3, NULL), +(12205, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.471377+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.531961+00', 60, NULL), +(12206, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.471396+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.51289+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12207, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.512977+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.518357+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(12208, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.518417+00', TIMESTAMP WITH TIME ZONE '2023-01-05 23:49:12.531915+00', 13, '{"total-tables":4,"tables-classified":0}'), +(12209, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 00:00:00.174+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:00:00.955+00', 781, NULL), +(12210, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 00:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:00:01.301+00', 1158, NULL), +(12211, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:00.209193+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.131887+00', 5922, NULL), +(12212, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:00.211374+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:00.83035+00', 618, '{"timezone-id":"UTC"}'), +(12213, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:00.845933+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:01.505298+00', 659, '{"updated-tables":0,"total-tables":8}'), +(12214, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:01.50542+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:05.929156+00', 4423, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12215, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:05.9294+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:05.971771+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12216, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:05.971836+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.131858+00', 160, NULL), +(12217, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.197811+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.339771+00', 141, NULL), +(12218, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.197835+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.271409+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12219, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.271751+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.320606+00', 48, '{"fields-classified":0,"fields-failed":0}'), +(12220, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.320693+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:19:06.339714+00', 19, '{"total-tables":8,"tables-classified":0}'), +(12221, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:00.588072+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.781188+00', 10193, NULL), +(12222, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:00.588097+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:00.591883+00', 3, '{"timezone-id":null}'), +(12223, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:00.592029+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:01.123079+00', 531, '{"updated-tables":0,"total-tables":4}'), +(12224, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:01.12315+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.774012+00', 9650, '{"total-fields":30,"updated-fields":0}'), +(12225, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.77465+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.777323+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12226, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.777596+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.781131+00', 3, NULL), +(12227, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.948512+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.980889+00', 32, NULL), +(12228, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.948532+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.971036+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12229, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.971206+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.974738+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12230, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.974846+00', TIMESTAMP WITH TIME ZONE '2023-01-06 00:49:10.980797+00', 5, '{"total-tables":4,"tables-classified":0}'), +(12231, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 01:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:00:00.625+00', 410, NULL), +(12232, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 01:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:00:00.792+00', 577, NULL), +(12233, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:00.19693+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.145738+00', 4948, NULL), +(12234, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:00.200534+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:00.650904+00', 450, '{"timezone-id":"UTC"}'), +(12235, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:00.653534+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:01.158117+00', 504, '{"updated-tables":0,"total-tables":8}'), +(12236, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:01.158452+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:04.975072+00', 3816, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12237, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:04.975173+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.013336+00', 38, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12238, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.01344+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.145704+00', 132, NULL), +(12239, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.200029+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.364812+00', 164, NULL), +(12240, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.200052+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.298962+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12241, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.299024+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.336152+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(12242, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.33626+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:19:05.364772+00', 28, '{"total-tables":8,"tables-classified":0}'), +(12243, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:00.168867+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.672153+00', 12503, NULL), +(12244, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:00.168896+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:00.171045+00', 2, '{"timezone-id":null}'), +(12245, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:00.171136+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:00.563961+00', 392, '{"updated-tables":0,"total-tables":4}'), +(12246, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:00.564042+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.664788+00', 12100, '{"total-fields":30,"updated-fields":0}'), +(12247, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.664886+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.669034+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12248, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.669132+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.671822+00', 2, NULL), +(12249, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.758924+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.796539+00', 37, NULL), +(12250, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.758944+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.782488+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12251, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.782659+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.787253+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12252, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.78733+00', TIMESTAMP WITH TIME ZONE '2023-01-06 01:49:12.796464+00', 9, '{"total-tables":4,"tables-classified":0}'), +(12253, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:00.661+00', 533, NULL), +(12254, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:00.654+00', 498, NULL), +(12255, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:00.940061+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:10.471602+00', 9531, NULL), +(12256, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:00.94501+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:01.972239+00', 1027, '{"deleted":0}'), +(12257, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:01.97546+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:00:10.471197+00', 8495, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(12258, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:00.175142+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.496623+00', 1321, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12259, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:00.175172+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:00.604538+00', 429, '{"timezone-id":"UTC"}'), +(12260, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:00.604662+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:00.854693+00', 250, '{"updated-tables":0,"total-tables":8}'), +(12261, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:00.854835+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.309503+00', 454, '{"total-fields":71,"updated-fields":0}'), +(12262, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.309682+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.35923+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12263, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.359304+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.496545+00', 137, NULL), +(12264, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.548381+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.677654+00', 129, NULL), +(12265, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.548406+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.62052+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12266, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.620608+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.638344+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(12267, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.63842+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:19:01.677603+00', 39, '{"total-tables":8,"tables-classified":0}'), +(12268, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:00.047185+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.29459+00', 10247, NULL), +(12269, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:00.047208+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:00.049292+00', 2, '{"timezone-id":null}'), +(12270, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:00.049371+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:00.228402+00', 179, '{"updated-tables":0,"total-tables":4}'), +(12271, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:00.228527+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.289423+00', 10060, '{"total-fields":30,"updated-fields":0}'), +(12272, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.289512+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.292144+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12273, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.292218+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.294547+00', 2, NULL), +(12274, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.334201+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.374442+00', 40, NULL), +(12275, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.334223+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.362462+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12276, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.36256+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.367389+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12277, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.367463+00', TIMESTAMP WITH TIME ZONE '2023-01-06 02:49:10.374389+00', 6, '{"total-tables":4,"tables-classified":0}'), +(12278, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 03:00:00.332+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:00:01.333+00', 1001, NULL), +(12279, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 03:00:00.612+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:00:01.332+00', 720, NULL), +(12280, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:00.151346+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.396827+00', 8245, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12281, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:00.153755+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:00.596321+00', 442, '{"timezone-id":"UTC"}'), +(12282, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:00.597485+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:01.119633+00', 522, '{"updated-tables":0,"total-tables":8}'), +(12283, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:01.120314+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.223869+00', 7103, '{"total-fields":71,"updated-fields":0}'), +(12284, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.223948+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.275792+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12285, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.275857+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.396541+00', 120, NULL), +(12286, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.480148+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.620378+00', 140, NULL), +(12287, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.480171+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.571639+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12288, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.571921+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.585843+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(12289, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.586067+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:19:08.620324+00', 34, '{"total-tables":8,"tables-classified":0}'), +(12290, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:00.277872+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.556679+00', 11278, NULL), +(12291, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:00.277902+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:00.279899+00', 1, '{"timezone-id":null}'), +(12292, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:00.280079+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:00.907993+00', 627, '{"updated-tables":0,"total-tables":4}'), +(12293, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:00.908063+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.54581+00', 10637, '{"total-fields":30,"updated-fields":0}'), +(12294, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.545944+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.54819+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12295, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.54825+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.5566+00', 8, NULL), +(12296, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.624855+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.683397+00', 58, NULL), +(12297, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.624877+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.662013+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12298, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.662089+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.671515+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(12299, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.671615+00', TIMESTAMP WITH TIME ZONE '2023-01-06 03:49:11.683345+00', 11, '{"total-tables":4,"tables-classified":0}'), +(12300, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 04:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:00:00.66+00', 496, NULL), +(12301, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 04:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:00:00.659+00', 471, NULL), +(12302, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:00.256116+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.011717+00', 6755, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12303, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:00.261748+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:01.683537+00', 1421, '{"timezone-id":"UTC"}'), +(12304, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:01.686913+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:02.689461+00', 1002, '{"updated-tables":0,"total-tables":8}'), +(12305, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:02.690678+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:06.795808+00', 4105, '{"total-fields":71,"updated-fields":0}'), +(12306, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:06.795908+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:06.839366+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12307, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:06.839595+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.011279+00', 171, NULL), +(12308, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.114851+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.253441+00', 138, NULL), +(12309, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.114876+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.215325+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12310, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.215433+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.228209+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(12311, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.22828+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:19:07.253377+00', 25, '{"total-tables":8,"tables-classified":0}'), +(12312, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:00.501464+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.135381+00', 14633, NULL), +(12313, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:00.501487+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:00.504067+00', 2, '{"timezone-id":null}'), +(12314, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:00.504151+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:02.362808+00', 1858, '{"updated-tables":0,"total-tables":4}'), +(12315, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:02.362895+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.129536+00', 12766, '{"total-fields":30,"updated-fields":0}'), +(12316, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.129682+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.133048+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12317, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.133113+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.135339+00', 2, NULL), +(12318, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.259866+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.404878+00', 145, NULL), +(12319, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.259888+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.36724+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12320, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.367361+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.383291+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(12321, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.383652+00', TIMESTAMP WITH TIME ZONE '2023-01-06 04:49:15.404791+00', 21, '{"total-tables":4,"tables-classified":0}'), +(12322, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 05:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:00:00.674+00', 473, NULL), +(12323, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 05:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:00:00.922+00', 775, NULL), +(12324, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:00.365085+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:06.973859+00', 6608, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12325, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:00.369492+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:01.429034+00', 1059, '{"timezone-id":"UTC"}'), +(12326, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:01.432802+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:02.315866+00', 883, '{"updated-tables":0,"total-tables":8}'), +(12327, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:02.315981+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:06.713084+00', 4397, '{"total-fields":71,"updated-fields":0}'), +(12328, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:06.713608+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:06.784505+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12329, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:06.784563+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:06.969704+00', 185, NULL), +(12330, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.159769+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.377579+00', 217, NULL), +(12331, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.159791+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.279127+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12332, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.279622+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.297798+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(12333, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.297877+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:19:07.377537+00', 79, '{"total-tables":8,"tables-classified":0}'), +(12334, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:00.295399+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.663094+00', 14367, NULL), +(12335, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:00.295425+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:00.29767+00', 2, '{"timezone-id":null}'), +(12336, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:00.297793+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:00.999252+00', 701, '{"updated-tables":0,"total-tables":4}'), +(12337, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:00.999387+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.656339+00', 13656, '{"total-fields":30,"updated-fields":0}'), +(12338, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.656497+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.659252+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12339, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.659365+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.662887+00', 3, NULL), +(12340, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.794398+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.833915+00', 39, NULL), +(12341, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.794418+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.822787+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12342, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.82286+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.826732+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12343, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.826804+00', TIMESTAMP WITH TIME ZONE '2023-01-06 05:49:14.833857+00', 7, '{"total-tables":4,"tables-classified":0}'), +(12344, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 06:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:00:00.727+00', 598, NULL), +(12345, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 06:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:00:00.728+00', 604, NULL), +(12346, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:00.804336+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.423811+00', 8619, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12347, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:00.829988+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:04.569513+00', 3739, '{"timezone-id":"UTC"}'), +(12348, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:04.572836+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:05.552892+00', 980, '{"updated-tables":0,"total-tables":8}'), +(12349, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:05.553423+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.166503+00', 3613, '{"total-fields":71,"updated-fields":0}'), +(12350, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.166614+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.220798+00', 54, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12351, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.220896+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.423449+00', 202, NULL), +(12352, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.513252+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.633573+00', 120, NULL), +(12353, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.513276+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.586141+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12354, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.586226+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.60596+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(12355, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.606055+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:19:09.633479+00', 27, '{"total-tables":8,"tables-classified":0}'), +(12356, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:00.394813+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:13.994991+00', 13600, NULL), +(12357, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:00.394836+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:00.397109+00', 2, '{"timezone-id":null}'), +(12358, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:00.397224+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:01.087067+00', 689, '{"updated-tables":0,"total-tables":4}'), +(12359, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:01.087202+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:13.987798+00', 12900, '{"total-fields":30,"updated-fields":0}'), +(12360, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:13.987929+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:13.990904+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12361, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:13.991133+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:13.99494+00', 3, NULL), +(12362, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.074509+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.119381+00', 44, NULL), +(12363, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.074529+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.110634+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12364, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.110717+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.114979+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12365, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.115049+00', TIMESTAMP WITH TIME ZONE '2023-01-06 06:49:14.119333+00', 4, '{"total-tables":4,"tables-classified":0}'), +(12366, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 07:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:00:00.644+00', 487, NULL), +(12367, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 07:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:00:00.65+00', 501, NULL), +(12368, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:00.318552+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.305+00', 6986, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12369, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:00.322418+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:02.364678+00', 2042, '{"timezone-id":"UTC"}'), +(12370, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:02.368674+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:03.185237+00', 816, '{"updated-tables":0,"total-tables":8}'), +(12371, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:03.185789+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.06314+00', 3877, '{"total-fields":71,"updated-fields":0}'), +(12372, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.063551+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.154104+00', 90, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12373, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.154204+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.304475+00', 150, NULL), +(12374, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.387738+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.494177+00', 106, NULL), +(12375, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.387759+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.449887+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12376, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.44998+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.465556+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(12377, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.465664+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:19:07.494115+00', 28, '{"total-tables":8,"tables-classified":0}'), +(12378, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:00.326818+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.228951+00', 14902, NULL), +(12379, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:00.326844+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:00.329719+00', 2, '{"timezone-id":null}'), +(12380, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:00.329835+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:01.382961+00', 1053, '{"updated-tables":0,"total-tables":4}'), +(12381, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:01.383425+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.224967+00', 13841, '{"total-fields":30,"updated-fields":0}'), +(12382, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.225075+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.226952+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12383, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.227009+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.2289+00', 1, NULL), +(12384, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.283897+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.316265+00', 32, NULL), +(12385, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.283915+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.30614+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12386, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.306351+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.310072+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12387, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.310144+00', TIMESTAMP WITH TIME ZONE '2023-01-06 07:49:15.316141+00', 5, '{"total-tables":4,"tables-classified":0}'), +(12388, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 08:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:00:00.614+00', 449, NULL), +(12389, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 08:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:00:00.764+00', 621, NULL), +(12390, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:00.402716+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.332509+00', 12929, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12391, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:00.409065+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:03.113289+00', 2704, '{"timezone-id":"UTC"}'), +(12392, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:03.233902+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:04.779329+00', 1545, '{"updated-tables":0,"total-tables":8}'), +(12393, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:04.779745+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:12.814089+00', 8034, '{"total-fields":71,"updated-fields":0}'), +(12394, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:12.814262+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:12.966786+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12395, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:12.966941+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.32618+00', 359, NULL), +(12396, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.502202+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.849982+00', 347, NULL), +(12397, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.502224+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.725084+00', 222, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12398, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.726539+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.761767+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(12399, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.761868+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:19:13.84993+00', 88, '{"total-tables":8,"tables-classified":0}'), +(12400, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:00.489433+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.555754+00', 17066, NULL), +(12401, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:00.48946+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:00.495082+00', 5, '{"timezone-id":null}'), +(12402, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:00.495184+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:01.881229+00', 1386, '{"updated-tables":0,"total-tables":4}'), +(12403, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:01.881344+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.549162+00', 15667, '{"total-fields":30,"updated-fields":0}'), +(12404, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.549319+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.552382+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12405, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.552496+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.555703+00', 3, NULL), +(12406, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.624089+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.664561+00', 40, NULL), +(12407, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.62411+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.652211+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12408, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.652325+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.657546+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(12409, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.657627+00', TIMESTAMP WITH TIME ZONE '2023-01-06 08:49:17.664371+00', 6, '{"total-tables":4,"tables-classified":0}'), +(12410, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 09:00:00.263+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:00:01.051+00', 788, NULL), +(12411, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 09:00:00.257+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:00:01.392+00', 1135, NULL), +(12412, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:00.582831+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.374277+00', 13791, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12413, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:00.591953+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:02.029741+00', 1437, '{"timezone-id":"UTC"}'), +(12414, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:02.034846+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:03.591021+00', 1556, '{"updated-tables":0,"total-tables":8}'), +(12415, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:03.591163+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:12.616119+00', 9024, '{"total-fields":71,"updated-fields":0}'), +(12416, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:12.6166+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:13.021804+00', 405, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12417, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:13.022319+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.373874+00', 1351, NULL), +(12418, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.668357+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.821819+00', 153, NULL), +(12419, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.668384+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.751953+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12420, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.752046+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.771021+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(12421, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.771269+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:19:14.821697+00', 50, '{"total-tables":8,"tables-classified":0}'), +(12422, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:00.220223+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.277112+00', 16056, NULL), +(12423, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:00.220247+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:00.223573+00', 3, '{"timezone-id":null}'), +(12424, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:00.22367+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:00.689676+00', 466, '{"updated-tables":0,"total-tables":4}'), +(12425, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:00.689747+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.272768+00', 15583, '{"total-fields":30,"updated-fields":0}'), +(12426, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.272875+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.275965+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12427, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.276017+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.277038+00', 1, NULL), +(12428, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.387084+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.423325+00', 36, NULL), +(12429, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.387147+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.416071+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12430, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.416151+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.419154+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12431, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.419219+00', TIMESTAMP WITH TIME ZONE '2023-01-06 09:49:16.423287+00', 4, '{"total-tables":4,"tables-classified":0}'), +(12432, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 10:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:00:00.187+00', 96, NULL), +(12433, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 10:00:00.085+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:00:00.222+00', 137, NULL), +(12434, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:00.051511+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.576729+00', 5525, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12435, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:00.051998+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:00.758904+00', 706, '{"timezone-id":"UTC"}'), +(12436, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:00.759005+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:01.404097+00', 645, '{"updated-tables":0,"total-tables":8}'), +(12437, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:01.404199+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.336727+00', 3932, '{"total-fields":71,"updated-fields":0}'), +(12438, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.336838+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.372307+00', 35, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12439, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.372357+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.571769+00', 199, NULL), +(12440, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.657706+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.739831+00', 82, NULL), +(12441, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.65773+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.711365+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12442, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.711532+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.717844+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(12443, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.717909+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:19:05.739753+00', 21, '{"total-tables":8,"tables-classified":0}'), +(12444, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:00.280541+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:12.964634+00', 12684, NULL), +(12445, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:00.280574+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:00.282722+00', 2, '{"timezone-id":null}'), +(12446, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:00.282994+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:01.35393+00', 1070, '{"updated-tables":0,"total-tables":4}'), +(12447, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:01.35404+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:12.957116+00', 11603, '{"total-fields":30,"updated-fields":0}'), +(12448, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:12.957394+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:12.960741+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12449, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:12.96081+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:12.964576+00', 3, NULL), +(12450, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.060992+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.141746+00', 80, NULL), +(12451, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.061014+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.116792+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12452, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.116868+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.129941+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(12453, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.130123+00', TIMESTAMP WITH TIME ZONE '2023-01-06 10:49:13.141697+00', 11, '{"total-tables":4,"tables-classified":0}'), +(12454, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 11:00:00.258+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:00:01.403+00', 1145, NULL), +(12455, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 11:00:00.258+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:00:02.159+00', 1901, NULL), +(12456, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:00.367055+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.023278+00', 13656, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12457, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:00.372287+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:01.337589+00', 965, '{"timezone-id":"UTC"}'), +(12458, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:01.351759+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:02.693775+00', 1342, '{"updated-tables":0,"total-tables":8}'), +(12459, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:02.694246+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:13.426901+00', 10732, '{"total-fields":71,"updated-fields":0}'), +(12460, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:13.427+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:13.51353+00', 86, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12461, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:13.513693+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.022945+00', 509, NULL), +(12462, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.145175+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.35834+00', 213, NULL), +(12463, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.145203+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.292004+00', 146, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12464, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.292277+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.321197+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(12465, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.321301+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:19:14.358272+00', 36, '{"total-tables":8,"tables-classified":0}'), +(12466, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:00.342376+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.076376+00', 17734, NULL), +(12467, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:00.34241+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:00.344956+00', 2, '{"timezone-id":null}'), +(12468, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:00.345047+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:00.985289+00', 640, '{"updated-tables":0,"total-tables":4}'), +(12469, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:00.985362+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.07008+00', 17084, '{"total-fields":30,"updated-fields":0}'), +(12470, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.070203+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.072929+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12471, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.073006+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.076306+00', 3, NULL), +(12472, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.475019+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.62076+00', 145, NULL), +(12473, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.47505+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.593044+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12474, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.593398+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.605463+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(12475, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.605647+00', TIMESTAMP WITH TIME ZONE '2023-01-06 11:49:18.620701+00', 15, '{"total-tables":4,"tables-classified":0}'), +(12476, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 12:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:00:00.44+00', 252, NULL), +(12477, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 12:00:00.162+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:00:00.441+00', 279, NULL), +(12478, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:01.786401+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.445127+00', 11658, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12479, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:01.828876+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:03.155856+00', 1326, '{"timezone-id":"UTC"}'), +(12480, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:03.177517+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:03.937391+00', 759, '{"updated-tables":0,"total-tables":8}'), +(12481, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:03.938016+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:12.994746+00', 9056, '{"total-fields":71,"updated-fields":0}'), +(12482, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:12.994861+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.099196+00', 104, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12483, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.099306+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.444651+00', 345, NULL), +(12484, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.799054+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:14.087515+00', 288, NULL), +(12485, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.799089+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.967244+00', 168, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12486, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:13.967336+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:14.02667+00', 59, '{"fields-classified":0,"fields-failed":0}'), +(12487, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:14.026742+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:19:14.08745+00', 60, '{"total-tables":8,"tables-classified":0}'), +(12488, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:00.359266+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.278903+00', 19919, NULL), +(12489, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:00.359292+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:00.362362+00', 3, '{"timezone-id":null}'), +(12490, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:00.362665+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:01.306052+00', 943, '{"updated-tables":0,"total-tables":4}'), +(12491, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:01.306119+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.26711+00', 18960, '{"total-fields":30,"updated-fields":0}'), +(12492, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.267228+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.271269+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12493, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.271339+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.27884+00', 7, NULL), +(12494, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.381078+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.477428+00', 96, NULL), +(12495, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.381099+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.455947+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12496, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.456126+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.467058+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(12497, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.46715+00', TIMESTAMP WITH TIME ZONE '2023-01-06 12:49:20.477199+00', 10, '{"total-tables":4,"tables-classified":0}'), +(12498, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 13:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:00:00.453+00', 300, NULL), +(12499, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 13:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:00:00.51+00', 366, NULL), +(12500, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:00.259571+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:06.895541+00', 6635, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12501, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:00.263831+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:01.167147+00', 903, '{"timezone-id":"UTC"}'), +(12502, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:01.170917+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:02.095857+00', 924, '{"updated-tables":0,"total-tables":8}'), +(12503, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:02.095995+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:06.616855+00', 4520, '{"total-fields":71,"updated-fields":0}'), +(12504, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:06.617114+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:06.688095+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12505, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:06.688205+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:06.895062+00', 206, NULL), +(12506, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.041117+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.214569+00', 173, NULL), +(12507, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.041145+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.148024+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12508, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.148181+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.164916+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(12509, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.165155+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:19:07.214514+00', 49, '{"total-tables":8,"tables-classified":0}'), +(12510, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:00.247046+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.231537+00', 10984, NULL), +(12511, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:00.247075+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:00.249236+00', 2, '{"timezone-id":null}'), +(12512, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:00.249329+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:00.715488+00', 466, '{"updated-tables":0,"total-tables":4}'), +(12513, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:00.715683+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.226181+00', 10510, '{"total-fields":30,"updated-fields":0}'), +(12514, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.226285+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.228862+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12515, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.228951+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.231484+00', 2, NULL), +(12516, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.289564+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.369051+00', 79, NULL), +(12517, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.289582+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.349191+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12518, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.349264+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.355681+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(12519, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.355767+00', TIMESTAMP WITH TIME ZONE '2023-01-06 13:49:11.368927+00', 13, '{"total-tables":4,"tables-classified":0}'), +(12520, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 14:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:00:00.823+00', 665, NULL), +(12521, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 14:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:00:00.825+00', 667, NULL), +(12522, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:00.292967+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.757425+00', 6464, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12523, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:00.295476+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:01.268764+00', 973, '{"timezone-id":"UTC"}'), +(12524, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:01.279541+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:02.037667+00', 758, '{"updated-tables":0,"total-tables":8}'), +(12525, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:02.038839+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.421053+00', 4382, '{"total-fields":71,"updated-fields":0}'), +(12526, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.421153+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.545347+00', 124, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12527, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.545507+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.757368+00', 211, NULL), +(12528, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.834753+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.992089+00', 157, NULL), +(12529, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.834774+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.922987+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12530, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.923075+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.937762+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(12531, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.937836+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:19:06.992031+00', 54, '{"total-tables":8,"tables-classified":0}'), +(12532, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:00.268375+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.827268+00', 12558, NULL), +(12533, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:00.2684+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:00.270813+00', 2, '{"timezone-id":null}'), +(12534, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:00.27101+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:00.945488+00', 674, '{"updated-tables":0,"total-tables":4}'), +(12535, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:00.945627+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.819332+00', 11873, '{"total-fields":30,"updated-fields":0}'), +(12536, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.819469+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.822923+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12537, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.823021+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.827189+00', 4, NULL), +(12538, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.951439+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:13.051175+00', 99, NULL), +(12539, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:12.951459+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:13.023872+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12540, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:13.023943+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:13.037523+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(12541, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:13.037642+00', TIMESTAMP WITH TIME ZONE '2023-01-06 14:49:13.051066+00', 13, '{"total-tables":4,"tables-classified":0}'), +(12542, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 15:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:00:00.549+00', 372, NULL), +(12543, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 15:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:00:00.549+00', 388, NULL), +(12544, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:00.496859+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:07.850273+00', 7353, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12545, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:00.502396+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:01.221937+00', 719, '{"timezone-id":"UTC"}'), +(12546, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:01.23431+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:02.055437+00', 821, '{"updated-tables":0,"total-tables":8}'), +(12547, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:02.055868+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:07.584076+00', 5528, '{"total-fields":71,"updated-fields":0}'), +(12548, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:07.58418+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:07.648173+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12549, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:07.648228+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:07.848936+00', 200, NULL), +(12550, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.058541+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.442851+00', 384, NULL), +(12551, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.058567+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.242835+00', 184, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12552, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.242932+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.353413+00', 110, '{"fields-classified":0,"fields-failed":0}'), +(12553, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.35349+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:19:08.442804+00', 89, '{"total-tables":8,"tables-classified":0}'), +(12554, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:00.256365+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.58208+00', 15325, NULL), +(12555, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:00.256387+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:00.259492+00', 3, '{"timezone-id":null}'), +(12556, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:00.259615+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:00.880056+00', 620, '{"updated-tables":0,"total-tables":4}'), +(12557, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:00.880189+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.556313+00', 14676, '{"total-fields":30,"updated-fields":0}'), +(12558, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.556483+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.560948+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12559, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.56104+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.581986+00', 20, NULL), +(12560, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.657327+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.702862+00', 45, NULL), +(12561, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.657778+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.68734+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12562, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.68757+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.693957+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(12563, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.694058+00', TIMESTAMP WITH TIME ZONE '2023-01-06 15:49:15.702778+00', 8, '{"total-tables":4,"tables-classified":0}'), +(12564, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 16:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:00:00.768+00', 566, NULL), +(12565, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 16:00:00.229+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:00:00.757+00', 528, NULL), +(12566, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:00.297522+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:10.973738+00', 10676, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12567, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:00.301342+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:01.080766+00', 779, '{"timezone-id":"UTC"}'), +(12568, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:01.086914+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:02.041757+00', 954, '{"updated-tables":0,"total-tables":8}'), +(12569, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:02.044101+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:10.667096+00', 8622, '{"total-fields":71,"updated-fields":0}'), +(12570, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:10.667188+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:10.732482+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12571, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:10.732555+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:10.973272+00', 240, NULL), +(12572, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.116797+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.316769+00', 199, NULL), +(12573, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.116827+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.254747+00', 137, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12574, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.254869+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.283547+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(12575, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.283645+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:19:11.316718+00', 33, '{"total-tables":8,"tables-classified":0}'), +(12576, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:00.344504+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.292116+00', 16947, NULL), +(12577, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:00.344536+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:00.347333+00', 2, '{"timezone-id":null}'), +(12578, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:00.347419+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:01.034769+00', 687, '{"updated-tables":0,"total-tables":4}'), +(12579, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:01.034876+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.285361+00', 16250, '{"total-fields":30,"updated-fields":0}'), +(12580, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.285471+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.288156+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12581, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.288312+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.292053+00', 3, NULL), +(12582, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.415905+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.489155+00', 73, NULL), +(12583, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.415928+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.4521+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12584, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.452219+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.455692+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12585, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.455768+00', TIMESTAMP WITH TIME ZONE '2023-01-06 16:49:17.489077+00', 33, '{"total-tables":4,"tables-classified":0}'), +(12586, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 17:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:00:00.498+00', 355, NULL), +(12587, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 17:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:00:00.558+00', 447, NULL), +(12588, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:00.332398+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.112505+00', 5780, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12589, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:00.336731+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:00.87387+00', 537, '{"timezone-id":"UTC"}'), +(12590, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:00.87757+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:01.499381+00', 621, '{"updated-tables":0,"total-tables":8}'), +(12591, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:01.499829+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:05.947824+00', 4447, '{"total-fields":71,"updated-fields":0}'), +(12592, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:05.947992+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:05.991674+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12593, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:05.991776+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.112242+00', 120, NULL), +(12594, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.178956+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.330072+00', 151, NULL), +(12595, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.178979+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.293666+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12596, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.293739+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.309357+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(12597, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.309436+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:19:06.33001+00', 20, '{"total-tables":8,"tables-classified":0}'), +(12598, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:00.305904+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:14.956079+00', 14650, NULL), +(12599, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:00.305965+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:00.309606+00', 3, '{"timezone-id":null}'), +(12600, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:00.309739+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:01.170721+00', 860, '{"updated-tables":0,"total-tables":4}'), +(12601, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:01.170805+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:14.946117+00', 13775, '{"total-fields":30,"updated-fields":0}'), +(12602, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:14.9462+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:14.952126+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12603, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:14.952223+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:14.956018+00', 3, NULL), +(12604, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.131588+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.197029+00', 65, NULL), +(12605, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.131638+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.163904+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12606, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.16399+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.181941+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(12607, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.182037+00', TIMESTAMP WITH TIME ZONE '2023-01-06 17:49:15.196974+00', 14, '{"total-tables":4,"tables-classified":0}'), +(12608, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 18:00:00.264+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:00:01.701+00', 1437, NULL), +(12609, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 18:00:00.264+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:00:01.687+00', 1423, NULL), +(12610, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:00.487589+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.26884+00', 7781, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12611, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:00.492701+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:03.247872+00', 2755, '{"timezone-id":"UTC"}'), +(12612, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:03.253245+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:04.465654+00', 1212, '{"updated-tables":0,"total-tables":8}'), +(12613, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:04.466456+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:07.983947+00', 3517, '{"total-fields":71,"updated-fields":0}'), +(12614, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:07.984027+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.051454+00', 67, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12615, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.051528+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.268229+00', 216, NULL), +(12616, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.356788+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.491665+00', 134, NULL), +(12617, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.356814+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.424805+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12618, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.42495+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.459449+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(12619, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.459657+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:19:08.491555+00', 31, '{"total-tables":8,"tables-classified":0}'), +(12620, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:00.235873+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.21778+00', 12981, NULL), +(12621, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:00.235902+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:00.240964+00', 5, '{"timezone-id":null}'), +(12622, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:00.241061+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:00.542721+00', 301, '{"updated-tables":0,"total-tables":4}'), +(12623, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:00.543042+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.211533+00', 12668, '{"total-fields":30,"updated-fields":0}'), +(12624, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.211618+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.214408+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12625, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.214469+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.21773+00', 3, NULL), +(12626, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.295981+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.327915+00', 31, NULL), +(12627, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.295998+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.316385+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12628, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.316711+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.321125+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12629, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.32128+00', TIMESTAMP WITH TIME ZONE '2023-01-06 18:49:13.327867+00', 6, '{"total-tables":4,"tables-classified":0}'), +(12630, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 19:00:00.224+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:00:00.861+00', 637, NULL), +(12631, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 19:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:00:00.863+00', 657, NULL), +(12632, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:00.45378+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.337196+00', 6883, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12633, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:00.457815+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:01.996839+00', 1539, '{"timezone-id":"UTC"}'), +(12634, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:02.000125+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:02.785524+00', 785, '{"updated-tables":0,"total-tables":8}'), +(12635, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:02.785965+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.064053+00', 4278, '{"total-fields":71,"updated-fields":0}'), +(12636, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.064404+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.112912+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12637, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.112979+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.336622+00', 223, NULL), +(12638, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.431861+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.58355+00', 151, NULL), +(12639, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.431885+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.535768+00', 103, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12640, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.535963+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.558365+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(12641, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.558576+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:19:07.583503+00', 24, '{"total-tables":8,"tables-classified":0}'), +(12642, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:00.196919+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.100224+00', 11903, NULL), +(12643, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:00.196954+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:00.199104+00', 2, '{"timezone-id":null}'), +(12644, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:00.199217+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:00.720759+00', 521, '{"updated-tables":0,"total-tables":4}'), +(12645, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:00.720946+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.092345+00', 11371, '{"total-fields":30,"updated-fields":0}'), +(12646, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.092655+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.096718+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12647, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.096944+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.100059+00', 3, NULL), +(12648, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.186635+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.242234+00', 55, NULL), +(12649, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.186657+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.218241+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12650, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.218331+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.226496+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(12651, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.226571+00', TIMESTAMP WITH TIME ZONE '2023-01-06 19:49:12.242176+00', 15, '{"total-tables":4,"tables-classified":0}'), +(12652, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 20:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:00:00.378+00', 271, NULL), +(12653, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 20:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:00:00.339+00', 206, NULL), +(12654, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:00.163581+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.327857+00', 4164, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12655, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:00.166758+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:00.574119+00', 407, '{"timezone-id":"UTC"}'), +(12656, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:00.575862+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:00.876559+00', 300, '{"updated-tables":0,"total-tables":8}'), +(12657, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:00.876808+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:03.799949+00', 2923, '{"total-fields":71,"updated-fields":0}'), +(12658, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:03.800183+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:03.947203+00', 147, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12659, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:03.947532+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.327392+00', 379, NULL), +(12660, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.400194+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.521906+00', 121, NULL), +(12661, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.400214+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.461949+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12662, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.462014+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.471626+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(12663, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.471695+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:19:04.521866+00', 50, '{"total-tables":8,"tables-classified":0}'), +(12664, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:00.222864+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.345623+00', 13122, NULL), +(12665, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:00.222893+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:00.225244+00', 2, '{"timezone-id":null}'), +(12666, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:00.225336+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:00.650552+00', 425, '{"updated-tables":0,"total-tables":4}'), +(12667, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:00.650625+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.339377+00', 12688, '{"total-fields":30,"updated-fields":0}'), +(12668, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.339496+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.342055+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12669, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.342126+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.34556+00', 3, NULL), +(12670, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.421242+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.502336+00', 81, NULL), +(12671, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.421266+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.492498+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12672, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.492576+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.495422+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(12673, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.495482+00', TIMESTAMP WITH TIME ZONE '2023-01-06 20:49:13.502279+00', 6, '{"total-tables":4,"tables-classified":0}'), +(12674, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:00.233+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:00.777+00', 544, NULL), +(12675, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:00.251+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:00.775+00', 524, NULL), +(12676, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:01.10231+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:12.530019+00', 11427, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12677, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:01.105605+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:04.384314+00', 3278, '{"deleted":0}'), +(12678, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:04.38634+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:00:12.527297+00', 8140, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(12679, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:00.409991+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.894983+00', 1484, NULL), +(12680, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:00.411329+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:00.628644+00', 217, '{"timezone-id":"UTC"}'), +(12681, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:00.629139+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:00.934876+00', 305, '{"updated-tables":0,"total-tables":8}'), +(12682, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:00.934991+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.681023+00', 746, '{"total-fields":71,"updated-fields":0}'), +(12683, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.681139+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.729874+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12684, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.729973+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.894955+00', 164, NULL), +(12685, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.957262+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:02.091332+00', 134, NULL), +(12686, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:01.957285+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:02.032159+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12687, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:02.032247+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:02.049192+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(12688, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:02.049341+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:19:02.091272+00', 41, '{"total-tables":8,"tables-classified":0}'), +(12689, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:00.217453+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.286166+00', 12068, NULL), +(12690, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:00.217479+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:00.219807+00', 2, '{"timezone-id":null}'), +(12691, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:00.219896+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:00.732443+00', 512, '{"updated-tables":0,"total-tables":4}'), +(12692, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:00.732598+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.282225+00', 11549, '{"total-fields":30,"updated-fields":0}'), +(12693, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.282345+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.284465+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12694, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.284544+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.286123+00', 1, NULL), +(12695, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.332818+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.38243+00', 49, NULL), +(12696, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.332837+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.374879+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12697, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.374945+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.377491+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(12698, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.377548+00', TIMESTAMP WITH TIME ZONE '2023-01-06 21:49:12.382379+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12699, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 22:00:00.109+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:00:01.186+00', 1077, NULL), +(12700, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 22:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:00:01.688+00', 1597, NULL), +(12701, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:00.140946+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.32577+00', 4184, NULL), +(12702, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:00.142271+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:00.473857+00', 331, '{"timezone-id":"UTC"}'), +(12703, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:00.475414+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:00.757222+00', 281, '{"updated-tables":0,"total-tables":8}'), +(12704, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:00.75737+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.07941+00', 3322, '{"total-fields":71,"updated-fields":0}'), +(12705, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.079802+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.202561+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12706, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.202899+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.32535+00', 122, NULL), +(12707, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.381898+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.452624+00', 70, NULL), +(12708, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.381923+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.42087+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12709, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.421171+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.433263+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(12710, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.43345+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:19:04.452396+00', 18, '{"total-tables":8,"tables-classified":0}'), +(12711, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:00.282758+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.094183+00', 13811, NULL), +(12712, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:00.282804+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:00.286706+00', 3, '{"timezone-id":null}'), +(12713, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:00.286802+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:00.909455+00', 622, '{"updated-tables":0,"total-tables":4}'), +(12714, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:00.909532+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.079108+00', 13169, '{"total-fields":30,"updated-fields":0}'), +(12715, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.079282+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.087331+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12716, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.087402+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.094123+00', 6, NULL), +(12717, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.184763+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.258658+00', 73, NULL), +(12718, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.184784+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.234933+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12719, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.235005+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.250745+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(12720, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.250859+00', TIMESTAMP WITH TIME ZONE '2023-01-06 22:49:14.25857+00', 7, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12721, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 23:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:00:00.371+00', 204, NULL), +(12722, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-06 23:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:00:00.444+00', 294, NULL), +(12723, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:00.219524+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.087515+00', 5867, NULL), +(12724, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:00.222354+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:01.000915+00', 778, '{"timezone-id":"UTC"}'), +(12725, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:01.003837+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:01.569802+00', 565, '{"updated-tables":0,"total-tables":8}'), +(12726, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:01.570279+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:05.854885+00', 4284, '{"total-fields":71,"updated-fields":0}'), +(12727, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:05.855425+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:05.95553+00', 100, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12728, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:05.955625+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.087171+00', 131, NULL), +(12729, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.147069+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.251035+00', 103, NULL), +(12730, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.14709+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.196255+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12731, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.196374+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.207891+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(12732, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.207966+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:19:06.250701+00', 42, '{"total-tables":8,"tables-classified":0}'), +(12733, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:00.358954+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.387944+00', 11028, NULL), +(12734, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:00.358979+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:00.361679+00', 2, '{"timezone-id":null}'), +(12735, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:00.361772+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:00.921194+00', 559, '{"updated-tables":0,"total-tables":4}'), +(12736, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:00.921269+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.380792+00', 10459, '{"total-fields":30,"updated-fields":0}'), +(12737, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.380901+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.385041+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12738, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.385162+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.387891+00', 2, NULL), +(12739, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.456097+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.492849+00', 36, NULL), +(12740, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.456119+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.481694+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12741, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.481776+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.485087+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12742, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.485146+00', TIMESTAMP WITH TIME ZONE '2023-01-06 23:49:11.492772+00', 7, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12743, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 00:00:00.174+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:00:01.865+00', 1691, NULL), +(12744, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 00:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:00:03.143+00', 3000, NULL), +(12745, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:00.298057+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.856106+00', 6558, NULL), +(12746, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:00.302034+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:00.756988+00', 454, '{"timezone-id":"UTC"}'), +(12747, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:00.759633+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:01.225857+00', 466, '{"updated-tables":0,"total-tables":8}'), +(12748, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:01.225971+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.650665+00', 5424, '{"total-fields":71,"updated-fields":0}'), +(12749, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.650816+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.710021+00', 59, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12750, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.710314+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.85558+00', 145, NULL), +(12751, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.926957+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:07.054772+00', 127, NULL), +(12752, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:06.926979+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:07.014575+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12753, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:07.014785+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:07.030361+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(12754, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:07.03057+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:19:07.054559+00', 23, '{"total-tables":8,"tables-classified":0}'), +(12755, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:00.348591+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:18.879433+00', 18530, NULL), +(12756, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:00.348629+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:00.355433+00', 6, '{"timezone-id":null}'), +(12757, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:00.355908+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:01.207375+00', 851, '{"updated-tables":0,"total-tables":4}'), +(12758, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:01.207458+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:18.866289+00', 17658, '{"total-fields":30,"updated-fields":0}'), +(12759, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:18.86643+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:18.873643+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12760, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:18.873742+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:18.879366+00', 5, NULL), +(12761, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.136339+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.212952+00', 76, NULL), +(12762, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.136364+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.180255+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12763, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.180462+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.204029+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(12764, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.204139+00', TIMESTAMP WITH TIME ZONE '2023-01-07 00:49:19.212858+00', 8, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12765, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 01:00:00.096+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:00:00.243+00', 147, NULL), +(12766, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 01:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:00:00.243+00', 115, NULL), +(12767, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:00.273887+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.670164+00', 6396, NULL), +(12768, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:00.279138+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:01.195759+00', 916, '{"timezone-id":"UTC"}'), +(12769, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:01.198571+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:02.051444+00', 852, '{"updated-tables":0,"total-tables":8}'), +(12770, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:02.052016+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.435757+00', 4383, '{"total-fields":71,"updated-fields":0}'), +(12771, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.43584+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.509079+00', 73, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12772, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.509144+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.669646+00', 160, NULL), +(12773, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.74756+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.876111+00', 128, NULL), +(12774, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.747587+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.839307+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12775, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.839433+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.85616+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(12776, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.856283+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:19:06.876017+00', 19, '{"total-tables":8,"tables-classified":0}'), +(12777, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:00.336867+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.101759+00', 14764, NULL), +(12778, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:00.33689+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:00.343632+00', 6, '{"timezone-id":null}'), +(12779, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:00.343767+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:01.383087+00', 1039, '{"updated-tables":0,"total-tables":4}'), +(12780, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:01.383209+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.089362+00', 13706, '{"total-fields":30,"updated-fields":0}'), +(12781, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.089659+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.094277+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12782, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.09435+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.101693+00', 7, NULL), +(12783, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.239211+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.280326+00', 41, NULL), +(12784, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.239234+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.261656+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12785, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.261739+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.265656+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12786, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.265736+00', TIMESTAMP WITH TIME ZONE '2023-01-07 01:49:15.280274+00', 14, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12787, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:00.332+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:01.624+00', 1292, NULL), +(12788, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:00.394+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:01.62+00', 1226, NULL), +(12789, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:03.713721+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:27.266625+00', 23552, NULL), +(12790, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:03.730805+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:08.157017+00', 4426, '{"deleted":0}'), +(12791, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:08.172346+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:00:27.265839+00', 19093, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(12792, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:00.046363+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.88851+00', 1842, NULL), +(12793, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:00.046396+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:00.391348+00', 344, '{"timezone-id":"UTC"}'), +(12794, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:00.391692+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:00.593376+00', 201, '{"updated-tables":0,"total-tables":8}'), +(12795, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:00.59348+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.241522+00', 648, '{"total-fields":71,"updated-fields":0}'), +(12796, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.241593+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.63201+00', 390, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12797, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.632104+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.888397+00', 256, NULL), +(12798, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.934931+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:02.108804+00', 173, NULL), +(12799, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:01.934956+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:02.041115+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12800, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:02.041207+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:02.071925+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(12801, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:02.072058+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:19:02.108746+00', 36, '{"total-tables":8,"tables-classified":0}'), +(12802, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:00.032896+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.510605+00', 8477, NULL), +(12803, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:00.032973+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:00.036366+00', 3, '{"timezone-id":null}'), +(12804, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:00.036506+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:00.217742+00', 181, '{"updated-tables":0,"total-tables":4}'), +(12805, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:00.217813+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.505486+00', 8287, '{"total-fields":30,"updated-fields":0}'), +(12806, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.505618+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.50782+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12807, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.507881+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.510554+00', 2, NULL), +(12808, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.567502+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.618734+00', 51, NULL), +(12809, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.567521+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.610221+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12810, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.610293+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.613543+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12811, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.613638+00', TIMESTAMP WITH TIME ZONE '2023-01-07 02:49:08.618689+00', 5, '{"total-tables":4,"tables-classified":0}'), +(12812, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 03:00:00.231+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:00:00.964+00', 733, NULL), +(12813, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 03:00:00.231+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:00:01.389+00', 1158, NULL), +(12814, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:00.258113+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.422156+00', 6164, NULL), +(12815, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:00.262871+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:00.827193+00', 564, '{"timezone-id":"UTC"}'), +(12816, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:00.830591+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:02.040652+00', 1210, '{"updated-tables":0,"total-tables":8}'), +(12817, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:02.041131+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.171796+00', 4130, '{"total-fields":71,"updated-fields":0}'), +(12818, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.171899+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.223045+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12819, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.223117+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.421797+00', 198, NULL), +(12820, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.501207+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.691612+00', 190, NULL), +(12821, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.501556+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.612063+00', 110, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12822, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.61229+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.632063+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(12823, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.632254+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:19:06.691517+00', 59, '{"total-tables":8,"tables-classified":0}'), +(12824, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:00.283904+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:11.858074+00', 11574, NULL), +(12825, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:00.283951+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:00.285903+00', 1, '{"timezone-id":null}'), +(12826, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:00.28599+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:00.775513+00', 489, '{"updated-tables":0,"total-tables":4}'), +(12827, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:00.775576+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:11.834865+00', 11059, '{"total-fields":30,"updated-fields":0}'), +(12828, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:11.834983+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:11.838885+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12829, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:11.838961+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:11.858014+00', 19, NULL), +(12830, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.025593+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.078108+00', 52, NULL), +(12831, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.025621+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.067474+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12832, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.067565+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.070923+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12833, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.070983+00', TIMESTAMP WITH TIME ZONE '2023-01-07 03:49:12.078064+00', 7, '{"total-tables":4,"tables-classified":0}'), +(12834, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 04:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:00:00.882+00', 670, NULL), +(12835, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 04:00:00.211+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:00:03.444+00', 3233, NULL), +(12836, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:00.395193+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.84278+00', 7447, NULL), +(12837, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:00.402021+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:02.363834+00', 1961, '{"timezone-id":"UTC"}'), +(12838, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:02.366957+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:03.018703+00', 651, '{"updated-tables":0,"total-tables":8}'), +(12839, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:03.018807+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.623096+00', 4604, '{"total-fields":71,"updated-fields":0}'), +(12840, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.623167+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.670611+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12841, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.670681+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.842329+00', 171, NULL), +(12842, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.947992+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:08.08123+00', 133, NULL), +(12843, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:07.948019+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:08.028494+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12844, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:08.028587+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:08.043334+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(12845, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:08.043412+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:19:08.081179+00', 37, '{"total-tables":8,"tables-classified":0}'), +(12846, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:00.218915+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.160187+00', 10941, NULL), +(12847, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:00.218937+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:00.222412+00', 3, '{"timezone-id":null}'), +(12848, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:00.222714+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:00.900494+00', 677, '{"updated-tables":0,"total-tables":4}'), +(12849, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:00.90056+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.15438+00', 10253, '{"total-fields":30,"updated-fields":0}'), +(12850, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.1545+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.157058+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12851, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.157128+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.160141+00', 3, NULL), +(12852, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.258499+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.356974+00', 98, NULL), +(12853, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.258523+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.341573+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12854, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.341671+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.344618+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(12855, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.344682+00', TIMESTAMP WITH TIME ZONE '2023-01-07 04:49:11.356918+00', 12, '{"total-tables":4,"tables-classified":0}'), +(12856, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 05:00:00.242+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:00:00.509+00', 267, NULL), +(12857, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 05:00:00.282+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:00:00.508+00', 226, NULL), +(12858, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:00.222853+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.227711+00', 5004, NULL), +(12859, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:00.232543+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:00.744239+00', 511, '{"timezone-id":"UTC"}'), +(12860, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:00.746739+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:01.16951+00', 422, '{"updated-tables":0,"total-tables":8}'), +(12861, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:01.169771+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.019121+00', 3849, '{"total-fields":71,"updated-fields":0}'), +(12862, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.01927+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.067835+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12863, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.067896+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.227344+00', 159, NULL), +(12864, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.305264+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.408277+00', 103, NULL), +(12865, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.305288+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.375736+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12866, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.375847+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.389743+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(12867, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.389828+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:19:05.408208+00', 18, '{"total-tables":8,"tables-classified":0}'), +(12868, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:00.393128+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.087405+00', 19694, NULL), +(12869, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:00.393163+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:00.39629+00', 3, '{"timezone-id":null}'), +(12870, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:00.396397+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:01.395804+00', 999, '{"updated-tables":0,"total-tables":4}'), +(12871, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:01.395953+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.060581+00', 18664, '{"total-fields":30,"updated-fields":0}'), +(12872, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.060712+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.065935+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12873, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.06601+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.087349+00', 21, NULL), +(12874, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.324585+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.999236+00', 674, NULL), +(12875, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.324604+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.694206+00', 369, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12876, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.694299+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.697528+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12877, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.697593+00', TIMESTAMP WITH TIME ZONE '2023-01-07 05:49:20.999179+00', 301, '{"total-tables":4,"tables-classified":0}'), +(12878, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 06:00:00.842+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:00:01.413+00', 571, NULL), +(12879, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 06:00:00.822+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:00:01.683+00', 861, NULL), +(12880, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:00.479496+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.36274+00', 9883, NULL), +(12881, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:00.486208+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:02.16542+00', 1679, '{"timezone-id":"UTC"}'), +(12882, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:02.168813+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:03.343815+00', 1175, '{"updated-tables":0,"total-tables":8}'), +(12883, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:03.345151+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:09.762375+00', 6417, '{"total-fields":71,"updated-fields":0}'), +(12884, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:09.762461+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:09.898429+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12885, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:09.898503+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.36137+00', 462, NULL), +(12886, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.518442+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.69678+00', 178, NULL), +(12887, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.518466+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.616937+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12888, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.617391+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.64924+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(12889, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.649311+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:19:10.695912+00', 46, '{"total-tables":8,"tables-classified":0}'), +(12890, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:00.342259+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.074242+00', 15731, NULL), +(12891, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:00.342287+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:00.346071+00', 3, '{"timezone-id":null}'), +(12892, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:00.346161+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:01.197375+00', 851, '{"updated-tables":0,"total-tables":4}'), +(12893, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:01.197448+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.069202+00', 14871, '{"total-fields":30,"updated-fields":0}'), +(12894, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.06929+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.071018+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12895, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.071078+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.074185+00', 3, NULL), +(12896, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.168182+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.227923+00', 59, NULL), +(12897, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.168204+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.203835+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12898, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.203914+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.215065+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(12899, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.215257+00', TIMESTAMP WITH TIME ZONE '2023-01-07 06:49:16.227818+00', 12, '{"total-tables":4,"tables-classified":0}'), +(12900, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 07:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:00:01.044+00', 831, NULL), +(12901, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 07:00:00.199+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:00:01.757+00', 1558, NULL), +(12902, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:00.489119+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.461984+00', 4972, NULL), +(12903, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:00.497735+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:01.257885+00', 760, '{"timezone-id":"UTC"}'), +(12904, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:01.260265+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:01.938928+00', 678, '{"updated-tables":0,"total-tables":8}'), +(12905, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:01.940244+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.22502+00', 3284, '{"total-fields":71,"updated-fields":0}'), +(12906, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.225199+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.271741+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12907, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.271841+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.46166+00', 189, NULL), +(12908, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.571963+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.723366+00', 151, NULL), +(12909, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.571986+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.676806+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12910, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.676965+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.692709+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(12911, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.692776+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:19:05.72329+00', 30, '{"total-tables":8,"tables-classified":0}'), +(12912, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:00.321772+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.656814+00', 15335, NULL), +(12913, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:00.321804+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:00.325713+00', 3, '{"timezone-id":null}'), +(12914, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:00.325841+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:00.980891+00', 655, '{"updated-tables":0,"total-tables":4}'), +(12915, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:00.980987+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.645724+00', 14664, '{"total-fields":30,"updated-fields":0}'), +(12916, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.645818+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.652779+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12917, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.652846+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.656757+00', 3, NULL), +(12918, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.744549+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.786592+00', 42, NULL), +(12919, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.74457+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.774425+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12920, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.774511+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.778716+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(12921, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.778823+00', TIMESTAMP WITH TIME ZONE '2023-01-07 07:49:15.78651+00', 7, '{"total-tables":4,"tables-classified":0}'), +(12922, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 08:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:00:00.64+00', 477, NULL), +(12923, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 08:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:00:00.82+00', 657, NULL), +(12924, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:00.330073+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.028347+00', 8698, NULL), +(12925, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:00.335152+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:01.256541+00', 921, '{"timezone-id":"UTC"}'), +(12926, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:01.260721+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:02.138335+00', 877, '{"updated-tables":0,"total-tables":8}'), +(12927, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:02.13844+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:08.746456+00', 6608, '{"total-fields":71,"updated-fields":0}'), +(12928, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:08.74655+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:08.816593+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12929, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:08.816661+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.027946+00', 211, NULL), +(12930, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.161855+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.341582+00', 179, NULL), +(12931, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.161874+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.251897+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12932, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.25198+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.291+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(12933, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.291101+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:19:09.341535+00', 50, '{"total-tables":8,"tables-classified":0}'), +(12934, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:00.416945+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:18.923176+00', 18506, NULL), +(12935, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:00.416973+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:00.420006+00', 3, '{"timezone-id":null}'), +(12936, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:00.420107+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:01.949976+00', 1529, '{"updated-tables":0,"total-tables":4}'), +(12937, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:01.95011+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:18.916777+00', 16966, '{"total-fields":30,"updated-fields":0}'), +(12938, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:18.916874+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:18.91952+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12939, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:18.919584+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:18.922936+00', 3, NULL), +(12940, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.029572+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.090984+00', 61, NULL), +(12941, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.029595+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.067505+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12942, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.067574+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.070239+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(12943, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.070297+00', TIMESTAMP WITH TIME ZONE '2023-01-07 08:49:19.090935+00', 20, '{"total-tables":4,"tables-classified":0}'), +(12944, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 09:00:00.229+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:00:00.887+00', 658, NULL), +(12945, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 09:00:00.229+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:00:01.089+00', 860, NULL), +(12946, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:00.687171+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.055403+00', 11368, NULL), +(12947, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:00.715017+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:02.505559+00', 1790, '{"timezone-id":"UTC"}'), +(12948, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:02.515118+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:03.856592+00', 1341, '{"updated-tables":0,"total-tables":8}'), +(12949, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:03.857047+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:11.483148+00', 7626, '{"total-fields":71,"updated-fields":0}'), +(12950, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:11.483253+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:11.746606+00', 263, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12951, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:11.746715+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.055058+00', 308, NULL), +(12952, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.224886+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.538708+00', 313, NULL), +(12953, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.224907+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.406711+00', 181, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12954, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.4068+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.456673+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(12955, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.456787+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:19:12.538634+00', 81, '{"total-tables":8,"tables-classified":0}'), +(12956, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:00.245809+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.918802+00', 16672, NULL), +(12957, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:00.245838+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:00.248818+00', 2, '{"timezone-id":null}'), +(12958, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:00.249043+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:00.689235+00', 440, '{"updated-tables":0,"total-tables":4}'), +(12959, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:00.689314+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.915756+00', 16226, '{"total-fields":30,"updated-fields":0}'), +(12960, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.915894+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.918064+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12961, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.918129+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.918776+00', 0, NULL), +(12962, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.953667+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.979747+00', 26, NULL), +(12963, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.953685+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.969621+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12964, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.96985+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.972871+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(12965, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.973041+00', TIMESTAMP WITH TIME ZONE '2023-01-07 09:49:16.979608+00', 6, '{"total-tables":4,"tables-classified":0}'), +(12966, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 10:00:00.332+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:00:01.307+00', 975, NULL), +(12967, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 10:00:00.332+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:00:01.609+00', 1277, NULL), +(12968, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:00.289389+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.271758+00', 5982, NULL), +(12969, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:00.294175+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:00.948273+00', 654, '{"timezone-id":"UTC"}'), +(12970, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:00.95138+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:01.730731+00', 779, '{"updated-tables":0,"total-tables":8}'), +(12971, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:01.731621+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:05.733825+00', 4002, '{"total-fields":71,"updated-fields":0}'), +(12972, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:05.733932+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:05.893082+00', 159, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12973, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:05.893471+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.271468+00', 377, NULL), +(12974, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.383901+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.551195+00', 167, NULL), +(12975, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.384262+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.475342+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12976, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.475425+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.501142+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(12977, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.501512+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:19:06.551108+00', 49, '{"total-tables":8,"tables-classified":0}'), +(12978, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:01.537462+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.63106+00', 17093, NULL), +(12979, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:01.552994+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:01.66948+00', 116, '{"timezone-id":null}'), +(12980, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:01.677111+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:02.713323+00', 1036, '{"updated-tables":0,"total-tables":4}'), +(12981, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:02.713889+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.598727+00', 15884, '{"total-fields":30,"updated-fields":0}'), +(12982, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.598854+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.62482+00', 25, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(12983, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.624923+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.630611+00', 5, NULL), +(12984, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.885794+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:19.140828+00', 255, NULL), +(12985, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.88582+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.992973+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(12986, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:18.993047+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:19.02207+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(12987, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:19.022156+00', TIMESTAMP WITH TIME ZONE '2023-01-07 10:49:19.140756+00', 118, '{"total-tables":4,"tables-classified":0}'), +(12988, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 11:00:00.257+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:00:00.822+00', 565, NULL), +(12989, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 11:00:00.257+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:00:00.95+00', 693, NULL), +(12990, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:00.233814+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.172209+00', 5938, NULL), +(12991, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:00.240546+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:00.751411+00', 510, '{"timezone-id":"UTC"}'), +(12992, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:00.755864+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:01.141564+00', 385, '{"updated-tables":0,"total-tables":8}'), +(12993, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:01.146743+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:05.85557+00', 4708, '{"total-fields":71,"updated-fields":0}'), +(12994, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:05.855649+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:05.926673+00', 71, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(12995, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:05.926784+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.172173+00', 245, NULL), +(12996, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.23553+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.386327+00', 150, NULL), +(12997, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.23555+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.296974+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(12998, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.297097+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.316156+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(12999, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.316349+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:19:06.386265+00', 69, '{"total-tables":8,"tables-classified":0}'), +(13000, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:00.384593+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.297032+00', 12912, NULL), +(13001, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:00.384618+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:00.386583+00', 1, '{"timezone-id":null}'), +(13002, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:00.386711+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:00.907922+00', 521, '{"updated-tables":0,"total-tables":4}'), +(13003, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:00.908054+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.291651+00', 12383, '{"total-fields":30,"updated-fields":0}'), +(13004, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.29198+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.294254+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13005, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.294309+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.29697+00', 2, NULL), +(13006, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.367845+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.416976+00', 49, NULL), +(13007, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.367863+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.405626+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13008, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.4057+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.410199+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(13009, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.410278+00', TIMESTAMP WITH TIME ZONE '2023-01-07 11:49:13.416929+00', 6, '{"total-tables":4,"tables-classified":0}'), +(13010, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 12:00:00.309+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:00:01.035+00', 726, NULL), +(13011, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 12:00:00.388+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:00:01.032+00', 644, NULL), +(13012, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:00.254574+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.571067+00', 5316, NULL), +(13013, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:00.259759+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:00.659461+00', 399, '{"timezone-id":"UTC"}'), +(13014, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:00.66452+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:01.091558+00', 427, '{"updated-tables":0,"total-tables":8}'), +(13015, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:01.091676+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.339877+00', 4248, '{"total-fields":71,"updated-fields":0}'), +(13016, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.339967+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.394591+00', 54, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13017, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.394659+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.570697+00', 176, NULL), +(13018, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.674447+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.822195+00', 147, NULL), +(13019, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.674467+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.782769+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13020, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.782922+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.800097+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(13021, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.800214+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:19:05.822102+00', 21, '{"total-tables":8,"tables-classified":0}'), +(13022, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:01.012787+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.609244+00', 13596, NULL), +(13023, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:01.012814+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:01.022615+00', 9, '{"timezone-id":null}'), +(13024, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:01.022707+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:01.916189+00', 893, '{"updated-tables":0,"total-tables":4}'), +(13025, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:01.916262+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.598756+00', 12682, '{"total-fields":30,"updated-fields":0}'), +(13026, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.598876+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.602701+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13027, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.602772+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.60917+00', 6, NULL), +(13028, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.71957+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.780915+00', 61, NULL), +(13029, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.71959+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.764742+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13030, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.764834+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.770566+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(13031, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.770644+00', TIMESTAMP WITH TIME ZONE '2023-01-07 12:49:14.780855+00', 10, '{"total-tables":4,"tables-classified":0}'), +(13032, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 13:00:00.4+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:00:01.685+00', 1285, NULL), +(13033, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 13:00:00.396+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:00:02.545+00', 2149, NULL), +(13034, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:00.910653+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:14.933642+00', 14022, NULL), +(13035, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:00.920922+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:02.803458+00', 1882, '{"timezone-id":"UTC"}'), +(13036, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:02.807908+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:03.807142+00', 999, '{"updated-tables":0,"total-tables":8}'), +(13037, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:03.807666+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:14.362372+00', 10554, '{"total-fields":71,"updated-fields":0}'), +(13038, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:14.362439+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:14.464649+00', 102, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13039, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:14.464716+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:14.933602+00', 468, NULL), +(13040, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.087354+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.289726+00', 202, NULL), +(13041, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.087374+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.24616+00', 158, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13042, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.246249+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.264287+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(13043, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.264362+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:19:15.289679+00', 25, '{"total-tables":8,"tables-classified":0}'), +(13044, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:00.268539+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.474725+00', 15206, NULL), +(13045, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:00.268565+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:00.271878+00', 3, '{"timezone-id":null}'), +(13046, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:00.271964+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:00.96635+00', 694, '{"updated-tables":0,"total-tables":4}'), +(13047, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:00.96742+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.467068+00', 14499, '{"total-fields":30,"updated-fields":0}'), +(13048, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.467238+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.469813+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13049, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.469924+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.474664+00', 4, NULL), +(13050, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.627146+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.702057+00', 74, NULL), +(13051, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.627219+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.684488+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13052, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.684566+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.688299+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13053, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.68836+00', TIMESTAMP WITH TIME ZONE '2023-01-07 13:49:15.702016+00', 13, '{"total-tables":4,"tables-classified":0}'), +(13054, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 14:00:00.245+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:00:01.643+00', 1398, NULL), +(13055, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 14:00:00.241+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:00:02.3+00', 2059, NULL), +(13056, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:00.313779+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.543583+00', 9229, NULL), +(13057, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:00.318936+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:01.39062+00', 1071, '{"timezone-id":"UTC"}'), +(13058, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:01.393158+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:02.453464+00', 1060, '{"updated-tables":0,"total-tables":8}'), +(13059, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:02.453825+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.071657+00', 6617, '{"total-fields":71,"updated-fields":0}'), +(13060, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.071737+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.207713+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13061, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.207797+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.543115+00', 335, NULL), +(13062, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.653061+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.889969+00', 236, NULL), +(13063, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.653084+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.826126+00', 173, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13064, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.826228+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.85101+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(13065, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.851081+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:19:09.889927+00', 38, '{"total-tables":8,"tables-classified":0}'), +(13066, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:00.242907+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.58012+00', 12337, NULL), +(13067, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:00.242938+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:00.249793+00', 6, '{"timezone-id":null}'), +(13068, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:00.249885+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:00.727693+00', 477, '{"updated-tables":0,"total-tables":4}'), +(13069, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:00.727769+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.573934+00', 11846, '{"total-fields":30,"updated-fields":0}'), +(13070, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.574036+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.577331+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13071, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.577427+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.580072+00', 2, NULL), +(13072, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.643247+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.66919+00', 25, NULL), +(13073, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.643268+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.659785+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13074, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.660075+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.663075+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13075, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.663194+00', TIMESTAMP WITH TIME ZONE '2023-01-07 14:49:12.669131+00', 5, '{"total-tables":4,"tables-classified":0}'), +(13076, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 15:00:00.254+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:00:01.304+00', 1050, NULL), +(13077, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 15:00:00.248+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:00:01.635+00', 1387, NULL), +(13078, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:00.968259+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.618951+00', 11650, NULL), +(13079, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:00.974547+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:03.193589+00', 2219, '{"timezone-id":"UTC"}'), +(13080, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:03.1958+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:04.584246+00', 1388, '{"updated-tables":0,"total-tables":8}'), +(13081, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:04.584606+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.336797+00', 7752, '{"total-fields":71,"updated-fields":0}'), +(13082, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.336951+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.40377+00', 66, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13083, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.404909+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.61852+00', 213, NULL), +(13084, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.869298+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:13.051197+00', 181, NULL), +(13085, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.869321+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.968317+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13086, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.9685+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.986952+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(13087, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:12.987329+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:19:13.051079+00', 63, '{"total-tables":8,"tables-classified":0}'), +(13088, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:00.310658+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.041612+00', 14730, NULL), +(13089, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:00.310687+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:00.31529+00', 4, '{"timezone-id":null}'), +(13090, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:00.315376+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:01.36114+00', 1045, '{"updated-tables":0,"total-tables":4}'), +(13091, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:01.361208+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.036853+00', 13675, '{"total-fields":30,"updated-fields":0}'), +(13092, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.037098+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.039263+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13093, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.039307+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.04158+00', 2, NULL), +(13094, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.114331+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.148723+00', 34, NULL), +(13095, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.114349+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.137822+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13096, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.137892+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.141401+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13097, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.141497+00', TIMESTAMP WITH TIME ZONE '2023-01-07 15:49:15.14865+00', 7, '{"total-tables":4,"tables-classified":0}'), +(13098, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 16:00:00.847+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:00:02.991+00', 2144, NULL), +(13099, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 16:00:00.512+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:00:03.024+00', 2512, NULL), +(13100, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:00.680517+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.429702+00', 6749, NULL), +(13101, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:00.690465+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:01.978035+00', 1287, '{"timezone-id":"UTC"}'), +(13102, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:01.981394+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:02.929191+00', 947, '{"updated-tables":0,"total-tables":8}'), +(13103, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:02.929622+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.126426+00', 4196, '{"total-fields":71,"updated-fields":0}'), +(13104, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.126503+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.196871+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13105, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.197861+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.429291+00', 231, NULL), +(13106, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.556755+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.733994+00', 177, NULL), +(13107, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.556774+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.668956+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13108, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.669052+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.699217+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(13109, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.699404+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:19:07.733936+00', 34, '{"total-tables":8,"tables-classified":0}'), +(13110, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:00.252367+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.657701+00', 13405, NULL), +(13111, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:00.252399+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:00.254819+00', 2, '{"timezone-id":null}'), +(13112, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:00.254975+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:00.831721+00', 576, '{"updated-tables":0,"total-tables":4}'), +(13113, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:00.831803+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.651662+00', 12819, '{"total-fields":30,"updated-fields":0}'), +(13114, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.651756+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.654361+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13115, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.654457+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.657619+00', 3, NULL), +(13116, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.797001+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.868119+00', 71, NULL), +(13117, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.797019+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.842788+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13118, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.842914+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.857375+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(13119, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.857486+00', TIMESTAMP WITH TIME ZONE '2023-01-07 16:49:13.868071+00', 10, '{"total-tables":4,"tables-classified":0}'), +(13120, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 17:00:00.217+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:00:00.86+00', 643, NULL), +(13121, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 17:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:00:00.973+00', 760, NULL), +(13122, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:00.250018+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.291434+00', 5041, NULL), +(13123, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:00.260556+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:01.019359+00', 758, '{"timezone-id":"UTC"}'), +(13124, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:01.021289+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:01.710328+00', 689, '{"updated-tables":0,"total-tables":8}'), +(13125, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:01.711452+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.097585+00', 3386, '{"total-fields":71,"updated-fields":0}'), +(13126, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.097685+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.145202+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13127, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.145258+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.290942+00', 145, NULL), +(13128, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.371733+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.484071+00', 112, NULL), +(13129, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.371752+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.429891+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13130, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.42996+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.44485+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(13131, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.444915+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:19:05.484023+00', 39, '{"total-tables":8,"tables-classified":0}'), +(13132, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:00.232098+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.350451+00', 11118, NULL), +(13133, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:00.232126+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:00.235195+00', 3, '{"timezone-id":null}'), +(13134, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:00.23534+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:00.926337+00', 690, '{"updated-tables":0,"total-tables":4}'), +(13135, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:00.926445+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.343167+00', 10416, '{"total-fields":30,"updated-fields":0}'), +(13136, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.343344+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.346629+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13137, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.346689+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.350384+00', 3, NULL), +(13138, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.562594+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.616312+00', 53, NULL), +(13139, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.562618+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.602742+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13140, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.602873+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.606532+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13141, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.60663+00', TIMESTAMP WITH TIME ZONE '2023-01-07 17:49:11.616227+00', 9, '{"total-tables":4,"tables-classified":0}'), +(13142, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 18:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:00:00.671+00', 508, NULL), +(13143, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 18:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:00:00.798+00', 635, NULL), +(13144, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:00.284285+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.697743+00', 6413, NULL), +(13145, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:00.288023+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:01.121849+00', 833, '{"timezone-id":"UTC"}'), +(13146, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:01.123622+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:01.652691+00', 529, '{"updated-tables":0,"total-tables":8}'), +(13147, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:01.653014+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.459583+00', 4806, '{"total-fields":71,"updated-fields":0}'), +(13148, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.459649+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.517565+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13149, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.51764+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.697398+00', 179, NULL), +(13150, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.948245+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:07.224708+00', 276, NULL), +(13151, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:06.948265+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:07.170931+00', 222, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13152, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:07.171235+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:07.186771+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(13153, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:07.186973+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:19:07.224475+00', 37, '{"total-tables":8,"tables-classified":0}'), +(13154, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:00.773195+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.283349+00', 15510, NULL), +(13155, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:00.773224+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:00.775693+00', 2, '{"timezone-id":null}'), +(13156, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:00.775779+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:01.333497+00', 557, '{"updated-tables":0,"total-tables":4}'), +(13157, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:01.33356+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.279649+00', 14946, '{"total-fields":30,"updated-fields":0}'), +(13158, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.279806+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.281649+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13159, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.281705+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.283314+00', 1, NULL), +(13160, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.370881+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.57799+00', 207, NULL), +(13161, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.370925+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.531395+00', 160, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13162, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.531551+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.537305+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(13163, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.537372+00', TIMESTAMP WITH TIME ZONE '2023-01-07 18:49:16.577894+00', 40, '{"total-tables":4,"tables-classified":0}'), +(13164, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 19:00:00.329+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:00:01.245+00', 916, NULL), +(13165, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 19:00:00.329+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:00:01.756+00', 1427, NULL), +(13166, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:00.215282+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.274868+00', 8059, NULL), +(13167, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:00.220012+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:00.98756+00', 767, '{"timezone-id":"UTC"}'), +(13168, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:00.992708+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:01.847147+00', 854, '{"updated-tables":0,"total-tables":8}'), +(13169, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:01.847234+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.067071+00', 6219, '{"total-fields":71,"updated-fields":0}'), +(13170, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.067233+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.136047+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13171, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.136196+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.274487+00', 138, NULL), +(13172, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.33995+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.491067+00', 151, NULL), +(13173, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.33997+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.412769+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13174, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.413095+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.450766+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(13175, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.450907+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:19:08.490959+00', 40, '{"total-tables":8,"tables-classified":0}'), +(13176, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:00.212019+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.785261+00', 19573, NULL), +(13177, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:00.212041+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:00.219097+00', 7, '{"timezone-id":null}'), +(13178, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:00.219282+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:00.592217+00', 372, '{"updated-tables":0,"total-tables":4}'), +(13179, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:00.592307+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.782904+00', 19190, '{"total-fields":30,"updated-fields":0}'), +(13180, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.782987+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.784636+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13181, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.784694+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.78524+00', 0, NULL), +(13182, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.817311+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.838389+00', 21, NULL), +(13183, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.817328+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.827932+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13184, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.828025+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.831117+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13185, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.831214+00', TIMESTAMP WITH TIME ZONE '2023-01-07 19:49:19.838345+00', 7, '{"total-tables":4,"tables-classified":0}'), +(13186, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 20:00:00.434+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:00:00.766+00', 332, NULL), +(13187, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 20:00:00.43+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:00:00.837+00', 407, NULL), +(13188, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:00.152021+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.348933+00', 4196, NULL), +(13189, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:00.155178+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:00.73382+00', 578, '{"timezone-id":"UTC"}'), +(13190, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:00.735206+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:01.225566+00', 490, '{"updated-tables":0,"total-tables":8}'), +(13191, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:01.226196+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.12352+00', 2897, '{"total-fields":71,"updated-fields":0}'), +(13192, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.12362+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.190438+00', 66, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13193, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.190494+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.348529+00', 158, NULL), +(13194, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.3957+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.705017+00', 309, NULL), +(13195, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.39572+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.667638+00', 271, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13196, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.667874+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.686017+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(13197, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.686101+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:19:04.704851+00', 18, '{"total-tables":8,"tables-classified":0}'), +(13198, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:00.90141+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.336059+00', 16434, NULL), +(13199, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:00.90639+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:00.931748+00', 25, '{"timezone-id":null}'), +(13200, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:00.934467+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:02.141976+00', 1207, '{"updated-tables":0,"total-tables":4}'), +(13201, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:02.142083+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.324508+00', 15182, '{"total-fields":30,"updated-fields":0}'), +(13202, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.324598+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.3328+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13203, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.332865+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.336003+00', 3, NULL), +(13204, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.51952+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:22.770754+00', 5251, NULL), +(13205, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:17.519541+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:22.755479+00', 5235, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13206, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:22.755598+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:22.758724+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13207, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:22.758786+00', TIMESTAMP WITH TIME ZONE '2023-01-07 20:49:22.770701+00', 11, '{"total-tables":4,"tables-classified":0}'), +(13208, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:00.659+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:01.122+00', 463, NULL), +(13209, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:00.648+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:01.217+00', 569, NULL), +(13210, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:01.576887+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:14.234975+00', 12658, NULL), +(13211, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:01.62518+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:05.777841+00', 4152, '{"deleted":0}'), +(13212, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:05.782424+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:00:14.234515+00', 8452, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(13213, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.033919+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.402336+00', 1368, NULL), +(13214, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.033965+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.218068+00', 184, '{"timezone-id":"UTC"}'), +(13215, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.218166+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.44457+00', 226, '{"updated-tables":0,"total-tables":8}'), +(13216, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.444834+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.955419+00', 510, '{"total-fields":71,"updated-fields":0}'), +(13217, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:00.955502+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.074938+00', 119, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13218, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.075143+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.402303+00', 327, NULL), +(13219, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.524667+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.742938+00', 218, NULL), +(13220, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.52469+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.673552+00', 148, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13221, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.673647+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.708115+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(13222, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.708209+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:19:01.74288+00', 34, '{"total-tables":8,"tables-classified":0}'), +(13223, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:00.433858+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:13.910152+00', 13476, NULL), +(13224, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:00.436881+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:00.451509+00', 14, '{"timezone-id":null}'), +(13225, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:00.454482+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:00.823598+00', 369, '{"updated-tables":0,"total-tables":4}'), +(13226, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:00.823782+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:13.888526+00', 13064, '{"total-fields":30,"updated-fields":0}'), +(13227, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:13.888634+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:13.902988+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13228, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:13.903061+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:13.910093+00', 7, NULL), +(13229, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.169373+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.361295+00', 191, NULL), +(13230, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.169424+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.255787+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13231, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.256407+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.3044+00', 47, '{"fields-classified":0,"fields-failed":0}'), +(13232, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.304527+00', TIMESTAMP WITH TIME ZONE '2023-01-07 21:49:14.361134+00', 56, '{"total-tables":4,"tables-classified":0}'), +(13233, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 22:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:00:00.455+00', 316, NULL), +(13234, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 22:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:00:00.561+00', 433, NULL), +(13235, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:00.333391+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.867573+00', 5534, NULL), +(13236, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:00.338121+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:00.883433+00', 545, '{"timezone-id":"UTC"}'), +(13237, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:00.887499+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:01.453683+00', 566, '{"updated-tables":0,"total-tables":8}'), +(13238, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:01.454805+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.590542+00', 4135, '{"total-fields":71,"updated-fields":0}'), +(13239, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.590653+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.643134+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13240, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.64345+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.867546+00', 224, NULL), +(13241, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.911862+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:06.078084+00', 166, NULL), +(13242, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:05.911885+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:06.022916+00', 111, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13243, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:06.023298+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:06.05826+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(13244, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:06.058349+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:19:06.077943+00', 19, '{"total-tables":8,"tables-classified":0}'), +(13245, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:01.148136+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:13.954829+00', 12806, NULL), +(13246, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:01.160593+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:01.178575+00', 17, '{"timezone-id":null}'), +(13247, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:01.183779+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:01.936205+00', 752, '{"updated-tables":0,"total-tables":4}'), +(13248, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:01.936504+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:13.93469+00', 11998, '{"total-fields":30,"updated-fields":0}'), +(13249, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:13.934801+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:13.94952+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13250, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:13.949591+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:13.954414+00', 4, NULL), +(13251, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.140398+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.242278+00', 101, NULL), +(13252, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.140454+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.20795+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13253, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.20821+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.220616+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(13254, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.220794+00', TIMESTAMP WITH TIME ZONE '2023-01-07 22:49:14.242227+00', 21, '{"total-tables":4,"tables-classified":0}'), +(13255, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 23:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:00:00.7+00', 570, NULL), +(13256, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-07 23:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:00:00.821+00', 697, NULL), +(13257, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:00.268102+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.176282+00', 6908, NULL), +(13258, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:00.272915+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:00.653802+00', 380, '{"timezone-id":"UTC"}'), +(13259, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:00.655679+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:00.917945+00', 262, '{"updated-tables":0,"total-tables":8}'), +(13260, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:00.918055+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:06.017656+00', 5099, '{"total-fields":71,"updated-fields":0}'), +(13261, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:06.018027+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:06.16467+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13262, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:06.16498+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.176215+00', 1011, NULL), +(13263, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.254347+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.313513+00', 59, NULL), +(13264, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.254372+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.292156+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13265, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.292274+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.30067+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(13266, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.300769+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:19:07.313432+00', 12, '{"total-tables":8,"tables-classified":0}'), +(13267, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:00.254926+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:12.84704+00', 12592, NULL), +(13268, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:00.254953+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:00.257226+00', 2, '{"timezone-id":null}'), +(13269, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:00.257307+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:00.810552+00', 553, '{"updated-tables":0,"total-tables":4}'), +(13270, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:00.810798+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:12.832852+00', 12022, '{"total-fields":30,"updated-fields":0}'), +(13271, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:12.832949+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:12.837133+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13272, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:12.837196+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:12.846978+00', 9, NULL), +(13273, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.010858+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.093663+00', 82, NULL), +(13274, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.010882+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.063606+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13275, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.063728+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.075981+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(13276, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.076069+00', TIMESTAMP WITH TIME ZONE '2023-01-07 23:49:13.093589+00', 17, '{"total-tables":4,"tables-classified":0}'), +(13277, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 00:00:00.55+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:00:02.888+00', 2338, NULL), +(13278, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 00:00:00.499+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:00:04.578+00', 4079, NULL), +(13279, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:00.372799+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:07.92902+00', 7556, NULL), +(13280, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:00.376945+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:00.913738+00', 536, '{"timezone-id":"UTC"}'), +(13281, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:00.916351+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:01.649302+00', 732, '{"updated-tables":0,"total-tables":8}'), +(13282, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:01.649417+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:07.421157+00', 5771, '{"total-fields":71,"updated-fields":0}'), +(13283, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:07.421261+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:07.470742+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13284, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:07.470796+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:07.925425+00', 454, NULL), +(13285, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.310959+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.51139+00', 200, NULL), +(13286, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.310984+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.480746+00', 169, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13287, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.480869+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.489593+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(13288, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.489662+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:19:08.511331+00', 21, '{"total-tables":8,"tables-classified":0}'), +(13289, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:00.193315+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.553641+00', 12360, NULL), +(13290, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:00.193341+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:00.195768+00', 2, '{"timezone-id":null}'), +(13291, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:00.195846+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:00.631121+00', 435, '{"updated-tables":0,"total-tables":4}'), +(13292, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:00.631191+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.530472+00', 11899, '{"total-fields":30,"updated-fields":0}'), +(13293, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.530591+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.533558+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13294, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.533624+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.55357+00', 19, NULL), +(13295, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.74198+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.824899+00', 82, NULL), +(13296, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.742021+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.789142+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13297, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.789217+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.803419+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(13298, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.803529+00', TIMESTAMP WITH TIME ZONE '2023-01-08 00:49:12.824831+00', 21, '{"total-tables":4,"tables-classified":0}'), +(13299, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 01:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:00:00.541+00', 400, NULL), +(13300, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 01:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:00:00.622+00', 508, NULL), +(13301, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:00.256531+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.793447+00', 5536, NULL), +(13302, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:00.266042+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:00.846287+00', 580, '{"timezone-id":"UTC"}'), +(13303, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:00.84849+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:01.416692+00', 568, '{"updated-tables":0,"total-tables":8}'), +(13304, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:01.417393+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.64938+00', 4231, '{"total-fields":71,"updated-fields":0}'), +(13305, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.64945+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.686926+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13306, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.686977+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.793152+00', 106, NULL), +(13307, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.861908+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.982949+00', 121, NULL), +(13308, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.861928+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.932867+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13309, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.932952+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.9456+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(13310, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.94567+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:19:05.982902+00', 37, '{"total-tables":8,"tables-classified":0}'), +(13311, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:00.223993+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:10.947665+00', 10723, NULL), +(13312, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:00.224017+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:00.227388+00', 3, '{"timezone-id":null}'), +(13313, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:00.227646+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:00.645512+00', 417, '{"updated-tables":0,"total-tables":4}'), +(13314, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:00.645581+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:10.942798+00', 10297, '{"total-fields":30,"updated-fields":0}'), +(13315, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:10.942862+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:10.944857+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13316, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:10.944904+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:10.947622+00', 2, NULL), +(13317, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.007299+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.044334+00', 37, NULL), +(13318, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.00734+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.022314+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13319, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.022381+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.025143+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(13320, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.025196+00', TIMESTAMP WITH TIME ZONE '2023-01-08 01:49:11.044284+00', 19, '{"total-tables":4,"tables-classified":0}'), +(13321, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:00.296+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:02.992+00', 2696, NULL), +(13322, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:00.331+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:02.795+00', 2464, NULL), +(13323, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:03.814301+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:19.164708+00', 15350, NULL), +(13324, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:03.834423+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:05.592658+00', 1758, '{"deleted":0}'), +(13325, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:05.597599+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:00:19.16376+00', 13566, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(13326, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:00.056963+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.40617+00', 2349, NULL), +(13327, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:00.057007+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:00.557185+00', 500, '{"timezone-id":"UTC"}'), +(13328, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:00.557282+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:00.910246+00', 352, '{"updated-tables":0,"total-tables":8}'), +(13329, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:00.910351+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:01.903384+00', 993, '{"total-fields":71,"updated-fields":0}'), +(13330, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:01.90345+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.040405+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13331, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.04051+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.406128+00', 365, NULL), +(13332, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.460592+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.891372+00', 430, NULL), +(13333, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.460612+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.618896+00', 158, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13334, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.619012+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.747512+00', 128, '{"fields-classified":0,"fields-failed":0}'), +(13335, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.747638+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:19:02.891298+00', 143, '{"total-tables":8,"tables-classified":0}'), +(13336, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:00.106754+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.157392+00', 11050, NULL), +(13337, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:00.106774+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:00.110062+00', 3, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13338, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:00.110156+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:00.308257+00', 198, '{"updated-tables":0,"total-tables":4}'), +(13339, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:00.308489+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.124523+00', 10816, '{"total-fields":30,"updated-fields":0}'), +(13340, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.124639+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.130903+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13341, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.130993+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.157339+00', 26, NULL), +(13342, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.578991+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.616293+00', 37, NULL), +(13343, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.579014+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.601951+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13344, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.602026+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.605108+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13345, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.605181+00', TIMESTAMP WITH TIME ZONE '2023-01-08 02:49:11.616253+00', 11, '{"total-tables":4,"tables-classified":0}'), +(13346, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 03:00:00.609+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:00:02.105+00', 1496, NULL), +(13347, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 03:00:00.609+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:00:03.253+00', 2644, NULL), +(13348, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:00.498367+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.435037+00', 6936, NULL), +(13349, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:00.505335+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:01.755593+00', 1250, '{"timezone-id":"UTC"}'), +(13350, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:01.759981+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:03.141791+00', 1381, '{"updated-tables":0,"total-tables":8}'), +(13351, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:03.142644+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.16731+00', 4024, '{"total-fields":71,"updated-fields":0}'), +(13352, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.167378+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.256693+00', 89, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13353, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.256797+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.434407+00', 177, NULL), +(13354, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.54379+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.694428+00', 150, NULL), +(13355, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.543811+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.628609+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13356, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.628906+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.651949+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(13357, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.652289+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:19:07.694341+00', 42, '{"total-tables":8,"tables-classified":0}'), +(13358, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:01.141107+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.194449+00', 13053, NULL), +(13359, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:01.141133+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:01.14721+00', 6, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13360, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:01.147292+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:03.161831+00', 2014, '{"updated-tables":0,"total-tables":4}'), +(13361, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:03.161898+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.188831+00', 11026, '{"total-fields":30,"updated-fields":0}'), +(13362, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.188946+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.191132+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13363, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.191184+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.194401+00', 3, NULL), +(13364, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.442051+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.473651+00', 31, NULL), +(13365, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.442079+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.46547+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13366, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.465538+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.468173+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(13367, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.468223+00', TIMESTAMP WITH TIME ZONE '2023-01-08 03:49:14.473611+00', 5, '{"total-tables":4,"tables-classified":0}'), +(13368, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 04:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:00:00.95+00', 793, NULL), +(13369, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 04:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:00:01.143+00', 987, NULL), +(13370, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:00.344371+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.596561+00', 7252, NULL), +(13371, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:00.351745+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:01.656103+00', 1304, '{"timezone-id":"UTC"}'), +(13372, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:01.660731+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:02.677103+00', 1016, '{"updated-tables":0,"total-tables":8}'), +(13373, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:02.677216+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.36767+00', 4690, '{"total-fields":71,"updated-fields":0}'), +(13374, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.367788+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.429747+00', 61, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13375, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.429851+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.594305+00', 164, NULL), +(13376, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.75874+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.893283+00', 134, NULL), +(13377, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.758761+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.830023+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13378, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.830096+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.845735+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(13379, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.845952+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:19:07.893236+00', 47, '{"total-tables":8,"tables-classified":0}'), +(13380, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:00.217859+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.072099+00', 11854, NULL), +(13381, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:00.217879+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:00.220483+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13382, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:00.220562+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:00.81434+00', 593, '{"updated-tables":0,"total-tables":4}'), +(13383, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:00.814416+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.066072+00', 11251, '{"total-fields":30,"updated-fields":0}'), +(13384, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.066417+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.069839+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13385, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.070044+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.071954+00', 1, NULL), +(13386, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.129552+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.195504+00', 65, NULL), +(13387, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.129572+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.187168+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13388, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.187234+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.1903+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13389, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.190361+00', TIMESTAMP WITH TIME ZONE '2023-01-08 04:49:12.195459+00', 5, '{"total-tables":4,"tables-classified":0}'), +(13390, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 05:00:01.033+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:00:02.915+00', 1882, NULL), +(13391, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 05:00:01.033+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:00:03.315+00', 2282, NULL), +(13392, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:00.377237+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:06.999367+00', 6622, NULL), +(13393, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:00.383339+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:01.488913+00', 1105, '{"timezone-id":"UTC"}'), +(13394, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:01.493396+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:02.430884+00', 937, '{"updated-tables":0,"total-tables":8}'), +(13395, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:02.431332+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:05.981567+00', 3550, '{"total-fields":71,"updated-fields":0}'), +(13396, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:05.981836+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:06.746225+00', 764, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13397, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:06.746303+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:06.999314+00', 253, NULL), +(13398, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.090308+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.300757+00', 210, NULL), +(13399, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.090332+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.244749+00', 154, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13400, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.244834+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.27847+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(13401, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.278553+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:19:07.300702+00', 22, '{"total-tables":8,"tables-classified":0}'), +(13402, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:00.250497+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.80751+00', 12557, NULL), +(13403, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:00.250522+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:00.253382+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13404, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:00.253461+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:00.787398+00', 533, '{"updated-tables":0,"total-tables":4}'), +(13405, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:00.787569+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.796763+00', 12009, '{"total-fields":30,"updated-fields":0}'), +(13406, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.796873+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.804615+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13407, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.804675+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.807448+00', 2, NULL), +(13408, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.880598+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.953636+00', 73, NULL), +(13409, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.880619+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.911278+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13410, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.911364+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.939472+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(13411, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.939541+00', TIMESTAMP WITH TIME ZONE '2023-01-08 05:49:12.953558+00', 14, '{"total-tables":4,"tables-classified":0}'), +(13412, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 06:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:00:00.706+00', 531, NULL), +(13413, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 06:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:00:00.897+00', 732, NULL), +(13414, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:00.996316+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:07.853861+00', 6857, NULL), +(13415, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:01.000383+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:02.018721+00', 1018, '{"timezone-id":"UTC"}'), +(13416, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:02.022015+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:02.612249+00', 590, '{"updated-tables":0,"total-tables":8}'), +(13417, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:02.61235+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:07.578288+00', 4965, '{"total-fields":71,"updated-fields":0}'), +(13418, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:07.578381+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:07.637072+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13419, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:07.637143+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:07.852996+00', 215, NULL), +(13420, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.115418+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.919324+00', 803, NULL), +(13421, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.115868+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.679513+00', 563, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13422, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.679611+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.727514+00', 47, '{"fields-classified":0,"fields-failed":0}'), +(13423, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.727788+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:19:08.919249+00', 191, '{"total-tables":8,"tables-classified":0}'), +(13424, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:00.43961+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.083569+00', 15643, NULL), +(13425, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:00.439629+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:00.442599+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13426, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:00.442682+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:00.961129+00', 518, '{"updated-tables":0,"total-tables":4}'), +(13427, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:00.961208+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.076188+00', 15114, '{"total-fields":30,"updated-fields":0}'), +(13428, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.0763+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.079302+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13429, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.07938+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.083514+00', 4, NULL), +(13430, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.161177+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.199823+00', 38, NULL), +(13431, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.161198+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.18936+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13432, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.18962+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.193478+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13433, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.193632+00', TIMESTAMP WITH TIME ZONE '2023-01-08 06:49:16.199705+00', 6, '{"total-tables":4,"tables-classified":0}'), +(13434, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 07:00:00.22+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:00:01.013+00', 793, NULL), +(13435, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 07:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:00:01.268+00', 1056, NULL), +(13436, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:00.298911+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.384983+00', 6086, NULL), +(13437, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:00.308329+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:01.332116+00', 1023, '{"timezone-id":"UTC"}'), +(13438, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:01.334651+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:02.182379+00', 847, '{"updated-tables":0,"total-tables":8}'), +(13439, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:02.182762+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.18596+00', 4003, '{"total-fields":71,"updated-fields":0}'), +(13440, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.186128+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.235689+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13441, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.235921+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.384759+00', 148, NULL), +(13442, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.520375+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.707366+00', 186, NULL), +(13443, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.520393+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.616467+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13444, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.616697+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.639047+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(13445, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.639118+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:19:06.707309+00', 68, '{"total-tables":8,"tables-classified":0}'), +(13446, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:00.209769+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.656236+00', 11446, NULL), +(13447, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:00.209807+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:00.211638+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13448, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:00.211751+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:00.716281+00', 504, '{"updated-tables":0,"total-tables":4}'), +(13449, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:00.716542+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.642866+00', 10926, '{"total-fields":30,"updated-fields":0}'), +(13450, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.643166+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.651076+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13451, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.651153+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.655393+00', 4, NULL), +(13452, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.756989+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.819951+00', 62, NULL), +(13453, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.757021+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.795745+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13454, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.795832+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.79993+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(13455, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.800006+00', TIMESTAMP WITH TIME ZONE '2023-01-08 07:49:11.819892+00', 19, '{"total-tables":4,"tables-classified":0}'), +(13456, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 08:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:00:00.646+00', 521, NULL), +(13457, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 08:00:00.108+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:00:00.841+00', 733, NULL), +(13458, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:00.378838+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.313857+00', 5935, NULL), +(13459, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:00.384583+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:02.104182+00', 1719, '{"timezone-id":"UTC"}'), +(13460, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:02.106591+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:02.647256+00', 540, '{"updated-tables":0,"total-tables":8}'), +(13461, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:02.647778+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.128184+00', 3480, '{"total-fields":71,"updated-fields":0}'), +(13462, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.128253+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.176161+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13463, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.176227+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.313525+00', 137, NULL), +(13464, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.410063+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.525789+00', 115, NULL), +(13465, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.410095+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.489909+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13466, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.489987+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.504489+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(13467, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.504556+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:19:06.525716+00', 21, '{"total-tables":8,"tables-classified":0}'), +(13468, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:00.59488+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.748605+00', 15153, NULL), +(13469, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:00.594904+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:00.597368+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13470, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:00.597435+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:01.269716+00', 672, '{"updated-tables":0,"total-tables":4}'), +(13471, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:01.26978+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.73721+00', 14467, '{"total-fields":30,"updated-fields":0}'), +(13472, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.737311+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.743682+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13473, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.743774+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.748547+00', 4, NULL), +(13474, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.872126+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.972154+00', 100, NULL), +(13475, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.872148+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.925219+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13476, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.925474+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.932587+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(13477, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.932672+00', TIMESTAMP WITH TIME ZONE '2023-01-08 08:49:15.972079+00', 39, '{"total-tables":4,"tables-classified":0}'), +(13478, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 09:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:00:00.528+00', 386, NULL), +(13479, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 09:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:00:00.825+00', 707, NULL), +(13480, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:00.427543+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.092947+00', 7665, NULL), +(13481, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:00.432377+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:02.701384+00', 2269, '{"timezone-id":"UTC"}'), +(13482, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:02.702768+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:03.149833+00', 447, '{"updated-tables":0,"total-tables":8}'), +(13483, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:03.150272+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:07.857871+00', 4707, '{"total-fields":71,"updated-fields":0}'), +(13484, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:07.857937+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:07.92432+00', 66, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13485, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:07.924383+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.09239+00', 168, NULL), +(13486, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.219446+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.38754+00', 168, NULL), +(13487, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.21947+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.326007+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13488, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.326123+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.357791+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(13489, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.357883+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:19:08.387481+00', 29, '{"total-tables":8,"tables-classified":0}'), +(13490, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:00.260573+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.892903+00', 12632, NULL), +(13491, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:00.260598+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:00.262291+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13492, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:00.262369+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:01.096166+00', 833, '{"updated-tables":0,"total-tables":4}'), +(13493, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:01.096263+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.88622+00', 11789, '{"total-fields":30,"updated-fields":0}'), +(13494, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.886359+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.890123+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13495, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.890195+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.892852+00', 2, NULL), +(13496, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.963124+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:13.009014+00', 45, NULL), +(13497, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:12.963144+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:13.000382+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13498, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:13.000511+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:13.003779+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13499, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:13.003845+00', TIMESTAMP WITH TIME ZONE '2023-01-08 09:49:13.00897+00', 5, '{"total-tables":4,"tables-classified":0}'), +(13500, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 10:00:00.327+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:00:01.652+00', 1325, NULL), +(13501, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 10:00:00.327+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:00:02.16+00', 1833, NULL), +(13502, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:00.573631+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.781407+00', 5207, NULL), +(13503, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:00.58011+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:02.405239+00', 1825, '{"timezone-id":"UTC"}'), +(13504, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:02.41286+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:03.005856+00', 592, '{"updated-tables":0,"total-tables":8}'), +(13505, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:03.006378+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.583015+00', 2576, '{"total-fields":71,"updated-fields":0}'), +(13506, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.583102+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.632861+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13507, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.632933+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.780816+00', 147, NULL), +(13508, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.874948+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:06.006089+00', 131, NULL), +(13509, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.874968+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.960318+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13510, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.960396+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.980193+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(13511, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:05.980338+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:19:06.006038+00', 25, '{"total-tables":8,"tables-classified":0}'), +(13512, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:00.346762+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:14.648901+00', 14302, NULL), +(13513, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:00.346794+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:00.350115+00', 3, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13514, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:00.350216+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:01.048494+00', 698, '{"updated-tables":0,"total-tables":4}'), +(13515, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:01.048573+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:14.641744+00', 13593, '{"total-fields":30,"updated-fields":0}'), +(13516, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:14.641867+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:14.644361+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13517, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:14.644473+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:14.648817+00', 4, NULL), +(13518, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.147846+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.198708+00', 50, NULL), +(13519, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.147868+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.175932+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13520, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.176+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.182336+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(13521, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.182474+00', TIMESTAMP WITH TIME ZONE '2023-01-08 10:49:15.198653+00', 16, '{"total-tables":4,"tables-classified":0}'), +(13522, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 11:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:00:00.747+00', 526, NULL), +(13523, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 11:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:00:00.798+00', 577, NULL), +(13524, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:00.345797+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.475206+00', 10129, NULL), +(13525, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:00.350675+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:01.634285+00', 1283, '{"timezone-id":"UTC"}'), +(13526, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:01.781457+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:02.45624+00', 674, '{"updated-tables":0,"total-tables":8}'), +(13527, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:02.456358+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.117627+00', 7661, '{"total-fields":71,"updated-fields":0}'), +(13528, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.117909+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.223872+00', 105, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13529, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.223948+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.474719+00', 250, NULL), +(13530, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.594845+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.764786+00', 169, NULL), +(13531, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.594876+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.712039+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13532, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.712314+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.729535+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(13533, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.729791+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:19:10.764591+00', 34, '{"total-tables":8,"tables-classified":0}'), +(13534, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:00.337012+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.142845+00', 18805, NULL), +(13535, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:00.337176+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:00.341274+00', 4, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13536, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:00.341364+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:01.110296+00', 768, '{"updated-tables":0,"total-tables":4}'), +(13537, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:01.11036+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.135091+00', 18024, '{"total-fields":30,"updated-fields":0}'), +(13538, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.135199+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.138609+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13539, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.138692+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.142765+00', 4, NULL), +(13540, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.382817+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.48497+00', 102, NULL), +(13541, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.38284+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.464772+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13542, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.464969+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.474134+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(13543, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.474353+00', TIMESTAMP WITH TIME ZONE '2023-01-08 11:49:19.484892+00', 10, '{"total-tables":4,"tables-classified":0}'), +(13544, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 12:00:02.091+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:00:04.611+00', 2520, NULL), +(13545, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 12:00:01.999+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:00:04.612+00', 2613, NULL), +(13546, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:00.402808+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:08.798102+00', 8395, NULL), +(13547, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:00.412385+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:02.156373+00', 1743, '{"timezone-id":"UTC"}'), +(13548, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:02.162434+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:03.311569+00', 1149, '{"updated-tables":0,"total-tables":8}'), +(13549, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:03.311919+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:08.43818+00', 5126, '{"total-fields":71,"updated-fields":0}'), +(13550, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:08.438246+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:08.518175+00', 79, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13551, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:08.518232+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:08.797633+00', 279, NULL), +(13552, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.074641+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.2592+00', 184, NULL), +(13553, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.074664+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.202429+00', 127, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13554, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.202522+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.230039+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(13555, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.230115+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:19:09.25909+00', 28, '{"total-tables":8,"tables-classified":0}'), +(13556, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:00.394459+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.270279+00', 13875, NULL), +(13557, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:00.394488+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:00.397305+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13558, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:00.397393+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:01.003119+00', 605, '{"updated-tables":0,"total-tables":4}'), +(13559, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:01.003184+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.257697+00', 13254, '{"total-fields":30,"updated-fields":0}'), +(13560, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.258317+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.262584+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13561, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.262653+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.270213+00', 7, NULL), +(13562, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.401138+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.460088+00', 58, NULL), +(13563, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.401156+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.437497+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13564, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.437802+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.447904+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(13565, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.448138+00', TIMESTAMP WITH TIME ZONE '2023-01-08 12:49:14.459865+00', 11, '{"total-tables":4,"tables-classified":0}'), +(13566, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 13:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:00:00.366+00', 229, NULL), +(13567, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 13:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:00:00.459+00', 322, NULL), +(13568, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:00.306415+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.680384+00', 5373, NULL), +(13569, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:00.310477+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:00.965899+00', 655, '{"timezone-id":"UTC"}'), +(13570, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:00.971178+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:01.54922+00', 578, '{"updated-tables":0,"total-tables":8}'), +(13571, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:01.549709+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.446069+00', 3896, '{"total-fields":71,"updated-fields":0}'), +(13572, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.446271+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.504996+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13573, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.505077+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.680334+00', 175, NULL), +(13574, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.772521+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.892579+00', 120, NULL), +(13575, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.772544+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.838081+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13576, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.838188+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.851274+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(13577, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.851344+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:19:05.892524+00', 41, '{"total-tables":8,"tables-classified":0}'), +(13578, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:00.648132+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.375051+00', 11726, NULL), +(13579, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:00.648154+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:00.650923+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13580, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:00.651009+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:01.120805+00', 469, '{"updated-tables":0,"total-tables":4}'), +(13581, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:01.120882+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.371031+00', 11250, '{"total-fields":30,"updated-fields":0}'), +(13582, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.371099+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.372983+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13583, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.373056+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.375017+00', 1, NULL), +(13584, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.440557+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.522445+00', 81, NULL), +(13585, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.440581+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.503528+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13586, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.503612+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.51499+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(13587, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.515067+00', TIMESTAMP WITH TIME ZONE '2023-01-08 13:49:12.522383+00', 7, '{"total-tables":4,"tables-classified":0}'), +(13588, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 14:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:00:00.983+00', 771, NULL), +(13589, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 14:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:00:01.312+00', 1103, NULL), +(13590, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:00.323877+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.845177+00', 6521, NULL), +(13591, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:00.328997+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:01.417051+00', 1088, '{"timezone-id":"UTC"}'), +(13592, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:01.424892+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:03.531587+00', 2106, '{"updated-tables":0,"total-tables":8}'), +(13593, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:03.531964+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.592471+00', 3060, '{"total-fields":71,"updated-fields":0}'), +(13594, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.592723+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.692271+00', 99, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13595, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.692427+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.844559+00', 152, NULL), +(13596, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.948714+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:07.117752+00', 169, NULL), +(13597, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:06.94874+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:07.043849+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13598, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:07.043905+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:07.060513+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(13599, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:07.06058+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:19:07.1177+00', 57, '{"total-tables":8,"tables-classified":0}'), +(13600, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:00.864528+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.304569+00', 19440, NULL), +(13601, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:00.864556+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:00.867433+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13602, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:00.867547+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:02.259455+00', 1391, '{"updated-tables":0,"total-tables":4}'), +(13603, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:02.259521+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.286596+00', 18027, '{"total-fields":30,"updated-fields":0}'), +(13604, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.286724+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.297318+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13605, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.297389+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.304507+00', 7, NULL), +(13606, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.417615+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.520153+00', 102, NULL), +(13607, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.417637+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.462301+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13608, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.462418+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.466481+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(13609, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.466593+00', TIMESTAMP WITH TIME ZONE '2023-01-08 14:49:20.520069+00', 53, '{"total-tables":4,"tables-classified":0}'), +(13610, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 15:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:00:00.921+00', 780, NULL), +(13611, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 15:00:00.409+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:00:00.92+00', 511, NULL), +(13612, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:00.237226+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.684732+00', 6447, NULL), +(13613, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:00.24228+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:01.094028+00', 851, '{"timezone-id":"UTC"}'), +(13614, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:01.095828+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:01.591449+00', 495, '{"updated-tables":0,"total-tables":8}'), +(13615, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:01.591907+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.428942+00', 4837, '{"total-fields":71,"updated-fields":0}'), +(13616, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.42905+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.499065+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13617, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.49927+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.684326+00', 185, NULL), +(13618, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.845901+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.959214+00', 113, NULL), +(13619, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.845924+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.925518+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13620, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.925606+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.939088+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(13621, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.939219+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:19:06.959082+00', 19, '{"total-tables":8,"tables-classified":0}'), +(13622, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:00.323988+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.100233+00', 13776, NULL), +(13623, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:00.324014+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:00.32776+00', 3, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13624, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:00.327849+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:00.892818+00', 564, '{"updated-tables":0,"total-tables":4}'), +(13625, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:00.892893+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.093168+00', 13200, '{"total-fields":30,"updated-fields":0}'), +(13626, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.093256+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.09731+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13627, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.097384+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.100163+00', 2, NULL), +(13628, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.170089+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.213001+00', 42, NULL), +(13629, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.170108+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.194674+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13630, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.194735+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.198346+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13631, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.198428+00', TIMESTAMP WITH TIME ZONE '2023-01-08 15:49:14.212955+00', 14, '{"total-tables":4,"tables-classified":0}'), +(13632, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 16:00:00.229+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:00:01.203+00', 974, NULL), +(13633, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 16:00:00.229+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:00:01.735+00', 1506, NULL), +(13634, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:00.445707+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.84751+00', 4401, NULL), +(13635, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:00.45083+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:01.41171+00', 960, '{"timezone-id":"UTC"}'), +(13636, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:01.419567+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:02.114467+00', 694, '{"updated-tables":0,"total-tables":8}'), +(13637, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:02.114986+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.602118+00', 2487, '{"total-fields":71,"updated-fields":0}'), +(13638, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.602291+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.652635+00', 50, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13639, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.652831+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.847182+00', 194, NULL), +(13640, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.949443+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:05.054444+00', 105, NULL), +(13641, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:04.949467+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:05.008522+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13642, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:05.008638+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:05.028667+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(13643, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:05.028794+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:19:05.05437+00', 25, '{"total-tables":8,"tables-classified":0}'), +(13644, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:00.239372+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:13.087371+00', 12847, NULL), +(13645, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:00.239397+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:00.242739+00', 3, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13646, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:00.243033+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:01.04872+00', 805, '{"updated-tables":0,"total-tables":4}'), +(13647, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:01.048815+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:13.075679+00', 12026, '{"total-fields":30,"updated-fields":0}'), +(13648, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:13.076248+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:13.079144+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13649, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:13.079447+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:13.087225+00', 7, NULL), +(13650, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.292283+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.321774+00', 29, NULL), +(13651, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.292301+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.30817+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13652, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.308234+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.311166+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(13653, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.311226+00', TIMESTAMP WITH TIME ZONE '2023-01-08 16:49:14.321731+00', 10, '{"total-tables":4,"tables-classified":0}'), +(13654, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 17:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:00:00.405+00', 249, NULL), +(13655, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 17:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:00:00.5+00', 348, NULL), +(13656, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:00.184647+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.051694+00', 4867, NULL), +(13657, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:00.188299+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:00.731011+00', 542, '{"timezone-id":"UTC"}'), +(13658, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:00.733184+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:01.156912+00', 423, '{"updated-tables":0,"total-tables":8}'), +(13659, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:01.157027+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:04.703735+00', 3546, '{"total-fields":71,"updated-fields":0}'), +(13660, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:04.704024+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:04.743246+00', 39, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13661, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:04.743305+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.051261+00', 307, NULL), +(13662, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.127089+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.238305+00', 111, NULL), +(13663, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.12711+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.180575+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13664, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.180789+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.193451+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(13665, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.193517+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:19:05.238218+00', 44, '{"total-tables":8,"tables-classified":0}'), +(13666, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:00.267943+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.720198+00', 10452, NULL), +(13667, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:00.267967+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:00.269761+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13668, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:00.269836+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:00.717003+00', 447, '{"updated-tables":0,"total-tables":4}'), +(13669, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:00.717076+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.718155+00', 10001, '{"total-fields":30,"updated-fields":0}'), +(13670, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.718218+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.719537+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13671, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.719581+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.720181+00', 0, NULL), +(13672, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.816385+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.8609+00', 44, NULL), +(13673, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.816411+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.843475+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13674, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.843554+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.849899+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(13675, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.849961+00', TIMESTAMP WITH TIME ZONE '2023-01-08 17:49:10.860853+00', 10, '{"total-tables":4,"tables-classified":0}'), +(13676, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 18:00:00.261+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:00:01.348+00', 1087, NULL), +(13677, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 18:00:00.237+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:00:01.968+00', 1731, NULL), +(13678, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:00.653667+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.023588+00', 4369, NULL), +(13679, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:00.662522+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:01.325036+00', 662, '{"timezone-id":"UTC"}'), +(13680, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:01.327714+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:02.006027+00', 678, '{"updated-tables":0,"total-tables":8}'), +(13681, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:02.006419+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:04.632577+00', 2626, '{"total-fields":71,"updated-fields":0}'), +(13682, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:04.632659+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:04.696552+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13683, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:04.696615+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.023091+00', 326, NULL), +(13684, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.235436+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.530371+00', 294, NULL), +(13685, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.235456+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.4727+00', 237, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13686, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.472758+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.486753+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(13687, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.486816+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:19:05.53032+00', 43, '{"total-tables":8,"tables-classified":0}'), +(13688, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:00.229799+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.553147+00', 12323, NULL), +(13689, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:00.229823+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:00.23233+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13690, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:00.232453+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:00.595697+00', 363, '{"updated-tables":0,"total-tables":4}'), +(13691, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:00.595793+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.545706+00', 11949, '{"total-fields":30,"updated-fields":0}'), +(13692, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.546245+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.550102+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13693, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.550223+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.553094+00', 2, NULL), +(13694, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.672638+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.72997+00', 57, NULL), +(13695, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.672658+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.703673+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13696, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.703754+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.708868+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(13697, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.709151+00', TIMESTAMP WITH TIME ZONE '2023-01-08 18:49:12.729357+00', 20, '{"total-tables":4,"tables-classified":0}'), +(13698, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 19:00:00.449+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:00:01.653+00', 1204, NULL), +(13699, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 19:00:00.178+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:00:02.062+00', 1884, NULL), +(13700, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:00.311762+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.155327+00', 6843, NULL), +(13701, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:00.319015+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:01.241653+00', 922, '{"timezone-id":"UTC"}'), +(13702, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:01.243277+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:01.931473+00', 688, '{"updated-tables":0,"total-tables":8}'), +(13703, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:01.931945+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:06.923288+00', 4991, '{"total-fields":71,"updated-fields":0}'), +(13704, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:06.923513+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.00541+00', 81, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13705, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.005554+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.1544+00', 148, NULL), +(13706, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.276534+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.432868+00', 156, NULL), +(13707, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.276554+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.341339+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13708, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.341467+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.370907+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(13709, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.371017+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:19:07.432755+00', 61, '{"total-tables":8,"tables-classified":0}'), +(13710, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:00.254243+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.267283+00', 13013, NULL), +(13711, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:00.254266+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:00.25692+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13712, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:00.257023+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:00.869516+00', 612, '{"updated-tables":0,"total-tables":4}'), +(13713, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:00.869584+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.250312+00', 12380, '{"total-fields":30,"updated-fields":0}'), +(13714, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.250456+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.260799+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13715, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.260887+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.267155+00', 6, NULL), +(13716, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.369336+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.466767+00', 97, NULL), +(13717, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.369359+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.438748+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13718, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.438816+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.444978+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(13719, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.445042+00', TIMESTAMP WITH TIME ZONE '2023-01-08 19:49:13.466671+00', 21, '{"total-tables":4,"tables-classified":0}'), +(13720, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 20:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:00:00.264+00', 170, NULL), +(13721, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 20:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:00:00.34+00', 246, NULL), +(13722, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:00.166259+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.079588+00', 4913, NULL), +(13723, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:00.171699+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:00.700855+00', 529, '{"timezone-id":"UTC"}'), +(13724, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:00.701308+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:01.232464+00', 531, '{"updated-tables":0,"total-tables":8}'), +(13725, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:01.232568+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:04.751925+00', 3519, '{"total-fields":71,"updated-fields":0}'), +(13726, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:04.752+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:04.789754+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13727, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:04.789813+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.079562+00', 289, NULL), +(13728, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.128407+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.203429+00', 75, NULL), +(13729, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.128453+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.173351+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13730, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.173417+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.182927+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(13731, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.182982+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:19:05.203383+00', 20, '{"total-tables":8,"tables-classified":0}'), +(13732, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:00.275147+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.215258+00', 10940, NULL), +(13733, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:00.275171+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:00.277751+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13734, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:00.27783+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:00.720005+00', 442, '{"updated-tables":0,"total-tables":4}'), +(13735, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:00.720076+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.209045+00', 10488, '{"total-fields":30,"updated-fields":0}'), +(13736, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.209129+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.211551+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13737, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.211625+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.215197+00', 3, NULL), +(13738, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.28171+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.3058+00', 24, NULL), +(13739, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.281736+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.296797+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13740, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.296933+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.300339+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13741, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.300473+00', TIMESTAMP WITH TIME ZONE '2023-01-08 20:49:11.305758+00', 5, '{"total-tables":4,"tables-classified":0}'), +(13742, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:00.236+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:01.333+00', 1097, NULL), +(13743, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:00.254+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:01.188+00', 934, NULL), +(13744, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:02.333895+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:17.113898+00', 14780, NULL), +(13745, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:02.341871+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:05.436097+00', 3094, '{"deleted":0}'), +(13746, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:05.439359+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:00:17.113059+00', 11673, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(13747, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.055709+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.998521+00', 942, NULL), +(13748, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.055753+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.191709+00', 135, '{"timezone-id":"UTC"}'), +(13749, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.191884+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.416957+00', 225, '{"updated-tables":0,"total-tables":8}'), +(13750, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.417165+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.807886+00', 390, '{"total-fields":71,"updated-fields":0}'), +(13751, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.807981+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.860532+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13752, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.860632+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:00.998477+00', 137, NULL), +(13753, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.037896+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.150146+00', 112, NULL), +(13754, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.037915+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.106304+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13755, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.106577+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.121973+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13756, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.12206+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:19:01.150088+00', 28, '{"total-tables":8,"tables-classified":0}'), +(13757, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:00.799137+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.692948+00', 17893, NULL), +(13758, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:00.803918+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:00.829398+00', 25, '{"timezone-id":null}'), +(13759, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:00.834896+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:01.428045+00', 593, '{"updated-tables":0,"total-tables":4}'), +(13760, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:01.428133+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.663047+00', 17234, '{"total-fields":30,"updated-fields":0}'), +(13761, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.663138+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.682409+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13762, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.682493+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.692636+00', 10, NULL), +(13763, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.910166+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:19.049778+00', 139, NULL), +(13764, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:18.910196+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:19.005604+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13765, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:19.005826+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:19.017037+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(13766, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:19.017133+00', TIMESTAMP WITH TIME ZONE '2023-01-08 21:49:19.049717+00', 32, '{"total-tables":4,"tables-classified":0}'), +(13767, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 22:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:00:00.794+00', 642, NULL), +(13768, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 22:00:00.392+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:00:00.788+00', 396, NULL), +(13769, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:00.479589+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.807127+00', 4327, NULL), +(13770, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:00.485414+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:01.082531+00', 597, '{"timezone-id":"UTC"}'), +(13771, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:01.085299+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:01.498795+00', 413, '{"updated-tables":0,"total-tables":8}'), +(13772, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:01.498893+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.649185+00', 3150, '{"total-fields":71,"updated-fields":0}'), +(13773, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.649476+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.680276+00', 30, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13774, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.680566+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.807095+00', 126, NULL), +(13775, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.901059+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:05.373377+00', 472, NULL), +(13776, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:04.901309+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:05.170035+00', 268, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13777, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:05.170534+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:05.22587+00', 55, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13778, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:05.350043+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:19:05.373209+00', 23, '{"total-tables":8,"tables-classified":0}'), +(13779, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:00.240791+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.231073+00', 12990, NULL), +(13780, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:00.240817+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:00.242998+00', 2, '{"timezone-id":null}'), +(13781, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:00.243223+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:00.821665+00', 578, '{"updated-tables":0,"total-tables":4}'), +(13782, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:00.82173+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.226689+00', 12404, '{"total-fields":30,"updated-fields":0}'), +(13783, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.226789+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.228712+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13784, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.228762+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.231043+00', 2, NULL), +(13785, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.320271+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.364726+00', 44, NULL), +(13786, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.320288+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.349179+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13787, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.349284+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.357245+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(13788, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.357347+00', TIMESTAMP WITH TIME ZONE '2023-01-08 22:49:13.364613+00', 7, '{"total-tables":4,"tables-classified":0}'), +(13789, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 23:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:00:00.493+00', 323, NULL), +(13790, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-08 23:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:00:00.608+00', 439, NULL), +(13791, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:00.232473+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.547032+00', 5314, NULL), +(13792, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:00.238217+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:00.610591+00', 372, '{"timezone-id":"UTC"}'), +(13793, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:00.612338+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:00.957511+00', 345, '{"updated-tables":0,"total-tables":8}'), +(13794, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:00.957612+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:04.85576+00', 3898, '{"total-fields":71,"updated-fields":0}'), +(13795, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:04.855997+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:04.993664+00', 137, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13796, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:04.994011+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.546732+00', 552, NULL), +(13797, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.608125+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.714241+00', 106, NULL), +(13798, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.608154+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.681087+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13799, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.681146+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.694494+00', 13, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13800, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.694552+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:19:05.714191+00', 19, '{"total-tables":8,"tables-classified":0}'), +(13801, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:00.194396+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.470501+00', 11276, NULL), +(13802, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:00.194425+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:00.19699+00', 2, '{"timezone-id":null}'), +(13803, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:00.197148+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:00.583667+00', 386, '{"updated-tables":0,"total-tables":4}'), +(13804, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:00.583735+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.464907+00', 10881, '{"total-fields":30,"updated-fields":0}'), +(13805, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.465028+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.467428+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13806, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.467487+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.470428+00', 2, NULL), +(13807, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.586895+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.694859+00', 107, NULL), +(13808, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.586919+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.685445+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13809, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.685523+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.689207+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13810, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.689271+00', TIMESTAMP WITH TIME ZONE '2023-01-08 23:49:11.694815+00', 5, '{"total-tables":4,"tables-classified":0}'), +(13811, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 00:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:00:00.73+00', 571, NULL), +(13812, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 00:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:00:00.843+00', 702, NULL), +(13813, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:00.221791+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.597798+00', 5376, NULL), +(13814, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:00.226056+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:00.868094+00', 642, '{"timezone-id":"UTC"}'), +(13815, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:00.871887+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:01.354569+00', 482, '{"updated-tables":0,"total-tables":8}'), +(13816, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:01.354977+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.459236+00', 4104, '{"total-fields":71,"updated-fields":0}'), +(13817, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.459318+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.493472+00', 34, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13818, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.493525+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.597513+00', 103, NULL), +(13819, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.672902+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.780005+00', 107, NULL), +(13820, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.672927+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.730633+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13821, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.730765+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.744002+00', 13, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13822, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.744066+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:19:05.779943+00', 35, '{"total-tables":8,"tables-classified":0}'), +(13823, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:00.198492+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.476397+00', 12277, NULL), +(13824, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:00.198517+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:00.200121+00', 1, '{"timezone-id":null}'), +(13825, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:00.200333+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:00.9167+00', 716, '{"updated-tables":0,"total-tables":4}'), +(13826, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:00.916758+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.470106+00', 11553, '{"total-fields":30,"updated-fields":0}'), +(13827, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.470203+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.472969+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13828, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.473031+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.476341+00', 3, NULL), +(13829, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.635183+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.839375+00', 204, NULL), +(13830, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.635736+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.757804+00', 122, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13831, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.758083+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.793796+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(13832, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.794123+00', TIMESTAMP WITH TIME ZONE '2023-01-09 00:49:12.838919+00', 44, '{"total-tables":4,"tables-classified":0}'), +(13833, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 01:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:00:00.516+00', 379, NULL), +(13834, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 01:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:00:00.649+00', 512, NULL), +(13835, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:00.279754+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.117419+00', 5837, NULL), +(13836, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:00.291087+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:00.908783+00', 617, '{"timezone-id":"UTC"}'), +(13837, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:00.91084+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:01.508643+00', 597, '{"updated-tables":0,"total-tables":8}'), +(13838, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:01.509136+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:04.817826+00', 3308, '{"total-fields":71,"updated-fields":0}'), +(13839, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:04.818098+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:04.96664+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13840, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:04.966729+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.116931+00', 1150, NULL), +(13841, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.239396+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.367535+00', 128, NULL), +(13842, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.23942+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.303316+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13843, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.303426+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.319666+00', 16, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13844, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.319741+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:19:06.367466+00', 47, '{"total-tables":8,"tables-classified":0}'), +(13845, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:00.262955+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.223646+00', 12960, NULL), +(13846, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:00.262992+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:00.265095+00', 2, '{"timezone-id":null}'), +(13847, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:00.265179+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:01.064393+00', 799, '{"updated-tables":0,"total-tables":4}'), +(13848, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:01.064494+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.215245+00', 12150, '{"total-fields":30,"updated-fields":0}'), +(13849, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.215384+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.218941+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13850, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.219013+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.223586+00', 4, NULL), +(13851, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.34137+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.393486+00', 52, NULL), +(13852, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.341388+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.377464+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13853, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.377536+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.384723+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(13854, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.385011+00', TIMESTAMP WITH TIME ZONE '2023-01-09 01:49:13.393432+00', 8, '{"total-tables":4,"tables-classified":0}'), +(13855, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:01.551+00', 1333, NULL), +(13856, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:00.264+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:01.533+00', 1269, NULL), +(13857, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:01.605958+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:21.683965+00', 20078, NULL), +(13858, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:01.630584+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:06.75583+00', 5125, '{"deleted":0}'), +(13859, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:06.788917+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:00:21.683597+00', 14894, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(13860, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:00.071076+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.034235+00', 1963, NULL), +(13861, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:00.07112+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:00.549947+00', 478, '{"timezone-id":"UTC"}'), +(13862, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:00.550313+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:00.849973+00', 299, '{"updated-tables":0,"total-tables":8}'), +(13863, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:00.850062+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:01.530498+00', 680, '{"total-fields":71,"updated-fields":0}'), +(13864, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:01.530568+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:01.699646+00', 169, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13865, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:01.699725+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.034203+00', 334, NULL), +(13866, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.074206+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.243108+00', 168, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13867, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.074228+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.178046+00', 103, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13868, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.178123+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.203933+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(13869, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.204101+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:19:02.243055+00', 38, '{"total-tables":8,"tables-classified":0}'), +(13870, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:00.791514+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.728951+00', 17937, NULL), +(13871, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:00.801139+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:00.862443+00', 61, '{"timezone-id":null}'), +(13872, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:00.87453+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:02.820005+00', 1945, '{"updated-tables":0,"total-tables":4}'), +(13873, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:02.820533+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.695771+00', 15875, '{"total-fields":30,"updated-fields":0}'), +(13874, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.695878+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.720378+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13875, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.72056+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.728498+00', 7, NULL), +(13876, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.950651+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:19.215552+00', 264, NULL), +(13877, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:18.950671+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:19.161764+00', 211, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13878, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:19.161886+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:19.180865+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(13879, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:19.180977+00', TIMESTAMP WITH TIME ZONE '2023-01-09 02:49:19.215448+00', 34, '{"total-tables":4,"tables-classified":0}'), +(13880, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 03:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:00:00.766+00', 554, NULL), +(13881, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 03:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:00:00.909+00', 701, NULL), +(13882, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:00.260513+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.854492+00', 5593, NULL), +(13883, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:00.265288+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:00.977335+00', 712, '{"timezone-id":"UTC"}'), +(13884, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:00.979699+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:01.392442+00', 412, '{"updated-tables":0,"total-tables":8}'), +(13885, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:01.392817+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.650302+00', 4257, '{"total-fields":71,"updated-fields":0}'), +(13886, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.65037+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.703412+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13887, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.70347+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.854465+00', 150, NULL), +(13888, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.937245+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:06.876227+00', 938, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13889, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:05.937265+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:06.593429+00', 656, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13890, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:06.593526+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:06.732952+00', 139, '{"fields-classified":0,"fields-failed":0}'), +(13891, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:06.73333+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:19:06.876164+00', 142, '{"total-tables":8,"tables-classified":0}'), +(13892, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:00.287084+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.552659+00', 16265, NULL), +(13893, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:00.287116+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:00.292752+00', 5, '{"timezone-id":null}'), +(13894, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:00.292847+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:01.056745+00', 763, '{"updated-tables":0,"total-tables":4}'), +(13895, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:01.056802+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.536831+00', 15480, '{"total-fields":30,"updated-fields":0}'), +(13896, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.536985+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.544849+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13897, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.544988+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.55205+00', 7, NULL), +(13898, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.663211+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.725446+00', 62, NULL), +(13899, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.663231+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.704862+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13900, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.704946+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.709454+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(13901, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.709579+00', TIMESTAMP WITH TIME ZONE '2023-01-09 03:49:16.725341+00', 15, '{"total-tables":4,"tables-classified":0}'), +(13902, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 04:00:00.044+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:00:00.419+00', 375, NULL), +(13903, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 04:00:00.044+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:00:00.542+00', 498, NULL), +(13904, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:00.319331+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.251473+00', 7932, NULL), +(13905, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:00.324551+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:01.645272+00', 1320, '{"timezone-id":"UTC"}'), +(13906, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:01.658899+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:02.426046+00', 767, '{"updated-tables":0,"total-tables":8}'), +(13907, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:02.427652+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.035306+00', 5607, '{"total-fields":71,"updated-fields":0}'), +(13908, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.035452+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.091919+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13909, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.092011+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.251394+00', 159, NULL), +(13910, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.342815+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.561653+00', 218, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13911, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.342922+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.496285+00', 153, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13912, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.496596+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.528183+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(13913, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.528262+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:19:08.56159+00', 33, '{"total-tables":8,"tables-classified":0}'), +(13914, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:00.282928+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.593995+00', 13311, NULL), +(13915, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:00.282953+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:00.285025+00', 2, '{"timezone-id":null}'), +(13916, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:00.285274+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:00.936221+00', 650, '{"updated-tables":0,"total-tables":4}'), +(13917, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:00.936273+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.549508+00', 12613, '{"total-fields":30,"updated-fields":0}'), +(13918, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.549635+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.554063+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13919, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.554125+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.593929+00', 39, NULL), +(13920, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.742444+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.822196+00', 79, NULL), +(13921, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.742469+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.793362+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13922, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.793433+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.803605+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(13923, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.803677+00', TIMESTAMP WITH TIME ZONE '2023-01-09 04:49:13.822148+00', 18, '{"total-tables":4,"tables-classified":0}'), +(13924, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 05:00:00.32+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:00:01.383+00', 1063, NULL), +(13925, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 05:00:00.29+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:00:01.534+00', 1244, NULL), +(13926, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:00.375226+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:09.827182+00', 9451, NULL), +(13927, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:00.378004+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:01.603594+00', 1225, '{"timezone-id":"UTC"}'), +(13928, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:01.606084+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:02.634501+00', 1028, '{"updated-tables":0,"total-tables":8}'), +(13929, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:02.634616+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:09.1457+00', 6511, '{"total-fields":71,"updated-fields":0}'), +(13930, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:09.146152+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:09.401957+00', 255, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13931, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:09.402247+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:09.827138+00', 424, NULL), +(13932, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.108665+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.446602+00', 337, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13933, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.108687+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.213751+00', 105, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13934, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.213819+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.253915+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(13935, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.254014+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:19:10.446538+00', 192, '{"total-tables":8,"tables-classified":0}'), +(13936, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:00.368588+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.317413+00', 12948, NULL), +(13937, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:00.368616+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:00.377281+00', 8, '{"timezone-id":null}'), +(13938, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:00.377357+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:01.175333+00', 797, '{"updated-tables":0,"total-tables":4}'), +(13939, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:01.175398+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.31087+00', 12135, '{"total-fields":30,"updated-fields":0}'), +(13940, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.310995+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.314521+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13941, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.314627+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.317368+00', 2, NULL), +(13942, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.372005+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.418069+00', 46, NULL), +(13943, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.372025+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.403615+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13944, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.403719+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.407634+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13945, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.407709+00', TIMESTAMP WITH TIME ZONE '2023-01-09 05:49:13.418014+00', 10, '{"total-tables":4,"tables-classified":0}'), +(13946, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 06:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:00:00.986+00', 868, NULL), +(13947, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 06:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:00:01.252+00', 1151, NULL), +(13948, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:00.256842+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.432514+00', 9175, NULL), +(13949, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:00.277001+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:01.64118+00', 1364, '{"timezone-id":"UTC"}'), +(13950, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:01.643866+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:02.977584+00', 1333, '{"updated-tables":0,"total-tables":8}'), +(13951, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:02.978095+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.12626+00', 6148, '{"total-fields":71,"updated-fields":0}'), +(13952, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.126326+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.252791+00', 126, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13953, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.252883+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.429121+00', 176, NULL), +(13954, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.530598+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.690388+00', 159, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13955, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.53062+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.610962+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13956, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.611049+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.62732+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(13957, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.627387+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:19:09.690333+00', 62, '{"total-tables":8,"tables-classified":0}'), +(13958, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:00.351166+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:16.973354+00', 16622, NULL), +(13959, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:00.351198+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:00.354927+00', 3, '{"timezone-id":null}'), +(13960, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:00.355027+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:01.234016+00', 878, '{"updated-tables":0,"total-tables":4}'), +(13961, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:01.234083+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:16.959001+00', 15724, '{"total-fields":30,"updated-fields":0}'), +(13962, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:16.959307+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:16.969888+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13963, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:16.969963+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:16.973296+00', 3, NULL), +(13964, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.110641+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.196202+00', 85, NULL), +(13965, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.110662+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.181227+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13966, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.181351+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.185182+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13967, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.185255+00', TIMESTAMP WITH TIME ZONE '2023-01-09 06:49:17.195927+00', 10, '{"total-tables":4,"tables-classified":0}'), +(13968, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 07:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:00:00.882+00', 766, NULL), +(13969, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 07:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:00:00.878+00', 733, NULL), +(13970, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:00.978111+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.198652+00', 6220, NULL), +(13971, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:00.98464+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:01.764386+00', 779, '{"timezone-id":"UTC"}'), +(13972, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:01.767219+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:02.214441+00', 447, '{"updated-tables":0,"total-tables":8}'), +(13973, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:02.215836+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:06.989522+00', 4773, '{"total-fields":71,"updated-fields":0}'), +(13974, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:06.989623+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.06294+00', 73, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13975, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.063288+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.19827+00', 134, NULL), +(13976, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.291334+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.406508+00', 115, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13977, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.291354+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.371+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13978, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.371067+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.384818+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(13979, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.384876+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:19:07.406457+00', 21, '{"total-tables":8,"tables-classified":0}'), +(13980, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:00.19912+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:11.973844+00', 11774, NULL), +(13981, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:00.199151+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:00.203024+00', 3, '{"timezone-id":null}'), +(13982, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:00.20312+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:00.837474+00', 634, '{"updated-tables":0,"total-tables":4}'), +(13983, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:00.837533+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:11.965851+00', 11128, '{"total-fields":30,"updated-fields":0}'), +(13984, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:11.965952+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:11.969511+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(13985, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:11.969582+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:11.973785+00', 4, NULL), +(13986, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.175582+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.299068+00', 123, NULL), +(13987, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.175601+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.268479+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(13988, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.268599+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.271925+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(13989, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.271983+00', TIMESTAMP WITH TIME ZONE '2023-01-09 07:49:12.298991+00', 27, '{"total-tables":4,"tables-classified":0}'), +(13990, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 08:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:00:00.479+00', 375, NULL), +(13991, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 08:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:00:00.567+00', 463, NULL), +(13992, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:00.385012+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.433014+00', 7048, NULL), +(13993, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:00.392833+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:01.83175+00', 1438, '{"timezone-id":"UTC"}'), +(13994, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:01.84656+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:03.529583+00', 1683, '{"updated-tables":0,"total-tables":8}'), +(13995, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:03.529992+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.195146+00', 3665, '{"total-fields":71,"updated-fields":0}'), +(13996, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.195244+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.268004+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(13997, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.268085+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.432641+00', 164, NULL), +(13998, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.644198+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.817581+00', 173, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(13999, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.644224+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.743738+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14000, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.743823+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.764153+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(14001, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.764236+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:19:07.817501+00', 53, '{"total-tables":8,"tables-classified":0}'), +(14002, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:00.213374+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.42508+00', 14211, NULL), +(14003, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:00.213402+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:00.215223+00', 1, '{"timezone-id":null}'), +(14004, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:00.215329+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:00.921632+00', 706, '{"updated-tables":0,"total-tables":4}'), +(14005, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:00.921715+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.420048+00', 13498, '{"total-fields":30,"updated-fields":0}'), +(14006, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.420132+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.422634+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14007, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.422688+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.425045+00', 2, NULL), +(14008, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.537267+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.57561+00', 38, NULL), +(14009, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.537288+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.553463+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14010, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.553526+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.55604+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(14011, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.556093+00', TIMESTAMP WITH TIME ZONE '2023-01-09 08:49:14.575544+00', 19, '{"total-tables":4,"tables-classified":0}'), +(14012, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 09:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:00:00.404+00', 294, NULL), +(14013, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 09:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:00:00.434+00', 351, NULL), +(14014, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:00.612464+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.499695+00', 9887, NULL), +(14015, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:00.616814+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:02.793462+00', 2176, '{"timezone-id":"UTC"}'), +(14016, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:02.807863+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:03.754785+00', 946, '{"updated-tables":0,"total-tables":8}'), +(14017, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:03.755366+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.004893+00', 6249, '{"total-fields":71,"updated-fields":0}'), +(14018, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.00568+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.209474+00', 203, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14019, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.209567+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.499337+00', 289, NULL), +(14020, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.932773+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:11.125367+00', 192, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14021, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:10.932836+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:11.023629+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14022, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:11.02371+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:11.044646+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(14023, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:11.044708+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:19:11.125298+00', 80, '{"total-tables":8,"tables-classified":0}'), +(14024, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:00.222449+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.6871+00', 13464, NULL), +(14025, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:00.222478+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:00.225844+00', 3, '{"timezone-id":null}'), +(14026, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:00.225945+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:00.683962+00', 458, '{"updated-tables":0,"total-tables":4}'), +(14027, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:00.684158+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.681154+00', 12996, '{"total-fields":30,"updated-fields":0}'), +(14028, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.68125+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.68333+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14029, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.683406+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.687048+00', 3, NULL), +(14030, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.81764+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.963963+00', 146, NULL), +(14031, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.817662+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.937956+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14032, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.938036+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.947283+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(14033, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.947348+00', TIMESTAMP WITH TIME ZONE '2023-01-09 09:49:13.963921+00', 16, '{"total-tables":4,"tables-classified":0}'), +(14034, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 10:00:00.223+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:00:00.957+00', 734, NULL), +(14035, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 10:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:00:01.096+00', 890, NULL), +(14036, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:00.304064+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.544509+00', 7240, NULL), +(14037, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:00.310706+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:01.951805+00', 1641, '{"timezone-id":"UTC"}'), +(14038, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:01.956874+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:02.765151+00', 808, '{"updated-tables":0,"total-tables":8}'), +(14039, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:02.765585+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.167521+00', 4401, '{"total-fields":71,"updated-fields":0}'), +(14040, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.167606+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.232742+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14041, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.232828+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.541184+00', 308, NULL), +(14042, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.736541+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.971164+00', 234, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14043, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.736567+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.80566+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14044, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.805744+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.930889+00', 125, '{"fields-classified":0,"fields-failed":0}'), +(14045, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.931109+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:19:07.971123+00', 40, '{"total-tables":8,"tables-classified":0}'), +(14046, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:00.206907+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.87258+00', 17665, NULL), +(14047, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:00.206957+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:00.208692+00', 1, '{"timezone-id":null}'), +(14048, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:00.208771+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:01.334054+00', 1125, '{"updated-tables":0,"total-tables":4}'), +(14049, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:01.334118+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.866551+00', 16532, '{"total-fields":30,"updated-fields":0}'), +(14050, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.866657+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.869339+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14051, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.869421+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.872533+00', 3, NULL), +(14052, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.983323+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:18.045713+00', 62, NULL), +(14053, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:17.984087+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:18.017231+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14054, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:18.017296+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:18.022984+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(14055, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:18.023051+00', TIMESTAMP WITH TIME ZONE '2023-01-09 10:49:18.045668+00', 22, '{"total-tables":4,"tables-classified":0}'), +(14056, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 11:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:00:01.025+00', 825, NULL), +(14057, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 11:00:00.45+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:00:01.021+00', 571, NULL), +(14058, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:00.243504+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:06.855291+00', 6611, NULL), +(14059, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:00.247182+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:01.146772+00', 899, '{"timezone-id":"UTC"}'), +(14060, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:01.148841+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:01.963442+00', 814, '{"updated-tables":0,"total-tables":8}'), +(14061, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:01.965154+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:06.351277+00', 4386, '{"total-fields":71,"updated-fields":0}'), +(14062, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:06.351351+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:06.404105+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14063, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:06.404183+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:06.85438+00', 450, NULL), +(14064, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.364971+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.833608+00', 468, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14065, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.365023+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.704341+00', 339, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14066, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.70473+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.750142+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(14067, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.750208+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:19:07.833552+00', 83, '{"total-tables":8,"tables-classified":0}'), +(14068, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:00.228912+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.762804+00', 15533, NULL), +(14069, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:00.228938+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:00.231919+00', 2, '{"timezone-id":null}'), +(14070, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:00.232015+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:00.810701+00', 578, '{"updated-tables":0,"total-tables":4}'), +(14071, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:00.810768+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.755593+00', 14944, '{"total-fields":30,"updated-fields":0}'), +(14072, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.755697+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.759556+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14073, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.759621+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.762557+00', 2, NULL), +(14074, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.992005+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:16.093025+00', 101, NULL), +(14075, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:15.992025+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:16.056571+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14076, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:16.05666+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:16.082992+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(14077, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:16.083098+00', TIMESTAMP WITH TIME ZONE '2023-01-09 11:49:16.092951+00', 9, '{"total-tables":4,"tables-classified":0}'), +(14078, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 12:00:00.231+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:00:00.79+00', 559, NULL), +(14079, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 12:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:00:00.793+00', 575, NULL), +(14080, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:00.33767+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.084539+00', 5746, NULL), +(14081, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:00.340465+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:01.973684+00', 1633, '{"timezone-id":"UTC"}'), +(14082, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:01.97478+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:02.59082+00', 616, '{"updated-tables":0,"total-tables":8}'), +(14083, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:02.59144+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:05.84976+00', 3258, '{"total-fields":71,"updated-fields":0}'), +(14084, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:05.849871+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:05.88378+00', 33, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14085, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:05.883839+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.08407+00', 200, NULL), +(14086, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.123256+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.18716+00', 63, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14087, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.123274+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.167178+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14088, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.167244+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.17579+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(14089, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.175858+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:19:06.187074+00', 11, '{"total-tables":8,"tables-classified":0}'), +(14090, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:00.093342+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:13.979599+00', 13886, NULL), +(14091, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:00.094569+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:00.097404+00', 2, '{"timezone-id":null}'), +(14092, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:00.099385+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:00.259196+00', 159, '{"updated-tables":0,"total-tables":4}'), +(14093, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:00.259275+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:13.934812+00', 13675, '{"total-fields":30,"updated-fields":0}'), +(14094, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:13.934887+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:13.972915+00', 38, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14095, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:13.972988+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:13.978991+00', 6, NULL), +(14096, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.526737+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.932866+00', 406, NULL), +(14097, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.526759+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.900443+00', 373, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14098, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.901264+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.914502+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(14099, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.914583+00', TIMESTAMP WITH TIME ZONE '2023-01-09 12:49:14.932817+00', 18, '{"total-tables":4,"tables-classified":0}'), +(14100, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 13:00:00.103+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:00:01.157+00', 1054, NULL), +(14101, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 13:00:00.103+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:00:01.249+00', 1146, NULL), +(14102, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:00.583576+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:05.926442+00', 5342, NULL), +(14103, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:00.587383+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:02.289555+00', 1702, '{"timezone-id":"UTC"}'), +(14104, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:02.292462+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:03.030014+00', 737, '{"updated-tables":0,"total-tables":8}'), +(14105, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:03.030411+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:05.752629+00', 2722, '{"total-fields":71,"updated-fields":0}'), +(14106, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:05.752707+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:05.810557+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14107, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:05.810644+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:05.926416+00', 115, NULL), +(14108, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.006725+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.485281+00', 478, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14109, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.006747+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.063734+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14110, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.063897+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.435836+00', 371, '{"fields-classified":0,"fields-failed":0}'), +(14111, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.435965+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:19:06.485153+00', 49, '{"total-tables":8,"tables-classified":0}'), +(14112, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:02.246139+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.371991+00', 20125, NULL), +(14113, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:02.261528+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:02.346718+00', 85, '{"timezone-id":null}'), +(14114, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:02.357285+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:03.409676+00', 1052, '{"updated-tables":0,"total-tables":4}'), +(14115, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:03.410113+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.34507+00', 18934, '{"total-fields":30,"updated-fields":0}'), +(14116, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.345169+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.363778+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14117, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.363844+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.371587+00', 7, NULL), +(14118, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.706296+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.818042+00', 111, NULL), +(14119, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.70632+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.779531+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14120, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.779608+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.792627+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(14121, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.792692+00', TIMESTAMP WITH TIME ZONE '2023-01-09 13:49:22.817988+00', 25, '{"total-tables":4,"tables-classified":0}'), +(14122, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 14:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:00:01.219+00', 1031, NULL), +(14123, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 14:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:00:01.527+00', 1339, NULL), +(14124, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:00.370115+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.875626+00', 6505, NULL), +(14125, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:00.375293+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:01.424686+00', 1049, '{"timezone-id":"UTC"}'), +(14126, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:01.427055+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:02.490249+00', 1063, '{"updated-tables":0,"total-tables":8}'), +(14127, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:02.490548+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.672974+00', 4182, '{"total-fields":71,"updated-fields":0}'), +(14128, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.673041+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.724224+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14129, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.724301+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.875229+00', 150, NULL), +(14130, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.980516+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:07.082834+00', 102, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14131, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:06.980539+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:07.045707+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14132, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:07.04577+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:07.06027+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(14133, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:07.060341+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:19:07.082771+00', 22, '{"total-tables":8,"tables-classified":0}'), +(14134, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:00.252546+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:13.999191+00', 13746, NULL), +(14135, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:00.252571+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:00.255665+00', 3, '{"timezone-id":null}'), +(14136, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:00.255744+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:00.767173+00', 511, '{"updated-tables":0,"total-tables":4}'), +(14137, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:00.767257+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:13.987778+00', 13220, '{"total-fields":30,"updated-fields":0}'), +(14138, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:13.988086+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:13.992154+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14139, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:13.992261+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:13.999124+00', 6, NULL), +(14140, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.155736+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.229248+00', 73, NULL), +(14141, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.155775+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.200706+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14142, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.200976+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.209109+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(14143, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.209198+00', TIMESTAMP WITH TIME ZONE '2023-01-09 14:49:14.229097+00', 19, '{"total-tables":4,"tables-classified":0}'), +(14144, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 15:00:00.246+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:00:00.852+00', 606, NULL), +(14145, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 15:00:00.246+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:00:01.136+00', 890, NULL), +(14146, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:00.207028+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.332501+00', 6125, NULL), +(14147, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:00.209959+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:00.974471+00', 764, '{"timezone-id":"UTC"}'), +(14148, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:00.977763+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:01.801355+00', 823, '{"updated-tables":0,"total-tables":8}'), +(14149, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:01.801771+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:05.913882+00', 4112, '{"total-fields":71,"updated-fields":0}'), +(14150, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:05.914826+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.087245+00', 172, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14151, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.087324+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.331967+00', 244, NULL), +(14152, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.502658+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:07.058347+00', 555, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14153, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.502686+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.985662+00', 482, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14154, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:06.985757+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:07.007662+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(14155, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:07.008232+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:19:07.05825+00', 50, '{"total-tables":8,"tables-classified":0}'), +(14156, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:00.477501+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.361491+00', 15883, NULL), +(14157, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:00.477912+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:00.494302+00', 16, '{"timezone-id":null}'), +(14158, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:00.496005+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:01.325414+00', 829, '{"updated-tables":0,"total-tables":4}'), +(14159, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:01.325494+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.350789+00', 15025, '{"total-fields":30,"updated-fields":0}'), +(14160, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.35124+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.3573+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14161, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.357392+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.361421+00', 4, NULL), +(14162, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.545538+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.74179+00', 196, NULL), +(14163, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.545563+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.701861+00', 156, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14164, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.701978+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.715721+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(14165, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.715903+00', TIMESTAMP WITH TIME ZONE '2023-01-09 15:49:16.741548+00', 25, '{"total-tables":4,"tables-classified":0}'), +(14166, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 16:00:00.284+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:00:01.191+00', 907, NULL), +(14167, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 16:00:00.284+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:00:02.03+00', 1746, NULL), +(14168, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:00.265044+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.244119+00', 8979, NULL), +(14169, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:00.270474+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:01.242486+00', 972, '{"timezone-id":"UTC"}'), +(14170, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:01.245354+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:02.146336+00', 900, '{"updated-tables":0,"total-tables":8}'), +(14171, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:02.146695+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.007673+00', 6860, '{"total-fields":71,"updated-fields":0}'), +(14172, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.007745+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.086983+00', 79, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14173, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.087086+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.243763+00', 156, NULL), +(14174, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.483246+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.773032+00', 289, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14175, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.483274+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.668866+00', 185, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14176, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.672544+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.706002+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(14177, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.706078+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:19:09.772975+00', 66, '{"total-tables":8,"tables-classified":0}'), +(14178, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:00.297812+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.713177+00', 12415, NULL), +(14179, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:00.297843+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:00.301308+00', 3, '{"timezone-id":null}'), +(14180, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:00.301416+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:00.922891+00', 621, '{"updated-tables":0,"total-tables":4}'), +(14181, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:00.922949+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.694383+00', 11771, '{"total-fields":30,"updated-fields":0}'), +(14182, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.694568+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.701459+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14183, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.701554+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.713117+00', 11, NULL), +(14184, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.823448+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.904567+00', 81, NULL), +(14185, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.823475+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.889638+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14186, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.889713+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.894119+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14187, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.894182+00', TIMESTAMP WITH TIME ZONE '2023-01-09 16:49:12.904502+00', 10, '{"total-tables":4,"tables-classified":0}'), +(14188, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 17:00:00.26+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:00:01.026+00', 766, NULL), +(14189, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 17:00:00.251+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:00:01.564+00', 1313, NULL), +(14190, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:00.354943+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:06.964441+00', 6609, NULL), +(14191, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:00.359451+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:01.336609+00', 977, '{"timezone-id":"UTC"}'), +(14192, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:01.338774+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:02.24284+00', 904, '{"updated-tables":0,"total-tables":8}'), +(14193, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:02.243178+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:06.553358+00', 4310, '{"total-fields":71,"updated-fields":0}'), +(14194, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:06.553633+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:06.739676+00', 186, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14195, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:06.740113+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:06.963939+00', 223, NULL), +(14196, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.04511+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.182947+00', 137, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14197, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.045131+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.120656+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14198, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.12074+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.14096+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(14199, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.141497+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:19:07.182877+00', 41, '{"total-tables":8,"tables-classified":0}'), +(14200, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:00.397954+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.615516+00', 14217, NULL), +(14201, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:00.397983+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:00.401737+00', 3, '{"timezone-id":null}'), +(14202, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:00.401843+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:01.090472+00', 688, '{"updated-tables":0,"total-tables":4}'), +(14203, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:01.090531+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.607907+00', 13517, '{"total-fields":30,"updated-fields":0}'), +(14204, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.607993+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.611957+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14205, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.612039+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.615476+00', 3, NULL), +(14206, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.766687+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.865787+00', 99, NULL), +(14207, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.766729+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.842893+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14208, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.84317+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.848135+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14209, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.849088+00', TIMESTAMP WITH TIME ZONE '2023-01-09 17:49:14.865646+00', 16, '{"total-tables":4,"tables-classified":0}'), +(14210, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 18:00:00.224+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:00:01.075+00', 851, NULL), +(14211, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 18:00:00.224+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:00:01.666+00', 1442, NULL), +(14212, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:00.364969+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.07824+00', 7713, NULL), +(14213, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:00.378965+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:01.468311+00', 1089, '{"timezone-id":"UTC"}'), +(14214, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:01.470991+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:02.570867+00', 1099, '{"updated-tables":0,"total-tables":8}'), +(14215, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:02.57147+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:07.885951+00', 5314, '{"total-fields":71,"updated-fields":0}'), +(14216, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:07.886026+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:07.956974+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14217, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:07.957053+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.077927+00', 120, NULL), +(14218, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.18624+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.327972+00', 141, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14219, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.186262+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.279102+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14220, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.279187+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.295531+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(14221, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.295609+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:19:08.327818+00', 32, '{"total-tables":8,"tables-classified":0}'), +(14222, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:00.25713+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.905278+00', 14648, NULL), +(14223, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:00.257166+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:00.258945+00', 1, '{"timezone-id":null}'), +(14224, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:00.259034+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:00.881368+00', 622, '{"updated-tables":0,"total-tables":4}'), +(14225, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:00.88143+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.893697+00', 14012, '{"total-fields":30,"updated-fields":0}'), +(14226, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.893815+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.898157+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14227, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.898227+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.905214+00', 6, NULL), +(14228, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.980383+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:15.028157+00', 47, NULL), +(14229, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:14.980403+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:15.016925+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14230, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:15.017002+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:15.020339+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(14231, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:15.020402+00', TIMESTAMP WITH TIME ZONE '2023-01-09 18:49:15.028108+00', 7, '{"total-tables":4,"tables-classified":0}'), +(14232, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 19:00:00.039+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:00:00.263+00', 224, NULL), +(14233, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 19:00:00.079+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:00:00.262+00', 183, NULL), +(14234, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:00.350317+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.453648+00', 5103, NULL), +(14235, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:00.354006+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:01.034713+00', 680, '{"timezone-id":"UTC"}'), +(14236, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:01.036751+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:01.91013+00', 873, '{"updated-tables":0,"total-tables":8}'), +(14237, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:01.91051+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.28711+00', 3376, '{"total-fields":71,"updated-fields":0}'), +(14238, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.287331+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.346713+00', 59, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14239, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.346792+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.453176+00', 106, NULL), +(14240, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.541053+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.68492+00', 143, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14241, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.541074+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.618791+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14242, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.619546+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.652884+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(14243, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.652953+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:19:05.684858+00', 31, '{"total-tables":8,"tables-classified":0}'), +(14244, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:00.183481+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.271715+00', 11088, NULL), +(14245, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:00.183508+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:00.185521+00', 2, '{"timezone-id":null}'), +(14246, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:00.185636+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:00.648241+00', 462, '{"updated-tables":0,"total-tables":4}'), +(14247, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:00.648316+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.264501+00', 10616, '{"total-fields":30,"updated-fields":0}'), +(14248, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.264674+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.267251+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14249, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.26734+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.271659+00', 4, NULL), +(14250, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.330363+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.379819+00', 49, NULL), +(14251, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.330387+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.364603+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14252, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.364688+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.367521+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(14253, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.367582+00', TIMESTAMP WITH TIME ZONE '2023-01-09 19:49:11.379776+00', 12, '{"total-tables":4,"tables-classified":0}'), +(14254, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 20:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:00:01.154+00', 997, NULL), +(14255, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 20:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:00:01.741+00', 1592, NULL), +(14256, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:00.269377+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.149641+00', 6880, NULL), +(14257, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:00.277676+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:01.41512+00', 1137, '{"timezone-id":"UTC"}'), +(14258, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:01.427574+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:02.217431+00', 789, '{"updated-tables":0,"total-tables":8}'), +(14259, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:02.217865+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:06.732593+00', 4514, '{"total-fields":71,"updated-fields":0}'), +(14260, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:06.732676+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:06.806162+00', 73, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14261, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:06.806231+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.149234+00', 343, NULL), +(14262, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.235544+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.410026+00', 174, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14263, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.235675+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.322912+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14264, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.322997+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.34047+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(14265, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.340545+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:19:07.409594+00', 69, '{"total-tables":8,"tables-classified":0}'), +(14266, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:00.429904+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.078734+00', 15648, NULL), +(14267, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:00.429933+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:00.43431+00', 4, '{"timezone-id":null}'), +(14268, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:00.434431+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:01.355228+00', 920, '{"updated-tables":0,"total-tables":4}'), +(14269, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:01.355426+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.072444+00', 14717, '{"total-fields":30,"updated-fields":0}'), +(14270, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.072543+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.075276+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14271, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.075354+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.078677+00', 3, NULL), +(14272, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.147986+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.191172+00', 43, NULL), +(14273, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.148009+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.181662+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14274, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.181736+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.185602+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(14275, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.185682+00', TIMESTAMP WITH TIME ZONE '2023-01-09 20:49:16.191122+00', 5, '{"total-tables":4,"tables-classified":0}'), +(14276, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:00.295+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:00.972+00', 677, NULL), +(14277, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:00.258+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:00.976+00', 718, NULL), +(14278, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:01.426101+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:25.394208+00', 23968, NULL), +(14279, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:01.446941+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:11.029627+00', 9582, '{"deleted":0}'), +(14280, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:11.030381+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:00:25.3934+00', 14363, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(14281, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:00.185748+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.886827+00', 2701, NULL), +(14282, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:00.189576+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:00.544914+00', 355, '{"timezone-id":"UTC"}'), +(14283, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:00.545941+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:00.988594+00', 442, '{"updated-tables":0,"total-tables":8}'), +(14284, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:00.988719+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.234297+00', 1245, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14285, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.234356+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.400072+00', 165, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14286, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.400675+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.886776+00', 486, NULL), +(14287, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.996743+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:04.353825+00', 1357, NULL), +(14288, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:02.996765+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:04.229785+00', 1233, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14289, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:04.2304+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:04.271418+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(14290, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:04.271873+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:19:04.353688+00', 81, '{"total-tables":8,"tables-classified":0}'), +(14291, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:01.93666+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:19.94938+00', 18012, NULL), +(14292, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:01.949258+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:02.006826+00', 57, '{"timezone-id":null}'), +(14293, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:02.016978+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:03.386644+00', 1369, '{"updated-tables":0,"total-tables":4}'), +(14294, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:03.387044+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:19.926823+00', 16539, '{"total-fields":30,"updated-fields":0}'), +(14295, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:19.926982+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:19.941801+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14296, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:19.941966+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:19.949027+00', 7, NULL), +(14297, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.148239+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.362984+00', 214, NULL), +(14298, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.148259+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.313253+00', 164, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14299, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.313358+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.335333+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(14300, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.335481+00', TIMESTAMP WITH TIME ZONE '2023-01-09 21:49:20.362934+00', 27, '{"total-tables":4,"tables-classified":0}'), +(14301, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 22:00:00.23+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:00:01.107+00', 877, NULL), +(14302, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 22:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:00:01.36+00', 1142, NULL), +(14303, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:00.382032+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.669039+00', 5287, NULL), +(14304, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:00.388057+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:01.308203+00', 920, '{"timezone-id":"UTC"}'), +(14305, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:01.312368+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:01.981893+00', 669, '{"updated-tables":0,"total-tables":8}'), +(14306, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:01.982347+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.48217+00', 3499, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14307, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.48225+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.527941+00', 45, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14308, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.528+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.668836+00', 140, NULL), +(14309, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.759755+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.978637+00', 218, NULL), +(14310, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.759777+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.853955+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14311, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.854342+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.907399+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(14312, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.907869+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:19:05.978587+00', 70, '{"total-tables":8,"tables-classified":0}'), +(14313, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:00.541413+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.409995+00', 13868, NULL), +(14314, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:00.54224+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:00.5466+00', 4, '{"timezone-id":null}'), +(14315, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:00.551209+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:02.3575+00', 1806, '{"updated-tables":0,"total-tables":4}'), +(14316, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:02.357607+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.400465+00', 12042, '{"total-fields":30,"updated-fields":0}'), +(14317, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.400631+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.406394+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14318, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.406586+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.4099+00', 3, NULL), +(14319, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.579878+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.63809+00', 58, NULL), +(14320, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.5799+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.6197+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14321, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.619801+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.624699+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14322, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.624771+00', TIMESTAMP WITH TIME ZONE '2023-01-09 22:49:14.638036+00', 13, '{"total-tables":4,"tables-classified":0}'), +(14323, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 23:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:00:00.888+00', 695, NULL), +(14324, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-09 23:00:00.191+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:00:01.149+00', 958, NULL), +(14325, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:00.325176+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.357264+00', 7032, NULL), +(14326, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:00.332455+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:01.259366+00', 926, '{"timezone-id":"UTC"}'), +(14327, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:01.267445+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:02.068061+00', 800, '{"updated-tables":0,"total-tables":8}'), +(14328, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:02.068528+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:06.612346+00', 4543, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14329, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:06.612824+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:06.802535+00', 189, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14330, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:06.802651+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.356868+00', 554, NULL), +(14331, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.472297+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.630787+00', 158, NULL), +(14332, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.472323+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.539466+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14333, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.539735+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.575457+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(14334, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.575522+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:19:07.630731+00', 55, '{"total-tables":8,"tables-classified":0}'), +(14335, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:00.353713+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.634426+00', 14280, NULL), +(14336, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:00.353747+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:00.357649+00', 3, '{"timezone-id":null}'), +(14337, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:00.357742+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:01.212021+00', 854, '{"updated-tables":0,"total-tables":4}'), +(14338, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:01.212107+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.628207+00', 13416, '{"total-fields":30,"updated-fields":0}'), +(14339, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.628321+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.631398+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14340, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.631466+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.634187+00', 2, NULL), +(14341, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.720738+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.783713+00', 62, NULL), +(14342, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.720763+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.760246+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14343, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.760328+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.765993+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(14344, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.766059+00', TIMESTAMP WITH TIME ZONE '2023-01-09 23:49:14.783672+00', 17, '{"total-tables":4,"tables-classified":0}'), +(14345, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 00:00:00.482+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:00:04.269+00', 3787, NULL), +(14346, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 00:00:00.482+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:00:04.867+00', 4385, NULL), +(14347, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:00.288636+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.134542+00', 5845, NULL), +(14348, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:00.295333+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:00.967288+00', 671, '{"timezone-id":"UTC"}'), +(14349, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:00.969341+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:01.652897+00', 683, '{"updated-tables":0,"total-tables":8}'), +(14350, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:01.65358+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:05.591709+00', 3938, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14351, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:05.591809+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:05.708077+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14352, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:05.708167+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.13421+00', 426, NULL), +(14353, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.216606+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.363517+00', 146, NULL), +(14354, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.216628+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.291282+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14355, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.291394+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.314537+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(14356, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.314702+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:19:06.363178+00', 48, '{"total-tables":8,"tables-classified":0}'), +(14357, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:00.738823+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.798836+00', 17060, NULL), +(14358, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:00.738878+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:00.745127+00', 6, '{"timezone-id":null}'), +(14359, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:00.745216+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:01.792917+00', 1047, '{"updated-tables":0,"total-tables":4}'), +(14360, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:01.793006+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.790949+00', 15997, '{"total-fields":30,"updated-fields":0}'), +(14361, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.791072+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.794382+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14362, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.79466+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.798562+00', 3, NULL), +(14363, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.94563+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:18.079462+00', 133, NULL), +(14364, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:17.945651+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:18.038875+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14365, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:18.038998+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:18.049949+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(14366, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:18.050246+00', TIMESTAMP WITH TIME ZONE '2023-01-10 00:49:18.079421+00', 29, '{"total-tables":4,"tables-classified":0}'), +(14367, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 01:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:00:00.5+00', 356, NULL), +(14368, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 01:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:00:00.643+00', 499, NULL), +(14369, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:00.328041+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.049352+00', 5721, NULL), +(14370, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:00.332325+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:01.049554+00', 717, '{"timezone-id":"UTC"}'), +(14371, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:01.05889+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:01.587396+00', 528, '{"updated-tables":0,"total-tables":8}'), +(14372, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:01.587496+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:05.860746+00', 4273, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14373, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:05.860835+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:05.905945+00', 45, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14374, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:05.905996+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.049026+00', 143, NULL), +(14375, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.125533+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.255024+00', 129, NULL), +(14376, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.125552+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.21364+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14377, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.214014+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.23392+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(14378, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.234186+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:19:06.25497+00', 20, '{"total-tables":8,"tables-classified":0}'), +(14379, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:00.262052+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.685021+00', 13422, NULL), +(14380, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:00.26208+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:00.263939+00', 1, '{"timezone-id":null}'), +(14381, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:00.264021+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:00.85714+00', 593, '{"updated-tables":0,"total-tables":4}'), +(14382, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:00.857213+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.676901+00', 12819, '{"total-fields":30,"updated-fields":0}'), +(14383, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.676984+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.681175+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14384, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.681238+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.68496+00', 3, NULL), +(14385, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.802246+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.854671+00', 52, NULL), +(14386, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.802267+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.840853+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14387, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.840944+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.845034+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14388, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.845108+00', TIMESTAMP WITH TIME ZONE '2023-01-10 01:49:13.854616+00', 9, '{"total-tables":4,"tables-classified":0}'), +(14389, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:01.589+00', 1376, NULL), +(14390, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:00.238+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:01.58+00', 1342, NULL), +(14391, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:02.771798+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:22.285543+00', 19513, NULL), +(14392, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:02.778144+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:07.455346+00', 4677, '{"deleted":0}'), +(14393, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:07.4667+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:00:22.285472+00', 14818, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(14394, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:00.065438+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.920975+00', 2855, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14395, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:00.065478+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:00.786083+00', 720, '{"timezone-id":"UTC"}'), +(14396, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:00.786206+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:01.368863+00', 582, '{"updated-tables":0,"total-tables":8}'), +(14397, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:01.368978+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.60294+00', 1233, '{"total-fields":71,"updated-fields":0}'), +(14398, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.602996+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.712631+00', 109, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14399, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.712907+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.920905+00', 207, NULL), +(14400, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.972728+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:03.155616+00', 182, NULL), +(14401, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:02.972756+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:03.105758+00', 133, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14402, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:03.105843+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:03.129533+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(14403, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:03.129606+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:19:03.155569+00', 25, '{"total-tables":8,"tables-classified":0}'), +(14404, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:00.118153+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.486769+00', 19368, NULL), +(14405, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:00.118188+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:00.121327+00', 3, '{"timezone-id":null}'), +(14406, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:00.122082+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:00.407876+00', 285, '{"updated-tables":0,"total-tables":4}'), +(14407, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:00.40809+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.481133+00', 19073, '{"total-fields":30,"updated-fields":0}'), +(14408, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.481385+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.485848+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14409, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.485912+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.486595+00', 0, NULL), +(14410, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.567153+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.777524+00', 210, NULL), +(14411, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.567172+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.601623+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14412, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.601703+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.768309+00', 166, '{"fields-classified":0,"fields-failed":0}'), +(14413, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.768487+00', TIMESTAMP WITH TIME ZONE '2023-01-10 02:49:19.777368+00', 8, '{"total-tables":4,"tables-classified":0}'), +(14414, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 03:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:00:00.227+00', 121, NULL), +(14415, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 03:00:00.506+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:00:00.757+00', 251, NULL), +(14416, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:00.624568+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.295541+00', 7670, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14417, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:00.642091+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:02.607998+00', 1965, '{"timezone-id":"UTC"}'), +(14418, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:02.612015+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:03.39609+00', 784, '{"updated-tables":0,"total-tables":8}'), +(14419, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:03.396572+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.022224+00', 4625, '{"total-fields":71,"updated-fields":0}'), +(14420, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.02232+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.109713+00', 87, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14421, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.109789+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.295164+00', 185, NULL), +(14422, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.379126+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.580113+00', 200, NULL), +(14423, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.379151+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.498162+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14424, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.498236+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.521953+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(14425, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.522041+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:19:08.58004+00', 57, '{"total-tables":8,"tables-classified":0}'), +(14426, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:02.483657+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:20.89541+00', 18411, NULL), +(14427, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:02.493771+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:02.523105+00', 29, '{"timezone-id":null}'), +(14428, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:02.525685+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:03.421897+00', 896, '{"updated-tables":0,"total-tables":4}'), +(14429, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:03.422334+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:20.871445+00', 17449, '{"total-fields":30,"updated-fields":0}'), +(14430, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:20.871559+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:20.887532+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14431, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:20.887652+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:20.894955+00', 7, NULL), +(14432, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.100512+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.220462+00', 119, NULL), +(14433, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.100536+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.174744+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14434, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.174831+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.188784+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(14435, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.188864+00', TIMESTAMP WITH TIME ZONE '2023-01-10 03:49:21.220254+00', 31, '{"total-tables":4,"tables-classified":0}'), +(14436, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 04:00:00.236+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:00:00.98+00', 744, NULL), +(14437, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 04:00:00.233+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:00:01.327+00', 1094, NULL), +(14438, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:00.309374+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.05923+00', 6749, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14439, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:00.314878+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:01.606331+00', 1291, '{"timezone-id":"UTC"}'), +(14440, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:01.612655+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:02.62761+00', 1014, '{"updated-tables":0,"total-tables":8}'), +(14441, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:02.627973+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:06.756231+00', 4128, '{"total-fields":71,"updated-fields":0}'), +(14442, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:06.756331+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:06.842106+00', 85, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14443, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:06.842277+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.058691+00', 216, NULL), +(14444, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.225006+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.361451+00', 136, NULL), +(14445, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.225027+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.319105+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14446, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.319282+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.333716+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(14447, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.333781+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:19:07.361401+00', 27, '{"total-tables":8,"tables-classified":0}'), +(14448, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:00.317271+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.118848+00', 14801, NULL), +(14449, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:00.317303+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:00.320863+00', 3, '{"timezone-id":null}'), +(14450, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:00.320965+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:01.047568+00', 726, '{"updated-tables":0,"total-tables":4}'), +(14451, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:01.047634+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.112044+00', 14064, '{"total-fields":30,"updated-fields":0}'), +(14452, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.112235+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.115873+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14453, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.115944+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.118802+00', 2, NULL), +(14454, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.217561+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.339317+00', 121, NULL), +(14455, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.217587+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.298486+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14456, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.29859+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.307845+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(14457, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.307958+00', TIMESTAMP WITH TIME ZONE '2023-01-10 04:49:15.339262+00', 31, '{"total-tables":4,"tables-classified":0}'), +(14458, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 05:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:00:01.333+00', 1179, NULL), +(14459, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 05:00:00.109+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:00:01.576+00', 1467, NULL), +(14460, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:00.159374+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.42399+00', 6264, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14461, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:00.163617+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:00.949347+00', 785, '{"timezone-id":"UTC"}'), +(14462, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:00.953571+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:02.030057+00', 1076, '{"updated-tables":0,"total-tables":8}'), +(14463, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:02.03016+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.221305+00', 4191, '{"total-fields":71,"updated-fields":0}'), +(14464, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.221573+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.291596+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14465, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.291676+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.423689+00', 132, NULL), +(14466, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.746466+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.8865+00', 140, NULL), +(14467, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.746503+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.816004+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14468, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.816226+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.842944+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(14469, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.84306+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:19:06.886397+00', 43, '{"total-tables":8,"tables-classified":0}'), +(14470, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:00.274078+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.243868+00', 14969, NULL), +(14471, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:00.274107+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:00.276371+00', 2, '{"timezone-id":null}'), +(14472, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:00.276626+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:01.186076+00', 909, '{"updated-tables":0,"total-tables":4}'), +(14473, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:01.186152+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.237166+00', 14051, '{"total-fields":30,"updated-fields":0}'), +(14474, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.237276+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.240034+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14475, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.240142+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.243762+00', 3, NULL), +(14476, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.376359+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.431584+00', 55, NULL), +(14477, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.37638+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.418969+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14478, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.41909+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.423229+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14479, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.423346+00', TIMESTAMP WITH TIME ZONE '2023-01-10 05:49:15.431513+00', 8, '{"total-tables":4,"tables-classified":0}'), +(14480, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 06:00:00.281+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:00:00.538+00', 257, NULL), +(14481, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 06:00:00.237+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:00:00.539+00', 302, NULL), +(14482, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:00.613896+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:05.950481+00', 5336, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14483, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:00.619564+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:01.6843+00', 1064, '{"timezone-id":"UTC"}'), +(14484, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:01.694491+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:02.613726+00', 919, '{"updated-tables":0,"total-tables":8}'), +(14485, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:02.614134+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:05.742736+00', 3128, '{"total-fields":71,"updated-fields":0}'), +(14486, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:05.74283+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:05.808038+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14487, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:05.808217+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:05.950167+00', 141, NULL), +(14488, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.48315+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.730819+00', 247, NULL), +(14489, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.483171+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.66215+00', 178, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14490, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.662457+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.685761+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(14491, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.685974+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:19:06.730756+00', 44, '{"total-tables":8,"tables-classified":0}'), +(14492, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:00.284011+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.71516+00', 15431, NULL), +(14493, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:00.284041+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:00.286775+00', 2, '{"timezone-id":null}'), +(14494, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:00.286967+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:00.711578+00', 424, '{"updated-tables":0,"total-tables":4}'), +(14495, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:00.711638+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.709079+00', 14997, '{"total-fields":30,"updated-fields":0}'), +(14496, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.709168+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.71168+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14497, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.711747+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.715112+00', 3, NULL), +(14498, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.78933+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.843652+00', 54, NULL), +(14499, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.78935+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.829183+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14500, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.829259+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.836496+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(14501, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.836581+00', TIMESTAMP WITH TIME ZONE '2023-01-10 06:49:15.843611+00', 7, '{"total-tables":4,"tables-classified":0}'), +(14502, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 07:00:03.998+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:00:06.325+00', 2327, NULL), +(14503, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 07:00:03.998+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:00:06.581+00', 2583, NULL), +(14504, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:00.174561+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.77327+00', 7598, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14505, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:00.178038+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:00.920604+00', 742, '{"timezone-id":"UTC"}'), +(14506, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:00.922579+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:01.544983+00', 622, '{"updated-tables":0,"total-tables":8}'), +(14507, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:01.545093+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.50557+00', 5960, '{"total-fields":71,"updated-fields":0}'), +(14508, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.505657+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.579815+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14509, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.579881+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.772768+00', 192, NULL), +(14510, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.862867+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:08.341648+00', 478, NULL), +(14511, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:07.86289+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:08.308786+00', 445, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14512, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:08.308867+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:08.322177+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(14513, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:08.322394+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:19:08.341605+00', 19, '{"total-tables":8,"tables-classified":0}'), +(14514, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:00.258721+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.79951+00', 14540, NULL), +(14515, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:00.258751+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:00.262323+00', 3, '{"timezone-id":null}'), +(14516, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:00.262419+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:01.084164+00', 821, '{"updated-tables":0,"total-tables":4}'), +(14517, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:01.08424+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.790208+00', 13705, '{"total-fields":30,"updated-fields":0}'), +(14518, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.790303+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.795625+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14519, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.795691+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.799452+00', 3, NULL), +(14520, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.966807+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:15.114306+00', 147, NULL), +(14521, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:14.96683+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:15.097229+00', 130, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14522, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:15.097457+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:15.101092+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(14523, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:15.101159+00', TIMESTAMP WITH TIME ZONE '2023-01-10 07:49:15.114258+00', 13, '{"total-tables":4,"tables-classified":0}'), +(14524, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 08:00:00.227+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:00:01.778+00', 1551, NULL), +(14525, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 08:00:00.225+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:00:02.184+00', 1959, NULL), +(14526, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:00.380188+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.854994+00', 7474, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14527, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:00.385917+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:01.309519+00', 923, '{"timezone-id":"UTC"}'), +(14528, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:01.323756+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:02.0814+00', 757, '{"updated-tables":0,"total-tables":8}'), +(14529, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:02.082424+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.651937+00', 5569, '{"total-fields":71,"updated-fields":0}'), +(14530, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.652029+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.718024+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14531, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.718117+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.854597+00', 136, NULL), +(14532, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.94575+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:08.090973+00', 145, NULL), +(14533, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:07.945774+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:08.047332+00', 101, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14534, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:08.047426+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:08.065334+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(14535, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:08.065404+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:19:08.090923+00', 25, '{"total-tables":8,"tables-classified":0}'), +(14536, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:00.225113+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.527127+00', 12302, NULL), +(14537, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:00.225152+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:00.227736+00', 2, '{"timezone-id":null}'), +(14538, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:00.227869+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:00.697966+00', 470, '{"updated-tables":0,"total-tables":4}'), +(14539, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:00.698066+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.504669+00', 11806, '{"total-fields":30,"updated-fields":0}'), +(14540, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.504772+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.519316+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14541, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.519405+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.527053+00', 7, NULL), +(14542, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.693434+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.858031+00', 164, NULL), +(14543, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.693456+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.762526+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14544, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.762589+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.772549+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(14545, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.772707+00', TIMESTAMP WITH TIME ZONE '2023-01-10 08:49:12.857618+00', 84, '{"total-tables":4,"tables-classified":0}'), +(14546, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 09:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:00:00.855+00', 640, NULL), +(14547, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 09:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:00:00.995+00', 780, NULL), +(14548, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:00.90951+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.492055+00', 8582, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14549, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:00.920086+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:02.572503+00', 1652, '{"timezone-id":"UTC"}'), +(14550, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:02.605591+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:03.291681+00', 686, '{"updated-tables":0,"total-tables":8}'), +(14551, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:03.29178+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:08.635647+00', 5343, '{"total-fields":71,"updated-fields":0}'), +(14552, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:08.635756+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:08.940167+00', 304, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14553, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:08.940476+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.491604+00', 551, NULL), +(14554, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.569291+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.700005+00', 130, NULL), +(14555, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.569334+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.63859+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14556, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.638724+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.661505+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(14557, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.661589+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:19:09.699937+00', 38, '{"total-tables":8,"tables-classified":0}'), +(14558, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:00.278552+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.468478+00', 12189, NULL), +(14559, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:00.27858+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:00.280777+00', 2, '{"timezone-id":null}'), +(14560, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:00.280861+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:00.8552+00', 574, '{"updated-tables":0,"total-tables":4}'), +(14561, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:00.855381+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.461812+00', 11606, '{"total-fields":30,"updated-fields":0}'), +(14562, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.461973+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.465721+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14563, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.465831+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.468372+00', 2, NULL), +(14564, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.526041+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.576035+00', 49, NULL), +(14565, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.526067+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.564146+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14566, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.564305+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.568484+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14567, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.568587+00', TIMESTAMP WITH TIME ZONE '2023-01-10 09:49:12.575985+00', 7, '{"total-tables":4,"tables-classified":0}'), +(14568, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 10:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:00:00.853+00', 660, NULL), +(14569, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 10:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:00:00.897+00', 769, NULL), +(14570, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:00.323044+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.36456+00', 7041, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14571, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:00.327914+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:01.06192+00', 734, '{"timezone-id":"UTC"}'), +(14572, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:01.064576+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:02.154336+00', 1089, '{"updated-tables":0,"total-tables":8}'), +(14573, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:02.15571+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.179504+00', 5023, '{"total-fields":71,"updated-fields":0}'), +(14574, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.179598+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.237046+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14575, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.237145+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.364093+00', 126, NULL), +(14576, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.44877+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.866026+00', 417, NULL), +(14577, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.448803+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.804862+00', 356, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14578, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.80496+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.82364+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(14579, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.823712+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:19:07.865976+00', 42, '{"total-tables":8,"tables-classified":0}'), +(14580, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:00.961664+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.173856+00', 17212, NULL), +(14581, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:00.963856+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:00.970064+00', 6, '{"timezone-id":null}'), +(14582, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:00.970392+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:01.885535+00', 915, '{"updated-tables":0,"total-tables":4}'), +(14583, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:01.885619+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.152572+00', 16266, '{"total-fields":30,"updated-fields":0}'), +(14584, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.152684+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.165164+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14585, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.165237+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.173805+00', 8, NULL), +(14586, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.368271+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.676013+00', 307, NULL), +(14587, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.368291+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.500958+00', 132, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14588, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.501051+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.517332+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(14589, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.517413+00', TIMESTAMP WITH TIME ZONE '2023-01-10 10:49:18.675966+00', 158, '{"total-tables":4,"tables-classified":0}'), +(14590, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 11:00:00.389+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:00:02.44+00', 2051, NULL), +(14591, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 11:00:00.374+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:00:03.18+00', 2806, NULL), +(14592, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:00.450275+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.139975+00', 8689, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14593, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:00.465409+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:01.578658+00', 1113, '{"timezone-id":"UTC"}'), +(14594, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:01.580776+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:02.743579+00', 1162, '{"updated-tables":0,"total-tables":8}'), +(14595, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:02.744176+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:08.949914+00', 6205, '{"total-fields":71,"updated-fields":0}'), +(14596, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:08.949956+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.008997+00', 59, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14597, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.009061+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.139316+00', 130, NULL), +(14598, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.251986+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.457216+00', 205, NULL), +(14599, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.252008+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.382307+00', 130, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14600, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.382429+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.405103+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(14601, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.405191+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:19:09.457123+00', 51, '{"total-tables":8,"tables-classified":0}'), +(14602, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:00.262697+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.13511+00', 15872, NULL), +(14603, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:00.262728+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:00.268203+00', 5, '{"timezone-id":null}'), +(14604, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:00.268291+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:00.920099+00', 651, '{"updated-tables":0,"total-tables":4}'), +(14605, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:00.92018+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.094886+00', 15174, '{"total-fields":30,"updated-fields":0}'), +(14606, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.09503+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.114217+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14607, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.114279+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.135058+00', 20, NULL), +(14608, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.286353+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.457595+00', 171, NULL), +(14609, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.286375+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.402481+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14610, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.402559+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.438579+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(14611, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.438668+00', TIMESTAMP WITH TIME ZONE '2023-01-10 11:49:16.457535+00', 18, '{"total-tables":4,"tables-classified":0}'), +(14612, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 12:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:00:00.862+00', 674, NULL), +(14613, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 12:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:00:01.007+00', 827, NULL), +(14614, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:00.247468+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.582005+00', 7334, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14615, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:00.254977+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:01.296299+00', 1041, '{"timezone-id":"UTC"}'), +(14616, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:01.299399+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:02.092689+00', 793, '{"updated-tables":0,"total-tables":8}'), +(14617, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:02.097987+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:06.611391+00', 4513, '{"total-fields":71,"updated-fields":0}'), +(14618, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:06.611487+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:06.678131+00', 66, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14619, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:06.678248+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.580819+00', 902, NULL), +(14620, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.678218+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.89069+00', 212, NULL), +(14621, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.67824+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.837336+00', 159, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14622, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.837437+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.862668+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(14623, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.862907+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:19:07.890641+00', 27, '{"total-tables":8,"tables-classified":0}'), +(14624, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:00.23781+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.627734+00', 10389, NULL), +(14625, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:00.237837+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:00.239725+00', 1, '{"timezone-id":null}'), +(14626, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:00.23982+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:00.65479+00', 414, '{"updated-tables":0,"total-tables":4}'), +(14627, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:00.655008+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.623081+00', 9968, '{"total-fields":30,"updated-fields":0}'), +(14628, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.623182+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.625028+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14629, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.625081+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.62768+00', 2, NULL), +(14630, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.697531+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.765025+00', 67, NULL), +(14631, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.697551+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.755204+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14632, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.755276+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.758773+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(14633, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.758837+00', TIMESTAMP WITH TIME ZONE '2023-01-10 12:49:10.764979+00', 6, '{"total-tables":4,"tables-classified":0}'), +(14634, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 13:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:00:00.728+00', 568, NULL), +(14635, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 13:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:00:00.857+00', 697, NULL), +(14636, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:00.432105+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.485766+00', 5053, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14637, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:00.437624+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:00.941425+00', 503, '{"timezone-id":"UTC"}'), +(14638, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:00.944806+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:01.818629+00', 873, '{"updated-tables":0,"total-tables":8}'), +(14639, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:01.831966+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.303391+00', 3471, '{"total-fields":71,"updated-fields":0}'), +(14640, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.303469+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.352215+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14641, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.35227+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.485488+00', 133, NULL), +(14642, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.569068+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.72061+00', 151, NULL), +(14643, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.569091+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.678364+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14644, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.678451+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.697469+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(14645, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.697683+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:19:05.72056+00', 22, '{"total-tables":8,"tables-classified":0}'), +(14646, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:00.234989+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.584536+00', 12349, NULL), +(14647, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:00.235022+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:00.237413+00', 2, '{"timezone-id":null}'), +(14648, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:00.237502+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:00.752846+00', 515, '{"updated-tables":0,"total-tables":4}'), +(14649, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:00.752905+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.572203+00', 11819, '{"total-fields":30,"updated-fields":0}'), +(14650, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.572319+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.575134+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14651, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.575209+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.584466+00', 9, NULL), +(14652, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.661063+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.735814+00', 74, NULL), +(14653, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.661084+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.712345+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14654, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.712448+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.720715+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(14655, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.720784+00', TIMESTAMP WITH TIME ZONE '2023-01-10 13:49:12.735763+00', 14, '{"total-tables":4,"tables-classified":0}'), +(14656, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 14:00:01.086+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:00:03.275+00', 2189, NULL), +(14657, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 14:00:01.086+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:00:03.645+00', 2559, NULL), +(14658, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:02.661998+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.060798+00', 9398, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14659, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:02.670017+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:03.963949+00', 1293, '{"timezone-id":"UTC"}'), +(14660, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:03.969842+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:05.016205+00', 1046, '{"updated-tables":0,"total-tables":8}'), +(14661, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:05.016798+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:11.83717+00', 6820, '{"total-fields":71,"updated-fields":0}'), +(14662, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:11.837591+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:11.907018+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14663, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:11.907096+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.060317+00', 153, NULL), +(14664, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.170985+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.314536+00', 143, NULL), +(14665, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.171081+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.245603+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14666, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.245683+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.27914+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(14667, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.279274+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:19:12.314378+00', 35, '{"total-tables":8,"tables-classified":0}'), +(14668, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:00.352595+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.299075+00', 13946, NULL), +(14669, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:00.352621+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:00.355797+00', 3, '{"timezone-id":null}'), +(14670, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:00.355917+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:01.324887+00', 968, '{"updated-tables":0,"total-tables":4}'), +(14671, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:01.324953+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.291631+00', 12966, '{"total-fields":30,"updated-fields":0}'), +(14672, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.291748+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.294999+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14673, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.295059+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.299015+00', 3, NULL), +(14674, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.449491+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.508508+00', 59, NULL), +(14675, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.449515+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.494749+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14676, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.494904+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.499988+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(14677, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.500045+00', TIMESTAMP WITH TIME ZONE '2023-01-10 14:49:14.508401+00', 8, '{"total-tables":4,"tables-classified":0}'), +(14678, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 15:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:00:01.463+00', 1260, NULL), +(14679, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 15:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:00:01.803+00', 1601, NULL), +(14680, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:00.26938+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.489122+00', 5219, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14681, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:00.275713+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:00.931153+00', 655, '{"timezone-id":"UTC"}'), +(14682, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:00.93333+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:01.538366+00', 605, '{"updated-tables":0,"total-tables":8}'), +(14683, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:01.542691+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.302334+00', 3759, '{"total-fields":71,"updated-fields":0}'), +(14684, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.302429+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.345821+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14685, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.345882+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.488291+00', 142, NULL), +(14686, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.582183+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.923196+00', 341, NULL), +(14687, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.582215+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.85529+00', 273, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14688, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.855455+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.876075+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(14689, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.876207+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:19:05.923098+00', 46, '{"total-tables":8,"tables-classified":0}'), +(14690, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:00.316086+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:26.573058+00', 26256, NULL), +(14691, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:00.316179+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:00.318598+00', 2, '{"timezone-id":null}'), +(14692, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:00.318671+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:01.680077+00', 1361, '{"updated-tables":0,"total-tables":4}'), +(14693, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:01.680263+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:26.541699+00', 24861, '{"total-fields":30,"updated-fields":0}'), +(14694, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:26.541843+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:26.560272+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14695, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:26.560363+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:26.572999+00', 12, NULL), +(14696, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:27.406444+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:28.552276+00', 1145, NULL), +(14697, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:27.406465+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:28.402398+00', 995, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14698, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:28.402584+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:28.407168+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14699, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:28.407286+00', TIMESTAMP WITH TIME ZONE '2023-01-10 15:49:28.551935+00', 144, '{"total-tables":4,"tables-classified":0}'), +(14700, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 16:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:00:00.71+00', 530, NULL), +(14701, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 16:00:00.187+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:00:00.788+00', 601, NULL), +(14702, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:00.30299+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:06.595925+00', 6292, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14703, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:00.310719+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:01.038636+00', 727, '{"timezone-id":"UTC"}'), +(14704, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:01.040798+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:02.192991+00', 1152, '{"updated-tables":0,"total-tables":8}'), +(14705, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:02.193386+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:06.368811+00', 4175, '{"total-fields":71,"updated-fields":0}'), +(14706, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:06.368874+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:06.425127+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14707, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:06.425214+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:06.595566+00', 170, NULL), +(14708, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.068486+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.501972+00', 433, NULL), +(14709, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.06851+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.237527+00', 169, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14710, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.237608+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.370406+00', 132, '{"fields-classified":0,"fields-failed":0}'), +(14711, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.370538+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:19:07.501889+00', 131, '{"total-tables":8,"tables-classified":0}'), +(14712, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:00.308958+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.262728+00', 12953, NULL), +(14713, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:00.30898+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:00.311177+00', 2, '{"timezone-id":null}'), +(14714, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:00.311275+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:00.772455+00', 461, '{"updated-tables":0,"total-tables":4}'), +(14715, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:00.772621+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.249211+00', 12476, '{"total-fields":30,"updated-fields":0}'), +(14716, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.249366+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.256838+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14717, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.256903+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.262668+00', 5, NULL), +(14718, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.465249+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.538523+00', 73, NULL), +(14719, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.465268+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.519841+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14720, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.519933+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.525588+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(14721, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.525659+00', TIMESTAMP WITH TIME ZONE '2023-01-10 16:49:13.538459+00', 12, '{"total-tables":4,"tables-classified":0}'), +(14722, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 17:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:00:00.872+00', 715, NULL), +(14723, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 17:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:00:01.304+00', 1150, NULL), +(14724, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:00.187521+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.217084+00', 5029, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14725, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:00.191549+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:00.526445+00', 334, '{"timezone-id":"UTC"}'), +(14726, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:00.527875+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:01.605759+00', 1077, '{"updated-tables":0,"total-tables":8}'), +(14727, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:01.607689+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.100067+00', 3492, '{"total-fields":71,"updated-fields":0}'), +(14728, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.10031+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.133617+00', 33, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14729, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.1337+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.216888+00', 83, NULL), +(14730, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.416588+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.496541+00', 79, NULL), +(14731, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.416606+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.46987+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14732, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.469986+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.481618+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(14733, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.481685+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:19:05.49648+00', 14, '{"total-tables":8,"tables-classified":0}'), +(14734, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:00.259489+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.443313+00', 10183, NULL), +(14735, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:00.259521+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:00.262876+00', 3, '{"timezone-id":null}'), +(14736, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:00.262966+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:00.61465+00', 351, '{"updated-tables":0,"total-tables":4}'), +(14737, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:00.614713+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.433119+00', 9818, '{"total-fields":30,"updated-fields":0}'), +(14738, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.433283+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.440345+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14739, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.44046+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.443276+00', 2, NULL), +(14740, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.522469+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.629852+00', 107, NULL), +(14741, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.522488+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.610808+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14742, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.610885+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.613773+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(14743, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.613826+00', TIMESTAMP WITH TIME ZONE '2023-01-10 17:49:10.629803+00', 15, '{"total-tables":4,"tables-classified":0}'), +(14744, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 18:00:00.058+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:00:00.223+00', 165, NULL), +(14745, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 18:00:00.04+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:00:00.256+00', 216, NULL), +(14746, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:00.208586+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.246159+00', 4037, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14747, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:00.213227+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:00.595446+00', 382, '{"timezone-id":"UTC"}'), +(14748, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:00.597307+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:00.921124+00', 323, '{"updated-tables":0,"total-tables":8}'), +(14749, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:00.92169+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:03.683585+00', 2761, '{"total-fields":71,"updated-fields":0}'), +(14750, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:03.683688+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:03.733945+00', 50, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14751, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:03.734003+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.243403+00', 509, NULL), +(14752, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.404671+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.536887+00', 132, NULL), +(14753, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.404691+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.495552+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14754, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.495654+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.508652+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(14755, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.50872+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:19:04.536831+00', 28, '{"total-tables":8,"tables-classified":0}'), +(14756, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:00.210897+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:11.934865+00', 11723, NULL), +(14757, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:00.210927+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:00.23102+00', 20, '{"timezone-id":null}'), +(14758, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:00.2311+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:00.557479+00', 326, '{"updated-tables":0,"total-tables":4}'), +(14759, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:00.55754+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:11.928045+00', 11370, '{"total-fields":30,"updated-fields":0}'), +(14760, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:11.928144+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:11.932165+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14761, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:11.932351+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:11.934732+00', 2, NULL), +(14762, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.010292+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.069891+00', 59, NULL), +(14763, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.010312+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.053463+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14764, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.053515+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.057114+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(14765, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.057188+00', TIMESTAMP WITH TIME ZONE '2023-01-10 18:49:12.069805+00', 12, '{"total-tables":4,"tables-classified":0}'), +(14766, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 19:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:00:00.922+00', 757, NULL), +(14767, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 19:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:00:01.087+00', 922, NULL), +(14768, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:00.239208+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.327472+00', 5088, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14769, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:00.243138+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:00.771453+00', 528, '{"timezone-id":"UTC"}'), +(14770, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:00.776981+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:01.450755+00', 673, '{"updated-tables":0,"total-tables":8}'), +(14771, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:01.451169+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:04.984274+00', 3533, '{"total-fields":71,"updated-fields":0}'), +(14772, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:04.984343+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.045863+00', 61, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14773, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.04593+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.3272+00', 281, NULL), +(14774, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.388315+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.513496+00', 125, NULL), +(14775, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.388341+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.467353+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14776, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.467467+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.483493+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(14777, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.483579+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:19:05.513432+00', 29, '{"total-tables":8,"tables-classified":0}'), +(14778, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:00.503362+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.668772+00', 14165, NULL), +(14779, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:00.503389+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:00.508079+00', 4, '{"timezone-id":null}'), +(14780, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:00.508175+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:01.941618+00', 1433, '{"updated-tables":0,"total-tables":4}'), +(14781, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:01.941698+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.661118+00', 12719, '{"total-fields":30,"updated-fields":0}'), +(14782, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.661223+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.663853+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14783, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.66413+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.66852+00', 4, NULL), +(14784, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.727415+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.779753+00', 52, NULL), +(14785, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.727435+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.767929+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14786, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.768214+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.772321+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14787, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.772511+00', TIMESTAMP WITH TIME ZONE '2023-01-10 19:49:14.779555+00', 7, '{"total-tables":4,"tables-classified":0}'), +(14788, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 20:00:00.072+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:00:00.353+00', 281, NULL), +(14789, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 20:00:00.045+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:00:00.398+00', 353, NULL), +(14790, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:00.717497+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.113976+00', 5396, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14791, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:00.723906+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:03.169844+00', 2445, '{"timezone-id":"UTC"}'), +(14792, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:03.172398+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:03.525406+00', 353, '{"updated-tables":0,"total-tables":8}'), +(14793, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:03.525714+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:05.696447+00', 2170, '{"total-fields":71,"updated-fields":0}'), +(14794, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:05.696806+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.016289+00', 319, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14795, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.016334+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.113695+00', 97, NULL), +(14796, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.165851+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.293045+00', 127, NULL), +(14797, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.165869+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.234528+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14798, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.234613+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.272589+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(14799, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.272666+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:19:06.293002+00', 20, '{"total-tables":8,"tables-classified":0}'), +(14800, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:00.230921+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:09.963987+00', 9733, NULL), +(14801, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:00.230948+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:00.234206+00', 3, '{"timezone-id":null}'), +(14802, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:00.234285+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:00.585628+00', 351, '{"updated-tables":0,"total-tables":4}'), +(14803, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:00.585705+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:09.948875+00', 9363, '{"total-fields":30,"updated-fields":0}'), +(14804, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:09.948959+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:09.957875+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14805, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:09.957967+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:09.963938+00', 5, NULL), +(14806, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.104982+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.152844+00', 47, NULL), +(14807, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.105002+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.142676+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14808, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.142758+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.147205+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14809, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.147258+00', TIMESTAMP WITH TIME ZONE '2023-01-10 20:49:10.152808+00', 5, '{"total-tables":4,"tables-classified":0}'), +(14810, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:00.75+00', 634, NULL), +(14811, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:00.75+00', 605, NULL), +(14812, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:01.044023+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:16.881685+00', 15837, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14813, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:01.05017+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:04.590378+00', 3540, '{"deleted":0}'), +(14814, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:04.593714+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:00:16.881247+00', 12287, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(14815, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:00.287886+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:03.889813+00', 3601, NULL), +(14816, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:00.289151+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:00.547818+00', 258, '{"timezone-id":"UTC"}'), +(14817, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:00.548146+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:01.020616+00', 472, '{"updated-tables":0,"total-tables":8}'), +(14818, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:01.020906+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:02.654725+00', 1633, '{"total-fields":71,"updated-fields":0}'), +(14819, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:02.654798+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:02.780453+00', 125, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14820, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:02.780919+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:03.889545+00', 1108, NULL), +(14821, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:03.975037+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:04.170423+00', 195, NULL), +(14822, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:03.975064+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:04.091327+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14823, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:04.091845+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:04.128117+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(14824, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:04.128206+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:19:04.170369+00', 42, '{"total-tables":8,"tables-classified":0}'), +(14825, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:00.563297+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.34176+00', 15778, NULL), +(14826, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:00.566694+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:00.592923+00', 26, '{"timezone-id":null}'), +(14827, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:00.596182+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:01.092702+00', 496, '{"updated-tables":0,"total-tables":4}'), +(14828, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:01.093116+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.315997+00', 15222, '{"total-fields":30,"updated-fields":0}'), +(14829, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.316122+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.33214+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14830, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.332404+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.341634+00', 9, NULL), +(14831, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.490658+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.63872+00', 148, NULL), +(14832, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.49068+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.602193+00', 111, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14833, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.602279+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.617815+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(14834, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.618011+00', TIMESTAMP WITH TIME ZONE '2023-01-10 21:49:16.638661+00', 20, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14835, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 22:00:00.393+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:00:02.03+00', 1637, NULL), +(14836, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 22:00:00.32+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:00:02.039+00', 1719, NULL), +(14837, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:00.316636+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.167059+00', 3850, NULL), +(14838, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:00.320795+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:00.770464+00', 449, '{"timezone-id":"UTC"}'), +(14839, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:00.772503+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:01.152288+00', 379, '{"updated-tables":0,"total-tables":8}'), +(14840, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:01.152682+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.017279+00', 2864, '{"total-fields":71,"updated-fields":0}'), +(14841, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.017525+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.056225+00', 38, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14842, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.056273+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.166773+00', 110, NULL), +(14843, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.260787+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.411663+00', 150, NULL), +(14844, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.260809+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.353767+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14845, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.353835+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.369099+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(14846, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.369189+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:19:04.411616+00', 42, '{"total-tables":8,"tables-classified":0}'), +(14847, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:00.435831+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.504046+00', 9068, NULL), +(14848, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:00.435862+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:00.437522+00', 1, '{"timezone-id":null}'), +(14849, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:00.437592+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:00.831137+00', 393, '{"updated-tables":0,"total-tables":4}'), +(14850, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:00.831251+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.499513+00', 8668, '{"total-fields":30,"updated-fields":0}'), +(14851, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.499586+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.501887+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14852, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.501954+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.504015+00', 2, NULL), +(14853, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.594686+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.634293+00', 39, NULL), +(14854, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.594704+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.62191+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14855, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.621966+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.626716+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(14856, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.626778+00', TIMESTAMP WITH TIME ZONE '2023-01-10 22:49:09.634258+00', 7, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14857, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 23:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:00:00.693+00', 536, NULL), +(14858, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-10 23:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:00:00.8+00', 643, NULL), +(14859, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:00.363419+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.726222+00', 3362, NULL), +(14860, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:00.367223+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:00.794963+00', 427, '{"timezone-id":"UTC"}'), +(14861, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:00.795426+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:01.055498+00', 260, '{"updated-tables":0,"total-tables":8}'), +(14862, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:01.055936+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.50066+00', 2444, '{"total-fields":71,"updated-fields":0}'), +(14863, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.500764+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.591944+00', 91, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14864, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.592021+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.725872+00', 133, NULL), +(14865, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.789594+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.909543+00', 119, NULL), +(14866, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.789612+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.875576+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14867, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.875663+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.889347+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(14868, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.889419+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:19:03.909492+00', 20, '{"total-tables":8,"tables-classified":0}'), +(14869, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:00.334936+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:13.880575+00', 13545, NULL), +(14870, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:00.334982+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:00.336841+00', 1, '{"timezone-id":null}'), +(14871, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:00.337497+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:01.070171+00', 732, '{"updated-tables":0,"total-tables":4}'), +(14872, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:01.070258+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:13.868697+00', 12798, '{"total-fields":30,"updated-fields":0}'), +(14873, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:13.868879+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:13.874013+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14874, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:13.874101+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:13.878735+00', 4, NULL), +(14875, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.169072+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.311469+00', 142, NULL), +(14876, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.169106+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.269528+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14877, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.269609+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.277817+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(14878, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.278096+00', TIMESTAMP WITH TIME ZONE '2023-01-10 23:49:14.311227+00', 33, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14879, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 00:00:00.207+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:00:08.945+00', 8738, NULL), +(14880, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 00:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:00:10.181+00', 9978, NULL), +(14881, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:00.276624+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:05.783706+00', 5507, NULL), +(14882, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:00.281615+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:00.820021+00', 538, '{"timezone-id":"UTC"}'), +(14883, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:00.823217+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:01.469586+00', 646, '{"updated-tables":0,"total-tables":8}'), +(14884, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:01.470081+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:05.633671+00', 4163, '{"total-fields":71,"updated-fields":0}'), +(14885, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:05.633752+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:05.675893+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14886, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:05.675966+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:05.783416+00', 107, NULL), +(14887, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.147864+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.269625+00', 121, NULL), +(14888, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.147892+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.227261+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14889, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.227333+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.242909+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(14890, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.242982+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:19:06.26958+00', 26, '{"total-tables":8,"tables-classified":0}'), +(14891, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:00.216388+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.710558+00', 9494, NULL), +(14892, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:00.21646+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:00.218537+00', 2, '{"timezone-id":null}'), +(14893, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:00.218623+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:00.707924+00', 489, '{"updated-tables":0,"total-tables":4}'), +(14894, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:00.707988+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.698391+00', 8990, '{"total-fields":30,"updated-fields":0}'), +(14895, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.698491+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.703949+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14896, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.704014+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.710504+00', 6, NULL), +(14897, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.807012+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.891233+00', 84, NULL), +(14898, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.80703+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.8784+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14899, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.8785+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.883967+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(14900, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.884026+00', TIMESTAMP WITH TIME ZONE '2023-01-11 00:49:09.891186+00', 7, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14901, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 01:00:00.516+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:00:03.073+00', 2557, NULL), +(14902, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 01:00:00.513+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:00:03.621+00', 3108, NULL), +(14903, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:00.313289+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.344364+00', 4031, NULL), +(14904, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:00.326028+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:00.873609+00', 547, '{"timezone-id":"UTC"}'), +(14905, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:00.876257+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:01.237847+00', 361, '{"updated-tables":0,"total-tables":8}'), +(14906, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:01.238222+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.203411+00', 2965, '{"total-fields":71,"updated-fields":0}'), +(14907, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.203656+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.238443+00', 34, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14908, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.238497+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.343863+00', 105, NULL), +(14909, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.402774+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.538009+00', 135, NULL), +(14910, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.40283+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.493083+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14911, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.493345+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.519792+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(14912, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.519858+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:19:04.537874+00', 18, '{"total-tables":8,"tables-classified":0}'), +(14913, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:00.214681+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.096148+00', 10881, NULL), +(14914, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:00.214709+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:00.216995+00', 2, '{"timezone-id":null}'), +(14915, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:00.217063+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:00.594349+00', 377, '{"updated-tables":0,"total-tables":4}'), +(14916, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:00.5944+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.08758+00', 10493, '{"total-fields":30,"updated-fields":0}'), +(14917, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.087675+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.09297+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14918, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.093048+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.096104+00', 3, NULL), +(14919, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.245476+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.329884+00', 84, NULL), +(14920, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.245495+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.304781+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14921, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.304843+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.307498+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(14922, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.30757+00', TIMESTAMP WITH TIME ZONE '2023-01-11 01:49:11.329841+00', 22, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14923, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:00.217+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:01.049+00', 832, NULL), +(14924, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:00.233+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:00.983+00', 750, NULL), +(14925, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:01.694444+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:12.508741+00', 10814, NULL), +(14926, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:01.725524+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:04.652578+00', 2927, '{"deleted":0}'), +(14927, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:04.654505+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:00:12.508463+00', 7853, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(14928, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:00.050222+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.777326+00', 1727, NULL), +(14929, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:00.050432+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:00.51379+00', 463, '{"timezone-id":"UTC"}'), +(14930, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:00.513871+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:00.716458+00', 202, '{"updated-tables":0,"total-tables":8}'), +(14931, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:00.716536+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.587531+00', 870, '{"total-fields":71,"updated-fields":0}'), +(14932, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.587594+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.629786+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14933, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.62984+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.777249+00', 147, NULL), +(14934, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.811666+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.955957+00', 144, NULL), +(14935, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.811688+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.872946+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14936, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.873624+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.911237+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(14937, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.911585+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:19:01.955909+00', 44, '{"total-tables":8,"tables-classified":0}'), +(14938, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:00.689799+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:16.950899+00', 16261, NULL), +(14939, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:00.690726+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:00.710627+00', 19, '{"timezone-id":null}'), +(14940, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:00.714573+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:01.27186+00', 557, '{"updated-tables":0,"total-tables":4}'), +(14941, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:01.27226+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:16.923518+00', 15651, '{"total-fields":30,"updated-fields":0}'), +(14942, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:16.923912+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:16.942127+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14943, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:16.942377+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:16.950841+00', 8, NULL), +(14944, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.06812+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.151705+00', 83, NULL), +(14945, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.068142+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.119766+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14946, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.11983+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.127952+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(14947, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.128011+00', TIMESTAMP WITH TIME ZONE '2023-01-11 02:49:17.151662+00', 23, '{"total-tables":4,"tables-classified":0}'), +(14948, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 03:00:00.29+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:00:00.646+00', 356, NULL), +(14949, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 03:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:00:00.652+00', 512, NULL), +(14950, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:00.597243+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.415425+00', 7818, NULL), +(14951, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:00.60254+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:02.009131+00', 1406, '{"timezone-id":"UTC"}'), +(14952, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:02.013791+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:02.694718+00', 680, '{"updated-tables":0,"total-tables":8}'), +(14953, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:02.695299+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.256038+00', 5560, '{"total-fields":71,"updated-fields":0}'), +(14954, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.256115+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.282459+00', 26, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14955, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.28251+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.415397+00', 132, NULL), +(14956, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.500951+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.573885+00', 72, NULL), +(14957, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.500974+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.537222+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14958, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.537293+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.545559+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(14959, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.545625+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:19:08.573841+00', 28, '{"total-tables":8,"tables-classified":0}'), +(14960, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:00.392159+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.454763+00', 13062, NULL), +(14961, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:00.39221+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:00.395444+00', 3, '{"timezone-id":null}'), +(14962, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:00.39553+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:01.235341+00', 839, '{"updated-tables":0,"total-tables":4}'), +(14963, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:01.235418+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.449617+00', 12214, '{"total-fields":30,"updated-fields":0}'), +(14964, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.449714+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.451808+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14965, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.451862+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.454719+00', 2, NULL), +(14966, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.529508+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.603643+00', 74, NULL), +(14967, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.529532+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.588133+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14968, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.588206+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.594064+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(14969, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.594159+00', TIMESTAMP WITH TIME ZONE '2023-01-11 03:49:13.603563+00', 9, '{"total-tables":4,"tables-classified":0}'), +(14970, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 04:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:00:01.109+00', 917, NULL), +(14971, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 04:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:00:01.349+00', 1157, NULL), +(14972, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:00.235452+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.262184+00', 5026, NULL), +(14973, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:00.246357+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:00.925845+00', 679, '{"timezone-id":"UTC"}'), +(14974, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:00.927694+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:01.547031+00', 619, '{"updated-tables":0,"total-tables":8}'), +(14975, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:01.547412+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.059381+00', 3511, '{"total-fields":71,"updated-fields":0}'), +(14976, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.059503+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.113382+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14977, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.113465+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.261449+00', 147, NULL), +(14978, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.334815+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.431359+00', 96, NULL), +(14979, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.334838+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.401004+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(14980, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.401085+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.413492+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(14981, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.413579+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:19:05.431311+00', 17, '{"total-tables":8,"tables-classified":0}'), +(14982, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:00.213902+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.207215+00', 9993, NULL), +(14983, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:00.213928+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:00.216832+00', 2, '{"timezone-id":null}'), +(14984, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:00.217068+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:00.634014+00', 416, '{"updated-tables":0,"total-tables":4}'), +(14985, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:00.634104+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.202283+00', 9568, '{"total-fields":30,"updated-fields":0}'), +(14986, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.202397+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.2043+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(14987, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.204397+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.207133+00', 2, NULL), +(14988, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.277255+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.320467+00', 43, NULL), +(14989, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.277277+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.304086+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(14990, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.304576+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.307289+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(14991, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.30738+00', TIMESTAMP WITH TIME ZONE '2023-01-11 04:49:10.32034+00', 12, '{"total-tables":4,"tables-classified":0}'), +(14992, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 05:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:00:02.086+00', 1907, NULL), +(14993, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 05:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:00:02.639+00', 2467, NULL), +(14994, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:00.178801+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.231457+00', 4052, NULL), +(14995, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:00.181387+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:00.757524+00', 576, '{"timezone-id":"UTC"}'), +(14996, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:00.759631+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:01.103802+00', 344, '{"updated-tables":0,"total-tables":8}'), +(14997, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:01.104272+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.070323+00', 2966, '{"total-fields":71,"updated-fields":0}'), +(14998, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.070554+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.126845+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(14999, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.126928+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.230903+00', 103, NULL), +(15000, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.282422+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.586688+00', 304, NULL), +(15001, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.282442+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.556465+00', 274, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15002, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.556551+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.569962+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(15003, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.570047+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:19:04.586639+00', 16, '{"total-tables":8,"tables-classified":0}'), +(15004, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:00.187649+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:10.954791+00', 10767, NULL), +(15005, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:00.18768+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:00.18966+00', 1, '{"timezone-id":null}'), +(15006, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:00.189869+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:00.530868+00', 340, '{"updated-tables":0,"total-tables":4}'), +(15007, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:00.530926+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:10.94889+00', 10417, '{"total-fields":30,"updated-fields":0}'), +(15008, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:10.948987+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:10.951634+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15009, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:10.951706+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:10.954741+00', 3, NULL), +(15010, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.074529+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.135327+00', 60, NULL), +(15011, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.07455+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.122908+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15012, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.122986+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.129497+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(15013, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.129572+00', TIMESTAMP WITH TIME ZONE '2023-01-11 05:49:11.135267+00', 5, '{"total-tables":4,"tables-classified":0}'), +(15014, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 06:00:01.265+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:00:03.089+00', 1824, NULL), +(15015, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 06:00:01.265+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:00:03.775+00', 2510, NULL), +(15016, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:00.306549+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.062622+00', 7756, NULL), +(15017, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:00.308965+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:00.819673+00', 510, '{"timezone-id":"UTC"}'), +(15018, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:00.826044+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:01.696288+00', 870, '{"updated-tables":0,"total-tables":8}'), +(15019, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:01.696399+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:07.446531+00', 5750, '{"total-fields":71,"updated-fields":0}'), +(15020, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:07.446603+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:07.498682+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15021, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:07.498741+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.062263+00', 563, NULL), +(15022, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.101216+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.17007+00', 68, NULL), +(15023, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.10124+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.138473+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15024, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.138539+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.149799+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(15025, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.14986+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:19:08.170025+00', 20, '{"total-tables":8,"tables-classified":0}'), +(15026, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:00.353729+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.211998+00', 13858, NULL), +(15027, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:00.353795+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:00.358488+00', 4, '{"timezone-id":null}'), +(15028, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:00.359278+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:00.577781+00', 218, '{"updated-tables":0,"total-tables":4}'), +(15029, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:00.577864+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.203163+00', 13625, '{"total-fields":30,"updated-fields":0}'), +(15030, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.203227+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.206799+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15031, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.206858+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.211935+00', 5, NULL), +(15032, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.295992+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.349299+00', 53, NULL), +(15033, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.296014+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.336519+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15034, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.336751+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.341423+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(15035, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.341529+00', TIMESTAMP WITH TIME ZONE '2023-01-11 06:49:14.349242+00', 7, '{"total-tables":4,"tables-classified":0}'), +(15036, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 07:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:00:00.729+00', 537, NULL), +(15037, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 07:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:00:00.906+00', 718, NULL), +(15038, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:00.160774+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.457099+00', 4296, NULL), +(15039, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:00.16224+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:00.461156+00', 298, '{"timezone-id":"UTC"}'), +(15040, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:00.46204+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:00.87075+00', 408, '{"updated-tables":0,"total-tables":8}'), +(15041, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:00.871188+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.132596+00', 3261, '{"total-fields":71,"updated-fields":0}'), +(15042, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.132671+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.16986+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15043, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.169926+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.456695+00', 286, NULL), +(15044, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.52787+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.675695+00', 147, NULL), +(15045, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.527892+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.614456+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15046, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.614814+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.644292+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(15047, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.644359+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:19:04.675641+00', 31, '{"total-tables":8,"tables-classified":0}'), +(15048, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:00.198674+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.450505+00', 12251, NULL), +(15049, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:00.198702+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:00.200913+00', 2, '{"timezone-id":null}'), +(15050, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:00.201031+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:00.643361+00', 442, '{"updated-tables":0,"total-tables":4}'), +(15051, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:00.643416+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.444499+00', 11801, '{"total-fields":30,"updated-fields":0}'), +(15052, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.444604+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.44802+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15053, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.448084+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.450464+00', 2, NULL), +(15054, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.514605+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.567989+00', 53, NULL), +(15055, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.514625+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.553588+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15056, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.553803+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.55745+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15057, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.557517+00', TIMESTAMP WITH TIME ZONE '2023-01-11 07:49:12.56785+00', 10, '{"total-tables":4,"tables-classified":0}'), +(15058, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 08:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:00:00.787+00', 621, NULL), +(15059, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 08:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:00:00.92+00', 760, NULL), +(15060, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:00.394835+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.696587+00', 6301, NULL), +(15061, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:00.403378+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:01.323722+00', 920, '{"timezone-id":"UTC"}'), +(15062, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:01.328862+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:02.360858+00', 1031, '{"updated-tables":0,"total-tables":8}'), +(15063, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:02.360978+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.488187+00', 4127, '{"total-fields":71,"updated-fields":0}'), +(15064, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.48825+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.539747+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15065, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.53989+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.696199+00', 156, NULL), +(15066, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.800053+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:07.035794+00', 235, NULL), +(15067, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.800077+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.898473+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15068, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.898559+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.925145+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(15069, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:06.925598+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:19:07.035704+00', 110, '{"total-tables":8,"tables-classified":0}'), +(15070, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:00.242504+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.437663+00', 14195, NULL), +(15071, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:00.242531+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:00.267633+00', 25, '{"timezone-id":null}'), +(15072, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:00.267743+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:00.62351+00', 355, '{"updated-tables":0,"total-tables":4}'), +(15073, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:00.623584+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.433267+00', 13809, '{"total-fields":30,"updated-fields":0}'), +(15074, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.43337+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.435936+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15075, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.436001+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.437608+00', 1, NULL), +(15076, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.494227+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.567925+00', 73, NULL), +(15077, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.494247+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.512614+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15078, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.512693+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.516795+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(15079, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.516854+00', TIMESTAMP WITH TIME ZONE '2023-01-11 08:49:14.567879+00', 51, '{"total-tables":4,"tables-classified":0}'), +(15080, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 09:00:00.191+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:00:01.755+00', 1564, NULL), +(15081, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 09:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:00:01.749+00', 1531, NULL), +(15082, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:00.375248+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.570939+00', 10195, NULL), +(15083, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:00.383242+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:01.604897+00', 1221, '{"timezone-id":"UTC"}'), +(15084, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:01.608674+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:02.473025+00', 864, '{"updated-tables":0,"total-tables":8}'), +(15085, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:02.48905+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:09.631815+00', 7142, '{"total-fields":71,"updated-fields":0}'), +(15086, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:09.631928+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:09.778365+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15087, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:09.778462+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.568134+00', 789, NULL), +(15088, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.738238+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:11.0252+00', 286, NULL), +(15089, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.738261+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.927095+00', 188, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15090, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.927186+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.959437+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(15091, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:10.959512+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:19:11.025115+00', 65, '{"total-tables":8,"tables-classified":0}'), +(15092, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:00.225305+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.714292+00', 14488, NULL), +(15093, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:00.225331+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:00.227647+00', 2, '{"timezone-id":null}'), +(15094, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:00.227795+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:00.657638+00', 429, '{"updated-tables":0,"total-tables":4}'), +(15095, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:00.657695+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.695063+00', 14037, '{"total-fields":30,"updated-fields":0}'), +(15096, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.695175+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.700367+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15097, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.700515+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.714238+00', 13, NULL), +(15098, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.941191+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:15.044052+00', 102, NULL), +(15099, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:14.941214+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:15.020042+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15100, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:15.020125+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:15.023554+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15101, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:15.023619+00', TIMESTAMP WITH TIME ZONE '2023-01-11 09:49:15.043982+00', 20, '{"total-tables":4,"tables-classified":0}'), +(15102, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 10:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:00:01.294+00', 1085, NULL), +(15103, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 10:00:00.176+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:00:01.794+00', 1618, NULL), +(15104, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:04.192842+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.140535+00', 947, NULL), +(15105, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:04.192876+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:04.386353+00', 193, '{"timezone-id":"UTC"}'), +(15106, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:04.386463+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:04.429922+00', 43, '{"updated-tables":0,"total-tables":8}'), +(15107, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:04.4303+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.010215+00', 579, '{"total-fields":71,"updated-fields":0}'), +(15108, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.010307+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.036545+00', 26, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15109, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.036653+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.139307+00', 102, NULL), +(15110, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.158475+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.218755+00', 60, NULL), +(15111, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.158493+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.187607+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15112, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.187719+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.19445+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(15113, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.194519+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:05.218647+00', 24, '{"total-tables":8,"tables-classified":0}'), +(15114, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:00.074712+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.028751+00', 12954, NULL), +(15115, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:00.074751+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:00.086416+00', 11, '{"timezone-id":null}'), +(15116, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:00.086557+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:00.292744+00', 206, '{"updated-tables":0,"total-tables":4}'), +(15117, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:00.292825+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.025489+00', 12732, '{"total-fields":30,"updated-fields":0}'), +(15118, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.025644+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.027412+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15119, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.027493+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.028631+00', 1, NULL), +(15120, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.058692+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.099861+00', 41, NULL), +(15121, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.058711+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.081557+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15122, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.081642+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.085532+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15123, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.085623+00', TIMESTAMP WITH TIME ZONE '2023-01-11 10:49:13.099809+00', 14, '{"total-tables":4,"tables-classified":0}'), +(15124, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 11:00:00.043+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:00:00.705+00', 662, NULL), +(15125, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 11:00:00.044+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:00:00.705+00', 661, NULL), +(15126, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:00.548931+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.543523+00', 4994, NULL), +(15127, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:00.553888+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:02.036959+00', 1483, '{"timezone-id":"UTC"}'), +(15128, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:02.049539+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:02.740536+00', 690, '{"updated-tables":0,"total-tables":8}'), +(15129, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:02.740631+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:04.924049+00', 2183, '{"total-fields":71,"updated-fields":0}'), +(15130, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:04.924165+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.067037+00', 142, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15131, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.067115+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.543037+00', 475, NULL), +(15132, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.66618+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.849011+00', 182, NULL), +(15133, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.666205+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.781281+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15134, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.781513+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.815187+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(15135, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.815269+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:05.848949+00', 33, '{"total-tables":8,"tables-classified":0}'), +(15136, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:01.994025+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.534344+00', 24540, NULL), +(15137, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:02.013503+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:02.049046+00', 35, '{"timezone-id":null}'), +(15138, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:02.057716+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:03.508925+00', 1451, '{"updated-tables":0,"total-tables":4}'), +(15139, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:03.50907+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.485173+00', 22976, '{"total-fields":30,"updated-fields":0}'), +(15140, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.485377+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.518678+00', 33, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15141, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.518986+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.533107+00', 14, NULL), +(15142, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.930841+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:27.240449+00', 309, NULL), +(15143, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:26.93087+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:27.166649+00', 235, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15144, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:27.16697+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:27.191292+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(15145, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:27.19152+00', TIMESTAMP WITH TIME ZONE '2023-01-11 11:49:27.240335+00', 48, '{"total-tables":4,"tables-classified":0}'), +(15146, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 12:00:00.279+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:00:08.576+00', 8297, NULL), +(15147, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 12:00:00.26+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:00:08.888+00', 8628, NULL), +(15148, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:01.078995+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.723359+00', 8644, NULL), +(15149, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:01.122671+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:03.390861+00', 2268, '{"timezone-id":"UTC"}'), +(15150, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:03.417167+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:04.730237+00', 1313, '{"updated-tables":0,"total-tables":8}'), +(15151, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:04.730697+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.349213+00', 4618, '{"total-fields":71,"updated-fields":0}'), +(15152, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.349293+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.512655+00', 163, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15153, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.512748+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.722946+00', 210, NULL), +(15154, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.823135+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:10.034469+00', 211, NULL), +(15155, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.823159+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.94291+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15156, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.943009+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.979748+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(15157, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:09.979829+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:19:10.03442+00', 54, '{"total-tables":8,"tables-classified":0}'), +(15158, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:00.925432+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.509707+00', 18584, NULL), +(15159, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:00.925494+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:00.930997+00', 5, '{"timezone-id":null}'), +(15160, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:00.932543+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:01.96247+00', 1029, '{"updated-tables":0,"total-tables":4}'), +(15161, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:01.962578+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.49498+00', 17532, '{"total-fields":30,"updated-fields":0}'), +(15162, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.4951+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.50477+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15163, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.504831+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.509655+00', 4, NULL), +(15164, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.636801+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.761997+00', 125, NULL), +(15165, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.636823+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.686402+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15166, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.686495+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.690236+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15167, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.690296+00', TIMESTAMP WITH TIME ZONE '2023-01-11 12:49:19.761957+00', 71, '{"total-tables":4,"tables-classified":0}'), +(15168, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 13:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:00:00.977+00', 830, NULL), +(15169, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 13:00:00.182+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:00:00.974+00', 792, NULL), +(15170, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:00.166154+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.357863+00', 4191, NULL), +(15171, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:00.166737+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:00.321736+00', 154, '{"timezone-id":"UTC"}'), +(15172, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:00.321835+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:00.556301+00', 234, '{"updated-tables":0,"total-tables":8}'), +(15173, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:00.556914+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:03.949935+00', 3393, '{"total-fields":71,"updated-fields":0}'), +(15174, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:03.950056+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.024847+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15175, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.025333+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.357364+00', 332, NULL), +(15176, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.421979+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.668539+00', 246, NULL), +(15177, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.421999+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.548833+00', 126, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15178, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.54896+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.583385+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(15179, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.583467+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:19:04.66839+00', 84, '{"total-tables":8,"tables-classified":0}'), +(15180, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:00.469814+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.485539+00', 17015, NULL), +(15181, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:00.47799+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:00.53165+00', 53, '{"timezone-id":null}'), +(15182, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:00.535142+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:01.100318+00', 565, '{"updated-tables":0,"total-tables":4}'), +(15183, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:01.100483+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.464043+00', 16363, '{"total-fields":30,"updated-fields":0}'), +(15184, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.464124+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.478462+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15185, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.478608+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.485241+00', 6, NULL), +(15186, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.624676+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.7993+00', 174, NULL), +(15187, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.624699+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.722854+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15188, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.722936+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.738806+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(15189, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.738932+00', TIMESTAMP WITH TIME ZONE '2023-01-11 13:49:17.799218+00', 60, '{"total-tables":4,"tables-classified":0}'), +(15190, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 14:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:00:09.414+00', 9331, NULL), +(15191, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 14:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:00:09.41+00', 9303, NULL), +(15192, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:00.328456+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.762355+00', 3433, NULL), +(15193, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:00.343065+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:01.496121+00', 1153, '{"timezone-id":"UTC"}'), +(15194, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:01.498376+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:02.082955+00', 584, '{"updated-tables":0,"total-tables":8}'), +(15195, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:02.083067+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.508888+00', 1425, '{"total-fields":71,"updated-fields":0}'), +(15196, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.508964+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.599563+00', 90, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15197, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.599637+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.761676+00', 162, NULL), +(15198, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.873468+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:04.230266+00', 356, NULL), +(15199, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:03.873491+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:04.144373+00', 270, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15200, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:04.14513+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:04.176832+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(15201, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:04.176904+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:19:04.230204+00', 53, '{"total-tables":8,"tables-classified":0}'), +(15202, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:01.561167+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.096678+00', 27535, NULL), +(15203, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:01.56342+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:01.616204+00', 52, '{"timezone-id":null}'), +(15204, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:01.628387+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:03.195863+00', 1567, '{"updated-tables":0,"total-tables":4}'), +(15205, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:03.196156+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:28.412717+00', 25216, '{"total-fields":30,"updated-fields":0}'), +(15206, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:28.412825+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.091775+00', 678, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15207, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.091857+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.096599+00', 4, NULL), +(15208, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.303355+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.733099+00', 429, NULL), +(15209, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.303377+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.596986+00', 293, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15210, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.597087+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.702643+00', 105, '{"fields-classified":0,"fields-failed":0}'), +(15211, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.702706+00', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.733004+00', 30, '{"total-tables":4,"tables-classified":0}'), +(15212, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 15:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:00:01.809+00', 1652, NULL), +(15213, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 15:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:00:01.965+00', 1808, NULL), +(15214, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:01.465901+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:14.900988+00', 13435, NULL), +(15215, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:01.485452+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:03.581727+00', 2096, '{"timezone-id":"UTC"}'), +(15216, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:03.587056+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:04.579368+00', 992, '{"updated-tables":0,"total-tables":8}'), +(15217, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:04.580792+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:13.127438+00', 8546, '{"total-fields":71,"updated-fields":0}'), +(15218, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:13.128032+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:13.415535+00', 287, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15219, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:13.416144+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:14.90092+00', 1484, NULL), +(15220, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:15.582991+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:17.067112+00', 1484, NULL), +(15221, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:15.583056+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:16.644751+00', 1061, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15222, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:16.645195+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:16.885284+00', 240, '{"fields-classified":0,"fields-failed":0}'), +(15223, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:16.885721+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:19:17.067035+00', 181, '{"total-tables":8,"tables-classified":0}'), +(15224, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:03.152936+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.408823+00', 34255, NULL), +(15225, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:03.164554+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:03.278651+00', 114, '{"timezone-id":null}'), +(15226, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:03.28789+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:05.283352+00', 1995, '{"updated-tables":0,"total-tables":4}'), +(15227, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:05.284843+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.373916+00', 32089, '{"total-fields":30,"updated-fields":0}'), +(15228, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.374366+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.397431+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15229, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.397518+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.40804+00', 10, NULL), +(15230, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.690024+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.973592+00', 283, NULL), +(15231, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.690049+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.887549+00', 197, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15232, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.887649+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.907462+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(15233, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.907564+00', TIMESTAMP WITH TIME ZONE '2023-01-11 15:49:37.973528+00', 65, '{"total-tables":4,"tables-classified":0}'), +(15234, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 16:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:00:00.86+00', 692, NULL), +(15235, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 16:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:00:01.148+00', 980, NULL), +(15236, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:00.596118+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.771352+00', 7175, NULL), +(15237, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:00.602687+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:01.7684+00', 1165, '{"timezone-id":"UTC"}'), +(15238, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:01.770294+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:02.718932+00', 948, '{"updated-tables":0,"total-tables":8}'), +(15239, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:02.719325+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.52951+00', 4810, '{"total-fields":71,"updated-fields":0}'), +(15240, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.529581+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.580889+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15241, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.580954+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.770868+00', 189, NULL), +(15242, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.862796+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:08.031445+00', 168, NULL), +(15243, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.862818+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.966862+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15244, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.966949+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.982997+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(15245, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:07.983076+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:19:08.031398+00', 48, '{"total-tables":8,"tables-classified":0}'), +(15246, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:00.376476+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.732129+00', 16355, NULL), +(15247, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:00.376506+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:00.388492+00', 11, '{"timezone-id":null}'), +(15248, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:00.388574+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:01.656102+00', 1267, '{"updated-tables":0,"total-tables":4}'), +(15249, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:01.65617+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.726037+00', 15069, '{"total-fields":30,"updated-fields":0}'), +(15250, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.726153+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.728242+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15251, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.728297+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.732044+00', 3, NULL), +(15252, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.867264+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.943765+00', 76, NULL), +(15253, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.867288+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.919033+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15254, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.919113+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.922389+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15255, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.922464+00', TIMESTAMP WITH TIME ZONE '2023-01-11 16:49:16.943708+00', 21, '{"total-tables":4,"tables-classified":0}'), +(15256, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 17:00:00.424+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:00:01.249+00', 825, NULL), +(15257, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 17:00:00.289+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:00:01.593+00', 1304, NULL), +(15258, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:00.569502+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.460889+00', 9891, NULL), +(15259, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:00.63152+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:02.353804+00', 1722, '{"timezone-id":"UTC"}'), +(15260, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:02.356581+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:03.098568+00', 741, '{"updated-tables":0,"total-tables":8}'), +(15261, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:03.099101+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:09.54666+00', 6447, '{"total-fields":71,"updated-fields":0}'), +(15262, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:09.546725+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:09.64473+00', 98, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15263, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:09.644815+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.460441+00', 815, NULL), +(15264, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.740518+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:11.026685+00', 286, NULL), +(15265, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.740545+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.933155+00', 192, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15266, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.933301+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.961338+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(15267, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:10.961456+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:19:11.026606+00', 65, '{"total-tables":8,"tables-classified":0}'), +(15268, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:00.240799+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.285353+00', 13044, NULL), +(15269, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:00.240831+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:00.242775+00', 1, '{"timezone-id":null}'), +(15270, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:00.24286+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:00.968761+00', 725, '{"updated-tables":0,"total-tables":4}'), +(15271, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:00.968825+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.27907+00', 12310, '{"total-fields":30,"updated-fields":0}'), +(15272, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.279152+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.282005+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15273, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.28207+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.285301+00', 3, NULL), +(15274, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.366579+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.398038+00', 31, NULL), +(15275, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.366599+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.38716+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15276, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.387221+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.391803+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(15277, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.391869+00', TIMESTAMP WITH TIME ZONE '2023-01-11 17:49:13.397991+00', 6, '{"total-tables":4,"tables-classified":0}'), +(15278, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 18:00:00.238+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:00:01.64+00', 1402, NULL), +(15279, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 18:00:00.236+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:00:01.972+00', 1736, NULL), +(15280, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:00.379352+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.326565+00', 4947, NULL), +(15281, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:00.385986+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:01.781247+00', 1395, '{"timezone-id":"UTC"}'), +(15282, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:01.794154+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:02.514282+00', 720, '{"updated-tables":0,"total-tables":8}'), +(15283, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:02.514691+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.126959+00', 2612, '{"total-fields":71,"updated-fields":0}'), +(15284, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.127026+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.201674+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15285, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.201738+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.32625+00', 124, NULL), +(15286, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.398429+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.841884+00', 443, NULL), +(15287, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.398452+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.797961+00', 399, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15288, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.79804+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.812821+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(15289, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.812898+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:19:05.841827+00', 28, '{"total-tables":8,"tables-classified":0}'), +(15290, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:00.60241+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.772712+00', 11170, NULL), +(15291, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:00.602452+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:00.608135+00', 5, '{"timezone-id":null}'), +(15292, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:00.610813+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:01.053031+00', 442, '{"updated-tables":0,"total-tables":4}'), +(15293, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:01.053309+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.764318+00', 10711, '{"total-fields":30,"updated-fields":0}'), +(15294, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.76446+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.768561+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15295, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.768647+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.772664+00', 4, NULL), +(15296, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.869012+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.933091+00', 64, NULL), +(15297, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.869036+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.91031+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15298, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.910522+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.9175+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(15299, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.917567+00', TIMESTAMP WITH TIME ZONE '2023-01-11 18:49:11.93304+00', 15, '{"total-tables":4,"tables-classified":0}'), +(15300, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 19:00:01.362+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:00:03.324+00', 1962, NULL), +(15301, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 19:00:01.362+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:00:03.81+00', 2448, NULL), +(15302, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:00.331406+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.05071+00', 4719, NULL), +(15303, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:00.335536+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:01.093258+00', 757, '{"timezone-id":"UTC"}'), +(15304, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:01.096534+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:01.643603+00', 547, '{"updated-tables":0,"total-tables":8}'), +(15305, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:01.644026+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:04.852848+00', 3208, '{"total-fields":71,"updated-fields":0}'), +(15306, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:04.852948+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:04.901553+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15307, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:04.901622+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.050431+00', 148, NULL), +(15308, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.114714+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.21454+00', 99, NULL), +(15309, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.11474+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.180917+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15310, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.181002+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.194737+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(15311, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.194821+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:19:05.214489+00', 19, '{"total-tables":8,"tables-classified":0}'), +(15312, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:00.329087+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.747421+00', 16418, NULL), +(15313, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:00.329122+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:00.335616+00', 6, '{"timezone-id":null}'), +(15314, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:00.335766+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:01.040963+00', 705, '{"updated-tables":0,"total-tables":4}'), +(15315, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:01.041038+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.735189+00', 15694, '{"total-fields":30,"updated-fields":0}'), +(15316, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.735334+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.741806+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15317, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.741918+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.747106+00', 5, NULL), +(15318, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.854466+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.925329+00', 70, NULL), +(15319, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.854489+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.901768+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15320, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.901873+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.909486+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(15321, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.909603+00', TIMESTAMP WITH TIME ZONE '2023-01-11 19:49:16.925243+00', 15, '{"total-tables":4,"tables-classified":0}'), +(15322, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 20:00:00.331+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:00:05.293+00', 4962, NULL), +(15323, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 20:00:00.298+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:00:06.044+00', 5746, NULL), +(15324, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:00.216988+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.574814+00', 5357, NULL), +(15325, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:00.225277+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:00.787999+00', 562, '{"timezone-id":"UTC"}'), +(15326, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:00.791658+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:01.393575+00', 601, '{"updated-tables":0,"total-tables":8}'), +(15327, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:01.394031+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:04.862336+00', 3468, '{"total-fields":71,"updated-fields":0}'), +(15328, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:04.862434+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:04.940838+00', 78, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15329, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:04.940922+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.57148+00', 630, NULL), +(15330, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.704086+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:06.019822+00', 315, NULL), +(15331, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.704197+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.855892+00', 151, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15332, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.856333+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.892484+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(15333, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:05.893648+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:19:06.019693+00', 126, '{"total-tables":8,"tables-classified":0}'), +(15334, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:01.196078+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.245708+00', 17049, NULL), +(15335, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:01.200489+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:01.214658+00', 14, '{"timezone-id":null}'), +(15336, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:01.217669+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:02.404677+00', 1187, '{"updated-tables":0,"total-tables":4}'), +(15337, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:02.404775+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.222433+00', 15817, '{"total-fields":30,"updated-fields":0}'), +(15338, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.222692+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.236705+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15339, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.236784+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.245353+00', 8, NULL), +(15340, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.555676+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.691833+00', 136, NULL), +(15341, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.555696+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.648531+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15342, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.648687+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.667767+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(15343, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.667902+00', TIMESTAMP WITH TIME ZONE '2023-01-11 20:49:18.691777+00', 23, '{"total-tables":4,"tables-classified":0}'), +(15344, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:00.502+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:04.284+00', 3782, NULL), +(15345, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:00.398+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:04.286+00', 3888, NULL), +(15346, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:05.091983+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:20.461469+00', 15369, NULL), +(15347, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:05.107184+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:08.500801+00', 3393, '{"deleted":0}'), +(15348, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:08.50592+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:00:20.461116+00', 11955, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(15349, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:00.363553+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.458807+00', 5095, NULL), +(15350, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:00.366788+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:00.978206+00', 611, '{"timezone-id":"UTC"}'), +(15351, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:00.980067+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:01.627709+00', 647, '{"updated-tables":0,"total-tables":8}'), +(15352, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:01.627804+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.008742+00', 3380, '{"total-fields":71,"updated-fields":0}'), +(15353, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.008848+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.127988+00', 119, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15354, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.128093+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.458749+00', 330, NULL), +(15355, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.598312+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.854135+00', 255, NULL), +(15356, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.598334+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.737871+00', 139, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15357, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.737961+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.786965+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(15358, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.787039+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:19:05.854007+00', 66, '{"total-tables":8,"tables-classified":0}'), +(15359, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:00.743721+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.166739+00', 19423, NULL), +(15360, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:00.745389+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:00.757608+00', 12, '{"timezone-id":null}'), +(15361, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:00.759467+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:01.098319+00', 338, '{"updated-tables":0,"total-tables":4}'), +(15362, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:01.098399+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.149134+00', 19050, '{"total-fields":30,"updated-fields":0}'), +(15363, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.149239+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.160513+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15364, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.160594+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.166337+00', 5, NULL), +(15365, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.332177+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.474735+00', 142, NULL), +(15366, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.332198+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.425304+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15367, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.425409+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.443667+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(15368, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.443751+00', TIMESTAMP WITH TIME ZONE '2023-01-11 21:49:20.474676+00', 30, '{"total-tables":4,"tables-classified":0}'), +(15369, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 22:00:00.384+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:00:01.298+00', 914, NULL), +(15370, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 22:00:00.234+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:00:01.77+00', 1536, NULL), +(15371, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:00.258424+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.753448+00', 5495, NULL), +(15372, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:00.264392+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:01.421136+00', 1156, '{"timezone-id":"UTC"}'), +(15373, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:01.424091+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:02.042556+00', 618, '{"updated-tables":0,"total-tables":8}'), +(15374, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:02.042929+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.47199+00', 3429, '{"total-fields":71,"updated-fields":0}'), +(15375, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.472063+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.546754+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15376, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.546826+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.753095+00', 206, NULL), +(15377, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.82207+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.972547+00', 150, NULL), +(15378, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.822093+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.893086+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15379, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.893168+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.909454+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(15380, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.90955+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:19:05.972403+00', 62, '{"total-tables":8,"tables-classified":0}'), +(15381, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:00.293986+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.913338+00', 10619, NULL), +(15382, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:00.294205+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:00.296687+00', 2, '{"timezone-id":null}'), +(15383, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:00.296772+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:00.990934+00', 694, '{"updated-tables":0,"total-tables":4}'), +(15384, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:00.991005+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.903865+00', 9912, '{"total-fields":30,"updated-fields":0}'), +(15385, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.903933+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.908343+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15386, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.908406+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.9133+00', 4, NULL), +(15387, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.975938+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:11.029982+00', 54, NULL), +(15388, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:10.975957+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:11.021022+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15389, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:11.021097+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:11.023977+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(15390, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:11.024036+00', TIMESTAMP WITH TIME ZONE '2023-01-11 22:49:11.029943+00', 5, '{"total-tables":4,"tables-classified":0}'), +(15391, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 23:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:00:00.497+00', 365, NULL), +(15392, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-11 23:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:00:00.555+00', 423, NULL), +(15393, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:00.179745+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.375982+00', 4196, NULL), +(15394, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:00.183208+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:00.592168+00', 408, '{"timezone-id":"UTC"}'), +(15395, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:00.593829+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:00.911094+00', 317, '{"updated-tables":0,"total-tables":8}'), +(15396, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:00.911192+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.216132+00', 3304, '{"total-fields":71,"updated-fields":0}'), +(15397, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.216228+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.253349+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15398, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.25344+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.375597+00', 122, NULL), +(15399, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.443416+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.521519+00', 78, NULL), +(15400, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.443434+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.494563+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15401, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.49466+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.503784+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(15402, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.503882+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:19:04.521444+00', 17, '{"total-tables":8,"tables-classified":0}'), +(15403, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:00.385242+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.870955+00', 12485, NULL), +(15404, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:00.385286+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:00.389978+00', 4, '{"timezone-id":null}'), +(15405, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:00.390246+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:00.850467+00', 460, '{"updated-tables":0,"total-tables":4}'), +(15406, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:00.850571+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.858625+00', 12008, '{"total-fields":30,"updated-fields":0}'), +(15407, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.858867+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.867601+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15408, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.867719+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.870882+00', 3, NULL), +(15409, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.978334+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:13.035522+00', 57, NULL), +(15410, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:12.978378+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:13.019329+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15411, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:13.019477+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:13.025974+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(15412, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:13.026102+00', TIMESTAMP WITH TIME ZONE '2023-01-11 23:49:13.035439+00', 9, '{"total-tables":4,"tables-classified":0}'), +(15413, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 00:00:00.366+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:00:05.549+00', 5183, NULL), +(15414, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 00:00:00.344+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:00:07.336+00', 6992, NULL), +(15415, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:00.341891+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:05.937022+00', 5595, NULL), +(15416, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:00.346796+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:01.38435+00', 1037, '{"timezone-id":"UTC"}'), +(15417, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:01.389895+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:02.394871+00', 1004, '{"updated-tables":0,"total-tables":8}'), +(15418, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:02.395275+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:05.686957+00', 3291, '{"total-fields":71,"updated-fields":0}'), +(15419, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:05.687018+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:05.731406+00', 44, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15420, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:05.731459+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:05.92216+00', 190, NULL), +(15421, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.117651+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.511847+00', 394, NULL), +(15422, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.117676+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.470369+00', 352, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15423, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.470543+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.486995+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(15424, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.487103+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:19:06.511717+00', 24, '{"total-tables":8,"tables-classified":0}'), +(15425, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:00.245782+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.871545+00', 11625, NULL), +(15426, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:00.246048+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:00.249288+00', 3, '{"timezone-id":null}'), +(15427, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:00.249466+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:00.732778+00', 483, '{"updated-tables":0,"total-tables":4}'), +(15428, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:00.733082+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.862643+00', 11129, '{"total-fields":30,"updated-fields":0}'), +(15429, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.86282+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.868608+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15430, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.868716+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.871464+00', 2, NULL), +(15431, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.993808+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:12.062191+00', 68, NULL), +(15432, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:11.993826+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:12.039403+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15433, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:12.039766+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:12.047133+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(15434, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:12.047313+00', TIMESTAMP WITH TIME ZONE '2023-01-12 00:49:12.061876+00', 14, '{"total-tables":4,"tables-classified":0}'), +(15435, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 01:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:00:00.478+00', 349, NULL), +(15436, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 01:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:00:00.605+00', 476, NULL), +(15437, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:00.271636+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.473452+00', 4201, NULL), +(15438, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:00.27885+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:00.940596+00', 661, '{"timezone-id":"UTC"}'), +(15439, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:00.943031+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:01.463987+00', 520, '{"updated-tables":0,"total-tables":8}'), +(15440, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:01.464128+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.145048+00', 2680, '{"total-fields":71,"updated-fields":0}'), +(15441, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.145149+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.378204+00', 233, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15442, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.378294+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.472975+00', 94, NULL), +(15443, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.529136+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.648923+00', 119, NULL), +(15444, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.529157+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.588021+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15445, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.588137+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.605871+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(15446, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.605955+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:19:04.648856+00', 42, '{"total-tables":8,"tables-classified":0}'), +(15447, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:00.231991+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:12.874472+00', 12642, NULL), +(15448, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:00.232017+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:00.234218+00', 2, '{"timezone-id":null}'), +(15449, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:00.234294+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:00.796604+00', 562, '{"updated-tables":0,"total-tables":4}'), +(15450, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:00.796672+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:12.867808+00', 12071, '{"total-fields":30,"updated-fields":0}'), +(15451, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:12.867961+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:12.870886+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15452, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:12.871003+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:12.874421+00', 3, NULL), +(15453, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.012327+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.072663+00', 60, NULL), +(15454, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.012347+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.061898+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15455, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.062011+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.065461+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15456, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.06555+00', TIMESTAMP WITH TIME ZONE '2023-01-12 01:49:13.07259+00', 7, '{"total-tables":4,"tables-classified":0}'), +(15457, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:00.222+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:01.92+00', 1698, NULL), +(15458, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:00.245+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:01.919+00', 1674, NULL), +(15459, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:03.072654+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:19.541604+00', 16468, NULL), +(15460, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:03.094769+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:05.692326+00', 2597, '{"deleted":0}'), +(15461, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:05.694547+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:00:19.540841+00', 13846, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(15462, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:00.103143+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.298759+00', 2195, NULL), +(15463, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:00.104555+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:00.508519+00', 403, '{"timezone-id":"UTC"}'), +(15464, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:00.509292+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:00.782329+00', 273, '{"updated-tables":0,"total-tables":8}'), +(15465, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:00.782729+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:01.917214+00', 1134, '{"total-fields":71,"updated-fields":0}'), +(15466, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:01.91768+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.023462+00', 105, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15467, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.023574+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.298727+00', 275, NULL), +(15468, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.340067+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.556149+00', 216, NULL), +(15469, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.34009+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.485402+00', 145, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15470, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.485511+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.502013+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(15471, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.502128+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:19:02.555919+00', 53, '{"total-tables":8,"tables-classified":0}'), +(15472, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:01.060499+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.640391+00', 15579, NULL), +(15473, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:01.087004+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:01.119194+00', 32, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15474, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:01.123418+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:02.188172+00', 1064, '{"updated-tables":0,"total-tables":4}'), +(15475, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:02.188287+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.603051+00', 14414, '{"total-fields":30,"updated-fields":0}'), +(15476, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.603136+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.630441+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15477, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.630519+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.639559+00', 9, NULL), +(15478, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.809011+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:17.027536+00', 218, NULL), +(15479, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.809044+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.913396+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15480, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.913509+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.938428+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(15481, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:16.93855+00', TIMESTAMP WITH TIME ZONE '2023-01-12 02:49:17.027459+00', 88, '{"total-tables":4,"tables-classified":0}'), +(15482, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 03:00:00.505+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:00:00.882+00', 377, NULL), +(15483, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 03:00:00.232+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:00:00.886+00', 654, NULL), +(15484, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:00.732449+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.434829+00', 6702, NULL), +(15485, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:00.737385+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:02.150433+00', 1413, '{"timezone-id":"UTC"}'), +(15486, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:02.155064+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:02.751349+00', 596, '{"updated-tables":0,"total-tables":8}'), +(15487, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:02.751761+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.14736+00', 4395, '{"total-fields":71,"updated-fields":0}'), +(15488, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.147522+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.207594+00', 60, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15489, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.207702+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.433585+00', 225, NULL), +(15490, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.628022+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.888774+00', 260, NULL), +(15491, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.62805+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.79419+00', 166, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15492, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.794402+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.811438+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(15493, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.811622+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:19:07.888684+00', 77, '{"total-tables":8,"tables-classified":0}'), +(15494, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:00.176151+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:09.812265+00', 9636, NULL), +(15495, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:00.176178+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:00.178324+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15496, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:00.178413+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:00.592818+00', 414, '{"updated-tables":0,"total-tables":4}'), +(15497, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:00.592883+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:09.807714+00', 9214, '{"total-fields":30,"updated-fields":0}'), +(15498, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:09.807794+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:09.810101+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15499, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:09.810151+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:09.812233+00', 2, NULL), +(15500, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.061059+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.101089+00', 40, NULL), +(15501, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.061079+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.090812+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15502, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.090885+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.094653+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15503, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.094727+00', TIMESTAMP WITH TIME ZONE '2023-01-12 03:49:10.101026+00', 6, '{"total-tables":4,"tables-classified":0}'), +(15504, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 04:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:00:00.636+00', 483, NULL), +(15505, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 04:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:00:00.759+00', 606, NULL), +(15506, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:00.567888+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.1193+00', 6551, NULL), +(15507, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:00.573785+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:01.303901+00', 730, '{"timezone-id":"UTC"}'), +(15508, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:01.306721+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:01.888488+00', 581, '{"updated-tables":0,"total-tables":8}'), +(15509, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:01.888909+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:05.141363+00', 3252, '{"total-fields":71,"updated-fields":0}'), +(15510, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:05.141438+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:06.499967+00', 1358, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15511, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:06.500308+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.118688+00', 618, NULL), +(15512, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.416018+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.599176+00', 183, NULL), +(15513, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.416041+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.539783+00', 123, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15514, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.540133+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.567692+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(15515, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.567772+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:19:07.599127+00', 31, '{"total-tables":8,"tables-classified":0}'), +(15516, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:01.084402+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.320498+00', 20236, NULL), +(15517, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:01.088496+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:01.121184+00', 32, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15518, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:01.125451+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:02.283879+00', 1158, '{"updated-tables":0,"total-tables":4}'), +(15519, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:02.284371+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.281344+00', 18996, '{"total-fields":30,"updated-fields":0}'), +(15520, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.281786+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.317189+00', 35, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15521, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.317262+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.320128+00', 2, NULL), +(15522, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.511581+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.650766+00', 139, NULL), +(15523, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.511603+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.611792+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15524, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.612106+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.634743+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(15525, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.635006+00', TIMESTAMP WITH TIME ZONE '2023-01-12 04:49:21.650682+00', 15, '{"total-tables":4,"tables-classified":0}'), +(15526, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 05:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:00:01.395+00', 1243, NULL), +(15527, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 05:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:00:01.284+00', 1132, NULL), +(15528, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:00.322801+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.154255+00', 3831, NULL), +(15529, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:00.326213+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:01.294071+00', 967, '{"timezone-id":"UTC"}'), +(15530, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:01.296093+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:01.836394+00', 540, '{"updated-tables":0,"total-tables":8}'), +(15531, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:01.836932+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:03.901833+00', 2064, '{"total-fields":71,"updated-fields":0}'), +(15532, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:03.901941+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:03.984706+00', 82, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15533, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:03.984794+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.154221+00', 169, NULL), +(15534, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.267824+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.376908+00', 109, NULL), +(15535, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.267846+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.334763+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15536, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.334939+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.352619+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(15537, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.352703+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:19:04.376838+00', 24, '{"total-tables":8,"tables-classified":0}'), +(15538, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:01.799122+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.201402+00', 11402, NULL), +(15539, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:01.800441+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:01.831851+00', 31, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15540, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:01.837357+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:02.506692+00', 669, '{"updated-tables":0,"total-tables":4}'), +(15541, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:02.506796+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.177152+00', 10670, '{"total-fields":30,"updated-fields":0}'), +(15542, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.177262+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.194621+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15543, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.194702+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.20094+00', 6, NULL), +(15544, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.343821+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.465333+00', 121, NULL), +(15545, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.343842+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.409818+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15546, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.409903+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.443862+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(15547, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.444107+00', TIMESTAMP WITH TIME ZONE '2023-01-12 05:49:13.465081+00', 20, '{"total-tables":4,"tables-classified":0}'), +(15548, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 06:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:00:00.454+00', 296, NULL), +(15549, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 06:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:00:00.535+00', 381, NULL), +(15550, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:00.256465+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.085056+00', 4828, NULL), +(15551, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:00.263184+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:01.005374+00', 742, '{"timezone-id":"UTC"}'), +(15552, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:01.0075+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:01.553466+00', 545, '{"updated-tables":0,"total-tables":8}'), +(15553, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:01.553585+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:04.916061+00', 3362, '{"total-fields":71,"updated-fields":0}'), +(15554, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:04.916165+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:04.971208+00', 55, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15555, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:04.971394+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.084721+00', 113, NULL), +(15556, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.185999+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.341851+00', 155, NULL), +(15557, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.186021+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.29984+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15558, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.299958+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.315899+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(15559, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.316021+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:19:05.341689+00', 25, '{"total-tables":8,"tables-classified":0}'), +(15560, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:00.16579+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.392634+00', 11226, NULL), +(15561, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:00.165822+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:00.167775+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15562, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:00.167865+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:00.479668+00', 311, '{"updated-tables":0,"total-tables":4}'), +(15563, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:00.479721+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.386089+00', 10906, '{"total-fields":30,"updated-fields":0}'), +(15564, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.386194+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.388118+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15565, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.388185+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.392571+00', 4, NULL), +(15566, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.498568+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.55583+00', 57, NULL), +(15567, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.498801+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.543964+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15568, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.54405+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.548932+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(15569, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.548999+00', TIMESTAMP WITH TIME ZONE '2023-01-12 06:49:11.555782+00', 6, '{"total-tables":4,"tables-classified":0}'), +(15570, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 07:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:00:00.459+00', 299, NULL), +(15571, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 07:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:00:00.576+00', 416, NULL), +(15572, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:00.283983+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.83822+00', 3554, NULL), +(15573, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:00.286253+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:00.656465+00', 370, '{"timezone-id":"UTC"}'), +(15574, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:00.656617+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:00.839316+00', 182, '{"updated-tables":0,"total-tables":8}'), +(15575, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:00.839613+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.489071+00', 2649, '{"total-fields":71,"updated-fields":0}'), +(15576, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.489157+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.547231+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15577, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.547294+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.837776+00', 290, NULL), +(15578, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.980873+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:04.148936+00', 168, NULL), +(15579, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:03.980895+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:04.102255+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15580, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:04.102366+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:04.125703+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(15581, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:04.125767+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:19:04.148886+00', 23, '{"total-tables":8,"tables-classified":0}'), +(15582, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:00.197841+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.383033+00', 10185, NULL), +(15583, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:00.197872+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:00.200821+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15584, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:00.200907+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:00.649336+00', 448, '{"updated-tables":0,"total-tables":4}'), +(15585, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:00.649416+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.379087+00', 9729, '{"total-fields":30,"updated-fields":0}'), +(15586, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.379158+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.380911+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15587, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.380959+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.383001+00', 2, NULL), +(15588, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.548523+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.584733+00', 36, NULL), +(15589, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.548543+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.573271+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15590, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.573335+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.577306+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(15591, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.577364+00', TIMESTAMP WITH TIME ZONE '2023-01-12 07:49:10.584692+00', 7, '{"total-tables":4,"tables-classified":0}'), +(15592, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 08:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:00:00.622+00', 478, NULL), +(15593, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 08:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:00:00.729+00', 601, NULL), +(15594, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:00.289173+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.855481+00', 4566, NULL), +(15595, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:00.30859+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:00.728717+00', 420, '{"timezone-id":"UTC"}'), +(15596, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:00.730577+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:01.498071+00', 767, '{"updated-tables":0,"total-tables":8}'), +(15597, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:01.498543+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.473906+00', 2975, '{"total-fields":71,"updated-fields":0}'), +(15598, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.47417+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.601866+00', 127, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15599, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.602489+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.855147+00', 252, NULL), +(15600, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.938318+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:05.05796+00', 119, NULL), +(15601, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:04.938341+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:05.01708+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15602, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:05.01717+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:05.034918+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(15603, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:05.034989+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:05.057902+00', 22, '{"total-tables":8,"tables-classified":0}'), +(15604, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:52.658792+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:54.365308+00', 1706, NULL), +(15605, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:52.65998+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:52.706612+00', 46, '{"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15606, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:52.707068+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:54.359921+00', 1652, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(15607, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:53.648838+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.61678+00', 10967, NULL), +(15608, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:53.648856+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:53.655501+00', 6, '{"timezone-id":null}'), +(15609, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:53.655557+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:53.885872+00', 230, '{"updated-tables":0,"total-tables":4}'), +(15610, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:53.885954+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.60463+00', 10718, '{"total-fields":30,"updated-fields":0}'), +(15611, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.604715+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.612972+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15612, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.613047+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.616706+00', 3, NULL), +(15613, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.642389+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.713926+00', 71, NULL), +(15614, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.642411+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.67088+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15615, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.671251+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.689997+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(15616, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.690069+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:04.713874+00', 23, '{"total-tables":4,"tables-classified":0}'), +(15617, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:00.27792+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:09.843443+00', 9565, NULL), +(15618, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:00.278914+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:00.283708+00', 4, '{"timezone-id":null}'), +(15619, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:00.283819+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:00.480878+00', 197, '{"updated-tables":0,"total-tables":4}'), +(15620, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:00.481277+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:09.824635+00', 9343, '{"total-fields":30,"updated-fields":0}'), +(15621, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:09.824739+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:09.8391+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15622, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:09.839392+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:09.842914+00', 3, NULL), +(15623, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.483691+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.610229+00', 126, NULL), +(15624, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.483717+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.570212+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15625, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.570283+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.586224+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(15626, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.586303+00', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:10.610103+00', 23, '{"total-tables":4,"tables-classified":0}'), +(15627, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:00.849+00', 729, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15628, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:00.979+00', 861, NULL), +(15629, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:00.203884+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.233318+00', 3029, NULL), +(15630, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:00.210029+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:00.966932+00', 756, '{"timezone-id":"UTC"}'), +(15631, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:00.969352+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:01.64729+00', 677, '{"updated-tables":0,"total-tables":8}'), +(15632, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:01.647414+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:02.875246+00', 1227, '{"total-fields":71,"updated-fields":0}'), +(15633, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:02.876357+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.010615+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15634, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.010702+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.23294+00', 222, NULL), +(15635, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.330433+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.466641+00', 136, NULL), +(15636, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.330464+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.425368+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15637, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.425455+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.44361+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(15638, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.443685+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:19:03.466579+00', 22, '{"total-tables":8,"tables-classified":0}'), +(15639, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:00.051902+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:13.95588+00', 13903, NULL), +(15640, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:00.051944+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:00.052694+00', 0, '{"timezone-id":null}'), +(15641, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:00.053055+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:00.15538+00', 102, '{"updated-tables":0,"total-tables":4}'), +(15642, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:00.15564+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:13.95334+00', 13797, '{"total-fields":30,"updated-fields":0}'), +(15643, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:13.953455+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:13.955396+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15644, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:13.955469+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:13.955851+00', 0, NULL), +(15645, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.026755+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.082562+00', 55, NULL), +(15646, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.026779+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.071671+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15647, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.071824+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.076201+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(15648, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.07627+00', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:14.08251+00', 6, '{"total-tables":4,"tables-classified":0}'), +(15649, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 10:00:00.309+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:00:00.423+00', 114, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15650, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 10:00:00.31+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:00:00.423+00', 113, NULL), +(15651, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.105615+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.077237+00', 971, NULL), +(15652, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.111249+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.492568+00', 381, '{"timezone-id":"UTC"}'), +(15653, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.493674+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.640205+00', 146, '{"updated-tables":0,"total-tables":8}'), +(15654, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.64034+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.920033+00', 279, '{"total-fields":71,"updated-fields":0}'), +(15655, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.920118+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.952735+00', 32, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15656, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:00.952801+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.076463+00', 123, NULL), +(15657, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.181049+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.358968+00', 177, NULL), +(15658, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.181098+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.297665+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15659, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.297785+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.330428+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(15660, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.330511+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:01.358914+00', 28, '{"total-tables":8,"tables-classified":0}'), +(15661, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:01.441448+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:23.970207+00', 22528, NULL), +(15662, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:01.455516+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:01.505085+00', 49, '{"timezone-id":null}'), +(15663, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:01.516348+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:02.58633+00', 1069, '{"updated-tables":0,"total-tables":4}'), +(15664, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:02.586604+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:23.94832+00', 21361, '{"total-fields":30,"updated-fields":0}'), +(15665, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:23.948914+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:23.962371+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15666, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:23.962445+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:23.969876+00', 7, NULL), +(15667, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.189568+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.373847+00', 184, NULL), +(15668, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.189594+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.289419+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15669, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.289648+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.30736+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(15670, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.307519+00', TIMESTAMP WITH TIME ZONE '2023-01-12 10:49:24.373711+00', 66, '{"total-tables":4,"tables-classified":0}'), +(15671, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 11:00:00.471+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:00:03.678+00', 3207, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15672, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 11:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:00:03.684+00', 3480, NULL), +(15673, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:00.100649+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.388535+00', 2287, NULL), +(15674, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:00.102538+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:00.376151+00', 273, '{"timezone-id":"UTC"}'), +(15675, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:00.380586+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:00.481166+00', 100, '{"updated-tables":0,"total-tables":8}'), +(15676, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:00.481273+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.12506+00', 1643, '{"total-fields":71,"updated-fields":0}'), +(15677, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.125673+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.219172+00', 93, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15678, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.219249+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.382247+00', 162, NULL), +(15679, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.434162+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.513499+00', 79, NULL), +(15680, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.434189+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.476123+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15681, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.476229+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.5023+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(15682, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.502371+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:19:02.513445+00', 11, '{"total-tables":8,"tables-classified":0}'), +(15683, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:01.522136+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:33.679139+00', 32157, NULL), +(15684, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:01.534696+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:01.612862+00', 78, '{"timezone-id":null}'), +(15685, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:01.645308+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:03.442283+00', 1796, '{"updated-tables":0,"total-tables":4}'), +(15686, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:03.443277+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:33.636535+00', 30193, '{"total-fields":30,"updated-fields":0}'), +(15687, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:33.639123+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:33.667947+00', 28, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15688, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:33.668577+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:33.678752+00', 10, NULL), +(15689, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.015181+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.368805+00', 353, NULL), +(15690, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.016546+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.192148+00', 175, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15691, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.192319+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.252568+00', 60, '{"fields-classified":0,"fields-failed":0}'), +(15692, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.252677+00', TIMESTAMP WITH TIME ZONE '2023-01-12 11:49:34.368734+00', 116, '{"total-tables":4,"tables-classified":0}'), +(15693, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 12:00:00.108+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:00:00.437+00', 329, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15694, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 12:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:00:00.439+00', 333, NULL), +(15695, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:00.927981+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:08.876126+00', 7948, NULL), +(15696, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:00.934921+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:02.272639+00', 1337, '{"timezone-id":"UTC"}'), +(15697, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:02.282714+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:02.905039+00', 622, '{"updated-tables":0,"total-tables":8}'), +(15698, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:02.905154+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:07.548479+00', 4643, '{"total-fields":71,"updated-fields":0}'), +(15699, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:07.548776+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:07.794275+00', 245, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15700, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:07.794692+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:08.866607+00', 1071, NULL), +(15701, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.157022+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.746125+00', 589, NULL), +(15702, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.157271+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.584268+00', 426, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15703, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.58478+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.668507+00', 83, '{"fields-classified":0,"fields-failed":0}'), +(15704, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.669196+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:19:09.746047+00', 76, '{"total-tables":8,"tables-classified":0}'), +(15705, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:01.312836+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.104036+00', 20791, NULL), +(15706, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:01.324471+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:01.390494+00', 66, '{"timezone-id":null}'), +(15707, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:01.4121+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:02.690154+00', 1278, '{"updated-tables":0,"total-tables":4}'), +(15708, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:02.690708+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.075641+00', 19384, '{"total-fields":30,"updated-fields":0}'), +(15709, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.075785+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.09746+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15710, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.097544+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.103695+00', 6, NULL), +(15711, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.254969+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.381216+00', 126, NULL), +(15712, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.255+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.338477+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15713, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.338609+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.357125+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(15714, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.357415+00', TIMESTAMP WITH TIME ZONE '2023-01-12 12:49:22.381165+00', 23, '{"total-tables":4,"tables-classified":0}'), +(15715, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:03.112+00', 2968, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15716, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:00.174+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:03.111+00', 2937, NULL), +(15717, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:00.22456+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.454197+00', 2229, NULL), +(15718, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:00.229851+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:00.856484+00', 626, '{"timezone-id":"UTC"}'), +(15719, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:00.858278+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:01.198671+00', 340, '{"updated-tables":0,"total-tables":8}'), +(15720, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:01.198782+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:01.678647+00', 479, '{"total-fields":71,"updated-fields":0}'), +(15721, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:01.678708+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:01.764097+00', 85, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15722, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:01.76417+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.454125+00', 689, NULL), +(15723, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.562061+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.701592+00', 139, NULL), +(15724, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.562085+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.647411+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15725, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.647496+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.661696+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(15726, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.661768+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:02.701519+00', 39, '{"total-tables":8,"tables-classified":0}'), +(15727, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:00.192824+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:09.96986+00', 9777, NULL), +(15728, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:00.200568+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:00.213372+00', 12, '{"timezone-id":null}'), +(15729, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:00.214745+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:00.470759+00', 256, '{"updated-tables":0,"total-tables":4}'), +(15730, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:00.471018+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:09.940523+00', 9469, '{"total-fields":30,"updated-fields":0}'), +(15731, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:09.940644+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:09.961651+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15732, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:09.961749+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:09.969523+00', 7, NULL), +(15733, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.15151+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.325089+00', 173, NULL), +(15734, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.151534+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.279564+00', 128, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15735, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.279689+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.297899+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(15736, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.298028+00', TIMESTAMP WITH TIME ZONE '2023-01-12 13:49:10.325024+00', 26, '{"total-tables":4,"tables-classified":0}'), +(15737, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 14:00:00.073+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:00:00.102+00', 29, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15738, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 14:00:00.109+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:00:00.196+00', 87, NULL), +(15739, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:00.542965+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:04.743945+00', 4200, NULL), +(15740, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:00.549519+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:01.228889+00', 679, '{"timezone-id":"UTC"}'), +(15741, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:01.231985+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:01.649697+00', 417, '{"updated-tables":0,"total-tables":8}'), +(15742, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:01.649817+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:03.830091+00', 2180, '{"total-fields":71,"updated-fields":0}'), +(15743, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:03.830189+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:04.000005+00', 169, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15744, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:04.000111+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:04.743523+00', 743, NULL), +(15745, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.01946+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.387648+00', 368, NULL), +(15746, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.019479+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.277497+00', 258, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15747, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.277893+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.321165+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(15748, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.321336+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:19:05.387579+00', 66, '{"total-tables":8,"tables-classified":0}'), +(15749, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:00.243815+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.707745+00', 14463, NULL), +(15750, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:00.251021+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:00.275831+00', 24, '{"timezone-id":null}'), +(15751, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:00.278334+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:00.604952+00', 326, '{"updated-tables":0,"total-tables":4}'), +(15752, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:00.60551+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.684682+00', 14079, '{"total-fields":30,"updated-fields":0}'), +(15753, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.684798+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.699747+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15754, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.699867+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.707078+00', 7, NULL), +(15755, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.815814+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.936263+00', 120, NULL), +(15756, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.815837+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.876288+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15757, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.876378+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.89512+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(15758, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.895217+00', TIMESTAMP WITH TIME ZONE '2023-01-12 14:49:14.936182+00', 40, '{"total-tables":4,"tables-classified":0}'), +(15759, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:00.49+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:03.563+00', 3073, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15760, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:00.453+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:03.569+00', 3116, NULL), +(15761, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:01.133768+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:14.176607+00', 13042, NULL), +(15762, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:01.141012+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:03.103516+00', 1962, '{"timezone-id":"UTC"}'), +(15763, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:03.112563+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:04.049035+00', 936, '{"updated-tables":0,"total-tables":8}'), +(15764, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:04.050525+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:10.084778+00', 6034, '{"total-fields":71,"updated-fields":0}'), +(15765, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:10.086773+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:12.284571+00', 2197, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15766, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:12.285177+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:14.176048+00', 1890, NULL), +(15767, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:15.178468+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:16.216217+00', 1037, NULL), +(15768, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:15.178595+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:15.935973+00', 757, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15769, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:15.936502+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:16.016352+00', 79, '{"fields-classified":0,"fields-failed":0}'), +(15770, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:16.017198+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:19:16.214595+00', 197, '{"total-tables":8,"tables-classified":0}'), +(15771, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:00.168947+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.116883+00', 7947, NULL), +(15772, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:00.17324+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:00.180772+00', 7, '{"timezone-id":null}'), +(15773, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:00.185241+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:00.369+00', 183, '{"updated-tables":0,"total-tables":4}'), +(15774, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:00.369099+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.083536+00', 7714, '{"total-fields":39,"updated-fields":21}'), +(15775, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.083839+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.108636+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15776, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.108715+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.116536+00', 7, NULL), +(15777, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.216617+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.655061+00', 438, NULL), +(15778, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.216636+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.310198+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15779, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.310282+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.369944+00', 59, '{"fields-classified":0,"fields-failed":0}'), +(15780, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.370218+00', TIMESTAMP WITH TIME ZONE '2023-01-12 15:49:08.654998+00', 284, '{"total-tables":4,"tables-classified":0}'), +(15781, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 16:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:00:01.002+00', 905, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15782, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 16:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:00:01.002+00', 851, NULL), +(15783, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:02.784472+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:10.952503+00', 8168, NULL), +(15784, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:02.791003+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:04.192121+00', 1401, '{"timezone-id":"UTC"}'), +(15785, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:04.196232+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:04.753378+00', 557, '{"updated-tables":0,"total-tables":8}'), +(15786, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:04.753498+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:08.314667+00', 3561, '{"total-fields":71,"updated-fields":0}'), +(15787, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:08.314995+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:08.522717+00', 207, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15788, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:08.523099+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:10.951923+00', 2428, NULL), +(15789, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:11.381513+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:12.003384+00', 621, NULL), +(15790, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:11.381539+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:11.764358+00', 382, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15791, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:11.764803+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:11.854419+00', 89, '{"fields-classified":0,"fields-failed":0}'), +(15792, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:11.856234+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:19:12.00305+00', 146, '{"total-tables":8,"tables-classified":0}'), +(15793, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:01.446095+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.441779+00', 18995, NULL), +(15794, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:01.453388+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:01.494912+00', 41, '{"timezone-id":null}'), +(15795, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:01.50693+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:02.64896+00', 1142, '{"updated-tables":0,"total-tables":4}'), +(15796, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:02.649516+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.411805+00', 17762, '{"total-fields":39,"updated-fields":6}'), +(15797, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.411906+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.432652+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15798, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.432767+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.441499+00', 8, NULL), +(15799, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.572613+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.721251+00', 148, NULL), +(15800, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.573033+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.684619+00', 111, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15801, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.684704+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.698546+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(15802, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.698618+00', TIMESTAMP WITH TIME ZONE '2023-01-12 16:49:20.721193+00', 22, '{"total-tables":4,"tables-classified":0}'), +(15803, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 17:00:00.226+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:00:03.93+00', 3704, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15804, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 17:00:00.223+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:00:04.223+00', 4000, NULL), +(15805, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:00.22931+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.122075+00', 5892, NULL), +(15806, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:00.24063+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:01.020461+00', 779, '{"timezone-id":"UTC"}'), +(15807, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:01.021931+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:01.511027+00', 489, '{"updated-tables":0,"total-tables":8}'), +(15808, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:01.511717+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:04.876878+00', 3365, '{"total-fields":71,"updated-fields":0}'), +(15809, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:04.877455+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:05.792766+00', 915, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15810, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:05.793187+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.121761+00', 328, NULL), +(15811, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.176964+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.276491+00', 99, NULL), +(15812, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.176982+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.2422+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15813, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.242278+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.256898+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(15814, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.256967+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:19:06.276448+00', 19, '{"total-tables":8,"tables-classified":0}'), +(15815, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:00.721438+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.023621+00', 13302, NULL), +(15816, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:00.723+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:00.732448+00', 9, '{"timezone-id":null}'), +(15817, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:00.734287+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:01.308205+00', 573, '{"updated-tables":0,"total-tables":4}'), +(15818, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:01.308317+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:13.99987+00', 12691, '{"total-fields":39,"updated-fields":0}'), +(15819, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.000007+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.011496+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15820, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.01176+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.02355+00', 11, NULL), +(15821, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.1769+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.247829+00', 70, NULL), +(15822, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.176925+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.21828+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15823, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.218387+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.228067+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(15824, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.228149+00', TIMESTAMP WITH TIME ZONE '2023-01-12 17:49:14.247776+00', 19, '{"total-tables":4,"tables-classified":0}'), +(15825, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 18:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:00:01.278+00', 1103, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15826, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 18:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:00:01.491+00', 1316, NULL), +(15827, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:00.320289+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.522351+00', 7202, NULL), +(15828, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:00.324887+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:01.08625+00', 761, '{"timezone-id":"UTC"}'), +(15829, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:01.088194+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:01.682855+00', 594, '{"updated-tables":0,"total-tables":8}'), +(15830, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:01.683442+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:06.866558+00', 5183, '{"total-fields":71,"updated-fields":0}'), +(15831, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:06.866953+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.014293+00', 147, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15832, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.015059+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.52179+00', 506, NULL), +(15833, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.573107+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.662763+00', 89, NULL), +(15834, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.573126+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.624715+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15835, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.624821+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.637789+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(15836, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.637888+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:19:07.662711+00', 24, '{"total-tables":8,"tables-classified":0}'), +(15837, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:00.604141+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.409821+00', 11805, NULL), +(15838, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:00.604572+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:00.607777+00', 3, '{"timezone-id":null}'), +(15839, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:00.609199+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:01.106385+00', 497, '{"updated-tables":0,"total-tables":4}'), +(15840, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:01.106485+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.393367+00', 11286, '{"total-fields":39,"updated-fields":0}'), +(15841, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.39345+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.404387+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15842, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.404491+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.409732+00', 5, NULL), +(15843, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.534503+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.58403+00', 49, NULL), +(15844, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.534533+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.567708+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15845, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.567765+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.573733+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(15846, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.573793+00', TIMESTAMP WITH TIME ZONE '2023-01-12 18:49:12.583985+00', 10, '{"total-tables":4,"tables-classified":0}'), +(15847, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 19:00:00.095+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:00:00.369+00', 274, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15848, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 19:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:00:00.369+00', 243, NULL), +(15849, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:00.353562+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.541315+00', 4187, NULL), +(15850, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:00.357807+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:00.66917+00', 311, '{"timezone-id":"UTC"}'), +(15851, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:00.670872+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:01.142333+00', 471, '{"updated-tables":0,"total-tables":8}'), +(15852, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:01.143208+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.337933+00', 3194, '{"total-fields":71,"updated-fields":0}'), +(15853, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.338033+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.379555+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15854, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.379622+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.540886+00', 161, NULL), +(15855, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.641781+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.764107+00', 122, NULL), +(15856, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.641801+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.724457+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15857, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.724525+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.741536+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(15858, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.741605+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:19:04.764059+00', 22, '{"total-tables":8,"tables-classified":0}'), +(15859, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:00.350595+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.403621+00', 11053, NULL), +(15860, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:00.351211+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:00.353542+00', 2, '{"timezone-id":null}'), +(15861, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:00.35362+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:01.139482+00', 785, '{"updated-tables":0,"total-tables":4}'), +(15862, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:01.139576+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.38787+00', 10248, '{"total-fields":39,"updated-fields":0}'), +(15863, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.387983+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.397651+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15864, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.397721+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.403573+00', 5, NULL), +(15865, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.508382+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.565132+00', 56, NULL), +(15866, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.508445+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.541887+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15867, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.544093+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.552896+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(15868, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.553519+00', TIMESTAMP WITH TIME ZONE '2023-01-12 19:49:11.565085+00', 11, '{"total-tables":4,"tables-classified":0}'), +(15869, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 20:00:00.182+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:00:01.063+00', 881, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15870, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 20:00:00.182+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:00:01.316+00', 1134, NULL), +(15871, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:00.253517+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.251406+00', 5997, NULL), +(15872, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:00.262728+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:01.092547+00', 829, '{"timezone-id":"UTC"}'), +(15873, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:01.096511+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:01.59185+00', 495, '{"updated-tables":0,"total-tables":8}'), +(15874, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:01.592374+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:05.506879+00', 3914, '{"total-fields":71,"updated-fields":0}'), +(15875, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:05.507282+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:05.65943+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15876, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:05.659745+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.251146+00', 591, NULL), +(15877, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.459707+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.915576+00', 455, NULL), +(15878, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.459966+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.752728+00', 292, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15879, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.753068+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.818467+00', 65, '{"fields-classified":0,"fields-failed":0}'), +(15880, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.81897+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:19:06.91513+00', 96, '{"total-tables":8,"tables-classified":0}'), +(15881, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:01.141928+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.7129+00', 12570, NULL), +(15882, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:01.149457+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:01.218906+00', 69, '{"timezone-id":null}'), +(15883, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:01.223298+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:02.108309+00', 885, '{"updated-tables":0,"total-tables":4}'), +(15884, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:02.108467+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.680581+00', 11572, '{"total-fields":39,"updated-fields":0}'), +(15885, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.680719+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.701197+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15886, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.701272+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.712837+00', 11, NULL), +(15887, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.851213+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.976522+00', 125, NULL), +(15888, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.851233+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.921938+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15889, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.922077+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.940685+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(15890, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.940777+00', TIMESTAMP WITH TIME ZONE '2023-01-12 20:49:13.976454+00', 35, '{"total-tables":4,"tables-classified":0}'), +(15891, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:01.762+00', 1596, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15892, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:01.76+00', 1576, NULL), +(15893, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:02.573731+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:16.898496+00', 14324, NULL), +(15894, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:02.582129+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:05.931619+00', 3349, '{"deleted":0}'), +(15895, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:05.934469+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:00:16.898057+00', 10963, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(15896, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.099214+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:01.157977+00', 1058, NULL), +(15897, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.099259+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.254625+00', 155, '{"timezone-id":"UTC"}'), +(15898, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.254712+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.483813+00', 229, '{"updated-tables":0,"total-tables":8}'), +(15899, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.48389+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.977797+00', 493, '{"total-fields":71,"updated-fields":0}'), +(15900, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:00.977858+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:01.027365+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15901, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:01.027426+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:01.157945+00', 130, NULL), +(15902, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:01.270042+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:02.271224+00', 1001, NULL), +(15903, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:01.270062+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:02.149679+00', 879, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15904, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:02.149783+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:02.182666+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(15905, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:02.182758+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:19:02.271156+00', 88, '{"total-tables":8,"tables-classified":0}'), +(15906, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:00.905185+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.256934+00', 16351, NULL), +(15907, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:00.913791+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:00.957595+00', 43, '{"timezone-id":null}'), +(15908, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:00.963982+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:01.980767+00', 1016, '{"updated-tables":0,"total-tables":4}'), +(15909, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:01.981297+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.230207+00', 15248, '{"total-fields":39,"updated-fields":0}'), +(15910, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.23032+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.24673+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15911, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.246828+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.256559+00', 9, NULL), +(15912, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.41154+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.534217+00', 122, NULL), +(15913, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.411558+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.486769+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15914, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.486865+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.502639+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(15915, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.502728+00', TIMESTAMP WITH TIME ZONE '2023-01-12 21:49:17.534161+00', 31, '{"total-tables":4,"tables-classified":0}'), +(15916, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 22:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:00:00.703+00', 569, NULL), +(15917, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 22:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:00:00.786+00', 652, NULL), +(15918, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:00.642519+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.284739+00', 5642, NULL), +(15919, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:00.64764+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:01.363351+00', 715, '{"timezone-id":"UTC"}'), +(15920, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:01.365142+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:01.798773+00', 433, '{"updated-tables":0,"total-tables":8}'), +(15921, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:01.799003+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:05.61918+00', 3820, '{"total-fields":71,"updated-fields":0}'), +(15922, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:05.620658+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:05.743058+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15923, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:05.743341+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.284683+00', 541, NULL), +(15924, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.441838+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.73031+00', 288, NULL), +(15925, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.441861+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.635175+00', 193, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15926, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.635528+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.680033+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(15927, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.680405+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:19:06.730246+00', 49, '{"total-tables":8,"tables-classified":0}'), +(15928, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:00.357516+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.550368+00', 10192, NULL), +(15929, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:00.359261+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:00.361147+00', 1, '{"timezone-id":null}'), +(15930, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:00.361427+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:00.730493+00', 369, '{"updated-tables":0,"total-tables":4}'), +(15931, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:00.730576+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.541321+00', 9810, '{"total-fields":39,"updated-fields":0}'), +(15932, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.541399+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.546173+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15933, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.546227+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.550112+00', 3, NULL), +(15934, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.643384+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.690861+00', 47, NULL), +(15935, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.64343+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.674112+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15936, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.674182+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.679951+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(15937, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.680008+00', TIMESTAMP WITH TIME ZONE '2023-01-12 22:49:10.690812+00', 10, '{"total-tables":4,"tables-classified":0}'), +(15938, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 23:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:00:00.432+00', 295, NULL), +(15939, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-12 23:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:00:00.523+00', 401, NULL), +(15940, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:00.741444+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.061872+00', 7320, NULL), +(15941, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:00.747277+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:01.397715+00', 650, '{"timezone-id":"UTC"}'), +(15942, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:01.402564+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:01.909989+00', 507, '{"updated-tables":0,"total-tables":8}'), +(15943, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:01.910343+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:07.122114+00', 5211, '{"total-fields":71,"updated-fields":0}'), +(15944, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:07.122673+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:07.270041+00', 147, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15945, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:07.270367+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.061399+00', 791, NULL), +(15946, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.310152+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.647702+00', 337, NULL), +(15947, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.310434+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.529204+00', 218, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15948, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.529553+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.573452+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(15949, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.57379+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:19:08.647431+00', 73, '{"total-tables":8,"tables-classified":0}'), +(15950, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:00.603927+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.018507+00', 17414, NULL), +(15951, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:00.606612+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:00.636596+00', 29, '{"timezone-id":null}'), +(15952, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:00.64228+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:01.307005+00', 664, '{"updated-tables":0,"total-tables":4}'), +(15953, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:01.307603+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:17.986548+00', 16678, '{"total-fields":39,"updated-fields":0}'), +(15954, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:17.990187+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.008218+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15955, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.008333+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.017876+00', 9, NULL), +(15956, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.244269+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.355871+00', 111, NULL), +(15957, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.244544+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.308558+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15958, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.308643+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.320544+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(15959, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.320617+00', TIMESTAMP WITH TIME ZONE '2023-01-12 23:49:18.355822+00', 35, '{"total-tables":4,"tables-classified":0}'), +(15960, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 00:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:00:01.613+00', 1405, NULL), +(15961, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 00:00:00.198+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:00:02.55+00', 2352, NULL), +(15962, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:00.627099+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:09.919818+00', 9292, NULL), +(15963, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:00.633805+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:01.737175+00', 1103, '{"timezone-id":"UTC"}'), +(15964, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:01.742494+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:02.389874+00', 647, '{"updated-tables":0,"total-tables":8}'), +(15965, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:02.390203+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:09.050032+00', 6659, '{"total-fields":71,"updated-fields":0}'), +(15966, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:09.05067+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:09.380159+00', 329, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15967, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:09.38045+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:09.919496+00', 539, NULL), +(15968, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:10.185001+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:11.062531+00', 877, NULL), +(15969, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:10.185022+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:10.566893+00', 381, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15970, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:10.56718+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:10.604912+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(15971, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:10.605201+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:19:11.062196+00', 456, '{"total-tables":8,"tables-classified":0}'), +(15972, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:01.144405+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.356813+00', 14212, NULL), +(15973, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:01.1531+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:01.214794+00', 61, '{"timezone-id":null}'), +(15974, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:01.221203+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:02.152996+00', 931, '{"updated-tables":0,"total-tables":4}'), +(15975, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:02.153464+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.338546+00', 13185, '{"total-fields":39,"updated-fields":0}'), +(15976, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.338662+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.35042+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15977, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.350503+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.356461+00', 5, NULL), +(15978, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.457285+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.545114+00', 87, NULL), +(15979, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.457307+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.512593+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(15980, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.512666+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.52196+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(15981, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.522033+00', TIMESTAMP WITH TIME ZONE '2023-01-13 00:49:15.545044+00', 23, '{"total-tables":4,"tables-classified":0}'), +(15982, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 01:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:00:00.874+00', 736, NULL), +(15983, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 01:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:00:01.001+00', 861, NULL), +(15984, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:00.273365+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.350486+00', 6077, NULL), +(15985, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:00.278981+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:01.09375+00', 814, '{"timezone-id":"UTC"}'), +(15986, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:01.096039+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:01.617716+00', 521, '{"updated-tables":0,"total-tables":8}'), +(15987, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:01.618166+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:05.565407+00', 3947, '{"total-fields":71,"updated-fields":0}'), +(15988, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:05.566094+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:05.726264+00', 160, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(15989, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:05.726573+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.349139+00', 622, NULL), +(15990, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.534528+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.873044+00', 338, NULL), +(15991, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.53455+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.791147+00', 256, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(15992, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.791567+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.834619+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(15993, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.834733+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:19:06.872987+00', 38, '{"total-tables":8,"tables-classified":0}'), +(15994, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:01.264503+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.403514+00', 14139, NULL), +(15995, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:01.277607+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:01.32913+00', 51, '{"timezone-id":null}'), +(15996, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:01.336561+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:02.228537+00', 891, '{"updated-tables":0,"total-tables":4}'), +(15997, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:02.228809+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.383566+00', 13154, '{"total-fields":39,"updated-fields":0}'), +(15998, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.383685+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.396905+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(15999, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.397016+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.402952+00', 5, NULL), +(16000, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.518389+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.627794+00', 109, NULL), +(16001, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.518408+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.593931+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16002, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.594+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.604592+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(16003, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.6048+00', TIMESTAMP WITH TIME ZONE '2023-01-13 01:49:15.627734+00', 22, '{"total-tables":4,"tables-classified":0}'), +(16004, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:00.253+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:01.232+00', 979, NULL), +(16005, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:00.23+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:01.398+00', 1168, NULL), +(16006, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:02.00217+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:22.469536+00', 20467, NULL), +(16007, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:02.022477+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:04.681257+00', 2658, '{"deleted":0}'), +(16008, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:04.683147+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:00:22.468863+00', 17785, '{"errors":0,"created":0,"updated":21,"deleted":0}'), +(16009, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:00.669917+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:06.642918+00', 5973, NULL), +(16010, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:00.67486+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:01.585831+00', 910, '{"timezone-id":"UTC"}'), +(16011, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:01.589523+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:02.179967+00', 590, '{"updated-tables":0,"total-tables":8}'), +(16012, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:02.180094+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:05.991232+00', 3811, '{"total-fields":71,"updated-fields":0}'), +(16013, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:05.991603+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:06.071411+00', 79, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16014, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:06.071489+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:06.642873+00', 571, NULL), +(16015, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:06.892866+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:07.25019+00', 357, NULL), +(16016, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:06.892896+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:07.133859+00', 240, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16017, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:07.134186+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:07.188886+00', 54, '{"fields-classified":0,"fields-failed":0}'), +(16018, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:07.189532+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:19:07.249909+00', 60, '{"total-tables":8,"tables-classified":0}'), +(16019, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:00.798581+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.740595+00', 13942, NULL), +(16020, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:00.804179+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:00.826633+00', 22, '{"timezone-id":null}'), +(16021, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:00.829736+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:01.875777+00', 1046, '{"updated-tables":0,"total-tables":4}'), +(16022, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:01.876391+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.721908+00', 12845, '{"total-fields":39,"updated-fields":0}'), +(16023, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.72204+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.73494+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16024, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.735024+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.740318+00', 5, NULL), +(16025, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.847369+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.995429+00', 148, NULL), +(16026, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.84739+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.898474+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16027, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.898555+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.914449+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(16028, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.914514+00', TIMESTAMP WITH TIME ZONE '2023-01-13 02:49:14.99536+00', 80, '{"total-tables":4,"tables-classified":0}'), +(16029, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 03:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:00:00.884+00', 726, NULL), +(16030, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 03:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:00:01.309+00', 1160, NULL), +(16031, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:00.3066+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.15496+00', 5848, NULL), +(16032, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:00.310998+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:00.792898+00', 481, '{"timezone-id":"UTC"}'), +(16033, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:00.794979+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:01.338319+00', 543, '{"updated-tables":0,"total-tables":8}'), +(16034, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:01.339454+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:04.79575+00', 3456, '{"total-fields":71,"updated-fields":0}'), +(16035, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:04.796027+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:04.942388+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16036, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:04.94271+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.15444+00', 1211, NULL), +(16037, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.362261+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.650831+00', 288, NULL), +(16038, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.362292+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.578676+00', 216, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16039, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.578815+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.602563+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(16040, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.602696+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:19:06.650659+00', 47, '{"total-tables":8,"tables-classified":0}'), +(16041, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:01.168014+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:16.431186+00', 15263, NULL), +(16042, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:01.18135+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:01.24735+00', 66, '{"timezone-id":null}'), +(16043, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:01.254292+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:01.96557+00', 711, '{"updated-tables":0,"total-tables":4}'), +(16044, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:01.965661+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:16.383325+00', 14417, '{"total-fields":39,"updated-fields":0}'), +(16045, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:16.38343+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:16.414716+00', 31, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16046, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:16.414787+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:16.430826+00', 16, NULL), +(16047, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.145931+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.337537+00', 191, NULL), +(16048, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.145962+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.277602+00', 131, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16049, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.277693+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.295898+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(16050, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.295982+00', TIMESTAMP WITH TIME ZONE '2023-01-13 03:49:17.337475+00', 41, '{"total-tables":4,"tables-classified":0}'), +(16051, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 04:00:00.176+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:00:00.925+00', 749, NULL), +(16052, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 04:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:00:01.078+00', 928, NULL), +(16053, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:00.282386+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:04.995175+00', 4712, NULL), +(16054, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:00.286951+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:00.814848+00', 527, '{"timezone-id":"UTC"}'), +(16055, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:00.816503+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:01.287383+00', 470, '{"updated-tables":0,"total-tables":8}'), +(16056, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:01.28766+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:04.224959+00', 2937, '{"total-fields":71,"updated-fields":0}'), +(16057, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:04.225056+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:04.359357+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16058, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:04.359627+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:04.994736+00', 635, NULL), +(16059, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.17479+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.492359+00', 317, NULL), +(16060, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.174814+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.38063+00', 205, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16061, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.381056+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.432913+00', 51, '{"fields-classified":0,"fields-failed":0}'), +(16062, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.433241+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:19:05.49226+00', 59, '{"total-tables":8,"tables-classified":0}'), +(16063, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:00.650435+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.638249+00', 10987, NULL), +(16064, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:00.651719+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:00.657007+00', 5, '{"timezone-id":null}'), +(16065, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:00.659559+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:01.092834+00', 433, '{"updated-tables":0,"total-tables":4}'), +(16066, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:01.092928+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.623162+00', 10530, '{"total-fields":39,"updated-fields":0}'), +(16067, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.623328+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.633539+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16068, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.633758+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.637892+00', 4, NULL), +(16069, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.718698+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.771367+00', 52, NULL), +(16070, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.718833+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.751846+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16071, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.751968+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.756256+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(16072, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.756347+00', TIMESTAMP WITH TIME ZONE '2023-01-13 04:49:11.771176+00', 14, '{"total-tables":4,"tables-classified":0}'), +(16073, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 05:00:00.239+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:00:00.826+00', 587, NULL), +(16074, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 05:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:00:00.919+00', 784, NULL), +(16075, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:00.253975+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.305295+00', 5051, NULL), +(16076, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:00.257102+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:00.766147+00', 509, '{"timezone-id":"UTC"}'), +(16077, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:00.767996+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:01.143889+00', 375, '{"updated-tables":0,"total-tables":8}'), +(16078, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:01.144386+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:04.612239+00', 3467, '{"total-fields":71,"updated-fields":0}'), +(16079, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:04.612606+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:04.75591+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16080, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:04.756284+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.30495+00', 548, NULL), +(16081, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.438865+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.679746+00', 240, NULL), +(16082, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.438993+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.61364+00', 174, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16083, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.613956+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.646849+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(16084, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.646972+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:19:05.679636+00', 32, '{"total-tables":8,"tables-classified":0}'), +(16085, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:00.697978+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.280374+00', 12582, NULL), +(16086, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:00.699275+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:00.703886+00', 4, '{"timezone-id":null}'), +(16087, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:00.705675+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:01.413234+00', 707, '{"updated-tables":0,"total-tables":4}'), +(16088, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:01.413612+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.258566+00', 11844, '{"total-fields":39,"updated-fields":0}'), +(16089, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.258686+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.27461+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16090, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.274696+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.280294+00', 5, NULL), +(16091, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.445372+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.539397+00', 94, NULL), +(16092, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.445393+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.505794+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16093, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.505965+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.51613+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(16094, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.516326+00', TIMESTAMP WITH TIME ZONE '2023-01-13 05:49:13.539298+00', 22, '{"total-tables":4,"tables-classified":0}'), +(16095, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 06:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:00:01.123+00', 946, NULL), +(16096, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 06:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:00:01.428+00', 1255, NULL), +(16097, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:00.172987+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.196218+00', 6023, NULL), +(16098, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:00.177257+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:00.749444+00', 572, '{"timezone-id":"UTC"}'), +(16099, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:00.752155+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:01.194797+00', 442, '{"updated-tables":0,"total-tables":8}'), +(16100, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:01.196977+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:05.533358+00', 4336, '{"total-fields":71,"updated-fields":0}'), +(16101, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:05.533753+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:05.657389+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16102, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:05.65798+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.196179+00', 538, NULL), +(16103, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.2465+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.338108+00', 91, NULL), +(16104, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.246521+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.303259+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16105, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.303331+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.316304+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(16106, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.316373+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:19:06.337899+00', 21, '{"total-tables":8,"tables-classified":0}'), +(16107, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:00.413102+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.105153+00', 15692, NULL), +(16108, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:00.414919+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:00.434035+00', 19, '{"timezone-id":null}'), +(16109, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:00.449556+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:00.930889+00', 481, '{"updated-tables":0,"total-tables":4}'), +(16110, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:00.931209+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.086514+00', 15155, '{"total-fields":39,"updated-fields":0}'), +(16111, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.086799+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.099642+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16112, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.099705+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.105092+00', 5, NULL), +(16113, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.192911+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.280811+00', 87, NULL), +(16114, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.192932+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.248588+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16115, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.249028+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.256397+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(16116, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.256519+00', TIMESTAMP WITH TIME ZONE '2023-01-13 06:49:16.280737+00', 24, '{"total-tables":4,"tables-classified":0}'), +(16117, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 07:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:00:00.929+00', 757, NULL), +(16118, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 07:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:00:01.153+00', 990, NULL), +(16119, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:00.268511+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:07.602575+00', 7334, NULL), +(16120, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:00.276123+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:01.371891+00', 1095, '{"timezone-id":"UTC"}'), +(16121, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:01.37399+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:02.041613+00', 667, '{"updated-tables":0,"total-tables":8}'), +(16122, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:02.042089+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:06.602671+00', 4560, '{"total-fields":71,"updated-fields":0}'), +(16123, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:06.602944+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:06.790304+00', 187, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16124, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:06.790614+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:07.602258+00', 811, NULL), +(16125, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:07.862418+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:08.219308+00', 356, NULL), +(16126, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:07.862455+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:08.154412+00', 291, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16127, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:08.154492+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:08.187293+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(16128, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:08.187371+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:19:08.21925+00', 31, '{"total-tables":8,"tables-classified":0}'), +(16129, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:01.039153+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.454267+00', 13415, NULL), +(16130, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:01.049+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:01.073537+00', 24, '{"timezone-id":null}'), +(16131, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:01.078159+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:01.788895+00', 710, '{"updated-tables":0,"total-tables":4}'), +(16132, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:01.789002+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.434116+00', 12645, '{"total-fields":39,"updated-fields":0}'), +(16133, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.434236+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.447848+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16134, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.447931+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.454211+00', 6, NULL), +(16135, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.58018+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.634613+00', 54, NULL), +(16136, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.580202+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.617769+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16137, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.617847+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.625001+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(16138, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.625067+00', TIMESTAMP WITH TIME ZONE '2023-01-13 07:49:14.634558+00', 9, '{"total-tables":4,"tables-classified":0}'), +(16139, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 08:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:00:00.905+00', 772, NULL), +(16140, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 08:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:00:00.905+00', 767, NULL), +(16141, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:02.35113+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.181726+00', 830, NULL), +(16142, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:02.352782+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:02.569592+00', 216, '{"timezone-id":"UTC"}'), +(16143, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:02.569863+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:02.681856+00', 111, '{"updated-tables":0,"total-tables":8}'), +(16144, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:02.681935+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.042842+00', 360, '{"total-fields":71,"updated-fields":0}'), +(16145, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.042903+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.111011+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16146, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.111061+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.181144+00', 70, NULL), +(16147, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.206372+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.368872+00', 162, NULL), +(16148, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.206392+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.325607+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16149, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.325704+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.35084+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(16150, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.350901+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:19:03.368823+00', 17, '{"total-tables":8,"tables-classified":0}'), +(16151, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:00.129444+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.863647+00', 14734, NULL), +(16152, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:00.129494+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:00.132345+00', 2, '{"timezone-id":null}'), +(16153, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:00.132936+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:00.326219+00', 193, '{"updated-tables":0,"total-tables":4}'), +(16154, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:00.326928+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.858867+00', 14531, '{"total-fields":39,"updated-fields":0}'), +(16155, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.858999+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.86299+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16156, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.863068+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.863614+00', 0, NULL), +(16157, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.907497+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.935346+00', 27, NULL), +(16158, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.90758+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.928673+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16159, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.928726+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.931812+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(16160, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.931872+00', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:14.935276+00', 3, '{"total-tables":4,"tables-classified":0}'), +(16161, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 09:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:00:03.007+00', 2835, NULL), +(16162, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 09:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:00:03.265+00', 3109, NULL), +(16163, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:01.269166+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:09.900291+00', 8631, NULL), +(16164, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:01.277895+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:02.625494+00', 1347, '{"timezone-id":"UTC"}'), +(16165, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:02.629648+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:03.143883+00', 514, '{"updated-tables":0,"total-tables":8}'), +(16166, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:03.144315+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:09.060141+00', 5915, '{"total-fields":71,"updated-fields":0}'), +(16167, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:09.060558+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:09.273782+00', 213, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16168, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:09.274206+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:09.900028+00', 625, NULL), +(16169, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.194189+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.758634+00', 564, NULL), +(16170, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.194217+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.508867+00', 314, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16171, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.509253+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.661906+00', 152, '{"fields-classified":0,"fields-failed":0}'), +(16172, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.662346+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:19:10.758566+00', 96, '{"total-tables":8,"tables-classified":0}'), +(16173, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:01.116052+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.387819+00', 19271, NULL), +(16174, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:01.123273+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:01.172167+00', 48, '{"timezone-id":null}'), +(16175, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:01.178181+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:02.038316+00', 860, '{"updated-tables":0,"total-tables":4}'), +(16176, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:02.038622+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.353998+00', 18315, '{"total-fields":39,"updated-fields":0}'), +(16177, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.354125+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.377031+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16178, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.377177+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.38751+00', 10, NULL), +(16179, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.692905+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.874567+00', 181, NULL), +(16180, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.693027+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.824173+00', 131, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16181, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.824542+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.846635+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(16182, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.846722+00', TIMESTAMP WITH TIME ZONE '2023-01-13 09:49:20.874504+00', 27, '{"total-tables":4,"tables-classified":0}'), +(16183, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 10:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:00:00.896+00', 748, NULL), +(16184, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 10:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:00:01.089+00', 959, NULL), +(16185, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:00.261426+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:06.465888+00', 6204, NULL), +(16186, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:00.265925+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:00.960585+00', 694, '{"timezone-id":"UTC"}'), +(16187, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:00.962305+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:01.60687+00', 644, '{"updated-tables":0,"total-tables":8}'), +(16188, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:01.60738+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:05.706289+00', 4098, '{"total-fields":71,"updated-fields":0}'), +(16189, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:05.706573+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:05.861634+00', 155, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16190, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:05.86199+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:06.465437+00', 603, NULL), +(16191, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:06.709921+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:07.181461+00', 471, NULL), +(16192, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:06.710408+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:07.054923+00', 344, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16193, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:07.055034+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:07.094098+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(16194, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:07.094501+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:19:07.181359+00', 86, '{"total-tables":8,"tables-classified":0}'), +(16195, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:00.986736+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.565276+00', 19578, NULL), +(16196, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:00.994306+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:01.060826+00', 66, '{"timezone-id":null}'), +(16197, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:01.079734+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:01.87704+00', 797, '{"updated-tables":0,"total-tables":4}'), +(16198, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:01.877534+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.519293+00', 18641, '{"total-fields":39,"updated-fields":0}'), +(16199, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.519398+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.555746+00', 36, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16200, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.555851+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.562463+00', 6, NULL), +(16201, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.87219+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:21.169212+00', 297, NULL), +(16202, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:20.872688+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:21.097631+00', 224, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16203, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:21.097713+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:21.109628+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(16204, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:21.1097+00', TIMESTAMP WITH TIME ZONE '2023-01-13 10:49:21.169145+00', 59, '{"total-tables":4,"tables-classified":0}'), +(16205, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 11:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:00:00.384+00', 277, NULL), +(16206, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 11:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:00:00.382+00', 257, NULL), +(16207, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:00.218844+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.254576+00', 6035, NULL), +(16208, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:00.221681+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:00.593468+00', 371, '{"timezone-id":"UTC"}'), +(16209, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:00.595726+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:00.98766+00', 391, '{"updated-tables":0,"total-tables":8}'), +(16210, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:00.988052+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:05.530541+00', 4542, '{"total-fields":71,"updated-fields":0}'), +(16211, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:05.530928+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:05.670026+00', 139, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16212, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:05.67037+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.254262+00', 583, NULL), +(16213, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.437174+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.836288+00', 399, NULL), +(16214, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.437201+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.71996+00', 282, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16215, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.720293+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.778593+00', 58, '{"fields-classified":0,"fields-failed":0}'), +(16216, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.778668+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:19:06.836237+00', 57, '{"total-tables":8,"tables-classified":0}'), +(16217, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:02.273255+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.642678+00', 16369, NULL), +(16218, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:02.282661+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:02.327779+00', 45, '{"timezone-id":null}'), +(16219, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:02.334185+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:03.141914+00', 807, '{"updated-tables":0,"total-tables":4}'), +(16220, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:03.142045+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.616003+00', 15473, '{"total-fields":39,"updated-fields":0}'), +(16221, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.616134+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.634942+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16222, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.635018+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.642611+00', 7, NULL), +(16223, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.791199+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.849479+00', 58, NULL), +(16224, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.791216+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.83015+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16225, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.830278+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.83853+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(16226, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.838597+00', TIMESTAMP WITH TIME ZONE '2023-01-13 11:49:18.849427+00', 10, '{"total-tables":4,"tables-classified":0}'), +(16227, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 12:00:00.225+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:00:01.037+00', 812, NULL), +(16228, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 12:00:00.281+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:00:01.035+00', 754, NULL), +(16229, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:00.257791+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.29578+00', 11037, NULL), +(16230, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:00.263745+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:01.363135+00', 1099, '{"timezone-id":"UTC"}'), +(16231, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:01.365064+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:02.253176+00', 888, '{"updated-tables":0,"total-tables":8}'), +(16232, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:02.253927+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:10.281558+00', 8027, '{"total-fields":71,"updated-fields":0}'), +(16233, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:10.281875+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:10.469954+00', 188, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16234, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:10.470611+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.29496+00', 824, NULL), +(16235, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.417828+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.531531+00', 113, NULL), +(16236, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.417849+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.484745+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16237, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.484833+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.500894+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(16238, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.500971+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:19:11.531468+00', 30, '{"total-tables":8,"tables-classified":0}'), +(16239, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:02.471269+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.708615+00', 15237, NULL), +(16240, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:02.480267+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:02.532459+00', 52, '{"timezone-id":null}'), +(16241, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:02.539001+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:03.206815+00', 667, '{"updated-tables":0,"total-tables":4}'), +(16242, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:03.207323+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.684644+00', 14477, '{"total-fields":39,"updated-fields":0}'), +(16243, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.684764+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.699996+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16244, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.700088+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.708539+00', 8, NULL), +(16245, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.977857+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:18.135877+00', 158, NULL), +(16246, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:17.977882+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:18.086719+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16247, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:18.086839+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:18.097074+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(16248, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:18.097152+00', TIMESTAMP WITH TIME ZONE '2023-01-13 12:49:18.13578+00', 38, '{"total-tables":4,"tables-classified":0}'), +(16249, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 13:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:00:00.684+00', 559, NULL), +(16250, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 13:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:00:00.771+00', 659, NULL), +(16251, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:00.291356+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:07.833083+00', 7541, NULL), +(16252, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:00.296533+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:00.833347+00', 536, '{"timezone-id":"UTC"}'), +(16253, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:00.83527+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:01.462153+00', 626, '{"updated-tables":0,"total-tables":8}'), +(16254, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:01.462536+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:06.754851+00', 5292, '{"total-fields":71,"updated-fields":0}'), +(16255, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:06.755838+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:06.955769+00', 199, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16256, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:06.956553+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:07.832701+00', 876, NULL), +(16257, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.02063+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.273992+00', 253, NULL), +(16258, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.020652+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.211312+00', 190, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16259, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.211924+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.242916+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(16260, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.243245+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:19:08.273933+00', 30, '{"total-tables":8,"tables-classified":0}'), +(16261, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:00.806023+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.108117+00', 14302, NULL), +(16262, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:00.811223+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:00.839345+00', 28, '{"timezone-id":null}'), +(16263, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:00.844322+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:01.549762+00', 705, '{"updated-tables":0,"total-tables":4}'), +(16264, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:01.550058+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.098922+00', 13548, '{"total-fields":39,"updated-fields":0}'), +(16265, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.099031+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.103749+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16266, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.103812+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.108061+00', 4, NULL), +(16267, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.232077+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.41772+00', 185, NULL), +(16268, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.232099+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.383948+00', 151, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16269, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.384088+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.390616+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(16270, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.390802+00', TIMESTAMP WITH TIME ZONE '2023-01-13 13:49:15.417673+00', 26, '{"total-tables":4,"tables-classified":0}'), +(16271, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 14:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:00:01.589+00', 1396, NULL), +(16272, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 14:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:00:02.317+00', 2150, NULL), +(16273, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:00.188202+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:05.798557+00', 5610, NULL), +(16274, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:00.19249+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:00.890057+00', 697, '{"timezone-id":"UTC"}'), +(16275, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:00.891643+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:01.403004+00', 511, '{"updated-tables":0,"total-tables":8}'), +(16276, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:01.403625+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:04.392319+00', 2988, '{"total-fields":71,"updated-fields":0}'), +(16277, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:04.392535+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:04.513034+00', 120, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16278, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:04.513135+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:05.798244+00', 1285, NULL), +(16279, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:05.938565+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:06.13465+00', 196, NULL), +(16280, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:05.938586+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:06.094815+00', 156, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16281, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:06.094938+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:06.108796+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(16282, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:06.108906+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:19:06.134559+00', 25, '{"total-tables":8,"tables-classified":0}'), +(16283, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:00.857965+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:12.926816+00', 12068, NULL), +(16284, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:00.86576+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:00.908602+00', 42, '{"timezone-id":null}'), +(16285, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:00.914261+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:01.62068+00', 706, '{"updated-tables":0,"total-tables":4}'), +(16286, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:01.620958+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:12.905187+00', 11284, '{"total-fields":39,"updated-fields":0}'), +(16287, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:12.905308+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:12.918654+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16288, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:12.91872+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:12.926224+00', 7, NULL), +(16289, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.057818+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.178568+00', 120, NULL), +(16290, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.057836+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.132908+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16291, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.133021+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.156758+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(16292, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.156849+00', TIMESTAMP WITH TIME ZONE '2023-01-13 14:49:13.178477+00', 21, '{"total-tables":4,"tables-classified":0}'), +(16293, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 15:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:00:00.775+00', 637, NULL), +(16294, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 15:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:00:00.895+00', 765, NULL), +(16295, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:00.138946+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.466325+00', 1327, NULL), +(16296, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:00.141537+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:00.58929+00', 447, '{"timezone-id":"UTC"}'), +(16297, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:00.59291+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:00.813534+00', 220, '{"updated-tables":0,"total-tables":8}'), +(16298, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:00.813639+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.23936+00', 425, '{"total-fields":71,"updated-fields":0}'), +(16299, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.239422+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.331407+00', 91, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16300, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.331486+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.465903+00', 134, NULL), +(16301, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.871767+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:02.129293+00', 257, NULL), +(16302, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:01.871829+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:02.058574+00', 186, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16303, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:02.058706+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:02.088612+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(16304, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:02.088746+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:19:02.129207+00', 40, '{"total-tables":8,"tables-classified":0}'), +(16305, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:00.789754+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.163251+00', 15373, NULL), +(16306, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:00.795983+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:00.824271+00', 28, '{"timezone-id":null}'), +(16307, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:00.829823+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:01.558402+00', 728, '{"updated-tables":0,"total-tables":4}'), +(16308, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:01.558808+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.143225+00', 14584, '{"total-fields":39,"updated-fields":0}'), +(16309, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.143334+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.156973+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16310, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.157104+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.162919+00', 5, NULL), +(16311, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.281978+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.378209+00', 96, NULL), +(16312, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.281997+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.331792+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16313, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.331863+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.345084+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(16314, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.345165+00', TIMESTAMP WITH TIME ZONE '2023-01-13 15:49:16.378126+00', 32, '{"total-tables":4,"tables-classified":0}'), +(16315, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 16:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:00:01.637+00', 1554, NULL), +(16316, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 16:00:00.048+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:00:01.923+00', 1875, NULL), +(16317, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:00.173923+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.481596+00', 4307, NULL), +(16318, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:00.177905+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:00.772666+00', 594, '{"timezone-id":"UTC"}'), +(16319, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:00.774488+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:01.18275+00', 408, '{"updated-tables":0,"total-tables":8}'), +(16320, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:01.183059+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:03.884061+00', 2701, '{"total-fields":71,"updated-fields":0}'), +(16321, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:03.884432+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.04819+00', 163, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16322, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.048495+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.48132+00', 432, NULL), +(16323, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.545263+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:05.046929+00', 501, NULL), +(16324, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.545282+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.997872+00', 452, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16325, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:04.997944+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:05.01156+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(16326, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:05.011631+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:19:05.046876+00', 35, '{"total-tables":8,"tables-classified":0}'), +(16327, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:00.5602+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.125541+00', 9565, NULL), +(16328, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:00.560986+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:00.565523+00', 4, '{"timezone-id":null}'), +(16329, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:00.567702+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:01.018756+00', 451, '{"updated-tables":0,"total-tables":4}'), +(16330, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:01.018914+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.114128+00', 9095, '{"total-fields":39,"updated-fields":0}'), +(16331, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.114451+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.120611+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16332, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.12068+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.125475+00', 4, NULL), +(16333, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.238991+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.286167+00', 47, NULL), +(16334, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.239009+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.272945+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16335, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.27307+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.278189+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(16336, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.278247+00', TIMESTAMP WITH TIME ZONE '2023-01-13 16:49:10.286119+00', 7, '{"total-tables":4,"tables-classified":0}'), +(16337, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 17:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:00:00.849+00', 682, NULL), +(16338, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 17:00:00.162+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:00:00.976+00', 814, NULL), +(16339, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:00.07845+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.512478+00', 4434, NULL), +(16340, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:00.084391+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:00.343858+00', 259, '{"timezone-id":"UTC"}'), +(16341, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:00.344396+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:00.6295+00', 285, '{"updated-tables":0,"total-tables":8}'), +(16342, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:00.629861+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.032136+00', 3402, '{"total-fields":71,"updated-fields":0}'), +(16343, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.032264+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.149019+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16344, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.14914+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.51212+00', 362, NULL), +(16345, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.606408+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.728662+00', 122, NULL), +(16346, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.606427+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.700503+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16347, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.70059+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.71124+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(16348, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.71132+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:19:04.728611+00', 17, '{"total-tables":8,"tables-classified":0}'), +(16349, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:00.656614+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.421788+00', 13765, NULL), +(16350, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:00.657084+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:00.669004+00', 11, '{"timezone-id":null}'), +(16351, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:00.674678+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:01.23563+00', 560, '{"updated-tables":0,"total-tables":4}'), +(16352, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:01.236257+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.402593+00', 13166, '{"total-fields":39,"updated-fields":0}'), +(16353, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.402708+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.413612+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16354, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.41372+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.42168+00', 7, NULL), +(16355, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.54161+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.605279+00', 63, NULL), +(16356, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.541632+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.584026+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16357, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.584151+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.592393+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(16358, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.592536+00', TIMESTAMP WITH TIME ZONE '2023-01-13 17:49:14.605197+00', 12, '{"total-tables":4,"tables-classified":0}'), +(16359, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 18:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:00:00.849+00', 732, NULL), +(16360, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 18:00:00.098+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:00:01.064+00', 966, NULL), +(16361, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:00.336708+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:06.940129+00', 6603, NULL), +(16362, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:00.341121+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:00.973404+00', 632, '{"timezone-id":"UTC"}'), +(16363, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:00.974906+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:01.454711+00', 479, '{"updated-tables":0,"total-tables":8}'), +(16364, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:01.455247+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:06.348337+00', 4893, '{"total-fields":71,"updated-fields":0}'), +(16365, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:06.348641+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:06.4788+00', 130, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16366, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:06.478891+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:06.939812+00', 460, NULL), +(16367, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.003639+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.121882+00', 118, NULL), +(16368, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.003662+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.077964+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16369, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.078053+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.094898+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(16370, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.09497+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:19:07.121825+00', 26, '{"total-tables":8,"tables-classified":0}'), +(16371, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:00.61147+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.123414+00', 10511, NULL), +(16372, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:00.615428+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:00.622116+00', 6, '{"timezone-id":null}'), +(16373, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:00.624985+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:01.062974+00', 437, '{"updated-tables":0,"total-tables":4}'), +(16374, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:01.063055+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.109381+00', 10046, '{"total-fields":39,"updated-fields":0}'), +(16375, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.109502+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.119329+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16376, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.119405+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.123364+00', 3, NULL), +(16377, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.20775+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.413519+00', 205, NULL), +(16378, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.207772+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.344713+00', 136, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16379, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.345001+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.374366+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(16380, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.374747+00', TIMESTAMP WITH TIME ZONE '2023-01-13 18:49:11.413229+00', 38, '{"total-tables":4,"tables-classified":0}'), +(16381, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 19:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:00:00.892+00', 735, NULL), +(16382, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 19:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:00:01.081+00', 937, NULL), +(16383, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:00.162281+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:04.992638+00', 4830, NULL), +(16384, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:00.166753+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:00.626353+00', 459, '{"timezone-id":"UTC"}'), +(16385, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:00.627541+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:01.135669+00', 508, '{"updated-tables":0,"total-tables":8}'), +(16386, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:01.136142+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:04.344408+00', 3208, '{"total-fields":71,"updated-fields":0}'), +(16387, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:04.345422+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:04.474442+00', 129, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16388, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:04.4748+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:04.992568+00', 517, NULL), +(16389, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.177698+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.502314+00', 324, NULL), +(16390, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.178079+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.384746+00', 206, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16391, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.384866+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.433624+00', 48, '{"fields-classified":0,"fields-failed":0}'), +(16392, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.433937+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:19:05.502257+00', 68, '{"total-tables":8,"tables-classified":0}'), +(16393, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:00.872845+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:12.939135+00', 12066, NULL), +(16394, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:00.876479+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:00.892026+00', 15, '{"timezone-id":null}'), +(16395, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:00.894775+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:01.491567+00', 596, '{"updated-tables":0,"total-tables":4}'), +(16396, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:01.491988+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:12.903292+00', 11411, '{"total-fields":39,"updated-fields":0}'), +(16397, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:12.903556+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:12.929847+00', 26, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16398, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:12.929973+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:12.938762+00', 8, NULL), +(16399, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.085223+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.162727+00', 77, NULL), +(16400, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.085247+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.132967+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16401, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.133071+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.144107+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(16402, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.144731+00', TIMESTAMP WITH TIME ZONE '2023-01-13 19:49:13.162677+00', 17, '{"total-tables":4,"tables-classified":0}'), +(16403, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 20:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:00:00.808+00', 661, NULL), +(16404, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 20:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:00:00.944+00', 810, NULL), +(16405, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:00.189382+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.455938+00', 5266, NULL), +(16406, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:00.194637+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:00.797004+00', 602, '{"timezone-id":"UTC"}'), +(16407, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:00.799541+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:01.180408+00', 380, '{"updated-tables":0,"total-tables":8}'), +(16408, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:01.180795+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:04.787188+00', 3606, '{"total-fields":71,"updated-fields":0}'), +(16409, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:04.78756+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:04.935541+00', 147, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16410, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:04.936144+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.455627+00', 519, NULL), +(16411, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.616304+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.777799+00', 161, NULL), +(16412, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.616327+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.732802+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16413, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.732919+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.746271+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(16414, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.746336+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:19:05.777746+00', 31, '{"total-tables":8,"tables-classified":0}'), +(16415, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:00.770708+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:15.901494+00', 15130, NULL), +(16416, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:00.776159+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:00.796537+00', 20, '{"timezone-id":null}'), +(16417, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:00.802246+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:01.422875+00', 620, '{"updated-tables":0,"total-tables":4}'), +(16418, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:01.423176+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:15.88429+00', 14461, '{"total-fields":39,"updated-fields":0}'), +(16419, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:15.884391+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:15.895316+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16420, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:15.895386+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:15.901282+00', 5, NULL), +(16421, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.102187+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.20598+00', 103, NULL), +(16422, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.10221+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.163103+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16423, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.163281+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.174797+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(16424, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.174908+00', TIMESTAMP WITH TIME ZONE '2023-01-13 20:49:16.205856+00', 30, '{"total-tables":4,"tables-classified":0}'), +(16425, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:00.815+00', 640, NULL), +(16426, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:00.198+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:00.815+00', 617, NULL), +(16427, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:01.04867+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:14.954934+00', 13906, NULL), +(16428, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:01.053625+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:03.483952+00', 2430, '{"deleted":0}'), +(16429, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:03.487925+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:00:14.95422+00', 11466, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(16430, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:02.497567+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:11.495917+00', 8998, NULL), +(16431, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:02.529296+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:04.364484+00', 1835, '{"timezone-id":"UTC"}'), +(16432, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:04.386469+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:06.001212+00', 1614, '{"updated-tables":0,"total-tables":8}'), +(16433, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:06.001304+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:10.812142+00', 4810, '{"total-fields":71,"updated-fields":0}'), +(16434, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:10.812215+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:10.896263+00', 84, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16435, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:10.89636+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:11.495817+00', 599, NULL), +(16436, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:11.914793+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:12.481386+00', 566, NULL), +(16437, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:11.914817+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:12.226418+00', 311, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16438, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:12.226736+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:12.275916+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(16439, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:12.276011+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:19:12.481316+00', 205, '{"total-tables":8,"tables-classified":0}'), +(16440, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:00.390864+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.022335+00', 12631, NULL), +(16441, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:00.395229+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:00.408561+00', 13, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16442, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:00.411527+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:00.865043+00', 453, '{"updated-tables":0,"total-tables":4}'), +(16443, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:00.86517+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.009492+00', 12144, '{"total-fields":39,"updated-fields":0}'), +(16444, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.009634+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.018239+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16445, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.018321+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.021926+00', 3, NULL), +(16446, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.134973+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.180656+00', 45, NULL), +(16447, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.134993+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.168075+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16448, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.168138+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.172236+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(16449, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.172295+00', TIMESTAMP WITH TIME ZONE '2023-01-13 21:49:13.180612+00', 8, '{"total-tables":4,"tables-classified":0}'), +(16450, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 22:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:00:00.737+00', 636, NULL), +(16451, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 22:00:00.078+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:00:00.843+00', 765, NULL), +(16452, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:00.224826+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:05.848682+00', 5623, NULL), +(16453, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:00.229356+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:00.732954+00', 503, '{"timezone-id":"UTC"}'), +(16454, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:00.735022+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:01.201941+00', 466, '{"updated-tables":0,"total-tables":8}'), +(16455, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:01.202226+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:05.097071+00', 3894, '{"total-fields":71,"updated-fields":0}'), +(16456, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:05.097405+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:05.259045+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16457, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:05.259503+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:05.848174+00', 588, NULL), +(16458, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.037305+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.37103+00', 333, NULL), +(16459, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.037334+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.278763+00', 241, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16460, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.279303+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.324588+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(16461, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.324917+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:19:06.370738+00', 45, '{"total-tables":8,"tables-classified":0}'), +(16462, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:00.816264+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.688465+00', 12872, NULL), +(16463, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:00.817765+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:00.82582+00', 8, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16464, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:00.82854+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:01.436623+00', 608, '{"updated-tables":0,"total-tables":4}'), +(16465, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:01.43725+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.673536+00', 12236, '{"total-fields":39,"updated-fields":0}'), +(16466, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.673638+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.683121+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16467, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.683187+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.688385+00', 5, NULL), +(16468, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.786919+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.833367+00', 46, NULL), +(16469, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.78694+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.814045+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16470, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.814126+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.820103+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(16471, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.820193+00', TIMESTAMP WITH TIME ZONE '2023-01-13 22:49:13.833312+00', 13, '{"total-tables":4,"tables-classified":0}'), +(16472, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 23:00:00.566+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:00:02.192+00', 1626, NULL), +(16473, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-13 23:00:00.523+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:00:02.7+00', 2177, NULL), +(16474, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:00.231084+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:05.594166+00', 5363, NULL), +(16475, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:00.234531+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:00.840382+00', 605, '{"timezone-id":"UTC"}'), +(16476, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:00.842391+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:01.257977+00', 415, '{"updated-tables":0,"total-tables":8}'), +(16477, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:01.258521+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:04.824481+00', 3565, '{"total-fields":71,"updated-fields":0}'), +(16478, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:04.824569+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:04.999071+00', 174, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16479, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:04.999441+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:05.593799+00', 594, NULL), +(16480, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:05.802009+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:06.071169+00', 269, NULL), +(16481, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:05.802328+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:06.002508+00', 200, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16482, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:06.002581+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:06.040357+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(16483, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:06.04047+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:19:06.071107+00', 30, '{"total-tables":8,"tables-classified":0}'), +(16484, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:01.04419+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.262213+00', 13218, NULL), +(16485, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:01.051066+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:01.098579+00', 47, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16486, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:01.107156+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:01.841165+00', 734, '{"updated-tables":0,"total-tables":4}'), +(16487, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:01.841453+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.24182+00', 12400, '{"total-fields":39,"updated-fields":0}'), +(16488, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.242172+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.256966+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16489, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.257035+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.26215+00', 5, NULL), +(16490, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.413568+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.574629+00', 161, NULL), +(16491, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.413592+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.496936+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16492, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.4975+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.532245+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(16493, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.533426+00', TIMESTAMP WITH TIME ZONE '2023-01-13 23:49:14.574547+00', 41, '{"total-tables":4,"tables-classified":0}'), +(16494, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 00:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:00:02.007+00', 1799, NULL), +(16495, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 00:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:00:02.846+00', 2676, NULL), +(16496, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:00.372466+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:08.919932+00', 8547, NULL), +(16497, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:00.377259+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:01.042134+00', 664, '{"timezone-id":"UTC"}'), +(16498, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:01.046837+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:01.898758+00', 851, '{"updated-tables":0,"total-tables":8}'), +(16499, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:01.89941+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:06.530786+00', 4631, '{"total-fields":71,"updated-fields":0}'), +(16500, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:06.531404+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:06.719612+00', 188, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16501, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:06.719723+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:08.915527+00', 2195, NULL), +(16502, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:10.531328+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:12.087354+00', 1556, NULL), +(16503, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:10.531546+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:12.043094+00', 1511, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16504, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:12.043197+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:12.060176+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(16505, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:12.060252+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:19:12.08727+00', 27, '{"total-tables":8,"tables-classified":0}'), +(16506, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:00.584847+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:11.874739+00', 11289, NULL), +(16507, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:00.586207+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:00.589606+00', 3, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16508, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:00.59051+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:01.037701+00', 447, '{"updated-tables":0,"total-tables":4}'), +(16509, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:01.037806+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:11.8506+00', 10812, '{"total-fields":39,"updated-fields":0}'), +(16510, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:11.850718+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:11.859099+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16511, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:11.859379+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:11.874662+00', 15, NULL), +(16512, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.050486+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.133873+00', 83, NULL), +(16513, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.050504+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.111663+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16514, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.111788+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.118578+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(16515, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.118923+00', TIMESTAMP WITH TIME ZONE '2023-01-14 00:49:12.133303+00', 14, '{"total-tables":4,"tables-classified":0}'), +(16516, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 01:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:00:01.371+00', 1200, NULL), +(16517, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 01:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:00:01.576+00', 1411, NULL), +(16518, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:00.203848+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.162876+00', 4959, NULL), +(16519, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:00.208355+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:00.922174+00', 713, '{"timezone-id":"UTC"}'), +(16520, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:00.923764+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:01.329997+00', 406, '{"updated-tables":0,"total-tables":8}'), +(16521, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:01.330383+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:04.369035+00', 3038, '{"total-fields":71,"updated-fields":0}'), +(16522, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:04.369418+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:04.503138+00', 133, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16523, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:04.503549+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.162154+00', 658, NULL), +(16524, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.39493+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:06.251576+00', 856, NULL), +(16525, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.39495+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.674576+00', 279, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16526, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.674732+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.736196+00', 61, '{"fields-classified":0,"fields-failed":0}'), +(16527, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:05.736507+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:19:06.251494+00', 514, '{"total-tables":8,"tables-classified":0}'), +(16528, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:00.66454+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.762363+00', 12097, NULL), +(16529, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:00.665875+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:00.670846+00', 4, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16530, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:00.673184+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:01.101045+00', 427, '{"updated-tables":0,"total-tables":4}'), +(16531, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:01.101133+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.750616+00', 11649, '{"total-fields":39,"updated-fields":0}'), +(16532, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.75079+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.75719+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16533, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.757513+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.761943+00', 4, NULL), +(16534, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.912913+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:13.041409+00', 128, NULL), +(16535, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.912936+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.976105+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16536, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.976289+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.991892+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(16537, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:12.991963+00', TIMESTAMP WITH TIME ZONE '2023-01-14 01:49:13.041264+00', 49, '{"total-tables":4,"tables-classified":0}'), +(16538, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:00.243+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:00.884+00', 641, NULL), +(16539, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:00.28+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:00.883+00', 603, NULL), +(16540, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:01.282416+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:22.465355+00', 21182, NULL), +(16541, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:01.288006+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:03.27146+00', 1983, '{"deleted":0}'), +(16542, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:03.27372+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:00:22.46494+00', 19191, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(16543, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:00.186437+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.929322+00', 1742, NULL), +(16544, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:00.18711+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:00.595489+00', 408, '{"timezone-id":"UTC"}'), +(16545, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:00.597385+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:00.879919+00', 282, '{"updated-tables":0,"total-tables":8}'), +(16546, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:00.880049+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.686959+00', 806, '{"total-fields":71,"updated-fields":0}'), +(16547, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.687041+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.743628+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16548, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.743803+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.929289+00', 185, NULL), +(16549, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.991863+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:02.189944+00', 198, NULL), +(16550, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:01.991888+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:02.073446+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16551, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:02.073531+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:02.093488+00', 19, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16552, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:02.093564+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:19:02.189891+00', 96, '{"total-tables":8,"tables-classified":0}'), +(16553, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:00.224514+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.326252+00', 11101, NULL), +(16554, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:00.224541+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:00.240986+00', 16, '{"timezone-id":null}'), +(16555, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:00.241086+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:00.731826+00', 490, '{"updated-tables":0,"total-tables":4}'), +(16556, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:00.731912+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.319771+00', 10587, '{"total-fields":39,"updated-fields":0}'), +(16557, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.319841+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.322649+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16558, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.322702+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.326196+00', 3, NULL), +(16559, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.372011+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.404599+00', 32, NULL), +(16560, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.372034+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.394529+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16561, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.394594+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.397782+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(16562, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.397841+00', TIMESTAMP WITH TIME ZONE '2023-01-14 02:49:11.404549+00', 6, '{"total-tables":4,"tables-classified":0}'), +(16563, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 03:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:00:01.369+00', 1208, NULL), +(16564, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 03:00:00.47+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:00:01.365+00', 895, NULL), +(16565, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:00.234473+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.172264+00', 6937, NULL), +(16566, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:00.239129+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:00.957384+00', 718, '{"timezone-id":"UTC"}'), +(16567, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:00.958951+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:01.64681+00', 687, '{"updated-tables":0,"total-tables":8}'), +(16568, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:01.647105+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:06.110105+00', 4463, '{"total-fields":71,"updated-fields":0}'), +(16569, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:06.110488+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:06.452348+00', 341, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16570, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:06.452705+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.171073+00', 718, NULL), +(16571, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.486523+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.641545+00', 155, NULL), +(16572, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.486558+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.584132+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16573, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.584225+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.598751+00', 14, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16574, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.59883+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:19:07.641463+00', 42, '{"total-tables":8,"tables-classified":0}'), +(16575, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:00.29379+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:12.974601+00', 12680, NULL), +(16576, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:00.294057+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:00.306226+00', 12, '{"timezone-id":null}'), +(16577, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:00.308076+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:00.629557+00', 321, '{"updated-tables":0,"total-tables":4}'), +(16578, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:00.629648+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:12.965668+00', 12336, '{"total-fields":39,"updated-fields":0}'), +(16579, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:12.966018+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:12.971521+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16580, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:12.971611+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:12.974547+00', 2, NULL), +(16581, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.069157+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.115132+00', 45, NULL), +(16582, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.069182+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.098646+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16583, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.098753+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.105878+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(16584, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.105951+00', TIMESTAMP WITH TIME ZONE '2023-01-14 03:49:13.115076+00', 9, '{"total-tables":4,"tables-classified":0}'), +(16585, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 04:00:00.087+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:00:00.924+00', 837, NULL), +(16586, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 04:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:00:00.923+00', 801, NULL), +(16587, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:00.371323+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.539532+00', 5168, NULL), +(16588, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:00.375146+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:00.953815+00', 578, '{"timezone-id":"UTC"}'), +(16589, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:00.956014+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:01.44418+00', 488, '{"updated-tables":0,"total-tables":8}'), +(16590, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:01.444516+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:04.958502+00', 3513, '{"total-fields":71,"updated-fields":0}'), +(16591, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:04.95896+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.072468+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16592, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.072553+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.53903+00', 466, NULL), +(16593, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.709719+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.94377+00', 234, NULL), +(16594, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.709739+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.870876+00', 161, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16595, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.870999+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.901961+00', 30, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16596, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.90226+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:19:05.94348+00', 41, '{"total-tables":8,"tables-classified":0}'), +(16597, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:00.802264+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.261465+00', 13459, NULL), +(16598, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:00.811792+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:00.831478+00', 19, '{"timezone-id":null}'), +(16599, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:00.836345+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:02.278078+00', 1441, '{"updated-tables":0,"total-tables":4}'), +(16600, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:02.278536+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.241213+00', 11962, '{"total-fields":39,"updated-fields":0}'), +(16601, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.241334+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.253852+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16602, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.253953+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.261167+00', 7, NULL), +(16603, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.59062+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.720611+00', 129, NULL), +(16604, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.590639+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.659245+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16605, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.659328+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.689836+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(16606, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.689949+00', TIMESTAMP WITH TIME ZONE '2023-01-14 04:49:14.720546+00', 30, '{"total-tables":4,"tables-classified":0}'), +(16607, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 05:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:00:01.086+00', 928, NULL), +(16608, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 05:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:00:01.256+00', 1109, NULL), +(16609, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:00.213916+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:05.861989+00', 5648, NULL), +(16610, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:00.21871+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:00.871738+00', 653, '{"timezone-id":"UTC"}'), +(16611, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:00.873887+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:01.309081+00', 435, '{"updated-tables":0,"total-tables":8}'), +(16612, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:01.309196+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:05.035992+00', 3726, '{"total-fields":71,"updated-fields":0}'), +(16613, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:05.036499+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:05.172537+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16614, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:05.172634+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:05.861488+00', 688, NULL), +(16615, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.060664+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.34962+00', 288, NULL), +(16616, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.060691+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.301801+00', 241, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16617, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.301884+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.325875+00', 23, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16618, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.325957+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:19:06.349569+00', 23, '{"total-tables":8,"tables-classified":0}'), +(16619, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:00.785056+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.211318+00', 11426, NULL), +(16620, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:00.78642+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:00.799262+00', 12, '{"timezone-id":null}'), +(16621, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:00.801764+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:01.341799+00', 540, '{"updated-tables":0,"total-tables":4}'), +(16622, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:01.342263+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.201603+00', 10859, '{"total-fields":39,"updated-fields":0}'), +(16623, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.201736+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.208188+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16624, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.208298+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.211242+00', 2, NULL), +(16625, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.321687+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.384836+00', 63, NULL), +(16626, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.321706+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.356444+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16627, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.356593+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.363297+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(16628, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.363497+00', TIMESTAMP WITH TIME ZONE '2023-01-14 05:49:12.384757+00', 21, '{"total-tables":4,"tables-classified":0}'), +(16629, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 06:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:00:00.908+00', 793, NULL), +(16630, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 06:00:00.089+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:00:00.992+00', 903, NULL), +(16631, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:00.215265+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:04.953257+00', 4737, NULL), +(16632, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:00.218923+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:00.588492+00', 369, '{"timezone-id":"UTC"}'), +(16633, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:00.590918+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:01.170969+00', 580, '{"updated-tables":0,"total-tables":8}'), +(16634, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:01.171945+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:04.256527+00', 3084, '{"total-fields":71,"updated-fields":0}'), +(16635, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:04.256895+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:04.395315+00', 138, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16636, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:04.395628+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:04.952991+00', 557, NULL), +(16637, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.033613+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.493544+00', 459, NULL), +(16638, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.033636+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.448908+00', 415, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16639, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.448989+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.470793+00', 21, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16640, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.470884+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:19:05.493495+00', 22, '{"total-tables":8,"tables-classified":0}'), +(16641, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:00.590074+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:12.996018+00', 12405, NULL), +(16642, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:00.592397+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:00.603015+00', 10, '{"timezone-id":null}'), +(16643, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:00.606576+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:01.18372+00', 577, '{"updated-tables":0,"total-tables":4}'), +(16644, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:01.183889+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:12.981311+00', 11797, '{"total-fields":39,"updated-fields":0}'), +(16645, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:12.981719+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:12.991721+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16646, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:12.991791+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:12.995824+00', 4, NULL), +(16647, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.100888+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.166097+00', 65, NULL), +(16648, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.10091+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.142246+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16649, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.142318+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.148352+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(16650, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.148449+00', TIMESTAMP WITH TIME ZONE '2023-01-14 06:49:13.166055+00', 17, '{"total-tables":4,"tables-classified":0}'), +(16651, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 07:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:00:01.092+00', 955, NULL), +(16652, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 07:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:00:01.176+00', 1066, NULL), +(16653, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:00.160182+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.001398+00', 4841, NULL), +(16654, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:00.163874+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:00.611817+00', 447, '{"timezone-id":"UTC"}'), +(16655, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:00.613056+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:00.961799+00', 348, '{"updated-tables":0,"total-tables":8}'), +(16656, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:00.962136+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:04.258462+00', 3296, '{"total-fields":71,"updated-fields":0}'), +(16657, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:04.2589+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:04.435629+00', 176, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16658, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:04.435972+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.000942+00', 564, NULL), +(16659, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.137619+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.268038+00', 130, NULL), +(16660, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.13812+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.225512+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16661, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.2256+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.244307+00', 18, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16662, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.244458+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:19:05.26794+00', 23, '{"total-tables":8,"tables-classified":0}'), +(16663, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:00.453462+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:11.982245+00', 11528, NULL), +(16664, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:00.453882+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:00.456102+00', 2, '{"timezone-id":null}'), +(16665, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:00.457502+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:00.781163+00', 323, '{"updated-tables":0,"total-tables":4}'), +(16666, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:00.781237+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:11.974406+00', 11193, '{"total-fields":39,"updated-fields":0}'), +(16667, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:11.974516+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:11.979+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16668, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:11.979122+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:11.982151+00', 3, NULL), +(16669, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.122487+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.177793+00', 55, NULL), +(16670, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.122508+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.161844+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16671, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.161917+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.166806+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(16672, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.166891+00', TIMESTAMP WITH TIME ZONE '2023-01-14 07:49:12.177738+00', 10, '{"total-tables":4,"tables-classified":0}'), +(16673, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 08:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:00:01.008+00', 842, NULL), +(16674, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 08:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:00:01.144+00', 992, NULL), +(16675, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:00.221552+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:06.750822+00', 6529, NULL), +(16676, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:00.228691+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:02.33204+00', 2103, '{"timezone-id":"UTC"}'), +(16677, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:02.334725+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:02.888366+00', 553, '{"updated-tables":0,"total-tables":8}'), +(16678, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:02.888728+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:05.853175+00', 2964, '{"total-fields":71,"updated-fields":0}'), +(16679, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:05.853239+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:05.971569+00', 118, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16680, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:05.971946+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:06.74866+00', 776, NULL), +(16681, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.034368+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.987199+00', 952, NULL), +(16682, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.03465+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.431648+00', 396, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16683, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.432057+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.964711+00', 532, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16684, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.964778+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:19:07.987146+00', 22, '{"total-tables":8,"tables-classified":0}'), +(16685, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:01.190537+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:14.907703+00', 13717, NULL), +(16686, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:01.19301+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:01.19999+00', 6, '{"timezone-id":null}'), +(16687, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:01.208403+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:01.83112+00', 622, '{"updated-tables":0,"total-tables":4}'), +(16688, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:01.831334+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:14.890456+00', 13059, '{"total-fields":39,"updated-fields":0}'), +(16689, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:14.890578+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:14.902546+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16690, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:14.902607+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:14.90708+00', 4, NULL), +(16691, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.040719+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.101924+00', 61, NULL), +(16692, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.04074+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.081568+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16693, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.081763+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.086217+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(16694, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.08639+00', TIMESTAMP WITH TIME ZONE '2023-01-14 08:49:15.101698+00', 15, '{"total-tables":4,"tables-classified":0}'), +(16695, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 09:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:00:01.223+00', 1043, NULL), +(16696, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 09:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:00:01.466+00', 1303, NULL), +(16697, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:00.196405+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.007066+00', 6810, NULL), +(16698, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:00.197856+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:00.86847+00', 670, '{"timezone-id":"UTC"}'), +(16699, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:00.870172+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:01.359008+00', 488, '{"updated-tables":0,"total-tables":8}'), +(16700, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:01.359164+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:05.766822+00', 4407, '{"total-fields":71,"updated-fields":0}'), +(16701, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:05.76715+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:05.90731+00', 140, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16702, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:05.907613+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.006706+00', 1099, NULL), +(16703, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.179656+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.328814+00', 149, NULL), +(16704, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.180015+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.271015+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16705, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.271164+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.294795+00', 23, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16706, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.294899+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:19:07.328765+00', 33, '{"total-tables":8,"tables-classified":0}'), +(16707, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:00.592134+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.223431+00', 11631, NULL), +(16708, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:00.596973+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:00.608612+00', 11, '{"timezone-id":null}'), +(16709, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:00.61066+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:00.991899+00', 381, '{"updated-tables":0,"total-tables":4}'), +(16710, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:00.991977+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.214253+00', 11222, '{"total-fields":39,"updated-fields":0}'), +(16711, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.214693+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.220032+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16712, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.220097+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.223388+00', 3, NULL), +(16713, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.314003+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.375046+00', 61, NULL), +(16714, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.314023+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.350741+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16715, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.350843+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.356755+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(16716, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.356866+00', TIMESTAMP WITH TIME ZONE '2023-01-14 09:49:12.374991+00', 18, '{"total-tables":4,"tables-classified":0}'), +(16717, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 10:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:00:01.066+00', 931, NULL), +(16718, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 10:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:00:01.178+00', 1054, NULL), +(16719, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:00.401067+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:05.826087+00', 5425, NULL), +(16720, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:00.405038+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:01.027569+00', 622, '{"timezone-id":"UTC"}'), +(16721, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:01.038556+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:01.528017+00', 489, '{"updated-tables":0,"total-tables":8}'), +(16722, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:01.52861+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:04.939495+00', 3410, '{"total-fields":71,"updated-fields":0}'), +(16723, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:04.939763+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:05.101343+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16724, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:05.101437+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:05.8256+00', 724, NULL), +(16725, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.041459+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.268045+00', 226, NULL), +(16726, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.041771+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.228615+00', 186, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16727, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.228869+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.246752+00', 17, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16728, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.246828+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:19:06.267881+00', 21, '{"total-tables":8,"tables-classified":0}'), +(16729, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:00.738778+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:15.912398+00', 15173, NULL), +(16730, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:00.743937+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:00.791254+00', 47, '{"timezone-id":null}'), +(16731, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:00.79505+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:01.401063+00', 606, '{"updated-tables":0,"total-tables":4}'), +(16732, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:01.401431+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:15.892383+00', 14490, '{"total-fields":39,"updated-fields":0}'), +(16733, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:15.892589+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:15.906474+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16734, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:15.906553+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:15.911864+00', 5, NULL), +(16735, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.048006+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.180726+00', 132, NULL), +(16736, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.048025+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.119904+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16737, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.119972+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.129623+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(16738, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.129686+00', TIMESTAMP WITH TIME ZONE '2023-01-14 10:49:16.180638+00', 50, '{"total-tables":4,"tables-classified":0}'), +(16739, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 11:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:00:00.889+00', 767, NULL), +(16740, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 11:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:00:01.062+00', 950, NULL), +(16741, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:00.217853+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.391346+00', 6173, NULL), +(16742, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:00.222083+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:00.744807+00', 522, '{"timezone-id":"UTC"}'), +(16743, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:00.746489+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:01.163475+00', 416, '{"updated-tables":0,"total-tables":8}'), +(16744, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:01.163971+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:04.637639+00', 3473, '{"total-fields":71,"updated-fields":0}'), +(16745, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:04.637728+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:04.837465+00', 199, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16746, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:04.838291+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.390763+00', 1552, NULL), +(16747, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.575327+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.818899+00', 243, NULL), +(16748, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.575353+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.771838+00', 196, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16749, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.771927+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.795581+00', 23, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16750, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.795647+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:19:06.818847+00', 23, '{"total-tables":8,"tables-classified":0}'), +(16751, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:00.946052+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.817999+00', 13871, NULL), +(16752, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:00.959071+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:00.981753+00', 22, '{"timezone-id":null}'), +(16753, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:00.986458+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:01.701283+00', 714, '{"updated-tables":0,"total-tables":4}'), +(16754, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:01.701735+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.799127+00', 13097, '{"total-fields":39,"updated-fields":0}'), +(16755, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.799282+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.81121+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16756, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.811342+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.817828+00', 6, NULL), +(16757, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.947956+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:15.018932+00', 70, NULL), +(16758, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:14.947981+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:15.006571+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16759, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:15.006641+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:15.011138+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(16760, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:15.011199+00', TIMESTAMP WITH TIME ZONE '2023-01-14 11:49:15.018885+00', 7, '{"total-tables":4,"tables-classified":0}'), +(16761, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 12:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:00:00.812+00', 671, NULL), +(16762, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 12:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:00:00.828+00', 710, NULL), +(16763, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:00.592823+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:08.043574+00', 7450, NULL), +(16764, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:00.599649+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:02.053642+00', 1453, '{"timezone-id":"UTC"}'), +(16765, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:02.056722+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:02.622187+00', 565, '{"updated-tables":0,"total-tables":8}'), +(16766, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:02.622665+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:06.939369+00', 4316, '{"total-fields":71,"updated-fields":0}'), +(16767, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:06.939797+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:07.147433+00', 207, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16768, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:07.14772+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:08.043097+00', 895, NULL), +(16769, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:08.283511+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:09.233677+00', 950, NULL), +(16770, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:08.283547+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:09.123054+00', 839, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16771, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:09.123133+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:09.14558+00', 22, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16772, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:09.145661+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:19:09.233614+00', 87, '{"total-tables":8,"tables-classified":0}'), +(16773, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:00.819736+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.593162+00', 11773, NULL), +(16774, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:00.822946+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:00.829377+00', 6, '{"timezone-id":null}'), +(16775, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:00.831864+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:01.323705+00', 491, '{"updated-tables":0,"total-tables":4}'), +(16776, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:01.324083+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.577998+00', 11253, '{"total-fields":39,"updated-fields":0}'), +(16777, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.578092+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.589006+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16778, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.589094+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.593109+00', 4, NULL), +(16779, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.710822+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.774669+00', 63, NULL), +(16780, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.710842+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.757612+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16781, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.757916+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.764782+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(16782, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.764966+00', TIMESTAMP WITH TIME ZONE '2023-01-14 12:49:12.774474+00', 9, '{"total-tables":4,"tables-classified":0}'), +(16783, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 13:00:00.062+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:00:00.625+00', 563, NULL), +(16784, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 13:00:00.067+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:00:00.625+00', 558, NULL), +(16785, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:00.954191+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.513036+00', 3558, NULL), +(16786, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:00.959896+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:01.499876+00', 539, '{"timezone-id":"UTC"}'), +(16787, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:01.50223+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:01.938438+00', 436, '{"updated-tables":0,"total-tables":8}'), +(16788, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:01.938804+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.211117+00', 2272, '{"total-fields":71,"updated-fields":0}'), +(16789, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.211456+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.291878+00', 80, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16790, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.292+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.512748+00', 220, NULL), +(16791, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.632762+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.811166+00', 178, NULL), +(16792, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.632782+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.777783+00', 145, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16793, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.777856+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.790193+00', 12, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16794, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.790258+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:19:04.811104+00', 20, '{"total-tables":8,"tables-classified":0}'), +(16795, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:00.775623+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.279937+00', 12504, NULL), +(16796, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:00.779283+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:00.796896+00', 17, '{"timezone-id":null}'), +(16797, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:00.800814+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:01.414154+00', 613, '{"updated-tables":0,"total-tables":4}'), +(16798, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:01.414249+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.264934+00', 11850, '{"total-fields":39,"updated-fields":0}'), +(16799, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.265068+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.275002+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16800, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.275104+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.279883+00', 4, NULL), +(16801, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.373516+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.444156+00', 70, NULL), +(16802, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.373538+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.417123+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16803, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.417184+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.424184+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(16804, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.424242+00', TIMESTAMP WITH TIME ZONE '2023-01-14 13:49:13.444105+00', 19, '{"total-tables":4,"tables-classified":0}'), +(16805, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 14:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:00:00.502+00', 364, NULL), +(16806, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 14:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:00:00.619+00', 492, NULL), +(16807, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:00.180316+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.397201+00', 5216, NULL), +(16808, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:00.185419+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:00.894528+00', 709, '{"timezone-id":"UTC"}'), +(16809, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:00.896569+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:01.380137+00', 483, '{"updated-tables":0,"total-tables":8}'), +(16810, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:01.380511+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:04.673661+00', 3293, '{"total-fields":71,"updated-fields":0}'), +(16811, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:04.674038+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:04.810288+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16812, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:04.810575+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.396674+00', 586, NULL), +(16813, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.565859+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.802631+00', 236, NULL), +(16814, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.565894+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.748219+00', 182, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16815, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.748308+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.763807+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16816, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.763945+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:19:05.802576+00', 38, '{"total-tables":8,"tables-classified":0}'), +(16817, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:01.152951+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.435306+00', 11282, NULL), +(16818, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:01.155965+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:01.212119+00', 56, '{"timezone-id":null}'), +(16819, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:01.277875+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:01.733555+00', 455, '{"updated-tables":0,"total-tables":4}'), +(16820, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:01.733639+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.424565+00', 10690, '{"total-fields":39,"updated-fields":0}'), +(16821, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.424695+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.431131+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16822, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.431235+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.435223+00', 3, NULL), +(16823, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.514428+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.560088+00', 45, NULL), +(16824, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.514446+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.539554+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16825, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.539698+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.5494+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(16826, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.549512+00', TIMESTAMP WITH TIME ZONE '2023-01-14 14:49:12.560038+00', 10, '{"total-tables":4,"tables-classified":0}'), +(16827, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 15:00:00.234+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:00:01.895+00', 1661, NULL), +(16828, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 15:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:00:02.265+00', 2061, NULL), +(16829, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:00.245031+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.496132+00', 6251, NULL), +(16830, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:00.250247+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:00.731393+00', 481, '{"timezone-id":"UTC"}'), +(16831, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:00.733392+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:01.142864+00', 409, '{"updated-tables":0,"total-tables":8}'), +(16832, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:01.142956+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:05.296849+00', 4153, '{"total-fields":71,"updated-fields":0}'), +(16833, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:05.296948+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:05.492945+00', 195, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16834, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:05.493285+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.495441+00', 1002, NULL), +(16835, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.699816+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:07.040912+00', 341, NULL), +(16836, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.699837+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.969245+00', 269, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16837, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.969572+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.985314+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16838, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:06.985389+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:19:07.040705+00', 55, '{"total-tables":8,"tables-classified":0}'), +(16839, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:00.743573+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.455355+00', 11711, NULL), +(16840, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:00.749165+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:00.767036+00', 17, '{"timezone-id":null}'), +(16841, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:00.807094+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:01.38322+00', 576, '{"updated-tables":0,"total-tables":4}'), +(16842, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:01.383583+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.438685+00', 11055, '{"total-fields":39,"updated-fields":0}'), +(16843, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.439262+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.449735+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16844, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.449955+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.454986+00', 5, NULL), +(16845, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.611995+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.719896+00', 107, NULL), +(16846, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.61206+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.695513+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16847, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.69561+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.706875+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(16848, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.707084+00', TIMESTAMP WITH TIME ZONE '2023-01-14 15:49:12.719833+00', 12, '{"total-tables":4,"tables-classified":0}'), +(16849, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 16:00:00.078+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:00:00.765+00', 687, NULL), +(16850, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 16:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:00:00.764+00', 648, NULL), +(16851, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:00.181108+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.427174+00', 5246, NULL), +(16852, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:00.185967+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:00.737301+00', 551, '{"timezone-id":"UTC"}'), +(16853, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:00.73901+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:01.260322+00', 521, '{"updated-tables":0,"total-tables":8}'), +(16854, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:01.260453+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:04.745626+00', 3485, '{"total-fields":71,"updated-fields":0}'), +(16855, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:04.745886+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:04.880626+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16856, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:04.880836+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.426705+00', 545, NULL), +(16857, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.590246+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.772668+00', 182, NULL), +(16858, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.59027+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.742191+00', 151, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16859, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.742258+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.755004+00', 12, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16860, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.755075+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:19:05.772593+00', 17, '{"total-tables":8,"tables-classified":0}'), +(16861, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:00.646065+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.72812+00', 15082, NULL), +(16862, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:00.647774+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:00.65606+00', 8, '{"timezone-id":null}'), +(16863, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:00.660068+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:01.12138+00', 461, '{"updated-tables":0,"total-tables":4}'), +(16864, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:01.12151+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.711469+00', 14589, '{"total-fields":39,"updated-fields":0}'), +(16865, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.711592+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.722791+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16866, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.722925+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.728001+00', 5, NULL), +(16867, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.903785+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.989808+00', 86, NULL), +(16868, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.903804+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.956128+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16869, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.956199+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.969941+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(16870, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.970004+00', TIMESTAMP WITH TIME ZONE '2023-01-14 16:49:15.989758+00', 19, '{"total-tables":4,"tables-classified":0}'), +(16871, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 17:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:00:00.891+00', 790, NULL), +(16872, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 17:00:00.086+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:00:01.046+00', 960, NULL), +(16873, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:00.336805+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.519218+00', 5182, NULL), +(16874, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:00.340934+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:00.814219+00', 473, '{"timezone-id":"UTC"}'), +(16875, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:00.817066+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:01.197642+00', 380, '{"updated-tables":0,"total-tables":8}'), +(16876, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:01.197991+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:03.857675+00', 2659, '{"total-fields":71,"updated-fields":0}'), +(16877, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:03.857815+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:03.989254+00', 131, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16878, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:03.989557+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.518989+00', 1529, NULL), +(16879, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.654744+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.826274+00', 171, NULL), +(16880, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.65498+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.796861+00', 141, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16881, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.796927+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.807107+00', 10, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16882, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.807167+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:19:05.826221+00', 19, '{"total-tables":8,"tables-classified":0}'), +(16883, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:00.948727+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.064113+00', 13115, NULL), +(16884, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:00.954593+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:00.975645+00', 21, '{"timezone-id":null}'), +(16885, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:00.980226+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:01.597587+00', 617, '{"updated-tables":0,"total-tables":4}'), +(16886, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:01.598052+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.039208+00', 12441, '{"total-fields":39,"updated-fields":0}'), +(16887, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.039327+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.057905+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16888, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.057979+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.063835+00', 5, NULL), +(16889, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.185905+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.266423+00', 80, NULL), +(16890, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.185925+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.237056+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16891, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.23712+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.246844+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(16892, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.246917+00', TIMESTAMP WITH TIME ZONE '2023-01-14 17:49:14.266364+00', 19, '{"total-tables":4,"tables-classified":0}'), +(16893, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 18:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:00:01.109+00', 970, NULL), +(16894, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 18:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:00:01.268+00', 1133, NULL), +(16895, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:00.174624+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.013548+00', 5838, NULL), +(16896, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:00.178775+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:00.973185+00', 794, '{"timezone-id":"UTC"}'), +(16897, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:00.974988+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:01.439975+00', 464, '{"updated-tables":0,"total-tables":8}'), +(16898, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:01.440514+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:05.113866+00', 3673, '{"total-fields":71,"updated-fields":0}'), +(16899, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:05.114093+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:05.258773+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16900, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:05.2591+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.013193+00', 754, NULL), +(16901, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.070121+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.147034+00', 76, NULL), +(16902, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.070138+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.117014+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16903, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.117074+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.128294+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16904, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.128355+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:19:06.14698+00', 18, '{"total-tables":8,"tables-classified":0}'), +(16905, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:00.973963+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.863741+00', 12889, NULL), +(16906, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:00.979397+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:00.990651+00', 11, '{"timezone-id":null}'), +(16907, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:00.994491+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:01.566882+00', 572, '{"updated-tables":0,"total-tables":4}'), +(16908, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:01.567087+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.849105+00', 12282, '{"total-fields":39,"updated-fields":0}'), +(16909, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.849233+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.859117+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16910, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.859216+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.863683+00', 4, NULL), +(16911, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.960898+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:14.008853+00', 47, NULL), +(16912, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.960918+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.994542+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16913, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.9946+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.999023+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(16914, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:13.99908+00', TIMESTAMP WITH TIME ZONE '2023-01-14 18:49:14.008782+00', 9, '{"total-tables":4,"tables-classified":0}'), +(16915, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 19:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:00:01.137+00', 995, NULL), +(16916, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 19:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:00:01.322+00', 1204, NULL), +(16917, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:00.209189+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.196746+00', 5987, NULL), +(16918, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:00.214008+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:01.006853+00', 792, '{"timezone-id":"UTC"}'), +(16919, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:01.008236+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:01.517651+00', 509, '{"updated-tables":0,"total-tables":8}'), +(16920, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:01.518499+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:04.659081+00', 3140, '{"total-fields":71,"updated-fields":0}'), +(16921, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:04.659511+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:04.83869+00', 179, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16922, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:04.839107+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.195926+00', 1356, NULL), +(16923, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.434352+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.664925+00', 230, NULL), +(16924, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.434376+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.626098+00', 191, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16925, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.626274+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.641628+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16926, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.641803+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:19:06.664785+00', 22, '{"total-tables":8,"tables-classified":0}'), +(16927, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:00.794314+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.434242+00', 11639, NULL), +(16928, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:00.801632+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:00.819588+00', 17, '{"timezone-id":null}'), +(16929, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:00.825977+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:01.857449+00', 1031, '{"updated-tables":0,"total-tables":4}'), +(16930, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:01.857914+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.416295+00', 10558, '{"total-fields":39,"updated-fields":0}'), +(16931, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.416573+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.42855+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16932, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.428658+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.434074+00', 5, NULL), +(16933, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.514637+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.575909+00', 61, NULL), +(16934, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.514657+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.542258+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16935, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.542479+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.552471+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(16936, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.552708+00', TIMESTAMP WITH TIME ZONE '2023-01-14 19:49:12.5757+00', 22, '{"total-tables":4,"tables-classified":0}'), +(16937, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 20:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:00:01.06+00', 915, NULL), +(16938, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 20:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:00:01.21+00', 1072, NULL), +(16939, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:00.183733+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:04.769637+00', 4585, NULL), +(16940, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:00.187618+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:00.816733+00', 629, '{"timezone-id":"UTC"}'), +(16941, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:00.819295+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:01.250262+00', 430, '{"updated-tables":0,"total-tables":8}'), +(16942, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:01.250651+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:03.967248+00', 2716, '{"total-fields":71,"updated-fields":0}'), +(16943, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:03.967353+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:04.1291+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16944, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:04.129402+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:04.769282+00', 639, NULL), +(16945, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:04.941323+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:05.209868+00', 268, NULL), +(16946, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:04.941345+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:05.148052+00', 206, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16947, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:05.148526+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:05.171399+00', 22, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16948, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:05.171461+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:19:05.209823+00', 38, '{"total-tables":8,"tables-classified":0}'), +(16949, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:00.887459+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.102724+00', 14215, NULL), +(16950, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:00.891734+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:00.904735+00', 13, '{"timezone-id":null}'), +(16951, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:00.908233+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:01.539155+00', 630, '{"updated-tables":0,"total-tables":4}'), +(16952, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:01.539247+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.08784+00', 13548, '{"total-fields":39,"updated-fields":0}'), +(16953, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.087941+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.096606+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16954, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.096813+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.102306+00', 5, NULL), +(16955, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.222287+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.292344+00', 70, NULL), +(16956, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.222311+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.263386+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16957, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.263636+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.271187+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(16958, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.271336+00', TIMESTAMP WITH TIME ZONE '2023-01-14 20:49:15.292196+00', 20, '{"total-tables":4,"tables-classified":0}'), +(16959, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:00.24+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:00.839+00', 599, NULL), +(16960, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:00.262+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:00.834+00', 572, NULL), +(16961, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:01.146359+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:12.685141+00', 11538, NULL), +(16962, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:01.153163+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:03.459595+00', 2306, '{"deleted":0}'), +(16963, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:03.462283+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:00:12.684605+00', 9222, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(16964, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.061151+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.098784+00', 1037, NULL), +(16965, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.061191+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.194153+00', 132, '{"timezone-id":"UTC"}'), +(16966, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.194237+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.395311+00', 201, '{"updated-tables":0,"total-tables":8}'), +(16967, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.395394+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.922364+00', 526, '{"total-fields":71,"updated-fields":0}'), +(16968, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.922407+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.969887+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16969, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:00.969967+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.098756+00', 128, NULL), +(16970, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.137754+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.219597+00', 81, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16971, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.137776+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.191424+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16972, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.191496+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.202339+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(16973, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.202397+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:19:01.219554+00', 17, '{"total-tables":8,"tables-classified":0}'), +(16974, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:00.451422+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.329987+00', 9878, NULL), +(16975, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:00.454765+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:00.468512+00', 13, '{"timezone-id":null}'), +(16976, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:00.471945+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:01.124992+00', 653, '{"updated-tables":0,"total-tables":4}'), +(16977, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:01.125085+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.322795+00', 9197, '{"total-fields":39,"updated-fields":0}'), +(16978, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.32289+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.326526+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(16979, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.326613+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.329616+00', 3, NULL), +(16980, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.40215+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.450343+00', 48, NULL), +(16981, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.40217+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.429186+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16982, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.429286+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.437384+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(16983, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.437539+00', TIMESTAMP WITH TIME ZONE '2023-01-14 21:49:10.450272+00', 12, '{"total-tables":4,"tables-classified":0}'), +(16984, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 22:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:00:00.948+00', 816, NULL), +(16985, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 22:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:00:01.065+00', 938, NULL), +(16986, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:00.18577+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:03.917494+00', 3731, NULL), +(16987, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:00.189284+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:00.591176+00', 401, '{"timezone-id":"UTC"}'), +(16988, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:00.592403+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:00.872929+00', 280, '{"updated-tables":0,"total-tables":8}'), +(16989, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:00.873211+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:03.267185+00', 2393, '{"total-fields":71,"updated-fields":0}'), +(16990, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:03.267475+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:03.379343+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(16991, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:03.379765+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:03.917139+00', 537, NULL), +(16992, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.09381+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.649005+00', 555, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(16993, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.093841+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.617367+00', 523, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(16994, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.617427+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.630068+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(16995, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.630134+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:19:04.64896+00', 18, '{"total-tables":8,"tables-classified":0}'), +(16996, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:00.231067+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.103773+00', 9872, NULL), +(16997, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:00.231103+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:00.232842+00', 1, '{"timezone-id":null}'), +(16998, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:00.233245+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:00.522462+00', 289, '{"updated-tables":0,"total-tables":4}'), +(16999, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:00.522527+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.087804+00', 9565, '{"total-fields":39,"updated-fields":0}'), +(17000, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.087914+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.101025+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17001, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.101082+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.103683+00', 2, NULL), +(17002, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.219327+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.264028+00', 44, NULL), +(17003, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.219346+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.243506+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17004, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.243576+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.251166+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(17005, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.251228+00', TIMESTAMP WITH TIME ZONE '2023-01-14 22:49:10.263985+00', 12, '{"total-tables":4,"tables-classified":0}'), +(17006, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 23:00:00.459+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:00:01.307+00', 848, NULL), +(17007, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-14 23:00:00.446+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:00:01.471+00', 1025, NULL), +(17008, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:00.132744+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.151351+00', 4018, NULL), +(17009, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:00.13582+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:00.620947+00', 485, '{"timezone-id":"UTC"}'), +(17010, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:00.622435+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:00.9323+00', 309, '{"updated-tables":0,"total-tables":8}'), +(17011, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:00.932559+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:03.89904+00', 2966, '{"total-fields":71,"updated-fields":0}'), +(17012, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:03.89939+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:03.999849+00', 100, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17013, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.006347+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.151317+00', 144, NULL), +(17014, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.181742+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.283667+00', 101, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17015, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.181759+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.227065+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17016, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.227133+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.252526+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(17017, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.252602+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:19:04.283541+00', 30, '{"total-tables":8,"tables-classified":0}'), +(17018, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:00.561493+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.415367+00', 11853, NULL), +(17019, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:00.564861+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:00.57332+00', 8, '{"timezone-id":null}'), +(17020, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:00.575101+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:00.996636+00', 421, '{"updated-tables":0,"total-tables":4}'), +(17021, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:00.996729+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.389092+00', 11392, '{"total-fields":39,"updated-fields":0}'), +(17022, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.389201+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.411837+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17023, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.411922+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.415126+00', 3, NULL), +(17024, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.515756+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.580666+00', 64, NULL), +(17025, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.515775+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.567173+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17026, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.567244+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.572175+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(17027, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.572234+00', TIMESTAMP WITH TIME ZONE '2023-01-14 23:49:12.580625+00', 8, '{"total-tables":4,"tables-classified":0}'), +(17028, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 00:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:00:01.743+00', 1601, NULL), +(17029, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 00:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:00:02.661+00', 2538, NULL), +(17030, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:00.198026+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:06.625742+00', 6427, NULL), +(17031, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:00.203287+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:00.725559+00', 522, '{"timezone-id":"UTC"}'), +(17032, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:00.728147+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:01.444142+00', 715, '{"updated-tables":0,"total-tables":8}'), +(17033, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:01.444469+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:04.792192+00', 3347, '{"total-fields":71,"updated-fields":0}'), +(17034, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:04.792261+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:04.975019+00', 182, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17035, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:04.975305+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:06.625201+00', 1649, NULL), +(17036, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:06.832325+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:07.035908+00', 203, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17037, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:06.832544+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:06.994615+00', 162, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17038, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:06.994708+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:07.010327+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17039, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:07.010394+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:19:07.035849+00', 25, '{"total-tables":8,"tables-classified":0}'), +(17040, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:00.825083+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.504324+00', 11679, NULL), +(17041, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:00.826386+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:00.832942+00', 6, '{"timezone-id":null}'), +(17042, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:00.836663+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:01.275062+00', 438, '{"updated-tables":0,"total-tables":4}'), +(17043, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:01.275142+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.493356+00', 11218, '{"total-fields":39,"updated-fields":0}'), +(17044, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.493469+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.498709+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17045, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.498788+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.504262+00', 5, NULL), +(17046, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.618547+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.696449+00', 77, NULL), +(17047, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.618571+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.670182+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17048, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.670314+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.678469+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(17049, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.678594+00', TIMESTAMP WITH TIME ZONE '2023-01-15 00:49:12.69636+00', 17, '{"total-tables":4,"tables-classified":0}'), +(17050, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 01:00:00.957+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:00:02.858+00', 1901, NULL), +(17051, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 01:00:00.94+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:00:03.027+00', 2087, NULL), +(17052, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:00.221242+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.353597+00', 4132, NULL), +(17053, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:00.225246+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:00.869865+00', 644, '{"timezone-id":"UTC"}'), +(17054, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:00.871772+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:01.208865+00', 337, '{"updated-tables":0,"total-tables":8}'), +(17055, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:01.209164+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:03.649117+00', 2439, '{"total-fields":71,"updated-fields":0}'), +(17056, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:03.649462+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:03.772645+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17057, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:03.773016+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.353432+00', 580, NULL), +(17058, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.502698+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.7871+00', 284, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17059, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.502717+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.72048+00', 217, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17060, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.720709+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.75466+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(17061, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.754906+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:19:04.787038+00', 32, '{"total-tables":8,"tables-classified":0}'), +(17062, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:00.212336+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.904978+00', 8692, NULL), +(17063, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:00.212368+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:00.214291+00', 1, '{"timezone-id":null}'), +(17064, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:00.214394+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:00.46271+00', 248, '{"updated-tables":0,"total-tables":4}'), +(17065, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:00.462827+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.901915+00', 8439, '{"total-fields":39,"updated-fields":0}'), +(17066, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.901988+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.903347+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17067, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.903408+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.904948+00', 1, NULL), +(17068, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.990409+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:09.044894+00', 54, NULL), +(17069, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:08.990429+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:09.022183+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17070, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:09.022256+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:09.025804+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(17071, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:09.025858+00', TIMESTAMP WITH TIME ZONE '2023-01-15 01:49:09.044855+00', 18, '{"total-tables":4,"tables-classified":0}'), +(17072, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:00.959+00', 799, NULL), +(17073, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:00.249+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:00.958+00', 709, NULL), +(17074, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:01.322378+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:13.572227+00', 12249, NULL), +(17075, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:01.324474+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:03.210045+00', 1885, '{"deleted":0}'), +(17076, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:03.213877+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:00:13.571563+00', 10357, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(17077, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:00.210118+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.445823+00', 2235, NULL), +(17078, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:00.212122+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:00.676679+00', 464, '{"timezone-id":"UTC"}'), +(17079, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:00.677672+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:01.077475+00', 399, '{"updated-tables":0,"total-tables":8}'), +(17080, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:01.077777+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.194807+00', 1117, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17081, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.194886+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.227263+00', 32, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17082, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.227338+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.445782+00', 218, NULL), +(17083, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.541997+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.659177+00', 117, NULL), +(17084, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.54202+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.606217+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17085, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.606296+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.618026+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(17086, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.61812+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:19:02.659113+00', 40, '{"total-tables":8,"tables-classified":0}'), +(17087, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:00.660247+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:12.988683+00', 12328, NULL), +(17088, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:00.66412+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:00.679146+00', 15, '{"timezone-id":null}'), +(17089, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:00.681808+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:01.236227+00', 554, '{"updated-tables":0,"total-tables":4}'), +(17090, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:01.236336+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:12.948956+00', 11712, '{"total-fields":39,"updated-fields":0}'), +(17091, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:12.949072+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:12.976737+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17092, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:12.976806+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:12.988271+00', 11, NULL), +(17093, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.10003+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.173925+00', 73, NULL), +(17094, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.100051+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.148572+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17095, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.148656+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.158032+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(17096, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.158096+00', TIMESTAMP WITH TIME ZONE '2023-01-15 02:49:13.173877+00', 15, '{"total-tables":4,"tables-classified":0}'), +(17097, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 03:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:00:00.807+00', 684, NULL), +(17098, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 03:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:00:00.938+00', 827, NULL), +(17099, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:00.209318+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.036814+00', 6827, NULL), +(17100, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:00.214935+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:01.086897+00', 871, '{"timezone-id":"UTC"}'), +(17101, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:01.091688+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:01.623389+00', 531, '{"updated-tables":0,"total-tables":8}'), +(17102, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:01.623808+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:06.206482+00', 4582, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17103, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:06.206866+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:06.377586+00', 170, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17104, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:06.378049+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.036527+00', 658, NULL), +(17105, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.216749+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.455066+00', 238, NULL), +(17106, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.216776+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.39552+00', 178, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17107, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.395616+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.411274+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17108, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.411391+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:19:07.454857+00', 43, '{"total-tables":8,"tables-classified":0}'), +(17109, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:00.614746+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.800839+00', 11186, NULL), +(17110, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:00.61607+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:00.620915+00', 4, '{"timezone-id":null}'), +(17111, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:00.624458+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:01.111963+00', 487, '{"updated-tables":0,"total-tables":4}'), +(17112, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:01.112178+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.79564+00', 10683, '{"total-fields":39,"updated-fields":0}'), +(17113, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.795727+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.797775+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17114, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.797819+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.800805+00', 2, NULL), +(17115, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.88835+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.924938+00', 36, NULL), +(17116, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.888368+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.911669+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17117, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.911744+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.917012+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(17118, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.917069+00', TIMESTAMP WITH TIME ZONE '2023-01-15 03:49:11.924895+00', 7, '{"total-tables":4,"tables-classified":0}'), +(17119, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 04:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:00:00.885+00', 761, NULL), +(17120, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 04:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:00:00.982+00', 858, NULL), +(17121, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:00.224503+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.645516+00', 5421, NULL), +(17122, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:00.22799+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:00.872837+00', 644, '{"timezone-id":"UTC"}'), +(17123, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:00.874443+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:01.227869+00', 353, '{"updated-tables":0,"total-tables":8}'), +(17124, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:01.228146+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:04.158562+00', 2930, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17125, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:04.158935+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.067404+00', 908, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17126, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.06775+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.645028+00', 577, NULL), +(17127, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.799911+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:06.046158+00', 246, NULL), +(17128, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.799931+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.97271+00', 172, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17129, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:05.972855+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:06.003035+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(17130, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:06.003121+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:19:06.046088+00', 42, '{"total-tables":8,"tables-classified":0}'), +(17131, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:00.90494+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.639109+00', 11734, NULL), +(17132, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:00.911377+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:00.9207+00', 9, '{"timezone-id":null}'), +(17133, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:00.925135+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:01.470267+00', 545, '{"updated-tables":0,"total-tables":4}'), +(17134, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:01.470378+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.569737+00', 11099, '{"total-fields":39,"updated-fields":0}'), +(17135, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.56982+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.633722+00', 63, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17136, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.633779+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.639057+00', 5, NULL), +(17137, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.739316+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.797436+00', 58, NULL), +(17138, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.739345+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.77345+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17139, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.773701+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.782291+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(17140, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.782378+00', TIMESTAMP WITH TIME ZONE '2023-01-15 04:49:12.797306+00', 14, '{"total-tables":4,"tables-classified":0}'), +(17141, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 05:00:00.596+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:00:02.892+00', 2296, NULL), +(17142, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 05:00:00.592+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:00:03.044+00', 2452, NULL), +(17143, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:00.22093+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.311467+00', 5090, NULL), +(17144, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:00.225017+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:00.733162+00', 508, '{"timezone-id":"UTC"}'), +(17145, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:00.734617+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:01.107977+00', 373, '{"updated-tables":0,"total-tables":8}'), +(17146, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:01.108386+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:03.843554+00', 2735, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17147, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:03.843878+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:04.04661+00', 202, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17148, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:04.046921+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.311199+00', 1264, NULL), +(17149, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.442225+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.563433+00', 121, NULL), +(17150, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.442367+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.532819+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17151, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.532915+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.545024+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17152, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.545146+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:19:05.563375+00', 18, '{"total-tables":8,"tables-classified":0}'), +(17153, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:00.584314+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.054321+00', 11470, NULL), +(17154, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:00.585996+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:00.59262+00', 6, '{"timezone-id":null}'), +(17155, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:00.595596+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:01.065903+00', 470, '{"updated-tables":0,"total-tables":4}'), +(17156, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:01.066255+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.041966+00', 10975, '{"total-fields":39,"updated-fields":0}'), +(17157, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.042058+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.050717+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17158, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.050783+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.054028+00', 3, NULL), +(17159, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.140244+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.201165+00', 60, NULL), +(17160, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.140265+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.180605+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17161, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.180695+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.1868+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(17162, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.18689+00', TIMESTAMP WITH TIME ZONE '2023-01-15 05:49:12.201101+00', 14, '{"total-tables":4,"tables-classified":0}'), +(17163, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 06:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:00:00.812+00', 702, NULL), +(17164, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 06:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:00:00.895+00', 798, NULL), +(17165, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:00.139117+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.857621+00', 5718, NULL), +(17166, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:00.14283+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:00.940683+00', 797, '{"timezone-id":"UTC"}'), +(17167, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:00.941992+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:01.365738+00', 423, '{"updated-tables":0,"total-tables":8}'), +(17168, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:01.365837+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:04.607187+00', 3241, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17169, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:04.60731+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:04.919745+00', 312, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17170, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:04.92007+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.857207+00', 937, NULL), +(17171, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.905606+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:06.00251+00', 96, NULL), +(17172, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.905626+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.969076+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17173, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.969161+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.981357+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17174, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:05.981417+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:19:06.002463+00', 21, '{"total-tables":8,"tables-classified":0}'), +(17175, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:00.609179+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.295321+00', 11686, NULL), +(17176, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:00.610136+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:00.615642+00', 5, '{"timezone-id":null}'), +(17177, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:00.618136+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:01.01034+00', 392, '{"updated-tables":0,"total-tables":4}'), +(17178, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:01.010414+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.28438+00', 11273, '{"total-fields":39,"updated-fields":0}'), +(17179, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.284805+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.289555+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17180, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.289624+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.295265+00', 5, NULL), +(17181, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.407766+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.479786+00', 72, NULL), +(17182, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.407788+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.453995+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17183, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.45406+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.463532+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(17184, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.463616+00', TIMESTAMP WITH TIME ZONE '2023-01-15 06:49:12.47972+00', 16, '{"total-tables":4,"tables-classified":0}'), +(17185, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 07:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:00:01.023+00', 811, NULL), +(17186, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 07:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:00:01.286+00', 1074, NULL), +(17187, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:00.181747+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:05.585656+00', 5403, NULL), +(17188, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:00.186659+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:00.661285+00', 474, '{"timezone-id":"UTC"}'), +(17189, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:00.664107+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:01.069014+00', 404, '{"updated-tables":0,"total-tables":8}'), +(17190, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:01.069297+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:04.767825+00', 3698, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17191, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:04.76816+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:04.93855+00', 170, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17192, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:04.938896+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:05.585257+00', 646, NULL), +(17193, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:05.760935+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:06.088922+00', 327, NULL), +(17194, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:05.760958+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:06.037059+00', 276, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17195, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:06.037194+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:06.062243+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(17196, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:06.062322+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:19:06.088867+00', 26, '{"total-tables":8,"tables-classified":0}'), +(17197, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:00.784518+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:15.813305+00', 15028, NULL), +(17198, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:00.788375+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:00.803855+00', 15, '{"timezone-id":null}'), +(17199, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:00.809657+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:01.436018+00', 626, '{"updated-tables":0,"total-tables":4}'), +(17200, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:01.436698+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:15.686589+00', 14249, '{"total-fields":39,"updated-fields":0}'), +(17201, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:15.686701+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:15.798712+00', 112, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17202, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:15.798804+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:15.812377+00', 13, NULL), +(17203, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.14731+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.197008+00', 49, NULL), +(17204, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.147608+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.176774+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17205, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.176952+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.181965+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(17206, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.182039+00', TIMESTAMP WITH TIME ZONE '2023-01-15 07:49:16.196957+00', 14, '{"total-tables":4,"tables-classified":0}'), +(17207, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 08:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:00:01.148+00', 1009, NULL), +(17208, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 08:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:00:01.308+00', 1181, NULL), +(17209, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:00.21681+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:07.94007+00', 7723, NULL), +(17210, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:00.222204+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:00.996572+00', 774, '{"timezone-id":"UTC"}'), +(17211, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:00.998944+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:01.466778+00', 467, '{"updated-tables":0,"total-tables":8}'), +(17212, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:01.467341+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:07.189575+00', 5722, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17213, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:07.189691+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:07.34083+00', 151, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17214, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:07.34116+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:07.939807+00', 598, NULL), +(17215, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.089515+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.180138+00', 90, NULL), +(17216, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.089543+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.145706+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17217, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.145774+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.162132+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(17218, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.162206+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:19:08.18009+00', 17, '{"total-tables":8,"tables-classified":0}'), +(17219, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:00.462384+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.560803+00', 12098, NULL), +(17220, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:00.462428+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:00.46959+00', 7, '{"timezone-id":null}'), +(17221, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:00.472364+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:00.784739+00', 312, '{"updated-tables":0,"total-tables":4}'), +(17222, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:00.784812+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.549783+00', 11764, '{"total-fields":39,"updated-fields":0}'), +(17223, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.549877+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.557005+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17224, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.557068+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.560753+00', 3, NULL), +(17225, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.657535+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.708001+00', 50, NULL), +(17226, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.657558+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.686568+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17227, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.686641+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.695789+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(17228, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.695853+00', TIMESTAMP WITH TIME ZONE '2023-01-15 08:49:12.707963+00', 12, '{"total-tables":4,"tables-classified":0}'), +(17229, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 09:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:00:00.997+00', 860, NULL), +(17230, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 09:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:00:01.126+00', 1016, NULL), +(17231, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:00.132641+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:05.993674+00', 5861, NULL), +(17232, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:00.136241+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:00.541335+00', 405, '{"timezone-id":"UTC"}'), +(17233, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:00.542739+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:00.839627+00', 296, '{"updated-tables":0,"total-tables":8}'), +(17234, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:00.839973+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:04.210784+00', 3370, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17235, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:04.211092+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:05.169675+00', 958, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17236, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:05.170176+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:05.99318+00', 823, NULL), +(17237, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.158124+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.328122+00', 169, NULL), +(17238, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.158148+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.278877+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17239, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.278946+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.292659+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(17240, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.292742+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:19:06.328074+00', 35, '{"total-tables":8,"tables-classified":0}'), +(17241, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:00.908844+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:14.942727+00', 14033, NULL), +(17242, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:00.911019+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:00.91914+00', 8, '{"timezone-id":null}'), +(17243, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:00.922676+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:01.706909+00', 784, '{"updated-tables":0,"total-tables":4}'), +(17244, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:01.707367+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:14.925726+00', 13218, '{"total-fields":39,"updated-fields":0}'), +(17245, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:14.925828+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:14.937337+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17246, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:14.937395+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:14.942675+00', 5, NULL), +(17247, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.120567+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.197369+00', 76, NULL), +(17248, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.120594+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.175489+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17249, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.175575+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.183602+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(17250, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.183669+00', TIMESTAMP WITH TIME ZONE '2023-01-15 09:49:15.197319+00', 13, '{"total-tables":4,"tables-classified":0}'), +(17251, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 10:00:00.072+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:00:00.942+00', 870, NULL), +(17252, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 10:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:00:00.941+00', 844, NULL), +(17253, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:00.230777+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:06.951091+00', 6720, NULL), +(17254, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:00.238756+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:01.026586+00', 787, '{"timezone-id":"UTC"}'), +(17255, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:01.028687+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:01.535124+00', 506, '{"updated-tables":0,"total-tables":8}'), +(17256, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:01.535228+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:06.053611+00', 4518, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17257, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:06.054004+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:06.205256+00', 151, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17258, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:06.205702+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:06.95077+00', 745, NULL), +(17259, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.115957+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.243517+00', 127, NULL), +(17260, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.115976+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.183804+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17261, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.18388+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.197383+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(17262, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.197455+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:19:07.243453+00', 45, '{"total-tables":8,"tables-classified":0}'), +(17263, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:00.62785+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.362076+00', 11734, NULL), +(17264, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:00.629123+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:00.648897+00', 19, '{"timezone-id":null}'), +(17265, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:00.653931+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:01.304296+00', 650, '{"updated-tables":0,"total-tables":4}'), +(17266, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:01.304636+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.349086+00', 11044, '{"total-fields":39,"updated-fields":0}'), +(17267, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.349291+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.357502+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17268, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.357643+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.361995+00', 4, NULL), +(17269, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.450992+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.537878+00', 86, NULL), +(17270, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.451242+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.497158+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17271, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.497238+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.506791+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(17272, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.506939+00', TIMESTAMP WITH TIME ZONE '2023-01-15 10:49:12.537756+00', 30, '{"total-tables":4,"tables-classified":0}'), +(17273, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 11:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:00:03.079+00', 2935, NULL), +(17274, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 11:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:00:03.265+00', 3133, NULL), +(17275, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:00.16971+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:05.643044+00', 5473, NULL), +(17276, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:00.174668+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:00.770545+00', 595, '{"timezone-id":"UTC"}'), +(17277, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:00.771634+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:01.297801+00', 526, '{"updated-tables":0,"total-tables":8}'), +(17278, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:01.297914+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:04.740512+00', 3442, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17279, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:04.74129+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:04.918388+00', 177, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17280, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:04.91943+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:05.642561+00', 723, NULL), +(17281, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:05.860568+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:06.601483+00', 740, NULL), +(17282, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:05.860635+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:06.558366+00', 697, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17283, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:06.558653+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:06.573225+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(17284, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:06.573403+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:19:06.601307+00', 27, '{"total-tables":8,"tables-classified":0}'), +(17285, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:00.633019+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.78033+00', 11147, NULL), +(17286, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:00.633797+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:00.640316+00', 6, '{"timezone-id":null}'), +(17287, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:00.643877+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:01.206564+00', 562, '{"updated-tables":0,"total-tables":4}'), +(17288, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:01.206648+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.76484+00', 10558, '{"total-fields":39,"updated-fields":0}'), +(17289, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.765058+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.775739+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17290, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.776232+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.780102+00', 3, NULL), +(17291, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.978752+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:12.167007+00', 188, NULL), +(17292, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:11.978773+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:12.138935+00', 160, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17293, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:12.139014+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:12.14969+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(17294, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:12.149764+00', TIMESTAMP WITH TIME ZONE '2023-01-15 11:49:12.166945+00', 17, '{"total-tables":4,"tables-classified":0}'), +(17295, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 12:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:00:01.271+00', 1071, NULL), +(17296, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 12:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:00:01.626+00', 1434, NULL), +(17297, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:00.274216+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.025307+00', 6751, NULL), +(17298, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:00.278134+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:01.054499+00', 776, '{"timezone-id":"UTC"}'), +(17299, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:01.05653+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:01.500018+00', 443, '{"updated-tables":0,"total-tables":8}'), +(17300, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:01.500276+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:05.810512+00', 4310, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17301, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:05.810579+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:05.989071+00', 178, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17302, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:05.989543+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.024683+00', 1035, NULL), +(17303, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.199363+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.611278+00', 411, NULL), +(17304, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.19939+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.564949+00', 365, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17305, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.565058+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.583075+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(17306, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.583183+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:19:07.611193+00', 28, '{"total-tables":8,"tables-classified":0}'), +(17307, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:01.124311+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.213334+00', 13089, NULL), +(17308, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:01.12566+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:01.138004+00', 12, '{"timezone-id":null}'), +(17309, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:01.143087+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:01.613487+00', 470, '{"updated-tables":0,"total-tables":4}'), +(17310, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:01.613766+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.205398+00', 12591, '{"total-fields":39,"updated-fields":0}'), +(17311, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.205597+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.210419+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17312, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.210709+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.213255+00', 2, NULL), +(17313, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.29905+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.347406+00', 48, NULL), +(17314, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.299066+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.333764+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17315, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.333878+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.338941+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(17316, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.339129+00', TIMESTAMP WITH TIME ZONE '2023-01-15 12:49:14.347225+00', 8, '{"total-tables":4,"tables-classified":0}'), +(17317, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 13:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:00:00.977+00', 821, NULL), +(17318, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 13:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:00:01.202+00', 1050, NULL), +(17319, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:00.236872+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.588901+00', 7352, NULL), +(17320, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:00.239944+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:00.834992+00', 595, '{"timezone-id":"UTC"}'), +(17321, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:00.836931+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:02.290059+00', 1453, '{"updated-tables":0,"total-tables":8}'), +(17322, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:02.290746+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:06.592505+00', 4301, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17323, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:06.592736+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:06.825263+00', 232, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17324, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:06.827266+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.588604+00', 761, NULL), +(17325, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.667223+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.739341+00', 72, NULL), +(17326, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.66724+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.711554+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17327, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.71178+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.724398+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17328, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.724599+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:19:07.739247+00', 14, '{"total-tables":8,"tables-classified":0}'), +(17329, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:00.740041+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.06205+00', 14322, NULL), +(17330, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:00.741676+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:00.747301+00', 5, '{"timezone-id":null}'), +(17331, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:00.750124+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:01.293944+00', 543, '{"updated-tables":0,"total-tables":4}'), +(17332, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:01.294326+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.044765+00', 13750, '{"total-fields":39,"updated-fields":0}'), +(17333, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.044885+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.057515+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17334, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.057591+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.061993+00', 4, NULL), +(17335, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.281432+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.389429+00', 107, NULL), +(17336, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.281448+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.331802+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17337, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.331903+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.347897+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17338, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.347962+00', TIMESTAMP WITH TIME ZONE '2023-01-15 13:49:15.389359+00', 41, '{"total-tables":4,"tables-classified":0}'), +(17339, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 14:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:00:01.228+00', 1062, NULL), +(17340, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 14:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:00:01.397+00', 1233, NULL), +(17341, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:00.735601+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:06.839793+00', 6104, NULL), +(17342, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:00.739212+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:01.806656+00', 1067, '{"timezone-id":"UTC"}'), +(17343, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:01.809073+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:02.254253+00', 445, '{"updated-tables":0,"total-tables":8}'), +(17344, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:02.254343+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:05.268591+00', 3014, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17345, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:05.268878+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:05.424119+00', 155, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17346, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:05.424538+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:06.839263+00', 1414, NULL), +(17347, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.0149+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.157559+00', 142, NULL), +(17348, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.014918+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.119871+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17349, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.119951+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.133884+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(17350, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.13395+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:19:07.157472+00', 23, '{"total-tables":8,"tables-classified":0}'), +(17351, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:00.866235+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.237464+00', 16371, NULL), +(17352, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:00.870968+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:00.906453+00', 35, '{"timezone-id":null}'), +(17353, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:00.914079+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:01.549216+00', 635, '{"updated-tables":0,"total-tables":4}'), +(17354, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:01.549487+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:16.939199+00', 15389, '{"total-fields":39,"updated-fields":0}'), +(17355, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:16.939319+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.146967+00', 207, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17356, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.147043+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.235895+00', 88, NULL), +(17357, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.467876+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.584967+00', 117, NULL), +(17358, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.467896+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.536318+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17359, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.536394+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.548593+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17360, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.548743+00', TIMESTAMP WITH TIME ZONE '2023-01-15 14:49:17.584681+00', 35, '{"total-tables":4,"tables-classified":0}'), +(17361, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 15:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:00:01.031+00', 900, NULL), +(17362, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 15:00:00.092+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:00:01.033+00', 941, NULL), +(17363, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:00.399643+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.127579+00', 7727, NULL), +(17364, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:00.403983+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:01.226375+00', 822, '{"timezone-id":"UTC"}'), +(17365, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:01.22993+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:01.719551+00', 489, '{"updated-tables":0,"total-tables":8}'), +(17366, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:01.721481+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:07.045205+00', 5323, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17367, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:07.0456+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:07.268012+00', 222, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17368, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:07.268111+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.126997+00', 858, NULL), +(17369, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.31626+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.427779+00', 111, NULL), +(17370, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.31628+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.387194+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17371, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.387289+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.400177+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17372, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.400503+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:19:08.427722+00', 27, '{"total-tables":8,"tables-classified":0}'), +(17373, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:00.250598+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.277643+00', 11027, NULL), +(17374, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:00.25065+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:00.255105+00', 4, '{"timezone-id":null}'), +(17375, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:00.255201+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:00.664562+00', 409, '{"updated-tables":0,"total-tables":4}'), +(17376, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:00.664653+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.268027+00', 10603, '{"total-fields":39,"updated-fields":0}'), +(17377, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.268344+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.27289+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17378, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.272996+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.277528+00', 4, NULL), +(17379, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.347814+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.386144+00', 38, NULL), +(17380, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.347829+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.372315+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17381, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.372614+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.377789+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(17382, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.377961+00', TIMESTAMP WITH TIME ZONE '2023-01-15 15:49:11.385932+00', 7, '{"total-tables":4,"tables-classified":0}'), +(17383, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 16:00:00.092+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:00:00.625+00', 533, NULL), +(17384, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 16:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:00:00.625+00', 534, NULL), +(17385, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:00.272055+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.102939+00', 2830, NULL), +(17386, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:00.27458+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:00.763523+00', 488, '{"timezone-id":"UTC"}'), +(17387, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:00.766447+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:01.184494+00', 418, '{"updated-tables":0,"total-tables":8}'), +(17388, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:01.184588+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:02.845295+00', 1660, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17389, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:02.84539+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:02.911312+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17390, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:02.911641+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.102487+00', 190, NULL), +(17391, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.184472+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.398278+00', 213, NULL), +(17392, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.184497+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.326211+00', 141, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17393, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.326488+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.357669+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(17394, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.357752+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:19:03.398219+00', 40, '{"total-tables":8,"tables-classified":0}'), +(17395, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:01.356797+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.026691+00', 19669, NULL), +(17396, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:01.3617+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:01.385934+00', 24, '{"timezone-id":null}'), +(17397, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:01.393794+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:02.202334+00', 808, '{"updated-tables":0,"total-tables":4}'), +(17398, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:02.202655+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.001738+00', 18799, '{"total-fields":39,"updated-fields":0}'), +(17399, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.002617+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.018538+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17400, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.01861+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.026306+00', 7, NULL), +(17401, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.220943+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.371716+00', 150, NULL), +(17402, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.22096+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.330177+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17403, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.330287+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.348593+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(17404, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.348713+00', TIMESTAMP WITH TIME ZONE '2023-01-15 16:49:21.37164+00', 22, '{"total-tables":4,"tables-classified":0}'), +(17405, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 17:00:00.275+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:00:01.143+00', 868, NULL), +(17406, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 17:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:00:01.145+00', 1026, NULL), +(17407, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:00.648228+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:07.842849+00', 7194, NULL), +(17408, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:00.653638+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:01.802137+00', 1148, '{"timezone-id":"UTC"}'), +(17409, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:01.810489+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:02.318718+00', 508, '{"updated-tables":0,"total-tables":8}'), +(17410, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:02.319123+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:06.03735+00', 3718, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17411, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:06.037445+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:06.204067+00', 166, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17412, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:06.205051+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:07.842352+00', 1637, NULL), +(17413, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.019379+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.155925+00', 136, NULL), +(17414, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.019395+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.090701+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17415, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.090783+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.104171+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(17416, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.104234+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:19:08.155571+00', 51, '{"total-tables":8,"tables-classified":0}'), +(17417, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:00.402119+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.058863+00', 11656, NULL), +(17418, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:00.402153+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:00.404861+00', 2, '{"timezone-id":null}'), +(17419, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:00.405205+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:00.775686+00', 370, '{"updated-tables":0,"total-tables":4}'), +(17420, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:00.775756+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.042589+00', 11266, '{"total-fields":39,"updated-fields":0}'), +(17421, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.042681+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.053938+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17422, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.054001+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.058808+00', 4, NULL), +(17423, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.157881+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.216728+00', 58, NULL), +(17424, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.157899+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.198121+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17425, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.198184+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.202913+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(17426, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.202968+00', TIMESTAMP WITH TIME ZONE '2023-01-15 17:49:12.216682+00', 13, '{"total-tables":4,"tables-classified":0}'), +(17427, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 18:00:00.045+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:00:00.888+00', 843, NULL), +(17428, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 18:00:00.073+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:00:00.887+00', 814, NULL), +(17429, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:00.244566+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.069787+00', 6825, NULL), +(17430, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:00.249682+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:01.535847+00', 1286, '{"timezone-id":"UTC"}'), +(17431, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:01.538376+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:02.509326+00', 970, '{"updated-tables":0,"total-tables":8}'), +(17432, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:02.509688+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:06.755037+00', 4245, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17433, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:06.755391+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:06.900287+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17434, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:06.901152+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.069451+00', 168, NULL), +(17435, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.127696+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.211284+00', 83, NULL), +(17436, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.127711+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.1843+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17437, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.184375+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.194691+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(17438, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.19475+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:19:07.211236+00', 16, '{"total-tables":8,"tables-classified":0}'), +(17439, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:00.207485+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.602469+00', 10394, NULL), +(17440, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:00.207509+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:00.209446+00', 1, '{"timezone-id":null}'), +(17441, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:00.209683+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:00.506511+00', 296, '{"updated-tables":0,"total-tables":4}'), +(17442, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:00.506596+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.584476+00', 10077, '{"total-fields":39,"updated-fields":0}'), +(17443, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.584808+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.596352+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17444, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.596868+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.602403+00', 5, NULL), +(17445, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.834361+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.869316+00', 34, NULL), +(17446, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.834376+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.860144+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17447, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.86021+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.86368+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(17448, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.86374+00', TIMESTAMP WITH TIME ZONE '2023-01-15 18:49:10.869273+00', 5, '{"total-tables":4,"tables-classified":0}'), +(17449, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 19:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:00:01.166+00', 996, NULL), +(17450, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 19:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:00:01.404+00', 1234, NULL), +(17451, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:00.252927+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.069486+00', 6816, NULL), +(17452, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:00.255428+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:01.145577+00', 890, '{"timezone-id":"UTC"}'), +(17453, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:01.149026+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:01.64527+00', 496, '{"updated-tables":0,"total-tables":8}'), +(17454, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:01.645664+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:04.956347+00', 3310, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17455, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:04.956533+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:06.636335+00', 1679, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17456, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:06.636903+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.069125+00', 432, NULL), +(17457, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.127556+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.221283+00', 93, NULL), +(17458, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.127574+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.189023+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17459, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.189105+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.201178+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17460, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.201233+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:19:07.221237+00', 20, '{"total-tables":8,"tables-classified":0}'), +(17461, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:01.169345+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.328357+00', 17159, NULL), +(17462, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:01.172801+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:01.191223+00', 18, '{"timezone-id":null}'), +(17463, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:01.194741+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:01.963833+00', 769, '{"updated-tables":0,"total-tables":4}'), +(17464, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:01.964504+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.307561+00', 16343, '{"total-fields":39,"updated-fields":0}'), +(17465, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.307723+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.321196+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17466, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.321352+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.327889+00', 6, NULL), +(17467, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.556571+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.660257+00', 103, NULL), +(17468, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.556592+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.615771+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17469, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.615851+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.630985+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17470, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.631065+00', TIMESTAMP WITH TIME ZONE '2023-01-15 19:49:18.66008+00', 29, '{"total-tables":4,"tables-classified":0}'), +(17471, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 20:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:00:01.72+00', 1548, NULL), +(17472, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 20:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:00:02.13+00', 1964, NULL), +(17473, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:00.188398+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:05.837891+00', 5649, NULL), +(17474, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:00.194131+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:00.767516+00', 573, '{"timezone-id":"UTC"}'), +(17475, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:00.769275+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:01.163298+00', 394, '{"updated-tables":0,"total-tables":8}'), +(17476, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:01.163801+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:04.367287+00', 3203, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17477, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:04.367555+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:05.280678+00', 913, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17478, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:05.280964+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:05.837538+00', 556, NULL), +(17479, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:05.963095+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:06.047257+00', 84, NULL), +(17480, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:05.963111+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:06.014483+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17481, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:06.014536+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:06.026685+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17482, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:06.02674+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:19:06.04713+00', 20, '{"total-tables":8,"tables-classified":0}'), +(17483, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:00.911168+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:16.961245+00', 16050, NULL), +(17484, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:00.913959+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:00.935967+00', 22, '{"timezone-id":null}'), +(17485, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:00.941019+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:01.551458+00', 610, '{"updated-tables":0,"total-tables":4}'), +(17486, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:01.551949+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:16.925769+00', 15373, '{"total-fields":39,"updated-fields":0}'), +(17487, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:16.925878+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:16.94053+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17488, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:16.94063+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:16.960935+00', 20, NULL), +(17489, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.150123+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.274367+00', 124, NULL), +(17490, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.150141+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.218459+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17491, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.218564+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.24187+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(17492, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.241967+00', TIMESTAMP WITH TIME ZONE '2023-01-15 20:49:17.274261+00', 32, '{"total-tables":4,"tables-classified":0}'), +(17493, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:00.254+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:01.245+00', 991, NULL), +(17494, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:00.243+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:01.247+00', 1004, NULL), +(17495, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:01.649597+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:16.43709+00', 14787, NULL), +(17496, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:01.653331+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:05.167617+00', 3514, '{"deleted":0}'), +(17497, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:05.171365+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:00:16.436727+00', 11265, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(17498, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.072504+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.111934+00', 1039, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17499, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.072533+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.273054+00', 200, '{"timezone-id":"UTC"}'), +(17500, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.27364+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.508549+00', 234, '{"updated-tables":0,"total-tables":8}'), +(17501, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.508629+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.923149+00', 414, '{"total-fields":71,"updated-fields":0}'), +(17502, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.923206+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.971271+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17503, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:00.971323+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.111901+00', 140, NULL), +(17504, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.146749+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.277473+00', 130, NULL), +(17505, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.146766+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.212991+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17506, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.213075+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.228816+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17507, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.228889+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:19:01.27742+00', 48, '{"total-tables":8,"tables-classified":0}'), +(17508, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:00.955463+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.617723+00', 13662, NULL), +(17509, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:00.959745+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:00.977229+00', 17, '{"timezone-id":null}'), +(17510, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:00.981078+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:01.705904+00', 724, '{"updated-tables":0,"total-tables":4}'), +(17511, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:01.706005+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.596012+00', 12890, '{"total-fields":39,"updated-fields":0}'), +(17512, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.596102+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.610538+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17513, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.610641+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.617438+00', 6, NULL), +(17514, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.803046+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.916403+00', 113, NULL), +(17515, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.803064+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.857017+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17516, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.857126+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.86767+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(17517, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.867784+00', TIMESTAMP WITH TIME ZONE '2023-01-15 21:49:14.916331+00', 48, '{"total-tables":4,"tables-classified":0}'), +(17518, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 22:00:00.073+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:00:00.906+00', 833, NULL), +(17519, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 22:00:00.078+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:00:00.906+00', 828, NULL), +(17520, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:00.353806+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.165525+00', 8811, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17521, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:00.359062+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:01.349939+00', 990, '{"timezone-id":"UTC"}'), +(17522, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:01.353107+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:01.920268+00', 567, '{"updated-tables":0,"total-tables":8}'), +(17523, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:01.921057+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:06.899889+00', 4978, '{"total-fields":71,"updated-fields":0}'), +(17524, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:06.900654+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:07.129343+00', 228, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17525, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:07.130011+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.164841+00', 2034, NULL), +(17526, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.39159+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.586868+00', 195, NULL), +(17527, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.391613+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.518588+00', 126, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17528, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.518668+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.541804+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(17529, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.541867+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:19:09.586766+00', 44, '{"total-tables":8,"tables-classified":0}'), +(17530, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:00.403859+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.098744+00', 9694, NULL), +(17531, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:00.404897+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:00.408409+00', 3, '{"timezone-id":null}'), +(17532, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:00.409484+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:00.825966+00', 416, '{"updated-tables":0,"total-tables":4}'), +(17533, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:00.826041+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.090303+00', 9264, '{"total-fields":39,"updated-fields":0}'), +(17534, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.090401+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.09563+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17535, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.095708+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.098701+00', 2, NULL), +(17536, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.169068+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.203714+00', 34, NULL), +(17537, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.169088+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.190403+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17538, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.190466+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.19404+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(17539, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.194098+00', TIMESTAMP WITH TIME ZONE '2023-01-15 22:49:10.20367+00', 9, '{"total-tables":4,"tables-classified":0}'), +(17540, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 23:00:00.085+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:00:00.932+00', 847, NULL), +(17541, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-15 23:00:00.073+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:00:01.039+00', 966, NULL), +(17542, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:00.192209+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.861956+00', 4669, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17543, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:00.19435+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:00.63518+00', 440, '{"timezone-id":"UTC"}'), +(17544, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:00.637786+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:01.007186+00', 369, '{"updated-tables":0,"total-tables":8}'), +(17545, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:01.007468+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.223451+00', 3215, '{"total-fields":71,"updated-fields":0}'), +(17546, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.223701+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.35405+00', 130, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17547, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.354146+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.86162+00', 507, NULL), +(17548, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.930721+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:05.03453+00', 103, NULL), +(17549, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.93074+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.996984+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17550, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:04.997066+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:05.015055+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(17551, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:05.015117+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:19:05.034485+00', 19, '{"total-tables":8,"tables-classified":0}'), +(17552, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:00.869827+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:12.992642+00', 12122, NULL), +(17553, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:00.885187+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:00.900917+00', 15, '{"timezone-id":null}'), +(17554, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:00.914834+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:01.43971+00', 524, '{"updated-tables":0,"total-tables":4}'), +(17555, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:01.440106+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:12.872341+00', 11432, '{"total-fields":39,"updated-fields":0}'), +(17556, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:12.87246+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:12.987615+00', 115, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17557, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:12.987697+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:12.992512+00', 4, NULL), +(17558, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.094421+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.154777+00', 60, NULL), +(17559, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.094438+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.129681+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17560, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.129788+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.136614+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(17561, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.136773+00', TIMESTAMP WITH TIME ZONE '2023-01-15 23:49:13.154579+00', 17, '{"total-tables":4,"tables-classified":0}'), +(17562, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 00:00:00.176+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:00:04.882+00', 4706, NULL), +(17563, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 00:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:00:06.053+00', 5892, NULL), +(17564, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:00.260686+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.0487+00', 7788, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17565, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:00.263017+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:01.123124+00', 860, '{"timezone-id":"UTC"}'), +(17566, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:01.126846+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:01.698289+00', 571, '{"updated-tables":0,"total-tables":8}'), +(17567, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:01.698613+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:06.343626+00', 4645, '{"total-fields":71,"updated-fields":0}'), +(17568, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:06.343725+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:06.517906+00', 174, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17569, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:06.518231+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.048442+00', 1530, NULL), +(17570, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.210263+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.307542+00', 97, NULL), +(17571, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.210279+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.270137+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17572, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.270285+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.284976+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(17573, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.285117+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:19:08.307457+00', 22, '{"total-tables":8,"tables-classified":0}'), +(17574, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:00.631488+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.636399+00', 10004, NULL), +(17575, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:00.632832+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:00.637315+00', 4, '{"timezone-id":null}'), +(17576, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:00.639439+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:01.118682+00', 479, '{"updated-tables":0,"total-tables":4}'), +(17577, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:01.11876+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.62068+00', 9501, '{"total-fields":39,"updated-fields":0}'), +(17578, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.620771+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.631811+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17579, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.631877+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.636342+00', 4, NULL), +(17580, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.821408+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.863758+00', 42, NULL), +(17581, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.821423+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.849128+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17582, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.849301+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.855267+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(17583, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.855363+00', TIMESTAMP WITH TIME ZONE '2023-01-16 00:49:10.863658+00', 8, '{"total-tables":4,"tables-classified":0}'), +(17584, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 01:00:00.162+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:00:01.258+00', 1096, NULL), +(17585, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 01:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:00:01.509+00', 1355, NULL), +(17586, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:00.224747+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.020115+00', 6795, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17587, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:00.229151+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:01.090749+00', 861, '{"timezone-id":"UTC"}'), +(17588, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:01.092256+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:01.58986+00', 497, '{"updated-tables":0,"total-tables":8}'), +(17589, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:01.589955+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:05.206852+00', 3616, '{"total-fields":71,"updated-fields":0}'), +(17590, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:05.20716+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:05.366222+00', 159, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17591, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:05.36678+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.019562+00', 1652, NULL), +(17592, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.240459+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.633093+00', 392, NULL), +(17593, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.241067+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.496207+00', 255, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17594, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.496307+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.561096+00', 64, '{"fields-classified":0,"fields-failed":0}'), +(17595, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.561643+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:19:07.633015+00', 71, '{"total-tables":8,"tables-classified":0}'), +(17596, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:00.095799+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.759574+00', 9663, NULL), +(17597, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:00.095983+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:00.101774+00', 5, '{"timezone-id":null}'), +(17598, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:00.102355+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:00.268471+00', 166, '{"updated-tables":0,"total-tables":4}'), +(17599, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:00.268559+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.742037+00', 9473, '{"total-fields":39,"updated-fields":0}'), +(17600, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.74221+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.753569+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17601, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.753638+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.759213+00', 5, NULL), +(17602, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.827813+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.920729+00', 92, NULL), +(17603, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.827829+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.879524+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17604, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.879601+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.896672+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(17605, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.896877+00', TIMESTAMP WITH TIME ZONE '2023-01-16 01:49:09.920439+00', 23, '{"total-tables":4,"tables-classified":0}'), +(17606, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:00.406+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:01.824+00', 1418, NULL), +(17607, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:00.372+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:02.033+00', 1661, NULL), +(17608, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:03.017519+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:19.403339+00', 16385, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17609, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:03.021903+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:04.971379+00', 1949, '{"deleted":0}'), +(17610, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:04.9732+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:00:19.402564+00', 14429, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(17611, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:00.191445+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.159825+00', 2968, NULL), +(17612, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:00.192828+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:01.025014+00', 832, '{"timezone-id":"UTC"}'), +(17613, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:01.028219+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:01.405895+00', 377, '{"updated-tables":0,"total-tables":8}'), +(17614, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:01.406023+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:02.812552+00', 1406, '{"total-fields":71,"updated-fields":0}'), +(17615, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:02.812674+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:02.883867+00', 71, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17616, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:02.883971+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.159783+00', 275, NULL), +(17617, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.280806+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.466843+00', 186, NULL), +(17618, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.280833+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.377604+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17619, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.377737+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.405921+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(17620, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.406627+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:19:03.466757+00', 60, '{"total-tables":8,"tables-classified":0}'), +(17621, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:01.153124+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.740808+00', 15587, NULL), +(17622, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:01.160577+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:01.191088+00', 30, '{"timezone-id":null}'), +(17623, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:01.195391+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:02.060819+00', 865, '{"updated-tables":0,"total-tables":4}'), +(17624, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:02.061516+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.72078+00', 14659, '{"total-fields":39,"updated-fields":0}'), +(17625, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.720889+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.733011+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17626, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.733074+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.740203+00', 7, NULL), +(17627, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.888993+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.987344+00', 98, NULL), +(17628, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.88901+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.955427+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17629, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.95553+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.965211+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(17630, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.965289+00', TIMESTAMP WITH TIME ZONE '2023-01-16 02:49:16.987288+00', 21, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17631, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 03:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:00:00.62+00', 471, NULL), +(17632, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 03:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:00:00.739+00', 601, NULL), +(17633, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:00.839578+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.725638+00', 6886, NULL), +(17634, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:00.854439+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:02.335432+00', 1480, '{"timezone-id":"UTC"}'), +(17635, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:02.337754+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:03.137129+00', 799, '{"updated-tables":0,"total-tables":8}'), +(17636, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:03.137833+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:06.497942+00', 3360, '{"total-fields":71,"updated-fields":0}'), +(17637, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:06.498613+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:06.690866+00', 192, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17638, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:06.690997+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.725207+00', 1034, NULL), +(17639, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.806504+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:08.052818+00', 246, NULL), +(17640, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.80652+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.869426+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17641, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.869561+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.902376+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(17642, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:07.902463+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:19:08.052718+00', 150, '{"total-tables":8,"tables-classified":0}'), +(17643, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:00.576019+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.040725+00', 13464, NULL), +(17644, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:00.577049+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:00.586023+00', 8, '{"timezone-id":null}'), +(17645, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:00.589024+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:01.12173+00', 532, '{"updated-tables":0,"total-tables":4}'), +(17646, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:01.121992+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.018222+00', 12896, '{"total-fields":39,"updated-fields":0}'), +(17647, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.018325+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.033552+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17648, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.033615+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.040628+00', 7, NULL), +(17649, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.159991+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.233784+00', 73, NULL), +(17650, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.160007+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.204086+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17651, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.204158+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.214138+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(17652, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.214198+00', TIMESTAMP WITH TIME ZONE '2023-01-16 03:49:14.233742+00', 19, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17653, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 04:00:00.476+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:00:03.224+00', 2748, NULL), +(17654, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 04:00:00.463+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:00:03.894+00', 3431, NULL), +(17655, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:00.221956+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:07.984946+00', 7762, NULL), +(17656, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:00.227098+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:01.36751+00', 1140, '{"timezone-id":"UTC"}'), +(17657, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:01.369351+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:01.883031+00', 513, '{"updated-tables":0,"total-tables":8}'), +(17658, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:01.883728+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:07.046692+00', 5162, '{"total-fields":71,"updated-fields":0}'), +(17659, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:07.047421+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:07.268247+00', 220, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17660, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:07.268894+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:07.984553+00', 715, NULL), +(17661, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.162425+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.30454+00', 142, NULL), +(17662, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.162452+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.243226+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17663, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.243432+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.258826+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17664, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.258915+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:19:08.304338+00', 45, '{"total-tables":8,"tables-classified":0}'), +(17665, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:01.978134+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.700343+00', 11722, NULL), +(17666, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:01.981984+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:02.039165+00', 57, '{"timezone-id":null}'), +(17667, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:02.041323+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:02.796011+00', 754, '{"updated-tables":0,"total-tables":4}'), +(17668, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:02.796109+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.687205+00', 10891, '{"total-fields":39,"updated-fields":0}'), +(17669, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.687348+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.694661+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17670, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.694733+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.700038+00', 5, NULL), +(17671, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.795175+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.858028+00', 62, NULL), +(17672, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.795192+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.832082+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17673, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.832497+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.84255+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(17674, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.842682+00', TIMESTAMP WITH TIME ZONE '2023-01-16 04:49:13.857725+00', 15, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17675, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 05:00:00.241+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:00:02.938+00', 2697, NULL), +(17676, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 05:00:00.237+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:00:03.544+00', 3307, NULL), +(17677, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:00.224549+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.003218+00', 5778, NULL), +(17678, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:00.22629+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:00.729397+00', 503, '{"timezone-id":"UTC"}'), +(17679, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:00.73366+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:01.269619+00', 535, '{"updated-tables":0,"total-tables":8}'), +(17680, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:01.270085+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:05.358013+00', 4087, '{"total-fields":71,"updated-fields":0}'), +(17681, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:05.358127+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:05.478846+00', 120, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17682, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:05.478967+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.002612+00', 523, NULL), +(17683, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.165951+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.43711+00', 271, NULL), +(17684, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.165969+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.256238+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17685, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.25635+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.271295+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(17686, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.271384+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:19:06.437042+00', 165, '{"total-tables":8,"tables-classified":0}'), +(17687, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:00.756098+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.298593+00', 12542, NULL), +(17688, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:00.76232+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:00.769927+00', 7, '{"timezone-id":null}'), +(17689, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:00.771674+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:01.378991+00', 607, '{"updated-tables":0,"total-tables":4}'), +(17690, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:01.379065+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.290698+00', 11911, '{"total-fields":39,"updated-fields":0}'), +(17691, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.29085+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.294472+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17692, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.294577+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.298507+00', 3, NULL), +(17693, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.396753+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.436855+00', 40, NULL), +(17694, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.396769+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.421011+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17695, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.421129+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.425037+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(17696, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.425134+00', TIMESTAMP WITH TIME ZONE '2023-01-16 05:49:13.436772+00', 11, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17697, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 06:00:00.222+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:00:01.713+00', 1491, NULL), +(17698, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 06:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:00:01.918+00', 1710, NULL), +(17699, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:00.300026+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.386941+00', 7086, NULL), +(17700, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:00.302895+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:01.229899+00', 927, '{"timezone-id":"UTC"}'), +(17701, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:01.233099+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:01.795636+00', 562, '{"updated-tables":0,"total-tables":8}'), +(17702, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:01.797951+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.068233+00', 5270, '{"total-fields":71,"updated-fields":0}'), +(17703, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.068308+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.230429+00', 162, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17704, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.230984+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.386502+00', 155, NULL), +(17705, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.453265+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.576965+00', 123, NULL), +(17706, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.453284+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.527999+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17707, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.528195+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.546977+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(17708, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.547079+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:19:07.576891+00', 29, '{"total-tables":8,"tables-classified":0}'), +(17709, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:00.942667+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.201233+00', 14258, NULL), +(17710, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:00.944858+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:00.988459+00', 43, '{"timezone-id":null}'), +(17711, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:00.994215+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:02.275906+00', 1281, '{"updated-tables":0,"total-tables":4}'), +(17712, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:02.276012+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.193779+00', 12917, '{"total-fields":39,"updated-fields":0}'), +(17713, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.194153+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.197966+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17714, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.198108+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.201188+00', 3, NULL), +(17715, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.37151+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.48512+00', 113, NULL), +(17716, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.371527+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.4264+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17717, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.426644+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.459486+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(17718, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.459598+00', TIMESTAMP WITH TIME ZONE '2023-01-16 06:49:15.484984+00', 25, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17719, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 07:00:00.568+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:00:04.519+00', 3951, NULL), +(17720, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 07:00:00.568+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:00:05.065+00', 4497, NULL), +(17721, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:00.201626+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.33211+00', 6130, NULL), +(17722, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:00.204279+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:00.967803+00', 763, '{"timezone-id":"UTC"}'), +(17723, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:00.992722+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:01.764042+00', 771, '{"updated-tables":0,"total-tables":8}'), +(17724, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:01.764618+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:05.613755+00', 3849, '{"total-fields":71,"updated-fields":0}'), +(17725, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:05.614112+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:05.760938+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17726, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:05.761023+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.331619+00', 570, NULL), +(17727, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.480887+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.565533+00', 84, NULL), +(17728, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.480908+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.534546+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17729, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.534615+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.547924+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(17730, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.54799+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:19:06.565366+00', 17, '{"total-tables":8,"tables-classified":0}'), +(17731, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:01.125289+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.322762+00', 16197, NULL), +(17732, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:01.131507+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:01.17447+00', 42, '{"timezone-id":null}'), +(17733, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:01.192206+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:02.267204+00', 1074, '{"updated-tables":0,"total-tables":4}'), +(17734, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:02.267734+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.304512+00', 15036, '{"total-fields":39,"updated-fields":0}'), +(17735, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.30464+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.315345+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17736, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.315479+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.322395+00', 6, NULL), +(17737, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.495203+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.600892+00', 105, NULL), +(17738, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.495225+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.565807+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17739, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.565921+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.580366+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(17740, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.5805+00', TIMESTAMP WITH TIME ZONE '2023-01-16 07:49:17.600783+00', 20, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17741, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 08:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:00:01.753+00', 1557, NULL), +(17742, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 08:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:00:02.081+00', 1912, NULL), +(17743, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:00.413218+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:09.86998+00', 9456, NULL), +(17744, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:00.418299+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:02.339087+00', 1920, '{"timezone-id":"UTC"}'), +(17745, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:02.341968+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:03.167139+00', 825, '{"updated-tables":0,"total-tables":8}'), +(17746, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:03.170549+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:08.477222+00', 5306, '{"total-fields":71,"updated-fields":0}'), +(17747, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:08.478803+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:08.834656+00', 355, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17748, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:08.835131+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:09.869606+00', 1034, NULL), +(17749, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.218266+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.47238+00', 254, NULL), +(17750, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.21829+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.395876+00', 177, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17751, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.396011+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.424469+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(17752, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.424553+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:19:10.471819+00', 47, '{"total-tables":8,"tables-classified":0}'), +(17753, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:00.940375+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.10257+00', 24162, NULL), +(17754, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:00.945341+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:00.984478+00', 39, '{"timezone-id":null}'), +(17755, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:00.991005+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:01.986148+00', 995, '{"updated-tables":0,"total-tables":4}'), +(17756, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:01.986257+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.071964+00', 23085, '{"total-fields":39,"updated-fields":0}'), +(17757, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.072073+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.094122+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17758, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.09419+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.102284+00', 8, NULL), +(17759, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.299041+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.437504+00', 138, NULL), +(17760, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.29906+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.376487+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17761, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.376609+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.402887+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(17762, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.402963+00', TIMESTAMP WITH TIME ZONE '2023-01-16 08:49:25.437447+00', 34, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17763, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 09:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:00:01.994+00', 1780, NULL), +(17764, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 09:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:00:02.517+00', 2304, NULL), +(17765, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:00.356826+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:07.982808+00', 7625, NULL), +(17766, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:00.359953+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:02.062431+00', 1702, '{"timezone-id":"UTC"}'), +(17767, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:02.066317+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:02.774283+00', 707, '{"updated-tables":0,"total-tables":8}'), +(17768, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:02.774531+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:07.324759+00', 4550, '{"total-fields":71,"updated-fields":0}'), +(17769, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:07.32499+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:07.46668+00', 141, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17770, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:07.467072+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:07.98254+00', 515, NULL), +(17771, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.17032+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.508467+00', 338, NULL), +(17772, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.170471+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.396486+00', 226, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17773, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.396589+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.43626+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(17774, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.436568+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:19:08.50792+00', 71, '{"total-tables":8,"tables-classified":0}'), +(17775, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:00.747679+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.399821+00', 17652, NULL), +(17776, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:00.752744+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:00.801051+00', 48, '{"timezone-id":null}'), +(17777, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:00.807713+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:01.770949+00', 963, '{"updated-tables":0,"total-tables":4}'), +(17778, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:01.77137+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.303996+00', 16532, '{"total-fields":39,"updated-fields":0}'), +(17779, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.304499+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.386366+00', 81, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17780, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.386461+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.39902+00', 12, NULL), +(17781, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.818894+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.959171+00', 140, NULL), +(17782, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.818942+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.914548+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17783, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.914928+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.930331+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17784, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.930768+00', TIMESTAMP WITH TIME ZONE '2023-01-16 09:49:18.959116+00', 28, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17785, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 10:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:00:02.903+00', 2703, NULL), +(17786, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 10:00:00.19+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:00:03.349+00', 3159, NULL), +(17787, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:00.362731+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.730355+00', 8367, NULL), +(17788, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:00.367269+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:01.489661+00', 1122, '{"timezone-id":"UTC"}'), +(17789, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:01.493574+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:02.168222+00', 674, '{"updated-tables":0,"total-tables":8}'), +(17790, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:02.169333+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:06.682108+00', 4512, '{"total-fields":71,"updated-fields":0}'), +(17791, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:06.682576+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.021143+00', 1338, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17792, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.021257+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.730017+00', 708, NULL), +(17793, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.834235+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:09.107267+00', 273, NULL), +(17794, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.834251+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.942333+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17795, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.942418+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.959674+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(17796, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:08.959742+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:19:09.107211+00', 147, '{"total-tables":8,"tables-classified":0}'), +(17797, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:01.350055+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.373064+00', 19023, NULL), +(17798, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:01.352947+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:01.386389+00', 33, '{"timezone-id":null}'), +(17799, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:01.394422+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:02.262608+00', 868, '{"updated-tables":0,"total-tables":4}'), +(17800, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:02.262704+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.322894+00', 18060, '{"total-fields":39,"updated-fields":0}'), +(17801, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.323077+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.356903+00', 33, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17802, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.357013+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.372694+00', 15, NULL), +(17803, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.614966+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.853744+00', 238, NULL), +(17804, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.614986+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.799381+00', 184, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17805, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.799487+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.823893+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(17806, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.824003+00', TIMESTAMP WITH TIME ZONE '2023-01-16 10:49:20.85365+00', 29, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17807, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 11:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:00:00.877+00', 748, NULL), +(17808, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 11:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:00:00.972+00', 856, NULL), +(17809, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:00.262477+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.629598+00', 6367, NULL), +(17810, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:00.267321+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:01.167495+00', 900, '{"timezone-id":"UTC"}'), +(17811, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:01.171133+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:01.674233+00', 503, '{"updated-tables":0,"total-tables":8}'), +(17812, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:01.674411+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:05.919771+00', 4245, '{"total-fields":71,"updated-fields":0}'), +(17813, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:05.920074+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.05787+00', 137, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17814, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.058172+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.629239+00', 571, NULL), +(17815, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.733834+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.855583+00', 121, NULL), +(17816, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.733851+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.815818+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17817, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.81595+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.830597+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(17818, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.830698+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:19:06.855492+00', 24, '{"total-tables":8,"tables-classified":0}'), +(17819, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:01.209575+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.499865+00', 15290, NULL), +(17820, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:01.213427+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:01.234059+00', 20, '{"timezone-id":null}'), +(17821, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:01.238924+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:02.199564+00', 960, '{"updated-tables":0,"total-tables":4}'), +(17822, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:02.199688+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.479431+00', 14279, '{"total-fields":39,"updated-fields":0}'), +(17823, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.479534+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.491467+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17824, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.491527+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.499537+00', 8, NULL), +(17825, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.681615+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.808632+00', 127, NULL), +(17826, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.681636+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.769109+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17827, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.769213+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.781956+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(17828, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.782073+00', TIMESTAMP WITH TIME ZONE '2023-01-16 11:49:16.808578+00', 26, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17829, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 12:00:01.387+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:00:05.692+00', 4305, NULL), +(17830, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 12:00:01.212+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:00:05.712+00', 4500, NULL), +(17831, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:00.311147+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.720822+00', 9409, NULL), +(17832, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:00.314443+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:01.422846+00', 1108, '{"timezone-id":"UTC"}'), +(17833, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:01.426695+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:02.665671+00', 1238, '{"updated-tables":0,"total-tables":8}'), +(17834, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:02.665778+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:08.918197+00', 6252, '{"total-fields":71,"updated-fields":0}'), +(17835, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:08.918656+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.107856+00', 189, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17836, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.107954+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.720509+00', 612, NULL), +(17837, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.804273+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.958801+00', 154, NULL), +(17838, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.80429+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.870492+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17839, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.87072+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.920701+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(17840, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.922768+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:19:09.958735+00', 35, '{"total-tables":8,"tables-classified":0}'), +(17841, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:00.83741+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.113663+00', 17276, NULL), +(17842, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:00.842769+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:00.87292+00', 30, '{"timezone-id":null}'), +(17843, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:00.879566+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:03.261626+00', 2382, '{"updated-tables":0,"total-tables":4}'), +(17844, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:03.261732+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.060218+00', 14798, '{"total-fields":39,"updated-fields":0}'), +(17845, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.060324+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.086692+00', 26, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17846, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.086786+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.112188+00', 25, NULL), +(17847, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.673047+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.817037+00', 143, NULL), +(17848, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.673066+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.757436+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17849, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.757582+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.775217+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(17850, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.775313+00', TIMESTAMP WITH TIME ZONE '2023-01-16 12:49:18.816977+00', 41, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17851, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 13:00:01.141+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:00:06.013+00', 4872, NULL), +(17852, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 13:00:01.141+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:00:06.475+00', 5334, NULL), +(17853, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:00.366977+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.77544+00', 10408, NULL), +(17854, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:00.369341+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:01.472198+00', 1102, '{"timezone-id":"UTC"}'), +(17855, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:01.475126+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:02.220643+00', 745, '{"updated-tables":0,"total-tables":8}'), +(17856, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:02.221294+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:09.220392+00', 6999, '{"total-fields":71,"updated-fields":0}'), +(17857, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:09.220766+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:09.662846+00', 442, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17858, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:09.666207+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.775152+00', 1108, NULL), +(17859, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.840991+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.969804+00', 128, NULL), +(17860, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.841009+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.921953+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17861, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.922046+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.939241+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(17862, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.939299+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:19:10.969755+00', 30, '{"total-tables":8,"tables-classified":0}'), +(17863, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:03.138591+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.666286+00', 18527, NULL), +(17864, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:03.143609+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:03.179261+00', 35, '{"timezone-id":null}'), +(17865, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:03.185634+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:04.391564+00', 1205, '{"updated-tables":0,"total-tables":4}'), +(17866, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:04.393377+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.64798+00', 17254, '{"total-fields":39,"updated-fields":0}'), +(17867, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.648091+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.660575+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17868, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.66066+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.666065+00', 5, NULL), +(17869, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.780125+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.934773+00', 154, NULL), +(17870, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.780144+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.873033+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17871, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.87314+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.890323+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(17872, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.890398+00', TIMESTAMP WITH TIME ZONE '2023-01-16 13:49:21.934718+00', 44, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17873, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 14:00:00.345+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:00:02.739+00', 2394, NULL), +(17874, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 14:00:00.308+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:00:03.919+00', 3611, NULL), +(17875, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:00.485646+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.613506+00', 13127, NULL), +(17876, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:00.489578+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:03.574581+00', 3085, '{"timezone-id":"UTC"}'), +(17877, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:03.580168+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:04.418341+00', 838, '{"updated-tables":0,"total-tables":8}'), +(17878, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:04.418448+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:12.734995+00', 8316, '{"total-fields":71,"updated-fields":0}'), +(17879, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:12.73536+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:12.927304+00', 191, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17880, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:12.927565+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.613148+00', 685, NULL), +(17881, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.691379+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.824867+00', 133, NULL), +(17882, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.691396+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.774795+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17883, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.774876+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.793636+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(17884, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.793705+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:19:13.824813+00', 31, '{"total-tables":8,"tables-classified":0}'), +(17885, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:00.594571+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:22.919416+00', 22324, NULL), +(17886, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:00.597981+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:00.639319+00', 41, '{"timezone-id":null}'), +(17887, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:00.646551+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:02.011095+00', 1364, '{"updated-tables":0,"total-tables":4}'), +(17888, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:02.012092+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:22.886168+00', 20874, '{"total-fields":39,"updated-fields":0}'), +(17889, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:22.886301+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:22.906612+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17890, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:22.906693+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:22.91904+00', 12, NULL), +(17891, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.053449+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.176153+00', 122, NULL), +(17892, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.053473+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.120052+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17893, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.120146+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.135056+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(17894, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.13513+00', TIMESTAMP WITH TIME ZONE '2023-01-16 14:49:23.176091+00', 40, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17895, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 15:00:00.232+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:00:03.993+00', 3761, NULL), +(17896, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 15:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:00:04.796+00', 4575, NULL), +(17897, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:00.514259+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:10.844232+00', 10329, NULL), +(17898, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:00.517531+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:02.146585+00', 1629, '{"timezone-id":"UTC"}'), +(17899, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:02.148544+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:03.050523+00', 901, '{"updated-tables":0,"total-tables":8}'), +(17900, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:03.051206+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:09.534665+00', 6483, '{"total-fields":71,"updated-fields":0}'), +(17901, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:09.535018+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:09.836069+00', 301, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17902, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:09.841724+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:10.843929+00', 1002, NULL), +(17903, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:10.97568+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:11.119077+00', 143, NULL), +(17904, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:10.975701+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:11.061874+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17905, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:11.062003+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:11.086426+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(17906, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:11.086495+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:19:11.118997+00', 32, '{"total-tables":8,"tables-classified":0}'), +(17907, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:00.626236+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:15.930782+00', 15304, NULL), +(17908, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:00.631991+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:00.655065+00', 23, '{"timezone-id":null}'), +(17909, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:00.65951+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:01.266336+00', 606, '{"updated-tables":0,"total-tables":4}'), +(17910, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:01.266457+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:15.895614+00', 14629, '{"total-fields":39,"updated-fields":0}'), +(17911, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:15.895755+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:15.922581+00', 26, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17912, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:15.922652+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:15.930484+00', 7, NULL), +(17913, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.171757+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.310616+00', 138, NULL), +(17914, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.171773+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.242153+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17915, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.242239+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.256209+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(17916, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.256515+00', TIMESTAMP WITH TIME ZONE '2023-01-16 15:49:16.310544+00', 54, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17917, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 16:00:00.687+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:00:09.192+00', 8505, NULL), +(17918, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 16:00:00.387+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:00:09.602+00', 9215, NULL), +(17919, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:01.144939+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.766128+00', 9621, NULL), +(17920, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:01.150147+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:03.219153+00', 2069, '{"timezone-id":"UTC"}'), +(17921, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:03.222028+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:03.931424+00', 709, '{"updated-tables":0,"total-tables":8}'), +(17922, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:03.932087+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.35019+00', 6418, '{"total-fields":71,"updated-fields":0}'), +(17923, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.35026+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.425332+00', 75, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17924, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.425969+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.765774+00', 339, NULL), +(17925, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.926492+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:11.170814+00', 244, NULL), +(17926, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:10.926512+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:11.093786+00', 167, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17927, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:11.093881+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:11.115971+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(17928, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:11.116484+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:19:11.170758+00', 54, '{"total-tables":8,"tables-classified":0}'), +(17929, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:00.427229+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.207344+00', 14780, NULL), +(17930, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:00.42726+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:00.429533+00', 2, '{"timezone-id":null}'), +(17931, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:00.429846+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:00.840188+00', 410, '{"updated-tables":0,"total-tables":4}'), +(17932, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:00.84028+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.198868+00', 14358, '{"total-fields":39,"updated-fields":0}'), +(17933, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.19897+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.203974+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17934, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.204032+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.207287+00', 3, NULL), +(17935, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.503258+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.752219+00', 248, NULL), +(17936, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.503277+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.68474+00', 181, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17937, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.684819+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.711964+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(17938, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.712031+00', TIMESTAMP WITH TIME ZONE '2023-01-16 16:49:15.752149+00', 40, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17939, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 17:00:00.226+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:00:01.698+00', 1472, NULL), +(17940, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 17:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:00:02.128+00', 1961, NULL), +(17941, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:00.330581+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.603227+00', 9272, NULL), +(17942, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:00.341026+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:01.53098+00', 1189, '{"timezone-id":"UTC"}'), +(17943, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:01.534065+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:04.485557+00', 2951, '{"updated-tables":0,"total-tables":8}'), +(17944, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:04.486466+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:08.901055+00', 4414, '{"total-fields":71,"updated-fields":0}'), +(17945, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:08.90164+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.110491+00', 208, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17946, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.11059+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.602638+00', 492, NULL), +(17947, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.688005+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.885562+00', 197, NULL), +(17948, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.688025+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.772908+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17949, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.773025+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.803313+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(17950, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.803379+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:19:09.88528+00', 81, '{"total-tables":8,"tables-classified":0}'), +(17951, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:00.268201+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.520826+00', 14252, NULL), +(17952, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:00.268224+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:00.271109+00', 2, '{"timezone-id":null}'), +(17953, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:00.2712+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:01.14999+00', 878, '{"updated-tables":0,"total-tables":4}'), +(17954, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:01.150055+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.466733+00', 13316, '{"total-fields":39,"updated-fields":0}'), +(17955, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.466849+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.508252+00', 41, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17956, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.508328+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.518012+00', 9, NULL), +(17957, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.68015+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.785521+00', 105, NULL), +(17958, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.68017+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.746792+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17959, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.74689+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.754628+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(17960, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.754807+00', TIMESTAMP WITH TIME ZONE '2023-01-16 17:49:14.785456+00', 30, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17961, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 18:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:00:00.559+00', 403, NULL), +(17962, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 18:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:00:00.733+00', 594, NULL), +(17963, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:00.635413+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.669892+00', 9034, NULL), +(17964, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:00.641468+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:03.325387+00', 2683, '{"timezone-id":"UTC"}'), +(17965, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:03.328487+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:04.187732+00', 859, '{"updated-tables":0,"total-tables":8}'), +(17966, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:04.188118+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.345283+00', 5157, '{"total-fields":71,"updated-fields":0}'), +(17967, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.345627+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.456824+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17968, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.456885+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.667836+00', 210, NULL), +(17969, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.754938+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:10.020505+00', 265, NULL), +(17970, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.754954+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.929056+00', 174, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17971, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.929151+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.974255+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(17972, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:09.974346+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:19:10.020391+00', 46, '{"total-tables":8,"tables-classified":0}'), +(17973, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:01.785811+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:24.781041+00', 22995, NULL), +(17974, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:01.802226+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:01.919726+00', 117, '{"timezone-id":null}'), +(17975, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:01.926574+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:03.289525+00', 1362, '{"updated-tables":0,"total-tables":4}'), +(17976, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:03.289597+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:24.760289+00', 21470, '{"total-fields":39,"updated-fields":0}'), +(17977, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:24.760388+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:24.775475+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(17978, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:24.775547+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:24.78067+00', 5, NULL), +(17979, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.005388+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.390512+00', 385, NULL), +(17980, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.005407+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.208728+00', 203, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17981, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.208811+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.219752+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(17982, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.219818+00', TIMESTAMP WITH TIME ZONE '2023-01-16 18:49:25.390446+00', 170, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(17983, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 19:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:00:01.073+00', 914, NULL), +(17984, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 19:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:00:01.389+00', 1230, NULL), +(17985, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:00.377798+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.111163+00', 6733, NULL), +(17986, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:00.38079+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:01.205851+00', 825, '{"timezone-id":"UTC"}'), +(17987, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:01.208123+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:02.420724+00', 1212, '{"updated-tables":0,"total-tables":8}'), +(17988, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:02.4292+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:06.494032+00', 4064, '{"total-fields":71,"updated-fields":0}'), +(17989, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:06.494106+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:06.66407+00', 169, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(17990, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:06.664155+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.110702+00', 446, NULL), +(17991, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.227207+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.328127+00', 100, NULL), +(17992, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.227224+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.292164+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(17993, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.292303+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.307744+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(17994, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.307809+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:19:07.328079+00', 20, '{"total-tables":8,"tables-classified":0}'), +(17995, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:00.431157+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.071976+00', 12640, NULL), +(17996, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:00.431191+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:00.433745+00', 2, '{"timezone-id":null}'), +(17997, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:00.433833+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:00.954874+00', 521, '{"updated-tables":0,"total-tables":4}'), +(17998, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:00.954925+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.051699+00', 12096, '{"total-fields":39,"updated-fields":0}'), +(17999, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.051827+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.0629+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18000, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.063024+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.071916+00', 8, NULL), +(18001, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.196584+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.25163+00', 55, NULL), +(18002, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.196601+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.23062+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18003, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.230683+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.238261+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(18004, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.238322+00', TIMESTAMP WITH TIME ZONE '2023-01-16 19:49:13.251541+00', 13, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18005, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 20:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:00:00.757+00', 565, NULL), +(18006, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 20:00:00.183+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:00:00.887+00', 704, NULL), +(18007, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:00.323354+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:07.97594+00', 7652, NULL), +(18008, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:00.326356+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:01.492587+00', 1166, '{"timezone-id":"UTC"}'), +(18009, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:01.495621+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:02.178309+00', 682, '{"updated-tables":0,"total-tables":8}'), +(18010, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:02.178764+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:07.26732+00', 5088, '{"total-fields":71,"updated-fields":0}'), +(18011, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:07.267708+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:07.429383+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18012, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:07.429733+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:07.975564+00', 545, NULL), +(18013, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.079816+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.222008+00', 142, NULL), +(18014, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.07989+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.147373+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18015, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.147446+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.183919+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(18016, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.184281+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:19:08.221943+00', 37, '{"total-tables":8,"tables-classified":0}'), +(18017, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:01.086573+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.339114+00', 16252, NULL), +(18018, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:01.090237+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:01.110427+00', 20, '{"timezone-id":null}'), +(18019, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:01.117637+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:02.164572+00', 1046, '{"updated-tables":0,"total-tables":4}'), +(18020, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:02.164678+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.289038+00', 15124, '{"total-fields":39,"updated-fields":0}'), +(18021, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.289728+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.323202+00', 33, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18022, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.323359+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.338519+00', 15, NULL), +(18023, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.627781+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.83498+00', 207, NULL), +(18024, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.6278+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.788339+00', 160, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18025, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.788519+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.80015+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(18026, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.800268+00', TIMESTAMP WITH TIME ZONE '2023-01-16 20:49:17.834905+00', 34, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18027, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:01.616+00', 1403, NULL), +(18028, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:00.232+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:01.615+00', 1383, NULL), +(18029, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:02.839958+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:16.646463+00', 13806, NULL), +(18030, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:02.850536+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:05.084242+00', 2233, '{"deleted":0}'), +(18031, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:05.087469+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:00:16.64592+00', 11558, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(18032, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:00.565267+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.332732+00', 2767, NULL), +(18033, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:00.565324+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:01.395596+00', 830, '{"timezone-id":"UTC"}'), +(18034, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:01.395742+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:02.325055+00', 929, '{"updated-tables":0,"total-tables":8}'), +(18035, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:02.325141+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.107681+00', 782, '{"total-fields":71,"updated-fields":0}'), +(18036, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.107734+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.181861+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18037, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.181954+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.3327+00', 150, NULL), +(18038, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.593479+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:04.222003+00', 628, NULL), +(18039, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:03.593493+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:04.129077+00', 535, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18040, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:04.129669+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:04.173368+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(18041, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:04.173588+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:19:04.221931+00', 48, '{"total-tables":8,"tables-classified":0}'), +(18042, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:00.658433+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.769192+00', 14110, NULL), +(18043, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:00.66414+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:00.681904+00', 17, '{"timezone-id":null}'), +(18044, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:00.694998+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:01.36968+00', 674, '{"updated-tables":0,"total-tables":4}'), +(18045, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:01.37005+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.761714+00', 13391, '{"total-fields":39,"updated-fields":0}'), +(18046, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.76181+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.765523+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18047, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.765611+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.768903+00', 3, NULL), +(18048, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.908395+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.996635+00', 88, NULL), +(18049, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.90847+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.968457+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18050, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.968561+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.975005+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18051, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.975146+00', TIMESTAMP WITH TIME ZONE '2023-01-16 21:49:14.996569+00', 21, '{"total-tables":4,"tables-classified":0}'), +(18052, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 22:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:00:01.097+00', 922, NULL), +(18053, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 22:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:00:01.588+00', 1415, NULL), +(18054, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:00.407773+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:08.80591+00', 8398, NULL), +(18055, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:00.411333+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:01.392816+00', 981, '{"timezone-id":"UTC"}'), +(18056, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:01.394841+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:02.320495+00', 925, '{"updated-tables":0,"total-tables":8}'), +(18057, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:02.321188+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:07.852461+00', 5531, '{"total-fields":71,"updated-fields":0}'), +(18058, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:07.852836+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:08.094473+00', 241, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18059, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:08.094592+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:08.805491+00', 710, NULL), +(18060, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:08.889657+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:09.089802+00', 200, NULL), +(18061, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:08.889673+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:09.042044+00', 152, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18062, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:09.042122+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:09.061689+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(18063, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:09.06177+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:19:09.089746+00', 27, '{"total-tables":8,"tables-classified":0}'), +(18064, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:00.339167+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.465157+00', 14125, NULL), +(18065, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:00.339549+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:00.341805+00', 2, '{"timezone-id":null}'), +(18066, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:00.342133+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:00.889433+00', 547, '{"updated-tables":0,"total-tables":4}'), +(18067, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:00.889503+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.454146+00', 13564, '{"total-fields":39,"updated-fields":0}'), +(18068, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.454272+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.460454+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18069, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.460528+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.465096+00', 4, NULL), +(18070, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.603834+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.68931+00', 85, NULL), +(18071, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.603852+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.6578+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18072, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.657889+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.670512+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(18073, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.670589+00', TIMESTAMP WITH TIME ZONE '2023-01-16 22:49:14.689262+00', 18, '{"total-tables":4,"tables-classified":0}'), +(18074, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 23:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:00:01.713+00', 1533, NULL), +(18075, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-16 23:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:00:01.962+00', 1805, NULL), +(18076, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:00.286335+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.652205+00', 7365, NULL), +(18077, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:00.303071+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:01.392183+00', 1089, '{"timezone-id":"UTC"}'), +(18078, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:01.395463+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:02.025314+00', 629, '{"updated-tables":0,"total-tables":8}'), +(18079, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:02.025782+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.125861+00', 5100, '{"total-fields":71,"updated-fields":0}'), +(18080, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.126217+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.297766+00', 171, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18081, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.299316+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.651922+00', 352, NULL), +(18082, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.733241+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.868805+00', 135, NULL), +(18083, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.733264+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.80289+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18084, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.802976+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.816709+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(18085, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.816787+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:19:07.868721+00', 51, '{"total-tables":8,"tables-classified":0}'), +(18086, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:01.235143+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.502971+00', 15267, NULL), +(18087, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:01.240619+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:01.268355+00', 27, '{"timezone-id":null}'), +(18088, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:01.2775+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:02.674319+00', 1396, '{"updated-tables":0,"total-tables":4}'), +(18089, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:02.675297+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.488538+00', 13813, '{"total-fields":39,"updated-fields":0}'), +(18090, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.488639+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.499155+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18091, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.499228+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.502676+00', 3, NULL), +(18092, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.609267+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.678976+00', 69, NULL), +(18093, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.609284+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.65504+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18094, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.655104+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.662843+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(18095, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.662902+00', TIMESTAMP WITH TIME ZONE '2023-01-16 23:49:16.678929+00', 16, '{"total-tables":4,"tables-classified":0}'), +(18096, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 00:00:01.214+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:00:06.448+00', 5234, NULL), +(18097, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 00:00:00.458+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:00:06.464+00', 6006, NULL), +(18098, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:00.345287+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.529096+00', 8183, NULL), +(18099, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:00.351759+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:01.395526+00', 1043, '{"timezone-id":"UTC"}'), +(18100, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:01.411527+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:02.233153+00', 821, '{"updated-tables":0,"total-tables":8}'), +(18101, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:02.234954+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:07.972079+00', 5737, '{"total-fields":71,"updated-fields":0}'), +(18102, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:07.972198+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.207199+00', 235, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18103, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.207605+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.52851+00', 320, NULL), +(18104, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.631823+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.818365+00', 186, NULL), +(18105, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.631846+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.720975+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18106, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.72109+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.750614+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(18107, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.750906+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:19:08.818073+00', 67, '{"total-tables":8,"tables-classified":0}'), +(18108, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:00.910083+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.278666+00', 15368, NULL), +(18109, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:00.911815+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:00.915984+00', 4, '{"timezone-id":null}'), +(18110, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:00.916655+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:01.571326+00', 654, '{"updated-tables":0,"total-tables":4}'), +(18111, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:01.57138+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.265147+00', 14693, '{"total-fields":39,"updated-fields":0}'), +(18112, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.265244+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.27384+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18113, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.273934+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.278609+00', 4, NULL), +(18114, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.411249+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.476899+00', 65, NULL), +(18115, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.41127+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.443493+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18116, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.443566+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.448935+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(18117, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.448998+00', TIMESTAMP WITH TIME ZONE '2023-01-17 00:49:16.476835+00', 27, '{"total-tables":4,"tables-classified":0}'), +(18118, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 01:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:00:01.527+00', 1370, NULL), +(18119, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 01:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:00:02.114+00', 1959, NULL), +(18120, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:00.374193+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.368562+00', 9994, NULL), +(18121, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:00.37921+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:02.010756+00', 1631, '{"timezone-id":"UTC"}'), +(18122, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:02.014907+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:02.826483+00', 811, '{"updated-tables":0,"total-tables":8}'), +(18123, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:02.826786+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:09.542508+00', 6715, '{"total-fields":71,"updated-fields":0}'), +(18124, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:09.54308+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:09.728135+00', 185, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18125, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:09.728235+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.368063+00', 639, NULL), +(18126, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.452604+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.573108+00', 120, NULL), +(18127, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.452623+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.51379+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18128, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.513858+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.526796+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(18129, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.526864+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:19:10.573041+00', 46, '{"total-tables":8,"tables-classified":0}'), +(18130, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:01.43119+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.096773+00', 17665, NULL), +(18131, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:01.434263+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:01.473223+00', 38, '{"timezone-id":null}'), +(18132, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:01.485205+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:02.731843+00', 1246, '{"updated-tables":0,"total-tables":4}'), +(18133, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:02.73194+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.073883+00', 16341, '{"total-fields":39,"updated-fields":0}'), +(18134, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.074034+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.089968+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18135, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.090046+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.096343+00', 6, NULL), +(18136, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.300005+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.455766+00', 155, NULL), +(18137, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.300024+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.398632+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18138, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.398908+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.424173+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(18139, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.424253+00', TIMESTAMP WITH TIME ZONE '2023-01-17 01:49:19.455687+00', 31, '{"total-tables":4,"tables-classified":0}'), +(18140, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:00.332+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:03.507+00', 3175, NULL), +(18141, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:00.387+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:03.5+00', 3113, NULL), +(18142, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:04.30993+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:24.741878+00', 20431, NULL), +(18143, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:04.311425+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:06.469306+00', 2157, '{"deleted":0}'), +(18144, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:06.470126+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:00:24.741505+00', 18271, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(18145, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:00.333335+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.276115+00', 3942, NULL), +(18146, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:00.333675+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:01.642131+00', 1308, '{"timezone-id":"UTC"}'), +(18147, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:01.642519+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:02.208525+00', 566, '{"updated-tables":0,"total-tables":8}'), +(18148, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:02.20862+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:03.745188+00', 1536, '{"total-fields":71,"updated-fields":0}'), +(18149, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:03.745249+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:03.898305+00', 153, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18150, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:03.898402+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.276079+00', 377, NULL), +(18151, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.343637+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.454749+00', 111, NULL), +(18152, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.343657+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.405917+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18153, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.405998+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.428461+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(18154, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.428545+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:19:04.454682+00', 26, '{"total-tables":8,"tables-classified":0}'), +(18155, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:00.289701+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.29956+00', 16009, NULL), +(18156, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:00.289732+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:00.292298+00', 2, '{"timezone-id":null}'), +(18157, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:00.292403+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:01.126785+00', 834, '{"updated-tables":0,"total-tables":4}'), +(18158, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:01.126874+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.262837+00', 15135, '{"total-fields":39,"updated-fields":0}'), +(18159, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.263039+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.28804+00', 25, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18160, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.288101+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.298574+00', 10, NULL), +(18161, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.453022+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.512495+00', 59, NULL), +(18162, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.45304+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.49434+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18163, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.494418+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.499571+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(18164, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.499637+00', TIMESTAMP WITH TIME ZONE '2023-01-17 02:49:16.512384+00', 12, '{"total-tables":4,"tables-classified":0}'), +(18165, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 03:00:00.315+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:00:04.559+00', 4244, NULL), +(18166, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 03:00:00.297+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:00:04.89+00', 4593, NULL), +(18167, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:00.485895+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:07.947437+00', 7461, NULL), +(18168, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:00.489492+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:01.16223+00', 672, '{"timezone-id":"UTC"}'), +(18169, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:01.164777+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:01.727343+00', 562, '{"updated-tables":0,"total-tables":8}'), +(18170, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:01.727955+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:06.61005+00', 4882, '{"total-fields":71,"updated-fields":0}'), +(18171, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:06.610239+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:07.030028+00', 419, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18172, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:07.030474+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:07.942718+00', 912, NULL), +(18173, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.042637+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.236049+00', 193, NULL), +(18174, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.042661+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.141416+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18175, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.141495+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.158817+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(18176, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.158891+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:19:08.235988+00', 77, '{"total-tables":8,"tables-classified":0}'), +(18177, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:01.020571+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.539508+00', 12518, NULL), +(18178, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:01.022679+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:01.030253+00', 7, '{"timezone-id":null}'), +(18179, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:01.032764+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:01.778148+00', 745, '{"updated-tables":0,"total-tables":4}'), +(18180, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:01.778238+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.530061+00', 11751, '{"total-fields":39,"updated-fields":0}'), +(18181, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.530155+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.534985+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18182, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.535051+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.539455+00', 4, NULL), +(18183, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.623392+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.677679+00', 54, NULL), +(18184, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.623409+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.658577+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18185, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.658644+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.666375+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(18186, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.666444+00', TIMESTAMP WITH TIME ZONE '2023-01-17 03:49:13.677625+00', 11, '{"total-tables":4,"tables-classified":0}'), +(18187, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 04:00:00.338+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:00:03.097+00', 2759, NULL), +(18188, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 04:00:00.338+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:00:03.573+00', 3235, NULL), +(18189, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:00.401992+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.597118+00', 10195, NULL), +(18190, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:00.406131+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:01.810722+00', 1404, '{"timezone-id":"UTC"}'), +(18191, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:01.813519+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:02.60832+00', 794, '{"updated-tables":0,"total-tables":8}'), +(18192, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:02.60889+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:09.806618+00', 7197, '{"total-fields":71,"updated-fields":0}'), +(18193, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:09.806943+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.055166+00', 248, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18194, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.055256+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.596777+00', 541, NULL), +(18195, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.657285+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.806973+00', 149, NULL), +(18196, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.657303+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.729151+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18197, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.729225+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.745976+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(18198, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.746036+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:19:10.806915+00', 60, '{"total-tables":8,"tables-classified":0}'), +(18199, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:00.802147+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.798732+00', 16996, NULL), +(18200, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:00.803114+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:00.807+00', 3, '{"timezone-id":null}'), +(18201, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:00.812129+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:01.357044+00', 544, '{"updated-tables":0,"total-tables":4}'), +(18202, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:01.357131+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.786244+00', 16429, '{"total-fields":39,"updated-fields":0}'), +(18203, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.786347+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.794015+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18204, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.794081+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.798674+00', 4, NULL), +(18205, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.984274+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:18.163052+00', 178, NULL), +(18206, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:17.984293+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:18.071728+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18207, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:18.071797+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:18.106446+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(18208, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:18.106512+00', TIMESTAMP WITH TIME ZONE '2023-01-17 04:49:18.162986+00', 56, '{"total-tables":4,"tables-classified":0}'), +(18209, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 05:00:00.312+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:00:01.278+00', 966, NULL), +(18210, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 05:00:00.269+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:00:01.725+00', 1456, NULL), +(18211, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:00.279339+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.302447+00', 7023, NULL), +(18212, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:00.282701+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:00.881257+00', 598, '{"timezone-id":"UTC"}'), +(18213, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:00.882731+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:01.348698+00', 465, '{"updated-tables":0,"total-tables":8}'), +(18214, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:01.349173+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:06.547046+00', 5197, '{"total-fields":71,"updated-fields":0}'), +(18215, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:06.547701+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:06.748288+00', 200, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18216, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:06.74864+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.302116+00', 553, NULL), +(18217, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.387257+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.566124+00', 178, NULL), +(18218, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.387274+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.468394+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18219, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.4687+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.485899+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(18220, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.485966+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:19:07.56603+00', 80, '{"total-tables":8,"tables-classified":0}'), +(18221, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:01.113013+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.605238+00', 15492, NULL), +(18222, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:01.117713+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:01.134313+00', 16, '{"timezone-id":null}'), +(18223, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:01.138266+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:01.871229+00', 732, '{"updated-tables":0,"total-tables":4}'), +(18224, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:01.871596+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.587175+00', 14715, '{"total-fields":39,"updated-fields":0}'), +(18225, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.587297+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.593228+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18226, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.593474+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.605004+00', 11, NULL), +(18227, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.728555+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.79387+00', 65, NULL), +(18228, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.728573+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.772988+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18229, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.773091+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.777704+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(18230, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.777767+00', TIMESTAMP WITH TIME ZONE '2023-01-17 05:49:16.793738+00', 15, '{"total-tables":4,"tables-classified":0}'), +(18231, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 06:00:00.255+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:00:01.998+00', 1743, NULL), +(18232, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 06:00:00.228+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:00:02.753+00', 2525, NULL), +(18233, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:47.645569+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:52.718303+00', 5072, NULL), +(18234, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:47.653563+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:48.50775+00', 854, '{"timezone-id":"UTC"}'), +(18235, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:48.509524+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:48.909359+00', 399, '{"updated-tables":0,"total-tables":8}'), +(18236, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:48.909601+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:51.270106+00', 2360, '{"total-fields":71,"updated-fields":0}'), +(18237, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:51.2703+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:51.396035+00', 125, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18238, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:51.396227+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:52.718188+00', 1321, NULL), +(18239, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.292299+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.698364+00', 406, NULL), +(18240, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.292374+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.492847+00', 200, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18241, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.493049+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.615577+00', 122, '{"fields-classified":0,"fields-failed":0}'), +(18242, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.617489+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:19:53.698156+00', 80, '{"total-tables":8,"tables-classified":0}'), +(18243, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:06.606768+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.28937+00', 9682, NULL), +(18244, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:06.613457+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:06.656643+00', 43, '{"timezone-id":null}'), +(18245, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:06.660485+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:08.456818+00', 1796, '{"updated-tables":0,"total-tables":4}'), +(18246, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:08.457173+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.257389+00', 7800, '{"total-fields":39,"updated-fields":0}'), +(18247, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.257577+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.281993+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18248, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.282164+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.289272+00', 7, NULL), +(18249, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.465632+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.657093+00', 191, NULL), +(18250, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.465733+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.617868+00', 152, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18251, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.618009+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.636217+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(18252, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.636364+00', TIMESTAMP WITH TIME ZONE '2023-01-17 06:49:16.657014+00', 20, '{"total-tables":4,"tables-classified":0}'), +(18253, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 07:00:01.114+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:00:08.022+00', 6908, NULL), +(18254, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 07:00:01.115+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:00:09.763+00', 8648, NULL), +(18255, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:01.578623+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:08.596238+00', 7017, NULL), +(18256, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:01.594772+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:02.580035+00', 985, '{"timezone-id":"UTC"}'), +(18257, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:02.582544+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:03.214369+00', 631, '{"updated-tables":0,"total-tables":8}'), +(18258, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:03.216549+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:07.983972+00', 4767, '{"total-fields":71,"updated-fields":0}'), +(18259, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:07.984152+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:08.053989+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18260, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:08.054133+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:08.596138+00', 542, NULL), +(18261, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:09.082951+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:11.165919+00', 2082, NULL), +(18262, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:09.086869+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:10.515002+00', 1428, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18263, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:10.515314+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:10.833982+00', 318, '{"fields-classified":0,"fields-failed":0}'), +(18264, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:10.834786+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:19:11.165739+00', 330, '{"total-tables":8,"tables-classified":0}'), +(18265, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:01.751943+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.098272+00', 14346, NULL), +(18266, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:01.766919+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:01.819957+00', 53, '{"timezone-id":null}'), +(18267, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:01.826096+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:02.999763+00', 1173, '{"updated-tables":0,"total-tables":4}'), +(18268, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:03.000382+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.067544+00', 13067, '{"total-fields":39,"updated-fields":0}'), +(18269, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.067716+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.088682+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18270, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.08881+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.098057+00', 9, NULL), +(18271, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.336667+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.569057+00', 232, NULL), +(18272, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.336731+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.466644+00', 129, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18273, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.466804+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.493515+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(18274, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.493677+00', TIMESTAMP WITH TIME ZONE '2023-01-17 07:49:16.568842+00', 75, '{"total-tables":4,"tables-classified":0}'), +(18275, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 08:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:00:01.208+00', 1048, NULL), +(18276, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 08:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:00:02.265+00', 2114, NULL), +(18277, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:03.420944+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:13.633182+00', 10212, NULL), +(18278, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:03.450562+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:04.077186+00', 626, '{"timezone-id":"UTC"}'), +(18279, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:04.084921+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:04.830649+00', 745, '{"updated-tables":0,"total-tables":8}'), +(18280, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:04.832651+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:11.995523+00', 7162, '{"total-fields":71,"updated-fields":0}'), +(18281, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:11.996+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:12.218541+00', 222, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18282, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:12.219105+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:13.632619+00', 1413, NULL), +(18283, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:14.090291+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:15.07098+00', 980, NULL), +(18284, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:14.090373+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:14.860635+00', 770, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18285, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:14.860771+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:14.973451+00', 112, '{"fields-classified":0,"fields-failed":0}'), +(18286, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:14.974047+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:19:15.070503+00', 96, '{"total-tables":8,"tables-classified":0}'), +(18287, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:01.299495+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:05.91742+00', 4617, NULL), +(18288, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:01.302204+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:01.317171+00', 14, '{"timezone-id":null}'), +(18289, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:01.321008+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:02.054262+00', 733, '{"updated-tables":0,"total-tables":4}'), +(18290, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:02.054575+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:05.906868+00', 3852, '{"total-fields":39,"updated-fields":0}'), +(18291, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:05.906992+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:05.915014+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18292, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:05.915129+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:05.917306+00', 2, NULL), +(18293, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.027718+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.186988+00', 159, NULL), +(18294, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.02778+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.063612+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18295, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.067927+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.164476+00', 96, '{"fields-classified":0,"fields-failed":0}'), +(18296, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.164616+00', TIMESTAMP WITH TIME ZONE '2023-01-17 08:49:06.18682+00', 22, '{"total-tables":4,"tables-classified":0}'), +(18297, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 09:00:00.031+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:00:00.116+00', 85, NULL), +(18298, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 09:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:00:01.726+00', 1622, NULL), +(18299, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:00.118088+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:05.982104+00', 5864, NULL), +(18300, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:00.11873+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:00.358222+00', 239, '{"timezone-id":"UTC"}'), +(18301, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:00.358968+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:00.615732+00', 256, '{"updated-tables":0,"total-tables":8}'), +(18302, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:00.616205+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:04.560926+00', 3944, '{"total-fields":71,"updated-fields":0}'), +(18303, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:04.561106+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:04.795448+00', 234, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18304, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:04.795752+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:05.981999+00', 1186, NULL), +(18305, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.248377+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.570362+00', 321, NULL), +(18306, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.248517+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.467534+00', 219, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18307, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.468302+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.525952+00', 57, '{"fields-classified":0,"fields-failed":0}'), +(18308, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.526275+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:19:06.57024+00', 43, '{"total-tables":8,"tables-classified":0}'), +(18309, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:01.028143+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.042462+00', 13014, NULL), +(18310, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:01.03897+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:01.072079+00', 33, '{"timezone-id":null}'), +(18311, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:01.078223+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:01.865251+00', 787, '{"updated-tables":0,"total-tables":4}'), +(18312, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:01.865742+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:13.994492+00', 12128, '{"total-fields":39,"updated-fields":0}'), +(18313, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:13.99463+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.032235+00', 37, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18314, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.032381+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.042298+00', 9, NULL), +(18315, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.323539+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.469367+00', 145, NULL), +(18316, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.323606+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.405968+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18317, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.406116+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.421409+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(18318, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.421545+00', TIMESTAMP WITH TIME ZONE '2023-01-17 09:49:14.469273+00', 47, '{"total-tables":4,"tables-classified":0}'), +(18319, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 10:00:00.35+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:00:01.033+00', 683, NULL), +(18320, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 10:00:00.304+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:00:01.558+00', 1254, NULL), +(18321, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:00.846604+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.690315+00', 5843, NULL), +(18322, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:00.851389+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:02.197667+00', 1346, '{"timezone-id":"UTC"}'), +(18323, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:02.200159+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:02.978826+00', 778, '{"updated-tables":0,"total-tables":8}'), +(18324, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:02.979229+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.244282+00', 3265, '{"total-fields":71,"updated-fields":0}'), +(18325, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.2444+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.301239+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18326, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.30143+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.690201+00', 388, NULL), +(18327, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.849285+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:07.0738+00', 224, NULL), +(18328, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.849354+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.956911+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18329, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.957068+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.992794+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(18330, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:06.993033+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:19:07.07371+00', 80, '{"total-tables":8,"tables-classified":0}'), +(18331, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:01.297485+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.20411+00', 14906, NULL), +(18332, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:01.307356+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:01.339335+00', 31, '{"timezone-id":null}'), +(18333, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:01.345164+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:02.106712+00', 761, '{"updated-tables":0,"total-tables":4}'), +(18334, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:02.107002+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.19197+00', 14084, '{"total-fields":39,"updated-fields":0}'), +(18335, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.192362+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.200363+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18336, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.20067+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.203863+00', 3, NULL), +(18337, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.465657+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.63505+00', 169, NULL), +(18338, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.465703+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.576732+00', 111, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18339, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.576911+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.592347+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(18340, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.592534+00', TIMESTAMP WITH TIME ZONE '2023-01-17 10:49:16.63482+00', 42, '{"total-tables":4,"tables-classified":0}'), +(18341, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 11:00:00.04+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:00:00.65+00', 610, NULL), +(18342, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 11:00:00.062+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:00:00.65+00', 588, NULL), +(18343, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:00.47323+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.51181+00', 4038, NULL), +(18344, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:00.476603+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:00.85607+00', 379, '{"timezone-id":"UTC"}'), +(18345, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:00.857992+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:01.311272+00', 453, '{"updated-tables":0,"total-tables":8}'), +(18346, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:01.311394+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:03.356492+00', 2045, '{"total-fields":71,"updated-fields":0}'), +(18347, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:03.356659+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:03.520706+00', 164, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18348, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:03.520842+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.511691+00', 990, NULL), +(18349, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.727981+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.892286+00', 164, NULL), +(18350, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.72803+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.82912+00', 101, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18351, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.829452+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.857003+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(18352, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.857144+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:19:04.892193+00', 35, '{"total-tables":8,"tables-classified":0}'), +(18353, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:01.788161+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.287832+00', 16499, NULL), +(18354, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:01.799781+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:01.869387+00', 69, '{"timezone-id":null}'), +(18355, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:01.8738+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:02.68514+00', 811, '{"updated-tables":0,"total-tables":4}'), +(18356, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:02.685709+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.263945+00', 15578, '{"total-fields":39,"updated-fields":0}'), +(18357, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.264069+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.276998+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18358, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.277176+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.287736+00', 10, NULL), +(18359, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.510725+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.636529+00', 125, NULL), +(18360, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.51077+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.598725+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18361, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.598929+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.607986+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(18362, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.608332+00', TIMESTAMP WITH TIME ZONE '2023-01-17 11:49:18.636386+00', 28, '{"total-tables":4,"tables-classified":0}'), +(18363, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 12:00:00.469+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:00:02.13+00', 1661, NULL), +(18364, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 12:00:00.416+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:00:02.134+00', 1718, NULL), +(18365, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:00.201015+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:03.749387+00', 3548, NULL), +(18366, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:00.201115+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:00.505012+00', 303, '{"timezone-id":"UTC"}'), +(18367, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:00.505161+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:01.026909+00', 521, '{"updated-tables":0,"total-tables":8}'), +(18368, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:01.027412+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:03.183737+00', 2156, '{"total-fields":71,"updated-fields":0}'), +(18369, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:03.183827+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:03.266009+00', 82, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18370, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:03.266145+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:03.748794+00', 482, NULL), +(18371, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.007813+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.287763+00', 279, NULL), +(18372, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.016355+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.19626+00', 179, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18373, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.196402+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.238496+00', 42, '{"fields-classified":0,"fields-failed":0}'), +(18374, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.241205+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:19:04.287665+00', 46, '{"total-tables":8,"tables-classified":0}'), +(18375, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:00.426754+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.122729+00', 20695, NULL), +(18376, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:00.426856+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:00.432129+00', 5, '{"timezone-id":null}'), +(18377, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:00.432292+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:01.319504+00', 887, '{"updated-tables":0,"total-tables":4}'), +(18378, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:01.319648+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.099311+00', 19779, '{"total-fields":39,"updated-fields":0}'), +(18379, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.099494+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.115331+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18380, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.115557+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.122641+00', 7, NULL), +(18381, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.725745+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:22.079489+00', 353, NULL), +(18382, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.72579+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.944226+00', 218, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18383, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.944695+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.977241+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(18384, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:21.977391+00', TIMESTAMP WITH TIME ZONE '2023-01-17 12:49:22.079402+00', 102, '{"total-tables":4,"tables-classified":0}'), +(18385, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 13:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:00:00.755+00', 606, NULL), +(18386, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 13:00:00.219+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:00:00.752+00', 533, NULL), +(18387, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:00.343644+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.105008+00', 5761, NULL), +(18388, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:00.346955+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:00.963409+00', 616, '{"timezone-id":"UTC"}'), +(18389, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:00.965081+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:01.428111+00', 463, '{"updated-tables":0,"total-tables":8}'), +(18390, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:01.428558+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:05.621756+00', 4193, '{"total-fields":71,"updated-fields":0}'), +(18391, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:05.621889+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:05.735417+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18392, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:05.735627+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.104914+00', 369, NULL), +(18393, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.248597+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.380015+00', 131, NULL), +(18394, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.24864+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.338338+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18395, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.338452+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.350853+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(18396, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.350934+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:19:06.379926+00', 28, '{"total-tables":8,"tables-classified":0}'), +(18397, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:00.35536+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.564994+00', 15209, NULL), +(18398, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:00.355424+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:00.360509+00', 5, '{"timezone-id":null}'), +(18399, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:00.360639+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:00.863073+00', 502, '{"updated-tables":0,"total-tables":4}'), +(18400, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:00.863183+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.559014+00', 14695, '{"total-fields":39,"updated-fields":0}'), +(18401, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.559171+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.563202+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18402, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.563373+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.564899+00', 1, NULL), +(18403, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.625941+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.682204+00', 56, NULL), +(18404, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.625987+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.650738+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18405, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.65084+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.656791+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(18406, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.656894+00', TIMESTAMP WITH TIME ZONE '2023-01-17 13:49:15.682124+00', 25, '{"total-tables":4,"tables-classified":0}'), +(18407, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 14:00:00.02+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:00:00.677+00', 657, NULL), +(18408, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 14:00:00.039+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:00:00.677+00', 638, NULL), +(18409, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:00.36695+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.452943+00', 6085, NULL), +(18410, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:00.37265+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:01.170972+00', 798, '{"timezone-id":"UTC"}'), +(18411, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:01.172898+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:01.839345+00', 666, '{"updated-tables":0,"total-tables":8}'), +(18412, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:01.840148+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.082595+00', 4242, '{"total-fields":71,"updated-fields":0}'), +(18413, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.082729+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.131045+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18414, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.131164+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.452836+00', 321, NULL), +(18415, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.603285+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.954723+00', 351, NULL), +(18416, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.603333+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.739029+00', 135, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18417, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.739147+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.76232+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(18418, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.762437+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:19:06.954605+00', 192, '{"total-tables":8,"tables-classified":0}'), +(18419, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:00.2444+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:14.830556+00', 14586, NULL), +(18420, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:00.244551+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:00.254437+00', 9, '{"timezone-id":null}'), +(18421, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:00.254561+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:00.54999+00', 295, '{"updated-tables":0,"total-tables":4}'), +(18422, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:00.550097+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:14.804763+00', 14254, '{"total-fields":39,"updated-fields":0}'), +(18423, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:14.804867+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:14.817818+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18424, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:14.817929+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:14.829982+00', 12, NULL), +(18425, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.012306+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.300495+00', 288, NULL), +(18426, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.012711+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.227489+00', 214, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18427, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.228071+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.290117+00', 62, '{"fields-classified":0,"fields-failed":0}'), +(18428, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.290232+00', TIMESTAMP WITH TIME ZONE '2023-01-17 14:49:15.300384+00', 10, '{"total-tables":4,"tables-classified":0}'), +(18429, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 15:00:00.016+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:00:00.634+00', 618, NULL), +(18430, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 15:00:00.054+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:00:00.634+00', 580, NULL), +(18431, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:00.319651+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.598711+00', 5279, NULL), +(18432, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:00.321807+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:00.801293+00', 479, '{"timezone-id":"UTC"}'), +(18433, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:00.803748+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:01.270324+00', 466, '{"updated-tables":0,"total-tables":8}'), +(18434, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:01.270862+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.115999+00', 3845, '{"total-fields":71,"updated-fields":0}'), +(18435, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.116144+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.219505+00', 103, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18436, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.219673+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.598591+00', 378, NULL), +(18437, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.752369+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.987982+00', 235, NULL), +(18438, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.752472+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.859215+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18439, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.859423+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.920513+00', 61, '{"fields-classified":0,"fields-failed":0}'), +(18440, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.920679+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:19:05.987892+00', 67, '{"total-tables":8,"tables-classified":0}'), +(18441, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:00.297634+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.431926+00', 17134, NULL), +(18442, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:00.297706+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:00.300785+00', 3, '{"timezone-id":null}'), +(18443, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:00.300912+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:00.689769+00', 388, '{"updated-tables":0,"total-tables":4}'), +(18444, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:00.68988+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.381758+00', 16691, '{"total-fields":39,"updated-fields":0}'), +(18445, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.381902+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.416459+00', 34, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18446, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.416615+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.41998+00', 3, NULL), +(18447, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.758974+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.939971+00', 180, NULL), +(18448, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.759013+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.851047+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18449, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.85118+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.896034+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(18450, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.896215+00', TIMESTAMP WITH TIME ZONE '2023-01-17 15:49:17.939855+00', 43, '{"total-tables":4,"tables-classified":0}'), +(18451, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 16:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:00:00.306+00', 173, NULL), +(18452, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 16:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:00:00.306+00', 143, NULL), +(18453, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:00.188521+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.708284+00', 4519, NULL), +(18454, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:00.190845+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:00.547219+00', 356, '{"timezone-id":"UTC"}'), +(18455, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:00.549301+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:00.888535+00', 339, '{"updated-tables":0,"total-tables":8}'), +(18456, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:00.889318+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.40702+00', 3517, '{"total-fields":71,"updated-fields":0}'), +(18457, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.407128+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.47501+00', 67, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18458, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.475131+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.708223+00', 233, NULL), +(18459, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.871868+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:05.017084+00', 145, NULL), +(18460, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.871914+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.957216+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18461, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.957311+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.990542+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(18462, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:04.990646+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:19:05.016994+00', 26, '{"total-tables":8,"tables-classified":0}'), +(18463, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:00.191021+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.574141+00', 14383, NULL), +(18464, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:00.19108+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:00.199909+00', 8, '{"timezone-id":null}'), +(18465, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:00.200071+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:00.603042+00', 402, '{"updated-tables":0,"total-tables":4}'), +(18466, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:00.603154+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.56249+00', 13959, '{"total-fields":39,"updated-fields":0}'), +(18467, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.562687+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.570689+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18468, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.570842+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.57406+00', 3, NULL), +(18469, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.709453+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.782686+00', 73, NULL), +(18470, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.709494+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.741783+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18471, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.743186+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.766016+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(18472, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.76615+00', TIMESTAMP WITH TIME ZONE '2023-01-17 16:49:14.782593+00', 16, '{"total-tables":4,"tables-classified":0}'), +(18473, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 17:00:00.312+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:00:00.641+00', 329, NULL), +(18474, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 17:00:00.087+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:00:00.642+00', 555, NULL), +(18475, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:00.371543+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.329425+00', 3957, NULL), +(18476, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:00.375808+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:01.808396+00', 1432, '{"timezone-id":"UTC"}'), +(18477, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:01.811671+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:02.691213+00', 879, '{"updated-tables":0,"total-tables":8}'), +(18478, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:02.691517+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:03.881742+00', 1190, '{"total-fields":71,"updated-fields":0}'), +(18479, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:03.88185+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:03.939475+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18480, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:03.939579+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.329113+00', 389, NULL), +(18481, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.472492+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.844675+00', 372, NULL), +(18482, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.472565+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.680351+00', 207, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18483, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.680494+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.739391+00', 58, '{"fields-classified":0,"fields-failed":0}'), +(18484, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.739507+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:19:04.844592+00', 105, '{"total-tables":8,"tables-classified":0}'), +(18485, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:00.680708+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.754091+00', 11073, NULL), +(18486, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:00.680774+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:00.69368+00', 12, '{"timezone-id":null}'), +(18487, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:00.693798+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:01.695838+00', 1002, '{"updated-tables":0,"total-tables":4}'), +(18488, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:01.695956+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.747665+00', 10051, '{"total-fields":39,"updated-fields":0}'), +(18489, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.74779+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.751884+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18490, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.751977+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.753952+00', 1, NULL), +(18491, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.820969+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.86613+00', 45, NULL), +(18492, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.821007+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.850068+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18493, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.850191+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.856804+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18494, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.856895+00', TIMESTAMP WITH TIME ZONE '2023-01-17 17:49:11.866052+00', 9, '{"total-tables":4,"tables-classified":0}'), +(18495, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 18:00:00.249+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:00:00.74+00', 491, NULL), +(18496, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 18:00:00.195+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:00:00.855+00', 660, NULL), +(18497, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:00.149108+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.504562+00', 2355, NULL), +(18498, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:00.151537+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:00.448763+00', 297, '{"timezone-id":"UTC"}'), +(18499, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:00.449838+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:00.653311+00', 203, '{"updated-tables":0,"total-tables":8}'), +(18500, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:00.653804+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.287804+00', 1634, '{"total-fields":71,"updated-fields":0}'), +(18501, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.287965+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.350601+00', 62, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18502, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.350746+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.504409+00', 153, NULL), +(18503, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.58378+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.689799+00', 106, NULL), +(18504, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.583841+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.648496+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18505, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.6486+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.667944+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(18506, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.668091+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:19:02.6897+00', 21, '{"total-tables":8,"tables-classified":0}'), +(18507, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:01.139182+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.325145+00', 14185, NULL), +(18508, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:01.143624+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:01.201667+00', 58, '{"timezone-id":null}'), +(18509, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:01.20567+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:01.774886+00', 569, '{"updated-tables":0,"total-tables":4}'), +(18510, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:01.776646+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.318477+00', 13541, '{"total-fields":39,"updated-fields":0}'), +(18511, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.318571+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.323041+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18512, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.323553+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.325073+00', 1, NULL), +(18513, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.477319+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.555609+00', 78, NULL), +(18514, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.477363+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.530489+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18515, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.530618+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.538841+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(18516, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.538948+00', TIMESTAMP WITH TIME ZONE '2023-01-17 18:49:15.555524+00', 16, '{"total-tables":4,"tables-classified":0}'), +(18517, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 19:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:00:00.648+00', 475, NULL), +(18518, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 19:00:00.09+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:00:00.648+00', 558, NULL), +(18519, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:00.104008+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.666159+00', 5562, NULL), +(18520, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:00.104594+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:00.517255+00', 412, '{"timezone-id":"UTC"}'), +(18521, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:00.517398+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:00.679618+00', 162, '{"updated-tables":0,"total-tables":8}'), +(18522, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:00.679762+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:04.504168+00', 3824, '{"total-fields":71,"updated-fields":0}'), +(18523, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:04.504287+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:04.60402+00', 99, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18524, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:04.604121+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.666071+00', 1061, NULL), +(18525, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.893421+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:06.036575+00', 143, NULL), +(18526, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.893458+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.96709+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18527, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.967213+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.993602+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(18528, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:05.993703+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:19:06.03649+00', 42, '{"total-tables":8,"tables-classified":0}'), +(18529, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:00.229358+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.473882+00', 15244, NULL), +(18530, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:00.22942+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:00.232216+00', 2, '{"timezone-id":null}'), +(18531, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:00.232337+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:00.592204+00', 359, '{"updated-tables":0,"total-tables":4}'), +(18532, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:00.592306+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.465896+00', 14873, '{"total-fields":39,"updated-fields":0}'), +(18533, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.465995+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.471958+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18534, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.472081+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.473812+00', 1, NULL), +(18535, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.551442+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.633689+00', 82, NULL), +(18536, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.551479+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.60437+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18537, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.604754+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.617773+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(18538, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.617921+00', TIMESTAMP WITH TIME ZONE '2023-01-17 19:49:15.633592+00', 15, '{"total-tables":4,"tables-classified":0}'), +(18539, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 20:00:00.291+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:00:00.762+00', 471, NULL), +(18540, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 20:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:00:01.024+00', 803, NULL), +(18541, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:00.269385+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.093107+00', 5823, NULL), +(18542, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:00.271985+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:00.745238+00', 473, '{"timezone-id":"UTC"}'), +(18543, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:00.746985+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:01.212555+00', 465, '{"updated-tables":0,"total-tables":8}'), +(18544, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:01.213051+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:04.954388+00', 3741, '{"total-fields":71,"updated-fields":0}'), +(18545, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:04.954705+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:05.134241+00', 179, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18546, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:05.134432+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.093032+00', 958, NULL), +(18547, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.647982+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.783626+00', 135, NULL), +(18548, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.648032+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.731343+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18549, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.731503+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.750327+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(18550, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.750412+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:19:06.783567+00', 33, '{"total-tables":8,"tables-classified":0}'), +(18551, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:00.269833+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.479829+00', 10209, NULL), +(18552, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:00.269887+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:00.275127+00', 5, '{"timezone-id":null}'), +(18553, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:00.275356+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:00.576928+00', 301, '{"updated-tables":0,"total-tables":4}'), +(18554, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:00.577057+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.466743+00', 9889, '{"total-fields":39,"updated-fields":0}'), +(18555, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.466891+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.476013+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18556, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.476183+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.479761+00', 3, NULL), +(18557, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.718755+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.837268+00', 118, NULL), +(18558, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.718792+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.792558+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18559, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.792654+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.814177+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(18560, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.814315+00', TIMESTAMP WITH TIME ZONE '2023-01-17 20:49:10.836629+00', 22, '{"total-tables":4,"tables-classified":0}'), +(18561, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:00.613+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:02.149+00', 1536, NULL), +(18562, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:00.619+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:02.097+00', 1478, NULL), +(18563, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:02.869191+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:30.054501+00', 27185, NULL), +(18564, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:02.869311+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:08.358635+00', 5489, '{"deleted":0}'), +(18565, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:08.358773+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:00:30.054429+00', 21695, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(18566, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:00.039595+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.920982+00', 1881, NULL), +(18567, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:00.039654+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:00.094738+00', 55, '{"timezone-id":"UTC"}'), +(18568, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:00.094872+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:00.184668+00', 89, '{"updated-tables":0,"total-tables":8}'), +(18569, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:00.184801+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.485531+00', 1300, '{"total-fields":71,"updated-fields":0}'), +(18570, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.485642+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.539867+00', 54, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18571, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.539988+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.920921+00', 380, NULL), +(18572, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.980669+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:02.082333+00', 101, NULL), +(18573, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:01.980713+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:02.030098+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18574, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:02.030251+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:02.05178+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(18575, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:02.051881+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:19:02.082248+00', 30, '{"total-tables":8,"tables-classified":0}'), +(18576, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:01.759406+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.344404+00', 12584, NULL), +(18577, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:01.768405+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:01.894864+00', 126, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18578, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:01.921584+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:02.60493+00', 683, '{"updated-tables":0,"total-tables":4}'), +(18579, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:02.605226+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.333825+00', 11728, '{"total-fields":39,"updated-fields":0}'), +(18580, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.33391+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.339277+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18581, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.339423+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.344331+00', 4, NULL), +(18582, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.58333+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.653433+00', 70, NULL), +(18583, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.583399+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.633119+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18584, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.633279+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.640036+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18585, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.640174+00', TIMESTAMP WITH TIME ZONE '2023-01-17 21:49:14.653377+00', 13, '{"total-tables":4,"tables-classified":0}'), +(18586, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 22:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:00:00.546+00', 407, NULL), +(18587, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 22:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:00:00.546+00', 382, NULL), +(18588, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:00.33569+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.679367+00', 5343, NULL), +(18589, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:00.341466+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:00.816905+00', 475, '{"timezone-id":"UTC"}'), +(18590, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:00.818119+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:01.194151+00', 376, '{"updated-tables":0,"total-tables":8}'), +(18591, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:01.194559+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:04.634611+00', 3440, '{"total-fields":71,"updated-fields":0}'), +(18592, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:04.634717+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:04.795379+00', 160, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18593, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:04.795763+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.678735+00', 882, NULL), +(18594, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.8425+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.913353+00', 70, NULL), +(18595, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.842545+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.883008+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18596, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.883158+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.899744+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(18597, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.900038+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:19:05.913274+00', 13, '{"total-tables":8,"tables-classified":0}'), +(18598, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:00.217475+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.31631+00', 10098, NULL), +(18599, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:00.217519+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:00.225336+00', 7, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18600, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:00.225478+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:00.504355+00', 278, '{"updated-tables":0,"total-tables":4}'), +(18601, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:00.504547+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.30629+00', 9801, '{"total-fields":39,"updated-fields":0}'), +(18602, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.306397+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.313167+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18603, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.313263+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.316246+00', 2, NULL), +(18604, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.455051+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.517394+00', 62, NULL), +(18605, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.455087+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.497531+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18606, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.497621+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.504594+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18607, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.504696+00', TIMESTAMP WITH TIME ZONE '2023-01-17 22:49:10.517334+00', 12, '{"total-tables":4,"tables-classified":0}'), +(18608, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 23:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:00:00.459+00', 318, NULL), +(18609, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-17 23:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:00:00.46+00', 342, NULL), +(18610, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:00.249647+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.943868+00', 5694, NULL), +(18611, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:00.253413+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:00.681775+00', 428, '{"timezone-id":"UTC"}'), +(18612, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:00.683581+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:01.127788+00', 444, '{"updated-tables":0,"total-tables":8}'), +(18613, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:01.128167+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.113538+00', 3985, '{"total-fields":71,"updated-fields":0}'), +(18614, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.114+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.289917+00', 175, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18615, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.290208+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.943805+00', 653, NULL), +(18616, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.998545+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:06.069821+00', 71, NULL), +(18617, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:05.998581+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:06.036576+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18618, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:06.036663+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:06.057194+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(18619, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:06.057389+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:19:06.069755+00', 12, '{"total-tables":8,"tables-classified":0}'), +(18620, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:00.205487+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.445757+00', 10240, NULL), +(18621, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:00.205535+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:00.207562+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18622, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:00.20766+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:00.560756+00', 353, '{"updated-tables":0,"total-tables":4}'), +(18623, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:00.560853+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.435518+00', 9874, '{"total-fields":39,"updated-fields":0}'), +(18624, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.4356+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.442677+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18625, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.442751+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.445704+00', 2, NULL), +(18626, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.534083+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.62726+00', 93, NULL), +(18627, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.534116+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.572104+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18628, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.572207+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.585062+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(18629, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.585183+00', TIMESTAMP WITH TIME ZONE '2023-01-17 23:49:10.627165+00', 41, '{"total-tables":4,"tables-classified":0}'), +(18630, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 00:00:00.295+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:00:01.279+00', 984, NULL), +(18631, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 00:00:00.228+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:00:03.316+00', 3088, NULL), +(18632, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:07.960821+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.014095+00', 11053, NULL), +(18633, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:07.971358+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:09.425037+00', 1453, '{"timezone-id":"UTC"}'), +(18634, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:09.428748+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:09.941359+00', 512, '{"updated-tables":0,"total-tables":8}'), +(18635, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:09.941737+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:17.584007+00', 7642, '{"total-fields":71,"updated-fields":0}'), +(18636, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:17.584572+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:17.94026+00', 355, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18637, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:17.941241+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.014009+00', 1072, NULL), +(18638, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.386367+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.745154+00', 358, NULL), +(18639, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.386402+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.654917+00', 268, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18640, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.655266+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.696027+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(18641, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.696573+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:19:19.745054+00', 48, '{"total-tables":8,"tables-classified":0}'), +(18642, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:00.495213+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.38684+00', 13891, NULL), +(18643, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:00.501084+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:00.533524+00', 32, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18644, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:00.536625+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:01.549499+00', 1012, '{"updated-tables":0,"total-tables":4}'), +(18645, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:01.559533+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.372148+00', 12812, '{"total-fields":39,"updated-fields":0}'), +(18646, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.372272+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.382499+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18647, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.382598+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.38677+00', 4, NULL), +(18648, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.559094+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.678068+00', 118, NULL), +(18649, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.559129+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.621337+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18650, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.621438+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.630784+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(18651, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.630896+00', TIMESTAMP WITH TIME ZONE '2023-01-18 00:49:14.677979+00', 47, '{"total-tables":4,"tables-classified":0}'), +(18652, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 01:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:00:00.588+00', 484, NULL), +(18653, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 01:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:00:00.511+00', 386, NULL), +(18654, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:00.23931+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.276468+00', 5037, NULL), +(18655, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:00.243557+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:00.557731+00', 314, '{"timezone-id":"UTC"}'), +(18656, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:00.560013+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:00.883651+00', 323, '{"updated-tables":0,"total-tables":8}'), +(18657, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:00.883761+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:04.63422+00', 3750, '{"total-fields":71,"updated-fields":0}'), +(18658, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:04.634624+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:04.778327+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18659, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:04.77893+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.276388+00', 497, NULL), +(18660, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.383755+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.495882+00', 112, NULL), +(18661, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.383794+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.425787+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18662, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.425891+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.43739+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(18663, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.43748+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:19:05.495779+00', 58, '{"total-tables":8,"tables-classified":0}'), +(18664, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:00.361484+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.081621+00', 12720, NULL), +(18665, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:00.361529+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:00.364301+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18666, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:00.364462+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:01.005709+00', 641, '{"updated-tables":0,"total-tables":4}'), +(18667, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:01.005795+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.071226+00', 12065, '{"total-fields":39,"updated-fields":0}'), +(18668, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.071445+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.075982+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18669, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.076274+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.080503+00', 4, NULL), +(18670, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.19772+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.32574+00', 128, NULL), +(18671, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.197758+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.300981+00', 103, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18672, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.301101+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.307963+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18673, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.308068+00', TIMESTAMP WITH TIME ZONE '2023-01-18 01:49:13.325569+00', 17, '{"total-tables":4,"tables-classified":0}'), +(18674, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:00.345+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:01.503+00', 1158, NULL), +(18675, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:00.391+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:01.503+00', 1112, NULL), +(18676, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:02.717938+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:21.66341+00', 18945, NULL), +(18677, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:02.718767+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:05.450287+00', 2731, '{"deleted":0}'), +(18678, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:05.450755+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:00:21.663032+00', 16212, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(18679, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:00.107714+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.193793+00', 2086, NULL), +(18680, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:00.107783+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:00.398145+00', 290, '{"timezone-id":"UTC"}'), +(18681, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:00.398764+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:00.565661+00', 166, '{"updated-tables":0,"total-tables":8}'), +(18682, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:00.565786+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:01.593394+00', 1027, '{"total-fields":71,"updated-fields":0}'), +(18683, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:01.593506+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:01.874953+00', 281, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18684, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:01.875064+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.19372+00', 318, NULL), +(18685, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.284078+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.45938+00', 175, NULL), +(18686, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.284116+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.401612+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18687, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.401744+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.42847+00', 26, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18688, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.428588+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:19:02.459105+00', 30, '{"total-tables":8,"tables-classified":0}'), +(18689, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:00.055438+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.068246+00', 10012, NULL), +(18690, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:00.055475+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:00.060007+00', 4, '{"timezone-id":null}'), +(18691, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:00.060128+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:00.210214+00', 150, '{"updated-tables":0,"total-tables":4}'), +(18692, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:00.210321+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.061205+00', 9850, '{"total-fields":39,"updated-fields":0}'), +(18693, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.061297+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.065148+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18694, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.065305+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.068047+00', 2, NULL), +(18695, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.118453+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.157497+00', 39, NULL), +(18696, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.118488+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.143244+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18697, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.14334+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.148251+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(18698, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.148339+00', TIMESTAMP WITH TIME ZONE '2023-01-18 02:49:10.157422+00', 9, '{"total-tables":4,"tables-classified":0}'), +(18699, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 03:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:00:00.957+00', 739, NULL), +(18700, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 03:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:00:01.575+00', 1379, NULL), +(18701, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:00.664526+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:15.748876+00', 15084, NULL), +(18702, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:00.66799+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:01.772653+00', 1104, '{"timezone-id":"UTC"}'), +(18703, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:01.777538+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:02.835745+00', 1058, '{"updated-tables":0,"total-tables":8}'), +(18704, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:02.836127+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:13.100018+00', 10263, '{"total-fields":71,"updated-fields":0}'), +(18705, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:13.102916+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:13.547936+00', 445, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18706, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:13.555435+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:15.74872+00', 2193, NULL), +(18707, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:15.948612+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:16.309881+00', 361, NULL), +(18708, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:15.948692+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:16.170337+00', 221, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18709, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:16.17044+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:16.20958+00', 39, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18710, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:16.20968+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:19:16.309811+00', 100, '{"total-tables":8,"tables-classified":0}'), +(18711, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:00.216159+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.250155+00', 11033, NULL), +(18712, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:00.216202+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:00.219227+00', 3, '{"timezone-id":null}'), +(18713, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:00.219354+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:00.705483+00', 486, '{"updated-tables":0,"total-tables":4}'), +(18714, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:00.705587+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.237393+00', 10531, '{"total-fields":39,"updated-fields":0}'), +(18715, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.23748+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.240744+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18716, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.240836+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.250075+00', 9, NULL), +(18717, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.337989+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.383105+00', 45, NULL), +(18718, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.338023+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.373067+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18719, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.373167+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.377632+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(18720, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.377714+00', TIMESTAMP WITH TIME ZONE '2023-01-18 03:49:11.383034+00', 5, '{"total-tables":4,"tables-classified":0}'), +(18721, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 04:00:00.308+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:00:03.764+00', 3456, NULL), +(18722, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 04:00:00.323+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:00:02.816+00', 2493, NULL), +(18723, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:00.356243+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:06.791676+00', 6435, NULL), +(18724, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:00.361644+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:00.948392+00', 586, '{"timezone-id":"UTC"}'), +(18725, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:00.951781+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:01.478455+00', 526, '{"updated-tables":0,"total-tables":8}'), +(18726, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:01.479203+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:05.766331+00', 4287, '{"total-fields":71,"updated-fields":0}'), +(18727, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:05.766825+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:06.004987+00', 238, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18728, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:06.005373+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:06.79161+00', 786, NULL), +(18729, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:06.929459+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:07.084775+00', 155, NULL), +(18730, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:06.929505+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:07.009327+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18731, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:07.009421+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:07.030777+00', 21, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18732, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:07.031054+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:19:07.084675+00', 53, '{"total-tables":8,"tables-classified":0}'), +(18733, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:00.272251+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.362035+00', 13089, NULL), +(18734, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:00.272294+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:00.276584+00', 4, '{"timezone-id":null}'), +(18735, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:00.276691+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:00.786272+00', 509, '{"updated-tables":0,"total-tables":4}'), +(18736, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:00.786374+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.351381+00', 12565, '{"total-fields":39,"updated-fields":0}'), +(18737, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.351488+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.358434+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18738, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.358584+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.361951+00', 3, NULL), +(18739, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.447573+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.508561+00', 60, NULL), +(18740, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.447611+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.489203+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18741, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.489301+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.493921+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(18742, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.494012+00', TIMESTAMP WITH TIME ZONE '2023-01-18 04:49:13.50848+00', 14, '{"total-tables":4,"tables-classified":0}'), +(18743, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 05:00:00.039+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:00:00.091+00', 52, NULL), +(18744, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 05:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:00:00.602+00', 474, NULL), +(18745, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:00.330289+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.203244+00', 5872, NULL), +(18746, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:00.332581+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:00.731196+00', 398, '{"timezone-id":"UTC"}'), +(18747, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:00.732627+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:01.251926+00', 519, '{"updated-tables":0,"total-tables":8}'), +(18748, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:01.252309+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:05.62016+00', 4367, '{"total-fields":71,"updated-fields":0}'), +(18749, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:05.62072+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:05.787342+00', 166, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18750, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:05.787547+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.203189+00', 415, NULL), +(18751, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.294268+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.404334+00', 110, NULL), +(18752, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.294309+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.358294+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18753, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.358445+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.371654+00', 13, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18754, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.371746+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:19:06.404263+00', 32, '{"total-tables":8,"tables-classified":0}'), +(18755, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:00.192509+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.922024+00', 13729, NULL), +(18756, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:00.192558+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:00.195078+00', 2, '{"timezone-id":null}'), +(18757, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:00.195222+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:00.539362+00', 344, '{"updated-tables":0,"total-tables":4}'), +(18758, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:00.539497+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.916256+00', 13376, '{"total-fields":39,"updated-fields":0}'), +(18759, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.916405+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.920015+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18760, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.920125+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.921941+00', 1, NULL), +(18761, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.962193+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:14.014615+00', 52, NULL), +(18762, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.962246+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.987543+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18763, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.988275+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.993772+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(18764, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:13.993889+00', TIMESTAMP WITH TIME ZONE '2023-01-18 05:49:14.014531+00', 20, '{"total-tables":4,"tables-classified":0}'), +(18765, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 06:00:00.47+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:00:00.813+00', 343, NULL), +(18766, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 06:00:00.198+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:00:00.812+00', 614, NULL), +(18767, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:00.459554+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.044281+00', 10584, NULL), +(18768, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:00.468594+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:01.625385+00', 1156, '{"timezone-id":"UTC"}'), +(18769, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:01.628513+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:02.878904+00', 1250, '{"updated-tables":0,"total-tables":8}'), +(18770, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:02.88865+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:10.701293+00', 7812, '{"total-fields":71,"updated-fields":0}'), +(18771, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:10.701416+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:10.804243+00', 102, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18772, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:10.804407+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.044205+00', 239, NULL), +(18773, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.182123+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.393102+00', 210, NULL), +(18774, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.182161+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.294912+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18775, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.295016+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.339904+00', 44, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18776, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.340009+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:19:11.393032+00', 53, '{"total-tables":8,"tables-classified":0}'), +(18777, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:00.292105+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.684774+00', 12392, NULL), +(18778, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:00.292146+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:00.29856+00', 6, '{"timezone-id":null}'), +(18779, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:00.29868+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:00.639998+00', 341, '{"updated-tables":0,"total-tables":4}'), +(18780, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:00.640218+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.678567+00', 12038, '{"total-fields":39,"updated-fields":0}'), +(18781, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.678661+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.682335+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18782, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.682423+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.68472+00', 2, NULL), +(18783, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.746273+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.787538+00', 41, NULL), +(18784, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.746301+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.773865+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18785, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.77398+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.77853+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(18786, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.778622+00', TIMESTAMP WITH TIME ZONE '2023-01-18 06:49:12.78747+00', 8, '{"total-tables":4,"tables-classified":0}'), +(18787, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 07:00:00.186+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:00:01.215+00', 1029, NULL), +(18788, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 07:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:00:01.888+00', 1744, NULL), +(18789, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:00.850731+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.639814+00', 8789, NULL), +(18790, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:00.860233+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:02.21397+00', 1353, '{"timezone-id":"UTC"}'), +(18791, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:02.219186+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:02.84167+00', 622, '{"updated-tables":0,"total-tables":8}'), +(18792, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:02.842111+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:08.682059+00', 5839, '{"total-fields":71,"updated-fields":0}'), +(18793, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:08.682452+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:08.898489+00', 216, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18794, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:08.899188+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.639773+00', 740, NULL), +(18795, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.769845+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.915019+00', 145, NULL), +(18796, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.769881+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.852603+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18797, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.852754+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.867117+00', 14, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18798, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.867262+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:19:09.914242+00', 46, '{"total-tables":8,"tables-classified":0}'), +(18799, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:00.37891+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.521313+00', 23142, NULL), +(18800, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:00.378962+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:00.382484+00', 3, '{"timezone-id":null}'), +(18801, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:00.382623+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:01.191235+00', 808, '{"updated-tables":0,"total-tables":4}'), +(18802, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:01.191333+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.492134+00', 22300, '{"total-fields":39,"updated-fields":0}'), +(18803, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.492276+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.506145+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18804, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.506233+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.521203+00', 14, NULL), +(18805, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.85684+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.915973+00', 59, NULL), +(18806, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.856877+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.89969+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18807, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.899785+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.904525+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(18808, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.904714+00', TIMESTAMP WITH TIME ZONE '2023-01-18 07:49:23.915743+00', 11, '{"total-tables":4,"tables-classified":0}'), +(18809, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 08:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:00:01.081+00', 921, NULL), +(18810, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 08:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:00:01.223+00', 1092, NULL), +(18811, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:00.24602+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.771734+00', 7525, NULL), +(18812, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:00.248115+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:00.58417+00', 336, '{"timezone-id":"UTC"}'), +(18813, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:00.585808+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:00.93541+00', 349, '{"updated-tables":0,"total-tables":8}'), +(18814, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:00.935762+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:06.926553+00', 5990, '{"total-fields":71,"updated-fields":0}'), +(18815, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:06.927099+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.095138+00', 168, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18816, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.095352+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.77164+00', 676, NULL), +(18817, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.846991+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.954419+00', 107, NULL), +(18818, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.847032+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.886081+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18819, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.886696+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.927129+00', 40, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18820, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.927257+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:19:07.95429+00', 27, '{"total-tables":8,"tables-classified":0}'), +(18821, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:00.397213+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.31768+00', 14920, NULL), +(18822, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:00.399903+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:00.420583+00', 20, '{"timezone-id":null}'), +(18823, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:00.423583+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:00.694104+00', 270, '{"updated-tables":0,"total-tables":4}'), +(18824, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:00.694229+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.137241+00', 14443, '{"total-fields":39,"updated-fields":0}'), +(18825, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.137356+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.283585+00', 146, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18826, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.28384+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.317595+00', 33, NULL), +(18827, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.873384+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.978337+00', 104, NULL), +(18828, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.873418+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.943385+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18829, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.943669+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.949996+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18830, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.950253+00', TIMESTAMP WITH TIME ZONE '2023-01-18 08:49:15.978116+00', 27, '{"total-tables":4,"tables-classified":0}'), +(18831, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 09:00:00.069+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:00:01.604+00', 1535, NULL), +(18832, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 09:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:00:01.585+00', 1410, NULL), +(18833, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:00.488219+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.059986+00', 13571, NULL), +(18834, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:00.497618+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:01.653677+00', 1156, '{"timezone-id":"UTC"}'), +(18835, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:01.657361+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:02.990353+00', 1332, '{"updated-tables":0,"total-tables":8}'), +(18836, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:02.99214+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:09.683755+00', 6691, '{"total-fields":71,"updated-fields":0}'), +(18837, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:09.683902+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:10.020388+00', 336, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18838, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:10.021168+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.059936+00', 4038, NULL), +(18839, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.179736+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.504878+00', 325, NULL), +(18840, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.17977+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.412882+00', 233, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18841, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.412959+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.432562+00', 19, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18842, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.43267+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:19:14.504801+00', 72, '{"total-tables":8,"tables-classified":0}'), +(18843, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:00.356204+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:19.99867+00', 19642, NULL), +(18844, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:00.356243+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:00.361144+00', 4, '{"timezone-id":null}'), +(18845, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:00.361257+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:00.902184+00', 540, '{"updated-tables":0,"total-tables":4}'), +(18846, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:00.902284+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:19.99111+00', 19088, '{"total-fields":39,"updated-fields":0}'), +(18847, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:19.991214+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:19.996365+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18848, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:19.9965+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:19.998613+00', 2, NULL), +(18849, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.230151+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.299709+00', 69, NULL), +(18850, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.230184+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.278479+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18851, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.278629+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.284565+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(18852, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.284654+00', TIMESTAMP WITH TIME ZONE '2023-01-18 09:49:20.299632+00', 14, '{"total-tables":4,"tables-classified":0}'), +(18853, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 10:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:00:00.394+00', 293, NULL), +(18854, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 10:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:00:00.393+00', 262, NULL), +(18855, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:00.25381+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:07.905064+00', 7651, NULL), +(18856, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:00.25858+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:01.134296+00', 875, '{"timezone-id":"UTC"}'), +(18857, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:01.137899+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:01.534067+00', 396, '{"updated-tables":0,"total-tables":8}'), +(18858, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:01.534423+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:06.764629+00', 5230, '{"total-fields":71,"updated-fields":0}'), +(18859, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:06.764994+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:06.978498+00', 213, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18860, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:06.979113+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:07.903788+00', 924, NULL), +(18861, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.212939+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.353725+00', 140, NULL), +(18862, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.213011+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.325195+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18863, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.325302+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.334614+00', 9, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18864, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.334866+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:19:08.353643+00', 18, '{"total-tables":8,"tables-classified":0}'), +(18865, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:00.655191+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.846632+00', 15191, NULL), +(18866, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:00.655238+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:00.658545+00', 3, '{"timezone-id":null}'), +(18867, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:00.658649+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:01.575131+00', 916, '{"updated-tables":0,"total-tables":4}'), +(18868, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:01.575328+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.83699+00', 14261, '{"total-fields":39,"updated-fields":0}'), +(18869, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.837276+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.844502+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18870, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.844629+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.846576+00', 1, NULL), +(18871, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.902642+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.95741+00', 54, NULL), +(18872, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.902674+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.945399+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18873, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.945498+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.949751+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(18874, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.949856+00', TIMESTAMP WITH TIME ZONE '2023-01-18 10:49:15.957343+00', 7, '{"total-tables":4,"tables-classified":0}'), +(18875, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 11:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:00:00.661+00', 497, NULL), +(18876, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 11:00:00.185+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:00:00.661+00', 476, NULL), +(18877, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:00.289728+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.69344+00', 6403, NULL), +(18878, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:00.295199+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:00.883095+00', 587, '{"timezone-id":"UTC"}'), +(18879, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:00.886591+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:01.315826+00', 429, '{"updated-tables":0,"total-tables":8}'), +(18880, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:01.316558+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.090507+00', 4773, '{"total-fields":71,"updated-fields":0}'), +(18881, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.091203+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.259503+00', 168, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18882, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.260071+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.693377+00', 433, NULL), +(18883, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.748315+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.837858+00', 89, NULL), +(18884, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.748346+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.807434+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18885, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.807529+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.818546+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18886, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.818658+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:19:06.837768+00', 19, '{"total-tables":8,"tables-classified":0}'), +(18887, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:00.290023+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.52321+00', 18233, NULL), +(18888, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:00.290075+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:00.293666+00', 3, '{"timezone-id":null}'), +(18889, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:00.293928+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:00.754574+00', 460, '{"updated-tables":0,"total-tables":4}'), +(18890, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:00.754715+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.517797+00', 17763, '{"total-fields":39,"updated-fields":0}'), +(18891, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.517894+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.521367+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18892, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.521446+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.523146+00', 1, NULL), +(18893, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.603266+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.657942+00', 54, NULL), +(18894, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.603316+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.631283+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18895, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.631387+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.637515+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18896, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.637615+00', TIMESTAMP WITH TIME ZONE '2023-01-18 11:49:18.657866+00', 20, '{"total-tables":4,"tables-classified":0}'), +(18897, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 12:00:00.419+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:00:00.867+00', 448, NULL), +(18898, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 12:00:00.455+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:00:00.865+00', 410, NULL), +(18899, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:00.380158+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.687564+00', 8307, NULL), +(18900, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:00.386511+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:01.123668+00', 737, '{"timezone-id":"UTC"}'), +(18901, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:01.128648+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:01.712226+00', 583, '{"updated-tables":0,"total-tables":8}'), +(18902, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:01.712757+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:07.862245+00', 6149, '{"total-fields":71,"updated-fields":0}'), +(18903, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:07.862799+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.099062+00', 236, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18904, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.099419+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.687259+00', 587, NULL), +(18905, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.789028+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:09.055327+00', 266, NULL), +(18906, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.789072+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.958278+00', 169, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18907, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.958404+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.990371+00', 31, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18908, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:08.990656+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:19:09.055263+00', 64, '{"total-tables":8,"tables-classified":0}'), +(18909, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:00.243569+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.090322+00', 13846, NULL), +(18910, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:00.243615+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:00.245454+00', 1, '{"timezone-id":null}'), +(18911, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:00.245557+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:00.657668+00', 412, '{"updated-tables":0,"total-tables":4}'), +(18912, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:00.657759+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.078526+00', 13420, '{"total-fields":39,"updated-fields":0}'), +(18913, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.078609+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.082504+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18914, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.082592+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.090239+00', 7, NULL), +(18915, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.187866+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.259472+00', 71, NULL), +(18916, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.187907+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.237241+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18917, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.237361+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.24653+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(18918, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.246638+00', TIMESTAMP WITH TIME ZONE '2023-01-18 12:49:14.259403+00', 12, '{"total-tables":4,"tables-classified":0}'), +(18919, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 13:00:00.035+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:00:00.097+00', 62, NULL), +(18920, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 13:00:00.086+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:00:00.482+00', 396, NULL), +(18921, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:02.6975+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.286863+00', 5589, NULL), +(18922, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:02.704637+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:03.310602+00', 605, '{"timezone-id":"UTC"}'), +(18923, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:03.313006+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:03.650189+00', 337, '{"updated-tables":0,"total-tables":8}'), +(18924, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:03.650291+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:07.537889+00', 3887, '{"total-fields":71,"updated-fields":0}'), +(18925, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:07.53825+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:07.704262+00', 166, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18926, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:07.704661+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.286816+00', 582, NULL), +(18927, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.359025+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.487126+00', 128, NULL), +(18928, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.359065+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.417034+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18929, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.417215+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.438805+00', 21, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18930, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.438932+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:19:08.487021+00', 48, '{"total-tables":8,"tables-classified":0}'), +(18931, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:00.21486+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.250978+00', 14036, NULL), +(18932, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:00.214907+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:00.218891+00', 3, '{"timezone-id":null}'), +(18933, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:00.219007+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:00.539654+00', 320, '{"updated-tables":0,"total-tables":4}'), +(18934, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:00.540365+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.233311+00', 13692, '{"total-fields":39,"updated-fields":0}'), +(18935, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.233393+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.246198+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18936, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.246295+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.250902+00', 4, NULL), +(18937, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.329202+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.407731+00', 78, NULL), +(18938, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.329238+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.389191+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18939, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.389482+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.396257+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(18940, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.396384+00', TIMESTAMP WITH TIME ZONE '2023-01-18 13:49:14.407634+00', 11, '{"total-tables":4,"tables-classified":0}'), +(18941, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 14:00:00.459+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:00:01.081+00', 622, NULL), +(18942, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 14:00:00.357+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:00:01.397+00', 1040, NULL), +(18943, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:00.262797+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:06.43977+00', 6176, NULL), +(18944, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:00.265499+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:00.681982+00', 416, '{"timezone-id":"UTC"}'), +(18945, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:00.684316+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:00.901208+00', 216, '{"updated-tables":0,"total-tables":8}'), +(18946, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:00.902157+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:05.20962+00', 4307, '{"total-fields":71,"updated-fields":0}'), +(18947, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:05.210141+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:05.367259+00', 157, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18948, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:05.367397+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:06.439695+00', 1072, NULL), +(18949, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:06.631668+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:07.145178+00', 513, NULL), +(18950, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:06.632164+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:06.926704+00', 294, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18951, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:06.926846+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:07.004026+00', 77, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18952, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:07.004668+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:19:07.145077+00', 140, '{"total-tables":8,"tables-classified":0}'), +(18953, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:00.373856+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:13.946318+00', 13572, NULL), +(18954, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:00.374698+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:00.390261+00', 15, '{"timezone-id":null}'), +(18955, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:00.390681+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:00.697637+00', 306, '{"updated-tables":0,"total-tables":4}'), +(18956, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:00.697801+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:13.941332+00', 13243, '{"total-fields":39,"updated-fields":0}'), +(18957, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:13.941538+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:13.945554+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18958, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:13.945674+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:13.946263+00', 0, NULL), +(18959, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.061676+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.108126+00', 46, NULL), +(18960, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.061706+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.089506+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18961, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.089767+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.097955+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(18962, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.098049+00', TIMESTAMP WITH TIME ZONE '2023-01-18 14:49:14.107996+00', 9, '{"total-tables":4,"tables-classified":0}'), +(18963, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 15:00:00.247+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:00:04.062+00', 3815, NULL), +(18964, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 15:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:00:08.058+00', 7845, NULL), +(18965, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:00.212865+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.370514+00', 7157, NULL), +(18966, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:00.215032+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:00.737311+00', 522, '{"timezone-id":"UTC"}'), +(18967, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:00.737841+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:01.065996+00', 328, '{"updated-tables":0,"total-tables":8}'), +(18968, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:01.066109+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:06.580809+00', 5514, '{"total-fields":71,"updated-fields":0}'), +(18969, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:06.580945+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:06.895108+00', 314, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18970, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:06.895585+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.370438+00', 474, NULL), +(18971, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.547251+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.795514+00', 248, NULL), +(18972, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.547292+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.659644+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18973, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.659778+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.702221+00', 42, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18974, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.702342+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:19:07.795443+00', 93, '{"total-tables":8,"tables-classified":0}'), +(18975, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:01.248264+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.60182+00', 17353, NULL), +(18976, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:01.253868+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:01.348239+00', 94, '{"timezone-id":null}'), +(18977, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:01.355906+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:01.957602+00', 601, '{"updated-tables":0,"total-tables":4}'), +(18978, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:01.957734+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.571843+00', 16614, '{"total-fields":39,"updated-fields":0}'), +(18979, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.572026+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.589686+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(18980, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.589904+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.601744+00', 11, NULL), +(18981, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.948511+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:19.152614+00', 204, NULL), +(18982, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:18.948547+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:19.0874+00', 138, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18983, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:19.087548+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:19.111275+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(18984, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:19.111373+00', TIMESTAMP WITH TIME ZONE '2023-01-18 15:49:19.152505+00', 41, '{"total-tables":4,"tables-classified":0}'), +(18985, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 16:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:00:00.533+00', 423, NULL), +(18986, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 16:00:00.09+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:00:00.643+00', 553, NULL), +(18987, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:00.243889+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:05.99026+00', 5746, NULL), +(18988, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:00.244941+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:00.696573+00', 451, '{"timezone-id":"UTC"}'), +(18989, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:00.699261+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:00.929759+00', 230, '{"updated-tables":0,"total-tables":8}'), +(18990, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:00.930102+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:04.569195+00', 3639, '{"total-fields":71,"updated-fields":0}'), +(18991, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:04.569315+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:04.652382+00', 83, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(18992, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:04.652479+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:05.990197+00', 1337, NULL), +(18993, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.224136+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.649484+00', 425, NULL), +(18994, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.224184+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.49389+00', 269, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(18995, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.494029+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.576729+00', 82, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(18996, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.57715+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:19:06.64936+00', 72, '{"total-tables":8,"tables-classified":0}'), +(18997, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:00.288762+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.813368+00', 11524, NULL), +(18998, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:00.288805+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:00.300962+00', 12, '{"timezone-id":null}'), +(18999, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:00.30107+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:00.941129+00', 640, '{"updated-tables":0,"total-tables":4}'), +(19000, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:00.941224+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.799827+00', 10858, '{"total-fields":39,"updated-fields":0}'), +(19001, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.799936+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.808729+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19002, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.808842+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.813213+00', 4, NULL), +(19003, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.995298+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:12.096711+00', 101, NULL), +(19004, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:11.995334+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:12.067017+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19005, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:12.067129+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:12.075116+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(19006, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:12.075242+00', TIMESTAMP WITH TIME ZONE '2023-01-18 16:49:12.096641+00', 21, '{"total-tables":4,"tables-classified":0}'), +(19007, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 17:00:00.066+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:00:00.373+00', 307, NULL), +(19008, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 17:00:00.087+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:00:00.371+00', 284, NULL), +(19009, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:00.391556+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.726647+00', 6335, NULL), +(19010, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:00.39578+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:00.779322+00', 383, '{"timezone-id":"UTC"}'), +(19011, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:00.781705+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:01.155829+00', 374, '{"updated-tables":0,"total-tables":8}'), +(19012, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:01.156481+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:04.992194+00', 3835, '{"total-fields":71,"updated-fields":0}'), +(19013, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:04.992633+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:05.160877+00', 168, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19014, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:05.161654+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.72658+00', 1564, NULL), +(19015, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.866073+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.98201+00', 115, NULL), +(19016, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.86612+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.951385+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19017, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.951472+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.967527+00', 16, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19018, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.967621+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:19:06.981934+00', 14, '{"total-tables":8,"tables-classified":0}'), +(19019, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:00.188525+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.415033+00', 13226, NULL), +(19020, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:00.188568+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:00.191386+00', 2, '{"timezone-id":null}'), +(19021, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:00.191505+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:00.43015+00', 238, '{"updated-tables":0,"total-tables":4}'), +(19022, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:00.430268+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.408977+00', 12978, '{"total-fields":39,"updated-fields":0}'), +(19023, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.409075+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.413701+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19024, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.413819+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.414973+00', 1, NULL), +(19025, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.497314+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.571631+00', 74, NULL), +(19026, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.497349+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.556625+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19027, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.556806+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.560802+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(19028, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.56088+00', TIMESTAMP WITH TIME ZONE '2023-01-18 17:49:13.57157+00', 10, '{"total-tables":4,"tables-classified":0}'), +(19029, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 18:00:00.095+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:00:00.304+00', 209, NULL), +(19030, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 18:00:00.046+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:00:00.305+00', 259, NULL), +(19031, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:00.392671+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.378314+00', 6985, NULL), +(19032, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:00.398155+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:01.5833+00', 1185, '{"timezone-id":"UTC"}'), +(19033, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:01.587662+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:02.336252+00', 748, '{"updated-tables":0,"total-tables":8}'), +(19034, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:02.336394+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.099102+00', 4762, '{"total-fields":71,"updated-fields":0}'), +(19035, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.099218+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.148707+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19036, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.148878+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.37824+00', 229, NULL), +(19037, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.527265+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.74977+00', 222, NULL), +(19038, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.527304+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.648353+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19039, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.648495+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.689131+00', 40, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19040, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.689221+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:19:07.749695+00', 60, '{"total-tables":8,"tables-classified":0}'), +(19041, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:00.215204+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.112577+00', 12897, NULL), +(19042, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:00.215247+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:00.218369+00', 3, '{"timezone-id":null}'), +(19043, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:00.218478+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:00.502319+00', 283, '{"updated-tables":0,"total-tables":4}'), +(19044, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:00.50241+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.053704+00', 12551, '{"total-fields":39,"updated-fields":0}'), +(19045, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.053781+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.109765+00', 55, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19046, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.109853+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.112515+00', 2, NULL), +(19047, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.611822+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.704539+00', 92, NULL), +(19048, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.611854+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.680631+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19049, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.680746+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.694066+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(19050, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.694189+00', TIMESTAMP WITH TIME ZONE '2023-01-18 18:49:13.704474+00', 10, '{"total-tables":4,"tables-classified":0}'), +(19051, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 19:00:00.318+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:00:01.073+00', 755, NULL), +(19052, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 19:00:00.318+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:00:01.417+00', 1099, NULL), +(19053, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:00.476802+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.789613+00', 5312, NULL), +(19054, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:00.481022+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:01.137565+00', 656, '{"timezone-id":"UTC"}'), +(19055, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:01.145534+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:01.670884+00', 525, '{"updated-tables":0,"total-tables":8}'), +(19056, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:01.671226+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:04.848631+00', 3177, '{"total-fields":71,"updated-fields":0}'), +(19057, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:04.849052+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.092494+00', 243, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19058, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.092924+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.78956+00', 696, NULL), +(19059, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.88149+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.99736+00', 115, NULL), +(19060, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.881528+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.956283+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19061, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.956457+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.970918+00', 14, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19062, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.971035+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:19:05.997272+00', 26, '{"total-tables":8,"tables-classified":0}'), +(19063, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:00.181464+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.879077+00', 10697, NULL), +(19064, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:00.18151+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:00.185325+00', 3, '{"timezone-id":null}'), +(19065, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:00.185577+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:00.692076+00', 506, '{"updated-tables":0,"total-tables":4}'), +(19066, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:00.692258+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.873248+00', 10180, '{"total-fields":39,"updated-fields":0}'), +(19067, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.873649+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.877002+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19068, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.877305+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.878891+00', 1, NULL), +(19069, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.941914+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.997877+00', 55, NULL), +(19070, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.94194+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.984032+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19071, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.984159+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.990117+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(19072, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.990354+00', TIMESTAMP WITH TIME ZONE '2023-01-18 19:49:10.997798+00', 7, '{"total-tables":4,"tables-classified":0}'), +(19073, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 20:00:03.881+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:00:04.68+00', 799, NULL), +(19074, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 20:00:01.525+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:00:04.936+00', 3411, NULL), +(19075, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:00.22791+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.155229+00', 4927, NULL), +(19076, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:00.231248+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:00.69446+00', 463, '{"timezone-id":"UTC"}'), +(19077, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:00.69782+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:01.086797+00', 388, '{"updated-tables":0,"total-tables":8}'), +(19078, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:01.087224+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:04.540462+00', 3453, '{"total-fields":71,"updated-fields":0}'), +(19079, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:04.540837+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:04.673405+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19080, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:04.673908+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.155177+00', 481, NULL), +(19081, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.226991+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.613307+00', 386, NULL), +(19082, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.227029+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.543789+00', 316, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19083, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.543879+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.558361+00', 14, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19084, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.558456+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:19:05.613235+00', 54, '{"total-tables":8,"tables-classified":0}'), +(19085, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:00.473046+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.833947+00', 12360, NULL), +(19086, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:00.473116+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:00.480619+00', 7, '{"timezone-id":null}'), +(19087, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:00.480741+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:00.895826+00', 415, '{"updated-tables":0,"total-tables":4}'), +(19088, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:00.896132+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.822667+00', 11926, '{"total-fields":39,"updated-fields":0}'), +(19089, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.822868+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.826913+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19090, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.827+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.83383+00', 6, NULL), +(19091, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.987897+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:13.026604+00', 38, NULL), +(19092, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:12.987994+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:13.015991+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19093, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:13.016123+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:13.019963+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(19094, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:13.020074+00', TIMESTAMP WITH TIME ZONE '2023-01-18 20:49:13.026444+00', 6, '{"total-tables":4,"tables-classified":0}'), +(19095, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:01.129+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:02.757+00', 1628, NULL), +(19096, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:01.161+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:02.743+00', 1582, NULL), +(19097, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:03.315955+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:26.556597+00', 23240, NULL), +(19098, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:03.702117+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:10.743913+00', 7041, '{"deleted":0}'), +(19099, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:10.747332+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:00:26.556492+00', 15809, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(19100, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.039404+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.779893+00', 740, NULL), +(19101, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.039502+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.082382+00', 42, '{"timezone-id":"UTC"}'), +(19102, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.082747+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.242979+00', 160, '{"updated-tables":0,"total-tables":8}'), +(19103, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.2431+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.56556+00', 322, '{"total-fields":71,"updated-fields":0}'), +(19104, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.565805+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.636129+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19105, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.636283+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.779798+00', 143, NULL), +(19106, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.806453+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.904261+00', 97, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19107, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.806491+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.86816+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19108, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.868335+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.883597+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(19109, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.883747+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:19:00.904168+00', 20, '{"total-tables":8,"tables-classified":0}'), +(19110, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:00.731742+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.549581+00', 13817, NULL), +(19111, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:00.737657+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:00.775184+00', 37, '{"timezone-id":null}'), +(19112, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:00.776721+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:01.252582+00', 475, '{"updated-tables":0,"total-tables":4}'), +(19113, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:01.252989+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.528836+00', 13275, '{"total-fields":39,"updated-fields":0}'), +(19114, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.52898+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.543407+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19115, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.543573+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.549512+00', 5, NULL), +(19116, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.842453+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.966398+00', 123, NULL), +(19117, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.842489+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.924956+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19118, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.925097+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.940326+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(19119, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.940609+00', TIMESTAMP WITH TIME ZONE '2023-01-18 21:49:14.966151+00', 25, '{"total-tables":4,"tables-classified":0}'), +(19120, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 22:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:00:00.616+00', 466, NULL), +(19121, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 22:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:00:00.862+00', 731, NULL), +(19122, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:00.374616+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.908225+00', 6533, NULL), +(19123, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:00.379422+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:01.095743+00', 716, '{"timezone-id":"UTC"}'), +(19124, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:01.09867+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:01.574658+00', 475, '{"updated-tables":0,"total-tables":8}'), +(19125, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:01.575167+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.061249+00', 4486, '{"total-fields":71,"updated-fields":0}'), +(19126, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.061849+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.242243+00', 180, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19127, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.242671+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.908157+00', 665, NULL), +(19128, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.973847+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:07.1636+00', 189, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19129, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:06.973892+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:07.029447+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19130, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:07.02953+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:07.144927+00', 115, '{"fields-classified":0,"fields-failed":0}'), +(19131, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:07.145013+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:19:07.163394+00', 18, '{"total-tables":8,"tables-classified":0}'), +(19132, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:00.186088+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.036403+00', 15850, NULL), +(19133, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:00.18613+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:00.188049+00', 1, '{"timezone-id":null}'), +(19134, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:00.188154+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:00.584853+00', 396, '{"updated-tables":0,"total-tables":4}'), +(19135, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:00.584952+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:15.96778+00', 15382, '{"total-fields":39,"updated-fields":0}'), +(19136, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:15.967881+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.015556+00', 47, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19137, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.015666+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.036305+00', 20, NULL), +(19138, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.367709+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.51189+00', 144, NULL), +(19139, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.367749+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.469754+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19140, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.47255+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.478425+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(19141, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.478505+00', TIMESTAMP WITH TIME ZONE '2023-01-18 22:49:16.511802+00', 33, '{"total-tables":4,"tables-classified":0}'), +(19142, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 23:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:00:00.438+00', 322, NULL), +(19143, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-18 23:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:00:00.434+00', 305, NULL), +(19144, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:00.225218+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:05.950798+00', 5725, NULL), +(19145, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:00.228768+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:00.705322+00', 476, '{"timezone-id":"UTC"}'), +(19146, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:00.707101+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:02.196807+00', 1489, '{"updated-tables":0,"total-tables":8}'), +(19147, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:02.197189+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:05.361094+00', 3163, '{"total-fields":71,"updated-fields":0}'), +(19148, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:05.361436+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:05.567491+00', 206, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19149, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:05.567639+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:05.950574+00', 382, NULL), +(19150, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.015218+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.130066+00', 114, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19151, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.015533+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.098117+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19152, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.09842+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.11195+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(19153, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.112032+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:19:06.130013+00', 17, '{"total-tables":8,"tables-classified":0}'), +(19154, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:00.166868+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:10.920151+00', 10753, NULL), +(19155, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:00.166923+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:00.170574+00', 3, '{"timezone-id":null}'), +(19156, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:00.171096+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:00.477975+00', 306, '{"updated-tables":0,"total-tables":4}'), +(19157, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:00.478077+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:10.914259+00', 10436, '{"total-fields":39,"updated-fields":0}'), +(19158, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:10.91438+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:10.918273+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19159, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:10.918373+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:10.920098+00', 1, NULL), +(19160, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.072044+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.14508+00', 73, NULL), +(19161, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.072073+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.101647+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19162, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.101796+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.109881+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(19163, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.110048+00', TIMESTAMP WITH TIME ZONE '2023-01-18 23:49:11.144958+00', 34, '{"total-tables":4,"tables-classified":0}'), +(19164, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 00:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:00:00.736+00', 603, NULL), +(19165, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 00:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:00:00.825+00', 728, NULL), +(19166, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:00.723437+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:09.962693+00', 9239, NULL), +(19167, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:00.728556+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:01.84407+00', 1115, '{"timezone-id":"UTC"}'), +(19168, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:01.849106+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:02.823595+00', 974, '{"updated-tables":0,"total-tables":8}'), +(19169, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:02.829608+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:08.52055+00', 5690, '{"total-fields":71,"updated-fields":0}'), +(19170, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:08.520985+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:09.000803+00', 479, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19171, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:09.000974+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:09.962625+00', 961, NULL), +(19172, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.209177+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.470109+00', 260, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19173, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.209211+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.373968+00', 164, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19174, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.37408+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.411142+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(19175, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.411256+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:19:10.470022+00', 58, '{"total-tables":8,"tables-classified":0}'), +(19176, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:00.790414+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.372497+00', 13582, NULL), +(19177, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:00.795857+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:00.801903+00', 6, '{"timezone-id":null}'), +(19178, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:00.802254+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:01.42523+00', 622, '{"updated-tables":0,"total-tables":4}'), +(19179, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:01.425339+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.351622+00', 12926, '{"total-fields":39,"updated-fields":0}'), +(19180, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.351959+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.368581+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19181, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.368691+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.372371+00', 3, NULL), +(19182, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.954619+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:15.092951+00', 138, NULL), +(19183, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:14.954656+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:15.046236+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19184, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:15.046338+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:15.058507+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(19185, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:15.058597+00', TIMESTAMP WITH TIME ZONE '2023-01-19 00:49:15.092768+00', 34, '{"total-tables":4,"tables-classified":0}'), +(19186, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 01:00:00.075+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:00:00.824+00', 749, NULL), +(19187, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 01:00:00.062+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:00:00.87+00', 808, NULL), +(19188, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:00.251259+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.602663+00', 5351, NULL), +(19189, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:00.255938+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:00.718231+00', 462, '{"timezone-id":"UTC"}'), +(19190, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:00.721374+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:01.044524+00', 323, '{"updated-tables":0,"total-tables":8}'), +(19191, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:01.046656+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.159677+00', 4113, '{"total-fields":71,"updated-fields":0}'), +(19192, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.159777+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.321481+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19193, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.322178+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.602547+00', 280, NULL), +(19194, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.668082+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.766866+00', 98, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19195, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.668118+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.715277+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19196, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.715397+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.726911+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(19197, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.727002+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:19:05.76676+00', 39, '{"total-tables":8,"tables-classified":0}'), +(19198, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:00.197966+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.772519+00', 10574, NULL), +(19199, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:00.198016+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:00.204864+00', 6, '{"timezone-id":null}'), +(19200, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:00.205069+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:00.582435+00', 377, '{"updated-tables":0,"total-tables":4}'), +(19201, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:00.582824+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.765119+00', 10182, '{"total-fields":39,"updated-fields":0}'), +(19202, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.765248+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.769494+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19203, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.769605+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.772446+00', 2, NULL), +(19204, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.806894+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.850486+00', 43, NULL), +(19205, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.806926+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.837103+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19206, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.837203+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.840609+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(19207, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.840689+00', TIMESTAMP WITH TIME ZONE '2023-01-19 01:49:10.850425+00', 9, '{"total-tables":4,"tables-classified":0}'), +(19208, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:00.284+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:02.064+00', 1780, NULL), +(19209, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:00.332+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:02.064+00', 1732, NULL), +(19210, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:03.328743+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:17.567409+00', 14238, NULL), +(19211, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:03.335723+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:07.967885+00', 4632, '{"deleted":0}'), +(19212, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:07.970452+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:00:17.567113+00', 9596, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(19213, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:00.071079+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.326496+00', 1255, NULL), +(19214, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:00.071172+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:00.485744+00', 414, '{"timezone-id":"UTC"}'), +(19215, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:00.486333+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:00.69418+00', 207, '{"updated-tables":0,"total-tables":8}'), +(19216, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:00.694341+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.073105+00', 378, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19217, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.073408+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.144503+00', 71, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19218, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.144797+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.326184+00', 181, NULL), +(19219, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.357408+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.491994+00', 134, NULL), +(19220, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.357443+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.432965+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19221, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.433047+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.45521+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(19222, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.45547+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:19:01.491925+00', 36, '{"total-tables":8,"tables-classified":0}'), +(19223, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:00.834137+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.56818+00', 16734, NULL), +(19224, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:00.842915+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:00.889633+00', 46, '{"timezone-id":null}'), +(19225, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:00.893874+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:01.623997+00', 730, '{"updated-tables":0,"total-tables":4}'), +(19226, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:01.62412+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.531634+00', 15907, '{"total-fields":39,"updated-fields":0}'), +(19227, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.5318+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.55609+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19228, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.556241+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.568096+00', 11, NULL), +(19229, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.882253+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:18.050196+00', 167, NULL), +(19230, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.882295+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.997552+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19231, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:17.99786+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:18.017436+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(19232, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:18.017671+00', TIMESTAMP WITH TIME ZONE '2023-01-19 02:49:18.049936+00', 32, '{"total-tables":4,"tables-classified":0}'), +(19233, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 03:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:00:00.832+00', 648, NULL), +(19234, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 03:00:00.361+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:00:00.83+00', 469, NULL), +(19235, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:00.840823+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:06.943933+00', 6103, NULL), +(19236, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:00.84325+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:01.607601+00', 764, '{"timezone-id":"UTC"}'), +(19237, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:01.611315+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:02.006886+00', 395, '{"updated-tables":0,"total-tables":8}'), +(19238, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:02.007405+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:06.460939+00', 4453, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19239, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:06.461292+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:06.627822+00', 166, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19240, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:06.628482+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:06.943831+00', 315, NULL), +(19241, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.038431+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.127956+00', 89, NULL), +(19242, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.038465+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.10125+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19243, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.101427+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.110014+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(19244, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.110178+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:19:07.127848+00', 17, '{"total-tables":8,"tables-classified":0}'), +(19245, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:00.748878+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.105508+00', 12356, NULL), +(19246, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:00.757519+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:00.769375+00', 11, '{"timezone-id":null}'), +(19247, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:00.770719+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:01.311383+00', 540, '{"updated-tables":0,"total-tables":4}'), +(19248, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:01.311485+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.088286+00', 11776, '{"total-fields":39,"updated-fields":0}'), +(19249, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.088497+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.10083+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19250, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.100941+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.105433+00', 4, NULL), +(19251, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.370721+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.604987+00', 234, NULL), +(19252, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.370757+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.530349+00', 159, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19253, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.530554+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.544187+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(19254, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.544279+00', TIMESTAMP WITH TIME ZONE '2023-01-19 03:49:13.604895+00', 60, '{"total-tables":4,"tables-classified":0}'), +(19255, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 04:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:00:00.606+00', 446, NULL), +(19256, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 04:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:00:00.728+00', 570, NULL), +(19257, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:00.201741+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.052464+00', 5850, NULL), +(19258, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:00.205304+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:00.645957+00', 440, '{"timezone-id":"UTC"}'), +(19259, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:00.650454+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:01.333294+00', 682, '{"updated-tables":0,"total-tables":8}'), +(19260, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:01.333775+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:05.540029+00', 4206, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19261, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:05.540531+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:05.749462+00', 208, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19262, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:05.750107+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.052388+00', 302, NULL), +(19263, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.177677+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.325054+00', 147, NULL), +(19264, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.177709+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.273453+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19265, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.273573+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.288845+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(19266, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.288924+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:19:06.324662+00', 35, '{"total-tables":8,"tables-classified":0}'), +(19267, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:00.274476+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.575266+00', 10300, NULL), +(19268, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:00.274518+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:00.278391+00', 3, '{"timezone-id":null}'), +(19269, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:00.278498+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:00.689324+00', 410, '{"updated-tables":0,"total-tables":4}'), +(19270, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:00.689558+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.570301+00', 9880, '{"total-fields":39,"updated-fields":0}'), +(19271, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.570433+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.572861+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19272, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.57303+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.575091+00', 2, NULL), +(19273, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.614145+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.650828+00', 36, NULL), +(19274, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.614176+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.640792+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19275, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.640976+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.645234+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19276, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.645321+00', TIMESTAMP WITH TIME ZONE '2023-01-19 04:49:10.650698+00', 5, '{"total-tables":4,"tables-classified":0}'), +(19277, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 05:00:00.037+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:00:00.088+00', 51, NULL), +(19278, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 05:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:00:00.538+00', 423, NULL), +(19279, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:00.273342+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.804611+00', 6531, NULL), +(19280, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:00.2775+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:01.093448+00', 815, '{"timezone-id":"UTC"}'), +(19281, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:01.095417+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:01.483678+00', 388, '{"updated-tables":0,"total-tables":8}'), +(19282, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:01.484013+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.196478+00', 4712, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19283, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.19685+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.355649+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19284, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.356131+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.804567+00', 448, NULL), +(19285, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.961889+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:07.111505+00', 149, NULL), +(19286, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:06.961923+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:07.039871+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19287, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:07.040296+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:07.057147+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(19288, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:07.057229+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:19:07.111399+00', 54, '{"total-tables":8,"tables-classified":0}'), +(19289, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:00.168512+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.853455+00', 9684, NULL), +(19290, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:00.168561+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:00.172374+00', 3, '{"timezone-id":null}'), +(19291, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:00.172618+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:00.526723+00', 354, '{"updated-tables":0,"total-tables":4}'), +(19292, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:00.526868+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.845132+00', 9318, '{"total-fields":39,"updated-fields":0}'), +(19293, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.845232+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.847597+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19294, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.847838+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.853366+00', 5, NULL), +(19295, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.987576+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:10.053607+00', 66, NULL), +(19296, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:09.987608+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:10.032475+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19297, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:10.033815+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:10.04047+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(19298, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:10.04057+00', TIMESTAMP WITH TIME ZONE '2023-01-19 05:49:10.053539+00', 12, '{"total-tables":4,"tables-classified":0}'), +(19299, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 06:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:00:00.862+00', 707, NULL), +(19300, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 06:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:00:01.019+00', 864, NULL), +(19301, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:00.367342+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.646974+00', 7279, NULL), +(19302, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:00.371746+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:01.031184+00', 659, '{"timezone-id":"UTC"}'), +(19303, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:01.034517+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:01.70255+00', 668, '{"updated-tables":0,"total-tables":8}'), +(19304, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:01.702996+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.247572+00', 5544, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19305, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.247805+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.534286+00', 286, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19306, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.534406+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.646915+00', 112, NULL), +(19307, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.752025+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.910295+00', 158, NULL), +(19308, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.752062+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.813429+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19309, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.813546+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.854166+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(19310, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.854251+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:19:07.910221+00', 55, '{"total-tables":8,"tables-classified":0}'), +(19311, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:00.202316+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.298598+00', 15096, NULL), +(19312, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:00.202359+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:00.20452+00', 2, '{"timezone-id":null}'), +(19313, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:00.204774+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:00.641341+00', 436, '{"updated-tables":0,"total-tables":4}'), +(19314, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:00.641427+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.280696+00', 14639, '{"total-fields":39,"updated-fields":0}'), +(19315, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.28081+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.288765+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19316, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.288863+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.298497+00', 9, NULL), +(19317, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.486678+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.566343+00', 79, NULL), +(19318, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.48672+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.533765+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19319, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.534133+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.546053+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(19320, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.54688+00', TIMESTAMP WITH TIME ZONE '2023-01-19 06:49:15.566208+00', 19, '{"total-tables":4,"tables-classified":0}'), +(19321, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 07:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:00:01.418+00', 1280, NULL), +(19322, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 07:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:00:01.607+00', 1469, NULL), +(19323, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:00.378719+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.202396+00', 4823, NULL), +(19324, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:00.383554+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:01.140167+00', 756, '{"timezone-id":"UTC"}'), +(19325, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:01.142294+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:01.572898+00', 430, '{"updated-tables":0,"total-tables":8}'), +(19326, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:01.573398+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:04.687958+00', 3114, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19327, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:04.688318+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:04.819542+00', 131, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19328, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:04.819894+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.202346+00', 382, NULL), +(19329, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.292085+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.45188+00', 159, NULL), +(19330, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.292185+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.382008+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19331, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.382089+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.417662+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(19332, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.417755+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:19:05.451817+00', 34, '{"total-tables":8,"tables-classified":0}'), +(19333, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:00.222124+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.781459+00', 9559, NULL), +(19334, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:00.222166+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:00.225922+00', 3, '{"timezone-id":null}'), +(19335, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:00.226051+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:00.620791+00', 394, '{"updated-tables":0,"total-tables":4}'), +(19336, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:00.620868+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.774565+00', 9153, '{"total-fields":39,"updated-fields":0}'), +(19337, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.774658+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.779+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19338, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.779216+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.781408+00', 2, NULL), +(19339, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.913126+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.967754+00', 54, NULL), +(19340, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.913161+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.95434+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19341, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.954529+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.960363+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(19342, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.960537+00', TIMESTAMP WITH TIME ZONE '2023-01-19 07:49:09.967672+00', 7, '{"total-tables":4,"tables-classified":0}'), +(19343, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 08:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:00:01.173+00', 985, NULL), +(19344, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 08:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:00:01.61+00', 1422, NULL), +(19345, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:00.338587+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.728005+00', 6389, NULL), +(19346, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:00.341741+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:01.068295+00', 726, '{"timezone-id":"UTC"}'), +(19347, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:01.07165+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:01.756624+00', 684, '{"updated-tables":0,"total-tables":8}'), +(19348, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:01.757219+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.011574+00', 4254, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19349, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.011892+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.237017+00', 225, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19350, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.23765+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.727924+00', 490, NULL), +(19351, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.844549+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.986373+00', 141, NULL), +(19352, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.844586+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.916767+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19353, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.916874+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.937861+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(19354, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.93903+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:19:06.986267+00', 47, '{"total-tables":8,"tables-classified":0}'), +(19355, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:00.414299+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:13.961811+00', 13547, NULL), +(19356, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:00.414338+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:00.416261+00', 1, '{"timezone-id":null}'), +(19357, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:00.416343+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:00.922072+00', 505, '{"updated-tables":0,"total-tables":4}'), +(19358, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:00.922149+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:13.955201+00', 13033, '{"total-fields":39,"updated-fields":0}'), +(19359, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:13.955331+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:13.958487+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19360, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:13.958587+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:13.961735+00', 3, NULL), +(19361, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.119002+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.207212+00', 88, NULL), +(19362, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.119038+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.181768+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19363, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.181871+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.189894+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(19364, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.190793+00', TIMESTAMP WITH TIME ZONE '2023-01-19 08:49:14.207137+00', 16, '{"total-tables":4,"tables-classified":0}'), +(19365, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 09:00:00.022+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:00:00.071+00', 49, NULL), +(19366, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 09:00:00.065+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:00:00.757+00', 692, NULL), +(19367, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:00.341559+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.128975+00', 6787, NULL), +(19368, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:00.347846+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:00.971892+00', 624, '{"timezone-id":"UTC"}'), +(19369, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:00.974441+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:01.427126+00', 452, '{"updated-tables":0,"total-tables":8}'), +(19370, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:01.427737+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:06.655168+00', 5227, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19371, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:06.655319+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:06.808982+00', 153, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19372, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:06.809142+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.128926+00', 319, NULL), +(19373, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.312148+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.507308+00', 195, NULL), +(19374, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.312206+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.454554+00', 142, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19375, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.454694+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.4741+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(19376, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.474193+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:19:07.507244+00', 33, '{"total-tables":8,"tables-classified":0}'), +(19377, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:00.190839+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.563843+00', 12373, NULL), +(19378, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:00.190885+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:00.198069+00', 7, '{"timezone-id":null}'), +(19379, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:00.198198+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:00.627501+00', 429, '{"updated-tables":0,"total-tables":4}'), +(19380, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:00.627583+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.548319+00', 11920, '{"total-fields":39,"updated-fields":0}'), +(19381, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.548485+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.559612+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19382, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.559713+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.56376+00', 4, NULL), +(19383, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.68209+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.756082+00', 73, NULL), +(19384, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.682134+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.735727+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19385, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.735882+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.740693+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19386, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.740809+00', TIMESTAMP WITH TIME ZONE '2023-01-19 09:49:12.756+00', 15, '{"total-tables":4,"tables-classified":0}'), +(19387, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 10:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:00:00.652+00', 475, NULL), +(19388, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 10:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:00:00.81+00', 645, NULL), +(19389, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:00.249623+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.215061+00', 5965, NULL), +(19390, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:00.253697+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:00.973915+00', 720, '{"timezone-id":"UTC"}'), +(19391, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:00.975765+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:01.462981+00', 487, '{"updated-tables":0,"total-tables":8}'), +(19392, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:01.463535+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:05.660199+00', 4196, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19393, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:05.660937+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:05.827352+00', 166, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19394, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:05.827892+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.215008+00', 387, NULL), +(19395, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.324929+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.486966+00', 162, NULL), +(19396, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.324977+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.43268+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19397, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.432823+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.450504+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(19398, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.450644+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:19:06.486829+00', 36, '{"total-tables":8,"tables-classified":0}'), +(19399, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:00.398146+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.057535+00', 13659, NULL), +(19400, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:00.39902+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:00.426723+00', 27, '{"timezone-id":null}'), +(19401, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:00.427772+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:01.430341+00', 1002, '{"updated-tables":0,"total-tables":4}'), +(19402, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:01.43047+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.046339+00', 12615, '{"total-fields":39,"updated-fields":0}'), +(19403, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.046478+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.052775+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19404, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.052884+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.05745+00', 4, NULL), +(19405, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.244666+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.309702+00', 65, NULL), +(19406, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.244705+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.288827+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19407, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.288927+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.293568+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19408, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.293659+00', TIMESTAMP WITH TIME ZONE '2023-01-19 10:49:14.309623+00', 15, '{"total-tables":4,"tables-classified":0}'), +(19409, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 11:00:00.872+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:00:02.714+00', 1842, NULL), +(19410, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 11:00:00.872+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:00:03.071+00', 2199, NULL), +(19411, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:00.343992+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:06.673423+00', 6329, NULL), +(19412, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:00.349171+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:00.626918+00', 277, '{"timezone-id":"UTC"}'), +(19413, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:00.629731+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:00.893562+00', 263, '{"updated-tables":0,"total-tables":8}'), +(19414, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:00.89414+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:05.873209+00', 4979, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19415, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:05.873361+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:06.080476+00', 207, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19416, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:06.08139+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:06.673183+00', 591, NULL), +(19417, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.010811+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.14888+00', 138, NULL), +(19418, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.010852+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.103369+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19419, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.103667+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.119548+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(19420, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.119815+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:19:07.148773+00', 28, '{"total-tables":8,"tables-classified":0}'), +(19421, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:00.22493+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.430325+00', 19205, NULL), +(19422, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:00.225+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:00.241759+00', 16, '{"timezone-id":null}'), +(19423, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:00.241903+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:00.921836+00', 679, '{"updated-tables":0,"total-tables":4}'), +(19424, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:00.921909+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.422169+00', 18500, '{"total-fields":39,"updated-fields":0}'), +(19425, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.422317+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.426223+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19426, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.426472+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.430086+00', 3, NULL), +(19427, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.596693+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.664575+00', 67, NULL), +(19428, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.596953+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.638205+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19429, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.638405+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.646484+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(19430, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.646607+00', TIMESTAMP WITH TIME ZONE '2023-01-19 11:49:19.664362+00', 17, '{"total-tables":4,"tables-classified":0}'), +(19431, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 12:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:00:01.216+00', 1002, NULL), +(19432, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 12:00:00.239+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:00:01.215+00', 976, NULL), +(19433, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:00.582027+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.107826+00', 7525, NULL), +(19434, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:00.58871+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:01.352393+00', 763, '{"timezone-id":"UTC"}'), +(19435, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:01.357498+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:02.042532+00', 685, '{"updated-tables":0,"total-tables":8}'), +(19436, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:02.04293+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:07.473338+00', 5430, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19437, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:07.473865+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:07.717134+00', 243, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19438, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:07.717639+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.107751+00', 390, NULL), +(19439, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.237194+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.568514+00', 331, NULL), +(19440, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.237231+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.442945+00', 205, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19441, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.444304+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.468152+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(19442, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.46826+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:19:08.568392+00', 100, '{"total-tables":8,"tables-classified":0}'), +(19443, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:00.231124+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.108793+00', 13877, NULL), +(19444, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:00.231161+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:00.233112+00', 1, '{"timezone-id":null}'), +(19445, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:00.23331+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:00.604471+00', 371, '{"updated-tables":0,"total-tables":4}'), +(19446, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:00.604572+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.10518+00', 13500, '{"total-fields":39,"updated-fields":0}'), +(19447, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.105322+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.10739+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19448, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.107581+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.108642+00', 1, NULL), +(19449, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.15919+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.195099+00', 35, NULL), +(19450, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.159231+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.185932+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19451, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.186144+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.189759+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(19452, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.189848+00', TIMESTAMP WITH TIME ZONE '2023-01-19 12:49:14.19503+00', 5, '{"total-tables":4,"tables-classified":0}'), +(19453, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 13:00:00.04+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:00:00.594+00', 554, NULL), +(19454, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 13:00:00.067+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:00:00.594+00', 527, NULL), +(19455, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:00.249819+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.378784+00', 6128, NULL), +(19456, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:00.257884+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:00.914157+00', 656, '{"timezone-id":"UTC"}'), +(19457, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:00.917238+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:01.395864+00', 478, '{"updated-tables":0,"total-tables":8}'), +(19458, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:01.39625+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:05.486692+00', 4090, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19459, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:05.487024+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.17193+00', 684, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19460, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.172114+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.378697+00', 206, NULL), +(19461, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.454864+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.608709+00', 153, NULL), +(19462, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.454897+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.525594+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19463, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.525911+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.538362+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(19464, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.538649+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:19:06.6086+00', 69, '{"total-tables":8,"tables-classified":0}'), +(19465, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:00.306155+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.405928+00', 14099, NULL), +(19466, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:00.306206+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:00.312539+00', 6, '{"timezone-id":null}'), +(19467, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:00.312674+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:01.058929+00', 746, '{"updated-tables":0,"total-tables":4}'), +(19468, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:01.05905+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.402006+00', 13342, '{"total-fields":39,"updated-fields":0}'), +(19469, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.402162+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.404559+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19470, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.404666+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.405878+00', 1, NULL), +(19471, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.459267+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.542871+00', 83, NULL), +(19472, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.459298+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.516932+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19473, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.517033+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.531842+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(19474, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.531964+00', TIMESTAMP WITH TIME ZONE '2023-01-19 13:49:14.542807+00', 10, '{"total-tables":4,"tables-classified":0}'), +(19475, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 14:00:00.386+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:00:02.655+00', 2269, NULL), +(19476, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 14:00:00.376+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:00:03.379+00', 3003, NULL), +(19477, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:00.330451+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.473134+00', 8142, NULL), +(19478, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:00.334615+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:01.333426+00', 998, '{"timezone-id":"UTC"}'), +(19479, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:01.336682+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:02.212183+00', 875, '{"updated-tables":0,"total-tables":8}'), +(19480, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:02.212957+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:07.656604+00', 5443, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19481, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:07.658123+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:07.928396+00', 270, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19482, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:07.930231+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.473069+00', 542, NULL), +(19483, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.67442+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.985982+00', 311, NULL), +(19484, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.674464+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.878624+00', 204, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19485, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.87873+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.902261+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(19486, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.902354+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:19:08.985907+00', 83, '{"total-tables":8,"tables-classified":0}'), +(19487, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:00.310233+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.41179+00', 13101, NULL), +(19488, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:00.310285+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:00.314485+00', 4, '{"timezone-id":null}'), +(19489, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:00.314895+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:01.013884+00', 698, '{"updated-tables":0,"total-tables":4}'), +(19490, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:01.014218+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.406987+00', 12392, '{"total-fields":39,"updated-fields":0}'), +(19491, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.407138+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.409565+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19492, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.409703+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.411688+00', 1, NULL), +(19493, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.480262+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.58692+00', 106, NULL), +(19494, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.48029+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.557969+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19495, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.558049+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.567727+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(19496, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.56783+00', TIMESTAMP WITH TIME ZONE '2023-01-19 14:49:13.586854+00', 19, '{"total-tables":4,"tables-classified":0}'), +(19497, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 15:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:00:00.682+00', 538, NULL), +(19498, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 15:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:00:00.68+00', 509, NULL), +(19499, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:00.665832+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.69909+00', 9033, NULL), +(19500, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:00.672303+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:01.261258+00', 588, '{"timezone-id":"UTC"}'), +(19501, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:01.265248+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:02.09812+00', 832, '{"updated-tables":0,"total-tables":8}'), +(19502, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:02.099+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:08.946341+00', 6847, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19503, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:08.947012+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.191614+00', 244, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19504, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.192031+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.699011+00', 506, NULL), +(19505, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.819954+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:10.000446+00', 180, NULL), +(19506, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.819992+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.908178+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19507, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.908655+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.946451+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(19508, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:09.946603+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:19:10.000364+00', 53, '{"total-tables":8,"tables-classified":0}'), +(19509, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:00.125981+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.019195+00', 10893, NULL), +(19510, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:00.126025+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:00.12823+00', 2, '{"timezone-id":null}'), +(19511, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:00.128342+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:00.34841+00', 220, '{"updated-tables":0,"total-tables":4}'), +(19512, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:00.348543+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.008262+00', 10659, '{"total-fields":39,"updated-fields":0}'), +(19513, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.008588+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.013104+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19514, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.013186+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.019027+00', 5, NULL), +(19515, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.166385+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.210961+00', 44, NULL), +(19516, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.166418+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.192827+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19517, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.192945+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.197779+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19518, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.197877+00', TIMESTAMP WITH TIME ZONE '2023-01-19 15:49:11.210791+00', 12, '{"total-tables":4,"tables-classified":0}'), +(19519, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 16:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:00:00.765+00', 600, NULL), +(19520, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 16:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:00:00.89+00', 725, NULL), +(19521, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:00.355957+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.55098+00', 4195, NULL), +(19522, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:00.360798+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:00.8154+00', 454, '{"timezone-id":"UTC"}'), +(19523, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:00.818825+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:01.171271+00', 352, '{"updated-tables":0,"total-tables":8}'), +(19524, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:01.171396+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.113098+00', 2941, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19525, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.113562+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.232316+00', 118, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19526, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.232995+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.550926+00', 317, NULL), +(19527, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.61811+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.71017+00', 92, NULL), +(19528, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.618152+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.674706+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19529, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.674815+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.689056+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(19530, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.689157+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:19:04.710073+00', 20, '{"total-tables":8,"tables-classified":0}'), +(19531, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:00.371925+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.212497+00', 16840, NULL), +(19532, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:00.371965+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:00.379305+00', 7, '{"timezone-id":null}'), +(19533, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:00.379422+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:01.129848+00', 750, '{"updated-tables":0,"total-tables":4}'), +(19534, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:01.129958+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.194368+00', 16064, '{"total-fields":39,"updated-fields":0}'), +(19535, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.194498+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.198684+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19536, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.19879+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.212377+00', 13, NULL), +(19537, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.432764+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.623859+00', 191, NULL), +(19538, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.432799+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.490441+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19539, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.490565+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.509893+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(19540, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.509986+00', TIMESTAMP WITH TIME ZONE '2023-01-19 16:49:17.62377+00', 113, '{"total-tables":4,"tables-classified":0}'), +(19541, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 17:00:00.067+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:00:00.61+00', 543, NULL), +(19542, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 17:00:00.078+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:00:00.609+00', 531, NULL), +(19543, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:00.332765+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.32276+00', 6989, NULL), +(19544, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:00.334995+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:00.80499+00', 469, '{"timezone-id":"UTC"}'), +(19545, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:00.805963+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:01.165364+00', 359, '{"updated-tables":0,"total-tables":8}'), +(19546, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:01.165658+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:06.203213+00', 5037, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19547, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:06.203769+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:06.390217+00', 186, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19548, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:06.390712+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.322144+00', 931, NULL), +(19549, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.539493+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.983007+00', 443, NULL), +(19550, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.539533+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.855376+00', 315, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19551, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.855726+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.915359+00', 59, '{"fields-classified":0,"fields-failed":0}'), +(19552, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.91654+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:19:07.982922+00', 66, '{"total-tables":8,"tables-classified":0}'), +(19553, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:00.19491+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.317175+00', 12122, NULL), +(19554, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:00.194959+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:00.197074+00', 2, '{"timezone-id":null}'), +(19555, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:00.197183+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:00.635925+00', 438, '{"updated-tables":0,"total-tables":4}'), +(19556, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:00.635998+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.307376+00', 11671, '{"total-fields":39,"updated-fields":0}'), +(19557, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.3076+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.312813+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19558, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.31292+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.317106+00', 4, NULL), +(19559, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.523152+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.63546+00', 112, NULL), +(19560, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.523188+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.603539+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19561, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.604555+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.616482+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(19562, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.616579+00', TIMESTAMP WITH TIME ZONE '2023-01-19 17:49:12.634787+00', 18, '{"total-tables":4,"tables-classified":0}'), +(19563, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 18:00:00.219+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:00:00.679+00', 460, NULL), +(19564, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 18:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:00:00.903+00', 690, NULL), +(19565, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:00.373928+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.463712+00', 9089, NULL), +(19566, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:00.383417+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:02.522177+00', 2138, '{"timezone-id":"UTC"}'), +(19567, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:02.530364+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:03.363132+00', 832, '{"updated-tables":0,"total-tables":8}'), +(19568, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:03.363816+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.08349+00', 5719, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19569, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.083591+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.155994+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19570, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.156249+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.463658+00', 307, NULL), +(19571, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.590329+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.773739+00', 183, NULL), +(19572, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.590381+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.691127+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19573, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.691419+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.726364+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(19574, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.72644+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:19:09.773667+00', 47, '{"total-tables":8,"tables-classified":0}'), +(19575, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:00.186727+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.472472+00', 10285, NULL), +(19576, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:00.186766+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:00.188598+00', 1, '{"timezone-id":null}'), +(19577, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:00.188703+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:00.576019+00', 387, '{"updated-tables":0,"total-tables":4}'), +(19578, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:00.576094+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.46506+00', 9888, '{"total-fields":39,"updated-fields":0}'), +(19579, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.465167+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.469771+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19580, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.469856+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.472349+00', 2, NULL), +(19581, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.594212+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.654558+00', 60, NULL), +(19582, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.594254+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.632511+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19583, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.632595+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.641564+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(19584, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.641667+00', TIMESTAMP WITH TIME ZONE '2023-01-19 18:49:10.654482+00', 12, '{"total-tables":4,"tables-classified":0}'), +(19585, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 19:00:00.197+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:00:00.981+00', 784, NULL), +(19586, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 19:00:00.198+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:00:00.981+00', 783, NULL), +(19587, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:00.145371+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.924995+00', 4779, NULL), +(19588, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:00.148036+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:00.506874+00', 358, '{"timezone-id":"UTC"}'), +(19589, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:00.50752+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:00.746141+00', 238, '{"updated-tables":0,"total-tables":8}'), +(19590, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:00.7466+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.537788+00', 3791, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19591, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.538363+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.706229+00', 167, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19592, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.706644+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.924953+00', 218, NULL), +(19593, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.996243+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:05.11952+00', 123, NULL), +(19594, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:04.996271+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:05.073621+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19595, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:05.073699+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:05.087223+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(19596, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:05.087294+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:19:05.119452+00', 32, '{"total-tables":8,"tables-classified":0}'), +(19597, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:00.266035+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.807332+00', 14541, NULL), +(19598, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:00.266077+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:00.271872+00', 5, '{"timezone-id":null}'), +(19599, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:00.27198+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:00.861244+00', 589, '{"updated-tables":0,"total-tables":4}'), +(19600, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:00.861385+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.801226+00', 13939, '{"total-fields":39,"updated-fields":0}'), +(19601, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.801325+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.804131+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19602, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.804258+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.807216+00', 2, NULL), +(19603, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.940401+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.978518+00', 38, NULL), +(19604, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.94046+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.966275+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19605, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.966406+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.970585+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19606, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.970707+00', TIMESTAMP WITH TIME ZONE '2023-01-19 19:49:14.978413+00', 7, '{"total-tables":4,"tables-classified":0}'), +(19607, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 20:00:00.183+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:00:01.274+00', 1091, NULL), +(19608, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 20:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:00:01.622+00', 1449, NULL), +(19609, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:00.28534+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:05.888672+00', 5603, NULL), +(19610, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:00.2929+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:01.084459+00', 791, '{"timezone-id":"UTC"}'), +(19611, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:01.086523+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:01.692996+00', 606, '{"updated-tables":0,"total-tables":8}'), +(19612, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:01.693349+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:05.092232+00', 3398, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19613, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:05.092571+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:05.285511+00', 192, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19614, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:05.285881+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:05.888634+00', 602, NULL), +(19615, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.306755+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.563445+00', 256, NULL), +(19616, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.306788+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.47085+00', 164, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19617, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.47096+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.499577+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(19618, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.499657+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:19:06.56337+00', 63, '{"total-tables":8,"tables-classified":0}'), +(19619, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:00.550402+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.01505+00', 14464, NULL), +(19620, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:00.550452+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:00.553224+00', 2, '{"timezone-id":null}'), +(19621, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:00.55332+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:01.215158+00', 661, '{"updated-tables":0,"total-tables":4}'), +(19622, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:01.215289+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:14.985119+00', 13769, '{"total-fields":39,"updated-fields":0}'), +(19623, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:14.985244+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:14.993765+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19624, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:14.993962+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.014975+00', 21, NULL), +(19625, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.214135+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.368215+00', 154, NULL), +(19626, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.214188+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.330069+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19627, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.330198+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.343952+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(19628, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.344031+00', TIMESTAMP WITH TIME ZONE '2023-01-19 20:49:15.368135+00', 24, '{"total-tables":4,"tables-classified":0}'), +(19629, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:00.089+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:00.479+00', 390, NULL), +(19630, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:00.476+00', 358, NULL), +(19631, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:00.51549+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:14.569047+00', 14053, NULL), +(19632, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:00.519633+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:03.452167+00', 2932, '{"deleted":0}'), +(19633, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:03.454757+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:00:14.568964+00', 11114, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(19634, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:00.266187+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.892372+00', 1626, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19635, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:00.266248+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:00.610195+00', 343, '{"timezone-id":"UTC"}'), +(19636, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:00.610313+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.10956+00', 499, '{"updated-tables":0,"total-tables":8}'), +(19637, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.109664+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.589348+00', 479, '{"total-fields":71,"updated-fields":0}'), +(19638, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.589442+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.673856+00', 84, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19639, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.673969+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.89233+00', 218, NULL), +(19640, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.952016+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:02.367225+00', 415, NULL), +(19641, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:01.95205+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:02.302772+00', 350, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19642, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:02.302909+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:02.333526+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(19643, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:02.335886+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:19:02.36716+00', 31, '{"total-tables":8,"tables-classified":0}'), +(19644, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:01.411419+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.3143+00', 17902, NULL), +(19645, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:01.421165+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:01.486189+00', 65, '{"timezone-id":null}'), +(19646, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:01.493405+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:02.55027+00', 1056, '{"updated-tables":0,"total-tables":4}'), +(19647, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:02.550978+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.275862+00', 16724, '{"total-fields":39,"updated-fields":0}'), +(19648, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.27645+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.307415+00', 30, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19649, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.307665+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.31422+00', 6, NULL), +(19650, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.569055+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.701086+00', 132, NULL), +(19651, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.569087+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.661109+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19652, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.661249+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.672922+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(19653, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.673031+00', TIMESTAMP WITH TIME ZONE '2023-01-19 21:49:19.700991+00', 27, '{"total-tables":4,"tables-classified":0}'), +(19654, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 22:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:00:00.61+00', 443, NULL), +(19655, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 22:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:00:00.787+00', 620, NULL), +(19656, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:00.250987+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.213432+00', 4962, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19657, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:00.256034+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:00.763469+00', 507, '{"timezone-id":"UTC"}'), +(19658, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:00.76559+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:01.098174+00', 332, '{"updated-tables":0,"total-tables":8}'), +(19659, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:01.098674+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:04.284143+00', 3185, '{"total-fields":71,"updated-fields":0}'), +(19660, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:04.284523+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:04.453386+00', 168, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19661, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:04.453775+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.213387+00', 759, NULL), +(19662, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.319465+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.467925+00', 148, NULL), +(19663, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.319495+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.404377+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19664, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.40545+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.433407+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(19665, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.433494+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:19:05.467864+00', 34, '{"total-tables":8,"tables-classified":0}'), +(19666, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:00.206464+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.132936+00', 14926, NULL), +(19667, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:00.206506+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:00.208606+00', 2, '{"timezone-id":null}'), +(19668, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:00.208725+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:00.626337+00', 417, '{"updated-tables":0,"total-tables":4}'), +(19669, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:00.626427+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.09416+00', 14467, '{"total-fields":39,"updated-fields":0}'), +(19670, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.094286+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.108807+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19671, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.108932+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.13286+00', 23, NULL), +(19672, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.499474+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.61218+00', 112, NULL), +(19673, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.499522+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.568838+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19674, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.568972+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.585364+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(19675, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.585438+00', TIMESTAMP WITH TIME ZONE '2023-01-19 22:49:15.612114+00', 26, '{"total-tables":4,"tables-classified":0}'), +(19676, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 23:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:00:00.683+00', 551, NULL), +(19677, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-19 23:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:00:00.794+00', 662, NULL), +(19678, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:00.155388+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.343834+00', 5188, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19679, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:00.159149+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:00.468904+00', 309, '{"timezone-id":"UTC"}'), +(19680, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:00.469614+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:00.730878+00', 261, '{"updated-tables":0,"total-tables":8}'), +(19681, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:00.731183+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:04.97528+00', 4244, '{"total-fields":71,"updated-fields":0}'), +(19682, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:04.975426+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.110781+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19683, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.111213+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.343786+00', 232, NULL), +(19684, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.392042+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.478035+00', 85, NULL), +(19685, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.392068+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.43974+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19686, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.439829+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.45494+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(19687, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.455022+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:19:05.47764+00', 22, '{"total-tables":8,"tables-classified":0}'), +(19688, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:00.247462+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.569279+00', 12321, NULL), +(19689, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:00.247808+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:00.252001+00', 4, '{"timezone-id":null}'), +(19690, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:00.252133+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:00.883144+00', 631, '{"updated-tables":0,"total-tables":4}'), +(19691, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:00.88324+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.56274+00', 11679, '{"total-fields":39,"updated-fields":0}'), +(19692, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.562891+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.567422+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19693, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.567568+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.569225+00', 1, NULL), +(19694, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.723263+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.89197+00', 168, NULL), +(19695, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.723295+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.841006+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19696, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.84113+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.867829+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(19697, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.868004+00', TIMESTAMP WITH TIME ZONE '2023-01-19 23:49:12.891912+00', 23, '{"total-tables":4,"tables-classified":0}'), +(19698, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 00:00:00.276+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:00:04.988+00', 4712, NULL), +(19699, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 00:00:00.255+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:00:04.998+00', 4743, NULL), +(19700, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:00.92454+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:13.437122+00', 12512, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19701, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:00.931618+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:02.333206+00', 1401, '{"timezone-id":"UTC"}'), +(19702, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:02.338126+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:02.833854+00', 495, '{"updated-tables":0,"total-tables":8}'), +(19703, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:02.834204+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:12.361224+00', 9527, '{"total-fields":71,"updated-fields":0}'), +(19704, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:12.361493+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:12.701276+00', 339, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19705, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:12.701442+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:13.437056+00', 735, NULL), +(19706, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:13.810847+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:14.223153+00', 412, NULL), +(19707, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:13.810877+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:14.09534+00', 284, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19708, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:14.095735+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:14.159732+00', 63, '{"fields-classified":0,"fields-failed":0}'), +(19709, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:14.160692+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:19:14.223038+00', 62, '{"total-tables":8,"tables-classified":0}'), +(19710, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:00.199652+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.050634+00', 9850, NULL), +(19711, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:00.19969+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:00.201645+00', 1, '{"timezone-id":null}'), +(19712, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:00.20173+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:00.594306+00', 392, '{"updated-tables":0,"total-tables":4}'), +(19713, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:00.594404+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.04087+00', 9446, '{"total-fields":39,"updated-fields":0}'), +(19714, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.041041+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.045391+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19715, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.045478+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.050556+00', 5, NULL), +(19716, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.126186+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.162425+00', 36, NULL), +(19717, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.126222+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.15049+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19718, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.150585+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.155458+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19719, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.155585+00', TIMESTAMP WITH TIME ZONE '2023-01-20 00:49:10.162366+00', 6, '{"total-tables":4,"tables-classified":0}'), +(19720, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 01:00:00.053+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:00:00.653+00', 600, NULL), +(19721, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 01:00:00.07+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:00:00.653+00', 583, NULL), +(19722, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:03.938955+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.761093+00', 6822, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19723, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:03.944125+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:04.842106+00', 897, '{"timezone-id":"UTC"}'), +(19724, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:04.844257+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:05.225568+00', 381, '{"updated-tables":0,"total-tables":8}'), +(19725, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:05.226118+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.466724+00', 5240, '{"total-fields":71,"updated-fields":0}'), +(19726, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.467965+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.609212+00', 141, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19727, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.609387+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.761018+00', 151, NULL), +(19728, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.828811+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:11.005581+00', 176, NULL), +(19729, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.828842+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.963694+00', 134, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19730, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.963794+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.976135+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(19731, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:10.976206+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:19:11.005517+00', 29, '{"total-tables":8,"tables-classified":0}'), +(19732, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:00.212852+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.456755+00', 12243, NULL), +(19733, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:00.212892+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:00.215578+00', 2, '{"timezone-id":null}'), +(19734, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:00.215687+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:00.620172+00', 404, '{"updated-tables":0,"total-tables":4}'), +(19735, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:00.620252+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.450266+00', 11830, '{"total-fields":39,"updated-fields":0}'), +(19736, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.450442+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.453641+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19737, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.453868+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.456683+00', 2, NULL), +(19738, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.565542+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.611093+00', 45, NULL), +(19739, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.565587+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.598806+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19740, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.59892+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.604001+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(19741, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.604097+00', TIMESTAMP WITH TIME ZONE '2023-01-20 01:49:12.61103+00', 6, '{"total-tables":4,"tables-classified":0}'), +(19742, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:00.255+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:00.756+00', 501, NULL), +(19743, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:00.223+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:00.782+00', 559, NULL), +(19744, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:01.022114+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:16.057986+00', 15035, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19745, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:01.025827+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:02.947212+00', 1921, '{"deleted":0}'), +(19746, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:02.949171+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:00:16.057798+00', 13108, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(19747, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:00.155722+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.579303+00', 2423, NULL), +(19748, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:00.156795+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:00.797902+00', 641, '{"timezone-id":"UTC"}'), +(19749, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:00.798205+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:01.872326+00', 1074, '{"updated-tables":0,"total-tables":8}'), +(19750, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:01.872515+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.364707+00', 492, '{"total-fields":71,"updated-fields":0}'), +(19751, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.364985+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.413519+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19752, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.413599+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.579234+00', 165, NULL), +(19753, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.63344+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.863612+00', 230, NULL), +(19754, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.633474+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.779291+00', 145, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19755, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.779394+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.795635+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(19756, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.795726+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:19:02.86355+00', 67, '{"total-tables":8,"tables-classified":0}'), +(19757, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:01.117468+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:18.745535+00', 17628, NULL), +(19758, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:01.125404+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:01.213097+00', 87, '{"timezone-id":null}'), +(19759, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:01.216718+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:02.180079+00', 963, '{"updated-tables":0,"total-tables":4}'), +(19760, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:02.180205+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:18.727981+00', 16547, '{"total-fields":39,"updated-fields":0}'), +(19761, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:18.728105+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:18.742333+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19762, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:18.74251+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:18.745448+00', 2, NULL), +(19763, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.044954+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.188938+00', 143, NULL), +(19764, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.045028+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.135742+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19765, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.13584+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.146437+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(19766, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.146522+00', TIMESTAMP WITH TIME ZONE '2023-01-20 02:49:19.188873+00', 42, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19767, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 03:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:00:00.98+00', 805, NULL), +(19768, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 03:00:00.333+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:00:00.979+00', 646, NULL), +(19769, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:00.266789+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.380178+00', 7113, NULL), +(19770, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:00.272246+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:00.873811+00', 601, '{"timezone-id":"UTC"}'), +(19771, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:00.875252+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:01.206885+00', 331, '{"updated-tables":0,"total-tables":8}'), +(19772, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:01.207029+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.100226+00', 5893, '{"total-fields":71,"updated-fields":0}'), +(19773, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.100651+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.201804+00', 101, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19774, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.202019+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.380114+00', 178, NULL), +(19775, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.468794+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.583749+00', 114, NULL), +(19776, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.468825+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.521066+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19777, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.521172+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.55119+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(19778, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.551276+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:19:07.583684+00', 32, '{"total-tables":8,"tables-classified":0}'), +(19779, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:00.240523+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.526502+00', 12285, NULL), +(19780, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:00.240558+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:00.246762+00', 6, '{"timezone-id":null}'), +(19781, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:00.246888+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:00.814126+00', 567, '{"updated-tables":0,"total-tables":4}'), +(19782, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:00.814214+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.515424+00', 11701, '{"total-fields":39,"updated-fields":0}'), +(19783, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.515514+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.521453+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19784, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.521571+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.526383+00', 4, NULL), +(19785, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.57577+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.628541+00', 52, NULL), +(19786, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.575796+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.612463+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19787, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.613016+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.617501+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19788, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.61758+00', TIMESTAMP WITH TIME ZONE '2023-01-20 03:49:12.628477+00', 10, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19789, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 04:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:00:00.481+00', 356, NULL), +(19790, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 04:00:00.109+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:00:00.555+00', 446, NULL), +(19791, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:00.163886+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.033468+00', 4869, NULL), +(19792, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:00.16812+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:00.560912+00', 392, '{"timezone-id":"UTC"}'), +(19793, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:00.562691+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:00.916031+00', 353, '{"updated-tables":0,"total-tables":8}'), +(19794, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:00.91665+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:04.709904+00', 3793, '{"total-fields":71,"updated-fields":0}'), +(19795, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:04.709997+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:04.840171+00', 130, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19796, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:04.840582+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.033428+00', 192, NULL), +(19797, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.099184+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.196097+00', 96, NULL), +(19798, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.099243+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.158153+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19799, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.158384+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.168509+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(19800, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.168629+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:19:05.196029+00', 27, '{"total-tables":8,"tables-classified":0}'), +(19801, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:00.277177+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.225221+00', 10948, NULL), +(19802, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:00.278896+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:00.281261+00', 2, '{"timezone-id":null}'), +(19803, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:00.281774+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:00.705672+00', 423, '{"updated-tables":0,"total-tables":4}'), +(19804, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:00.705816+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.21231+00', 10506, '{"total-fields":39,"updated-fields":0}'), +(19805, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.212486+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.220956+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19806, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.221091+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.225128+00', 4, NULL), +(19807, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.392766+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.463891+00', 71, NULL), +(19808, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.392795+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.436443+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19809, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.437951+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.450963+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(19810, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.451095+00', TIMESTAMP WITH TIME ZONE '2023-01-20 04:49:11.463801+00', 12, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19811, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 05:00:00.072+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:00:00.924+00', 852, NULL), +(19812, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 05:00:00.075+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:00:00.778+00', 703, NULL), +(19813, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:00.493365+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.852174+00', 6358, NULL), +(19814, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:00.50087+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:01.669256+00', 1168, '{"timezone-id":"UTC"}'), +(19815, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:01.673408+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:02.403801+00', 730, '{"updated-tables":0,"total-tables":8}'), +(19816, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:02.404248+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.362612+00', 3958, '{"total-fields":71,"updated-fields":0}'), +(19817, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.362953+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.515499+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19818, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.515651+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.852126+00', 336, NULL), +(19819, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.918733+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:07.03819+00', 119, NULL), +(19820, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.918763+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.98838+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19821, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:06.988524+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:07.010838+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(19822, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:07.011955+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:19:07.038126+00', 26, '{"total-tables":8,"tables-classified":0}'), +(19823, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:00.284315+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.338963+00', 13054, NULL), +(19824, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:00.284348+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:00.286136+00', 1, '{"timezone-id":null}'), +(19825, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:00.286225+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:00.886583+00', 600, '{"updated-tables":0,"total-tables":4}'), +(19826, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:00.886663+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.332177+00', 12445, '{"total-fields":39,"updated-fields":0}'), +(19827, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.33231+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.334984+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19828, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.335073+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.338875+00', 3, NULL), +(19829, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.415358+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.451399+00', 36, NULL), +(19830, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.415387+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.435033+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19831, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.435155+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.439545+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19832, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.439641+00', TIMESTAMP WITH TIME ZONE '2023-01-20 05:49:13.451316+00', 11, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19833, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 06:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:00:00.887+00', 685, NULL), +(19834, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 06:00:00.191+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:00:01.012+00', 821, NULL), +(19835, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:00.729646+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.670636+00', 7940, NULL), +(19836, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:00.773988+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:01.925458+00', 1151, '{"timezone-id":"UTC"}'), +(19837, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:01.936056+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:02.627856+00', 691, '{"updated-tables":0,"total-tables":8}'), +(19838, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:02.628+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.334908+00', 5706, '{"total-fields":71,"updated-fields":0}'), +(19839, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.335052+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.416671+00', 81, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19840, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.416862+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.670585+00', 253, NULL), +(19841, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.817663+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.961334+00', 143, NULL), +(19842, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.817694+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.914841+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19843, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.914931+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.932489+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(19844, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.932722+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:19:08.961231+00', 28, '{"total-tables":8,"tables-classified":0}'), +(19845, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:00.18849+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.525353+00', 11336, NULL), +(19846, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:00.188527+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:00.190632+00', 2, '{"timezone-id":null}'), +(19847, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:00.1908+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:00.560794+00', 369, '{"updated-tables":0,"total-tables":4}'), +(19848, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:00.560942+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.520071+00', 10959, '{"total-fields":39,"updated-fields":0}'), +(19849, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.520398+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.522561+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19850, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.522781+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.525202+00', 2, NULL), +(19851, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.612076+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.650981+00', 38, NULL), +(19852, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.612101+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.641703+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19853, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.641803+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.645208+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(19854, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.645331+00', TIMESTAMP WITH TIME ZONE '2023-01-20 06:49:11.650908+00', 5, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19855, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 07:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:00:00.263+00', 140, NULL), +(19856, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 07:00:00.248+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:00:01.17+00', 922, NULL), +(19857, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:00.234482+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.362448+00', 6127, NULL), +(19858, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:00.238325+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:00.69779+00', 459, '{"timezone-id":"UTC"}'), +(19859, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:00.700546+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:01.162191+00', 461, '{"updated-tables":0,"total-tables":8}'), +(19860, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:01.162805+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:05.674373+00', 4511, '{"total-fields":71,"updated-fields":0}'), +(19861, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:05.674798+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:05.923161+00', 248, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19862, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:05.923297+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.362397+00', 439, NULL), +(19863, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.460505+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.783407+00', 322, NULL), +(19864, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.460535+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.72211+00', 261, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19865, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.722184+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.741116+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(19866, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.741238+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:19:06.783345+00', 42, '{"total-tables":8,"tables-classified":0}'), +(19867, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:00.231996+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.135771+00', 11903, NULL), +(19868, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:00.232039+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:00.234427+00', 2, '{"timezone-id":null}'), +(19869, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:00.234543+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:00.75597+00', 521, '{"updated-tables":0,"total-tables":4}'), +(19870, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:00.756059+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.1311+00', 11375, '{"total-fields":39,"updated-fields":0}'), +(19871, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.131217+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.133911+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19872, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.133996+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.135729+00', 1, NULL), +(19873, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.237347+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.33472+00', 97, NULL), +(19874, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.237374+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.319005+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19875, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.319088+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.324279+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(19876, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.324367+00', TIMESTAMP WITH TIME ZONE '2023-01-20 07:49:12.334655+00', 10, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19877, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 08:00:00.688+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:00:02.241+00', 1553, NULL), +(19878, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 08:00:00.688+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:00:02.528+00', 1840, NULL), +(19879, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:00.262326+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.535115+00', 6272, NULL), +(19880, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:00.26674+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:00.787233+00', 520, '{"timezone-id":"UTC"}'), +(19881, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:00.789409+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:01.205905+00', 416, '{"updated-tables":0,"total-tables":8}'), +(19882, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:01.206241+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:05.773817+00', 4567, '{"total-fields":71,"updated-fields":0}'), +(19883, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:05.773935+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:05.932841+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19884, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:05.933293+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.535048+00', 601, NULL), +(19885, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.621097+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.718992+00', 97, NULL), +(19886, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.621129+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.68516+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19887, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.685256+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.701632+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(19888, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.701775+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:19:06.718916+00', 17, '{"total-tables":8,"tables-classified":0}'), +(19889, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:00.280099+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.828634+00', 13548, NULL), +(19890, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:00.280209+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:00.282149+00', 1, '{"timezone-id":null}'), +(19891, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:00.282245+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:00.63456+00', 352, '{"updated-tables":0,"total-tables":4}'), +(19892, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:00.634642+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.815453+00', 13180, '{"total-fields":39,"updated-fields":0}'), +(19893, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.815603+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.825856+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19894, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.825968+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.82857+00', 2, NULL), +(19895, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.998335+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:14.081092+00', 82, NULL), +(19896, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:13.998363+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:14.054841+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19897, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:14.054926+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:14.058782+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(19898, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:14.058895+00', TIMESTAMP WITH TIME ZONE '2023-01-20 08:49:14.081024+00', 22, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19899, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 09:00:00.074+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:00:00.547+00', 473, NULL), +(19900, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 09:00:00.05+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:00:00.548+00', 498, NULL), +(19901, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:00.474623+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:07.802531+00', 7327, NULL), +(19902, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:00.480142+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:01.29183+00', 811, '{"timezone-id":"UTC"}'), +(19903, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:01.293942+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:01.904504+00', 610, '{"updated-tables":0,"total-tables":8}'), +(19904, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:01.904986+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:06.89105+00', 4986, '{"total-fields":71,"updated-fields":0}'), +(19905, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:06.891635+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:07.529564+00', 637, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19906, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:07.529718+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:07.802491+00', 272, NULL), +(19907, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:07.976863+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:08.401242+00', 424, NULL), +(19908, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:07.976892+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:08.085357+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19909, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:08.085445+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:08.108799+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(19910, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:08.108881+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:19:08.40118+00', 292, '{"total-tables":8,"tables-classified":0}'), +(19911, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:00.344317+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.069891+00', 13725, NULL), +(19912, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:00.344361+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:00.348402+00', 4, '{"timezone-id":null}'), +(19913, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:00.348805+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:00.816505+00', 467, '{"updated-tables":0,"total-tables":4}'), +(19914, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:00.816606+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.063288+00', 13246, '{"total-fields":39,"updated-fields":0}'), +(19915, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.063394+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.065817+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19916, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.065906+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.069815+00', 3, NULL), +(19917, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.274141+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.332549+00', 58, NULL), +(19918, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.274169+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.3018+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19919, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.301964+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.307109+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(19920, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.307199+00', TIMESTAMP WITH TIME ZONE '2023-01-20 09:49:14.33232+00', 25, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19921, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 10:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:00:00.964+00', 772, NULL), +(19922, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 10:00:00.227+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:00:00.84+00', 613, NULL), +(19923, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:00.941141+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.231488+00', 6290, NULL), +(19924, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:00.945124+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:01.784913+00', 839, '{"timezone-id":"UTC"}'), +(19925, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:01.790211+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:02.365534+00', 575, '{"updated-tables":0,"total-tables":8}'), +(19926, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:02.365996+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:06.90531+00', 4539, '{"total-fields":71,"updated-fields":0}'), +(19927, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:06.905429+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.033706+00', 128, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19928, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.033835+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.231447+00', 197, NULL), +(19929, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.345595+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.46437+00', 118, NULL), +(19930, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.345624+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.427051+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19931, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.427555+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.43829+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(19932, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.438403+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:19:07.46427+00', 25, '{"total-tables":8,"tables-classified":0}'), +(19933, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:00.207803+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:13.914298+00', 13706, NULL), +(19934, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:00.207857+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:00.213386+00', 5, '{"timezone-id":null}'), +(19935, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:00.213748+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:00.6819+00', 468, '{"updated-tables":0,"total-tables":4}'), +(19936, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:00.682008+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:13.905122+00', 13223, '{"total-fields":39,"updated-fields":0}'), +(19937, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:13.905229+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:13.910776+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19938, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:13.910867+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:13.9142+00', 3, NULL), +(19939, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.068957+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.156818+00', 87, NULL), +(19940, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.068987+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.130633+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19941, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.130735+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.135141+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(19942, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.135247+00', TIMESTAMP WITH TIME ZONE '2023-01-20 10:49:14.156745+00', 21, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19943, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 11:00:00.26+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:00:01.326+00', 1066, NULL), +(19944, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 11:00:00.28+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:00:01.315+00', 1035, NULL), +(19945, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:00.196806+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.863766+00', 5666, NULL), +(19946, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:00.199861+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:00.603412+00', 403, '{"timezone-id":"UTC"}'), +(19947, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:00.604381+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:00.84933+00', 244, '{"updated-tables":0,"total-tables":8}'), +(19948, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:00.849838+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.136173+00', 4286, '{"total-fields":71,"updated-fields":0}'), +(19949, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.136611+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.280192+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19950, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.280707+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.863718+00', 583, NULL), +(19951, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.957479+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:06.554275+00', 596, NULL), +(19952, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:05.957513+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:06.078908+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19953, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:06.079245+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:06.112046+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(19954, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:06.112136+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:19:06.148121+00', 35, '{"total-tables":8,"tables-classified":0}'), +(19955, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:00.243701+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.169213+00', 11925, NULL), +(19956, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:00.243761+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:00.24935+00', 5, '{"timezone-id":null}'), +(19957, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:00.249487+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:00.703046+00', 453, '{"updated-tables":0,"total-tables":4}'), +(19958, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:00.703139+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.161877+00', 11458, '{"total-fields":39,"updated-fields":0}'), +(19959, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.162149+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.166258+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19960, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.166497+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.169033+00', 2, NULL), +(19961, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.251519+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.318964+00', 67, NULL), +(19962, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.251546+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.293028+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19963, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.293174+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.309255+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(19964, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.309563+00', TIMESTAMP WITH TIME ZONE '2023-01-20 11:49:12.318657+00', 9, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19965, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 12:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:00:00.667+00', 463, NULL), +(19966, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 12:00:00.237+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:00:00.667+00', 430, NULL), +(19967, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:00.278387+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.498142+00', 7219, NULL), +(19968, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:00.284654+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:00.867836+00', 583, '{"timezone-id":"UTC"}'), +(19969, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:00.870305+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:01.737741+00', 867, '{"updated-tables":0,"total-tables":8}'), +(19970, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:01.738189+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.06949+00', 5331, '{"total-fields":71,"updated-fields":0}'), +(19971, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.070334+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.192952+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19972, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.193027+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.498092+00', 305, NULL), +(19973, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.881234+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:08.102169+00', 220, NULL), +(19974, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:07.881272+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:08.023206+00', 141, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19975, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:08.023502+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:08.040712+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(19976, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:08.040807+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:19:08.101989+00', 61, '{"total-tables":8,"tables-classified":0}'), +(19977, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:00.208539+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.398996+00', 13190, NULL), +(19978, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:00.208581+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:00.210198+00', 1, '{"timezone-id":null}'), +(19979, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:00.210421+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:00.630802+00', 420, '{"updated-tables":0,"total-tables":4}'), +(19980, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:00.63089+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.377952+00', 12747, '{"total-fields":39,"updated-fields":0}'), +(19981, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.380196+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.392611+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(19982, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.393164+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.398833+00', 5, NULL), +(19983, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.605309+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.859968+00', 254, NULL), +(19984, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.605745+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.782736+00', 176, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19985, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.783073+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.815331+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(19986, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.816053+00', TIMESTAMP WITH TIME ZONE '2023-01-20 12:49:13.85938+00', 43, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(19987, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 13:00:00.063+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:00:01.441+00', 1378, NULL), +(19988, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 13:00:00.069+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:00:01.44+00', 1371, NULL), +(19989, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:00.299344+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.352862+00', 7053, NULL), +(19990, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:00.303099+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:00.875221+00', 572, '{"timezone-id":"UTC"}'), +(19991, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:00.878744+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:01.53101+00', 652, '{"updated-tables":0,"total-tables":8}'), +(19992, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:01.531136+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:06.208198+00', 4677, '{"total-fields":71,"updated-fields":0}'), +(19993, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:06.208363+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.09117+00', 882, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(19994, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.096046+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.352805+00', 256, NULL), +(19995, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.456154+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.600899+00', 144, NULL), +(19996, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.456185+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.555296+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(19997, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.555443+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.578148+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(19998, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.578242+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:19:07.600836+00', 22, '{"total-tables":8,"tables-classified":0}'), +(19999, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:00.217506+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.654263+00', 15436, NULL), +(20000, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:00.217544+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:00.221634+00', 4, '{"timezone-id":null}'), +(20001, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:00.221752+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:00.706432+00', 484, '{"updated-tables":0,"total-tables":4}'), +(20002, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:00.706575+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.648342+00', 14941, '{"total-fields":39,"updated-fields":0}'), +(20003, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.64851+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.651523+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20004, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.651656+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.654196+00', 2, NULL), +(20005, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.764522+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.810596+00', 46, NULL), +(20006, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.764551+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.793845+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20007, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.793931+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.797801+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20008, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.797888+00', TIMESTAMP WITH TIME ZONE '2023-01-20 13:49:15.810527+00', 12, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20009, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 14:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:00:00.882+00', 713, NULL), +(20010, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 14:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:00:01.038+00', 877, NULL), +(20011, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:00.365054+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.215068+00', 6850, NULL), +(20012, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:00.369805+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:01.425053+00', 1055, '{"timezone-id":"UTC"}'), +(20013, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:01.4324+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:02.109081+00', 676, '{"updated-tables":0,"total-tables":8}'), +(20014, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:02.110814+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:06.80312+00', 4692, '{"total-fields":71,"updated-fields":0}'), +(20015, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:06.803675+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.013689+00', 210, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20016, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.01387+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.215032+00', 201, NULL), +(20017, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.300022+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.446194+00', 146, NULL), +(20018, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.300053+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.39083+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20019, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.390923+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.409939+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(20020, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.410058+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:19:07.446131+00', 36, '{"total-tables":8,"tables-classified":0}'), +(20021, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:00.242707+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.317504+00', 12074, NULL), +(20022, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:00.242758+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:00.246799+00', 4, '{"timezone-id":null}'), +(20023, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:00.246911+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:00.670418+00', 423, '{"updated-tables":0,"total-tables":4}'), +(20024, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:00.670488+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.306496+00', 11636, '{"total-fields":39,"updated-fields":0}'), +(20025, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.306594+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.313428+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20026, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.313533+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.317445+00', 3, NULL), +(20027, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.553571+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.962716+00', 409, NULL), +(20028, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.5536+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.779704+00', 226, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20029, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.77979+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.791677+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(20030, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.79176+00', TIMESTAMP WITH TIME ZONE '2023-01-20 14:49:12.962604+00', 170, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20031, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 15:00:00.433+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:00:02.528+00', 2095, NULL), +(20032, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 15:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:00:02.529+00', 2352, NULL), +(20033, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:00.291049+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:07.998509+00', 7707, NULL), +(20034, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:00.296479+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:00.869593+00', 573, '{"timezone-id":"UTC"}'), +(20035, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:00.873313+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:01.921247+00', 1047, '{"updated-tables":0,"total-tables":8}'), +(20036, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:01.921775+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:07.72575+00', 5803, '{"total-fields":71,"updated-fields":0}'), +(20037, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:07.726267+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:07.795634+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20038, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:07.795741+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:07.998458+00', 202, NULL), +(20039, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.078886+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.24696+00', 168, NULL), +(20040, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.07892+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.202266+00', 123, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20041, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.202427+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.219741+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(20042, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.2199+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:19:08.246881+00', 26, '{"total-tables":8,"tables-classified":0}'), +(20043, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:00.200841+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.144589+00', 10943, NULL), +(20044, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:00.20088+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:00.203728+00', 2, '{"timezone-id":null}'), +(20045, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:00.203848+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:00.634628+00', 430, '{"updated-tables":0,"total-tables":4}'), +(20046, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:00.634702+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.138095+00', 10503, '{"total-fields":39,"updated-fields":0}'), +(20047, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.138246+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.141589+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20048, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.141681+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.143487+00', 1, NULL), +(20049, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.233507+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.309965+00', 76, NULL), +(20050, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.233542+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.293481+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20051, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.293582+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.296952+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20052, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.297036+00', TIMESTAMP WITH TIME ZONE '2023-01-20 15:49:11.309902+00', 12, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20053, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 16:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:00:01.297+00', 1096, NULL), +(20054, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 16:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:00:01.518+00', 1350, NULL), +(20055, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:00.310166+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.407228+00', 6097, NULL), +(20056, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:00.314263+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:01.162225+00', 847, '{"timezone-id":"UTC"}'), +(20057, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:01.164757+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:01.641297+00', 476, '{"updated-tables":0,"total-tables":8}'), +(20058, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:01.641965+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:05.449025+00', 3807, '{"total-fields":71,"updated-fields":0}'), +(20059, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:05.449423+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:05.628365+00', 178, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20060, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:05.628823+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.407176+00', 778, NULL), +(20061, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.50328+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.684899+00', 181, NULL), +(20062, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.50331+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.629912+00', 126, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20063, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.630003+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.653323+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(20064, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.653413+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:19:06.684843+00', 31, '{"total-tables":8,"tables-classified":0}'), +(20065, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:00.22913+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.912179+00', 9683, NULL), +(20066, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:00.229178+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:00.231882+00', 2, '{"timezone-id":null}'), +(20067, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:00.231981+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:00.555225+00', 323, '{"updated-tables":0,"total-tables":4}'), +(20068, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:00.555425+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.906813+00', 9351, '{"total-fields":39,"updated-fields":0}'), +(20069, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.906918+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.910182+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20070, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.91027+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.912135+00', 1, NULL), +(20071, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.983127+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:10.063798+00', 80, NULL), +(20072, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:09.983151+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:10.054337+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20073, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:10.054415+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:10.057284+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(20074, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:10.057377+00', TIMESTAMP WITH TIME ZONE '2023-01-20 16:49:10.063747+00', 6, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20075, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 17:00:00.058+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:00:00.772+00', 714, NULL), +(20076, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 17:00:00.085+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:00:00.769+00', 684, NULL), +(20077, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:00.340731+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.571981+00', 9231, NULL), +(20078, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:00.346381+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:01.186529+00', 840, '{"timezone-id":"UTC"}'), +(20079, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:01.19173+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:02.146505+00', 954, '{"updated-tables":0,"total-tables":8}'), +(20080, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:02.147066+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:06.70311+00', 4556, '{"total-fields":71,"updated-fields":0}'), +(20081, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:06.703534+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:07.87067+00', 1167, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20082, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:07.870862+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.571883+00', 1701, NULL), +(20083, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.714763+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.883457+00', 168, NULL), +(20084, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.714797+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.83223+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20085, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.832396+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.85058+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(20086, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.850709+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:19:09.883307+00', 32, '{"total-tables":8,"tables-classified":0}'), +(20087, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:00.153978+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:09.989869+00', 9835, NULL), +(20088, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:00.154021+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:00.156851+00', 2, '{"timezone-id":null}'), +(20089, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:00.157001+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:00.498399+00', 341, '{"updated-tables":0,"total-tables":4}'), +(20090, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:00.498485+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:09.985333+00', 9486, '{"total-fields":39,"updated-fields":0}'), +(20091, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:09.98547+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:09.987639+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20092, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:09.987762+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:09.98979+00', 2, NULL), +(20093, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.113335+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.155202+00', 41, NULL), +(20094, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.113364+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.138189+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20095, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.138275+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.148771+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(20096, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.148878+00', TIMESTAMP WITH TIME ZONE '2023-01-20 17:49:10.15514+00', 6, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20097, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 18:00:00.246+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:00:01.519+00', 1273, NULL), +(20098, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 18:00:00.245+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:00:01.772+00', 1527, NULL), +(20099, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:00.209339+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.142682+00', 5933, NULL), +(20100, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:00.214502+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:00.985845+00', 771, '{"timezone-id":"UTC"}'), +(20101, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:00.988506+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:01.41492+00', 426, '{"updated-tables":0,"total-tables":8}'), +(20102, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:01.415633+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:05.877271+00', 4461, '{"total-fields":71,"updated-fields":0}'), +(20103, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:05.877387+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:05.936761+00', 59, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20104, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:05.936896+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.142636+00', 205, NULL), +(20105, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.251961+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.411418+00', 159, NULL), +(20106, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.251992+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.34491+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20107, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.344997+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.361932+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(20108, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.362019+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:19:06.411366+00', 49, '{"total-tables":8,"tables-classified":0}'), +(20109, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:00.172735+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.700217+00', 11527, NULL), +(20110, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:00.172765+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:00.175514+00', 2, '{"timezone-id":null}'), +(20111, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:00.175604+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:00.542295+00', 366, '{"updated-tables":0,"total-tables":4}'), +(20112, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:00.542395+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.690908+00', 11148, '{"total-fields":39,"updated-fields":0}'), +(20113, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.691424+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.694939+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20114, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.695232+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.700029+00', 4, NULL), +(20115, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.753941+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.78762+00', 33, NULL), +(20116, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.754068+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.775325+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20117, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.776567+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.781286+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20118, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.781391+00', TIMESTAMP WITH TIME ZONE '2023-01-20 18:49:11.787557+00', 6, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20119, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 19:00:00.086+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:00:00.4+00', 314, NULL), +(20120, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 19:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:00:00.4+00', 274, NULL), +(20121, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:00.709378+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.390467+00', 5681, NULL), +(20122, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:00.714192+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:01.723932+00', 1009, '{"timezone-id":"UTC"}'), +(20123, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:01.727988+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:02.583312+00', 855, '{"updated-tables":0,"total-tables":8}'), +(20124, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:02.583722+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.027055+00', 3443, '{"total-fields":71,"updated-fields":0}'), +(20125, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.027299+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.175904+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20126, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.176377+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.390411+00', 214, NULL), +(20127, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.492169+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.679177+00', 187, NULL), +(20128, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.492212+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.611688+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20129, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.611768+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.626832+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(20130, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.626904+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:19:06.679106+00', 52, '{"total-tables":8,"tables-classified":0}'), +(20131, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:00.327479+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.431645+00', 15104, NULL), +(20132, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:00.327521+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:00.331153+00', 3, '{"timezone-id":null}'), +(20133, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:00.331255+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:01.011338+00', 680, '{"updated-tables":0,"total-tables":4}'), +(20134, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:01.01145+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.417169+00', 14405, '{"total-fields":39,"updated-fields":0}'), +(20135, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.417405+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.424849+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20136, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.424938+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.431574+00', 6, NULL), +(20137, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.793908+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.890973+00', 97, NULL), +(20138, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.79401+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.871195+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20139, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.871327+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.881109+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(20140, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.881217+00', TIMESTAMP WITH TIME ZONE '2023-01-20 19:49:15.890823+00', 9, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20141, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 20:00:00.288+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:00:01.388+00', 1100, NULL), +(20142, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 20:00:00.288+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:00:01.622+00', 1334, NULL), +(20143, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:00.257765+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.043516+00', 4785, NULL), +(20144, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:00.260341+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:00.61897+00', 358, '{"timezone-id":"UTC"}'), +(20145, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:00.619401+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:00.961224+00', 341, '{"updated-tables":0,"total-tables":8}'), +(20146, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:00.962148+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:04.839344+00', 3877, '{"total-fields":71,"updated-fields":0}'), +(20147, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:04.839442+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:04.920326+00', 80, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20148, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:04.92056+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.043475+00', 122, NULL), +(20149, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.139261+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.266353+00', 127, NULL), +(20150, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.139287+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.198919+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20151, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.19904+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.210421+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(20152, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.210508+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:19:05.26627+00', 55, '{"total-tables":8,"tables-classified":0}'), +(20153, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:00.209873+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.352371+00', 10142, NULL), +(20154, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:00.209911+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:00.211941+00', 2, '{"timezone-id":null}'), +(20155, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:00.212027+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:00.608248+00', 396, '{"updated-tables":0,"total-tables":4}'), +(20156, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:00.608354+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.329719+00', 9721, '{"total-fields":39,"updated-fields":0}'), +(20157, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.330357+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.341155+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20158, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.341316+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.352267+00', 10, NULL), +(20159, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.594352+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.651617+00', 57, NULL), +(20160, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.594382+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.634113+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20161, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.634189+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.643664+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(20162, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.643747+00', TIMESTAMP WITH TIME ZONE '2023-01-20 20:49:10.651561+00', 7, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20163, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:00.04+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:00.295+00', 255, NULL), +(20164, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:00.046+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:00.294+00', 248, NULL), +(20165, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:00.445889+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:07.911062+00', 7465, NULL), +(20166, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:00.449338+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:01.021909+00', 572, '{"deleted":0}'), +(20167, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:01.02607+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:00:07.91092+00', 6884, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(20168, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.029063+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.196168+00', 1167, NULL), +(20169, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.029113+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.125283+00', 96, '{"timezone-id":"UTC"}'), +(20170, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.125379+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.286901+00', 161, '{"updated-tables":0,"total-tables":8}'), +(20171, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.286978+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.885631+00', 598, '{"total-fields":71,"updated-fields":0}'), +(20172, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.88582+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.964382+00', 78, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20173, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:00.965203+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.196127+00', 230, NULL), +(20174, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.245356+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.41194+00', 166, NULL), +(20175, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.245386+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.359893+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20176, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.359987+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.377493+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(20177, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.377717+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:19:01.411823+00', 34, '{"total-tables":8,"tables-classified":0}'), +(20178, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:01.135707+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.794909+00', 14659, NULL), +(20179, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:01.147477+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:01.197576+00', 50, '{"timezone-id":null}'), +(20180, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:01.202663+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:01.857365+00', 654, '{"updated-tables":0,"total-tables":4}'), +(20181, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:01.857709+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.780691+00', 13922, '{"total-fields":39,"updated-fields":0}'), +(20182, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.780782+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.791467+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20183, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.791669+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.794833+00', 3, NULL), +(20184, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.969052+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:16.046418+00', 77, NULL), +(20185, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:15.969082+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:16.021373+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20186, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:16.021502+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:16.030667+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(20187, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:16.030789+00', TIMESTAMP WITH TIME ZONE '2023-01-20 21:49:16.046327+00', 15, '{"total-tables":4,"tables-classified":0}'), +(20188, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 22:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:00:00.782+00', 659, NULL), +(20189, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 22:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:00:00.981+00', 877, NULL), +(20190, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:00.46273+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.189334+00', 4726, NULL), +(20191, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:00.468972+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:01.097129+00', 628, '{"timezone-id":"UTC"}'), +(20192, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:01.101538+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:01.51698+00', 415, '{"updated-tables":0,"total-tables":8}'), +(20193, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:01.51733+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:04.821379+00', 3304, '{"total-fields":71,"updated-fields":0}'), +(20194, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:04.82148+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:04.970332+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20195, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:04.97042+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.189303+00', 218, NULL), +(20196, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.259874+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.419628+00', 159, NULL), +(20197, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.259902+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.358613+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20198, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.358684+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.381829+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(20199, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.381903+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:19:05.419364+00', 37, '{"total-tables":8,"tables-classified":0}'), +(20200, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:00.20761+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.315178+00', 13107, NULL), +(20201, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:00.20771+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:00.210567+00', 2, '{"timezone-id":null}'), +(20202, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:00.210655+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:00.613078+00', 402, '{"updated-tables":0,"total-tables":4}'), +(20203, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:00.613191+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.309861+00', 12696, '{"total-fields":39,"updated-fields":0}'), +(20204, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.309948+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.311927+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20205, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.312002+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.315127+00', 3, NULL), +(20206, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.436054+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.461771+00', 25, NULL), +(20207, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.436081+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.452323+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20208, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.452398+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.455068+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(20209, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.455127+00', TIMESTAMP WITH TIME ZONE '2023-01-20 22:49:13.46172+00', 6, '{"total-tables":4,"tables-classified":0}'), +(20210, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 23:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:00:00.723+00', 562, NULL), +(20211, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-20 23:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:00:00.785+00', 627, NULL), +(20212, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:00.14589+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.186389+00', 5040, NULL), +(20213, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:00.148169+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:00.556748+00', 408, '{"timezone-id":"UTC"}'), +(20214, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:00.599851+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:01.027605+00', 427, '{"updated-tables":0,"total-tables":8}'), +(20215, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:01.028081+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:04.587558+00', 3559, '{"total-fields":71,"updated-fields":0}'), +(20216, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:04.58844+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:04.725291+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20217, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:04.725557+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.186349+00', 460, NULL), +(20218, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.286422+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.428997+00', 142, NULL), +(20219, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.28645+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.36595+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20220, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.366023+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.383393+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(20221, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.383594+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:19:05.42895+00', 45, '{"total-tables":8,"tables-classified":0}'), +(20222, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:00.327699+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.00295+00', 11675, NULL), +(20223, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:00.332517+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:00.338346+00', 5, '{"timezone-id":null}'), +(20224, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:00.338443+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:01.042+00', 703, '{"updated-tables":0,"total-tables":4}'), +(20225, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:01.042218+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:11.696772+00', 10654, '{"total-fields":39,"updated-fields":0}'), +(20226, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:11.696874+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.000186+00', 303, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20227, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.000256+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.002896+00', 2, NULL), +(20228, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.18491+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.230595+00', 45, NULL), +(20229, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.185038+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.216478+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20230, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.216564+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.223335+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(20231, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.223474+00', TIMESTAMP WITH TIME ZONE '2023-01-20 23:49:12.230448+00', 6, '{"total-tables":4,"tables-classified":0}'), +(20232, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 00:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:00:00.641+00', 530, NULL), +(20233, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 00:00:00.078+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:00:00.785+00', 707, NULL), +(20234, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:00.308748+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:09.829497+00', 9520, NULL), +(20235, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:00.312012+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:01.678604+00', 1366, '{"timezone-id":"UTC"}'), +(20236, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:01.681986+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:02.311613+00', 629, '{"updated-tables":0,"total-tables":8}'), +(20237, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:02.312875+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:07.989529+00', 5676, '{"total-fields":71,"updated-fields":0}'), +(20238, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:07.990008+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:08.49254+00', 502, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20239, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:08.492912+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:09.829436+00', 1336, NULL), +(20240, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.170224+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.730331+00', 560, NULL), +(20241, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.170262+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.504861+00', 334, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20242, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.505322+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.605001+00', 99, '{"fields-classified":0,"fields-failed":0}'), +(20243, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.605662+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:19:10.729946+00', 124, '{"total-tables":8,"tables-classified":0}'), +(20244, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:00.200699+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:10.889909+00', 10689, NULL), +(20245, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:00.200736+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:00.203762+00', 3, '{"timezone-id":null}'), +(20246, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:00.203859+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:00.890214+00', 686, '{"updated-tables":0,"total-tables":4}'), +(20247, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:00.890356+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:10.883655+00', 9993, '{"total-fields":39,"updated-fields":0}'), +(20248, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:10.883768+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:10.886558+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20249, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:10.88663+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:10.889853+00', 3, NULL), +(20250, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.113558+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.149371+00', 35, NULL), +(20251, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.113588+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.134313+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20252, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.134396+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.138441+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20253, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.138507+00', TIMESTAMP WITH TIME ZONE '2023-01-21 00:49:11.14928+00', 10, '{"total-tables":4,"tables-classified":0}'), +(20254, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 01:00:00.048+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:00:00.749+00', 701, NULL), +(20255, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 01:00:00.067+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:00:00.747+00', 680, NULL), +(20256, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:00.352075+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.029081+00', 5677, NULL), +(20257, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:00.358131+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:01.299295+00', 941, '{"timezone-id":"UTC"}'), +(20258, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:01.302158+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:01.930571+00', 628, '{"updated-tables":0,"total-tables":8}'), +(20259, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:01.931086+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:05.674419+00', 3743, '{"total-fields":71,"updated-fields":0}'), +(20260, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:05.675024+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:05.793102+00', 118, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20261, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:05.793534+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.029022+00', 235, NULL), +(20262, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.154306+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.355289+00', 200, NULL), +(20263, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.154336+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.288888+00', 134, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20264, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.289101+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.311865+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(20265, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.311941+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:19:06.355226+00', 43, '{"total-tables":8,"tables-classified":0}'), +(20266, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:00.195184+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.345192+00', 9150, NULL), +(20267, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:00.195216+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:00.198+00', 2, '{"timezone-id":null}'), +(20268, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:00.198082+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:00.531111+00', 333, '{"updated-tables":0,"total-tables":4}'), +(20269, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:00.531173+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.338165+00', 8806, '{"total-fields":39,"updated-fields":0}'), +(20270, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.338468+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.341043+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20271, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.34131+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.344922+00', 3, NULL), +(20272, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.389148+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.452311+00', 63, NULL), +(20273, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.389176+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.442828+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20274, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.442981+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.446744+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20275, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.446883+00', TIMESTAMP WITH TIME ZONE '2023-01-21 01:49:09.452225+00', 5, '{"total-tables":4,"tables-classified":0}'), +(20276, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:00.312+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:01.249+00', 937, NULL), +(20277, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:00.275+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:01.251+00', 976, NULL), +(20278, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:01.671845+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:12.92833+00', 11256, NULL), +(20279, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:01.673913+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:03.682232+00', 2008, '{"deleted":0}'), +(20280, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:03.684783+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:00:12.928009+00', 9243, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(20281, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:00.059604+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.444388+00', 1384, NULL), +(20282, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:00.059658+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:00.435313+00', 375, '{"timezone-id":"UTC"}'), +(20283, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:00.435696+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:00.687069+00', 251, '{"updated-tables":0,"total-tables":8}'), +(20284, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:00.687166+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.240787+00', 553, '{"total-fields":71,"updated-fields":0}'), +(20285, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.240958+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.28989+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20286, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.289966+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.444308+00', 154, NULL), +(20287, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.509516+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.631127+00', 121, NULL), +(20288, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.509546+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.581405+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20289, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.58152+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.600148+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(20290, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.600234+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:19:01.631061+00', 30, '{"total-tables":8,"tables-classified":0}'), +(20291, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:01.412725+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.060552+00', 16647, NULL), +(20292, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:01.420743+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:01.450219+00', 29, '{"timezone-id":null}'), +(20293, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:01.45484+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:02.178521+00', 723, '{"updated-tables":0,"total-tables":4}'), +(20294, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:02.17863+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.041439+00', 15862, '{"total-fields":39,"updated-fields":0}'), +(20295, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.041546+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.055692+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20296, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.055825+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.06049+00', 4, NULL), +(20297, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.287931+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.417859+00', 129, NULL), +(20298, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.287963+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.376553+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20299, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.380576+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.393536+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(20300, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.393646+00', TIMESTAMP WITH TIME ZONE '2023-01-21 02:49:18.417793+00', 24, '{"total-tables":4,"tables-classified":0}'), +(20301, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 03:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:00:00.477+00', 358, NULL), +(20302, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 03:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:00:00.475+00', 334, NULL), +(20303, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:00.344066+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.388808+00', 5044, NULL), +(20304, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:00.351323+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:01.106316+00', 754, '{"timezone-id":"UTC"}'), +(20305, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:01.106436+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:01.5693+00', 462, '{"updated-tables":0,"total-tables":8}'), +(20306, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:01.569708+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.069921+00', 3500, '{"total-fields":71,"updated-fields":0}'), +(20307, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.070324+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.213196+00', 142, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20308, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.213465+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.388756+00', 175, NULL), +(20309, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.491172+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.666526+00', 175, NULL), +(20310, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.491208+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.588477+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20311, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.58855+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.600632+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(20312, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.6007+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:19:05.666124+00', 65, '{"total-tables":8,"tables-classified":0}'), +(20313, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:00.169268+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.076649+00', 10907, NULL), +(20314, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:00.169305+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:00.171133+00', 1, '{"timezone-id":null}'), +(20315, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:00.17135+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:00.728317+00', 556, '{"updated-tables":0,"total-tables":4}'), +(20316, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:00.728512+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.070489+00', 10341, '{"total-fields":39,"updated-fields":0}'), +(20317, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.070582+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.074294+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20318, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.074358+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.076612+00', 2, NULL), +(20319, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.212149+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.270557+00', 58, NULL), +(20320, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.212213+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.259054+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20321, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.259357+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.262706+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20322, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.262868+00', TIMESTAMP WITH TIME ZONE '2023-01-21 03:49:11.270503+00', 7, '{"total-tables":4,"tables-classified":0}'), +(20323, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 04:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:00:01.151+00', 976, NULL), +(20324, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 04:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:00:01.323+00', 1148, NULL), +(20325, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:00.370357+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.885905+00', 5515, NULL), +(20326, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:00.376176+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:01.020368+00', 644, '{"timezone-id":"UTC"}'), +(20327, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:01.023152+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:01.526249+00', 503, '{"updated-tables":0,"total-tables":8}'), +(20328, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:01.526646+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.647125+00', 4120, '{"total-fields":71,"updated-fields":0}'), +(20329, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.647219+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.70504+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20330, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.705144+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.885834+00', 180, NULL), +(20331, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.982537+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:06.155865+00', 173, NULL), +(20332, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:05.98256+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:06.11613+00', 133, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20333, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:06.116368+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:06.1316+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(20334, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:06.131677+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:19:06.155812+00', 24, '{"total-tables":8,"tables-classified":0}'), +(20335, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:00.151946+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.190589+00', 10038, NULL), +(20336, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:00.151983+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:00.154803+00', 2, '{"timezone-id":null}'), +(20337, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:00.154905+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:00.514737+00', 359, '{"updated-tables":0,"total-tables":4}'), +(20338, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:00.514899+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.186498+00', 9671, '{"total-fields":39,"updated-fields":0}'), +(20339, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.186585+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.188818+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20340, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.188889+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.190557+00', 1, NULL), +(20341, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.245768+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.290728+00', 44, NULL), +(20342, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.2458+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.278865+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20343, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.278951+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.282723+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20344, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.282787+00', TIMESTAMP WITH TIME ZONE '2023-01-21 04:49:10.290576+00', 7, '{"total-tables":4,"tables-classified":0}'), +(20345, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 05:00:00.066+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:00:01.208+00', 1142, NULL), +(20346, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 05:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:00:01.207+00', 1068, NULL), +(20347, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:00.181697+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.301174+00', 5119, NULL), +(20348, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:00.187546+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:00.85708+00', 669, '{"timezone-id":"UTC"}'), +(20349, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:00.858306+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:01.153116+00', 294, '{"updated-tables":0,"total-tables":8}'), +(20350, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:01.153777+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.096542+00', 3942, '{"total-fields":71,"updated-fields":0}'), +(20351, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.096913+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.153558+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20352, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.153686+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.301136+00', 147, NULL), +(20353, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.387783+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.566629+00', 178, NULL), +(20354, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.387811+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.52141+00', 133, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20355, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.521489+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.543616+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(20356, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.543686+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:19:05.566556+00', 22, '{"total-tables":8,"tables-classified":0}'), +(20357, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:00.247299+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.237117+00', 11989, NULL), +(20358, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:00.247581+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:00.251291+00', 3, '{"timezone-id":null}'), +(20359, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:00.251655+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:00.597511+00', 345, '{"updated-tables":0,"total-tables":4}'), +(20360, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:00.597614+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.232904+00', 11635, '{"total-fields":39,"updated-fields":0}'), +(20361, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.232998+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.235023+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20362, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.235091+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.237075+00', 1, NULL), +(20363, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.316364+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.35396+00', 37, NULL), +(20364, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.316385+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.345238+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20365, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.345457+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.348634+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20366, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.348781+00', TIMESTAMP WITH TIME ZONE '2023-01-21 05:49:12.353816+00', 5, '{"total-tables":4,"tables-classified":0}'), +(20367, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 06:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:00:00.999+00', 842, NULL), +(20368, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 06:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:00:01.154+00', 1000, NULL), +(20369, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:00.357687+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.257593+00', 4899, NULL), +(20370, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:00.361093+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:00.902527+00', 541, '{"timezone-id":"UTC"}'), +(20371, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:00.904529+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:01.340118+00', 435, '{"updated-tables":0,"total-tables":8}'), +(20372, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:01.340558+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:04.9632+00', 3622, '{"total-fields":71,"updated-fields":0}'), +(20373, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:04.963391+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.038847+00', 75, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20374, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.039164+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.257554+00', 218, NULL), +(20375, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.363416+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.540107+00', 176, NULL), +(20376, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.363444+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.489112+00', 125, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20377, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.489177+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.509947+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(20378, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.510066+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:19:05.540045+00', 29, '{"total-tables":8,"tables-classified":0}'), +(20379, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:00.245695+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.250106+00', 11004, NULL), +(20380, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:00.245726+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:00.247852+00', 2, '{"timezone-id":null}'), +(20381, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:00.24793+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:00.554452+00', 306, '{"updated-tables":0,"total-tables":4}'), +(20382, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:00.554523+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.244174+00', 10689, '{"total-fields":39,"updated-fields":0}'), +(20383, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.244287+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.247015+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20384, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.247109+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.249999+00', 2, NULL), +(20385, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.332888+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.375811+00', 42, NULL), +(20386, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.332914+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.350405+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20387, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.350507+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.354557+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20388, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.354673+00', TIMESTAMP WITH TIME ZONE '2023-01-21 06:49:11.375751+00', 21, '{"total-tables":4,"tables-classified":0}'), +(20389, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 07:00:00.352+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:00:01.946+00', 1594, NULL), +(20390, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 07:00:00.276+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:00:02.429+00', 2153, NULL), +(20391, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:01.062375+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.07553+00', 6013, NULL), +(20392, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:01.07019+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:01.868578+00', 798, '{"timezone-id":"UTC"}'), +(20393, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:01.871403+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:02.413637+00', 542, '{"updated-tables":0,"total-tables":8}'), +(20394, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:02.41373+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:06.826374+00', 4412, '{"total-fields":71,"updated-fields":0}'), +(20395, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:06.826485+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:06.924332+00', 97, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20396, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:06.924468+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.075502+00', 151, NULL), +(20397, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.179629+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.416619+00', 236, NULL), +(20398, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.179687+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.370438+00', 190, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20399, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.370536+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.387997+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(20400, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.388077+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:19:07.416559+00', 28, '{"total-tables":8,"tables-classified":0}'), +(20401, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:00.207841+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.061223+00', 14853, NULL), +(20402, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:00.207882+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:00.21067+00', 2, '{"timezone-id":null}'), +(20403, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:00.21087+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:00.684084+00', 473, '{"updated-tables":0,"total-tables":4}'), +(20404, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:00.68416+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.054214+00', 14370, '{"total-fields":39,"updated-fields":0}'), +(20405, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.054308+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.057712+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20406, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.057787+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.061171+00', 3, NULL), +(20407, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.154177+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.194186+00', 40, NULL), +(20408, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.1542+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.182792+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20409, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.182975+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.185918+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(20410, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.186041+00', TIMESTAMP WITH TIME ZONE '2023-01-21 07:49:15.194032+00', 7, '{"total-tables":4,"tables-classified":0}'), +(20411, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 08:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:00:01.029+00', 866, NULL), +(20412, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 08:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:00:01.144+00', 989, NULL), +(20413, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:00.475646+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.094148+00', 7618, NULL), +(20414, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:00.48151+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:01.330993+00', 849, '{"timezone-id":"UTC"}'), +(20415, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:01.332842+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:02.255844+00', 923, '{"updated-tables":0,"total-tables":8}'), +(20416, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:02.25637+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:07.902066+00', 5645, '{"total-fields":71,"updated-fields":0}'), +(20417, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:07.90218+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:07.948189+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20418, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:07.948318+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.094106+00', 145, NULL), +(20419, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.227871+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.37564+00', 147, NULL), +(20420, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.227896+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.321179+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20421, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.321254+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.337219+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(20422, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.337282+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:19:08.375582+00', 38, '{"total-tables":8,"tables-classified":0}'), +(20423, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:00.242916+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.295961+00', 13053, NULL), +(20424, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:00.24315+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:00.244942+00', 1, '{"timezone-id":null}'), +(20425, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:00.245037+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:00.750127+00', 505, '{"updated-tables":0,"total-tables":4}'), +(20426, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:00.750249+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.29087+00', 12540, '{"total-fields":39,"updated-fields":0}'), +(20427, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.290997+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.293035+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20428, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.293106+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.295909+00', 2, NULL), +(20429, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.400675+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.542544+00', 141, NULL), +(20430, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.400701+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.503897+00', 103, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20431, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.50404+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.522598+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(20432, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.522768+00', TIMESTAMP WITH TIME ZONE '2023-01-21 08:49:13.542473+00', 19, '{"total-tables":4,"tables-classified":0}'), +(20433, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 09:00:00.029+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:00:00.7+00', 671, NULL), +(20434, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 09:00:00.045+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:00:00.7+00', 655, NULL), +(20435, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:00.391457+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.582868+00', 6191, NULL), +(20436, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:00.399049+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:00.995463+00', 596, '{"timezone-id":"UTC"}'), +(20437, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:00.999786+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:01.531133+00', 531, '{"updated-tables":0,"total-tables":8}'), +(20438, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:01.532005+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.26657+00', 4734, '{"total-fields":71,"updated-fields":0}'), +(20439, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.267718+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.357626+00', 89, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20440, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.357748+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.582835+00', 225, NULL), +(20441, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.694744+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.903057+00', 208, NULL), +(20442, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.694769+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.843643+00', 148, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20443, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.843765+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.868535+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(20444, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.86862+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:19:06.902981+00', 34, '{"total-tables":8,"tables-classified":0}'), +(20445, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:01.459761+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.315091+00', 11855, NULL), +(20446, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:01.459797+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:01.462367+00', 2, '{"timezone-id":null}'), +(20447, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:01.462469+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:02.224405+00', 761, '{"updated-tables":0,"total-tables":4}'), +(20448, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:02.224527+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.309999+00', 11085, '{"total-fields":39,"updated-fields":0}'), +(20449, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.31013+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.312527+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20450, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.312604+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.31505+00', 2, NULL), +(20451, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.552139+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.606626+00', 54, NULL), +(20452, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.552178+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.594428+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20453, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.594514+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.597456+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(20454, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.597524+00', TIMESTAMP WITH TIME ZONE '2023-01-21 09:49:13.606571+00', 9, '{"total-tables":4,"tables-classified":0}'), +(20455, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 10:00:00.296+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:00:02.53+00', 2234, NULL), +(20456, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 10:00:00.296+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:00:03.001+00', 2705, NULL), +(20457, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:00.501811+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.529585+00', 6027, NULL), +(20458, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:00.507444+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:01.151445+00', 644, '{"timezone-id":"UTC"}'), +(20459, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:01.154213+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:01.65043+00', 496, '{"updated-tables":0,"total-tables":8}'), +(20460, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:01.650747+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.017483+00', 4366, '{"total-fields":71,"updated-fields":0}'), +(20461, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.017589+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.198937+00', 181, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20462, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.199811+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.529549+00', 329, NULL), +(20463, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.623634+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.997345+00', 373, NULL), +(20464, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.623659+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.948937+00', 325, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20465, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.949076+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.966299+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(20466, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.966365+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:19:06.997262+00', 30, '{"total-tables":8,"tables-classified":0}'), +(20467, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:01.021603+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.515248+00', 14493, NULL), +(20468, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:01.02665+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:01.048303+00', 21, '{"timezone-id":null}'), +(20469, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:01.050786+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:02.334167+00', 1283, '{"updated-tables":0,"total-tables":4}'), +(20470, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:02.334458+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.500007+00', 13165, '{"total-fields":39,"updated-fields":0}'), +(20471, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.500296+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.509668+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20472, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.509974+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.515018+00', 5, NULL), +(20473, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.681603+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.760277+00', 78, NULL), +(20474, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.681644+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.728456+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20475, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.728585+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.734075+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(20476, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.734142+00', TIMESTAMP WITH TIME ZONE '2023-01-21 10:49:15.760184+00', 26, '{"total-tables":4,"tables-classified":0}'), +(20477, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 11:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:00:00.968+00', 822, NULL), +(20478, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 11:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:00:01.099+00', 956, NULL), +(20479, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:00.270835+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.322587+00', 6051, NULL), +(20480, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:00.276551+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:00.886038+00', 609, '{"timezone-id":"UTC"}'), +(20481, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:00.888153+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:01.287843+00', 399, '{"updated-tables":0,"total-tables":8}'), +(20482, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:01.287949+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:05.251241+00', 3963, '{"total-fields":71,"updated-fields":0}'), +(20483, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:05.251591+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:05.429344+00', 177, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20484, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:05.429687+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.322497+00', 892, NULL), +(20485, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.401007+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.540365+00', 139, NULL), +(20486, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.401032+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.471641+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20487, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.471783+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.490781+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(20488, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.490918+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:19:06.540288+00', 49, '{"total-tables":8,"tables-classified":0}'), +(20489, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:00.280121+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.857197+00', 12577, NULL), +(20490, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:00.280198+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:00.2827+00', 2, '{"timezone-id":null}'), +(20491, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:00.282794+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:00.819052+00', 536, '{"updated-tables":0,"total-tables":4}'), +(20492, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:00.819128+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.852505+00', 12033, '{"total-fields":39,"updated-fields":0}'), +(20493, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.852937+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.855085+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20494, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.855288+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.857164+00', 1, NULL), +(20495, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.974755+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:13.035426+00', 60, NULL), +(20496, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:12.974776+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:13.005152+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20497, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:13.005344+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:13.009797+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20498, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:13.009881+00', TIMESTAMP WITH TIME ZONE '2023-01-21 11:49:13.035267+00', 25, '{"total-tables":4,"tables-classified":0}'), +(20499, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 12:00:00.304+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:00:01.082+00', 778, NULL), +(20500, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 12:00:00.284+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:00:01.083+00', 799, NULL), +(20501, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:00.262644+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.791968+00', 7529, NULL), +(20502, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:00.270499+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:01.754823+00', 1484, '{"timezone-id":"UTC"}'), +(20503, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:01.759149+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:02.292369+00', 533, '{"updated-tables":0,"total-tables":8}'), +(20504, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:02.293427+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.64405+00', 5350, '{"total-fields":71,"updated-fields":0}'), +(20505, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.644121+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.675368+00', 31, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20506, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.675421+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.791927+00', 116, NULL), +(20507, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.952+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:08.074949+00', 122, NULL), +(20508, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:07.95203+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:08.039592+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20509, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:08.039676+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:08.05481+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(20510, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:08.054884+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:19:08.074892+00', 20, '{"total-tables":8,"tables-classified":0}'), +(20511, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:00.427947+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.475931+00', 14047, NULL), +(20512, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:00.429068+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:00.433876+00', 4, '{"timezone-id":null}'), +(20513, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:00.433964+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:01.160715+00', 726, '{"updated-tables":0,"total-tables":4}'), +(20514, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:01.160798+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.466061+00', 13305, '{"total-fields":39,"updated-fields":0}'), +(20515, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.466178+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.472736+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20516, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.472833+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.475859+00', 3, NULL), +(20517, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.835524+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.971805+00', 136, NULL), +(20518, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.847803+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.935644+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20519, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.935758+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.950606+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(20520, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.950693+00', TIMESTAMP WITH TIME ZONE '2023-01-21 12:49:14.971739+00', 21, '{"total-tables":4,"tables-classified":0}'), +(20521, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 13:00:00.082+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:00:02.991+00', 2909, NULL), +(20522, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 13:00:01.328+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:00:02.99+00', 1662, NULL), +(20523, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:00.350057+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.022755+00', 11672, NULL), +(20524, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:00.357973+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:01.247837+00', 889, '{"timezone-id":"UTC"}'), +(20525, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:01.254894+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:02.047316+00', 792, '{"updated-tables":0,"total-tables":8}'), +(20526, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:02.049016+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:11.531708+00', 9482, '{"total-fields":71,"updated-fields":0}'), +(20527, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:11.531821+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:11.693392+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20528, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:11.694517+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.022718+00', 328, NULL), +(20529, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.094097+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.60587+00', 511, NULL), +(20530, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.094119+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.516669+00', 422, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20531, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.519322+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.537813+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(20532, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.537904+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:19:12.605825+00', 67, '{"total-tables":8,"tables-classified":0}'), +(20533, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:00.296832+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.246069+00', 13949, NULL), +(20534, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:00.296865+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:00.300044+00', 3, '{"timezone-id":null}'), +(20535, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:00.30014+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:01.05996+00', 759, '{"updated-tables":0,"total-tables":4}'), +(20536, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:01.060076+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.241227+00', 13181, '{"total-fields":39,"updated-fields":0}'), +(20537, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.241323+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.243286+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20538, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.243349+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.246026+00', 2, NULL), +(20539, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.416624+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.466486+00', 49, NULL), +(20540, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.416876+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.4495+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20541, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.449581+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.458893+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(20542, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.45901+00', TIMESTAMP WITH TIME ZONE '2023-01-21 13:49:14.466422+00', 7, '{"total-tables":4,"tables-classified":0}'), +(20543, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 14:00:00.194+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:00:00.816+00', 622, NULL), +(20544, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 14:00:00.194+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:00:00.942+00', 748, NULL), +(20545, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:00.201948+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:08.439856+00', 8237, NULL), +(20546, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:00.205373+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:00.864647+00', 659, '{"timezone-id":"UTC"}'), +(20547, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:00.867644+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:01.598881+00', 731, '{"updated-tables":0,"total-tables":8}'), +(20548, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:01.599607+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:07.876442+00', 6276, '{"total-fields":71,"updated-fields":0}'), +(20549, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:07.876547+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:08.173768+00', 297, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20550, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:08.174322+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:08.439808+00', 265, NULL), +(20551, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.099282+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.467171+00', 367, NULL), +(20552, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.099309+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.300104+00', 200, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20553, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.300192+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.341204+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(20554, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.341286+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:19:09.467128+00', 125, '{"total-tables":8,"tables-classified":0}'), +(20555, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:00.206849+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.033161+00', 13826, NULL), +(20556, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:00.206885+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:00.209669+00', 2, '{"timezone-id":null}'), +(20557, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:00.209923+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:00.613963+00', 404, '{"updated-tables":0,"total-tables":4}'), +(20558, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:00.614052+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.026724+00', 13412, '{"total-fields":39,"updated-fields":0}'), +(20559, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.026838+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.029762+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20560, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.029851+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.033097+00', 3, NULL), +(20561, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.212828+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.269565+00', 56, NULL), +(20562, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.212858+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.239127+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20563, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.239215+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.24808+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(20564, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.248288+00', TIMESTAMP WITH TIME ZONE '2023-01-21 14:49:14.269401+00', 21, '{"total-tables":4,"tables-classified":0}'), +(20565, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 15:00:00.256+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:00:01.239+00', 983, NULL), +(20566, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 15:00:00.271+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:00:01.237+00', 966, NULL), +(20567, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:00.431632+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.091656+00', 6660, NULL), +(20568, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:00.435582+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:01.12875+00', 693, '{"timezone-id":"UTC"}'), +(20569, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:01.132061+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:01.786806+00', 654, '{"updated-tables":0,"total-tables":8}'), +(20570, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:01.787251+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:06.76032+00', 4973, '{"total-fields":71,"updated-fields":0}'), +(20571, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:06.761433+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:06.926091+00', 164, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20572, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:06.926166+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.091623+00', 165, NULL), +(20573, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.221926+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.390952+00', 169, NULL), +(20574, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.221955+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.32273+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20575, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.322802+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.344406+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(20576, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.344508+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:19:07.390897+00', 46, '{"total-tables":8,"tables-classified":0}'), +(20577, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:00.327448+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:17.807358+00', 17479, NULL), +(20578, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:00.32785+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:00.332879+00', 5, '{"timezone-id":null}'), +(20579, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:00.334182+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:00.834804+00', 500, '{"updated-tables":0,"total-tables":4}'), +(20580, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:00.834912+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:17.796816+00', 16961, '{"total-fields":39,"updated-fields":0}'), +(20581, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:17.797026+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:17.802066+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20582, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:17.802202+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:17.807288+00', 5, NULL), +(20583, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.063709+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.139957+00', 76, NULL), +(20584, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.063734+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.10014+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20585, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.100303+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.130222+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(20586, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.13037+00', TIMESTAMP WITH TIME ZONE '2023-01-21 15:49:18.139845+00', 9, '{"total-tables":4,"tables-classified":0}'), +(20587, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 16:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:00:00.723+00', 523, NULL), +(20588, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 16:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:00:01.139+00', 939, NULL), +(20589, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:00.415363+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.368685+00', 8953, NULL), +(20590, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:00.419344+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:01.186097+00', 766, '{"timezone-id":"UTC"}'), +(20591, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:01.188468+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:01.865434+00', 676, '{"updated-tables":0,"total-tables":8}'), +(20592, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:01.865944+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:08.555026+00', 6689, '{"total-fields":71,"updated-fields":0}'), +(20593, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:08.555145+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:08.746009+00', 190, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20594, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:08.746175+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.368646+00', 622, NULL), +(20595, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.449753+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.626267+00', 176, NULL), +(20596, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.449779+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.569842+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20597, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.569916+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.583481+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(20598, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.583562+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:19:09.626209+00', 42, '{"total-tables":8,"tables-classified":0}'), +(20599, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:00.302124+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.371078+00', 15068, NULL), +(20600, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:00.30216+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:00.350438+00', 48, '{"timezone-id":null}'), +(20601, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:00.350543+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:00.973143+00', 622, '{"updated-tables":0,"total-tables":4}'), +(20602, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:00.973218+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.360469+00', 14387, '{"total-fields":39,"updated-fields":0}'), +(20603, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.360642+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.368767+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20604, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.368852+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.371002+00', 2, NULL), +(20605, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.562543+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.61713+00', 54, NULL), +(20606, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.562568+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.597877+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20607, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.598345+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.603241+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20608, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.603365+00', TIMESTAMP WITH TIME ZONE '2023-01-21 16:49:15.616999+00', 13, '{"total-tables":4,"tables-classified":0}'), +(20609, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 17:00:00.443+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:00:01.459+00', 1016, NULL), +(20610, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 17:00:00.453+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:00:01.458+00', 1005, NULL), +(20611, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:00.534448+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.0221+00', 7487, NULL), +(20612, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:00.539962+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:01.272575+00', 732, '{"timezone-id":"UTC"}'), +(20613, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:01.275007+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:02.043037+00', 768, '{"updated-tables":0,"total-tables":8}'), +(20614, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:02.043509+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:07.67088+00', 5627, '{"total-fields":71,"updated-fields":0}'), +(20615, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:07.670975+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:07.810072+00', 139, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20616, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:07.81025+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.02206+00', 211, NULL), +(20617, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.168211+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.347572+00', 179, NULL), +(20618, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.168238+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.258951+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20619, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.259036+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.31369+00', 54, '{"fields-classified":0,"fields-failed":0}'), +(20620, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.313768+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:19:08.347518+00', 33, '{"total-tables":8,"tables-classified":0}'), +(20621, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:00.196825+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.693102+00', 11496, NULL), +(20622, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:00.196856+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:00.200145+00', 3, '{"timezone-id":null}'), +(20623, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:00.200304+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:00.66306+00', 462, '{"updated-tables":0,"total-tables":4}'), +(20624, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:00.663174+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.687635+00', 11024, '{"total-fields":39,"updated-fields":0}'), +(20625, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.687718+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.689621+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20626, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.689674+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.693059+00', 3, NULL), +(20627, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.898716+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.944821+00', 46, NULL), +(20628, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.898757+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.931749+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20629, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.931828+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.936916+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(20630, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.936996+00', TIMESTAMP WITH TIME ZONE '2023-01-21 17:49:11.944716+00', 7, '{"total-tables":4,"tables-classified":0}'), +(20631, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 18:00:00.207+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:00:02.135+00', 1928, NULL), +(20632, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 18:00:00.375+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:00:01.574+00', 1199, NULL), +(20633, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:00.277627+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.518895+00', 6241, NULL), +(20634, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:00.282361+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:00.965757+00', 683, '{"timezone-id":"UTC"}'), +(20635, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:00.971085+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:01.841331+00', 870, '{"updated-tables":0,"total-tables":8}'), +(20636, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:01.841852+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.215688+00', 4373, '{"total-fields":71,"updated-fields":0}'), +(20637, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.215807+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.307548+00', 91, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20638, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.307655+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.518856+00', 211, NULL), +(20639, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.636844+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.84216+00', 205, NULL), +(20640, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.636878+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.765938+00', 129, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20641, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.766008+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.784493+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(20642, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.784687+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:19:06.842104+00', 57, '{"total-tables":8,"tables-classified":0}'), +(20643, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:00.282601+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.609675+00', 13327, NULL), +(20644, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:00.282654+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:00.284734+00', 2, '{"timezone-id":null}'), +(20645, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:00.284841+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:00.714296+00', 429, '{"updated-tables":0,"total-tables":4}'), +(20646, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:00.71437+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.600028+00', 12885, '{"total-fields":39,"updated-fields":0}'), +(20647, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.60051+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.603924+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20648, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.603999+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.609606+00', 5, NULL), +(20649, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.681591+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.723601+00', 42, NULL), +(20650, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.681611+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.710464+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20651, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.710545+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.713916+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20652, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.713988+00', TIMESTAMP WITH TIME ZONE '2023-01-21 18:49:13.723492+00', 9, '{"total-tables":4,"tables-classified":0}'), +(20653, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 19:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:00:01.267+00', 1063, NULL), +(20654, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 19:00:00.198+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:00:01.444+00', 1246, NULL), +(20655, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:00.384344+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.236005+00', 5851, NULL), +(20656, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:00.390083+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:01.191052+00', 800, '{"timezone-id":"UTC"}'), +(20657, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:01.192005+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:01.599281+00', 407, '{"updated-tables":0,"total-tables":8}'), +(20658, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:01.599851+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.051511+00', 4451, '{"total-fields":71,"updated-fields":0}'), +(20659, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.05185+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.09915+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20660, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.099453+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.23597+00', 136, NULL), +(20661, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.316796+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.453412+00', 136, NULL), +(20662, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.31683+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.412955+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20663, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.413236+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.430616+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(20664, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.430688+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:19:06.453365+00', 22, '{"total-tables":8,"tables-classified":0}'), +(20665, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:00.19435+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.426735+00', 12232, NULL), +(20666, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:00.194386+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:00.196161+00', 1, '{"timezone-id":null}'), +(20667, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:00.196254+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:00.600197+00', 403, '{"updated-tables":0,"total-tables":4}'), +(20668, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:00.600294+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.371916+00', 11771, '{"total-fields":39,"updated-fields":0}'), +(20669, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.372037+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.376754+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20670, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.37684+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.426664+00', 49, NULL), +(20671, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.715579+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.791354+00', 75, NULL), +(20672, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.715602+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.759443+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20673, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.759754+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.767965+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(20674, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.768109+00', TIMESTAMP WITH TIME ZONE '2023-01-21 19:49:12.791285+00', 23, '{"total-tables":4,"tables-classified":0}'), +(20675, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 20:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:00:01.151+00', 950, NULL), +(20676, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 20:00:00.199+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:00:01.283+00', 1084, NULL), +(20677, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:00.287613+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.512153+00', 6224, NULL), +(20678, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:00.293036+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:02.145698+00', 1852, '{"timezone-id":"UTC"}'), +(20679, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:02.14781+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:02.649534+00', 501, '{"updated-tables":0,"total-tables":8}'), +(20680, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:02.650122+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.224321+00', 3574, '{"total-fields":71,"updated-fields":0}'), +(20681, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.22519+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.308064+00', 82, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20682, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.308352+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.512038+00', 203, NULL), +(20683, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.624473+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.812707+00', 188, NULL), +(20684, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.624497+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.741262+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20685, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.741333+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.759588+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(20686, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.759662+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:19:06.812657+00', 52, '{"total-tables":8,"tables-classified":0}'), +(20687, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:00.485319+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.142776+00', 13657, NULL), +(20688, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:00.486504+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:00.490679+00', 4, '{"timezone-id":null}'), +(20689, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:00.492735+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:00.98814+00', 495, '{"updated-tables":0,"total-tables":4}'), +(20690, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:00.988239+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.116204+00', 13127, '{"total-fields":39,"updated-fields":0}'), +(20691, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.116918+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.126914+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20692, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.127002+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.142705+00', 15, NULL), +(20693, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.427355+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.525632+00', 98, NULL), +(20694, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.427379+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.495518+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20695, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.495639+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.503423+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(20696, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.503556+00', TIMESTAMP WITH TIME ZONE '2023-01-21 20:49:14.525565+00', 22, '{"total-tables":4,"tables-classified":0}'), +(20697, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:00.249+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:01.384+00', 1135, NULL), +(20698, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:00.23+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:01.512+00', 1282, NULL), +(20699, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:02.168253+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:17.805877+00', 15637, NULL), +(20700, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:02.187083+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:05.395772+00', 3208, '{"deleted":0}'), +(20701, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:05.398649+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:00:17.805789+00', 12407, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(20702, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:00.045798+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.371259+00', 2325, NULL), +(20703, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:00.045851+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:00.216851+00', 171, '{"timezone-id":"UTC"}'), +(20704, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:00.217017+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:00.740552+00', 523, '{"updated-tables":0,"total-tables":8}'), +(20705, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:00.740647+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:01.558188+00', 817, '{"total-fields":71,"updated-fields":0}'), +(20706, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:01.558269+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.052513+00', 494, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20707, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.053797+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.371216+00', 317, NULL), +(20708, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.450707+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.629915+00', 179, NULL), +(20709, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.450742+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.574502+00', 123, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20710, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.574744+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.595614+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(20711, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.59585+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:19:02.629854+00', 34, '{"total-tables":8,"tables-classified":0}'), +(20712, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:01.194767+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.171531+00', 15976, NULL), +(20713, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:01.211525+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:01.261715+00', 50, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20714, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:01.269418+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:02.351723+00', 1082, '{"updated-tables":0,"total-tables":4}'), +(20715, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:02.352098+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.150964+00', 14798, '{"total-fields":39,"updated-fields":0}'), +(20716, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.151165+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.165698+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20717, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.165887+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.171466+00', 5, NULL), +(20718, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.424021+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.57743+00', 153, NULL), +(20719, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.424048+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.537471+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20720, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.53762+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.548225+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(20721, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.548338+00', TIMESTAMP WITH TIME ZONE '2023-01-21 21:49:17.577365+00', 29, '{"total-tables":4,"tables-classified":0}'), +(20722, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 22:00:00.187+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:00:01.064+00', 877, NULL), +(20723, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 22:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:00:01.061+00', 869, NULL), +(20724, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:00.362217+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.753086+00', 5390, NULL), +(20725, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:00.36983+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:01.139286+00', 769, '{"timezone-id":"UTC"}'), +(20726, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:01.141856+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:01.544048+00', 402, '{"updated-tables":0,"total-tables":8}'), +(20727, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:01.544166+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.565615+00', 4021, '{"total-fields":71,"updated-fields":0}'), +(20728, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.565718+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.615902+00', 50, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20729, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.615959+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.753051+00', 137, NULL), +(20730, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.860077+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.984198+00', 124, NULL), +(20731, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.860104+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.94862+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20732, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.948691+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.962077+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(20733, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.962141+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:19:05.984143+00', 22, '{"total-tables":8,"tables-classified":0}'), +(20734, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:00.101179+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.89133+00', 13790, NULL), +(20735, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:00.101231+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:00.103052+00', 1, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20736, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:00.103149+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:00.285956+00', 182, '{"updated-tables":0,"total-tables":4}'), +(20737, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:00.286166+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.887109+00', 13600, '{"total-fields":39,"updated-fields":0}'), +(20738, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.887337+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.889763+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20739, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.890373+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.891176+00', 0, NULL), +(20740, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.961286+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:14.075651+00', 114, NULL), +(20741, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.961683+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.975464+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20742, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:13.97568+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:14.06876+00', 93, '{"fields-classified":0,"fields-failed":0}'), +(20743, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:14.068922+00', TIMESTAMP WITH TIME ZONE '2023-01-21 22:49:14.075532+00', 6, '{"total-tables":4,"tables-classified":0}'), +(20744, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 23:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:00:01.086+00', 884, NULL), +(20745, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-21 23:00:00.229+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:00:01.085+00', 856, NULL), +(20746, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:00.466059+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.861527+00', 4395, NULL), +(20747, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:00.470277+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:01.266782+00', 796, '{"timezone-id":"UTC"}'), +(20748, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:01.273558+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:01.76967+00', 496, '{"updated-tables":0,"total-tables":8}'), +(20749, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:01.770007+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.665471+00', 2895, '{"total-fields":71,"updated-fields":0}'), +(20750, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.66558+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.71741+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20751, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.71746+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.861489+00', 144, NULL), +(20752, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.962987+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:05.049978+00', 86, NULL), +(20753, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:04.963013+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:05.024952+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20754, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:05.025021+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:05.035435+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(20755, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:05.035501+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:19:05.049927+00', 14, '{"total-tables":8,"tables-classified":0}'), +(20756, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:01.245068+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.595723+00', 17350, NULL), +(20757, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:01.254358+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:01.285517+00', 31, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20758, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:01.294019+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:01.910486+00', 616, '{"updated-tables":0,"total-tables":4}'), +(20759, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:01.910889+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.570605+00', 16659, '{"total-fields":39,"updated-fields":0}'), +(20760, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.570732+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.586247+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20761, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.586489+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.595633+00', 9, NULL), +(20762, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.838922+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.99092+00', 151, NULL), +(20763, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.838959+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.939395+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20764, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.939473+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.959586+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(20765, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.959675+00', TIMESTAMP WITH TIME ZONE '2023-01-21 23:49:18.990859+00', 31, '{"total-tables":4,"tables-classified":0}'), +(20766, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 00:00:00.505+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:00:02.213+00', 1708, NULL), +(20767, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 00:00:00.24+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:00:05.962+00', 5722, NULL), +(20768, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:00.328533+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.777717+00', 6449, NULL), +(20769, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:00.333603+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:01.221059+00', 887, '{"timezone-id":"UTC"}'), +(20770, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:01.231176+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:02.338047+00', 1106, '{"updated-tables":0,"total-tables":8}'), +(20771, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:02.340141+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.595974+00', 4255, '{"total-fields":71,"updated-fields":0}'), +(20772, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.596063+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.64764+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20773, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.647701+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.777679+00', 129, NULL), +(20774, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.914782+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:07.095839+00', 181, NULL), +(20775, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:06.91481+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:07.056124+00', 141, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20776, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:07.056199+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:07.07196+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(20777, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:07.072034+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:19:07.095788+00', 23, '{"total-tables":8,"tables-classified":0}'), +(20778, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:00.213806+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.395279+00', 13181, NULL), +(20779, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:00.213841+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:00.216262+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20780, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:00.216522+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:00.681646+00', 465, '{"updated-tables":0,"total-tables":4}'), +(20781, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:00.681718+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.390196+00', 12708, '{"total-fields":39,"updated-fields":0}'), +(20782, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.390297+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.392999+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20783, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.393095+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.395225+00', 2, NULL), +(20784, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.536117+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.632798+00', 96, NULL), +(20785, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.536148+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.60911+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20786, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.609199+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.613498+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20787, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.613577+00', TIMESTAMP WITH TIME ZONE '2023-01-22 00:49:13.632729+00', 19, '{"total-tables":4,"tables-classified":0}'), +(20788, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 01:00:00.09+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:00:00.334+00', 244, NULL), +(20789, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 01:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:00:00.336+00', 265, NULL), +(20790, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:00.161687+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.035398+00', 6873, NULL), +(20791, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:00.167499+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:00.435299+00', 267, '{"timezone-id":"UTC"}'), +(20792, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:00.436795+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:00.775634+00', 338, '{"updated-tables":0,"total-tables":8}'), +(20793, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:00.776065+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:05.875657+00', 5099, '{"total-fields":71,"updated-fields":0}'), +(20794, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:05.876826+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:06.13279+00', 255, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20795, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:06.133599+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.035196+00', 901, NULL), +(20796, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.342061+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.869207+00', 527, NULL), +(20797, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.342334+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.698793+00', 356, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20798, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.698896+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.762579+00', 63, '{"fields-classified":0,"fields-failed":0}'), +(20799, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.762963+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:19:07.869133+00', 106, '{"total-tables":8,"tables-classified":0}'), +(20800, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:00.21245+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.131349+00', 12918, NULL), +(20801, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:00.212483+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:00.214829+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20802, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:00.214921+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:00.591249+00', 376, '{"updated-tables":0,"total-tables":4}'), +(20803, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:00.591319+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.123249+00', 12531, '{"total-fields":39,"updated-fields":0}'), +(20804, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.123372+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.127703+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20805, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.127847+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.131254+00', 3, NULL), +(20806, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.186728+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.225666+00', 38, NULL), +(20807, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.186752+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.212512+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20808, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.212797+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.216839+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20809, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.216929+00', TIMESTAMP WITH TIME ZONE '2023-01-22 01:49:13.2256+00', 8, '{"total-tables":4,"tables-classified":0}'), +(20810, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:02.221+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:04.569+00', 2348, NULL), +(20811, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:02.269+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:04.568+00', 2299, NULL), +(20812, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:05.216273+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:20.958455+00', 15742, NULL), +(20813, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:05.216848+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:06.925944+00', 1709, '{"deleted":0}'), +(20814, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:06.926083+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:00:20.958369+00', 14032, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(20815, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:00.066248+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.483745+00', 2417, NULL), +(20816, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:00.066301+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:00.799601+00', 733, '{"timezone-id":"UTC"}'), +(20817, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:00.799696+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:01.352242+00', 552, '{"updated-tables":0,"total-tables":8}'), +(20818, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:01.352366+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.105951+00', 753, '{"total-fields":71,"updated-fields":0}'), +(20819, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.106017+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.244371+00', 138, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20820, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.244476+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.483714+00', 239, NULL), +(20821, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.517272+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.979314+00', 462, NULL), +(20822, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.517295+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.920262+00', 402, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20823, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.920363+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.946609+00', 26, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20824, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.946684+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:19:02.979167+00', 32, '{"total-tables":8,"tables-classified":0}'), +(20825, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:01.577139+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.311841+00', 19734, NULL), +(20826, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:01.596672+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:01.66709+00', 70, '{"timezone-id":null}'), +(20827, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:01.677426+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:03.093526+00', 1416, '{"updated-tables":0,"total-tables":4}'), +(20828, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:03.094105+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.284781+00', 18190, '{"total-fields":39,"updated-fields":0}'), +(20829, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.284978+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.304725+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20830, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.304964+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.311734+00', 6, NULL), +(20831, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.583173+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.707281+00', 124, NULL), +(20832, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.583199+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.659414+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20833, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.660046+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.673424+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(20834, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.673505+00', TIMESTAMP WITH TIME ZONE '2023-01-22 02:49:21.707206+00', 33, '{"total-tables":4,"tables-classified":0}'), +(20835, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 03:00:00.186+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:00:00.623+00', 437, NULL), +(20836, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 03:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:00:00.625+00', 448, NULL), +(20837, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:00.619552+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:06.971139+00', 6351, NULL), +(20838, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:00.624952+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:01.640133+00', 1015, '{"timezone-id":"UTC"}'), +(20839, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:01.642757+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:02.128817+00', 486, '{"updated-tables":0,"total-tables":8}'), +(20840, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:02.129179+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:06.809809+00', 4680, '{"total-fields":71,"updated-fields":0}'), +(20841, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:06.810129+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:06.851262+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20842, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:06.851664+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:06.971108+00', 119, NULL), +(20843, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.079281+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.198873+00', 119, NULL), +(20844, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.079309+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.163383+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20845, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.16346+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.177307+00', 13, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20846, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.177467+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:19:07.19883+00', 21, '{"total-tables":8,"tables-classified":0}'), +(20847, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:00.296731+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.5104+00', 13213, NULL), +(20848, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:00.296771+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:00.301034+00', 4, '{"timezone-id":null}'), +(20849, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:00.301126+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:00.842339+00', 541, '{"updated-tables":0,"total-tables":4}'), +(20850, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:00.842514+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.505657+00', 12663, '{"total-fields":39,"updated-fields":0}'), +(20851, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.505758+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.508007+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20852, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.50825+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.510361+00', 2, NULL), +(20853, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.629972+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.676617+00', 46, NULL), +(20854, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.630004+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.666582+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20855, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.666669+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.670126+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20856, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.670199+00', TIMESTAMP WITH TIME ZONE '2023-01-22 03:49:13.676558+00', 6, '{"total-tables":4,"tables-classified":0}'), +(20857, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 04:00:00.185+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:00:00.879+00', 694, NULL), +(20858, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 04:00:00.181+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:00:01.005+00', 824, NULL), +(20859, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:00.332302+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.528649+00', 6196, NULL), +(20860, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:00.33554+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:00.915758+00', 580, '{"timezone-id":"UTC"}'), +(20861, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:00.917476+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:01.2712+00', 353, '{"updated-tables":0,"total-tables":8}'), +(20862, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:01.271602+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:05.132137+00', 3860, '{"total-fields":71,"updated-fields":0}'), +(20863, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:05.132577+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:05.450951+00', 318, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20864, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:05.451607+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.528563+00', 1076, NULL), +(20865, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.654472+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:07.458687+00', 804, NULL), +(20866, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.654498+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.819235+00', 164, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20867, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.819516+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.962532+00', 143, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20868, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:06.964049+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:19:07.458625+00', 494, '{"total-tables":8,"tables-classified":0}'), +(20869, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:00.214094+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.712762+00', 11498, NULL), +(20870, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:00.214118+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:00.215974+00', 1, '{"timezone-id":null}'), +(20871, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:00.216104+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:00.568892+00', 352, '{"updated-tables":0,"total-tables":4}'), +(20872, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:00.568958+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.707347+00', 11138, '{"total-fields":39,"updated-fields":0}'), +(20873, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.707574+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.711256+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20874, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.711455+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.712668+00', 1, NULL), +(20875, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.782421+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.819542+00', 37, NULL), +(20876, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.782447+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.809588+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20877, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.809855+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.813669+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20878, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.813807+00', TIMESTAMP WITH TIME ZONE '2023-01-22 04:49:11.819372+00', 5, '{"total-tables":4,"tables-classified":0}'), +(20879, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 05:00:00.066+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:00:00.483+00', 417, NULL), +(20880, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 05:00:00.034+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:00:00.484+00', 450, NULL), +(20881, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:00.24092+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.464658+00', 5223, NULL), +(20882, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:00.246903+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:00.844872+00', 597, '{"timezone-id":"UTC"}'), +(20883, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:00.847072+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:01.279018+00', 431, '{"updated-tables":0,"total-tables":8}'), +(20884, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:01.279915+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.236716+00', 3956, '{"total-fields":71,"updated-fields":0}'), +(20885, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.236823+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.286326+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20886, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.286436+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.464621+00', 178, NULL), +(20887, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.561849+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.742819+00', 180, NULL), +(20888, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.561871+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.704826+00', 142, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20889, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.704903+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.720859+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20890, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.721124+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:19:05.742646+00', 21, '{"total-tables":8,"tables-classified":0}'), +(20891, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:00.606476+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.883977+00', 11277, NULL), +(20892, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:00.606519+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:00.609192+00', 2, '{"timezone-id":null}'), +(20893, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:00.609353+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:02.209065+00', 1599, '{"updated-tables":0,"total-tables":4}'), +(20894, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:02.20914+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.872536+00', 9663, '{"total-fields":39,"updated-fields":0}'), +(20895, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.872647+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.876477+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20896, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.876782+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.883695+00', 6, NULL), +(20897, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.94583+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:12.025287+00', 79, NULL), +(20898, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.945853+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.982995+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20899, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.983105+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.987297+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20900, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:11.987371+00', TIMESTAMP WITH TIME ZONE '2023-01-22 05:49:12.024738+00', 37, '{"total-tables":4,"tables-classified":0}'), +(20901, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 06:00:00.224+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:00:01.809+00', 1585, NULL), +(20902, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 06:00:00.224+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:00:02.176+00', 1952, NULL), +(20903, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:00.378028+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.251958+00', 4873, NULL), +(20904, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:00.381022+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:01.105527+00', 724, '{"timezone-id":"UTC"}'), +(20905, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:01.108169+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:01.569372+00', 461, '{"updated-tables":0,"total-tables":8}'), +(20906, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:01.569465+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:04.853088+00', 3283, '{"total-fields":71,"updated-fields":0}'), +(20907, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:04.853263+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:04.908944+00', 55, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20908, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:04.909144+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.251858+00', 342, NULL), +(20909, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.315211+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.399155+00', 83, NULL), +(20910, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.315234+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.368721+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20911, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.368839+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.380534+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20912, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.380639+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:19:05.39908+00', 18, '{"total-tables":8,"tables-classified":0}'), +(20913, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:00.185019+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.607586+00', 10422, NULL), +(20914, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:00.185053+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:00.188489+00', 3, '{"timezone-id":null}'), +(20915, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:00.188603+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:00.587617+00', 399, '{"updated-tables":0,"total-tables":4}'), +(20916, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:00.58774+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.603122+00', 10015, '{"total-fields":39,"updated-fields":0}'), +(20917, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.603237+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.605601+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20918, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.605684+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.607533+00', 1, NULL), +(20919, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.735608+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.791484+00', 55, NULL), +(20920, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.735644+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.78387+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20921, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.783938+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.787134+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20922, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.787201+00', TIMESTAMP WITH TIME ZONE '2023-01-22 06:49:10.79144+00', 4, '{"total-tables":4,"tables-classified":0}'), +(20923, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 07:00:00.194+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:00:01.078+00', 884, NULL), +(20924, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 07:00:00.194+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:00:01.209+00', 1015, NULL), +(20925, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:00.450893+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.165079+00', 4714, NULL), +(20926, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:00.455066+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:01.013775+00', 558, '{"timezone-id":"UTC"}'), +(20927, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:01.016194+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:01.506499+00', 490, '{"updated-tables":0,"total-tables":8}'), +(20928, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:01.50669+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:04.858404+00', 3351, '{"total-fields":71,"updated-fields":0}'), +(20929, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:04.858882+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:04.991049+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20930, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:04.991207+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.165047+00', 173, NULL), +(20931, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.243207+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.427999+00', 184, NULL), +(20932, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.243234+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.364058+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20933, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.364143+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.381267+00', 17, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20934, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.381334+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:19:05.427902+00', 46, '{"total-tables":8,"tables-classified":0}'), +(20935, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:00.242078+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:13.949002+00', 13706, NULL), +(20936, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:00.242125+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:00.247898+00', 5, '{"timezone-id":null}'), +(20937, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:00.248015+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:00.799212+00', 551, '{"updated-tables":0,"total-tables":4}'), +(20938, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:00.799311+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:13.942152+00', 13142, '{"total-fields":39,"updated-fields":0}'), +(20939, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:13.942273+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:13.945015+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20940, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:13.945099+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:13.948936+00', 3, NULL), +(20941, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.124179+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.168861+00', 44, NULL), +(20942, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.124205+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.158142+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20943, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.158282+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.162642+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(20944, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.162725+00', TIMESTAMP WITH TIME ZONE '2023-01-22 07:49:14.168811+00', 6, '{"total-tables":4,"tables-classified":0}'), +(20945, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 08:00:01.75+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:00:03.028+00', 1278, NULL), +(20946, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 08:00:01.75+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:00:03.249+00', 1499, NULL), +(20947, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:01.471419+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.213426+00', 4742, NULL), +(20948, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:01.485025+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:02.305827+00', 820, '{"timezone-id":"UTC"}'), +(20949, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:02.308476+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:02.843646+00', 535, '{"updated-tables":0,"total-tables":8}'), +(20950, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:02.849241+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.02346+00', 3174, '{"total-fields":71,"updated-fields":0}'), +(20951, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.023526+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.080733+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20952, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.080875+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.21339+00', 132, NULL), +(20953, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.29905+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.665505+00', 366, NULL), +(20954, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.299074+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.596967+00', 297, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20955, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.59704+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.614338+00', 17, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20956, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.614415+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:19:06.665442+00', 51, '{"total-tables":8,"tables-classified":0}'), +(20957, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:00.283677+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.733746+00', 14450, NULL), +(20958, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:00.283705+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:00.288094+00', 4, '{"timezone-id":null}'), +(20959, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:00.28818+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:00.704268+00', 416, '{"updated-tables":0,"total-tables":4}'), +(20960, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:00.70433+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.730174+00', 14025, '{"total-fields":39,"updated-fields":0}'), +(20961, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.730444+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.732559+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20962, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.732621+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.733709+00', 1, NULL), +(20963, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.784054+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.818665+00', 34, NULL), +(20964, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.784081+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.804372+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20965, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.804672+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.811748+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(20966, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.811992+00', TIMESTAMP WITH TIME ZONE '2023-01-22 08:49:14.818545+00', 6, '{"total-tables":4,"tables-classified":0}'), +(20967, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 09:00:00.046+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:00:00.775+00', 729, NULL), +(20968, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 09:00:00.084+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:00:00.692+00', 608, NULL), +(20969, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:00.896548+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.450743+00', 5554, NULL), +(20970, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:00.90364+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:01.552743+00', 649, '{"timezone-id":"UTC"}'), +(20971, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:01.555071+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:02.295957+00', 740, '{"updated-tables":0,"total-tables":8}'), +(20972, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:02.296214+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.180835+00', 3884, '{"total-fields":71,"updated-fields":0}'), +(20973, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.181476+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.251976+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20974, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.25212+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.450689+00', 198, NULL), +(20975, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.778877+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.925289+00', 146, NULL), +(20976, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.778899+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.866544+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20977, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.866721+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.898948+00', 32, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(20978, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.899129+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:19:06.925211+00', 26, '{"total-tables":8,"tables-classified":0}'), +(20979, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:00.257501+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.820317+00', 13562, NULL), +(20980, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:00.257526+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:00.259775+00', 2, '{"timezone-id":null}'), +(20981, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:00.25991+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:00.755994+00', 496, '{"updated-tables":0,"total-tables":4}'), +(20982, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:00.756072+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.810729+00', 13054, '{"total-fields":39,"updated-fields":0}'), +(20983, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.810848+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.8139+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(20984, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.81397+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.820248+00', 6, NULL), +(20985, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.883392+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.921131+00', 37, NULL), +(20986, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.883412+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.91152+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20987, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.911603+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.915013+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(20988, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.9151+00', TIMESTAMP WITH TIME ZONE '2023-01-22 09:49:13.92103+00', 5, '{"total-tables":4,"tables-classified":0}'), +(20989, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 10:00:00.045+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:00:00.398+00', 353, NULL), +(20990, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 10:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:00:00.397+00', 326, NULL), +(20991, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:00.980811+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.388056+00', 5407, NULL), +(20992, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:00.988218+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:01.742146+00', 753, '{"timezone-id":"UTC"}'), +(20993, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:01.745512+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:02.363339+00', 617, '{"updated-tables":0,"total-tables":8}'), +(20994, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:02.363703+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.186215+00', 3822, '{"total-fields":71,"updated-fields":0}'), +(20995, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.186551+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.256901+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(20996, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.257083+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.388023+00', 130, NULL), +(20997, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.525556+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.729155+00', 203, NULL), +(20998, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.525583+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.635065+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(20999, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.63552+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.700991+00', 65, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21000, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.701217+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:19:06.729059+00', 27, '{"total-tables":8,"tables-classified":0}'), +(21001, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:00.219852+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.324896+00', 11105, NULL), +(21002, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:00.219885+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:00.221696+00', 1, '{"timezone-id":null}'), +(21003, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:00.221829+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:00.637735+00', 415, '{"updated-tables":0,"total-tables":4}'), +(21004, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:00.637843+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.320353+00', 10682, '{"total-fields":39,"updated-fields":0}'), +(21005, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.320532+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.322766+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21006, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.322873+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.324814+00', 1, NULL), +(21007, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.434013+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.476648+00', 42, NULL), +(21008, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.434045+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.464457+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21009, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.464524+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.468709+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(21010, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.468847+00', TIMESTAMP WITH TIME ZONE '2023-01-22 10:49:11.476536+00', 7, '{"total-tables":4,"tables-classified":0}'), +(21011, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 11:00:00.269+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:00:01.172+00', 903, NULL), +(21012, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 11:00:00.269+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:00:01.394+00', 1125, NULL), +(21013, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:00.237646+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.095947+00', 5858, NULL), +(21014, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:00.241179+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:00.805157+00', 563, '{"timezone-id":"UTC"}'), +(21015, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:00.806986+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:01.163592+00', 356, '{"updated-tables":0,"total-tables":8}'), +(21016, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:01.165028+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:05.859145+00', 4694, '{"total-fields":71,"updated-fields":0}'), +(21017, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:05.859252+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:05.908766+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21018, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:05.908943+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.095911+00', 186, NULL), +(21019, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.226448+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.414826+00', 188, NULL), +(21020, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.226475+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.358672+00', 132, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21021, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.358771+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.378871+00', 20, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21022, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.378961+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:19:06.414764+00', 35, '{"total-tables":8,"tables-classified":0}'), +(21023, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:00.31256+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.302392+00', 14989, NULL), +(21024, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:00.312596+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:00.326121+00', 13, '{"timezone-id":null}'), +(21025, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:00.326242+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:00.901593+00', 575, '{"updated-tables":0,"total-tables":4}'), +(21026, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:00.901702+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.297147+00', 14395, '{"total-fields":39,"updated-fields":0}'), +(21027, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.297248+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.300218+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21028, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.300297+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.302341+00', 2, NULL), +(21029, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.384751+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.464944+00', 80, NULL), +(21030, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.384773+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.44181+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21031, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.441907+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.4528+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(21032, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.453174+00', TIMESTAMP WITH TIME ZONE '2023-01-22 11:49:15.464878+00', 11, '{"total-tables":4,"tables-classified":0}'), +(21033, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 12:00:00.186+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:00:00.228+00', 42, NULL), +(21034, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 12:00:00.227+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:00:01.229+00', 1002, NULL), +(21035, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:01.045454+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:05.912376+00', 4866, NULL), +(21036, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:01.04931+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:01.804011+00', 754, '{"timezone-id":"UTC"}'), +(21037, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:01.813548+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:02.184208+00', 370, '{"updated-tables":0,"total-tables":8}'), +(21038, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:02.18492+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:05.766991+00', 3582, '{"total-fields":71,"updated-fields":0}'), +(21039, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:05.767096+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:05.805254+00', 38, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21040, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:05.805575+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:05.912347+00', 106, NULL), +(21041, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.041808+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.149683+00', 107, NULL), +(21042, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.041834+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.11731+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21043, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.117825+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.133845+00', 16, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21044, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.133955+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:19:06.149591+00', 15, '{"total-tables":8,"tables-classified":0}'), +(21045, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:00.200101+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.403683+00', 14203, NULL), +(21046, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:00.200192+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:00.203311+00', 3, '{"timezone-id":null}'), +(21047, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:00.203418+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:00.438514+00', 235, '{"updated-tables":0,"total-tables":4}'), +(21048, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:00.438606+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.379955+00', 13941, '{"total-fields":39,"updated-fields":0}'), +(21049, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.380097+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.39836+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21050, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.398464+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.403622+00', 5, NULL), +(21051, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.746831+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.95395+00', 207, NULL), +(21052, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.746868+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.870484+00', 123, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21053, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.870732+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.889302+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(21054, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.889538+00', TIMESTAMP WITH TIME ZONE '2023-01-22 12:49:14.953794+00', 64, '{"total-tables":4,"tables-classified":0}'), +(21055, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 13:00:00.036+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:00:00.575+00', 539, NULL), +(21056, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 13:00:00.048+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:00:00.574+00', 526, NULL), +(21057, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:00.300859+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.874905+00', 5574, NULL), +(21058, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:00.304681+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:01.014887+00', 710, '{"timezone-id":"UTC"}'), +(21059, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:01.016726+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:01.525907+00', 509, '{"updated-tables":0,"total-tables":8}'), +(21060, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:01.526318+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.078714+00', 3552, '{"total-fields":71,"updated-fields":0}'), +(21061, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.078896+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.171305+00', 92, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21062, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.171427+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.874871+00', 703, NULL), +(21063, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.973874+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:06.109795+00', 135, NULL), +(21064, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:05.9739+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:06.052987+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21065, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:06.053069+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:06.088317+00', 35, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21066, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:06.088779+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:19:06.109736+00', 20, '{"total-tables":8,"tables-classified":0}'), +(21067, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:00.242563+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.083472+00', 11840, NULL), +(21068, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:00.242597+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:00.246577+00', 3, '{"timezone-id":null}'), +(21069, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:00.246701+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:00.994426+00', 747, '{"updated-tables":0,"total-tables":4}'), +(21070, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:00.994519+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.075492+00', 11080, '{"total-fields":39,"updated-fields":0}'), +(21071, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.075604+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.079112+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21072, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.079191+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.083401+00', 4, NULL), +(21073, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.164902+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.226493+00', 61, NULL), +(21074, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.164936+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.210397+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21075, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.210485+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.219216+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(21076, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.219282+00', TIMESTAMP WITH TIME ZONE '2023-01-22 13:49:12.226446+00', 7, '{"total-tables":4,"tables-classified":0}'), +(21077, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 14:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:00:00.495+00', 424, NULL), +(21078, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 14:00:00.051+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:00:00.495+00', 444, NULL), +(21079, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:00.754497+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.00801+00', 5253, NULL), +(21080, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:00.7568+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:00.958072+00', 201, '{"timezone-id":"UTC"}'), +(21081, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:00.96021+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:01.301248+00', 341, '{"updated-tables":0,"total-tables":8}'), +(21082, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:01.30162+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:05.037961+00', 3736, '{"total-fields":71,"updated-fields":0}'), +(21083, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:05.038255+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:05.214282+00', 176, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21084, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:05.21443+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.007626+00', 793, NULL), +(21085, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.150089+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.281598+00', 131, NULL), +(21086, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.150111+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.219747+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21087, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.219875+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.249654+00', 29, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21088, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.249775+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:19:06.281549+00', 31, '{"total-tables":8,"tables-classified":0}'), +(21089, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:00.268132+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.335048+00', 13066, NULL), +(21090, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:00.268169+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:00.270618+00', 2, '{"timezone-id":null}'), +(21091, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:00.270799+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:00.790264+00', 519, '{"updated-tables":0,"total-tables":4}'), +(21092, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:00.790397+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.329921+00', 12539, '{"total-fields":39,"updated-fields":0}'), +(21093, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.330034+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.333388+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21094, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.333465+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.335002+00', 1, NULL), +(21095, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.443624+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.505608+00', 61, NULL), +(21096, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.44555+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.485948+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21097, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.486047+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.494792+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(21098, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.494878+00', TIMESTAMP WITH TIME ZONE '2023-01-22 14:49:13.505479+00', 10, '{"total-tables":4,"tables-classified":0}'), +(21099, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:00.903+00', 761, NULL), +(21100, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:00.903+00', 749, NULL), +(21101, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.062373+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.611288+00', 548, NULL), +(21102, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.063406+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.201365+00', 137, '{"timezone-id":"UTC"}'), +(21103, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.201836+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.275271+00', 73, '{"updated-tables":0,"total-tables":8}'), +(21104, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.275366+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.520374+00', 245, '{"total-fields":71,"updated-fields":0}'), +(21105, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.520489+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.543008+00', 22, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21106, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.543086+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.611205+00', 68, NULL), +(21107, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.638668+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.689377+00', 50, NULL), +(21108, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.638689+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.665203+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21109, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.665281+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.675054+00', 9, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21110, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.67516+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:19:00.689316+00', 14, '{"total-tables":8,"tables-classified":0}'), +(21111, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:00.05305+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.754152+00', 9701, NULL), +(21112, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:00.055172+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:00.057998+00', 2, '{"timezone-id":null}'), +(21113, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:00.058096+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:00.144313+00', 86, '{"updated-tables":0,"total-tables":4}'), +(21114, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:00.144389+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.750892+00', 9606, '{"total-fields":39,"updated-fields":0}'), +(21115, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.750976+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.753373+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21116, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.753445+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.754122+00', 0, NULL), +(21117, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.803372+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.838804+00', 35, NULL), +(21118, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.803395+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.822173+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21119, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.822243+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.831433+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(21120, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.831516+00', TIMESTAMP WITH TIME ZONE '2023-01-22 15:49:09.838751+00', 7, '{"total-tables":4,"tables-classified":0}'), +(21121, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:00.082+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:00.636+00', 554, NULL), +(21122, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:00.082+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:00.636+00', 554, NULL), +(21123, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.112525+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.925667+00', 813, NULL), +(21124, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.115138+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.300072+00', 184, '{"timezone-id":"UTC"}'), +(21125, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.300165+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.390323+00', 90, '{"updated-tables":0,"total-tables":8}'), +(21126, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.390502+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.763598+00', 373, '{"total-fields":71,"updated-fields":0}'), +(21127, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.763737+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.826685+00', 62, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21128, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.826897+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.925591+00', 98, NULL), +(21129, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.95299+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:01.012697+00', 59, NULL), +(21130, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.953012+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.983776+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21131, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.983933+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.991729+00', 7, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21132, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:00.991853+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:01.012618+00', 20, '{"total-tables":8,"tables-classified":0}'), +(21133, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:00.439492+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.027668+00', 20588, NULL), +(21134, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:00.439543+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:00.443184+00', 3, '{"timezone-id":null}'), +(21135, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:00.443579+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:00.698238+00', 254, '{"updated-tables":0,"total-tables":4}'), +(21136, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:00.699917+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.021857+00', 20321, '{"total-fields":39,"updated-fields":0}'), +(21137, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.021932+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.02613+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21138, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.026243+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.02763+00', 1, NULL), +(21139, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.087446+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.124164+00', 36, NULL), +(21140, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.087468+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.115732+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21141, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.115816+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.119395+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(21142, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.119454+00', TIMESTAMP WITH TIME ZONE '2023-01-22 16:49:21.124122+00', 4, '{"total-tables":4,"tables-classified":0}'), +(21143, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 17:00:00.04+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:00:00.313+00', 273, NULL), +(21144, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 17:00:00.041+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:00:00.313+00', 272, NULL), +(21145, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.061786+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.542592+00', 480, NULL), +(21146, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.062903+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.191867+00', 128, '{"timezone-id":"UTC"}'), +(21147, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.19214+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.276121+00', 83, '{"updated-tables":0,"total-tables":8}'), +(21148, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.276351+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.467364+00', 191, '{"total-fields":71,"updated-fields":0}'), +(21149, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.467423+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.487826+00', 20, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21150, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.487881+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.542567+00', 54, NULL), +(21151, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.565522+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.621028+00', 55, NULL), +(21152, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.565542+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.588012+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21153, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.588082+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.595131+00', 7, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21154, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.595194+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:19:00.620979+00', 25, '{"total-tables":8,"tables-classified":0}'), +(21155, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:00.07564+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.623144+00', 15547, NULL), +(21156, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:00.076083+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:00.078602+00', 2, '{"timezone-id":null}'), +(21157, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:00.079266+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:00.271679+00', 192, '{"updated-tables":0,"total-tables":4}'), +(21158, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:00.272072+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.620469+00', 15348, '{"total-fields":39,"updated-fields":0}'), +(21159, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.620644+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.622384+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21160, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.622563+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.623117+00', 0, NULL), +(21161, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.712762+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.748239+00', 35, NULL), +(21162, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.712783+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.739415+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21163, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.739687+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.743316+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(21164, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.743384+00', TIMESTAMP WITH TIME ZONE '2023-01-22 17:49:15.748159+00', 4, '{"total-tables":4,"tables-classified":0}'), +(21165, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 18:00:00.291+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:00:06.366+00', 6075, NULL), +(21166, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 18:00:00.291+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:00:06.359+00', 6068, NULL), +(21167, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:00.128079+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.379216+00', 1251, NULL), +(21168, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:00.12962+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:00.580294+00', 450, '{"timezone-id":"UTC"}'), +(21169, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:00.581174+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:00.875449+00', 294, '{"updated-tables":0,"total-tables":8}'), +(21170, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:00.875566+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.267066+00', 391, '{"total-fields":71,"updated-fields":0}'), +(21171, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.267128+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.295695+00', 28, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21172, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.295755+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.379186+00', 83, NULL), +(21173, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.414921+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.464093+00', 49, NULL), +(21174, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.414942+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.444665+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21175, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.444734+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.452833+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21176, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.452901+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:01.464046+00', 11, '{"total-tables":8,"tables-classified":0}'), +(21177, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:01.238009+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.297918+00', 22059, NULL), +(21178, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:01.241778+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:01.277504+00', 35, '{"timezone-id":null}'), +(21179, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:01.285428+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:02.270181+00', 984, '{"updated-tables":0,"total-tables":4}'), +(21180, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:02.270294+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.227178+00', 20956, '{"total-fields":39,"updated-fields":0}'), +(21181, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.227301+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.282192+00', 54, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21182, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.282339+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.297852+00', 15, NULL), +(21183, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.613185+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.782072+00', 168, NULL), +(21184, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.613232+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.719058+00', 105, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21185, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.719131+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.742591+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(21186, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.74266+00', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:23.781653+00', 38, '{"total-tables":4,"tables-classified":0}'), +(21187, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:00.898+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:02.364+00', 1466, NULL), +(21188, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.246+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:02.364+00', 1118, NULL), +(21189, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:00.922432+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.034011+00', 9111, NULL), +(21190, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:00.93059+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:02.703258+00', 1772, '{"timezone-id":"UTC"}'), +(21191, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:02.708041+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:03.639214+00', 931, '{"updated-tables":0,"total-tables":8}'), +(21192, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:03.640142+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:08.891897+00', 5251, '{"total-fields":71,"updated-fields":0}'), +(21193, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:08.892464+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:09.108912+00', 216, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21194, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:09.109268+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.033955+00', 924, NULL), +(21195, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.422703+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:11.013313+00', 590, NULL), +(21196, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.423029+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.761207+00', 338, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21197, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.76169+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.846302+00', 84, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21198, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:10.846691+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:19:11.013139+00', 166, '{"total-tables":8,"tables-classified":0}'), +(21199, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:01.306415+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.430324+00', 22123, NULL), +(21200, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:01.313314+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:01.330407+00', 17, '{"timezone-id":null}'), +(21201, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:01.334235+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:02.414681+00', 1080, '{"updated-tables":0,"total-tables":4}'), +(21202, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:02.414882+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.402211+00', 20987, '{"total-fields":39,"updated-fields":0}'), +(21203, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.402311+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.424143+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21204, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.424391+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.430205+00', 5, NULL), +(21205, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.742337+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.910451+00', 168, NULL), +(21206, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.742379+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.857328+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21207, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.857397+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.882251+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(21208, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.882319+00', TIMESTAMP WITH TIME ZONE '2023-01-22 19:49:23.910377+00', 28, '{"total-tables":4,"tables-classified":0}'), +(21209, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 20:00:00.194+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:00:02.91+00', 2716, NULL), +(21210, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 20:00:00.194+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:00:02.908+00', 2714, NULL), +(21211, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:00.313702+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:04.319827+00', 4006, NULL), +(21212, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:00.317556+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:01.141601+00', 824, '{"timezone-id":"UTC"}'), +(21213, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:01.146376+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:01.513516+00', 367, '{"updated-tables":0,"total-tables":8}'), +(21214, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:01.513605+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:03.123047+00', 1609, '{"total-fields":71,"updated-fields":0}'), +(21215, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:03.123141+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:03.236461+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21216, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:03.236532+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:04.319435+00', 1082, NULL), +(21217, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:04.629102+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:05.120665+00', 491, NULL), +(21218, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:04.629419+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:04.926592+00', 297, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21219, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:04.927107+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:05.014626+00', 87, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21220, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:05.015071+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:19:05.120597+00', 105, '{"total-tables":8,"tables-classified":0}'), +(21221, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:01.050072+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.347709+00', 19297, NULL), +(21222, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:01.055703+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:01.083964+00', 28, '{"timezone-id":null}'), +(21223, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:01.091894+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:01.870888+00', 778, '{"updated-tables":0,"total-tables":4}'), +(21224, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:01.871255+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.328712+00', 18457, '{"total-fields":39,"updated-fields":0}'), +(21225, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.328826+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.342978+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21226, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.343132+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.347635+00', 4, NULL), +(21227, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.494016+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.591634+00', 97, NULL), +(21228, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.494046+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.555195+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21229, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.555425+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.565766+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(21230, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.565923+00', TIMESTAMP WITH TIME ZONE '2023-01-22 20:49:20.591542+00', 25, '{"total-tables":4,"tables-classified":0}'), +(21231, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:08.618+00', 8422, NULL), +(21232, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:00.223+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:08.618+00', 8395, NULL), +(21233, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:09.037659+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:19.430666+00', 10393, NULL), +(21234, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:09.041764+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:11.326377+00', 2284, '{"deleted":0}'), +(21235, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:11.330902+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:00:19.430603+00', 8099, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(21236, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:00.045415+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.639569+00', 1594, NULL), +(21237, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:00.045453+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:00.177146+00', 131, '{"timezone-id":"UTC"}'), +(21238, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:00.17725+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:00.400969+00', 223, '{"updated-tables":0,"total-tables":8}'), +(21239, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:00.401075+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.319261+00', 918, '{"total-fields":71,"updated-fields":0}'), +(21240, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.319529+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.386509+00', 66, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21241, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.386742+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.639531+00', 252, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21242, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.715136+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:02.005275+00', 290, NULL), +(21243, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.715164+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.91529+00', 200, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21244, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.915382+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.961202+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(21245, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:01.961326+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:19:02.005211+00', 43, '{"total-tables":8,"tables-classified":0}'), +(21246, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:00.507512+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.634442+00', 11126, NULL), +(21247, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:00.512472+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:00.527928+00', 15, '{"timezone-id":null}'), +(21248, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:00.531522+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:01.102259+00', 570, '{"updated-tables":0,"total-tables":4}'), +(21249, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:01.102358+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.607011+00', 10504, '{"total-fields":39,"updated-fields":0}'), +(21250, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.607322+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.628565+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21251, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.628644+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.634351+00', 5, NULL), +(21252, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.82149+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.955763+00', 134, NULL), +(21253, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.821514+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.903783+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21254, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.904016+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.917055+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(21255, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.917225+00', TIMESTAMP WITH TIME ZONE '2023-01-22 21:49:11.95562+00', 38, '{"total-tables":4,"tables-classified":0}'), +(21256, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 22:00:00.191+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:00:00.747+00', 556, NULL), +(21257, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 22:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:00:00.747+00', 529, NULL), +(21258, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:00.37896+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.278967+00', 5900, NULL), +(21259, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:00.38544+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:01.089679+00', 704, '{"timezone-id":"UTC"}'), +(21260, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:01.091805+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:01.643785+00', 551, '{"updated-tables":0,"total-tables":8}'), +(21261, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:01.644137+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:05.219481+00', 3575, '{"total-fields":71,"updated-fields":0}'), +(21262, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:05.219858+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:05.419443+00', 199, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21263, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:05.419541+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.278693+00', 859, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21264, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.511155+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.842706+00', 331, NULL), +(21265, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.511362+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.783685+00', 272, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21266, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.783769+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.818554+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(21267, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.818673+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:19:06.842621+00', 23, '{"total-tables":8,"tables-classified":0}'), +(21268, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:00.223002+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.619353+00', 10396, NULL), +(21269, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:00.223032+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:00.225116+00', 2, '{"timezone-id":null}'), +(21270, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:00.225288+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:00.734627+00', 509, '{"updated-tables":0,"total-tables":4}'), +(21271, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:00.734709+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.614782+00', 9880, '{"total-fields":39,"updated-fields":0}'), +(21272, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.615203+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.617723+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21273, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.617781+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.619274+00', 1, NULL), +(21274, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.689307+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.714635+00', 25, NULL), +(21275, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.689323+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.70788+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21276, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.707936+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.710652+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(21277, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.71072+00', TIMESTAMP WITH TIME ZONE '2023-01-22 22:49:10.71459+00', 3, '{"total-tables":4,"tables-classified":0}'), +(21278, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 23:00:00.23+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:00:01.224+00', 994, NULL), +(21279, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-22 23:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:00:01.41+00', 1197, NULL), +(21280, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:00.230429+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.14238+00', 6911, NULL), +(21281, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:00.234331+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:01.043807+00', 809, '{"timezone-id":"UTC"}'), +(21282, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:01.047302+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:01.569121+00', 521, '{"updated-tables":0,"total-tables":8}'), +(21283, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:01.569647+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:06.229608+00', 4659, '{"total-fields":71,"updated-fields":0}'), +(21284, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:06.229965+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:06.392472+00', 162, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21285, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:06.393879+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.14213+00', 748, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21286, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.323581+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.447786+00', 124, NULL), +(21287, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.323604+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.398597+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21288, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.398665+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.414999+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(21289, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.415063+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:19:07.44771+00', 32, '{"total-tables":8,"tables-classified":0}'), +(21290, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:01.033849+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.293788+00', 12259, NULL), +(21291, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:01.03425+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:01.038721+00', 4, '{"timezone-id":null}'), +(21292, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:01.038838+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:01.473646+00', 434, '{"updated-tables":0,"total-tables":4}'), +(21293, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:01.473749+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.282926+00', 11809, '{"total-fields":39,"updated-fields":0}'), +(21294, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.283043+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.290508+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21295, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.290584+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.29374+00', 3, NULL), +(21296, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.429886+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.496587+00', 66, NULL), +(21297, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.429907+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.476286+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21298, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.476375+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.484518+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(21299, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.484595+00', TIMESTAMP WITH TIME ZONE '2023-01-22 23:49:13.496448+00', 11, '{"total-tables":4,"tables-classified":0}'), +(21300, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 00:00:00.402+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:00:05.599+00', 5197, NULL), +(21301, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 00:00:00.364+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:00:05.602+00', 5238, NULL), +(21302, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:00.357483+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.665982+00', 8308, NULL), +(21303, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:00.366166+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:01.157643+00', 791, '{"timezone-id":"UTC"}'), +(21304, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:01.160626+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:01.627799+00', 467, '{"updated-tables":0,"total-tables":8}'), +(21305, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:01.628162+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:06.510032+00', 4881, '{"total-fields":71,"updated-fields":0}'), +(21306, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:06.510599+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:07.767124+00', 1256, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21307, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:07.767643+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.665591+00', 897, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21308, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.851734+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.960357+00', 108, NULL), +(21309, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.851763+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.919749+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21310, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.919812+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.939523+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(21311, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.939584+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:19:08.960311+00', 20, '{"total-tables":8,"tables-classified":0}'), +(21312, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:00.865902+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.516834+00', 11650, NULL), +(21313, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:00.867198+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:00.876657+00', 9, '{"timezone-id":null}'), +(21314, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:00.87755+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:01.527419+00', 649, '{"updated-tables":0,"total-tables":4}'), +(21315, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:01.527508+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.504295+00', 10976, '{"total-fields":39,"updated-fields":0}'), +(21316, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.504396+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.514096+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21317, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.514226+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.516759+00', 2, NULL), +(21318, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.732587+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.810294+00', 77, NULL), +(21319, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.732609+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.776661+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21320, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.776886+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.783332+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(21321, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.78342+00', TIMESTAMP WITH TIME ZONE '2023-01-23 00:49:12.810233+00', 26, '{"total-tables":4,"tables-classified":0}'), +(21322, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 01:00:00.084+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:00:00.806+00', 722, NULL), +(21323, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 01:00:00.084+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:00:00.711+00', 627, NULL), +(21324, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:00.251019+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.069488+00', 4818, NULL), +(21325, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:00.255759+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:00.77306+00', 517, '{"timezone-id":"UTC"}'), +(21326, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:00.775725+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:01.164166+00', 388, '{"updated-tables":0,"total-tables":8}'), +(21327, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:01.164555+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:04.179693+00', 3015, '{"total-fields":71,"updated-fields":0}'), +(21328, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:04.180036+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:04.349237+00', 169, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21329, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:04.349595+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.069435+00', 719, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21330, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.337994+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:06.029078+00', 691, NULL), +(21331, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.33802+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.944262+00', 606, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21332, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.944341+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.96429+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(21333, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:05.964372+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:19:06.029025+00', 64, '{"total-tables":8,"tables-classified":0}'), +(21334, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:00.303212+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.765586+00', 10462, NULL), +(21335, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:00.303252+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:00.308594+00', 5, '{"timezone-id":null}'), +(21336, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:00.308703+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:00.758872+00', 450, '{"updated-tables":0,"total-tables":4}'), +(21337, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:00.758936+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.761444+00', 10002, '{"total-fields":39,"updated-fields":0}'), +(21338, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.761539+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.763856+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21339, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.763917+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.76553+00', 1, NULL), +(21340, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.987118+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:11.021569+00', 34, NULL), +(21341, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:10.987146+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:11.009595+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21342, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:11.009745+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:11.013655+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(21343, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:11.013762+00', TIMESTAMP WITH TIME ZONE '2023-01-23 01:49:11.021439+00', 7, '{"total-tables":4,"tables-classified":0}'), +(21344, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:00.341+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:01.721+00', 1380, NULL), +(21345, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:00.313+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:01.721+00', 1408, NULL), +(21346, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:02.898717+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:19.485791+00', 16587, NULL), +(21347, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:02.906841+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:04.613998+00', 1707, '{"deleted":0}'), +(21348, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:04.617542+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:00:19.48531+00', 14867, '{"errors":0,"created":0,"updated":17,"deleted":0}'), +(21349, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:00.035278+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.211226+00', 1175, NULL), +(21350, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:00.035321+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:00.469458+00', 434, '{"timezone-id":"UTC"}'), +(21351, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:00.469558+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:00.67038+00', 200, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21352, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:00.670465+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.051683+00', 381, '{"total-fields":71,"updated-fields":0}'), +(21353, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.051741+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.103697+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21354, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.10376+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.211197+00', 107, NULL), +(21355, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.246613+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.337856+00', 91, NULL), +(21356, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.246632+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.306057+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21357, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.306114+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.318882+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(21358, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.318978+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:19:01.337808+00', 18, '{"total-tables":8,"tables-classified":0}'), +(21359, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:01.48994+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.142707+00', 16652, NULL), +(21360, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:01.499556+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:01.530859+00', 31, '{"timezone-id":null}'), +(21361, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:01.534805+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:02.636217+00', 1101, '{"updated-tables":0,"total-tables":4}'), +(21362, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:02.636566+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.118557+00', 15481, '{"total-fields":39,"updated-fields":0}'), +(21363, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.118668+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.138667+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21364, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.138801+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.142647+00', 3, NULL), +(21365, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.289892+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.39977+00', 109, NULL), +(21366, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.289914+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.358108+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21367, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.358191+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.373929+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(21368, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.374+00', TIMESTAMP WITH TIME ZONE '2023-01-23 02:49:18.399713+00', 25, '{"total-tables":4,"tables-classified":0}'), +(21369, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 03:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:00:01.299+00', 1095, NULL), +(21370, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 03:00:00.454+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:00:01.298+00', 844, NULL), +(21371, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:01.53573+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.212903+00', 7677, NULL), +(21372, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:01.540728+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:02.644816+00', 1104, '{"timezone-id":"UTC"}'), +(21373, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:02.648007+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:02.993305+00', 345, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21374, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:02.993592+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:06.883572+00', 3889, '{"total-fields":71,"updated-fields":0}'), +(21375, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:06.883658+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:07.049538+00', 165, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21376, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:07.050502+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.212664+00', 2162, NULL), +(21377, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.328636+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.426749+00', 98, NULL), +(21378, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.328675+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.397946+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21379, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.398055+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.411252+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(21380, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.411326+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:19:09.4267+00', 15, '{"total-tables":8,"tables-classified":0}'), +(21381, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:00.65841+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.312387+00', 12653, NULL), +(21382, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:00.659749+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:00.667686+00', 7, '{"timezone-id":null}'), +(21383, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:00.668839+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:01.22131+00', 552, '{"updated-tables":0,"total-tables":4}'), +(21384, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:01.221396+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.283605+00', 12062, '{"total-fields":39,"updated-fields":0}'), +(21385, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.283708+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.305766+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21386, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.305845+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.312325+00', 6, NULL), +(21387, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.559382+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.69866+00', 139, NULL), +(21388, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.559402+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.666269+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21389, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.666355+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.680798+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(21390, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.680892+00', TIMESTAMP WITH TIME ZONE '2023-01-23 03:49:13.698604+00', 17, '{"total-tables":4,"tables-classified":0}'), +(21391, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 04:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:00:01.245+00', 1072, NULL), +(21392, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 04:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:00:01.384+00', 1241, NULL), +(21393, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:00.319094+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.191512+00', 5872, NULL), +(21394, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:00.322156+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:00.964343+00', 642, '{"timezone-id":"UTC"}'), +(21395, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:00.96862+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:01.422883+00', 454, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21396, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:01.422992+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:04.746086+00', 3323, '{"total-fields":71,"updated-fields":0}'), +(21397, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:04.746192+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:04.90871+00', 162, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21398, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:04.909429+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.191483+00', 1282, NULL), +(21399, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.296527+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.42937+00', 132, NULL), +(21400, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.296548+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.375928+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21401, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.375999+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.391935+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(21402, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.392016+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:19:06.429323+00', 37, '{"total-tables":8,"tables-classified":0}'), +(21403, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:00.974846+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.04873+00', 13073, NULL), +(21404, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:00.976878+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:00.980739+00', 3, '{"timezone-id":null}'), +(21405, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:00.982505+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:01.695317+00', 712, '{"updated-tables":0,"total-tables":4}'), +(21406, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:01.695439+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.039469+00', 12344, '{"total-fields":39,"updated-fields":0}'), +(21407, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.039631+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.046047+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21408, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.046135+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.048686+00', 2, NULL), +(21409, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.202892+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.313021+00', 110, NULL), +(21410, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.202914+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.256882+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21411, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.256988+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.279268+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(21412, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.279341+00', TIMESTAMP WITH TIME ZONE '2023-01-23 04:49:14.312905+00', 33, '{"total-tables":4,"tables-classified":0}'), +(21413, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 05:00:00.096+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:00:02.184+00', 2088, NULL), +(21414, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 05:00:00.1+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:00:01.75+00', 1650, NULL), +(21415, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:00.348045+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.245922+00', 7897, NULL), +(21416, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:00.354873+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:01.175363+00', 820, '{"timezone-id":"UTC"}'), +(21417, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:01.177393+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:02.701325+00', 1523, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21418, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:02.701718+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:07.371772+00', 4670, '{"total-fields":71,"updated-fields":0}'), +(21419, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:07.373199+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:07.551494+00', 178, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21420, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:07.552149+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.245595+00', 693, NULL), +(21421, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.452685+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.634401+00', 181, NULL), +(21422, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.452706+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.573788+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21423, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.573861+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.590664+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(21424, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.590728+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:19:08.634349+00', 43, '{"total-tables":8,"tables-classified":0}'), +(21425, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:00.431619+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.28072+00', 12849, NULL), +(21426, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:00.431778+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:00.435459+00', 3, '{"timezone-id":null}'), +(21427, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:00.435993+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:00.976338+00', 540, '{"updated-tables":0,"total-tables":4}'), +(21428, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:00.976473+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.259373+00', 12282, '{"total-fields":39,"updated-fields":0}'), +(21429, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.259538+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.267219+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21430, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.267297+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.280649+00', 13, NULL), +(21431, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.431299+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.512966+00', 81, NULL), +(21432, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.431321+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.486253+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21433, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.486324+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.495785+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(21434, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.495866+00', TIMESTAMP WITH TIME ZONE '2023-01-23 05:49:13.512877+00', 17, '{"total-tables":4,"tables-classified":0}'), +(21435, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 06:00:00.515+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:00:01.998+00', 1483, NULL), +(21436, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 06:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:00:02.354+00', 2170, NULL), +(21437, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:00.30847+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:06.996611+00', 6688, NULL), +(21438, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:00.313234+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:01.070552+00', 757, '{"timezone-id":"UTC"}'), +(21439, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:01.073089+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:02.455045+00', 1381, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21440, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:02.455576+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:06.78524+00', 4329, '{"total-fields":71,"updated-fields":0}'), +(21441, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:06.785668+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:06.870798+00', 85, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21442, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:06.870944+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:06.996554+00', 125, NULL), +(21443, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.108259+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.251028+00', 142, NULL), +(21444, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.108279+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.206096+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21445, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.206202+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.225276+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(21446, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.225381+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:19:07.250946+00', 25, '{"total-tables":8,"tables-classified":0}'), +(21447, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:01.335756+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.65392+00', 17318, NULL), +(21448, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:01.339425+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:01.357661+00', 18, '{"timezone-id":null}'), +(21449, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:01.363111+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:02.874997+00', 1511, '{"updated-tables":0,"total-tables":4}'), +(21450, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:02.875511+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.640839+00', 15765, '{"total-fields":39,"updated-fields":0}'), +(21451, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.640955+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.64836+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21452, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.648529+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.653786+00', 5, NULL), +(21453, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.81083+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.886912+00', 76, NULL), +(21454, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.810855+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.85328+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21455, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.853489+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.861945+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(21456, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.86201+00', TIMESTAMP WITH TIME ZONE '2023-01-23 06:49:18.886861+00', 24, '{"total-tables":4,"tables-classified":0}'), +(21457, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 07:00:00.063+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:00:00.617+00', 554, NULL), +(21458, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 07:00:00.063+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:00:00.617+00', 554, NULL), +(21459, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:00.527585+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.565767+00', 7038, NULL), +(21460, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:00.541884+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:01.766276+00', 1224, '{"timezone-id":"UTC"}'), +(21461, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:01.773093+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:02.401214+00', 628, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21462, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:02.401618+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.274521+00', 4872, '{"total-fields":71,"updated-fields":0}'), +(21463, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.274727+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.363195+00', 88, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21464, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.363262+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.565742+00', 202, NULL), +(21465, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.736011+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:08.09822+00', 362, NULL), +(21466, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.736035+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.994127+00', 258, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21467, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:07.994735+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:08.041298+00', 46, '{"fields-classified":0,"fields-failed":0}'), +(21468, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:08.042191+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:19:08.098038+00', 55, '{"total-tables":8,"tables-classified":0}'), +(21469, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:00.418651+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:21.984783+00', 21566, NULL), +(21470, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:00.424475+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:00.449824+00', 25, '{"timezone-id":null}'), +(21471, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:00.453439+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:00.953354+00', 499, '{"updated-tables":0,"total-tables":4}'), +(21472, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:00.953477+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:21.973463+00', 21019, '{"total-fields":39,"updated-fields":0}'), +(21473, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:21.973538+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:21.981152+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21474, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:21.981403+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:21.984738+00', 3, NULL), +(21475, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.061291+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.247207+00', 185, NULL), +(21476, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.061318+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.217153+00', 155, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21477, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.217239+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.231531+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(21478, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.231595+00', TIMESTAMP WITH TIME ZONE '2023-01-23 07:49:22.247151+00', 15, '{"total-tables":4,"tables-classified":0}'), +(21479, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:00.084+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:01.941+00', 1857, NULL), +(21480, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:00.059+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:01.941+00', 1882, NULL), +(21481, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:00.137031+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.69886+00', 1561, NULL), +(21482, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:00.140565+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:00.581048+00', 440, '{"timezone-id":"UTC"}'), +(21483, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:00.582885+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:00.812804+00', 229, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21484, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:00.812902+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.129606+00', 316, '{"total-fields":71,"updated-fields":0}'), +(21485, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.12966+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.451424+00', 321, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21486, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.451532+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.698821+00', 247, NULL), +(21487, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.826177+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:02.076486+00', 250, NULL), +(21488, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:01.826197+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:02.000618+00', 174, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21489, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:02.000711+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:02.049319+00', 48, '{"fields-classified":0,"fields-failed":0}'), +(21490, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:02.049392+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:19:02.076386+00', 26, '{"total-tables":8,"tables-classified":0}'), +(21491, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:01.381828+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.689639+00', 15307, NULL), +(21492, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:01.385258+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:01.41237+00', 27, '{"timezone-id":null}'), +(21493, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:01.415711+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:02.17765+00', 761, '{"updated-tables":0,"total-tables":4}'), +(21494, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:02.178343+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.66013+00', 14481, '{"total-fields":39,"updated-fields":0}'), +(21495, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.660643+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.684064+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21496, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.684136+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.689575+00', 5, NULL), +(21497, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.792192+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.966387+00', 174, NULL), +(21498, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.792247+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.904401+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21499, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.904552+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.927438+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(21500, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.927539+00', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:16.966338+00', 38, '{"total-tables":4,"tables-classified":0}'), +(21501, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 09:00:00.049+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:00:01.08+00', 1031, NULL), +(21502, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 09:00:00.035+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:00:01.08+00', 1045, NULL), +(21503, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:00.284698+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.299057+00', 4014, NULL), +(21504, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:00.289385+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:01.221663+00', 932, '{"timezone-id":"UTC"}'), +(21505, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:01.225148+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:01.57302+00', 347, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21506, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:01.573183+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:03.6625+00', 2089, '{"total-fields":71,"updated-fields":0}'), +(21507, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:03.663041+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:03.902916+00', 239, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21508, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:03.904573+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.298994+00', 394, NULL), +(21509, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.456222+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.707362+00', 251, NULL), +(21510, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.456256+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.618826+00', 162, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21511, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.618939+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.659778+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(21512, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.659906+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:19:04.707184+00', 47, '{"total-tables":8,"tables-classified":0}'), +(21513, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:00.034704+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.752356+00', 9717, NULL), +(21514, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:00.034739+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:00.035849+00', 1, '{"timezone-id":null}'), +(21515, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:00.036114+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:00.134033+00', 97, '{"updated-tables":0,"total-tables":4}'), +(21516, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:00.134109+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.748955+00', 9614, '{"total-fields":39,"updated-fields":0}'), +(21517, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.749041+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.751309+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21518, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.751437+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.752318+00', 0, NULL), +(21519, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.785829+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.809201+00', 23, NULL), +(21520, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.78585+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.799856+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21521, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.799947+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.804112+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(21522, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.804184+00', TIMESTAMP WITH TIME ZONE '2023-01-23 09:49:09.80915+00', 4, '{"total-tables":4,"tables-classified":0}'), +(21523, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 10:00:00.252+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:00:04.45+00', 4198, NULL), +(21524, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 10:00:00.252+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:00:04.826+00', 4574, NULL), +(21525, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:00.454394+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.383542+00', 10929, NULL), +(21526, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:00.462705+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:02.343611+00', 1880, '{"timezone-id":"UTC"}'), +(21527, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:02.347471+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:05.500853+00', 3153, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21528, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:05.50165+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.041892+00', 5540, '{"total-fields":71,"updated-fields":0}'), +(21529, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.041987+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.155356+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21530, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.155421+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.3835+00', 228, NULL), +(21531, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.553668+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.758157+00', 204, NULL), +(21532, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.553694+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.707564+00', 153, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21533, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.707647+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.72816+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(21534, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.728242+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:11.758091+00', 29, '{"total-tables":8,"tables-classified":0}'), +(21535, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:00.22509+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.371052+00', 20145, NULL), +(21536, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:00.229272+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:00.27581+00', 46, '{"timezone-id":null}'), +(21537, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:00.27956+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:00.628154+00', 348, '{"updated-tables":0,"total-tables":4}'), +(21538, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:00.628357+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.361568+00', 19733, '{"total-fields":39,"updated-fields":0}'), +(21539, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.362448+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.370368+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21540, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.370573+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.37103+00', 0, NULL), +(21541, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.429883+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.465425+00', 35, NULL), +(21542, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.42993+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.451865+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21543, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.452307+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.458157+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(21544, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.45823+00', TIMESTAMP WITH TIME ZONE '2023-01-23 10:49:20.465206+00', 6, '{"total-tables":4,"tables-classified":0}'), +(21545, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:00.245+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:03.319+00', 3074, NULL), +(21546, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:00.207+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:03.489+00', 3282, NULL), +(21547, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:01.433327+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:12.474639+00', 11041, NULL), +(21548, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:01.442647+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:02.996984+00', 1554, '{"timezone-id":"UTC"}'), +(21549, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:03.001986+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:03.768015+00', 766, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21550, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:03.768123+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:11.114269+00', 7346, '{"total-fields":71,"updated-fields":0}'), +(21551, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:11.114346+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:11.38982+00', 275, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21552, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:11.390452+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:12.474572+00', 1084, NULL), +(21553, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:12.998797+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:13.984388+00', 985, NULL), +(21554, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:12.998816+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:13.690114+00', 691, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21555, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:13.691334+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:13.817329+00', 125, '{"fields-classified":0,"fields-failed":0}'), +(21556, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:13.818027+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:19:13.984311+00', 166, '{"total-tables":8,"tables-classified":0}'), +(21557, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:01.095346+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:23.83434+00', 22738, NULL), +(21558, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:01.111478+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:01.149417+00', 37, '{"timezone-id":null}'), +(21559, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:01.159082+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:01.652779+00', 493, '{"updated-tables":0,"total-tables":4}'), +(21560, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:01.653252+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:23.804691+00', 22151, '{"total-fields":39,"updated-fields":0}'), +(21561, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:23.804816+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:23.826749+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21562, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:23.826902+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:23.83427+00', 7, NULL), +(21563, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.144336+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.32511+00', 180, NULL), +(21564, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.144358+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.260301+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21565, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.26041+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.279689+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(21566, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.279784+00', TIMESTAMP WITH TIME ZONE '2023-01-23 11:49:24.32504+00', 45, '{"total-tables":4,"tables-classified":0}'), +(21567, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 12:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:00:03.8+00', 3600, NULL), +(21568, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 12:00:00.219+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:00:03.798+00', 3579, NULL), +(21569, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:00.171609+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.805518+00', 4633, NULL), +(21570, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:00.178052+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:01.06428+00', 886, '{"timezone-id":"UTC"}'), +(21571, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:01.067113+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:01.654321+00', 587, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21572, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:01.656653+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.598966+00', 2942, '{"total-fields":71,"updated-fields":0}'), +(21573, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.59915+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.669385+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21574, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.669492+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.805383+00', 135, NULL), +(21575, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.871848+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:05.01657+00', 144, NULL), +(21576, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.871871+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.947202+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21577, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.947358+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.9691+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(21578, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:04.969215+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:19:05.016516+00', 47, '{"total-tables":8,"tables-classified":0}'), +(21579, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:00.897987+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.07069+00', 19172, NULL), +(21580, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:00.902515+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:00.944022+00', 41, '{"timezone-id":null}'), +(21581, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:00.952334+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:01.585219+00', 632, '{"updated-tables":0,"total-tables":4}'), +(21582, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:01.585647+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.046737+00', 18461, '{"total-fields":39,"updated-fields":0}'), +(21583, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.046835+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.064886+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21584, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.06501+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.070631+00', 5, NULL), +(21585, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.211663+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.320556+00', 108, NULL), +(21586, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.211685+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.283434+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21587, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.283514+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.298635+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(21588, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.298794+00', TIMESTAMP WITH TIME ZONE '2023-01-23 12:49:20.320503+00', 21, '{"total-tables":4,"tables-classified":0}'), +(21589, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 13:00:00.047+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:00:00.441+00', 394, NULL), +(21590, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 13:00:00.042+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:00:00.469+00', 427, NULL), +(21591, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.084907+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.753956+00', 669, NULL), +(21592, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.088818+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.266261+00', 177, '{"timezone-id":"UTC"}'), +(21593, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.267068+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.388085+00', 121, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21594, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.388308+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.637779+00', 249, '{"total-fields":71,"updated-fields":0}'), +(21595, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.637842+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.667823+00', 29, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21596, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.667904+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.753928+00', 86, NULL), +(21597, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.787992+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.834304+00', 46, NULL), +(21598, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.788013+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.8165+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21599, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.816568+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.823764+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(21600, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.823837+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:19:00.83426+00', 10, '{"total-tables":8,"tables-classified":0}'), +(21601, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:00.595446+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.250972+00', 22655, NULL), +(21602, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:00.602883+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:00.671878+00', 68, '{"timezone-id":null}'), +(21603, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:00.675701+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:01.174641+00', 498, '{"updated-tables":0,"total-tables":4}'), +(21604, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:01.175099+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.248212+00', 22073, '{"total-fields":39,"updated-fields":0}'), +(21605, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.248373+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.2505+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21606, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.250591+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.250949+00', 0, NULL), +(21607, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.370667+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.423025+00', 52, NULL), +(21608, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.370687+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.401731+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21609, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.401805+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.411393+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(21610, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.411469+00', TIMESTAMP WITH TIME ZONE '2023-01-23 13:49:23.422976+00', 11, '{"total-tables":4,"tables-classified":0}'), +(21611, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 14:00:00.604+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:00:04.976+00', 4372, NULL), +(21612, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 14:00:00.6+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:00:04.978+00', 4378, NULL), +(21613, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:01.192799+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:09.004558+00', 7811, NULL), +(21614, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:01.206839+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:02.956806+00', 1749, '{"timezone-id":"UTC"}'), +(21615, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:02.964326+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:03.874278+00', 909, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21616, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:03.874737+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:08.309374+00', 4434, '{"total-fields":71,"updated-fields":0}'), +(21617, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:08.309496+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:08.458204+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21618, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:08.458362+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:09.004477+00', 546, NULL), +(21619, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:09.610951+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:10.339042+00', 728, NULL), +(21620, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:09.611292+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:10.064361+00', 453, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21621, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:10.065502+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:10.192724+00', 127, '{"fields-classified":0,"fields-failed":0}'), +(21622, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:10.193335+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:10.338946+00', 145, '{"total-tables":8,"tables-classified":0}'), +(21623, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:00.842838+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.291342+00', 21448, NULL), +(21624, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:00.850352+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:00.886637+00', 36, '{"timezone-id":null}'), +(21625, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:00.893866+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:01.518342+00', 624, '{"updated-tables":0,"total-tables":4}'), +(21626, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:01.51901+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.270624+00', 20751, '{"total-fields":39,"updated-fields":0}'), +(21627, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.270777+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.286534+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21628, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.286599+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.291277+00', 4, NULL), +(21629, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.494862+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.671293+00', 176, NULL), +(21630, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.49489+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.624473+00', 129, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21631, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.62471+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.644109+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(21632, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.6442+00', TIMESTAMP WITH TIME ZONE '2023-01-23 14:49:22.671164+00', 26, '{"total-tables":4,"tables-classified":0}'), +(21633, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 15:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:00:01.372+00', 1257, NULL), +(21634, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 15:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:00:01.453+00', 1338, NULL), +(21635, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:00.918156+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:10.707919+00', 9789, NULL), +(21636, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:00.923161+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:02.037796+00', 1114, '{"timezone-id":"UTC"}'), +(21637, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:02.041356+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:02.75813+00', 716, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21638, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:02.758711+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:08.479065+00', 5720, '{"total-fields":71,"updated-fields":0}'), +(21639, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:08.479478+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:08.674483+00', 195, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21640, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:08.674603+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:10.707874+00', 2033, NULL), +(21641, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:10.976695+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:11.105509+00', 128, NULL), +(21642, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:10.976722+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:11.055816+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21643, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:11.055885+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:11.079711+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(21644, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:11.079782+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:19:11.105427+00', 25, '{"total-tables":8,"tables-classified":0}'), +(21645, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:00.247208+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:15.628569+00', 15381, NULL), +(21646, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:00.252399+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:00.258066+00', 5, '{"timezone-id":null}'), +(21647, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:00.258871+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:00.488251+00', 229, '{"updated-tables":0,"total-tables":4}'), +(21648, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:00.488333+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:15.609087+00', 15120, '{"total-fields":39,"updated-fields":0}'), +(21649, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:15.609198+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:15.623471+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21650, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:15.623549+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:15.628513+00', 4, NULL), +(21651, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.641194+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.745804+00', 104, NULL), +(21652, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.641232+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.699969+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21653, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.700088+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.710386+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(21654, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.710477+00', TIMESTAMP WITH TIME ZONE '2023-01-23 15:49:16.745621+00', 35, '{"total-tables":4,"tables-classified":0}'), +(21655, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 16:00:00.087+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:00:00.601+00', 514, NULL), +(21656, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 16:00:00.087+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:00:00.601+00', 514, NULL), +(21657, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:01.02015+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:10.54281+00', 9522, NULL), +(21658, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:01.025636+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:03.178634+00', 2152, '{"timezone-id":"UTC"}'), +(21659, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:03.184876+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:04.068962+00', 884, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21660, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:04.075446+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:09.074222+00', 4998, '{"total-fields":71,"updated-fields":0}'), +(21661, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:09.074642+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:09.366469+00', 291, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21662, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:09.367081+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:10.542737+00', 1175, NULL), +(21663, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:11.107788+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:12.042807+00', 935, NULL), +(21664, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:11.107813+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:11.617036+00', 509, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21665, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:11.61755+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:11.721631+00', 104, '{"fields-classified":0,"fields-failed":0}'), +(21666, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:11.722421+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:12.041202+00', 318, '{"total-tables":8,"tables-classified":0}'), +(21667, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:00.232474+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.629959+00', 12397, NULL), +(21668, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:00.237892+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:00.247284+00', 9, '{"timezone-id":null}'), +(21669, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:00.254178+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:00.572763+00', 318, '{"updated-tables":0,"total-tables":4}'), +(21670, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:00.57286+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.613323+00', 12040, '{"total-fields":39,"updated-fields":0}'), +(21671, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.613497+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.625925+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21672, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.625987+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.629905+00', 3, NULL), +(21673, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.781911+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.892918+00', 111, NULL), +(21674, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.781933+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.850621+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21675, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.850716+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.864341+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(21676, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.86441+00', TIMESTAMP WITH TIME ZONE '2023-01-23 16:49:12.892857+00', 28, '{"total-tables":4,"tables-classified":0}'), +(21677, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 17:00:00.073+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:00:04.345+00', 4272, NULL), +(21678, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 17:00:00.07+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:00:04.526+00', 4456, NULL), +(21679, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.194318+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.144195+00', 949, NULL), +(21680, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.195309+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.400967+00', 205, '{"timezone-id":"UTC"}'), +(21681, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.401281+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.484689+00', 83, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21682, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.484776+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.674553+00', 189, '{"total-fields":71,"updated-fields":0}'), +(21683, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.674617+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.701351+00', 26, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21684, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:00.701409+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.14416+00', 442, NULL), +(21685, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.305847+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.797995+00', 492, NULL), +(21686, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.305883+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.596143+00', 290, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21687, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.600342+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.678696+00', 78, '{"fields-classified":0,"fields-failed":0}'), +(21688, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.679214+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:19:01.797663+00', 118, '{"total-tables":8,"tables-classified":0}'), +(21689, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:00.233846+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.291102+00', 18057, NULL), +(21690, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:00.233893+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:00.240065+00', 6, '{"timezone-id":null}'), +(21691, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:00.240596+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:00.453716+00', 213, '{"updated-tables":0,"total-tables":4}'), +(21692, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:00.455399+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.252915+00', 17797, '{"total-fields":39,"updated-fields":0}'), +(21693, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.25334+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.282822+00', 29, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21694, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.282939+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.291028+00', 8, NULL), +(21695, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.483405+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.623831+00', 140, NULL), +(21696, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.483425+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.578428+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21697, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.57875+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.593362+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(21698, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.593445+00', TIMESTAMP WITH TIME ZONE '2023-01-23 17:49:18.623714+00', 30, '{"total-tables":4,"tables-classified":0}'), +(21699, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 18:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:00:03.778+00', 3639, NULL), +(21700, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 18:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:00:04.021+00', 3889, NULL), +(21701, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:00.362098+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.149888+00', 11787, NULL), +(21702, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:00.36876+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:02.230153+00', 1861, '{"timezone-id":"UTC"}'), +(21703, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:02.235389+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:04.121105+00', 1885, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21704, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:04.12153+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:11.056948+00', 6935, '{"total-fields":71,"updated-fields":0}'), +(21705, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:11.057052+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:11.234231+00', 177, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21706, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:11.234558+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.149828+00', 915, NULL), +(21707, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.639252+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.882192+00', 242, NULL), +(21708, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.63928+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.805557+00', 166, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21709, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.80564+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.826026+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(21710, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.826128+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:19:12.882142+00', 56, '{"total-tables":8,"tables-classified":0}'), +(21711, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:01.836851+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.227603+00', 18390, NULL), +(21712, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:01.845622+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:01.913379+00', 67, '{"timezone-id":null}'), +(21713, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:01.939783+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:03.275827+00', 1336, '{"updated-tables":0,"total-tables":4}'), +(21714, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:03.276228+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.203006+00', 16926, '{"total-fields":39,"updated-fields":0}'), +(21715, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.203123+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.221338+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21716, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.221434+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.22754+00', 6, NULL), +(21717, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.355003+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.421894+00', 66, NULL), +(21718, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.355024+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.399734+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21719, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.39984+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.407065+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(21720, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.407199+00', TIMESTAMP WITH TIME ZONE '2023-01-23 18:49:20.421745+00', 14, '{"total-tables":4,"tables-classified":0}'), +(21721, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 19:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:00:01.386+00', 1209, NULL), +(21722, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 19:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:00:01.388+00', 1230, NULL), +(21723, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:00.355591+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:07.413638+00', 7058, NULL), +(21724, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:00.364596+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:01.385035+00', 1020, '{"timezone-id":"UTC"}'), +(21725, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:01.388354+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:02.458499+00', 1070, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21726, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:02.458862+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:06.321606+00', 3862, '{"total-fields":71,"updated-fields":0}'), +(21727, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:06.321901+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:06.499926+00', 178, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21728, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:06.50054+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:07.413582+00', 913, NULL), +(21729, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:07.759073+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:08.30184+00', 542, NULL), +(21730, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:07.759321+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:08.128743+00', 369, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21731, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:08.129033+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:08.19731+00', 68, '{"fields-classified":0,"fields-failed":0}'), +(21732, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:08.197704+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:19:08.301769+00', 104, '{"total-tables":8,"tables-classified":0}'), +(21733, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:01.140764+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.265479+00', 16124, NULL), +(21734, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:01.148116+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:01.190074+00', 41, '{"timezone-id":null}'), +(21735, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:01.195197+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:02.280059+00', 1084, '{"updated-tables":0,"total-tables":4}'), +(21736, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:02.280611+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.240552+00', 14959, '{"total-fields":39,"updated-fields":0}'), +(21737, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.240684+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.258243+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21738, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.258318+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.265418+00', 7, NULL), +(21739, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.430434+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.551538+00', 121, NULL), +(21740, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.430456+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.501451+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21741, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.501653+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.513916+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(21742, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.51402+00', TIMESTAMP WITH TIME ZONE '2023-01-23 19:49:17.551457+00', 37, '{"total-tables":4,"tables-classified":0}'), +(21743, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 20:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:00:01.67+00', 1569, NULL), +(21744, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 20:00:00.088+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:00:01.671+00', 1583, NULL), +(21745, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:00.284179+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.136859+00', 4852, NULL), +(21746, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:00.291197+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:00.842221+00', 551, '{"timezone-id":"UTC"}'), +(21747, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:00.844537+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:01.293035+00', 448, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21748, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:01.293314+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:04.298561+00', 3005, '{"total-fields":71,"updated-fields":0}'), +(21749, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:04.298679+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:04.466057+00', 167, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21750, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:04.46645+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.136786+00', 670, NULL), +(21751, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.343959+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.792867+00', 448, NULL), +(21752, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.344259+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.64929+00', 305, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21753, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.649682+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.716232+00', 66, '{"fields-classified":0,"fields-failed":0}'), +(21754, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.716572+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:19:05.792235+00', 75, '{"total-tables":8,"tables-classified":0}'), +(21755, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:01.146862+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:16.865627+00', 15718, NULL), +(21756, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:01.157959+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:01.196379+00', 38, '{"timezone-id":null}'), +(21757, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:01.208308+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:02.275822+00', 1067, '{"updated-tables":0,"total-tables":4}'), +(21758, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:02.276207+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:16.843687+00', 14567, '{"total-fields":39,"updated-fields":0}'), +(21759, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:16.843847+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:16.859263+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21760, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:16.859553+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:16.865365+00', 5, NULL), +(21761, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.000706+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.084041+00', 83, NULL), +(21762, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.000726+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.052983+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21763, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.05326+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.062707+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(21764, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.0629+00', TIMESTAMP WITH TIME ZONE '2023-01-23 20:49:17.083843+00', 20, '{"total-tables":4,"tables-classified":0}'), +(21765, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:01.024+00', 811, NULL), +(21766, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:00.228+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:00.929+00', 701, NULL), +(21767, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:01.299016+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:16.345528+00', 15046, NULL), +(21768, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:01.314355+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:04.380327+00', 3065, '{"deleted":0}'), +(21769, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:04.394698+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:00:16.34525+00', 11950, '{"errors":0,"created":0,"updated":0,"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21770, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:00.279478+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:03.472371+00', 3192, NULL), +(21771, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:00.28144+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:00.563618+00', 282, '{"timezone-id":"UTC"}'), +(21772, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:00.568015+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:00.962827+00', 394, '{"updated-tables":0,"total-tables":8}'), +(21773, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:00.962925+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:02.619013+00', 1656, '{"total-fields":71,"updated-fields":0}'), +(21774, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:02.619345+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:02.691041+00', 71, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21775, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:02.691126+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:03.472328+00', 781, NULL), +(21776, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:03.811849+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:04.226758+00', 414, NULL), +(21777, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:03.811874+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:04.159064+00', 347, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21778, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:04.159376+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:04.18362+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(21779, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:04.183705+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:19:04.226674+00', 42, '{"total-tables":8,"tables-classified":0}'), +(21780, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:00.773015+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.707343+00', 15934, NULL), +(21781, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:00.773063+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:00.783185+00', 10, '{"timezone-id":null}'), +(21782, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:00.784871+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:01.282644+00', 497, '{"updated-tables":0,"total-tables":4}'), +(21783, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:01.282745+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.698379+00', 15415, '{"total-fields":39,"updated-fields":0}'), +(21784, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.698463+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.703929+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21785, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.703982+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.707302+00', 3, NULL), +(21786, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.837582+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.903999+00', 66, NULL), +(21787, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.837612+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.8858+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21788, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.885857+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.890004+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(21789, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.890076+00', TIMESTAMP WITH TIME ZONE '2023-01-23 21:49:16.903948+00', 13, '{"total-tables":4,"tables-classified":0}'), +(21790, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 22:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:00:02.52+00', 2364, NULL), +(21791, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 22:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:00:02.518+00', 2348, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21792, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:00.374674+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:08.899752+00', 8525, NULL), +(21793, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:00.377285+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:00.929229+00', 551, '{"timezone-id":"UTC"}'), +(21794, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:00.933183+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:01.362412+00', 429, '{"updated-tables":0,"total-tables":8}'), +(21795, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:01.362892+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:08.181713+00', 6818, '{"total-fields":71,"updated-fields":0}'), +(21796, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:08.182112+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:08.31728+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21797, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:08.317647+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:08.899459+00', 581, NULL), +(21798, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.110144+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.469555+00', 359, NULL), +(21799, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.11037+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.334863+00', 224, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21800, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.335394+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.39631+00', 60, '{"fields-classified":0,"fields-failed":0}'), +(21801, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.396931+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:19:09.469479+00', 72, '{"total-tables":8,"tables-classified":0}'), +(21802, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:01.203257+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.582885+00', 14379, NULL), +(21803, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:01.208376+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:01.225232+00', 16, '{"timezone-id":null}'), +(21804, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:01.228554+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:01.896277+00', 667, '{"updated-tables":0,"total-tables":4}'), +(21805, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:01.896882+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.572527+00', 13675, '{"total-fields":39,"updated-fields":0}'), +(21806, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.572646+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.579684+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21807, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.579788+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.582779+00', 2, NULL), +(21808, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.754875+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.812373+00', 57, NULL), +(21809, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.754896+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.793756+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21810, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.793832+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.797948+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(21811, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.798014+00', TIMESTAMP WITH TIME ZONE '2023-01-23 22:49:15.812321+00', 14, '{"total-tables":4,"tables-classified":0}'), +(21812, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 23:00:00.216+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:00:01.692+00', 1476, NULL), +(21813, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-23 23:00:00.216+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:00:02.042+00', 1826, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21814, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:00.644382+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:06.398291+00', 5753, NULL), +(21815, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:00.648984+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:01.395228+00', 746, '{"timezone-id":"UTC"}'), +(21816, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:01.397481+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:01.927601+00', 530, '{"updated-tables":0,"total-tables":8}'), +(21817, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:01.92831+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:05.269743+00', 3341, '{"total-fields":71,"updated-fields":0}'), +(21818, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:05.270089+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:05.510724+00', 240, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21819, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:05.511711+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:06.398233+00', 886, NULL), +(21820, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:06.654068+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:07.12854+00', 474, NULL), +(21821, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:06.654094+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:06.974675+00', 320, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21822, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:06.975018+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:07.048982+00', 73, '{"fields-classified":0,"fields-failed":0}'), +(21823, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:07.049387+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:19:07.128178+00', 78, '{"total-tables":8,"tables-classified":0}'), +(21824, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:01.087678+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.076385+00', 15988, NULL), +(21825, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:01.092973+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:01.121819+00', 28, '{"timezone-id":null}'), +(21826, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:01.126379+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:01.744039+00', 617, '{"updated-tables":0,"total-tables":4}'), +(21827, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:01.745415+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.054701+00', 15309, '{"total-fields":39,"updated-fields":0}'), +(21828, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.054829+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.069488+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21829, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.069566+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.076326+00', 6, NULL), +(21830, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.25546+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.404912+00', 149, NULL), +(21831, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.255482+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.325352+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21832, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.325461+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.3541+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(21833, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.354272+00', TIMESTAMP WITH TIME ZONE '2023-01-23 23:49:17.404824+00', 50, '{"total-tables":4,"tables-classified":0}'), +(21834, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 00:00:00.254+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:00:04.327+00', 4073, NULL), +(21835, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 00:00:00.248+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:00:05.108+00', 4860, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21836, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:00.297343+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:06.658615+00', 6361, NULL), +(21837, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:00.307925+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:00.991892+00', 683, '{"timezone-id":"UTC"}'), +(21838, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:00.994024+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:01.46583+00', 471, '{"updated-tables":0,"total-tables":8}'), +(21839, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:01.466472+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:05.908192+00', 4441, '{"total-fields":71,"updated-fields":0}'), +(21840, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:05.90859+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:06.084606+00', 176, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21841, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:06.084768+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:06.65856+00', 573, NULL), +(21842, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:06.870476+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:07.335807+00', 465, NULL), +(21843, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:06.870502+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:07.162778+00', 292, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21844, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:07.163178+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:07.226741+00', 63, '{"fields-classified":0,"fields-failed":0}'), +(21845, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:07.228279+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:19:07.33573+00', 107, '{"total-tables":8,"tables-classified":0}'), +(21846, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:00.934709+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.201354+00', 13266, NULL), +(21847, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:00.939363+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:00.972805+00', 33, '{"timezone-id":null}'), +(21848, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:00.97722+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:01.736998+00', 759, '{"updated-tables":0,"total-tables":4}'), +(21849, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:01.737707+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.159045+00', 12421, '{"total-fields":39,"updated-fields":0}'), +(21850, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.15917+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.17447+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21851, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.174548+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.201294+00', 26, NULL), +(21852, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.446473+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.531846+00', 85, NULL), +(21853, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.446496+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.497456+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21854, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.497542+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.508541+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(21855, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.508638+00', TIMESTAMP WITH TIME ZONE '2023-01-24 00:49:14.531793+00', 23, '{"total-tables":4,"tables-classified":0}'), +(21856, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 01:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:00:01.488+00', 1342, NULL), +(21857, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 01:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:00:01.489+00', 1343, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21858, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:00.437537+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.186957+00', 5749, NULL), +(21859, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:00.441305+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:01.371148+00', 929, '{"timezone-id":"UTC"}'), +(21860, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:01.373288+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:01.944275+00', 570, '{"updated-tables":0,"total-tables":8}'), +(21861, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:01.94462+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:05.330272+00', 3385, '{"total-fields":71,"updated-fields":0}'), +(21862, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:05.330787+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:05.533533+00', 202, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21863, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:05.533975+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.186904+00', 652, NULL), +(21864, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.415699+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.869312+00', 453, NULL), +(21865, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.415724+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.709905+00', 294, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21866, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.710238+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.777866+00', 67, '{"fields-classified":0,"fields-failed":0}'), +(21867, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.777978+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:19:06.868854+00', 90, '{"total-tables":8,"tables-classified":0}'), +(21868, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:01.217449+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.057494+00', 16840, NULL), +(21869, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:01.22331+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:01.299706+00', 76, '{"timezone-id":null}'), +(21870, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:01.306673+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:02.083226+00', 776, '{"updated-tables":0,"total-tables":4}'), +(21871, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:02.083858+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.046503+00', 15962, '{"total-fields":39,"updated-fields":0}'), +(21872, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.046603+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.054211+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21873, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.054294+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.057438+00', 3, NULL), +(21874, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.200258+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.289392+00', 89, NULL), +(21875, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.200278+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.26534+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21876, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.265446+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.27573+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(21877, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.275806+00', TIMESTAMP WITH TIME ZONE '2023-01-24 01:49:18.289333+00', 13, '{"total-tables":4,"tables-classified":0}'), +(21878, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:01.357+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:02.881+00', 1524, NULL), +(21879, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:01.308+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:02.881+00', 1573, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21880, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:03.45425+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:16.667675+00', 13213, NULL), +(21881, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:03.459482+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:05.095421+00', 1635, '{"deleted":0}'), +(21882, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:05.098719+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:00:16.667368+00', 11568, '{"errors":0,"created":0,"updated":1,"deleted":0}'), +(21883, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:00.262663+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.727493+00', 9464, NULL), +(21884, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:00.263647+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:06.886322+00', 6622, '{"timezone-id":"UTC"}'), +(21885, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:06.887671+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:07.207603+00', 319, '{"updated-tables":0,"total-tables":8}'), +(21886, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:07.207704+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.422088+00', 2214, '{"total-fields":71,"updated-fields":0}'), +(21887, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.422197+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.490995+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21888, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.491105+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.727457+00', 236, NULL), +(21889, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.813691+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.984646+00', 170, NULL), +(21890, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.813721+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.931048+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21891, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.931279+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.953006+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(21892, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.953243+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:19:09.98458+00', 31, '{"total-tables":8,"tables-classified":0}'), +(21893, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:02.318388+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.336694+00', 15018, NULL), +(21894, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:02.329036+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:02.396824+00', 67, '{"timezone-id":null}'), +(21895, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:02.401812+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:03.266005+00', 864, '{"updated-tables":0,"total-tables":4}'), +(21896, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:03.266244+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.276265+00', 14010, '{"total-fields":39,"updated-fields":0}'), +(21897, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.276405+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.330947+00', 54, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21898, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.331054+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.336632+00', 5, NULL), +(21899, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.719363+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.949114+00', 229, NULL), +(21900, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.719384+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.839708+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21901, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.839792+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.910188+00', 70, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21902, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.910266+00', TIMESTAMP WITH TIME ZONE '2023-01-24 02:49:17.949058+00', 38, '{"total-tables":4,"tables-classified":0}'), +(21903, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 03:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:00:01.595+00', 1389, NULL), +(21904, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 03:00:00.238+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:00:01.594+00', 1356, NULL), +(21905, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:02.533072+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.217623+00', 5684, NULL), +(21906, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:02.57058+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:03.520742+00', 950, '{"timezone-id":"UTC"}'), +(21907, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:03.523765+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:04.088401+00', 564, '{"updated-tables":0,"total-tables":8}'), +(21908, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:04.088768+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:07.344846+00', 3256, '{"total-fields":71,"updated-fields":0}'), +(21909, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:07.345374+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:07.50934+00', 163, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21910, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:07.509963+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.21757+00', 707, NULL), +(21911, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.428377+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.900361+00', 471, NULL), +(21912, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.4287+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.752109+00', 323, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21913, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.752527+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.807835+00', 55, '{"fields-classified":0,"fields-failed":0}'), +(21914, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.808154+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:19:08.90024+00', 92, '{"total-tables":8,"tables-classified":0}'), +(21915, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:00.700059+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:13.921647+00', 13221, NULL), +(21916, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:00.702331+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:00.714432+00', 12, '{"timezone-id":null}'), +(21917, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:00.718247+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:01.437042+00', 718, '{"updated-tables":0,"total-tables":4}'), +(21918, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:01.437412+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:13.908299+00', 12470, '{"total-fields":39,"updated-fields":0}'), +(21919, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:13.908401+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:13.917959+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21920, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:13.91806+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:13.921575+00', 3, NULL), +(21921, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.060299+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.121911+00', 61, NULL), +(21922, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.060323+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.097061+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21923, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.09719+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.101796+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21924, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.101891+00', TIMESTAMP WITH TIME ZONE '2023-01-24 03:49:14.121838+00', 19, '{"total-tables":4,"tables-classified":0}'), +(21925, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 04:00:00.176+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:00:01.27+00', 1094, NULL), +(21926, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 04:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:00:01.42+00', 1249, NULL), +(21927, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:00.314821+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:07.343432+00', 7028, NULL), +(21928, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:00.321765+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:01.338628+00', 1016, '{"timezone-id":"UTC"}'), +(21929, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:01.341317+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:02.071018+00', 729, '{"updated-tables":0,"total-tables":8}'), +(21930, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:02.071473+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:06.446604+00', 4375, '{"total-fields":71,"updated-fields":0}'), +(21931, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:06.446726+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:06.605507+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21932, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:06.606173+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:07.343371+00', 737, NULL), +(21933, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:07.591898+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:08.160971+00', 569, NULL), +(21934, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:07.591919+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:07.972476+00', 380, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21935, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:07.972854+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:08.05071+00', 77, '{"fields-classified":0,"fields-failed":0}'), +(21936, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:08.051059+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:19:08.160899+00', 109, '{"total-tables":8,"tables-classified":0}'), +(21937, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:01.244625+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.693853+00', 16449, NULL), +(21938, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:01.261129+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:01.320693+00', 59, '{"timezone-id":null}'), +(21939, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:01.328397+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:02.349753+00', 1021, '{"updated-tables":0,"total-tables":4}'), +(21940, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:02.350142+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.674301+00', 15324, '{"total-fields":39,"updated-fields":0}'), +(21941, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.674391+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.686193+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21942, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.686275+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.693789+00', 7, NULL), +(21943, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.843469+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.961292+00', 117, NULL), +(21944, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.843491+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.90491+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21945, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.905011+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.914885+00', 9, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21946, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.91498+00', TIMESTAMP WITH TIME ZONE '2023-01-24 04:49:17.96121+00', 46, '{"total-tables":4,"tables-classified":0}'), +(21947, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 05:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:00:03.036+00', 2827, NULL), +(21948, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 05:00:00.207+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:00:03.574+00', 3367, NULL), +(21949, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:00.26681+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:06.403895+00', 6137, NULL), +(21950, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:00.274917+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:01.044631+00', 769, '{"timezone-id":"UTC"}'), +(21951, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:01.047465+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:01.614092+00', 566, '{"updated-tables":0,"total-tables":8}'), +(21952, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:01.614195+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:05.452287+00', 3838, '{"total-fields":71,"updated-fields":0}'), +(21953, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:05.453139+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:05.629323+00', 176, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21954, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:05.629464+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:06.403832+00', 774, NULL), +(21955, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:06.726551+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:07.253171+00', 526, NULL), +(21956, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:06.726749+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:07.065471+00', 338, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21957, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:07.065892+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:07.143087+00', 77, '{"fields-classified":0,"fields-failed":0}'), +(21958, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:07.143647+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:19:07.252787+00', 109, '{"total-tables":8,"tables-classified":0}'), +(21959, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:00.240021+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.4439+00', 11203, NULL), +(21960, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:00.240053+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:00.243612+00', 3, '{"timezone-id":null}'), +(21961, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:00.243724+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:00.63148+00', 387, '{"updated-tables":0,"total-tables":4}'), +(21962, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:00.631552+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.44015+00', 10808, '{"total-fields":39,"updated-fields":0}'), +(21963, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.440249+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.44255+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21964, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.442614+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.443864+00', 1, NULL), +(21965, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.801282+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:12.271387+00', 470, NULL), +(21966, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.801302+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.824432+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21967, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.824532+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.827718+00', 3, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21968, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:11.827786+00', TIMESTAMP WITH TIME ZONE '2023-01-24 05:49:12.271328+00', 443, '{"total-tables":4,"tables-classified":0}'), +(21969, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 06:00:01.924+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:00:03.389+00', 1465, NULL), +(21970, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 06:00:01.352+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:00:03.533+00', 2181, NULL), +(21971, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:00.495545+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.231926+00', 6736, NULL), +(21972, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:00.500134+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:01.398811+00', 898, '{"timezone-id":"UTC"}'), +(21973, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:01.401816+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:01.941281+00', 539, '{"updated-tables":0,"total-tables":8}'), +(21974, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:01.941647+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:06.345645+00', 4403, '{"total-fields":71,"updated-fields":0}'), +(21975, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:06.345989+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:06.538947+00', 192, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21976, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:06.539452+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.23187+00', 692, NULL), +(21977, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.425358+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.983743+00', 558, NULL), +(21978, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.425611+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.810577+00', 384, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21979, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.81068+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.884914+00', 74, '{"fields-classified":0,"fields-failed":0}'), +(21980, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.885363+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:19:07.983182+00', 97, '{"total-tables":8,"tables-classified":0}'), +(21981, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:00.344852+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.383474+00', 10038, NULL), +(21982, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:00.345392+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:00.348876+00', 3, '{"timezone-id":null}'), +(21983, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:00.348966+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:00.730473+00', 381, '{"updated-tables":0,"total-tables":4}'), +(21984, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:00.730561+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.373567+00', 9643, '{"total-fields":39,"updated-fields":0}'), +(21985, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.373687+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.38082+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(21986, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.380936+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.383358+00', 2, NULL), +(21987, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.472183+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.524525+00', 52, NULL), +(21988, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.472205+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.506424+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(21989, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.506501+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.512114+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(21990, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.512185+00', TIMESTAMP WITH TIME ZONE '2023-01-24 06:49:10.524475+00', 12, '{"total-tables":4,"tables-classified":0}'), +(21991, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 07:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:00:01.019+00', 815, NULL), +(21992, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 07:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:00:01.134+00', 930, NULL), +(21993, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:00.426212+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:05.56485+00', 5138, NULL), +(21994, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:00.429533+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:00.999156+00', 569, '{"timezone-id":"UTC"}'), +(21995, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:01.004171+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:01.426246+00', 422, '{"updated-tables":0,"total-tables":8}'), +(21996, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:01.426732+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:04.691019+00', 3264, '{"total-fields":71,"updated-fields":0}'), +(21997, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:04.69135+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:04.844745+00', 153, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(21998, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:04.844834+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:05.56439+00', 719, NULL), +(21999, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:05.779789+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:06.250783+00', 470, NULL), +(22000, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:05.780106+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:06.109596+00', 329, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22001, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:06.109694+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:06.168396+00', 58, '{"fields-classified":0,"fields-failed":0}'), +(22002, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:06.168786+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:19:06.250704+00', 81, '{"total-tables":8,"tables-classified":0}'), +(22003, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:00.367984+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.309849+00', 10941, NULL), +(22004, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:00.368027+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:00.376864+00', 8, '{"timezone-id":null}'), +(22005, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:00.377765+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:00.932806+00', 555, '{"updated-tables":0,"total-tables":4}'), +(22006, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:00.933126+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.303434+00', 10370, '{"total-fields":39,"updated-fields":0}'), +(22007, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.303527+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.307252+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22008, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.30758+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.309802+00', 2, NULL), +(22009, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.407877+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.450729+00', 42, NULL), +(22010, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.407897+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.439518+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22011, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.439602+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.442418+00', 2, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22012, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.442478+00', TIMESTAMP WITH TIME ZONE '2023-01-24 07:49:11.450679+00', 8, '{"total-tables":4,"tables-classified":0}'), +(22013, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 08:00:00.216+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:00:03.934+00', 3718, NULL), +(22014, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 08:00:00.216+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:00:04.308+00', 4092, NULL), +(22015, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:00.102751+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.587555+00', 2484, NULL), +(22016, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:00.103012+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:00.353248+00', 250, '{"timezone-id":"UTC"}'), +(22017, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:00.353977+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:00.50575+00', 151, '{"updated-tables":0,"total-tables":8}'), +(22018, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:00.505903+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.059726+00', 1553, '{"total-fields":71,"updated-fields":0}'), +(22019, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.059819+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.176362+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22020, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.176501+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.587465+00', 410, NULL), +(22021, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.6449+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.715249+00', 70, NULL), +(22022, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.644924+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.695431+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22023, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.695581+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.703906+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(22024, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.703968+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:19:02.715197+00', 11, '{"total-tables":8,"tables-classified":0}'), +(22025, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:01.245542+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:20.812325+00', 19566, NULL), +(22026, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:01.252208+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:01.294227+00', 42, '{"timezone-id":null}'), +(22027, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:01.304893+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:02.151994+00', 847, '{"updated-tables":0,"total-tables":4}'), +(22028, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:02.152617+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:20.788006+00', 18635, '{"total-fields":39,"updated-fields":0}'), +(22029, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:20.788123+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:20.807673+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22030, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:20.807747+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:20.812274+00', 4, NULL), +(22031, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.066781+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.222813+00', 156, NULL), +(22032, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.066803+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.170366+00', 103, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22033, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.170435+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.190435+00', 20, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22034, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.190665+00', TIMESTAMP WITH TIME ZONE '2023-01-24 08:49:21.222686+00', 32, '{"total-tables":4,"tables-classified":0}'), +(22035, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 09:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:00:02.331+00', 2184, NULL), +(22036, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 09:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:00:02.331+00', 2158, NULL), +(22037, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:00.9043+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:09.500712+00', 8596, NULL), +(22038, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:00.912896+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:01.914788+00', 1001, '{"timezone-id":"UTC"}'), +(22039, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:01.934466+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:02.470004+00', 535, '{"updated-tables":0,"total-tables":8}'), +(22040, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:02.470739+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:07.996536+00', 5525, '{"total-fields":71,"updated-fields":0}'), +(22041, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:07.997265+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:08.209119+00', 211, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22042, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:08.209485+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:09.500195+00', 1290, NULL), +(22043, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:10.440976+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:11.2672+00', 826, NULL), +(22044, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:10.441296+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:11.081986+00', 640, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22045, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:11.082079+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:11.155041+00', 72, '{"fields-classified":0,"fields-failed":0}'), +(22046, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:11.155118+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:19:11.267147+00', 112, '{"total-tables":8,"tables-classified":0}'), +(22047, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:00.530815+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.293408+00', 20762, NULL), +(22048, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:00.536534+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:00.563177+00', 26, '{"timezone-id":null}'), +(22049, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:00.56713+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:01.137306+00', 570, '{"updated-tables":0,"total-tables":4}'), +(22050, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:01.137412+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.26216+00', 20124, '{"total-fields":39,"updated-fields":0}'), +(22051, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.264298+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.286413+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22052, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.287209+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.29302+00', 5, NULL), +(22053, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.369219+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.496611+00', 127, NULL), +(22054, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.369239+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.427136+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22055, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.427621+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.454483+00', 26, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22056, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.454571+00', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:21.496566+00', 41, '{"total-tables":4,"tables-classified":0}'), +(22057, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 10:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:00:01.34+00', 1239, NULL), +(22058, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 10:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:00:01.34+00', 1239, NULL), +(22059, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:02.797876+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.484825+00', 686, NULL), +(22060, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:02.800683+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:02.978834+00', 178, '{"timezone-id":"UTC"}'), +(22061, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:02.979356+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.12426+00', 144, '{"updated-tables":0,"total-tables":8}'), +(22062, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.12464+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.364935+00', 240, '{"total-fields":71,"updated-fields":0}'), +(22063, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.364982+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.389145+00', 24, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22064, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.389209+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.484793+00', 95, NULL), +(22065, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.867626+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:04.012678+00', 145, NULL), +(22066, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.867658+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.933845+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22067, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.933929+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.953045+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(22068, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:03.953107+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:04.010139+00', 57, '{"total-tables":8,"tables-classified":0}'), +(22069, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:00.211515+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.19314+00', 12981, NULL), +(22070, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:00.219087+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:00.230237+00', 11, '{"timezone-id":null}'), +(22071, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:00.23296+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:00.526344+00', 293, '{"updated-tables":0,"total-tables":4}'), +(22072, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:00.526464+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.155721+00', 12629, '{"total-fields":39,"updated-fields":0}'), +(22073, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.15581+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.186041+00', 30, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22074, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.186141+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.193079+00', 6, NULL), +(22075, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.499416+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.648319+00', 148, NULL), +(22076, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.499436+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.587933+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22077, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.588013+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.608814+00', 20, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22078, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.608899+00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:49:13.648256+00', 39, '{"total-tables":4,"tables-classified":0}'), +(22079, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 11:00:00.054+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:00:00.076+00', 22, NULL), +(22080, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 11:00:00.086+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:00:00.315+00', 229, NULL), +(22081, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:00.266121+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.773706+00', 2507, NULL), +(22082, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:00.271107+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:01.127281+00', 856, '{"timezone-id":"UTC"}'), +(22083, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:01.129283+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:01.513274+00', 383, '{"updated-tables":0,"total-tables":8}'), +(22084, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:01.513363+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.541173+00', 1027, '{"total-fields":71,"updated-fields":0}'), +(22085, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.541268+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.616048+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22086, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.616108+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.773664+00', 157, NULL), +(22087, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.879505+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:03.041437+00', 161, NULL), +(22088, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.879528+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.978948+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22089, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:02.979113+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:03.006337+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(22090, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:03.006421+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:03.041387+00', 34, '{"total-tables":8,"tables-classified":0}'), +(22091, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:00.275759+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.403539+00', 12127, NULL), +(22092, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:00.282554+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:00.296072+00', 13, '{"timezone-id":null}'), +(22093, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:00.300922+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:00.548758+00', 247, '{"updated-tables":0,"total-tables":4}'), +(22094, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:00.549052+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.369988+00', 11820, '{"total-fields":39,"updated-fields":0}'), +(22095, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.370112+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.397191+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22096, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.397285+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.403472+00', 6, NULL), +(22097, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.537592+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.64564+00', 108, NULL), +(22098, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.537612+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.602156+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22099, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.602366+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.618184+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22100, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.618303+00', TIMESTAMP WITH TIME ZONE '2023-01-24 11:49:12.645587+00', 27, '{"total-tables":4,"tables-classified":0}'), +(22101, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:00.382+00', 265, NULL), +(22102, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:00.382+00', 257, NULL), +(22103, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:00.655346+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.743894+00', 4088, NULL), +(22104, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:00.661057+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:01.336185+00', 675, '{"timezone-id":"UTC"}'), +(22105, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:01.340668+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:01.695896+00', 355, '{"updated-tables":0,"total-tables":8}'), +(22106, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:01.69599+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.151679+00', 2455, '{"total-fields":71,"updated-fields":0}'), +(22107, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.151813+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.226432+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22108, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.226495+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.743837+00', 517, NULL), +(22109, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.909571+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:05.090733+00', 181, NULL), +(22110, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:04.90959+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:05.019064+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22111, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:05.019129+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:05.06349+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(22112, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:05.063579+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:19:05.090686+00', 27, '{"total-tables":8,"tables-classified":0}'), +(22113, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:01.043818+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:19.884494+00', 18840, NULL), +(22114, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:01.045392+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:01.083284+00', 37, '{"timezone-id":null}'), +(22115, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:01.086314+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:02.096222+00', 1009, '{"updated-tables":0,"total-tables":4}'), +(22116, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:02.096335+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:19.87659+00', 17780, '{"total-fields":39,"updated-fields":0}'), +(22117, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:19.876731+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:19.882073+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22118, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:19.882332+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:19.884253+00', 1, NULL), +(22119, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.052407+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.132193+00', 79, NULL), +(22120, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.052492+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.106134+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22121, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.106441+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.117594+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22122, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.117858+00', TIMESTAMP WITH TIME ZONE '2023-01-24 12:49:20.131914+00', 14, '{"total-tables":4,"tables-classified":0}'), +(22123, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 13:00:00.099+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:00:05.423+00', 5324, NULL), +(22124, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 13:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:00:05.68+00', 5597, NULL), +(22125, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:00.305583+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.361225+00', 6055, NULL), +(22126, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:00.309247+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:00.960656+00', 651, '{"timezone-id":"UTC"}'), +(22127, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:00.963321+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:01.547812+00', 584, '{"updated-tables":0,"total-tables":8}'), +(22128, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:01.548371+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:05.598193+00', 4049, '{"total-fields":71,"updated-fields":0}'), +(22129, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:05.598294+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:05.780023+00', 181, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22130, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:05.780182+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.361157+00', 580, NULL), +(22131, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.466901+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.59186+00', 124, NULL), +(22132, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.466926+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.545922+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22133, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.546004+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.566029+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(22134, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.566105+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:19:06.591805+00', 25, '{"total-tables":8,"tables-classified":0}'), +(22135, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:01.094448+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.365488+00', 11271, NULL), +(22136, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:01.22226+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:01.328553+00', 106, '{"timezone-id":null}'), +(22137, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:01.358038+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:02.030215+00', 672, '{"updated-tables":0,"total-tables":4}'), +(22138, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:02.030377+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.3581+00', 10327, '{"total-fields":39,"updated-fields":0}'), +(22139, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.358508+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.362961+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22140, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.363023+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.365455+00', 2, NULL), +(22141, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.404521+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.592977+00', 188, NULL), +(22142, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.404541+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.530167+00', 125, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22143, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.530594+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.560158+00', 29, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22144, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.560509+00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:12.592914+00', 32, '{"total-tables":4,"tables-classified":0}'), +(22145, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 14:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:00:03.442+00', 3287, NULL), +(22146, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 14:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:00:03.452+00', 3301, NULL), +(22147, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:01.027684+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:06.708582+00', 5680, NULL), +(22148, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:01.041596+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:02.650737+00', 1609, '{"timezone-id":"UTC"}'), +(22149, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:02.659938+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:03.367363+00', 707, '{"updated-tables":0,"total-tables":8}'), +(22150, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:03.367809+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:06.283256+00', 2915, '{"total-fields":71,"updated-fields":0}'), +(22151, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:06.283347+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:06.337106+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22152, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:06.337172+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:06.708187+00', 371, NULL), +(22153, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.062886+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.262357+00', 199, NULL), +(22154, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.062905+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.217983+00', 155, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22155, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.21807+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.235205+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(22156, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.235284+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:19:07.262308+00', 27, '{"total-tables":8,"tables-classified":0}'), +(22157, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:02.134486+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.640621+00', 17506, NULL), +(22158, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:02.147129+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:02.377986+00', 230, '{"timezone-id":null}'), +(22159, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:02.47292+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:04.626697+00', 2153, '{"updated-tables":0,"total-tables":4}'), +(22160, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:04.628237+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.618725+00', 14990, '{"total-fields":39,"updated-fields":0}'), +(22161, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.618842+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.636646+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22162, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.636725+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.640563+00', 3, NULL), +(22163, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.847615+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.972521+00', 124, NULL), +(22164, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.847641+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.927082+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22165, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.927354+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.951753+00', 24, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22166, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.951942+00', TIMESTAMP WITH TIME ZONE '2023-01-24 14:49:19.972463+00', 20, '{"total-tables":4,"tables-classified":0}'), +(22167, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 15:00:00.223+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:00:05.268+00', 5045, NULL), +(22168, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 15:00:00.222+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:00:05.849+00', 5627, NULL), +(22169, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:00.402963+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.281598+00', 6878, NULL), +(22170, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:00.411172+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:01.423517+00', 1012, '{"timezone-id":"UTC"}'), +(22171, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:01.426662+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:02.121206+00', 694, '{"updated-tables":0,"total-tables":8}'), +(22172, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:02.121917+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:06.475129+00', 4353, '{"total-fields":71,"updated-fields":0}'), +(22173, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:06.475621+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:06.684733+00', 209, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22174, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:06.68539+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.28157+00', 596, NULL), +(22175, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.420282+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.608251+00', 187, NULL), +(22176, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.420304+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.53658+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22177, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.536793+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.562119+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(22178, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.562335+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:19:07.608197+00', 45, '{"total-tables":8,"tables-classified":0}'), +(22179, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:01.319125+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.526979+00', 15207, NULL), +(22180, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:01.322253+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:01.345706+00', 23, '{"timezone-id":null}'), +(22181, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:01.354297+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:02.158364+00', 804, '{"updated-tables":0,"total-tables":4}'), +(22182, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:02.158495+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.514604+00', 14356, '{"total-fields":39,"updated-fields":0}'), +(22183, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.514716+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.524784+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22184, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.524978+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.526928+00', 1, NULL), +(22185, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.632654+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.688049+00', 55, NULL), +(22186, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.632678+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.664725+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22187, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.664804+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.669715+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22188, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.669792+00', TIMESTAMP WITH TIME ZONE '2023-01-24 15:49:16.687996+00', 18, '{"total-tables":4,"tables-classified":0}'), +(22189, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 16:00:00.271+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:00:00.537+00', 266, NULL), +(22190, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 16:00:00.245+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:00:00.537+00', 292, NULL), +(22191, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:00.256936+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:05.391545+00', 5134, NULL), +(22192, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:00.259903+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:00.937366+00', 677, '{"timezone-id":"UTC"}'), +(22193, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:00.940318+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:01.309658+00', 369, '{"updated-tables":0,"total-tables":8}'), +(22194, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:01.309996+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:04.491309+00', 3181, '{"total-fields":71,"updated-fields":0}'), +(22195, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:04.491728+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:04.669936+00', 178, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22196, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:04.670489+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:05.391174+00', 720, NULL), +(22197, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:05.63134+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:06.091592+00', 460, NULL), +(22198, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:05.631752+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:05.932553+00', 300, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22199, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:05.933136+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:06.006733+00', 73, '{"fields-classified":0,"fields-failed":0}'), +(22200, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:06.00764+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:19:06.09117+00', 83, '{"total-tables":8,"tables-classified":0}'), +(22201, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:00.516816+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:14.855229+00', 14338, NULL), +(22202, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:00.517448+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:00.522173+00', 4, '{"timezone-id":null}'), +(22203, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:00.522435+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:01.210133+00', 687, '{"updated-tables":0,"total-tables":4}'), +(22204, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:01.210385+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:14.847268+00', 13636, '{"total-fields":39,"updated-fields":0}'), +(22205, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:14.847397+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:14.853109+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22206, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:14.85318+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:14.855189+00', 2, NULL), +(22207, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.054324+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.130049+00', 75, NULL), +(22208, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.05438+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.099842+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22209, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.099972+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.104936+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22210, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.105053+00', TIMESTAMP WITH TIME ZONE '2023-01-24 16:49:15.129981+00', 24, '{"total-tables":4,"tables-classified":0}'), +(22211, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 17:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:00:00.438+00', 355, NULL), +(22212, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 17:00:00.052+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:00:00.494+00', 442, NULL), +(22213, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:00.567658+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.108298+00', 6540, NULL), +(22214, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:00.57299+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:02.296152+00', 1723, '{"timezone-id":"UTC"}'), +(22215, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:02.302129+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:02.952629+00', 650, '{"updated-tables":0,"total-tables":8}'), +(22216, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:02.954255+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:06.215833+00', 3261, '{"total-fields":71,"updated-fields":0}'), +(22217, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:06.216564+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:06.396235+00', 179, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22218, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:06.39657+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.107918+00', 711, NULL), +(22219, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.360703+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.860582+00', 499, NULL), +(22220, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.360735+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.698771+00', 338, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22221, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.698901+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.75919+00', 60, '{"fields-classified":0,"fields-failed":0}'), +(22222, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.759627+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:19:07.860504+00', 100, '{"total-tables":8,"tables-classified":0}'), +(22223, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:01.276277+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.705109+00', 14428, NULL), +(22224, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:01.289987+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:01.339169+00', 49, '{"timezone-id":null}'), +(22225, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:01.349193+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:02.259369+00', 910, '{"updated-tables":0,"total-tables":4}'), +(22226, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:02.259803+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.663967+00', 13404, '{"total-fields":39,"updated-fields":0}'), +(22227, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.664112+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.687576+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22228, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.687647+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.705048+00', 17, NULL), +(22229, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.924822+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:16.062782+00', 137, NULL), +(22230, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:15.924845+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:16.012961+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22231, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:16.01304+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:16.025419+00', 12, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22232, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:16.02553+00', TIMESTAMP WITH TIME ZONE '2023-01-24 17:49:16.062728+00', 37, '{"total-tables":4,"tables-classified":0}'), +(22233, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 18:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:00:00.977+00', 763, NULL), +(22234, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 18:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:00:01.1+00', 886, NULL), +(22235, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:00.790999+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.433071+00', 5642, NULL), +(22236, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:00.800665+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:01.887592+00', 1086, '{"timezone-id":"UTC"}'), +(22237, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:01.891312+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:02.385101+00', 493, '{"updated-tables":0,"total-tables":8}'), +(22238, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:02.385889+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:05.713091+00', 3327, '{"total-fields":71,"updated-fields":0}'), +(22239, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:05.713192+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:05.845847+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22240, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:05.846177+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.432653+00', 586, NULL), +(22241, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.594309+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.969287+00', 374, NULL), +(22242, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.594328+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.840744+00', 246, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22243, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.840811+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.870936+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(22244, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.871009+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:19:06.969235+00', 98, '{"total-tables":8,"tables-classified":0}'), +(22245, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:00.633029+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.128292+00', 12495, NULL), +(22246, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:00.633359+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:00.640119+00', 6, '{"timezone-id":null}'), +(22247, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:00.641507+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:01.306277+00', 664, '{"updated-tables":0,"total-tables":4}'), +(22248, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:01.306385+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.113266+00', 11806, '{"total-fields":39,"updated-fields":0}'), +(22249, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.113354+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.124863+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22250, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.124935+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.128237+00', 3, NULL), +(22251, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.253608+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.351584+00', 97, NULL), +(22252, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.253629+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.308717+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22253, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.308791+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.319345+00', 10, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22254, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.319652+00', TIMESTAMP WITH TIME ZONE '2023-01-24 18:49:13.351534+00', 31, '{"total-tables":4,"tables-classified":0}'), +(22255, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 19:00:00.479+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:00:03.268+00', 2789, NULL), +(22256, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 19:00:00.479+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:00:03.364+00', 2885, NULL), +(22257, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:00.310314+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.338298+00', 7027, NULL), +(22258, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:00.31531+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:01.193496+00', 878, '{"timezone-id":"UTC"}'), +(22259, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:01.198906+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:01.870907+00', 672, '{"updated-tables":0,"total-tables":8}'), +(22260, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:01.871659+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:05.217404+00', 3345, '{"total-fields":71,"updated-fields":0}'), +(22261, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:05.217728+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:05.402535+00', 184, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22262, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:05.402742+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.338229+00', 1935, NULL), +(22263, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.578044+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:08.098753+00', 520, NULL), +(22264, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.578306+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.882883+00', 304, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22265, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.883455+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.969506+00', 86, '{"fields-classified":0,"fields-failed":0}'), +(22266, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:07.970007+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:19:08.09837+00', 128, '{"total-tables":8,"tables-classified":0}'), +(22267, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:00.654544+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.752667+00', 16098, NULL), +(22268, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:00.656096+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:00.662511+00', 6, '{"timezone-id":null}'), +(22269, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:00.663635+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:01.151401+00', 487, '{"updated-tables":0,"total-tables":4}'), +(22270, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:01.151528+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.744362+00', 15592, '{"total-fields":39,"updated-fields":0}'), +(22271, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.744493+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.750124+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22272, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.750196+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.75263+00', 2, NULL), +(22273, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.885949+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.941738+00', 55, NULL), +(22274, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.88597+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.92155+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22275, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.92162+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.926669+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22276, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.926749+00', TIMESTAMP WITH TIME ZONE '2023-01-24 19:49:16.941662+00', 14, '{"total-tables":4,"tables-classified":0}'), +(22277, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 20:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:00:01.156+00', 935, NULL), +(22278, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 20:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:00:01.249+00', 1028, NULL), +(22279, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:00.529943+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:07.436508+00', 6906, NULL), +(22280, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:00.535676+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:01.556658+00', 1020, '{"timezone-id":"UTC"}'), +(22281, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:01.55959+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:02.244137+00', 684, '{"updated-tables":0,"total-tables":8}'), +(22282, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:02.24447+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:06.272995+00', 4028, '{"total-fields":71,"updated-fields":0}'), +(22283, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:06.273322+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:06.510866+00', 237, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22284, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:06.511221+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:07.436453+00', 925, NULL), +(22285, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:07.832352+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:08.398584+00', 566, NULL), +(22286, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:07.833073+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:08.203317+00', 370, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22287, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:08.203803+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:08.272152+00', 68, '{"fields-classified":0,"fields-failed":0}'), +(22288, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:08.2723+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:19:08.397605+00', 125, '{"total-tables":8,"tables-classified":0}'), +(22289, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:00.710231+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:11.896922+00', 11186, NULL), +(22290, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:00.712953+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:00.732527+00', 19, '{"timezone-id":null}'), +(22291, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:00.734203+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:01.195424+00', 461, '{"updated-tables":0,"total-tables":4}'), +(22292, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:01.19581+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:11.861102+00', 10665, '{"total-fields":39,"updated-fields":0}'), +(22293, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:11.861224+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:11.876325+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22294, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:11.876396+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:11.89676+00', 20, NULL), +(22295, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.057488+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.135563+00', 78, NULL), +(22296, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.057532+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.104613+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22297, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.104691+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.116128+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22298, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.116203+00', TIMESTAMP WITH TIME ZONE '2023-01-24 20:49:12.135437+00', 19, '{"total-tables":4,"tables-classified":0}'), +(22299, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:01.046+00', 921, NULL), +(22300, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:00.105+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:01.049+00', 944, NULL), +(22301, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:01.115588+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:14.939068+00', 13823, NULL), +(22302, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:01.122805+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:04.515914+00', 3393, '{"deleted":0}'), +(22303, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:04.52004+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:00:14.939017+00', 10418, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(22304, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:00.303477+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.66772+00', 1364, NULL), +(22305, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:00.303712+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:00.585267+00', 281, '{"timezone-id":"UTC"}'), +(22306, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:00.586252+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:00.896525+00', 310, '{"updated-tables":0,"total-tables":8}'), +(22307, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:00.896846+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.449225+00', 552, '{"total-fields":71,"updated-fields":0}'), +(22308, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.449278+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.516597+00', 67, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22309, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.516668+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.667685+00', 151, NULL), +(22310, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.712568+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.834466+00', 121, NULL), +(22311, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.712591+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.791109+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22312, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.791257+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.812859+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(22313, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.812931+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:19:01.834354+00', 21, '{"total-tables":8,"tables-classified":0}'), +(22314, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:00.286079+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.104651+00', 16818, NULL), +(22315, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:00.289556+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:00.302509+00', 12, '{"timezone-id":null}'), +(22316, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:00.305176+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:00.632194+00', 327, '{"updated-tables":0,"total-tables":4}'), +(22317, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:00.632857+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.0883+00', 16455, '{"total-fields":39,"updated-fields":0}'), +(22318, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.08841+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.099785+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22319, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.100172+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.104387+00', 4, NULL), +(22320, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.182787+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.263965+00', 81, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22321, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.18281+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.233766+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22322, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.233907+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.247975+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(22323, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.248055+00', TIMESTAMP WITH TIME ZONE '2023-01-24 21:49:17.26392+00', 15, '{"total-tables":4,"tables-classified":0}'), +(22324, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 22:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:00:01.323+00', 1120, NULL), +(22325, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 22:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:00:01.485+00', 1282, NULL), +(22326, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:00.493382+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:05.954288+00', 5460, NULL), +(22327, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:00.497787+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:01.387116+00', 889, '{"timezone-id":"UTC"}'), +(22328, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:01.389458+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:01.873558+00', 484, '{"updated-tables":0,"total-tables":8}'), +(22329, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:01.873678+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:04.954536+00', 3080, '{"total-fields":71,"updated-fields":0}'), +(22330, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:04.955069+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:05.114299+00', 159, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22331, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:05.114699+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:05.953908+00', 839, NULL), +(22332, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.188667+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.655713+00', 467, NULL), +(22333, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.188692+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.500215+00', 311, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22334, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.500861+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.558189+00', 57, '{"fields-classified":0,"fields-failed":0}'), +(22335, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.55869+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:19:06.655396+00', 96, '{"total-tables":8,"tables-classified":0}'), +(22336, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:00.614883+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.395738+00', 9780, NULL), +(22337, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:00.617318+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:00.624251+00', 6, '{"timezone-id":null}'), +(22338, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:00.62594+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:01.252368+00', 626, '{"updated-tables":0,"total-tables":4}'), +(22339, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:01.25255+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.38969+00', 9137, '{"total-fields":39,"updated-fields":0}'), +(22340, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.389797+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.393822+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22341, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.393912+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.395676+00', 1, NULL), +(22342, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.52136+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.580145+00', 58, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22343, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.521385+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.556354+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22344, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.55647+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.560711+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(22345, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.560777+00', TIMESTAMP WITH TIME ZONE '2023-01-24 22:49:10.580096+00', 19, '{"total-tables":4,"tables-classified":0}'), +(22346, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 23:00:00.237+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:00:01.032+00', 795, NULL), +(22347, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-24 23:00:00.433+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:00:01.032+00', 599, NULL), +(22348, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:00.375514+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:07.992804+00', 7617, NULL), +(22349, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:00.379386+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:00.867145+00', 487, '{"timezone-id":"UTC"}'), +(22350, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:00.870744+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:01.241939+00', 371, '{"updated-tables":0,"total-tables":8}'), +(22351, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:01.242329+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:05.775006+00', 4532, '{"total-fields":71,"updated-fields":0}'), +(22352, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:05.77544+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:06.597211+00', 821, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22353, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:06.597371+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:07.99251+00', 1395, NULL), +(22354, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.189314+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.56191+00', 372, NULL), +(22355, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.189337+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.414796+00', 225, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22356, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.415179+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.485196+00', 70, '{"fields-classified":0,"fields-failed":0}'), +(22357, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.485294+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:19:08.561843+00', 76, '{"total-tables":8,"tables-classified":0}'), +(22358, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:00.529744+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.289731+00', 10759, NULL), +(22359, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:00.53096+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:00.535016+00', 4, '{"timezone-id":null}'), +(22360, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:00.535379+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:00.945879+00', 410, '{"updated-tables":0,"total-tables":4}'), +(22361, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:00.945957+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.28235+00', 10336, '{"total-fields":39,"updated-fields":0}'), +(22362, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.28246+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.288079+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22363, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.288138+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.289697+00', 1, NULL), +(22364, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.410291+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.48403+00', 73, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22365, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.410316+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.449024+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22366, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.449246+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.457706+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(22367, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.45778+00', TIMESTAMP WITH TIME ZONE '2023-01-24 23:49:11.483981+00', 26, '{"total-tables":4,"tables-classified":0}'), +(22368, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 00:00:00.256+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:00:03.113+00', 2857, NULL), +(22369, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 00:00:00.256+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:00:03.72+00', 3464, NULL), +(22370, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:01.069642+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:06.475861+00', 5406, NULL), +(22371, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:01.07603+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:02.308076+00', 1232, '{"timezone-id":"UTC"}'), +(22372, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:02.311962+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:02.79209+00', 480, '{"updated-tables":0,"total-tables":8}'), +(22373, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:02.792447+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:05.669495+00', 2877, '{"total-fields":71,"updated-fields":0}'), +(22374, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:05.670606+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:05.814219+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22375, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:05.814553+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:06.475811+00', 661, NULL), +(22376, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:06.736667+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:07.11254+00', 375, NULL), +(22377, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:06.736692+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:06.990369+00', 253, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22378, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:06.990663+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:07.047488+00', 56, '{"fields-classified":0,"fields-failed":0}'), +(22379, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:07.047821+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:19:07.112468+00', 64, '{"total-tables":8,"tables-classified":0}'), +(22380, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:01.150571+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.790742+00', 13640, NULL), +(22381, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:01.159365+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:01.223997+00', 64, '{"timezone-id":null}'), +(22382, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:01.229576+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:02.127197+00', 897, '{"updated-tables":0,"total-tables":4}'), +(22383, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:02.127715+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.774398+00', 12646, '{"total-fields":39,"updated-fields":0}'), +(22384, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.774506+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.785289+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22385, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.785361+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.790692+00', 5, NULL), +(22386, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.918+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:15.002284+00', 84, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22387, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.918029+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.966229+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22388, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.966294+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.975396+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(22389, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:14.975457+00', TIMESTAMP WITH TIME ZONE '2023-01-25 00:49:15.002238+00', 26, '{"total-tables":4,"tables-classified":0}'), +(22390, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 01:00:00.066+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:00:00.822+00', 756, NULL), +(22391, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 01:00:00.051+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:00:00.894+00', 843, NULL), +(22392, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:00.397861+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:05.609648+00', 5211, NULL), +(22393, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:00.402894+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:01.040586+00', 637, '{"timezone-id":"UTC"}'), +(22394, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:01.042938+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:01.503777+00', 460, '{"updated-tables":0,"total-tables":8}'), +(22395, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:01.504338+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:04.664992+00', 3160, '{"total-fields":71,"updated-fields":0}'), +(22396, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:04.665316+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:04.900284+00', 234, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22397, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:04.900721+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:05.609572+00', 708, NULL), +(22398, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:05.830343+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:06.261469+00', 431, NULL), +(22399, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:05.830362+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:06.075838+00', 245, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22400, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:06.076084+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:06.16142+00', 85, '{"fields-classified":0,"fields-failed":0}'), +(22401, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:06.162535+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:19:06.261399+00', 98, '{"total-tables":8,"tables-classified":0}'), +(22402, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:00.795781+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.703091+00', 12907, NULL), +(22403, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:00.799541+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:00.81265+00', 13, '{"timezone-id":null}'), +(22404, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:00.817923+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:01.25337+00', 435, '{"updated-tables":0,"total-tables":4}'), +(22405, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:01.253518+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.697293+00', 12443, '{"total-fields":39,"updated-fields":0}'), +(22406, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.697371+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.700753+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22407, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.700806+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.70306+00', 2, NULL), +(22408, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.800547+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.840464+00', 39, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22409, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.800567+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.828861+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22410, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.82892+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.832451+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(22411, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.832507+00', TIMESTAMP WITH TIME ZONE '2023-01-25 01:49:13.840399+00', 7, '{"total-tables":4,"tables-classified":0}'), +(22412, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:00.235+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:01.849+00', 1614, NULL), +(22413, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:00.263+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:01.674+00', 1411, NULL), +(22414, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:02.44028+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:17.453322+00', 15013, NULL), +(22415, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:02.445094+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:04.468982+00', 2023, '{"deleted":0}'), +(22416, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:04.472798+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:00:17.452853+00', 12980, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(22417, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:00.399116+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.526329+00', 3127, NULL), +(22418, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:00.400814+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:01.203184+00', 802, '{"timezone-id":"UTC"}'), +(22419, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:01.204052+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:01.777329+00', 573, '{"updated-tables":0,"total-tables":8}'), +(22420, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:01.777458+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.218906+00', 1441, '{"total-fields":71,"updated-fields":0}'), +(22421, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.218982+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.321419+00', 102, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22422, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.321514+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.526232+00', 204, NULL), +(22423, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.590645+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.720887+00', 130, NULL), +(22424, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.59067+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.65777+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22425, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.657855+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.683032+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(22426, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.683107+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:19:03.720833+00', 37, '{"total-tables":8,"tables-classified":0}'), +(22427, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:00.209429+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.529335+00', 11319, NULL), +(22428, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:00.209502+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:00.228659+00', 19, '{"timezone-id":null}'), +(22429, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:00.230817+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:00.815819+00', 585, '{"updated-tables":0,"total-tables":4}'), +(22430, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:00.815904+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.518766+00', 10702, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22431, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.518845+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.525759+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22432, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.52583+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.529283+00', 3, NULL), +(22433, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.606575+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.664564+00', 57, NULL), +(22434, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.606596+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.646111+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22435, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.646195+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.652842+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(22436, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.652975+00', TIMESTAMP WITH TIME ZONE '2023-01-25 02:49:11.664511+00', 11, '{"total-tables":4,"tables-classified":0}'), +(22437, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 03:00:00.103+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:00:02.905+00', 2802, NULL), +(22438, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 03:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:00:02.739+00', 2620, NULL), +(22439, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:00.205389+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:04.554004+00', 4348, NULL), +(22440, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:00.209676+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:00.528534+00', 318, '{"timezone-id":"UTC"}'), +(22441, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:00.531579+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:00.964655+00', 433, '{"updated-tables":0,"total-tables":8}'), +(22442, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:00.964989+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:03.662556+00', 2697, '{"total-fields":71,"updated-fields":0}'), +(22443, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:03.662667+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:03.807788+00', 145, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22444, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:03.808133+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:04.553945+00', 745, NULL), +(22445, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:04.785687+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:05.080383+00', 294, NULL), +(22446, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:04.785954+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:05.017006+00', 231, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22447, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:05.017093+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:05.051696+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(22448, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:05.051977+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:19:05.080328+00', 28, '{"total-tables":8,"tables-classified":0}'), +(22449, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:00.242682+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.303544+00', 10060, NULL), +(22450, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:00.24272+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:00.245207+00', 2, '{"timezone-id":null}'), +(22451, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:00.245284+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:00.567189+00', 321, '{"updated-tables":0,"total-tables":4}'), +(22452, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:00.567268+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.296834+00', 9729, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22453, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.296913+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.299704+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22454, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.299779+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.303483+00', 3, NULL), +(22455, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.420125+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.458325+00', 38, NULL), +(22456, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.420529+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.443792+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22457, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.44386+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.44848+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(22458, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.448541+00', TIMESTAMP WITH TIME ZONE '2023-01-25 03:49:10.458283+00', 9, '{"total-tables":4,"tables-classified":0}'), +(22459, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 04:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:00:01.49+00', 1311, NULL), +(22460, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 04:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:00:01.605+00', 1428, NULL), +(22461, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:01.250665+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:07.750705+00', 6500, NULL), +(22462, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:01.25496+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:02.232078+00', 977, '{"timezone-id":"UTC"}'), +(22463, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:02.236372+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:02.626391+00', 390, '{"updated-tables":0,"total-tables":8}'), +(22464, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:02.62671+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:06.898015+00', 4271, '{"total-fields":71,"updated-fields":0}'), +(22465, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:06.898194+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:07.056322+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22466, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:07.057162+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:07.750372+00', 693, NULL), +(22467, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:07.944477+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:08.317665+00', 373, NULL), +(22468, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:07.9445+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:08.191421+00', 246, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22469, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:08.191557+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:08.24983+00', 58, '{"fields-classified":0,"fields-failed":0}'), +(22470, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:08.250581+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:19:08.317276+00', 66, '{"total-tables":8,"tables-classified":0}'), +(22471, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:00.586775+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.803454+00', 11216, NULL), +(22472, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:00.589431+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:00.597508+00', 8, '{"timezone-id":null}'), +(22473, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:00.598478+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:01.116883+00', 518, '{"updated-tables":0,"total-tables":4}'), +(22474, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:01.116951+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.795429+00', 10678, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22475, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.795634+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.801243+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22476, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.801398+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.80334+00', 1, NULL), +(22477, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.918493+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.963621+00', 45, NULL), +(22478, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.918511+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.946791+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22479, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.947155+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.954101+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(22480, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.954225+00', TIMESTAMP WITH TIME ZONE '2023-01-25 04:49:11.963342+00', 9, '{"total-tables":4,"tables-classified":0}'), +(22481, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 05:00:00.078+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:00:01.335+00', 1257, NULL), +(22482, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 05:00:00.054+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:00:01.405+00', 1351, NULL), +(22483, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:00.276746+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.142112+00', 5865, NULL), +(22484, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:00.280551+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:00.927967+00', 647, '{"timezone-id":"UTC"}'), +(22485, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:00.930201+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:01.368085+00', 437, '{"updated-tables":0,"total-tables":8}'), +(22486, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:01.368384+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:05.137035+00', 3768, '{"total-fields":71,"updated-fields":0}'), +(22487, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:05.137443+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:05.292613+00', 155, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22488, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:05.292932+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.142028+00', 849, NULL), +(22489, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.3633+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.770562+00', 407, NULL), +(22490, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.363326+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.617879+00', 254, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22491, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.6185+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.68781+00', 69, '{"fields-classified":0,"fields-failed":0}'), +(22492, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.688301+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:19:06.770143+00', 81, '{"total-tables":8,"tables-classified":0}'), +(22493, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:00.204229+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.128787+00', 8924, NULL), +(22494, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:00.204263+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:00.211049+00', 6, '{"timezone-id":null}'), +(22495, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:00.211164+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:00.525419+00', 314, '{"updated-tables":0,"total-tables":4}'), +(22496, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:00.52553+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.12317+00', 8597, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22497, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.123267+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.127455+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22498, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.127549+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.128743+00', 1, NULL), +(22499, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.190856+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.23464+00', 43, NULL), +(22500, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.190873+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.215313+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22501, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.21551+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.221077+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22502, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.221164+00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:49:09.234581+00', 13, '{"total-tables":4,"tables-classified":0}'), +(22503, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 06:00:00.288+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:00:01.588+00', 1300, NULL), +(22504, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 06:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:00:01.795+00', 1647, NULL), +(22505, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:00.302651+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:07.151196+00', 6848, NULL), +(22506, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:00.319056+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:01.270676+00', 951, '{"timezone-id":"UTC"}'), +(22507, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:01.274614+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:01.888817+00', 614, '{"updated-tables":0,"total-tables":8}'), +(22508, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:01.889225+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:06.10126+00', 4212, '{"total-fields":71,"updated-fields":0}'), +(22509, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:06.101364+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:06.296932+00', 195, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22510, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:06.2973+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:07.151066+00', 853, NULL), +(22511, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:07.425975+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:10.61846+00', 3192, NULL), +(22512, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:07.426328+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:08.321625+00', 895, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22513, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:08.32209+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:09.47125+00', 1149, '{"fields-classified":0,"fields-failed":0}'), +(22514, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:09.47136+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:19:10.618392+00', 1147, '{"total-tables":8,"tables-classified":0}'), +(22515, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:00.135735+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.459327+00', 14323, NULL), +(22516, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:00.136365+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:00.139791+00', 3, '{"timezone-id":null}'), +(22517, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:00.140244+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:00.294811+00', 154, '{"updated-tables":0,"total-tables":4}'), +(22518, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:00.295279+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.456147+00', 14160, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22519, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.456267+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.458115+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22520, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.458384+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.459264+00', 0, NULL), +(22521, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.50246+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.529323+00', 26, NULL), +(22522, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.502481+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.518788+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22523, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.518982+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.523426+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(22524, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.52354+00', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:14.529234+00', 5, '{"total-tables":4,"tables-classified":0}'), +(22525, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 07:00:00.057+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:00:00.242+00', 185, NULL), +(22526, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 07:00:00.057+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:00:00.245+00', 188, NULL), +(22527, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.032122+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.53021+00', 498, NULL), +(22528, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.033482+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.207159+00', 173, '{"timezone-id":"UTC"}'), +(22529, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.20777+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.2781+00', 70, '{"updated-tables":0,"total-tables":8}'), +(22530, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.278285+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.45154+00', 173, '{"total-fields":71,"updated-fields":0}'), +(22531, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.4516+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.469324+00', 17, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22532, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.469388+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.530174+00', 60, NULL), +(22533, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.547718+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.59296+00', 45, NULL), +(22534, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.547739+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.576862+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22535, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.57693+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.583487+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(22536, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.583561+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:00.592911+00', 9, '{"total-tables":8,"tables-classified":0}'), +(22537, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:00.104689+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.551362+00', 11446, NULL), +(22538, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:00.106429+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:00.109646+00', 3, '{"timezone-id":null}'), +(22539, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:00.115884+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:00.261513+00', 145, '{"updated-tables":0,"total-tables":4}'), +(22540, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:00.26164+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.542932+00', 11281, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22541, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.543012+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.548746+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22542, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.548835+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.551311+00', 2, NULL), +(22543, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.586543+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.620049+00', 33, NULL), +(22544, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.586567+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.606568+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22545, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.606726+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.612728+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(22546, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.612798+00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:11.619998+00', 7, '{"total-tables":4,"tables-classified":0}'), +(22547, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 08:00:00.018+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:00:00.104+00', 86, NULL), +(22548, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 08:00:00.019+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:00:00.104+00', 85, NULL), +(22549, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.031402+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.553945+00', 522, NULL), +(22550, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.032581+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.178781+00', 146, '{"timezone-id":"UTC"}'), +(22551, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.179267+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.265547+00', 86, '{"updated-tables":0,"total-tables":8}'), +(22552, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.265652+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.466353+00', 200, '{"total-fields":71,"updated-fields":0}'), +(22553, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.46642+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.48699+00', 20, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22554, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.48705+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.553862+00', 66, NULL), +(22555, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.578974+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.623318+00', 44, NULL), +(22556, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.578992+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.605881+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22557, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.605959+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.614424+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(22558, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.61451+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:19:00.623268+00', 8, '{"total-tables":8,"tables-classified":0}'), +(22559, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:00.298146+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:13.969331+00', 13671, NULL), +(22560, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:00.299593+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:00.305321+00', 5, '{"timezone-id":null}'), +(22561, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:00.309073+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:00.523399+00', 214, '{"updated-tables":0,"total-tables":4}'), +(22562, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:00.523503+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:13.960286+00', 13436, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22563, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:13.960406+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:13.968212+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22564, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:13.968296+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:13.969294+00', 0, NULL), +(22565, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.036522+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.094591+00', 58, NULL), +(22566, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.036545+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.07258+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22567, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.073071+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.081325+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(22568, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.081447+00', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:14.094543+00', 13, '{"total-tables":4,"tables-classified":0}'), +(22569, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 09:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:00:00.111+00', 101, NULL), +(22570, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 09:00:00.017+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:00:00.111+00', 94, NULL), +(22571, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.052729+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.691916+00', 639, NULL), +(22572, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.053874+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.254422+00', 200, '{"timezone-id":"UTC"}'), +(22573, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.254849+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.357787+00', 102, '{"updated-tables":0,"total-tables":8}'), +(22574, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.357968+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.614277+00', 256, '{"total-fields":71,"updated-fields":0}'), +(22575, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.614342+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.638757+00', 24, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22576, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.63896+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.691883+00', 52, NULL), +(22577, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.721177+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.785153+00', 63, NULL), +(22578, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.721199+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.755244+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22579, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.755323+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.773683+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(22580, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.774222+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:19:00.785108+00', 10, '{"total-tables":8,"tables-classified":0}'), +(22581, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:00.030709+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:10.979913+00', 10949, NULL), +(22582, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:00.030736+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:00.033059+00', 2, '{"timezone-id":null}'), +(22583, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:00.033367+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:00.159408+00', 126, '{"updated-tables":0,"total-tables":4}'), +(22584, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:00.159486+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:10.977404+00', 10817, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22585, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:10.977512+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:10.97937+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22586, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:10.979444+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:10.979888+00', 0, NULL), +(22587, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.016696+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.034971+00', 18, NULL), +(22588, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.016716+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.025744+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22589, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.025803+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.029836+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(22590, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.029909+00', TIMESTAMP WITH TIME ZONE '2023-01-25 09:49:11.034903+00', 4, '{"total-tables":4,"tables-classified":0}'), +(22591, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 10:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:00:00.114+00', 103, NULL), +(22592, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 10:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:00:00.116+00', 105, NULL), +(22593, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.0171+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.422128+00', 405, NULL), +(22594, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.017127+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.030328+00', 13, '{"timezone-id":"UTC"}'), +(22595, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.030411+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.046508+00', 16, '{"updated-tables":0,"total-tables":8}'), +(22596, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.046586+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.273417+00', 226, '{"total-fields":71,"updated-fields":0}'), +(22597, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.273499+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.289189+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22598, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.289258+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.42209+00', 132, NULL), +(22599, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.446078+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.484795+00', 38, NULL), +(22600, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.446095+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.468097+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22601, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.468265+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.475711+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(22602, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.475867+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:00.484723+00', 8, '{"total-tables":8,"tables-classified":0}'), +(22603, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:00.269693+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.333526+00', 14063, NULL), +(22604, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:00.273322+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:00.280608+00', 7, '{"timezone-id":null}'), +(22605, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:00.28244+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:00.568506+00', 286, '{"updated-tables":0,"total-tables":4}'), +(22606, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:00.568591+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.322051+00', 13753, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22607, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.322148+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.330972+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22608, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.33106+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.333474+00', 2, NULL), +(22609, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.41217+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.469215+00', 57, NULL), +(22610, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.412188+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.44407+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22611, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.444149+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.453975+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(22612, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.454049+00', TIMESTAMP WITH TIME ZONE '2023-01-25 10:49:14.469158+00', 15, '{"total-tables":4,"tables-classified":0}'), +(22613, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 11:00:00.033+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:00:00.59+00', 557, NULL), +(22614, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 11:00:00.037+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:00:00.59+00', 553, NULL), +(22615, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:00.246952+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:05.583993+00', 5337, NULL), +(22616, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:00.252228+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:00.787981+00', 535, '{"timezone-id":"UTC"}'), +(22617, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:00.789266+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:01.158429+00', 369, '{"updated-tables":0,"total-tables":8}'), +(22618, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:01.159948+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:04.692508+00', 3532, '{"total-fields":71,"updated-fields":0}'), +(22619, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:04.692872+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:04.93336+00', 240, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22620, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:04.933478+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:05.58393+00', 650, NULL), +(22621, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:05.808168+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:06.126391+00', 318, NULL), +(22622, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:05.808204+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:05.969948+00', 161, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22623, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:05.970045+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:06.029761+00', 59, '{"fields-classified":0,"fields-failed":0}'), +(22624, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:06.030368+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:19:06.125741+00', 95, '{"total-tables":8,"tables-classified":0}'), +(22625, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:00.350525+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.468776+00', 11118, NULL), +(22626, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:00.35055+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:00.356108+00', 5, '{"timezone-id":null}'), +(22627, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:00.356209+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:00.779983+00', 423, '{"updated-tables":0,"total-tables":4}'), +(22628, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:00.780325+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.463501+00', 10683, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22629, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.463616+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.46608+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22630, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.466148+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.468712+00', 2, NULL), +(22631, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.528097+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.561413+00', 33, NULL), +(22632, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.528115+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.547508+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22633, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.547605+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.552949+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22634, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.553058+00', TIMESTAMP WITH TIME ZONE '2023-01-25 11:49:11.561357+00', 8, '{"total-tables":4,"tables-classified":0}'), +(22635, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 12:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:00:00.428+00', 222, NULL), +(22636, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 12:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:00:00.564+00', 358, NULL), +(22637, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.031833+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.556595+00', 524, NULL), +(22638, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.03302+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.12267+00', 89, '{"timezone-id":"UTC"}'), +(22639, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.12313+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.278532+00', 155, '{"updated-tables":0,"total-tables":8}'), +(22640, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.278713+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.479993+00', 201, '{"total-fields":71,"updated-fields":0}'), +(22641, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.48006+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.501237+00', 21, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22642, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.501315+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.556561+00', 55, NULL), +(22643, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.585949+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.628356+00', 42, NULL), +(22644, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.585967+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.612819+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22645, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.612914+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.619571+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(22646, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.619661+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:00.628303+00', 8, '{"total-tables":8,"tables-classified":0}'), +(22647, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:00.079177+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.522722+00', 8443, NULL), +(22648, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:00.080734+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:00.085749+00', 5, '{"timezone-id":null}'), +(22649, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:00.086012+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:00.198969+00', 112, '{"updated-tables":0,"total-tables":4}'), +(22650, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:00.19917+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.513506+00', 8314, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22651, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.513607+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.51982+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22652, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.5199+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.522672+00', 2, NULL), +(22653, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.557524+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.587717+00', 30, NULL), +(22654, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.557546+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.574942+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22655, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.575017+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.580743+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22656, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.580842+00', TIMESTAMP WITH TIME ZONE '2023-01-25 12:49:08.58764+00', 6, '{"total-tables":4,"tables-classified":0}'), +(22657, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 13:00:00.023+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:00:00.112+00', 89, NULL), +(22658, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 13:00:00.019+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:00:00.112+00', 93, NULL), +(22659, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:01.486089+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.138684+00', 4652, NULL), +(22660, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:01.490704+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:03.057332+00', 1566, '{"timezone-id":"UTC"}'), +(22661, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:03.062526+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:03.312816+00', 250, '{"updated-tables":0,"total-tables":8}'), +(22662, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:03.312912+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:05.860825+00', 2547, '{"total-fields":71,"updated-fields":0}'), +(22663, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:05.860941+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:05.908673+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22664, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:05.908754+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.138352+00', 229, NULL), +(22665, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.296182+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.390991+00', 94, NULL), +(22666, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.296204+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.358904+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22667, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.359003+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.373061+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(22668, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.373165+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:19:06.390941+00', 17, '{"total-tables":8,"tables-classified":0}'), +(22669, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.102642+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.468057+00', 11365, NULL), +(22670, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.102667+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.103471+00', 0, '{"timezone-id":null}'), +(22671, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.103534+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.244599+00', 141, '{"updated-tables":0,"total-tables":4}'), +(22672, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.244675+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.466037+00', 11221, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22673, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.466097+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.46763+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22674, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.467683+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.468033+00', 0, NULL), +(22675, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.491191+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.514705+00', 23, NULL), +(22676, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.491209+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.505488+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22677, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.505564+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.509768+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(22678, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.509839+00', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:11.514654+00', 4, '{"total-tables":4,"tables-classified":0}'), +(22679, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 14:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:00:01.106+00', 1002, NULL), +(22680, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 14:00:00.085+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:00:01.106+00', 1021, NULL), +(22681, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:00.93568+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.158471+00', 5222, NULL), +(22682, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:00.973345+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:02.03128+00', 1057, '{"timezone-id":"UTC"}'), +(22683, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:02.033277+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:02.571123+00', 537, '{"updated-tables":0,"total-tables":8}'), +(22684, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:02.571219+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:05.325217+00', 2753, '{"total-fields":71,"updated-fields":0}'), +(22685, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:05.325471+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:05.458428+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22686, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:05.458761+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.158428+00', 699, NULL), +(22687, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.362296+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.640115+00', 277, NULL), +(22688, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.36232+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.565311+00', 202, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22689, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.565406+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.604975+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(22690, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.605078+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:19:06.640056+00', 34, '{"total-tables":8,"tables-classified":0}'), +(22691, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:00.102299+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.723792+00', 8621, NULL), +(22692, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:00.109113+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:00.112156+00', 3, '{"timezone-id":null}'), +(22693, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:00.112481+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:00.354144+00', 241, '{"updated-tables":0,"total-tables":4}'), +(22694, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:00.354314+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.715632+00', 8361, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22695, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.715709+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.721042+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22696, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.721117+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.723745+00', 2, NULL), +(22697, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.761218+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.790613+00', 29, NULL), +(22698, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.761236+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.778405+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22699, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.778473+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.782596+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(22700, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.782665+00', TIMESTAMP WITH TIME ZONE '2023-01-25 14:49:08.790558+00', 7, '{"total-tables":4,"tables-classified":0}'), +(22701, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 15:00:00.036+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:00:03.24+00', 3204, NULL), +(22702, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 15:00:03.176+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:00:03.429+00', 253, NULL), +(22703, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.037475+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.824122+00', 786, NULL), +(22704, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.038541+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.117401+00', 78, '{"timezone-id":"UTC"}'), +(22705, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.117493+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.177707+00', 60, '{"updated-tables":0,"total-tables":8}'), +(22706, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.177794+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.706036+00', 528, '{"total-fields":71,"updated-fields":0}'), +(22707, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.706099+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.733308+00', 27, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22708, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.733441+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.824098+00', 90, NULL), +(22709, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.842648+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.879157+00', 36, NULL), +(22710, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.842664+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.865953+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22711, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.866017+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.871413+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22712, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.871486+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:19:00.87911+00', 7, '{"total-tables":8,"tables-classified":0}'), +(22713, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:00.070205+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.7183+00', 9648, NULL), +(22714, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:00.070808+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:00.0725+00', 1, '{"timezone-id":null}'), +(22715, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:00.072623+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:00.191813+00', 119, '{"updated-tables":0,"total-tables":4}'), +(22716, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:00.191938+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.712369+00', 9520, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22717, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.712663+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.717338+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22718, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.717607+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.718161+00', 0, NULL), +(22719, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.752455+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.785388+00', 32, NULL), +(22720, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.752482+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.769674+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22721, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.769747+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.775323+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22722, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.775407+00', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:09.785324+00', 9, '{"total-tables":4,"tables-classified":0}'), +(22723, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 16:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:00:00.125+00', 112, NULL), +(22724, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 16:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:00:00.128+00', 118, NULL), +(22725, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.027255+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.708189+00', 680, NULL), +(22726, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.027282+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.19658+00', 169, '{"timezone-id":"UTC"}'), +(22727, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.196686+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.302542+00', 105, '{"updated-tables":0,"total-tables":8}'), +(22728, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.302614+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.616645+00', 314, '{"total-fields":71,"updated-fields":0}'), +(22729, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.616706+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.631954+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22730, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.632012+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.708155+00', 76, NULL), +(22731, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.724712+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.753284+00', 28, NULL), +(22732, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.724732+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.742196+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22733, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.742273+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.74825+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22734, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.748323+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:19:00.753239+00', 4, '{"total-tables":8,"tables-classified":0}'), +(22735, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:00.055642+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.024057+00', 7968, NULL), +(22736, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:00.055671+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:00.056637+00', 0, '{"timezone-id":null}'), +(22737, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:00.057007+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:00.168487+00', 111, '{"updated-tables":0,"total-tables":4}'), +(22738, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:00.168566+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.021501+00', 7852, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22739, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.021576+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.023457+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22740, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.02356+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.024025+00', 0, NULL), +(22741, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.048882+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.07885+00', 29, NULL), +(22742, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.048901+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.061122+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22743, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.061213+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.069843+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(22744, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.069996+00', TIMESTAMP WITH TIME ZONE '2023-01-25 16:49:08.078753+00', 8, '{"total-tables":4,"tables-classified":0}'), +(22745, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 17:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:00:00.013+00', 3, NULL), +(22746, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 17:00:00.022+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:00:00.08+00', 58, NULL), +(22747, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:00.012231+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.606806+00', 1594, NULL), +(22748, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:00.012252+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:00.027565+00', 15, '{"timezone-id":"UTC"}'), +(22749, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:00.027723+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:00.043742+00', 16, '{"updated-tables":0,"total-tables":8}'), +(22750, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:00.043816+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.342934+00', 1299, '{"total-fields":71,"updated-fields":0}'), +(22751, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.343797+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.555345+00', 211, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22752, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.555418+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.606777+00', 51, NULL), +(22753, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.617672+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.658798+00', 41, NULL), +(22754, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.617689+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.64759+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22755, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.647697+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.654093+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(22756, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.654166+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:19:01.658756+00', 4, '{"total-tables":8,"tables-classified":0}'), +(22757, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:00.031859+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.118398+00', 5086, NULL), +(22758, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:00.031903+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:00.032547+00', 0, '{"timezone-id":null}'), +(22759, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:00.032622+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:00.153134+00', 120, '{"updated-tables":0,"total-tables":4}'), +(22760, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:00.153202+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.115557+00', 4962, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22761, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.116094+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.117818+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22762, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.117921+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.118364+00', 0, NULL), +(22763, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.137844+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.155645+00', 17, NULL), +(22764, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.137862+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.147085+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22765, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.147159+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.150015+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(22766, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.15008+00', TIMESTAMP WITH TIME ZONE '2023-01-25 17:49:05.155594+00', 5, '{"total-tables":4,"tables-classified":0}'), +(22767, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 18:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:00:00.059+00', 45, NULL), +(22768, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 18:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:00:00.061+00', 51, NULL), +(22769, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.027511+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.39749+00', 369, NULL), +(22770, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.027532+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.046067+00', 18, '{"timezone-id":"UTC"}'), +(22771, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.046188+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.063606+00', 17, '{"updated-tables":0,"total-tables":8}'), +(22772, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.063735+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.323844+00', 260, '{"total-fields":71,"updated-fields":0}'), +(22773, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.323926+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.335254+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22774, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.335321+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.397458+00', 62, NULL), +(22775, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.410432+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.437034+00', 26, NULL), +(22776, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.41045+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.426757+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22777, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.426824+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.431963+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22778, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.43204+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:19:00.43698+00', 4, '{"total-tables":8,"tables-classified":0}'), +(22779, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:00.15753+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.089682+00', 5932, NULL), +(22780, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:00.157556+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:00.158072+00', 0, '{"timezone-id":null}'), +(22781, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:00.158128+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:00.342694+00', 184, '{"updated-tables":0,"total-tables":4}'), +(22782, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:00.342742+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.087161+00', 5744, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22783, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.087262+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.088974+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22784, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.089146+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.089624+00', 0, NULL), +(22785, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.110565+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.131804+00', 21, NULL), +(22786, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.110588+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.123252+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22787, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.123325+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.127268+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(22788, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.127336+00', TIMESTAMP WITH TIME ZONE '2023-01-25 18:49:06.131748+00', 4, '{"total-tables":4,"tables-classified":0}'), +(22789, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 19:00:00.031+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:00:00.09+00', 59, NULL), +(22790, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 19:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:00:00.092+00', 81, NULL), +(22791, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.028038+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.267991+00', 239, NULL), +(22792, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.02806+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.04015+00', 12, '{"timezone-id":"UTC"}'), +(22793, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.040334+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.048954+00', 8, '{"updated-tables":0,"total-tables":8}'), +(22794, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.049042+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.203298+00', 154, '{"total-fields":71,"updated-fields":0}'), +(22795, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.203576+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.214415+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22796, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.214495+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.267961+00', 53, NULL), +(22797, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.283488+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.316575+00', 33, NULL), +(22798, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.283511+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.304449+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22799, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.304739+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.310652+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(22800, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.310899+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:19:00.316522+00', 5, '{"total-tables":8,"tables-classified":0}'), +(22801, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:00.038374+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.032766+00', 5994, NULL), +(22802, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:00.038404+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:00.039012+00', 0, '{"timezone-id":null}'), +(22803, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:00.039072+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:00.127407+00', 88, '{"updated-tables":0,"total-tables":4}'), +(22804, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:00.127502+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.030601+00', 5903, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22805, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.030678+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.032253+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22806, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.032346+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.032743+00', 0, NULL), +(22807, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.052092+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.07191+00', 19, NULL), +(22808, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.052112+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.062327+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22809, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.062399+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.06549+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(22810, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.065563+00', TIMESTAMP WITH TIME ZONE '2023-01-25 19:49:06.071858+00', 6, '{"total-tables":4,"tables-classified":0}'), +(22811, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 20:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:00:00.085+00', 80, NULL), +(22812, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 20:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:00:00.087+00', 81, NULL), +(22813, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:00.050126+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.203765+00', 1153, NULL), +(22814, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:00.050508+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:00.157757+00', 107, '{"timezone-id":"UTC"}'), +(22815, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:00.158301+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:00.225543+00', 67, '{"updated-tables":0,"total-tables":8}'), +(22816, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:00.225773+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.026277+00', 800, '{"total-fields":71,"updated-fields":0}'), +(22817, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.026498+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.058796+00', 32, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22818, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.058869+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.203738+00', 144, NULL), +(22819, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.247434+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.311422+00', 63, NULL), +(22820, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.247456+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.290414+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22821, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.290498+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.297969+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(22822, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.298033+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:19:01.311379+00', 13, '{"total-tables":8,"tables-classified":0}'), +(22823, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:00.039954+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:13.991514+00', 13951, NULL), +(22824, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:00.039976+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:00.041619+00', 1, '{"timezone-id":null}'), +(22825, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:00.041693+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:00.183093+00', 141, '{"updated-tables":0,"total-tables":4}'), +(22826, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:00.183898+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:13.986725+00', 13802, '{"total-fields":39,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22827, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:13.986857+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:13.989996+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22828, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:13.990332+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:13.991483+00', 1, NULL), +(22829, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.013383+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.02772+00', 14, NULL), +(22830, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.013399+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.021233+00', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22831, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.021342+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.024215+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(22832, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.024277+00', TIMESTAMP WITH TIME ZONE '2023-01-25 20:49:14.027681+00', 3, '{"total-tables":4,"tables-classified":0}'), +(22833, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.019+00', 6, NULL), +(22834, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.053+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.111+00', 58, NULL), +(22835, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.020837+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.966597+00', 945, NULL), +(22836, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.020859+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.185309+00', 164, '{"deleted":0}'), +(22837, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.185381+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:00:00.966502+00', 781, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(22838, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.011955+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.24177+00', 229, NULL), +(22839, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.011976+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.020561+00', 8, '{"timezone-id":"UTC"}'), +(22840, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.020708+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.03143+00', 10, '{"updated-tables":0,"total-tables":8}'), +(22841, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.03161+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.184043+00', 152, '{"total-fields":71,"updated-fields":0}'), +(22842, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.184148+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.194711+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22843, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.194815+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.241746+00', 46, NULL), +(22844, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.253292+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.274995+00', 21, NULL), +(22845, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.253309+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.266685+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22846, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.266789+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.270589+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(22847, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.270675+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:19:00.274935+00', 4, '{"total-tables":8,"tables-classified":0}'), +(22848, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:00.03103+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.514846+00', 19483, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22849, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:00.031055+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:00.032338+00', 1, '{"timezone-id":null}'), +(22850, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:00.032453+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:00.173699+00', 141, '{"updated-tables":0,"total-tables":4}'), +(22851, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:00.173768+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.511429+00', 19337, '{"total-fields":39,"updated-fields":0}'), +(22852, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.511494+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.514131+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22853, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.514205+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.514815+00', 0, NULL), +(22854, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.542091+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.561898+00', 19, NULL), +(22855, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.542109+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.554013+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22856, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.554092+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.557487+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(22857, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.557558+00', TIMESTAMP WITH TIME ZONE '2023-01-25 21:49:19.561848+00', 4, '{"total-tables":4,"tables-classified":0}'), +(22858, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 22:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:00:00.033+00', 20, NULL), +(22859, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 22:00:00.038+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:00:00.09+00', 52, NULL), +(22860, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:00.825606+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:06.795863+00', 5970, NULL), +(22861, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:00.830728+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:01.836135+00', 1005, '{"timezone-id":"UTC"}'), +(22862, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:01.840466+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:02.571073+00', 730, '{"updated-tables":0,"total-tables":8}'), +(22863, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:02.571396+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:05.956711+00', 3385, '{"total-fields":71,"updated-fields":0}'), +(22864, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:05.957236+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:06.132941+00', 175, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22865, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:06.13373+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:06.795535+00', 661, NULL), +(22866, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.052871+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.392653+00', 339, NULL), +(22867, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.052899+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.303067+00', 250, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22868, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.303361+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.333392+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(22869, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.333701+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:19:07.392309+00', 58, '{"total-tables":8,"tables-classified":0}'), +(22870, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:01.007256+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.416649+00', 11409, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22871, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:01.01373+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:01.033613+00', 19, '{"timezone-id":null}'), +(22872, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:01.038325+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:01.772221+00', 733, '{"updated-tables":0,"total-tables":4}'), +(22873, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:01.772677+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.409298+00', 10636, '{"total-fields":39,"updated-fields":0}'), +(22874, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.409416+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.414776+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22875, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.414865+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.416604+00', 1, NULL), +(22876, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.537902+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.600832+00', 62, NULL), +(22877, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.537925+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.582077+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22878, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.58216+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.588827+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(22879, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.58891+00', TIMESTAMP WITH TIME ZONE '2023-01-25 22:49:12.600771+00', 11, '{"total-tables":4,"tables-classified":0}'), +(22880, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 23:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:00:00.926+00', 760, NULL), +(22881, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-25 23:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:00:01.066+00', 900, NULL), +(22882, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:00.375615+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:07.799709+00', 7424, NULL), +(22883, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:00.382476+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:01.097763+00', 715, '{"timezone-id":"UTC"}'), +(22884, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:01.101794+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:01.579599+00', 477, '{"updated-tables":0,"total-tables":8}'), +(22885, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:01.579844+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:05.786492+00', 4206, '{"total-fields":71,"updated-fields":0}'), +(22886, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:05.786799+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:06.577337+00', 790, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22887, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:06.577941+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:07.799247+00', 1221, NULL), +(22888, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.035601+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.455534+00', 419, NULL), +(22889, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.035625+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.304532+00', 268, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22890, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.304827+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.361009+00', 56, '{"fields-classified":0,"fields-failed":0}'), +(22891, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.361316+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:19:08.455462+00', 94, '{"total-tables":8,"tables-classified":0}'), +(22892, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:01.065232+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.291932+00', 14226, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22893, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:01.083166+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:01.119343+00', 36, '{"timezone-id":null}'), +(22894, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:01.125531+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:02.022813+00', 897, '{"updated-tables":0,"total-tables":4}'), +(22895, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:02.022929+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.266909+00', 13243, '{"total-fields":39,"updated-fields":0}'), +(22896, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.267039+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.282108+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22897, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.28217+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.291884+00', 9, NULL), +(22898, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.450753+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.514121+00', 63, NULL), +(22899, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.450831+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.483475+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22900, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.483538+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.49523+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(22901, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.495328+00', TIMESTAMP WITH TIME ZONE '2023-01-25 23:49:15.514067+00', 18, '{"total-tables":4,"tables-classified":0}'), +(22902, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 00:00:00.211+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:00:02.743+00', 2532, NULL), +(22903, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 00:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:00:03.607+00', 3399, NULL), +(22904, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:00.426264+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:05.541242+00', 5114, NULL), +(22905, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:00.430144+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:01.137563+00', 707, '{"timezone-id":"UTC"}'), +(22906, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:01.139595+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:01.576996+00', 437, '{"updated-tables":0,"total-tables":8}'), +(22907, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:01.577123+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:04.59685+00', 3019, '{"total-fields":71,"updated-fields":0}'), +(22908, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:04.597159+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:04.780398+00', 183, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22909, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:04.780834+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:05.541047+00', 760, NULL), +(22910, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:05.813902+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:06.261649+00', 447, NULL), +(22911, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:05.813922+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:06.101445+00', 287, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22912, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:06.101797+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:06.169537+00', 67, '{"fields-classified":0,"fields-failed":0}'), +(22913, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:06.170171+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:19:06.261577+00', 91, '{"total-tables":8,"tables-classified":0}'), +(22914, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:01.079601+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.562213+00', 14482, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22915, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:01.089439+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:01.109164+00', 19, '{"timezone-id":null}'), +(22916, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:01.11546+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:01.867179+00', 751, '{"updated-tables":0,"total-tables":4}'), +(22917, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:01.867754+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.544953+00', 13677, '{"total-fields":39,"updated-fields":0}'), +(22918, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.545058+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.557756+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22919, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.557815+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.562169+00', 4, NULL), +(22920, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.707013+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.76617+00', 59, NULL), +(22921, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.707032+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.74171+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22922, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.74178+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.745431+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(22923, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.745488+00', TIMESTAMP WITH TIME ZONE '2023-01-26 00:49:15.766119+00', 20, '{"total-tables":4,"tables-classified":0}'), +(22924, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 01:00:00.082+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:00:00.556+00', 474, NULL), +(22925, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 01:00:00.061+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:00:00.632+00', 571, NULL), +(22926, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:00.354107+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.513709+00', 5159, NULL), +(22927, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:00.358633+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:00.788983+00', 430, '{"timezone-id":"UTC"}'), +(22928, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:00.791713+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:01.451218+00', 659, '{"updated-tables":0,"total-tables":8}'), +(22929, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:01.451736+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:04.660211+00', 3208, '{"total-fields":71,"updated-fields":0}'), +(22930, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:04.660533+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:04.849295+00', 188, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22931, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:04.84964+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.51334+00', 663, NULL), +(22932, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.688987+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:06.066368+00', 377, NULL), +(22933, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.689007+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.932134+00', 243, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22934, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.932377+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.989483+00', 57, '{"fields-classified":0,"fields-failed":0}'), +(22935, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:05.989859+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:19:06.065931+00', 76, '{"total-tables":8,"tables-classified":0}'), +(22936, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:00.212291+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.273177+00', 11060, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22937, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:00.212326+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:00.226424+00', 14, '{"timezone-id":null}'), +(22938, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:00.226957+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:00.63156+00', 404, '{"updated-tables":0,"total-tables":4}'), +(22939, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:00.631866+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.26795+00', 10636, '{"total-fields":39,"updated-fields":0}'), +(22940, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.26804+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.271212+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22941, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.271279+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.273122+00', 1, NULL), +(22942, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.393678+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.441766+00', 48, NULL), +(22943, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.393698+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.424041+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22944, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.424108+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.434376+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(22945, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.434443+00', TIMESTAMP WITH TIME ZONE '2023-01-26 01:49:11.441713+00', 7, '{"total-tables":4,"tables-classified":0}'), +(22946, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:00.298+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:01.163+00', 865, NULL), +(22947, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:00.327+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:01.161+00', 834, NULL), +(22948, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:01.625337+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:13.748612+00', 12123, NULL), +(22949, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:01.626958+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:04.323069+00', 2696, '{"deleted":0}'), +(22950, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:04.323182+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:00:13.748371+00', 9425, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(22951, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:00.029905+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.396675+00', 1366, NULL), +(22952, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:00.029973+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:00.429243+00', 399, '{"timezone-id":"UTC"}'), +(22953, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:00.429388+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:00.616923+00', 187, '{"updated-tables":0,"total-tables":8}'), +(22954, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:00.617056+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.258174+00', 641, '{"total-fields":71,"updated-fields":0}'), +(22955, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.258312+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.299623+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22956, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.299683+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.396637+00', 96, NULL), +(22957, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.439572+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.552285+00', 112, NULL), +(22958, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.439592+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.506588+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22959, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.506703+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.523072+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(22960, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.523146+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:19:01.552213+00', 29, '{"total-tables":8,"tables-classified":0}'), +(22961, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:00.038236+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.438819+00', 8400, NULL), +(22962, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:00.038262+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:00.040821+00', 2, '{"timezone-id":null}'), +(22963, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:00.040913+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:00.255295+00', 214, '{"updated-tables":0,"total-tables":4}'), +(22964, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:00.255484+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.434353+00', 8178, '{"total-fields":39,"updated-fields":0}'), +(22965, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.43445+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.436789+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22966, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.436857+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.438778+00', 1, NULL), +(22967, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.478266+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.521574+00', 43, NULL), +(22968, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.478285+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.502725+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22969, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.502908+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.510681+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(22970, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.510795+00', TIMESTAMP WITH TIME ZONE '2023-01-26 02:49:08.521491+00', 10, '{"total-tables":4,"tables-classified":0}'), +(22971, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 03:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:00:01.027+00', 936, NULL), +(22972, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 03:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:00:01.09+00', 999, NULL), +(22973, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:00.299877+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.498257+00', 4198, NULL), +(22974, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:00.304912+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:00.720833+00', 415, '{"timezone-id":"UTC"}'), +(22975, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:00.724546+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:01.122333+00', 397, '{"updated-tables":0,"total-tables":8}'), +(22976, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:01.122443+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:03.82127+00', 2698, '{"total-fields":71,"updated-fields":0}'), +(22977, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:03.821422+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:03.957414+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(22978, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:03.957827+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.498206+00', 540, NULL), +(22979, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.648145+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.942263+00', 294, NULL), +(22980, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.648178+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.823432+00', 175, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(22981, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.82356+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.858281+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(22982, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.858809+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:19:04.942165+00', 83, '{"total-tables":8,"tables-classified":0}'), +(22983, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:00.138794+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.119357+00', 11980, NULL), +(22984, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:00.138818+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:00.14318+00', 4, '{"timezone-id":null}'), +(22985, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:00.143263+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:00.478447+00', 335, '{"updated-tables":0,"total-tables":4}'), +(22986, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:00.478526+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.117322+00', 11638, '{"total-fields":39,"updated-fields":0}'), +(22987, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.117403+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.118969+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(22988, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.119048+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.119336+00', 0, NULL), +(22989, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.156409+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.179194+00', 22, NULL), +(22990, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.156446+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.171356+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(22991, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.171423+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.175406+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(22992, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.175468+00', TIMESTAMP WITH TIME ZONE '2023-01-26 03:49:12.179152+00', 3, '{"total-tables":4,"tables-classified":0}'), +(22993, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 04:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:00:00.011+00', 3, NULL), +(22994, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 04:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:00:00.041+00', 27, NULL), +(22995, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:00.190821+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.611515+00', 2420, NULL), +(22996, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:00.192272+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:00.437246+00', 244, '{"timezone-id":"UTC"}'), +(22997, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:00.437667+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:00.665999+00', 228, '{"updated-tables":0,"total-tables":8}'), +(22998, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:00.666397+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.258257+00', 1591, '{"total-fields":71,"updated-fields":0}'), +(22999, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.258335+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.352011+00', 93, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23000, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.352379+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.61148+00', 259, NULL), +(23001, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.693507+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.87528+00', 181, NULL), +(23002, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.693792+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.811936+00', 118, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23003, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.812363+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.849118+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(23004, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.84924+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:19:02.875228+00', 25, '{"total-tables":8,"tables-classified":0}'), +(23005, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:00.086148+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.039312+00', 7953, NULL), +(23006, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:00.086181+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:00.087162+00', 0, '{"timezone-id":null}'), +(23007, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:00.087328+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:00.26091+00', 173, '{"updated-tables":0,"total-tables":4}'), +(23008, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:00.26099+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.035424+00', 7774, '{"total-fields":39,"updated-fields":0}'), +(23009, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.035509+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.038166+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23010, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.038341+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.039201+00', 0, NULL), +(23011, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.078337+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.105885+00', 27, NULL), +(23012, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.078377+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.09507+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23013, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.095185+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.100536+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(23014, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.100656+00', TIMESTAMP WITH TIME ZONE '2023-01-26 04:49:08.105816+00', 5, '{"total-tables":4,"tables-classified":0}'), +(23015, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 05:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:00:00.051+00', 42, NULL), +(23016, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 05:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:00:00.051+00', 43, NULL), +(23017, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.033032+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.168664+00', 1135, NULL), +(23018, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.033056+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.05951+00', 26, '{"timezone-id":"UTC"}'), +(23019, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.059788+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.106476+00', 46, '{"updated-tables":0,"total-tables":8}'), +(23020, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.106561+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.485487+00', 378, '{"total-fields":71,"updated-fields":0}'), +(23021, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.485556+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.5432+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23022, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:00.543354+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.168636+00', 625, NULL), +(23023, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.300826+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.77865+00', 477, NULL), +(23024, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.300851+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.547543+00', 246, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23025, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.547685+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.690636+00', 142, '{"fields-classified":0,"fields-failed":0}'), +(23026, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.690769+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:19:01.778577+00', 87, '{"total-tables":8,"tables-classified":0}'), +(23027, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:00.20994+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.5207+00', 9310, NULL), +(23028, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:00.209966+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:00.211472+00', 1, '{"timezone-id":null}'), +(23029, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:00.211591+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:00.466178+00', 254, '{"updated-tables":0,"total-tables":4}'), +(23030, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:00.466272+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.517833+00', 9051, '{"total-fields":39,"updated-fields":0}'), +(23031, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.51795+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.519861+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23032, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.519987+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.52067+00', 0, NULL), +(23033, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.542053+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.558848+00', 16, NULL), +(23034, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.542068+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.551314+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23035, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.55141+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.554669+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(23036, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.55476+00', TIMESTAMP WITH TIME ZONE '2023-01-26 05:49:09.558767+00', 4, '{"total-tables":4,"tables-classified":0}'), +(23037, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 06:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:00:00.04+00', 29, NULL), +(23038, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 06:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:00:00.046+00', 38, NULL), +(23039, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.053556+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.684898+00', 631, NULL), +(23040, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.053579+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.137893+00', 84, '{"timezone-id":"UTC"}'), +(23041, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.137976+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.178537+00', 40, '{"updated-tables":0,"total-tables":8}'), +(23042, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.178606+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.626034+00', 447, '{"total-fields":71,"updated-fields":0}'), +(23043, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.626079+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.636513+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23044, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.636562+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.684876+00', 48, NULL), +(23045, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.698031+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.752773+00', 54, NULL), +(23046, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.698049+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.736238+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23047, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.736341+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.746999+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(23048, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.747062+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:19:00.752726+00', 5, '{"total-tables":8,"tables-classified":0}'), +(23049, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:00.061196+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.370339+00', 9309, NULL), +(23050, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:00.061228+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:00.061882+00', 0, '{"timezone-id":null}'), +(23051, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:00.061956+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:00.150576+00', 88, '{"updated-tables":0,"total-tables":4}'), +(23052, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:00.150642+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.366955+00', 9216, '{"total-fields":39,"updated-fields":0}'), +(23053, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.367042+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.369668+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23054, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.369762+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.370315+00', 0, NULL), +(23055, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.405739+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.427564+00', 21, NULL), +(23056, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.40576+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.416127+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23057, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.416201+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.42111+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(23058, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.421175+00', TIMESTAMP WITH TIME ZONE '2023-01-26 06:49:09.427481+00', 6, '{"total-tables":4,"tables-classified":0}'), +(23059, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 07:00:00.062+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:00:00.189+00', 127, NULL), +(23060, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 07:00:00.062+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:00:00.189+00', 127, NULL), +(23061, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.021894+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.766828+00', 744, NULL), +(23062, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.022764+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.108857+00', 86, '{"timezone-id":"UTC"}'), +(23063, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.108949+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.151121+00', 42, '{"updated-tables":0,"total-tables":8}'), +(23064, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.151192+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.404296+00', 253, '{"total-fields":71,"updated-fields":0}'), +(23065, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.404569+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.46359+00', 59, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23066, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.46394+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.766477+00', 302, NULL), +(23067, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.851122+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:01.015661+00', 164, NULL), +(23068, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.851147+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.964532+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23069, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.964864+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.986158+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(23070, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:00.986456+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:19:01.015562+00', 29, '{"total-tables":8,"tables-classified":0}'), +(23071, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:00.080333+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.514005+00', 13433, NULL), +(23072, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:00.080356+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:00.082044+00', 1, '{"timezone-id":null}'), +(23073, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:00.082114+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:00.29087+00', 208, '{"updated-tables":0,"total-tables":4}'), +(23074, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:00.290943+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.511981+00', 13221, '{"total-fields":39,"updated-fields":0}'), +(23075, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.512057+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.513615+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23076, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.513701+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.513987+00', 0, NULL), +(23077, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.533381+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.552833+00', 19, NULL), +(23078, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.5334+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.542403+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23079, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.542467+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.548533+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(23080, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.548599+00', TIMESTAMP WITH TIME ZONE '2023-01-26 07:49:13.552789+00', 4, '{"total-tables":4,"tables-classified":0}'), +(23081, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 08:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:00:00.011+00', 3, NULL), +(23082, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 08:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:00:00.134+00', 123, NULL), +(23083, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:00.098208+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.664889+00', 1566, NULL), +(23084, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:00.100394+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:00.379085+00', 278, '{"timezone-id":"UTC"}'), +(23085, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:00.380654+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:00.543051+00', 162, '{"updated-tables":0,"total-tables":8}'), +(23086, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:00.543134+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.432818+00', 889, '{"total-fields":71,"updated-fields":0}'), +(23087, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.432888+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.482421+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23088, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.483523+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.664855+00', 181, NULL), +(23089, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.723149+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.803762+00', 80, NULL), +(23090, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.723172+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.779758+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23091, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.779842+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.789899+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(23092, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.790246+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:19:01.803551+00', 13, '{"total-tables":8,"tables-classified":0}'), +(23093, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:00.033482+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.088307+00', 7054, NULL), +(23094, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:00.03352+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:00.034312+00', 0, '{"timezone-id":null}'), +(23095, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:00.034393+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:00.097494+00', 63, '{"updated-tables":0,"total-tables":4}'), +(23096, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:00.09771+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.086194+00', 6988, '{"total-fields":39,"updated-fields":0}'), +(23097, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.086242+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.087808+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23098, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.087858+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.088287+00', 0, NULL), +(23099, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.105289+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.123565+00', 18, NULL), +(23100, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.105308+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.114707+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23101, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.114814+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.118573+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(23102, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.118688+00', TIMESTAMP WITH TIME ZONE '2023-01-26 08:49:07.123513+00', 4, '{"total-tables":4,"tables-classified":0}'), +(23103, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:00.032+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:00.163+00', 131, NULL), +(23104, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:00.041+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:00.163+00', 122, NULL), +(23105, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.027478+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.571184+00', 543, NULL), +(23106, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.027511+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.250667+00', 223, '{"timezone-id":"UTC"}'), +(23107, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.250782+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.343986+00', 93, '{"updated-tables":0,"total-tables":8}'), +(23108, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.34405+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.501239+00', 157, '{"total-fields":71,"updated-fields":0}'), +(23109, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.501303+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.516374+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23110, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.516458+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.571152+00', 54, NULL), +(23111, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.587325+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.617083+00', 29, NULL), +(23112, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.587368+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.606188+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23113, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.60626+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.611933+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(23114, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.612001+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:00.617037+00', 5, '{"total-tables":8,"tables-classified":0}'), +(23115, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:00.125288+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:08.993252+00', 8867, NULL), +(23116, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:00.130475+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:00.144197+00', 13, '{"timezone-id":null}'), +(23117, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:00.144699+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:00.306573+00', 161, '{"updated-tables":0,"total-tables":4}'), +(23118, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:00.306657+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:08.980739+00', 8674, '{"total-fields":39,"updated-fields":0}'), +(23119, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:08.980822+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:08.986859+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23120, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:08.987006+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:08.993186+00', 6, NULL), +(23121, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.1159+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.147953+00', 32, NULL), +(23122, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.115921+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.134329+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23123, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.134446+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.140101+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(23124, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.140184+00', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:09.147908+00', 7, '{"total-tables":4,"tables-classified":0}'), +(23125, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 10:00:00.047+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:00:00.182+00', 135, NULL), +(23126, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 10:00:00.061+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:00:00.182+00', 121, NULL), +(23127, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:00.148959+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.521118+00', 1372, NULL), +(23128, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:00.154103+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:00.565508+00', 411, '{"timezone-id":"UTC"}'), +(23129, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:00.566639+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:00.745263+00', 178, '{"updated-tables":0,"total-tables":8}'), +(23130, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:00.745351+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.192856+00', 447, '{"total-fields":71,"updated-fields":0}'), +(23131, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.192914+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.271901+00', 78, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23132, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.271973+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.521092+00', 249, NULL), +(23133, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.617034+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.716092+00', 99, NULL), +(23134, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.617053+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.66549+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23135, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.665657+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.679864+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(23136, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.68022+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:19:01.715896+00', 35, '{"total-tables":8,"tables-classified":0}'), +(23137, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:00.070189+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.527777+00', 9457, NULL), +(23138, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:00.070234+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:00.072404+00', 2, '{"timezone-id":null}'), +(23139, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:00.072593+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:00.254956+00', 182, '{"updated-tables":0,"total-tables":4}'), +(23140, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:00.255127+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.525748+00', 9270, '{"total-fields":39,"updated-fields":0}'), +(23141, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.525811+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.527236+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23142, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.527303+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.527755+00', 0, NULL), +(23143, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.547073+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.563936+00', 16, NULL), +(23144, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.54709+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.557519+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23145, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.55759+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.560459+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(23146, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.560526+00', TIMESTAMP WITH TIME ZONE '2023-01-26 10:49:09.563893+00', 3, '{"total-tables":4,"tables-classified":0}'), +(23147, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 11:00:00.022+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:00:00.115+00', 93, NULL), +(23148, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 11:00:00.025+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:00:00.115+00', 90, NULL), +(23149, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.028439+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.373471+00', 345, NULL), +(23150, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.028465+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.111597+00', 83, '{"timezone-id":"UTC"}'), +(23151, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.111706+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.145224+00', 33, '{"updated-tables":0,"total-tables":8}'), +(23152, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.145338+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.309554+00', 164, '{"total-fields":71,"updated-fields":0}'), +(23153, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.309659+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.320373+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23154, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.320456+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.373393+00', 52, NULL), +(23155, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.386228+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.413738+00', 27, NULL), +(23156, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.386249+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.402397+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23157, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.402523+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.408447+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(23158, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.408533+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:19:00.413676+00', 5, '{"total-tables":8,"tables-classified":0}'), +(23159, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:00.128083+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.00933+00', 14881, NULL), +(23160, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:00.128116+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:00.129003+00', 0, '{"timezone-id":null}'), +(23161, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:00.129073+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:00.313176+00', 184, '{"updated-tables":0,"total-tables":4}'), +(23162, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:00.313474+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.007305+00', 14693, '{"total-fields":39,"updated-fields":0}'), +(23163, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.007397+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.008969+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23164, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.009045+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.009314+00', 0, NULL), +(23165, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.030458+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.048923+00', 18, NULL), +(23166, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.030476+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.041475+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23167, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.041546+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.044076+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(23168, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.044135+00', TIMESTAMP WITH TIME ZONE '2023-01-26 11:49:15.048877+00', 4, '{"total-tables":4,"tables-classified":0}'), +(23169, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 12:00:00.018+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:00:00.046+00', 28, NULL), +(23170, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 12:00:00.02+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:00:00.048+00', 28, NULL), +(23171, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:00.211489+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:02.86286+00', 2651, NULL), +(23172, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:00.215184+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:01.100971+00', 885, '{"timezone-id":"UTC"}'), +(23173, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:01.10213+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:01.358347+00', 256, '{"updated-tables":0,"total-tables":8}'), +(23174, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:01.358607+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:02.361281+00', 1002, '{"total-fields":71,"updated-fields":0}'), +(23175, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:02.361353+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:02.45878+00', 97, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23176, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:02.458875+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:02.862821+00', 403, NULL), +(23177, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.119239+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.37527+00', 256, NULL), +(23178, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.119683+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.304063+00', 184, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23179, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.304498+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.339424+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(23180, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.339502+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:19:03.375029+00', 35, '{"total-tables":8,"tables-classified":0}'), +(23181, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:00.048472+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.746547+00', 16698, NULL), +(23182, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:00.048495+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:00.049968+00', 1, '{"timezone-id":null}'), +(23183, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:00.050023+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:00.27665+00', 226, '{"updated-tables":0,"total-tables":4}'), +(23184, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:00.276723+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.74398+00', 16467, '{"total-fields":39,"updated-fields":0}'), +(23185, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.744075+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.745658+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23186, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.745887+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.7464+00', 0, NULL), +(23187, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.765789+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.787349+00', 21, NULL), +(23188, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.765807+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.775056+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23189, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.775153+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.777994+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(23190, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.778072+00', TIMESTAMP WITH TIME ZONE '2023-01-26 12:49:16.787302+00', 9, '{"total-tables":4,"tables-classified":0}'), +(23191, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 13:00:00.029+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:00:00.563+00', 534, NULL), +(23192, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 13:00:00.039+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:00:00.545+00', 506, NULL), +(23193, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:00.283951+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.060342+00', 3776, NULL), +(23194, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:00.292044+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:00.736018+00', 443, '{"timezone-id":"UTC"}'), +(23195, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:00.737195+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:01.127019+00', 389, '{"updated-tables":0,"total-tables":8}'), +(23196, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:01.127331+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:02.834282+00', 1706, '{"total-fields":71,"updated-fields":0}'), +(23197, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:02.835079+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:02.986346+00', 151, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23198, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:02.986715+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.060296+00', 1073, NULL), +(23199, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.246043+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.628188+00', 382, NULL), +(23200, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.246082+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.496097+00', 250, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23201, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.4962+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.54944+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(23202, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.549798+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:19:04.628129+00', 78, '{"total-tables":8,"tables-classified":0}'), +(23203, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:00.170455+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.165728+00', 12995, NULL), +(23204, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:00.170916+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:00.173827+00', 2, '{"timezone-id":null}'), +(23205, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:00.173922+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:00.625846+00', 451, '{"updated-tables":0,"total-tables":4}'), +(23206, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:00.62595+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.162016+00', 12536, '{"total-fields":39,"updated-fields":0}'), +(23207, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.162127+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.164842+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23208, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.164953+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.165695+00', 0, NULL), +(23209, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.207719+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.23056+00', 22, NULL), +(23210, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.20774+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.221511+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23211, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.22157+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.22542+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(23212, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.22548+00', TIMESTAMP WITH TIME ZONE '2023-01-26 13:49:13.230484+00', 5, '{"total-tables":4,"tables-classified":0}'), +(23213, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 14:00:00.018+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:00:00.021+00', 3, NULL), +(23214, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 14:00:00.021+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:00:00.052+00', 31, NULL), +(23215, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:00.714667+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.157136+00', 9442, NULL), +(23216, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:00.724686+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:01.443882+00', 719, '{"timezone-id":"UTC"}'), +(23217, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:01.446942+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:02.051482+00', 604, '{"updated-tables":0,"total-tables":8}'), +(23218, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:02.051954+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:06.551214+00', 4499, '{"total-fields":71,"updated-fields":0}'), +(23219, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:06.551833+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:08.894977+00', 2343, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23220, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:08.895218+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.157101+00', 1261, NULL), +(23221, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.456406+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.955632+00', 499, NULL), +(23222, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.456655+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.766001+00', 309, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23223, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.766335+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.830108+00', 63, '{"fields-classified":0,"fields-failed":0}'), +(23224, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.830446+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:10.955021+00', 124, '{"total-tables":8,"tables-classified":0}'), +(23225, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:00.02865+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.551456+00', 9522, NULL), +(23226, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:00.028672+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:00.034699+00', 6, '{"timezone-id":null}'), +(23227, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:00.03482+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:00.129336+00', 94, '{"updated-tables":0,"total-tables":4}'), +(23228, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:00.129421+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.54907+00', 9419, '{"total-fields":39,"updated-fields":0}'), +(23229, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.549207+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.550989+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23230, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.551085+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.551432+00', 0, NULL), +(23231, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.609788+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.655491+00', 45, NULL), +(23232, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.609813+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.641345+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23233, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.641419+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.644341+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(23234, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.644403+00', TIMESTAMP WITH TIME ZONE '2023-01-26 14:49:09.655443+00', 11, '{"total-tables":4,"tables-classified":0}'), +(23235, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 15:00:00.041+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:00:00.233+00', 192, NULL), +(23236, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 15:00:00.045+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:00:00.233+00', 188, NULL), +(23237, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.05528+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.66727+00', 611, NULL), +(23238, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.057375+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.296509+00', 239, '{"timezone-id":"UTC"}'), +(23239, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.296609+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.380195+00', 83, '{"updated-tables":0,"total-tables":8}'), +(23240, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.380275+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.574922+00', 194, '{"total-fields":71,"updated-fields":0}'), +(23241, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.574991+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.600914+00', 25, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23242, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.600964+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.66724+00', 66, NULL), +(23243, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.691004+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.753478+00', 62, NULL), +(23244, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.691023+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.717414+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23245, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.717488+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.733345+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(23246, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.733417+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:19:00.753427+00', 20, '{"total-tables":8,"tables-classified":0}'), +(23247, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:00.041383+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.175164+00', 8133, NULL), +(23248, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:00.041409+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:00.048624+00', 7, '{"timezone-id":null}'), +(23249, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:00.048724+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:00.205204+00', 156, '{"updated-tables":0,"total-tables":4}'), +(23250, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:00.205271+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.172905+00', 7967, '{"total-fields":39,"updated-fields":0}'), +(23251, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.172967+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.174284+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23252, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.174329+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.17514+00', 0, NULL), +(23253, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.192404+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.20953+00', 17, NULL), +(23254, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.192456+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.202222+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23255, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.202306+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.205164+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(23256, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.205235+00', TIMESTAMP WITH TIME ZONE '2023-01-26 15:49:08.209486+00', 4, '{"total-tables":4,"tables-classified":0}'), +(23257, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 16:00:00.021+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:00:00.068+00', 47, NULL), +(23258, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 16:00:00.021+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:00:00.072+00', 51, NULL), +(23259, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.021806+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.286731+00', 264, NULL), +(23260, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.022072+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.037917+00', 15, '{"timezone-id":"UTC"}'), +(23261, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.039183+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.062558+00', 23, '{"updated-tables":0,"total-tables":8}'), +(23262, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.062615+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.2298+00', 167, '{"total-fields":71,"updated-fields":0}'), +(23263, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.229846+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.242333+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23264, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.242608+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.286707+00', 44, NULL), +(23265, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.295577+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.31779+00', 22, NULL), +(23266, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.295592+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.310076+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23267, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.310146+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.314503+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(23268, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.314562+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:19:00.317753+00', 3, '{"total-tables":8,"tables-classified":0}'), +(23269, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:00.06321+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.779668+00', 8716, NULL), +(23270, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:00.063233+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:00.064202+00', 0, '{"timezone-id":null}'), +(23271, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:00.064263+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:00.195163+00', 130, '{"updated-tables":0,"total-tables":4}'), +(23272, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:00.195223+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.766025+00', 8570, '{"total-fields":39,"updated-fields":0}'), +(23273, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.766698+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.778021+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23274, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.77837+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.779629+00', 1, NULL), +(23275, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.867612+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.969006+00', 101, NULL), +(23276, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.867643+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.932389+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23277, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.932874+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.94558+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(23278, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.945673+00', TIMESTAMP WITH TIME ZONE '2023-01-26 16:49:08.968941+00', 23, '{"total-tables":4,"tables-classified":0}'), +(23279, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 17:00:00.043+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:00:00.069+00', 26, NULL), +(23280, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 17:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:00:00.197+00', 87, NULL), +(23281, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.009411+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.316569+00', 307, NULL), +(23282, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.009434+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.04952+00', 40, '{"timezone-id":"UTC"}'), +(23283, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.049604+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.060052+00', 10, '{"updated-tables":0,"total-tables":8}'), +(23284, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.060106+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.246889+00', 186, '{"total-fields":71,"updated-fields":0}'), +(23285, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.24701+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.260154+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23286, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.260254+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.316542+00', 56, NULL), +(23287, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.326727+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.348936+00', 22, NULL), +(23288, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.326746+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.340972+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23289, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.341194+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.345176+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(23290, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.345329+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:19:00.348895+00', 3, '{"total-tables":8,"tables-classified":0}'), +(23291, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:00.032013+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.41905+00', 7387, NULL), +(23292, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:00.032036+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:00.032807+00', 0, '{"timezone-id":null}'), +(23293, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:00.032898+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:00.25247+00', 219, '{"updated-tables":0,"total-tables":4}'), +(23294, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:00.252746+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.416486+00', 7163, '{"total-fields":39,"updated-fields":0}'), +(23295, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.416655+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.418359+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23296, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.418477+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.419026+00', 0, NULL), +(23297, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.437622+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.456681+00', 19, NULL), +(23298, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.437641+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.447218+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23299, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.447285+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.450323+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(23300, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.450383+00', TIMESTAMP WITH TIME ZONE '2023-01-26 17:49:07.456632+00', 6, '{"total-tables":4,"tables-classified":0}'), +(23301, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 18:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:00:00.076+00', 67, NULL), +(23302, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 18:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:00:00.076+00', 69, NULL), +(23303, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.006175+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.331953+00', 325, NULL), +(23304, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.006195+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.015948+00', 9, '{"timezone-id":"UTC"}'), +(23305, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.016024+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.024532+00', 8, '{"updated-tables":0,"total-tables":8}'), +(23306, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.024587+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.237213+00', 212, '{"total-fields":71,"updated-fields":0}'), +(23307, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.23729+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.252509+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23308, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.252575+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.331915+00', 79, NULL), +(23309, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.343568+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.366609+00', 23, NULL), +(23310, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.343585+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.357169+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23311, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.357235+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.362088+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(23312, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.362153+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:19:00.366539+00', 4, '{"total-tables":8,"tables-classified":0}'), +(23313, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:00.029276+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.137991+00', 6108, NULL), +(23314, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:00.029297+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:00.03028+00', 0, '{"timezone-id":null}'), +(23315, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:00.030376+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:00.113636+00', 83, '{"updated-tables":0,"total-tables":4}'), +(23316, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:00.113832+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.135167+00', 6021, '{"total-fields":39,"updated-fields":0}'), +(23317, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.135232+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.13718+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23318, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.137413+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.137963+00', 0, NULL), +(23319, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.16218+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.195011+00', 32, NULL), +(23320, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.1622+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.186921+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23321, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.187176+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.191032+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(23322, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.191104+00', TIMESTAMP WITH TIME ZONE '2023-01-26 18:49:06.194963+00', 3, '{"total-tables":4,"tables-classified":0}'), +(23323, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 19:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:00:00.062+00', 58, NULL), +(23324, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 19:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:00:00.062+00', 60, NULL), +(23325, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.007938+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.259833+00', 251, NULL), +(23326, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.00796+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.038542+00', 30, '{"timezone-id":"UTC"}'), +(23327, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.038632+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.047873+00', 9, '{"updated-tables":0,"total-tables":8}'), +(23328, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.047929+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.202001+00', 154, '{"total-fields":71,"updated-fields":0}'), +(23329, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.202058+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.2132+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23330, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.213261+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.259803+00', 46, NULL), +(23331, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.270132+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.29529+00', 25, NULL), +(23332, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.270149+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.285251+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23333, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.285328+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.289836+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(23334, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.290025+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:19:00.295226+00', 5, '{"total-tables":8,"tables-classified":0}'), +(23335, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:00.06132+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.599181+00', 6537, NULL), +(23336, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:00.061345+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:00.062024+00', 0, '{"timezone-id":null}'), +(23337, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:00.062173+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:00.144813+00', 82, '{"updated-tables":0,"total-tables":4}'), +(23338, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:00.144876+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.597406+00', 6452, '{"total-fields":39,"updated-fields":0}'), +(23339, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.59746+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.598788+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23340, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.598861+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.599162+00', 0, NULL), +(23341, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.61607+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.633389+00', 17, NULL), +(23342, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.61609+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.624565+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23343, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.62463+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.627199+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(23344, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.627258+00', TIMESTAMP WITH TIME ZONE '2023-01-26 19:49:06.633344+00', 6, '{"total-tables":4,"tables-classified":0}'), +(23345, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 20:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:00:00.061+00', 53, NULL), +(23346, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 20:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:00:00.064+00', 58, NULL), +(23347, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.007981+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.260734+00', 252, NULL), +(23348, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.008003+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.029697+00', 21, '{"timezone-id":"UTC"}'), +(23349, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.029798+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.037923+00', 8, '{"updated-tables":0,"total-tables":8}'), +(23350, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.037997+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.189683+00', 151, '{"total-fields":71,"updated-fields":0}'), +(23351, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.189777+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.201384+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23352, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.201479+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.260671+00', 59, NULL), +(23353, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.27842+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.304585+00', 26, NULL), +(23354, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.278439+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.295036+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23355, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.295107+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.300023+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(23356, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.300086+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:19:00.30454+00', 4, '{"total-tables":8,"tables-classified":0}'), +(23357, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:00.018905+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.315224+00', 7296, NULL), +(23358, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:00.018927+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:00.019678+00', 0, '{"timezone-id":null}'), +(23359, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:00.019823+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:00.093024+00', 73, '{"updated-tables":0,"total-tables":4}'), +(23360, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:00.093082+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.313555+00', 7220, '{"total-fields":39,"updated-fields":0}'), +(23361, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.313606+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.314876+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23362, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.314923+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.315204+00', 0, NULL), +(23363, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.331153+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.345545+00', 14, NULL), +(23364, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.331173+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.33937+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23365, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.339579+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.342042+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(23366, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.342203+00', TIMESTAMP WITH TIME ZONE '2023-01-26 20:49:07.345506+00', 3, '{"total-tables":4,"tables-classified":0}'), +(23367, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:00.334+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:01.062+00', 728, NULL), +(23368, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:00.394+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:01.062+00', 668, NULL), +(23369, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:00.415611+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:08.646189+00', 8230, NULL), +(23370, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:00.418843+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:01.651926+00', 1233, '{"deleted":0}'), +(23371, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:01.656024+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:00:08.646137+00', 6990, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(23372, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:00.810733+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:05.532768+00', 4722, NULL), +(23373, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:00.816715+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:01.333787+00', 517, '{"timezone-id":"UTC"}'), +(23374, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:01.337806+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:02.020913+00', 683, '{"updated-tables":0,"total-tables":8}'), +(23375, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:02.021308+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:04.8349+00', 2813, '{"total-fields":71,"updated-fields":0}'), +(23376, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:04.835726+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:04.935475+00', 99, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23377, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:04.936017+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:05.532695+00', 596, NULL), +(23378, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.039597+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.691835+00', 652, NULL), +(23379, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.040125+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.543747+00', 503, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23380, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.544392+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.611828+00', 67, '{"fields-classified":0,"fields-failed":0}'), +(23381, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.612897+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:19:07.69107+00', 78, '{"total-tables":8,"tables-classified":0}'), +(23382, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:01.270067+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.637266+00', 20367, NULL), +(23383, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:01.281266+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:01.32577+00', 44, '{"timezone-id":null}'), +(23384, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:01.330508+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:02.166983+00', 836, '{"updated-tables":0,"total-tables":4}'), +(23385, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:02.167315+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.584542+00', 19417, '{"total-fields":39,"updated-fields":0}'), +(23386, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.584699+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.615657+00', 30, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23387, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.616043+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.637156+00', 21, NULL), +(23388, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.837172+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.949797+00', 112, NULL), +(23389, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.837194+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.898634+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23390, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.898697+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.912625+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(23391, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.912691+00', TIMESTAMP WITH TIME ZONE '2023-01-26 21:49:21.949742+00', 37, '{"total-tables":4,"tables-classified":0}'), +(23392, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 22:00:00.185+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:00:01.767+00', 1582, NULL), +(23393, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 22:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:00:02.052+00', 1868, NULL), +(23394, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:00.556596+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.417216+00', 5860, NULL), +(23395, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:00.559896+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:01.560943+00', 1001, '{"timezone-id":"UTC"}'), +(23396, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:01.563264+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:02.05803+00', 494, '{"updated-tables":0,"total-tables":8}'), +(23397, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:02.058156+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:05.708474+00', 3650, '{"total-fields":71,"updated-fields":0}'), +(23398, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:05.708815+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:05.841087+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23399, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:05.841467+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.417045+00', 575, NULL), +(23400, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.636876+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.956439+00', 319, NULL), +(23401, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.636899+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.850251+00', 213, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23402, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.85061+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.895255+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(23403, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.895514+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:19:06.956102+00', 60, '{"total-tables":8,"tables-classified":0}'), +(23404, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:01.063044+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.304832+00', 17241, NULL), +(23405, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:01.07279+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:01.101516+00', 28, '{"timezone-id":null}'), +(23406, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:01.105182+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:01.754878+00', 649, '{"updated-tables":0,"total-tables":4}'), +(23407, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:01.755197+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.278027+00', 16522, '{"total-fields":39,"updated-fields":0}'), +(23408, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.278534+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.29718+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23409, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.29728+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.304769+00', 7, NULL), +(23410, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.447337+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.549042+00', 101, NULL), +(23411, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.447366+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.505054+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23412, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.505293+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.521994+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(23413, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.522092+00', TIMESTAMP WITH TIME ZONE '2023-01-26 22:49:18.548577+00', 26, '{"total-tables":4,"tables-classified":0}'), +(23414, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 23:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:00:00.721+00', 533, NULL), +(23415, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-26 23:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:00:00.802+00', 625, NULL), +(23416, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:00.352193+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:05.486757+00', 5134, NULL), +(23417, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:00.356391+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:00.794313+00', 437, '{"timezone-id":"UTC"}'), +(23418, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:00.796059+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:01.186668+00', 390, '{"updated-tables":0,"total-tables":8}'), +(23419, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:01.187225+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:04.670607+00', 3483, '{"total-fields":71,"updated-fields":0}'), +(23420, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:04.671413+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:04.827868+00', 156, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23421, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:04.828145+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:05.486709+00', 658, NULL), +(23422, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:05.767158+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:06.250552+00', 483, NULL), +(23423, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:05.767192+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:06.078195+00', 311, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23424, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:06.078608+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:06.155026+00', 76, '{"fields-classified":0,"fields-failed":0}'), +(23425, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:06.155121+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:19:06.250448+00', 95, '{"total-tables":8,"tables-classified":0}'), +(23426, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:01.074122+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.206515+00', 16132, NULL), +(23427, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:01.082131+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:01.108459+00', 26, '{"timezone-id":null}'), +(23428, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:01.114868+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:01.872079+00', 757, '{"updated-tables":0,"total-tables":4}'), +(23429, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:01.872653+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.188257+00', 15315, '{"total-fields":39,"updated-fields":0}'), +(23430, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.188368+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.202702+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23431, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.2028+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.206456+00', 3, NULL), +(23432, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.358042+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.548305+00', 190, NULL), +(23433, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.358071+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.48146+00', 123, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23434, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.481542+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.505287+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(23435, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.505362+00', TIMESTAMP WITH TIME ZONE '2023-01-26 23:49:17.548238+00', 42, '{"total-tables":4,"tables-classified":0}'), +(23436, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 00:00:01.216+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:00:08.279+00', 7063, NULL), +(23437, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 00:00:01.216+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:00:09.544+00', 8328, NULL), +(23438, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:01.590611+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.302257+00', 5711, NULL), +(23439, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:01.613256+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:03.138556+00', 1525, '{"timezone-id":"UTC"}'), +(23440, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:03.141316+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:03.672586+00', 531, '{"updated-tables":0,"total-tables":8}'), +(23441, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:03.672938+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:06.518645+00', 2845, '{"total-fields":71,"updated-fields":0}'), +(23442, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:06.518736+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:06.693155+00', 174, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23443, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:06.693435+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.302202+00', 608, NULL), +(23444, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.542159+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:08.026621+00', 484, NULL), +(23445, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.542187+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.854338+00', 312, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23446, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.854579+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.914844+00', 60, '{"fields-classified":0,"fields-failed":0}'), +(23447, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:07.915118+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:19:08.026344+00', 111, '{"total-tables":8,"tables-classified":0}'), +(23448, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:01.234639+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:22.751887+00', 21517, NULL), +(23449, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:01.259875+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:01.304478+00', 44, '{"timezone-id":null}'), +(23450, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:01.314032+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:02.117016+00', 802, '{"updated-tables":0,"total-tables":4}'), +(23451, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:02.117526+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:22.716433+00', 20598, '{"total-fields":39,"updated-fields":0}'), +(23452, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:22.716602+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:22.74218+00', 25, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23453, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:22.742251+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:22.751816+00', 9, NULL), +(23454, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.052064+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.225211+00', 173, NULL), +(23455, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.052089+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.173372+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23456, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.17345+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.196025+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(23457, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.196115+00', TIMESTAMP WITH TIME ZONE '2023-01-27 00:49:23.225151+00', 29, '{"total-tables":4,"tables-classified":0}'), +(23458, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 01:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:00:01.849+00', 1665, NULL), +(23459, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 01:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:00:02.736+00', 2561, NULL), +(23460, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:00.395902+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.095408+00', 7699, NULL), +(23461, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:00.400213+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:01.06303+00', 662, '{"timezone-id":"UTC"}'), +(23462, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:01.066702+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:01.551964+00', 485, '{"updated-tables":0,"total-tables":8}'), +(23463, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:01.552082+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:06.591187+00', 5039, '{"total-fields":71,"updated-fields":0}'), +(23464, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:06.591524+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:07.071106+00', 479, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23465, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:07.071899+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.09534+00', 1023, NULL), +(23466, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.318773+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.821611+00', 502, NULL), +(23467, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.318798+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.662671+00', 343, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23468, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.664141+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.733162+00', 69, '{"fields-classified":0,"fields-failed":0}'), +(23469, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.733258+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:19:08.821531+00', 88, '{"total-tables":8,"tables-classified":0}'), +(23470, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:02.253429+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.1558+00', 14902, NULL), +(23471, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:02.260917+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:02.282749+00', 21, '{"timezone-id":null}'), +(23472, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:02.289498+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:02.976487+00', 686, '{"updated-tables":0,"total-tables":4}'), +(23473, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:02.976818+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.134202+00', 14157, '{"total-fields":39,"updated-fields":0}'), +(23474, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.134318+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.151913+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23475, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.151984+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.155745+00', 3, NULL), +(23476, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.348608+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.457599+00', 108, NULL), +(23477, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.34863+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.426182+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23478, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.426334+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.43902+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(23479, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.439203+00', TIMESTAMP WITH TIME ZONE '2023-01-27 01:49:17.457463+00', 18, '{"total-tables":4,"tables-classified":0}'), +(23480, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:00.224+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:01.785+00', 1561, NULL), +(23481, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:01.786+00', 1593, NULL), +(23482, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:02.652875+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:21.330343+00', 18677, NULL), +(23483, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:02.705221+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:08.085544+00', 5380, '{"deleted":0}'), +(23484, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:08.087288+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:00:21.330271+00', 13242, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(23485, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:00.463723+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.188257+00', 5724, NULL), +(23486, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:00.469201+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:01.329071+00', 859, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23487, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:01.330477+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:03.214465+00', 1883, '{"updated-tables":0,"total-tables":8}'), +(23488, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:03.215076+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:05.903383+00', 2688, '{"total-fields":71,"updated-fields":0}'), +(23489, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:05.903489+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:05.9741+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23490, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:05.974163+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.188181+00', 214, NULL), +(23491, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.302791+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.479976+00', 177, NULL), +(23492, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.302818+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.408927+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23493, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.409017+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.434463+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(23494, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.434542+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:19:06.479892+00', 45, '{"total-tables":8,"tables-classified":0}'), +(23495, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:00.520664+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:15.921384+00', 15400, NULL), +(23496, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:00.525968+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:00.538426+00', 12, '{"timezone-id":null}'), +(23497, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:00.539659+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:01.370575+00', 830, '{"updated-tables":0,"total-tables":4}'), +(23498, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:01.370692+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:15.912758+00', 14542, '{"total-fields":39,"updated-fields":0}'), +(23499, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:15.912874+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:15.918608+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23500, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:15.918674+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:15.921313+00', 2, NULL), +(23501, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.076052+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.177527+00', 101, NULL), +(23502, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.076075+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.13168+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23503, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.131782+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.151841+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(23504, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.151911+00', TIMESTAMP WITH TIME ZONE '2023-01-27 02:49:16.177422+00', 25, '{"total-tables":4,"tables-classified":0}'), +(23505, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 03:00:00.324+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:00:02.991+00', 2667, NULL), +(23506, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 03:00:00.252+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:00:03.32+00', 3068, NULL), +(23507, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:00.334804+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:05.347506+00', 5012, NULL), +(23508, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:00.3418+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:00.829309+00', 487, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23509, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:00.831535+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:01.325572+00', 494, '{"updated-tables":0,"total-tables":8}'), +(23510, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:01.325977+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:04.512387+00', 3186, '{"total-fields":71,"updated-fields":0}'), +(23511, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:04.512673+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:04.687247+00', 174, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23512, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:04.687573+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:05.34746+00', 659, NULL), +(23513, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:05.564619+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:06.197908+00', 633, NULL), +(23514, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:05.564646+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:06.020664+00', 456, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23515, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:06.020947+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:06.099377+00', 78, '{"fields-classified":0,"fields-failed":0}'), +(23516, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:06.099798+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:19:06.197566+00', 97, '{"total-tables":8,"tables-classified":0}'), +(23517, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:00.767834+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.615368+00', 11847, NULL), +(23518, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:00.770557+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:00.784005+00', 13, '{"timezone-id":null}'), +(23519, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:00.791933+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:01.42272+00', 630, '{"updated-tables":0,"total-tables":4}'), +(23520, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:01.423065+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.598465+00', 11175, '{"total-fields":39,"updated-fields":0}'), +(23521, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.598601+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.609157+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23522, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.609232+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.615283+00', 6, NULL), +(23523, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.766594+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.822568+00', 55, NULL), +(23524, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.766616+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.805079+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23525, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.805321+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.810957+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(23526, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.811019+00', TIMESTAMP WITH TIME ZONE '2023-01-27 03:49:12.822509+00', 11, '{"total-tables":4,"tables-classified":0}'), +(23527, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 04:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:00:01.904+00', 1729, NULL), +(23528, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 04:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:00:02.318+00', 2145, NULL), +(23529, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:00.245561+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.16524+00', 6919, NULL), +(23530, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:00.24926+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:01.083552+00', 834, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23531, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:01.08521+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:01.600842+00', 515, '{"updated-tables":0,"total-tables":8}'), +(23532, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:01.601372+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:06.095745+00', 4494, '{"total-fields":71,"updated-fields":0}'), +(23533, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:06.096066+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:06.297849+00', 201, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23534, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:06.298275+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.165211+00', 866, NULL), +(23535, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.369851+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.730298+00', 360, NULL), +(23536, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.369882+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.608695+00', 238, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23537, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.608825+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.66041+00', 51, '{"fields-classified":0,"fields-failed":0}'), +(23538, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.661345+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:19:07.730231+00', 68, '{"total-tables":8,"tables-classified":0}'), +(23539, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:00.93704+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.481143+00', 13544, NULL), +(23540, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:00.949393+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:00.975039+00', 25, '{"timezone-id":null}'), +(23541, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:00.980005+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:01.497291+00', 517, '{"updated-tables":0,"total-tables":4}'), +(23542, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:01.497387+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.472582+00', 12975, '{"total-fields":39,"updated-fields":0}'), +(23543, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.472659+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.478344+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23544, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.478409+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.481101+00', 2, NULL), +(23545, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.586885+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.637646+00', 50, NULL), +(23546, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.586912+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.620824+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23547, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.620905+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.62927+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(23548, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.629346+00', TIMESTAMP WITH TIME ZONE '2023-01-27 04:49:14.637589+00', 8, '{"total-tables":4,"tables-classified":0}'), +(23549, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 05:00:00.239+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:00:01.373+00', 1134, NULL), +(23550, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 05:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:00:01.512+00', 1345, NULL), +(23551, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:00.509275+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:06.699028+00', 6189, NULL), +(23552, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:00.514148+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:01.271289+00', 757, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23553, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:01.273827+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:02.475866+00', 1202, '{"updated-tables":0,"total-tables":8}'), +(23554, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:02.476519+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:05.782315+00', 3305, '{"total-fields":71,"updated-fields":0}'), +(23555, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:05.782428+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:05.9407+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23556, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:05.941217+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:06.698931+00', 757, NULL), +(23557, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:06.948985+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:07.352046+00', 403, NULL), +(23558, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:06.949145+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:07.219308+00', 270, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23559, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:07.219436+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:07.269987+00', 50, '{"fields-classified":0,"fields-failed":0}'), +(23560, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:07.270214+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:19:07.351668+00', 81, '{"total-tables":8,"tables-classified":0}'), +(23561, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:00.893785+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.543509+00', 15649, NULL), +(23562, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:00.898867+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:00.926475+00', 27, '{"timezone-id":null}'), +(23563, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:00.933388+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:01.477206+00', 543, '{"updated-tables":0,"total-tables":4}'), +(23564, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:01.47776+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.512537+00', 15034, '{"total-fields":39,"updated-fields":0}'), +(23565, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.512656+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.533092+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23566, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.533193+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.54345+00', 10, NULL), +(23567, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.692818+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.766534+00', 73, NULL), +(23568, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.692841+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.730658+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23569, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.730726+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.73662+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(23570, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.736719+00', TIMESTAMP WITH TIME ZONE '2023-01-27 05:49:16.766456+00', 29, '{"total-tables":4,"tables-classified":0}'), +(23571, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 06:00:00.109+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:00:01.36+00', 1251, NULL), +(23572, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 06:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:00:01.36+00', 1233, NULL), +(23573, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:00.256755+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.485451+00', 4228, NULL), +(23574, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:00.260163+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:00.900753+00', 640, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23575, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:00.902312+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:01.351307+00', 448, '{"updated-tables":0,"total-tables":8}'), +(23576, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:01.351411+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:03.677133+00', 2325, '{"total-fields":71,"updated-fields":0}'), +(23577, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:03.677224+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:03.747928+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23578, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:03.748503+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.485419+00', 736, NULL), +(23579, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.634072+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.806857+00', 172, NULL), +(23580, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.634092+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.729113+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23581, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.729215+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.75186+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(23582, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.751936+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:19:04.806806+00', 54, '{"total-tables":8,"tables-classified":0}'), +(23583, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:01.274324+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.655882+00', 20381, NULL), +(23584, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:01.283755+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:01.348041+00', 64, '{"timezone-id":null}'), +(23585, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:01.35844+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:02.469933+00', 1111, '{"updated-tables":0,"total-tables":4}'), +(23586, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:02.470297+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.61076+00', 19140, '{"total-fields":39,"updated-fields":0}'), +(23587, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.610887+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.643914+00', 33, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23588, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.644974+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.655825+00', 10, NULL), +(23589, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.973089+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:22.230565+00', 257, NULL), +(23590, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:21.97311+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:22.165986+00', 192, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23591, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:22.166055+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:22.175635+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(23592, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:22.175722+00', TIMESTAMP WITH TIME ZONE '2023-01-27 06:49:22.230484+00', 54, '{"total-tables":4,"tables-classified":0}'), +(23593, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 07:00:00.752+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:00:05.245+00', 4493, NULL), +(23594, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 07:00:00.516+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:00:05.735+00', 5219, NULL), +(23595, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:00.415101+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.309731+00', 5894, NULL), +(23596, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:00.419979+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:01.360854+00', 940, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23597, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:01.362101+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:01.875964+00', 513, '{"updated-tables":0,"total-tables":8}'), +(23598, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:01.876445+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:05.457302+00', 3580, '{"total-fields":71,"updated-fields":0}'), +(23599, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:05.458066+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:05.623661+00', 165, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23600, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:05.623758+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.30966+00', 685, NULL), +(23601, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.541994+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.935621+00', 393, NULL), +(23602, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.542033+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.783245+00', 241, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23603, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.783791+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.84915+00', 65, '{"fields-classified":0,"fields-failed":0}'), +(23604, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.849517+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:19:06.935451+00', 85, '{"total-tables":8,"tables-classified":0}'), +(23605, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:00.558192+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.436957+00', 12878, NULL), +(23606, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:00.558459+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:00.561818+00', 3, '{"timezone-id":null}'), +(23607, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:00.562987+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:00.917009+00', 354, '{"updated-tables":0,"total-tables":4}'), +(23608, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:00.917076+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.426289+00', 12509, '{"total-fields":39,"updated-fields":0}'), +(23609, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.426419+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.43353+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23610, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.433629+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.436863+00', 3, NULL), +(23611, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.582523+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.638162+00', 55, NULL), +(23612, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.582544+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.615081+00', 32, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23613, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.615222+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.622129+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(23614, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.622259+00', TIMESTAMP WITH TIME ZONE '2023-01-27 07:49:13.63795+00', 15, '{"total-tables":4,"tables-classified":0}'), +(23615, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 08:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:00:01.286+00', 1107, NULL), +(23616, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 08:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:00:01.478+00', 1322, NULL), +(23617, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:00.417045+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.2763+00', 4859, NULL), +(23618, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:00.422301+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:00.843522+00', 421, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23619, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:00.845366+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:01.709771+00', 864, '{"updated-tables":0,"total-tables":8}'), +(23620, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:01.710476+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:04.557398+00', 2846, '{"total-fields":71,"updated-fields":0}'), +(23621, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:04.557685+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:04.731126+00', 173, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23622, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:04.731794+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.276036+00', 544, NULL), +(23623, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.458764+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.818133+00', 359, NULL), +(23624, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.459059+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.706533+00', 247, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23625, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.706895+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.757087+00', 50, '{"fields-classified":0,"fields-failed":0}'), +(23626, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.757495+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:19:05.818059+00', 60, '{"total-tables":8,"tables-classified":0}'), +(23627, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:09.239096+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:27.886307+00', 18647, NULL), +(23628, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:09.254531+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:09.286757+00', 32, '{"timezone-id":null}'), +(23629, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:09.443882+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:11.327653+00', 1883, '{"updated-tables":0,"total-tables":4}'), +(23630, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:11.32787+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:27.727039+00', 16399, '{"total-fields":39,"updated-fields":0}'), +(23631, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:27.731088+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:27.824137+00', 93, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23632, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:27.824333+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:27.886146+00', 61, NULL), +(23633, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:28.737054+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:29.213603+00', 476, NULL), +(23634, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:28.737393+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:28.991867+00', 254, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23635, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:28.992053+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:29.034535+00', 42, '{"fields-classified":0,"fields-failed":0}'), +(23636, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:29.034689+00', TIMESTAMP WITH TIME ZONE '2023-01-27 08:49:29.21295+00', 178, '{"total-tables":4,"tables-classified":0}'), +(23637, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 09:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:00:01.331+00', 1130, NULL), +(23638, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 09:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:00:01.415+00', 1214, NULL), +(23639, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:00.092584+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.378996+00', 4286, NULL), +(23640, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:00.09318+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:02.586222+00', 2493, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23641, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:02.586379+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:02.867531+00', 281, '{"updated-tables":0,"total-tables":8}'), +(23642, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:02.867686+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:03.8232+00', 955, '{"total-fields":71,"updated-fields":0}'), +(23643, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:03.823329+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:03.935524+00', 112, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23644, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:03.93585+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.378891+00', 443, NULL), +(23645, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.481818+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.70696+00', 225, NULL), +(23646, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.481878+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.573275+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23647, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.573436+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.648326+00', 74, '{"fields-classified":0,"fields-failed":0}'), +(23648, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.648947+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:19:04.706828+00', 57, '{"total-tables":8,"tables-classified":0}'), +(23649, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:00.761016+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:15.516541+00', 14755, NULL), +(23650, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:00.763015+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:00.776117+00', 13, '{"timezone-id":null}'), +(23651, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:00.777677+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:01.677308+00', 899, '{"updated-tables":0,"total-tables":4}'), +(23652, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:01.679151+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:15.490782+00', 13811, '{"total-fields":39,"updated-fields":0}'), +(23653, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:15.490961+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:15.505183+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23654, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:15.505297+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:15.510178+00', 4, NULL), +(23655, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.164094+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.2711+00', 107, NULL), +(23656, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.164163+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.221517+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23657, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.221656+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.250201+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(23658, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.25033+00', TIMESTAMP WITH TIME ZONE '2023-01-27 09:49:16.271007+00', 20, '{"total-tables":4,"tables-classified":0}'), +(23659, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 10:00:00.105+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:00:03.167+00', 3062, NULL), +(23660, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 10:00:00.065+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:00:03.426+00', 3361, NULL), +(23661, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:00.651602+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:06.576972+00', 5925, NULL), +(23662, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:00.657007+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:00.981647+00', 324, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23663, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:00.98424+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:01.444478+00', 460, '{"updated-tables":0,"total-tables":8}'), +(23664, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:01.44484+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:05.08458+00', 3639, '{"total-fields":71,"updated-fields":0}'), +(23665, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:05.084973+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:05.349122+00', 264, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23666, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:05.354015+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:06.57681+00', 1222, NULL), +(23667, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:06.990433+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:07.635818+00', 645, NULL), +(23668, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:06.990521+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:07.421522+00', 431, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23669, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:07.422204+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:07.527026+00', 104, '{"fields-classified":0,"fields-failed":0}'), +(23670, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:07.527507+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:19:07.635384+00', 107, '{"total-tables":8,"tables-classified":0}'), +(23671, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:00.750176+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.097387+00', 12347, NULL), +(23672, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:00.75173+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:00.767205+00', 15, '{"timezone-id":null}'), +(23673, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:00.769082+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:01.215378+00', 446, '{"updated-tables":0,"total-tables":4}'), +(23674, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:01.215818+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.069+00', 11853, '{"total-fields":39,"updated-fields":0}'), +(23675, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.072215+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.092202+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23676, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.092305+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.097304+00', 4, NULL), +(23677, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.43452+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.868597+00', 434, NULL), +(23678, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.434617+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.701254+00', 266, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23679, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.70139+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.754248+00', 52, '{"fields-classified":0,"fields-failed":0}'), +(23680, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.754374+00', TIMESTAMP WITH TIME ZONE '2023-01-27 10:49:13.868502+00', 114, '{"total-tables":4,"tables-classified":0}'), +(23681, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 11:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:00:02.251+00', 2049, NULL), +(23682, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 11:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:00:02.816+00', 2643, NULL), +(23683, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:00.370739+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.554546+00', 5183, NULL), +(23684, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:00.373866+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:01.116321+00', 742, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23685, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:01.119013+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:01.724639+00', 605, '{"updated-tables":0,"total-tables":8}'), +(23686, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:01.724818+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.163716+00', 3438, '{"total-fields":71,"updated-fields":0}'), +(23687, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.163867+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.286645+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23688, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.286792+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.554449+00', 267, NULL), +(23689, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.794588+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:06.101418+00', 306, NULL), +(23690, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.794656+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.966869+00', 172, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23691, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:05.967082+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:06.000027+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(23692, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:06.000179+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:19:06.101303+00', 101, '{"total-tables":8,"tables-classified":0}'), +(23693, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:00.29495+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.185806+00', 11890, NULL), +(23694, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:00.295417+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:00.302942+00', 7, '{"timezone-id":null}'), +(23695, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:00.304015+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:00.640273+00', 336, '{"updated-tables":0,"total-tables":4}'), +(23696, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:00.640468+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.154284+00', 11513, '{"total-fields":39,"updated-fields":0}'), +(23697, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.154459+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.177535+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23698, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.177699+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.185701+00', 8, NULL), +(23699, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.44122+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.693767+00', 252, NULL), +(23700, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.441277+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.607326+00', 166, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23701, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.607487+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.641445+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(23702, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.641886+00', TIMESTAMP WITH TIME ZONE '2023-01-27 11:49:12.693639+00', 51, '{"total-tables":4,"tables-classified":0}'), +(23703, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 12:00:00.337+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:00:01.603+00', 1266, NULL), +(23704, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 12:00:00.379+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:00:01.602+00', 1223, NULL), +(23705, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:00.248626+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:05.576585+00', 5327, NULL), +(23706, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:00.250865+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:00.496723+00', 245, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23707, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:00.498586+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:00.685701+00', 187, '{"updated-tables":0,"total-tables":8}'), +(23708, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:00.685837+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:03.579947+00', 2894, '{"total-fields":71,"updated-fields":0}'), +(23709, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:03.580286+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:03.763697+00', 183, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23710, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:03.76412+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:05.575697+00', 1811, NULL), +(23711, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:05.869499+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:06.317407+00', 447, NULL), +(23712, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:05.869566+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:06.169352+00', 299, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23713, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:06.170011+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:06.219781+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(23714, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:06.221332+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:19:06.317296+00', 95, '{"total-tables":8,"tables-classified":0}'), +(23715, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:01.128149+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.809998+00', 11681, NULL), +(23716, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:01.138391+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:01.177079+00', 38, '{"timezone-id":null}'), +(23717, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:01.185987+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:01.822306+00', 636, '{"updated-tables":0,"total-tables":4}'), +(23718, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:01.822482+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.787678+00', 10965, '{"total-fields":39,"updated-fields":0}'), +(23719, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.787803+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.806425+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23720, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.806551+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.809914+00', 3, NULL), +(23721, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.979056+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:13.084571+00', 105, NULL), +(23722, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:12.979108+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:13.027592+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23723, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:13.027693+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:13.038489+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(23724, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:13.038592+00', TIMESTAMP WITH TIME ZONE '2023-01-27 12:49:13.084393+00', 45, '{"total-tables":4,"tables-classified":0}'), +(23725, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 13:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:00:00.963+00', 892, NULL), +(23726, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 13:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:00:01.15+00', 1079, NULL), +(23727, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:00.445077+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.792802+00', 3347, NULL), +(23728, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:00.448873+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:00.80384+00', 354, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23729, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:00.80614+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:01.159969+00', 353, '{"updated-tables":0,"total-tables":8}'), +(23730, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:01.160438+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.508382+00', 2347, '{"total-fields":71,"updated-fields":0}'), +(23731, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.508575+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.549597+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23732, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.549684+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.792643+00', 242, NULL), +(23733, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.903311+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:04.07745+00', 174, NULL), +(23734, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.903416+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.943766+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23735, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:03.943888+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:04.027128+00', 83, '{"fields-classified":0,"fields-failed":0}'), +(23736, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:04.028702+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:19:04.077343+00', 48, '{"total-tables":8,"tables-classified":0}'), +(23737, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:00.968187+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.426334+00', 13458, NULL), +(23738, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:00.972497+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:00.999102+00', 26, '{"timezone-id":null}'), +(23739, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:01.001268+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:01.601258+00', 599, '{"updated-tables":0,"total-tables":4}'), +(23740, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:01.601866+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.391741+00', 12789, '{"total-fields":39,"updated-fields":0}'), +(23741, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.392525+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.41734+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23742, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.41791+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.426238+00', 8, NULL), +(23743, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.822833+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.943339+00', 120, NULL), +(23744, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.822917+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.894802+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23745, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.894921+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.912927+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(23746, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.913032+00', TIMESTAMP WITH TIME ZONE '2023-01-27 13:49:14.943235+00', 30, '{"total-tables":4,"tables-classified":0}'), +(23747, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 14:00:00.186+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:00:01.372+00', 1186, NULL), +(23748, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 14:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:00:01.626+00', 1461, NULL), +(23749, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:00.348709+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:05.920687+00', 5571, NULL), +(23750, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:00.353806+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:00.931921+00', 578, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23751, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:00.937014+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:01.358474+00', 421, '{"updated-tables":0,"total-tables":8}'), +(23752, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:01.358897+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:05.659867+00', 4300, '{"total-fields":71,"updated-fields":0}'), +(23753, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:05.660038+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:05.709317+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23754, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:05.709411+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:05.920619+00', 211, NULL), +(23755, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.03155+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.164454+00', 132, NULL), +(23756, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.031599+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.107547+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23757, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.107664+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.125846+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(23758, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.125944+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:19:06.164303+00', 38, '{"total-tables":8,"tables-classified":0}'), +(23759, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:01.036082+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.744076+00', 12707, NULL), +(23760, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:01.040187+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:01.061144+00', 20, '{"timezone-id":null}'), +(23761, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:01.065048+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:01.557259+00', 492, '{"updated-tables":0,"total-tables":4}'), +(23762, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:01.557383+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.729774+00', 12172, '{"total-fields":39,"updated-fields":0}'), +(23763, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.729965+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.741285+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23764, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.741395+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.744002+00', 2, NULL), +(23765, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.99374+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:14.077173+00', 83, NULL), +(23766, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:13.993836+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:14.045903+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23767, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:14.046023+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:14.062763+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(23768, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:14.062935+00', TIMESTAMP WITH TIME ZONE '2023-01-27 14:49:14.077065+00', 14, '{"total-tables":4,"tables-classified":0}'), +(23769, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 15:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:00:01.701+00', 1509, NULL), +(23770, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 15:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:00:03.645+00', 3481, NULL), +(23771, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:00.320931+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.56566+00', 5244, NULL), +(23772, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:00.325765+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:00.959142+00', 633, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23773, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:00.961685+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:01.400329+00', 438, '{"updated-tables":0,"total-tables":8}'), +(23774, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:01.400726+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.050672+00', 3649, '{"total-fields":71,"updated-fields":0}'), +(23775, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.050804+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.123039+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23776, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.123337+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.565581+00', 442, NULL), +(23777, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.693604+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.80259+00', 108, NULL), +(23778, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.693657+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.759374+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23779, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.759469+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.77792+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(23780, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.778009+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:19:05.802508+00', 24, '{"total-tables":8,"tables-classified":0}'), +(23781, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:00.271964+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.449492+00', 14177, NULL), +(23782, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:00.272028+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:00.275899+00', 3, '{"timezone-id":null}'), +(23783, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:00.276036+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:00.639785+00', 363, '{"updated-tables":0,"total-tables":4}'), +(23784, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:00.639887+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.441241+00', 13801, '{"total-fields":39,"updated-fields":0}'), +(23785, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.441386+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.446206+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23786, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.446339+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.44939+00', 3, NULL), +(23787, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.581125+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.637232+00', 56, NULL), +(23788, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.581172+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.616752+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23789, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.616915+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.625871+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(23790, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.626051+00', TIMESTAMP WITH TIME ZONE '2023-01-27 15:49:14.637121+00', 11, '{"total-tables":4,"tables-classified":0}'), +(23791, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 16:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:00:01.462+00', 1249, NULL), +(23792, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 16:00:00.199+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:00:02.007+00', 1808, NULL), +(23793, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:00.418383+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.620776+00', 5202, NULL), +(23794, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:00.421336+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:01.08712+00', 665, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23795, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:01.089327+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:01.433334+00', 344, '{"updated-tables":0,"total-tables":8}'), +(23796, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:01.43347+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.165029+00', 3731, '{"total-fields":71,"updated-fields":0}'), +(23797, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.165997+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.271371+00', 105, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23798, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.271514+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.620696+00', 349, NULL), +(23799, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.708571+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.845573+00', 137, NULL), +(23800, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.70862+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.812906+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23801, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.813061+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.828909+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(23802, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.829059+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:19:05.84547+00', 16, '{"total-tables":8,"tables-classified":0}'), +(23803, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:00.163581+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:11.628983+00', 11465, NULL), +(23804, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:00.163633+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:00.166557+00', 2, '{"timezone-id":null}'), +(23805, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:00.166727+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:00.460893+00', 294, '{"updated-tables":0,"total-tables":4}'), +(23806, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:00.460979+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:11.614076+00', 11153, '{"total-fields":39,"updated-fields":0}'), +(23807, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:11.614199+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:11.619829+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23808, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:11.619934+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:11.628887+00', 8, NULL), +(23809, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.086668+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.207777+00', 121, NULL), +(23810, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.086707+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.177887+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23811, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.178462+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.193156+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(23812, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.193315+00', TIMESTAMP WITH TIME ZONE '2023-01-27 16:49:12.207696+00', 14, '{"total-tables":4,"tables-classified":0}'), +(23813, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 17:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:00:01.099+00', 954, NULL), +(23814, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 17:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:00:01.251+00', 1113, NULL), +(23815, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:00.410814+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.559624+00', 6148, NULL), +(23816, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:00.413858+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:01.050942+00', 637, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23817, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:01.053846+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:01.465116+00', 411, '{"updated-tables":0,"total-tables":8}'), +(23818, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:01.46525+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.139968+00', 4674, '{"total-fields":71,"updated-fields":0}'), +(23819, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.140078+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.193579+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23820, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.193691+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.559517+00', 365, NULL), +(23821, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.729307+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.867941+00', 138, NULL), +(23822, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.729363+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.808565+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23823, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.809046+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.828016+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(23824, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.82815+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:19:06.867847+00', 39, '{"total-tables":8,"tables-classified":0}'), +(23825, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:00.161281+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:11.972118+00', 11810, NULL), +(23826, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:00.161337+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:00.164341+00', 3, '{"timezone-id":null}'), +(23827, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:00.164518+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:00.460498+00', 295, '{"updated-tables":0,"total-tables":4}'), +(23828, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:00.460608+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:11.951958+00', 11491, '{"total-fields":39,"updated-fields":0}'), +(23829, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:11.952082+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:11.960621+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23830, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:11.96072+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:11.972024+00', 11, NULL), +(23831, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.182565+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.267131+00', 84, NULL), +(23832, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.182611+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.238901+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23833, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.239018+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.246518+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(23834, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.246792+00', TIMESTAMP WITH TIME ZONE '2023-01-27 17:49:12.266701+00', 19, '{"total-tables":4,"tables-classified":0}'), +(23835, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 18:00:00.178+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:00:01.101+00', 923, NULL), +(23836, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 18:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:00:01.451+00', 1299, NULL), +(23837, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:00.219538+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.706586+00', 3487, NULL), +(23838, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:00.222475+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:00.455681+00', 233, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23839, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:00.458222+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:00.74824+00', 290, '{"updated-tables":0,"total-tables":8}'), +(23840, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:00.74836+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.378951+00', 2630, '{"total-fields":71,"updated-fields":0}'), +(23841, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.379084+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.430831+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23842, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.430933+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.706534+00', 275, NULL), +(23843, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.903794+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:04.030958+00', 127, NULL), +(23844, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.903839+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.968581+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23845, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.968746+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.991652+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(23846, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:03.991796+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:19:04.030884+00', 39, '{"total-tables":8,"tables-classified":0}'), +(23847, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:00.193113+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.773535+00', 13580, NULL), +(23848, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:00.193571+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:00.200118+00', 6, '{"timezone-id":null}'), +(23849, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:00.200882+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:00.462809+00', 261, '{"updated-tables":0,"total-tables":4}'), +(23850, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:00.463269+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.751778+00', 13288, '{"total-fields":39,"updated-fields":0}'), +(23851, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.752188+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.768627+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23852, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.769+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.773279+00', 4, NULL), +(23853, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.917314+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:14.208394+00', 291, NULL), +(23854, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:13.91736+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:14.087907+00', 170, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23855, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:14.088038+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:14.125699+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(23856, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:14.125809+00', TIMESTAMP WITH TIME ZONE '2023-01-27 18:49:14.208039+00', 82, '{"total-tables":4,"tables-classified":0}'), +(23857, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 19:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:00:00.977+00', 873, NULL), +(23858, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 19:00:00.071+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:00:01.024+00', 953, NULL), +(23859, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:00.243459+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.775586+00', 4532, NULL), +(23860, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:00.245513+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:00.58867+00', 343, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23861, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:00.589987+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:00.972079+00', 382, '{"updated-tables":0,"total-tables":8}'), +(23862, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:00.972486+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.473908+00', 3501, '{"total-fields":71,"updated-fields":0}'), +(23863, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.474019+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.513437+00', 39, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23864, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.513715+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.775503+00', 261, NULL), +(23865, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.872459+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.971162+00', 98, NULL), +(23866, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.872499+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.930746+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23867, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.930858+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.946484+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(23868, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.946586+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:19:04.971096+00', 24, '{"total-tables":8,"tables-classified":0}'), +(23869, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:00.206905+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.224792+00', 17017, NULL), +(23870, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:00.20695+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:00.209703+00', 2, '{"timezone-id":null}'), +(23871, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:00.20985+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:00.500241+00', 290, '{"updated-tables":0,"total-tables":4}'), +(23872, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:00.500344+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.219871+00', 16719, '{"total-fields":39,"updated-fields":0}'), +(23873, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.219977+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.223456+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23874, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.223616+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.224703+00', 1, NULL), +(23875, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.292829+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.342177+00', 49, NULL), +(23876, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.292863+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.316909+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23877, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.317009+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.328966+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(23878, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.329057+00', TIMESTAMP WITH TIME ZONE '2023-01-27 19:49:17.342109+00', 13, '{"total-tables":4,"tables-classified":0}'), +(23879, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 20:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:00:00.803+00', 677, NULL), +(23880, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 20:00:00.093+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:00:00.803+00', 710, NULL), +(23881, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:00.287874+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.321814+00', 5033, NULL), +(23882, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:00.292105+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:00.756555+00', 464, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23883, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:00.758391+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:01.131769+00', 373, '{"updated-tables":0,"total-tables":8}'), +(23884, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:01.131885+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:04.642015+00', 3510, '{"total-fields":71,"updated-fields":0}'), +(23885, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:04.642469+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:04.77532+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23886, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:04.776053+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.321486+00', 545, NULL), +(23887, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.452548+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.643433+00', 190, NULL), +(23888, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.452593+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.598828+00', 146, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23889, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.598924+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.614031+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(23890, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.614121+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:19:05.643337+00', 29, '{"total-tables":8,"tables-classified":0}'), +(23891, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:00.159253+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.518397+00', 10359, NULL), +(23892, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:00.159302+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:00.165888+00', 6, '{"timezone-id":null}'), +(23893, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:00.166044+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:00.434027+00', 267, '{"updated-tables":0,"total-tables":4}'), +(23894, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:00.434167+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.509988+00', 10075, '{"total-fields":39,"updated-fields":0}'), +(23895, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.510092+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.516467+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23896, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.51657+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.518346+00', 1, NULL), +(23897, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.626466+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.678297+00', 51, NULL), +(23898, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.626503+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.661906+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23899, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.662034+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.669297+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(23900, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.669382+00', TIMESTAMP WITH TIME ZONE '2023-01-27 20:49:10.678224+00', 8, '{"total-tables":4,"tables-classified":0}'), +(23901, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:00.3+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:01.343+00', 1043, NULL), +(23902, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:00.265+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:01.345+00', 1080, NULL), +(23903, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:02.061156+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:14.053078+00', 11991, NULL), +(23904, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:02.067069+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:05.199744+00', 3132, '{"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23905, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:05.202651+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:00:14.052881+00', 8850, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(23906, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:00.941413+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.217588+00', 4276, NULL), +(23907, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:00.947857+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:01.306089+00', 358, '{"timezone-id":"UTC"}'), +(23908, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:01.311811+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:01.861551+00', 549, '{"updated-tables":0,"total-tables":8}'), +(23909, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:01.861932+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:04.913115+00', 3051, '{"total-fields":71,"updated-fields":0}'), +(23910, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:04.913469+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.0495+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23911, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.049641+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.217535+00', 167, NULL), +(23912, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.591403+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.698586+00', 107, NULL), +(23913, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.591441+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.675093+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23914, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.675182+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.685856+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(23915, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.686098+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:19:05.698495+00', 12, '{"total-tables":8,"tables-classified":0}'), +(23916, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:00.294278+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.083652+00', 13789, NULL), +(23917, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:00.294332+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:00.301627+00', 7, '{"timezone-id":null}'), +(23918, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:00.302574+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:00.718492+00', 415, '{"updated-tables":0,"total-tables":4}'), +(23919, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:00.7187+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.070267+00', 13351, '{"total-fields":39,"updated-fields":0}'), +(23920, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.070623+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.079797+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23921, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.079887+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.083577+00', 3, NULL), +(23922, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.224214+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.327846+00', 103, NULL), +(23923, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.22425+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.294931+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23924, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.295147+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.312582+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(23925, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.312688+00', TIMESTAMP WITH TIME ZONE '2023-01-27 21:49:14.327786+00', 15, '{"total-tables":4,"tables-classified":0}'), +(23926, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 22:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:00:01.42+00', 1247, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23927, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 22:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:00:01.778+00', 1620, NULL), +(23928, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:00.305309+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.212886+00', 4907, NULL), +(23929, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:00.30718+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:00.664214+00', 357, '{"timezone-id":"UTC"}'), +(23930, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:00.665191+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:00.988653+00', 323, '{"updated-tables":0,"total-tables":8}'), +(23931, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:00.989319+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:04.227198+00', 3237, '{"total-fields":71,"updated-fields":0}'), +(23932, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:04.227674+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:04.38392+00', 156, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23933, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:04.384402+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.212798+00', 828, NULL), +(23934, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.540589+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.922327+00', 381, NULL), +(23935, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.540934+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.86404+00', 323, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23936, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.864134+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.880351+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(23937, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.880477+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:19:05.922241+00', 41, '{"total-tables":8,"tables-classified":0}'), +(23938, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:01.157518+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.716596+00', 12559, NULL), +(23939, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:01.161771+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:01.193518+00', 31, '{"timezone-id":null}'), +(23940, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:01.199727+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:01.760814+00', 561, '{"updated-tables":0,"total-tables":4}'), +(23941, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:01.760962+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.707552+00', 11946, '{"total-fields":39,"updated-fields":0}'), +(23942, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.707713+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.712907+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23943, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.713222+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.71652+00', 3, NULL), +(23944, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.913044+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.988309+00', 75, NULL), +(23945, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.913082+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.956121+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23946, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.956396+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.971776+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(23947, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.971867+00', TIMESTAMP WITH TIME ZONE '2023-01-27 22:49:13.988241+00', 16, '{"total-tables":4,"tables-classified":0}'), +(23948, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 23:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:00:00.819+00', 694, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23949, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-27 23:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:00:00.984+00', 872, NULL), +(23950, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:00.492939+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:05.794813+00', 5301, NULL), +(23951, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:00.496316+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:00.777839+00', 281, '{"timezone-id":"UTC"}'), +(23952, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:00.779108+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:01.181459+00', 402, '{"updated-tables":0,"total-tables":8}'), +(23953, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:01.181573+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:04.383328+00', 3201, '{"total-fields":71,"updated-fields":0}'), +(23954, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:04.383719+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:04.560536+00', 176, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23955, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:04.560869+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:05.79465+00', 1233, NULL), +(23956, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.016819+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.129795+00', 112, NULL), +(23957, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.016867+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.096338+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23958, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.096497+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.11117+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(23959, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.111298+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:19:06.129479+00', 18, '{"total-tables":8,"tables-classified":0}'), +(23960, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:00.457994+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:13.859447+00', 13401, NULL), +(23961, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:00.459201+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:00.474582+00', 15, '{"timezone-id":null}'), +(23962, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:00.475876+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:00.833006+00', 357, '{"updated-tables":0,"total-tables":4}'), +(23963, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:00.833604+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:13.711893+00', 12878, '{"total-fields":39,"updated-fields":0}'), +(23964, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:13.712055+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:13.85716+00', 145, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23965, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:13.857249+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:13.859391+00', 2, NULL), +(23966, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.033242+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.118684+00', 85, NULL), +(23967, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.033283+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.084009+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23968, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.08468+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.096243+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(23969, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.096441+00', TIMESTAMP WITH TIME ZONE '2023-01-27 23:49:14.118584+00', 22, '{"total-tables":4,"tables-classified":0}'), +(23970, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 00:00:00.274+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:00:04.816+00', 4542, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23971, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 00:00:00.257+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:00:05.956+00', 5699, NULL), +(23972, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:00.449506+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.30996+00', 4860, NULL), +(23973, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:00.465447+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:01.532167+00', 1066, '{"timezone-id":"UTC"}'), +(23974, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:01.542492+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:02.338009+00', 795, '{"updated-tables":0,"total-tables":8}'), +(23975, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:02.338487+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:04.975013+00', 2636, '{"total-fields":71,"updated-fields":0}'), +(23976, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:04.97513+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.087935+00', 112, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23977, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.088028+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.309906+00', 221, NULL), +(23978, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.586936+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.994448+00', 407, NULL), +(23979, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.587166+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.715017+00', 127, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23980, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.725094+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.774658+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(23981, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.815568+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:19:05.994368+00', 178, '{"total-tables":8,"tables-classified":0}'), +(23982, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:00.326308+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.069736+00', 10743, NULL), +(23983, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:00.32878+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:00.335862+00', 7, '{"timezone-id":null}'), +(23984, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:00.337685+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:00.594116+00', 256, '{"updated-tables":0,"total-tables":4}'), +(23985, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:00.594212+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.050622+00', 10456, '{"total-fields":39,"updated-fields":0}'), +(23986, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.050951+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.066932+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(23987, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.067147+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.069568+00', 2, NULL), +(23988, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.327063+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.392704+00', 65, NULL), +(23989, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.327095+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.36641+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(23990, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.36649+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.372167+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(23991, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.372651+00', TIMESTAMP WITH TIME ZONE '2023-01-28 00:49:11.392458+00', 19, '{"total-tables":4,"tables-classified":0}'), +(23992, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 01:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:00:01.65+00', 1513, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(23993, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 01:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:00:02.112+00', 1979, NULL), +(23994, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:00.271954+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:04.953731+00', 4681, NULL), +(23995, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:00.275427+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:00.656751+00', 381, '{"timezone-id":"UTC"}'), +(23996, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:00.658613+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:01.054212+00', 395, '{"updated-tables":0,"total-tables":8}'), +(23997, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:01.054605+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:04.471602+00', 3416, '{"total-fields":71,"updated-fields":0}'), +(23998, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:04.471704+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:04.597681+00', 125, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(23999, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:04.597929+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:04.953672+00', 355, NULL), +(24000, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.048541+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.176832+00', 128, NULL), +(24001, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.048573+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.125782+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24002, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.125873+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.150697+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(24003, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.150899+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:19:05.17674+00', 25, '{"total-tables":8,"tables-classified":0}'), +(24004, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:00.420631+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:12.899766+00', 12479, NULL), +(24005, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:00.421701+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:00.453493+00', 31, '{"timezone-id":null}'), +(24006, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:00.455556+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:00.877346+00', 421, '{"updated-tables":0,"total-tables":4}'), +(24007, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:00.87903+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:12.888652+00', 12009, '{"total-fields":39,"updated-fields":0}'), +(24008, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:12.888758+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:12.897084+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24009, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:12.897165+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:12.899709+00', 2, NULL), +(24010, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.139088+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.273358+00', 134, NULL), +(24011, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.139124+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.201856+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24012, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.201954+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.230821+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(24013, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.230949+00', TIMESTAMP WITH TIME ZONE '2023-01-28 01:49:13.27323+00', 42, '{"total-tables":4,"tables-classified":0}'), +(24014, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:02.207+00', 2059, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24015, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:00.178+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:02.207+00', 2029, NULL), +(24016, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:03.142673+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:17.85931+00', 14716, NULL), +(24017, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:03.159914+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:05.305473+00', 2145, '{"deleted":0}'), +(24018, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:05.310009+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:00:17.859212+00', 12549, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(24019, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:00.170889+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.568914+00', 1398, NULL), +(24020, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:00.170946+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:00.4486+00', 277, '{"timezone-id":"UTC"}'), +(24021, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:00.448708+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:00.667122+00', 218, '{"updated-tables":0,"total-tables":8}'), +(24022, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:00.667211+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.165299+00', 498, '{"total-fields":71,"updated-fields":0}'), +(24023, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.165368+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.195909+00', 30, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24024, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.195974+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.568846+00', 372, NULL), +(24025, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.696612+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.969358+00', 272, NULL), +(24026, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.696647+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.900326+00', 203, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24027, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.900461+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.941072+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(24028, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.941175+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:19:01.969273+00', 28, '{"total-tables":8,"tables-classified":0}'), +(24029, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:00.992476+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.679934+00', 14687, NULL), +(24030, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:01.010038+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:01.039167+00', 29, '{"timezone-id":null}'), +(24031, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:01.041434+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:01.675711+00', 634, '{"updated-tables":0,"total-tables":4}'), +(24032, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:01.676171+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.667894+00', 13991, '{"total-fields":39,"updated-fields":0}'), +(24033, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.668076+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.677475+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24034, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.677643+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.679741+00', 2, NULL), +(24035, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.871969+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.975294+00', 103, NULL), +(24036, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.872019+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.937463+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24037, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.937586+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.947788+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(24038, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.947946+00', TIMESTAMP WITH TIME ZONE '2023-01-28 02:49:15.974861+00', 26, '{"total-tables":4,"tables-classified":0}'), +(24039, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 03:00:00.25+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:00:00.854+00', 604, NULL), +(24040, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 03:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:00:01.025+00', 878, NULL), +(24041, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:00.178657+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:05.788213+00', 5609, NULL), +(24042, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:00.180566+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:00.662576+00', 482, '{"timezone-id":"UTC"}'), +(24043, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:00.663223+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:01.057336+00', 394, '{"updated-tables":0,"total-tables":8}'), +(24044, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:01.058154+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:04.988096+00', 3929, '{"total-fields":71,"updated-fields":0}'), +(24045, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:04.988199+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:05.117978+00', 129, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24046, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:05.118449+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:05.788148+00', 669, NULL), +(24047, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.012101+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.101151+00', 89, NULL), +(24048, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.012482+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.061039+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24049, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.061135+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.084204+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(24050, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.084348+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:19:06.101091+00', 16, '{"total-tables":8,"tables-classified":0}'), +(24051, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:00.291558+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.166165+00', 8874, NULL), +(24052, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:00.297391+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:00.313528+00', 16, '{"timezone-id":null}'), +(24053, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:00.31786+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:00.633529+00', 315, '{"updated-tables":0,"total-tables":4}'), +(24054, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:00.633651+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.160288+00', 8526, '{"total-fields":39,"updated-fields":0}'), +(24055, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.160496+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.164307+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24056, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.164597+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.166118+00', 1, NULL), +(24057, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.232536+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.289439+00', 56, NULL), +(24058, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.23257+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.270757+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24059, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.270933+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.276667+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(24060, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.276801+00', TIMESTAMP WITH TIME ZONE '2023-01-28 03:49:09.289221+00', 12, '{"total-tables":4,"tables-classified":0}'), +(24061, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 04:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:00:01.033+00', 832, NULL), +(24062, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 04:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:00:01.035+00', 865, NULL), +(24063, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:00.409345+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.437266+00', 5027, NULL), +(24064, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:00.414785+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:00.831054+00', 416, '{"timezone-id":"UTC"}'), +(24065, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:00.836657+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:01.340361+00', 503, '{"updated-tables":0,"total-tables":8}'), +(24066, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:01.341011+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:04.618516+00', 3277, '{"total-fields":71,"updated-fields":0}'), +(24067, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:04.618927+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:04.781545+00', 162, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24068, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:04.781838+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.437165+00', 655, NULL), +(24069, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.631824+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.781578+00', 149, NULL), +(24070, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.632115+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.739235+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24071, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.7394+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.755215+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(24072, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.755308+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:19:05.781508+00', 26, '{"total-tables":8,"tables-classified":0}'), +(24073, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:00.169199+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.714755+00', 9545, NULL), +(24074, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:00.169241+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:00.171641+00', 2, '{"timezone-id":null}'), +(24075, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:00.171732+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:00.444865+00', 273, '{"updated-tables":0,"total-tables":4}'), +(24076, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:00.444955+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.701139+00', 9256, '{"total-fields":39,"updated-fields":0}'), +(24077, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.701291+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.707629+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24078, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.707725+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.714651+00', 6, NULL), +(24079, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.840918+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.886571+00', 45, NULL), +(24080, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.840947+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.865998+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24081, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.866125+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.875484+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(24082, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.87559+00', TIMESTAMP WITH TIME ZONE '2023-01-28 04:49:09.886504+00', 10, '{"total-tables":4,"tables-classified":0}'), +(24083, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 05:00:00.296+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:00:01.794+00', 1498, NULL), +(24084, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 05:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:00:02.328+00', 2149, NULL), +(24085, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:00.288986+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.289106+00', 5000, NULL), +(24086, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:00.29254+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:00.675904+00', 383, '{"timezone-id":"UTC"}'), +(24087, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:00.678486+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:01.109433+00', 430, '{"updated-tables":0,"total-tables":8}'), +(24088, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:01.111243+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:04.419781+00', 3308, '{"total-fields":71,"updated-fields":0}'), +(24089, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:04.420176+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:04.61584+00', 195, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24090, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:04.616241+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.288733+00', 672, NULL), +(24091, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.625928+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.7077+00', 81, NULL), +(24092, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.626005+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.680136+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24093, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.680217+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.689932+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(24094, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.690134+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:19:05.707636+00', 17, '{"total-tables":8,"tables-classified":0}'), +(24095, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:00.162664+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.453378+00', 13290, NULL), +(24096, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:00.16277+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:00.166621+00', 3, '{"timezone-id":null}'), +(24097, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:00.166791+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:00.471804+00', 305, '{"updated-tables":0,"total-tables":4}'), +(24098, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:00.471924+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.442186+00', 12970, '{"total-fields":39,"updated-fields":0}'), +(24099, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.442557+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.449842+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24100, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.449942+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.453291+00', 3, NULL), +(24101, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.559445+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.633112+00', 73, NULL), +(24102, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.559478+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.603283+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24103, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.603376+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.616026+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(24104, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.616115+00', TIMESTAMP WITH TIME ZONE '2023-01-28 05:49:13.633019+00', 16, '{"total-tables":4,"tables-classified":0}'), +(24105, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 06:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:00:03.438+00', 3296, NULL), +(24106, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 06:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:00:03.688+00', 3559, NULL), +(24107, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:00.189523+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.819938+00', 3630, NULL), +(24108, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:00.193212+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:00.455902+00', 262, '{"timezone-id":"UTC"}'), +(24109, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:00.457466+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:00.702217+00', 244, '{"updated-tables":0,"total-tables":8}'), +(24110, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:00.702501+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.446126+00', 2743, '{"total-fields":71,"updated-fields":0}'), +(24111, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.446256+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.492956+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24112, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.493038+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.819886+00', 326, NULL), +(24113, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.897782+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:04.017764+00', 119, NULL), +(24114, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.897814+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.962606+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24115, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.962718+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.978591+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(24116, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:03.978724+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:19:04.017701+00', 38, '{"total-tables":8,"tables-classified":0}'), +(24117, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:00.396492+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.550085+00', 11153, NULL), +(24118, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:00.398083+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:00.401486+00', 3, '{"timezone-id":null}'), +(24119, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:00.402463+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:00.667623+00', 265, '{"updated-tables":0,"total-tables":4}'), +(24120, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:00.667779+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.53835+00', 10870, '{"total-fields":39,"updated-fields":0}'), +(24121, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.538441+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.547981+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24122, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.54807+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.550003+00', 1, NULL), +(24123, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.667154+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.729959+00', 62, NULL), +(24124, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.667191+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.706954+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24125, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.707044+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.717471+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(24126, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.717569+00', TIMESTAMP WITH TIME ZONE '2023-01-28 06:49:11.729884+00', 12, '{"total-tables":4,"tables-classified":0}'), +(24127, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 07:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:00:02.12+00', 1998, NULL), +(24128, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 07:00:00.098+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:00:02.506+00', 2408, NULL), +(24129, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:00.381574+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.001614+00', 4620, NULL), +(24130, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:00.386078+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:00.763812+00', 377, '{"timezone-id":"UTC"}'), +(24131, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:00.765763+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:01.229368+00', 463, '{"updated-tables":0,"total-tables":8}'), +(24132, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:01.229704+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:04.642953+00', 3413, '{"total-fields":71,"updated-fields":0}'), +(24133, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:04.643316+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:04.794171+00', 150, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24134, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:04.794275+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.001553+00', 207, NULL), +(24135, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.08775+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.18903+00', 101, NULL), +(24136, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.087784+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.147563+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24137, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.147651+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.159795+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(24138, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.159887+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:19:05.188968+00', 29, '{"total-tables":8,"tables-classified":0}'), +(24139, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:00.797239+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.63595+00', 13838, NULL), +(24140, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:00.797838+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:00.808751+00', 10, '{"timezone-id":null}'), +(24141, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:00.809575+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:01.434054+00', 624, '{"updated-tables":0,"total-tables":4}'), +(24142, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:01.43421+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.602931+00', 13168, '{"total-fields":39,"updated-fields":0}'), +(24143, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.603096+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.631188+00', 28, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24144, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.631294+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.635872+00', 4, NULL), +(24145, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.895214+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:15.01348+00', 118, NULL), +(24146, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.895258+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.969344+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24147, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.969802+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.981588+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(24148, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:14.981815+00', TIMESTAMP WITH TIME ZONE '2023-01-28 07:49:15.01267+00', 30, '{"total-tables":4,"tables-classified":0}'), +(24149, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 08:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:00:00.873+00', 721, NULL), +(24150, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 08:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:00:01.026+00', 888, NULL), +(24151, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:00.443992+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:05.936467+00', 5492, NULL), +(24152, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:00.449385+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:00.939262+00', 489, '{"timezone-id":"UTC"}'), +(24153, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:00.941422+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:01.337186+00', 395, '{"updated-tables":0,"total-tables":8}'), +(24154, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:01.337577+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:05.271817+00', 3934, '{"total-fields":71,"updated-fields":0}'), +(24155, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:05.271943+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:05.478987+00', 207, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24156, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:05.479431+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:05.936377+00', 456, NULL), +(24157, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.331825+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.503941+00', 172, NULL), +(24158, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.33186+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.422+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24159, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.42213+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.440407+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(24160, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.440525+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:19:06.503847+00', 63, '{"total-tables":8,"tables-classified":0}'), +(24161, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:00.788749+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.576364+00', 11787, NULL), +(24162, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:00.789259+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:00.793928+00', 4, '{"timezone-id":null}'), +(24163, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:00.794936+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:01.229686+00', 434, '{"updated-tables":0,"total-tables":4}'), +(24164, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:01.229774+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.563524+00', 11333, '{"total-fields":39,"updated-fields":0}'), +(24165, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.563692+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.571959+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24166, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.57206+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.576243+00', 4, NULL), +(24167, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.725115+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.848628+00', 123, NULL), +(24168, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.725148+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.803213+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24169, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.803366+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.821761+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(24170, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.822008+00', TIMESTAMP WITH TIME ZONE '2023-01-28 08:49:12.848553+00', 26, '{"total-tables":4,"tables-classified":0}'), +(24171, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 09:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:00:01.559+00', 1440, NULL), +(24172, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 09:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:00:02.092+00', 1991, NULL), +(24173, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:00.192306+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.384235+00', 4191, NULL), +(24174, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:00.196745+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:00.566466+00', 369, '{"timezone-id":"UTC"}'), +(24175, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:00.568756+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:00.943528+00', 374, '{"updated-tables":0,"total-tables":8}'), +(24176, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:00.943855+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:03.917706+00', 2973, '{"total-fields":71,"updated-fields":0}'), +(24177, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:03.918106+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.056583+00', 138, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24178, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.057017+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.383364+00', 326, NULL), +(24179, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.633955+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.808093+00', 174, NULL), +(24180, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.633991+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.743073+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24181, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.743222+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.764789+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(24182, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.765009+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:19:04.805973+00', 40, '{"total-tables":8,"tables-classified":0}'), +(24183, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:00.197194+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.462528+00', 12265, NULL), +(24184, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:00.197295+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:00.200154+00', 2, '{"timezone-id":null}'), +(24185, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:00.200561+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:00.513417+00', 312, '{"updated-tables":0,"total-tables":4}'), +(24186, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:00.513515+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.456925+00', 11943, '{"total-fields":39,"updated-fields":0}'), +(24187, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.457049+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.461342+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24188, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.46143+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.462481+00', 1, NULL), +(24189, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.569549+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.654831+00', 85, NULL), +(24190, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.569585+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.614219+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24191, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.614307+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.622364+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(24192, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.622503+00', TIMESTAMP WITH TIME ZONE '2023-01-28 09:49:12.654431+00', 31, '{"total-tables":4,"tables-classified":0}'), +(24193, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 10:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:00:01.822+00', 1687, NULL), +(24194, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 10:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:00:02.247+00', 2124, NULL), +(24195, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:00.387682+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.390452+00', 6002, NULL), +(24196, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:00.39381+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:00.967044+00', 573, '{"timezone-id":"UTC"}'), +(24197, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:00.970838+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:01.460675+00', 489, '{"updated-tables":0,"total-tables":8}'), +(24198, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:01.461097+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:05.209191+00', 3748, '{"total-fields":71,"updated-fields":0}'), +(24199, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:05.209316+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.05276+00', 843, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24200, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.052858+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.39038+00', 337, NULL), +(24201, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.514822+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.678413+00', 163, NULL), +(24202, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.514857+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.635458+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24203, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.635561+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.650691+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(24204, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.650808+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:19:06.678343+00', 27, '{"total-tables":8,"tables-classified":0}'), +(24205, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:00.27686+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.167975+00', 13891, NULL), +(24206, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:00.276902+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:00.279106+00', 2, '{"timezone-id":null}'), +(24207, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:00.279212+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:00.662087+00', 382, '{"updated-tables":0,"total-tables":4}'), +(24208, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:00.66217+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.158552+00', 13496, '{"total-fields":39,"updated-fields":0}'), +(24209, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.158687+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.165911+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24210, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.165985+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.167925+00', 1, NULL), +(24211, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.27981+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.358675+00', 78, NULL), +(24212, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.279845+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.326801+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24213, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.326938+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.342961+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(24214, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.343056+00', TIMESTAMP WITH TIME ZONE '2023-01-28 10:49:14.358598+00', 15, '{"total-tables":4,"tables-classified":0}'), +(24215, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 11:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:00:01.214+00', 1008, NULL), +(24216, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 11:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:00:01.576+00', 1370, NULL), +(24217, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:00.289918+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.257413+00', 7967, NULL), +(24218, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:00.292223+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:00.88589+00', 593, '{"timezone-id":"UTC"}'), +(24219, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:00.887549+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:04.532641+00', 3645, '{"updated-tables":0,"total-tables":8}'), +(24220, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:04.532997+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:07.718776+00', 3185, '{"total-fields":71,"updated-fields":0}'), +(24221, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:07.719413+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:07.830529+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24222, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:07.83065+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.257352+00', 426, NULL), +(24223, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.320562+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.417101+00', 96, NULL), +(24224, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.320599+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.387503+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24225, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.387608+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.401445+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(24226, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.40154+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:19:08.416999+00', 15, '{"total-tables":8,"tables-classified":0}'), +(24227, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:01.017126+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.508445+00', 15491, NULL), +(24228, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:01.022646+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:01.051601+00', 28, '{"timezone-id":null}'), +(24229, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:01.056088+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:01.941426+00', 885, '{"updated-tables":0,"total-tables":4}'), +(24230, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:01.941566+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.489887+00', 14548, '{"total-fields":39,"updated-fields":0}'), +(24231, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.490038+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.499895+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24232, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.500174+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.50833+00', 8, NULL), +(24233, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.69142+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.785472+00', 94, NULL), +(24234, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.691502+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.748937+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24235, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.749283+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.7597+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(24236, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.759794+00', TIMESTAMP WITH TIME ZONE '2023-01-28 11:49:16.785355+00', 25, '{"total-tables":4,"tables-classified":0}'), +(24237, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 12:00:00.226+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:00:01.142+00', 916, NULL), +(24238, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 12:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:00:01.392+00', 1177, NULL), +(24239, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:00.222825+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:05.916286+00', 5693, NULL), +(24240, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:00.22769+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:00.722132+00', 494, '{"timezone-id":"UTC"}'), +(24241, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:00.72651+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:01.416998+00', 690, '{"updated-tables":0,"total-tables":8}'), +(24242, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:01.417418+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:05.435418+00', 4018, '{"total-fields":71,"updated-fields":0}'), +(24243, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:05.435825+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:05.533859+00', 98, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24244, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:05.534165+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:05.916213+00', 382, NULL), +(24245, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.046357+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.176669+00', 130, NULL), +(24246, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.046393+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.129812+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24247, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.129916+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.144663+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(24248, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.144891+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:19:06.176603+00', 31, '{"total-tables":8,"tables-classified":0}'), +(24249, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:00.234698+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.771705+00', 9537, NULL), +(24250, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:00.234785+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:00.240574+00', 5, '{"timezone-id":null}'), +(24251, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:00.240749+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:00.625086+00', 384, '{"updated-tables":0,"total-tables":4}'), +(24252, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:00.625228+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.765742+00', 9140, '{"total-fields":39,"updated-fields":0}'), +(24253, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.765866+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.770152+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24254, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.770231+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.771663+00', 1, NULL), +(24255, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.934568+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:10.051901+00', 117, NULL), +(24256, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:09.934611+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:10.011965+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24257, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:10.012092+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:10.029947+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(24258, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:10.030195+00', TIMESTAMP WITH TIME ZONE '2023-01-28 12:49:10.051807+00', 21, '{"total-tables":4,"tables-classified":0}'), +(24259, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 13:00:00.225+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:00:01.405+00', 1180, NULL), +(24260, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 13:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:00:01.406+00', 1198, NULL), +(24261, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:00.395322+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:04.975812+00', 4580, NULL), +(24262, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:00.399692+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:01.069052+00', 669, '{"timezone-id":"UTC"}'), +(24263, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:01.071967+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:01.655862+00', 583, '{"updated-tables":0,"total-tables":8}'), +(24264, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:01.656464+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:04.623386+00', 2966, '{"total-fields":71,"updated-fields":0}'), +(24265, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:04.623527+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:04.763961+00', 140, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24266, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:04.764523+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:04.975763+00', 211, NULL), +(24267, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.074769+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.200076+00', 125, NULL), +(24268, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.074801+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.157781+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24269, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.158053+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.174011+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(24270, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.174117+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:19:05.199876+00', 25, '{"total-tables":8,"tables-classified":0}'), +(24271, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:00.251183+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.831367+00', 12580, NULL), +(24272, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:00.251241+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:00.253995+00', 2, '{"timezone-id":null}'), +(24273, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:00.254094+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:00.606222+00', 352, '{"updated-tables":0,"total-tables":4}'), +(24274, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:00.606304+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.82203+00', 12215, '{"total-fields":39,"updated-fields":0}'), +(24275, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.822188+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.829064+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24276, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.829152+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.831313+00', 2, NULL), +(24277, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.976812+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:13.061578+00', 84, NULL), +(24278, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:12.976845+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:13.043411+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24279, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:13.043648+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:13.050453+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(24280, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:13.050622+00', TIMESTAMP WITH TIME ZONE '2023-01-28 13:49:13.061343+00', 10, '{"total-tables":4,"tables-classified":0}'), +(24281, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 14:00:00.246+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:00:03.283+00', 3037, NULL), +(24282, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 14:00:00.238+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:00:03.558+00', 3320, NULL), +(24283, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:00.396069+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.542315+00', 5146, NULL), +(24284, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:00.404243+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:00.785518+00', 381, '{"timezone-id":"UTC"}'), +(24285, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:00.78776+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:01.155699+00', 367, '{"updated-tables":0,"total-tables":8}'), +(24286, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:01.155835+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:04.942923+00', 3787, '{"total-fields":71,"updated-fields":0}'), +(24287, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:04.943333+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.0768+00', 133, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24288, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.076918+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.542218+00', 465, NULL), +(24289, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.637026+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.816842+00', 179, NULL), +(24290, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.637065+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.740519+00', 103, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24291, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.740805+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.759771+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(24292, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.759863+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:19:05.816767+00', 56, '{"total-tables":8,"tables-classified":0}'), +(24293, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:00.557505+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.426499+00', 14868, NULL), +(24294, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:00.558285+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:00.564077+00', 5, '{"timezone-id":null}'), +(24295, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:00.564778+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:01.019392+00', 454, '{"updated-tables":0,"total-tables":4}'), +(24296, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:01.01953+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.416139+00', 14396, '{"total-fields":39,"updated-fields":0}'), +(24297, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.416282+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.423314+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24298, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.42346+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.426439+00', 2, NULL), +(24299, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.650094+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.73226+00', 82, NULL), +(24300, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.650133+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.702641+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24301, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.702754+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.71335+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(24302, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.713449+00', TIMESTAMP WITH TIME ZONE '2023-01-28 14:49:15.732184+00', 18, '{"total-tables":4,"tables-classified":0}'), +(24303, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 15:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:00:02.652+00', 2484, NULL), +(24304, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 15:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:00:02.648+00', 2469, NULL), +(24305, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:00.354376+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.499432+00', 5145, NULL), +(24306, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:00.358535+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:00.810778+00', 452, '{"timezone-id":"UTC"}'), +(24307, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:00.812256+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:01.25029+00', 438, '{"updated-tables":0,"total-tables":8}'), +(24308, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:01.250399+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:04.614594+00', 3364, '{"total-fields":71,"updated-fields":0}'), +(24309, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:04.615006+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:04.766333+00', 151, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24310, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:04.766682+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.499372+00', 732, NULL), +(24311, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.682291+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:06.04821+00', 365, NULL), +(24312, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.682556+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.936324+00', 253, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24313, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.936622+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.990711+00', 54, '{"fields-classified":0,"fields-failed":0}'), +(24314, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:05.990826+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:19:06.048129+00', 57, '{"total-tables":8,"tables-classified":0}'), +(24315, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:00.97138+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.011324+00', 14039, NULL), +(24316, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:00.975381+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:01.013509+00', 38, '{"timezone-id":null}'), +(24317, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:01.016735+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:01.574451+00', 557, '{"updated-tables":0,"total-tables":4}'), +(24318, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:01.574924+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.001243+00', 13426, '{"total-fields":39,"updated-fields":0}'), +(24319, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.001364+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.007145+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24320, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.007223+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.011239+00', 4, NULL), +(24321, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.148433+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.260162+00', 111, NULL), +(24322, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.148479+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.220887+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24323, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.220987+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.242312+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(24324, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.242452+00', TIMESTAMP WITH TIME ZONE '2023-01-28 15:49:15.260094+00', 17, '{"total-tables":4,"tables-classified":0}'), +(24325, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 16:00:00.113+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:00:02.942+00', 2829, NULL), +(24326, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 16:00:00.08+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:00:02.945+00', 2865, NULL), +(24327, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:00.234556+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:03.69529+00', 3460, NULL), +(24328, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:00.238737+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:00.573452+00', 334, '{"timezone-id":"UTC"}'), +(24329, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:00.574877+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:00.934489+00', 359, '{"updated-tables":0,"total-tables":8}'), +(24330, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:00.934845+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:03.485211+00', 2550, '{"total-fields":71,"updated-fields":0}'), +(24331, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:03.485396+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:03.531878+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24332, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:03.532081+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:03.695241+00', 163, NULL), +(24333, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.017357+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.148812+00', 131, NULL), +(24334, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.017397+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.084989+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24335, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.085105+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.108249+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(24336, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.108488+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:19:04.148644+00', 40, '{"total-tables":8,"tables-classified":0}'), +(24337, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:01.920554+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.516564+00', 10596, NULL), +(24338, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:01.922579+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:01.929766+00', 7, '{"timezone-id":null}'), +(24339, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:01.931442+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:02.468246+00', 536, '{"updated-tables":0,"total-tables":4}'), +(24340, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:02.468363+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.501633+00', 10033, '{"total-fields":39,"updated-fields":0}'), +(24341, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.501801+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.51343+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24342, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.51354+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.516502+00', 2, NULL), +(24343, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.726726+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.817448+00', 90, NULL), +(24344, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.726767+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.788506+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24345, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.788605+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.794937+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(24346, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.795019+00', TIMESTAMP WITH TIME ZONE '2023-01-28 16:49:12.817367+00', 22, '{"total-tables":4,"tables-classified":0}'), +(24347, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 17:00:00.719+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:00:02.225+00', 1506, NULL), +(24348, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 17:00:00.717+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:00:02.404+00', 1687, NULL), +(24349, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:00.232918+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:04.983733+00', 4750, NULL), +(24350, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:00.237216+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:00.685473+00', 448, '{"timezone-id":"UTC"}'), +(24351, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:00.697047+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:01.183427+00', 486, '{"updated-tables":0,"total-tables":8}'), +(24352, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:01.183921+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:04.559183+00', 3375, '{"total-fields":71,"updated-fields":0}'), +(24353, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:04.559779+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:04.714499+00', 154, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24354, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:04.714604+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:04.983676+00', 269, NULL), +(24355, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.06999+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.419073+00', 349, NULL), +(24356, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.070024+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.162012+00', 91, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24357, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.162129+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.379554+00', 217, '{"fields-classified":0,"fields-failed":0}'), +(24358, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.379641+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:19:05.418977+00', 39, '{"total-tables":8,"tables-classified":0}'), +(24359, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:00.319939+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.537628+00', 12217, NULL), +(24360, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:00.319992+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:00.325809+00', 5, '{"timezone-id":null}'), +(24361, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:00.326662+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:00.705551+00', 378, '{"updated-tables":0,"total-tables":4}'), +(24362, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:00.705662+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.529142+00', 11823, '{"total-fields":39,"updated-fields":0}'), +(24363, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.529286+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.53498+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24364, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.53506+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.537569+00', 2, NULL), +(24365, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.727752+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.813468+00', 85, NULL), +(24366, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.727789+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.782708+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24367, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.782796+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.794814+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(24368, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.794896+00', TIMESTAMP WITH TIME ZONE '2023-01-28 17:49:12.813345+00', 18, '{"total-tables":4,"tables-classified":0}'), +(24369, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 18:00:00.544+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:00:04.942+00', 4398, NULL), +(24370, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 18:00:00.544+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:00:05.26+00', 4716, NULL), +(24371, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:00.194433+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.662045+00', 3467, NULL), +(24372, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:00.19867+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:00.478448+00', 279, '{"timezone-id":"UTC"}'), +(24373, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:00.480167+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:00.738534+00', 258, '{"updated-tables":0,"total-tables":8}'), +(24374, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:00.738841+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.275859+00', 2537, '{"total-fields":71,"updated-fields":0}'), +(24375, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.276034+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.326357+00', 50, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24376, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.326456+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.662004+00', 335, NULL), +(24377, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.767084+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.895934+00', 128, NULL), +(24378, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.767115+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.848335+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24379, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.848639+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.866658+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(24380, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.866735+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:19:03.895868+00', 29, '{"total-tables":8,"tables-classified":0}'), +(24381, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:00.218148+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.110403+00', 13892, NULL), +(24382, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:00.218188+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:00.221653+00', 3, '{"timezone-id":null}'), +(24383, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:00.221757+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:00.459648+00', 237, '{"updated-tables":0,"total-tables":4}'), +(24384, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:00.459816+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.100599+00', 13640, '{"total-fields":39,"updated-fields":0}'), +(24385, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.100914+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.108503+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24386, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.108594+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.110339+00', 1, NULL), +(24387, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.162415+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.220169+00', 57, NULL), +(24388, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.162551+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.193143+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24389, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.193245+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.197569+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(24390, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.197954+00', TIMESTAMP WITH TIME ZONE '2023-01-28 18:49:14.220095+00', 22, '{"total-tables":4,"tables-classified":0}'), +(24391, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 19:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:00:02.367+00', 2209, NULL), +(24392, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 19:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:00:02.803+00', 2645, NULL), +(24393, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:00.261271+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.486507+00', 6225, NULL), +(24394, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:00.264128+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:00.704628+00', 440, '{"timezone-id":"UTC"}'), +(24395, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:00.707179+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:01.286597+00', 579, '{"updated-tables":0,"total-tables":8}'), +(24396, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:01.287073+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.22082+00', 4933, '{"total-fields":71,"updated-fields":0}'), +(24397, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.221273+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.321554+00', 100, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24398, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.32208+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.486455+00', 164, NULL), +(24399, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.576248+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.68533+00', 109, NULL), +(24400, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.576288+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.645759+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24401, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.646132+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.66125+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(24402, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.661335+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:19:06.685236+00', 23, '{"total-tables":8,"tables-classified":0}'), +(24403, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:00.195316+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.168123+00', 9972, NULL), +(24404, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:00.195757+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:00.199917+00', 4, '{"timezone-id":null}'), +(24405, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:00.200036+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:00.461121+00', 261, '{"updated-tables":0,"total-tables":4}'), +(24406, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:00.461207+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.160028+00', 9698, '{"total-fields":39,"updated-fields":0}'), +(24407, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.160192+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.16657+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24408, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.166775+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.167983+00', 1, NULL), +(24409, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.251174+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.330681+00', 79, NULL), +(24410, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.251211+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.311924+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24411, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.312029+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.321861+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(24412, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.321981+00', TIMESTAMP WITH TIME ZONE '2023-01-28 19:49:10.330597+00', 8, '{"total-tables":4,"tables-classified":0}'), +(24413, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 20:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:00:00.949+00', 829, NULL), +(24414, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 20:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:00:01.083+00', 966, NULL), +(24415, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:00.227102+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:04.625693+00', 4398, NULL), +(24416, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:00.23788+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:00.762295+00', 524, '{"timezone-id":"UTC"}'), +(24417, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:00.76416+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:01.168033+00', 403, '{"updated-tables":0,"total-tables":8}'), +(24418, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:01.168389+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:03.83926+00', 2670, '{"total-fields":71,"updated-fields":0}'), +(24419, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:03.839389+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:04.001778+00', 162, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24420, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:04.002125+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:04.625651+00', 623, NULL), +(24421, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.011679+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.131399+00', 119, NULL), +(24422, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.011714+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.084752+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24423, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.084878+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.104119+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(24424, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.104203+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:19:05.131324+00', 27, '{"total-tables":8,"tables-classified":0}'), +(24425, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:00.206063+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.676171+00', 12470, NULL), +(24426, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:00.206111+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:00.210654+00', 4, '{"timezone-id":null}'), +(24427, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:00.21076+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:00.503936+00', 293, '{"updated-tables":0,"total-tables":4}'), +(24428, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:00.504045+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.650426+00', 12146, '{"total-fields":39,"updated-fields":0}'), +(24429, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.650875+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.668822+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24430, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.668988+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.676099+00', 7, NULL), +(24431, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.78319+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.931917+00', 148, NULL), +(24432, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.783267+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.90278+00', 119, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24433, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.902952+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.913776+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(24434, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.913873+00', TIMESTAMP WITH TIME ZONE '2023-01-28 20:49:12.931837+00', 17, '{"total-tables":4,"tables-classified":0}'), +(24435, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:00.893+00', 778, NULL), +(24436, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:00.893+00', 752, NULL), +(24437, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:01.118376+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:11.149319+00', 10030, NULL), +(24438, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:01.120151+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:03.266199+00', 2146, '{"deleted":0}'), +(24439, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:03.267804+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:00:11.149216+00', 7881, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(24440, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:00.056769+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.590974+00', 1534, NULL), +(24441, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:00.057082+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:00.158738+00', 101, '{"timezone-id":"UTC"}'), +(24442, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:00.158958+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:00.364819+00', 205, '{"updated-tables":0,"total-tables":8}'), +(24443, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:00.364938+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.143059+00', 778, '{"total-fields":71,"updated-fields":0}'), +(24444, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.143437+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.208529+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24445, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.208676+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.590688+00', 382, NULL), +(24446, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.69653+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.884748+00', 188, NULL), +(24447, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.696571+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.799145+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24448, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.799274+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.823455+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(24449, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.823546+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:19:01.884673+00', 61, '{"total-tables":8,"tables-classified":0}'), +(24450, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:00.971233+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.442775+00', 16471, NULL), +(24451, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:00.979896+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:01.037114+00', 57, '{"timezone-id":null}'), +(24452, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:01.0448+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:01.620069+00', 575, '{"updated-tables":0,"total-tables":4}'), +(24453, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:01.6202+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.421384+00', 15801, '{"total-fields":39,"updated-fields":0}'), +(24454, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.421525+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.439281+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24455, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.439391+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.442704+00', 3, NULL), +(24456, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.667051+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.777338+00', 110, NULL), +(24457, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.667104+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.73838+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24458, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.738485+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.752156+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(24459, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.752259+00', TIMESTAMP WITH TIME ZONE '2023-01-28 21:49:17.777249+00', 24, '{"total-tables":4,"tables-classified":0}'), +(24460, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 22:00:00.06+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:00:00.993+00', 933, NULL), +(24461, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 22:00:00.075+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:00:00.992+00', 917, NULL), +(24462, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:00.286431+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:04.944914+00', 4658, NULL), +(24463, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:00.290273+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:00.861967+00', 571, '{"timezone-id":"UTC"}'), +(24464, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:00.863484+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:01.268678+00', 405, '{"updated-tables":0,"total-tables":8}'), +(24465, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:01.269519+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:04.394358+00', 3124, '{"total-fields":71,"updated-fields":0}'), +(24466, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:04.394465+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:04.511837+00', 117, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24467, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:04.512234+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:04.944862+00', 432, NULL), +(24468, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.024874+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.161962+00', 137, NULL), +(24469, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.024911+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.103182+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24470, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.103285+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.119096+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(24471, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.119179+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:19:05.161901+00', 42, '{"total-tables":8,"tables-classified":0}'), +(24472, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:00.189024+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.757225+00', 9568, NULL), +(24473, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:00.189074+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:00.191396+00', 2, '{"timezone-id":null}'), +(24474, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:00.191497+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:00.502827+00', 311, '{"updated-tables":0,"total-tables":4}'), +(24475, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:00.502934+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.752686+00', 9249, '{"total-fields":39,"updated-fields":0}'), +(24476, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.752784+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.755664+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24477, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.755744+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.757177+00', 1, NULL), +(24478, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.820326+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.853614+00', 33, NULL), +(24479, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.820374+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.840951+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24480, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.841068+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.845718+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(24481, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.84581+00', TIMESTAMP WITH TIME ZONE '2023-01-28 22:49:09.85354+00', 7, '{"total-tables":4,"tables-classified":0}'), +(24482, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 23:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:00:01.132+00', 995, NULL), +(24483, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-28 23:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:00:01.263+00', 1126, NULL), +(24484, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:00.144448+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.309896+00', 3165, NULL), +(24485, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:00.146713+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:00.316715+00', 170, '{"timezone-id":"UTC"}'), +(24486, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:00.31756+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:00.473039+00', 155, '{"updated-tables":0,"total-tables":8}'), +(24487, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:00.473295+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:02.972689+00', 2499, '{"total-fields":71,"updated-fields":0}'), +(24488, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:02.973115+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.137768+00', 164, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24489, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.138025+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.309845+00', 171, NULL), +(24490, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.366504+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.447838+00', 81, NULL), +(24491, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.366538+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.423382+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24492, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.423471+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.433037+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(24493, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.433113+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:19:03.447515+00', 14, '{"total-tables":8,"tables-classified":0}'), +(24494, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:00.250368+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.722143+00', 10471, NULL), +(24495, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:00.25042+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:00.253482+00', 3, '{"timezone-id":null}'), +(24496, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:00.254205+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:00.542144+00', 287, '{"updated-tables":0,"total-tables":4}'), +(24497, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:00.542249+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.71709+00', 10174, '{"total-fields":39,"updated-fields":0}'), +(24498, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.717185+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.720842+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24499, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.720906+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.722107+00', 1, NULL), +(24500, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.804013+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.853404+00', 49, NULL), +(24501, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.804041+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.830304+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24502, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.830385+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.836323+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(24503, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.836469+00', TIMESTAMP WITH TIME ZONE '2023-01-28 23:49:10.853238+00', 16, '{"total-tables":4,"tables-classified":0}'), +(24504, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 00:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:00:09.116+00', 8939, NULL), +(24505, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 00:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:00:09.639+00', 9482, NULL), +(24506, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:00.335665+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.002293+00', 4666, NULL), +(24507, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:00.339771+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:00.797517+00', 457, '{"timezone-id":"UTC"}'), +(24508, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:00.800284+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:01.127572+00', 327, '{"updated-tables":0,"total-tables":8}'), +(24509, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:01.127914+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:04.486889+00', 3358, '{"total-fields":71,"updated-fields":0}'), +(24510, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:04.487087+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:04.637636+00', 150, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24511, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:04.6379+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.002221+00', 364, NULL), +(24512, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.113792+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.203718+00', 89, NULL), +(24513, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.113823+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.170243+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24514, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.170335+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.182717+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(24515, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.182804+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:19:05.203656+00', 20, '{"total-tables":8,"tables-classified":0}'), +(24516, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:00.171499+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.767328+00', 9595, NULL), +(24517, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:00.171546+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:00.174099+00', 2, '{"timezone-id":null}'), +(24518, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:00.174205+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:00.491917+00', 317, '{"updated-tables":0,"total-tables":4}'), +(24519, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:00.491985+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.761316+00', 9269, '{"total-fields":39,"updated-fields":0}'), +(24520, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.761415+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.765364+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24521, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.765441+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.767277+00', 1, NULL), +(24522, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.818651+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.854526+00', 35, NULL), +(24523, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.818683+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.841354+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24524, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.841456+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.844944+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(24525, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.845023+00', TIMESTAMP WITH TIME ZONE '2023-01-29 00:49:09.854466+00', 9, '{"total-tables":4,"tables-classified":0}'), +(24526, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 01:00:00.292+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:00:03.231+00', 2939, NULL), +(24527, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 01:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:00:03.552+00', 3399, NULL), +(24528, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:00.36242+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.733377+00', 4370, NULL), +(24529, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:00.367627+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:00.857053+00', 489, '{"timezone-id":"UTC"}'), +(24530, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:00.858783+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:01.241946+00', 383, '{"updated-tables":0,"total-tables":8}'), +(24531, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:01.242696+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.024461+00', 2781, '{"total-fields":71,"updated-fields":0}'), +(24532, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.025043+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.159769+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24533, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.16031+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.733316+00', 573, NULL), +(24534, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.811699+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.919313+00', 107, NULL), +(24535, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.811734+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.88274+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24536, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.882823+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.894485+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(24537, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.894568+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:19:04.919194+00', 24, '{"total-tables":8,"tables-classified":0}'), +(24538, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:00.207964+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.732181+00', 10524, NULL), +(24539, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:00.208016+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:00.21838+00', 10, '{"timezone-id":null}'), +(24540, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:00.218503+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:00.560749+00', 342, '{"updated-tables":0,"total-tables":4}'), +(24541, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:00.560829+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.727643+00', 10166, '{"total-fields":39,"updated-fields":0}'), +(24542, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.72774+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.730667+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24543, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.730788+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.732135+00', 1, NULL), +(24544, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.852953+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.902788+00', 49, NULL), +(24545, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.852988+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.889325+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24546, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.889411+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.89461+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(24547, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.894692+00', TIMESTAMP WITH TIME ZONE '2023-01-29 01:49:10.902626+00', 7, '{"total-tables":4,"tables-classified":0}'), +(24548, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:01.03+00', 863, NULL), +(24549, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:00.187+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:01.029+00', 842, NULL), +(24550, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:01.597854+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:14.933268+00', 13335, NULL), +(24551, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:01.600055+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:03.260115+00', 1660, '{"deleted":0}'), +(24552, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:03.262528+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:00:14.933119+00', 11670, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(24553, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:00.146322+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:01.946699+00', 1800, NULL), +(24554, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:00.147739+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:00.42971+00', 281, '{"timezone-id":"UTC"}'), +(24555, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:00.429834+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:00.641522+00', 211, '{"updated-tables":0,"total-tables":8}'), +(24556, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:00.641621+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:01.131689+00', 490, '{"total-fields":71,"updated-fields":0}'), +(24557, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:01.1318+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:01.1707+00', 38, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24558, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:01.170763+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:01.946637+00', 775, NULL), +(24559, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.039604+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.207204+00', 167, NULL), +(24560, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.039639+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.139361+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24561, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.139511+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.163217+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(24562, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.164311+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:19:02.207126+00', 42, '{"total-tables":8,"tables-classified":0}'), +(24563, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:01.097726+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.249265+00', 18151, NULL), +(24564, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:01.10557+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:01.153675+00', 48, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24565, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:01.163534+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:02.043635+00', 880, '{"updated-tables":0,"total-tables":4}'), +(24566, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:02.044212+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.222071+00', 17177, '{"total-fields":39,"updated-fields":0}'), +(24567, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.222211+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.23933+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24568, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.239568+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.249169+00', 9, NULL), +(24569, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.436798+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.567211+00', 130, NULL), +(24570, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.436831+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.501664+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24571, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.501882+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.526122+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(24572, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.52696+00', TIMESTAMP WITH TIME ZONE '2023-01-29 02:49:19.567134+00', 40, '{"total-tables":4,"tables-classified":0}'), +(24573, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 03:00:00.061+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:00:01.524+00', 1463, NULL), +(24574, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 03:00:00.082+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:00:01.522+00', 1440, NULL), +(24575, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:00.206377+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.708987+00', 4502, NULL), +(24576, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:00.209914+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:00.757901+00', 547, '{"timezone-id":"UTC"}'), +(24577, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:00.760198+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:01.106017+00', 345, '{"updated-tables":0,"total-tables":8}'), +(24578, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:01.106282+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.479372+00', 3373, '{"total-fields":71,"updated-fields":0}'), +(24579, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.479464+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.531499+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24580, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.531588+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.708945+00', 177, NULL), +(24581, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.793402+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.963028+00', 169, NULL), +(24582, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.793722+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.907183+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24583, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.907278+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.92406+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(24584, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.92415+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:19:04.962967+00', 38, '{"total-tables":8,"tables-classified":0}'), +(24585, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:00.187235+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:11.885273+00', 11698, NULL), +(24586, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:00.187689+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:00.193131+00', 5, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24587, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:00.193683+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:00.553416+00', 359, '{"updated-tables":0,"total-tables":4}'), +(24588, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:00.553493+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:11.869106+00', 11315, '{"total-fields":39,"updated-fields":0}'), +(24589, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:11.869318+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:11.880644+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24590, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:11.880749+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:11.885079+00', 4, NULL), +(24591, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.025062+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.101324+00', 76, NULL), +(24592, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.025151+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.082427+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24593, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.082519+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.088207+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(24594, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.088321+00', TIMESTAMP WITH TIME ZONE '2023-01-29 03:49:12.101225+00', 12, '{"total-tables":4,"tables-classified":0}'), +(24595, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 04:00:00.22+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:00:01.066+00', 846, NULL), +(24596, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 04:00:00.22+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:00:01.262+00', 1042, NULL), +(24597, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:00.317828+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.385379+00', 6067, NULL), +(24598, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:00.334702+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:00.965105+00', 630, '{"timezone-id":"UTC"}'), +(24599, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:00.966986+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:01.431083+00', 464, '{"updated-tables":0,"total-tables":8}'), +(24600, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:01.431535+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:05.255396+00', 3823, '{"total-fields":71,"updated-fields":0}'), +(24601, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:05.255948+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:05.412509+00', 156, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24602, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:05.41265+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.385329+00', 972, NULL), +(24603, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.486564+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.606675+00', 120, NULL), +(24604, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.486667+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.552876+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24605, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.553096+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.565765+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(24606, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.565842+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:19:06.606598+00', 40, '{"total-tables":8,"tables-classified":0}'), +(24607, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:00.662008+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.548467+00', 11886, NULL), +(24608, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:00.669241+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:00.750165+00', 80, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24609, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:00.757691+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:01.283917+00', 526, '{"updated-tables":0,"total-tables":4}'), +(24610, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:01.284022+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.542253+00', 11258, '{"total-fields":39,"updated-fields":0}'), +(24611, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.542357+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.546774+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24612, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.546863+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.548376+00', 1, NULL), +(24613, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.709623+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.786966+00', 77, NULL), +(24614, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.709661+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.753972+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24615, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.75408+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.761828+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(24616, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.761921+00', TIMESTAMP WITH TIME ZONE '2023-01-29 04:49:12.786894+00', 24, '{"total-tables":4,"tables-classified":0}'), +(24617, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 05:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:00:02.638+00', 2495, NULL), +(24618, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 05:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:00:03.055+00', 2912, NULL), +(24619, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:00.370006+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.110772+00', 5740, NULL), +(24620, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:00.373075+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:01.024702+00', 651, '{"timezone-id":"UTC"}'), +(24621, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:01.026582+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:01.869341+00', 842, '{"updated-tables":0,"total-tables":8}'), +(24622, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:01.869814+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:05.237317+00', 3367, '{"total-fields":71,"updated-fields":0}'), +(24623, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:05.23772+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:05.431102+00', 193, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24624, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:05.43123+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.110712+00', 679, NULL), +(24625, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.253769+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.415001+00', 161, NULL), +(24626, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.253803+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.357938+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24627, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.358098+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.383708+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(24628, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.38379+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:19:06.414905+00', 31, '{"total-tables":8,"tables-classified":0}'), +(24629, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:00.795854+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.095321+00', 12299, NULL), +(24630, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:00.800501+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:00.814934+00', 14, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24631, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:00.817996+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:01.309371+00', 491, '{"updated-tables":0,"total-tables":4}'), +(24632, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:01.309677+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.088172+00', 11778, '{"total-fields":39,"updated-fields":0}'), +(24633, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.08827+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.093418+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24634, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.093519+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.095243+00', 1, NULL), +(24635, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.270399+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.38564+00', 115, NULL), +(24636, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.270431+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.367431+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24637, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.367539+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.372713+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(24638, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.372791+00', TIMESTAMP WITH TIME ZONE '2023-01-29 05:49:13.385578+00', 12, '{"total-tables":4,"tables-classified":0}'), +(24639, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 06:00:00.791+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:00:03.819+00', 3028, NULL), +(24640, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 06:00:00.771+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:00:03.986+00', 3215, NULL), +(24641, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:00.249865+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.854102+00', 3604, NULL), +(24642, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:00.252396+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:00.719149+00', 466, '{"timezone-id":"UTC"}'), +(24643, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:00.721552+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:01.127744+00', 406, '{"updated-tables":0,"total-tables":8}'), +(24644, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:01.128224+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.526488+00', 2398, '{"total-fields":71,"updated-fields":0}'), +(24645, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.526641+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.740208+00', 213, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24646, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.740275+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.854061+00', 113, NULL), +(24647, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.924592+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:04.063411+00', 138, NULL), +(24648, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:03.924628+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:04.002966+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24649, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:04.003064+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:04.0338+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(24650, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:04.033897+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:19:04.063343+00', 29, '{"total-tables":8,"tables-classified":0}'), +(24651, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:00.430649+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.56817+00', 15137, NULL), +(24652, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:00.433828+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:00.45204+00', 18, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24653, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:00.453606+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:00.935316+00', 481, '{"updated-tables":0,"total-tables":4}'), +(24654, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:00.935809+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.545665+00', 14609, '{"total-fields":39,"updated-fields":0}'), +(24655, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.545826+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.553975+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24656, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.554068+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.568089+00', 14, NULL), +(24657, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.7666+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.85495+00', 88, NULL), +(24658, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.766633+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.822912+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24659, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.8232+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.833156+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(24660, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.833474+00', TIMESTAMP WITH TIME ZONE '2023-01-29 06:49:15.854717+00', 21, '{"total-tables":4,"tables-classified":0}'), +(24661, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 07:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:00:05.619+00', 5499, NULL), +(24662, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 07:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:00:05.616+00', 5486, NULL), +(24663, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:00.29796+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.68486+00', 6386, NULL), +(24664, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:00.30275+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:00.743924+00', 441, '{"timezone-id":"UTC"}'), +(24665, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:00.745279+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:01.128234+00', 382, '{"updated-tables":0,"total-tables":8}'), +(24666, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:01.128703+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.435831+00', 5307, '{"total-fields":71,"updated-fields":0}'), +(24667, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.435955+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.509036+00', 73, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24668, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.509389+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.68482+00', 175, NULL), +(24669, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.889091+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:07.029622+00', 140, NULL), +(24670, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.889123+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.954507+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24671, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.954596+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.971994+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(24672, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:06.972082+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:19:07.029556+00', 57, '{"total-tables":8,"tables-classified":0}'), +(24673, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:00.616239+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.339608+00', 12723, NULL), +(24674, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:00.620482+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:00.644957+00', 24, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24675, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:00.648402+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:01.179544+00', 531, '{"updated-tables":0,"total-tables":4}'), +(24676, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:01.179648+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.32433+00', 12144, '{"total-fields":39,"updated-fields":0}'), +(24677, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.324508+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.336872+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24678, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.337021+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.339382+00', 2, NULL), +(24679, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.495647+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.579135+00', 83, NULL), +(24680, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.495682+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.553965+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24681, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.554379+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.56153+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(24682, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.561621+00', TIMESTAMP WITH TIME ZONE '2023-01-29 07:49:13.578983+00', 17, '{"total-tables":4,"tables-classified":0}'), +(24683, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 08:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:00:01.701+00', 1587, NULL), +(24684, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 08:00:00.1+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:00:01.702+00', 1602, NULL), +(24685, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:00.295387+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.378702+00', 4083, NULL), +(24686, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:00.299258+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:00.750523+00', 451, '{"timezone-id":"UTC"}'), +(24687, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:00.751854+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:01.160466+00', 408, '{"updated-tables":0,"total-tables":8}'), +(24688, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:01.160741+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.062935+00', 2902, '{"total-fields":71,"updated-fields":0}'), +(24689, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.063053+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.13713+00', 74, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24690, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.137269+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.378648+00', 241, NULL), +(24691, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.456403+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.581063+00', 124, NULL), +(24692, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.456471+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.53254+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24693, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.532643+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.547527+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(24694, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.547604+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:19:04.581+00', 33, '{"total-tables":8,"tables-classified":0}'), +(24695, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:01.234303+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.778637+00', 13544, NULL), +(24696, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:01.239285+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:01.273283+00', 33, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24697, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:01.277206+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:01.873825+00', 596, '{"updated-tables":0,"total-tables":4}'), +(24698, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:01.874265+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.771623+00', 12897, '{"total-fields":39,"updated-fields":0}'), +(24699, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.772024+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.776872+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24700, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.777085+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.778466+00', 1, NULL), +(24701, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.924134+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.997313+00', 73, NULL), +(24702, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.924181+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.972022+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24703, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.9723+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.979621+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(24704, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.979773+00', TIMESTAMP WITH TIME ZONE '2023-01-29 08:49:14.997074+00', 17, '{"total-tables":4,"tables-classified":0}'), +(24705, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 09:00:00.075+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:00:01.051+00', 976, NULL), +(24706, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 09:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:00:01.05+00', 959, NULL), +(24707, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:00.231364+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.067378+00', 4836, NULL), +(24708, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:00.235899+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:00.749875+00', 513, '{"timezone-id":"UTC"}'), +(24709, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:00.75204+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:01.144059+00', 392, '{"updated-tables":0,"total-tables":8}'), +(24710, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:01.144182+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:04.714044+00', 3569, '{"total-fields":71,"updated-fields":0}'), +(24711, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:04.714378+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:04.866582+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24712, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:04.8669+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.067232+00', 200, NULL), +(24713, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.130196+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.524829+00', 394, NULL), +(24714, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.130304+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.493418+00', 363, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24715, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.493535+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.504059+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(24716, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.50482+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:19:05.524747+00', 19, '{"total-tables":8,"tables-classified":0}'), +(24717, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:00.833094+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.244204+00', 22411, NULL), +(24718, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:00.838533+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:00.850353+00', 11, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24719, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:00.854998+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:01.301827+00', 446, '{"updated-tables":0,"total-tables":4}'), +(24720, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:01.301926+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.211759+00', 21909, '{"total-fields":39,"updated-fields":0}'), +(24721, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.211902+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.242638+00', 30, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24722, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.242763+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.244066+00', 1, NULL), +(24723, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.506468+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.723153+00', 216, NULL), +(24724, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.506501+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.676093+00', 169, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24725, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.676195+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.690287+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(24726, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.690373+00', TIMESTAMP WITH TIME ZONE '2023-01-29 09:49:23.72309+00', 32, '{"total-tables":4,"tables-classified":0}'), +(24727, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 10:00:00.377+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:00:02.343+00', 1966, NULL), +(24728, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 10:00:00.346+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:00:02.977+00', 2631, NULL), +(24729, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:01.217872+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.306206+00', 5088, NULL), +(24730, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:01.222383+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:01.856355+00', 633, '{"timezone-id":"UTC"}'), +(24731, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:01.859272+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:02.369874+00', 510, '{"updated-tables":0,"total-tables":8}'), +(24732, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:02.370412+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.079834+00', 3709, '{"total-fields":71,"updated-fields":0}'), +(24733, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.079984+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.14394+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24734, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.144296+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.306119+00', 161, NULL), +(24735, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.393749+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.504772+00', 111, NULL), +(24736, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.393788+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.465877+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24737, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.465991+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.482547+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(24738, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.482657+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:19:06.504684+00', 22, '{"total-tables":8,"tables-classified":0}'), +(24739, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:00.532786+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:15.878116+00', 15345, NULL), +(24740, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:00.534603+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:00.540223+00', 5, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24741, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:00.541645+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:00.995542+00', 453, '{"updated-tables":0,"total-tables":4}'), +(24742, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:00.995711+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:15.869826+00', 14874, '{"total-fields":39,"updated-fields":0}'), +(24743, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:15.869975+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:15.876274+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24744, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:15.876363+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:15.878067+00', 1, NULL), +(24745, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.099083+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.153031+00', 53, NULL), +(24746, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.099119+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.141705+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24747, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.141828+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.145313+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(24748, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.145381+00', TIMESTAMP WITH TIME ZONE '2023-01-29 10:49:16.152965+00', 7, '{"total-tables":4,"tables-classified":0}'), +(24749, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 11:00:00.173+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:00:03.415+00', 3242, NULL), +(24750, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 11:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:00:03.647+00', 3484, NULL), +(24751, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:00.261746+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.402093+00', 5140, NULL), +(24752, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:00.266017+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:00.957782+00', 691, '{"timezone-id":"UTC"}'), +(24753, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:00.960447+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:02.579036+00', 1618, '{"updated-tables":0,"total-tables":8}'), +(24754, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:02.579305+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.190731+00', 2611, '{"total-fields":71,"updated-fields":0}'), +(24755, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.190886+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.233728+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24756, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.233811+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.402044+00', 168, NULL), +(24757, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.49815+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.608702+00', 110, NULL), +(24758, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.498182+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.557702+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24759, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.557777+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.569624+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(24760, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.569753+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:19:05.608613+00', 38, '{"total-tables":8,"tables-classified":0}'), +(24761, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:00.558156+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.661784+00', 11103, NULL), +(24762, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:00.561906+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:00.575722+00', 13, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24763, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:00.577706+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:01.085157+00', 507, '{"updated-tables":0,"total-tables":4}'), +(24764, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:01.085255+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.641916+00', 10556, '{"total-fields":39,"updated-fields":0}'), +(24765, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.64234+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.657777+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24766, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.657866+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.661718+00', 3, NULL), +(24767, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.798588+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.887009+00', 88, NULL), +(24768, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.798623+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.853515+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24769, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.853611+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.861563+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(24770, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.861648+00', TIMESTAMP WITH TIME ZONE '2023-01-29 11:49:11.886952+00', 25, '{"total-tables":4,"tables-classified":0}'), +(24771, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 12:00:00.19+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:00:02.263+00', 2073, NULL), +(24772, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 12:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:00:02.265+00', 2104, NULL), +(24773, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:00.401857+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.108897+00', 4707, NULL), +(24774, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:00.405736+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:00.985782+00', 580, '{"timezone-id":"UTC"}'), +(24775, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:00.990257+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:01.415174+00', 424, '{"updated-tables":0,"total-tables":8}'), +(24776, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:01.415886+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:04.83181+00', 3415, '{"total-fields":71,"updated-fields":0}'), +(24777, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:04.831937+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:04.883654+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24778, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:04.8838+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.108468+00', 224, NULL), +(24779, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.501166+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.659217+00', 158, NULL), +(24780, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.501204+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.5759+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24781, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.575995+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.592876+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(24782, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.592992+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:19:05.659137+00', 66, '{"total-tables":8,"tables-classified":0}'), +(24783, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:01.019659+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.779002+00', 13759, NULL), +(24784, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:01.023828+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:01.052127+00', 28, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24785, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:01.057943+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:02.008806+00', 950, '{"updated-tables":0,"total-tables":4}'), +(24786, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:02.008935+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.767744+00', 12758, '{"total-fields":39,"updated-fields":0}'), +(24787, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.768158+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.776073+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24788, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.776184+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.778937+00', 2, NULL), +(24789, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.960878+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:15.02146+00', 60, NULL), +(24790, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:14.961328+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:15.003214+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24791, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:15.003304+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:15.010897+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(24792, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:15.011042+00', TIMESTAMP WITH TIME ZONE '2023-01-29 12:49:15.021345+00', 10, '{"total-tables":4,"tables-classified":0}'), +(24793, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 13:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:00:01.653+00', 1521, NULL), +(24794, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 13:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:00:01.651+00', 1510, NULL), +(24795, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:00.380944+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:04.958315+00', 4577, NULL), +(24796, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:00.385267+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:00.936892+00', 551, '{"timezone-id":"UTC"}'), +(24797, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:00.939375+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:01.408003+00', 468, '{"updated-tables":0,"total-tables":8}'), +(24798, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:01.40852+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:04.675331+00', 3266, '{"total-fields":71,"updated-fields":0}'), +(24799, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:04.675952+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:04.765284+00', 89, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24800, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:04.765356+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:04.958256+00', 192, NULL), +(24801, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.045465+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.157785+00', 112, NULL), +(24802, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.045502+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.123938+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24803, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.124051+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.138352+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(24804, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.138431+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:19:05.15773+00', 19, '{"total-tables":8,"tables-classified":0}'), +(24805, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:00.319015+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.073297+00', 11754, NULL), +(24806, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:00.3219+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:00.330709+00', 8, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24807, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:00.331933+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:00.764691+00', 432, '{"updated-tables":0,"total-tables":4}'), +(24808, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:00.764813+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.031424+00', 11266, '{"total-fields":39,"updated-fields":0}'), +(24809, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.031574+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.068854+00', 37, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24810, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.069163+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.073189+00', 4, NULL), +(24811, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.681916+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.907116+00', 225, NULL), +(24812, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.68195+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.797734+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24813, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.798056+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.806412+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(24814, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.806675+00', TIMESTAMP WITH TIME ZONE '2023-01-29 13:49:12.907031+00', 100, '{"total-tables":4,"tables-classified":0}'), +(24815, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 14:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:00:02.364+00', 2205, NULL), +(24816, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 14:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:00:02.56+00', 2405, NULL), +(24817, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:00.29861+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.905071+00', 4606, NULL), +(24818, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:00.302765+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:00.636506+00', 333, '{"timezone-id":"UTC"}'), +(24819, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:00.63814+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:00.998027+00', 359, '{"updated-tables":0,"total-tables":8}'), +(24820, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:00.998464+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.624049+00', 3625, '{"total-fields":71,"updated-fields":0}'), +(24821, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.624258+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.66313+00', 38, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24822, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.663396+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.905018+00', 241, NULL), +(24823, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.9623+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:05.073567+00', 111, NULL), +(24824, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:04.962335+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:05.033492+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24825, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:05.033588+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:05.051545+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(24826, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:05.051624+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:19:05.073504+00', 21, '{"total-tables":8,"tables-classified":0}'), +(24827, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:00.407889+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.407205+00', 10999, NULL), +(24828, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:00.409596+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:00.416274+00', 6, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24829, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:00.418608+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:00.849762+00', 431, '{"updated-tables":0,"total-tables":4}'), +(24830, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:00.849861+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.392628+00', 10542, '{"total-fields":39,"updated-fields":0}'), +(24831, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.392934+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.404648+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24832, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.404751+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.407081+00', 2, NULL), +(24833, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.632575+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.724375+00', 91, NULL), +(24834, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.632606+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.692384+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24835, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.692557+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.701804+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(24836, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.701885+00', TIMESTAMP WITH TIME ZONE '2023-01-29 14:49:11.724299+00', 22, '{"total-tables":4,"tables-classified":0}'), +(24837, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 15:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:00:02.165+00', 1990, NULL), +(24838, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 15:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:00:02.411+00', 2240, NULL), +(24839, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:00.294821+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.030022+00', 4735, NULL), +(24840, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:00.300602+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:00.850699+00', 550, '{"timezone-id":"UTC"}'), +(24841, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:00.853017+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:01.215824+00', 362, '{"updated-tables":0,"total-tables":8}'), +(24842, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:01.216116+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:04.794327+00', 3578, '{"total-fields":71,"updated-fields":0}'), +(24843, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:04.794452+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:04.860085+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24844, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:04.860174+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.029967+00', 169, NULL), +(24845, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.138345+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.272601+00', 134, NULL), +(24846, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.138376+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.233409+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24847, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.233495+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.247561+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(24848, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.247649+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:19:05.272507+00', 24, '{"total-tables":8,"tables-classified":0}'), +(24849, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:00.634364+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.322132+00', 12687, NULL), +(24850, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:00.634436+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:00.63966+00', 5, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24851, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:00.641255+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:01.186144+00', 544, '{"updated-tables":0,"total-tables":4}'), +(24852, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:01.186265+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.31382+00', 12127, '{"total-fields":39,"updated-fields":0}'), +(24853, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.313957+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.320301+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24854, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.320396+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.322062+00', 1, NULL), +(24855, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.474604+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.54149+00', 66, NULL), +(24856, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.474647+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.522835+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24857, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.522943+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.52966+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(24858, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.529754+00', TIMESTAMP WITH TIME ZONE '2023-01-29 15:49:13.541393+00', 11, '{"total-tables":4,"tables-classified":0}'), +(24859, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 16:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:00:02.043+00', 1904, NULL), +(24860, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 16:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:00:02.039+00', 1896, NULL), +(24861, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:00.295647+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.637311+00', 5341, NULL), +(24862, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:00.301158+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:01.290712+00', 989, '{"timezone-id":"UTC"}'), +(24863, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:01.293545+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:01.870581+00', 577, '{"updated-tables":0,"total-tables":8}'), +(24864, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:01.871778+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.379551+00', 3507, '{"total-fields":71,"updated-fields":0}'), +(24865, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.379641+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.439899+00', 60, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24866, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.43998+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.637261+00', 197, NULL), +(24867, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.741299+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.838983+00', 97, NULL), +(24868, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.741335+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.805324+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24869, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.805612+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.817949+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(24870, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.818046+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:19:05.83887+00', 20, '{"total-tables":8,"tables-classified":0}'), +(24871, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:00.837389+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.54921+00', 21711, NULL), +(24872, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:00.842358+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:00.851804+00', 9, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24873, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:00.854356+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:01.299732+00', 445, '{"updated-tables":0,"total-tables":4}'), +(24874, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:01.299842+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.541858+00', 21242, '{"total-fields":39,"updated-fields":0}'), +(24875, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.542005+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.548511+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24876, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.548624+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.549168+00', 0, NULL), +(24877, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.632292+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.715176+00', 82, NULL), +(24878, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.63237+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.657929+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24879, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.658861+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.69738+00', 38, '{"fields-classified":0,"fields-failed":0}'), +(24880, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.697507+00', TIMESTAMP WITH TIME ZONE '2023-01-29 16:49:22.715099+00', 17, '{"total-tables":4,"tables-classified":0}'), +(24881, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 17:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:00:00.263+00', 137, NULL), +(24882, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 17:00:00.341+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:00:03.457+00', 3116, NULL), +(24883, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:00.350812+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.615607+00', 6264, NULL), +(24884, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:00.355047+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:01.411208+00', 1056, '{"timezone-id":"UTC"}'), +(24885, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:01.415195+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:02.512748+00', 1097, '{"updated-tables":0,"total-tables":8}'), +(24886, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:02.513424+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.363186+00', 3849, '{"total-fields":71,"updated-fields":0}'), +(24887, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.363352+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.42926+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24888, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.429406+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.61556+00', 186, NULL), +(24889, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.683419+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.820004+00', 136, NULL), +(24890, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.683456+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.757112+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24891, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.757423+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.783272+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(24892, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.783581+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:19:06.819942+00', 36, '{"total-tables":8,"tables-classified":0}'), +(24893, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:00.706344+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.290717+00', 15584, NULL), +(24894, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:00.709566+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:00.726426+00', 16, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24895, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:00.730226+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:01.417062+00', 686, '{"updated-tables":0,"total-tables":4}'), +(24896, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:01.417466+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.203388+00', 14785, '{"total-fields":39,"updated-fields":0}'), +(24897, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.20354+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.238497+00', 34, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24898, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.238593+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.29062+00', 52, NULL), +(24899, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.716072+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:17.128968+00', 412, NULL), +(24900, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:16.716104+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:17.013795+00', 297, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24901, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:17.014004+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:17.046398+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(24902, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:17.046528+00', TIMESTAMP WITH TIME ZONE '2023-01-29 17:49:17.128876+00', 82, '{"total-tables":4,"tables-classified":0}'), +(24903, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 18:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:00:02.53+00', 2367, NULL), +(24904, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 18:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:00:02.863+00', 2704, NULL), +(24905, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:00.232093+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.049657+00', 3817, NULL), +(24906, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:00.234623+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:00.774189+00', 539, '{"timezone-id":"UTC"}'), +(24907, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:00.776135+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:01.136904+00', 360, '{"updated-tables":0,"total-tables":8}'), +(24908, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:01.13723+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:03.888555+00', 2751, '{"total-fields":71,"updated-fields":0}'), +(24909, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:03.888711+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:03.933662+00', 44, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24910, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:03.933838+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.049614+00', 115, NULL), +(24911, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.181214+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.325458+00', 144, NULL), +(24912, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.181266+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.273285+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24913, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.273383+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.290008+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(24914, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.290113+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:19:04.325383+00', 35, '{"total-tables":8,"tables-classified":0}'), +(24915, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:00.901445+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:14.787586+00', 13886, NULL), +(24916, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:00.903739+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:00.915078+00', 11, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24917, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:00.920303+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:01.392788+00', 472, '{"updated-tables":0,"total-tables":4}'), +(24918, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:01.39293+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:14.758494+00', 13365, '{"total-fields":39,"updated-fields":0}'), +(24919, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:14.758704+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:14.785589+00', 26, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24920, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:14.785692+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:14.787514+00', 1, NULL), +(24921, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.113559+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.239345+00', 125, NULL), +(24922, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.113633+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.216003+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24923, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.2161+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.224723+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(24924, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.224881+00', TIMESTAMP WITH TIME ZONE '2023-01-29 18:49:15.239275+00', 14, '{"total-tables":4,"tables-classified":0}'), +(24925, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 19:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:00:01.516+00', 1370, NULL), +(24926, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 19:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:00:01.841+00', 1730, NULL), +(24927, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:00.269907+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:06.949964+00', 6680, NULL), +(24928, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:00.275057+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:00.891845+00', 616, '{"timezone-id":"UTC"}'), +(24929, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:00.894403+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:01.335642+00', 441, '{"updated-tables":0,"total-tables":8}'), +(24930, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:01.335982+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:06.641597+00', 5305, '{"total-fields":71,"updated-fields":0}'), +(24931, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:06.641728+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:06.710592+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24932, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:06.71067+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:06.949882+00', 239, NULL), +(24933, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.045827+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.202763+00', 156, NULL), +(24934, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.045868+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.120895+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24935, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.120995+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.136365+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(24936, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.136495+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:19:07.202661+00', 66, '{"total-tables":8,"tables-classified":0}'), +(24937, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:00.83308+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.192779+00', 12359, NULL), +(24938, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:00.837644+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:00.871419+00', 33, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24939, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:00.875749+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:01.478635+00', 602, '{"updated-tables":0,"total-tables":4}'), +(24940, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:01.47872+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.182849+00', 11704, '{"total-fields":39,"updated-fields":0}'), +(24941, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.182978+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.189137+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24942, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.189228+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.192719+00', 3, NULL), +(24943, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.380873+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.514717+00', 133, NULL), +(24944, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.383178+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.486031+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24945, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.486301+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.497672+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(24946, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.497896+00', TIMESTAMP WITH TIME ZONE '2023-01-29 19:49:13.514508+00', 16, '{"total-tables":4,"tables-classified":0}'), +(24947, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 20:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:00:01.684+00', 1534, NULL), +(24948, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 20:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:00:02.12+00', 1971, NULL), +(24949, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:00.281538+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:05.661066+00', 5379, NULL), +(24950, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:00.286897+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:01.121372+00', 834, '{"timezone-id":"UTC"}'), +(24951, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:01.124918+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:01.597022+00', 472, '{"updated-tables":0,"total-tables":8}'), +(24952, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:01.597135+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:04.79768+00', 3200, '{"total-fields":71,"updated-fields":0}'), +(24953, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:04.798229+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:04.943881+00', 145, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24954, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:04.944396+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:05.660994+00', 716, NULL), +(24955, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.554059+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.650199+00', 96, NULL), +(24956, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.554094+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.618688+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24957, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.618919+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.633884+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(24958, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.634032+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:19:06.650103+00', 16, '{"total-tables":8,"tables-classified":0}'), +(24959, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:00.995465+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:13.930486+00', 12935, NULL), +(24960, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:01.006153+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:01.042373+00', 36, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24961, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:01.047638+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:01.826245+00', 778, '{"updated-tables":0,"total-tables":4}'), +(24962, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:01.826651+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:13.885709+00', 12059, '{"total-fields":39,"updated-fields":0}'), +(24963, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:13.885862+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:13.920975+00', 35, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24964, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:13.921156+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:13.930385+00', 9, NULL), +(24965, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.111686+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.217879+00', 106, NULL), +(24966, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.111723+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.192036+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24967, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.192125+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.200677+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(24968, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.200792+00', TIMESTAMP WITH TIME ZONE '2023-01-29 20:49:14.217799+00', 17, '{"total-tables":4,"tables-classified":0}'), +(24969, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:02.191+00', 1998, NULL), +(24970, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:00.181+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:02.194+00', 2013, NULL), +(24971, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:02.821013+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:15.165356+00', 12344, NULL), +(24972, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:02.836976+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:05.051784+00', 2214, '{"deleted":0}'), +(24973, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:05.053953+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:00:15.165201+00', 10111, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(24974, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:00.970789+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.414406+00', 4443, NULL), +(24975, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:00.973773+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:01.852171+00', 878, '{"timezone-id":"UTC"}'), +(24976, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:01.857184+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:02.635231+00', 778, '{"updated-tables":0,"total-tables":8}'), +(24977, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:02.635402+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:04.96354+00', 2328, '{"total-fields":71,"updated-fields":0}'), +(24978, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:04.963649+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.053257+00', 89, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(24979, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.053375+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.414335+00', 360, NULL), +(24980, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.54289+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.743729+00', 200, NULL), +(24981, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.542928+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.657342+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24982, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.657981+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.688087+00', 30, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(24983, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.688166+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:19:05.74365+00', 55, '{"total-tables":8,"tables-classified":0}'), +(24984, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:01.037596+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:13.888537+00', 12850, NULL), +(24985, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:01.045811+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:01.089323+00', 43, '{"timezone-id":null}'), +(24986, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:01.09586+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:01.742067+00', 646, '{"updated-tables":0,"total-tables":4}'), +(24987, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:01.742402+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:13.869378+00', 12126, '{"total-fields":39,"updated-fields":0}'), +(24988, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:13.869498+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:13.882358+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(24989, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:13.882453+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:13.888406+00', 5, NULL), +(24990, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.051037+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.165071+00', 114, NULL), +(24991, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.051074+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.130231+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(24992, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.130358+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.139153+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(24993, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.139273+00', TIMESTAMP WITH TIME ZONE '2023-01-29 21:49:14.164965+00', 25, '{"total-tables":4,"tables-classified":0}'), +(24994, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 22:00:00.088+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:00:02.778+00', 2690, NULL), +(24995, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 22:00:00.08+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:00:02.779+00', 2699, NULL), +(24996, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:00.246908+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:03.97716+00', 3730, NULL), +(24997, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:00.251692+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:00.784564+00', 532, '{"timezone-id":"UTC"}'), +(24998, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:00.786389+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:01.158651+00', 372, '{"updated-tables":0,"total-tables":8}'), +(24999, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:01.159247+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:03.752618+00', 2593, '{"total-fields":71,"updated-fields":0}'), +(25000, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:03.752805+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:03.792041+00', 39, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25001, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:03.792192+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:03.977108+00', 184, NULL), +(25002, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.205311+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.321201+00', 115, NULL), +(25003, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.205351+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.262102+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25004, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.262183+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.289387+00', 27, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25005, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.289772+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:19:04.321138+00', 31, '{"total-tables":8,"tables-classified":0}'), +(25006, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:00.899798+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.051518+00', 13151, NULL), +(25007, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:00.905423+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:00.935697+00', 30, '{"timezone-id":null}'), +(25008, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:00.938441+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:01.508029+00', 569, '{"updated-tables":0,"total-tables":4}'), +(25009, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:01.508868+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.041102+00', 12532, '{"total-fields":39,"updated-fields":0}'), +(25010, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.041226+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.047767+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25011, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.047849+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.051453+00', 3, NULL), +(25012, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.18149+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.241322+00', 59, NULL), +(25013, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.181525+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.219395+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25014, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.219481+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.223712+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25015, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.223794+00', TIMESTAMP WITH TIME ZONE '2023-01-29 22:49:14.241242+00', 17, '{"total-tables":4,"tables-classified":0}'), +(25016, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 23:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:00:01.554+00', 1384, NULL), +(25017, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-29 23:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:00:01.78+00', 1615, NULL), +(25018, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:00.206533+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:03.918807+00', 3712, NULL), +(25019, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:00.210913+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:00.585275+00', 374, '{"timezone-id":"UTC"}'), +(25020, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:00.586883+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:00.95705+00', 370, '{"updated-tables":0,"total-tables":8}'), +(25021, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:00.957351+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:03.76082+00', 2803, '{"total-fields":71,"updated-fields":0}'), +(25022, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:03.761043+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:03.793439+00', 32, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25023, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:03.793516+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:03.918721+00', 125, NULL), +(25024, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.041301+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.134728+00', 93, NULL), +(25025, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.042948+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.102148+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25026, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.105019+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.116331+00', 11, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25027, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.116509+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:19:04.134436+00', 17, '{"total-tables":8,"tables-classified":0}'), +(25028, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:00.902966+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.708562+00', 12805, NULL), +(25029, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:00.908726+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:00.944842+00', 36, '{"timezone-id":null}'), +(25030, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:00.950933+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:01.563042+00', 612, '{"updated-tables":0,"total-tables":4}'), +(25031, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:01.563414+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.670133+00', 12106, '{"total-fields":39,"updated-fields":0}'), +(25032, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.670247+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.689686+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25033, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.689784+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.708482+00', 18, NULL), +(25034, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.982117+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:18.356635+00', 4374, NULL), +(25035, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:13.982411+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:18.344522+00', 4362, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25036, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:18.344938+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:18.348257+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(25037, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:18.34834+00', TIMESTAMP WITH TIME ZONE '2023-01-29 23:49:18.356576+00', 8, '{"total-tables":4,"tables-classified":0}'), +(25038, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 00:00:00.253+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:00:13.668+00', 13415, NULL), +(25039, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 00:00:00.253+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:00:13.672+00', 13419, NULL), +(25040, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:00.287519+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.029321+00', 3741, NULL), +(25041, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:00.291851+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:00.959067+00', 667, '{"timezone-id":"UTC"}'), +(25042, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:00.960776+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:01.320759+00', 359, '{"updated-tables":0,"total-tables":8}'), +(25043, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:01.321158+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:03.826281+00', 2505, '{"total-fields":71,"updated-fields":0}'), +(25044, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:03.826378+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:03.896203+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25045, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:03.896296+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.029261+00', 132, NULL), +(25046, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.251871+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.375523+00', 123, NULL), +(25047, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.251902+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.340999+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25048, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.341078+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.353339+00', 12, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25049, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.353587+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:19:04.375465+00', 21, '{"total-tables":8,"tables-classified":0}'), +(25050, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:00.626933+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:10.884463+00', 10257, NULL), +(25051, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:00.62866+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:00.639337+00', 10, '{"timezone-id":null}'), +(25052, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:00.642878+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:01.129649+00', 486, '{"updated-tables":0,"total-tables":4}'), +(25053, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:01.12973+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:10.875138+00', 9745, '{"total-fields":39,"updated-fields":0}'), +(25054, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:10.875255+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:10.882617+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25055, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:10.882742+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:10.884346+00', 1, NULL), +(25056, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.114302+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.163214+00', 48, NULL), +(25057, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.114333+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.149031+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25058, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.149096+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.153725+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25059, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.153852+00', TIMESTAMP WITH TIME ZONE '2023-01-30 00:49:11.163129+00', 9, '{"total-tables":4,"tables-classified":0}'), +(25060, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 01:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:00:01.135+00', 1008, NULL), +(25061, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 01:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:00:01.274+00', 1147, NULL), +(25062, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:00.252658+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.377513+00', 5124, NULL), +(25063, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:00.258438+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:00.877642+00', 619, '{"timezone-id":"UTC"}'), +(25064, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:00.879955+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:01.319523+00', 439, '{"updated-tables":0,"total-tables":8}'), +(25065, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:01.319893+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.185634+00', 3865, '{"total-fields":71,"updated-fields":0}'), +(25066, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.185803+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.227693+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25067, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.227804+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.37748+00', 149, NULL), +(25068, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.467672+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.568328+00', 100, NULL), +(25069, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.467704+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.529573+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25070, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.529648+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.548258+00', 18, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25071, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.548365+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:19:05.568277+00', 19, '{"total-tables":8,"tables-classified":0}'), +(25072, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:00.915925+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:12.89485+00', 11978, NULL), +(25073, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:00.92285+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:00.961903+00', 39, '{"timezone-id":null}'), +(25074, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:00.966815+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:01.586955+00', 620, '{"updated-tables":0,"total-tables":4}'), +(25075, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:01.587055+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:12.8846+00', 11297, '{"total-fields":39,"updated-fields":0}'), +(25076, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:12.884718+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:12.889575+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25077, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:12.889666+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:12.894772+00', 5, NULL), +(25078, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.031928+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.098646+00', 66, NULL), +(25079, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.031959+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.080231+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25080, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.080309+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.085092+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25081, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.085168+00', TIMESTAMP WITH TIME ZONE '2023-01-30 01:49:13.098591+00', 13, '{"total-tables":4,"tables-classified":0}'), +(25082, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:02.971+00', 2827, NULL), +(25083, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:02.974+00', 2850, NULL), +(25084, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:03.432066+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:16.691103+00', 13259, NULL), +(25085, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:03.437726+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:04.743046+00', 1305, '{"deleted":0}'), +(25086, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:04.74707+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:00:16.690925+00', 11943, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(25087, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:00.284996+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.761399+00', 2476, NULL), +(25088, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:00.286919+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:00.780596+00', 493, '{"timezone-id":"UTC"}'), +(25089, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:00.78313+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:01.115514+00', 332, '{"updated-tables":0,"total-tables":8}'), +(25090, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:01.115608+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.158181+00', 1042, '{"total-fields":71,"updated-fields":0}'), +(25091, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.158292+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.215984+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25092, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.216068+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.761333+00', 545, NULL), +(25093, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.947383+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:03.134964+00', 187, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25094, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:02.947416+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:03.075121+00', 127, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25095, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:03.075423+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:03.093496+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(25096, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:03.09362+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:19:03.134897+00', 41, '{"total-tables":8,"tables-classified":0}'), +(25097, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:01.005031+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.406168+00', 12401, NULL), +(25098, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:01.014379+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:01.048002+00', 33, '{"timezone-id":null}'), +(25099, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:01.055239+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:02.161405+00', 1106, '{"updated-tables":0,"total-tables":4}'), +(25100, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:02.162005+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.392238+00', 11230, '{"total-fields":39,"updated-fields":0}'), +(25101, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.392473+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.402392+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25102, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.402584+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.406023+00', 3, NULL), +(25103, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.59581+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.691011+00', 95, NULL), +(25104, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.595846+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.661092+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25105, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.661405+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.669838+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(25106, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.670035+00', TIMESTAMP WITH TIME ZONE '2023-01-30 02:49:13.690945+00', 20, '{"total-tables":4,"tables-classified":0}'), +(25107, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 03:00:00.08+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:00:03.524+00', 3444, NULL), +(25108, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 03:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:00:03.521+00', 3424, NULL), +(25109, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:00.208546+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.586531+00', 4377, NULL), +(25110, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:00.213807+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:00.859702+00', 645, '{"timezone-id":"UTC"}'), +(25111, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:00.863594+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:01.200524+00', 336, '{"updated-tables":0,"total-tables":8}'), +(25112, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:01.200657+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.382769+00', 3182, '{"total-fields":71,"updated-fields":0}'), +(25113, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.382883+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.425983+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25114, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.426067+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.586498+00', 160, NULL), +(25115, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.697593+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.887773+00', 190, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25116, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.697634+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.817731+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25117, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.818348+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.831399+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(25118, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.831592+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:19:04.887697+00', 56, '{"total-tables":8,"tables-classified":0}'), +(25119, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:00.232737+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.752329+00', 9519, NULL), +(25120, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:00.23421+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:00.237375+00', 3, '{"timezone-id":null}'), +(25121, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:00.237477+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:00.611655+00', 374, '{"updated-tables":0,"total-tables":4}'), +(25122, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:00.611751+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.74406+00', 9132, '{"total-fields":39,"updated-fields":0}'), +(25123, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.744234+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.749972+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25124, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.750066+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.752269+00', 2, NULL), +(25125, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.884363+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.994103+00', 109, NULL), +(25126, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.884396+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.961678+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25127, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.961786+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.97191+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(25128, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.972012+00', TIMESTAMP WITH TIME ZONE '2023-01-30 03:49:09.994023+00', 22, '{"total-tables":4,"tables-classified":0}'), +(25129, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 04:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:00:01.501+00', 1286, NULL), +(25130, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 04:00:00.113+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:00:01.502+00', 1389, NULL), +(25131, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:00.214796+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.246198+00', 7031, NULL), +(25132, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:00.223508+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:01.057169+00', 833, '{"timezone-id":"UTC"}'), +(25133, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:01.058452+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:01.516481+00', 458, '{"updated-tables":0,"total-tables":8}'), +(25134, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:01.516582+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:06.568265+00', 5051, '{"total-fields":71,"updated-fields":0}'), +(25135, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:06.568624+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:06.703834+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25136, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:06.704143+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.245748+00', 541, NULL), +(25137, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.401981+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.596288+00', 194, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25138, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.402015+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.522527+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25139, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.522899+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.547944+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(25140, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.548215+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:19:07.596133+00', 47, '{"total-tables":8,"tables-classified":0}'), +(25141, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:00.549942+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.408294+00', 14858, NULL), +(25142, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:00.553254+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:00.571158+00', 17, '{"timezone-id":null}'), +(25143, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:00.576264+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:02.004582+00', 1428, '{"updated-tables":0,"total-tables":4}'), +(25144, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:02.004722+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.398867+00', 13394, '{"total-fields":39,"updated-fields":0}'), +(25145, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.399043+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.405854+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25146, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.405941+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.408245+00', 2, NULL), +(25147, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.554873+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.640286+00', 85, NULL), +(25148, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.554902+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.616368+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25149, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.616516+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.623401+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(25150, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.623474+00', TIMESTAMP WITH TIME ZONE '2023-01-30 04:49:15.640235+00', 16, '{"total-tables":4,"tables-classified":0}'), +(25151, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 05:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:00:02.903+00', 2694, NULL), +(25152, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 05:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:00:03.145+00', 2936, NULL), +(25153, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:00.347551+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.609779+00', 5262, NULL), +(25154, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:00.356248+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:01.014536+00', 658, '{"timezone-id":"UTC"}'), +(25155, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:01.017944+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:01.551626+00', 533, '{"updated-tables":0,"total-tables":8}'), +(25156, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:01.551729+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:04.791264+00', 3239, '{"total-fields":71,"updated-fields":0}'), +(25157, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:04.791487+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:04.874579+00', 83, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25158, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:04.874649+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.609659+00', 735, NULL), +(25159, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.75938+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.859129+00', 99, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25160, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.759415+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.824851+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25161, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.824954+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.838786+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(25162, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.838897+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:19:05.859051+00', 20, '{"total-tables":8,"tables-classified":0}'), +(25163, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:00.866692+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.804401+00', 18937, NULL), +(25164, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:00.877681+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:00.91353+00', 35, '{"timezone-id":null}'), +(25165, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:00.920404+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:01.480579+00', 560, '{"updated-tables":0,"total-tables":4}'), +(25166, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:01.480751+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.796713+00', 18315, '{"total-fields":39,"updated-fields":0}'), +(25167, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.798201+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.803639+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25168, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.803719+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.804371+00', 0, NULL), +(25169, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.861886+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.900631+00', 38, NULL), +(25170, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.86192+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.874459+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25171, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.87456+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.879867+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(25172, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.879965+00', TIMESTAMP WITH TIME ZONE '2023-01-30 05:49:19.900565+00', 20, '{"total-tables":4,"tables-classified":0}'), +(25173, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 06:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:00:02.895+00', 2730, NULL), +(25174, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 06:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:00:02.905+00', 2740, NULL), +(25175, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:00.167982+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.202387+00', 3034, NULL), +(25176, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:00.170887+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:00.45812+00', 287, '{"timezone-id":"UTC"}'), +(25177, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:00.459821+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:00.85016+00', 390, '{"updated-tables":0,"total-tables":8}'), +(25178, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:00.850601+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:02.719978+00', 1869, '{"total-fields":71,"updated-fields":0}'), +(25179, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:02.720099+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:02.762046+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25180, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:02.762125+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.202346+00', 440, NULL), +(25181, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.28812+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.382056+00', 93, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25182, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.288148+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.345049+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25183, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.34515+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.360707+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(25184, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.360867+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:19:03.382003+00', 21, '{"total-tables":8,"tables-classified":0}'), +(25185, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:00.636332+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.759305+00', 14122, NULL), +(25186, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:00.638839+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:00.655036+00', 16, '{"timezone-id":null}'), +(25187, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:00.658915+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:01.158885+00', 499, '{"updated-tables":0,"total-tables":4}'), +(25188, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:01.159332+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.749307+00', 13589, '{"total-fields":39,"updated-fields":0}'), +(25189, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.749449+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.757344+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25190, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.757438+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.759248+00', 1, NULL), +(25191, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.94978+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:15.035558+00', 85, NULL), +(25192, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:14.949832+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:15.012188+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25193, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:15.012291+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:15.021282+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(25194, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:15.021373+00', TIMESTAMP WITH TIME ZONE '2023-01-30 06:49:15.035463+00', 14, '{"total-tables":4,"tables-classified":0}'), +(25195, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 07:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:00:05.115+00', 4971, NULL), +(25196, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 07:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:00:05.352+00', 5208, NULL), +(25197, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:00.298568+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.820334+00', 6521, NULL), +(25198, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:00.304554+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:00.922478+00', 617, '{"timezone-id":"UTC"}'), +(25199, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:00.92454+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:01.33712+00', 412, '{"updated-tables":0,"total-tables":8}'), +(25200, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:01.337558+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.613285+00', 5275, '{"total-fields":71,"updated-fields":0}'), +(25201, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.613421+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.66281+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25202, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.662908+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.820292+00', 157, NULL), +(25203, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.887346+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:07.022128+00', 134, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25204, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.887376+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.984961+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25205, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:06.985055+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:07.00161+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(25206, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:07.001718+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:19:07.022065+00', 20, '{"total-tables":8,"tables-classified":0}'), +(25207, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:00.405297+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.592047+00', 12186, NULL), +(25208, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:00.40535+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:00.411067+00', 5, '{"timezone-id":null}'), +(25209, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:00.411485+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:00.781015+00', 369, '{"updated-tables":0,"total-tables":4}'), +(25210, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:00.781115+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.584356+00', 11803, '{"total-fields":39,"updated-fields":0}'), +(25211, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.584551+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.59007+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25212, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.59017+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.591993+00', 1, NULL), +(25213, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.697891+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.758253+00', 60, NULL), +(25214, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.697919+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.7427+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25215, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.742792+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.747662+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25216, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.747746+00', TIMESTAMP WITH TIME ZONE '2023-01-30 07:49:12.758195+00', 10, '{"total-tables":4,"tables-classified":0}'), +(25217, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 08:00:00.156+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:00:02.857+00', 2701, NULL), +(25218, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 08:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:00:03.19+00', 3039, NULL), +(25219, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:00.291228+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:04.94978+00', 4658, NULL), +(25220, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:00.295143+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:00.718287+00', 423, '{"timezone-id":"UTC"}'), +(25221, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:00.720232+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:01.176363+00', 456, '{"updated-tables":0,"total-tables":8}'), +(25222, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:01.176948+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:04.75217+00', 3575, '{"total-fields":71,"updated-fields":0}'), +(25223, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:04.752275+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:04.80006+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25224, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:04.80015+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:04.949726+00', 149, NULL), +(25225, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.00732+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.121832+00', 114, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25226, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.007353+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.059089+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25227, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.059184+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.092371+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(25228, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.092811+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:19:05.121769+00', 28, '{"total-tables":8,"tables-classified":0}'), +(25229, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:00.432888+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.457802+00', 14024, NULL), +(25230, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:00.433195+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:00.440547+00', 7, '{"timezone-id":null}'), +(25231, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:00.441793+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:00.95422+00', 512, '{"updated-tables":0,"total-tables":4}'), +(25232, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:00.95459+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.449241+00', 13494, '{"total-fields":39,"updated-fields":0}'), +(25233, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.449587+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.455773+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25234, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.455954+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.457705+00', 1, NULL), +(25235, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.692978+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.799322+00', 106, NULL), +(25236, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.693014+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.759877+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25237, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.75995+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.765886+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(25238, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.765983+00', TIMESTAMP WITH TIME ZONE '2023-01-30 08:49:14.799227+00', 33, '{"total-tables":4,"tables-classified":0}'), +(25239, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 09:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:00:00.156+00', 49, NULL), +(25240, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 09:00:00.186+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:00:01.537+00', 1351, NULL), +(25241, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:00.26307+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.444851+00', 6181, NULL), +(25242, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:00.266937+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:00.577663+00', 310, '{"timezone-id":"UTC"}'), +(25243, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:00.57941+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:01.173516+00', 594, '{"updated-tables":0,"total-tables":8}'), +(25244, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:01.173649+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.17121+00', 4997, '{"total-fields":71,"updated-fields":0}'), +(25245, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.171556+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.232841+00', 61, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25246, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.23317+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.444806+00', 211, NULL), +(25247, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.515341+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.631795+00', 116, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25248, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.515371+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.594594+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25249, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.594934+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.609411+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(25250, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.609499+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:19:06.631728+00', 22, '{"total-tables":8,"tables-classified":0}'), +(25251, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:00.940927+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.503956+00', 14563, NULL), +(25252, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:00.951656+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:00.981352+00', 29, '{"timezone-id":null}'), +(25253, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:00.986412+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:01.573413+00', 587, '{"updated-tables":0,"total-tables":4}'), +(25254, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:01.573533+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.485499+00', 13911, '{"total-fields":39,"updated-fields":0}'), +(25255, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.485645+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.496373+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25256, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.496638+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.503721+00', 7, NULL), +(25257, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.699295+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.8796+00', 180, NULL), +(25258, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.699324+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.807916+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25259, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.808038+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.823242+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(25260, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.823326+00', TIMESTAMP WITH TIME ZONE '2023-01-30 09:49:15.879402+00', 56, '{"total-tables":4,"tables-classified":0}'), +(25261, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 10:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:00:02.52+00', 2357, NULL), +(25262, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 10:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:00:02.526+00', 2407, NULL), +(25263, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:00.779703+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.295271+00', 6515, NULL), +(25264, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:00.788715+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:02.027937+00', 1239, '{"timezone-id":"UTC"}'), +(25265, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:02.044472+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:02.68339+00', 638, '{"updated-tables":0,"total-tables":8}'), +(25266, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:02.683856+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:06.435734+00', 3751, '{"total-fields":71,"updated-fields":0}'), +(25267, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:06.436214+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:06.624575+00', 188, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25268, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:06.624918+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.295213+00', 670, NULL), +(25269, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.47209+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.680714+00', 208, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25270, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.472132+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.606771+00', 134, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25271, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.60727+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.638083+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(25272, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.638189+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:19:07.680638+00', 42, '{"total-tables":8,"tables-classified":0}'), +(25273, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:01.209788+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.062544+00', 13852, NULL), +(25274, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:01.219418+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:01.251495+00', 32, '{"timezone-id":null}'), +(25275, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:01.256982+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:02.693195+00', 1436, '{"updated-tables":0,"total-tables":4}'), +(25276, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:02.693323+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.046158+00', 12352, '{"total-fields":39,"updated-fields":0}'), +(25277, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.046378+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.058767+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25278, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.058854+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.062418+00', 3, NULL), +(25279, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.300625+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.448222+00', 147, NULL), +(25280, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.300658+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.391091+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25281, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.391212+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.40945+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(25282, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.409565+00', TIMESTAMP WITH TIME ZONE '2023-01-30 10:49:15.448143+00', 38, '{"total-tables":4,"tables-classified":0}'), +(25283, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 11:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:00:02.305+00', 2162, NULL), +(25284, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 11:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:00:02.306+00', 2196, NULL), +(25285, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:01.065686+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.902195+00', 4836, NULL), +(25286, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:01.079906+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:02.279154+00', 1199, '{"timezone-id":"UTC"}'), +(25287, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:02.285048+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:02.634833+00', 349, '{"updated-tables":0,"total-tables":8}'), +(25288, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:02.636295+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.694127+00', 3057, '{"total-fields":71,"updated-fields":0}'), +(25289, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.694211+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.745116+00', 50, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25290, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.745233+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.902155+00', 156, NULL), +(25291, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.974615+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:06.120332+00', 145, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25292, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:05.974647+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:06.083083+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25293, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:06.083189+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:06.096874+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(25294, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:06.096975+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:19:06.120271+00', 23, '{"total-tables":8,"tables-classified":0}'), +(25295, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:00.869332+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:15.95253+00', 15083, NULL), +(25296, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:00.88154+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:00.912549+00', 31, '{"timezone-id":null}'), +(25297, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:00.921325+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:01.739776+00', 818, '{"updated-tables":0,"total-tables":4}'), +(25298, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:01.740027+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:15.945167+00', 14205, '{"total-fields":39,"updated-fields":0}'), +(25299, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:15.945338+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:15.950851+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25300, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:15.95095+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:15.952471+00', 1, NULL), +(25301, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.178021+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.301545+00', 123, NULL), +(25302, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.178048+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.271088+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25303, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.271168+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.276083+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25304, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.27616+00', TIMESTAMP WITH TIME ZONE '2023-01-30 11:49:16.301488+00', 25, '{"total-tables":4,"tables-classified":0}'), +(25305, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 12:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:00:03.162+00', 2978, NULL), +(25306, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 12:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:00:03.164+00', 2997, NULL), +(25307, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:00.224093+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:04.947138+00', 4723, NULL), +(25308, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:00.228925+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:00.852078+00', 623, '{"timezone-id":"UTC"}'), +(25309, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:00.853821+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:01.575109+00', 721, '{"updated-tables":0,"total-tables":8}'), +(25310, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:01.576213+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:04.570685+00', 2994, '{"total-fields":71,"updated-fields":0}'), +(25311, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:04.570796+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:04.685714+00', 114, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25312, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:04.686408+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:04.947085+00', 260, NULL), +(25313, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.012556+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.126622+00', 114, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25314, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.012588+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.072514+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25315, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.072613+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.088614+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(25316, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.088702+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:19:05.126549+00', 37, '{"total-tables":8,"tables-classified":0}'), +(25317, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:01.0062+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:15.834305+00', 14828, NULL), +(25318, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:01.010592+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:01.023476+00', 12, '{"timezone-id":null}'), +(25319, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:01.028598+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:01.819175+00', 790, '{"updated-tables":0,"total-tables":4}'), +(25320, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:01.819295+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:15.808474+00', 13989, '{"total-fields":39,"updated-fields":0}'), +(25321, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:15.808635+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:15.827135+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25322, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:15.827235+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:15.834238+00', 7, NULL), +(25323, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.025038+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.115378+00', 90, NULL), +(25324, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.025068+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.096549+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25325, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.096631+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.100867+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25326, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.100965+00', TIMESTAMP WITH TIME ZONE '2023-01-30 12:49:16.115286+00', 14, '{"total-tables":4,"tables-classified":0}'), +(25327, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 13:00:00.386+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:00:05.909+00', 5523, NULL), +(25328, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 13:00:00.298+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:00:06.109+00', 5811, NULL), +(25329, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:00.285898+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.165797+00', 4879, NULL), +(25330, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:00.29291+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:00.650559+00', 357, '{"timezone-id":"UTC"}'), +(25331, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:00.650772+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:01.025414+00', 374, '{"updated-tables":0,"total-tables":8}'), +(25332, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:01.025835+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:04.72676+00', 3700, '{"total-fields":71,"updated-fields":0}'), +(25333, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:04.72687+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:04.998498+00', 271, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25334, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:04.998571+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.165756+00', 167, NULL), +(25335, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.269593+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.474809+00', 205, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25336, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.269621+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.402518+00', 132, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25337, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.40262+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.418047+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(25338, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.41814+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:19:05.474558+00', 56, '{"total-tables":8,"tables-classified":0}'), +(25339, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:01.338091+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.597514+00', 14259, NULL), +(25340, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:01.345578+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:01.368834+00', 23, '{"timezone-id":null}'), +(25341, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:01.374306+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:02.251996+00', 877, '{"updated-tables":0,"total-tables":4}'), +(25342, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:02.252395+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.58357+00', 13331, '{"total-fields":39,"updated-fields":0}'), +(25343, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.583699+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.593584+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25344, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.5937+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.597449+00', 3, NULL), +(25345, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.848616+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.976548+00', 127, NULL), +(25346, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.84865+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.951036+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25347, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.951166+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.955551+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25348, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.955638+00', TIMESTAMP WITH TIME ZONE '2023-01-30 13:49:15.976471+00', 20, '{"total-tables":4,"tables-classified":0}'), +(25349, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 14:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:00:01.899+00', 1777, NULL), +(25350, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 14:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:00:02.223+00', 2104, NULL), +(25351, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:00.193941+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:04.987269+00', 4793, NULL), +(25352, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:00.199038+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:01.045246+00', 846, '{"timezone-id":"UTC"}'), +(25353, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:01.046833+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:01.505424+00', 458, '{"updated-tables":0,"total-tables":8}'), +(25354, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:01.506214+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:04.431705+00', 2925, '{"total-fields":71,"updated-fields":0}'), +(25355, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:04.431825+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:04.845279+00', 413, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25356, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:04.848093+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:04.987225+00', 139, NULL), +(25357, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.076683+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.165829+00', 89, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25358, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.076712+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.136462+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25359, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.136568+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.148378+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(25360, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.148496+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:19:05.165779+00', 17, '{"total-tables":8,"tables-classified":0}'), +(25361, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:00.75501+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.645775+00', 16890, NULL), +(25362, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:00.757656+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:00.769956+00', 12, '{"timezone-id":null}'), +(25363, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:00.773854+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:01.469779+00', 695, '{"updated-tables":0,"total-tables":4}'), +(25364, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:01.469968+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.624514+00', 16154, '{"total-fields":39,"updated-fields":0}'), +(25365, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.624651+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.642382+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25366, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.642475+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.645702+00', 3, NULL), +(25367, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.92543+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:18.068436+00', 143, NULL), +(25368, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:17.925471+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:18.028256+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25369, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:18.028357+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:18.036902+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(25370, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:18.037005+00', TIMESTAMP WITH TIME ZONE '2023-01-30 14:49:18.068335+00', 31, '{"total-tables":4,"tables-classified":0}'), +(25371, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 15:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:00:05.983+00', 5839, NULL), +(25372, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 15:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:00:05.984+00', 5865, NULL), +(25373, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:00.581985+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.686025+00', 3104, NULL), +(25374, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:00.590257+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:01.017444+00', 427, '{"timezone-id":"UTC"}'), +(25375, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:01.023087+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:01.436475+00', 413, '{"updated-tables":0,"total-tables":8}'), +(25376, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:01.436713+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.426563+00', 1989, '{"total-fields":71,"updated-fields":0}'), +(25377, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.426709+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.479243+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25378, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.479316+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.68593+00', 206, NULL), +(25379, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.780642+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.940025+00', 159, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25380, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.780669+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.85238+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25381, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.852544+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.871421+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(25382, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.871816+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:19:03.939891+00', 68, '{"total-tables":8,"tables-classified":0}'), +(25383, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:01.265939+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.561918+00', 15295, NULL), +(25384, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:01.292141+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:01.425847+00', 133, '{"timezone-id":null}'), +(25385, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:01.441901+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:02.538602+00', 1096, '{"updated-tables":0,"total-tables":4}'), +(25386, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:02.538972+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.54348+00', 14004, '{"total-fields":39,"updated-fields":0}'), +(25387, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.543604+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.558156+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25388, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.558421+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.561731+00', 3, NULL), +(25389, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.789516+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.907863+00', 118, NULL), +(25390, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.789549+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.875005+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25391, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.875277+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.886674+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(25392, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.886794+00', TIMESTAMP WITH TIME ZONE '2023-01-30 15:49:16.907784+00', 20, '{"total-tables":4,"tables-classified":0}'), +(25393, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 16:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:00:02.746+00', 2582, NULL), +(25394, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 16:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:00:02.747+00', 2608, NULL), +(25395, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:00.289086+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.292607+00', 6003, NULL), +(25396, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:00.295955+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:01.05796+00', 762, '{"timezone-id":"UTC"}'), +(25397, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:01.060855+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:01.530027+00', 469, '{"updated-tables":0,"total-tables":8}'), +(25398, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:01.53017+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.045656+00', 4515, '{"total-fields":71,"updated-fields":0}'), +(25399, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.045779+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.099529+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25400, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.099636+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.292525+00', 192, NULL), +(25401, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.412495+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.581887+00', 169, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25402, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.412532+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.511189+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25403, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.511294+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.529864+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(25404, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.529999+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:19:06.581784+00', 51, '{"total-tables":8,"tables-classified":0}'), +(25405, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:00.737745+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.60721+00', 11869, NULL), +(25406, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:00.741857+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:00.753368+00', 11, '{"timezone-id":null}'), +(25407, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:00.75736+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:01.310347+00', 552, '{"updated-tables":0,"total-tables":4}'), +(25408, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:01.310593+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.590914+00', 11280, '{"total-fields":39,"updated-fields":0}'), +(25409, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.591035+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.601164+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25410, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.601245+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.60714+00', 5, NULL), +(25411, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.738754+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.803753+00', 64, NULL), +(25412, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.738787+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.788147+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25413, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.788314+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.793481+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(25414, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.793618+00', TIMESTAMP WITH TIME ZONE '2023-01-30 16:49:12.803631+00', 10, '{"total-tables":4,"tables-classified":0}'), +(25415, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 17:00:00.391+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:00:05.843+00', 5452, NULL), +(25416, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 17:00:00.391+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:00:06.275+00', 5884, NULL), +(25417, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:00.230206+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:03.883643+00', 3653, NULL), +(25418, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:00.238177+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:00.838095+00', 599, '{"timezone-id":"UTC"}'), +(25419, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:00.8396+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:01.175988+00', 336, '{"updated-tables":0,"total-tables":8}'), +(25420, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:01.176274+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:03.41732+00', 2241, '{"total-fields":71,"updated-fields":0}'), +(25421, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:03.41744+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:03.459276+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25422, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:03.460831+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:03.883598+00', 422, NULL), +(25423, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.072352+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.315894+00', 243, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25424, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.07238+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.265074+00', 192, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25425, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.265189+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.28804+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(25426, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.288127+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:19:04.31582+00', 27, '{"total-tables":8,"tables-classified":0}'), +(25427, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:01.106341+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.735304+00', 14628, NULL), +(25428, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:01.109773+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:01.121633+00', 11, '{"timezone-id":null}'), +(25429, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:01.124606+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:01.885602+00', 760, '{"updated-tables":0,"total-tables":4}'), +(25430, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:01.886077+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.707619+00', 13821, '{"total-fields":39,"updated-fields":0}'), +(25431, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.707778+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.726522+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25432, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.726607+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.735229+00', 8, NULL), +(25433, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.928559+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:16.190325+00', 261, NULL), +(25434, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:15.928594+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:16.151311+00', 222, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25435, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:16.151419+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:16.158144+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(25436, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:16.158239+00', TIMESTAMP WITH TIME ZONE '2023-01-30 17:49:16.190229+00', 31, '{"total-tables":4,"tables-classified":0}'), +(25437, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 18:00:00.191+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:00:01.427+00', 1236, NULL), +(25438, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 18:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:00:01.431+00', 1243, NULL), +(25439, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:00.213093+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.167707+00', 3954, NULL), +(25440, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:00.217421+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:00.520938+00', 303, '{"timezone-id":"UTC"}'), +(25441, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:00.523327+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:00.837681+00', 314, '{"updated-tables":0,"total-tables":8}'), +(25442, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:00.838103+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:03.95136+00', 3113, '{"total-fields":71,"updated-fields":0}'), +(25443, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:03.951477+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:03.99672+00', 45, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25444, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:03.996798+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.16765+00', 170, NULL), +(25445, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.227544+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.327458+00', 99, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25446, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.227597+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.2913+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25447, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.291374+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.307205+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(25448, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.307601+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:19:04.327409+00', 19, '{"total-tables":8,"tables-classified":0}'), +(25449, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:00.742194+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.508687+00', 13766, NULL), +(25450, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:00.748375+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:00.766923+00', 18, '{"timezone-id":null}'), +(25451, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:00.770818+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:01.256538+00', 485, '{"updated-tables":0,"total-tables":4}'), +(25452, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:01.256677+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.490315+00', 13233, '{"total-fields":39,"updated-fields":0}'), +(25453, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.490487+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.503412+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25454, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.503813+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.508568+00', 4, NULL), +(25455, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.845496+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.938986+00', 93, NULL), +(25456, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.84558+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.901115+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25457, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.901205+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.909088+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(25458, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.909217+00', TIMESTAMP WITH TIME ZONE '2023-01-30 18:49:14.938853+00', 29, '{"total-tables":4,"tables-classified":0}'), +(25459, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 19:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:00:02.323+00', 2154, NULL), +(25460, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 19:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:00:02.511+00', 2347, NULL), +(25461, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:00.294183+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.618235+00', 5324, NULL), +(25462, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:00.29948+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:00.937206+00', 637, '{"timezone-id":"UTC"}'), +(25463, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:00.939185+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:01.287696+00', 348, '{"updated-tables":0,"total-tables":8}'), +(25464, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:01.288258+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.304882+00', 4016, '{"total-fields":71,"updated-fields":0}'), +(25465, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.30498+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.35097+00', 45, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25466, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.351044+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.618187+00', 267, NULL), +(25467, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.726961+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.857241+00', 130, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25468, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.726998+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.806746+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25469, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.806847+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.82571+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(25470, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.825794+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:19:05.857184+00', 31, '{"total-tables":8,"tables-classified":0}'), +(25471, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:00.90286+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.428765+00', 12525, NULL), +(25472, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:00.905681+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:00.922934+00', 17, '{"timezone-id":null}'), +(25473, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:00.924148+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:01.38501+00', 460, '{"updated-tables":0,"total-tables":4}'), +(25474, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:01.385095+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.416854+00', 12031, '{"total-fields":39,"updated-fields":0}'), +(25475, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.416984+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.427108+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25476, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.427211+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.428707+00', 1, NULL), +(25477, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.603676+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.654662+00', 50, NULL), +(25478, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.603712+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.639137+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25479, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.639225+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.64467+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(25480, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.644754+00', TIMESTAMP WITH TIME ZONE '2023-01-30 19:49:13.654501+00', 9, '{"total-tables":4,"tables-classified":0}'), +(25481, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 20:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:00:02.184+00', 2025, NULL), +(25482, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 20:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:00:02.438+00', 2279, NULL), +(25483, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:00.329298+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.04858+00', 3719, NULL), +(25484, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:00.335304+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:01.298131+00', 962, '{"timezone-id":"UTC"}'), +(25485, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:01.299951+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:01.758401+00', 458, '{"updated-tables":0,"total-tables":8}'), +(25486, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:01.758886+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:03.790454+00', 2031, '{"total-fields":71,"updated-fields":0}'), +(25487, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:03.790581+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:03.828279+00', 37, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25488, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:03.828357+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.048541+00', 220, NULL), +(25489, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.244491+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.42324+00', 178, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25490, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.244524+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.373442+00', 128, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25491, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.373536+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.394568+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(25492, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.394665+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:19:04.423176+00', 28, '{"total-tables":8,"tables-classified":0}'), +(25493, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:00.656147+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.212209+00', 12556, NULL), +(25494, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:00.658601+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:00.665975+00', 7, '{"timezone-id":null}'), +(25495, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:00.668787+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:01.152935+00', 484, '{"updated-tables":0,"total-tables":4}'), +(25496, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:01.153184+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.195411+00', 12042, '{"total-fields":39,"updated-fields":0}'), +(25497, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.195547+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.20898+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25498, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.209085+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.212144+00', 3, NULL), +(25499, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.368782+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.44859+00', 79, NULL), +(25500, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.368811+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.420303+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25501, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.4205+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.427676+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(25502, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.42778+00', TIMESTAMP WITH TIME ZONE '2023-01-30 20:49:13.448466+00', 20, '{"total-tables":4,"tables-classified":0}'), +(25503, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:00.27+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:02.65+00', 2380, NULL), +(25504, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:00.291+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:02.649+00', 2358, NULL), +(25505, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:03.432148+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:16.11252+00', 12680, NULL), +(25506, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:03.440108+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:07.90168+00', 4461, '{"deleted":0}'), +(25507, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:07.918147+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:00:16.112394+00', 8194, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(25508, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:00.721163+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.09441+00', 5373, NULL), +(25509, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:00.728209+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:01.080565+00', 352, '{"timezone-id":"UTC"}'), +(25510, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:01.083473+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:01.435815+00', 352, '{"updated-tables":0,"total-tables":8}'), +(25511, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:01.436294+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:04.099428+00', 2663, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25512, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:04.099845+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:04.277782+00', 177, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25513, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:04.279122+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.09432+00', 1815, NULL), +(25514, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.382997+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.557463+00', 174, NULL), +(25515, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.383027+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.504224+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25516, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.504322+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.535043+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(25517, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.535143+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:19:06.557319+00', 22, '{"total-tables":8,"tables-classified":0}'), +(25518, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:01.109633+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.121704+00', 16012, NULL), +(25519, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:01.117311+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:01.163746+00', 46, '{"timezone-id":null}'), +(25520, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:01.170533+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:01.995018+00', 824, '{"updated-tables":0,"total-tables":4}'), +(25521, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:01.995547+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.10576+00', 15110, '{"total-fields":39,"updated-fields":0}'), +(25522, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.10597+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.118786+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25523, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.118877+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.121651+00', 2, NULL), +(25524, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.281582+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.383667+00', 102, NULL), +(25525, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.281614+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.351483+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25526, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.351589+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.360921+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(25527, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.361141+00', TIMESTAMP WITH TIME ZONE '2023-01-30 21:49:17.383447+00', 22, '{"total-tables":4,"tables-classified":0}'), +(25528, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 22:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:00:03.269+00', 3175, NULL), +(25529, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 22:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:00:03.02+00', 2914, NULL), +(25530, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:00.397157+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.860695+00', 4463, NULL), +(25531, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:00.402874+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:01.128017+00', 725, '{"timezone-id":"UTC"}'), +(25532, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:01.130557+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:01.547585+00', 417, '{"updated-tables":0,"total-tables":8}'), +(25533, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:01.548064+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.642245+00', 3094, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25534, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.642535+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.693127+00', 50, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25535, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.693221+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.860628+00', 167, NULL), +(25536, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.94357+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:05.098514+00', 154, NULL), +(25537, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:04.943603+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:05.046282+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25538, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:05.046367+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:05.06179+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(25539, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:05.061894+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:19:05.098449+00', 36, '{"total-tables":8,"tables-classified":0}'), +(25540, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:00.960211+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.671322+00', 14711, NULL), +(25541, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:00.966474+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:00.995349+00', 28, '{"timezone-id":null}'), +(25542, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:01.002673+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:01.646262+00', 643, '{"updated-tables":0,"total-tables":4}'), +(25543, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:01.64671+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.665842+00', 14019, '{"total-fields":39,"updated-fields":0}'), +(25544, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.665956+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.669856+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25545, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.669937+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.671267+00', 1, NULL), +(25546, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.74229+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.774016+00', 31, NULL), +(25547, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.742314+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.760305+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25548, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.760398+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.765277+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25549, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.765361+00', TIMESTAMP WITH TIME ZONE '2023-01-30 22:49:15.773953+00', 8, '{"total-tables":4,"tables-classified":0}'), +(25550, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 23:00:00.091+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:00:01.728+00', 1637, NULL), +(25551, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-30 23:00:00.074+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:00:01.729+00', 1655, NULL), +(25552, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:00.159981+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.118061+00', 3958, NULL), +(25553, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:00.160251+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:00.545282+00', 385, '{"timezone-id":"UTC"}'), +(25554, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:00.54573+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:01.007246+00', 461, '{"updated-tables":0,"total-tables":8}'), +(25555, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:01.007601+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:03.606691+00', 2599, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25556, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:03.607263+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:03.676071+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25557, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:03.676142+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.118004+00', 441, NULL), +(25558, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.208544+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.37512+00', 166, NULL), +(25559, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.208573+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.340243+00', 131, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25560, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.340315+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.351279+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(25561, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.351373+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:19:04.375059+00', 23, '{"total-tables":8,"tables-classified":0}'), +(25562, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:00.336183+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.010544+00', 13674, NULL), +(25563, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:00.336697+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:00.342036+00', 5, '{"timezone-id":null}'), +(25564, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:00.343776+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:00.880334+00', 536, '{"updated-tables":0,"total-tables":4}'), +(25565, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:00.880477+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:13.996236+00', 13115, '{"total-fields":39,"updated-fields":0}'), +(25566, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:13.996399+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.007175+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25567, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.007266+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.010445+00', 3, NULL), +(25568, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.167126+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.271902+00', 104, NULL), +(25569, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.167527+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.249935+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25570, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.250061+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.256149+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(25571, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.256287+00', TIMESTAMP WITH TIME ZONE '2023-01-30 23:49:14.271772+00', 15, '{"total-tables":4,"tables-classified":0}'), +(25572, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 00:00:00.263+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:00:11.177+00', 10914, NULL), +(25573, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 00:00:00.236+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:00:12.148+00', 11912, NULL), +(25574, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:00.260235+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.401011+00', 3140, NULL), +(25575, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:00.26439+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:00.536258+00', 271, '{"timezone-id":"UTC"}'), +(25576, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:00.537773+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:00.898574+00', 360, '{"updated-tables":0,"total-tables":8}'), +(25577, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:00.898901+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.149694+00', 2250, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25578, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.14982+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.197894+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25579, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.197983+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.400959+00', 202, NULL), +(25580, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.711435+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.838894+00', 127, NULL), +(25581, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.711473+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.809369+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25582, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.809489+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.820516+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(25583, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.820589+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:19:03.838838+00', 18, '{"total-tables":8,"tables-classified":0}'), +(25584, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:00.63787+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.342562+00', 13704, NULL), +(25585, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:00.639912+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:00.64734+00', 7, '{"timezone-id":null}'), +(25586, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:00.650333+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:01.186494+00', 536, '{"updated-tables":0,"total-tables":4}'), +(25587, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:01.186604+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.336517+00', 13149, '{"total-fields":39,"updated-fields":0}'), +(25588, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.337791+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.340989+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25589, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.341069+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.342498+00', 1, NULL), +(25590, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.479047+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.540554+00', 61, NULL), +(25591, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.47908+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.526989+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25592, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.527077+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.531714+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(25593, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.531794+00', TIMESTAMP WITH TIME ZONE '2023-01-31 00:49:14.540494+00', 8, '{"total-tables":4,"tables-classified":0}'), +(25594, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 01:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:00:03.48+00', 3311, NULL), +(25595, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 01:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:00:03.462+00', 3290, NULL), +(25596, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:00.294604+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.764912+00', 4470, NULL), +(25597, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:00.299763+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:00.98646+00', 686, '{"timezone-id":"UTC"}'), +(25598, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:00.988404+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:01.330751+00', 342, '{"updated-tables":0,"total-tables":8}'), +(25599, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:01.331128+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.54999+00', 3218, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25600, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.550185+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.62902+00', 78, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25601, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.629113+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.764878+00', 135, NULL), +(25602, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.825447+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.919825+00', 94, NULL), +(25603, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.825476+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.895667+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25604, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.895743+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.9054+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(25605, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.905473+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:19:04.919772+00', 14, '{"total-tables":8,"tables-classified":0}'), +(25606, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:02.543613+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:36.773773+00', 34230, NULL), +(25607, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:02.548797+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:02.557523+00', 8, '{"timezone-id":null}'), +(25608, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:02.557662+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:03.800232+00', 1242, '{"updated-tables":0,"total-tables":4}'), +(25609, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:03.80034+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:36.741432+00', 32941, '{"total-fields":39,"updated-fields":0}'), +(25610, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:36.741581+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:36.764669+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25611, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:36.764843+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:36.773704+00', 8, NULL), +(25612, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.214914+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.435554+00', 220, NULL), +(25613, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.214948+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.388928+00', 173, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25614, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.38912+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.401972+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(25615, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.402198+00', TIMESTAMP WITH TIME ZONE '2023-01-31 01:49:37.435472+00', 33, '{"total-tables":4,"tables-classified":0}'), +(25616, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:01.583+00', 1433, NULL), +(25617, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:01.581+00', 1418, NULL), +(25618, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:02.138199+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:16.688499+00', 14550, NULL), +(25619, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:02.146156+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:03.846764+00', 1700, '{"deleted":0}'), +(25620, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:03.851493+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:00:16.688359+00', 12836, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(25621, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:00.530838+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.332009+00', 8801, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25622, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:00.532732+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:02.566351+00', 2033, '{"timezone-id":"UTC"}'), +(25623, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:02.575302+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:03.774455+00', 1199, '{"updated-tables":0,"total-tables":8}'), +(25624, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:03.774592+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:08.295958+00', 4521, '{"total-fields":71,"updated-fields":0}'), +(25625, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:08.296083+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:08.709382+00', 413, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25626, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:08.70991+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.331924+00', 622, NULL), +(25627, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.546574+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.847704+00', 301, NULL), +(25628, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.546607+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.744087+00', 197, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25629, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.74421+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.797931+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(25630, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.798158+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:19:09.847628+00', 49, '{"total-tables":8,"tables-classified":0}'), +(25631, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:00.477402+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.503404+00', 21026, NULL), +(25632, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:00.477442+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:00.504194+00', 26, '{"timezone-id":null}'), +(25633, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:00.506679+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:01.871297+00', 1364, '{"updated-tables":0,"total-tables":4}'), +(25634, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:01.873981+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.485835+00', 19611, '{"total-fields":39,"updated-fields":0}'), +(25635, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.486003+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.498903+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25636, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.499081+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.503343+00', 4, NULL), +(25637, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.879106+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.993411+00', 114, NULL), +(25638, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.879139+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.955077+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25639, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.955183+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.966656+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(25640, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.966742+00', TIMESTAMP WITH TIME ZONE '2023-01-31 02:49:21.993342+00', 26, '{"total-tables":4,"tables-classified":0}'), +(25641, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 03:00:00.65+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:00:12.261+00', 11611, NULL), +(25642, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 03:00:00.65+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:00:12.856+00', 12206, NULL), +(25643, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:00.526335+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.480818+00', 12954, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25644, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:00.546207+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:02.3111+00', 1764, '{"timezone-id":"UTC"}'), +(25645, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:02.31451+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:03.674343+00', 1359, '{"updated-tables":0,"total-tables":8}'), +(25646, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:03.676167+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:12.851881+00', 9175, '{"total-fields":71,"updated-fields":0}'), +(25647, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:12.852015+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.016816+00', 164, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25648, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.0169+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.480781+00', 463, NULL), +(25649, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.779424+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:14.183771+00', 404, NULL), +(25650, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.779458+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.963503+00', 184, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25651, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.963575+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:13.999573+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(25652, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:14.002461+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:19:14.183708+00', 181, '{"total-tables":8,"tables-classified":0}'), +(25653, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:00.691068+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.305043+00', 29613, NULL), +(25654, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:00.691139+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:00.696546+00', 5, '{"timezone-id":null}'), +(25655, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:00.696673+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:02.015658+00', 1318, '{"updated-tables":0,"total-tables":4}'), +(25656, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:02.015752+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.295233+00', 28279, '{"total-fields":39,"updated-fields":0}'), +(25657, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.295445+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.301495+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25658, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.301708+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.304897+00', 3, NULL), +(25659, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.486823+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.71781+00', 230, NULL), +(25660, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.486846+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.581118+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25661, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.581241+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.598501+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(25662, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.598588+00', TIMESTAMP WITH TIME ZONE '2023-01-31 03:49:30.716147+00', 117, '{"total-tables":4,"tables-classified":0}'), +(25663, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 04:00:00.549+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:00:16.595+00', 16046, NULL), +(25664, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 04:00:00.521+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:00:16.612+00', 16091, NULL), +(25665, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:00.973196+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.075667+00', 13102, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25666, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:00.987828+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:03.192754+00', 2204, '{"timezone-id":"UTC"}'), +(25667, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:03.201175+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:04.454762+00', 1253, '{"updated-tables":0,"total-tables":8}'), +(25668, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:04.454903+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:13.617111+00', 9162, '{"total-fields":71,"updated-fields":0}'), +(25669, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:13.617286+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:13.775934+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25670, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:13.77606+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.075609+00', 299, NULL), +(25671, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.284682+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.58969+00', 305, NULL), +(25672, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.284711+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.505514+00', 220, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25673, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.505989+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.534799+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(25674, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.534874+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:19:14.589641+00', 54, '{"total-tables":8,"tables-classified":0}'), +(25675, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:01.387315+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.041483+00', 34654, NULL), +(25676, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:01.389229+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:01.404102+00', 14, '{"timezone-id":null}'), +(25677, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:01.404671+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:03.481832+00', 2077, '{"updated-tables":0,"total-tables":4}'), +(25678, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:03.481963+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.034983+00', 32553, '{"total-fields":39,"updated-fields":0}'), +(25679, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.035377+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.03932+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25680, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.039458+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.041443+00', 1, NULL), +(25681, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.550528+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.864041+00', 313, NULL), +(25682, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.550574+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.791343+00', 240, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25683, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.791423+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.826648+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(25684, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.826857+00', TIMESTAMP WITH TIME ZONE '2023-01-31 04:49:36.863946+00', 37, '{"total-tables":4,"tables-classified":0}'), +(25685, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 05:00:00.262+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:00:17.064+00', 16802, NULL), +(25686, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 05:00:00.354+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:00:17.06+00', 16706, NULL), +(25687, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:01.028329+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:13.175816+00', 12147, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25688, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:01.040586+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:03.291616+00', 2251, '{"timezone-id":"UTC"}'), +(25689, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:03.30123+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:04.641173+00', 1339, '{"updated-tables":0,"total-tables":8}'), +(25690, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:04.641398+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:12.793843+00', 8152, '{"total-fields":71,"updated-fields":0}'), +(25691, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:12.794173+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:12.89319+00', 99, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25692, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:12.893499+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:13.175761+00', 282, NULL), +(25693, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:13.575153+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:15.208168+00', 1633, NULL), +(25694, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:13.575184+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:15.113377+00', 1538, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25695, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:15.113449+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:15.152913+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(25696, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:15.15311+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:19:15.208102+00', 54, '{"total-tables":8,"tables-classified":0}'), +(25697, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:04.129792+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:27.978216+00', 23848, NULL), +(25698, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:04.131351+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:04.136773+00', 5, '{"timezone-id":null}'), +(25699, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:04.136886+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:06.009105+00', 1872, '{"updated-tables":0,"total-tables":4}'), +(25700, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:06.009183+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:27.937717+00', 21928, '{"total-fields":39,"updated-fields":0}'), +(25701, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:27.937863+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:27.965307+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25702, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:27.965398+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:27.978138+00', 12, NULL), +(25703, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.489108+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.749077+00', 259, NULL), +(25704, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.489136+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.692466+00', 203, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25705, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.692601+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.711231+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(25706, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.711337+00', TIMESTAMP WITH TIME ZONE '2023-01-31 05:49:28.748984+00', 37, '{"total-tables":4,"tables-classified":0}'), +(25707, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 06:00:00.394+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:00:05.404+00', 5010, NULL), +(25708, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 06:00:00.367+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:00:05.665+00', 5298, NULL), +(25709, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:00.629592+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.674089+00', 9044, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25710, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:00.64142+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:02.782025+00', 2140, '{"timezone-id":"UTC"}'), +(25711, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:02.792579+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:03.967841+00', 1175, '{"updated-tables":0,"total-tables":8}'), +(25712, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:03.968219+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.320761+00', 5352, '{"total-fields":71,"updated-fields":0}'), +(25713, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.320885+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.435309+00', 114, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25714, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.435389+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.674018+00', 238, NULL), +(25715, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.992574+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:10.355959+00', 363, NULL), +(25716, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:09.992645+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:10.24741+00', 254, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25717, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:10.247521+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:10.279038+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(25718, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:10.279133+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:19:10.355852+00', 76, '{"total-tables":8,"tables-classified":0}'), +(25719, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:02.96851+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:44.195283+00', 41226, NULL), +(25720, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:03.004575+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:03.217269+00', 212, '{"timezone-id":null}'), +(25721, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:03.260601+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:05.156601+00', 1896, '{"updated-tables":0,"total-tables":4}'), +(25722, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:05.157439+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:44.082837+00', 38925, '{"total-fields":39,"updated-fields":0}'), +(25723, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:44.086311+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:44.165075+00', 78, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25724, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:44.165213+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:44.195041+00', 29, NULL), +(25725, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.066568+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.698568+00', 632, NULL), +(25726, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.068285+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.568713+00', 500, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25727, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.571408+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.60979+00', 38, '{"fields-classified":0,"fields-failed":0}'), +(25728, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.60995+00', TIMESTAMP WITH TIME ZONE '2023-01-31 06:49:47.698401+00', 88, '{"total-tables":4,"tables-classified":0}'), +(25729, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 07:00:00.733+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:00:14.4+00', 13667, NULL), +(25730, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 07:00:00.724+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:00:15.367+00', 14643, NULL), +(25731, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:00.600559+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:09.885474+00', 9284, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25732, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:00.631715+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:02.369196+00', 1737, '{"timezone-id":"UTC"}'), +(25733, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:02.37659+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:03.546146+00', 1169, '{"updated-tables":0,"total-tables":8}'), +(25734, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:03.54625+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:09.137528+00', 5591, '{"total-fields":71,"updated-fields":0}'), +(25735, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:09.137605+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:09.402545+00', 264, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25736, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:09.402631+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:09.885418+00', 482, NULL), +(25737, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:10.183823+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:11.021461+00', 837, NULL), +(25738, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:10.183872+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:10.475407+00', 291, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25739, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:10.47553+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:10.555821+00', 80, '{"fields-classified":0,"fields-failed":0}'), +(25740, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:10.555904+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:11.021386+00', 465, '{"total-tables":8,"tables-classified":0}'), +(25741, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:01.02823+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:35.268517+00', 34240, NULL), +(25742, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:01.031318+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:01.054662+00', 23, '{"timezone-id":null}'), +(25743, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:01.056821+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:01.855387+00', 798, '{"updated-tables":0,"total-tables":4}'), +(25744, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:01.856032+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:35.204585+00', 33348, '{"total-fields":39,"updated-fields":0}'), +(25745, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:35.204711+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:35.242457+00', 37, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25746, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:35.242534+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:35.268409+00', 25, NULL), +(25747, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.422241+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.536293+00', 114, NULL), +(25748, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.422268+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.505982+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25749, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.506054+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.519913+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(25750, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.519995+00', TIMESTAMP WITH TIME ZONE '2023-01-31 07:49:36.536193+00', 16, '{"total-tables":4,"tables-classified":0}'), +(25751, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 08:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:00:00.439+00', 325, NULL), +(25752, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 08:00:00.474+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:00:03.387+00', 2913, NULL), +(25753, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:03.561799+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:23.587327+00', 20025, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25754, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:03.602722+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:06.469352+00', 2866, '{"timezone-id":"UTC"}'), +(25755, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:06.487975+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:08.133354+00', 1645, '{"updated-tables":0,"total-tables":8}'), +(25756, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:08.133805+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:19.082134+00', 10948, '{"total-fields":71,"updated-fields":0}'), +(25757, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:19.082264+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:19.632701+00', 550, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25758, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:19.634637+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:23.587272+00', 3952, NULL), +(25759, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:24.708371+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:26.680136+00', 1971, NULL), +(25760, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:24.708396+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:25.694578+00', 986, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25761, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:25.696644+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:25.828617+00', 131, '{"fields-classified":0,"fields-failed":0}'), +(25762, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:25.828777+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:19:26.68005+00', 851, '{"total-tables":8,"tables-classified":0}'), +(25763, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:03.153215+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.476971+00', 42323, NULL), +(25764, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:03.162685+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:03.210418+00', 47, '{"timezone-id":null}'), +(25765, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:03.215991+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:09.464015+00', 6248, '{"updated-tables":0,"total-tables":4}'), +(25766, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:09.466064+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.393946+00', 35927, '{"total-fields":39,"updated-fields":0}'), +(25767, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.3941+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.463296+00', 69, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25768, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.463385+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.476903+00', 13, NULL), +(25769, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.815694+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:46.056866+00', 241, NULL), +(25770, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.815719+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.978351+00', 162, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25771, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.978607+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.993967+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(25772, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:45.994044+00', TIMESTAMP WITH TIME ZONE '2023-01-31 08:49:46.056788+00', 62, '{"total-tables":4,"tables-classified":0}'), +(25773, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 09:00:03.235+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:00:16.435+00', 13200, NULL), +(25774, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 09:00:03.022+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:00:17.057+00', 14035, NULL), +(25775, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:02.523539+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:18.861061+00', 16337, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25776, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:02.59171+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:04.983012+00', 2391, '{"timezone-id":"UTC"}'), +(25777, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:04.998147+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:06.170237+00', 1172, '{"updated-tables":0,"total-tables":8}'), +(25778, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:06.174936+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:16.48469+00', 10309, '{"total-fields":71,"updated-fields":0}'), +(25779, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:16.485071+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:16.909547+00', 424, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25780, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:16.911109+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:18.860748+00', 1949, NULL), +(25781, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:19.756261+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:21.215458+00', 1459, NULL), +(25782, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:19.756305+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:20.628486+00', 872, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25783, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:20.63+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:21.021383+00', 391, '{"fields-classified":0,"fields-failed":0}'), +(25784, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:21.024752+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:19:21.215335+00', 190, '{"total-tables":8,"tables-classified":0}'), +(25785, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:02.749706+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.420586+00', 28670, NULL), +(25786, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:02.786782+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:02.941629+00', 154, '{"timezone-id":null}'), +(25787, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:02.956334+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:04.723988+00', 1767, '{"updated-tables":0,"total-tables":4}'), +(25788, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:04.724097+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.364442+00', 26640, '{"total-fields":39,"updated-fields":0}'), +(25789, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.364577+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.405525+00', 40, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25790, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.405618+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.420504+00', 14, NULL), +(25791, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.867452+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:32.166171+00', 298, NULL), +(25792, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:31.867481+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:32.035019+00', 167, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25793, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:32.035142+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:32.073657+00', 38, '{"fields-classified":0,"fields-failed":0}'), +(25794, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:32.073797+00', TIMESTAMP WITH TIME ZONE '2023-01-31 09:49:32.166101+00', 92, '{"total-tables":4,"tables-classified":0}'), +(25795, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 10:00:00.498+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:00:08.582+00', 8084, NULL), +(25796, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 10:00:00.46+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:00:08.794+00', 8334, NULL), +(25797, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:00.823895+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:05.675252+00', 4851, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25798, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:00.833573+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:03.067238+00', 2233, '{"timezone-id":"UTC"}'), +(25799, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:03.074964+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:03.742187+00', 667, '{"updated-tables":0,"total-tables":8}'), +(25800, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:03.742336+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:05.19557+00', 1453, '{"total-fields":71,"updated-fields":0}'), +(25801, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:05.195718+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:05.310263+00', 114, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25802, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:05.310675+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:05.675173+00', 364, NULL), +(25803, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:07.550553+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:08.203698+00', 653, NULL), +(25804, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:07.550574+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:08.109372+00', 558, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25805, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:08.109612+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:08.143932+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(25806, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:08.144154+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:19:08.2036+00', 59, '{"total-tables":8,"tables-classified":0}'), +(25807, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:00.611271+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:40.348462+00', 39737, NULL), +(25808, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:00.620489+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:00.639737+00', 19, '{"timezone-id":null}'), +(25809, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:00.644275+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:01.463458+00', 819, '{"updated-tables":0,"total-tables":4}'), +(25810, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:01.464125+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:40.286899+00', 38822, '{"total-fields":39,"updated-fields":0}'), +(25811, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:40.287134+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:40.33684+00', 49, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25812, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:40.337164+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:40.348045+00', 10, NULL), +(25813, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:43.356998+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:45.057167+00', 1700, NULL), +(25814, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:43.368103+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:44.771721+00', 1403, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25815, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:44.774352+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:44.840318+00', 65, '{"fields-classified":0,"fields-failed":0}'), +(25816, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:44.84131+00', TIMESTAMP WITH TIME ZONE '2023-01-31 10:49:45.057085+00', 215, '{"total-tables":4,"tables-classified":0}'), +(25817, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 11:00:00.852+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:00:12.604+00', 11752, NULL), +(25818, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 11:00:00.529+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:00:14.333+00', 13804, NULL), +(25819, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:01.859987+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.122212+00', 27262, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25820, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:01.88022+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:04.957576+00', 3077, '{"timezone-id":"UTC"}'), +(25821, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:04.986589+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:08.908494+00', 3921, '{"updated-tables":0,"total-tables":8}'), +(25822, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:08.91082+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:28.123272+00', 19212, '{"total-fields":71,"updated-fields":0}'), +(25823, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:28.123615+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:28.447821+00', 324, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25824, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:28.447891+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.122178+00', 674, NULL), +(25825, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.514516+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.84922+00', 334, NULL), +(25826, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.514539+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.733717+00', 219, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25827, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.733791+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.755363+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(25828, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.755441+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:19:29.84917+00', 93, '{"total-tables":8,"tables-classified":0}'), +(25829, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:02.952352+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.208146+00', 35255, NULL), +(25830, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:02.957706+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:03.018602+00', 60, '{"timezone-id":null}'), +(25831, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:03.02503+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:05.17158+00', 2146, '{"updated-tables":0,"total-tables":4}'), +(25832, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:05.171662+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.178498+00', 33006, '{"total-fields":39,"updated-fields":0}'), +(25833, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.178596+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.183096+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25834, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.183375+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.207697+00', 24, NULL), +(25835, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.92184+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:39.286653+00', 364, NULL), +(25836, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:38.921867+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:39.243632+00', 321, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25837, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:39.243725+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:39.254038+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(25838, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:39.254125+00', TIMESTAMP WITH TIME ZONE '2023-01-31 11:49:39.286586+00', 32, '{"total-tables":4,"tables-classified":0}'), +(25839, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 12:00:00.556+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:00:06.331+00', 5775, NULL), +(25840, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 12:00:00.54+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:00:06.513+00', 5973, NULL), +(25841, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:01.290213+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:15.989039+00', 14698, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25842, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:01.302115+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:03.444909+00', 2142, '{"timezone-id":"UTC"}'), +(25843, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:03.451586+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:05.22039+00', 1768, '{"updated-tables":0,"total-tables":8}'), +(25844, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:05.222756+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:13.422754+00', 8199, '{"total-fields":71,"updated-fields":0}'), +(25845, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:13.422862+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:15.345408+00', 1922, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25846, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:15.347691+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:15.988888+00', 641, NULL), +(25847, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.147818+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.510211+00', 362, NULL), +(25848, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.14784+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.347638+00', 199, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25849, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.347703+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.401627+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(25850, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.401693+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:19:16.510166+00', 108, '{"total-tables":8,"tables-classified":0}'), +(25851, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:00.263191+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.77409+00', 43510, NULL), +(25852, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:00.263667+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:00.26632+00', 2, '{"timezone-id":null}'), +(25853, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:00.266898+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:01.090545+00', 823, '{"updated-tables":0,"total-tables":4}'), +(25854, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:01.091395+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.768686+00', 42677, '{"total-fields":39,"updated-fields":0}'), +(25855, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.768765+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.773409+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25856, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.773497+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.774065+00', 0, NULL), +(25857, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.823299+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.978981+00', 155, NULL), +(25858, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.823319+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.839538+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25859, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.839607+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.843228+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(25860, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.843293+00', TIMESTAMP WITH TIME ZONE '2023-01-31 12:49:43.978919+00', 135, '{"total-tables":4,"tables-classified":0}'), +(25861, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 13:00:00.399+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:00:08.927+00', 8528, NULL), +(25862, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 13:00:00.38+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:00:09.583+00', 9203, NULL), +(25863, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:01.986849+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:08.940756+00', 6953, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25864, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:02.006226+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:03.824748+00', 1818, '{"timezone-id":"UTC"}'), +(25865, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:03.832975+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:04.745748+00', 912, '{"updated-tables":0,"total-tables":8}'), +(25866, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:04.745861+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:08.202559+00', 3456, '{"total-fields":71,"updated-fields":0}'), +(25867, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:08.202639+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:08.343391+00', 140, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25868, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:08.343474+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:08.940523+00', 597, NULL), +(25869, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.204649+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.815382+00', 610, NULL), +(25870, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.204669+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.629711+00', 425, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25871, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.629799+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.743335+00', 113, '{"fields-classified":0,"fields-failed":0}'), +(25872, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.743431+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:19:10.815203+00', 71, '{"total-tables":8,"tables-classified":0}'), +(25873, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:01.889128+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:35.825741+00', 33936, NULL), +(25874, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:01.890586+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:01.974519+00', 83, '{"timezone-id":null}'), +(25875, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:01.985541+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:05.822936+00', 3837, '{"updated-tables":0,"total-tables":4}'), +(25876, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:05.823037+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:35.756476+00', 29933, '{"total-fields":39,"updated-fields":0}'), +(25877, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:35.756603+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:35.820963+00', 64, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25878, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:35.821074+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:35.825536+00', 4, NULL), +(25879, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:36.756331+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:37.141232+00', 384, NULL), +(25880, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:36.756351+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:37.054293+00', 297, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25881, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:37.054383+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:37.085403+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(25882, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:37.085509+00', TIMESTAMP WITH TIME ZONE '2023-01-31 13:49:37.141164+00', 55, '{"total-tables":4,"tables-classified":0}'), +(25883, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 14:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:00:15.099+00', 14903, NULL), +(25884, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 14:00:00.288+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:00:15.099+00', 14811, NULL), +(25885, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:00.598053+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.29858+00', 11700, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25886, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:00.614866+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:01.756212+00', 1141, '{"timezone-id":"UTC"}'), +(25887, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:01.757342+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:02.816818+00', 1059, '{"updated-tables":0,"total-tables":8}'), +(25888, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:02.819223+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:11.888525+00', 9069, '{"total-fields":71,"updated-fields":0}'), +(25889, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:11.888826+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.06226+00', 173, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25890, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.062442+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.298551+00', 236, NULL), +(25891, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.480943+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.726088+00', 245, NULL), +(25892, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.480973+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.632955+00', 151, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25893, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.63304+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.662375+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(25894, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.662624+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:19:12.726007+00', 63, '{"total-tables":8,"tables-classified":0}'), +(25895, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:04.004762+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:40.935471+00', 36930, NULL), +(25896, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:04.013769+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:04.141173+00', 127, '{"timezone-id":null}'), +(25897, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:04.155083+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:06.574959+00', 2419, '{"updated-tables":0,"total-tables":4}'), +(25898, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:06.57513+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:40.909034+00', 34333, '{"total-fields":39,"updated-fields":0}'), +(25899, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:40.909146+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:40.92763+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25900, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:40.927769+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:40.935361+00', 7, NULL), +(25901, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:41.84333+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:42.335215+00', 491, NULL), +(25902, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:41.843353+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:42.212493+00', 369, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25903, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:42.212596+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:42.236214+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(25904, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:42.23628+00', TIMESTAMP WITH TIME ZONE '2023-01-31 14:49:42.335151+00', 98, '{"total-tables":4,"tables-classified":0}'), +(25905, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 15:00:00.774+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:00:12.648+00', 11874, NULL), +(25906, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 15:00:00.714+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:00:13.423+00', 12709, NULL), +(25907, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:01.56447+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:23.457491+00', 21893, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25908, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:01.578578+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:03.652284+00', 2073, '{"timezone-id":"UTC"}'), +(25909, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:03.65641+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:05.237777+00', 1581, '{"updated-tables":0,"total-tables":8}'), +(25910, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:05.23904+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:18.303446+00', 13064, '{"total-fields":71,"updated-fields":0}'), +(25911, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:18.30355+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:18.78814+00', 484, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25912, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:18.788225+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:23.457456+00', 4669, NULL), +(25913, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:23.907072+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:24.736564+00', 829, NULL), +(25914, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:23.907095+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:24.485624+00', 578, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25915, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:24.485706+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:24.54704+00', 61, '{"fields-classified":0,"fields-failed":0}'), +(25916, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:24.547102+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:19:24.736498+00', 189, '{"total-tables":8,"tables-classified":0}'), +(25917, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:01.18974+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:28.941532+00', 27751, NULL), +(25918, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:01.190857+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:01.203785+00', 12, '{"timezone-id":null}'), +(25919, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:01.207791+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:02.930263+00', 1722, '{"updated-tables":0,"total-tables":4}'), +(25920, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:02.930359+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:28.936086+00', 26005, '{"total-fields":39,"updated-fields":0}'), +(25921, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:28.936228+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:28.938281+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25922, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:28.938416+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:28.941478+00', 3, NULL), +(25923, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.429395+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.560698+00', 131, NULL), +(25924, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.429418+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.525636+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25925, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.533592+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.541372+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(25926, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.541435+00', TIMESTAMP WITH TIME ZONE '2023-01-31 15:49:29.560653+00', 19, '{"total-tables":4,"tables-classified":0}'), +(25927, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 16:00:00.334+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:00:09.709+00', 9375, NULL), +(25928, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 16:00:00.379+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:00:09.534+00', 9155, NULL), +(25929, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:00.749921+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.002066+00', 18252, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25930, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:00.849964+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:02.668496+00', 1818, '{"timezone-id":"UTC"}'), +(25931, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:02.678305+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:04.198694+00', 1520, '{"updated-tables":0,"total-tables":8}'), +(25932, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:04.199175+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:16.481834+00', 12282, '{"total-fields":71,"updated-fields":0}'), +(25933, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:16.483682+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:16.692857+00', 209, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25934, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:16.692945+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.00203+00', 2309, NULL), +(25935, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.342293+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.748969+00', 406, NULL), +(25936, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.342316+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.631621+00', 289, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25937, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.631715+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.681204+00', 49, '{"fields-classified":0,"fields-failed":0}'), +(25938, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.681306+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:19:19.748913+00', 67, '{"total-tables":8,"tables-classified":0}'), +(25939, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:03.669628+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:50.019804+00', 46350, NULL), +(25940, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:03.672566+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:03.695639+00', 23, '{"timezone-id":null}'), +(25941, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:03.704727+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:05.815493+00', 2110, '{"updated-tables":0,"total-tables":4}'), +(25942, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:05.815672+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:49.895446+00', 44079, '{"total-fields":39,"updated-fields":0}'), +(25943, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:49.895799+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:49.978294+00', 82, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25944, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:49.978376+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:50.019745+00', 41, NULL), +(25945, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.386203+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.65385+00', 267, NULL), +(25946, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.386231+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.574318+00', 188, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25947, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.575474+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.60013+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(25948, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.600206+00', TIMESTAMP WITH TIME ZONE '2023-01-31 16:49:51.653771+00', 53, '{"total-tables":4,"tables-classified":0}'), +(25949, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 17:00:00.33+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:00:07.151+00', 6821, NULL), +(25950, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 17:00:00.288+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:00:07.551+00', 7263, NULL), +(25951, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:01.909043+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:24.738418+00', 22829, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25952, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:01.920661+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:05.895443+00', 3974, '{"timezone-id":"UTC"}'), +(25953, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:05.909166+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:07.615537+00', 1706, '{"updated-tables":0,"total-tables":8}'), +(25954, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:07.618581+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:23.852621+00', 16234, '{"total-fields":71,"updated-fields":0}'), +(25955, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:23.855336+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:24.338027+00', 482, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25956, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:24.338133+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:24.738391+00', 400, NULL), +(25957, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.54264+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.900149+00', 357, NULL), +(25958, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.542667+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.79941+00', 256, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25959, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.799479+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.830743+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(25960, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.830876+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:19:26.900099+00', 69, '{"total-tables":8,"tables-classified":0}'), +(25961, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:01.615965+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:43.717655+00', 42101, NULL), +(25962, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:01.616162+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:01.628489+00', 12, '{"timezone-id":null}'), +(25963, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:01.628593+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:04.035797+00', 2407, '{"updated-tables":0,"total-tables":4}'), +(25964, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:04.035904+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:43.709593+00', 39673, '{"total-fields":39,"updated-fields":0}'), +(25965, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:43.709778+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:43.713591+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25966, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:43.713783+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:43.717459+00', 3, NULL), +(25967, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.016208+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.13418+00', 117, NULL), +(25968, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.016229+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.105705+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25969, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.10582+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.122276+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(25970, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.122393+00', TIMESTAMP WITH TIME ZONE '2023-01-31 17:49:44.134127+00', 11, '{"total-tables":4,"tables-classified":0}'), +(25971, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 18:00:00.786+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:00:13.901+00', 13115, NULL), +(25972, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 18:00:00.734+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:00:15.005+00', 14271, NULL), +(25973, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:01.131162+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:20.955598+00', 19824, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25974, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:01.151526+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:02.300036+00', 1148, '{"timezone-id":"UTC"}'), +(25975, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:02.308468+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:03.912275+00', 1603, '{"updated-tables":0,"total-tables":8}'), +(25976, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:03.913213+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:20.020251+00', 16107, '{"total-fields":71,"updated-fields":0}'), +(25977, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:20.020349+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:20.497954+00', 477, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(25978, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:20.498034+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:20.955525+00', 457, NULL), +(25979, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:21.373682+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:22.236096+00', 862, NULL), +(25980, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:21.373733+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:21.831027+00', 457, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25981, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:21.831104+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:22.100669+00', 269, '{"fields-classified":0,"fields-failed":0}'), +(25982, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:22.102135+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:19:22.235992+00', 133, '{"total-tables":8,"tables-classified":0}'), +(25983, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:01.943934+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:45.785485+00', 43841, NULL), +(25984, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:01.951603+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:01.978105+00', 26, '{"timezone-id":null}'), +(25985, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:01.988044+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:03.997144+00', 2009, '{"updated-tables":0,"total-tables":4}'), +(25986, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:03.997311+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:45.742603+00', 41745, '{"total-fields":39,"updated-fields":0}'), +(25987, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:45.743441+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:45.776858+00', 33, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(25988, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:45.776946+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:45.785427+00', 8, NULL), +(25989, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.536475+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.759538+00', 223, NULL), +(25990, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.536496+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.690196+00', 153, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(25991, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.690284+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.701958+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(25992, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.702024+00', TIMESTAMP WITH TIME ZONE '2023-01-31 18:49:46.75947+00', 57, '{"total-tables":4,"tables-classified":0}'), +(25993, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 19:00:00.338+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:00:10.681+00', 10343, NULL), +(25994, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 19:00:00.289+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:00:11.115+00', 10826, NULL), +(25995, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:03.42657+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:31.579522+00', 28152, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(25996, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:03.439373+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:07.439695+00', 4000, '{"timezone-id":"UTC"}'), +(25997, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:07.456589+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:10.311255+00', 2854, '{"updated-tables":0,"total-tables":8}'), +(25998, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:10.313771+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:27.285738+00', 16971, '{"total-fields":71,"updated-fields":0}'), +(25999, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:27.285817+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:27.96777+00', 681, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26000, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:27.968012+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:31.57948+00', 3611, NULL), +(26001, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:32.282413+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:33.020901+00', 738, NULL), +(26002, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:32.28249+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:32.786713+00', 504, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26003, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:32.786828+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:32.871575+00', 84, '{"fields-classified":0,"fields-failed":0}'), +(26004, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:32.871717+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:19:33.020852+00', 149, '{"total-tables":8,"tables-classified":0}'), +(26005, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:02.578344+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.470295+00', 37891, NULL), +(26006, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:02.590884+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:02.61163+00', 20, '{"timezone-id":null}'), +(26007, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:02.613504+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:04.762259+00', 2148, '{"updated-tables":0,"total-tables":4}'), +(26008, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:04.762357+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.444307+00', 35681, '{"total-fields":39,"updated-fields":0}'), +(26009, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.444407+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.460288+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26010, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.460455+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.470235+00', 9, NULL), +(26011, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.776834+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.934885+00', 158, NULL), +(26012, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.776856+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.902267+00', 125, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26013, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.902623+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.913117+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(26014, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.91319+00', TIMESTAMP WITH TIME ZONE '2023-01-31 19:49:40.93482+00', 21, '{"total-tables":4,"tables-classified":0}'), +(26015, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 20:00:00.488+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:00:11.257+00', 10769, NULL), +(26016, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 20:00:00.486+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:00:11.987+00', 11501, NULL), +(26017, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:03.222008+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:03.39761+00', 60175, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26018, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:03.302874+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:09.756732+00', 6453, '{"timezone-id":"UTC"}'), +(26019, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:09.810059+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:16.941079+00', 7131, '{"updated-tables":0,"total-tables":8}'), +(26020, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:16.944013+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:55.18597+00', 38241, '{"total-fields":71,"updated-fields":0}'), +(26021, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:55.186071+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:55.886739+00', 700, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26022, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:19:55.886788+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:03.397537+00', 7510, NULL), +(26023, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.447154+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.962857+00', 515, NULL), +(26024, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.447177+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.766928+00', 319, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26025, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.766993+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.863788+00', 96, '{"fields-classified":0,"fields-failed":0}'), +(26026, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.863968+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:20:05.962792+00', 98, '{"total-tables":8,"tables-classified":0}'), +(26027, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:00.659037+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.590898+00', 23931, NULL), +(26028, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:00.659068+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:00.676207+00', 17, '{"timezone-id":null}'), +(26029, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:00.676318+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:02.015084+00', 1338, '{"updated-tables":0,"total-tables":4}'), +(26030, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:02.015386+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.581736+00', 22566, '{"total-fields":39,"updated-fields":0}'), +(26031, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.581828+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.586645+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26032, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.586721+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.590834+00', 4, NULL), +(26033, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.885552+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.977215+00', 91, NULL), +(26034, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.885579+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.95452+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26035, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.954611+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.960951+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26036, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.961068+00', TIMESTAMP WITH TIME ZONE '2023-01-31 20:49:24.977121+00', 16, '{"total-tables":4,"tables-classified":0}'), +(26037, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:00.593+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:08.065+00', 7472, NULL), +(26038, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:00.503+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:08.065+00', 7562, NULL), +(26039, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:08.828552+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:30.179285+00', 21350, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26040, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:08.847702+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:14.007366+00', 5159, '{"deleted":0}'), +(26041, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:14.015194+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:00:30.179207+00', 16164, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(26042, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:00.577719+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:06.638936+00', 6061, NULL), +(26043, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:00.589417+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:01.150439+00', 561, '{"timezone-id":"UTC"}'), +(26044, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:01.151662+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:01.935129+00', 783, '{"updated-tables":0,"total-tables":8}'), +(26045, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:01.935225+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:05.76323+00', 3828, '{"total-fields":71,"updated-fields":0}'), +(26046, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:05.765107+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:05.92331+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26047, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:05.923469+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:06.638869+00', 715, NULL), +(26048, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:06.875619+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:07.24646+00', 370, NULL), +(26049, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:06.875659+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:07.130407+00', 254, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26050, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:07.130656+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:07.161353+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(26051, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:07.161595+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:19:07.246398+00', 84, '{"total-tables":8,"tables-classified":0}'), +(26052, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:03.48068+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:37.489047+00', 34008, NULL), +(26053, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:03.492895+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:03.602546+00', 109, '{"timezone-id":null}'), +(26054, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:03.616284+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:05.843462+00', 2227, '{"updated-tables":0,"total-tables":4}'), +(26055, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:05.845379+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:37.437462+00', 31592, '{"total-fields":39,"updated-fields":0}'), +(26056, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:37.437693+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:37.467523+00', 29, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26057, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:37.467641+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:37.48891+00', 21, NULL), +(26058, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.145006+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.546853+00', 401, NULL), +(26059, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.145027+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.423914+00', 278, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26060, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.424011+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.449866+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(26061, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.449948+00', TIMESTAMP WITH TIME ZONE '2023-01-31 21:49:38.546755+00', 96, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26062, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 22:00:00.187+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:00:10.135+00', 9948, NULL), +(26063, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 22:00:00.272+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:00:10.135+00', 9863, NULL), +(26064, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:00.652448+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:11.828022+00', 11175, NULL), +(26065, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:00.671426+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:02.364311+00', 1692, '{"timezone-id":"UTC"}'), +(26066, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:02.37412+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:03.811328+00', 1437, '{"updated-tables":0,"total-tables":8}'), +(26067, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:03.813071+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:11.369473+00', 7556, '{"total-fields":71,"updated-fields":0}'), +(26068, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:11.369608+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:11.462223+00', 92, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26069, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:11.462283+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:11.82794+00', 365, NULL), +(26070, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.126924+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.530949+00', 404, NULL), +(26071, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.126945+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.330585+00', 203, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26072, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.33066+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.358941+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(26073, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.359004+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:19:13.530883+00', 171, '{"total-tables":8,"tables-classified":0}'), +(26074, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:00.494782+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.556043+00', 13061, NULL), +(26075, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:00.495332+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:00.501105+00', 5, '{"timezone-id":null}'), +(26076, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:00.501487+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:01.104257+00', 602, '{"updated-tables":0,"total-tables":4}'), +(26077, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:01.104344+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.545711+00', 12441, '{"total-fields":39,"updated-fields":0}'), +(26078, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.545835+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.553099+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26079, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.553202+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.555982+00', 2, NULL), +(26080, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.748813+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.822091+00', 73, NULL), +(26081, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.748832+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.803821+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26082, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.803924+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.810659+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26083, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.810728+00', TIMESTAMP WITH TIME ZONE '2023-01-31 22:49:13.821959+00', 11, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26084, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 23:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:00:05.706+00', 5510, NULL), +(26085, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-01-31 23:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:00:05.705+00', 5491, NULL), +(26086, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:00.251114+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:04.505305+00', 4254, NULL), +(26087, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:00.255941+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:00.887256+00', 631, '{"timezone-id":"UTC"}'), +(26088, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:00.893803+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:01.385536+00', 491, '{"updated-tables":0,"total-tables":8}'), +(26089, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:01.385877+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:04.320791+00', 2934, '{"total-fields":71,"updated-fields":0}'), +(26090, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:04.320875+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:04.374968+00', 54, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26091, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:04.375032+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:04.505234+00', 130, NULL), +(26092, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.072097+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.191773+00', 119, NULL), +(26093, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.072117+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.151005+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26094, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.15109+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.16606+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(26095, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.166133+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:19:05.191718+00', 25, '{"total-tables":8,"tables-classified":0}'), +(26096, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:00.785151+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.676689+00', 13891, NULL), +(26097, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:00.786019+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:00.797013+00', 10, '{"timezone-id":null}'), +(26098, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:00.800099+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:02.36931+00', 1569, '{"updated-tables":0,"total-tables":4}'), +(26099, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:02.369867+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.66587+00', 12296, '{"total-fields":39,"updated-fields":0}'), +(26100, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.665972+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.670167+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26101, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.670244+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.676616+00', 6, NULL), +(26102, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.88226+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.957864+00', 75, NULL), +(26103, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.882283+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.938856+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26104, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.93893+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.945112+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26105, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.945226+00', TIMESTAMP WITH TIME ZONE '2023-01-31 23:49:14.957812+00', 12, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26106, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 00:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:00:15.585+00', 15376, NULL), +(26107, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 00:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:00:15.59+00', 15381, NULL), +(26108, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:00.446245+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.477496+00', 6031, NULL), +(26109, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:00.452654+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:01.547858+00', 1095, '{"timezone-id":"UTC"}'), +(26110, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:01.555798+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:02.432679+00', 876, '{"updated-tables":0,"total-tables":8}'), +(26111, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:02.433074+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:04.867257+00', 2434, '{"total-fields":71,"updated-fields":0}'), +(26112, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:04.867356+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:04.989048+00', 121, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26113, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:04.989153+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.477471+00', 1488, NULL), +(26114, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.687899+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.912663+00', 224, NULL), +(26115, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.687925+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.876071+00', 188, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26116, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.876142+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.890376+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(26117, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.890453+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:19:06.912608+00', 22, '{"total-tables":8,"tables-classified":0}'), +(26118, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:00.985733+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.257627+00', 16271, NULL), +(26119, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:00.995596+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:01.020514+00', 24, '{"timezone-id":null}'), +(26120, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:01.024934+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:02.139652+00', 1114, '{"updated-tables":0,"total-tables":4}'), +(26121, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:02.140088+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.249054+00', 15108, '{"total-fields":39,"updated-fields":0}'), +(26122, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.249164+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.256013+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26123, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.25608+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.257588+00', 1, NULL), +(26124, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.445563+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.577643+00', 132, NULL), +(26125, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.445583+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.53178+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26126, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.531876+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.550579+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(26127, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.550676+00', TIMESTAMP WITH TIME ZONE '2023-02-01 00:49:17.577585+00', 26, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26128, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 01:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:00:07.097+00', 6939, NULL), +(26129, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 01:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:00:07.098+00', 6951, NULL), +(26130, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:00.448756+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.241788+00', 5793, NULL), +(26131, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:00.455289+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:01.696014+00', 1240, '{"timezone-id":"UTC"}'), +(26132, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:01.701618+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:02.453649+00', 752, '{"updated-tables":0,"total-tables":8}'), +(26133, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:02.453771+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:05.381409+00', 2927, '{"total-fields":71,"updated-fields":0}'), +(26134, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:05.381479+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:05.430075+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26135, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:05.430137+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.24176+00', 811, NULL), +(26136, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.339369+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.456778+00', 117, NULL), +(26137, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.339405+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.41063+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26138, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.410691+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.428636+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(26139, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.428705+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:19:06.456722+00', 28, '{"total-tables":8,"tables-classified":0}'), +(26140, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:00.854898+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:13.948749+00', 13093, NULL), +(26141, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:00.856074+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:00.868781+00', 12, '{"timezone-id":null}'), +(26142, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:00.872278+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:01.691635+00', 819, '{"updated-tables":0,"total-tables":4}'), +(26143, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:01.691947+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:13.93676+00', 12244, '{"total-fields":39,"updated-fields":0}'), +(26144, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:13.936858+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:13.946525+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26145, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:13.946599+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:13.948708+00', 2, NULL), +(26146, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.092874+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.200789+00', 107, NULL), +(26147, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.092892+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.168396+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26148, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.168663+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.181139+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(26149, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.181303+00', TIMESTAMP WITH TIME ZONE '2023-02-01 01:49:14.2006+00', 19, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26150, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:00.303+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:06.681+00', 6378, NULL), +(26151, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:00.285+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:06.684+00', 6399, NULL), +(26152, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:07.761284+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:23.869497+00', 16108, NULL), +(26153, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:07.767805+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:10.100058+00', 2332, '{"deleted":0}'), +(26154, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:10.108064+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:00:23.869345+00', 13761, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(26155, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:00.124083+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.237498+00', 4113, NULL), +(26156, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:00.124138+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:00.633634+00', 509, '{"timezone-id":"UTC"}'), +(26157, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:00.633736+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:01.128956+00', 495, '{"updated-tables":0,"total-tables":8}'), +(26158, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:01.129037+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:01.871474+00', 742, '{"total-fields":71,"updated-fields":0}'), +(26159, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:01.871592+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:02.152367+00', 280, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26160, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:02.152466+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.237439+00', 2084, NULL), +(26161, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.459662+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.874497+00', 414, NULL), +(26162, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.459706+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.642849+00', 183, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26163, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.642926+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.712647+00', 69, '{"fields-classified":0,"fields-failed":0}'), +(26164, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.712758+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:19:04.874431+00', 161, '{"total-tables":8,"tables-classified":0}'), +(26165, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:01.706933+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.549225+00', 15842, NULL), +(26166, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:01.716878+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:01.802606+00', 85, '{"timezone-id":null}'), +(26167, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:01.81592+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:03.137534+00', 1321, '{"updated-tables":0,"total-tables":4}'), +(26168, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:03.137865+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.523407+00', 14385, '{"total-fields":39,"updated-fields":0}'), +(26169, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.523654+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.541958+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26170, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.542211+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.549039+00', 6, NULL), +(26171, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.834433+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:18.297566+00', 463, NULL), +(26172, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:17.834465+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:18.086453+00', 251, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26173, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:18.087026+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:18.127888+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(26174, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:18.128572+00', TIMESTAMP WITH TIME ZONE '2023-02-01 02:49:18.296977+00', 168, '{"total-tables":4,"tables-classified":0}'), +(26175, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 03:00:00.102+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:00:00.285+00', 183, NULL), +(26176, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 03:00:00.251+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:00:05.194+00', 4943, NULL), +(26177, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:00.685048+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.739578+00', 6054, NULL), +(26178, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:00.693401+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:01.902393+00', 1208, '{"timezone-id":"UTC"}'), +(26179, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:01.903725+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:02.48428+00', 580, '{"updated-tables":0,"total-tables":8}'), +(26180, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:02.484471+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.558539+00', 4074, '{"total-fields":71,"updated-fields":0}'), +(26181, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.558609+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.611435+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26182, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.611512+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.73954+00', 128, NULL), +(26183, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.840104+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.988884+00', 148, NULL), +(26184, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.840124+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.921419+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26185, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.92167+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.938093+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(26186, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.938155+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:19:06.988803+00', 50, '{"total-tables":8,"tables-classified":0}'), +(26187, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:00.523002+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.537427+00', 15014, NULL), +(26188, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:00.523662+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:00.53068+00', 7, '{"timezone-id":null}'), +(26189, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:00.531371+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:01.272717+00', 741, '{"updated-tables":0,"total-tables":4}'), +(26190, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:01.273182+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.524993+00', 14251, '{"total-fields":39,"updated-fields":0}'), +(26191, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.525101+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.533152+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26192, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.533279+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.537374+00', 4, NULL), +(26193, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.709208+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.792323+00', 83, NULL), +(26194, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.709226+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.762726+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26195, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.762815+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.776146+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(26196, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.776236+00', TIMESTAMP WITH TIME ZONE '2023-02-01 03:49:15.792254+00', 16, '{"total-tables":4,"tables-classified":0}'), +(26197, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 04:00:00.245+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:00:06.46+00', 6215, NULL), +(26198, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 04:00:00.24+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:00:06.767+00', 6527, NULL), +(26199, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:00.578889+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:07.798887+00', 7219, NULL), +(26200, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:00.584089+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:01.898032+00', 1313, '{"timezone-id":"UTC"}'), +(26201, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:01.913798+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:02.556908+00', 643, '{"updated-tables":0,"total-tables":8}'), +(26202, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:02.557423+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:07.102747+00', 4545, '{"total-fields":71,"updated-fields":0}'), +(26203, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:07.10336+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:07.247638+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26204, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:07.247938+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:07.79859+00', 550, NULL), +(26205, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:08.062395+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:09.132883+00', 1070, NULL), +(26206, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:08.062415+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:09.065114+00', 1002, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26207, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:09.06528+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:09.086583+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(26208, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:09.087829+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:19:09.132827+00', 44, '{"total-tables":8,"tables-classified":0}'), +(26209, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:01.394875+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:16.960017+00', 15565, NULL), +(26210, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:01.403628+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:01.419736+00', 16, '{"timezone-id":null}'), +(26211, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:01.423073+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:02.533384+00', 1110, '{"updated-tables":0,"total-tables":4}'), +(26212, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:02.533898+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:16.935826+00', 14401, '{"total-fields":39,"updated-fields":0}'), +(26213, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:16.935931+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:16.954028+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26214, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:16.954113+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:16.959908+00', 5, NULL), +(26215, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.120086+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.197189+00', 77, NULL), +(26216, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.120122+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.166585+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26217, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.166643+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.185507+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(26218, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.18558+00', TIMESTAMP WITH TIME ZONE '2023-02-01 04:49:17.197104+00', 11, '{"total-tables":4,"tables-classified":0}'), +(26219, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 05:00:00.101+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:00:04.055+00', 3954, NULL), +(26220, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 05:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:00:04.054+00', 3939, NULL), +(26221, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:00.52129+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.604803+00', 6083, NULL), +(26222, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:00.526913+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:01.462755+00', 935, '{"timezone-id":"UTC"}'), +(26223, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:01.47157+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:02.209794+00', 738, '{"updated-tables":0,"total-tables":8}'), +(26224, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:02.210279+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.238521+00', 4028, '{"total-fields":71,"updated-fields":0}'), +(26225, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.238612+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.366083+00', 127, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26226, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.366223+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.604702+00', 238, NULL), +(26227, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.775618+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.989799+00', 214, NULL), +(26228, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.775654+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.90621+00', 130, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26229, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.906287+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.940729+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(26230, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.940964+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:19:06.989714+00', 48, '{"total-tables":8,"tables-classified":0}'), +(26231, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:01.041785+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.12137+00', 21079, NULL), +(26232, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:01.043184+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:01.053998+00', 10, '{"timezone-id":null}'), +(26233, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:01.056781+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:01.778547+00', 721, '{"updated-tables":0,"total-tables":4}'), +(26234, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:01.778758+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.111838+00', 20333, '{"total-fields":39,"updated-fields":0}'), +(26235, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.113495+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.11937+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26236, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.119946+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.121224+00', 1, NULL), +(26237, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.233957+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.27716+00', 43, NULL), +(26238, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.233977+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.253651+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26239, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.253712+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.257356+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(26240, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.257445+00', TIMESTAMP WITH TIME ZONE '2023-02-01 05:49:22.27711+00', 19, '{"total-tables":4,"tables-classified":0}'), +(26241, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 06:00:00.849+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:00:05.132+00', 4283, NULL), +(26242, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 06:00:00.809+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:00:05.22+00', 4411, NULL), +(26243, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:00.087861+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.868398+00', 1780, NULL), +(26244, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:00.095216+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:00.582186+00', 486, '{"timezone-id":"UTC"}'), +(26245, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:00.583627+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.091665+00', 508, '{"updated-tables":0,"total-tables":8}'), +(26246, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.091764+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.572466+00', 480, '{"total-fields":71,"updated-fields":0}'), +(26247, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.572561+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.650566+00', 78, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26248, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.650635+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:01.868361+00', 217, NULL), +(26249, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.014766+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.145112+00', 130, NULL), +(26250, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.014792+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.103835+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26251, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.10394+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.123779+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(26252, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.123853+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:19:02.145045+00', 21, '{"total-tables":8,"tables-classified":0}'), +(26253, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:01.827178+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.626321+00', 17799, NULL), +(26254, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:01.847787+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:01.975627+00', 127, '{"timezone-id":null}'), +(26255, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:01.990425+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:03.421945+00', 1431, '{"updated-tables":0,"total-tables":4}'), +(26256, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:03.422394+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.605836+00', 16183, '{"total-fields":39,"updated-fields":0}'), +(26257, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.60594+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.621032+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26258, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.621272+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.62614+00', 4, NULL), +(26259, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.824189+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.940756+00', 116, NULL), +(26260, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.82421+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.902306+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26261, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.902387+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.913226+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(26262, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.913303+00', TIMESTAMP WITH TIME ZONE '2023-02-01 06:49:19.940629+00', 27, '{"total-tables":4,"tables-classified":0}'), +(26263, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 07:00:00.226+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:00:09.501+00', 9275, NULL), +(26264, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 07:00:00.234+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:00:09.22+00', 8986, NULL), +(26265, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:00.124408+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.585538+00', 2461, NULL), +(26266, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:00.134444+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:00.673299+00', 538, '{"timezone-id":"UTC"}'), +(26267, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:00.675164+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:00.9035+00', 228, '{"updated-tables":0,"total-tables":8}'), +(26268, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:00.903579+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.376172+00', 1472, '{"total-fields":71,"updated-fields":0}'), +(26269, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.376258+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.457305+00', 81, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26270, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.457389+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.585505+00', 128, NULL), +(26271, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.656612+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.856081+00', 199, NULL), +(26272, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.656637+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.721568+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26273, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.721747+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.745951+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(26274, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.746041+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:19:02.855993+00', 109, '{"total-tables":8,"tables-classified":0}'), +(26275, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:01.066529+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:23.921951+00', 22855, NULL), +(26276, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:01.071857+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:01.098069+00', 26, '{"timezone-id":null}'), +(26277, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:01.105094+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:02.423616+00', 1318, '{"updated-tables":0,"total-tables":4}'), +(26278, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:02.424017+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:23.900811+00', 21476, '{"total-fields":39,"updated-fields":0}'), +(26279, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:23.901233+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:23.91597+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26280, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:23.916051+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:23.921321+00', 5, NULL), +(26281, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.003367+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.064167+00', 60, NULL), +(26282, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.003401+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.042627+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26283, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.042809+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.050749+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(26284, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.050937+00', TIMESTAMP WITH TIME ZONE '2023-02-01 07:49:24.063985+00', 13, '{"total-tables":4,"tables-classified":0}'), +(26285, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 08:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:00:04.647+00', 4433, NULL), +(26286, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 08:00:00.213+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:00:04.915+00', 4702, NULL), +(26287, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:00.354306+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.340141+00', 4985, NULL), +(26288, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:00.359011+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:02.25502+00', 1896, '{"timezone-id":"UTC"}'), +(26289, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:02.258691+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:02.974113+00', 715, '{"updated-tables":0,"total-tables":8}'), +(26290, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:02.974451+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:04.733704+00', 1759, '{"total-fields":71,"updated-fields":0}'), +(26291, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:04.733767+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:04.902448+00', 168, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26292, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:04.902513+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.340113+00', 437, NULL), +(26293, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.561558+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.748512+00', 186, NULL), +(26294, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.561575+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.669612+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26295, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.669789+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.702974+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(26296, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.703047+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:19:05.748444+00', 45, '{"total-tables":8,"tables-classified":0}'), +(26297, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:03.015136+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.088224+00', 14073, NULL), +(26298, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:03.020159+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:03.100502+00', 80, '{"timezone-id":null}'), +(26299, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:03.110449+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:04.314345+00', 1203, '{"updated-tables":0,"total-tables":4}'), +(26300, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:04.314716+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.070139+00', 12755, '{"total-fields":39,"updated-fields":0}'), +(26301, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.070267+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.084739+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26302, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.084822+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.088176+00', 3, NULL), +(26303, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.253197+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.36362+00', 110, NULL), +(26304, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.253219+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.331948+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26305, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.33216+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.342443+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(26306, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.342609+00', TIMESTAMP WITH TIME ZONE '2023-02-01 08:49:17.363568+00', 20, '{"total-tables":4,"tables-classified":0}'), +(26307, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 09:00:00.521+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:00:05.149+00', 4628, NULL), +(26308, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 09:00:00.515+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:00:05.41+00', 4895, NULL), +(26309, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:00.382962+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.285637+00', 5902, NULL), +(26310, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:00.387464+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:01.292667+00', 905, '{"timezone-id":"UTC"}'), +(26311, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:01.295263+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:01.918212+00', 622, '{"updated-tables":0,"total-tables":8}'), +(26312, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:01.918699+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:05.368605+00', 3449, '{"total-fields":71,"updated-fields":0}'), +(26313, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:05.36881+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:05.42457+00', 55, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26314, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:05.424645+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.285608+00', 860, NULL), +(26315, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.524684+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.89278+00', 368, NULL), +(26316, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.524705+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.785239+00', 260, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26317, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.785307+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.856648+00', 71, '{"fields-classified":0,"fields-failed":0}'), +(26318, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.856733+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:19:06.892728+00', 35, '{"total-tables":8,"tables-classified":0}'), +(26319, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:00.391606+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.160908+00', 15769, NULL), +(26320, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:00.39221+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:00.407933+00', 15, '{"timezone-id":null}'), +(26321, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:00.408929+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:00.880337+00', 471, '{"updated-tables":0,"total-tables":4}'), +(26322, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:00.880479+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.140657+00', 15260, '{"total-fields":39,"updated-fields":0}'), +(26323, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.140742+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.157537+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26324, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.157597+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.16086+00', 3, NULL), +(26325, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.287092+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.478754+00', 191, NULL), +(26326, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.287109+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.43219+00', 145, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26327, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.432271+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.443139+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(26328, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.443357+00', TIMESTAMP WITH TIME ZONE '2023-02-01 09:49:16.478694+00', 35, '{"total-tables":4,"tables-classified":0}'), +(26329, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 10:00:00.207+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:00:04.402+00', 4195, NULL), +(26330, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 10:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:00:04.736+00', 4535, NULL), +(26331, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:00.831889+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:07.814883+00', 6982, NULL), +(26332, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:00.836933+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:01.665092+00', 828, '{"timezone-id":"UTC"}'), +(26333, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:01.669244+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:02.502851+00', 833, '{"updated-tables":0,"total-tables":8}'), +(26334, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:02.503426+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:05.998095+00', 3494, '{"total-fields":71,"updated-fields":0}'), +(26335, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:05.999073+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:06.135882+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26336, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:06.136227+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:07.814644+00', 1678, NULL), +(26337, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:07.913732+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:08.035186+00', 121, NULL), +(26338, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:07.913754+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:07.997742+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26339, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:07.997873+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:08.013335+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(26340, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:08.013515+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:19:08.035124+00', 21, '{"total-tables":8,"tables-classified":0}'), +(26341, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:02.021782+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.05767+00', 19035, NULL), +(26342, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:02.037012+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:02.173197+00', 136, '{"timezone-id":null}'), +(26343, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:02.205788+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:03.817725+00', 1611, '{"updated-tables":0,"total-tables":4}'), +(26344, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:03.822741+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.044147+00', 17221, '{"total-fields":39,"updated-fields":0}'), +(26345, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.044394+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.054131+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26346, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.0542+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.057621+00', 3, NULL), +(26347, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.31707+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.431875+00', 114, NULL), +(26348, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.317093+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.392019+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26349, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.392188+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.40343+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(26350, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.403532+00', TIMESTAMP WITH TIME ZONE '2023-02-01 10:49:21.43177+00', 28, '{"total-tables":4,"tables-classified":0}'), +(26351, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 11:00:00.199+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:00:05.507+00', 5308, NULL), +(26352, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 11:00:00.199+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:00:05.51+00', 5311, NULL), +(26353, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:00.313251+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.498592+00', 7185, NULL), +(26354, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:00.322974+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:01.56992+00', 1246, '{"timezone-id":"UTC"}'), +(26355, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:01.572554+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:02.510522+00', 937, '{"updated-tables":0,"total-tables":8}'), +(26356, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:02.510955+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.226554+00', 4715, '{"total-fields":71,"updated-fields":0}'), +(26357, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.226638+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.284323+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26358, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.284394+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.498464+00', 214, NULL), +(26359, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.944176+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:08.094824+00', 150, NULL), +(26360, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:07.944205+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:08.036274+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26361, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:08.036346+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:08.050354+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(26362, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:08.050513+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:19:08.094758+00', 44, '{"total-tables":8,"tables-classified":0}'), +(26363, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:01.651919+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.7055+00', 15053, NULL), +(26364, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:01.65671+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:01.699307+00', 42, '{"timezone-id":null}'), +(26365, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:01.708965+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:02.7161+00', 1007, '{"updated-tables":0,"total-tables":4}'), +(26366, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:02.716632+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.696918+00', 13980, '{"total-fields":39,"updated-fields":0}'), +(26367, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.69704+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.703045+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26368, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.703197+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.705433+00', 2, NULL), +(26369, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.896989+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:17.109943+00', 212, NULL), +(26370, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:16.897008+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:17.028731+00', 131, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26371, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:17.028833+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:17.052876+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(26372, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:17.052953+00', TIMESTAMP WITH TIME ZONE '2023-02-01 11:49:17.109874+00', 56, '{"total-tables":4,"tables-classified":0}'), +(26373, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 12:00:00.276+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:00:06.026+00', 5750, NULL), +(26374, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 12:00:00.262+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:00:06.772+00', 6510, NULL), +(26375, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:00.262369+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:05.871581+00', 5609, NULL), +(26376, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:00.267418+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:00.913708+00', 646, '{"timezone-id":"UTC"}'), +(26377, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:00.916574+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:01.680215+00', 763, '{"updated-tables":0,"total-tables":8}'), +(26378, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:01.682714+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:05.605885+00', 3923, '{"total-fields":71,"updated-fields":0}'), +(26379, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:05.605988+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:05.720865+00', 114, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26380, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:05.720958+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:05.871542+00', 150, NULL), +(26381, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.020257+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.178345+00', 158, NULL), +(26382, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.020279+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.129189+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26383, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.129288+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.147599+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(26384, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.147672+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:19:06.178269+00', 30, '{"total-tables":8,"tables-classified":0}'), +(26385, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:01.185335+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.211244+00', 17025, NULL), +(26386, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:01.186766+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:01.199208+00', 12, '{"timezone-id":null}'), +(26387, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:01.204255+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:02.369047+00', 1164, '{"updated-tables":0,"total-tables":4}'), +(26388, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:02.369245+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.202291+00', 15833, '{"total-fields":39,"updated-fields":0}'), +(26389, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.202478+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.208714+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26390, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.208809+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.211192+00', 2, NULL), +(26391, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.412663+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.520842+00', 108, NULL), +(26392, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.412686+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.499355+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26393, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.499461+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.505529+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26394, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.505606+00', TIMESTAMP WITH TIME ZONE '2023-02-01 12:49:18.520759+00', 15, '{"total-tables":4,"tables-classified":0}'), +(26395, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 13:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:00:05.052+00', 4893, NULL), +(26396, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 13:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:00:05.265+00', 5125, NULL), +(26397, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:00.441736+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.431179+00', 5989, NULL), +(26398, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:00.446258+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:01.430642+00', 984, '{"timezone-id":"UTC"}'), +(26399, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:01.434143+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:02.373399+00', 939, '{"updated-tables":0,"total-tables":8}'), +(26400, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:02.373802+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:05.631247+00', 3257, '{"total-fields":71,"updated-fields":0}'), +(26401, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:05.631536+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.258108+00', 626, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26402, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.258169+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.431151+00', 172, NULL), +(26403, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.545808+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.670351+00', 124, NULL), +(26404, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.545829+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.629494+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26405, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.629554+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.644612+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(26406, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.644698+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:19:06.670299+00', 25, '{"total-tables":8,"tables-classified":0}'), +(26407, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:00.900378+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:18.285909+00', 17385, NULL), +(26408, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:00.902494+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:00.923215+00', 20, '{"timezone-id":null}'), +(26409, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:00.927962+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:02.065812+00', 1137, '{"updated-tables":0,"total-tables":4}'), +(26410, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:02.06625+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:18.270584+00', 16204, '{"total-fields":39,"updated-fields":0}'), +(26411, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:18.27069+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:18.275102+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26412, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:18.275226+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:18.285779+00', 10, NULL), +(26413, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.202164+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.308166+00', 106, NULL), +(26414, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.20221+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.273501+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26415, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.273583+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.281075+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(26416, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.281187+00', TIMESTAMP WITH TIME ZONE '2023-02-01 13:49:19.307957+00', 26, '{"total-tables":4,"tables-classified":0}'), +(26417, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 14:00:00.248+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:00:06.235+00', 5987, NULL), +(26418, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 14:00:00.242+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:00:06.471+00', 6229, NULL), +(26419, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:00.331134+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.37508+00', 6043, NULL), +(26420, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:00.338668+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:01.31555+00', 976, '{"timezone-id":"UTC"}'), +(26421, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:01.319272+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:02.222909+00', 903, '{"updated-tables":0,"total-tables":8}'), +(26422, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:02.223361+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:05.686789+00', 3463, '{"total-fields":71,"updated-fields":0}'), +(26423, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:05.686956+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:05.751664+00', 64, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26424, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:05.751894+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.375043+00', 623, NULL), +(26425, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.482505+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.621844+00', 139, NULL), +(26426, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.482523+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.578262+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26427, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.578332+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.596477+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(26428, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.596554+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:19:06.621795+00', 25, '{"total-tables":8,"tables-classified":0}'), +(26429, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:00.475426+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.79674+00', 15321, NULL), +(26430, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:00.476226+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:00.482328+00', 6, '{"timezone-id":null}'), +(26431, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:00.482749+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:01.124063+00', 641, '{"updated-tables":0,"total-tables":4}'), +(26432, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:01.124156+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.783658+00', 14659, '{"total-fields":39,"updated-fields":0}'), +(26433, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.783798+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.794187+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26434, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.794343+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.796656+00', 2, NULL), +(26435, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.973624+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:16.119727+00', 146, NULL), +(26436, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:15.973646+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:16.100936+00', 127, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26437, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:16.101205+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:16.107272+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26438, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:16.10744+00', TIMESTAMP WITH TIME ZONE '2023-02-01 14:49:16.119634+00', 12, '{"total-tables":4,"tables-classified":0}'), +(26439, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 15:00:00.343+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:00:07.748+00', 7405, NULL), +(26440, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 15:00:00.363+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:00:07.54+00', 7177, NULL), +(26441, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:00.331209+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.810927+00', 5479, NULL), +(26442, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:00.336014+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:01.139933+00', 803, '{"timezone-id":"UTC"}'), +(26443, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:01.141274+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:01.697652+00', 556, '{"updated-tables":0,"total-tables":8}'), +(26444, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:01.697759+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.200666+00', 3502, '{"total-fields":71,"updated-fields":0}'), +(26445, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.200979+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.269842+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26446, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.269894+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.810899+00', 541, NULL), +(26447, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.90705+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:06.02075+00', 113, NULL), +(26448, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.907072+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.981449+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26449, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.981559+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.997224+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(26450, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:05.997293+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:19:06.020698+00', 23, '{"total-tables":8,"tables-classified":0}'), +(26451, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:01.035431+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.072454+00', 17037, NULL), +(26452, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:01.036158+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:01.046034+00', 9, '{"timezone-id":null}'), +(26453, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:01.048316+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:01.833549+00', 785, '{"updated-tables":0,"total-tables":4}'), +(26454, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:01.833853+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.061286+00', 16227, '{"total-fields":39,"updated-fields":0}'), +(26455, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.061409+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.068321+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26456, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.06844+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.072364+00', 3, NULL), +(26457, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.273676+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.359775+00', 86, NULL), +(26458, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.273697+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.329691+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26459, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.329808+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.339328+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(26460, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.339447+00', TIMESTAMP WITH TIME ZONE '2023-02-01 15:49:18.359665+00', 20, '{"total-tables":4,"tables-classified":0}'), +(26461, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 16:00:00.26+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:00:08.091+00', 7831, NULL), +(26462, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 16:00:00.268+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:00:07.835+00', 7567, NULL), +(26463, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:00.313486+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.534613+00', 6221, NULL), +(26464, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:00.320525+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:00.897769+00', 577, '{"timezone-id":"UTC"}'), +(26465, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:00.900097+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:01.48997+00', 589, '{"updated-tables":0,"total-tables":8}'), +(26466, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:01.490081+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:05.881739+00', 4391, '{"total-fields":71,"updated-fields":0}'), +(26467, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:05.881848+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:05.944693+00', 62, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26468, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:05.944758+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.534571+00', 589, NULL), +(26469, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.618238+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.771194+00', 152, NULL), +(26470, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.618263+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.704065+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26471, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.704151+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.727063+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(26472, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.727145+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:19:06.770915+00', 43, '{"total-tables":8,"tables-classified":0}'), +(26473, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:00.302117+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.353217+00', 12051, NULL), +(26474, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:00.302143+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:00.312371+00', 10, '{"timezone-id":null}'), +(26475, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:00.312497+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:00.831877+00', 519, '{"updated-tables":0,"total-tables":4}'), +(26476, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:00.832184+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.320067+00', 11487, '{"total-fields":39,"updated-fields":0}'), +(26477, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.320226+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.335321+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26478, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.335537+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.353122+00', 17, NULL), +(26479, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.911285+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:13.342614+00', 431, NULL), +(26480, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:12.911311+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:13.233114+00', 321, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26481, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:13.233181+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:13.294216+00', 61, '{"fields-classified":0,"fields-failed":0}'), +(26482, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:13.294281+00', TIMESTAMP WITH TIME ZONE '2023-02-01 16:49:13.342547+00', 48, '{"total-tables":4,"tables-classified":0}'), +(26483, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 17:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:00:05.289+00', 5071, NULL), +(26484, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 17:00:00.218+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:00:05.536+00', 5318, NULL), +(26485, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:00.262396+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:04.958816+00', 4696, NULL), +(26486, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:00.266224+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:01.042016+00', 775, '{"timezone-id":"UTC"}'), +(26487, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:01.045065+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:01.573157+00', 528, '{"updated-tables":0,"total-tables":8}'), +(26488, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:01.573491+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:04.370184+00', 2796, '{"total-fields":71,"updated-fields":0}'), +(26489, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:04.370512+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:04.413592+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26490, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:04.413797+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:04.958792+00', 544, NULL), +(26491, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.03899+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.164087+00', 125, NULL), +(26492, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.039007+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.113516+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26493, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.113584+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.131442+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(26494, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.131516+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:19:05.164014+00', 32, '{"total-tables":8,"tables-classified":0}'), +(26495, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:01.398054+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.638645+00', 17240, NULL), +(26496, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:01.399444+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:01.427177+00', 27, '{"timezone-id":null}'), +(26497, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:01.433316+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:02.805852+00', 1372, '{"updated-tables":0,"total-tables":4}'), +(26498, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:02.805945+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.625109+00', 15819, '{"total-fields":39,"updated-fields":0}'), +(26499, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.625231+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.636751+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26500, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.636825+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.638605+00', 1, NULL), +(26501, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.773518+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.84921+00', 75, NULL), +(26502, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.773538+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.830832+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26503, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.830897+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.835806+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(26504, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.835901+00', TIMESTAMP WITH TIME ZONE '2023-02-01 17:49:18.849166+00', 13, '{"total-tables":4,"tables-classified":0}'), +(26505, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 18:00:00.182+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:00:07.277+00', 7095, NULL), +(26506, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 18:00:00.204+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:00:07.021+00', 6817, NULL), +(26507, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:00.247527+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.44011+00', 4192, NULL), +(26508, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:00.25227+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:00.816451+00', 564, '{"timezone-id":"UTC"}'), +(26509, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:00.820047+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:01.303128+00', 483, '{"updated-tables":0,"total-tables":8}'), +(26510, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:01.303557+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.251029+00', 2947, '{"total-fields":71,"updated-fields":0}'), +(26511, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.251129+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.313049+00', 61, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26512, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.313102+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.440082+00', 126, NULL), +(26513, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.57208+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.665869+00', 93, NULL), +(26514, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.572097+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.62619+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26515, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.626262+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.637195+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(26516, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.637265+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:19:04.66581+00', 28, '{"total-tables":8,"tables-classified":0}'), +(26517, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:01.158353+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.680374+00', 16522, NULL), +(26518, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:01.164405+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:01.23042+00', 66, '{"timezone-id":null}'), +(26519, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:01.242323+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:02.32728+00', 1084, '{"updated-tables":0,"total-tables":4}'), +(26520, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:02.327381+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.660615+00', 15333, '{"total-fields":39,"updated-fields":0}'), +(26521, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.660734+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.675791+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26522, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.675867+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.680308+00', 4, NULL), +(26523, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.901994+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:18.068184+00', 166, NULL), +(26524, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:17.902013+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:18.024269+00', 122, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26525, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:18.024341+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:18.040332+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(26526, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:18.040518+00', TIMESTAMP WITH TIME ZONE '2023-02-01 18:49:18.067967+00', 27, '{"total-tables":4,"tables-classified":0}'), +(26527, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 19:00:00.258+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:00:04.884+00', 4626, NULL), +(26528, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 19:00:00.256+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:00:05.244+00', 4988, NULL), +(26529, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:00.247999+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.569212+00', 5321, NULL), +(26530, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:00.251913+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:01.219916+00', 968, '{"timezone-id":"UTC"}'), +(26531, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:01.22343+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:01.882556+00', 659, '{"updated-tables":0,"total-tables":8}'), +(26532, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:01.885298+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:04.900822+00', 3015, '{"total-fields":71,"updated-fields":0}'), +(26533, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:04.900907+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:04.95896+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26534, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:04.959047+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.569174+00', 610, NULL), +(26535, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.667797+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.809558+00', 141, NULL), +(26536, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.667817+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.769422+00', 101, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26537, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.769495+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.788543+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(26538, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.78861+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:19:05.809497+00', 20, '{"total-tables":8,"tables-classified":0}'), +(26539, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:01.03278+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:15.801861+00', 14769, NULL), +(26540, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:01.035919+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:01.057945+00', 22, '{"timezone-id":null}'), +(26541, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:01.062151+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:01.770506+00', 708, '{"updated-tables":0,"total-tables":4}'), +(26542, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:01.770627+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:15.777677+00', 14007, '{"total-fields":39,"updated-fields":0}'), +(26543, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:15.777803+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:15.794479+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26544, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:15.794566+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:15.801801+00', 7, NULL), +(26545, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.03398+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.134296+00', 100, NULL), +(26546, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.034003+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.106404+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26547, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.106474+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.116459+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(26548, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.116578+00', TIMESTAMP WITH TIME ZONE '2023-02-01 19:49:16.13423+00', 17, '{"total-tables":4,"tables-classified":0}'), +(26549, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 20:00:00.241+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:00:08.093+00', 7852, NULL), +(26550, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 20:00:00.317+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:00:08.09+00', 7773, NULL), +(26551, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:00.224443+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.371435+00', 5146, NULL), +(26552, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:00.227972+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:00.678688+00', 450, '{"timezone-id":"UTC"}'), +(26553, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:00.681336+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:01.136495+00', 455, '{"updated-tables":0,"total-tables":8}'), +(26554, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:01.136724+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:04.529754+00', 3393, '{"total-fields":71,"updated-fields":0}'), +(26555, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:04.529878+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:04.619915+00', 90, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26556, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:04.619994+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.371406+00', 751, NULL), +(26557, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.50573+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.651448+00', 145, NULL), +(26558, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.505749+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.569973+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26559, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.570043+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.584404+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(26560, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.584502+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:19:05.651375+00', 66, '{"total-tables":8,"tables-classified":0}'), +(26561, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:00.34993+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.18661+00', 12836, NULL), +(26562, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:00.349968+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:00.355705+00', 5, '{"timezone-id":null}'), +(26563, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:00.356467+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:00.776854+00', 420, '{"updated-tables":0,"total-tables":4}'), +(26564, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:00.776933+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.174619+00', 12397, '{"total-fields":39,"updated-fields":0}'), +(26565, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.175034+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.183125+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26566, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.183331+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.186569+00', 3, NULL), +(26567, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.440082+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.522274+00', 82, NULL), +(26568, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.440101+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.492252+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26569, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.492484+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.499755+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(26570, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.499845+00', TIMESTAMP WITH TIME ZONE '2023-02-01 20:49:13.5222+00', 22, '{"total-tables":4,"tables-classified":0}'), +(26571, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:00.465+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:05.09+00', 4625, NULL), +(26572, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:00.386+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:05.091+00', 4705, NULL), +(26573, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:05.358433+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:16.418017+00', 11059, NULL), +(26574, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:05.363767+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:07.188236+00', 1824, '{"deleted":0}'), +(26575, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:07.193618+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:00:16.417969+00', 9224, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(26576, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:00.481072+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.771443+00', 3290, NULL), +(26577, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:00.482665+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:00.741486+00', 258, '{"timezone-id":"UTC"}'), +(26578, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:00.742467+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:01.008643+00', 266, '{"updated-tables":0,"total-tables":8}'), +(26579, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:01.008726+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.277418+00', 2268, '{"total-fields":71,"updated-fields":0}'), +(26580, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.277501+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.502078+00', 224, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26581, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.502162+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.771375+00', 269, NULL), +(26582, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.888406+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:04.056662+00', 168, NULL), +(26583, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:03.88845+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:04.003147+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26584, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:04.003319+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:04.02311+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(26585, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:04.02343+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:19:04.056605+00', 33, '{"total-tables":8,"tables-classified":0}'), +(26586, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:01.123547+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.356859+00', 13233, NULL), +(26587, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:01.131118+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:01.178274+00', 47, '{"timezone-id":null}'), +(26588, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:01.187229+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:02.276977+00', 1089, '{"updated-tables":0,"total-tables":4}'), +(26589, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:02.277367+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.341901+00', 12064, '{"total-fields":39,"updated-fields":0}'), +(26590, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.342062+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.352737+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26591, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.352806+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.356809+00', 4, NULL), +(26592, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.55098+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.661504+00', 110, NULL), +(26593, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.550999+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.627193+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26594, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.627372+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.637206+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(26595, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.637417+00', TIMESTAMP WITH TIME ZONE '2023-02-01 21:49:14.661446+00', 24, '{"total-tables":4,"tables-classified":0}'), +(26596, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 22:00:00.113+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:00:05.929+00', 5816, NULL), +(26597, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 22:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:00:05.93+00', 5800, NULL), +(26598, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:00.685401+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:05.453861+00', 4768, NULL), +(26599, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:00.688869+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:01.40062+00', 711, '{"timezone-id":"UTC"}'), +(26600, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:01.403534+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:01.731827+00', 328, '{"updated-tables":0,"total-tables":8}'), +(26601, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:01.732227+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:04.382023+00', 2649, '{"total-fields":71,"updated-fields":0}'), +(26602, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:04.382382+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:04.533586+00', 151, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26603, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:04.534057+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:05.45378+00', 919, NULL), +(26604, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:05.813743+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:06.257291+00', 443, NULL), +(26605, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:05.813886+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:06.173523+00', 359, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26606, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:06.173717+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:06.213723+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(26607, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:06.213795+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:19:06.257238+00', 43, '{"total-tables":8,"tables-classified":0}'), +(26608, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:00.958786+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.177494+00', 10218, NULL), +(26609, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:00.96372+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:00.995514+00', 31, '{"timezone-id":null}'), +(26610, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:01.015075+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:01.693747+00', 678, '{"updated-tables":0,"total-tables":4}'), +(26611, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:01.693855+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.162426+00', 9468, '{"total-fields":39,"updated-fields":0}'), +(26612, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.162511+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.173126+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26613, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.173186+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.177457+00', 4, NULL), +(26614, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.277076+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.353377+00', 76, NULL), +(26615, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.277093+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.331539+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26616, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.331637+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.338276+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26617, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.338342+00', TIMESTAMP WITH TIME ZONE '2023-02-01 22:49:11.353206+00', 14, '{"total-tables":4,"tables-classified":0}'), +(26618, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 23:00:00.188+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:00:10.15+00', 9962, NULL), +(26619, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-01 23:00:00.187+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:00:10.59+00', 10403, NULL), +(26620, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:00.234629+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.829861+00', 3595, NULL), +(26621, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:00.239489+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:00.79637+00', 556, '{"timezone-id":"UTC"}'), +(26622, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:00.798321+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:01.215424+00', 417, '{"updated-tables":0,"total-tables":8}'), +(26623, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:01.215807+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.390792+00', 2174, '{"total-fields":71,"updated-fields":0}'), +(26624, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.390914+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.443873+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26625, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.443937+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.829832+00', 385, NULL), +(26626, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.906403+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:04.045221+00', 138, NULL), +(26627, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.906428+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.979235+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26628, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.979308+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.99501+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(26629, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:03.995088+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:19:04.045144+00', 50, '{"total-tables":8,"tables-classified":0}'), +(26630, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:01.22014+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.629859+00', 15409, NULL), +(26631, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:01.22276+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:01.234827+00', 12, '{"timezone-id":null}'), +(26632, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:01.238137+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:01.95924+00', 721, '{"updated-tables":0,"total-tables":4}'), +(26633, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:01.959692+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.609473+00', 14649, '{"total-fields":39,"updated-fields":0}'), +(26634, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.60959+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.624239+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26635, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.624333+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.629801+00', 5, NULL), +(26636, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.893744+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:17.123093+00', 229, NULL), +(26637, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:16.893764+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:17.089254+00', 195, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26638, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:17.08937+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:17.100372+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(26639, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:17.10069+00', TIMESTAMP WITH TIME ZONE '2023-02-01 23:49:17.12304+00', 22, '{"total-tables":4,"tables-classified":0}'), +(26640, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 00:00:00.266+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:00:11.429+00', 11163, NULL), +(26641, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 00:00:00.266+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:00:12.176+00', 11910, NULL), +(26642, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:00.26679+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.904501+00', 4637, NULL), +(26643, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:00.270797+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:01.147604+00', 876, '{"timezone-id":"UTC"}'), +(26644, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:01.150577+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:02.053588+00', 903, '{"updated-tables":0,"total-tables":8}'), +(26645, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:02.054277+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.723995+00', 2669, '{"total-fields":71,"updated-fields":0}'), +(26646, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.724127+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.771184+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26647, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.771336+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.904468+00', 133, NULL), +(26648, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.979676+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:05.111577+00', 131, NULL), +(26649, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:04.979692+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:05.053673+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26650, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:05.053725+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:05.069392+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(26651, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:05.069475+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:19:05.11141+00', 41, '{"total-tables":8,"tables-classified":0}'), +(26652, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:00.641138+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.670413+00', 12029, NULL), +(26653, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:00.642526+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:00.652911+00', 10, '{"timezone-id":null}'), +(26654, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:00.656913+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:01.309793+00', 652, '{"updated-tables":0,"total-tables":4}'), +(26655, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:01.309909+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.662741+00', 11352, '{"total-fields":39,"updated-fields":0}'), +(26656, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.662852+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.668009+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26657, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.66811+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.670373+00', 2, NULL), +(26658, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.905081+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:13.026207+00', 121, NULL), +(26659, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.90511+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.982078+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26660, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.982146+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.996629+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(26661, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:12.9967+00', TIMESTAMP WITH TIME ZONE '2023-02-02 00:49:13.026152+00', 29, '{"total-tables":4,"tables-classified":0}'), +(26662, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 01:00:00.588+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:00:05.709+00', 5121, NULL), +(26663, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 01:00:00.248+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:00:05.711+00', 5463, NULL), +(26664, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:00.25449+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:04.942929+00', 4688, NULL), +(26665, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:00.257149+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:01.090854+00', 833, '{"timezone-id":"UTC"}'), +(26666, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:01.092974+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:01.640812+00', 547, '{"updated-tables":0,"total-tables":8}'), +(26667, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:01.640908+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:04.753157+00', 3112, '{"total-fields":71,"updated-fields":0}'), +(26668, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:04.753239+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:04.813979+00', 60, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26669, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:04.814052+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:04.942901+00', 128, NULL), +(26670, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.026159+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.132817+00', 106, NULL), +(26671, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.026178+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.077484+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26672, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.077583+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.088796+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(26673, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.088886+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:19:05.132725+00', 43, '{"total-tables":8,"tables-classified":0}'), +(26674, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:01.038056+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:13.072612+00', 12034, NULL), +(26675, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:01.044129+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:01.0894+00', 45, '{"timezone-id":null}'), +(26676, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:01.09936+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:02.113481+00', 1014, '{"updated-tables":0,"total-tables":4}'), +(26677, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:02.113863+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:13.05988+00', 10946, '{"total-fields":39,"updated-fields":0}'), +(26678, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:13.060158+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:13.069055+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26679, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:13.069242+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:13.072261+00', 3, NULL), +(26680, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.340336+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.414009+00', 73, NULL), +(26681, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.340358+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.374053+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26682, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.374124+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.386923+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(26683, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.387007+00', TIMESTAMP WITH TIME ZONE '2023-02-02 01:49:15.413963+00', 26, '{"total-tables":4,"tables-classified":0}'), +(26684, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:00.195+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:04.924+00', 4729, NULL), +(26685, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:00.241+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:04.924+00', 4683, NULL), +(26686, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:05.280466+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:20.507585+00', 15227, NULL), +(26687, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:05.281315+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:06.799997+00', 1518, '{"deleted":0}'), +(26688, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:06.801816+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:00:20.507502+00', 13705, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(26689, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:00.543175+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.587378+00', 5044, NULL), +(26690, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:00.547218+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:01.617429+00', 1070, '{"timezone-id":"UTC"}'), +(26691, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:01.621987+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:02.323259+00', 701, '{"updated-tables":0,"total-tables":8}'), +(26692, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:02.323349+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.048116+00', 2724, '{"total-fields":71,"updated-fields":0}'), +(26693, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.048195+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.154456+00', 106, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26694, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.154627+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.587331+00', 432, NULL), +(26695, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.882152+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:06.217834+00', 335, NULL), +(26696, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:05.882433+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:06.09482+00', 212, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26697, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:06.094895+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:06.135967+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(26698, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:06.136054+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:19:06.217771+00', 81, '{"total-tables":8,"tables-classified":0}'), +(26699, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:00.887911+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.389844+00', 16501, NULL), +(26700, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:00.893258+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:00.938352+00', 45, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26701, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:00.943932+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:02.174619+00', 1230, '{"updated-tables":0,"total-tables":4}'), +(26702, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:02.174712+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.381546+00', 15206, '{"total-fields":39,"updated-fields":0}'), +(26703, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.38189+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.386349+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26704, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.38642+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.389803+00', 3, NULL), +(26705, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.488563+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.551385+00', 62, NULL), +(26706, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.488581+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.537316+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26707, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.53738+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.540936+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(26708, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.54099+00', TIMESTAMP WITH TIME ZONE '2023-02-02 02:49:17.551341+00', 10, '{"total-tables":4,"tables-classified":0}'), +(26709, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 03:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:00:05.154+00', 4940, NULL), +(26710, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 03:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:00:05.512+00', 5304, NULL), +(26711, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:00.862097+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:05.972058+00', 5109, NULL), +(26712, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:00.86508+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:01.89168+00', 1026, '{"timezone-id":"UTC"}'), +(26713, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:01.89464+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:02.443321+00', 548, '{"updated-tables":0,"total-tables":8}'), +(26714, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:02.443662+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:05.795476+00', 3351, '{"total-fields":71,"updated-fields":0}'), +(26715, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:05.795589+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:05.848939+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26716, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:05.849045+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:05.971988+00', 122, NULL), +(26717, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.053835+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.15109+00', 97, NULL), +(26718, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.053852+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.121586+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26719, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.121667+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.132622+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(26720, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.132727+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:19:06.151042+00', 18, '{"total-tables":8,"tables-classified":0}'), +(26721, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:00.344222+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.21124+00', 14867, NULL), +(26722, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:00.344556+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:00.348817+00', 4, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26723, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:00.349492+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:00.891956+00', 542, '{"updated-tables":0,"total-tables":4}'), +(26724, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:00.892101+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.193589+00', 14301, '{"total-fields":39,"updated-fields":0}'), +(26725, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.19476+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.208077+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26726, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.208159+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.211198+00', 3, NULL), +(26727, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.373794+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.470393+00', 96, NULL), +(26728, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.373814+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.434368+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26729, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.434446+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.441869+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(26730, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.442224+00', TIMESTAMP WITH TIME ZONE '2023-02-02 03:49:15.470245+00', 28, '{"total-tables":4,"tables-classified":0}'), +(26731, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 04:00:00.248+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:00:03.806+00', 3558, NULL), +(26732, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 04:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:00:04.169+00', 4019, NULL), +(26733, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:00.543001+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.548775+00', 6005, NULL), +(26734, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:00.549709+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:01.923357+00', 1373, '{"timezone-id":"UTC"}'), +(26735, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:01.927551+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:02.583662+00', 656, '{"updated-tables":0,"total-tables":8}'), +(26736, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:02.584923+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.3195+00', 3734, '{"total-fields":71,"updated-fields":0}'), +(26737, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.319582+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.377258+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26738, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.377382+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.548744+00', 171, NULL), +(26739, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.657317+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.768349+00', 111, NULL), +(26740, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.65734+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.733014+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26741, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.733072+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.748631+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(26742, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.7489+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:19:06.768302+00', 19, '{"total-tables":8,"tables-classified":0}'), +(26743, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:01.128898+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:15.951351+00', 14822, NULL), +(26744, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:01.130033+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:01.160242+00', 30, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26745, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:01.166741+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:02.198789+00', 1032, '{"updated-tables":0,"total-tables":4}'), +(26746, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:02.199162+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:15.941537+00', 13742, '{"total-fields":39,"updated-fields":0}'), +(26747, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:15.941648+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:15.949613+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26748, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:15.949689+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:15.951311+00', 1, NULL), +(26749, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.075088+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.139008+00', 63, NULL), +(26750, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.075108+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.122382+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26751, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.122459+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.126926+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(26752, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.127002+00', TIMESTAMP WITH TIME ZONE '2023-02-02 04:49:16.138953+00', 11, '{"total-tables":4,"tables-classified":0}'), +(26753, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 05:00:00.102+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:00:04.651+00', 4549, NULL), +(26754, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 05:00:00.079+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:00:04.651+00', 4572, NULL), +(26755, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:00.550241+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.294755+00', 6744, NULL), +(26756, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:00.56946+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:01.581522+00', 1012, '{"timezone-id":"UTC"}'), +(26757, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:01.584519+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:02.289879+00', 705, '{"updated-tables":0,"total-tables":8}'), +(26758, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:02.290273+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.105733+00', 4815, '{"total-fields":71,"updated-fields":0}'), +(26759, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.106021+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.160225+00', 54, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26760, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.16028+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.294725+00', 134, NULL), +(26761, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.390116+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.510977+00', 120, NULL), +(26762, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.390143+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.472864+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26763, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.472942+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.490765+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(26764, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.490862+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:19:07.510924+00', 20, '{"total-tables":8,"tables-classified":0}'), +(26765, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:01.307349+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.057571+00', 14750, NULL), +(26766, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:01.30923+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:01.346703+00', 37, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26767, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:01.350745+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:02.318293+00', 967, '{"updated-tables":0,"total-tables":4}'), +(26768, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:02.318396+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.047141+00', 13728, '{"total-fields":39,"updated-fields":0}'), +(26769, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.047266+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.054817+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26770, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.054936+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.057519+00', 2, NULL), +(26771, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.195501+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.276039+00', 80, NULL), +(26772, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.195519+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.255904+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26773, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.255982+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.26074+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(26774, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.26087+00', TIMESTAMP WITH TIME ZONE '2023-02-02 05:49:16.275859+00', 14, '{"total-tables":4,"tables-classified":0}'), +(26775, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 06:00:00.25+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:00:07.305+00', 7055, NULL), +(26776, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 06:00:00.232+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:00:07.306+00', 7074, NULL), +(26777, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:00.289299+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.366769+00', 5077, NULL), +(26778, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:00.293331+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:01.473207+00', 1179, '{"timezone-id":"UTC"}'), +(26779, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:01.477818+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:02.278026+00', 800, '{"updated-tables":0,"total-tables":8}'), +(26780, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:02.278669+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.134735+00', 2856, '{"total-fields":71,"updated-fields":0}'), +(26781, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.134801+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.214482+00', 79, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26782, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.214617+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.366716+00', 152, NULL), +(26783, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.499137+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.679544+00', 180, NULL), +(26784, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.499176+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.596101+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26785, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.596171+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.619837+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(26786, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.619921+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:19:05.679426+00', 59, '{"total-tables":8,"tables-classified":0}'), +(26787, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:01.573465+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.318866+00', 16745, NULL), +(26788, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:01.595384+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:01.673639+00', 78, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26789, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:01.708535+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:02.9316+00', 1223, '{"updated-tables":0,"total-tables":4}'), +(26790, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:02.931874+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.295479+00', 15363, '{"total-fields":39,"updated-fields":0}'), +(26791, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.295665+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.313298+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26792, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.313421+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.318764+00', 5, NULL), +(26793, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.54134+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.72013+00', 178, NULL), +(26794, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.541362+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.667717+00', 126, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26795, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.667794+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.682347+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(26796, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.68245+00', TIMESTAMP WITH TIME ZONE '2023-02-02 06:49:18.720061+00', 37, '{"total-tables":4,"tables-classified":0}'), +(26797, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 07:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:00:04.35+00', 4239, NULL), +(26798, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 07:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:00:04.35+00', 4214, NULL), +(26799, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:00.390077+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.725597+00', 9335, NULL), +(26800, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:00.392612+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:05.033037+00', 4640, '{"timezone-id":"UTC"}'), +(26801, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:05.035014+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:05.932796+00', 897, '{"updated-tables":0,"total-tables":8}'), +(26802, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:05.932921+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.260789+00', 3327, '{"total-fields":71,"updated-fields":0}'), +(26803, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.260884+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.438816+00', 177, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26804, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.438959+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.725504+00', 286, NULL), +(26805, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.951734+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:10.330482+00', 378, NULL), +(26806, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:09.951757+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:10.195215+00', 243, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26807, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:10.195275+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:10.240596+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(26808, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:10.240675+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:19:10.330381+00', 89, '{"total-tables":8,"tables-classified":0}'), +(26809, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:00.362559+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.57352+00', 15210, NULL), +(26810, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:00.362602+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:00.377085+00', 14, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26811, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:00.377389+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:01.76377+00', 1386, '{"updated-tables":0,"total-tables":4}'), +(26812, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:01.763846+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.56496+00', 13801, '{"total-fields":39,"updated-fields":0}'), +(26813, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.565303+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.571405+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26814, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.571532+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.573442+00', 1, NULL), +(26815, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.791655+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.930215+00', 138, NULL), +(26816, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.791677+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.887771+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26817, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.887857+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.90551+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(26818, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.905612+00', TIMESTAMP WITH TIME ZONE '2023-02-02 07:49:15.930157+00', 24, '{"total-tables":4,"tables-classified":0}'), +(26819, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 08:00:00.197+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:00:05.361+00', 5164, NULL), +(26820, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 08:00:00.183+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:00:05.669+00', 5486, NULL), +(26821, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:00.640306+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:05.345384+00', 4705, NULL), +(26822, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:00.645395+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:01.424948+00', 779, '{"timezone-id":"UTC"}'), +(26823, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:01.427639+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:01.872519+00', 444, '{"updated-tables":0,"total-tables":8}'), +(26824, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:01.872631+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:04.11026+00', 2237, '{"total-fields":71,"updated-fields":0}'), +(26825, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:04.110363+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:04.248233+00', 137, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26826, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:04.248336+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:05.344617+00', 1096, NULL), +(26827, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:05.864054+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:06.267905+00', 403, NULL), +(26828, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:05.864483+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:06.146726+00', 282, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26829, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:06.146875+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:06.189382+00', 42, '{"fields-classified":0,"fields-failed":0}'), +(26830, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:06.189561+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:19:06.267799+00', 78, '{"total-tables":8,"tables-classified":0}'), +(26831, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:00.54462+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.755168+00', 22210, NULL), +(26832, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:00.555075+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:00.57016+00', 15, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26833, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:00.577679+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:01.347986+00', 770, '{"updated-tables":0,"total-tables":4}'), +(26834, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:01.348091+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.74302+00', 21394, '{"total-fields":39,"updated-fields":0}'), +(26835, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.743119+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.753359+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26836, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.75344+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.755121+00', 1, NULL), +(26837, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.840131+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.905732+00', 65, NULL), +(26838, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.840156+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.885658+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26839, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.88575+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.892116+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26840, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.892185+00', TIMESTAMP WITH TIME ZONE '2023-02-02 08:49:22.90538+00', 13, '{"total-tables":4,"tables-classified":0}'), +(26841, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 09:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:00:07.552+00', 7360, NULL), +(26842, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 09:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:00:07.552+00', 7331, NULL), +(26843, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:00.87205+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:06.868029+00', 5995, NULL), +(26844, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:00.879322+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:01.990802+00', 1111, '{"timezone-id":"UTC"}'), +(26845, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:02.008064+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:02.77705+00', 768, '{"updated-tables":0,"total-tables":8}'), +(26846, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:02.777169+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:06.037405+00', 3260, '{"total-fields":71,"updated-fields":0}'), +(26847, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:06.037738+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:06.231384+00', 193, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26848, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:06.231723+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:06.867736+00', 636, NULL), +(26849, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.122605+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.525772+00', 403, NULL), +(26850, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.12266+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.408573+00', 285, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26851, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.409021+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.462745+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(26852, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.463173+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:19:07.525663+00', 62, '{"total-tables":8,"tables-classified":0}'), +(26853, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:01.594017+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.086151+00', 18492, NULL), +(26854, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:01.614072+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:01.694483+00', 80, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26855, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:01.708521+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:02.806346+00', 1097, '{"updated-tables":0,"total-tables":4}'), +(26856, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:02.806744+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.051493+00', 17244, '{"total-fields":39,"updated-fields":0}'), +(26857, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.05162+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.065399+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26858, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.065507+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.086094+00', 20, NULL), +(26859, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.29798+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.434196+00', 136, NULL), +(26860, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.298008+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.384072+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26861, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.384238+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.401411+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(26862, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.401586+00', TIMESTAMP WITH TIME ZONE '2023-02-02 09:49:20.434129+00', 32, '{"total-tables":4,"tables-classified":0}'), +(26863, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 10:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:00:05.389+00', 5189, NULL), +(26864, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 10:00:00.195+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:00:05.649+00', 5454, NULL), +(26865, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:00.158929+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.812185+00', 5653, NULL), +(26866, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:00.162477+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:00.549564+00', 387, '{"timezone-id":"UTC"}'), +(26867, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:00.550399+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:00.877261+00', 326, '{"updated-tables":0,"total-tables":8}'), +(26868, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:00.877746+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.380046+00', 4502, '{"total-fields":71,"updated-fields":0}'), +(26869, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.380142+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.493299+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26870, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.493386+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.812139+00', 318, NULL), +(26871, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.948906+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:06.359028+00', 410, NULL), +(26872, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:05.948949+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:06.130212+00', 181, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26873, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:06.130311+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:06.33264+00', 202, '{"fields-classified":0,"fields-failed":0}'), +(26874, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:06.332711+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:19:06.358319+00', 25, '{"total-tables":8,"tables-classified":0}'), +(26875, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:00.892989+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.447462+00', 12554, NULL), +(26876, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:00.899658+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:00.9128+00', 13, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26877, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:00.916656+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:01.670842+00', 754, '{"updated-tables":0,"total-tables":4}'), +(26878, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:01.671092+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.42595+00', 11754, '{"total-fields":39,"updated-fields":0}'), +(26879, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.426086+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.440481+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26880, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.440712+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.447398+00', 6, NULL), +(26881, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.575572+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.713705+00', 138, NULL), +(26882, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.575618+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.657647+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26883, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.657764+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.672171+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(26884, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.672283+00', TIMESTAMP WITH TIME ZONE '2023-02-02 10:49:13.713642+00', 41, '{"total-tables":4,"tables-classified":0}'), +(26885, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 11:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:00:00.307+00', 153, NULL), +(26886, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 11:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:00:07.34+00', 7161, NULL), +(26887, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:00.316023+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.491744+00', 7175, NULL), +(26888, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:00.320081+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:01.144058+00', 823, '{"timezone-id":"UTC"}'), +(26889, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:01.153185+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:02.154038+00', 1000, '{"updated-tables":0,"total-tables":8}'), +(26890, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:02.154133+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.258968+00', 5104, '{"total-fields":71,"updated-fields":0}'), +(26891, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.25915+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.327712+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26892, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.327856+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.491657+00', 163, NULL), +(26893, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.595291+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.766742+00', 171, NULL), +(26894, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.595313+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.683264+00', 87, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26895, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.68338+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.736265+00', 52, '{"fields-classified":0,"fields-failed":0}'), +(26896, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.736486+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:19:07.766641+00', 30, '{"total-tables":8,"tables-classified":0}'), +(26897, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:00.568607+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.830269+00', 16261, NULL), +(26898, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:00.568653+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:00.586288+00', 17, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26899, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:00.586872+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:01.423443+00', 836, '{"updated-tables":0,"total-tables":4}'), +(26900, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:01.423607+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.821681+00', 15398, '{"total-fields":39,"updated-fields":0}'), +(26901, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.821795+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.828663+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26902, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.828739+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.830224+00', 1, NULL), +(26903, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.987419+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:17.141265+00', 153, NULL), +(26904, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:16.98744+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:17.122073+00', 134, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26905, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:17.122196+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:17.127883+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(26906, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:17.128016+00', TIMESTAMP WITH TIME ZONE '2023-02-02 11:49:17.141177+00', 13, '{"total-tables":4,"tables-classified":0}'), +(26907, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 12:00:00.428+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:00:06.679+00', 6251, NULL), +(26908, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 12:00:00.4+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:00:06.691+00', 6291, NULL), +(26909, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:00.45093+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.889032+00', 5438, NULL), +(26910, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:00.455218+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:01.759613+00', 1304, '{"timezone-id":"UTC"}'), +(26911, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:01.770979+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:02.571185+00', 800, '{"updated-tables":0,"total-tables":8}'), +(26912, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:02.571985+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.670551+00', 3098, '{"total-fields":71,"updated-fields":0}'), +(26913, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.670661+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.741796+00', 71, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26914, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.741863+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.888918+00', 147, NULL), +(26915, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.975542+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:06.127112+00', 151, NULL), +(26916, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:05.975563+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:06.085482+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26917, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:06.085614+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:06.102451+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(26918, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:06.102566+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:19:06.127022+00', 24, '{"total-tables":8,"tables-classified":0}'), +(26919, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:00.983111+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.063282+00', 20080, NULL), +(26920, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:00.987486+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:01.026751+00', 39, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26921, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:01.034899+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:02.054879+00', 1019, '{"updated-tables":0,"total-tables":4}'), +(26922, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:02.055286+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.049266+00', 18993, '{"total-fields":39,"updated-fields":0}'), +(26923, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.049402+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.059704+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26924, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.059809+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.0632+00', 3, NULL), +(26925, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.262287+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.383971+00', 121, NULL), +(26926, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.262308+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.350963+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26927, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.351084+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.361774+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(26928, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.361883+00', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:21.383869+00', 21, '{"total-tables":4,"tables-classified":0}'), +(26929, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:04.781+00', 4588, NULL), +(26930, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:00.205+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:04.624+00', 4419, NULL), +(26931, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:00.603513+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.03885+00', 7435, NULL), +(26932, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:00.606973+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:01.911906+00', 1304, '{"timezone-id":"UTC"}'), +(26933, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:01.91646+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:02.595459+00', 678, '{"updated-tables":0,"total-tables":8}'), +(26934, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:02.595825+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:07.06935+00', 4473, '{"total-fields":71,"updated-fields":0}'), +(26935, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:07.069838+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:07.252347+00', 182, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26936, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:07.25261+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.038806+00', 786, NULL), +(26937, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.308865+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:09.599489+00', 1290, NULL), +(26938, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.308902+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.648625+00', 339, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26939, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.649+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.739256+00', 90, '{"fields-classified":0,"fields-failed":0}'), +(26940, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:08.739879+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:19:09.59918+00', 859, '{"total-tables":8,"tables-classified":0}'), +(26941, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:00.549764+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.360553+00', 14810, NULL), +(26942, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:00.552618+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:00.574226+00', 21, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26943, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:00.587082+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:01.393014+00', 805, '{"updated-tables":0,"total-tables":4}'), +(26944, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:01.393362+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.316169+00', 13922, '{"total-fields":39,"updated-fields":0}'), +(26945, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.316276+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.35628+00', 40, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26946, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.356349+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.360512+00', 4, NULL), +(26947, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.597175+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.825691+00', 228, NULL), +(26948, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.597197+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.771026+00', 173, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26949, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.771125+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.801863+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(26950, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.801939+00', TIMESTAMP WITH TIME ZONE '2023-02-02 13:49:15.825626+00', 23, '{"total-tables":4,"tables-classified":0}'), +(26951, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 14:00:00.238+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:00:07.961+00', 7723, NULL), +(26952, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 14:00:00.236+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:00:08.165+00', 7929, NULL), +(26953, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:00.224288+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.911897+00', 4687, NULL), +(26954, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:00.229074+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:00.850022+00', 620, '{"timezone-id":"UTC"}'), +(26955, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:00.853523+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:01.494703+00', 641, '{"updated-tables":0,"total-tables":8}'), +(26956, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:01.495273+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.716112+00', 3220, '{"total-fields":71,"updated-fields":0}'), +(26957, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.716193+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.792094+00', 75, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26958, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.792201+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.911831+00', 119, NULL), +(26959, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.998188+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:05.14542+00', 147, NULL), +(26960, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:04.998211+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:05.061747+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26961, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:05.061812+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:05.083953+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(26962, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:05.084205+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:19:05.145107+00', 60, '{"total-tables":8,"tables-classified":0}'), +(26963, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:01.517967+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:16.903105+00', 15385, NULL), +(26964, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:01.535933+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:01.567094+00', 31, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26965, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:01.589214+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:02.730956+00', 1141, '{"updated-tables":0,"total-tables":4}'), +(26966, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:02.731058+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:16.893664+00', 14162, '{"total-fields":39,"updated-fields":0}'), +(26967, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:16.89377+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:16.900764+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26968, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:16.900888+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:16.903033+00', 2, NULL), +(26969, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.08845+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.171784+00', 83, NULL), +(26970, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.088477+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.152348+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26971, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.152487+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.159356+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(26972, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.159439+00', TIMESTAMP WITH TIME ZONE '2023-02-02 14:49:17.171734+00', 12, '{"total-tables":4,"tables-classified":0}'), +(26973, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 15:00:00.076+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:00:05.634+00', 5558, NULL), +(26974, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 15:00:00.1+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:00:05.633+00', 5533, NULL), +(26975, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:00.82249+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:04.984513+00', 4162, NULL), +(26976, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:00.828458+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:01.813664+00', 985, '{"timezone-id":"UTC"}'), +(26977, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:01.818161+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:02.408033+00', 589, '{"updated-tables":0,"total-tables":8}'), +(26978, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:02.409033+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:04.762664+00', 2353, '{"total-fields":71,"updated-fields":0}'), +(26979, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:04.763027+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:04.826936+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(26980, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:04.827209+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:04.984473+00', 157, NULL), +(26981, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.083912+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.229831+00', 145, NULL), +(26982, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.083934+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.173641+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26983, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.173705+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.186044+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(26984, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.186346+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:19:05.229787+00', 43, '{"total-tables":8,"tables-classified":0}'), +(26985, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:01.045993+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.535174+00', 13489, NULL), +(26986, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:01.048133+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:01.056989+00', 8, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(26987, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:01.059227+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:01.695788+00', 636, '{"updated-tables":0,"total-tables":4}'), +(26988, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:01.6962+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.512122+00', 12815, '{"total-fields":39,"updated-fields":0}'), +(26989, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.512221+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.527177+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(26990, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.527286+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.53511+00', 7, NULL), +(26991, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.748252+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.857498+00', 109, NULL), +(26992, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.748272+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.822173+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(26993, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.822255+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.833385+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(26994, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.833577+00', TIMESTAMP WITH TIME ZONE '2023-02-02 15:49:14.857431+00', 23, '{"total-tables":4,"tables-classified":0}'), +(26995, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 16:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:00:04.619+00', 4439, NULL), +(26996, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 16:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:00:04.882+00', 4707, NULL), +(26997, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:00.439762+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:05.681394+00', 5241, NULL), +(26998, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:00.441994+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:01.302677+00', 860, '{"timezone-id":"UTC"}'), +(26999, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:01.304836+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:01.894152+00', 589, '{"updated-tables":0,"total-tables":8}'), +(27000, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:01.894674+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:05.031534+00', 3136, '{"total-fields":71,"updated-fields":0}'), +(27001, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:05.031611+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:05.115556+00', 83, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27002, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:05.115854+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:05.681345+00', 565, NULL), +(27003, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.066658+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.499058+00', 432, NULL), +(27004, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.066684+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.381266+00', 314, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27005, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.381758+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.41647+00', 34, '{"fields-classified":0,"fields-failed":0}'), +(27006, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.417682+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:19:06.498719+00', 81, '{"total-tables":8,"tables-classified":0}'), +(27007, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:01.525909+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.194072+00', 13668, NULL), +(27008, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:01.532769+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:01.610842+00', 78, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27009, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:01.625214+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:02.735402+00', 1110, '{"updated-tables":0,"total-tables":4}'), +(27010, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:02.735981+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.168715+00', 12432, '{"total-fields":39,"updated-fields":0}'), +(27011, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.168833+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.188582+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27012, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.18866+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.194014+00', 5, NULL), +(27013, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.43572+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.58569+00', 149, NULL), +(27014, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.435742+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.535615+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27015, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.535697+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.550336+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(27016, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.550451+00', TIMESTAMP WITH TIME ZONE '2023-02-02 16:49:15.585588+00', 35, '{"total-tables":4,"tables-classified":0}'), +(27017, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 17:00:00.208+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:00:05.506+00', 5298, NULL), +(27018, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 17:00:00.206+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:00:05.72+00', 5514, NULL), +(27019, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:00.439503+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:03.933926+00', 3494, NULL), +(27020, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:00.443127+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:01.101372+00', 658, '{"timezone-id":"UTC"}'), +(27021, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:01.104707+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:01.600734+00', 496, '{"updated-tables":0,"total-tables":8}'), +(27022, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:01.601199+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:03.761779+00', 2160, '{"total-fields":71,"updated-fields":0}'), +(27023, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:03.761873+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:03.808491+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27024, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:03.808551+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:03.933897+00', 125, NULL), +(27025, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.061022+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.208644+00', 147, NULL), +(27026, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.061045+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.145125+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27027, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.14533+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.171532+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(27028, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.17205+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:19:04.208586+00', 36, '{"total-tables":8,"tables-classified":0}'), +(27029, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:01.007993+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.288203+00', 18280, NULL), +(27030, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:01.009772+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:01.014827+00', 5, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27031, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:01.017001+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:01.615792+00', 598, '{"updated-tables":0,"total-tables":4}'), +(27032, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:01.615887+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.265938+00', 17650, '{"total-fields":39,"updated-fields":0}'), +(27033, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.26789+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.287467+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27034, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.28762+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.28817+00', 0, NULL), +(27035, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.408463+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.464061+00', 55, NULL), +(27036, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.408497+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.453089+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27037, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.453293+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.459097+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(27038, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.459165+00', TIMESTAMP WITH TIME ZONE '2023-02-02 17:49:19.464016+00', 4, '{"total-tables":4,"tables-classified":0}'), +(27039, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 18:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:00:04.283+00', 4171, NULL), +(27040, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 18:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:00:04.283+00', 4152, NULL), +(27041, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:00.139283+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.271811+00', 4132, NULL), +(27042, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:00.148187+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:00.823354+00', 675, '{"timezone-id":"UTC"}'), +(27043, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:00.825316+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:01.381569+00', 556, '{"updated-tables":0,"total-tables":8}'), +(27044, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:01.382233+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.071053+00', 2688, '{"total-fields":71,"updated-fields":0}'), +(27045, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.071116+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.117654+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27046, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.11788+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.271756+00', 153, NULL), +(27047, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.577798+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.916039+00', 338, NULL), +(27048, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.57782+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.870715+00', 292, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27049, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.870779+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.891411+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(27050, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.891943+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:19:04.91598+00', 24, '{"total-tables":8,"tables-classified":0}'), +(27051, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:01.081596+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.544139+00', 18462, NULL), +(27052, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:01.084123+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:01.107439+00', 23, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27053, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:01.115057+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:02.243959+00', 1128, '{"updated-tables":0,"total-tables":4}'), +(27054, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:02.24436+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.528771+00', 17284, '{"total-fields":39,"updated-fields":0}'), +(27055, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.529694+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.541205+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27056, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.541729+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.543854+00', 2, NULL), +(27057, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.698954+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.796803+00', 97, NULL), +(27058, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.698971+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.755444+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27059, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.755526+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.769633+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(27060, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.769705+00', TIMESTAMP WITH TIME ZONE '2023-02-02 18:49:19.796745+00', 27, '{"total-tables":4,"tables-classified":0}'), +(27061, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 19:00:00.198+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:00:03.987+00', 3789, NULL), +(27062, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 19:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:00:04.391+00', 4195, NULL), +(27063, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:01.088537+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.224834+00', 5136, NULL), +(27064, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:01.097599+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:02.723871+00', 1626, '{"timezone-id":"UTC"}'), +(27065, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:02.725985+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:03.298789+00', 572, '{"updated-tables":0,"total-tables":8}'), +(27066, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:03.298943+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.04405+00', 2745, '{"total-fields":71,"updated-fields":0}'), +(27067, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.044129+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.1071+00', 62, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27068, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.107154+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.224808+00', 117, NULL), +(27069, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.30781+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.410927+00', 103, NULL), +(27070, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.307832+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.377103+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27071, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.377158+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.389839+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(27072, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.390218+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:19:06.410877+00', 20, '{"total-tables":8,"tables-classified":0}'), +(27073, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:00.848448+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.777618+00', 16929, NULL), +(27074, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:00.849659+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:00.855666+00', 6, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27075, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:00.859438+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:01.410732+00', 551, '{"updated-tables":0,"total-tables":4}'), +(27076, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:01.410818+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.768273+00', 16357, '{"total-fields":39,"updated-fields":0}'), +(27077, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.768376+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.775717+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27078, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.775813+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.777579+00', 1, NULL), +(27079, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.861174+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.999096+00', 137, NULL), +(27080, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.861748+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.948618+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27081, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.948695+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.967862+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(27082, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.967931+00', TIMESTAMP WITH TIME ZONE '2023-02-02 19:49:17.998996+00', 31, '{"total-tables":4,"tables-classified":0}'), +(27083, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 20:00:00.162+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:00:04.206+00', 4044, NULL), +(27084, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 20:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:00:04.378+00', 4247, NULL), +(27085, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:00.527333+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.104072+00', 8576, NULL), +(27086, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:00.533251+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:02.194296+00', 1661, '{"timezone-id":"UTC"}'), +(27087, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:02.198278+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:02.84829+00', 650, '{"updated-tables":0,"total-tables":8}'), +(27088, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:02.848664+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:08.853663+00', 6004, '{"total-fields":71,"updated-fields":0}'), +(27089, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:08.853745+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:08.916871+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27090, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:08.916938+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.104037+00', 187, NULL), +(27091, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.282607+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.419805+00', 137, NULL), +(27092, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.282625+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.352739+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27093, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.352937+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.374262+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(27094, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.374919+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:19:09.419726+00', 44, '{"total-tables":8,"tables-classified":0}'), +(27095, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:01.247904+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:16.935374+00', 15687, NULL), +(27096, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:01.253288+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:01.290114+00', 36, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27097, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:01.316286+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:02.519918+00', 1203, '{"updated-tables":0,"total-tables":4}'), +(27098, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:02.520297+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:16.911291+00', 14390, '{"total-fields":39,"updated-fields":0}'), +(27099, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:16.911487+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:16.929246+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27100, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:16.929384+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:16.935293+00', 5, NULL), +(27101, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.073645+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.151532+00', 77, NULL), +(27102, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.073665+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.125524+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27103, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.125603+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.134835+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(27104, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.1349+00', TIMESTAMP WITH TIME ZONE '2023-02-02 20:49:17.151485+00', 16, '{"total-tables":4,"tables-classified":0}'), +(27105, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:00.243+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:05.332+00', 5089, NULL), +(27106, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:00.222+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:05.332+00', 5110, NULL), +(27107, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:06.345782+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:22.306242+00', 15960, NULL), +(27108, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:06.349462+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:12.938532+00', 6589, '{"deleted":0}'), +(27109, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:12.941756+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:00:22.306198+00', 9364, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(27110, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:01.032112+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:06.027283+00', 4995, NULL), +(27111, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:01.037641+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:01.535766+00', 498, '{"timezone-id":"UTC"}'), +(27112, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:01.540648+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:02.061328+00', 520, '{"updated-tables":0,"total-tables":8}'), +(27113, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:02.061745+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:04.833326+00', 2771, '{"total-fields":71,"updated-fields":0}'), +(27114, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:04.833546+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:05.171765+00', 338, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27115, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:05.172118+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:06.027209+00', 855, NULL), +(27116, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:06.869677+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:07.334462+00', 464, NULL), +(27117, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:06.869715+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:07.225056+00', 355, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27118, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:07.225434+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:07.280623+00', 55, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27119, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:07.281098+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:19:07.334294+00', 53, '{"total-tables":8,"tables-classified":0}'), +(27120, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:01.407061+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.578751+00', 17171, NULL), +(27121, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:01.414912+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:01.482924+00', 68, '{"timezone-id":null}'), +(27122, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:01.499022+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:02.787714+00', 1288, '{"updated-tables":0,"total-tables":4}'), +(27123, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:02.788037+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.556112+00', 15768, '{"total-fields":39,"updated-fields":0}'), +(27124, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.556246+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.572767+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27125, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.572918+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.578657+00', 5, NULL), +(27126, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.739158+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.840021+00', 100, NULL), +(27127, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.739177+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.803284+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27128, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.803388+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.818733+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(27129, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.81886+00', TIMESTAMP WITH TIME ZONE '2023-02-02 21:49:18.839924+00', 21, '{"total-tables":4,"tables-classified":0}'), +(27130, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 22:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:00:06.389+00', 6186, NULL), +(27131, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 22:00:00.203+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:00:06.811+00', 6608, NULL), +(27132, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:00.18913+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.137188+00', 5948, NULL), +(27133, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:00.193658+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:01.061291+00', 867, '{"timezone-id":"UTC"}'), +(27134, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:01.06402+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:01.500655+00', 436, '{"updated-tables":0,"total-tables":8}'), +(27135, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:01.500755+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:05.949457+00', 4448, '{"total-fields":71,"updated-fields":0}'), +(27136, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:05.949576+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.021055+00', 71, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27137, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.021163+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.137114+00', 115, NULL), +(27138, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.236944+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.338045+00', 101, NULL), +(27139, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.236966+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.284751+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27140, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.284898+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.299579+00', 14, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27141, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.299913+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:19:06.337997+00', 38, '{"total-tables":8,"tables-classified":0}'), +(27142, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:01.0568+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.766288+00', 10709, NULL), +(27143, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:01.057584+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:01.065059+00', 7, '{"timezone-id":null}'), +(27144, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:01.065746+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:02.028197+00', 962, '{"updated-tables":0,"total-tables":4}'), +(27145, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:02.028278+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.756681+00', 9728, '{"total-fields":39,"updated-fields":0}'), +(27146, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.756818+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.762749+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27147, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.762828+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.766237+00', 3, NULL), +(27148, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.887433+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.937235+00', 49, NULL), +(27149, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.887452+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.916879+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27150, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.916951+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.921863+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(27151, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.921959+00', TIMESTAMP WITH TIME ZONE '2023-02-02 22:49:11.937061+00', 15, '{"total-tables":4,"tables-classified":0}'), +(27152, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 23:00:00.297+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:00:05.607+00', 5310, NULL), +(27153, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-02 23:00:00.294+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:00:05.754+00', 5460, NULL), +(27154, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:00.312793+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.661576+00', 3348, NULL), +(27155, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:00.315335+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:00.792225+00', 476, '{"timezone-id":"UTC"}'), +(27156, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:00.794633+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:01.211896+00', 417, '{"updated-tables":0,"total-tables":8}'), +(27157, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:01.212387+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.497853+00', 2285, '{"total-fields":71,"updated-fields":0}'), +(27158, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.49802+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.544371+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27159, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.544515+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.661546+00', 117, NULL), +(27160, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.757794+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.875439+00', 117, NULL), +(27161, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.757821+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.831183+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27162, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.831258+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.85054+00', 19, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27163, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.850933+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:19:03.87539+00', 24, '{"total-tables":8,"tables-classified":0}'), +(27164, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:01.176769+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.187451+00', 14010, NULL), +(27165, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:01.182528+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:01.215456+00', 32, '{"timezone-id":null}'), +(27166, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:01.222405+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:02.72833+00', 1505, '{"updated-tables":0,"total-tables":4}'), +(27167, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:02.72891+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.166024+00', 12437, '{"total-fields":39,"updated-fields":0}'), +(27168, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.166134+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.17975+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27169, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.179894+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.187387+00', 7, NULL), +(27170, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.377913+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.515519+00', 137, NULL), +(27171, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.377933+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.457331+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27172, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.457415+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.47409+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(27173, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.474342+00', TIMESTAMP WITH TIME ZONE '2023-02-02 23:49:15.515454+00', 41, '{"total-tables":4,"tables-classified":0}'), +(27174, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 00:00:00.414+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:00:13.506+00', 13092, NULL), +(27175, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 00:00:00.347+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:00:14.085+00', 13738, NULL), +(27176, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:00.666708+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:07.843731+00', 7177, NULL), +(27177, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:00.671451+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:02.347678+00', 1676, '{"timezone-id":"UTC"}'), +(27178, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:02.350671+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:02.993931+00', 643, '{"updated-tables":0,"total-tables":8}'), +(27179, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:02.994326+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:07.591324+00', 4596, '{"total-fields":71,"updated-fields":0}'), +(27180, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:07.591434+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:07.650337+00', 58, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27181, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:07.650403+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:07.843687+00', 193, NULL), +(27182, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.081992+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.235803+00', 153, NULL), +(27183, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.082017+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.183712+00', 101, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27184, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.18379+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.201788+00', 17, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27185, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.202264+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:19:08.235746+00', 33, '{"total-tables":8,"tables-classified":0}'), +(27186, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:00.337598+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.406765+00', 14069, NULL), +(27187, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:00.337976+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:00.342186+00', 4, '{"timezone-id":null}'), +(27188, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:00.342878+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:01.232836+00', 889, '{"updated-tables":0,"total-tables":4}'), +(27189, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:01.232942+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.391125+00', 13158, '{"total-fields":39,"updated-fields":0}'), +(27190, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.39147+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.402423+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27191, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.402706+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.406447+00', 3, NULL), +(27192, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.59945+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.869471+00', 270, NULL), +(27193, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.599477+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.790298+00', 190, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27194, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.790608+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.821437+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(27195, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.82178+00', TIMESTAMP WITH TIME ZONE '2023-02-03 00:49:14.869401+00', 47, '{"total-tables":4,"tables-classified":0}'), +(27196, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 01:00:00.104+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:00:04.893+00', 4789, NULL), +(27197, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 01:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:00:04.893+00', 4764, NULL), +(27198, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:00.122972+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.751527+00', 7628, NULL), +(27199, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:00.125082+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:00.647668+00', 522, '{"timezone-id":"UTC"}'), +(27200, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:00.650746+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:01.22427+00', 573, '{"updated-tables":0,"total-tables":8}'), +(27201, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:01.22468+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.609984+00', 6385, '{"total-fields":71,"updated-fields":0}'), +(27202, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.610314+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.650592+00', 40, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27203, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.650643+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.75144+00', 100, NULL), +(27204, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.822275+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.922016+00', 99, NULL), +(27205, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.822293+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.87748+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27206, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.877561+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.8909+00', 13, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27207, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.891293+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:19:07.921937+00', 30, '{"total-tables":8,"tables-classified":0}'), +(27208, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:00.482026+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.676955+00', 13194, NULL), +(27209, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:00.483096+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:00.493507+00', 10, '{"timezone-id":null}'), +(27210, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:00.495076+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:01.199045+00', 703, '{"updated-tables":0,"total-tables":4}'), +(27211, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:01.199132+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.66743+00', 12468, '{"total-fields":39,"updated-fields":0}'), +(27212, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.667542+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.675256+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27213, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.675332+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.676918+00', 1, NULL), +(27214, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.839699+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.996226+00', 156, NULL), +(27215, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.839718+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.930156+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27216, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.930229+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.937112+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(27217, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.937182+00', TIMESTAMP WITH TIME ZONE '2023-02-03 01:49:13.996146+00', 58, '{"total-tables":4,"tables-classified":0}'), +(27218, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:00.256+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:06.34+00', 6084, NULL), +(27219, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:00.231+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:06.34+00', 6109, NULL), +(27220, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:06.883966+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:21.608969+00', 14725, NULL), +(27221, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:06.888651+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:08.398637+00', 1509, '{"deleted":0}'), +(27222, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:08.401796+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:00:21.608827+00', 13207, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(27223, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:00.354943+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.177827+00', 4822, NULL), +(27224, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:00.357291+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:01.445214+00', 1087, '{"timezone-id":"UTC"}'), +(27225, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:01.44757+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:01.909892+00', 462, '{"updated-tables":0,"total-tables":8}'), +(27226, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:01.910069+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:04.589693+00', 2679, '{"total-fields":71,"updated-fields":0}'), +(27227, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:04.590029+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:04.729591+00', 139, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27228, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:04.730086+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.177787+00', 447, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27229, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.27719+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.412293+00', 135, NULL), +(27230, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.277211+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.365642+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27231, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.365715+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.383561+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(27232, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.383872+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:19:05.412235+00', 28, '{"total-tables":8,"tables-classified":0}'), +(27233, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:01.23751+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.245704+00', 17008, NULL), +(27234, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:01.244252+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:01.283762+00', 39, '{"timezone-id":null}'), +(27235, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:01.291515+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:02.741232+00', 1449, '{"updated-tables":0,"total-tables":4}'), +(27236, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:02.741567+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.210067+00', 15468, '{"total-fields":39,"updated-fields":0}'), +(27237, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.21029+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.232459+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27238, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.232531+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.245385+00', 12, NULL), +(27239, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.458323+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.61159+00', 153, NULL), +(27240, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.458394+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.579006+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27241, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.580632+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.594319+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(27242, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.594411+00', TIMESTAMP WITH TIME ZONE '2023-02-03 02:49:18.611531+00', 17, '{"total-tables":4,"tables-classified":0}'), +(27243, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 03:00:00.189+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:00:09.47+00', 9281, NULL), +(27244, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 03:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:00:09.697+00', 9527, NULL), +(27245, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:00.6673+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.287916+00', 5620, NULL), +(27246, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:00.674501+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:01.917466+00', 1242, '{"timezone-id":"UTC"}'), +(27247, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:01.936861+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:03.943985+00', 2007, '{"updated-tables":0,"total-tables":8}'), +(27248, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:03.945193+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.056241+00', 2111, '{"total-fields":71,"updated-fields":0}'), +(27249, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.056294+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.11338+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27250, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.113447+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.287865+00', 174, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27251, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.405305+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.534003+00', 128, NULL), +(27252, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.405327+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.48548+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27253, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.485563+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.507934+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(27254, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.508372+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:19:06.533954+00', 25, '{"total-tables":8,"tables-classified":0}'), +(27255, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:00.475174+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.617166+00', 13141, NULL), +(27256, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:00.475586+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:00.481278+00', 5, '{"timezone-id":null}'), +(27257, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:00.482083+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:01.254199+00', 772, '{"updated-tables":0,"total-tables":4}'), +(27258, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:01.254627+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.612053+00', 12357, '{"total-fields":39,"updated-fields":0}'), +(27259, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.6122+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.615658+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27260, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.6158+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.617097+00', 1, NULL), +(27261, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.734865+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.795461+00', 60, NULL), +(27262, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.734894+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.777855+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27263, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.778011+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.782027+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(27264, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.78212+00', TIMESTAMP WITH TIME ZONE '2023-02-03 03:49:13.795382+00', 13, '{"total-tables":4,"tables-classified":0}'), +(27265, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 04:00:00.491+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:00:05.539+00', 5048, NULL), +(27266, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 04:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:00:05.709+00', 5509, NULL), +(27267, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:00.362011+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.43435+00', 4072, NULL), +(27268, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:00.36709+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:01.172465+00', 805, '{"timezone-id":"UTC"}'), +(27269, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:01.174707+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:01.650326+00', 475, '{"updated-tables":0,"total-tables":8}'), +(27270, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:01.650723+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.233246+00', 2582, '{"total-fields":71,"updated-fields":0}'), +(27271, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.233337+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.306267+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27272, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.30636+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.434319+00', 127, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27273, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.535413+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.656643+00', 121, NULL), +(27274, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.535435+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.603591+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27275, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.603822+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.618359+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(27276, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.618675+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:19:04.656515+00', 37, '{"total-tables":8,"tables-classified":0}'), +(27277, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:00.616597+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.411929+00', 14795, NULL), +(27278, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:00.617603+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:00.628841+00', 11, '{"timezone-id":null}'), +(27279, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:00.63223+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:01.931513+00', 1299, '{"updated-tables":0,"total-tables":4}'), +(27280, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:01.931627+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.396837+00', 13465, '{"total-fields":39,"updated-fields":0}'), +(27281, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.397265+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.408065+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27282, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.408137+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.411873+00', 3, NULL), +(27283, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.657028+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.742582+00', 85, NULL), +(27284, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.657046+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.712528+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27285, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.712609+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.721492+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(27286, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.721564+00', TIMESTAMP WITH TIME ZONE '2023-02-03 04:49:15.742528+00', 20, '{"total-tables":4,"tables-classified":0}'), +(27287, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 05:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:00:04.714+00', 4534, NULL), +(27288, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 05:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:00:04.928+00', 4786, NULL), +(27289, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:00.535592+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.848183+00', 4312, NULL), +(27290, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:00.540626+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:01.524574+00', 983, '{"timezone-id":"UTC"}'), +(27291, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:01.528048+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:02.326225+00', 798, '{"updated-tables":0,"total-tables":8}'), +(27292, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:02.327572+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.622544+00', 2294, '{"total-fields":71,"updated-fields":0}'), +(27293, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.62265+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.694073+00', 71, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27294, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.694162+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.84815+00', 153, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27295, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.974559+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:05.113201+00', 138, NULL), +(27296, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:04.974577+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:05.044763+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27297, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:05.044847+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:05.060871+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(27298, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:05.061339+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:19:05.113145+00', 51, '{"total-tables":8,"tables-classified":0}'), +(27299, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:00.923425+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.037259+00', 16113, NULL), +(27300, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:00.924923+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:00.936034+00', 11, '{"timezone-id":null}'), +(27301, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:00.939809+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:01.880951+00', 941, '{"updated-tables":0,"total-tables":4}'), +(27302, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:01.881904+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.022983+00', 15141, '{"total-fields":39,"updated-fields":0}'), +(27303, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.023489+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.032799+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27304, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.033004+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.037068+00', 4, NULL), +(27305, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.173418+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.267211+00', 93, NULL), +(27306, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.173438+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.24064+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27307, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.240709+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.247292+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(27308, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.247389+00', TIMESTAMP WITH TIME ZONE '2023-02-03 05:49:17.267153+00', 19, '{"total-tables":4,"tables-classified":0}'), +(27309, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 06:00:00.225+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:00:05.45+00', 5225, NULL), +(27310, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 06:00:00.197+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:00:05.724+00', 5527, NULL), +(27311, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:00.676339+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.279625+00', 4603, NULL), +(27312, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:00.68848+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:01.610621+00', 922, '{"timezone-id":"UTC"}'), +(27313, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:01.649661+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:03.265627+00', 1615, '{"updated-tables":0,"total-tables":8}'), +(27314, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:03.265957+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.127074+00', 1861, '{"total-fields":71,"updated-fields":0}'), +(27315, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.127217+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.175867+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27316, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.175932+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.279543+00', 103, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27317, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.394509+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.516761+00', 122, NULL), +(27318, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.394529+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.463268+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27319, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.46333+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.479059+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(27320, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.479561+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:19:05.516712+00', 37, '{"total-tables":8,"tables-classified":0}'), +(27321, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:00.871806+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.019041+00', 15147, NULL), +(27322, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:00.875282+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:00.890419+00', 15, '{"timezone-id":null}'), +(27323, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:00.89365+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:01.510464+00', 616, '{"updated-tables":0,"total-tables":4}'), +(27324, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:01.510887+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:15.990487+00', 14479, '{"total-fields":39,"updated-fields":0}'), +(27325, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:15.990608+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.005198+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27326, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.005352+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.018893+00', 13, NULL), +(27327, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.226013+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.39609+00', 170, NULL), +(27328, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.226076+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.331502+00', 105, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27329, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.331682+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.35496+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(27330, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.355056+00', TIMESTAMP WITH TIME ZONE '2023-02-03 06:49:16.396022+00', 40, '{"total-tables":4,"tables-classified":0}'), +(27331, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 07:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:00:02.88+00', 2751, NULL), +(27332, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 07:00:00.102+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:00:03.041+00', 2939, NULL), +(27333, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:00.263365+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.791315+00', 3527, NULL), +(27334, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:00.269393+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:01.136513+00', 867, '{"timezone-id":"UTC"}'), +(27335, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:01.140265+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:01.62406+00', 483, '{"updated-tables":0,"total-tables":8}'), +(27336, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:01.624865+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.580812+00', 1955, '{"total-fields":71,"updated-fields":0}'), +(27337, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.581172+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.644657+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27338, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.644843+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.79128+00', 146, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27339, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.936198+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:04.060886+00', 124, NULL), +(27340, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.936219+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.999431+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27341, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:03.999501+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:04.019283+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(27342, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:04.019676+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:19:04.060834+00', 41, '{"total-tables":8,"tables-classified":0}'), +(27343, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:00.683547+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.349779+00', 15666, NULL), +(27344, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:00.697428+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:00.731559+00', 34, '{"timezone-id":null}'), +(27345, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:00.735123+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:01.238086+00', 502, '{"updated-tables":0,"total-tables":4}'), +(27346, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:01.238448+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.333076+00', 15094, '{"total-fields":39,"updated-fields":0}'), +(27347, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.333149+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.34379+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27348, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.343853+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.349716+00', 5, NULL), +(27349, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.507858+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.650317+00', 142, NULL), +(27350, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.507879+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.606417+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27351, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.606578+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.619502+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(27352, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.61974+00', TIMESTAMP WITH TIME ZONE '2023-02-03 07:49:16.650263+00', 30, '{"total-tables":4,"tables-classified":0}'), +(27353, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 08:00:00.195+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:00:03.589+00', 3394, NULL), +(27354, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 08:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:00:03.917+00', 3725, NULL), +(27355, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:00.338364+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.044306+00', 5705, NULL), +(27356, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:00.34263+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:01.534516+00', 1191, '{"timezone-id":"UTC"}'), +(27357, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:01.53835+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:02.16092+00', 622, '{"updated-tables":0,"total-tables":8}'), +(27358, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:02.161789+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:05.758916+00', 3597, '{"total-fields":71,"updated-fields":0}'), +(27359, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:05.759261+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:05.832582+00', 73, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27360, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:05.83286+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.044263+00', 211, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27361, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.164673+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.296968+00', 132, NULL), +(27362, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.164697+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.248038+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27363, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.248107+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.269944+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(27364, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.270389+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:19:06.296775+00', 26, '{"total-tables":8,"tables-classified":0}'), +(27365, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:00.910143+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.062018+00', 14151, NULL), +(27366, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:00.914847+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:00.933202+00', 18, '{"timezone-id":null}'), +(27367, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:00.941399+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:01.762513+00', 821, '{"updated-tables":0,"total-tables":4}'), +(27368, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:01.762589+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.047116+00', 13284, '{"total-fields":39,"updated-fields":0}'), +(27369, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.04719+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.055753+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27370, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.055835+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.061965+00', 6, NULL), +(27371, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.174669+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.326833+00', 152, NULL), +(27372, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.174688+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.302637+00', 127, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27373, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.302712+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.313542+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(27374, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.313608+00', TIMESTAMP WITH TIME ZONE '2023-02-03 08:49:15.32678+00', 13, '{"total-tables":4,"tables-classified":0}'), +(27375, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 09:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:00:04.712+00', 4541, NULL), +(27376, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 09:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:00:04.955+00', 4785, NULL), +(27377, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:00.451309+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.356765+00', 3905, NULL), +(27378, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:00.454116+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:00.910115+00', 455, '{"timezone-id":"UTC"}'), +(27379, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:00.913175+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:01.189667+00', 276, '{"updated-tables":0,"total-tables":8}'), +(27380, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:01.18975+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.136864+00', 2947, '{"total-fields":71,"updated-fields":0}'), +(27381, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.137023+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.190213+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27382, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.190293+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.35673+00', 166, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27383, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.468062+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.673013+00', 204, NULL), +(27384, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.468081+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.597407+00', 129, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27385, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.597656+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.619848+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(27386, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.619933+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:19:04.672956+00', 53, '{"total-tables":8,"tables-classified":0}'), +(27387, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:01.241166+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.075298+00', 14834, NULL), +(27388, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:01.248692+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:01.276387+00', 27, '{"timezone-id":null}'), +(27389, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:01.284247+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:02.302719+00', 1018, '{"updated-tables":0,"total-tables":4}'), +(27390, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:02.303267+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.058352+00', 13755, '{"total-fields":39,"updated-fields":0}'), +(27391, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.058453+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.070745+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27392, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.070815+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.07524+00', 4, NULL), +(27393, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.214141+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.301384+00', 87, NULL), +(27394, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.21416+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.269071+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27395, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.269191+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.279959+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(27396, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.280073+00', TIMESTAMP WITH TIME ZONE '2023-02-03 09:49:16.30133+00', 21, '{"total-tables":4,"tables-classified":0}'), +(27397, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 10:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:00:05.201+00', 5021, NULL), +(27398, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 10:00:00.181+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:00:05.713+00', 5532, NULL), +(27399, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:00.546522+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.685352+00', 6138, NULL), +(27400, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:00.552076+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:01.710196+00', 1158, '{"timezone-id":"UTC"}'), +(27401, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:01.71457+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:02.465622+00', 751, '{"updated-tables":0,"total-tables":8}'), +(27402, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:02.465716+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:05.681531+00', 3215, '{"total-fields":71,"updated-fields":0}'), +(27403, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:05.682027+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:05.79249+00', 110, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27404, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:05.792572+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.685325+00', 892, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27405, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.797512+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.952505+00', 154, NULL), +(27406, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.79753+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.908588+00', 111, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27407, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.908668+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.929336+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(27408, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.929813+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:19:06.952454+00', 22, '{"total-tables":8,"tables-classified":0}'), +(27409, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:00.755911+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:14.780316+00', 14024, NULL), +(27410, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:00.75865+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:00.764022+00', 5, '{"timezone-id":null}'), +(27411, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:00.767323+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:01.485481+00', 718, '{"updated-tables":0,"total-tables":4}'), +(27412, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:01.48558+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:14.766345+00', 13280, '{"total-fields":39,"updated-fields":0}'), +(27413, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:14.766485+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:14.778022+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27414, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:14.778129+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:14.780257+00', 2, NULL), +(27415, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.103089+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.456881+00', 353, NULL), +(27416, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.103119+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.276483+00', 173, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27417, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.277276+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.332772+00', 55, '{"fields-classified":0,"fields-failed":0}'), +(27418, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.33287+00', TIMESTAMP WITH TIME ZONE '2023-02-03 10:49:15.456812+00', 123, '{"total-tables":4,"tables-classified":0}'), +(27419, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 11:00:00.228+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:00:04.607+00', 4379, NULL), +(27420, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 11:00:00.225+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:00:04.884+00', 4659, NULL), +(27421, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:00.932484+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:07.953351+00', 7020, NULL), +(27422, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:00.944827+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:02.123716+00', 1178, '{"timezone-id":"UTC"}'), +(27423, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:02.131029+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:02.935302+00', 804, '{"updated-tables":0,"total-tables":8}'), +(27424, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:02.935679+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:07.271519+00', 4335, '{"total-fields":71,"updated-fields":0}'), +(27425, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:07.271883+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:07.417638+00', 145, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27426, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:07.41772+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:07.953305+00', 535, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27427, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.199723+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.382828+00', 183, NULL), +(27428, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.199742+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.288078+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27429, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.288196+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.3244+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(27430, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.324792+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:19:08.382701+00', 57, '{"total-tables":8,"tables-classified":0}'), +(27431, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:00.577535+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.362254+00', 12784, NULL), +(27432, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:00.580968+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:00.60127+00', 20, '{"timezone-id":null}'), +(27433, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:00.606121+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:01.229158+00', 623, '{"updated-tables":0,"total-tables":4}'), +(27434, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:01.229466+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.343915+00', 12114, '{"total-fields":39,"updated-fields":0}'), +(27435, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.344026+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.357251+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27436, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.357341+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.362182+00', 4, NULL), +(27437, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.579371+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.675289+00', 95, NULL), +(27438, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.579396+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.644817+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27439, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.645036+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.656577+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(27440, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.656784+00', TIMESTAMP WITH TIME ZONE '2023-02-03 11:49:13.675108+00', 18, '{"total-tables":4,"tables-classified":0}'), +(27441, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 12:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:00:03.017+00', 2824, NULL), +(27442, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 12:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:00:03.221+00', 3037, NULL), +(27443, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:00.260529+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.57453+00', 5314, NULL), +(27444, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:00.264141+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:00.8719+00', 607, '{"timezone-id":"UTC"}'), +(27445, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:00.87742+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:01.371099+00', 493, '{"updated-tables":0,"total-tables":8}'), +(27446, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:01.371482+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.381839+00', 4010, '{"total-fields":71,"updated-fields":0}'), +(27447, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.381934+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.444562+00', 62, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27448, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.444628+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.574502+00', 129, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27449, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.666057+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.799018+00', 132, NULL), +(27450, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.666075+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.727924+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27451, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.727986+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.745767+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(27452, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.746186+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:19:05.798943+00', 52, '{"total-tables":8,"tables-classified":0}'), +(27453, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:00.119914+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.821545+00', 18701, NULL), +(27454, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:00.119947+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:00.125075+00', 5, '{"timezone-id":null}'), +(27455, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:00.125176+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:00.351616+00', 226, '{"updated-tables":0,"total-tables":4}'), +(27456, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:00.35199+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.810824+00', 18458, '{"total-fields":39,"updated-fields":0}'), +(27457, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.810972+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.81973+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27458, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.819845+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.821468+00', 1, NULL), +(27459, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.887342+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.990523+00', 103, NULL), +(27460, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.887364+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.969577+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27461, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.969718+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.977339+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(27462, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.97746+00', TIMESTAMP WITH TIME ZONE '2023-02-03 12:49:18.990453+00', 12, '{"total-tables":4,"tables-classified":0}'), +(27463, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 13:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:00:03.637+00', 3503, NULL), +(27464, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 13:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:00:03.637+00', 3522, NULL), +(27465, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:00.256135+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.730917+00', 4474, NULL), +(27466, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:00.261611+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:01.270736+00', 1009, '{"timezone-id":"UTC"}'), +(27467, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:01.274345+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:01.769479+00', 495, '{"updated-tables":0,"total-tables":8}'), +(27468, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:01.769559+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.459751+00', 2690, '{"total-fields":71,"updated-fields":0}'), +(27469, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.460079+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.550594+00', 90, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27470, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.550849+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.730842+00', 179, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27471, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.869909+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.979549+00', 109, NULL), +(27472, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.869931+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.941808+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27473, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.947802+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.959639+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(27474, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.960035+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:19:04.979358+00', 19, '{"total-tables":8,"tables-classified":0}'), +(27475, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:01.246895+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.618523+00', 14371, NULL), +(27476, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:01.252137+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:01.283224+00', 31, '{"timezone-id":null}'), +(27477, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:01.2894+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:02.502136+00', 1212, '{"updated-tables":0,"total-tables":4}'), +(27478, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:02.502217+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.60716+00', 13104, '{"total-fields":39,"updated-fields":0}'), +(27479, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.607259+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.614562+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27480, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.614626+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.618475+00', 3, NULL), +(27481, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.828398+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.940692+00', 112, NULL), +(27482, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.828456+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.898297+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27483, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.898373+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.914085+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(27484, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.914167+00', TIMESTAMP WITH TIME ZONE '2023-02-03 13:49:15.940641+00', 26, '{"total-tables":4,"tables-classified":0}'), +(27485, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 14:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:00:03.454+00', 3329, NULL), +(27486, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 14:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:00:03.617+00', 3498, NULL), +(27487, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:00.258713+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.199364+00', 3940, NULL), +(27488, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:00.261951+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:00.768589+00', 506, '{"timezone-id":"UTC"}'), +(27489, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:00.770786+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:01.221565+00', 450, '{"updated-tables":0,"total-tables":8}'), +(27490, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:01.221836+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:03.875879+00', 2654, '{"total-fields":71,"updated-fields":0}'), +(27491, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:03.875952+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:03.985061+00', 109, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27492, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:03.985144+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.199322+00', 214, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27493, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.322036+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.502403+00', 180, NULL), +(27494, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.322055+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.429662+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27495, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.429734+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.467443+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(27496, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.468266+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:19:04.502332+00', 34, '{"total-tables":8,"tables-classified":0}'), +(27497, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:00.47909+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.124476+00', 12645, NULL), +(27498, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:00.482042+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:00.499247+00', 17, '{"timezone-id":null}'), +(27499, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:00.503771+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:01.173818+00', 670, '{"updated-tables":0,"total-tables":4}'), +(27500, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:01.174226+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.100078+00', 11925, '{"total-fields":39,"updated-fields":0}'), +(27501, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.100197+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.115408+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27502, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.115825+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.124369+00', 8, NULL), +(27503, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.324795+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.438689+00', 113, NULL), +(27504, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.324817+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.402048+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27505, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.402121+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.411744+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(27506, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.411806+00', TIMESTAMP WITH TIME ZONE '2023-02-03 14:49:13.438622+00', 26, '{"total-tables":4,"tables-classified":0}'), +(27507, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 15:00:00.187+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:00:04.539+00', 4352, NULL), +(27508, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 15:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:00:04.819+00', 4647, NULL), +(27509, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:00.356634+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.631761+00', 4275, NULL), +(27510, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:00.359813+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:01.951846+00', 1592, '{"timezone-id":"UTC"}'), +(27511, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:01.95481+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:02.420397+00', 465, '{"updated-tables":0,"total-tables":8}'), +(27512, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:02.420936+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.43927+00', 2018, '{"total-fields":71,"updated-fields":0}'), +(27513, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.439355+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.499577+00', 60, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27514, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.499647+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.631731+00', 132, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27515, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.703083+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.805691+00', 102, NULL), +(27516, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.7031+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.76448+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27517, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.764599+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.778432+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(27518, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.77878+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:19:04.805637+00', 26, '{"total-tables":8,"tables-classified":0}'), +(27519, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:00.753372+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.747604+00', 14994, NULL), +(27520, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:00.755377+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:00.763242+00', 7, '{"timezone-id":null}'), +(27521, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:00.766651+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:01.27933+00', 512, '{"updated-tables":0,"total-tables":4}'), +(27522, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:01.279423+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.735422+00', 14455, '{"total-fields":39,"updated-fields":0}'), +(27523, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.735573+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.745711+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27524, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.74579+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.747565+00', 1, NULL), +(27525, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.90598+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:16.034777+00', 128, NULL), +(27526, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.906001+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.991756+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27527, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:15.991819+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:16.005586+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(27528, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:16.005766+00', TIMESTAMP WITH TIME ZONE '2023-02-03 15:49:16.034725+00', 28, '{"total-tables":4,"tables-classified":0}'), +(27529, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 16:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:00:04.651+00', 4503, NULL), +(27530, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 16:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:00:04.82+00', 4691, NULL), +(27531, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:00.271361+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.570696+00', 2299, NULL), +(27532, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:00.274167+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:00.654238+00', 380, '{"timezone-id":"UTC"}'), +(27533, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:00.656567+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:01.039513+00', 382, '{"updated-tables":0,"total-tables":8}'), +(27534, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:01.039749+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.320623+00', 1280, '{"total-fields":71,"updated-fields":0}'), +(27535, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.320743+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.429528+00', 108, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27536, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.429663+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.570654+00', 140, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27537, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.667892+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.909749+00', 241, NULL), +(27538, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.667913+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.817358+00', 149, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27539, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.817437+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.86793+00', 50, '{"fields-classified":0,"fields-failed":0}'), +(27540, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.868593+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:19:02.90969+00', 41, '{"total-tables":8,"tables-classified":0}'), +(27541, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:00.766404+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.763908+00', 12997, NULL), +(27542, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:00.770437+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:00.786402+00', 15, '{"timezone-id":null}'), +(27543, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:00.790409+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:01.759708+00', 969, '{"updated-tables":0,"total-tables":4}'), +(27544, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:01.760034+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.755941+00', 11995, '{"total-fields":39,"updated-fields":0}'), +(27545, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.756052+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.762256+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27546, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.762329+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.76387+00', 1, NULL), +(27547, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.899951+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:15.931964+00', 2032, NULL), +(27548, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:13.899969+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:15.919437+00', 2019, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27549, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:15.919566+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:15.922694+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(27550, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:15.922748+00', TIMESTAMP WITH TIME ZONE '2023-02-03 16:49:15.931923+00', 9, '{"total-tables":4,"tables-classified":0}'), +(27551, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 17:00:00.256+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:00:03.464+00', 3208, NULL), +(27552, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 17:00:00.279+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:00:03.463+00', 3184, NULL), +(27553, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:00.370861+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.851344+00', 3480, NULL), +(27554, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:00.374471+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:01.013434+00', 638, '{"timezone-id":"UTC"}'), +(27555, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:01.015779+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:01.571504+00', 555, '{"updated-tables":0,"total-tables":8}'), +(27556, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:01.571605+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.674731+00', 2103, '{"total-fields":71,"updated-fields":0}'), +(27557, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.674827+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.728587+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27558, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.728658+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.851294+00', 122, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27559, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.931285+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:04.042456+00', 111, NULL), +(27560, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.931308+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.995587+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27561, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:03.995657+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:04.014073+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(27562, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:04.014709+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:19:04.04241+00', 27, '{"total-tables":8,"tables-classified":0}'), +(27563, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:00.812217+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.476741+00', 13664, NULL), +(27564, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:00.81353+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:00.819772+00', 6, '{"timezone-id":null}'), +(27565, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:00.8216+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:01.749352+00', 927, '{"updated-tables":0,"total-tables":4}'), +(27566, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:01.749957+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.465595+00', 12715, '{"total-fields":39,"updated-fields":0}'), +(27567, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.465718+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.469696+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27568, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.469805+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.476659+00', 6, NULL), +(27569, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.662739+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.861703+00', 198, NULL), +(27570, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.662762+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.761457+00', 98, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27571, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.762152+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.798754+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(27572, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.799376+00', TIMESTAMP WITH TIME ZONE '2023-02-03 17:49:14.861601+00', 62, '{"total-tables":4,"tables-classified":0}'), +(27573, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 18:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:00:02.487+00', 2355, NULL), +(27574, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 18:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:00:02.753+00', 2623, NULL), +(27575, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:00.226832+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.70516+00', 4478, NULL), +(27576, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:00.229437+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:00.893472+00', 664, '{"timezone-id":"UTC"}'), +(27577, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:00.896579+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:01.637092+00', 740, '{"updated-tables":0,"total-tables":8}'), +(27578, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:01.63823+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.446101+00', 2807, '{"total-fields":71,"updated-fields":0}'), +(27579, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.446192+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.519406+00', 73, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27580, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.519513+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.705103+00', 185, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27581, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.827188+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.931828+00', 104, NULL), +(27582, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.827207+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.884969+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27583, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.88508+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.899746+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(27584, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.900111+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:19:04.931751+00', 31, '{"total-tables":8,"tables-classified":0}'), +(27585, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:01.037838+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.75785+00', 14720, NULL), +(27586, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:01.041378+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:01.052714+00', 11, '{"timezone-id":null}'), +(27587, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:01.055715+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:01.521766+00', 466, '{"updated-tables":0,"total-tables":4}'), +(27588, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:01.522172+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.742868+00', 14220, '{"total-fields":39,"updated-fields":0}'), +(27589, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.743059+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.753743+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27590, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.753867+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.757653+00', 3, NULL), +(27591, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.872709+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.960516+00', 87, NULL), +(27592, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.87273+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.931105+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27593, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.931342+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.940105+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(27594, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.940285+00', TIMESTAMP WITH TIME ZONE '2023-02-03 18:49:15.960296+00', 20, '{"total-tables":4,"tables-classified":0}'), +(27595, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 19:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:00:06.224+00', 6104, NULL), +(27596, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 19:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:00:06.088+00', 5953, NULL), +(27597, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:00.273875+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.177481+00', 3903, NULL), +(27598, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:00.277295+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:00.984959+00', 707, '{"timezone-id":"UTC"}'), +(27599, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:00.990457+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:01.436657+00', 446, '{"updated-tables":0,"total-tables":8}'), +(27600, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:01.437012+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:03.461319+00', 2024, '{"total-fields":71,"updated-fields":0}'), +(27601, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:03.461456+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:03.510795+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27602, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:03.510893+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.177444+00', 666, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27603, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.261611+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.385776+00', 124, NULL), +(27604, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.26163+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.351323+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27605, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.351389+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.364914+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(27606, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.365233+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:19:04.385727+00', 20, '{"total-tables":8,"tables-classified":0}'), +(27607, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:00.877573+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.441838+00', 13564, NULL), +(27608, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:00.878624+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:00.889669+00', 11, '{"timezone-id":null}'), +(27609, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:00.893677+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:01.852479+00', 958, '{"updated-tables":0,"total-tables":4}'), +(27610, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:01.853183+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.429745+00', 12576, '{"total-fields":39,"updated-fields":0}'), +(27611, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.43026+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.438894+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27612, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.43899+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.441784+00', 2, NULL), +(27613, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.564672+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.680694+00', 116, NULL), +(27614, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.564694+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.619479+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27615, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.619546+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.629301+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(27616, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.629388+00', TIMESTAMP WITH TIME ZONE '2023-02-03 19:49:14.680558+00', 51, '{"total-tables":4,"tables-classified":0}'), +(27617, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 20:00:00.18+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:00:03.989+00', 3809, NULL), +(27618, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 20:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:00:04.245+00', 4075, NULL), +(27619, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:00.574441+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:05.126378+00', 4551, NULL), +(27620, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:00.578894+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:01.008285+00', 429, '{"timezone-id":"UTC"}'), +(27621, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:01.011748+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:01.432523+00', 420, '{"updated-tables":0,"total-tables":8}'), +(27622, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:01.432875+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:04.854043+00', 3421, '{"total-fields":71,"updated-fields":0}'), +(27623, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:04.854361+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:04.914606+00', 60, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27624, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:04.914854+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:05.126342+00', 211, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27625, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:05.231491+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:06.112564+00', 881, NULL), +(27626, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:05.231511+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:06.069813+00', 838, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27627, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:06.069891+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:06.085294+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(27628, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:06.085698+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:19:06.112496+00', 26, '{"total-tables":8,"tables-classified":0}'), +(27629, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:00.522101+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.863404+00', 11341, NULL), +(27630, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:00.523192+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:00.530136+00', 6, '{"timezone-id":null}'), +(27631, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:00.531385+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:01.016738+00', 485, '{"updated-tables":0,"total-tables":4}'), +(27632, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:01.016949+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.857408+00', 10840, '{"total-fields":39,"updated-fields":0}'), +(27633, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.857492+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.8615+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27634, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.8616+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.863374+00', 1, NULL), +(27635, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.962164+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:12.020058+00', 57, NULL), +(27636, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:11.962183+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:12.00759+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27637, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:12.007684+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:12.012545+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(27638, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:12.012606+00', TIMESTAMP WITH TIME ZONE '2023-02-03 20:49:12.019996+00', 7, '{"total-tables":4,"tables-classified":0}'), +(27639, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:03.091+00', 2938, NULL), +(27640, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:03.091+00', 2927, NULL), +(27641, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:03.466374+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:13.619311+00', 10152, NULL), +(27642, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:03.470553+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:05.104265+00', 1633, '{"deleted":0}'), +(27643, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:05.107317+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:00:13.619272+00', 8511, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(27644, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:00.694881+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.638177+00', 5943, NULL), +(27645, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:00.698316+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:01.185291+00', 486, '{"timezone-id":"UTC"}'), +(27646, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:01.188272+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:01.631595+00', 443, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27647, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:01.632208+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.021757+00', 4389, '{"total-fields":71,"updated-fields":0}'), +(27648, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.022164+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.144887+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27649, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.1452+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.638138+00', 492, NULL), +(27650, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.827145+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:07.048314+00', 221, NULL), +(27651, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:06.827165+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:07.006831+00', 179, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27652, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:07.006934+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:07.030851+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(27653, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:07.031+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:19:07.048221+00', 17, '{"total-tables":8,"tables-classified":0}'), +(27654, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:00.872198+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.63801+00', 10765, NULL), +(27655, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:00.875786+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:00.892962+00', 17, '{"timezone-id":null}'), +(27656, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:00.89725+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:01.449853+00', 552, '{"updated-tables":0,"total-tables":4}'), +(27657, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:01.450151+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.62274+00', 10172, '{"total-fields":39,"updated-fields":0}'), +(27658, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.622843+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.634076+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27659, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.634192+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.637911+00', 3, NULL), +(27660, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.770168+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.858607+00', 88, NULL), +(27661, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.770187+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.830056+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27662, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.830189+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.840949+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(27663, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.841033+00', TIMESTAMP WITH TIME ZONE '2023-02-03 21:49:11.858557+00', 17, '{"total-tables":4,"tables-classified":0}'), +(27664, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 22:00:00.105+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:00:00.268+00', 163, NULL), +(27665, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 22:00:00.326+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:00:03.089+00', 2763, NULL), +(27666, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:00.317777+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.050612+00', 2732, NULL), +(27667, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:00.322039+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:00.969037+00', 646, '{"timezone-id":"UTC"}'), +(27668, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:00.971261+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:01.295994+00', 324, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27669, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:01.296081+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:02.868315+00', 1572, '{"total-fields":71,"updated-fields":0}'), +(27670, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:02.868395+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:02.916682+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27671, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:02.916749+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.050576+00', 133, NULL), +(27672, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.121059+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.234429+00', 113, NULL), +(27673, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.121078+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.178668+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27674, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.178725+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.193685+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(27675, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.19398+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:19:03.234376+00', 40, '{"total-tables":8,"tables-classified":0}'), +(27676, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:00.626699+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.375077+00', 19748, NULL), +(27677, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:00.628928+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:00.63457+00', 5, '{"timezone-id":null}'), +(27678, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:00.636705+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:01.354079+00', 717, '{"updated-tables":0,"total-tables":4}'), +(27679, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:01.354389+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.362644+00', 19008, '{"total-fields":39,"updated-fields":0}'), +(27680, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.363977+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.373456+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27681, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.373664+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.375011+00', 1, NULL), +(27682, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.508715+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.546371+00', 37, NULL), +(27683, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.50874+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.528323+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27684, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.528692+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.531164+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(27685, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.531338+00', TIMESTAMP WITH TIME ZONE '2023-02-03 22:49:20.546218+00', 14, '{"total-tables":4,"tables-classified":0}'), +(27686, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 23:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:00:01.54+00', 1423, NULL), +(27687, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-03 23:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:00:01.655+00', 1538, NULL), +(27688, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:00.300515+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.2593+00', 3958, NULL), +(27689, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:00.304351+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:00.993312+00', 688, '{"timezone-id":"UTC"}'), +(27690, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:00.995179+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:01.35432+00', 359, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27691, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:01.354606+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.111571+00', 2756, '{"total-fields":71,"updated-fields":0}'), +(27692, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.111623+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.144155+00', 32, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27693, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.144204+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.259261+00', 115, NULL), +(27694, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.351216+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.461564+00', 110, NULL), +(27695, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.351238+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.402411+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27696, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.402629+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.414816+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(27697, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.415479+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:19:04.46136+00', 45, '{"total-tables":8,"tables-classified":0}'), +(27698, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:00.749338+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.052939+00', 15303, NULL), +(27699, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:00.762989+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:00.78301+00', 20, '{"timezone-id":null}'), +(27700, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:00.788816+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:01.217331+00', 428, '{"updated-tables":0,"total-tables":4}'), +(27701, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:01.217462+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.042941+00', 14825, '{"total-fields":39,"updated-fields":0}'), +(27702, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.04499+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.050851+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27703, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.050969+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.052908+00', 1, NULL), +(27704, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.163928+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.209522+00', 45, NULL), +(27705, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.16395+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.195665+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27706, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.195734+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.200424+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(27707, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.200482+00', TIMESTAMP WITH TIME ZONE '2023-02-03 23:49:16.209462+00', 8, '{"total-tables":4,"tables-classified":0}'), +(27708, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 00:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:00:05.243+00', 5074, NULL), +(27709, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 00:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:00:05.54+00', 5371, NULL), +(27710, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:00.207676+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.353579+00', 4145, NULL), +(27711, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:00.211096+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:01.08197+00', 870, '{"timezone-id":"UTC"}'), +(27712, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:01.084637+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:01.462457+00', 377, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27713, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:01.462592+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.156396+00', 2693, '{"total-fields":71,"updated-fields":0}'), +(27714, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.156655+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.211559+00', 54, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27715, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.211614+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.353546+00', 141, NULL), +(27716, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.435085+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.538678+00', 103, NULL), +(27717, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.435105+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.490228+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27718, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.490281+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.501228+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(27719, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.502705+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:19:04.538611+00', 35, '{"total-tables":8,"tables-classified":0}'), +(27720, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:00.327987+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.338663+00', 13010, NULL), +(27721, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:00.329392+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:00.337494+00', 8, '{"timezone-id":null}'), +(27722, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:00.338532+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:00.617333+00', 278, '{"updated-tables":0,"total-tables":4}'), +(27723, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:00.617554+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.32613+00', 12708, '{"total-fields":39,"updated-fields":0}'), +(27724, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.326205+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.335597+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27725, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.335707+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.338588+00', 2, NULL), +(27726, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.44254+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.5062+00', 63, NULL), +(27727, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.442562+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.484652+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27728, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.484765+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.491923+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(27729, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.492033+00', TIMESTAMP WITH TIME ZONE '2023-02-04 00:49:13.506097+00', 14, '{"total-tables":4,"tables-classified":0}'), +(27730, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 01:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:00:04.274+00', 4148, NULL), +(27731, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 01:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:00:04.541+00', 4416, NULL), +(27732, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:00.267664+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:04.933119+00', 4665, NULL), +(27733, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:00.271234+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:01.057924+00', 786, '{"timezone-id":"UTC"}'), +(27734, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:01.063027+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:01.458343+00', 395, '{"updated-tables":0,"total-tables":8}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27735, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:01.458683+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:03.757203+00', 2298, '{"total-fields":71,"updated-fields":0}'), +(27736, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:03.757509+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:03.869355+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27737, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:03.869696+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:04.933055+00', 1063, NULL), +(27738, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.005003+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.183379+00', 178, NULL), +(27739, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.005022+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.1097+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27740, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.109784+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.134415+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(27741, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.134743+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:19:05.183118+00', 48, '{"total-tables":8,"tables-classified":0}'), +(27742, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:00.858043+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.335675+00', 11477, NULL), +(27743, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:00.860566+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:00.879318+00', 18, '{"timezone-id":null}'), +(27744, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:00.885418+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:01.600708+00', 715, '{"updated-tables":0,"total-tables":4}'), +(27745, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:01.600809+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.319648+00', 10718, '{"total-fields":39,"updated-fields":0}'), +(27746, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.31975+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.331361+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27747, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.331431+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.335631+00', 4, NULL), +(27748, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.480018+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.548164+00', 68, NULL), +(27749, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.48004+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.528856+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27750, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.528963+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.53359+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(27751, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.53369+00', TIMESTAMP WITH TIME ZONE '2023-02-04 01:49:12.548105+00', 14, '{"total-tables":4,"tables-classified":0}'), +(27752, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:03.638+00', 3436, NULL), +(27753, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:00.222+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:03.638+00', 3416, NULL), +(27754, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:04.276199+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:15.332643+00', 11056, NULL), +(27755, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:04.282078+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:05.844626+00', 1562, '{"deleted":0}'), +(27756, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:05.848703+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:00:15.332541+00', 9483, '{"errors":0,"created":0,"updated":0,"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27757, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:00.468938+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.045335+00', 4576, NULL), +(27758, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:00.470607+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:01.111538+00', 640, '{"timezone-id":"UTC"}'), +(27759, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:01.115058+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:01.601281+00', 486, '{"updated-tables":0,"total-tables":8}'), +(27760, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:01.601364+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:04.099402+00', 2498, '{"total-fields":71,"updated-fields":0}'), +(27761, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:04.09967+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:04.217309+00', 117, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27762, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:04.21757+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.045302+00', 827, NULL), +(27763, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.25408+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.646328+00', 392, NULL), +(27764, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.254097+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.516558+00', 262, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27765, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.52057+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.585177+00', 64, '{"fields-classified":0,"fields-failed":0}'), +(27766, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.585601+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:19:05.646267+00', 60, '{"total-tables":8,"tables-classified":0}'), +(27767, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:00.090651+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.703579+00', 13612, NULL), +(27768, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:00.090681+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:00.092664+00', 1, '{"timezone-id":null}'), +(27769, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:00.092743+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:00.36671+00', 273, '{"updated-tables":0,"total-tables":4}'), +(27770, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:00.3668+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.701634+00', 13334, '{"total-fields":39,"updated-fields":0}'), +(27771, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.701724+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.703282+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27772, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.703332+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.703566+00', 0, NULL), +(27773, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.780864+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.844356+00', 63, NULL), +(27774, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.780885+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.801973+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27775, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.802046+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.80494+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(27776, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.805001+00', TIMESTAMP WITH TIME ZONE '2023-02-04 02:49:13.844309+00', 39, '{"total-tables":4,"tables-classified":0}'), +(27777, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 03:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:00:03.99+00', 3870, NULL), +(27778, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 03:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:00:03.837+00', 3697, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27779, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:00.333396+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.595316+00', 3261, NULL), +(27780, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:00.336982+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:01.075207+00', 738, '{"timezone-id":"UTC"}'), +(27781, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:01.078493+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:01.430749+00', 352, '{"updated-tables":0,"total-tables":8}'), +(27782, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:01.431071+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:02.9587+00', 1527, '{"total-fields":71,"updated-fields":0}'), +(27783, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:02.958792+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.404638+00', 445, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27784, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.404727+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.59528+00', 190, NULL), +(27785, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.691531+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.838174+00', 146, NULL), +(27786, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.691555+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.781972+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27787, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.782045+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.797958+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(27788, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.798046+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:19:03.838111+00', 40, '{"total-tables":8,"tables-classified":0}'), +(27789, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:00.498845+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.288289+00', 11789, NULL), +(27790, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:00.502853+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:00.519487+00', 16, '{"timezone-id":null}'), +(27791, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:00.524515+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:01.228008+00', 703, '{"updated-tables":0,"total-tables":4}'), +(27792, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:01.228325+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.249377+00', 11021, '{"total-fields":39,"updated-fields":0}'), +(27793, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.24951+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.282085+00', 32, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27794, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.282153+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.288246+00', 6, NULL), +(27795, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.496926+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.67226+00', 175, NULL), +(27796, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.496983+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.631859+00', 134, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27797, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.632155+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.649992+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(27798, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.650312+00', TIMESTAMP WITH TIME ZONE '2023-02-04 03:49:12.672213+00', 21, '{"total-tables":4,"tables-classified":0}'), +(27799, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 04:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:00:03.178+00', 3048, NULL), +(27800, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 04:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:00:03.384+00', 3258, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27801, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:00.835464+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.838666+00', 5003, NULL), +(27802, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:00.840163+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:01.676612+00', 836, '{"timezone-id":"UTC"}'), +(27803, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:01.679366+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:02.154029+00', 474, '{"updated-tables":0,"total-tables":8}'), +(27804, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:02.15411+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.673695+00', 3519, '{"total-fields":71,"updated-fields":0}'), +(27805, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.673775+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.721726+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27806, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.721785+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.838635+00', 116, NULL), +(27807, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.959574+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:06.07075+00', 111, NULL), +(27808, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:05.959594+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:06.009805+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27809, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:06.009872+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:06.022553+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(27810, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:06.022881+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:19:06.07068+00', 47, '{"total-tables":8,"tables-classified":0}'), +(27811, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:00.875182+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.194042+00', 11318, NULL), +(27812, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:00.879235+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:00.908748+00', 29, '{"timezone-id":null}'), +(27813, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:00.913193+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:01.419187+00', 505, '{"updated-tables":0,"total-tables":4}'), +(27814, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:01.41947+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.177143+00', 10757, '{"total-fields":39,"updated-fields":0}'), +(27815, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.177255+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.19033+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27816, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.190412+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.193997+00', 3, NULL), +(27817, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.319767+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.410244+00', 90, NULL), +(27818, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.319787+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.376654+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27819, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.37673+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.385839+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(27820, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.385913+00', TIMESTAMP WITH TIME ZONE '2023-02-04 04:49:12.410197+00', 24, '{"total-tables":4,"tables-classified":0}'), +(27821, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 05:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:00:03.127+00', 3001, NULL), +(27822, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 05:00:00.272+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:00:03.123+00', 2851, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27823, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:00.288561+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.111187+00', 2822, NULL), +(27824, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:00.292878+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:01.028976+00', 736, '{"timezone-id":"UTC"}'), +(27825, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:01.030508+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:01.370697+00', 340, '{"updated-tables":0,"total-tables":8}'), +(27826, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:01.371013+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:02.915828+00', 1544, '{"total-fields":71,"updated-fields":0}'), +(27827, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:02.915939+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:02.968389+00', 52, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27828, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:02.968508+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.111135+00', 142, NULL), +(27829, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.174027+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.275777+00', 101, NULL), +(27830, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.174048+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.224251+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27831, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.22431+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.234994+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(27832, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.235284+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:19:03.275726+00', 40, '{"total-tables":8,"tables-classified":0}'), +(27833, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:00.703838+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.467959+00', 15764, NULL), +(27834, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:00.705214+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:00.719226+00', 14, '{"timezone-id":null}'), +(27835, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:00.723023+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:01.381601+00', 658, '{"updated-tables":0,"total-tables":4}'), +(27836, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:01.381776+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.451276+00', 15069, '{"total-fields":39,"updated-fields":0}'), +(27837, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.453159+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.464048+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27838, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.464295+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.467784+00', 3, NULL), +(27839, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.584255+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.72263+00', 138, NULL), +(27840, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.584273+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.688496+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27841, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.688567+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.693134+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(27842, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.693188+00', TIMESTAMP WITH TIME ZONE '2023-02-04 05:49:16.722585+00', 29, '{"total-tables":4,"tables-classified":0}'), +(27843, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 06:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:00:02.436+00', 2305, NULL), +(27844, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 06:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:00:02.844+00', 2715, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27845, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:00.159511+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.071648+00', 1912, NULL), +(27846, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:00.163122+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:00.618083+00', 454, '{"timezone-id":"UTC"}'), +(27847, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:00.620542+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:00.953654+00', 333, '{"updated-tables":0,"total-tables":8}'), +(27848, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:00.953885+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:01.889704+00', 935, '{"total-fields":71,"updated-fields":0}'), +(27849, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:01.889842+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:01.939133+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27850, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:01.939226+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.071613+00', 132, NULL), +(27851, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.152064+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.256521+00', 104, NULL), +(27852, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.152083+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.216243+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27853, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.21645+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.232339+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(27854, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.232738+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:19:02.256401+00', 23, '{"total-tables":8,"tables-classified":0}'), +(27855, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:00.678055+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.75201+00', 13073, NULL), +(27856, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:00.679298+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:00.687471+00', 8, '{"timezone-id":null}'), +(27857, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:00.692239+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:01.246729+00', 554, '{"updated-tables":0,"total-tables":4}'), +(27858, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:01.247037+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.746323+00', 12499, '{"total-fields":39,"updated-fields":0}'), +(27859, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.746423+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.750396+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27860, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.75048+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.751984+00', 1, NULL), +(27861, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.800479+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.875787+00', 75, NULL), +(27862, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.800498+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.856652+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27863, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.856724+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.862186+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(27864, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.86225+00', TIMESTAMP WITH TIME ZONE '2023-02-04 06:49:13.875741+00', 13, '{"total-tables":4,"tables-classified":0}'), +(27865, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 07:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:00:02.317+00', 2194, NULL), +(27866, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 07:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:00:02.531+00', 2413, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27867, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:00.238018+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.373085+00', 3135, NULL), +(27868, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:00.242974+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:00.85069+00', 607, '{"timezone-id":"UTC"}'), +(27869, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:00.852455+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:01.224928+00', 372, '{"updated-tables":0,"total-tables":8}'), +(27870, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:01.225205+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.204552+00', 1979, '{"total-fields":71,"updated-fields":0}'), +(27871, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.204626+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.273737+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27872, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.273803+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.373055+00', 99, NULL), +(27873, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.422168+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.494278+00', 72, NULL), +(27874, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.422188+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.469939+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27875, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.469994+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.480793+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(27876, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.480991+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:19:03.494195+00', 13, '{"total-tables":8,"tables-classified":0}'), +(27877, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:00.634416+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.663937+00', 14029, NULL), +(27878, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:00.636184+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:00.641716+00', 5, '{"timezone-id":null}'), +(27879, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:00.643855+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:01.262849+00', 618, '{"updated-tables":0,"total-tables":4}'), +(27880, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:01.263099+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.644894+00', 13381, '{"total-fields":39,"updated-fields":0}'), +(27881, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.644999+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.660619+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27882, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.66071+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.663721+00', 3, NULL), +(27883, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.76762+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.88191+00', 114, NULL), +(27884, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.767638+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.864684+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27885, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.864867+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.87056+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(27886, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.870656+00', TIMESTAMP WITH TIME ZONE '2023-02-04 07:49:14.881862+00', 11, '{"total-tables":4,"tables-classified":0}'), +(27887, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 08:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:00:02.172+00', 2043, NULL), +(27888, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 08:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:00:02.274+00', 2152, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27889, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:00.274653+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.171162+00', 3896, NULL), +(27890, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:00.278721+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:01.031872+00', 753, '{"timezone-id":"UTC"}'), +(27891, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:01.03463+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:01.483144+00', 448, '{"updated-tables":0,"total-tables":8}'), +(27892, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:01.483438+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:03.98297+00', 2499, '{"total-fields":71,"updated-fields":0}'), +(27893, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:03.983042+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.025767+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27894, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.025824+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.171134+00', 145, NULL), +(27895, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.28102+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.383749+00', 102, NULL), +(27896, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.281041+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.343379+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27897, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.343439+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.35793+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(27898, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.358342+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:19:04.383688+00', 25, '{"total-tables":8,"tables-classified":0}'), +(27899, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:00.98382+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.673042+00', 12689, NULL), +(27900, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:00.988137+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:01.014235+00', 26, '{"timezone-id":null}'), +(27901, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:01.028996+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:01.667019+00', 638, '{"updated-tables":0,"total-tables":4}'), +(27902, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:01.667413+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.657295+00', 11989, '{"total-fields":39,"updated-fields":0}'), +(27903, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.657387+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.66916+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27904, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.66922+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.673+00', 3, NULL), +(27905, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.840756+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.930601+00', 89, NULL), +(27906, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.840777+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.904221+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27907, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.904314+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.913863+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(27908, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.913936+00', TIMESTAMP WITH TIME ZONE '2023-02-04 08:49:13.930551+00', 16, '{"total-tables":4,"tables-classified":0}'), +(27909, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 09:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:00:03.25+00', 3128, NULL), +(27910, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 09:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:00:03.446+00', 3324, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27911, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:00.55282+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.629839+00', 3077, NULL), +(27912, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:00.55626+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:01.186727+00', 630, '{"timezone-id":"UTC"}'), +(27913, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:01.188801+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:01.621469+00', 432, '{"updated-tables":0,"total-tables":8}'), +(27914, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:01.621779+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.396133+00', 1774, '{"total-fields":71,"updated-fields":0}'), +(27915, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.396225+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.454071+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27916, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.454168+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.629806+00', 175, NULL), +(27917, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.728374+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.826594+00', 98, NULL), +(27918, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.728395+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.790007+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27919, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.79008+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.803426+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(27920, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.803864+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:19:03.826511+00', 22, '{"total-tables":8,"tables-classified":0}'), +(27921, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:00.915285+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.042501+00', 14127, NULL), +(27922, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:00.918708+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:00.937349+00', 18, '{"timezone-id":null}'), +(27923, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:00.943618+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:01.528229+00', 584, '{"updated-tables":0,"total-tables":4}'), +(27924, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:01.528548+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.017842+00', 13489, '{"total-fields":39,"updated-fields":0}'), +(27925, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.018035+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.03095+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27926, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.03116+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.042348+00', 11, NULL), +(27927, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.223117+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.366497+00', 143, NULL), +(27928, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.223143+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.334003+00', 110, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27929, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.334062+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.343617+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(27930, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.343684+00', TIMESTAMP WITH TIME ZONE '2023-02-04 09:49:15.366445+00', 22, '{"total-tables":4,"tables-classified":0}'), +(27931, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 10:00:00.09+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:00:02.904+00', 2814, NULL), +(27932, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 10:00:00.077+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:00:03.027+00', 2950, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27933, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:00.681625+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.354629+00', 3673, NULL), +(27934, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:00.692993+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:01.274973+00', 581, '{"timezone-id":"UTC"}'), +(27935, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:01.27732+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:01.679978+00', 402, '{"updated-tables":0,"total-tables":8}'), +(27936, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:01.680355+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.170963+00', 2490, '{"total-fields":71,"updated-fields":0}'), +(27937, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.171074+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.228591+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27938, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.228696+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.354594+00', 125, NULL), +(27939, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.466382+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.572731+00', 106, NULL), +(27940, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.466402+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.536327+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27941, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.536393+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.551296+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(27942, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.55172+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:19:04.572686+00', 20, '{"total-tables":8,"tables-classified":0}'), +(27943, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:00.386846+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.819307+00', 13432, NULL), +(27944, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:00.387691+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:00.39527+00', 7, '{"timezone-id":null}'), +(27945, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:00.398497+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:01.01239+00', 613, '{"updated-tables":0,"total-tables":4}'), +(27946, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:01.012901+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.81413+00', 12801, '{"total-fields":39,"updated-fields":0}'), +(27947, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.814206+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.817794+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27948, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.817838+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.819283+00', 1, NULL), +(27949, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.898478+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:14.074858+00', 176, NULL), +(27950, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.898496+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.937902+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27951, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.937967+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.947777+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(27952, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:13.947969+00', TIMESTAMP WITH TIME ZONE '2023-02-04 10:49:14.074709+00', 126, '{"total-tables":4,"tables-classified":0}'), +(27953, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 11:00:00.073+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:00:02.195+00', 2122, NULL), +(27954, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 11:00:00.053+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:00:02.196+00', 2143, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27955, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:00.349191+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.041388+00', 3692, NULL), +(27956, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:00.353739+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:01.087134+00', 733, '{"timezone-id":"UTC"}'), +(27957, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:01.089579+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:01.474439+00', 384, '{"updated-tables":0,"total-tables":8}'), +(27958, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:01.474836+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:03.868035+00', 2393, '{"total-fields":71,"updated-fields":0}'), +(27959, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:03.868143+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:03.914806+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27960, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:03.915075+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.04131+00', 126, NULL), +(27961, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.17061+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.33466+00', 164, NULL), +(27962, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.170632+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.231525+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27963, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.231587+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.283497+00', 51, '{"fields-classified":0,"fields-failed":0}'), +(27964, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.283888+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:19:04.334585+00', 50, '{"total-tables":8,"tables-classified":0}'), +(27965, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:00.423089+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.882882+00', 14459, NULL), +(27966, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:00.427636+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:00.455836+00', 28, '{"timezone-id":null}'), +(27967, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:00.463379+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:00.970637+00', 507, '{"updated-tables":0,"total-tables":4}'), +(27968, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:00.970924+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.871415+00', 13900, '{"total-fields":39,"updated-fields":0}'), +(27969, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.871512+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.880164+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27970, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.880234+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.882837+00', 2, NULL), +(27971, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.974071+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.994402+00', 20, NULL), +(27972, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.974095+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.987078+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27973, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.987164+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.99022+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(27974, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.990269+00', TIMESTAMP WITH TIME ZONE '2023-02-04 11:49:14.994369+00', 4, '{"total-tables":4,"tables-classified":0}'), +(27975, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 12:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:00:02.501+00', 2363, NULL), +(27976, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 12:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:00:02.5+00', 2343, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27977, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:00.140519+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.685199+00', 2544, NULL), +(27978, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:00.140964+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:00.898057+00', 757, '{"timezone-id":"UTC"}'), +(27979, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:00.899027+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:01.237885+00', 338, '{"updated-tables":0,"total-tables":8}'), +(27980, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:01.238217+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.40978+00', 1171, '{"total-fields":71,"updated-fields":0}'), +(27981, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.409899+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.574558+00', 164, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(27982, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.574619+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.685164+00', 110, NULL), +(27983, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.827468+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.923325+00', 95, NULL), +(27984, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.827489+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.884789+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27985, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.884854+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.902328+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(27986, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.902745+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:19:02.923278+00', 20, '{"total-tables":8,"tables-classified":0}'), +(27987, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:00.425342+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.840447+00', 14415, NULL), +(27988, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:00.428009+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:00.437275+00', 9, '{"timezone-id":null}'), +(27989, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:00.439666+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:01.172957+00', 733, '{"updated-tables":0,"total-tables":4}'), +(27990, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:01.173405+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.832446+00', 13659, '{"total-fields":39,"updated-fields":0}'), +(27991, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.83255+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.839345+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(27992, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.839413+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.840395+00', 0, NULL), +(27993, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.878899+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.902432+00', 23, NULL), +(27994, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.878917+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.891498+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(27995, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.891551+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.898163+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(27996, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.898227+00', TIMESTAMP WITH TIME ZONE '2023-02-04 12:49:14.902362+00', 4, '{"total-tables":4,"tables-classified":0}'), +(27997, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 13:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:00:02.947+00', 2850, NULL), +(27998, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 13:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:00:03.049+00', 2952, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(27999, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:00.214149+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.851128+00', 2636, NULL), +(28000, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:00.2173+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:00.59822+00', 380, '{"timezone-id":"UTC"}'), +(28001, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:00.60173+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:00.963639+00', 361, '{"updated-tables":0,"total-tables":8}'), +(28002, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:00.964122+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.542702+00', 1578, '{"total-fields":71,"updated-fields":0}'), +(28003, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.542801+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.596488+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28004, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.596575+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.851003+00', 254, NULL), +(28005, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.927771+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:03.017954+00', 90, NULL), +(28006, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.927794+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.986275+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28007, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:02.986333+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:03.000742+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(28008, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:03.000983+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:19:03.017905+00', 16, '{"total-tables":8,"tables-classified":0}'), +(28009, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:00.487175+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.464881+00', 14977, NULL), +(28010, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:00.488435+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:00.493216+00', 4, '{"timezone-id":null}'), +(28011, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:00.494603+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:00.984229+00', 489, '{"updated-tables":0,"total-tables":4}'), +(28012, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:00.984568+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.438049+00', 14453, '{"total-fields":39,"updated-fields":0}'), +(28013, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.438124+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.463136+00', 25, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28014, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.463197+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.464845+00', 1, NULL), +(28015, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.536985+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.602979+00', 65, NULL), +(28016, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.537004+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.570558+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28017, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.570616+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.575799+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(28018, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.575852+00', TIMESTAMP WITH TIME ZONE '2023-02-04 13:49:15.602923+00', 27, '{"total-tables":4,"tables-classified":0}'), +(28019, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 14:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:00:03.991+00', 3885, NULL), +(28020, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 14:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:00:03.874+00', 3767, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28021, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:00.176288+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.604129+00', 3427, NULL), +(28022, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:00.180281+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:00.766006+00', 585, '{"timezone-id":"UTC"}'), +(28023, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:00.767946+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:01.147582+00', 379, '{"updated-tables":0,"total-tables":8}'), +(28024, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:01.147958+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.434814+00', 2286, '{"total-fields":71,"updated-fields":0}'), +(28025, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.434883+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.482365+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28026, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.482438+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.604101+00', 121, NULL), +(28027, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.67374+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.772071+00', 98, NULL), +(28028, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.67376+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.732672+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28029, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.732776+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.746008+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28030, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.746386+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:19:03.772022+00', 25, '{"total-tables":8,"tables-classified":0}'), +(28031, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:00.111976+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.479349+00', 13367, NULL), +(28032, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:00.112009+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:00.114633+00', 2, '{"timezone-id":null}'), +(28033, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:00.114936+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:00.326753+00', 211, '{"updated-tables":0,"total-tables":4}'), +(28034, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:00.327074+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.046332+00', 12719, '{"total-fields":39,"updated-fields":0}'), +(28035, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.046808+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.478239+00', 431, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28036, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.478357+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.479279+00', 0, NULL), +(28037, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.516337+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.544873+00', 28, NULL), +(28038, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.516357+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.532995+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28039, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.533132+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.537761+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(28040, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.537834+00', TIMESTAMP WITH TIME ZONE '2023-02-04 14:49:13.544771+00', 6, '{"total-tables":4,"tables-classified":0}'), +(28041, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 15:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:00:04.659+00', 4517, NULL), +(28042, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 15:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:00:04.435+00', 4292, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28043, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:00.25839+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.19289+00', 4934, NULL), +(28044, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:00.262651+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:01.160338+00', 897, '{"timezone-id":"UTC"}'), +(28045, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:01.163434+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:01.704792+00', 541, '{"updated-tables":0,"total-tables":8}'), +(28046, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:01.705208+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:04.696932+00', 2991, '{"total-fields":71,"updated-fields":0}'), +(28047, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:04.697293+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.075101+00', 377, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28048, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.07515+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.19286+00', 117, NULL), +(28049, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.275711+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.378218+00', 102, NULL), +(28050, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.27573+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.344753+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28051, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.344832+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.359859+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(28052, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.360183+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:19:05.378177+00', 17, '{"total-tables":8,"tables-classified":0}'), +(28053, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:00.924021+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.607387+00', 18683, NULL), +(28054, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:00.9251+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:00.932713+00', 7, '{"timezone-id":null}'), +(28055, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:00.934843+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:01.95953+00', 1024, '{"updated-tables":0,"total-tables":4}'), +(28056, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:01.959845+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.592909+00', 17633, '{"total-fields":39,"updated-fields":0}'), +(28057, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.595227+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.605992+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28058, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.60634+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.607356+00', 1, NULL), +(28059, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.695615+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.762552+00', 66, NULL), +(28060, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.695635+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.726149+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28061, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.726226+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.746195+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(28062, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.746277+00', TIMESTAMP WITH TIME ZONE '2023-02-04 15:49:19.76251+00', 16, '{"total-tables":4,"tables-classified":0}'), +(28063, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 16:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:00:02.169+00', 2014, NULL), +(28064, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 16:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:00:02.302+00', 2148, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28065, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:00.354312+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.212261+00', 2857, NULL), +(28066, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:00.35801+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:00.964478+00', 606, '{"timezone-id":"UTC"}'), +(28067, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:00.966791+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:01.383981+00', 417, '{"updated-tables":0,"total-tables":8}'), +(28068, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:01.384082+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.001786+00', 1617, '{"total-fields":71,"updated-fields":0}'), +(28069, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.002106+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.074986+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28070, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.075322+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.212228+00', 136, NULL), +(28071, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.293625+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.395225+00', 101, NULL), +(28072, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.293645+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.361261+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28073, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.361502+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.374349+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(28074, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.374751+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:19:03.395019+00', 20, '{"total-tables":8,"tables-classified":0}'), +(28075, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:00.496727+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.098112+00', 10601, NULL), +(28076, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:00.497533+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:00.502605+00', 5, '{"timezone-id":null}'), +(28077, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:00.502701+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:01.06549+00', 562, '{"updated-tables":0,"total-tables":4}'), +(28078, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:01.065583+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.090143+00', 10024, '{"total-fields":39,"updated-fields":0}'), +(28079, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.090217+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.096252+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28080, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.096335+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.098082+00', 1, NULL), +(28081, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.238884+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.301932+00', 63, NULL), +(28082, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.238901+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.287894+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28083, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.288077+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.293236+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(28084, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.29337+00', TIMESTAMP WITH TIME ZONE '2023-02-04 16:49:11.301889+00', 8, '{"total-tables":4,"tables-classified":0}'), +(28085, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 17:00:00.221+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:00:02.849+00', 2628, NULL), +(28086, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 17:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:00:03.095+00', 2970, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28087, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:00.202956+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.278356+00', 3075, NULL), +(28088, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:00.207618+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:01.6401+00', 1432, '{"timezone-id":"UTC"}'), +(28089, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:01.642266+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:01.973751+00', 331, '{"updated-tables":0,"total-tables":8}'), +(28090, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:01.973845+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.10081+00', 1126, '{"total-fields":71,"updated-fields":0}'), +(28091, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.100862+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.150443+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28092, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.150506+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.278317+00', 127, NULL), +(28093, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.359256+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.490738+00', 131, NULL), +(28094, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.359275+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.421033+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28095, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.421255+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.459026+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(28096, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.459566+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:19:03.490691+00', 31, '{"total-tables":8,"tables-classified":0}'), +(28097, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:00.609163+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.327385+00', 15718, NULL), +(28098, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:00.611407+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:00.617318+00', 5, '{"timezone-id":null}'), +(28099, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:00.620908+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:01.439793+00', 818, '{"updated-tables":0,"total-tables":4}'), +(28100, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:01.440761+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.306881+00', 14866, '{"total-fields":39,"updated-fields":0}'), +(28101, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.308106+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.324248+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28102, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.324315+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.327345+00', 3, NULL), +(28103, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.407579+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.461832+00', 54, NULL), +(28104, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.407602+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.445271+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28105, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.445338+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.450518+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(28106, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.450611+00', TIMESTAMP WITH TIME ZONE '2023-02-04 17:49:16.461706+00', 11, '{"total-tables":4,"tables-classified":0}'), +(28107, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 18:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:00:03.268+00', 3114, NULL), +(28108, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 18:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:00:03.519+00', 3368, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28109, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:00.182868+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.462865+00', 3279, NULL), +(28110, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:00.186672+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:01.916918+00', 1730, '{"timezone-id":"UTC"}'), +(28111, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:01.917902+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:02.3872+00', 469, '{"updated-tables":0,"total-tables":8}'), +(28112, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:02.387912+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.326189+00', 938, '{"total-fields":71,"updated-fields":0}'), +(28113, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.326282+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.3559+00', 29, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28114, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.35605+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.4628+00', 106, NULL), +(28115, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.517675+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.6068+00', 89, NULL), +(28116, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.517696+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.566615+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28117, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.566763+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.578289+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28118, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.57865+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:19:03.606697+00', 28, '{"total-tables":8,"tables-classified":0}'), +(28119, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:00.648273+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.614141+00', 13965, NULL), +(28120, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:00.649922+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:00.658896+00', 8, '{"timezone-id":null}'), +(28121, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:00.662117+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:01.200661+00', 538, '{"updated-tables":0,"total-tables":4}'), +(28122, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:01.201155+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.595076+00', 13393, '{"total-fields":39,"updated-fields":0}'), +(28123, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.595158+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.609816+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28124, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.6103+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.61393+00', 3, NULL), +(28125, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.787564+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:15.049898+00', 262, NULL), +(28126, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.788766+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.992848+00', 204, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28127, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:14.993161+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:15.021467+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(28128, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:15.021848+00', TIMESTAMP WITH TIME ZONE '2023-02-04 18:49:15.049739+00', 27, '{"total-tables":4,"tables-classified":0}'), +(28129, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 19:00:00.098+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:00:03.175+00', 3077, NULL), +(28130, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 19:00:00.078+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:00:03.303+00', 3225, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28131, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:00.186733+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.157547+00', 3970, NULL), +(28132, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:00.190484+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:00.933992+00', 743, '{"timezone-id":"UTC"}'), +(28133, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:00.937295+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:01.452443+00', 515, '{"updated-tables":0,"total-tables":8}'), +(28134, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:01.452985+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:03.999713+00', 2546, '{"total-fields":71,"updated-fields":0}'), +(28135, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:03.999823+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.050751+00', 50, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28136, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.050804+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.157516+00', 106, NULL), +(28137, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.236221+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.349019+00', 112, NULL), +(28138, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.236242+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.294841+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28139, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.294901+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.310909+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(28140, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.311196+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:19:04.348969+00', 37, '{"total-tables":8,"tables-classified":0}'), +(28141, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:00.108561+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.88443+00', 11775, NULL), +(28142, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:00.10895+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:00.111333+00', 2, '{"timezone-id":null}'), +(28143, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:00.111614+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:00.43655+00', 324, '{"updated-tables":0,"total-tables":4}'), +(28144, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:00.436863+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.882757+00', 11445, '{"total-fields":39,"updated-fields":0}'), +(28145, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.882833+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.884135+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28146, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.884175+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.884399+00', 0, NULL), +(28147, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.909211+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.937085+00', 27, NULL), +(28148, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.909229+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.930138+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28149, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.930207+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.932802+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(28150, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.932896+00', TIMESTAMP WITH TIME ZONE '2023-02-04 19:49:11.937016+00', 4, '{"total-tables":4,"tables-classified":0}'), +(28151, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 20:00:00.105+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:00:01.967+00', 1862, NULL), +(28152, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 20:00:00.105+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:00:02.113+00', 2008, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28153, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:00.291776+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.136157+00', 5844, NULL), +(28154, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:00.295471+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:01.185933+00', 890, '{"timezone-id":"UTC"}'), +(28155, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:01.188804+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:01.676982+00', 488, '{"updated-tables":0,"total-tables":8}'), +(28156, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:01.677324+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:05.96975+00', 4292, '{"total-fields":71,"updated-fields":0}'), +(28157, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:05.969851+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.018086+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28158, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.018152+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.136126+00', 117, NULL), +(28159, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.232558+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.352211+00', 119, NULL), +(28160, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.232575+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.299735+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28161, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.299793+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.313391+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28162, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.313763+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:19:06.352167+00', 38, '{"total-tables":8,"tables-classified":0}'), +(28163, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:00.885245+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.858253+00', 10973, NULL), +(28164, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:00.889206+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:00.91293+00', 23, '{"timezone-id":null}'), +(28165, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:00.917715+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:01.591783+00', 674, '{"updated-tables":0,"total-tables":4}'), +(28166, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:01.591876+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.852537+00', 10260, '{"total-fields":39,"updated-fields":0}'), +(28167, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.852643+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.857018+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28168, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.857086+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.858233+00', 1, NULL), +(28169, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.962772+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:12.055658+00', 92, NULL), +(28170, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:11.962789+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:12.038698+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28171, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:12.038754+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:12.041883+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(28172, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:12.041937+00', TIMESTAMP WITH TIME ZONE '2023-02-04 20:49:12.055593+00', 13, '{"total-tables":4,"tables-classified":0}'), +(28173, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:00.176+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:02.757+00', 2581, NULL), +(28174, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:02.755+00', 2562, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28175, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:03.147043+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:11.902902+00', 8755, NULL), +(28176, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:03.149539+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:05.16161+00', 2012, '{"deleted":0}'), +(28177, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:05.164617+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:00:11.90286+00', 6738, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(28178, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:00.555052+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.183152+00', 3628, NULL), +(28179, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:00.558904+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:00.906848+00', 347, '{"timezone-id":"UTC"}'), +(28180, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:00.909081+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:01.220583+00', 311, '{"updated-tables":0,"total-tables":8}'), +(28181, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:01.22094+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:03.676132+00', 2455, '{"total-fields":71,"updated-fields":0}'), +(28182, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:03.676246+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:03.794643+00', 118, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28183, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:03.794848+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.183116+00', 388, NULL), +(28184, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.357423+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.590941+00', 233, NULL), +(28185, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.357449+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.489341+00', 131, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28186, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.489447+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.524986+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(28187, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.525522+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:19:04.590874+00', 65, '{"total-tables":8,"tables-classified":0}'), +(28188, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:00.826201+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.036847+00', 13210, NULL), +(28189, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:00.830106+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:00.855054+00', 24, '{"timezone-id":null}'), +(28190, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:00.860636+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:01.480627+00', 619, '{"updated-tables":0,"total-tables":4}'), +(28191, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:01.480989+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.023615+00', 12542, '{"total-fields":39,"updated-fields":0}'), +(28192, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.023725+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.03357+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28193, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.033637+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.036813+00', 3, NULL), +(28194, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.147682+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.232466+00', 84, NULL), +(28195, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.1477+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.201726+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28196, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.201811+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.210229+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28197, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.210294+00', TIMESTAMP WITH TIME ZONE '2023-02-04 21:49:14.230406+00', 20, '{"total-tables":4,"tables-classified":0}'), +(28198, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 22:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:00:04.108+00', 3953, NULL), +(28199, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 22:00:00.374+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:00:04.107+00', 3733, NULL), +(28200, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:00.419351+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.16971+00', 4750, NULL), +(28201, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:00.422683+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:01.327722+00', 905, '{"timezone-id":"UTC"}'), +(28202, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:01.335232+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:01.799103+00', 463, '{"updated-tables":0,"total-tables":8}'), +(28203, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:01.799428+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:04.241549+00', 2442, '{"total-fields":71,"updated-fields":0}'), +(28204, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:04.241659+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:04.3078+00', 66, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28205, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:04.307856+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.169678+00', 861, NULL), +(28206, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.269089+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.431188+00', 162, NULL), +(28207, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.269126+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.393504+00', 124, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28208, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.393619+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.408839+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(28209, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.409236+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:19:05.431121+00', 21, '{"total-tables":8,"tables-classified":0}'), +(28210, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:00.963493+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.51102+00', 11547, NULL), +(28211, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:00.96749+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:00.986943+00', 19, '{"timezone-id":null}'), +(28212, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:00.991592+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:01.862152+00', 870, '{"updated-tables":0,"total-tables":4}'), +(28213, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:01.862584+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.493889+00', 10631, '{"total-fields":39,"updated-fields":0}'), +(28214, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.493982+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.505463+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28215, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.505567+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.510933+00', 5, NULL), +(28216, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.717286+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.817829+00', 100, NULL), +(28217, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.717308+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.783002+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28218, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.783159+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.792745+00', 9, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28219, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.792972+00', TIMESTAMP WITH TIME ZONE '2023-02-04 22:49:12.817747+00', 24, '{"total-tables":4,"tables-classified":0}'), +(28220, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 23:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:00:03.428+00', 3269, NULL), +(28221, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-04 23:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:00:03.598+00', 3445, NULL), +(28222, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:00.238711+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.243343+00', 4004, NULL), +(28223, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:00.242788+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:01.874903+00', 1632, '{"timezone-id":"UTC"}'), +(28224, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:01.876617+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:02.303802+00', 427, '{"updated-tables":0,"total-tables":8}'), +(28225, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:02.304476+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.035222+00', 1730, '{"total-fields":71,"updated-fields":0}'), +(28226, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.035397+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.096231+00', 60, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28227, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.096388+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.243314+00', 146, NULL), +(28228, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.354351+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.467685+00', 113, NULL), +(28229, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.35437+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.416836+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28230, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.417088+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.43516+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(28231, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.435717+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:19:04.467483+00', 31, '{"total-tables":8,"tables-classified":0}'), +(28232, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:00.871291+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.335224+00', 17463, NULL), +(28233, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:00.874884+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:00.882851+00', 7, '{"timezone-id":null}'), +(28234, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:00.88586+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:01.3278+00', 441, '{"updated-tables":0,"total-tables":4}'), +(28235, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:01.328143+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.329053+00', 17000, '{"total-fields":39,"updated-fields":0}'), +(28236, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.329556+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.334421+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28237, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.334552+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.335199+00', 0, NULL), +(28238, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.469784+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.591575+00', 121, NULL), +(28239, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.469809+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.525196+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28240, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.525268+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.540567+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28241, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.540639+00', TIMESTAMP WITH TIME ZONE '2023-02-04 23:49:18.591484+00', 50, '{"total-tables":4,"tables-classified":0}'), +(28242, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 00:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:00:08.182+00', 8033, NULL), +(28243, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 00:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:00:08.724+00', 8587, NULL), +(28244, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:00.282434+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.693835+00', 5411, NULL), +(28245, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:00.28797+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:01.241308+00', 953, '{"timezone-id":"UTC"}'), +(28246, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:01.243657+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:01.731263+00', 487, '{"updated-tables":0,"total-tables":8}'), +(28247, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:01.731357+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.515426+00', 3784, '{"total-fields":71,"updated-fields":0}'), +(28248, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.51551+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.564367+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28249, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.564472+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.693807+00', 129, NULL), +(28250, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.816339+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.901666+00', 85, NULL), +(28251, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.816358+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.870746+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28252, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.870814+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.883474+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(28253, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.883804+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:19:05.901623+00', 17, '{"total-tables":8,"tables-classified":0}'), +(28254, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:00.697161+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:11.993312+00', 11296, NULL), +(28255, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:00.706868+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:00.728826+00', 21, '{"timezone-id":null}'), +(28256, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:00.732859+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:01.541021+00', 808, '{"updated-tables":0,"total-tables":4}'), +(28257, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:01.54113+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:11.978359+00', 10437, '{"total-fields":39,"updated-fields":0}'), +(28258, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:11.978459+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:11.990254+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28259, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:11.990323+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:11.993269+00', 2, NULL), +(28260, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.133044+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.244976+00', 111, NULL), +(28261, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.133061+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.18966+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28262, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.189727+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.197054+00', 7, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28263, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.197119+00', TIMESTAMP WITH TIME ZONE '2023-02-05 00:49:12.244843+00', 47, '{"total-tables":4,"tables-classified":0}'), +(28264, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 01:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:00:03.05+00', 2918, NULL), +(28265, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 01:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:00:03.263+00', 3137, NULL), +(28266, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:00.271999+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.315597+00', 3043, NULL), +(28267, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:00.276169+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:00.84782+00', 571, '{"timezone-id":"UTC"}'), +(28268, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:00.849563+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:01.331608+00', 482, '{"updated-tables":0,"total-tables":8}'), +(28269, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:01.331701+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.149519+00', 1817, '{"total-fields":71,"updated-fields":0}'), +(28270, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.149601+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.191851+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28271, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.191909+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.315574+00', 123, NULL), +(28272, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.38268+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.466588+00', 83, NULL), +(28273, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.3827+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.434515+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28274, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.434593+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.446088+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28275, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.446316+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:19:03.466442+00', 20, '{"total-tables":8,"tables-classified":0}'), +(28276, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:00.932319+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:11.933155+00', 11000, NULL), +(28277, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:00.93602+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:00.94885+00', 12, '{"timezone-id":null}'), +(28278, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:00.950267+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:01.472255+00', 521, '{"updated-tables":0,"total-tables":4}'), +(28279, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:01.472646+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:11.913291+00', 10440, '{"total-fields":39,"updated-fields":0}'), +(28280, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:11.913375+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:11.929376+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28281, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:11.929446+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:11.933113+00', 3, NULL), +(28282, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.056214+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.14666+00', 90, NULL), +(28283, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.056234+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.122332+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28284, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.122409+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.130821+00', 8, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28285, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.130889+00', TIMESTAMP WITH TIME ZONE '2023-02-05 01:49:12.146613+00', 15, '{"total-tables":4,"tables-classified":0}'), +(28286, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:00.178+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:00.351+00', 173, NULL), +(28287, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:00.454+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:03.644+00', 3190, NULL), +(28288, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:03.657786+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:13.837573+00', 10179, NULL), +(28289, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:03.661109+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:04.785043+00', 1123, '{"deleted":0}'), +(28290, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:04.787807+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:00:13.837482+00', 9049, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(28291, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:00.707383+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.751509+00', 4044, NULL), +(28292, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:00.730505+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:01.385298+00', 654, '{"timezone-id":"UTC"}'), +(28293, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:01.387676+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:02.960828+00', 1573, '{"updated-tables":0,"total-tables":8}'), +(28294, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:02.961403+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.140215+00', 1178, '{"total-fields":71,"updated-fields":0}'), +(28295, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.140514+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.25311+00', 112, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28296, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.253315+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.751463+00', 498, NULL), +(28297, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.927533+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:05.172693+00', 245, NULL), +(28298, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:04.9277+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:05.098022+00', 170, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28299, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:05.098276+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:05.130553+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(28300, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:05.131145+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:19:05.172633+00', 41, '{"total-tables":8,"tables-classified":0}'), +(28301, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:00.836178+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.204776+00', 12368, NULL), +(28302, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:00.839786+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:00.858298+00', 18, '{"timezone-id":null}'), +(28303, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:00.863012+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:01.364588+00', 501, '{"updated-tables":0,"total-tables":4}'), +(28304, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:01.36492+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.185478+00', 11820, '{"total-fields":39,"updated-fields":0}'), +(28305, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.185585+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.198988+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28306, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.199088+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.204721+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28307, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.333567+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.41453+00', 80, NULL), +(28308, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.333585+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.386073+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28309, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.386314+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.398419+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(28310, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.398667+00', TIMESTAMP WITH TIME ZONE '2023-02-05 02:49:13.414407+00', 15, '{"total-tables":4,"tables-classified":0}'), +(28311, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 03:00:00.1+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:00:03.501+00', 3401, NULL), +(28312, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 03:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:00:03.374+00', 3268, NULL), +(28313, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:00.219326+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.545086+00', 4325, NULL), +(28314, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:00.223401+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:01.05915+00', 835, '{"timezone-id":"UTC"}'), +(28315, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:01.06053+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:01.511124+00', 450, '{"updated-tables":0,"total-tables":8}'), +(28316, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:01.511495+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:03.811126+00', 2299, '{"total-fields":71,"updated-fields":0}'), +(28317, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:03.811209+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:03.874431+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28318, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:03.874501+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.545046+00', 670, NULL), +(28319, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.672534+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.813556+00', 141, NULL), +(28320, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.672556+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.751883+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28321, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.751977+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.772751+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(28322, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.773348+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:19:04.813483+00', 40, '{"total-tables":8,"tables-classified":0}'), +(28323, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:00.483304+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.541035+00', 11057, NULL), +(28324, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:00.487221+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:00.514442+00', 27, '{"timezone-id":null}'), +(28325, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:00.520247+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:01.394789+00', 874, '{"updated-tables":0,"total-tables":4}'), +(28326, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:01.395012+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.513725+00', 10118, '{"total-fields":39,"updated-fields":0}'), +(28327, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.513845+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.533556+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28328, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.533638+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.540978+00', 7, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28329, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.702751+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.850612+00', 147, NULL), +(28330, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.702773+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.800587+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28331, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.800667+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.820646+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(28332, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.820713+00', TIMESTAMP WITH TIME ZONE '2023-02-05 03:49:11.850566+00', 29, '{"total-tables":4,"tables-classified":0}'), +(28333, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 04:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:00:03.034+00', 2893, NULL), +(28334, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 04:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:00:03.341+00', 3201, NULL), +(28335, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:00.53172+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:04.82104+00', 4289, NULL), +(28336, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:00.536006+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:01.200746+00', 664, '{"timezone-id":"UTC"}'), +(28337, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:01.202134+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:01.65281+00', 450, '{"updated-tables":0,"total-tables":8}'), +(28338, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:01.65291+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:04.198829+00', 2545, '{"total-fields":71,"updated-fields":0}'), +(28339, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:04.19895+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:04.305968+00', 107, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28340, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:04.30634+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:04.821003+00', 514, NULL), +(28341, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.01314+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.121648+00', 108, NULL), +(28342, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.01316+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.080084+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28343, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.080152+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.091414+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28344, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.091753+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:19:05.121607+00', 29, '{"total-tables":8,"tables-classified":0}'), +(28345, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:01.21351+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.287918+00', 11074, NULL), +(28346, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:01.214145+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:01.218314+00', 4, '{"timezone-id":null}'), +(28347, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:01.219745+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:01.904992+00', 685, '{"updated-tables":0,"total-tables":4}'), +(28348, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:01.905481+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.275674+00', 10370, '{"total-fields":39,"updated-fields":0}'), +(28349, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.275776+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.284725+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28350, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.284799+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.287875+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28351, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.426529+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.513474+00', 86, NULL), +(28352, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.426553+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.480166+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28353, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.480247+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.500789+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(28354, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.500924+00', TIMESTAMP WITH TIME ZONE '2023-02-05 04:49:12.513433+00', 12, '{"total-tables":4,"tables-classified":0}'), +(28355, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 05:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:00:02.519+00', 2380, NULL), +(28356, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 05:00:00.315+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:00:02.516+00', 2201, NULL), +(28357, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:00.20544+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.353016+00', 3147, NULL), +(28358, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:00.210614+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:00.704791+00', 494, '{"timezone-id":"UTC"}'), +(28359, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:00.706291+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:01.193527+00', 487, '{"updated-tables":0,"total-tables":8}'), +(28360, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:01.193946+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.185627+00', 1991, '{"total-fields":71,"updated-fields":0}'), +(28361, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.185695+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.232695+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28362, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.23291+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.352989+00', 120, NULL), +(28363, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.422754+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.583576+00', 160, NULL), +(28364, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.422773+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.48062+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28365, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.480862+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.548228+00', 67, '{"fields-classified":0,"fields-failed":0}'), +(28366, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.550778+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:19:03.583511+00', 32, '{"total-tables":8,"tables-classified":0}'), +(28367, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:00.629757+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.404826+00', 10775, NULL), +(28368, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:00.630386+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:00.635211+00', 4, '{"timezone-id":null}'), +(28369, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:00.636769+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:01.267886+00', 631, '{"updated-tables":0,"total-tables":4}'), +(28370, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:01.268287+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.395997+00', 10127, '{"total-fields":39,"updated-fields":0}'), +(28371, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.39614+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.403178+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28372, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.403239+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.404799+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28373, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.497109+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.566057+00', 68, NULL), +(28374, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.497126+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.538307+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28375, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.538469+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.54228+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(28376, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.542402+00', TIMESTAMP WITH TIME ZONE '2023-02-05 05:49:11.56601+00', 23, '{"total-tables":4,"tables-classified":0}'), +(28377, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 06:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:00:02.014+00', 1900, NULL), +(28378, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 06:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:00:02.012+00', 1886, NULL), +(28379, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:00.169197+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.228126+00', 3058, NULL), +(28380, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:00.171873+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:00.785923+00', 614, '{"timezone-id":"UTC"}'), +(28381, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:00.786705+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:01.06743+00', 280, '{"updated-tables":0,"total-tables":8}'), +(28382, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:01.067508+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.022155+00', 1954, '{"total-fields":71,"updated-fields":0}'), +(28383, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.022271+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.126171+00', 103, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28384, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.126226+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.228095+00', 101, NULL), +(28385, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.372028+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.462568+00', 90, NULL), +(28386, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.372049+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.430856+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28387, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.430921+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.444088+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28388, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.444362+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:19:03.462522+00', 18, '{"total-tables":8,"tables-classified":0}'), +(28389, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:00.085835+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.031942+00', 11946, NULL), +(28390, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:00.086106+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:00.092661+00', 6, '{"timezone-id":null}'), +(28391, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:00.093525+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:00.302038+00', 208, '{"updated-tables":0,"total-tables":4}'), +(28392, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:00.30233+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.020857+00', 11718, '{"total-fields":39,"updated-fields":0}'), +(28393, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.020957+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.030498+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28394, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.030555+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.031915+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28395, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.151852+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.184798+00', 32, NULL), +(28396, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.151871+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.174809+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28397, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.174868+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.17923+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(28398, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.179283+00', TIMESTAMP WITH TIME ZONE '2023-02-05 06:49:12.184761+00', 5, '{"total-tables":4,"tables-classified":0}'), +(28399, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 07:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:00:03.448+00', 3333, NULL), +(28400, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 07:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:00:03.328+00', 3206, NULL), +(28401, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:00.161175+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.188101+00', 3026, NULL), +(28402, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:00.164374+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:00.837643+00', 673, '{"timezone-id":"UTC"}'), +(28403, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:00.839102+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:01.148896+00', 309, '{"updated-tables":0,"total-tables":8}'), +(28404, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:01.149171+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:02.968827+00', 1819, '{"total-fields":71,"updated-fields":0}'), +(28405, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:02.968918+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.010928+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28406, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.010983+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.188078+00', 177, NULL), +(28407, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.241795+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.334654+00', 92, NULL), +(28408, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.241816+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.301513+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28409, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.301633+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.31497+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28410, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.315129+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:19:03.334575+00', 19, '{"total-tables":8,"tables-classified":0}'), +(28411, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:00.927074+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.635855+00', 11708, NULL), +(28412, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:00.930922+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:00.954297+00', 23, '{"timezone-id":null}'), +(28413, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:00.959602+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:01.780464+00', 820, '{"updated-tables":0,"total-tables":4}'), +(28414, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:01.780749+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.619306+00', 10838, '{"total-fields":39,"updated-fields":0}'), +(28415, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.61941+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.631827+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28416, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.631899+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.635818+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28417, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.825323+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.950497+00', 125, NULL), +(28418, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.825341+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.906666+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28419, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.906749+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.918439+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28420, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.918546+00', TIMESTAMP WITH TIME ZONE '2023-02-05 07:49:12.95044+00', 31, '{"total-tables":4,"tables-classified":0}'), +(28421, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 08:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:00:02.704+00', 2573, NULL), +(28422, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 08:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:00:02.838+00', 2707, NULL), +(28423, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:00.3069+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.787802+00', 2480, NULL), +(28424, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:00.309954+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:00.914942+00', 604, '{"timezone-id":"UTC"}'), +(28425, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:00.91877+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:01.325599+00', 406, '{"updated-tables":0,"total-tables":8}'), +(28426, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:01.326002+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.645084+00', 1319, '{"total-fields":71,"updated-fields":0}'), +(28427, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.645151+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.684221+00', 39, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28428, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.684277+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.787776+00', 103, NULL), +(28429, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.87324+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:03.013818+00', 140, NULL), +(28430, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.873262+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.978019+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28431, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.978138+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.991803+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28432, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:02.992177+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:19:03.013696+00', 21, '{"total-tables":8,"tables-classified":0}'), +(28433, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:00.507359+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.826808+00', 12319, NULL), +(28434, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:00.51023+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:00.518594+00', 8, '{"timezone-id":null}'), +(28435, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:00.520577+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:01.019051+00', 498, '{"updated-tables":0,"total-tables":4}'), +(28436, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:01.019185+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.803501+00', 11784, '{"total-fields":39,"updated-fields":0}'), +(28437, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.803635+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.823594+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28438, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.823659+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.826771+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28439, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.973366+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:13.1008+00', 127, NULL), +(28440, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:12.973383+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:13.059924+00', 86, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28441, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:13.060002+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:13.077308+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(28442, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:13.077389+00', TIMESTAMP WITH TIME ZONE '2023-02-05 08:49:13.100754+00', 23, '{"total-tables":4,"tables-classified":0}'), +(28443, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 09:00:00.272+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:00:02.748+00', 2476, NULL), +(28444, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 09:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:00:02.924+00', 2790, NULL), +(28445, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:00.268383+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.638315+00', 2369, NULL), +(28446, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:00.271973+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:00.921627+00', 649, '{"timezone-id":"UTC"}'), +(28447, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:00.922732+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:01.291527+00', 368, '{"updated-tables":0,"total-tables":8}'), +(28448, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:01.2918+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.473207+00', 1181, '{"total-fields":71,"updated-fields":0}'), +(28449, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.473402+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.517496+00', 44, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28450, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.517542+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.638283+00', 120, NULL), +(28451, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.692938+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.805785+00', 112, NULL), +(28452, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.692956+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.77132+00', 78, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28453, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.771534+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.78459+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28454, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.784918+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:19:02.805737+00', 20, '{"total-tables":8,"tables-classified":0}'), +(28455, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:00.604831+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.538495+00', 13933, NULL), +(28456, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:00.607709+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:00.633852+00', 26, '{"timezone-id":null}'), +(28457, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:00.662208+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:01.327555+00', 665, '{"updated-tables":0,"total-tables":4}'), +(28458, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:01.3277+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.523282+00', 13195, '{"total-fields":39,"updated-fields":0}'), +(28459, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.523372+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.533957+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28460, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.534056+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.537573+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28461, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.611153+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.68266+00', 71, NULL), +(28462, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.611207+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.66195+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28463, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.662142+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.66718+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(28464, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.667343+00', TIMESTAMP WITH TIME ZONE '2023-02-05 09:49:14.682618+00', 15, '{"total-tables":4,"tables-classified":0}'), +(28465, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 10:00:00.099+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:00:02.814+00', 2715, NULL), +(28466, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 10:00:00.081+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:00:02.936+00', 2855, NULL), +(28467, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:00.767202+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.844256+00', 4077, NULL), +(28468, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:00.772123+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:01.44991+00', 677, '{"timezone-id":"UTC"}'), +(28469, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:01.453113+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:01.95981+00', 506, '{"updated-tables":0,"total-tables":8}'), +(28470, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:01.95992+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.615752+00', 2655, '{"total-fields":71,"updated-fields":0}'), +(28471, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.615829+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.67359+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28472, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.67366+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.844049+00', 170, NULL), +(28473, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.945531+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:05.074392+00', 128, NULL), +(28474, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:04.945551+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:05.027709+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28475, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:05.027818+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:05.044244+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(28476, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:05.044531+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:19:05.074335+00', 29, '{"total-tables":8,"tables-classified":0}'), +(28477, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:00.898098+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:12.784889+00', 11886, NULL), +(28478, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:00.903724+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:00.918009+00', 14, '{"timezone-id":null}'), +(28479, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:00.923297+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:01.488999+00', 565, '{"updated-tables":0,"total-tables":4}'), +(28480, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:01.489087+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:12.760043+00', 11270, '{"total-fields":39,"updated-fields":0}'), +(28481, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:12.760728+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:12.778503+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28482, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:12.778591+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:12.784832+00', 6, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28483, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.067069+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.297161+00', 230, NULL), +(28484, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.06709+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.203302+00', 136, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28485, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.203385+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.218466+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(28486, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.219057+00', TIMESTAMP WITH TIME ZONE '2023-02-05 10:49:13.2971+00', 78, '{"total-tables":4,"tables-classified":0}'), +(28487, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 11:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:00:03.118+00', 2978, NULL), +(28488, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 11:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:00:03.24+00', 3101, NULL), +(28489, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:00.302497+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.894378+00', 2591, NULL), +(28490, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:00.305878+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:00.828472+00', 522, '{"timezone-id":"UTC"}'), +(28491, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:00.830032+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:01.162195+00', 332, '{"updated-tables":0,"total-tables":8}'), +(28492, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:01.163227+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.7228+00', 1559, '{"total-fields":71,"updated-fields":0}'), +(28493, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.722884+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.76561+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28494, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.765665+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.894346+00', 128, NULL), +(28495, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.980472+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:03.095882+00', 115, NULL), +(28496, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:02.980493+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:03.043324+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28497, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:03.043404+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:03.05897+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(28498, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:03.059322+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:19:03.095834+00', 36, '{"total-tables":8,"tables-classified":0}'), +(28499, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:00.806687+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.777483+00', 16970, NULL), +(28500, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:00.808811+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:00.818404+00', 9, '{"timezone-id":null}'), +(28501, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:00.820589+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:01.290427+00', 469, '{"updated-tables":0,"total-tables":4}'), +(28502, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:01.290512+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.738081+00', 16447, '{"total-fields":39,"updated-fields":0}'), +(28503, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.738153+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.765611+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28504, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.765672+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.777431+00', 11, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28505, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.992149+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:18.047262+00', 55, NULL), +(28506, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:17.992173+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:18.023227+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28507, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:18.023293+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:18.030817+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(28508, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:18.030877+00', TIMESTAMP WITH TIME ZONE '2023-02-05 11:49:18.047215+00', 16, '{"total-tables":4,"tables-classified":0}'), +(28509, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 12:00:00.348+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:00:01.788+00', 1440, NULL), +(28510, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 12:00:00.371+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:00:01.788+00', 1417, NULL), +(28511, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:00.218306+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.624985+00', 3406, NULL), +(28512, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:00.222212+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:00.833125+00', 610, '{"timezone-id":"UTC"}'), +(28513, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:00.834648+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:02.053205+00', 1218, '{"updated-tables":0,"total-tables":8}'), +(28514, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:02.053308+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.462647+00', 1409, '{"total-fields":71,"updated-fields":0}'), +(28515, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.462722+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.504721+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28516, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.504811+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.624917+00', 120, NULL), +(28517, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.723193+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.852928+00', 129, NULL), +(28518, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.723213+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.795955+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28519, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.796036+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.812118+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(28520, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.812364+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:19:03.852857+00', 40, '{"total-tables":8,"tables-classified":0}'), +(28521, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:00.798934+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.313362+00', 14514, NULL), +(28522, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:00.803872+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:00.824518+00', 20, '{"timezone-id":null}'), +(28523, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:00.829255+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:01.54489+00', 715, '{"updated-tables":0,"total-tables":4}'), +(28524, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:01.545373+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.304124+00', 13758, '{"total-fields":39,"updated-fields":0}'), +(28525, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.304234+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.311346+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28526, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.311413+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.313327+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28527, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.40235+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.510975+00', 108, NULL), +(28528, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.402374+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.444593+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28529, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.444658+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.455831+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28530, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.460689+00', TIMESTAMP WITH TIME ZONE '2023-02-05 12:49:15.510838+00', 50, '{"total-tables":4,"tables-classified":0}'), +(28531, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 13:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:00:02.809+00', 2658, NULL), +(28532, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 13:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:00:02.991+00', 2840, NULL), +(28533, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:00.209184+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.899337+00', 3690, NULL), +(28534, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:00.212557+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:01.089924+00', 877, '{"timezone-id":"UTC"}'), +(28535, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:01.091469+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:01.489126+00', 397, '{"updated-tables":0,"total-tables":8}'), +(28536, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:01.489727+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.459253+00', 1969, '{"total-fields":71,"updated-fields":0}'), +(28537, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.459335+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.566132+00', 106, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28538, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.566196+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.89928+00', 333, NULL), +(28539, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.975873+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:04.102121+00', 126, NULL), +(28540, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:03.975892+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:04.028058+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28541, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:04.028136+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:04.054848+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(28542, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:04.055489+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:19:04.102081+00', 46, '{"total-tables":8,"tables-classified":0}'), +(28543, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:00.770925+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.494923+00', 10723, NULL), +(28544, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:00.774836+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:00.797102+00', 22, '{"timezone-id":null}'), +(28545, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:00.801146+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:01.280525+00', 479, '{"updated-tables":0,"total-tables":4}'), +(28546, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:01.280876+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.477889+00', 10197, '{"total-fields":39,"updated-fields":0}'), +(28547, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.477983+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.489796+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28548, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.489896+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.494839+00', 4, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28549, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.636021+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.720016+00', 83, NULL), +(28550, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.636042+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.693047+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28551, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.693105+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.70381+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(28552, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.704105+00', TIMESTAMP WITH TIME ZONE '2023-02-05 13:49:11.719963+00', 15, '{"total-tables":4,"tables-classified":0}'), +(28553, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 14:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:00:03.169+00', 3025, NULL), +(28554, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 14:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:00:03.382+00', 3238, NULL), +(28555, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:00.267853+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.436799+00', 3168, NULL), +(28556, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:00.271278+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:01.035368+00', 764, '{"timezone-id":"UTC"}'), +(28557, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:01.037295+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:01.418452+00', 381, '{"updated-tables":0,"total-tables":8}'), +(28558, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:01.418687+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.244454+00', 1825, '{"total-fields":71,"updated-fields":0}'), +(28559, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.24456+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.313096+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28560, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.313179+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.436759+00', 123, NULL), +(28561, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.524609+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.616898+00', 92, NULL), +(28562, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.524628+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.585285+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28563, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.58544+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.598045+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(28564, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.598548+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:19:03.616848+00', 18, '{"total-tables":8,"tables-classified":0}'), +(28565, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:00.936895+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.063752+00', 14126, NULL), +(28566, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:00.940498+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:00.951886+00', 11, '{"timezone-id":null}'), +(28567, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:00.955339+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:01.613149+00', 657, '{"updated-tables":0,"total-tables":4}'), +(28568, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:01.613601+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.044457+00', 13430, '{"total-fields":39,"updated-fields":0}'), +(28569, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.046332+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.060391+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28570, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.060597+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.063508+00', 2, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28571, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.199735+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.496036+00', 296, NULL), +(28572, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.199762+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.412498+00', 212, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28573, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.412849+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.445579+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(28574, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.445901+00', TIMESTAMP WITH TIME ZONE '2023-02-05 14:49:15.495978+00', 50, '{"total-tables":4,"tables-classified":0}'), +(28575, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 15:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:00:03.129+00', 2992, NULL), +(28576, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 15:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:00:03.298+00', 3161, NULL), +(28577, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:00.198648+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.462867+00', 3264, NULL), +(28578, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:00.201591+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:00.757507+00', 555, '{"timezone-id":"UTC"}'), +(28579, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:00.76006+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:01.146346+00', 386, '{"updated-tables":0,"total-tables":8}'), +(28580, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:01.146722+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.285257+00', 2138, '{"total-fields":71,"updated-fields":0}'), +(28581, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.285523+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.355093+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28582, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.355144+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.462835+00', 107, NULL), +(28583, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.529602+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.61586+00', 86, NULL), +(28584, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.529621+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.582625+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28585, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.582685+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.59444+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28586, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.59479+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:19:03.615807+00', 21, '{"total-tables":8,"tables-classified":0}'), +(28587, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:00.519858+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.605424+00', 14085, NULL), +(28588, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:00.52286+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:00.532279+00', 9, '{"timezone-id":null}'), +(28589, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:00.534475+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:00.937777+00', 403, '{"updated-tables":0,"total-tables":4}'), +(28590, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:00.938018+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.585855+00', 13647, '{"total-fields":39,"updated-fields":0}'), +(28591, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.586097+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.599708+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28592, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.599794+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.605167+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28593, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.850514+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.95667+00', 106, NULL), +(28594, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.850533+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.915435+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28595, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.915625+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.926903+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28596, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.927163+00', TIMESTAMP WITH TIME ZONE '2023-02-05 15:49:14.956435+00', 29, '{"total-tables":4,"tables-classified":0}'), +(28597, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 16:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:00:03.45+00', 3307, NULL), +(28598, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 16:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:00:03.592+00', 3449, NULL), +(28599, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:00.244234+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.259908+00', 4015, NULL), +(28600, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:00.248158+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:01.192366+00', 944, '{"timezone-id":"UTC"}'), +(28601, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:01.193856+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:01.602048+00', 408, '{"updated-tables":0,"total-tables":8}'), +(28602, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:01.602315+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.095637+00', 2493, '{"total-fields":71,"updated-fields":0}'), +(28603, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.095706+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.142226+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28604, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.142281+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.259882+00', 117, NULL), +(28605, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.342413+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.422786+00', 80, NULL), +(28606, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.342431+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.390529+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28607, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.390581+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.401875+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28608, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.402201+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:19:04.422742+00', 20, '{"total-tables":8,"tables-classified":0}'), +(28609, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:00.759289+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.762948+00', 15003, NULL), +(28610, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:00.763293+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:00.785368+00', 22, '{"timezone-id":null}'), +(28611, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:00.789681+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:01.605746+00', 816, '{"updated-tables":0,"total-tables":4}'), +(28612, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:01.606109+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.75384+00', 14147, '{"total-fields":39,"updated-fields":0}'), +(28613, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.754226+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.761088+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28614, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.76115+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.762916+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28615, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.834567+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.909086+00', 74, NULL), +(28616, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.834586+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.880818+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28617, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.880889+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.898647+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(28618, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.898716+00', TIMESTAMP WITH TIME ZONE '2023-02-05 16:49:15.909041+00', 10, '{"total-tables":4,"tables-classified":0}'), +(28619, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 17:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:00:01.789+00', 1670, NULL), +(28620, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 17:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:00:01.915+00', 1797, NULL), +(28621, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:00.236464+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.018511+00', 3782, NULL), +(28622, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:00.239647+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:01.002844+00', 763, '{"timezone-id":"UTC"}'), +(28623, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:01.004528+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:01.395285+00', 390, '{"updated-tables":0,"total-tables":8}'), +(28624, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:01.395629+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:03.837081+00', 2441, '{"total-fields":71,"updated-fields":0}'), +(28625, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:03.837153+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:03.879561+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28626, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:03.879626+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.018212+00', 138, NULL), +(28627, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.102331+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.211474+00', 109, NULL), +(28628, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.102356+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.176597+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28629, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.176653+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.190676+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(28630, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.190952+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:19:04.211318+00', 20, '{"total-tables":8,"tables-classified":0}'), +(28631, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:00.07165+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.894715+00', 11823, NULL), +(28632, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:00.071683+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:00.074642+00', 2, '{"timezone-id":null}'), +(28633, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:00.075001+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:00.32223+00', 247, '{"updated-tables":0,"total-tables":4}'), +(28634, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:00.322311+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.892904+00', 11570, '{"total-fields":39,"updated-fields":0}'), +(28635, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.892988+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.894354+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28636, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.894401+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.894696+00', 0, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28637, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.913019+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.932739+00', 19, NULL), +(28638, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.913037+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.921442+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28639, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.921491+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.923332+00', 1, '{"fields-classified":0,"fields-failed":0}'), +(28640, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.923372+00', TIMESTAMP WITH TIME ZONE '2023-02-05 17:49:11.932702+00', 9, '{"total-tables":4,"tables-classified":0}'), +(28641, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 18:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:00:02.476+00', 2339, NULL), +(28642, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 18:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:00:02.629+00', 2495, NULL), +(28643, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:00.155534+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.091516+00', 2935, NULL), +(28644, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:00.158728+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:00.750572+00', 591, '{"timezone-id":"UTC"}'), +(28645, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:00.752053+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:01.131312+00', 379, '{"updated-tables":0,"total-tables":8}'), +(28646, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:01.131394+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:02.884562+00', 1753, '{"total-fields":71,"updated-fields":0}'), +(28647, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:02.884674+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:02.940774+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28648, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:02.940838+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.091478+00', 150, NULL), +(28649, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.18278+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.279157+00', 96, NULL), +(28650, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.182798+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.239436+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28651, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.239502+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.257133+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(28652, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.257489+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:19:03.279103+00', 21, '{"total-tables":8,"tables-classified":0}'), +(28653, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:00.713741+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.836121+00', 12122, NULL), +(28654, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:00.717064+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:00.733708+00', 16, '{"timezone-id":null}'), +(28655, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:00.73908+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:01.235681+00', 496, '{"updated-tables":0,"total-tables":4}'), +(28656, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:01.236272+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.820691+00', 11584, '{"total-fields":39,"updated-fields":0}'), +(28657, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.820785+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.832374+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28658, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.832503+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.836048+00', 3, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28659, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.966946+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:13.055572+00', 88, NULL), +(28660, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:12.966964+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:13.027554+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28661, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:13.027643+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:13.035588+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(28662, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:13.035665+00', TIMESTAMP WITH TIME ZONE '2023-02-05 18:49:13.055504+00', 19, '{"total-tables":4,"tables-classified":0}'), +(28663, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 19:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:00:04.937+00', 4804, NULL), +(28664, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 19:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:00:04.776+00', 4641, NULL), +(28665, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:00.181812+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.212807+00', 5030, NULL), +(28666, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:00.18502+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:01.182002+00', 996, '{"timezone-id":"UTC"}'), +(28667, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:01.183926+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:01.667573+00', 483, '{"updated-tables":0,"total-tables":8}'), +(28668, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:01.668008+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:04.386486+00', 2718, '{"total-fields":71,"updated-fields":0}'), +(28669, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:04.386829+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:04.504891+00', 118, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28670, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:04.504957+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.212779+00', 707, NULL), +(28671, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.280594+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.358884+00', 78, NULL), +(28672, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.280613+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.328203+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28673, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.328293+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.341633+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28674, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.342034+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:19:05.358808+00', 16, '{"total-tables":8,"tables-classified":0}'), +(28675, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:01.059708+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:14.032026+00', 12972, NULL), +(28676, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:01.063871+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:01.082602+00', 18, '{"timezone-id":null}'), +(28677, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:01.087715+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:02.081214+00', 993, '{"updated-tables":0,"total-tables":4}'), +(28678, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:02.08156+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:14.012225+00', 11930, '{"total-fields":39,"updated-fields":0}'), +(28679, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:14.012312+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:14.026271+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28680, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:14.026356+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:14.031981+00', 5, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28681, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.382064+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.417981+00', 35, NULL), +(28682, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.382081+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.403978+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28683, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.404246+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.411729+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(28684, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.411853+00', TIMESTAMP WITH TIME ZONE '2023-02-05 19:49:20.417938+00', 6, '{"total-tables":4,"tables-classified":0}'), +(28685, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 20:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:00:02.858+00', 2735, NULL), +(28686, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 20:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:00:03.025+00', 2902, NULL), +(28687, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:00.576715+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.709702+00', 3132, NULL), +(28688, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:00.580767+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:01.185855+00', 605, '{"timezone-id":"UTC"}'), +(28689, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:01.187431+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:01.548153+00', 360, '{"updated-tables":0,"total-tables":8}'), +(28690, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:01.548634+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.545372+00', 1996, '{"total-fields":71,"updated-fields":0}'), +(28691, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.545481+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.584471+00', 38, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28692, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.584573+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.709638+00', 125, NULL), +(28693, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.810549+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.947345+00', 136, NULL), +(28694, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.810567+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.87672+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28695, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.87678+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.907945+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(28696, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.908804+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:19:03.947267+00', 38, '{"total-tables":8,"tables-classified":0}'), +(28697, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:00.903857+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.471469+00', 12567, NULL), +(28698, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:00.914471+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:00.927557+00', 13, '{"timezone-id":null}'), +(28699, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:00.930894+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:01.392539+00', 461, '{"updated-tables":0,"total-tables":4}'), +(28700, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:01.392923+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.430962+00', 12038, '{"total-fields":39,"updated-fields":0}'), +(28701, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.431105+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.455876+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28702, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.456023+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.471385+00', 15, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28703, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.588344+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:18.935647+00', 5347, NULL), +(28704, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:13.588363+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:18.923658+00', 5335, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28705, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:18.923752+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:18.926156+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(28706, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:18.926223+00', TIMESTAMP WITH TIME ZONE '2023-02-05 20:49:18.935576+00', 9, '{"total-tables":4,"tables-classified":0}'), +(28707, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:00.399+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:03.449+00', 3050, NULL), +(28708, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:00.422+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:03.44+00', 3018, NULL), +(28709, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:03.51379+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:13.190671+00', 9676, NULL), +(28710, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:03.519379+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:05.43288+00', 1913, '{"deleted":0}'), +(28711, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:05.436973+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:00:13.19062+00', 7753, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(28712, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:00.626755+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.452708+00', 3825, NULL), +(28713, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:00.630555+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:00.91268+00', 282, '{"timezone-id":"UTC"}'), +(28714, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:00.913623+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:01.258179+00', 344, '{"updated-tables":0,"total-tables":8}'), +(28715, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:01.258523+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:03.79541+00', 2536, '{"total-fields":71,"updated-fields":0}'), +(28716, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:03.7955+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:03.940337+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28717, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:03.940781+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.452674+00', 511, NULL), +(28718, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.653263+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.934434+00', 281, NULL), +(28719, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.653281+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.849021+00', 195, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28720, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.849325+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.888979+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(28721, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.889614+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:19:04.934379+00', 44, '{"total-tables":8,"tables-classified":0}'), +(28722, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:00.791255+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.196747+00', 11405, NULL), +(28723, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:00.795297+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:00.815247+00', 19, '{"timezone-id":null}'), +(28724, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:00.821383+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:01.428572+00', 607, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28725, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:01.428909+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.174768+00', 10745, '{"total-fields":39,"updated-fields":0}'), +(28726, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.174858+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.192073+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28727, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.192202+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.196701+00', 4, NULL), +(28728, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.369637+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.49214+00', 122, NULL), +(28729, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.369656+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.452159+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28730, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.45255+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.468231+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(28731, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.468311+00', TIMESTAMP WITH TIME ZONE '2023-02-05 21:49:12.492078+00', 23, '{"total-tables":4,"tables-classified":0}'), +(28732, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 22:00:00.108+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:00:02.607+00', 2499, NULL), +(28733, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 22:00:00.108+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:00:02.989+00', 2881, NULL), +(28734, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:00.203401+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.882546+00', 3679, NULL), +(28735, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:00.207017+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:01.050048+00', 843, '{"timezone-id":"UTC"}'), +(28736, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:01.051406+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:01.412094+00', 360, '{"updated-tables":0,"total-tables":8}'), +(28737, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:01.412175+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.715468+00', 2303, '{"total-fields":71,"updated-fields":0}'), +(28738, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.7157+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.757276+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28739, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.757323+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.882263+00', 124, NULL), +(28740, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.952733+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:04.053228+00', 100, NULL), +(28741, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:03.952755+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:04.003142+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28742, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:04.00327+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:04.016326+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(28743, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:04.016936+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:19:04.053079+00', 36, '{"total-tables":8,"tables-classified":0}'), +(28744, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:00.110748+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:13.73172+00', 13620, NULL), +(28745, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:00.110776+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:00.114948+00', 4, '{"timezone-id":null}'), +(28746, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:00.115961+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:00.306317+00', 190, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28747, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:00.306409+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:13.721433+00', 13415, '{"total-fields":39,"updated-fields":0}'), +(28748, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:13.721519+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:13.728711+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28749, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:13.728771+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:13.731685+00', 2, NULL), +(28750, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.536506+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.647349+00', 110, NULL), +(28751, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.536523+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.612186+00', 75, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28752, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.61226+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.629367+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(28753, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.629421+00', TIMESTAMP WITH TIME ZONE '2023-02-05 22:49:14.647313+00', 17, '{"total-tables":4,"tables-classified":0}'), +(28754, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 23:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:00:02.747+00', 2637, NULL), +(28755, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-05 23:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:00:02.915+00', 2808, NULL), +(28756, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:00.205308+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.639159+00', 3433, NULL), +(28757, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:00.213421+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:01.114575+00', 901, '{"timezone-id":"UTC"}'), +(28758, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:01.117137+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:01.523279+00', 406, '{"updated-tables":0,"total-tables":8}'), +(28759, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:01.523708+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.470101+00', 1946, '{"total-fields":71,"updated-fields":0}'), +(28760, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.470191+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.513767+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28761, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.513828+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.639119+00', 125, NULL), +(28762, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.716614+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.819062+00', 102, NULL), +(28763, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.716634+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.778285+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28764, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.778439+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.80013+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(28765, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.800521+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:19:03.819014+00', 18, '{"total-tables":8,"tables-classified":0}'), +(28766, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:00.072983+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.906506+00', 11833, NULL), +(28767, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:00.073022+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:00.075353+00', 2, '{"timezone-id":null}'), +(28768, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:00.075671+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:00.232541+00', 156, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28769, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:00.232645+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.903653+00', 11671, '{"total-fields":39,"updated-fields":0}'), +(28770, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.903746+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.905868+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28771, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.905922+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.906439+00', 0, NULL), +(28772, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.956872+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:12.023125+00', 66, NULL), +(28773, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:11.956891+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:12.012626+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28774, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:12.012829+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:12.015546+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(28775, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:12.015691+00', TIMESTAMP WITH TIME ZONE '2023-02-05 23:49:12.023076+00', 7, '{"total-tables":4,"tables-classified":0}'), +(28776, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 00:00:00.468+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:00:13.108+00', 12640, NULL), +(28777, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 00:00:00.474+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:00:12.926+00', 12452, NULL), +(28778, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:00.249228+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:03.91203+00', 3662, NULL), +(28779, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:00.252627+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:01.050292+00', 797, '{"timezone-id":"UTC"}'), +(28780, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:01.052629+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:01.515521+00', 462, '{"updated-tables":0,"total-tables":8}'), +(28781, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:01.51589+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:03.693545+00', 2177, '{"total-fields":71,"updated-fields":0}'), +(28782, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:03.693705+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:03.742916+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28783, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:03.743106+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:03.91196+00', 168, NULL), +(28784, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.010753+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.138034+00', 127, NULL), +(28785, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.010773+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.084676+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28786, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.084871+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.111755+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(28787, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.111824+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:19:04.137982+00', 26, '{"total-tables":8,"tables-classified":0}'), +(28788, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:01.053453+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.761333+00', 11707, NULL), +(28789, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:01.059312+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:01.085228+00', 25, '{"timezone-id":null}'), +(28790, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:01.090506+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:01.933182+00', 842, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28791, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:01.93348+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.745969+00', 10812, '{"total-fields":39,"updated-fields":0}'), +(28792, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.746077+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.757759+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28793, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.757825+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.761283+00', 3, NULL), +(28794, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.897986+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:13.090273+00', 192, NULL), +(28795, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:12.898004+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:13.051524+00', 153, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28796, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:13.051592+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:13.061428+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(28797, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:13.0615+00', TIMESTAMP WITH TIME ZONE '2023-02-06 00:49:13.090222+00', 28, '{"total-tables":4,"tables-classified":0}'), +(28798, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 01:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:00:03.331+00', 3209, NULL), +(28799, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 01:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:00:03.465+00', 3348, NULL), +(28800, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:00.259673+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.879932+00', 3620, NULL), +(28801, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:00.262788+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:01.016707+00', 753, '{"timezone-id":"UTC"}'), +(28802, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:01.018029+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:01.400532+00', 382, '{"updated-tables":0,"total-tables":8}'), +(28803, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:01.400863+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.694034+00', 2293, '{"total-fields":71,"updated-fields":0}'), +(28804, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.694141+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.743018+00', 48, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28805, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.743081+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.879906+00', 136, NULL), +(28806, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.964372+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:04.060649+00', 96, NULL), +(28807, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:03.964392+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:04.025577+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28808, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:04.025642+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:04.038105+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(28809, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:04.038483+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:19:04.060559+00', 22, '{"total-tables":8,"tables-classified":0}'), +(28810, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:00.827047+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.774074+00', 11947, NULL), +(28811, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:00.830912+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:00.863122+00', 32, '{"timezone-id":null}'), +(28812, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:00.87021+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:01.333734+00', 463, '{"updated-tables":0,"total-tables":4}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28813, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:01.334004+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.755942+00', 11421, '{"total-fields":39,"updated-fields":0}'), +(28814, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.756016+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.769516+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28815, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.769585+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.774029+00', 4, NULL), +(28816, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.90895+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.986726+00', 77, NULL), +(28817, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.90897+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.961286+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28818, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.961366+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.970092+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(28819, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.970158+00', TIMESTAMP WITH TIME ZONE '2023-02-06 01:49:12.98668+00', 16, '{"total-tables":4,"tables-classified":0}'), +(28820, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:03.488+00', 3338, NULL), +(28821, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:03.487+00', 3320, NULL), +(28822, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:03.928968+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:12.91976+00', 8990, NULL), +(28823, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:03.934081+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:04.965067+00', 1030, '{"deleted":0}'), +(28824, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:04.969064+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:00:12.919656+00', 7950, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(28825, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:00.46882+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.302427+00', 3833, NULL), +(28826, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:00.469416+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:01.249527+00', 780, '{"timezone-id":"UTC"}'), +(28827, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:01.250787+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:01.569749+00', 318, '{"updated-tables":0,"total-tables":8}'), +(28828, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:01.569833+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:03.742031+00', 2172, '{"total-fields":71,"updated-fields":0}'), +(28829, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:03.742479+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:03.886808+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28830, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:03.887154+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.302396+00', 415, NULL), +(28831, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.426297+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.56041+00', 134, NULL), +(28832, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.426319+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.526993+00', 100, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28833, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.527073+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.539039+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(28834, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.539111+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:19:04.560355+00', 21, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28835, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:01.084492+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.751034+00', 10666, NULL), +(28836, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:01.089783+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:01.112271+00', 22, '{"timezone-id":null}'), +(28837, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:01.118106+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:01.789892+00', 671, '{"updated-tables":0,"total-tables":4}'), +(28838, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:01.790234+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.733335+00', 9943, '{"total-fields":39,"updated-fields":0}'), +(28839, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.733439+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.745375+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28840, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.745441+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.750977+00', 5, NULL), +(28841, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.86393+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.952662+00', 88, NULL), +(28842, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.863949+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.931716+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28843, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.931782+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.938232+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(28844, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.938297+00', TIMESTAMP WITH TIME ZONE '2023-02-06 02:49:11.952617+00', 14, '{"total-tables":4,"tables-classified":0}'), +(28845, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 03:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:00:03.22+00', 3098, NULL), +(28846, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 03:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:00:03.374+00', 3257, NULL), +(28847, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:00.322916+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.863337+00', 2540, NULL), +(28848, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:00.326599+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:00.963845+00', 637, '{"timezone-id":"UTC"}'), +(28849, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:00.965699+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:01.332487+00', 366, '{"updated-tables":0,"total-tables":8}'), +(28850, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:01.332579+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.657915+00', 1325, '{"total-fields":71,"updated-fields":0}'), +(28851, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.657981+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.714622+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28852, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.714675+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.863262+00', 148, NULL), +(28853, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.945439+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:03.074414+00', 128, NULL), +(28854, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.945457+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.999668+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28855, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:02.999784+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:03.041358+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(28856, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:03.041789+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:19:03.07419+00', 32, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28857, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:00.284795+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.822324+00', 12537, NULL), +(28858, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:00.285706+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:00.294332+00', 8, '{"timezone-id":null}'), +(28859, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:00.295553+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:00.750545+00', 454, '{"updated-tables":0,"total-tables":4}'), +(28860, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:00.750879+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.809841+00', 12058, '{"total-fields":39,"updated-fields":0}'), +(28861, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.811311+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.820113+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28862, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.820164+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.822286+00', 2, NULL), +(28863, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.946992+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:13.017929+00', 70, NULL), +(28864, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.94701+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.981386+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28865, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:12.981569+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:13.007106+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(28866, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:13.007172+00', TIMESTAMP WITH TIME ZONE '2023-02-06 03:49:13.017879+00', 10, '{"total-tables":4,"tables-classified":0}'), +(28867, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 04:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:00:03.192+00', 2990, NULL), +(28868, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 04:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:00:03.33+00', 3210, NULL), +(28869, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:00.573596+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.001959+00', 4428, NULL), +(28870, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:00.577418+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:01.253351+00', 675, '{"timezone-id":"UTC"}'), +(28871, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:01.255527+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:01.638499+00', 382, '{"updated-tables":0,"total-tables":8}'), +(28872, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:01.638962+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:04.849598+00', 3210, '{"total-fields":71,"updated-fields":0}'), +(28873, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:04.84966+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:04.895137+00', 45, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28874, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:04.895201+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.001916+00', 106, NULL), +(28875, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.103389+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.224574+00', 121, NULL), +(28876, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.103406+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.170028+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28877, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.170091+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.185891+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(28878, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.186107+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:19:05.22453+00', 38, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28879, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:00.779262+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.755077+00', 10975, NULL), +(28880, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:00.78941+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:00.828095+00', 38, '{"timezone-id":null}'), +(28881, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:00.832543+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:01.528268+00', 695, '{"updated-tables":0,"total-tables":4}'), +(28882, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:01.528587+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.736842+00', 10208, '{"total-fields":39,"updated-fields":0}'), +(28883, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.737258+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.748572+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28884, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.748833+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.754794+00', 5, NULL), +(28885, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.972392+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:12.06654+00', 94, NULL), +(28886, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:11.972448+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:12.036897+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28887, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:12.036952+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:12.046294+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(28888, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:12.046367+00', TIMESTAMP WITH TIME ZONE '2023-02-06 04:49:12.066496+00', 20, '{"total-tables":4,"tables-classified":0}'), +(28889, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 05:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:00:03.261+00', 3142, NULL), +(28890, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 05:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:00:03.427+00', 3313, NULL), +(28891, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:00.334244+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.481278+00', 3147, NULL), +(28892, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:00.337849+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:01.122571+00', 784, '{"timezone-id":"UTC"}'), +(28893, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:01.12486+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:01.456315+00', 331, '{"updated-tables":0,"total-tables":8}'), +(28894, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:01.45669+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.21039+00', 1753, '{"total-fields":71,"updated-fields":0}'), +(28895, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.210477+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.280174+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28896, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.280236+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.48124+00', 201, NULL), +(28897, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.629174+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:04.3223+00', 693, NULL), +(28898, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.629199+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.712057+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28899, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:03.712134+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:04.300325+00', 588, '{"fields-classified":0,"fields-failed":0}'), +(28900, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:04.300663+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:19:04.32226+00', 21, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28901, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:00.790708+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.731848+00', 10941, NULL), +(28902, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:00.795036+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:00.808594+00', 13, '{"timezone-id":null}'), +(28903, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:00.814033+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:01.375939+00', 561, '{"updated-tables":0,"total-tables":4}'), +(28904, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:01.376316+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.715816+00', 10339, '{"total-fields":39,"updated-fields":0}'), +(28905, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.715906+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.727376+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28906, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.727498+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.73175+00', 4, NULL), +(28907, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.881452+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:12.051317+00', 169, NULL), +(28908, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.881477+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.998702+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28909, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:11.99877+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:12.018114+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(28910, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:12.018435+00', TIMESTAMP WITH TIME ZONE '2023-02-06 05:49:12.051079+00', 32, '{"total-tables":4,"tables-classified":0}'), +(28911, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 06:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:00:03.019+00', 2901, NULL), +(28912, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 06:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:00:03.206+00', 3091, NULL), +(28913, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:00.195056+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.593965+00', 2398, NULL), +(28914, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:00.19952+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:00.77142+00', 571, '{"timezone-id":"UTC"}'), +(28915, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:00.772645+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:01.188277+00', 415, '{"updated-tables":0,"total-tables":8}'), +(28916, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:01.18837+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.41988+00', 1231, '{"total-fields":71,"updated-fields":0}'), +(28917, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.419998+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.466127+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28918, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.466195+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.593927+00', 127, NULL), +(28919, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.658443+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.913232+00', 254, NULL), +(28920, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.658466+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.838575+00', 180, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28921, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.8387+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.879936+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(28922, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.880485+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:19:02.913181+00', 32, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28923, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:01.004787+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.523458+00', 13518, NULL), +(28924, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:01.010782+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:01.04387+00', 33, '{"timezone-id":null}'), +(28925, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:01.049379+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:01.697662+00', 648, '{"updated-tables":0,"total-tables":4}'), +(28926, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:01.697939+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.444165+00', 12746, '{"total-fields":39,"updated-fields":0}'), +(28927, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.445271+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.488854+00', 43, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28928, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.488936+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.523389+00', 34, NULL), +(28929, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.814886+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:15.03301+00', 218, NULL), +(28930, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.814904+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.936465+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28931, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.936597+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.956964+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(28932, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:14.957096+00', TIMESTAMP WITH TIME ZONE '2023-02-06 06:49:15.032965+00', 75, '{"total-tables":4,"tables-classified":0}'), +(28933, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 07:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:00:03.582+00', 3411, NULL), +(28934, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 07:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:00:03.824+00', 3659, NULL), +(28935, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:00.292792+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.648681+00', 4355, NULL), +(28936, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:00.295694+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:00.914097+00', 618, '{"timezone-id":"UTC"}'), +(28937, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:00.916163+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:01.294616+00', 378, '{"updated-tables":0,"total-tables":8}'), +(28938, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:01.294692+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.210507+00', 2915, '{"total-fields":71,"updated-fields":0}'), +(28939, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.210601+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.344678+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28940, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.344765+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.64864+00', 303, NULL), +(28941, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.871085+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:05.025362+00', 154, NULL), +(28942, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.871103+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.952998+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28943, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.953501+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.995223+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(28944, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:04.995711+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:19:05.025315+00', 29, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28945, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:00.843126+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.707899+00', 10864, NULL), +(28946, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:00.877019+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:00.913124+00', 36, '{"timezone-id":null}'), +(28947, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:00.918608+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:01.47678+00', 558, '{"updated-tables":0,"total-tables":4}'), +(28948, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:01.477109+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.682328+00', 10205, '{"total-fields":39,"updated-fields":0}'), +(28949, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.682481+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.699548+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28950, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.699632+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.707846+00', 8, NULL), +(28951, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.837409+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.910783+00', 73, NULL), +(28952, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.837433+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.884758+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28953, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.884942+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.892377+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(28954, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.892464+00', TIMESTAMP WITH TIME ZONE '2023-02-06 07:49:11.91069+00', 18, '{"total-tables":4,"tables-classified":0}'), +(28955, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 08:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:00:03.151+00', 3016, NULL), +(28956, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 08:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:00:03.333+00', 3202, NULL), +(28957, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:01.145814+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.309888+00', 6164, NULL), +(28958, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:01.15077+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:02.034734+00', 883, '{"timezone-id":"UTC"}'), +(28959, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:02.037915+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:02.616375+00', 578, '{"updated-tables":0,"total-tables":8}'), +(28960, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:02.616813+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:06.43163+00', 3814, '{"total-fields":71,"updated-fields":0}'), +(28961, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:06.432011+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:06.596634+00', 164, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28962, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:06.59695+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.309616+00', 712, NULL), +(28963, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.562374+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.79466+00', 232, NULL), +(28964, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.562395+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.724975+00', 162, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28965, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.725309+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.751352+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(28966, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.751788+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:19:07.794294+00', 42, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28967, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:01.094433+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:18.836292+00', 17741, NULL), +(28968, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:01.138842+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:01.184221+00', 45, '{"timezone-id":null}'), +(28969, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:01.191777+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:02.618618+00', 1426, '{"updated-tables":0,"total-tables":4}'), +(28970, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:02.618711+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:18.781942+00', 16163, '{"total-fields":39,"updated-fields":0}'), +(28971, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:18.781996+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:18.818794+00', 36, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28972, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:18.818888+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:18.83623+00', 17, NULL), +(28973, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.01283+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.172918+00', 160, NULL), +(28974, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.012853+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.108671+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28975, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.108758+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.125048+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(28976, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.125123+00', TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:19.17286+00', 47, '{"total-tables":4,"tables-classified":0}'), +(28977, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 09:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:00:03.604+00', 3452, NULL), +(28978, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 09:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:00:03.782+00', 3634, NULL), +(28979, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:00.657475+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.192358+00', 5534, NULL), +(28980, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:00.66275+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:01.491439+00', 828, '{"timezone-id":"UTC"}'), +(28981, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:01.495471+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:02.47252+00', 977, '{"updated-tables":0,"total-tables":8}'), +(28982, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:02.472801+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:05.014871+00', 2542, '{"total-fields":71,"updated-fields":0}'), +(28983, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:05.015143+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:05.124543+00', 109, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(28984, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:05.124752+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.19213+00', 1067, NULL), +(28985, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.422997+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.8604+00', 437, NULL), +(28986, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.423016+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.729958+00', 306, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28987, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.730284+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.77599+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(28988, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.776682+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:19:06.860159+00', 83, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(28989, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:00.655914+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.691094+00', 20035, NULL), +(28990, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:00.660971+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:00.681175+00', 20, '{"timezone-id":null}'), +(28991, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:00.686018+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:01.231661+00', 545, '{"updated-tables":0,"total-tables":4}'), +(28992, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:01.232564+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.637905+00', 19405, '{"total-fields":39,"updated-fields":0}'), +(28993, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.640508+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.688599+00', 48, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(28994, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.689114+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.691054+00', 1, NULL), +(28995, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.82002+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.874695+00', 54, NULL), +(28996, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.820039+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.839345+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(28997, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.839402+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.843285+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(28998, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.843365+00', TIMESTAMP WITH TIME ZONE '2023-02-06 09:49:20.874641+00', 31, '{"total-tables":4,"tables-classified":0}'), +(28999, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:01.482+00', 1399, NULL), +(29000, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:00.083+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:01.482+00', 1399, NULL), +(29001, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:00.150794+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:04.48889+00', 4338, NULL), +(29002, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:00.151869+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:00.36809+00', 216, '{"timezone-id":"UTC"}'), +(29003, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:00.368704+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:00.518056+00', 149, '{"updated-tables":0,"total-tables":8}'), +(29004, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:00.518127+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:03.707499+00', 3189, '{"total-fields":71,"updated-fields":0}'), +(29005, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:03.707836+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:03.813439+00', 105, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29006, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:03.813781+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:04.488502+00', 674, NULL), +(29007, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:04.843663+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:05.228812+00', 385, NULL), +(29008, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:04.84369+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:05.129425+00', 285, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29009, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:05.129684+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:05.171677+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(29010, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:05.171765+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:19:05.228526+00', 56, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29011, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:00.860463+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.610895+00', 15750, NULL), +(29012, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:00.865505+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:00.888985+00', 23, '{"timezone-id":null}'), +(29013, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:00.894481+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:01.618883+00', 724, '{"updated-tables":0,"total-tables":4}'), +(29014, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:01.619215+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.592885+00', 14973, '{"total-fields":39,"updated-fields":0}'), +(29015, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.592963+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.606036+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29016, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.606103+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.610851+00', 4, NULL), +(29017, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.755646+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.950322+00', 194, NULL), +(29018, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.755664+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.873074+00', 117, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29019, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.873135+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.894113+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(29020, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.89419+00', TIMESTAMP WITH TIME ZONE '2023-02-06 10:49:16.95025+00', 56, '{"total-tables":4,"tables-classified":0}'), +(29021, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 11:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:00:05.328+00', 5168, NULL), +(29022, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 11:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:00:05.516+00', 5362, NULL), +(29023, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:00.078404+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.075952+00', 2997, NULL), +(29024, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:00.079039+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:00.218693+00', 139, '{"timezone-id":"UTC"}'), +(29025, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:00.219012+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:00.334223+00', 115, '{"updated-tables":0,"total-tables":8}'), +(29026, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:00.334494+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:02.231115+00', 1896, '{"total-fields":71,"updated-fields":0}'), +(29027, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:02.231191+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:02.592761+00', 361, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29028, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:02.592861+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.075907+00', 483, NULL), +(29029, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.182993+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.364635+00', 181, NULL), +(29030, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.183016+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.316828+00', 133, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29031, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.317177+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.343179+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(29032, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.343249+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:19:03.364577+00', 21, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29033, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:01.176014+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.430494+00', 11254, NULL), +(29034, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:01.180267+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:01.204019+00', 23, '{"timezone-id":null}'), +(29035, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:01.209143+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:01.805062+00', 595, '{"updated-tables":0,"total-tables":4}'), +(29036, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:01.805398+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.413551+00', 10608, '{"total-fields":39,"updated-fields":0}'), +(29037, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.41367+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.426447+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29038, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.426519+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.430449+00', 3, NULL), +(29039, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.665848+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.838759+00', 172, NULL), +(29040, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.665869+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.776785+00', 110, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29041, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.776908+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.813145+00', 36, '{"fields-classified":0,"fields-failed":0}'), +(29042, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.813292+00', TIMESTAMP WITH TIME ZONE '2023-02-06 11:49:12.838706+00', 25, '{"total-tables":4,"tables-classified":0}'), +(29043, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 12:00:00.991+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:00:04.514+00', 3523, NULL), +(29044, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 12:00:00.977+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:00:04.515+00', 3538, NULL), +(29045, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:00.637517+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.448543+00', 6811, NULL), +(29046, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:00.641495+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:01.296352+00', 654, '{"timezone-id":"UTC"}'), +(29047, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:01.299168+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:01.804384+00', 505, '{"updated-tables":0,"total-tables":8}'), +(29048, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:01.804717+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:05.898425+00', 4093, '{"total-fields":71,"updated-fields":0}'), +(29049, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:05.898902+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.342244+00', 1443, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29050, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.342522+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.448511+00', 105, NULL), +(29051, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.546763+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.634966+00', 88, NULL), +(29052, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.546781+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.596237+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29053, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.596293+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.61604+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(29054, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.616474+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:19:07.634919+00', 18, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29055, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:00.114763+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.870903+00', 9756, NULL), +(29056, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:00.12539+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:00.131797+00', 6, '{"timezone-id":null}'), +(29057, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:00.131902+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:00.348112+00', 216, '{"updated-tables":0,"total-tables":4}'), +(29058, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:00.348187+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.846259+00', 9498, '{"total-fields":39,"updated-fields":0}'), +(29059, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.846433+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.868824+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29060, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.868891+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.870864+00', 1, NULL), +(29061, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.91604+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.948628+00', 32, NULL), +(29062, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.916065+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.935557+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29063, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.935621+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.939457+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(29064, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.939516+00', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:09.948588+00', 9, '{"total-tables":4,"tables-classified":0}'), +(29065, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 13:00:01.012+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:00:01.7+00', 688, NULL), +(29066, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 13:00:01.008+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:00:01.7+00', 692, NULL), +(29067, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:00.048361+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:02.816707+00', 2768, NULL), +(29068, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:00.048387+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:00.139495+00', 91, '{"timezone-id":"UTC"}'), +(29069, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:00.139798+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:00.195682+00', 55, '{"updated-tables":0,"total-tables":8}'), +(29070, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:00.196059+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:01.99384+00', 1797, '{"total-fields":71,"updated-fields":0}'), +(29071, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:01.994165+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:02.324009+00', 329, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29072, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:02.324122+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:02.816544+00', 492, NULL), +(29073, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:02.941506+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:03.156055+00', 214, NULL), +(29074, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:02.941526+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:03.104686+00', 163, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29075, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:03.104993+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:03.127153+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(29076, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:03.127395+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:03.15577+00', 28, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29077, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:00.094949+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.403005+00', 11308, NULL), +(29078, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:00.095567+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:00.099392+00', 3, '{"timezone-id":null}'), +(29079, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:00.099804+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:00.270602+00', 170, '{"updated-tables":0,"total-tables":4}'), +(29080, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:00.270673+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.395658+00', 11124, '{"total-fields":39,"updated-fields":0}'), +(29081, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.395744+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.401015+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29082, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.40108+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.402961+00', 1, NULL), +(29083, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.449712+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.486328+00', 36, NULL), +(29084, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.449772+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.475683+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29085, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.475782+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.479796+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29086, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.479869+00', TIMESTAMP WITH TIME ZONE '2023-02-06 13:49:11.486261+00', 6, '{"total-tables":4,"tables-classified":0}'), +(29087, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:00.37+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:03.804+00', 3434, NULL), +(29088, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:03.967+00', 3802, NULL), +(29089, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:00.769259+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:06.3402+00', 5570, NULL), +(29090, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:00.774046+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:01.790018+00', 1015, '{"timezone-id":"UTC"}'), +(29091, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:01.793871+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:02.482647+00', 688, '{"updated-tables":0,"total-tables":8}'), +(29092, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:02.482945+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:05.710963+00', 3228, '{"total-fields":71,"updated-fields":0}'), +(29093, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:05.711276+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:05.839052+00', 127, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29094, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:05.83934+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:06.340152+00', 500, NULL), +(29095, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:06.720973+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:07.108496+00', 387, NULL), +(29096, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:06.720994+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:06.944485+00', 223, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29097, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:06.944819+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:07.005588+00', 60, '{"fields-classified":0,"fields-failed":0}'), +(29098, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:07.006127+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:19:07.108168+00', 102, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29099, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:00.860156+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:13.98091+00', 13120, NULL), +(29100, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:00.865384+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:00.9021+00', 36, '{"timezone-id":null}'), +(29101, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:00.907402+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:01.483985+00', 576, '{"updated-tables":0,"total-tables":4}'), +(29102, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:01.484085+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:13.952807+00', 12468, '{"total-fields":39,"updated-fields":0}'), +(29103, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:13.952936+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:13.97548+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29104, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:13.975545+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:13.980863+00', 5, NULL), +(29105, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.208472+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.45583+00', 247, NULL), +(29106, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.208495+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.366307+00', 157, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29107, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.366404+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.392615+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(29108, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.392692+00', TIMESTAMP WITH TIME ZONE '2023-02-06 14:49:14.45577+00', 63, '{"total-tables":4,"tables-classified":0}'), +(29109, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 15:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:00:03.953+00', 3806, NULL), +(29110, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 15:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:00:04.225+00', 4081, NULL), +(29111, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:00.129791+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.529564+00', 1399, NULL), +(29112, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:00.132268+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:00.582668+00', 450, '{"timezone-id":"UTC"}'), +(29113, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:00.583538+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:00.873201+00', 289, '{"updated-tables":0,"total-tables":8}'), +(29114, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:00.873354+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.294934+00', 421, '{"total-fields":71,"updated-fields":0}'), +(29115, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.295072+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.38961+00', 94, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29116, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.389819+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.529535+00', 139, NULL), +(29117, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.61317+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.752076+00', 138, NULL), +(29118, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.613192+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.682348+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29119, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.682478+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.709804+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(29120, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.71035+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:19:01.752001+00', 41, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29121, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:01.085867+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.801521+00', 17715, NULL), +(29122, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:01.09067+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:01.112861+00', 22, '{"timezone-id":null}'), +(29123, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:01.119187+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:01.717886+00', 598, '{"updated-tables":0,"total-tables":4}'), +(29124, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:01.718171+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.785517+00', 17067, '{"total-fields":39,"updated-fields":0}'), +(29125, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.785885+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.797917+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29126, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.797978+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.801489+00', 3, NULL), +(29127, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.927403+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:19.01417+00', 86, NULL), +(29128, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.927422+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.983328+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29129, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.983388+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.99339+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(29130, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:18.993452+00', TIMESTAMP WITH TIME ZONE '2023-02-06 15:49:19.01412+00', 20, '{"total-tables":4,"tables-classified":0}'), +(29131, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:00.19+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:04.314+00', 4124, NULL), +(29132, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:00.182+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:04.628+00', 4446, NULL), +(29133, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:00.184205+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.808693+00', 1624, NULL), +(29134, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:00.188058+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:00.748093+00', 560, '{"timezone-id":"UTC"}'), +(29135, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:00.749597+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.009365+00', 259, '{"updated-tables":0,"total-tables":8}'), +(29136, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.009445+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.307464+00', 298, '{"total-fields":71,"updated-fields":0}'), +(29137, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.307532+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.377912+00', 70, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29138, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.378001+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.808618+00', 430, NULL), +(29139, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.987067+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:02.700401+00', 713, NULL), +(29140, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:01.987086+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:02.574717+00', 587, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29141, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:02.574977+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:02.635153+00', 60, '{"fields-classified":0,"fields-failed":0}'), +(29142, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:02.635458+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:19:02.700147+00', 64, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29143, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:00.849767+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.669952+00', 24820, NULL), +(29144, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:00.856093+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:00.87747+00', 21, '{"timezone-id":null}'), +(29145, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:00.882831+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:01.41881+00', 535, '{"updated-tables":0,"total-tables":4}'), +(29146, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:01.418965+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.66764+00', 24248, '{"total-fields":39,"updated-fields":0}'), +(29147, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.667754+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.669458+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29148, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.669511+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.669866+00', 0, NULL), +(29149, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.695781+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.727613+00', 31, NULL), +(29150, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.695839+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.717403+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29151, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.717468+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.721346+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(29152, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.721412+00', TIMESTAMP WITH TIME ZONE '2023-02-06 16:49:25.727463+00', 6, '{"total-tables":4,"tables-classified":0}'), +(29153, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 17:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:00:02.726+00', 2609, NULL), +(29154, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 17:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:00:02.86+00', 2750, NULL), +(29155, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:00.213128+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.077494+00', 4864, NULL), +(29156, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:00.216381+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:00.540479+00', 324, '{"timezone-id":"UTC"}'), +(29157, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:00.541966+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:00.984569+00', 442, '{"updated-tables":0,"total-tables":8}'), +(29158, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:00.984877+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:04.403211+00', 3418, '{"total-fields":71,"updated-fields":0}'), +(29159, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:04.403596+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:04.552549+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29160, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:04.552878+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.077445+00', 524, NULL), +(29161, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.214545+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.499235+00', 284, NULL), +(29162, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.21457+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.408982+00', 194, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29163, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.40954+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.471874+00', 62, '{"fields-classified":0,"fields-failed":0}'), +(29164, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.472132+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:19:05.499188+00', 27, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29165, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:00.434764+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.1799+00', 15745, NULL), +(29166, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:00.437976+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:00.457844+00', 19, '{"timezone-id":null}'), +(29167, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:00.461478+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:00.961437+00', 499, '{"updated-tables":0,"total-tables":4}'), +(29168, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:00.961523+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.171931+00', 15210, '{"total-fields":39,"updated-fields":0}'), +(29169, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.172951+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.17744+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29170, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.177532+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.179845+00', 2, NULL), +(29171, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.234566+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.267381+00', 32, NULL), +(29172, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.234586+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.254985+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29173, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.255097+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.259106+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29174, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.259198+00', TIMESTAMP WITH TIME ZONE '2023-02-06 17:49:16.267305+00', 8, '{"total-tables":4,"tables-classified":0}'), +(29175, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 18:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:00:02.518+00', 2395, NULL), +(29176, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 18:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:00:02.698+00', 2575, NULL), +(29177, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:00.118497+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:03.961748+00', 3843, NULL), +(29178, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:00.121132+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:00.679852+00', 558, '{"timezone-id":"UTC"}'), +(29179, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:00.681006+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:01.021332+00', 340, '{"updated-tables":0,"total-tables":8}'), +(29180, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:01.021525+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:03.61115+00', 2589, '{"total-fields":71,"updated-fields":0}'), +(29181, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:03.611392+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:03.74628+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29182, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:03.746677+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:03.961711+00', 215, NULL), +(29183, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.371124+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.514711+00', 143, NULL), +(29184, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.371143+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.454822+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29185, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.455034+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.468403+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(29186, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.468953+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:19:04.514651+00', 45, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29187, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:00.84731+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:14.234151+00', 13386, NULL), +(29188, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:00.850913+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:00.883326+00', 32, '{"timezone-id":null}'), +(29189, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:00.890713+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:01.429513+00', 538, '{"updated-tables":0,"total-tables":4}'), +(29190, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:01.429806+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:14.187237+00', 12757, '{"total-fields":39,"updated-fields":0}'), +(29191, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:14.188092+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:14.217705+00', 29, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29192, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:14.217802+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:14.233912+00', 16, NULL), +(29193, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.464644+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.504742+00', 40, NULL), +(29194, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.464662+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.488017+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29195, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.488117+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.490362+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(29196, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.490416+00', TIMESTAMP WITH TIME ZONE '2023-02-06 18:49:20.504589+00', 14, '{"total-tables":4,"tables-classified":0}'), +(29197, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 19:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:00:02.491+00', 2337, NULL), +(29198, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 19:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:00:02.711+00', 2557, NULL), +(29199, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:00.230918+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.546748+00', 6315, NULL), +(29200, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:00.235132+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:00.739891+00', 504, '{"timezone-id":"UTC"}'), +(29201, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:00.74171+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:01.227715+00', 486, '{"updated-tables":0,"total-tables":8}'), +(29202, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:01.227818+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:05.942562+00', 4714, '{"total-fields":71,"updated-fields":0}'), +(29203, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:05.942678+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.087557+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29204, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.087644+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.546621+00', 458, NULL), +(29205, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.668745+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.799255+00', 130, NULL), +(29206, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.668763+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.737799+00', 69, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29207, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.737963+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.759279+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(29208, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.759594+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:19:06.79913+00', 39, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29209, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:00.806063+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.842764+00', 13036, NULL), +(29210, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:00.810889+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:00.851821+00', 40, '{"timezone-id":null}'), +(29211, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:00.857457+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:01.381487+00', 524, '{"updated-tables":0,"total-tables":4}'), +(29212, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:01.381831+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.827706+00', 12445, '{"total-fields":39,"updated-fields":0}'), +(29213, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.82783+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.838137+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29214, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.83823+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.842699+00', 4, NULL), +(29215, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.960909+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:14.048936+00', 88, NULL), +(29216, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:13.960953+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:14.008634+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29217, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:14.008694+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:14.019071+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(29218, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:14.019209+00', TIMESTAMP WITH TIME ZONE '2023-02-06 19:49:14.048864+00', 29, '{"total-tables":4,"tables-classified":0}'), +(29219, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 20:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:00:02.166+00', 2047, NULL), +(29220, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 20:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:00:02.344+00', 2229, NULL), +(29221, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:00.178764+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.367096+00', 4188, NULL), +(29222, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:00.181983+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:00.849981+00', 667, '{"timezone-id":"UTC"}'), +(29223, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:00.851705+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:01.232792+00', 381, '{"updated-tables":0,"total-tables":8}'), +(29224, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:01.233426+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:03.751736+00', 2518, '{"total-fields":71,"updated-fields":0}'), +(29225, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:03.751807+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:03.873844+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29226, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:03.874255+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.367063+00', 492, NULL), +(29227, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.643716+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.952717+00', 309, NULL), +(29228, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.643739+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.859184+00', 215, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29229, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.859718+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.901859+00', 42, '{"fields-classified":0,"fields-failed":0}'), +(29230, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.902318+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:19:04.952659+00', 50, '{"total-tables":8,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29231, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:00.819974+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.591135+00', 12771, NULL), +(29232, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:00.823818+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:00.84366+00', 19, '{"timezone-id":null}'), +(29233, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:00.848168+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:01.337579+00', 489, '{"updated-tables":0,"total-tables":4}'), +(29234, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:01.337659+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.547778+00', 12210, '{"total-fields":39,"updated-fields":0}'), +(29235, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.547857+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.583681+00', 35, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29236, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.583752+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.591092+00', 7, NULL), +(29237, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.766996+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.935589+00', 168, NULL), +(29238, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.767022+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.892261+00', 125, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29239, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.892601+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.909673+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(29240, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.909788+00', TIMESTAMP WITH TIME ZONE '2023-02-06 20:49:13.935544+00', 25, '{"total-tables":4,"tables-classified":0}'), +(29241, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:00.704+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:04.827+00', 4123, NULL), +(29242, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:00.622+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:04.999+00', 4377, NULL), +(29243, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:05.07838+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:13.456277+00', 8377, NULL), +(29244, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:05.082566+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:06.574722+00', 1492, '{"deleted":0}'), +(29245, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:06.578639+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:00:13.456227+00', 6877, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(29246, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:00.524427+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.192503+00', 3668, NULL), +(29247, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:00.528047+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:00.911027+00', 382, '{"timezone-id":"UTC"}'), +(29248, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:00.914433+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:01.211234+00', 296, '{"updated-tables":0,"total-tables":8}'), +(29249, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:01.211537+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:03.519+00', 2307, '{"total-fields":71,"updated-fields":0}'), +(29250, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:03.519356+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:03.640164+00', 120, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29251, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:03.640279+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.192217+00', 551, NULL), +(29252, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.464575+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.83042+00', 365, NULL), +(29253, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.4648+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.720068+00', 255, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29254, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.720507+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.776338+00', 55, '{"fields-classified":0,"fields-failed":0}'), +(29255, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.776867+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:19:04.830139+00', 53, '{"total-tables":8,"tables-classified":0}'), +(29256, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:00.973373+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.157347+00', 15183, NULL), +(29257, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:00.977256+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:00.999346+00', 22, '{"timezone-id":null}'), +(29258, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:01.003684+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:01.571384+00', 567, '{"updated-tables":0,"total-tables":4}'), +(29259, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:01.571807+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.142193+00', 14570, '{"total-fields":39,"updated-fields":0}'), +(29260, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.142266+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.153277+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29261, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.153339+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.15731+00', 3, NULL), +(29262, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.377942+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.536537+00', 158, NULL), +(29263, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.377959+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.488772+00', 110, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29264, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.488881+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.508768+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(29265, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.50888+00', TIMESTAMP WITH TIME ZONE '2023-02-06 21:49:16.536483+00', 27, '{"total-tables":4,"tables-classified":0}'), +(29266, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 22:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:00:02.598+00', 2475, NULL), +(29267, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 22:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:00:02.738+00', 2619, NULL), +(29268, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:00.30864+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.400717+00', 5092, NULL), +(29269, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:00.312285+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:01.047217+00', 734, '{"timezone-id":"UTC"}'), +(29270, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:01.049379+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:01.402984+00', 353, '{"updated-tables":0,"total-tables":8}'), +(29271, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:01.403364+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:03.772773+00', 2369, '{"total-fields":71,"updated-fields":0}'), +(29272, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:03.773037+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:03.907917+00', 134, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29273, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:03.908578+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.400679+00', 1492, NULL), +(29274, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.538078+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.768978+00', 230, NULL), +(29275, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.538316+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.694502+00', 156, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29276, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.694588+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.72423+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(29277, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.724543+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:19:05.768744+00', 44, '{"total-tables":8,"tables-classified":0}'), +(29278, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:00.862806+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.44053+00', 15577, NULL), +(29279, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:00.866904+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:00.886504+00', 19, '{"timezone-id":null}'), +(29280, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:00.891391+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:01.476971+00', 585, '{"updated-tables":0,"total-tables":4}'), +(29281, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:01.477463+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.403575+00', 14926, '{"total-fields":39,"updated-fields":0}'), +(29282, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.408632+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.435181+00', 26, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29283, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.435743+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.440217+00', 4, NULL), +(29284, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.60024+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.67413+00', 73, NULL), +(29285, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.60026+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.656356+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29286, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.656443+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.661062+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29287, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.661151+00', TIMESTAMP WITH TIME ZONE '2023-02-06 22:49:16.674084+00', 12, '{"total-tables":4,"tables-classified":0}'), +(29288, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 23:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:00:01.586+00', 1472, NULL), +(29289, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-06 23:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:00:01.724+00', 1610, NULL), +(29290, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:00.191081+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.226128+00', 4035, NULL), +(29291, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:00.194249+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:00.780459+00', 586, '{"timezone-id":"UTC"}'), +(29292, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:00.782261+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:01.123838+00', 341, '{"updated-tables":0,"total-tables":8}'), +(29293, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:01.124261+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:03.539154+00', 2414, '{"total-fields":71,"updated-fields":0}'), +(29294, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:03.539413+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:03.670864+00', 131, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29295, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:03.671159+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.225868+00', 554, NULL), +(29296, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.420117+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:05.196243+00', 776, NULL), +(29297, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.420146+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.623122+00', 202, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29298, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.623194+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.648178+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(29299, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:04.648492+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:19:05.196189+00', 547, '{"total-tables":8,"tables-classified":0}'), +(29300, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:00.729222+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:13.225273+00', 12496, NULL), +(29301, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:00.73428+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:00.785766+00', 51, '{"timezone-id":null}'), +(29302, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:00.797841+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:01.43856+00', 640, '{"updated-tables":0,"total-tables":4}'), +(29303, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:01.43884+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:13.202024+00', 11763, '{"total-fields":39,"updated-fields":0}'), +(29304, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:13.202718+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:13.220807+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29305, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:13.220874+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:13.225233+00', 4, NULL), +(29306, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.911932+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.945162+00', 33, NULL), +(29307, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.91195+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.930658+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29308, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.930734+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.933161+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(29309, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.933218+00', TIMESTAMP WITH TIME ZONE '2023-02-06 23:49:19.945117+00', 11, '{"total-tables":4,"tables-classified":0}'), +(29310, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 00:00:00.217+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:00:04.199+00', 3982, NULL), +(29311, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 00:00:00.217+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:00:04.538+00', 4321, NULL), +(29312, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:00.281829+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.354853+00', 6073, NULL), +(29313, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:00.285878+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:01.233381+00', 947, '{"timezone-id":"UTC"}'), +(29314, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:01.235943+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:01.649668+00', 413, '{"updated-tables":0,"total-tables":8}'), +(29315, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:01.649948+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:05.765605+00', 4115, '{"total-fields":71,"updated-fields":0}'), +(29316, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:05.7657+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:05.878069+00', 112, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29317, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:05.878347+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.354824+00', 476, NULL), +(29318, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.556909+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.823171+00', 266, NULL), +(29319, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.556936+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.740326+00', 183, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29320, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.740409+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.780455+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(29321, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.780805+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:19:06.823118+00', 42, '{"total-tables":8,"tables-classified":0}'), +(29322, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:00.868404+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.319727+00', 15451, NULL), +(29323, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:00.870509+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:00.890178+00', 19, '{"timezone-id":null}'), +(29324, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:00.894377+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:01.453599+00', 559, '{"updated-tables":0,"total-tables":4}'), +(29325, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:01.453844+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.296896+00', 14843, '{"total-fields":39,"updated-fields":0}'), +(29326, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.296987+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.315519+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29327, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.315579+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.319669+00', 4, NULL), +(29328, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.453153+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.536852+00', 83, NULL), +(29329, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.453207+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.517067+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29330, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.517223+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.525172+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(29331, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.525243+00', TIMESTAMP WITH TIME ZONE '2023-02-07 00:49:16.536804+00', 11, '{"total-tables":4,"tables-classified":0}'), +(29332, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 01:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:00:03.636+00', 3503, NULL), +(29333, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 01:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:00:04.153+00', 4031, NULL), +(29334, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:00.346733+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.092301+00', 4745, NULL), +(29335, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:00.351243+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:01.18852+00', 837, '{"timezone-id":"UTC"}'), +(29336, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:01.190699+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:01.672044+00', 481, '{"updated-tables":0,"total-tables":8}'), +(29337, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:01.672128+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:04.430045+00', 2757, '{"total-fields":71,"updated-fields":0}'), +(29338, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:04.430118+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:04.573861+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29339, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:04.574162+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.092258+00', 518, NULL), +(29340, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.267021+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.562906+00', 295, NULL), +(29341, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.267045+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.523016+00', 255, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29342, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.523094+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.541281+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(29343, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.541505+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:19:05.562857+00', 21, '{"total-tables":8,"tables-classified":0}'), +(29344, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:01.19658+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.744899+00', 17548, NULL), +(29345, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:01.201131+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:01.223566+00', 22, '{"timezone-id":null}'), +(29346, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:01.229166+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:01.883003+00', 653, '{"updated-tables":0,"total-tables":4}'), +(29347, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:01.883106+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.732445+00', 16849, '{"total-fields":39,"updated-fields":0}'), +(29348, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.732516+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.738137+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29349, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.738198+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.744848+00', 6, NULL), +(29350, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.979273+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:19.211677+00', 232, NULL), +(29351, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:18.979293+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:19.181335+00', 202, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29352, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:19.181465+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:19.195722+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(29353, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:19.195782+00', TIMESTAMP WITH TIME ZONE '2023-02-07 01:49:19.211634+00', 15, '{"total-tables":4,"tables-classified":0}'), +(29354, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:00.36+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:03.03+00', 2670, NULL), +(29355, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:03.043+00', 2847, NULL), +(29356, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:03.073676+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:16.962724+00', 13889, NULL), +(29357, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:03.079829+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:04.633582+00', 1553, '{"deleted":0}'), +(29358, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:04.636076+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:00:16.962667+00', 12326, '{"errors":0,"created":0,"updated":3,"deleted":0}'), +(29359, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:00.490579+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.610692+00', 2120, NULL), +(29360, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:00.492371+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:00.978698+00', 486, '{"timezone-id":"UTC"}'), +(29361, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:00.980666+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:01.269323+00', 288, '{"updated-tables":0,"total-tables":8}'), +(29362, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:01.269442+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.374484+00', 1105, '{"total-fields":71,"updated-fields":0}'), +(29363, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.374555+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.439629+00', 65, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29364, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.439693+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.610642+00', 170, NULL), +(29365, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.702227+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.923054+00', 220, NULL), +(29366, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.702248+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.830592+00', 128, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29367, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.830689+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.867757+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(29368, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.868362+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:19:02.922994+00', 54, '{"total-tables":8,"tables-classified":0}'), +(29369, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:00.854917+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.498409+00', 16643, NULL), +(29370, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:00.859181+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:00.882925+00', 23, '{"timezone-id":null}'), +(29371, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:00.887398+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:01.674763+00', 787, '{"updated-tables":0,"total-tables":4}'), +(29372, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:01.676634+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.481252+00', 15804, '{"total-fields":39,"updated-fields":0}'), +(29373, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.483372+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.493845+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29374, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.493907+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.498355+00', 4, NULL), +(29375, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.755818+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.805756+00', 49, NULL), +(29376, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.755836+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.784074+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29377, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.784732+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.791595+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(29378, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.791668+00', TIMESTAMP WITH TIME ZONE '2023-02-07 02:49:17.805718+00', 14, '{"total-tables":4,"tables-classified":0}'), +(29379, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 03:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:00:00.994+00', 888, NULL), +(29380, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 03:00:00.089+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:00:01.097+00', 1008, NULL), +(29381, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:00.198557+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:05.917973+00', 5719, NULL), +(29382, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:00.202159+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:00.910543+00', 708, '{"timezone-id":"UTC"}'), +(29383, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:00.913065+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:01.308247+00', 395, '{"updated-tables":0,"total-tables":8}'), +(29384, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:01.308894+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:04.418539+00', 3109, '{"total-fields":71,"updated-fields":0}'), +(29385, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:04.418746+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:04.590515+00', 171, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29386, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:04.590821+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:05.917941+00', 1327, NULL), +(29387, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:05.987603+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:06.080708+00', 93, NULL), +(29388, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:05.987625+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:06.042549+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29389, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:06.042616+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:06.053676+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(29390, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:06.053736+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:19:06.080664+00', 26, '{"total-tables":8,"tables-classified":0}'), +(29391, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:00.510716+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.267234+00', 20756, NULL), +(29392, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:00.522288+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:00.54022+00', 17, '{"timezone-id":null}'), +(29393, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:00.545574+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:01.356078+00', 810, '{"updated-tables":0,"total-tables":4}'), +(29394, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:01.356403+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.26458+00', 19908, '{"total-fields":39,"updated-fields":0}'), +(29395, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.26473+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.266643+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29396, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.26676+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.267211+00', 0, NULL), +(29397, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.291566+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.317418+00', 25, NULL), +(29398, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.291586+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.301714+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29399, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.301841+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.304862+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(29400, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.304956+00', TIMESTAMP WITH TIME ZONE '2023-02-07 03:49:21.317369+00', 12, '{"total-tables":4,"tables-classified":0}'), +(29401, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 04:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:00:03.334+00', 3189, NULL), +(29402, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 04:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:00:03.457+00', 3319, NULL), +(29403, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:00.604674+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.737476+00', 5132, NULL), +(29404, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:00.610275+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:01.70028+00', 1090, '{"timezone-id":"UTC"}'), +(29405, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:01.705046+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:02.264843+00', 559, '{"updated-tables":0,"total-tables":8}'), +(29406, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:02.265216+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.062181+00', 2796, '{"total-fields":71,"updated-fields":0}'), +(29407, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.06243+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.205014+00', 142, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29408, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.205711+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.737157+00', 531, NULL), +(29409, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.952214+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:06.251865+00', 299, NULL), +(29410, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:05.952234+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:06.151156+00', 198, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29411, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:06.151461+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:06.196906+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(29412, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:06.197363+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:19:06.251811+00', 54, '{"total-tables":8,"tables-classified":0}'), +(29413, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:00.834391+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.162685+00', 22328, NULL), +(29414, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:00.839202+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:00.858662+00', 19, '{"timezone-id":null}'), +(29415, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:00.865154+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:01.450587+00', 585, '{"updated-tables":0,"total-tables":4}'), +(29416, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:01.45112+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.148993+00', 21697, '{"total-fields":39,"updated-fields":0}'), +(29417, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.150965+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.160215+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29418, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.162026+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.162658+00', 0, NULL), +(29419, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.240708+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.300131+00', 59, NULL), +(29420, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.240724+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.258135+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29421, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.258211+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.261772+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(29422, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.268103+00', TIMESTAMP WITH TIME ZONE '2023-02-07 04:49:23.300086+00', 31, '{"total-tables":4,"tables-classified":0}'), +(29423, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 05:00:00.755+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:00:02.94+00', 2185, NULL), +(29424, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 05:00:00.48+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:00:03.062+00', 2582, NULL), +(29425, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:00.196562+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.370258+00', 5173, NULL), +(29426, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:00.199882+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:00.775197+00', 575, '{"timezone-id":"UTC"}'), +(29427, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:00.776952+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:01.224566+00', 447, '{"updated-tables":0,"total-tables":8}'), +(29428, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:01.224946+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:04.78499+00', 3560, '{"total-fields":71,"updated-fields":0}'), +(29429, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:04.785356+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:04.907732+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29430, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:04.907932+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.36997+00', 462, NULL), +(29431, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.48194+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.639898+00', 157, NULL), +(29432, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.481961+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.596348+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29433, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.59647+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.62297+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(29434, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.623324+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:19:05.639849+00', 16, '{"total-tables":8,"tables-classified":0}'), +(29435, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:01.310439+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.661489+00', 15351, NULL), +(29436, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:01.321184+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:01.365443+00', 44, '{"timezone-id":null}'), +(29437, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:01.373871+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:02.780909+00', 1407, '{"updated-tables":0,"total-tables":4}'), +(29438, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:02.781229+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.643672+00', 13862, '{"total-fields":39,"updated-fields":0}'), +(29439, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.643817+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.657761+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29440, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.657836+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.661448+00', 3, NULL), +(29441, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.773348+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.867278+00', 93, NULL), +(29442, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.773369+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.836573+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29443, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.836833+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.848011+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(29444, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.848087+00', TIMESTAMP WITH TIME ZONE '2023-02-07 05:49:16.867228+00', 19, '{"total-tables":4,"tables-classified":0}'), +(29445, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 06:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:00:04.504+00', 4375, NULL), +(29446, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 06:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:00:04.313+00', 4167, NULL), +(29447, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:00.26996+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:05.86947+00', 5599, NULL), +(29448, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:00.274508+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:01.183832+00', 909, '{"timezone-id":"UTC"}'), +(29449, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:01.186125+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:01.636475+00', 450, '{"updated-tables":0,"total-tables":8}'), +(29450, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:01.636834+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:04.955925+00', 3319, '{"total-fields":71,"updated-fields":0}'), +(29451, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:04.956834+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:05.111922+00', 155, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29452, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:05.112259+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:05.869434+00', 757, NULL), +(29453, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.066544+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.461044+00', 394, NULL), +(29454, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.066578+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.324539+00', 257, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29455, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.324846+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.396744+00', 71, '{"fields-classified":0,"fields-failed":0}'), +(29456, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.397547+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:19:06.460695+00', 63, '{"total-tables":8,"tables-classified":0}'), +(29457, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:01.072062+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.042767+00', 20970, NULL), +(29458, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:01.075888+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:01.096852+00', 20, '{"timezone-id":null}'), +(29459, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:01.101912+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:01.727754+00', 625, '{"updated-tables":0,"total-tables":4}'), +(29460, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:01.728084+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:21.98503+00', 20256, '{"total-fields":39,"updated-fields":0}'), +(29461, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.000939+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.030593+00', 29, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29462, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.036849+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.042718+00', 5, NULL), +(29463, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.172837+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.211669+00', 38, NULL), +(29464, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.172858+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.191724+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29465, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.191917+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.19674+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29466, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.196882+00', TIMESTAMP WITH TIME ZONE '2023-02-07 06:49:22.211441+00', 14, '{"total-tables":4,"tables-classified":0}'), +(29467, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 07:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:00:02.598+00', 2467, NULL), +(29468, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 07:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:00:02.71+00', 2590, NULL), +(29469, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:00.188819+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.077281+00', 4888, NULL), +(29470, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:00.192153+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:00.701526+00', 509, '{"timezone-id":"UTC"}'), +(29471, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:00.703467+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:01.120283+00', 416, '{"updated-tables":0,"total-tables":8}'), +(29472, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:01.120517+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:04.637982+00', 3517, '{"total-fields":71,"updated-fields":0}'), +(29473, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:04.638067+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:04.820286+00', 182, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29474, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:04.820641+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.077254+00', 256, NULL), +(29475, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.166339+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.252983+00', 86, NULL), +(29476, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.16636+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.223326+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29477, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.223392+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.235867+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(29478, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.236186+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:19:05.252933+00', 16, '{"total-tables":8,"tables-classified":0}'), +(29479, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:00.786966+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.522089+00', 13735, NULL), +(29480, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:00.791413+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:00.809599+00', 18, '{"timezone-id":null}'), +(29481, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:00.813886+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:01.400735+00', 586, '{"updated-tables":0,"total-tables":4}'), +(29482, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:01.401032+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.500779+00', 13099, '{"total-fields":39,"updated-fields":0}'), +(29483, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.501199+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.517715+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29484, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.517843+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.521851+00', 4, NULL), +(29485, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.775462+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.886554+00', 111, NULL), +(29486, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.77548+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.832474+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29487, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.832582+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.842683+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(29488, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.84276+00', TIMESTAMP WITH TIME ZONE '2023-02-07 07:49:14.886484+00', 43, '{"total-tables":4,"tables-classified":0}'), +(29489, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 08:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:00:04.643+00', 4514, NULL), +(29490, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 08:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:00:04.483+00', 4341, NULL), +(29491, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:00.45566+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:06.425343+00', 5969, NULL), +(29492, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:00.461475+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:01.472551+00', 1011, '{"timezone-id":"UTC"}'), +(29493, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:01.474315+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:01.986422+00', 512, '{"updated-tables":0,"total-tables":8}'), +(29494, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:01.987108+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:05.265844+00', 3278, '{"total-fields":71,"updated-fields":0}'), +(29495, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:05.266242+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:05.536565+00', 270, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29496, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:05.537008+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:06.425074+00', 888, NULL), +(29497, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:06.719073+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:07.154248+00', 435, NULL), +(29498, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:06.719093+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:07.036027+00', 316, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29499, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:07.036479+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:07.093589+00', 57, '{"fields-classified":0,"fields-failed":0}'), +(29500, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:07.094177+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:19:07.153779+00', 59, '{"total-tables":8,"tables-classified":0}'), +(29501, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:01.289251+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.402254+00', 17113, NULL), +(29502, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:01.296094+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:01.332837+00', 36, '{"timezone-id":null}'), +(29503, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:01.339047+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:02.059391+00', 720, '{"updated-tables":0,"total-tables":4}'), +(29504, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:02.05981+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.389021+00', 16329, '{"total-fields":39,"updated-fields":0}'), +(29505, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.389859+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.400253+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29506, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.400504+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.402216+00', 1, NULL), +(29507, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.500138+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.537912+00', 37, NULL), +(29508, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.500158+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.521261+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29509, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.521346+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.525666+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29510, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.525727+00', TIMESTAMP WITH TIME ZONE '2023-02-07 08:49:18.537867+00', 12, '{"total-tables":4,"tables-classified":0}'), +(29511, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 09:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:00:03.676+00', 3546, NULL), +(29512, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 09:00:00.314+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:00:03.673+00', 3359, NULL), +(29513, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:00.277887+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.616867+00', 5338, NULL), +(29514, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:00.281968+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:00.948379+00', 666, '{"timezone-id":"UTC"}'), +(29515, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:00.950443+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:01.289236+00', 338, '{"updated-tables":0,"total-tables":8}'), +(29516, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:01.289329+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.044322+00', 3754, '{"total-fields":71,"updated-fields":0}'), +(29517, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.044393+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.160452+00', 116, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29518, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.160726+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.616593+00', 455, NULL), +(29519, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.792295+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.934962+00', 142, NULL), +(29520, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.792548+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.897409+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29521, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.897478+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.914018+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(29522, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.914347+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:19:05.93492+00', 20, '{"total-tables":8,"tables-classified":0}'), +(29523, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:01.262711+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.310982+00', 14048, NULL), +(29524, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:01.267709+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:01.289457+00', 21, '{"timezone-id":null}'), +(29525, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:01.294392+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:02.166795+00', 872, '{"updated-tables":0,"total-tables":4}'), +(29526, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:02.167094+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.264185+00', 13097, '{"total-fields":39,"updated-fields":0}'), +(29527, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.265725+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.294528+00', 28, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29528, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.29461+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.310916+00', 16, NULL), +(29529, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.60215+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.760952+00', 158, NULL), +(29530, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.602178+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.704266+00', 102, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29531, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.704326+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.71391+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(29532, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.714022+00', TIMESTAMP WITH TIME ZONE '2023-02-07 09:49:15.760769+00', 46, '{"total-tables":4,"tables-classified":0}'), +(29533, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 10:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:00:04.901+00', 4746, NULL), +(29534, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 10:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:00:04.716+00', 4553, NULL), +(29535, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:00.172287+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:04.083188+00', 3910, NULL), +(29536, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:00.175519+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:00.610819+00', 435, '{"timezone-id":"UTC"}'), +(29537, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:00.612289+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:01.056724+00', 444, '{"updated-tables":0,"total-tables":8}'), +(29538, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:01.057064+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:03.894362+00', 2837, '{"total-fields":71,"updated-fields":0}'), +(29539, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:03.894465+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:03.937096+00', 42, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29540, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:03.937162+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:04.083095+00', 145, NULL), +(29541, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:04.15599+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:05.108099+00', 952, NULL), +(29542, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:04.156016+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:05.050618+00', 894, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29543, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:05.050724+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:05.072092+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(29544, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:05.072615+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:19:05.108025+00', 35, '{"total-tables":8,"tables-classified":0}'), +(29545, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:00.898812+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:13.390068+00', 12491, NULL), +(29546, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:00.904679+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:00.92566+00', 20, '{"timezone-id":null}'), +(29547, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:00.929434+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:01.419059+00', 489, '{"updated-tables":0,"total-tables":4}'), +(29548, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:01.419374+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:13.371843+00', 11952, '{"total-fields":39,"updated-fields":0}'), +(29549, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:13.37252+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:13.385895+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29550, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:13.386118+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:13.389991+00', 3, NULL), +(29551, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.335443+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.418299+00', 82, NULL), +(29552, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.335464+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.395001+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29553, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.395427+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.405589+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(29554, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.405664+00', TIMESTAMP WITH TIME ZONE '2023-02-07 10:49:20.418171+00', 12, '{"total-tables":4,"tables-classified":0}'), +(29555, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 11:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:00:02.81+00', 2656, NULL), +(29556, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 11:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:00:02.967+00', 2820, NULL), +(29557, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:00.177312+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.750477+00', 5573, NULL), +(29558, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:00.181262+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:00.51117+00', 329, '{"timezone-id":"UTC"}'), +(29559, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:00.51336+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:00.926877+00', 413, '{"updated-tables":0,"total-tables":8}'), +(29560, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:00.927182+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:04.252393+00', 3325, '{"total-fields":71,"updated-fields":0}'), +(29561, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:04.252718+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:04.41452+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29562, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:04.415041+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.750412+00', 1335, NULL), +(29563, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.81304+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.921938+00', 108, NULL), +(29564, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.813062+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.871911+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29565, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.872073+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.886194+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(29566, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.886603+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:19:05.921848+00', 35, '{"total-tables":8,"tables-classified":0}'), +(29567, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:00.81719+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.682886+00', 13865, NULL), +(29568, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:00.820697+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:00.843979+00', 23, '{"timezone-id":null}'), +(29569, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:00.849129+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:01.423668+00', 574, '{"updated-tables":0,"total-tables":4}'), +(29570, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:01.424022+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.658601+00', 13234, '{"total-fields":39,"updated-fields":0}'), +(29571, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.65965+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.677814+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29572, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.677891+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.682842+00', 4, NULL), +(29573, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.876147+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:15.006965+00', 130, NULL), +(29574, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.876173+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.931884+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29575, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.931961+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.950519+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(29576, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:14.950589+00', TIMESTAMP WITH TIME ZONE '2023-02-07 11:49:15.006894+00', 56, '{"total-tables":4,"tables-classified":0}'), +(29577, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 12:00:00.249+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:00:03.52+00', 3271, NULL), +(29578, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 12:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:00:03.521+00', 3350, NULL), +(29579, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:00.223599+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.019423+00', 4795, NULL), +(29580, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:00.22939+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:01.013389+00', 783, '{"timezone-id":"UTC"}'), +(29581, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:01.016238+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:01.551225+00', 534, '{"updated-tables":0,"total-tables":8}'), +(29582, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:01.552107+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:04.550292+00', 2998, '{"total-fields":71,"updated-fields":0}'), +(29583, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:04.550678+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:04.699932+00', 149, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29584, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:04.700239+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.019391+00', 319, NULL), +(29585, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.087114+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.186495+00', 99, NULL), +(29586, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.087134+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.143108+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29587, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.143171+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.156068+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(29588, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.156395+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:19:05.18616+00', 29, '{"total-tables":8,"tables-classified":0}'), +(29589, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:01.072257+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.761099+00', 15688, NULL), +(29590, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:01.076+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:01.093663+00', 17, '{"timezone-id":null}'), +(29591, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:01.098752+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:01.645966+00', 547, '{"updated-tables":0,"total-tables":4}'), +(29592, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:01.646307+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.74569+00', 15099, '{"total-fields":39,"updated-fields":0}'), +(29593, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.748465+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.757197+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29594, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.757636+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.760838+00', 3, NULL), +(29595, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.846213+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.879846+00', 33, NULL), +(29596, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.846229+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.863622+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29597, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.863676+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.86666+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(29598, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.866703+00', TIMESTAMP WITH TIME ZONE '2023-02-07 12:49:16.879812+00', 13, '{"total-tables":4,"tables-classified":0}'), +(29599, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 13:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:00:02.28+00', 2153, NULL), +(29600, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 13:00:00.113+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:00:02.436+00', 2323, NULL), +(29601, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:00.234355+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.552651+00', 5318, NULL), +(29602, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:00.237799+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:00.858167+00', 620, '{"timezone-id":"UTC"}'), +(29603, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:00.860203+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:01.225377+00', 365, '{"updated-tables":0,"total-tables":8}'), +(29604, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:01.225926+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:04.992634+00', 3766, '{"total-fields":71,"updated-fields":0}'), +(29605, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:04.992704+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.123258+00', 130, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29606, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.123474+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.552616+00', 429, NULL), +(29607, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.630807+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.735734+00', 104, NULL), +(29608, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.630838+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.701837+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29609, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.701903+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.714818+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(29610, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.715106+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:19:05.735689+00', 20, '{"total-tables":8,"tables-classified":0}'), +(29611, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:01.024141+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.341329+00', 16317, NULL), +(29612, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:01.028831+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:01.056123+00', 27, '{"timezone-id":null}'), +(29613, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:01.06265+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:02.154291+00', 1091, '{"updated-tables":0,"total-tables":4}'), +(29614, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:02.15439+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.318015+00', 15163, '{"total-fields":39,"updated-fields":0}'), +(29615, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.32057+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.336387+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29616, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.336513+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.341065+00', 4, NULL), +(29617, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.607284+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.718733+00', 111, NULL), +(29618, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.607307+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.671915+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29619, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.671991+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.682609+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(29620, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.682689+00', TIMESTAMP WITH TIME ZONE '2023-02-07 13:49:17.718677+00', 35, '{"total-tables":4,"tables-classified":0}'), +(29621, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 14:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:00:04.63+00', 4460, NULL), +(29622, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 14:00:00.161+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:00:04.946+00', 4785, NULL), +(29623, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:00.611642+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.252822+00', 5641, NULL), +(29624, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:00.614962+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:01.646075+00', 1031, '{"timezone-id":"UTC"}'), +(29625, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:01.648442+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:02.251271+00', 602, '{"updated-tables":0,"total-tables":8}'), +(29626, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:02.251821+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:05.427252+00', 3175, '{"total-fields":71,"updated-fields":0}'), +(29627, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:05.42767+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:05.611364+00', 183, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29628, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:05.611681+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.252254+00', 640, NULL), +(29629, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.557101+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.991349+00', 434, NULL), +(29630, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.557122+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.858991+00', 301, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29631, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.859562+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.922848+00', 63, '{"fields-classified":0,"fields-failed":0}'), +(29632, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.923625+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:19:06.990991+00', 67, '{"total-tables":8,"tables-classified":0}'), +(29633, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:00.375982+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.013621+00', 11637, NULL), +(29634, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:00.379939+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:00.407463+00', 27, '{"timezone-id":null}'), +(29635, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:00.411352+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:01.013913+00', 602, '{"updated-tables":0,"total-tables":4}'), +(29636, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:01.014151+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:11.991128+00', 10976, '{"total-fields":39,"updated-fields":0}'), +(29637, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:11.991205+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.009854+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29638, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.009925+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.013576+00', 3, NULL), +(29639, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.125855+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.241227+00', 115, NULL), +(29640, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.126406+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.193378+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29641, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.193504+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.21463+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(29642, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.214708+00', TIMESTAMP WITH TIME ZONE '2023-02-07 14:49:12.241154+00', 26, '{"total-tables":4,"tables-classified":0}'), +(29643, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 15:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:00:02.102+00', 1955, NULL), +(29644, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 15:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:00:02.259+00', 2121, NULL), +(29645, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:00.247684+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.055927+00', 5808, NULL), +(29646, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:00.252411+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:00.540837+00', 288, '{"timezone-id":"UTC"}'), +(29647, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:00.543362+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:00.991718+00', 448, '{"updated-tables":0,"total-tables":8}'), +(29648, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:00.99181+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:05.437233+00', 4445, '{"total-fields":71,"updated-fields":0}'), +(29649, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:05.437315+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:05.669825+00', 232, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29650, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:05.670183+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.055899+00', 385, NULL), +(29651, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.112232+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.212577+00', 100, NULL), +(29652, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.11225+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.163108+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29653, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.163188+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.17424+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(29654, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.174519+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:19:06.21253+00', 38, '{"total-tables":8,"tables-classified":0}'), +(29655, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:00.919967+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.174321+00', 13254, NULL), +(29656, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:00.924838+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:00.949518+00', 24, '{"timezone-id":null}'), +(29657, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:00.955018+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:01.847909+00', 892, '{"updated-tables":0,"total-tables":4}'), +(29658, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:01.848483+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.151356+00', 12302, '{"total-fields":39,"updated-fields":0}'), +(29659, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.151503+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.169297+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29660, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.169651+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.174264+00', 4, NULL), +(29661, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.320058+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.454986+00', 134, NULL), +(29662, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.320184+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.416751+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29663, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.416832+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.430394+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(29664, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.430469+00', TIMESTAMP WITH TIME ZONE '2023-02-07 15:49:14.454928+00', 24, '{"total-tables":4,"tables-classified":0}'), +(29665, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 16:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:00:03.25+00', 3103, NULL), +(29666, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 16:00:00.115+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:00:03.397+00', 3282, NULL), +(29667, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:00.216084+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.725089+00', 4509, NULL), +(29668, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:00.225266+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:00.998466+00', 773, '{"timezone-id":"UTC"}'), +(29669, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:01.000918+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:01.398188+00', 397, '{"updated-tables":0,"total-tables":8}'), +(29670, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:01.398677+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.012505+00', 2613, '{"total-fields":71,"updated-fields":0}'), +(29671, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.01261+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.133273+00', 120, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29672, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.13362+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.725037+00', 591, NULL), +(29673, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.891936+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:05.038661+00', 146, NULL), +(29674, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.891955+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.989692+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29675, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:04.989764+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:05.010248+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(29676, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:05.010554+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:19:05.03861+00', 28, '{"total-tables":8,"tables-classified":0}'), +(29677, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:00.512211+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:19.983746+00', 19471, NULL), +(29678, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:00.515838+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:00.535934+00', 20, '{"timezone-id":null}'), +(29679, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:00.539049+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:01.074471+00', 535, '{"updated-tables":0,"total-tables":4}'), +(29680, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:01.074773+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:19.970348+00', 18895, '{"total-fields":39,"updated-fields":0}'), +(29681, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:19.972747+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:19.982081+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29682, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:19.982337+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:19.983678+00', 1, NULL), +(29683, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.214123+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.33129+00', 117, NULL), +(29684, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.214145+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.271648+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29685, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.271726+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.27831+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(29686, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.278388+00', TIMESTAMP WITH TIME ZONE '2023-02-07 16:49:20.331218+00', 52, '{"total-tables":4,"tables-classified":0}'), +(29687, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 17:00:00.399+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:00:02.388+00', 1989, NULL), +(29688, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 17:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:00:02.391+00', 2242, NULL), +(29689, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:00.238849+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.784371+00', 4545, NULL), +(29690, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:00.242136+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:00.499085+00', 256, '{"timezone-id":"UTC"}'), +(29691, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:00.500649+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:00.930136+00', 429, '{"updated-tables":0,"total-tables":8}'), +(29692, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:00.930225+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.150537+00', 3220, '{"total-fields":71,"updated-fields":0}'), +(29693, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.150886+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.258634+00', 107, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29694, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.258865+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.784035+00', 525, NULL), +(29695, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.908619+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:05.054157+00', 145, NULL), +(29696, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:04.908639+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:05.014123+00', 105, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29697, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:05.014282+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:05.031205+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(29698, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:05.031631+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:19:05.054085+00', 22, '{"total-tables":8,"tables-classified":0}'), +(29699, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:00.727582+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.675321+00', 12947, NULL), +(29700, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:00.732796+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:00.788212+00', 55, '{"timezone-id":null}'), +(29701, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:00.794467+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:01.527502+00', 733, '{"updated-tables":0,"total-tables":4}'), +(29702, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:01.527825+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.636163+00', 12108, '{"total-fields":39,"updated-fields":0}'), +(29703, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.636383+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.664031+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29704, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.664134+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.675041+00', 10, NULL), +(29705, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.822158+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.954514+00', 132, NULL), +(29706, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.822181+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.903669+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29707, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.903749+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.916902+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(29708, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.916979+00', TIMESTAMP WITH TIME ZONE '2023-02-07 17:49:13.954454+00', 37, '{"total-tables":4,"tables-classified":0}'), +(29709, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 18:00:00.123+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:00:03.556+00', 3433, NULL), +(29710, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 18:00:00.105+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:00:03.879+00', 3774, NULL), +(29711, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:00.154362+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.912883+00', 3758, NULL), +(29712, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:00.157439+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:00.710179+00', 552, '{"timezone-id":"UTC"}'), +(29713, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:00.711477+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:01.142478+00', 431, '{"updated-tables":0,"total-tables":8}'), +(29714, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:01.142815+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.64389+00', 2501, '{"total-fields":71,"updated-fields":0}'), +(29715, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.644783+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.768054+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29716, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.768126+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.912804+00', 144, NULL), +(29717, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.994274+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:04.088646+00', 94, NULL), +(29718, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:03.994294+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:04.041496+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29719, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:04.04158+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:04.056562+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(29720, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:04.057104+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:19:04.088579+00', 31, '{"total-tables":8,"tables-classified":0}'), +(29721, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:01.085284+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.190208+00', 18104, NULL), +(29722, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:01.089356+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:01.107793+00', 18, '{"timezone-id":null}'), +(29723, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:01.112798+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:01.839958+00', 727, '{"updated-tables":0,"total-tables":4}'), +(29724, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:01.840275+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.186771+00', 17346, '{"total-fields":39,"updated-fields":0}'), +(29725, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.187345+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.189573+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29726, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.189631+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.19018+00', 0, NULL), +(29727, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.232259+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.275151+00', 42, NULL), +(29728, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.232281+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.258038+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29729, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.258121+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.267475+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(29730, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.267543+00', TIMESTAMP WITH TIME ZONE '2023-02-07 18:49:19.275103+00', 7, '{"total-tables":4,"tables-classified":0}'), +(29731, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 19:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:00:02.393+00', 2264, NULL), +(29732, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 19:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:00:02.606+00', 2482, NULL), +(29733, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:00.184328+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.197648+00', 5013, NULL), +(29734, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:00.187616+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:00.706152+00', 518, '{"timezone-id":"UTC"}'), +(29735, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:00.708005+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:01.146137+00', 438, '{"updated-tables":0,"total-tables":8}'), +(29736, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:01.146232+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:03.93994+00', 2793, '{"total-fields":71,"updated-fields":0}'), +(29737, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:03.940179+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:04.111708+00', 171, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29738, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:04.112329+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.197624+00', 1085, NULL), +(29739, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.252339+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.352643+00', 100, NULL), +(29740, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.25236+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.312242+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29741, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.312309+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.333694+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(29742, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.334489+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:19:05.352598+00', 18, '{"total-tables":8,"tables-classified":0}'), +(29743, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:00.473921+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.717564+00', 21243, NULL), +(29744, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:00.477647+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:00.494242+00', 16, '{"timezone-id":null}'), +(29745, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:00.497147+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:00.989312+00', 492, '{"updated-tables":0,"total-tables":4}'), +(29746, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:00.989506+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.709447+00', 20719, '{"total-fields":39,"updated-fields":0}'), +(29747, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.710405+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.716534+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29748, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.716953+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.717536+00', 0, NULL), +(29749, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.765953+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.825861+00', 59, NULL), +(29750, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.76597+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.779875+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29751, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.779934+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.784127+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29752, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.784383+00', TIMESTAMP WITH TIME ZONE '2023-02-07 19:49:21.82582+00', 41, '{"total-tables":4,"tables-classified":0}'), +(29753, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 20:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:00:01.904+00', 1769, NULL), +(29754, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 20:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:00:02.076+00', 1949, NULL), +(29755, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:00.153334+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.84007+00', 3686, NULL), +(29756, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:00.156725+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:00.698559+00', 541, '{"timezone-id":"UTC"}'), +(29757, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:00.701022+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:01.063953+00', 362, '{"updated-tables":0,"total-tables":8}'), +(29758, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:01.06423+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.401655+00', 2337, '{"total-fields":71,"updated-fields":0}'), +(29759, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.4019+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.508226+00', 106, '{"total-fks":6,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29760, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.508447+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.840038+00', 331, NULL), +(29761, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.932279+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:04.867555+00', 935, NULL), +(29762, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:03.932298+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:04.790231+00', 857, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29763, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:04.79039+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:04.803246+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(29764, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:04.803534+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:19:04.867512+00', 63, '{"total-tables":8,"tables-classified":0}'), +(29765, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:00.46801+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:18.84952+00', 18381, NULL), +(29766, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:00.471766+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:00.490479+00', 18, '{"timezone-id":null}'), +(29767, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:00.493606+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:00.980381+00', 486, '{"updated-tables":0,"total-tables":4}'), +(29768, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:00.980636+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:18.813071+00', 17832, '{"total-fields":39,"updated-fields":0}'), +(29769, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:18.816824+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:18.846979+00', 30, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29770, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:18.847562+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:18.84948+00', 1, NULL), +(29771, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.053525+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.106886+00', 53, NULL), +(29772, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.053554+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.087691+00', 34, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29773, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.087743+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.092041+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29774, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.092608+00', TIMESTAMP WITH TIME ZONE '2023-02-07 20:49:19.106845+00', 14, '{"total-tables":4,"tables-classified":0}'), +(29775, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:00.166+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:01.91+00', 1744, NULL), +(29776, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:01.91+00', 1766, NULL), +(29777, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:02.315449+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:10.989597+00', 8674, NULL), +(29778, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:02.318716+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:04.114921+00', 1796, '{"deleted":0}'), +(29779, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:04.117785+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:00:10.989507+00', 6871, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(29780, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:00.266788+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.501859+00', 4235, NULL), +(29781, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:00.270169+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:00.51743+00', 247, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29782, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:00.519074+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:00.910863+00', 391, '{"updated-tables":0,"total-tables":8}'), +(29783, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:00.911072+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:03.9146+00', 3003, '{"total-fields":71,"updated-fields":0}'), +(29784, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:03.914683+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:03.983282+00', 68, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29785, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:03.983358+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.501816+00', 518, NULL), +(29786, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.68307+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.988574+00', 305, NULL), +(29787, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.683264+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.89136+00', 208, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29788, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.891679+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.92993+00', 38, '{"fields-classified":0,"fields-failed":0}'), +(29789, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.930533+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:19:04.988517+00', 57, '{"total-tables":8,"tables-classified":0}'), +(29790, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:00.803681+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.798156+00', 12994, NULL), +(29791, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:00.807651+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:00.830951+00', 23, '{"timezone-id":null}'), +(29792, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:00.843092+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:01.300271+00', 457, '{"updated-tables":0,"total-tables":4}'), +(29793, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:01.300537+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.78074+00', 12480, '{"total-fields":39,"updated-fields":0}'), +(29794, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.780858+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.794153+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29795, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.794296+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.798073+00', 3, NULL), +(29796, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.920293+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:14.023108+00', 102, NULL), +(29797, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.920314+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.988676+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29798, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.988748+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.998646+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(29799, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:13.99872+00', TIMESTAMP WITH TIME ZONE '2023-02-07 21:49:14.023048+00', 24, '{"total-tables":4,"tables-classified":0}'), +(29800, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 22:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:00:02.479+00', 2359, NULL), +(29801, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 22:00:00.113+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:00:02.66+00', 2547, NULL), +(29802, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:00.207327+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.249948+00', 5042, NULL), +(29803, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:00.212013+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:00.857545+00', 645, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29804, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:00.860308+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:01.222464+00', 362, '{"updated-tables":0,"total-tables":8}'), +(29805, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:01.222883+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:03.759601+00', 2536, '{"total-fields":71,"updated-fields":0}'), +(29806, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:03.760003+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:03.891481+00', 131, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29807, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:03.891851+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.249739+00', 1357, NULL), +(29808, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.374772+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.548935+00', 174, NULL), +(29809, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.374794+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.496645+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29810, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.496716+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.507257+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(29811, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.507526+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:19:05.548832+00', 41, '{"total-tables":8,"tables-classified":0}'), +(29812, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:00.82025+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:12.485969+00', 11665, NULL), +(29813, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:00.823764+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:00.841691+00', 17, '{"timezone-id":null}'), +(29814, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:00.849949+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:01.33784+00', 487, '{"updated-tables":0,"total-tables":4}'), +(29815, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:01.338207+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:12.46609+00', 11127, '{"total-fields":39,"updated-fields":0}'), +(29816, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:12.467065+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:12.481458+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29817, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:12.481593+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:12.485927+00', 4, NULL), +(29818, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.107529+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.137347+00', 29, NULL), +(29819, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.107549+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.124659+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29820, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.12473+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.12718+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(29821, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.12725+00', TIMESTAMP WITH TIME ZONE '2023-02-07 22:49:18.137282+00', 10, '{"total-tables":4,"tables-classified":0}'), +(29822, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 23:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:00:01.956+00', 1828, NULL), +(29823, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-07 23:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:00:02.113+00', 1996, NULL), +(29824, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:00.197934+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.736149+00', 4538, NULL), +(29825, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:00.203104+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:00.705543+00', 502, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29826, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:00.707215+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:01.037847+00', 330, '{"updated-tables":0,"total-tables":8}'), +(29827, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:01.038084+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.284905+00', 3246, '{"total-fields":71,"updated-fields":0}'), +(29828, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.285249+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.386697+00', 101, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29829, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.387172+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.736116+00', 348, NULL), +(29830, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.796276+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.907588+00', 111, NULL), +(29831, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.796291+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.845876+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29832, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.845949+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.864632+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(29833, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.868891+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:19:04.907532+00', 38, '{"total-tables":8,"tables-classified":0}'), +(29834, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:00.888059+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.114201+00', 12226, NULL), +(29835, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:00.89282+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:00.913723+00', 20, '{"timezone-id":null}'), +(29836, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:00.918275+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:01.441822+00', 523, '{"updated-tables":0,"total-tables":4}'), +(29837, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:01.442006+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.100772+00', 11658, '{"total-fields":39,"updated-fields":0}'), +(29838, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.100918+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.110815+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29839, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.110879+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.114155+00', 3, NULL), +(29840, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.255119+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.362282+00', 107, NULL), +(29841, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.255141+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.339346+00', 84, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29842, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.339417+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.349148+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(29843, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.349219+00', TIMESTAMP WITH TIME ZONE '2023-02-07 23:49:13.362241+00', 13, '{"total-tables":4,"tables-classified":0}'), +(29844, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 00:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:00:04.708+00', 4559, NULL), +(29845, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 00:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:00:04.951+00', 4805, NULL), +(29846, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:00.264272+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:05.507989+00', 5243, NULL), +(29847, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:00.267275+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:01.066646+00', 799, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29848, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:01.07006+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:01.576299+00', 506, '{"updated-tables":0,"total-tables":8}'), +(29849, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:01.57668+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:04.47333+00', 2896, '{"total-fields":71,"updated-fields":0}'), +(29850, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:04.473681+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:04.698394+00', 224, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29851, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:04.69976+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:05.507942+00', 808, NULL), +(29852, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:05.693141+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:06.062002+00', 368, NULL), +(29853, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:05.693397+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:05.914036+00', 220, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29854, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:05.914391+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:06.000279+00', 85, '{"fields-classified":0,"fields-failed":0}'), +(29855, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:06.00074+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:19:06.061719+00', 60, '{"total-tables":8,"tables-classified":0}'), +(29856, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:00.820463+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.602294+00', 15781, NULL), +(29857, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:00.824399+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:00.853893+00', 29, '{"timezone-id":null}'), +(29858, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:00.858963+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:01.465217+00', 606, '{"updated-tables":0,"total-tables":4}'), +(29859, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:01.465833+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.595933+00', 15130, '{"total-fields":39,"updated-fields":0}'), +(29860, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.596017+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.600722+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29861, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.600779+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.602269+00', 1, NULL), +(29862, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.722393+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.8465+00', 124, NULL), +(29863, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.722707+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.830569+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29864, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.830744+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.835301+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29865, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.835413+00', TIMESTAMP WITH TIME ZONE '2023-02-08 00:49:16.846448+00', 11, '{"total-tables":4,"tables-classified":0}'), +(29866, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 01:00:00.139+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:00:01.079+00', 940, NULL), +(29867, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 01:00:00.384+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:00:01.077+00', 693, NULL), +(29868, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:00.180978+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.114587+00', 4933, NULL), +(29869, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:00.184483+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:00.766954+00', 582, '{"timezone-id":"UTC"}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29870, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:00.768754+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:01.227942+00', 459, '{"updated-tables":0,"total-tables":8}'), +(29871, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:01.228048+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:04.665798+00', 3437, '{"total-fields":71,"updated-fields":0}'), +(29872, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:04.666107+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:04.805194+00', 139, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29873, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:04.805279+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.114557+00', 309, NULL), +(29874, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.168522+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.25678+00', 88, NULL), +(29875, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.16854+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.227906+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29876, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.227966+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.239905+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(29877, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.240343+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:19:05.256738+00', 16, '{"total-tables":8,"tables-classified":0}'), +(29878, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:00.739863+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.600568+00', 13860, NULL), +(29879, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:00.74446+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:00.765333+00', 20, '{"timezone-id":null}'), +(29880, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:00.7692+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:01.57384+00', 804, '{"updated-tables":0,"total-tables":4}'), +(29881, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:01.574122+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.536811+00', 12962, '{"total-fields":39,"updated-fields":0}'), +(29882, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.538585+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.58167+00', 43, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29883, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.582364+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.59374+00', 11, NULL), +(29884, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.953683+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:15.084336+00', 130, NULL), +(29885, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:14.953704+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:15.027497+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29886, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:15.027645+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:15.038269+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(29887, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:15.038344+00', TIMESTAMP WITH TIME ZONE '2023-02-08 01:49:15.084031+00', 45, '{"total-tables":4,"tables-classified":0}'), +(29888, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:05.135+00', 4935, NULL), +(29889, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:05.135+00', 4964, NULL), +(29890, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:05.579703+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:16.808603+00', 11228, NULL), +(29891, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:05.584548+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:06.585139+00', 1000, '{"deleted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29892, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:06.589043+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:00:16.808543+00', 10219, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(29893, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:00.664891+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.175068+00', 2510, NULL), +(29894, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:00.668843+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:01.490222+00', 821, '{"timezone-id":"UTC"}'), +(29895, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:01.491357+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:01.834941+00', 343, '{"updated-tables":0,"total-tables":8}'), +(29896, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:01.835056+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:02.940698+00', 1105, '{"total-fields":71,"updated-fields":0}'), +(29897, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:02.940783+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:02.992228+00', 51, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29898, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:02.992283+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.175036+00', 182, NULL), +(29899, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.284495+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.39671+00', 112, NULL), +(29900, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.284514+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.347937+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29901, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.348016+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.369421+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(29902, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.369759+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:19:03.396612+00', 26, '{"total-tables":8,"tables-classified":0}'), +(29903, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:00.266409+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.03397+00', 12767, NULL), +(29904, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:00.268544+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:00.275342+00', 6, '{"timezone-id":null}'), +(29905, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:00.277439+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:00.527689+00', 250, '{"updated-tables":0,"total-tables":4}'), +(29906, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:00.527952+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.02043+00', 12492, '{"total-fields":39,"updated-fields":0}'), +(29907, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.020487+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.029088+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29908, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.02914+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.033926+00', 4, NULL), +(29909, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.135988+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.205994+00', 70, NULL), +(29910, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.136006+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.179764+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29911, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.179836+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.187622+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(29912, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.187692+00', TIMESTAMP WITH TIME ZONE '2023-02-08 02:49:13.205947+00', 18, '{"total-tables":4,"tables-classified":0}'), +(29913, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 03:00:00.219+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:00:02.592+00', 2373, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29914, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 03:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:00:02.797+00', 2582, NULL), +(29915, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:00.186354+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.301453+00', 5115, NULL), +(29916, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:00.190623+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:00.993003+00', 802, '{"timezone-id":"UTC"}'), +(29917, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:00.994702+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:01.408792+00', 414, '{"updated-tables":0,"total-tables":8}'), +(29918, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:01.409213+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:04.006569+00', 2597, '{"total-fields":71,"updated-fields":0}'), +(29919, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:04.007088+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:04.133191+00', 126, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29920, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:04.133505+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.301421+00', 1167, NULL), +(29921, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.379844+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.496523+00', 116, NULL), +(29922, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.379862+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.445792+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29923, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.44586+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.463636+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(29924, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.463997+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:19:05.496478+00', 32, '{"total-tables":8,"tables-classified":0}'), +(29925, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:00.566375+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.514776+00', 18948, NULL), +(29926, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:00.570481+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:00.590945+00', 20, '{"timezone-id":null}'), +(29927, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:00.595478+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:01.293994+00', 698, '{"updated-tables":0,"total-tables":4}'), +(29928, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:01.294235+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.511239+00', 18217, '{"total-fields":39,"updated-fields":0}'), +(29929, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.511342+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.514347+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29930, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.514412+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.514759+00', 0, NULL), +(29931, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.546463+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.569763+00', 23, NULL), +(29932, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.54648+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.557633+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29933, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.557881+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.561062+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(29934, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.561146+00', TIMESTAMP WITH TIME ZONE '2023-02-08 03:49:19.569716+00', 8, '{"total-tables":4,"tables-classified":0}'), +(29935, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 04:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:00:02.925+00', 2788, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29936, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 04:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:00:03.103+00', 2967, NULL), +(29937, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:00.525645+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.267765+00', 5742, NULL), +(29938, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:00.531042+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:01.224955+00', 693, '{"timezone-id":"UTC"}'), +(29939, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:01.226792+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:01.62194+00', 395, '{"updated-tables":0,"total-tables":8}'), +(29940, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:01.6224+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:05.644714+00', 4022, '{"total-fields":71,"updated-fields":0}'), +(29941, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:05.644807+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:05.80612+00', 161, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29942, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:05.806714+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.267711+00', 460, NULL), +(29943, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.440588+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.65732+00', 216, NULL), +(29944, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.440606+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.579815+00', 139, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29945, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.580111+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.613736+00', 33, '{"fields-classified":0,"fields-failed":0}'), +(29946, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.614012+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:19:06.657269+00', 43, '{"total-tables":8,"tables-classified":0}'), +(29947, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:00.732573+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.016051+00', 13283, NULL), +(29948, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:00.73568+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:00.755808+00', 20, '{"timezone-id":null}'), +(29949, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:00.761052+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:01.314741+00', 553, '{"updated-tables":0,"total-tables":4}'), +(29950, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:01.314854+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:13.986913+00', 12672, '{"total-fields":39,"updated-fields":0}'), +(29951, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:13.987016+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.011812+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29952, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.011904+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.016008+00', 4, NULL), +(29953, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.179046+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.260749+00', 81, NULL), +(29954, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.179067+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.2458+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29955, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.245878+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.250042+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(29956, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.250108+00', TIMESTAMP WITH TIME ZONE '2023-02-08 04:49:14.260696+00', 10, '{"total-tables":4,"tables-classified":0}'), +(29957, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 05:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:00:03.637+00', 3512, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29958, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 05:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:00:03.503+00', 3367, NULL), +(29959, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:00.257809+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.105637+00', 4847, NULL), +(29960, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:00.262668+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:00.905899+00', 643, '{"timezone-id":"UTC"}'), +(29961, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:00.907765+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:01.441952+00', 534, '{"updated-tables":0,"total-tables":8}'), +(29962, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:01.442376+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:04.357403+00', 2915, '{"total-fields":71,"updated-fields":0}'), +(29963, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:04.357499+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:04.504662+00', 147, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29964, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:04.504903+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.105568+00', 600, NULL), +(29965, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.296057+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.44836+00', 152, NULL), +(29966, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.296079+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.416554+00', 120, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29967, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.416623+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.431495+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(29968, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.431767+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:19:05.448309+00', 16, '{"total-tables":8,"tables-classified":0}'), +(29969, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:00.920028+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.871752+00', 15951, NULL), +(29970, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:00.924956+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:00.98947+00', 64, '{"timezone-id":null}'), +(29971, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:01.000158+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:01.47701+00', 476, '{"updated-tables":0,"total-tables":4}'), +(29972, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:01.477298+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.850402+00', 15373, '{"total-fields":39,"updated-fields":0}'), +(29973, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.853447+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.867767+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29974, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.868175+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.871523+00', 3, NULL), +(29975, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.965053+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:17.07209+00', 107, NULL), +(29976, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:16.965071+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:17.031312+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29977, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:17.031378+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:17.043677+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(29978, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:17.043776+00', TIMESTAMP WITH TIME ZONE '2023-02-08 05:49:17.072045+00', 28, '{"total-tables":4,"tables-classified":0}'), +(29979, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 06:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:00:02.075+00', 1941, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(29980, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 06:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:00:02.326+00', 2198, NULL), +(29981, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:00.173511+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:04.948561+00', 4775, NULL), +(29982, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:00.177136+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:00.639058+00', 461, '{"timezone-id":"UTC"}'), +(29983, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:00.640842+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:00.974475+00', 333, '{"updated-tables":0,"total-tables":8}'), +(29984, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:00.974758+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:04.505954+00', 3531, '{"total-fields":71,"updated-fields":0}'), +(29985, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:04.506241+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:04.623262+00', 117, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(29986, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:04.623349+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:04.948531+00', 325, NULL), +(29987, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.020242+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.127158+00', 106, NULL), +(29988, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.02026+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.096933+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29989, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.096994+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.109279+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(29990, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.109722+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:19:05.127115+00', 17, '{"total-tables":8,"tables-classified":0}'), +(29991, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:00.733931+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:13.951344+00', 13217, NULL), +(29992, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:00.739478+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:00.762309+00', 22, '{"timezone-id":null}'), +(29993, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:00.766986+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:01.572545+00', 805, '{"updated-tables":0,"total-tables":4}'), +(29994, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:01.572879+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:13.935363+00', 12362, '{"total-fields":39,"updated-fields":0}'), +(29995, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:13.935448+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:13.94607+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(29996, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:13.946126+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:13.951276+00', 5, NULL), +(29997, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.090775+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.175525+00', 84, NULL), +(29998, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.0908+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.133363+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(29999, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.133651+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.142398+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(30000, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.142549+00', TIMESTAMP WITH TIME ZONE '2023-02-08 06:49:14.175396+00', 32, '{"total-tables":4,"tables-classified":0}'), +(30001, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 07:00:00.676+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:00:03.149+00', 2473, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30002, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 07:00:00.668+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:00:03.3+00', 2632, NULL), +(30003, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:00.287632+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:04.540759+00', 4253, NULL), +(30004, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:00.291227+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:00.889504+00', 598, '{"timezone-id":"UTC"}'), +(30005, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:00.892529+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:01.308585+00', 416, '{"updated-tables":0,"total-tables":8}'), +(30006, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:01.308845+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:03.816919+00', 2508, '{"total-fields":71,"updated-fields":0}'), +(30007, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:03.817124+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:03.939553+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30008, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:03.940045+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:04.540705+00', 600, NULL), +(30009, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:04.735321+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:05.067359+00', 332, NULL), +(30010, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:04.735346+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:04.976214+00', 240, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30011, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:04.976483+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:05.019886+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(30012, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:05.020315+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:19:05.067089+00', 46, '{"total-tables":8,"tables-classified":0}'), +(30013, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:00.985513+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.487645+00', 18502, NULL), +(30014, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:00.98973+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:01.012652+00', 22, '{"timezone-id":null}'), +(30015, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:01.018808+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:01.660589+00', 641, '{"updated-tables":0,"total-tables":4}'), +(30016, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:01.660979+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.484761+00', 17823, '{"total-fields":39,"updated-fields":0}'), +(30017, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.484832+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.486863+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30018, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.487138+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.487626+00', 0, NULL), +(30019, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.510383+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.549478+00', 39, NULL), +(30020, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.510397+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.533018+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30021, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.533085+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.538478+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(30022, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.538546+00', TIMESTAMP WITH TIME ZONE '2023-02-08 07:49:19.549399+00', 10, '{"total-tables":4,"tables-classified":0}'), +(30023, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 08:00:00.912+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:00:04.111+00', 3199, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30024, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 08:00:00.901+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:00:04.237+00', 3336, NULL), +(30025, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:00.078887+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.784651+00', 3705, NULL), +(30026, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:00.07896+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:00.2698+00', 190, '{"timezone-id":"UTC"}'), +(30027, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:00.271014+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:00.449286+00', 178, '{"updated-tables":0,"total-tables":8}'), +(30028, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:00.44973+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.627221+00', 3177, '{"total-fields":71,"updated-fields":0}'), +(30029, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.62734+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.660651+00', 33, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30030, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.660788+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.784576+00', 123, NULL), +(30031, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.824791+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.878831+00', 54, NULL), +(30032, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.824808+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.856476+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30033, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.856636+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.864679+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(30034, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.864806+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:19:03.878717+00', 13, '{"total-tables":8,"tables-classified":0}'), +(30035, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:00.387754+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.472363+00', 11084, NULL), +(30036, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:00.399745+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:00.415326+00', 15, '{"timezone-id":null}'), +(30037, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:00.419139+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:00.865486+00', 446, '{"updated-tables":0,"total-tables":4}'), +(30038, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:00.865802+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.456896+00', 10591, '{"total-fields":39,"updated-fields":0}'), +(30039, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.457035+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.46819+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30040, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.468254+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.472271+00', 4, NULL), +(30041, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.570708+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.652735+00', 82, NULL), +(30042, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.570726+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.621528+00', 50, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30043, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.621633+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.63282+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(30044, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.632941+00', TIMESTAMP WITH TIME ZONE '2023-02-08 08:49:11.652683+00', 19, '{"total-tables":4,"tables-classified":0}'), +(30045, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 09:00:00.047+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:00:00.123+00', 76, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30046, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 09:00:00.216+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:00:02.398+00', 2182, NULL), +(30047, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:00.063746+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:02.997687+00', 2933, NULL), +(30048, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:00.063789+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:00.21466+00', 150, '{"timezone-id":"UTC"}'), +(30049, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:00.215501+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:00.312922+00', 97, '{"updated-tables":0,"total-tables":8}'), +(30050, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:00.313+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:02.48226+00', 2169, '{"total-fields":71,"updated-fields":0}'), +(30051, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:02.482493+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:02.567342+00', 84, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30052, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:02.567733+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:02.997641+00', 429, NULL), +(30053, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.16168+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.459517+00', 297, NULL), +(30054, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.1617+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.374288+00', 212, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30055, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.374392+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.410304+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(30056, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.410567+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:19:03.459234+00', 48, '{"total-tables":8,"tables-classified":0}'), +(30057, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:00.425917+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.718991+00', 9293, NULL), +(30058, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:00.440473+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:00.4774+00', 36, '{"timezone-id":null}'), +(30059, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:00.480734+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:00.931328+00', 450, '{"updated-tables":0,"total-tables":4}'), +(30060, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:00.931635+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.702377+00', 8770, '{"total-fields":39,"updated-fields":0}'), +(30061, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.702449+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.714022+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30062, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.714086+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.718947+00', 4, NULL), +(30063, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.826827+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.923631+00', 96, NULL), +(30064, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.826849+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.894194+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30065, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.894291+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.904923+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30066, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.905019+00', TIMESTAMP WITH TIME ZONE '2023-02-08 09:49:09.923523+00', 18, '{"total-tables":4,"tables-classified":0}'), +(30067, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 10:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:00:02.924+00', 2807, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30068, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 10:00:00.089+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:00:02.927+00', 2838, NULL), +(30069, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:00.177243+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.220551+00', 3043, NULL), +(30070, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:00.180264+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:00.698222+00', 517, '{"timezone-id":"UTC"}'), +(30071, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:00.70001+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:01.051577+00', 351, '{"updated-tables":0,"total-tables":8}'), +(30072, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:01.051664+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.057073+00', 2005, '{"total-fields":71,"updated-fields":0}'), +(30073, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.057168+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.120984+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30074, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.121047+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.220509+00', 99, NULL), +(30075, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.288769+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.385503+00', 96, NULL), +(30076, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.288799+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.345876+00', 57, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30077, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.346022+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.36325+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(30078, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.363739+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:19:03.38541+00', 21, '{"total-tables":8,"tables-classified":0}'), +(30079, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:01.043408+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.319032+00', 14275, NULL), +(30080, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:01.051949+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:01.079191+00', 27, '{"timezone-id":null}'), +(30081, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:01.085977+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:02.163092+00', 1077, '{"updated-tables":0,"total-tables":4}'), +(30082, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:02.16319+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.300189+00', 13136, '{"total-fields":39,"updated-fields":0}'), +(30083, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.301952+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.314667+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30084, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.31479+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.318952+00', 4, NULL), +(30085, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.585956+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.84181+00', 255, NULL), +(30086, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.585977+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.778158+00', 192, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30087, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.778649+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.814591+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(30088, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.814884+00', TIMESTAMP WITH TIME ZONE '2023-02-08 10:49:15.841762+00', 26, '{"total-tables":4,"tables-classified":0}'), +(30089, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 11:00:00.109+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:00:00.769+00', 660, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30090, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 11:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:00:00.769+00', 653, NULL), +(30091, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:00.567055+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.388065+00', 4821, NULL), +(30092, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:00.570596+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:01.511777+00', 941, '{"timezone-id":"UTC"}'), +(30093, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:01.515267+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:02.21525+00', 699, '{"updated-tables":0,"total-tables":8}'), +(30094, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:02.2155+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:04.688925+00', 2473, '{"total-fields":71,"updated-fields":0}'), +(30095, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:04.689014+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:04.817616+00', 128, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30096, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:04.817897+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.388018+00', 570, NULL), +(30097, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.604454+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.917614+00', 313, NULL), +(30098, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.604478+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.829407+00', 224, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30099, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.83007+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.876472+00', 46, '{"fields-classified":0,"fields-failed":0}'), +(30100, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.877179+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:19:05.917494+00', 40, '{"total-tables":8,"tables-classified":0}'), +(30101, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:01.009092+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.655355+00', 13646, NULL), +(30102, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:01.014776+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:01.033231+00', 18, '{"timezone-id":null}'), +(30103, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:01.038438+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:01.749346+00', 710, '{"updated-tables":0,"total-tables":4}'), +(30104, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:01.749457+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.634936+00', 12885, '{"total-fields":39,"updated-fields":0}'), +(30105, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.635044+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.649329+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30106, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.649405+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.655304+00', 5, NULL), +(30107, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.81307+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.906357+00', 93, NULL), +(30108, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.813091+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.878032+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30109, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.878099+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.888783+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30110, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.888858+00', TIMESTAMP WITH TIME ZONE '2023-02-08 11:49:14.906302+00', 17, '{"total-tables":4,"tables-classified":0}'), +(30111, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 12:00:00.197+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:00:02.731+00', 2534, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30112, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 12:00:00.185+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:00:02.94+00', 2755, NULL), +(30113, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:00.183208+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.733466+00', 4550, NULL), +(30114, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:00.187035+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:00.785453+00', 598, '{"timezone-id":"UTC"}'), +(30115, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:00.787101+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:01.202494+00', 415, '{"updated-tables":0,"total-tables":8}'), +(30116, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:01.202857+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:03.67254+00', 2469, '{"total-fields":71,"updated-fields":0}'), +(30117, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:03.672872+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:03.816896+00', 144, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30118, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:03.817227+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.733424+00', 916, NULL), +(30119, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.822298+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.977792+00', 155, NULL), +(30120, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.82232+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.915472+00', 93, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30121, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.915575+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.933896+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(30122, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.934267+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:19:04.977739+00', 43, '{"total-tables":8,"tables-classified":0}'), +(30123, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:01.170274+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.482564+00', 16312, NULL), +(30124, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:01.179038+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:01.199617+00', 20, '{"timezone-id":null}'), +(30125, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:01.203363+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:01.656634+00', 453, '{"updated-tables":0,"total-tables":4}'), +(30126, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:01.656929+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.460654+00', 15803, '{"total-fields":39,"updated-fields":0}'), +(30127, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.463694+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.477391+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30128, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.477892+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.482323+00', 4, NULL), +(30129, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.598684+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.635434+00', 36, NULL), +(30130, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.598709+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.619559+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30131, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.619624+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.6238+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(30132, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.623889+00', TIMESTAMP WITH TIME ZONE '2023-02-08 12:49:17.635362+00', 11, '{"total-tables":4,"tables-classified":0}'), +(30133, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 13:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:00:02.416+00', 2305, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30134, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 13:00:00.11+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:00:02.55+00', 2440, NULL), +(30135, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:00.315889+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.603406+00', 5287, NULL), +(30136, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:00.323281+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:00.812877+00', 489, '{"timezone-id":"UTC"}'), +(30137, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:00.814633+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:01.365759+00', 551, '{"updated-tables":0,"total-tables":8}'), +(30138, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:01.366178+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.054031+00', 3687, '{"total-fields":71,"updated-fields":0}'), +(30139, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.054124+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.164854+00', 110, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30140, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.164943+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.60336+00', 438, NULL), +(30141, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.789165+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:06.150616+00', 361, NULL), +(30142, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:05.789184+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:06.045713+00', 256, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30143, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:06.045812+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:06.090806+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(30144, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:06.091129+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:19:06.150558+00', 59, '{"total-tables":8,"tables-classified":0}'), +(30145, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:00.890586+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.801599+00', 13911, NULL), +(30146, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:00.895649+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:00.924088+00', 28, '{"timezone-id":null}'), +(30147, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:00.930563+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:01.540293+00', 609, '{"updated-tables":0,"total-tables":4}'), +(30148, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:01.540722+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.786863+00', 13246, '{"total-fields":39,"updated-fields":0}'), +(30149, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.786946+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.798141+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30150, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.798211+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.801564+00', 3, NULL), +(30151, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.938977+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:15.02732+00', 88, NULL), +(30152, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.938996+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.987052+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30153, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.987209+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.998071+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30154, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:14.998229+00', TIMESTAMP WITH TIME ZONE '2023-02-08 13:49:15.027273+00', 29, '{"total-tables":4,"tables-classified":0}'), +(30155, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 14:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:00:03.739+00', 3614, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30156, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 14:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:00:03.588+00', 3442, NULL), +(30157, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:00.203793+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:04.958042+00', 4754, NULL), +(30158, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:00.207455+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:00.953354+00', 745, '{"timezone-id":"UTC"}'), +(30159, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:00.95548+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:01.418947+00', 463, '{"updated-tables":0,"total-tables":8}'), +(30160, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:01.419829+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:04.194016+00', 2774, '{"total-fields":71,"updated-fields":0}'), +(30161, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:04.19411+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:04.376725+00', 182, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30162, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:04.377049+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:04.957711+00', 580, NULL), +(30163, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.04331+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.161776+00', 118, NULL), +(30164, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.043332+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.112232+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30165, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.112332+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.12814+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(30166, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.128494+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:19:05.161692+00', 33, '{"total-tables":8,"tables-classified":0}'), +(30167, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:00.809773+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.314081+00', 16504, NULL), +(30168, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:00.813509+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:00.83717+00', 23, '{"timezone-id":null}'), +(30169, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:00.842628+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:01.456283+00', 613, '{"updated-tables":0,"total-tables":4}'), +(30170, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:01.456527+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.281843+00', 15825, '{"total-fields":39,"updated-fields":0}'), +(30171, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.281905+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.311677+00', 29, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30172, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.311735+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.31404+00', 2, NULL), +(30173, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.399587+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.468933+00', 69, NULL), +(30174, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.39961+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.428753+00', 29, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30175, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.428828+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.441613+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30176, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.441673+00', TIMESTAMP WITH TIME ZONE '2023-02-08 14:49:17.468895+00', 27, '{"total-tables":4,"tables-classified":0}'), +(30177, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 15:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:00:02.32+00', 2156, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30178, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 15:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:00:02.467+00', 2320, NULL), +(30179, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:00.169282+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:04.991834+00', 4822, NULL), +(30180, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:00.172669+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:00.519369+00', 346, '{"timezone-id":"UTC"}'), +(30181, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:00.520673+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:00.858123+00', 337, '{"updated-tables":0,"total-tables":8}'), +(30182, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:00.858206+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:04.715312+00', 3857, '{"total-fields":71,"updated-fields":0}'), +(30183, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:04.715389+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:04.815981+00', 100, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30184, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:04.816245+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:04.991799+00', 175, NULL), +(30185, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.046416+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.213026+00', 166, NULL), +(30186, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.046435+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.131545+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30187, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.13161+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.182704+00', 51, '{"fields-classified":0,"fields-failed":0}'), +(30188, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.18296+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:19:05.212981+00', 30, '{"total-tables":8,"tables-classified":0}'), +(30189, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:00.697806+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.60249+00', 14904, NULL), +(30190, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:00.702587+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:00.736891+00', 34, '{"timezone-id":null}'), +(30191, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:00.741437+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:01.412273+00', 670, '{"updated-tables":0,"total-tables":4}'), +(30192, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:01.412547+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.500578+00', 14088, '{"total-fields":39,"updated-fields":0}'), +(30193, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.502547+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.572134+00', 69, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30194, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.572256+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.602233+00', 29, NULL), +(30195, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.830886+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:16.079445+00', 248, NULL), +(30196, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:15.830905+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:16.018973+00', 188, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30197, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:16.01907+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:16.052066+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(30198, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:16.052169+00', TIMESTAMP WITH TIME ZONE '2023-02-08 15:49:16.079283+00', 27, '{"total-tables":4,"tables-classified":0}'), +(30199, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 16:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:00:02.642+00', 2518, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30200, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 16:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:00:02.776+00', 2657, NULL), +(30201, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:00.227225+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:04.914709+00', 4687, NULL), +(30202, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:00.231314+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:00.739453+00', 508, '{"timezone-id":"UTC"}'), +(30203, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:00.741347+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:01.146314+00', 404, '{"updated-tables":0,"total-tables":8}'), +(30204, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:01.146582+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:03.685453+00', 2538, '{"total-fields":71,"updated-fields":0}'), +(30205, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:03.685745+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:03.819009+00', 133, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30206, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:03.819261+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:04.914687+00', 1095, NULL), +(30207, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:04.968246+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:05.054251+00', 86, NULL), +(30208, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:04.968264+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:05.014938+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30209, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:05.014994+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:05.026917+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(30210, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:05.027257+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:19:05.054197+00', 26, '{"total-tables":8,"tables-classified":0}'), +(30211, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:00.965962+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.30721+00', 14341, NULL), +(30212, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:00.981619+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:01.019771+00', 38, '{"timezone-id":null}'), +(30213, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:01.026497+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:01.653006+00', 626, '{"updated-tables":0,"total-tables":4}'), +(30214, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:01.653124+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.286934+00', 13633, '{"total-fields":39,"updated-fields":0}'), +(30215, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.287027+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.301011+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30216, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.301094+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.307154+00', 6, NULL), +(30217, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.433631+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.537441+00', 103, NULL), +(30218, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.433652+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.504326+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30219, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.504394+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.51837+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(30220, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.518443+00', TIMESTAMP WITH TIME ZONE '2023-02-08 16:49:15.537387+00', 18, '{"total-tables":4,"tables-classified":0}'), +(30221, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 17:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:00:04.295+00', 4159, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30222, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 17:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:00:04.161+00', 4015, NULL), +(30223, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:00.282194+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.838822+00', 4556, NULL), +(30224, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:00.285191+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:00.932063+00', 646, '{"timezone-id":"UTC"}'), +(30225, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:00.933541+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:01.347866+00', 414, '{"updated-tables":0,"total-tables":8}'), +(30226, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:01.348166+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.009249+00', 2661, '{"total-fields":71,"updated-fields":0}'), +(30227, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.009654+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.177928+00', 168, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30228, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.178435+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.838011+00', 659, NULL), +(30229, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.995053+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:05.235345+00', 240, NULL), +(30230, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:04.995074+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:05.148984+00', 153, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30231, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:05.149067+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:05.178452+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(30232, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:05.180164+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:19:05.235271+00', 55, '{"total-tables":8,"tables-classified":0}'), +(30233, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:00.883796+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.250724+00', 15366, NULL), +(30234, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:00.887509+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:00.907832+00', 20, '{"timezone-id":null}'), +(30235, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:00.912547+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:01.454638+00', 542, '{"updated-tables":0,"total-tables":4}'), +(30236, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:01.455029+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.229366+00', 14774, '{"total-fields":39,"updated-fields":0}'), +(30237, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.232745+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.245853+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30238, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.24626+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.250483+00', 4, NULL), +(30239, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.378353+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.422985+00', 44, NULL), +(30240, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.378371+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.403871+00', 25, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30241, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.403959+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.411252+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(30242, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.411654+00', TIMESTAMP WITH TIME ZONE '2023-02-08 17:49:16.422926+00', 11, '{"total-tables":4,"tables-classified":0}'), +(30243, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 18:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:00:02.313+00', 2186, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30244, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 18:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:00:02.461+00', 2341, NULL), +(30245, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:00.179142+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:04.980675+00', 4801, NULL), +(30246, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:00.185618+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:00.751966+00', 566, '{"timezone-id":"UTC"}'), +(30247, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:00.753474+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:01.133233+00', 379, '{"updated-tables":0,"total-tables":8}'), +(30248, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:01.133773+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:04.824714+00', 3690, '{"total-fields":71,"updated-fields":0}'), +(30249, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:04.824809+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:04.88266+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30250, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:04.882755+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:04.980643+00', 97, NULL), +(30251, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.029031+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.126526+00', 97, NULL), +(30252, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.02905+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.084265+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30253, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.084321+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.10071+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(30254, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.101016+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:19:05.126469+00', 25, '{"total-tables":8,"tables-classified":0}'), +(30255, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:00.781105+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.686523+00', 13905, NULL), +(30256, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:00.78358+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:00.804083+00', 20, '{"timezone-id":null}'), +(30257, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:00.809503+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:01.616117+00', 806, '{"updated-tables":0,"total-tables":4}'), +(30258, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:01.616783+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.668448+00', 13051, '{"total-fields":39,"updated-fields":0}'), +(30259, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.668791+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.681777+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30260, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.681844+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.686479+00', 4, NULL), +(30261, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.846078+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.95227+00', 106, NULL), +(30262, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.846183+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.90986+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30263, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.90995+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.919691+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(30264, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.91977+00', TIMESTAMP WITH TIME ZONE '2023-02-08 18:49:14.952221+00', 32, '{"total-tables":4,"tables-classified":0}'), +(30265, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 19:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:00:03.542+00', 3435, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30266, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 19:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:00:03.541+00', 3414, NULL), +(30267, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:00.549972+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.496887+00', 4946, NULL), +(30268, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:00.561219+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:01.269581+00', 708, '{"timezone-id":"UTC"}'), +(30269, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:01.273182+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:01.815715+00', 542, '{"updated-tables":0,"total-tables":8}'), +(30270, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:01.815979+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:04.572331+00', 2756, '{"total-fields":71,"updated-fields":0}'), +(30271, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:04.572572+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:04.733311+00', 160, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30272, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:04.73359+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.496632+00', 763, NULL), +(30273, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.640398+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.811655+00', 171, NULL), +(30274, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.640469+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.744537+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30275, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.744655+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.784396+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(30276, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.785022+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:19:05.811562+00', 26, '{"total-tables":8,"tables-classified":0}'), +(30277, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:00.915673+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.013509+00', 23097, NULL), +(30278, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:00.922382+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:00.956539+00', 34, '{"timezone-id":null}'), +(30279, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:00.962633+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:01.541194+00', 578, '{"updated-tables":0,"total-tables":4}'), +(30280, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:01.54205+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:23.987537+00', 22445, '{"total-fields":39,"updated-fields":0}'), +(30281, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:23.990368+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.010677+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30282, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.011724+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.013467+00', 1, NULL), +(30283, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.109338+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.160191+00', 50, NULL), +(30284, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.109355+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.138091+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30285, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.138333+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.142754+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(30286, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.143133+00', TIMESTAMP WITH TIME ZONE '2023-02-08 19:49:24.160125+00', 16, '{"total-tables":4,"tables-classified":0}'), +(30287, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 20:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:00:02.691+00', 2507, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30288, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 20:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:00:02.852+00', 2668, NULL), +(30289, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:00.24101+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.387113+00', 5146, NULL), +(30290, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:00.247338+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:00.847306+00', 599, '{"timezone-id":"UTC"}'), +(30291, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:00.848967+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:01.29329+00', 444, '{"updated-tables":0,"total-tables":8}'), +(30292, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:01.293385+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.106266+00', 3812, '{"total-fields":71,"updated-fields":0}'), +(30293, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.10651+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.217603+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30294, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.218039+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.387085+00', 169, NULL), +(30295, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.458617+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.580627+00', 122, NULL), +(30296, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.458636+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.531004+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30297, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.531074+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.544915+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(30298, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.545188+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:19:05.580404+00', 35, '{"total-tables":8,"tables-classified":0}'), +(30299, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:00.820136+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.792763+00', 15972, NULL), +(30300, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:00.826432+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:00.852837+00', 26, '{"timezone-id":null}'), +(30301, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:00.860686+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:01.977729+00', 1117, '{"updated-tables":0,"total-tables":4}'), +(30302, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:01.978333+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.770586+00', 14792, '{"total-fields":39,"updated-fields":0}'), +(30303, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.770682+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.783281+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30304, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.783574+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.79251+00', 8, NULL), +(30305, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.940981+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:17.025356+00', 84, NULL), +(30306, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.941+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.995969+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30307, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:16.996178+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:17.011076+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(30308, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:17.011227+00', TIMESTAMP WITH TIME ZONE '2023-02-08 20:49:17.025229+00', 14, '{"total-tables":4,"tables-classified":0}'), +(30309, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:02.13+00', 2006, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30310, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:02.13+00', 1982, NULL), +(30311, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:02.328928+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:11.991421+00', 9662, NULL), +(30312, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:02.333113+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:04.113605+00', 1780, '{"deleted":0}'), +(30313, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:04.116945+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:00:11.991345+00', 7874, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(30314, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:00.514228+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.058118+00', 3543, NULL), +(30315, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:00.518439+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:00.757993+00', 239, '{"timezone-id":"UTC"}'), +(30316, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:00.760313+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:01.180111+00', 419, '{"updated-tables":0,"total-tables":8}'), +(30317, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:01.180208+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:02.293418+00', 1113, '{"total-fields":71,"updated-fields":0}'), +(30318, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:02.293489+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:02.347993+00', 54, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30319, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:02.348067+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.058055+00', 1709, NULL), +(30320, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.28417+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.651765+00', 367, NULL), +(30321, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.284191+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.532796+00', 248, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30322, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.533094+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.577891+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(30323, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.578201+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:19:04.651685+00', 73, '{"total-tables":8,"tables-classified":0}'), +(30324, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:00.732551+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.309058+00', 12576, NULL), +(30325, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:00.737413+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:00.755944+00', 18, '{"timezone-id":null}'), +(30326, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:00.760501+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:01.305187+00', 544, '{"updated-tables":0,"total-tables":4}'), +(30327, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:01.305528+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.290324+00', 11984, '{"total-fields":39,"updated-fields":0}'), +(30328, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.290404+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.302347+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30329, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.30246+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.308997+00', 6, NULL), +(30330, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.39882+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.470494+00', 71, NULL), +(30331, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.398837+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.446552+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30332, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.44667+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.456374+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(30333, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.456464+00', TIMESTAMP WITH TIME ZONE '2023-02-08 21:49:13.470454+00', 13, '{"total-tables":4,"tables-classified":0}'), +(30334, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 22:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:00:02.32+00', 2190, NULL), +(30335, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 22:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:00:02.463+00', 2336, NULL), +(30336, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:00.530152+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.049016+00', 4518, NULL), +(30337, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:00.534199+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:01.113066+00', 578, '{"timezone-id":"UTC"}'), +(30338, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:01.114219+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:01.471995+00', 357, '{"updated-tables":0,"total-tables":8}'), +(30339, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:01.472208+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:04.749014+00', 3276, '{"total-fields":71,"updated-fields":0}'), +(30340, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:04.749273+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:04.854712+00', 105, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30341, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:04.854778+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.048985+00', 194, NULL), +(30342, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.097694+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.166942+00', 69, NULL), +(30343, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.097711+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.140924+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30344, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.141085+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.151694+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30345, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.151998+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:19:05.166895+00', 14, '{"total-tables":8,"tables-classified":0}'), +(30346, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:00.814067+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.320939+00', 12506, NULL), +(30347, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:00.818398+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:00.844653+00', 26, '{"timezone-id":null}'), +(30348, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:00.851855+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:01.347926+00', 496, '{"updated-tables":0,"total-tables":4}'), +(30349, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:01.348175+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.306047+00', 11957, '{"total-fields":39,"updated-fields":0}'), +(30350, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.306113+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.317066+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30351, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.317143+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.320896+00', 3, NULL), +(30352, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.440524+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.516399+00', 75, NULL), +(30353, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.440543+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.486842+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30354, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.486901+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.497288+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30355, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.497351+00', TIMESTAMP WITH TIME ZONE '2023-02-08 22:49:13.516346+00', 18, '{"total-tables":4,"tables-classified":0}'), +(30356, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 23:00:00.098+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:00:02.962+00', 2864, NULL), +(30357, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-08 23:00:00.077+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:00:02.964+00', 2887, NULL), +(30358, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:00.150111+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.792275+00', 3642, NULL), +(30359, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:00.153002+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:00.597765+00', 444, '{"timezone-id":"UTC"}'), +(30360, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:00.598939+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:00.892308+00', 293, '{"updated-tables":0,"total-tables":8}'), +(30361, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:00.892397+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.271068+00', 2378, '{"total-fields":71,"updated-fields":0}'), +(30362, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.27142+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.398133+00', 126, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30363, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.398432+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.792+00', 393, NULL), +(30364, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.885091+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.978192+00', 93, NULL), +(30365, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.885109+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.934836+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30366, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.934938+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.947648+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30367, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.947929+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:19:03.97797+00', 30, '{"total-tables":8,"tables-classified":0}'), +(30368, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:00.937091+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:13.678737+00', 12741, NULL), +(30369, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:00.941592+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:00.961405+00', 19, '{"timezone-id":null}'), +(30370, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:00.965216+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:01.441855+00', 476, '{"updated-tables":0,"total-tables":4}'), +(30371, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:01.442126+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:13.660148+00', 12218, '{"total-fields":39,"updated-fields":0}'), +(30372, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:13.661003+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:13.673962+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30373, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:13.674023+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:13.678689+00', 4, NULL), +(30374, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.675237+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.723029+00', 47, NULL), +(30375, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.675255+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.703146+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30376, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.703352+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.707697+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(30377, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.707878+00', TIMESTAMP WITH TIME ZONE '2023-02-08 23:49:16.722987+00', 15, '{"total-tables":4,"tables-classified":0}'), +(30378, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 00:00:00.172+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:00:05.627+00', 5455, NULL), +(30379, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 00:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:00:06.006+00', 5848, NULL), +(30380, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:00.262608+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:02.681817+00', 2419, NULL), +(30381, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:00.26593+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:00.661399+00', 395, '{"timezone-id":"UTC"}'), +(30382, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:00.663126+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:01.003508+00', 340, '{"updated-tables":0,"total-tables":8}'), +(30383, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:01.003748+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:02.301281+00', 1297, '{"total-fields":71,"updated-fields":0}'), +(30384, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:02.301352+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:02.363626+00', 62, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30385, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:02.363824+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:02.681768+00', 317, NULL), +(30386, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.020902+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.375551+00', 354, NULL), +(30387, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.020927+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.241405+00', 220, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30388, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.241664+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.307524+00', 65, '{"fields-classified":0,"fields-failed":0}'), +(30389, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.307818+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:19:03.375482+00', 67, '{"total-tables":8,"tables-classified":0}'), +(30390, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:02.794077+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.725928+00', 35931, NULL), +(30391, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:02.799933+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:02.850013+00', 50, '{"timezone-id":null}'), +(30392, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:02.856783+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:04.855716+00', 1998, '{"updated-tables":0,"total-tables":4}'), +(30393, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:04.85666+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.707151+00', 33850, '{"total-fields":39,"updated-fields":0}'), +(30394, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.707247+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.718699+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30395, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.71882+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.725874+00', 7, NULL), +(30396, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.923469+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:39.035232+00', 111, NULL), +(30397, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.923497+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.989211+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30398, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.989296+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.998201+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(30399, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:38.998272+00', TIMESTAMP WITH TIME ZONE '2023-02-09 00:49:39.035072+00', 36, '{"total-tables":4,"tables-classified":0}'), +(30400, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 01:00:00.122+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:00:02.665+00', 2543, NULL), +(30401, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 01:00:00.118+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:00:02.819+00', 2701, NULL), +(30402, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:00.439733+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.582237+00', 4142, NULL), +(30403, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:00.443896+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:01.17032+00', 726, '{"timezone-id":"UTC"}'), +(30404, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:01.172817+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:01.543515+00', 370, '{"updated-tables":0,"total-tables":8}'), +(30405, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:01.543988+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.00276+00', 2458, '{"total-fields":71,"updated-fields":0}'), +(30406, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.003073+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.10857+00', 105, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30407, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.108837+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.582195+00', 473, NULL), +(30408, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.759728+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:05.047026+00', 287, NULL), +(30409, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.759752+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.968478+00', 208, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30410, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:04.968557+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:05.00952+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(30411, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:05.010104+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:19:05.046762+00', 36, '{"total-tables":8,"tables-classified":0}'), +(30412, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:00.756314+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.045337+00', 9289, NULL), +(30413, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:00.761012+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:00.777952+00', 16, '{"timezone-id":null}'), +(30414, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:00.782236+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:01.290756+00', 508, '{"updated-tables":0,"total-tables":4}'), +(30415, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:01.290988+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.023316+00', 8732, '{"total-fields":39,"updated-fields":0}'), +(30416, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.023436+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.038268+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30417, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.038342+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.045218+00', 6, NULL), +(30418, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.211834+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.410667+00', 198, NULL), +(30419, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.212749+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.353429+00', 140, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30420, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.353732+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.371429+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(30421, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.37181+00', TIMESTAMP WITH TIME ZONE '2023-02-09 01:49:10.410471+00', 38, '{"total-tables":4,"tables-classified":0}'), +(30422, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:02.969+00', 2800, NULL), +(30423, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:00.332+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:02.969+00', 2637, NULL), +(30424, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:03.303024+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:13.284601+00', 9981, NULL), +(30425, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:03.306857+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:04.382604+00', 1075, '{"deleted":0}'), +(30426, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:04.385448+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:00:13.28454+00', 8899, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(30427, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:00.59504+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.412563+00', 2817, NULL), +(30428, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:00.599246+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:01.160851+00', 561, '{"timezone-id":"UTC"}'), +(30429, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:01.16288+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:01.529969+00', 367, '{"updated-tables":0,"total-tables":8}'), +(30430, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:01.530424+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.116107+00', 1585, '{"total-fields":71,"updated-fields":0}'), +(30431, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.116238+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.188658+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30432, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.188844+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.412533+00', 223, NULL), +(30433, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.538855+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.695712+00', 156, NULL), +(30434, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.538877+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.645938+00', 107, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30435, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.646252+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.667151+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(30436, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.667539+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:19:03.695652+00', 28, '{"total-tables":8,"tables-classified":0}'), +(30437, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:00.900006+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.178021+00', 13278, NULL), +(30438, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:00.904636+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:00.92304+00', 18, '{"timezone-id":null}'), +(30439, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:00.927289+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:01.471986+00', 544, '{"updated-tables":0,"total-tables":4}'), +(30440, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:01.472369+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.152804+00', 12680, '{"total-fields":39,"updated-fields":0}'), +(30441, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.152936+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.171405+00', 18, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30442, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.171517+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.177968+00', 6, NULL), +(30443, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.289082+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.382306+00', 93, NULL), +(30444, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.289446+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.344521+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30445, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.344596+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.354307+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(30446, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.354369+00', TIMESTAMP WITH TIME ZONE '2023-02-09 02:49:14.38226+00', 27, '{"total-tables":4,"tables-classified":0}'), +(30447, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 03:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:00:02.97+00', 2837, NULL), +(30448, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 03:00:00.12+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:00:03.136+00', 3016, NULL), +(30449, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:00.320312+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.235339+00', 3915, NULL), +(30450, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:00.323822+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:01.020139+00', 696, '{"timezone-id":"UTC"}'), +(30451, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:01.021811+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:01.382092+00', 360, '{"updated-tables":0,"total-tables":8}'), +(30452, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:01.382202+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:03.895361+00', 2513, '{"total-fields":71,"updated-fields":0}'), +(30453, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:03.895702+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.005453+00', 109, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30454, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.005775+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.235305+00', 229, NULL), +(30455, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.33479+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.460491+00', 125, NULL), +(30456, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.334811+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.395564+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30457, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.39569+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.4084+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30458, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.408804+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:19:04.460385+00', 51, '{"total-tables":8,"tables-classified":0}'), +(30459, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:00.529205+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.408063+00', 17878, NULL), +(30460, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:00.533219+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:00.550317+00', 17, '{"timezone-id":null}'), +(30461, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:00.554447+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:01.231375+00', 676, '{"updated-tables":0,"total-tables":4}'), +(30462, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:01.231748+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.394736+00', 17162, '{"total-fields":39,"updated-fields":0}'), +(30463, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.397865+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.405982+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30464, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.40606+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.407848+00', 1, NULL), +(30465, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.495436+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.540301+00', 44, NULL), +(30466, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.495456+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.518933+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30467, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.51911+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.524082+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(30468, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.524177+00', TIMESTAMP WITH TIME ZONE '2023-02-09 03:49:18.540223+00', 16, '{"total-tables":4,"tables-classified":0}'), +(30469, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 04:00:00.121+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:00:01.853+00', 1732, NULL), +(30470, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 04:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:00:01.965+00', 1853, NULL), +(30471, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:00.369442+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.600849+00', 5231, NULL), +(30472, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:00.372674+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:01.045113+00', 672, '{"timezone-id":"UTC"}'), +(30473, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:01.047213+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:01.421495+00', 374, '{"updated-tables":0,"total-tables":8}'), +(30474, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:01.421837+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.071257+00', 3649, '{"total-fields":71,"updated-fields":0}'), +(30475, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.071925+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.165531+00', 93, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30476, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.165912+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.600812+00', 434, NULL), +(30477, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.75927+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.92646+00', 167, NULL), +(30478, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.759293+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.877685+00', 118, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30479, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.877838+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.893607+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(30480, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.894021+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:19:05.926399+00', 32, '{"total-tables":8,"tables-classified":0}'), +(30481, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:00.766427+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.407452+00', 12641, NULL), +(30482, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:00.770737+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:00.809876+00', 39, '{"timezone-id":null}'), +(30483, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:00.824204+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:01.299307+00', 475, '{"updated-tables":0,"total-tables":4}'), +(30484, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:01.299401+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.394064+00', 12094, '{"total-fields":39,"updated-fields":0}'), +(30485, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.394174+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.404111+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30486, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.404174+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.407415+00', 3, NULL), +(30487, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.514761+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.57401+00', 59, NULL), +(30488, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.514782+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.563046+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30489, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.56311+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.567327+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(30490, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.56738+00', TIMESTAMP WITH TIME ZONE '2023-02-09 04:49:13.573973+00', 6, '{"total-tables":4,"tables-classified":0}'), +(30491, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 05:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:00:02.596+00', 2470, NULL), +(30492, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 05:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:00:02.842+00', 2726, NULL), +(30493, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:00.178127+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:04.782246+00', 4604, NULL), +(30494, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:00.18235+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:00.723516+00', 541, '{"timezone-id":"UTC"}'), +(30495, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:00.725391+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:01.172049+00', 446, '{"updated-tables":0,"total-tables":8}'), +(30496, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:01.172306+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:03.722389+00', 2550, '{"total-fields":71,"updated-fields":0}'), +(30497, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:03.7226+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:03.934055+00', 211, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30498, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:03.934265+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:04.782209+00', 847, NULL), +(30499, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.297035+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.384247+00', 87, NULL), +(30500, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.297057+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.349537+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30501, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.349601+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.362717+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(30502, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.362988+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:19:05.384202+00', 21, '{"total-tables":8,"tables-classified":0}'), +(30503, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:00.837024+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.779233+00', 14942, NULL), +(30504, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:00.844469+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:00.865373+00', 20, '{"timezone-id":null}'), +(30505, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:00.869575+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:01.335531+00', 465, '{"updated-tables":0,"total-tables":4}'), +(30506, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:01.335851+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.769163+00', 14433, '{"total-fields":39,"updated-fields":0}'), +(30507, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.76981+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.775723+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30508, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.775777+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.779195+00', 3, NULL), +(30509, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.907697+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.965426+00', 57, NULL), +(30510, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.907714+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.955358+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30511, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.955417+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.960058+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(30512, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.960113+00', TIMESTAMP WITH TIME ZONE '2023-02-09 05:49:15.965389+00', 5, '{"total-tables":4,"tables-classified":0}'), +(30513, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 06:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:00:03.102+00', 2954, NULL), +(30514, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 06:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:00:03.273+00', 3137, NULL), +(30515, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:00.217286+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:04.982086+00', 4764, NULL), +(30516, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:00.222996+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:00.727677+00', 504, '{"timezone-id":"UTC"}'), +(30517, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:00.729693+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:01.159954+00', 430, '{"updated-tables":0,"total-tables":8}'), +(30518, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:01.160299+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:04.775885+00', 3615, '{"total-fields":71,"updated-fields":0}'), +(30519, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:04.775969+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:04.845524+00', 69, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30520, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:04.845575+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:04.982053+00', 136, NULL), +(30521, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.045373+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.127437+00', 82, NULL), +(30522, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.045389+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.09661+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30523, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.096674+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.10912+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30524, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.109398+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:19:05.127395+00', 17, '{"total-tables":8,"tables-classified":0}'), +(30525, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:00.858579+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.566698+00', 12708, NULL), +(30526, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:00.862544+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:00.886169+00', 23, '{"timezone-id":null}'), +(30527, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:00.90411+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:01.45857+00', 554, '{"updated-tables":0,"total-tables":4}'), +(30528, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:01.458926+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.543071+00', 12084, '{"total-fields":39,"updated-fields":0}'), +(30529, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.543206+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.558014+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30530, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.558153+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.566605+00', 8, NULL), +(30531, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.702904+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.816307+00', 113, NULL), +(30532, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.702928+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.784717+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30533, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.784838+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.794931+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30534, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.795106+00', TIMESTAMP WITH TIME ZONE '2023-02-09 06:49:13.816196+00', 21, '{"total-tables":4,"tables-classified":0}'), +(30535, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 07:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:00:03.177+00', 3020, NULL), +(30536, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 07:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:00:03.367+00', 3225, NULL), +(30537, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:00.18375+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.298929+00', 5115, NULL), +(30538, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:00.187996+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:00.930077+00', 742, '{"timezone-id":"UTC"}'), +(30539, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:00.9357+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:01.411938+00', 476, '{"updated-tables":0,"total-tables":8}'), +(30540, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:01.412265+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:03.980435+00', 2568, '{"total-fields":71,"updated-fields":0}'), +(30541, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:03.98065+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:04.144007+00', 163, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30542, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:04.144343+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.298883+00', 1154, NULL), +(30543, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.388164+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.521408+00', 133, NULL), +(30544, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.388183+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.479054+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30545, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.479253+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.494882+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(30546, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.495242+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:19:05.521365+00', 26, '{"total-tables":8,"tables-classified":0}'), +(30547, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:01.027846+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:14.956665+00', 13928, NULL), +(30548, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:01.032214+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:01.054747+00', 22, '{"timezone-id":null}'), +(30549, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:01.059066+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:01.642111+00', 583, '{"updated-tables":0,"total-tables":4}'), +(30550, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:01.642506+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:14.938468+00', 13295, '{"total-fields":39,"updated-fields":0}'), +(30551, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:14.938942+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:14.951603+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30552, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:14.951932+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:14.956626+00', 4, NULL), +(30553, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.070253+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.15538+00', 85, NULL), +(30554, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.070271+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.124698+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30555, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.124985+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.134754+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(30556, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.134993+00', TIMESTAMP WITH TIME ZONE '2023-02-09 07:49:15.155197+00', 20, '{"total-tables":4,"tables-classified":0}'), +(30557, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 08:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:00:02.718+00', 2593, NULL), +(30558, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 08:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:00:02.897+00', 2778, NULL), +(30559, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:00.292299+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:04.81168+00', 4519, NULL), +(30560, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:00.294349+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:00.894908+00', 600, '{"timezone-id":"UTC"}'), +(30561, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:00.897696+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:01.175702+00', 278, '{"updated-tables":0,"total-tables":8}'), +(30562, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:01.175785+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:04.143049+00', 2967, '{"total-fields":71,"updated-fields":0}'), +(30563, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:04.143358+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:04.253646+00', 110, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30564, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:04.253969+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:04.81161+00', 557, NULL), +(30565, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.009075+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.287658+00', 278, NULL), +(30566, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.009341+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.190423+00', 181, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30567, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.190842+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.240957+00', 50, '{"fields-classified":0,"fields-failed":0}'), +(30568, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.241774+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:19:05.287494+00', 45, '{"total-tables":8,"tables-classified":0}'), +(30569, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:00.555357+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.871165+00', 16315, NULL), +(30570, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:00.557243+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:00.575879+00', 18, '{"timezone-id":null}'), +(30571, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:00.578761+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:00.9004+00', 321, '{"updated-tables":0,"total-tables":4}'), +(30572, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:00.900846+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.857042+00', 15956, '{"total-fields":39,"updated-fields":0}'), +(30573, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.857626+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.86807+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30574, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.868302+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.871021+00', 2, NULL), +(30575, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.973156+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:17.044883+00', 71, NULL), +(30576, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:16.973206+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:17.022009+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30577, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:17.022077+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:17.029639+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(30578, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:17.029723+00', TIMESTAMP WITH TIME ZONE '2023-02-09 08:49:17.044835+00', 15, '{"total-tables":4,"tables-classified":0}'), +(30579, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 09:00:00.362+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:00:04.643+00', 4281, NULL), +(30580, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 09:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:00:04.644+00', 4490, NULL), +(30581, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:00.120001+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.427162+00', 1307, NULL), +(30582, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:00.123103+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:00.476742+00', 353, '{"timezone-id":"UTC"}'), +(30583, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:00.479032+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:00.645678+00', 166, '{"updated-tables":0,"total-tables":8}'), +(30584, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:00.645766+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.181931+00', 536, '{"total-fields":71,"updated-fields":0}'), +(30585, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.182008+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.22819+00', 46, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30586, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.228253+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.427126+00', 198, NULL), +(30587, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.498074+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.635501+00', 137, NULL), +(30588, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.498097+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.575224+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30589, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.575421+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.598165+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(30590, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.598249+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:19:01.63544+00', 37, '{"total-tables":8,"tables-classified":0}'), +(30591, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:00.90638+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.151575+00', 17245, NULL), +(30592, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:00.912105+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:00.944897+00', 32, '{"timezone-id":null}'), +(30593, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:00.954055+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:01.53603+00', 581, '{"updated-tables":0,"total-tables":4}'), +(30594, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:01.536488+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.135705+00', 16599, '{"total-fields":39,"updated-fields":0}'), +(30595, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.136465+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.148094+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30596, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.148361+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.151535+00', 3, NULL), +(30597, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.283416+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.422687+00', 139, NULL), +(30598, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.283437+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.373548+00', 90, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30599, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.373648+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.390108+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(30600, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.390331+00', TIMESTAMP WITH TIME ZONE '2023-02-09 09:49:18.422633+00', 32, '{"total-tables":4,"tables-classified":0}'), +(30601, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:03.544+00', 3376, NULL), +(30602, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:03.72+00', 3563, NULL), +(30603, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:00.574789+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.283575+00', 4708, NULL), +(30604, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:00.593235+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:01.579417+00', 986, '{"timezone-id":"UTC"}'), +(30605, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:01.581792+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.405117+00', 823, '{"updated-tables":0,"total-tables":8}'), +(30606, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.405207+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.128736+00', 2723, '{"total-fields":71,"updated-fields":0}'), +(30607, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.128817+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.183847+00', 55, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30608, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.184128+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.283538+00', 99, NULL), +(30609, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.339169+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.428396+00', 89, NULL), +(30610, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.339191+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.388479+00', 49, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30611, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.388552+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.401347+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30612, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.401422+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.42835+00', 26, '{"total-tables":8,"tables-classified":0}'), +(30613, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:00.706505+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.119371+00', 14412, NULL), +(30614, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:00.708979+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:00.727408+00', 18, '{"timezone-id":null}'), +(30615, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:00.729218+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:01.219816+00', 490, '{"updated-tables":0,"total-tables":4}'), +(30616, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:01.220113+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.09961+00', 13879, '{"total-fields":39,"updated-fields":0}'), +(30617, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.099701+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.114355+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30618, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.114424+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.119329+00', 4, NULL), +(30619, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.2464+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.325179+00', 78, NULL), +(30620, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.246419+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.303174+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30621, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.3033+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.312154+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(30622, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.312272+00', TIMESTAMP WITH TIME ZONE '2023-02-09 10:49:15.325131+00', 12, '{"total-tables":4,"tables-classified":0}'), +(30623, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 11:00:00.155+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:00:03.593+00', 3438, NULL), +(30624, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 11:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:00:03.748+00', 3603, NULL), +(30625, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:01.335147+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.135638+00', 9800, NULL), +(30626, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:01.348844+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:03.152453+00', 1803, '{"timezone-id":"UTC"}'), +(30627, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:03.157303+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:04.009519+00', 852, '{"updated-tables":0,"total-tables":8}'), +(30628, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:04.014963+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:10.08414+00', 6069, '{"total-fields":71,"updated-fields":0}'), +(30629, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:10.08422+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:10.289583+00', 205, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30630, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:10.2897+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.135594+00', 845, NULL), +(30631, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.485959+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.753993+00', 268, NULL), +(30632, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.486446+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.657897+00', 171, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30633, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.657971+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.682337+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(30634, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.682763+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:19:11.753908+00', 71, '{"total-tables":8,"tables-classified":0}'), +(30635, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:01.012896+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.567221+00', 14554, NULL), +(30636, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:01.019192+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:01.046189+00', 26, '{"timezone-id":null}'), +(30637, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:01.051224+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:01.648788+00', 597, '{"updated-tables":0,"total-tables":4}'), +(30638, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:01.64907+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.549553+00', 13900, '{"total-fields":39,"updated-fields":0}'), +(30639, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.549671+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.562642+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30640, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.562765+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.56718+00', 4, NULL), +(30641, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.769317+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.869017+00', 99, NULL), +(30642, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.769343+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.838233+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30643, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.838341+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.848904+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30644, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.848967+00', TIMESTAMP WITH TIME ZONE '2023-02-09 11:49:15.868958+00', 19, '{"total-tables":4,"tables-classified":0}'), +(30645, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 12:00:00.184+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:00:03.05+00', 2866, NULL), +(30646, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 12:00:00.171+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:00:03.323+00', 3152, NULL), +(30647, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:00.779732+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.207406+00', 6427, NULL), +(30648, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:00.785642+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:01.587712+00', 802, '{"timezone-id":"UTC"}'), +(30649, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:01.590505+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:02.503577+00', 913, '{"updated-tables":0,"total-tables":8}'), +(30650, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:02.503849+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:06.594179+00', 4090, '{"total-fields":71,"updated-fields":0}'), +(30651, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:06.594417+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:06.697574+00', 103, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30652, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:06.697758+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.207365+00', 509, NULL), +(30653, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.388613+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.505333+00', 116, NULL), +(30654, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.388637+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.477104+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30655, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.477165+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.487937+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30656, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.488189+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:19:07.505287+00', 17, '{"total-tables":8,"tables-classified":0}'), +(30657, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:00.089618+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.393638+00', 11304, NULL), +(30658, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:00.0907+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:00.095583+00', 4, '{"timezone-id":null}'), +(30659, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:00.096121+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:00.281675+00', 185, '{"updated-tables":0,"total-tables":4}'), +(30660, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:00.281889+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.386898+00', 11105, '{"total-fields":39,"updated-fields":0}'), +(30661, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.387105+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.391906+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30662, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.392006+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.393573+00', 1, NULL), +(30663, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.425439+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.452671+00', 27, NULL), +(30664, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.425455+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.44227+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30665, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.442357+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.446677+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(30666, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.446757+00', TIMESTAMP WITH TIME ZONE '2023-02-09 12:49:11.452617+00', 5, '{"total-tables":4,"tables-classified":0}'), +(30667, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 13:00:00.1+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:00:02.367+00', 2267, NULL), +(30668, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 13:00:00.094+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:00:02.541+00', 2447, NULL), +(30669, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:00.19658+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.574293+00', 2377, NULL), +(30670, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:00.200895+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:00.72853+00', 527, '{"timezone-id":"UTC"}'), +(30671, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:00.729917+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:01.10182+00', 371, '{"updated-tables":0,"total-tables":8}'), +(30672, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:01.101918+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.358382+00', 1256, '{"total-fields":71,"updated-fields":0}'), +(30673, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.358756+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.414707+00', 55, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30674, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.414781+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.57426+00', 159, NULL), +(30675, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.656776+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.735146+00', 78, NULL), +(30676, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.656795+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.705426+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30677, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.705512+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.71818+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30678, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.718253+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:19:02.735081+00', 16, '{"total-tables":8,"tables-classified":0}'), +(30679, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:00.463153+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.104924+00', 34641, NULL), +(30680, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:00.465183+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:00.470555+00', 5, '{"timezone-id":null}'), +(30681, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:00.471678+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:01.080903+00', 609, '{"updated-tables":0,"total-tables":4}'), +(30682, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:01.081251+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.077841+00', 33996, '{"total-fields":39,"updated-fields":0}'), +(30683, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.077929+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.098304+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30684, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.098386+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.104862+00', 6, NULL), +(30685, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.261219+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.390782+00', 129, NULL), +(30686, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.261245+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.346847+00', 85, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30687, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.346933+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.361107+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(30688, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.361179+00', TIMESTAMP WITH TIME ZONE '2023-02-09 13:49:35.390738+00', 29, '{"total-tables":4,"tables-classified":0}'), +(30689, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 14:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:00:05.233+00', 5097, NULL), +(30690, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 14:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:00:05.441+00', 5334, NULL), +(30691, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:00.751124+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:08.843525+00', 8092, NULL), +(30692, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:00.757398+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:02.069472+00', 1312, '{"timezone-id":"UTC"}'), +(30693, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:02.086386+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:03.039353+00', 952, '{"updated-tables":0,"total-tables":8}'), +(30694, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:03.040035+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:07.919115+00', 4879, '{"total-fields":71,"updated-fields":0}'), +(30695, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:07.919264+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:08.202633+00', 283, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30696, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:08.20302+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:08.843485+00', 640, NULL), +(30697, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.055602+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.237471+00', 181, NULL), +(30698, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.055631+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.190098+00', 134, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30699, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.190175+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.20405+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(30700, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.204609+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:19:09.237421+00', 32, '{"total-tables":8,"tables-classified":0}'), +(30701, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:00.215155+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.734356+00', 10519, NULL), +(30702, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:00.21932+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:00.228156+00', 8, '{"timezone-id":null}'), +(30703, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:00.229831+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:00.432305+00', 202, '{"updated-tables":0,"total-tables":4}'), +(30704, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:00.432558+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.685736+00', 10253, '{"total-fields":39,"updated-fields":0}'), +(30705, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.685864+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.728812+00', 42, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30706, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.728897+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.734289+00', 5, NULL), +(30707, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.89078+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:11.021249+00', 130, NULL), +(30708, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.890802+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.961012+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30709, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.961106+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.986818+00', 25, '{"fields-classified":0,"fields-failed":0}'), +(30710, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:10.986912+00', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:11.021189+00', 34, '{"total-tables":4,"tables-classified":0}'), +(30711, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 15:00:01.582+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:00:01.716+00', 134, NULL), +(30712, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 15:00:01.601+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:00:01.716+00', 115, NULL), +(30713, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:00.18023+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.729945+00', 1549, NULL), +(30714, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:00.184903+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:00.886233+00', 701, '{"timezone-id":"UTC"}'), +(30715, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:00.887872+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.270331+00', 382, '{"updated-tables":0,"total-tables":8}'), +(30716, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.270424+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.593727+00', 323, '{"total-fields":71,"updated-fields":0}'), +(30717, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.593792+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.640812+00', 47, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30718, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.640874+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.729914+00', 89, NULL), +(30719, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.791135+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.909756+00', 118, NULL), +(30720, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.791156+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.853603+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30721, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.85367+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.868767+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(30722, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.869127+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:01.909702+00', 40, '{"total-tables":8,"tables-classified":0}'), +(30723, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:00.76675+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.328959+00', 16562, NULL), +(30724, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:00.771293+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:00.788893+00', 17, '{"timezone-id":null}'), +(30725, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:00.793133+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:01.265966+00', 472, '{"updated-tables":0,"total-tables":4}'), +(30726, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:01.2663+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.262618+00', 15996, '{"total-fields":39,"updated-fields":0}'), +(30727, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.263706+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.302206+00', 38, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30728, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.30253+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.328884+00', 26, NULL), +(30729, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.560316+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.687411+00', 127, NULL), +(30730, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.560336+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.634045+00', 73, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30731, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.634175+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.646392+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30732, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.646465+00', TIMESTAMP WITH TIME ZONE '2023-02-09 15:49:17.687353+00', 40, '{"total-tables":4,"tables-classified":0}'), +(30733, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 16:00:00.431+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:00:04.088+00', 3657, NULL), +(30734, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 16:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:00:04.269+00', 4120, NULL), +(30735, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:00.573496+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.155872+00', 5582, NULL), +(30736, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:00.577595+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:01.518467+00', 940, '{"timezone-id":"UTC"}'), +(30737, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:01.521348+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:01.982675+00', 461, '{"updated-tables":0,"total-tables":8}'), +(30738, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:01.983081+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:04.166631+00', 2183, '{"total-fields":71,"updated-fields":0}'), +(30739, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:04.166734+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:04.279887+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30740, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:04.279972+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.155762+00', 1875, NULL), +(30741, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.34543+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.620303+00', 274, NULL), +(30742, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.345456+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.522387+00', 176, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30743, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.52277+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.562309+00', 39, '{"fields-classified":0,"fields-failed":0}'), +(30744, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.562619+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:19:06.620097+00', 57, '{"total-tables":8,"tables-classified":0}'), +(30745, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:00.786426+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:16.986428+00', 16200, NULL), +(30746, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:00.791833+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:00.82099+00', 29, '{"timezone-id":null}'), +(30747, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:00.845498+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:01.429428+00', 583, '{"updated-tables":0,"total-tables":4}'), +(30748, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:01.429969+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:16.954557+00', 15524, '{"total-fields":39,"updated-fields":0}'), +(30749, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:16.954865+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:16.973869+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30750, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:16.974155+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:16.986376+00', 12, NULL), +(30751, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.205804+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.322888+00', 117, NULL), +(30752, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.205825+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.269025+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30753, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.269107+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.285163+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(30754, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.2854+00', TIMESTAMP WITH TIME ZONE '2023-02-09 16:49:17.322609+00', 37, '{"total-tables":4,"tables-classified":0}'), +(30755, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 17:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:00:02.694+00', 2546, NULL), +(30756, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 17:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:00:02.871+00', 2738, NULL), +(30757, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:00.5836+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.788443+00', 5204, NULL), +(30758, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:00.586582+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:02.415671+00', 1829, '{"timezone-id":"UTC"}'), +(30759, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:02.416974+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:02.880574+00', 463, '{"updated-tables":0,"total-tables":8}'), +(30760, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:02.881061+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.092505+00', 2211, '{"total-fields":71,"updated-fields":0}'), +(30761, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.092822+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.234424+00', 141, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30762, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.234715+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.788192+00', 553, NULL), +(30763, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.935924+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:06.273337+00', 337, NULL), +(30764, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:05.935945+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:06.153306+00', 217, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30765, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:06.153678+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:06.20754+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(30766, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:06.208155+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:19:06.272987+00', 64, '{"total-tables":8,"tables-classified":0}'), +(30767, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:00.829428+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:14.885143+00', 14055, NULL), +(30768, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:00.861511+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:00.885752+00', 24, '{"timezone-id":null}'), +(30769, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:00.902074+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:01.321076+00', 419, '{"updated-tables":0,"total-tables":4}'), +(30770, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:01.32144+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:14.866821+00', 13545, '{"total-fields":39,"updated-fields":0}'), +(30771, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:14.866942+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:14.880064+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30772, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:14.880133+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:14.885092+00', 4, NULL), +(30773, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.559851+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.60168+00', 41, NULL), +(30774, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.559874+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.583466+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30775, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.583528+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.589627+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(30776, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.589692+00', TIMESTAMP WITH TIME ZONE '2023-02-09 17:49:17.601633+00', 11, '{"total-tables":4,"tables-classified":0}'), +(30777, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 18:00:00.108+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:00:03.384+00', 3276, NULL), +(30778, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 18:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:00:03.384+00', 3251, NULL), +(30779, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:00.20468+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.355021+00', 5150, NULL), +(30780, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:00.207948+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:00.768001+00', 560, '{"timezone-id":"UTC"}'), +(30781, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:00.769659+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:01.195971+00', 426, '{"updated-tables":0,"total-tables":8}'), +(30782, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:01.196232+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.07168+00', 3875, '{"total-fields":71,"updated-fields":0}'), +(30783, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.071961+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.17869+00', 106, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30784, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.179006+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.354549+00', 175, NULL), +(30785, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.41924+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.510533+00', 91, NULL), +(30786, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.41926+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.482605+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30787, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.482659+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.493321+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30788, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.49374+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:19:05.510491+00', 16, '{"total-tables":8,"tables-classified":0}'), +(30789, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:00.761587+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.177018+00', 13415, NULL), +(30790, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:00.766019+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:00.795588+00', 29, '{"timezone-id":null}'), +(30791, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:00.835736+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:01.541395+00', 705, '{"updated-tables":0,"total-tables":4}'), +(30792, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:01.541844+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.15927+00', 12617, '{"total-fields":39,"updated-fields":0}'), +(30793, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.15937+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.173282+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30794, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.173354+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.176973+00', 3, NULL), +(30795, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.313246+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.422868+00', 109, NULL), +(30796, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.313269+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.376793+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30797, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.376859+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.387585+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(30798, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.387714+00', TIMESTAMP WITH TIME ZONE '2023-02-09 18:49:14.422818+00', 35, '{"total-tables":4,"tables-classified":0}'), +(30799, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 19:00:00.099+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:00:03.55+00', 3451, NULL), +(30800, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 19:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:00:03.428+00', 3317, NULL), +(30801, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:00.496971+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.708715+00', 4211, NULL), +(30802, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:00.501068+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:01.300653+00', 799, '{"timezone-id":"UTC"}'), +(30803, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:01.302734+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:01.762641+00', 459, '{"updated-tables":0,"total-tables":8}'), +(30804, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:01.762952+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.073683+00', 2310, '{"total-fields":71,"updated-fields":0}'), +(30805, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.073957+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.20572+00', 131, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30806, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.205982+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.708571+00', 502, NULL), +(30807, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.915494+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:05.191566+00', 276, NULL), +(30808, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:04.915513+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:05.095494+00', 179, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30809, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:05.095775+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:05.137133+00', 41, '{"fields-classified":0,"fields-failed":0}'), +(30810, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:05.137647+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:19:05.191264+00', 53, '{"total-tables":8,"tables-classified":0}'), +(30811, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:00.786256+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.420807+00', 23634, NULL), +(30812, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:00.806275+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:00.821918+00', 15, '{"timezone-id":null}'), +(30813, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:00.825632+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:01.354706+00', 529, '{"updated-tables":0,"total-tables":4}'), +(30814, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:01.354965+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.402023+00', 23047, '{"total-fields":39,"updated-fields":0}'), +(30815, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.40754+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.419342+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30816, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.419407+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.420774+00', 1, NULL), +(30817, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.588489+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.647403+00', 58, NULL), +(30818, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.588507+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.61002+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30819, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.610091+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.627273+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(30820, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.627368+00', TIMESTAMP WITH TIME ZONE '2023-02-09 19:49:24.647365+00', 19, '{"total-tables":4,"tables-classified":0}'), +(30821, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 20:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:00:02.465+00', 2316, NULL), +(30822, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 20:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:00:02.617+00', 2472, NULL), +(30823, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:00.214292+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.780877+00', 5566, NULL), +(30824, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:00.218967+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:00.862957+00', 643, '{"timezone-id":"UTC"}'), +(30825, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:00.873385+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:01.301897+00', 428, '{"updated-tables":0,"total-tables":8}'), +(30826, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:01.302467+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.063032+00', 3760, '{"total-fields":71,"updated-fields":0}'), +(30827, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.063331+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.235001+00', 171, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30828, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.235453+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.780845+00', 545, NULL), +(30829, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.931213+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:06.138182+00', 206, NULL), +(30830, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:05.931426+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:06.082594+00', 151, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30831, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:06.082675+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:06.099934+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(30832, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:06.100216+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:19:06.13814+00', 37, '{"total-tables":8,"tables-classified":0}'), +(30833, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:00.725121+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.051847+00', 12326, NULL), +(30834, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:00.730592+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:00.789773+00', 59, '{"timezone-id":null}'), +(30835, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:00.798108+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:01.479897+00', 681, '{"updated-tables":0,"total-tables":4}'), +(30836, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:01.479988+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.036882+00', 11556, '{"total-fields":39,"updated-fields":0}'), +(30837, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.036947+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.047313+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30838, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.047368+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.051816+00', 4, NULL), +(30839, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.139185+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.201242+00', 62, NULL), +(30840, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.139201+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.182608+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30841, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.182665+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.188725+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(30842, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.188775+00', TIMESTAMP WITH TIME ZONE '2023-02-09 20:49:13.201207+00', 12, '{"total-tables":4,"tables-classified":0}'), +(30843, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:02.11+00', 1978, NULL), +(30844, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:02.109+00', 1957, NULL), +(30845, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:02.321587+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:11.740638+00', 9419, NULL), +(30846, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:02.324893+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:05.024924+00', 2700, '{"deleted":0}'), +(30847, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:05.027073+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:00:11.740581+00', 6713, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(30848, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:00.550959+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.73657+00', 3185, NULL), +(30849, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:00.555762+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:00.932878+00', 377, '{"timezone-id":"UTC"}'), +(30850, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:00.935004+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:01.275162+00', 340, '{"updated-tables":0,"total-tables":8}'), +(30851, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:01.275472+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.459398+00', 2183, '{"total-fields":71,"updated-fields":0}'), +(30852, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.459557+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.50154+00', 41, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30853, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.501631+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.736544+00', 234, NULL), +(30854, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.850661+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:04.010258+00', 159, NULL), +(30855, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.850681+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.964572+00', 113, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30856, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.964656+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.984511+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(30857, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:03.984995+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:19:04.010208+00', 25, '{"total-tables":8,"tables-classified":0}'), +(30858, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:00.774525+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.438128+00', 19663, NULL), +(30859, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:00.778336+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:00.791875+00', 13, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30860, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:00.795812+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:01.293762+00', 497, '{"updated-tables":0,"total-tables":4}'), +(30861, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:01.29408+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.417706+00', 19123, '{"total-fields":39,"updated-fields":0}'), +(30862, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.420501+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.435581+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30863, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.435817+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.437941+00', 2, NULL), +(30864, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.607273+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:21.010864+00', 403, NULL), +(30865, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.607293+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.703467+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30866, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.703752+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.719357+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(30867, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:20.719481+00', TIMESTAMP WITH TIME ZONE '2023-02-09 21:49:21.010812+00', 291, '{"total-tables":4,"tables-classified":0}'), +(30868, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 22:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:00:02.005+00', 1862, NULL), +(30869, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 22:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:00:02.14+00', 2002, NULL), +(30870, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:00.200963+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.120907+00', 4919, NULL), +(30871, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:00.204068+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:00.684109+00', 480, '{"timezone-id":"UTC"}'), +(30872, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:00.686128+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:01.095734+00', 409, '{"updated-tables":0,"total-tables":8}'), +(30873, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:01.096033+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:03.538964+00', 2442, '{"total-fields":71,"updated-fields":0}'), +(30874, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:03.539251+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:03.663062+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30875, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:03.6633+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.120878+00', 1457, NULL), +(30876, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.191556+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.265674+00', 74, NULL), +(30877, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.191573+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.237842+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30878, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.237898+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.250198+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30879, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.250463+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:19:05.265561+00', 15, '{"total-tables":8,"tables-classified":0}'), +(30880, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:00.703515+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.163969+00', 11460, NULL), +(30881, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:00.708041+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:00.724908+00', 16, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30882, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:00.728408+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:01.295669+00', 567, '{"updated-tables":0,"total-tables":4}'), +(30883, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:01.295989+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.136001+00', 10840, '{"total-fields":39,"updated-fields":0}'), +(30884, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.136357+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.158884+00', 22, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30885, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.15919+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.163778+00', 4, NULL), +(30886, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.253495+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.330893+00', 77, NULL), +(30887, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.253512+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.297842+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30888, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.29804+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.303584+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(30889, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.30373+00', TIMESTAMP WITH TIME ZONE '2023-02-09 22:49:12.330846+00', 27, '{"total-tables":4,"tables-classified":0}'), +(30890, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 23:00:00.099+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:00:02.265+00', 2166, NULL), +(30891, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-09 23:00:00.092+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:00:02.433+00', 2341, NULL), +(30892, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:00.399597+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.520142+00', 4120, NULL), +(30893, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:00.402713+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:01.098793+00', 696, '{"timezone-id":"UTC"}'), +(30894, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:01.100507+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:01.51115+00', 410, '{"updated-tables":0,"total-tables":8}'), +(30895, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:01.511519+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:03.901429+00', 2389, '{"total-fields":71,"updated-fields":0}'), +(30896, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:03.901708+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.027469+00', 125, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30897, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.027763+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.520097+00', 492, NULL), +(30898, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.698976+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:05.004161+00', 305, NULL), +(30899, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.698998+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.907728+00', 208, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30900, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.907809+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.943531+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(30901, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:04.943819+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:19:05.004096+00', 60, '{"total-tables":8,"tables-classified":0}'), +(30902, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:00.89131+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.031457+00', 14140, NULL), +(30903, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:00.896013+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:00.916503+00', 20, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30904, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:00.920627+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:01.322412+00', 401, '{"updated-tables":0,"total-tables":4}'), +(30905, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:01.322498+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.021398+00', 13698, '{"total-fields":39,"updated-fields":0}'), +(30906, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.022444+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.029761+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30907, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.029895+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.031432+00', 1, NULL), +(30908, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.100755+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.136702+00', 35, NULL), +(30909, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.100771+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.121451+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30910, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.121604+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.125526+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(30911, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.125679+00', TIMESTAMP WITH TIME ZONE '2023-02-09 23:49:15.136607+00', 10, '{"total-tables":4,"tables-classified":0}'), +(30912, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 00:00:00.157+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:00:05.306+00', 5149, NULL), +(30913, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 00:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:00:05.66+00', 5513, NULL), +(30914, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:00.201145+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.473989+00', 5272, NULL), +(30915, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:00.205924+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:00.898275+00', 692, '{"timezone-id":"UTC"}'), +(30916, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:00.899808+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:01.253214+00', 353, '{"updated-tables":0,"total-tables":8}'), +(30917, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:01.253522+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:03.90075+00', 2647, '{"total-fields":71,"updated-fields":0}'), +(30918, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:03.90101+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:04.04162+00', 140, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30919, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:04.041895+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.473955+00', 1432, NULL), +(30920, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.605736+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.731666+00', 125, NULL), +(30921, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.605755+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.66889+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30922, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.668944+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.692315+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(30923, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.692646+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:19:05.731623+00', 38, '{"total-tables":8,"tables-classified":0}'), +(30924, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:00.816081+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.66244+00', 12846, NULL), +(30925, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:00.820318+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:00.841415+00', 21, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30926, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:00.847163+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:01.457755+00', 610, '{"updated-tables":0,"total-tables":4}'), +(30927, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:01.458071+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.645802+00', 12187, '{"total-fields":39,"updated-fields":0}'), +(30928, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.645896+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.658695+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30929, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.658781+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.662387+00', 3, NULL), +(30930, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.818304+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.973261+00', 154, NULL), +(30931, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.818327+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.942569+00', 124, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30932, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.942669+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.954887+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(30933, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.954962+00', TIMESTAMP WITH TIME ZONE '2023-02-10 00:49:13.973203+00', 18, '{"total-tables":4,"tables-classified":0}'), +(30934, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 01:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:00:02.684+00', 2553, NULL), +(30935, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 01:00:00.126+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:00:03.149+00', 3023, NULL), +(30936, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:00.719708+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.194092+00', 11474, NULL), +(30937, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:00.723457+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:03.047716+00', 2324, '{"timezone-id":"UTC"}'), +(30938, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:03.049643+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:04.179784+00', 1130, '{"updated-tables":0,"total-tables":8}'), +(30939, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:04.179879+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:10.767498+00', 6587, '{"total-fields":71,"updated-fields":0}'), +(30940, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:10.767591+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:11.197568+00', 429, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30941, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:11.197648+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.194048+00', 996, NULL), +(30942, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.429399+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:13.118147+00', 688, NULL), +(30943, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.429418+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.869766+00', 440, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30944, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.869881+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.979118+00', 109, '{"fields-classified":0,"fields-failed":0}'), +(30945, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:12.979519+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:19:13.118075+00', 138, '{"total-tables":8,"tables-classified":0}'), +(30946, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:00.874424+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:11.972407+00', 11097, NULL), +(30947, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:00.880531+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:00.909136+00', 28, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30948, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:00.914339+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:01.35904+00', 444, '{"updated-tables":0,"total-tables":4}'), +(30949, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:01.359403+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:11.95761+00', 10598, '{"total-fields":39,"updated-fields":0}'), +(30950, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:11.957675+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:11.968378+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30951, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:11.968482+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:11.97237+00', 3, NULL), +(30952, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.062035+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.126296+00', 64, NULL), +(30953, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.062054+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.103007+00', 40, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30954, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.103066+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.112584+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(30955, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.112649+00', TIMESTAMP WITH TIME ZONE '2023-02-10 01:49:12.126254+00', 13, '{"total-tables":4,"tables-classified":0}'), +(30956, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:02.212+00', 2062, NULL), +(30957, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:02.212+00', 2044, NULL), +(30958, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:02.593378+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:12.920942+00', 10327, NULL), +(30959, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:02.596553+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:03.5524+00', 955, '{"deleted":0}'), +(30960, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:03.556085+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:00:12.920881+00', 9364, '{"errors":0,"created":0,"updated":3,"deleted":0}'), +(30961, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:00.557941+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.644915+00', 3086, NULL), +(30962, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:00.561838+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:01.192007+00', 630, '{"timezone-id":"UTC"}'), +(30963, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:01.194924+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:01.557396+00', 362, '{"updated-tables":0,"total-tables":8}'), +(30964, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:01.557802+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.354777+00', 1796, '{"total-fields":71,"updated-fields":0}'), +(30965, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.354932+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.431652+00', 76, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30966, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.431934+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.64489+00', 212, NULL), +(30967, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.742438+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.922862+00', 180, NULL), +(30968, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.742455+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.875085+00', 132, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30969, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.875343+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.899378+00', 24, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30970, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.899809+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:19:03.922789+00', 22, '{"total-tables":8,"tables-classified":0}'), +(30971, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:00.810715+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:13.932816+00', 13122, NULL), +(30972, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:00.814222+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:00.830845+00', 16, '{"timezone-id":null}'), +(30973, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:00.847499+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:01.316175+00', 468, '{"updated-tables":0,"total-tables":4}'), +(30974, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:01.31658+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:13.916737+00', 12600, '{"total-fields":39,"updated-fields":0}'), +(30975, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:13.916817+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:13.928762+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30976, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:13.928835+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:13.932768+00', 3, NULL), +(30977, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.031142+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.111332+00', 80, NULL), +(30978, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.031164+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.083781+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30979, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.083843+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.092952+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(30980, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.093018+00', TIMESTAMP WITH TIME ZONE '2023-02-10 02:49:14.111284+00', 18, '{"total-tables":4,"tables-classified":0}'), +(30981, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 03:00:01.095+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:00:04.32+00', 3225, NULL), +(30982, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 03:00:01.095+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:00:04.486+00', 3391, NULL), +(30983, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:00.220399+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.356837+00', 4136, NULL), +(30984, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:00.228768+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:00.9303+00', 701, '{"timezone-id":"UTC"}'), +(30985, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:00.931868+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:01.259027+00', 327, '{"updated-tables":0,"total-tables":8}'), +(30986, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:01.259107+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:03.729949+00', 2470, '{"total-fields":71,"updated-fields":0}'), +(30987, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:03.730212+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:03.853691+00', 123, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(30988, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:03.853939+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.3568+00', 502, NULL), +(30989, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.520893+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.677353+00', 156, NULL), +(30990, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.520911+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.646399+00', 125, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(30991, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.646507+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.659444+00', 12, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(30992, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.659782+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:19:04.677272+00', 17, '{"total-tables":8,"tables-classified":0}'), +(30993, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:00.42765+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.050821+00', 16623, NULL), +(30994, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:00.431397+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:00.451334+00', 19, '{"timezone-id":null}'), +(30995, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:00.457325+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:01.223985+00', 766, '{"updated-tables":0,"total-tables":4}'), +(30996, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:01.224384+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.041771+00', 15817, '{"total-fields":39,"updated-fields":0}'), +(30997, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.042039+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.049111+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(30998, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.049173+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.050784+00', 1, NULL), +(30999, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.098433+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.129428+00', 30, NULL), +(31000, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.098449+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.114233+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31001, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.114303+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.118628+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(31002, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.118698+00', TIMESTAMP WITH TIME ZONE '2023-02-10 03:49:17.129386+00', 10, '{"total-tables":4,"tables-classified":0}'), +(31003, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 04:00:00.124+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:00:02.622+00', 2498, NULL), +(31004, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 04:00:00.114+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:00:02.799+00', 2685, NULL), +(31005, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:00.532487+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.061593+00', 5529, NULL), +(31006, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:00.536337+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:01.202137+00', 665, '{"timezone-id":"UTC"}'), +(31007, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:01.20493+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:01.578974+00', 374, '{"updated-tables":0,"total-tables":8}'), +(31008, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:01.579265+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:05.46965+00', 3890, '{"total-fields":71,"updated-fields":0}'), +(31009, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:05.470057+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:05.590485+00', 120, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31010, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:05.590729+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.061555+00', 470, NULL), +(31011, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.251731+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.510431+00', 258, NULL), +(31012, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.251756+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.429283+00', 177, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31013, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.42953+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.465775+00', 36, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31014, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.466322+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:19:06.510211+00', 43, '{"total-tables":8,"tables-classified":0}'), +(31015, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:00.687998+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.540893+00', 18852, NULL), +(31016, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:00.692967+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:00.714324+00', 21, '{"timezone-id":null}'), +(31017, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:00.718519+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:01.242262+00', 523, '{"updated-tables":0,"total-tables":4}'), +(31018, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:01.24236+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.52722+00', 18284, '{"total-fields":39,"updated-fields":0}'), +(31019, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.529746+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.539709+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31020, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.539772+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.54086+00', 1, NULL), +(31021, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.652225+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.742089+00', 89, NULL), +(31022, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.652668+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.691889+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31023, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.691954+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.696005+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(31024, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.699944+00', TIMESTAMP WITH TIME ZONE '2023-02-10 04:49:19.742042+00', 42, '{"total-tables":4,"tables-classified":0}'), +(31025, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 05:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:00:01.862+00', 1719, NULL), +(31026, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 05:00:00.135+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:00:02.066+00', 1931, NULL), +(31027, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:00.210222+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.087348+00', 4877, NULL), +(31028, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:00.214807+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:00.91786+00', 703, '{"timezone-id":"UTC"}'), +(31029, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:00.919815+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:01.290973+00', 371, '{"updated-tables":0,"total-tables":8}'), +(31030, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:01.291055+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:03.672023+00', 2380, '{"total-fields":71,"updated-fields":0}'), +(31031, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:03.672323+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:04.6379+00', 965, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31032, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:04.638207+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.087108+00', 448, NULL), +(31033, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.211193+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.321697+00', 110, NULL), +(31034, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.211211+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.266902+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31035, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.267106+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.283226+00', 16, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31036, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.283636+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:19:05.32165+00', 38, '{"total-tables":8,"tables-classified":0}'), +(31037, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:00.896467+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.480864+00', 14584, NULL), +(31038, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:00.901892+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:00.925027+00', 23, '{"timezone-id":null}'), +(31039, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:00.929069+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:01.42487+00', 495, '{"updated-tables":0,"total-tables":4}'), +(31040, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:01.425086+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.421966+00', 13996, '{"total-fields":39,"updated-fields":0}'), +(31041, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.422403+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.475297+00', 52, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31042, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.475392+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.480818+00', 5, NULL), +(31043, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.641481+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.74077+00', 99, NULL), +(31044, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.641509+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.701667+00', 60, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31045, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.701769+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.712306+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(31046, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.712472+00', TIMESTAMP WITH TIME ZONE '2023-02-10 05:49:15.740716+00', 28, '{"total-tables":4,"tables-classified":0}'), +(31047, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 06:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:00:02.935+00', 2804, NULL), +(31048, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 06:00:00.13+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:00:03.253+00', 3123, NULL), +(31049, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:00.167319+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.458922+00', 4291, NULL), +(31050, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:00.17088+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:00.773847+00', 602, '{"timezone-id":"UTC"}'), +(31051, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:00.775341+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:01.096709+00', 321, '{"updated-tables":0,"total-tables":8}'), +(31052, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:01.097081+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:03.859943+00', 2762, '{"total-fields":71,"updated-fields":0}'), +(31053, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:03.860294+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:03.991643+00', 131, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31054, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:03.992299+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.458882+00', 466, NULL), +(31055, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.532058+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.645868+00', 113, NULL), +(31056, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.532082+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.6087+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31057, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.608781+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.621401+00', 12, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31058, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.621834+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:19:04.645808+00', 23, '{"total-tables":8,"tables-classified":0}'), +(31059, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:01.021992+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.149396+00', 12127, NULL), +(31060, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:01.026818+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:01.036515+00', 9, '{"timezone-id":null}'), +(31061, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:01.039204+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:01.518422+00', 479, '{"updated-tables":0,"total-tables":4}'), +(31062, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:01.518692+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.123201+00', 11604, '{"total-fields":39,"updated-fields":0}'), +(31063, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.123635+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.144001+00', 20, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31064, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.144081+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.149341+00', 5, NULL), +(31065, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.324426+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.469709+00', 145, NULL), +(31066, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.324447+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.4241+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31067, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.424339+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.441596+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(31068, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.441673+00', TIMESTAMP WITH TIME ZONE '2023-02-10 06:49:13.469646+00', 27, '{"total-tables":4,"tables-classified":0}'), +(31069, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 07:00:00.289+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:00:04.636+00', 4347, NULL), +(31070, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 07:00:00.128+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:00:04.966+00', 4838, NULL), +(31071, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:00.239882+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.800261+00', 4560, NULL), +(31072, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:00.2436+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:00.805193+00', 561, '{"timezone-id":"UTC"}'), +(31073, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:00.807679+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:01.227557+00', 419, '{"updated-tables":0,"total-tables":8}'), +(31074, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:01.227963+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.076225+00', 2848, '{"total-fields":71,"updated-fields":0}'), +(31075, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.076584+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.223094+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31076, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.223365+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.799965+00', 576, NULL), +(31077, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.945268+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:05.038689+00', 93, NULL), +(31078, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:04.945286+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:05.006679+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31079, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:05.006749+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:05.020475+00', 13, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31080, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:05.020753+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:19:05.038646+00', 17, '{"total-tables":8,"tables-classified":0}'), +(31081, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:00.190984+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:11.969244+00', 11778, NULL), +(31082, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:00.194457+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:00.207058+00', 12, '{"timezone-id":null}'), +(31083, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:00.20715+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:00.419639+00', 212, '{"updated-tables":0,"total-tables":4}'), +(31084, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:00.419742+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:11.966347+00', 11546, '{"total-fields":39,"updated-fields":0}'), +(31085, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:11.96647+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:11.968797+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31086, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:11.968851+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:11.969223+00', 0, NULL), +(31087, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.03085+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.053856+00', 23, NULL), +(31088, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.030868+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.046535+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31089, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.046596+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.049657+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(31090, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.049725+00', TIMESTAMP WITH TIME ZONE '2023-02-10 07:49:12.053818+00', 4, '{"total-tables":4,"tables-classified":0}'), +(31091, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:01.564+00', 1439, NULL), +(31092, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:00.117+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:01.696+00', 1579, NULL), +(31093, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:00.814537+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:05.910313+00', 5095, NULL), +(31094, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:00.817177+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:01.60368+00', 786, '{"timezone-id":"UTC"}'), +(31095, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:01.606074+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:01.946914+00', 340, '{"updated-tables":0,"total-tables":8}'), +(31096, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:01.947401+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:05.119588+00', 3172, '{"total-fields":71,"updated-fields":0}'), +(31097, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:05.119948+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:05.251964+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31098, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:05.252346+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:05.91024+00', 657, NULL), +(31099, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.186093+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.556766+00', 370, NULL), +(31100, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.186115+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.439301+00', 253, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31101, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.439681+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.48854+00', 48, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31102, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.489029+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:19:06.556693+00', 67, '{"total-tables":8,"tables-classified":0}'), +(31103, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:00.943591+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.159657+00', 15216, NULL), +(31104, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:00.950499+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:00.979785+00', 29, '{"timezone-id":null}'), +(31105, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:00.987217+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:01.638112+00', 650, '{"updated-tables":0,"total-tables":4}'), +(31106, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:01.63867+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.140136+00', 14501, '{"total-fields":39,"updated-fields":0}'), +(31107, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.140247+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.15502+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31108, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.155144+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.159577+00', 4, NULL), +(31109, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.265857+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.3511+00', 85, NULL), +(31110, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.265876+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.319247+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31111, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.319376+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.329233+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(31112, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.329326+00', TIMESTAMP WITH TIME ZONE '2023-02-10 08:49:16.351037+00', 21, '{"total-tables":4,"tables-classified":0}'), +(31113, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 09:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:00:04.967+00', 4790, NULL), +(31114, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 09:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:00:05.18+00', 5013, NULL), +(31115, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:00.570604+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:06.665677+00', 6095, NULL), +(31116, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:00.57648+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:01.823255+00', 1246, '{"timezone-id":"UTC"}'), +(31117, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:01.828494+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:02.511775+00', 683, '{"updated-tables":0,"total-tables":8}'), +(31118, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:02.511865+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:05.890662+00', 3378, '{"total-fields":71,"updated-fields":0}'), +(31119, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:05.891002+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:06.043409+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31120, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:06.043694+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:06.665627+00', 621, NULL), +(31121, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.469468+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.881852+00', 412, NULL), +(31122, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.469497+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.775388+00', 305, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31123, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.775738+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.822412+00', 46, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31124, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.822508+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:19:08.881774+00', 59, '{"total-tables":8,"tables-classified":0}'), +(31125, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:01.229161+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.246402+00', 33017, NULL), +(31126, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:01.235694+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:01.275332+00', 39, '{"timezone-id":null}'), +(31127, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:01.283044+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:02.13764+00', 854, '{"updated-tables":0,"total-tables":4}'), +(31128, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:02.138045+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.22888+00', 32090, '{"total-fields":39,"updated-fields":0}'), +(31129, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.232785+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.245094+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31130, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.245173+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.246344+00', 1, NULL), +(31131, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.347731+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.422685+00', 74, NULL), +(31132, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.347751+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.37556+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31133, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.37563+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.402877+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(31134, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.402949+00', TIMESTAMP WITH TIME ZONE '2023-02-10 09:49:34.422633+00', 19, '{"total-tables":4,"tables-classified":0}'), +(31135, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 10:00:00.239+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:00:04.497+00', 4258, NULL), +(31136, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 10:00:00.23+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:00:04.88+00', 4650, NULL), +(31137, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:00.22771+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.216961+00', 6989, NULL), +(31138, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:00.232922+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:00.757736+00', 524, '{"timezone-id":"UTC"}'), +(31139, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:00.759801+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:01.346806+00', 587, '{"updated-tables":0,"total-tables":8}'), +(31140, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:01.347159+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:06.515955+00', 5168, '{"total-fields":71,"updated-fields":0}'), +(31141, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:06.51606+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:06.708408+00', 192, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31142, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:06.708906+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.216921+00', 508, NULL), +(31143, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.313612+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.490136+00', 176, NULL), +(31144, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.313633+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.422969+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31145, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.42306+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.448665+00', 25, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31146, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.44904+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:19:07.490091+00', 41, '{"total-tables":8,"tables-classified":0}'), +(31147, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:01.074833+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:24.857651+00', 23782, NULL), +(31148, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:01.087474+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:01.117031+00', 29, '{"timezone-id":null}'), +(31149, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:01.12399+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:02.418425+00', 1294, '{"updated-tables":0,"total-tables":4}'), +(31150, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:02.418814+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:24.828206+00', 22409, '{"total-fields":39,"updated-fields":0}'), +(31151, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:24.828321+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:24.849694+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31152, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:24.851114+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:24.857545+00', 6, NULL), +(31153, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.107501+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.318225+00', 210, NULL), +(31154, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.107523+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.24327+00', 135, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31155, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.243398+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.265441+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(31156, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.265526+00', TIMESTAMP WITH TIME ZONE '2023-02-10 10:49:25.317995+00', 52, '{"total-tables":4,"tables-classified":0}'), +(31157, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 11:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:00:06.351+00', 6193, NULL), +(31158, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 11:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:00:06.14+00', 5961, NULL), +(31159, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:00.611689+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:08.854909+00', 8243, NULL), +(31160, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:00.626938+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:02.054825+00', 1427, '{"timezone-id":"UTC"}'), +(31161, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:02.057142+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:02.789349+00', 732, '{"updated-tables":0,"total-tables":8}'), +(31162, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:02.789461+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:07.829291+00', 5039, '{"total-fields":71,"updated-fields":0}'), +(31163, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:07.829572+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:07.984068+00', 154, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31164, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:07.984449+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:08.854862+00', 870, NULL), +(31165, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.199481+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.692002+00', 492, NULL), +(31166, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.199512+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.5491+00', 349, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31167, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.549434+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.610737+00', 61, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31168, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.611557+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:19:09.69193+00', 80, '{"total-tables":8,"tables-classified":0}'), +(31169, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:01.198578+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.081768+00', 20883, NULL), +(31170, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:01.206447+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:01.246785+00', 40, '{"timezone-id":null}'), +(31171, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:01.253879+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:02.066733+00', 812, '{"updated-tables":0,"total-tables":4}'), +(31172, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:02.068124+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.049069+00', 19980, '{"total-fields":39,"updated-fields":0}'), +(31173, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.049186+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.068898+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31174, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.069006+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.081698+00', 12, NULL), +(31175, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.199347+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.32464+00', 125, NULL), +(31176, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.19937+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.287692+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31177, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.287779+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.304122+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(31178, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.30422+00', TIMESTAMP WITH TIME ZONE '2023-02-10 11:49:22.324591+00', 20, '{"total-tables":4,"tables-classified":0}'), +(31179, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 12:00:00.412+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:00:04.307+00', 3895, NULL), +(31180, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 12:00:00.377+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:00:04.311+00', 3934, NULL), +(31181, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:00.200205+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.773538+00', 3573, NULL), +(31182, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:00.209331+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:00.952288+00', 742, '{"timezone-id":"UTC"}'), +(31183, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:00.954341+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:01.363692+00', 409, '{"updated-tables":0,"total-tables":8}'), +(31184, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:01.3638+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.56628+00', 2202, '{"total-fields":71,"updated-fields":0}'), +(31185, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.566358+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.644669+00', 78, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31186, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.64476+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.773506+00', 128, NULL), +(31187, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.900296+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:04.108772+00', 208, NULL), +(31188, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:03.900321+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:04.024285+00', 123, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31189, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:04.02438+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:04.055432+00', 31, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31190, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:04.055842+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:04.10856+00', 52, '{"total-tables":8,"tables-classified":0}'), +(31191, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:00.315471+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:22.786405+00', 22470, NULL), +(31192, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:00.320807+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:00.332059+00', 11, '{"timezone-id":null}'), +(31193, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:00.334877+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:00.888674+00', 553, '{"updated-tables":0,"total-tables":4}'), +(31194, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:00.889188+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:22.712885+00', 21823, '{"total-fields":39,"updated-fields":0}'), +(31195, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:22.713713+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:22.775227+00', 61, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31196, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:22.775331+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:22.78634+00', 11, NULL), +(31197, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.278421+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.843764+00', 565, NULL), +(31198, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.278451+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.726856+00', 448, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31199, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.727746+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.776668+00', 48, '{"fields-classified":0,"fields-failed":0}'), +(31200, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.776747+00', TIMESTAMP WITH TIME ZONE '2023-02-10 12:49:23.843686+00', 66, '{"total-tables":4,"tables-classified":0}'), +(31201, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 13:00:00.147+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:00:05.067+00', 4920, NULL), +(31202, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 13:00:00.159+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:00:04.775+00', 4616, NULL), +(31203, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:00.280572+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.751115+00', 5470, NULL), +(31204, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:00.284189+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:01.139338+00', 855, '{"timezone-id":"UTC"}'), +(31205, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:01.145419+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:01.575878+00', 430, '{"updated-tables":0,"total-tables":8}'), +(31206, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:01.576099+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.029117+00', 3453, '{"total-fields":71,"updated-fields":0}'), +(31207, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.029236+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.181955+00', 152, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31208, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.18234+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.750856+00', 568, NULL), +(31209, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.949976+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:06.340253+00', 390, NULL), +(31210, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:05.949997+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:06.262226+00', 312, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31211, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:06.262336+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:06.291328+00', 28, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31212, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:06.291871+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:19:06.340025+00', 48, '{"total-tables":8,"tables-classified":0}'), +(31213, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:01.034295+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.383146+00', 17348, NULL), +(31214, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:01.052821+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:01.117225+00', 64, '{"timezone-id":null}'), +(31215, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:01.123047+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:02.227895+00', 1104, '{"updated-tables":0,"total-tables":4}'), +(31216, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:02.228007+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.339149+00', 16111, '{"total-fields":39,"updated-fields":0}'), +(31217, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.339262+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.373952+00', 34, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31218, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.374016+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.383082+00', 9, NULL), +(31219, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.768062+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.876791+00', 108, NULL), +(31220, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.768139+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.83389+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31221, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.833965+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.844488+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(31222, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.844663+00', TIMESTAMP WITH TIME ZONE '2023-02-10 13:49:18.87672+00', 32, '{"total-tables":4,"tables-classified":0}'), +(31223, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 14:00:00.174+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:00:03.55+00', 3376, NULL), +(31224, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 14:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:00:03.711+00', 3553, NULL), +(31225, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:00.227616+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:07.998488+00', 7770, NULL), +(31226, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:00.234239+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:01.402086+00', 1167, '{"timezone-id":"UTC"}'), +(31227, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:01.406087+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:02.133786+00', 727, '{"updated-tables":0,"total-tables":8}'), +(31228, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:02.134588+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:07.454294+00', 5319, '{"total-fields":71,"updated-fields":0}'), +(31229, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:07.454587+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:07.611432+00', 156, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31230, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:07.611531+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:07.998444+00', 386, NULL), +(31231, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.06154+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.184844+00', 123, NULL), +(31232, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.061559+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.129334+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31233, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.129433+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.143586+00', 14, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31234, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.143939+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:19:08.184773+00', 40, '{"total-tables":8,"tables-classified":0}'), +(31235, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:00.780886+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.221986+00', 15441, NULL), +(31236, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:00.793453+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:00.817483+00', 24, '{"timezone-id":null}'), +(31237, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:00.823787+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:01.403618+00', 579, '{"updated-tables":0,"total-tables":4}'), +(31238, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:01.40393+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.20362+00', 14799, '{"total-fields":39,"updated-fields":0}'), +(31239, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.203764+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.216149+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31240, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.216212+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.221935+00', 5, NULL), +(31241, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.430564+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.637398+00', 206, NULL), +(31242, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.430594+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.595181+00', 164, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31243, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.595271+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.607024+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(31244, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.607121+00', TIMESTAMP WITH TIME ZONE '2023-02-10 14:49:16.637349+00', 30, '{"total-tables":4,"tables-classified":0}'), +(31245, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 15:00:00.183+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:00:05.272+00', 5089, NULL), +(31246, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 15:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:00:05.72+00', 5552, NULL), +(31247, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:00.233975+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:04.687435+00', 4453, NULL), +(31248, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:00.237923+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:00.832546+00', 594, '{"timezone-id":"UTC"}'), +(31249, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:00.836739+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:01.287068+00', 450, '{"updated-tables":0,"total-tables":8}'), +(31250, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:01.28716+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:03.840634+00', 2553, '{"total-fields":71,"updated-fields":0}'), +(31251, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:03.84095+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:03.995436+00', 154, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31252, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:03.995729+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:04.687085+00', 691, NULL), +(31253, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:04.871878+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:05.146216+00', 274, NULL), +(31254, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:04.871903+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:05.079094+00', 207, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31255, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:05.079391+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:05.117101+00', 37, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31256, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:05.117503+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:19:05.146143+00', 28, '{"total-tables":8,"tables-classified":0}'), +(31257, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:01.127405+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.501963+00', 20374, NULL), +(31258, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:01.133268+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:01.199255+00', 65, '{"timezone-id":null}'), +(31259, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:01.20744+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:01.831615+00', 624, '{"updated-tables":0,"total-tables":4}'), +(31260, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:01.832129+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.436473+00', 19604, '{"total-fields":39,"updated-fields":0}'), +(31261, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.436585+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.481133+00', 44, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31262, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.481191+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.50191+00', 20, NULL), +(31263, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.816522+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.947425+00', 130, NULL), +(31264, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.816547+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.904857+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31265, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.904944+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.920256+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(31266, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.920334+00', TIMESTAMP WITH TIME ZONE '2023-02-10 15:49:21.94738+00', 27, '{"total-tables":4,"tables-classified":0}'), +(31267, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 16:00:00.158+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:00:03.735+00', 3577, NULL), +(31268, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 16:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:00:04.159+00', 4014, NULL), +(31269, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:00.172863+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.65258+00', 5479, NULL), +(31270, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:00.176698+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:00.634279+00', 457, '{"timezone-id":"UTC"}'), +(31271, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:00.635177+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:01.144394+00', 509, '{"updated-tables":0,"total-tables":8}'), +(31272, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:01.144828+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.323823+00', 4178, '{"total-fields":71,"updated-fields":0}'), +(31273, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.324621+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.462357+00', 137, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31274, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.462428+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.65255+00', 190, NULL), +(31275, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.714627+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.822344+00', 107, NULL), +(31276, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.714651+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.763526+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31277, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.763599+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.788062+00', 24, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31278, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.788448+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:19:05.822294+00', 33, '{"total-tables":8,"tables-classified":0}'), +(31279, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:01.032991+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.079461+00', 15046, NULL), +(31280, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:01.043848+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:01.085437+00', 41, '{"timezone-id":null}'), +(31281, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:01.090966+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:01.700768+00', 609, '{"updated-tables":0,"total-tables":4}'), +(31282, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:01.70106+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.054705+00', 14353, '{"total-fields":39,"updated-fields":0}'), +(31283, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.054826+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.071696+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31284, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.071773+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.079398+00', 7, NULL), +(31285, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.318657+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.424695+00', 106, NULL), +(31286, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.318684+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.3932+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31287, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.393399+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.403099+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(31288, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.40317+00', TIMESTAMP WITH TIME ZONE '2023-02-10 16:49:16.424614+00', 21, '{"total-tables":4,"tables-classified":0}'), +(31289, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 17:00:00.148+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:00:04.794+00', 4646, NULL), +(31290, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 17:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:00:05.209+00', 5073, NULL), +(31291, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:00.527478+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:05.928084+00', 5400, NULL), +(31292, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:00.531886+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:01.512346+00', 980, '{"timezone-id":"UTC"}'), +(31293, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:01.514815+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:02.026792+00', 511, '{"updated-tables":0,"total-tables":8}'), +(31294, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:02.026913+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:05.073094+00', 3046, '{"total-fields":71,"updated-fields":0}'), +(31295, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:05.073299+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:05.219016+00', 145, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31296, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:05.219377+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:05.92803+00', 708, NULL), +(31297, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.155482+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.501357+00', 345, NULL), +(31298, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.155512+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.364456+00', 208, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31299, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.364557+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.414199+00', 49, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31300, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.414893+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:19:06.50125+00', 86, '{"total-tables":8,"tables-classified":0}'), +(31301, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:00.804325+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.271858+00', 14467, NULL), +(31302, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:00.811164+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:00.836938+00', 25, '{"timezone-id":null}'), +(31303, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:00.853514+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:01.582161+00', 728, '{"updated-tables":0,"total-tables":4}'), +(31304, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:01.582529+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.256157+00', 13673, '{"total-fields":39,"updated-fields":0}'), +(31305, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.256241+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.267545+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31306, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.267625+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.271807+00', 4, NULL), +(31307, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.398296+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:18.218493+00', 2820, NULL), +(31308, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.398314+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.45969+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31309, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:15.459771+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:18.209222+00', 2749, '{"fields-classified":0,"fields-failed":0}'), +(31310, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:18.209513+00', TIMESTAMP WITH TIME ZONE '2023-02-10 17:49:18.218446+00', 8, '{"total-tables":4,"tables-classified":0}'), +(31311, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 18:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:00:04.077+00', 3900, NULL), +(31312, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 18:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:00:04.321+00', 4158, NULL), +(31313, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:00.179132+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.774023+00', 5594, NULL), +(31314, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:00.181727+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:00.773225+00', 591, '{"timezone-id":"UTC"}'), +(31315, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:00.7747+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:01.237007+00', 462, '{"updated-tables":0,"total-tables":8}'), +(31316, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:01.237776+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.572734+00', 4334, '{"total-fields":71,"updated-fields":0}'), +(31317, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.572977+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.671333+00', 98, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31318, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.671405+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.773994+00', 102, NULL), +(31319, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.834359+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.924711+00', 90, NULL), +(31320, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.83438+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.890469+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31321, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.890541+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.905336+00', 14, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31322, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.905891+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:19:05.924664+00', 18, '{"total-tables":8,"tables-classified":0}'), +(31323, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:00.923673+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.197402+00', 14273, NULL), +(31324, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:00.930973+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:00.969369+00', 38, '{"timezone-id":null}'), +(31325, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:00.975084+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:01.828016+00', 852, '{"updated-tables":0,"total-tables":4}'), +(31326, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:01.828573+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.181735+00', 13353, '{"total-fields":39,"updated-fields":0}'), +(31327, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.181838+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.193821+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31328, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.193885+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.197362+00', 3, NULL), +(31329, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.296652+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.382928+00', 86, NULL), +(31330, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.296674+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.349656+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31331, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.34973+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.361001+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(31332, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.361104+00', TIMESTAMP WITH TIME ZONE '2023-02-10 18:49:15.382881+00', 21, '{"total-tables":4,"tables-classified":0}'), +(31333, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 19:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:00:05.235+00', 5104, NULL), +(31334, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 19:00:00.132+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:00:05.104+00', 4972, NULL), +(31335, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:00.298803+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.021754+00', 4722, NULL), +(31336, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:00.302215+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:01.173758+00', 871, '{"timezone-id":"UTC"}'), +(31337, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:01.176534+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:01.651781+00', 475, '{"updated-tables":0,"total-tables":8}'), +(31338, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:01.652214+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:04.359847+00', 2707, '{"total-fields":71,"updated-fields":0}'), +(31339, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:04.359948+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:04.496523+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31340, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:04.496923+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.021368+00', 524, NULL), +(31341, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.180336+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.357026+00', 176, NULL), +(31342, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.180354+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.294723+00', 114, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31343, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.294798+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.320662+00', 25, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31344, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.321101+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:19:05.356979+00', 35, '{"total-tables":8,"tables-classified":0}'), +(31345, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:01.053146+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.89155+00', 21838, NULL), +(31346, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:01.059157+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:01.112456+00', 53, '{"timezone-id":null}'), +(31347, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:01.118435+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:01.830634+00', 712, '{"updated-tables":0,"total-tables":4}'), +(31348, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:01.830748+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.879826+00', 21049, '{"total-fields":39,"updated-fields":0}'), +(31349, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.881827+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.890519+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31350, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.890613+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.891501+00', 0, NULL), +(31351, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.962091+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.987681+00', 25, NULL), +(31352, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.962111+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.974517+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31353, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.974576+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.977434+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(31354, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.97749+00', TIMESTAMP WITH TIME ZONE '2023-02-10 19:49:22.98763+00', 10, '{"total-tables":4,"tables-classified":0}'), +(31355, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 20:00:00.119+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:00:03.767+00', 3648, NULL), +(31356, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 20:00:00.106+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:00:04.006+00', 3900, NULL), +(31357, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:00.199859+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.632579+00', 5432, NULL), +(31358, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:00.203176+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:00.877606+00', 674, '{"timezone-id":"UTC"}'), +(31359, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:00.879946+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:01.31287+00', 432, '{"updated-tables":0,"total-tables":8}'), +(31360, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:01.312997+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.152054+00', 3839, '{"total-fields":71,"updated-fields":0}'), +(31361, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.152126+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.285054+00', 132, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31362, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.285681+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.632516+00', 346, NULL), +(31363, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.71088+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.81654+00', 105, NULL), +(31364, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.710899+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.779244+00', 68, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31365, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.779306+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.795131+00', 15, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31366, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.795499+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:19:05.816488+00', 20, '{"total-tables":8,"tables-classified":0}'), +(31367, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:00.770082+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.219442+00', 14449, NULL), +(31368, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:00.775142+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:00.798122+00', 22, '{"timezone-id":null}'), +(31369, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:00.80789+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:01.723928+00', 916, '{"updated-tables":0,"total-tables":4}'), +(31370, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:01.724347+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.19879+00', 13474, '{"total-fields":39,"updated-fields":0}'), +(31371, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.198949+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.214205+00', 15, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31372, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.214294+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.219393+00', 5, NULL), +(31373, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.334221+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.425661+00', 91, NULL), +(31374, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.334243+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.383166+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31375, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.383332+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.391691+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(31376, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.391807+00', TIMESTAMP WITH TIME ZONE '2023-02-10 20:49:15.42561+00', 33, '{"total-tables":4,"tables-classified":0}'), +(31377, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:04.004+00', 3860, NULL), +(31378, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:00.165+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:03.798+00', 3633, NULL), +(31379, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:04.324352+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:14.320996+00', 9996, NULL), +(31380, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:04.329362+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:06.079919+00', 1750, '{"deleted":0}'), +(31381, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:06.097637+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:00:14.320935+00', 8223, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(31382, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:00.754141+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.265765+00', 3511, NULL), +(31383, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:00.758347+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:01.182316+00', 423, '{"timezone-id":"UTC"}'), +(31384, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:01.185264+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:01.751325+00', 566, '{"updated-tables":0,"total-tables":8}'), +(31385, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:01.751938+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:03.896943+00', 2145, '{"total-fields":71,"updated-fields":0}'), +(31386, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:03.897068+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.059689+00', 162, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31387, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.059774+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.265732+00', 205, NULL), +(31388, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.429587+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.73764+00', 308, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31389, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.429609+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.588694+00', 159, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31390, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.589041+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.644835+00', 55, '{"fields-classified":0,"fields-failed":0}'), +(31391, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.645508+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:19:04.737109+00', 91, '{"total-tables":8,"tables-classified":0}'), +(31392, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:00.8478+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.114783+00', 14266, NULL), +(31393, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:00.852919+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:00.880965+00', 28, '{"timezone-id":null}'), +(31394, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:00.886757+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:01.437702+00', 550, '{"updated-tables":0,"total-tables":4}'), +(31395, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:01.437858+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.089021+00', 13651, '{"total-fields":39,"updated-fields":0}'), +(31396, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.089135+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.106986+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31397, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.107126+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.114701+00', 7, NULL), +(31398, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.322293+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.426827+00', 104, NULL), +(31399, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.322319+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.38594+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31400, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.386065+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.39762+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(31401, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.397723+00', TIMESTAMP WITH TIME ZONE '2023-02-10 21:49:15.426743+00', 29, '{"total-tables":4,"tables-classified":0}'), +(31402, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 22:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:00:05.583+00', 5450, NULL), +(31403, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 22:00:00.146+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:00:05.407+00', 5261, NULL), +(31404, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:00.300697+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:05.661271+00', 5360, NULL), +(31405, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:00.303436+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:01.088961+00', 785, '{"timezone-id":"UTC"}'), +(31406, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:01.091018+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:01.491956+00', 400, '{"updated-tables":0,"total-tables":8}'), +(31407, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:01.492546+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:04.963946+00', 3471, '{"total-fields":71,"updated-fields":0}'), +(31408, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:04.964237+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:05.105937+00', 141, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31409, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:05.106305+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:05.661237+00', 554, NULL), +(31410, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:05.842972+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:06.073047+00', 230, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31411, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:05.843294+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:06.001808+00', 158, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31412, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:06.001888+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:06.030776+00', 28, '{"fields-classified":0,"fields-failed":0}'), +(31413, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:06.031341+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:19:06.072995+00', 41, '{"total-tables":8,"tables-classified":0}'), +(31414, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:01.147065+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.031852+00', 18884, NULL), +(31415, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:01.152094+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:01.177584+00', 25, '{"timezone-id":null}'), +(31416, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:01.182176+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:02.025408+00', 843, '{"updated-tables":0,"total-tables":4}'), +(31417, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:02.025734+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.022844+00', 17997, '{"total-fields":39,"updated-fields":0}'), +(31418, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.023216+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.029225+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31419, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.029291+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.031747+00', 2, NULL), +(31420, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.250036+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.395624+00', 145, NULL), +(31421, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.250056+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.333537+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31422, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.333675+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.35047+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(31423, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.350714+00', TIMESTAMP WITH TIME ZONE '2023-02-10 22:49:20.395579+00', 44, '{"total-tables":4,"tables-classified":0}'), +(31424, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 23:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:00:02.952+00', 2740, NULL), +(31425, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-10 23:00:00.2+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:00:03.208+00', 3008, NULL), +(31426, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:00.282586+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.610396+00', 7327, NULL), +(31427, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:00.288177+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:00.974166+00', 685, '{"timezone-id":"UTC"}'), +(31428, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:00.976486+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:01.435259+00', 458, '{"updated-tables":0,"total-tables":8}'), +(31429, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:01.435689+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.138916+00', 5703, '{"total-fields":71,"updated-fields":0}'), +(31430, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.139154+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.261735+00', 122, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31431, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.26228+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.610363+00', 348, NULL), +(31432, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.681195+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.792627+00', 111, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31433, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.681215+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.737353+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31434, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.737417+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.753434+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(31435, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.753806+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:19:07.792581+00', 38, '{"total-tables":8,"tables-classified":0}'), +(31436, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:01.218056+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:20.996004+00', 19777, NULL), +(31437, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:01.228811+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:01.271482+00', 42, '{"timezone-id":null}'), +(31438, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:01.280368+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:02.515219+00', 1234, '{"updated-tables":0,"total-tables":4}'), +(31439, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:02.524542+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:20.953171+00', 18428, '{"total-fields":39,"updated-fields":0}'), +(31440, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:20.95335+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:20.989682+00', 36, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31441, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:20.989796+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:20.995864+00', 6, NULL), +(31442, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.15512+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.274384+00', 119, NULL), +(31443, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.155143+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.231837+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31444, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.232116+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.242807+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(31445, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.242956+00', TIMESTAMP WITH TIME ZONE '2023-02-10 23:49:21.2743+00', 31, '{"total-tables":4,"tables-classified":0}'), +(31446, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 00:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:00:14.468+00', 14267, NULL), +(31447, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 00:00:00.183+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:00:15.503+00', 15320, NULL), +(31448, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:00.367278+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.027302+00', 7660, NULL), +(31449, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:00.384867+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:01.715579+00', 1330, '{"timezone-id":"UTC"}'), +(31450, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:01.719931+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:02.503174+00', 783, '{"updated-tables":0,"total-tables":8}'), +(31451, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:02.503961+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:07.050808+00', 4546, '{"total-fields":71,"updated-fields":0}'), +(31452, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:07.051099+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:07.275478+00', 224, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31453, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:07.275848+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.027249+00', 751, NULL), +(31454, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.31156+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:09.049889+00', 738, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31455, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.3116+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.725115+00', 413, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31456, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.726355+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.79449+00', 68, '{"fields-classified":0,"fields-failed":0}'), +(31457, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:08.795045+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:19:09.036755+00', 241, '{"total-tables":8,"tables-classified":0}'), +(31458, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:01.972023+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.339779+00', 22367, NULL), +(31459, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:01.986958+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:02.078906+00', 91, '{"timezone-id":null}'), +(31460, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:02.090785+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:03.228079+00', 1137, '{"updated-tables":0,"total-tables":4}'), +(31461, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:03.228609+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.312011+00', 21083, '{"total-fields":39,"updated-fields":0}'), +(31462, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.312778+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.332106+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31463, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.332199+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.33971+00', 7, NULL), +(31464, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.592305+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.797243+00', 204, NULL), +(31465, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.592326+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.708405+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31466, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.708602+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.749245+00', 40, '{"fields-classified":0,"fields-failed":0}'), +(31467, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.749416+00', TIMESTAMP WITH TIME ZONE '2023-02-11 00:49:24.797131+00', 47, '{"total-tables":4,"tables-classified":0}'), +(31468, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 01:00:00.63+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:00:07.459+00', 6829, NULL), +(31469, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 01:00:00.214+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:00:07.927+00', 7713, NULL), +(31470, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:00.266314+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.228728+00', 6962, NULL), +(31471, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:00.269903+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:00.941606+00', 671, '{"timezone-id":"UTC"}'), +(31472, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:00.94418+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:01.61376+00', 669, '{"updated-tables":0,"total-tables":8}'), +(31473, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:01.614609+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:06.714432+00', 5099, '{"total-fields":71,"updated-fields":0}'), +(31474, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:06.714519+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:06.854132+00', 139, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31475, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:06.854654+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.22869+00', 374, NULL), +(31476, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.293409+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.430846+00', 137, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31477, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.29343+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.360857+00', 67, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31478, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.361102+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.376949+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(31479, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.382356+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:19:07.430782+00', 48, '{"total-tables":8,"tables-classified":0}'), +(31480, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:01.125006+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.196492+00', 19071, NULL), +(31481, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:01.134883+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:01.195277+00', 60, '{"timezone-id":null}'), +(31482, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:01.207533+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:02.656366+00', 1448, '{"updated-tables":0,"total-tables":4}'), +(31483, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:02.65667+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.18016+00', 17523, '{"total-fields":39,"updated-fields":0}'), +(31484, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.180355+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.191635+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31485, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.1917+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.196381+00', 4, NULL), +(31486, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.325275+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.444975+00', 119, NULL), +(31487, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.325296+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.39771+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31488, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.397795+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.418704+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(31489, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.418787+00', TIMESTAMP WITH TIME ZONE '2023-02-11 01:49:20.444921+00', 26, '{"total-tables":4,"tables-classified":0}'), +(31490, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:02.511+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:09.501+00', 6990, NULL), +(31491, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:02.464+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:09.501+00', 7037, NULL), +(31492, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:10.462907+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:30.901537+00', 20438, NULL), +(31493, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:10.476088+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:13.635855+00', 3159, '{"deleted":0}'), +(31494, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:13.731587+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:00:30.901467+00', 17169, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(31495, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:00.71734+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.154074+00', 5436, NULL), +(31496, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:00.72152+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:02.225315+00', 1503, '{"timezone-id":"UTC"}'), +(31497, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:02.231201+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:02.973965+00', 742, '{"updated-tables":0,"total-tables":8}'), +(31498, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:02.974502+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:05.765887+00', 2791, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31499, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:05.765951+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:05.886484+00', 120, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31500, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:05.886592+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.154034+00', 267, NULL), +(31501, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.479096+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.667516+00', 188, NULL), +(31502, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.479117+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.612318+00', 133, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31503, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.612623+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.638695+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(31504, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.639265+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:19:06.667378+00', 28, '{"total-tables":8,"tables-classified":0}'), +(31505, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:01.042494+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.656026+00', 27613, NULL), +(31506, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:01.060383+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:01.099897+00', 39, '{"timezone-id":null}'), +(31507, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:01.107219+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:02.168705+00', 1061, '{"updated-tables":0,"total-tables":4}'), +(31508, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:02.169532+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.624291+00', 26454, '{"total-fields":39,"updated-fields":0}'), +(31509, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.62452+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.650574+00', 26, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31510, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.650695+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.65596+00', 5, NULL), +(31511, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.910504+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:29.313652+00', 403, NULL), +(31512, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:28.910527+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:29.18074+00', 270, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31513, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:29.180855+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:29.247863+00', 67, '{"fields-classified":0,"fields-failed":0}'), +(31514, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:29.247971+00', TIMESTAMP WITH TIME ZONE '2023-02-11 02:49:29.313514+00', 65, '{"total-tables":4,"tables-classified":0}'), +(31515, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 03:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:00:06.079+00', 5887, NULL), +(31516, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 03:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:00:06.427+00', 6260, NULL), +(31517, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:00.30379+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.679134+00', 9375, NULL), +(31518, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:00.316922+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:01.470089+00', 1153, '{"timezone-id":"UTC"}'), +(31519, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:01.473008+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:02.169651+00', 696, '{"updated-tables":0,"total-tables":8}'), +(31520, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:02.17012+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:08.816542+00', 6646, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31521, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:08.817013+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.013523+00', 196, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31522, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.013625+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.679091+00', 665, NULL), +(31523, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.760292+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.902154+00', 141, NULL), +(31524, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.760311+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.836627+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31525, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.836875+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.861648+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(31526, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.862212+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:19:09.902102+00', 39, '{"total-tables":8,"tables-classified":0}'), +(31527, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:00.577481+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.514877+00', 16937, NULL), +(31528, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:00.579269+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:00.587467+00', 8, '{"timezone-id":null}'), +(31529, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:00.589951+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:01.603412+00', 1013, '{"updated-tables":0,"total-tables":4}'), +(31530, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:01.603954+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.50733+00', 15903, '{"total-fields":39,"updated-fields":0}'), +(31531, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.507427+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.512575+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31532, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.51265+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.514826+00', 2, NULL), +(31533, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.633108+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.683292+00', 50, NULL), +(31534, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.633133+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.668595+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31535, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.668668+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.673111+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(31536, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.673193+00', TIMESTAMP WITH TIME ZONE '2023-02-11 03:49:17.683238+00', 10, '{"total-tables":4,"tables-classified":0}'), +(31537, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 04:00:00.143+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:00:04.188+00', 4045, NULL), +(31538, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 04:00:00.138+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:00:04.602+00', 4464, NULL), +(31539, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:00.536851+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:06.63608+00', 6099, NULL), +(31540, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:00.5422+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:01.506741+00', 964, '{"timezone-id":"UTC"}'), +(31541, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:01.510155+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:02.10265+00', 592, '{"updated-tables":0,"total-tables":8}'), +(31542, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:02.103285+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:05.671417+00', 3568, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31543, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:05.671525+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:05.85314+00', 181, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31544, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:05.853623+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:06.636019+00', 782, NULL), +(31545, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:06.867489+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:07.272592+00', 405, NULL), +(31546, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:06.867732+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:07.147491+00', 279, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31547, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:07.147888+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:07.209143+00', 61, '{"fields-classified":0,"fields-failed":0}'), +(31548, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:07.209658+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:19:07.272244+00', 62, '{"total-tables":8,"tables-classified":0}'), +(31549, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:01.098691+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.559622+00', 21460, NULL), +(31550, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:01.104808+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:01.137388+00', 32, '{"timezone-id":null}'), +(31551, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:01.143616+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:01.969282+00', 825, '{"updated-tables":0,"total-tables":4}'), +(31552, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:01.969703+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.55054+00', 20580, '{"total-fields":39,"updated-fields":0}'), +(31553, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.551245+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.55851+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31554, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.558576+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.55959+00', 1, NULL), +(31555, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.629899+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.787409+00', 157, NULL), +(31556, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.629917+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.758028+00', 128, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31557, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.758117+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.762659+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(31558, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.762842+00', TIMESTAMP WITH TIME ZONE '2023-02-11 04:49:22.787349+00', 24, '{"total-tables":4,"tables-classified":0}'), +(31559, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 05:00:00.431+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:00:03.907+00', 3476, NULL), +(31560, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 05:00:00.182+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:00:03.91+00', 3728, NULL), +(31561, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:00.278272+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.647717+00', 6369, NULL), +(31562, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:00.28299+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:00.846329+00', 563, '{"timezone-id":"UTC"}'), +(31563, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:00.848139+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:01.349137+00', 500, '{"updated-tables":0,"total-tables":8}'), +(31564, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:01.349872+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:04.654064+00', 3304, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31565, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:04.654511+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:04.831419+00', 176, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31566, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:04.831881+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.647678+00', 1815, NULL), +(31567, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.721382+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.829471+00', 108, NULL), +(31568, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.721404+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.780489+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31569, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.780608+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.796345+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(31570, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.797034+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:19:06.829013+00', 31, '{"total-tables":8,"tables-classified":0}'), +(31571, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:00.807607+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.753486+00', 14945, NULL), +(31572, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:00.8136+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:00.844165+00', 30, '{"timezone-id":null}'), +(31573, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:00.854882+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:01.802712+00', 947, '{"updated-tables":0,"total-tables":4}'), +(31574, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:01.80338+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.738387+00', 13935, '{"total-fields":39,"updated-fields":0}'), +(31575, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.738466+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.749729+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31576, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.749801+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.753444+00', 3, NULL), +(31577, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.839648+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.891941+00', 52, NULL), +(31578, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.839669+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.871171+00', 31, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31579, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.871264+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.876011+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(31580, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.876102+00', TIMESTAMP WITH TIME ZONE '2023-02-11 05:49:15.891886+00', 15, '{"total-tables":4,"tables-classified":0}'), +(31581, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 06:00:00.16+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:00:05.832+00', 5672, NULL), +(31582, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 06:00:00.125+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:00:06.141+00', 6016, NULL), +(31583, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:00.200619+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.25647+00', 5055, NULL), +(31584, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:00.204309+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:00.955645+00', 751, '{"timezone-id":"UTC"}'), +(31585, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:00.958431+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:01.412694+00', 454, '{"updated-tables":0,"total-tables":8}'), +(31586, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:01.413148+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:04.474264+00', 3061, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31587, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:04.474663+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:04.625055+00', 150, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31588, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:04.6253+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.256379+00', 631, NULL), +(31589, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.389686+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.566549+00', 176, NULL), +(31590, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.389708+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.505682+00', 115, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31591, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.50576+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.53263+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(31592, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.532923+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:19:05.566482+00', 33, '{"total-tables":8,"tables-classified":0}'), +(31593, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:01.096008+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.471252+00', 23375, NULL), +(31594, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:01.10808+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:01.163062+00', 54, '{"timezone-id":null}'), +(31595, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:01.167919+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:02.015597+00', 847, '{"updated-tables":0,"total-tables":4}'), +(31596, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:02.016034+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.468943+00', 22452, '{"total-fields":39,"updated-fields":0}'), +(31597, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.469073+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.470601+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31598, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.470658+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.47123+00', 0, NULL), +(31599, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.529077+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.588693+00', 59, NULL), +(31600, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.529097+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.555315+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31601, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.55539+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.571599+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(31602, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.571669+00', TIMESTAMP WITH TIME ZONE '2023-02-11 06:49:24.588653+00', 16, '{"total-tables":4,"tables-classified":0}'), +(31603, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 07:00:00.223+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:00:03.849+00', 3626, NULL), +(31604, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 07:00:00.219+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:00:04.282+00', 4063, NULL), +(31605, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:00.387297+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.708681+00', 7321, NULL), +(31606, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:00.396476+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:01.409324+00', 1012, '{"timezone-id":"UTC"}'), +(31607, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:01.410706+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:02.232569+00', 821, '{"updated-tables":0,"total-tables":8}'), +(31608, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:02.233007+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.29323+00', 5060, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31609, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.293811+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.449422+00', 155, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31610, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.449953+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.708651+00', 258, NULL), +(31611, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.779232+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.885167+00', 105, NULL), +(31612, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.779253+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.845126+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31613, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.845218+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.861991+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(31614, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.862322+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:19:07.885115+00', 22, '{"total-tables":8,"tables-classified":0}'), +(31615, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:01.79026+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.885167+00', 15094, NULL), +(31616, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:01.801516+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:01.844704+00', 43, '{"timezone-id":null}'), +(31617, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:01.850284+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:02.71888+00', 868, '{"updated-tables":0,"total-tables":4}'), +(31618, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:02.71898+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.878845+00', 14159, '{"total-fields":39,"updated-fields":0}'), +(31619, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.878948+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.882887+00', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31620, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.882955+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.885124+00', 2, NULL), +(31621, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.972884+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:17.019326+00', 46, NULL), +(31622, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:16.972903+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:17.003582+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31623, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:17.003681+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:17.008475+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(31624, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:17.008571+00', TIMESTAMP WITH TIME ZONE '2023-02-11 07:49:17.019272+00', 10, '{"total-tables":4,"tables-classified":0}'), +(31625, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 08:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:00:04.082+00', 3914, NULL), +(31626, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 08:00:00.168+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:00:04.542+00', 4374, NULL), +(31627, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:00.337197+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.04609+00', 8708, NULL), +(31628, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:00.345789+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:01.526908+00', 1181, '{"timezone-id":"UTC"}'), +(31629, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:01.530723+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:02.19852+00', 667, '{"updated-tables":0,"total-tables":8}'), +(31630, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:02.19897+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:08.148352+00', 5949, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31631, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:08.148497+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:08.365589+00', 217, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31632, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:08.366175+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.046012+00', 679, NULL), +(31633, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.164405+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.8463+00', 681, NULL), +(31634, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.164462+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.241857+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31635, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.24197+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.796277+00', 554, '{"fields-classified":0,"fields-failed":0}'), +(31636, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.796829+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:19:09.846234+00', 49, '{"total-tables":8,"tables-classified":0}'), +(31637, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:01.727174+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.62301+00', 13895, NULL), +(31638, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:01.737238+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:01.756178+00', 18, '{"timezone-id":null}'), +(31639, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:01.760334+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:02.559031+00', 798, '{"updated-tables":0,"total-tables":4}'), +(31640, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:02.559439+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.614222+00', 13054, '{"total-fields":39,"updated-fields":0}'), +(31641, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.614301+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.619392+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31642, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.619549+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.622957+00', 3, NULL), +(31643, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.702381+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.743973+00', 41, NULL), +(31644, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.702401+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.728911+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31645, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.728982+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.734183+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(31646, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.734243+00', TIMESTAMP WITH TIME ZONE '2023-02-11 08:49:15.743925+00', 9, '{"total-tables":4,"tables-classified":0}'), +(31647, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 09:00:00.103+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:00:04.301+00', 4198, NULL), +(31648, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 09:00:00.074+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:00:04.545+00', 4471, NULL), +(31649, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:00.695188+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.215073+00', 7519, NULL), +(31650, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:00.700516+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:01.647958+00', 947, '{"timezone-id":"UTC"}'), +(31651, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:01.650797+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:02.329083+00', 678, '{"updated-tables":0,"total-tables":8}'), +(31652, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:02.329657+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:07.877776+00', 5548, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31653, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:07.878078+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.035514+00', 157, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31654, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.035905+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.215049+00', 179, NULL), +(31655, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.290582+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.444997+00', 154, NULL), +(31656, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.290605+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.361436+00', 70, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31657, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.361811+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.393092+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(31658, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.396033+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:19:08.444739+00', 48, '{"total-tables":8,"tables-classified":0}'), +(31659, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:01.608363+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.599369+00', 21991, NULL), +(31660, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:01.616809+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:01.656931+00', 40, '{"timezone-id":null}'), +(31661, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:01.662815+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:02.952723+00', 1289, '{"updated-tables":0,"total-tables":4}'), +(31662, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:02.952846+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.532458+00', 20579, '{"total-fields":39,"updated-fields":0}'), +(31663, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.532577+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.593376+00', 60, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31664, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.593579+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.599314+00', 5, NULL), +(31665, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.894078+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:24.117506+00', 223, NULL), +(31666, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:23.8941+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:24.010932+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31667, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:24.011108+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:24.074538+00', 63, '{"fields-classified":0,"fields-failed":0}'), +(31668, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:24.074618+00', TIMESTAMP WITH TIME ZONE '2023-02-11 09:49:24.117443+00', 42, '{"total-tables":4,"tables-classified":0}'), +(31669, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 10:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:00:08.003+00', 7858, NULL), +(31670, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 10:00:00.152+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:00:07.6+00', 7448, NULL), +(31671, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:00.426598+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.163401+00', 7736, NULL), +(31672, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:00.444237+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:01.779682+00', 1335, '{"timezone-id":"UTC"}'), +(31673, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:01.781352+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:02.4631+00', 681, '{"updated-tables":0,"total-tables":8}'), +(31674, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:02.463484+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:07.375061+00', 4911, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31675, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:07.375529+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:07.53815+00', 162, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31676, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:07.538527+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.163349+00', 624, NULL), +(31677, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.387811+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.70992+00', 322, NULL), +(31678, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.387888+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.668346+00', 280, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31679, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.668471+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.685353+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(31680, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.685776+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:19:08.709862+00', 24, '{"total-tables":8,"tables-classified":0}'), +(31681, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:01.278779+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.004508+00', 22725, NULL), +(31682, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:01.284951+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:01.368492+00', 83, '{"timezone-id":null}'), +(31683, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:01.379871+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:02.279964+00', 900, '{"updated-tables":0,"total-tables":4}'), +(31684, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:02.280361+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:23.998478+00', 21718, '{"total-fields":39,"updated-fields":0}'), +(31685, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:23.998548+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.003295+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31686, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.003356+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.004483+00', 1, NULL), +(31687, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.067424+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.137261+00', 69, NULL), +(31688, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.067443+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.105534+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31689, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.105611+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.115048+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(31690, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.115124+00', TIMESTAMP WITH TIME ZONE '2023-02-11 10:49:24.137215+00', 22, '{"total-tables":4,"tables-classified":0}'), +(31691, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 11:00:00.167+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:00:06.204+00', 6037, NULL), +(31692, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 11:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:00:06.538+00', 6384, NULL), +(31693, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:00.222266+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.350647+00', 7128, NULL), +(31694, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:00.226523+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:00.821957+00', 595, '{"timezone-id":"UTC"}'), +(31695, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:00.823955+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:01.335935+00', 511, '{"updated-tables":0,"total-tables":8}'), +(31696, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:01.336266+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:06.800366+00', 5464, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31697, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:06.800727+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:06.958574+00', 157, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31698, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:06.958675+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.350608+00', 391, NULL), +(31699, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.465399+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.609682+00', 144, NULL), +(31700, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.46542+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.575361+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31701, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.575425+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.589496+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(31702, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.589983+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:19:07.609629+00', 19, '{"total-tables":8,"tables-classified":0}'), +(31703, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:01.03199+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.191041+00', 19159, NULL), +(31704, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:01.039215+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:01.080257+00', 41, '{"timezone-id":null}'), +(31705, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:01.090574+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:02.028834+00', 938, '{"updated-tables":0,"total-tables":4}'), +(31706, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:02.029153+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.123604+00', 18094, '{"total-fields":39,"updated-fields":0}'), +(31707, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.123723+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.174176+00', 50, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31708, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.174284+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.190975+00', 16, NULL), +(31709, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.390382+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.535674+00', 145, NULL), +(31710, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.390424+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.485944+00', 95, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31711, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.48604+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.504676+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(31712, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.504753+00', TIMESTAMP WITH TIME ZONE '2023-02-11 11:49:20.53562+00', 30, '{"total-tables":4,"tables-classified":0}'), +(31713, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 12:00:00.236+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:00:08.34+00', 8104, NULL), +(31714, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 12:00:00.245+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:00:08.34+00', 8095, NULL), +(31715, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:00.1482+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.62648+00', 5478, NULL), +(31716, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:00.160766+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:00.831905+00', 671, '{"timezone-id":"UTC"}'), +(31717, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:00.834456+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:01.360114+00', 525, '{"updated-tables":0,"total-tables":8}'), +(31718, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:01.36047+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.236644+00', 3876, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31719, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.236953+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.383241+00', 146, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31720, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.38351+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.626452+00', 242, NULL), +(31721, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.681209+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.837758+00', 156, NULL), +(31722, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.681233+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.736596+00', 55, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31723, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.736684+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.778959+00', 42, '{"fields-classified":0,"fields-failed":0}'), +(31724, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.779726+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:19:05.837697+00', 57, '{"total-tables":8,"tables-classified":0}'), +(31725, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:49:07.565556+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:23.94753+00', 76381, NULL), +(31726, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:49:07.587773+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:49:07.761507+00', 173, '{"timezone-id":null}'), +(31727, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:49:07.820885+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:49:09.414672+00', 1593, '{"updated-tables":0,"total-tables":4}'), +(31728, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:49:09.415271+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:23.901873+00', 74486, '{"total-fields":39,"updated-fields":0}'), +(31729, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:23.903378+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:23.944754+00', 41, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31730, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:23.94483+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:23.947386+00', 2, NULL), +(31731, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.033649+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.1106+00', 76, NULL), +(31732, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.03367+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.087955+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31733, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.088037+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.096054+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(31734, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.096218+00', TIMESTAMP WITH TIME ZONE '2023-02-11 12:50:24.110523+00', 14, '{"total-tables":4,"tables-classified":0}'), +(31735, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 13:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:00:05.183+00', 5029, NULL), +(31736, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 13:00:00.144+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:00:05.628+00', 5484, NULL), +(31737, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:00.254215+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.845406+00', 7591, NULL), +(31738, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:00.259841+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:00.863533+00', 603, '{"timezone-id":"UTC"}'), +(31739, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:00.865791+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:01.567842+00', 702, '{"updated-tables":0,"total-tables":8}'), +(31740, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:01.568272+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.332632+00', 5764, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31741, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.332723+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.505489+00', 172, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31742, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.505866+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.845352+00', 339, NULL), +(31743, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.91992+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:08.029906+00', 109, NULL), +(31744, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.919943+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.976942+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31745, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.977011+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.995101+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(31746, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:07.995424+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:19:08.029857+00', 34, '{"total-tables":8,"tables-classified":0}'), +(31747, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:02.292274+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.267337+00', 21975, NULL), +(31748, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:02.322757+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:02.371689+00', 48, '{"timezone-id":null}'), +(31749, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:02.388517+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:03.577301+00', 1188, '{"updated-tables":0,"total-tables":4}'), +(31750, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:03.57743+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.258255+00', 20680, '{"total-fields":39,"updated-fields":0}'), +(31751, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.258375+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.265113+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31752, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.265226+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.267258+00', 2, NULL), +(31753, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.39939+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.471041+00', 71, NULL), +(31754, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.399417+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.451751+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31755, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.451879+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.457341+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(31756, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.457452+00', TIMESTAMP WITH TIME ZONE '2023-02-11 13:49:24.470954+00', 13, '{"total-tables":4,"tables-classified":0}'), +(31757, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 14:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:00:09.141+00', 8966, NULL), +(31758, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 14:00:00.17+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:00:09.587+00', 9417, NULL), +(31759, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:00.264588+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.138043+00', 7873, NULL), +(31760, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:00.269411+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:01.35129+00', 1081, '{"timezone-id":"UTC"}'), +(31761, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:01.353856+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:02.526196+00', 1172, '{"updated-tables":0,"total-tables":8}'), +(31762, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:02.526633+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:07.268824+00', 4742, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31763, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:07.269167+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:07.423445+00', 154, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31764, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:07.423724+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.137995+00', 714, NULL), +(31765, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.328992+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.643038+00', 314, NULL), +(31766, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.329535+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.562229+00', 232, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31767, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.562877+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.583315+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(31768, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.583601+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:19:08.642979+00', 59, '{"total-tables":8,"tables-classified":0}'), +(31769, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:01.543838+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.251759+00', 24707, NULL), +(31770, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:01.557583+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:01.588015+00', 30, '{"timezone-id":null}'), +(31771, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:01.599291+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:02.983941+00', 1384, '{"updated-tables":0,"total-tables":4}'), +(31772, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:02.984359+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.224488+00', 23240, '{"total-fields":39,"updated-fields":0}'), +(31773, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.2254+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.244566+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31774, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.2447+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.251696+00', 6, NULL), +(31775, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.445827+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.632742+00', 186, NULL), +(31776, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.445849+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.570237+00', 124, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31777, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.572561+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.592162+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(31778, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.592283+00', TIMESTAMP WITH TIME ZONE '2023-02-11 14:49:26.632669+00', 40, '{"total-tables":4,"tables-classified":0}'), +(31779, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 15:00:00.311+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:00:08.109+00', 7798, NULL), +(31780, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 15:00:00.282+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:00:08.321+00', 8039, NULL), +(31781, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:00.323867+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.102846+00', 11778, NULL), +(31782, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:00.330215+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:01.258846+00', 928, '{"timezone-id":"UTC"}'), +(31783, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:01.261721+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:02.208544+00', 946, '{"updated-tables":0,"total-tables":8}'), +(31784, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:02.209341+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:11.314119+00', 9104, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31785, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:11.31468+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:11.631028+00', 316, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31786, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:11.631698+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.102812+00', 471, NULL), +(31787, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.274111+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.479658+00', 205, NULL), +(31788, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.274136+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.371008+00', 96, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31789, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.373364+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.416872+00', 43, '{"fields-classified":0,"fields-failed":0}'), +(31790, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.417945+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:19:12.479525+00', 61, '{"total-tables":8,"tables-classified":0}'), +(31791, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:01.786879+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:29.936211+00', 28149, NULL), +(31792, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:01.804275+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:01.928221+00', 123, '{"timezone-id":null}'), +(31793, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:01.942451+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:03.408916+00', 1466, '{"updated-tables":0,"total-tables":4}'), +(31794, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:03.409225+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:29.904974+00', 26495, '{"total-fields":39,"updated-fields":0}'), +(31795, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:29.905099+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:29.929492+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31796, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:29.929559+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:29.936154+00', 6, NULL), +(31797, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.339587+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.585952+00', 246, NULL), +(31798, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.339616+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.484741+00', 145, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31799, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.484822+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.49234+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(31800, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.49241+00', TIMESTAMP WITH TIME ZONE '2023-02-11 15:49:30.585871+00', 93, '{"total-tables":4,"tables-classified":0}'), +(31801, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 16:00:00.26+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:00:10.506+00', 10246, NULL), +(31802, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 16:00:00.238+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:00:11.046+00', 10808, NULL), +(31803, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:00.312561+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.570781+00', 9258, NULL), +(31804, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:00.316753+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:01.686704+00', 1369, '{"timezone-id":"UTC"}'), +(31805, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:01.69173+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:02.5276+00', 835, '{"updated-tables":0,"total-tables":8}'), +(31806, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:02.528292+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:08.539964+00', 6011, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31807, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:08.540033+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:08.774538+00', 234, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31808, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:08.774646+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.570741+00', 796, NULL), +(31809, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.690312+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.903372+00', 213, NULL), +(31810, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.690335+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.836653+00', 146, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31811, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.836809+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.855072+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(31812, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.855464+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:19:09.901075+00', 45, '{"total-tables":8,"tables-classified":0}'), +(31813, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:01.434605+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.74904+00', 16314, NULL), +(31814, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:01.447615+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:01.494256+00', 46, '{"timezone-id":null}'), +(31815, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:01.500547+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:02.363902+00', 863, '{"updated-tables":0,"total-tables":4}'), +(31816, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:02.36399+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.740042+00', 15376, '{"total-fields":39,"updated-fields":0}'), +(31817, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.740156+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.746309+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31818, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.746388+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.748951+00', 2, NULL), +(31819, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.855008+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.909828+00', 54, NULL), +(31820, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.855036+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.896375+00', 41, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31821, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.896481+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.901493+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(31822, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.901563+00', TIMESTAMP WITH TIME ZONE '2023-02-11 16:49:17.90978+00', 8, '{"total-tables":4,"tables-classified":0}'), +(31823, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 17:00:00.216+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:00:07.2+00', 6984, NULL), +(31824, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 17:00:00.216+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:00:07.984+00', 7768, NULL), +(31825, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:00.611018+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.824384+00', 9213, NULL), +(31826, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:00.618551+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:02.032873+00', 1414, '{"timezone-id":"UTC"}'), +(31827, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:02.053717+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:02.857585+00', 803, '{"updated-tables":0,"total-tables":8}'), +(31828, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:02.858362+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.415286+00', 6556, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31829, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.41566+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.58087+00', 165, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31830, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.581062+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.824355+00', 243, NULL), +(31831, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.90363+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:10.060658+00', 157, NULL), +(31832, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.903651+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.996302+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31833, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:09.997505+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:10.034765+00', 37, '{"fields-classified":0,"fields-failed":0}'), +(31834, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:10.035273+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:19:10.06058+00', 25, '{"total-tables":8,"tables-classified":0}'), +(31835, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:01.770595+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:26.985562+00', 25214, NULL), +(31836, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:01.78288+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:01.828511+00', 45, '{"timezone-id":null}'), +(31837, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:01.835591+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:02.929426+00', 1093, '{"updated-tables":0,"total-tables":4}'), +(31838, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:02.929545+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:26.973432+00', 24043, '{"total-fields":39,"updated-fields":0}'), +(31839, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:26.973541+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:26.980547+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31840, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:26.980686+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:26.98549+00', 4, NULL), +(31841, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.095446+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.206173+00', 110, NULL), +(31842, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.095467+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.17176+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31843, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.171868+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.181472+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(31844, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.181553+00', TIMESTAMP WITH TIME ZONE '2023-02-11 17:49:27.206115+00', 24, '{"total-tables":4,"tables-classified":0}'), +(31845, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 18:00:00.162+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:00:08.458+00', 8296, NULL), +(31846, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 18:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:00:08.913+00', 8772, NULL), +(31847, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:00.352471+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:08.323152+00', 7970, NULL), +(31848, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:00.360602+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:01.763669+00', 1403, '{"timezone-id":"UTC"}'), +(31849, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:01.765854+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:02.371556+00', 605, '{"updated-tables":0,"total-tables":8}'), +(31850, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:02.372091+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:08.103326+00', 5731, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31851, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:08.103424+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:08.156944+00', 53, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31852, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:08.157009+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:08.323112+00', 166, NULL), +(31853, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.19794+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.348359+00', 150, NULL), +(31854, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.197965+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.290088+00', 92, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31855, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.290274+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.315002+00', 24, '{"fields-classified":0,"fields-failed":0}'), +(31856, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.31517+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:19:09.348269+00', 33, '{"total-tables":8,"tables-classified":0}'), +(31857, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:01.796255+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.159683+00', 20363, NULL), +(31858, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:01.799382+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:01.828488+00', 29, '{"timezone-id":null}'), +(31859, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:01.854252+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:02.985079+00', 1130, '{"updated-tables":0,"total-tables":4}'), +(31860, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:02.985407+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.136013+00', 19150, '{"total-fields":39,"updated-fields":0}'), +(31861, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.136611+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.145949+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31862, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.146028+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.159384+00', 13, NULL), +(31863, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.477276+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.582123+00', 104, NULL), +(31864, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.477297+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.56056+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31865, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.56086+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.568474+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(31866, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.568624+00', TIMESTAMP WITH TIME ZONE '2023-02-11 18:49:22.581906+00', 13, '{"total-tables":4,"tables-classified":0}'), +(31867, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 19:00:00.141+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:00:06.339+00', 6198, NULL), +(31868, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 19:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:00:06.372+00', 6261, NULL), +(31869, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:00.370457+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.020651+00', 13650, NULL), +(31870, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:00.388726+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:01.995243+00', 1606, '{"timezone-id":"UTC"}'), +(31871, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:02.023549+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:04.080112+00', 2056, '{"updated-tables":0,"total-tables":8}'), +(31872, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:04.080667+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:13.031265+00', 8950, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31873, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:13.031956+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:13.502112+00', 470, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31874, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:13.502209+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.020602+00', 518, NULL), +(31875, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.212467+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.402544+00', 190, NULL), +(31876, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.212543+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.351525+00', 138, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31877, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.351622+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.374875+00', 23, '{"fields-classified":0,"fields-failed":0}'), +(31878, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.375307+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:19:14.402487+00', 27, '{"total-tables":8,"tables-classified":0}'), +(31879, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:01.960863+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.606981+00', 29646, NULL), +(31880, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:01.976951+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:02.06451+00', 87, '{"timezone-id":null}'), +(31881, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:02.078848+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:03.754156+00', 1675, '{"updated-tables":0,"total-tables":4}'), +(31882, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:03.754777+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.578146+00', 27823, '{"total-fields":39,"updated-fields":0}'), +(31883, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.57827+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.601995+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31884, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.602144+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.606925+00', 4, NULL), +(31885, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.764096+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.854048+00', 89, NULL), +(31886, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.764124+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.818481+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31887, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.818549+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.827219+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(31888, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.827292+00', TIMESTAMP WITH TIME ZONE '2023-02-11 19:49:31.853962+00', 26, '{"total-tables":4,"tables-classified":0}'), +(31889, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 20:00:01.294+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:00:08.453+00', 7159, NULL), +(31890, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 20:00:01.278+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:00:08.724+00', 7446, NULL), +(31891, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:00.183272+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.409967+00', 6226, NULL), +(31892, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:00.189448+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:00.920035+00', 730, '{"timezone-id":"UTC"}'), +(31893, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:00.922774+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:01.458122+00', 535, '{"updated-tables":0,"total-tables":8}'), +(31894, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:01.458697+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:05.964964+00', 4506, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31895, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:05.965045+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.137551+00', 172, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31896, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.14525+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.409935+00', 264, NULL), +(31897, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.475426+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:07.236022+00', 760, NULL), +(31898, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.475444+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.530392+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31899, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.530457+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.550299+00', 19, '{"fields-classified":0,"fields-failed":0}'), +(31900, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:06.550729+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:19:07.235963+00', 685, '{"total-tables":8,"tables-classified":0}'), +(31901, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:01.072829+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:23.958006+00', 22885, NULL), +(31902, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:01.079915+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:01.134009+00', 54, '{"timezone-id":null}'), +(31903, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:01.14392+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:02.009184+00', 865, '{"updated-tables":0,"total-tables":4}'), +(31904, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:02.009858+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:23.906973+00', 21897, '{"total-fields":39,"updated-fields":0}'), +(31905, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:23.916367+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:23.955408+00', 39, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31906, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:23.955486+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:23.957952+00', 2, NULL), +(31907, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.336017+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.484637+00', 148, NULL), +(31908, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.336037+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.408249+00', 72, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31909, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.408352+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.429131+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(31910, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.429263+00', TIMESTAMP WITH TIME ZONE '2023-02-11 20:49:24.48456+00', 55, '{"total-tables":4,"tables-classified":0}'), +(31911, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:00.252+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:07.137+00', 6885, NULL), +(31912, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:00.212+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:07.471+00', 7259, NULL), +(31913, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:07.907375+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:26.649249+00', 18741, NULL), +(31914, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:07.909637+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:12.011888+00', 4102, '{"deleted":0}'), +(31915, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:12.016997+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:00:26.649183+00', 14632, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(31916, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:00.793944+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:10.317941+00', 9523, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31917, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:00.799404+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:01.540202+00', 740, '{"timezone-id":"UTC"}'), +(31918, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:01.544077+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:02.387519+00', 843, '{"updated-tables":0,"total-tables":8}'), +(31919, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:02.38817+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:08.939662+00', 6551, '{"total-fields":71,"updated-fields":0}'), +(31920, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:08.939761+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:09.122007+00', 182, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31921, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:09.122095+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:10.317625+00', 1195, NULL), +(31922, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:10.821888+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:11.534877+00', 712, NULL), +(31923, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:10.821909+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:11.297915+00', 476, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31924, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:11.29803+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:11.361566+00', 63, '{"fields-classified":0,"fields-failed":0}'), +(31925, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:11.362139+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:19:11.534604+00', 172, '{"total-tables":8,"tables-classified":0}'), +(31926, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:01.023584+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.127971+00', 16104, NULL), +(31927, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:01.02923+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:01.079862+00', 50, '{"timezone-id":null}'), +(31928, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:01.086709+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:02.121159+00', 1034, '{"updated-tables":0,"total-tables":4}'), +(31929, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:02.12151+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.101249+00', 14979, '{"total-fields":39,"updated-fields":0}'), +(31930, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.101361+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.125274+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31931, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.125392+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.127917+00', 2, NULL), +(31932, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.269087+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.349203+00', 80, NULL), +(31933, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.269106+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.322459+00', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31934, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.322561+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.337591+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(31935, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.337666+00', TIMESTAMP WITH TIME ZONE '2023-02-11 21:49:17.349151+00', 11, '{"total-tables":4,"tables-classified":0}'), +(31936, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 22:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:00:05.882+00', 5703, NULL), +(31937, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 22:00:00.164+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:00:06.798+00', 6634, NULL), +(31938, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:00.25974+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:06.908897+00', 6649, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31939, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:00.263102+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:01.125831+00', 862, '{"timezone-id":"UTC"}'), +(31940, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:01.128588+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:01.74554+00', 616, '{"updated-tables":0,"total-tables":8}'), +(31941, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:01.746006+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:06.395367+00', 4649, '{"total-fields":71,"updated-fields":0}'), +(31942, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:06.395903+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:06.531793+00', 135, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31943, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:06.532102+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:06.908867+00', 376, NULL), +(31944, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.011781+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.112292+00', 100, NULL), +(31945, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.011806+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.075986+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31946, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.07607+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.090701+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(31947, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.090995+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:19:07.112236+00', 21, '{"total-tables":8,"tables-classified":0}'), +(31948, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:01.568762+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.238398+00', 17669, NULL), +(31949, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:01.580335+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:01.65699+00', 76, '{"timezone-id":null}'), +(31950, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:01.665209+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:03.025425+00', 1360, '{"updated-tables":0,"total-tables":4}'), +(31951, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:03.02579+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.214678+00', 16188, '{"total-fields":39,"updated-fields":0}'), +(31952, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.214805+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.232637+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31953, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.23284+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.237707+00', 4, NULL), +(31954, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.397956+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.519151+00', 121, NULL), +(31955, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.397975+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.481641+00', 83, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31956, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.4818+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.497417+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(31957, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.49757+00', TIMESTAMP WITH TIME ZONE '2023-02-11 22:49:19.519002+00', 21, '{"total-tables":4,"tables-classified":0}'), +(31958, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 23:00:00.215+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:00:09.923+00', 9708, NULL), +(31959, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-11 23:00:00.196+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:00:11.08+00', 10884, NULL), +(31960, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:00.270828+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.5479+00', 9277, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31961, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:00.275134+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:01.686799+00', 1411, '{"timezone-id":"UTC"}'), +(31962, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:01.691024+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:02.627405+00', 936, '{"updated-tables":0,"total-tables":8}'), +(31963, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:02.627539+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:08.902697+00', 6275, '{"total-fields":71,"updated-fields":0}'), +(31964, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:08.903063+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.086057+00', 182, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31965, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.086649+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.547814+00', 461, NULL), +(31966, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.616828+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.728553+00', 111, NULL), +(31967, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.616849+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.68126+00', 64, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31968, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.681362+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.698661+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(31969, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.699918+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:19:09.728362+00', 28, '{"total-tables":8,"tables-classified":0}'), +(31970, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:01.718921+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.784981+00', 29066, NULL), +(31971, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:01.74143+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:01.822233+00', 80, '{"timezone-id":null}'), +(31972, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:01.850095+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:03.003733+00', 1153, '{"updated-tables":0,"total-tables":4}'), +(31973, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:03.003854+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.775559+00', 27771, '{"total-fields":39,"updated-fields":0}'), +(31974, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.776144+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.782998+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31975, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.783066+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.784932+00', 1, NULL), +(31976, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.908657+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:31.2731+00', 364, NULL), +(31977, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:30.90869+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:31.17399+00', 265, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31978, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:31.174084+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:31.195649+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(31979, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:31.195722+00', TIMESTAMP WITH TIME ZONE '2023-02-11 23:49:31.273034+00', 77, '{"total-tables":4,"tables-classified":0}'), +(31980, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 00:00:00.175+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:00:16.081+00', 15906, NULL), +(31981, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 00:00:00.151+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:00:16.688+00', 16537, NULL), +(31982, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:00.474584+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.572617+00', 11098, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(31983, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:00.48552+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:01.833145+00', 1347, '{"timezone-id":"UTC"}'), +(31984, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:01.835723+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:02.728374+00', 892, '{"updated-tables":0,"total-tables":8}'), +(31985, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:02.7294+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.110204+00', 8380, '{"total-fields":71,"updated-fields":0}'), +(31986, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.110742+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.289779+00', 179, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(31987, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.290958+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.572579+00', 281, NULL), +(31988, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.690176+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.824258+00', 134, NULL), +(31989, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.690199+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.769368+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(31990, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.769443+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.786431+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(31991, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.786828+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:19:11.824201+00', 37, '{"total-tables":8,"tables-classified":0}'), +(31992, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:01.762525+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.065455+00', 23302, NULL), +(31993, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:01.770248+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:01.86749+00', 97, '{"timezone-id":null}'), +(31994, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:01.898341+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:03.523626+00', 1625, '{"updated-tables":0,"total-tables":4}'), +(31995, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:03.52411+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.048688+00', 21524, '{"total-fields":39,"updated-fields":0}'), +(31996, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.048979+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.061384+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(31997, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.061444+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.065379+00', 3, NULL), +(31998, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.423897+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.532477+00', 108, NULL), +(31999, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.423919+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.487348+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32000, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.489091+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.497405+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(32001, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.497491+00', TIMESTAMP WITH TIME ZONE '2023-02-12 00:49:25.531422+00', 33, '{"total-tables":4,"tables-classified":0}'), +(32002, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 01:00:05.126+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:00:13.377+00', 8251, NULL), +(32003, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 01:00:05.06+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:00:14.013+00', 8953, NULL), +(32004, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:00.292911+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.116803+00', 7823, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32005, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:00.300293+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:01.67209+00', 1371, '{"timezone-id":"UTC"}'), +(32006, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:01.677537+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:02.416688+00', 739, '{"updated-tables":0,"total-tables":8}'), +(32007, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:02.416807+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:07.267078+00', 4850, '{"total-fields":71,"updated-fields":0}'), +(32008, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:07.267159+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:07.425595+00', 158, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32009, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:07.426111+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.116749+00', 690, NULL), +(32010, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.235797+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:09.617865+00', 1382, NULL), +(32011, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.235818+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.37788+00', 142, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32012, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.377983+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.399856+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(32013, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:08.400339+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:19:09.617667+00', 1217, '{"total-tables":8,"tables-classified":0}'), +(32014, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:01.210726+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.28016+00', 24069, NULL), +(32015, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:01.214588+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:01.229899+00', 15, '{"timezone-id":null}'), +(32016, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:01.233477+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:02.517997+00', 1284, '{"updated-tables":0,"total-tables":4}'), +(32017, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:02.518474+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.227919+00', 22709, '{"total-fields":39,"updated-fields":0}'), +(32018, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.228035+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.260443+00', 32, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32019, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.260511+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.2801+00', 19, NULL), +(32020, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.527229+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.757921+00', 230, NULL), +(32021, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.52725+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.643369+00', 116, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32022, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.643475+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.658578+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(32023, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.658729+00', TIMESTAMP WITH TIME ZONE '2023-02-12 01:49:25.757844+00', 99, '{"total-tables":4,"tables-classified":0}'), +(32024, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:00.471+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:08.954+00', 8483, NULL), +(32025, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:00.423+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:09.457+00', 9034, NULL), +(32026, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:09.838607+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:32.189922+00', 22351, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32027, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:09.845449+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:12.39521+00', 2549, '{"deleted":1}'), +(32028, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:12.401752+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:00:32.189807+00', 19788, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(32029, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:00.859757+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:05.402137+00', 4542, NULL), +(32030, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:00.873346+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:02.063702+00', 1190, '{"timezone-id":"UTC"}'), +(32031, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:02.064665+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:02.685711+00', 621, '{"updated-tables":0,"total-tables":8}'), +(32032, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:02.685807+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:04.833191+00', 2147, '{"total-fields":71,"updated-fields":0}'), +(32033, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:04.833259+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:04.961901+00', 128, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32034, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:04.962314+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:05.402092+00', 439, NULL), +(32035, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.029417+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.153308+00', 123, NULL), +(32036, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.029441+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.109584+00', 80, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32037, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.109673+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.12671+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(32038, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.12712+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:19:07.153227+00', 26, '{"total-tables":8,"tables-classified":0}'), +(32039, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:00.762624+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:23.823821+00', 23061, NULL), +(32040, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:00.763235+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:00.77039+00', 7, '{"timezone-id":null}'), +(32041, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:00.770514+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:01.841933+00', 1071, '{"updated-tables":0,"total-tables":4}'), +(32042, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:01.843659+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:23.807862+00', 21964, '{"total-fields":39,"updated-fields":0}'), +(32043, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:23.80798+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:23.820732+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32044, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:23.820802+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:23.823768+00', 2, NULL), +(32045, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.250306+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.432057+00', 181, NULL), +(32046, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.250327+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.358874+00', 108, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32047, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.358957+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.365946+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(32048, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.366017+00', TIMESTAMP WITH TIME ZONE '2023-02-12 02:49:24.431951+00', 65, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32049, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 03:00:00.478+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:00:10.574+00', 10096, NULL), +(32050, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 03:00:00.448+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:00:11.851+00', 11403, NULL), +(32051, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:00.236988+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.652728+00', 7415, NULL), +(32052, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:00.246397+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:00.867764+00', 621, '{"timezone-id":"UTC"}'), +(32053, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:00.871516+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:01.59049+00', 718, '{"updated-tables":0,"total-tables":8}'), +(32054, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:01.590897+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.305466+00', 5714, '{"total-fields":71,"updated-fields":0}'), +(32055, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.305832+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.458908+00', 153, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32056, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.459198+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.652691+00', 193, NULL), +(32057, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.738472+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.883366+00', 144, NULL), +(32058, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.738492+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.813047+00', 74, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32059, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.813129+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.829069+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(32060, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.829462+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:19:07.883271+00', 53, '{"total-tables":8,"tables-classified":0}'), +(32061, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:00.274566+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.766344+00', 20491, NULL), +(32062, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:00.274927+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:00.279646+00', 4, '{"timezone-id":null}'), +(32063, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:00.279777+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:00.769335+00', 489, '{"updated-tables":0,"total-tables":4}'), +(32064, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:00.769403+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.751326+00', 19981, '{"total-fields":39,"updated-fields":0}'), +(32065, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.751404+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.76329+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32066, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.763363+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.766291+00', 2, NULL), +(32067, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.968004+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:21.12878+00', 160, NULL), +(32068, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:20.968027+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:21.067728+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32069, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:21.067911+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:21.094453+00', 26, '{"fields-classified":0,"fields-failed":0}'), +(32070, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:21.094569+00', TIMESTAMP WITH TIME ZONE '2023-02-12 03:49:21.12869+00', 34, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32071, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 04:00:02.768+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:00:08.896+00', 6128, NULL), +(32072, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 04:00:00.097+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:00:09.169+00', 9072, NULL), +(32073, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:01.045819+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:11.447441+00', 10401, NULL), +(32074, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:01.054458+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:02.903651+00', 1849, '{"timezone-id":"UTC"}'), +(32075, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:02.907422+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:03.910382+00', 1002, '{"updated-tables":0,"total-tables":8}'), +(32076, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:03.911171+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:10.091108+00', 6179, '{"total-fields":71,"updated-fields":0}'), +(32077, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:10.09153+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:10.384993+00', 293, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32078, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:10.385416+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:11.447385+00', 1061, NULL), +(32079, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:11.770283+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:12.751873+00', 981, NULL), +(32080, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:11.770342+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:12.554321+00', 783, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32081, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:12.554777+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:12.630726+00', 75, '{"fields-classified":0,"fields-failed":0}'), +(32082, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:12.631089+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:19:12.751803+00', 120, '{"total-tables":8,"tables-classified":0}'), +(32083, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:01.693596+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.632005+00', 27938, NULL), +(32084, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:01.703926+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:01.800094+00', 96, '{"timezone-id":null}'), +(32085, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:01.809306+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:02.858338+00', 1049, '{"updated-tables":0,"total-tables":4}'), +(32086, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:02.858471+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.59904+00', 26740, '{"total-fields":39,"updated-fields":0}'), +(32087, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.599259+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.617036+00', 17, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32088, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.617109+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.631941+00', 14, NULL), +(32089, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.97377+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:37.209426+00', 7235, NULL), +(32090, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:29.973793+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:30.14532+00', 171, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32091, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:30.14584+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:37.184263+00', 7038, '{"fields-classified":0,"fields-failed":0}'), +(32092, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:37.184339+00', TIMESTAMP WITH TIME ZONE '2023-02-12 04:49:37.209308+00', 24, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32093, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 05:00:00.197+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:00:05.096+00', 4899, NULL), +(32094, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 05:00:00.189+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:00:05.311+00', 5122, NULL), +(32095, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:00.254985+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.344478+00', 6089, NULL), +(32096, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:00.259701+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:00.810283+00', 550, '{"timezone-id":"UTC"}'), +(32097, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:00.812577+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:01.581829+00', 769, '{"updated-tables":0,"total-tables":8}'), +(32098, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:01.582261+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.03976+00', 4457, '{"total-fields":71,"updated-fields":0}'), +(32099, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.040213+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.169133+00', 128, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32100, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.169511+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.344366+00', 174, NULL), +(32101, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.42758+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.554191+00', 126, NULL), +(32102, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.427603+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.508813+00', 81, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32103, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.508935+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.529277+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(32104, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.529611+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:19:06.554085+00', 24, '{"total-tables":8,"tables-classified":0}'), +(32105, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:01.048113+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.207157+00', 18159, NULL), +(32106, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:01.053092+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:01.091708+00', 38, '{"timezone-id":null}'), +(32107, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:01.101921+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:02.005084+00', 903, '{"updated-tables":0,"total-tables":4}'), +(32108, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:02.005581+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.197145+00', 17191, '{"total-fields":39,"updated-fields":0}'), +(32109, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.197393+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.204619+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32110, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.204683+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.206957+00', 2, NULL), +(32111, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.464708+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.536479+00', 71, NULL), +(32112, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.464729+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.509636+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32113, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.509718+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.515665+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(32114, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.515804+00', TIMESTAMP WITH TIME ZONE '2023-02-12 05:49:19.536342+00', 20, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32115, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 06:00:00.14+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:00:03.484+00', 3344, NULL), +(32116, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 06:00:00.131+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:00:03.687+00', 3556, NULL), +(32117, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:00.19654+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:08.857184+00', 8660, NULL), +(32118, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:00.202578+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:01.26213+00', 1059, '{"timezone-id":"UTC"}'), +(32119, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:01.264791+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:01.983381+00', 718, '{"updated-tables":0,"total-tables":8}'), +(32120, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:01.983592+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:07.209022+00', 5225, '{"total-fields":71,"updated-fields":0}'), +(32121, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:07.209271+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:07.353164+00', 143, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32122, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:07.3535+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:08.857147+00', 1503, NULL), +(32123, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:08.950024+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:09.092643+00', 142, NULL), +(32124, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:08.950048+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:09.049527+00', 99, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32125, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:09.049608+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:09.064306+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(32126, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:09.064657+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:19:09.092588+00', 27, '{"total-tables":8,"tables-classified":0}'), +(32127, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:01.109831+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:21.530047+00', 20420, NULL), +(32128, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:01.115336+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:01.17051+00', 55, '{"timezone-id":null}'), +(32129, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:01.181174+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:02.442507+00', 1261, '{"updated-tables":0,"total-tables":4}'), +(32130, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:02.442646+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:21.504998+00', 19062, '{"total-fields":39,"updated-fields":0}'), +(32131, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:21.505209+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:21.524743+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32132, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:21.524964+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:21.529952+00', 4, NULL), +(32133, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.10543+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.176954+00', 71, NULL), +(32134, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.105452+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.148217+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32135, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.148301+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.158591+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(32136, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.158671+00', TIMESTAMP WITH TIME ZONE '2023-02-12 06:49:27.176867+00', 18, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32137, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 07:00:00.209+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:00:04.319+00', 4110, NULL), +(32138, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 07:00:00.185+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:00:04.68+00', 4495, NULL), +(32139, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:00.268709+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.662918+00', 6394, NULL), +(32140, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:00.272981+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:00.943481+00', 670, '{"timezone-id":"UTC"}'), +(32141, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:00.946033+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:01.766714+00', 820, '{"updated-tables":0,"total-tables":8}'), +(32142, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:01.767072+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.205487+00', 4438, '{"total-fields":71,"updated-fields":0}'), +(32143, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.205841+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.342193+00', 136, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32144, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.342574+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.662878+00', 320, NULL), +(32145, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.751765+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.889353+00', 137, NULL), +(32146, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.751793+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.853087+00', 101, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32147, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.853182+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.867654+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(32148, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.868016+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:19:06.889301+00', 21, '{"total-tables":8,"tables-classified":0}'), +(32149, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:00.952294+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.734892+00', 16782, NULL), +(32150, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:00.965584+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:01.048199+00', 82, '{"timezone-id":null}'), +(32151, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:01.067023+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:02.257715+00', 1190, '{"updated-tables":0,"total-tables":4}'), +(32152, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:02.258181+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.712914+00', 15454, '{"total-fields":39,"updated-fields":0}'), +(32153, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.71312+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.729479+00', 16, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32154, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.729918+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.73456+00', 4, NULL), +(32155, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.846184+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.898333+00', 52, NULL), +(32156, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.846235+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.885392+00', 39, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32157, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.885629+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.889651+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(32158, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.889716+00', TIMESTAMP WITH TIME ZONE '2023-02-12 07:49:17.898188+00', 8, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32159, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 08:00:00.162+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:00:05.986+00', 5824, NULL), +(32160, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 08:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:00:06.239+00', 6085, NULL), +(32161, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:00.474061+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:08.601663+00', 8127, NULL), +(32162, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:00.482404+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:01.641601+00', 1159, '{"timezone-id":"UTC"}'), +(32163, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:01.646096+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:02.344495+00', 698, '{"updated-tables":0,"total-tables":8}'), +(32164, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:02.344706+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:07.517111+00', 5172, '{"total-fields":71,"updated-fields":0}'), +(32165, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:07.517409+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:07.730222+00', 212, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32166, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:07.730689+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:08.601614+00', 870, NULL), +(32167, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:08.790543+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:09.058028+00', 267, NULL), +(32168, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:08.790572+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:08.941779+00', 151, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32169, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:08.941917+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:09.013385+00', 71, '{"fields-classified":0,"fields-failed":0}'), +(32170, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:09.013847+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:19:09.057841+00', 43, '{"total-tables":8,"tables-classified":0}'), +(32171, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:01.005499+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.810322+00', 20804, NULL), +(32172, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:01.01287+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:01.058644+00', 45, '{"timezone-id":null}'), +(32173, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:01.064679+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:02.821651+00', 1756, '{"updated-tables":0,"total-tables":4}'), +(32174, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:02.821821+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.799291+00', 18977, '{"total-fields":39,"updated-fields":0}'), +(32175, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.799366+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.807728+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32176, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.807948+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.810266+00', 2, NULL), +(32177, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.852029+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.88668+00', 34, NULL), +(32178, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.852047+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.872482+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32179, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.872554+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.877109+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(32180, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.877213+00', TIMESTAMP WITH TIME ZONE '2023-02-12 08:49:21.886594+00', 9, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32181, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 09:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:00:03.763+00', 3634, NULL), +(32182, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 09:00:00.129+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:00:04.03+00', 3901, NULL), +(32183, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:00.226145+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.604735+00', 6378, NULL), +(32184, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:00.230985+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:01.204974+00', 973, '{"timezone-id":"UTC"}'), +(32185, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:01.207136+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:02.010437+00', 803, '{"updated-tables":0,"total-tables":8}'), +(32186, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:02.010866+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.333381+00', 4322, '{"total-fields":71,"updated-fields":0}'), +(32187, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.333676+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.447279+00', 113, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32188, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.447371+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.604697+00', 157, NULL), +(32189, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.672972+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.812219+00', 139, NULL), +(32190, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.672991+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.777809+00', 104, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32191, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.778094+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.791168+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(32192, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.791667+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:19:06.812116+00', 20, '{"total-tables":8,"tables-classified":0}'), +(32193, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:01.184571+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.319842+00', 17135, NULL), +(32194, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:01.191359+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:01.222568+00', 31, '{"timezone-id":null}'), +(32195, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:01.237886+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:02.082826+00', 844, '{"updated-tables":0,"total-tables":4}'), +(32196, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:02.083452+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.310433+00', 16226, '{"total-fields":39,"updated-fields":0}'), +(32197, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.31064+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.316226+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32198, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.3163+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.31979+00', 3, NULL), +(32199, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.431971+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.49462+00', 62, NULL), +(32200, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.431993+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.474732+00', 42, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32201, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.474825+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.482632+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(32202, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.482765+00', TIMESTAMP WITH TIME ZONE '2023-02-12 09:49:18.494562+00', 11, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32203, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 10:00:00.142+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:00:08.234+00', 8092, NULL), +(32204, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 10:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:00:08.064+00', 7911, NULL), +(32205, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:00.186617+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.661222+00', 5474, NULL), +(32206, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:00.190528+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:00.996874+00', 806, '{"timezone-id":"UTC"}'), +(32207, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:00.998928+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:01.44812+00', 449, '{"updated-tables":0,"total-tables":8}'), +(32208, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:01.448353+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.197793+00', 3749, '{"total-fields":71,"updated-fields":0}'), +(32209, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.198607+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.327858+00', 129, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32210, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.328158+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.661192+00', 333, NULL), +(32211, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.731552+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.878296+00', 146, NULL), +(32212, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.731573+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.790441+00', 58, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32213, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.79051+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.803254+00', 12, '{"fields-classified":0,"fields-failed":0}'), +(32214, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.803511+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:19:05.878035+00', 74, '{"total-tables":8,"tables-classified":0}'), +(32215, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:01.276255+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.878823+00', 14602, NULL), +(32216, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:01.278411+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:01.305403+00', 26, '{"timezone-id":null}'), +(32217, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:01.310042+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:02.090921+00', 780, '{"updated-tables":0,"total-tables":4}'), +(32218, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:02.091543+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.871112+00', 13779, '{"total-fields":39,"updated-fields":0}'), +(32219, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.871258+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.876799+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32220, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.876901+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.878739+00', 1, NULL), +(32221, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.977468+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:16.027526+00', 50, NULL), +(32222, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:15.977488+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:16.015573+00', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32223, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:16.015649+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:16.01925+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(32224, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:16.019319+00', TIMESTAMP WITH TIME ZONE '2023-02-12 10:49:16.02748+00', 8, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32225, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 11:00:00.111+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:00:03.77+00', 3659, NULL), +(32226, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 11:00:00.079+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:00:03.773+00', 3694, NULL), +(32227, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:00.34276+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.694739+00', 7351, NULL), +(32228, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:00.349655+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:01.25098+00', 901, '{"timezone-id":"UTC"}'), +(32229, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:01.25294+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:01.868753+00', 615, '{"updated-tables":0,"total-tables":8}'), +(32230, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:01.869191+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.515637+00', 5646, '{"total-fields":71,"updated-fields":0}'), +(32231, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.515728+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.564963+00', 49, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32232, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.565045+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.694701+00', 129, NULL), +(32233, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.794136+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.937495+00', 143, NULL), +(32234, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.794154+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.88279+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32235, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.883129+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.899511+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(32236, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.899878+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:19:07.937444+00', 37, '{"total-tables":8,"tables-classified":0}'), +(32237, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:00.96404+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.263064+00', 18299, NULL), +(32238, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:00.976749+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:01.006251+00', 29, '{"timezone-id":null}'), +(32239, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:01.013051+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:02.051996+00', 1038, '{"updated-tables":0,"total-tables":4}'), +(32240, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:02.052777+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.251717+00', 17198, '{"total-fields":39,"updated-fields":0}'), +(32241, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.251816+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.261071+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32242, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.261166+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.263003+00', 1, NULL), +(32243, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.36697+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.424311+00', 57, NULL), +(32244, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.366996+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.404354+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32245, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.404466+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.41374+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(32246, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.413909+00', TIMESTAMP WITH TIME ZONE '2023-02-12 11:49:19.424262+00', 10, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32247, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 12:00:00.244+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:00:06.958+00', 6714, NULL), +(32248, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 12:00:00.234+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:00:07.291+00', 7057, NULL), +(32249, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:00.170719+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.15071+00', 4979, NULL), +(32250, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:00.17518+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:00.844169+00', 668, '{"timezone-id":"UTC"}'), +(32251, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:00.845738+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:01.434537+00', 588, '{"updated-tables":0,"total-tables":8}'), +(32252, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:01.434871+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:04.403144+00', 2968, '{"total-fields":71,"updated-fields":0}'), +(32253, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:04.403241+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:04.552043+00', 148, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32254, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:04.552323+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.150688+00', 598, NULL), +(32255, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.215042+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.373463+00', 158, NULL), +(32256, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.215061+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.336184+00', 121, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32257, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.33657+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.352623+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(32258, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.352695+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:19:05.373414+00', 20, '{"total-tables":8,"tables-classified":0}'), +(32259, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:01.10109+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.641171+00', 19540, NULL), +(32260, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:01.106126+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:01.170017+00', 63, '{"timezone-id":null}'), +(32261, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:01.177422+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:02.073667+00', 896, '{"updated-tables":0,"total-tables":4}'), +(32262, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:02.074142+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.576576+00', 18502, '{"total-fields":39,"updated-fields":0}'), +(32263, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.577923+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.621688+00', 43, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32264, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.621745+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.641112+00', 19, NULL), +(32265, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.839072+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.947381+00', 108, NULL), +(32266, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.839479+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.885347+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32267, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.885457+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.918371+00', 32, '{"fields-classified":0,"fields-failed":0}'), +(32268, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.918436+00', TIMESTAMP WITH TIME ZONE '2023-02-12 12:49:20.947334+00', 28, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32269, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 13:00:00.109+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:00:02.552+00', 2443, NULL), +(32270, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 13:00:00.107+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:00:02.74+00', 2633, NULL), +(32271, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:00.20194+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.663911+00', 5461, NULL), +(32272, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:00.205153+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:00.663555+00', 458, '{"timezone-id":"UTC"}'), +(32273, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:00.665375+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:01.136595+00', 471, '{"updated-tables":0,"total-tables":8}'), +(32274, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:01.137487+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.351852+00', 4214, '{"total-fields":71,"updated-fields":0}'), +(32275, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.351916+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.477924+00', 126, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32276, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.478033+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.663884+00', 185, NULL), +(32277, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.716738+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.804386+00', 87, NULL), +(32278, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.716759+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.777781+00', 61, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32279, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.777883+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.788642+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(32280, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.78889+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:19:05.80423+00', 15, '{"total-tables":8,"tables-classified":0}'), +(32281, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:00.720113+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:13.97493+00', 13254, NULL), +(32282, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:00.72449+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:00.744936+00', 20, '{"timezone-id":null}'), +(32283, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:00.749025+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:01.374255+00', 625, '{"updated-tables":0,"total-tables":4}'), +(32284, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:01.374541+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:13.968018+00', 12593, '{"total-fields":39,"updated-fields":0}'), +(32285, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:13.968123+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:13.972856+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32286, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:13.972927+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:13.974888+00', 1, NULL), +(32287, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.084784+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.142448+00', 57, NULL), +(32288, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.084805+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.128656+00', 43, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32289, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.128727+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.133886+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(32290, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.134001+00', TIMESTAMP WITH TIME ZONE '2023-02-12 13:49:14.142403+00', 8, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32291, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 14:00:00.116+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:00:04.981+00', 4865, NULL), +(32292, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 14:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:00:04.816+00', 4680, NULL), +(32293, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:00.335+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.403975+00', 5068, NULL), +(32294, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:00.338286+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:01.122279+00', 783, '{"timezone-id":"UTC"}'), +(32295, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:01.124574+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:01.613718+00', 489, '{"updated-tables":0,"total-tables":8}'), +(32296, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:01.614574+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:04.668997+00', 3054, '{"total-fields":71,"updated-fields":0}'), +(32297, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:04.669564+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:04.802887+00', 133, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32298, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:04.80328+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.40388+00', 600, NULL), +(32299, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.571304+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.823167+00', 251, NULL), +(32300, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.571324+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.774594+00', 203, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32301, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.774685+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.793102+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(32302, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.793322+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:19:05.823023+00', 29, '{"total-tables":8,"tables-classified":0}'), +(32303, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:01.080926+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.67806+00', 18597, NULL), +(32304, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:01.086098+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:01.1223+00', 36, '{"timezone-id":null}'), +(32305, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:01.127978+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:01.908577+00', 780, '{"updated-tables":0,"total-tables":4}'), +(32306, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:01.908934+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.668976+00', 17760, '{"total-fields":39,"updated-fields":0}'), +(32307, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.669082+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.676209+00', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32308, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.676279+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.677955+00', 1, NULL), +(32309, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.726335+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.781143+00', 54, NULL), +(32310, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.726379+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.76423+00', 37, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32311, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.764313+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.773322+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(32312, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.773392+00', TIMESTAMP WITH TIME ZONE '2023-02-12 14:49:19.781099+00', 7, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32313, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 15:00:00.137+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:00:02.954+00', 2817, NULL), +(32314, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 15:00:00.134+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:00:03.172+00', 3038, NULL), +(32315, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:00.203303+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.69491+00', 5491, NULL), +(32316, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:00.210247+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:00.71437+00', 504, '{"timezone-id":"UTC"}'), +(32317, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:00.716298+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:01.135332+00', 419, '{"updated-tables":0,"total-tables":8}'), +(32318, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:01.135834+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.443261+00', 4307, '{"total-fields":71,"updated-fields":0}'), +(32319, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.443586+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.554608+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32320, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.555126+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.694878+00', 139, NULL), +(32321, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.788323+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.88995+00', 101, NULL), +(32322, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.788342+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.851337+00', 62, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32323, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.851402+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.865625+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(32324, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.866025+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:19:05.889905+00', 23, '{"total-tables":8,"tables-classified":0}'), +(32325, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:01.236637+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.283119+00', 17046, NULL), +(32326, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:01.253865+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:01.306434+00', 52, '{"timezone-id":null}'), +(32327, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:01.315514+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:02.798801+00', 1483, '{"updated-tables":0,"total-tables":4}'), +(32328, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:02.799126+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.268226+00', 15469, '{"total-fields":39,"updated-fields":0}'), +(32329, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.268367+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.27932+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32330, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.279383+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.283079+00', 3, NULL), +(32331, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.397691+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.47964+00', 81, NULL), +(32332, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.397715+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.451786+00', 54, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32333, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.451869+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.462564+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(32334, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.462669+00', TIMESTAMP WITH TIME ZONE '2023-02-12 15:49:18.479535+00', 16, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32335, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 16:00:00.154+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:00:07.675+00', 7521, NULL), +(32336, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 16:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:00:08.096+00', 7947, NULL), +(32337, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:00.247113+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.621532+00', 7374, NULL), +(32338, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:00.252258+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:01.557423+00', 1305, '{"timezone-id":"UTC"}'), +(32339, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:01.559927+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:02.535203+00', 975, '{"updated-tables":0,"total-tables":8}'), +(32340, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:02.535635+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.129108+00', 4593, '{"total-fields":71,"updated-fields":0}'), +(32341, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.129503+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.360981+00', 231, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32342, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.361413+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.621489+00', 260, NULL), +(32343, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.681054+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.964798+00', 283, NULL), +(32344, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.681075+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.812268+00', 131, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32345, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.812376+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.911703+00', 99, '{"fields-classified":0,"fields-failed":0}'), +(32346, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.922548+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:19:07.964729+00', 42, '{"total-tables":8,"tables-classified":0}'), +(32347, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:01.587393+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:21.974886+00', 20387, NULL), +(32348, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:01.604673+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:01.641749+00', 37, '{"timezone-id":null}'), +(32349, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:01.654507+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:02.648044+00', 993, '{"updated-tables":0,"total-tables":4}'), +(32350, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:02.648168+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:21.956615+00', 19308, '{"total-fields":39,"updated-fields":0}'), +(32351, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:21.956722+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:21.969011+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32352, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:21.969095+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:21.974793+00', 5, NULL), +(32353, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.076788+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.133157+00', 56, NULL), +(32354, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.076805+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.113001+00', 36, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32355, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.113092+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.12251+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(32356, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.122599+00', TIMESTAMP WITH TIME ZONE '2023-02-12 16:49:22.133107+00', 10, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32357, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 17:00:00.174+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:00:07.228+00', 7054, NULL), +(32358, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 17:00:00.174+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:00:07.455+00', 7281, NULL), +(32359, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:00.351375+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.738352+00', 8386, NULL), +(32360, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:00.355658+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:01.1657+00', 810, '{"timezone-id":"UTC"}'), +(32361, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:01.170073+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:02.077941+00', 907, '{"updated-tables":0,"total-tables":8}'), +(32362, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:02.078056+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.460505+00', 6382, '{"total-fields":71,"updated-fields":0}'), +(32363, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.460741+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.552741+00', 92, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32364, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.552821+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.738317+00', 185, NULL), +(32365, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.81323+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.941062+00', 127, NULL), +(32366, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.813253+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.902466+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32367, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.902547+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.918191+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(32368, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.918613+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:19:08.941006+00', 22, '{"total-tables":8,"tables-classified":0}'), +(32369, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:02.173778+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.450262+00', 18276, NULL), +(32370, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:02.176827+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:02.194769+00', 17, '{"timezone-id":null}'), +(32371, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:02.200038+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:03.169673+00', 969, '{"updated-tables":0,"total-tables":4}'), +(32372, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:03.170009+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.442093+00', 17272, '{"total-fields":39,"updated-fields":0}'), +(32373, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.442232+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.448678+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32374, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.44881+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.450174+00', 1, NULL), +(32375, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.569286+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.638032+00', 68, NULL), +(32376, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.569317+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.621143+00', 51, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32377, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.621231+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.627388+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(32378, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.627453+00', TIMESTAMP WITH TIME ZONE '2023-02-12 17:49:20.637971+00', 10, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32379, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 18:00:00.169+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:00:06.783+00', 6614, NULL), +(32380, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 18:00:00.145+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:00:07.421+00', 7276, NULL), +(32381, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:00.203228+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.428829+00', 8225, NULL), +(32382, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:00.208004+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:01.473972+00', 1265, '{"timezone-id":"UTC"}'), +(32383, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:01.477969+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:02.332204+00', 854, '{"updated-tables":0,"total-tables":8}'), +(32384, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:02.332554+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.22958+00', 5897, '{"total-fields":71,"updated-fields":0}'), +(32385, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.22969+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.273181+00', 43, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32386, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.273241+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.428754+00', 155, NULL), +(32387, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.551435+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.80552+00', 254, NULL), +(32388, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.551456+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.63121+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32389, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.631295+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.707729+00', 76, '{"fields-classified":0,"fields-failed":0}'), +(32390, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.712371+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:19:08.80547+00', 93, '{"total-tables":8,"tables-classified":0}'), +(32391, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:01.031462+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.569028+00', 18537, NULL), +(32392, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:01.038672+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:01.075885+00', 37, '{"timezone-id":null}'), +(32393, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:01.086288+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:02.192907+00', 1106, '{"updated-tables":0,"total-tables":4}'), +(32394, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:02.193347+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.542383+00', 17349, '{"total-fields":39,"updated-fields":0}'), +(32395, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.542627+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.556272+00', 13, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32396, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.556344+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.568963+00', 12, NULL), +(32397, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.898783+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:20.276247+00', 377, NULL), +(32398, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:19.898829+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:20.094799+00', 195, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32399, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:20.094917+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:20.155022+00', 60, '{"fields-classified":0,"fields-failed":0}'), +(32400, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:20.155104+00', TIMESTAMP WITH TIME ZONE '2023-02-12 18:49:20.276121+00', 121, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32401, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 19:00:00.21+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:00:06.534+00', 6324, NULL), +(32402, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 19:00:00.197+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:00:06.878+00', 6681, NULL), +(32403, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:00.22501+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:07.885164+00', 7660, NULL), +(32404, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:00.231808+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:00.968022+00', 736, '{"timezone-id":"UTC"}'), +(32405, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:00.978869+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:01.711954+00', 733, '{"updated-tables":0,"total-tables":8}'), +(32406, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:01.712507+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:06.258393+00', 4545, '{"total-fields":71,"updated-fields":0}'), +(32407, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:06.25848+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:06.44542+00', 186, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32408, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:06.445685+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:07.885121+00', 1439, NULL), +(32409, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:07.957932+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:08.106827+00', 148, NULL), +(32410, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:07.957953+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:08.064195+00', 106, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32411, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:08.064282+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:08.087145+00', 22, '{"fields-classified":0,"fields-failed":0}'), +(32412, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:08.087546+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:19:08.106773+00', 19, '{"total-tables":8,"tables-classified":0}'), +(32413, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:01.029779+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.077524+00', 19047, NULL), +(32414, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:01.037934+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:01.068332+00', 30, '{"timezone-id":null}'), +(32415, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:01.076438+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:01.774072+00', 697, '{"updated-tables":0,"total-tables":4}'), +(32416, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:01.774723+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.043959+00', 18269, '{"total-fields":39,"updated-fields":0}'), +(32417, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.04409+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.072639+00', 28, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32418, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.072781+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.077446+00', 4, NULL), +(32419, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.268477+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.453858+00', 185, NULL), +(32420, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.268502+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.350957+00', 82, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32421, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.351104+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.382284+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(32422, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.382369+00', TIMESTAMP WITH TIME ZONE '2023-02-12 19:49:20.453791+00', 71, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32423, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 20:00:00.187+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:00:07.946+00', 7759, NULL), +(32424, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 20:00:00.201+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:00:07.749+00', 7548, NULL), +(32425, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:00.256908+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.381051+00', 6124, NULL), +(32426, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:00.260015+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:01.097383+00', 837, '{"timezone-id":"UTC"}'), +(32427, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:01.099142+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:01.64877+00', 549, '{"updated-tables":0,"total-tables":8}'), +(32428, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:01.649406+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:05.527663+00', 3878, '{"total-fields":71,"updated-fields":0}'), +(32429, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:05.528036+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:05.692225+00', 164, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32430, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:05.692524+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.380977+00', 688, NULL), +(32431, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.520117+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.618748+00', 98, NULL), +(32432, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.520136+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.580114+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32433, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.580242+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.595364+00', 15, '{"fields-classified":0,"fields-failed":0}'), +(32434, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.597268+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:19:06.618685+00', 21, '{"total-tables":8,"tables-classified":0}'), +(32435, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:01.138783+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.64481+00', 15506, NULL), +(32436, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:01.355651+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:01.405309+00', 49, '{"timezone-id":null}'), +(32437, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:01.413768+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:02.470227+00', 1056, '{"updated-tables":0,"total-tables":4}'), +(32438, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:02.470604+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.610978+00', 14140, '{"total-fields":39,"updated-fields":0}'), +(32439, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.611126+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.638929+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32440, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.639006+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.644756+00', 5, NULL), +(32441, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.805434+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.89212+00', 86, NULL), +(32442, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.805452+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.861901+00', 56, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32443, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.862003+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.872906+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(32444, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.872991+00', TIMESTAMP WITH TIME ZONE '2023-02-12 20:49:16.892024+00', 19, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32445, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:00.312+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:06.481+00', 6169, NULL), +(32446, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:00.273+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:06.489+00', 6216, NULL), +(32447, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:00.38824+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:24.043875+00', 23655, NULL), +(32448, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:00.391189+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:09.68159+00', 9290, '{"deleted":0}'), +(32449, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:09.684867+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:00:24.043798+00', 14358, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(32450, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:00.747588+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.026352+00', 5278, NULL), +(32451, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:00.751025+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:01.221777+00', 470, '{"timezone-id":"UTC"}'), +(32452, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:01.225615+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:01.783659+00', 558, '{"updated-tables":0,"total-tables":8}'), +(32453, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:01.783763+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:05.227207+00', 3443, '{"total-fields":71,"updated-fields":0}'), +(32454, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:05.227304+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:05.339144+00', 111, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32455, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:05.339628+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.026284+00', 686, NULL), +(32456, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.264125+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.626205+00', 362, NULL), +(32457, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.264382+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.512949+00', 248, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32458, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.513364+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.559068+00', 45, '{"fields-classified":0,"fields-failed":0}'), +(32459, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.559548+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:19:06.626113+00', 66, '{"total-tables":8,"tables-classified":0}'), +(32460, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:01.455228+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:17.993489+00', 16538, NULL), +(32461, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:01.459172+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:01.493828+00', 34, '{"timezone-id":null}'), +(32462, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:01.502457+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:03.673062+00', 2170, '{"updated-tables":0,"total-tables":4}'), +(32463, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:03.673243+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:17.986223+00', 14312, '{"total-fields":39,"updated-fields":0}'), +(32464, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:17.986356+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:17.991365+00', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32465, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:17.991484+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:17.993407+00', 1, NULL), +(32466, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.068242+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.116566+00', 48, NULL), +(32467, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.06826+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.09826+00', 30, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32468, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.098367+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.104377+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(32469, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.104521+00', TIMESTAMP WITH TIME ZONE '2023-02-12 21:49:18.116495+00', 11, '{"total-tables":4,"tables-classified":0}'), +(32470, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 22:00:00.207+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:00:08.559+00', 8352, NULL), +(32471, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 22:00:00.179+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:00:08.956+00', 8777, NULL), +(32472, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:00.22384+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.473158+00', 7249, NULL), +(32473, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:00.228167+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:01.207119+00', 978, '{"timezone-id":"UTC"}'), +(32474, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:01.211756+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:01.838915+00', 627, '{"updated-tables":0,"total-tables":8}'), +(32475, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:01.839515+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.214835+00', 5375, '{"total-fields":71,"updated-fields":0}'), +(32476, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.215122+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.353434+00', 138, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32477, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.353876+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.47313+00', 119, NULL), +(32478, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.558362+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.682856+00', 124, NULL), +(32479, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.558378+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.63621+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32480, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.636536+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.65027+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(32481, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.650597+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:19:07.682807+00', 32, '{"total-tables":8,"tables-classified":0}'), +(32482, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:01.378149+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.791226+00', 16413, NULL), +(32483, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:01.384905+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:01.421559+00', 36, '{"timezone-id":null}'), +(32484, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:01.428282+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:02.384909+00', 956, '{"updated-tables":0,"total-tables":4}'), +(32485, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:02.385276+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.781552+00', 15396, '{"total-fields":39,"updated-fields":0}'), +(32486, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.78169+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.788141+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32487, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.788208+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.791173+00', 2, NULL), +(32488, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.912613+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.980136+00', 67, NULL), +(32489, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.912634+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.96047+00', 47, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32490, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.960549+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.965199+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(32491, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.96529+00', TIMESTAMP WITH TIME ZONE '2023-02-12 22:49:17.980079+00', 14, '{"total-tables":4,"tables-classified":0}'), +(32492, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 23:00:00.205+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:00:08.663+00', 8458, NULL), +(32493, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-12 23:00:00.193+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:00:09.386+00', 9193, NULL), +(32494, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:00.225751+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.215029+00', 6989, NULL), +(32495, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:00.229606+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:01.485071+00', 1255, '{"timezone-id":"UTC"}'), +(32496, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:01.491847+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:02.279774+00', 787, '{"updated-tables":0,"total-tables":8}'), +(32497, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:02.280241+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:06.709953+00', 4429, '{"total-fields":71,"updated-fields":0}'), +(32498, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:06.710297+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:06.890776+00', 180, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32499, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:06.891191+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.214991+00', 323, NULL), +(32500, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.283729+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.871496+00', 587, NULL), +(32501, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.28375+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.377847+00', 94, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32502, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.377938+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.399003+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(32503, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.399603+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:19:07.871447+00', 471, '{"total-tables":8,"tables-classified":0}'), +(32504, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:01.122324+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.027289+00', 17904, NULL), +(32505, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:01.146756+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:01.222741+00', 75, '{"timezone-id":null}'), +(32506, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:01.231315+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:02.373549+00', 1142, '{"updated-tables":0,"total-tables":4}'), +(32507, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:02.373676+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:18.994342+00', 16620, '{"total-fields":39,"updated-fields":0}'), +(32508, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:18.994739+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.022726+00', 27, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32509, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.023004+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.027084+00', 4, NULL), +(32510, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.198001+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.350578+00', 152, NULL), +(32511, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.19802+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.310187+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32512, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.310262+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.323483+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(32513, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.323557+00', TIMESTAMP WITH TIME ZONE '2023-02-12 23:49:19.350434+00', 26, '{"total-tables":4,"tables-classified":0}'), +(32514, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 00:00:00.314+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:00:17.7+00', 17386, NULL), +(32515, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 00:00:00.288+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:00:18.748+00', 18460, NULL), +(32516, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:00.235662+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.414904+00', 7179, NULL), +(32517, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:00.238477+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:00.875126+00', 636, '{"timezone-id":"UTC"}'), +(32518, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:00.876858+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:01.538665+00', 661, '{"updated-tables":0,"total-tables":8}'), +(32519, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:01.539008+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.222018+00', 5683, '{"total-fields":71,"updated-fields":0}'), +(32520, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.222223+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.295097+00', 72, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32521, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.295573+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.414875+00', 119, NULL), +(32522, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.505888+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.612358+00', 106, NULL), +(32523, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.505907+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.572143+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32524, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.572204+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.589355+00', 17, '{"fields-classified":0,"fields-failed":0}'), +(32525, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.590019+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:19:07.612196+00', 22, '{"total-tables":8,"tables-classified":0}'), +(32526, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:01.020948+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.385906+00', 18364, NULL), +(32527, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:01.02941+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:01.07471+00', 45, '{"timezone-id":null}'), +(32528, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:01.087353+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:02.098456+00', 1011, '{"updated-tables":0,"total-tables":4}'), +(32529, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:02.098946+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.358446+00', 17259, '{"total-fields":39,"updated-fields":0}'), +(32530, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.358547+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.379882+00', 21, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32531, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.379958+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.385847+00', 5, NULL), +(32532, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.564491+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.703652+00', 139, NULL), +(32533, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.56451+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.653915+00', 89, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32534, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.653995+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.668757+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(32535, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.668834+00', TIMESTAMP WITH TIME ZONE '2023-02-13 00:49:19.703596+00', 34, '{"total-tables":4,"tables-classified":0}'), +(32536, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 01:00:00.149+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:00:05.235+00', 5086, NULL), +(32537, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 01:00:00.133+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:00:05.486+00', 5353, NULL), +(32538, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:00.514097+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:09.712749+00', 9198, NULL), +(32539, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:00.518723+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:02.062811+00', 1544, '{"timezone-id":"UTC"}'), +(32540, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:02.065276+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:02.783661+00', 718, '{"updated-tables":0,"total-tables":8}'), +(32541, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:02.785227+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:07.160439+00', 4375, '{"total-fields":71,"updated-fields":0}'), +(32542, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:07.161098+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:07.318466+00', 157, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32543, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:07.318566+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:09.712604+00', 2394, NULL), +(32544, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:09.934568+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:10.301559+00', 366, NULL), +(32545, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:09.934588+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:10.186226+00', 251, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32546, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:10.18635+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:10.239636+00', 53, '{"fields-classified":0,"fields-failed":0}'), +(32547, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:10.240595+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:19:10.301486+00', 60, '{"total-tables":8,"tables-classified":0}'), +(32548, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:01.06133+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:22.29849+00', 21237, NULL), +(32549, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:01.068663+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:01.132696+00', 64, '{"timezone-id":null}'), +(32550, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:01.143859+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:02.162267+00', 1018, '{"updated-tables":0,"total-tables":4}'), +(32551, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:02.162781+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:22.269668+00', 20106, '{"total-fields":39,"updated-fields":0}'), +(32552, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:22.269772+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:22.282172+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32553, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:22.282285+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:22.29843+00', 16, NULL), +(32554, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.265976+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.387356+00', 121, NULL), +(32555, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.265999+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.345248+00', 79, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32556, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.345437+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.362244+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(32557, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.363274+00', TIMESTAMP WITH TIME ZONE '2023-02-13 01:49:29.387312+00', 24, '{"total-tables":4,"tables-classified":0}'), +(32558, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:00.459+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:07.882+00', 7423, NULL), +(32559, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:00.375+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:07.884+00', 7509, NULL), +(32560, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:08.791485+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:31.18878+00', 22397, NULL), +(32561, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:08.801683+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:11.762104+00', 2960, '{"deleted":0}'), +(32562, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:11.768843+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:00:31.188701+00', 19419, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(32563, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:00.792768+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:07.956838+00', 7164, NULL), +(32564, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:00.799056+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:02.171544+00', 1372, '{"timezone-id":"UTC"}'), +(32565, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:02.175634+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:03.714308+00', 1538, '{"updated-tables":0,"total-tables":8}'), +(32566, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:03.714416+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:06.213184+00', 2498, '{"total-fields":71,"updated-fields":0}'), +(32567, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:06.213251+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:06.269844+00', 56, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32568, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:06.269911+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:07.95679+00', 1686, NULL), +(32569, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.120973+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.362461+00', 241, NULL), +(32570, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.120993+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.25296+00', 131, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32571, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.253051+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.288538+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(32572, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.288987+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:19:08.362101+00', 73, '{"total-tables":8,"tables-classified":0}'), +(32573, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:00.73507+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.019222+00', 19284, NULL), +(32574, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:00.740655+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:00.770076+00', 29, '{"timezone-id":null}'), +(32575, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:00.775526+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:02.174632+00', 1399, '{"updated-tables":0,"total-tables":4}'), +(32576, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:02.175488+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:19.996639+00', 17821, '{"total-fields":39,"updated-fields":0}'), +(32577, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:19.99675+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.011131+00', 14, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32578, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.011802+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.018651+00', 6, NULL), +(32579, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.133626+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.173517+00', 39, NULL), +(32580, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.133645+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.162487+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32581, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.162582+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.166416+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(32582, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.166542+00', TIMESTAMP WITH TIME ZONE '2023-02-13 02:49:20.173356+00', 6, '{"total-tables":4,"tables-classified":0}'), +(32583, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 03:00:00.176+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:00:07.32+00', 7144, NULL), +(32584, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 03:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:00:07.649+00', 7486, NULL), +(32585, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:00.324486+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.007441+00', 7682, NULL), +(32586, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:00.32855+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:01.681313+00', 1352, '{"timezone-id":"UTC"}'), +(32587, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:01.682739+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:02.433665+00', 750, '{"updated-tables":0,"total-tables":8}'), +(32588, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:02.43479+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:07.769684+00', 5334, '{"total-fields":71,"updated-fields":0}'), +(32589, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:07.770105+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:07.860494+00', 90, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32590, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:07.860661+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.007409+00', 146, NULL), +(32591, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.103832+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.242781+00', 138, NULL), +(32592, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.103851+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.18071+00', 76, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32593, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.180821+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.199793+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(32594, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.200332+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:19:08.242687+00', 42, '{"total-tables":8,"tables-classified":0}'), +(32595, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:00.997571+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.640307+00', 22642, NULL), +(32596, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:01.027654+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:01.074+00', 46, '{"timezone-id":null}'), +(32597, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:01.080518+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:01.999238+00', 918, '{"updated-tables":0,"total-tables":4}'), +(32598, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:01.999739+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.62587+00', 21626, '{"total-fields":39,"updated-fields":0}'), +(32599, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.625993+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.638507+00', 12, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32600, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.638596+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.640262+00', 1, NULL), +(32601, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.795331+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.895898+00', 100, NULL), +(32602, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.795349+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.830449+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32603, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.830522+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.835416+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(32604, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.835505+00', TIMESTAMP WITH TIME ZONE '2023-02-13 03:49:23.895846+00', 60, '{"total-tables":4,"tables-classified":0}'), +(32605, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 04:00:00.162+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:00:06.091+00', 5929, NULL), +(32606, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 04:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:00:06.488+00', 6335, NULL), +(32607, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:01.61554+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.095481+00', 10479, NULL), +(32608, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:01.634216+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:03.359078+00', 1724, '{"timezone-id":"UTC"}'), +(32609, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:03.362329+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:04.190392+00', 828, '{"updated-tables":0,"total-tables":8}'), +(32610, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:04.190745+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:11.102436+00', 6911, '{"total-fields":71,"updated-fields":0}'), +(32611, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:11.102948+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:11.302479+00', 199, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32612, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:11.303059+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.09543+00', 792, NULL), +(32613, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.423742+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.679229+00', 255, NULL), +(32614, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.423762+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.571091+00', 147, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32615, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.571182+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.60111+00', 29, '{"fields-classified":0,"fields-failed":0}'), +(32616, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.601186+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:19:12.679165+00', 77, '{"total-tables":8,"tables-classified":0}'), +(32617, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:01.432621+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.477113+00', 25044, NULL), +(32618, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:01.438399+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:01.487145+00', 48, '{"timezone-id":null}'), +(32619, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:01.503283+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:02.712749+00', 1209, '{"updated-tables":0,"total-tables":4}'), +(32620, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:02.713223+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.45364+00', 23740, '{"total-fields":39,"updated-fields":0}'), +(32621, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.453762+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.472769+00', 19, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32622, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.472858+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.477052+00', 4, NULL), +(32623, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.652861+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.742944+00', 90, NULL), +(32624, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.65289+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.697998+00', 45, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32625, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.69807+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.707665+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(32626, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.707745+00', TIMESTAMP WITH TIME ZONE '2023-02-13 04:49:26.742885+00', 35, '{"total-tables":4,"tables-classified":0}'), +(32627, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 05:00:01.958+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:00:08.945+00', 6987, NULL), +(32628, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 05:00:01.941+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:00:09.39+00', 7449, NULL), +(32629, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:00.260275+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:07.230801+00', 6970, NULL), +(32630, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:00.268281+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:01.72153+00', 1453, '{"timezone-id":"UTC"}'), +(32631, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:01.73016+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:02.500128+00', 769, '{"updated-tables":0,"total-tables":8}'), +(32632, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:02.500246+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:06.713131+00', 4212, '{"total-fields":71,"updated-fields":0}'), +(32633, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:06.713512+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:06.884918+00', 171, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32634, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:06.885522+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:07.230764+00', 345, NULL), +(32635, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:07.316252+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:08.069712+00', 753, NULL), +(32636, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:07.316273+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:08.020483+00', 704, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32637, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:08.020576+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:08.041785+00', 21, '{"fields-classified":0,"fields-failed":0}'), +(32638, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:08.042226+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:19:08.069526+00', 27, '{"total-tables":8,"tables-classified":0}'), +(32639, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:01.66943+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.264729+00', 26595, NULL), +(32640, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:01.677009+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:01.734234+00', 57, '{"timezone-id":null}'), +(32641, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:01.73982+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:03.000773+00', 1260, '{"updated-tables":0,"total-tables":4}'), +(32642, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:03.001125+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.222611+00', 25221, '{"total-fields":39,"updated-fields":0}'), +(32643, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.222731+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.253126+00', 30, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32644, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.253232+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.264664+00', 11, NULL), +(32645, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.549085+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.76805+00', 218, NULL), +(32646, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.549105+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.678146+00', 129, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32647, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.678416+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.69307+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(32648, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.693258+00', TIMESTAMP WITH TIME ZONE '2023-02-13 05:49:28.76795+00', 74, '{"total-tables":4,"tables-classified":0}'), +(32649, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 06:00:00.429+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:00:09.684+00', 9255, NULL), +(32650, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 06:00:00.41+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:00:10.17+00', 9760, NULL), +(32651, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:00.198005+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.352228+00', 7154, NULL), +(32652, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:00.200261+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:00.873681+00', 673, '{"timezone-id":"UTC"}'), +(32653, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:00.875726+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:01.630443+00', 754, '{"updated-tables":0,"total-tables":8}'), +(32654, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:01.630903+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.155371+00', 5524, '{"total-fields":71,"updated-fields":0}'), +(32655, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.155458+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.217347+00', 61, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32656, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.217413+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.352195+00', 134, NULL), +(32657, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.440759+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.537574+00', 96, NULL), +(32658, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.440777+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.500502+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32659, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.500585+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.516681+00', 16, '{"fields-classified":0,"fields-failed":0}'), +(32660, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.517029+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:19:07.537527+00', 20, '{"total-tables":8,"tables-classified":0}'), +(32661, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:01.215359+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.114128+00', 15898, NULL), +(32662, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:01.221093+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:01.247924+00', 26, '{"timezone-id":null}'), +(32663, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:01.254718+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:02.209015+00', 954, '{"updated-tables":0,"total-tables":4}'), +(32664, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:02.209545+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.083903+00', 14874, '{"total-fields":39,"updated-fields":0}'), +(32665, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.084022+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.107158+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32666, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.10724+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.114058+00', 6, NULL), +(32667, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.323145+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.505923+00', 182, NULL), +(32668, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.323166+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.464292+00', 141, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32669, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.464382+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.478353+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(32670, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.478553+00', TIMESTAMP WITH TIME ZONE '2023-02-13 06:49:17.505718+00', 27, '{"total-tables":4,"tables-classified":0}'), +(32671, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 07:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:00:06.321+00', 6119, NULL), +(32672, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 07:00:00.202+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:00:06.81+00', 6608, NULL), +(32673, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:00.264757+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:06.997146+00', 6732, NULL), +(32674, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:00.267677+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:01.686374+00', 1418, '{"timezone-id":"UTC"}'), +(32675, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:01.687848+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:02.294964+00', 607, '{"updated-tables":0,"total-tables":8}'), +(32676, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:02.295607+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:06.810379+00', 4514, '{"total-fields":71,"updated-fields":0}'), +(32677, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:06.810522+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:06.873887+00', 63, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32678, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:06.873997+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:06.997033+00', 123, NULL), +(32679, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.057885+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.167212+00', 109, NULL), +(32680, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.057902+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.129421+00', 71, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32681, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.12949+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.143946+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(32682, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.14434+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:19:07.167055+00', 22, '{"total-tables":8,"tables-classified":0}'), +(32683, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:01.395309+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.794525+00', 17399, NULL), +(32684, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:01.400674+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:01.427597+00', 26, '{"timezone-id":null}'), +(32685, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:01.436199+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:02.395133+00', 958, '{"updated-tables":0,"total-tables":4}'), +(32686, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:02.39621+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.785927+00', 16389, '{"total-fields":39,"updated-fields":0}'), +(32687, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.786097+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.792684+00', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32688, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.792772+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.794426+00', 1, NULL), +(32689, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.898013+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.945242+00', 47, NULL), +(32690, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.898033+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.926587+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32691, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.92668+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.932051+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(32692, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.932173+00', TIMESTAMP WITH TIME ZONE '2023-02-13 07:49:18.945168+00', 12, '{"total-tables":4,"tables-classified":0}'), +(32693, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 08:00:00.263+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:00:06.6+00', 6337, NULL), +(32694, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 08:00:00.26+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:00:07.177+00', 6917, NULL), +(32695, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:00.669581+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:10.396786+00', 9727, NULL), +(32696, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:00.692543+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:02.45813+00', 1765, '{"timezone-id":"UTC"}'), +(32697, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:02.467306+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:03.413085+00', 945, '{"updated-tables":0,"total-tables":8}'), +(32698, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:03.413463+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:09.624645+00', 6211, '{"total-fields":71,"updated-fields":0}'), +(32699, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:09.625157+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:09.926798+00', 301, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32700, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:09.926912+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:10.396727+00', 469, NULL), +(32701, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:10.611351+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:11.650832+00', 1039, NULL), +(32702, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:10.611371+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:10.844207+00', 232, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32703, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:10.844296+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:11.617714+00', 773, '{"fields-classified":0,"fields-failed":0}'), +(32704, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:11.61855+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:19:11.650746+00', 32, '{"total-tables":8,"tables-classified":0}'), +(32705, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:01.4705+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:21.854768+00', 20384, NULL), +(32706, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:01.484852+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:01.704366+00', 219, '{"timezone-id":null}'), +(32707, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:01.71212+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:02.84613+00', 1134, '{"updated-tables":0,"total-tables":4}'), +(32708, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:02.846695+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:21.791171+00', 18944, '{"total-fields":39,"updated-fields":0}'), +(32709, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:21.791288+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:21.846511+00', 55, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32710, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:21.846595+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:21.854493+00', 7, NULL), +(32711, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.14519+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.307538+00', 162, NULL), +(32712, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.145211+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.242706+00', 97, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32713, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.242791+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.263539+00', 20, '{"fields-classified":0,"fields-failed":0}'), +(32714, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.263707+00', TIMESTAMP WITH TIME ZONE '2023-02-13 08:49:22.306978+00', 43, '{"total-tables":4,"tables-classified":0}'), +(32715, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 09:00:00.163+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:00:05.168+00', 5005, NULL), +(32716, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 09:00:00.15+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:00:05.576+00', 5426, NULL), +(32717, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:00.267812+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.807712+00', 7539, NULL), +(32718, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:00.272401+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:01.081369+00', 808, '{"timezone-id":"UTC"}'), +(32719, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:01.083181+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:01.782264+00', 699, '{"updated-tables":0,"total-tables":8}'), +(32720, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:01.784409+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.606826+00', 5822, '{"total-fields":71,"updated-fields":0}'), +(32721, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.606941+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.668717+00', 61, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32722, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.668821+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.807643+00', 138, NULL), +(32723, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.88134+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:08.004456+00', 123, NULL), +(32724, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.881358+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.958664+00', 77, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32725, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.958741+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.977312+00', 18, '{"fields-classified":0,"fields-failed":0}'), +(32726, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:07.977632+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:19:08.004362+00', 26, '{"total-tables":8,"tables-classified":0}'), +(32727, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:03.348526+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:19.165869+00', 15817, NULL), +(32728, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:03.390287+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:03.433562+00', 43, '{"timezone-id":null}'), +(32729, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:03.439126+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:04.737456+00', 1298, '{"updated-tables":0,"total-tables":4}'), +(32730, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:04.737595+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:19.093853+00', 14356, '{"total-fields":39,"updated-fields":0}'), +(32731, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:19.097382+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:19.158092+00', 60, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32732, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:19.158303+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:19.165422+00', 7, NULL), +(32733, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.124977+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.75964+00', 634, NULL), +(32734, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.125027+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.370036+00', 245, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32735, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.370111+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.612514+00', 242, '{"fields-classified":0,"fields-failed":0}'), +(32736, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.612608+00', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:20.759568+00', 146, '{"total-tables":4,"tables-classified":0}'), +(32737, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 10:00:00.231+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:00:05.08+00', 4849, NULL), +(32738, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 10:00:00.192+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:00:05.08+00', 4888, NULL), +(32739, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:00.072113+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.887162+00', 1815, NULL), +(32740, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:00.072167+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:00.17724+00', 105, '{"timezone-id":"UTC"}'), +(32741, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:00.177353+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:00.230822+00', 53, '{"updated-tables":0,"total-tables":8}'), +(32742, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:00.230937+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.792077+00', 1561, '{"total-fields":71,"updated-fields":0}'), +(32743, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.792142+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.821344+00', 29, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32744, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.821397+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.887137+00', 65, NULL), +(32745, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.909287+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.957466+00', 48, NULL), +(32746, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.909302+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.937043+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32747, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.937113+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.948613+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(32748, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.948675+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:19:01.957397+00', 8, '{"total-tables":8,"tables-classified":0}'), +(32749, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:00.304054+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.394825+00', 15090, NULL), +(32750, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:00.310045+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:00.320633+00', 10, '{"timezone-id":null}'), +(32751, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:00.322648+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:00.630877+00', 308, '{"updated-tables":0,"total-tables":4}'), +(32752, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:00.630966+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.365785+00', 14734, '{"total-fields":39,"updated-fields":0}'), +(32753, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.365892+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.389196+00', 23, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32754, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.389307+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.394741+00', 5, NULL), +(32755, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.518724+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.765045+00', 246, NULL), +(32756, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.518742+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.678753+00', 160, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32757, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.678878+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.722918+00', 44, '{"fields-classified":0,"fields-failed":0}'), +(32758, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.72323+00', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:15.764992+00', 41, '{"total-tables":4,"tables-classified":0}'), +(32759, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:00.364+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:04.544+00', 4180, NULL), +(32760, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:00.136+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:04.547+00', 4411, NULL), +(32761, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:00.290414+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:07.461205+00', 7170, NULL), +(32762, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:00.292477+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:01.386775+00', 1094, '{"timezone-id":"UTC"}'), +(32763, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:01.389695+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:01.873246+00', 483, '{"updated-tables":0,"total-tables":8}'), +(32764, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:01.873944+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:06.489511+00', 4615, '{"total-fields":71,"updated-fields":0}'), +(32765, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:06.490147+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:06.725582+00', 235, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32766, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:06.725887+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:07.460801+00', 734, NULL), +(32767, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:07.691858+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:08.128203+00', 436, NULL), +(32768, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:07.692277+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:07.978615+00', 286, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32769, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:07.97886+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:08.046095+00', 67, '{"fields-classified":0,"fields-failed":0}'), +(32770, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:08.04676+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:19:08.128094+00', 81, '{"total-tables":8,"tables-classified":0}'), +(32771, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:01.495253+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.195727+00', 18700, NULL), +(32772, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:01.508122+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:01.550113+00', 41, '{"timezone-id":null}'), +(32773, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:01.556815+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:02.576855+00', 1020, '{"updated-tables":0,"total-tables":4}'), +(32774, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:02.577271+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.162868+00', 17585, '{"total-fields":39,"updated-fields":0}'), +(32775, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.162991+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.191145+00', 28, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32776, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.1913+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.195626+00', 4, NULL), +(32777, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.341719+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.513788+00', 172, NULL), +(32778, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.341747+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.454123+00', 112, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32779, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.454283+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.484794+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(32780, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.485025+00', TIMESTAMP WITH TIME ZONE '2023-02-13 11:49:20.513634+00', 28, '{"total-tables":4,"tables-classified":0}'), +(32781, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 12:00:00.359+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:00:09.63+00', 9271, NULL), +(32782, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 12:00:00.415+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:00:09.628+00', 9213, NULL), +(32783, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:00.361075+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.539236+00', 6178, NULL), +(32784, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:00.366836+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:01.542389+00', 1175, '{"timezone-id":"UTC"}'), +(32785, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:01.546751+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:02.274391+00', 727, '{"updated-tables":0,"total-tables":8}'), +(32786, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:02.275223+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.34429+00', 4069, '{"total-fields":71,"updated-fields":0}'), +(32787, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.344354+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.407339+00', 62, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32788, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.407391+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.539206+00', 131, NULL), +(32789, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.68123+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.854709+00', 173, NULL), +(32790, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.681259+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.791025+00', 109, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32791, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.791434+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.822827+00', 31, '{"fields-classified":0,"fields-failed":0}'), +(32792, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.823417+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:19:06.854559+00', 31, '{"total-tables":8,"tables-classified":0}'), +(32793, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:00.764177+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.63594+00', 18871, NULL), +(32794, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:00.767594+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:00.786054+00', 18, '{"timezone-id":null}'), +(32795, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:00.789941+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:01.369906+00', 579, '{"updated-tables":0,"total-tables":4}'), +(32796, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:01.370207+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.574289+00', 18204, '{"total-fields":39,"updated-fields":0}'), +(32797, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.574402+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.617933+00', 43, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32798, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.618+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.635885+00', 17, NULL), +(32799, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.818606+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.927169+00', 108, NULL), +(32800, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.818812+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.885115+00', 66, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32801, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.885218+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.897209+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(32802, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.897291+00', TIMESTAMP WITH TIME ZONE '2023-02-13 12:49:19.927116+00', 29, '{"total-tables":4,"tables-classified":0}'), +(32803, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:00.153+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:06.17+00', 6017, NULL), +(32804, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:00.127+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:06.366+00', 6239, NULL), +(32805, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.038705+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.467148+00', 428, NULL), +(32806, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.038725+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.118356+00', 79, '{"timezone-id":"UTC"}'), +(32807, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.118464+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.145747+00', 27, '{"updated-tables":0,"total-tables":8}'), +(32808, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.145863+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.367996+00', 222, '{"total-fields":71,"updated-fields":0}'), +(32809, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.368048+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.381741+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32810, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.381846+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.466781+00', 84, NULL), +(32811, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.486772+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.528364+00', 41, NULL), +(32812, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.486789+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.51439+00', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32813, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.51445+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.518237+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(32814, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.518299+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:19:00.528301+00', 10, '{"total-tables":8,"tables-classified":0}'), +(32815, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:00.77386+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:17.96435+00', 17190, NULL), +(32816, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:00.781565+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:00.807763+00', 26, '{"timezone-id":null}'), +(32817, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:00.812614+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:01.433856+00', 621, '{"updated-tables":0,"total-tables":4}'), +(32818, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:01.433959+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:17.9251+00', 16491, '{"total-fields":39,"updated-fields":0}'), +(32819, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:17.925248+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:17.949519+00', 24, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32820, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:17.949619+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:17.964264+00', 14, NULL), +(32821, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.083761+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.157474+00', 73, NULL), +(32822, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.083778+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.13234+00', 48, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32823, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.132498+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.14215+00', 9, '{"fields-classified":0,"fields-failed":0}'), +(32824, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.142271+00', TIMESTAMP WITH TIME ZONE '2023-02-13 13:49:18.157409+00', 15, '{"total-tables":4,"tables-classified":0}'), +(32825, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 14:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:00:06.439+00', 6327, NULL), +(32826, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 14:00:00.235+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:00:06.243+00', 6008, NULL), +(32827, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:00.512059+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.082711+00', 6570, NULL), +(32828, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:00.514625+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:01.576127+00', 1061, '{"timezone-id":"UTC"}'), +(32829, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:01.578703+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:02.225498+00', 646, '{"updated-tables":0,"total-tables":8}'), +(32830, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:02.226351+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:06.207771+00', 3981, '{"total-fields":71,"updated-fields":0}'), +(32831, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:06.208178+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:06.398462+00', 190, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32832, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:06.398831+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.082271+00', 683, NULL), +(32833, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.352381+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.577506+00', 225, NULL), +(32834, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.3524+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.50769+00', 155, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32835, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.507772+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.535209+00', 27, '{"fields-classified":0,"fields-failed":0}'), +(32836, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.535885+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:19:07.577453+00', 41, '{"total-tables":8,"tables-classified":0}'), +(32837, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:01.350712+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.592675+00', 19241, NULL), +(32838, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:01.35231+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:01.406453+00', 54, '{"timezone-id":null}'), +(32839, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:01.418291+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:03.101035+00', 1682, '{"updated-tables":0,"total-tables":4}'), +(32840, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:03.101136+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.581077+00', 17479, '{"total-fields":39,"updated-fields":0}'), +(32841, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.581275+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.590313+00', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32842, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.590663+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.592639+00', 1, NULL), +(32843, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.706223+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.816753+00', 110, NULL), +(32844, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.706241+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.753207+00', 46, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32845, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.753438+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.762099+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(32846, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.762299+00', TIMESTAMP WITH TIME ZONE '2023-02-13 14:49:20.816639+00', 54, '{"total-tables":4,"tables-classified":0}'), +(32847, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 15:00:00.222+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:00:05.787+00', 5565, NULL), +(32848, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 15:00:00.219+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:00:06.088+00', 5869, NULL), +(32849, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:00.95115+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:10.577925+00', 9626, NULL), +(32850, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:00.955649+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:02.183991+00', 1228, '{"timezone-id":"UTC"}'), +(32851, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:02.188179+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:03.145799+00', 957, '{"updated-tables":0,"total-tables":8}'), +(32852, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:03.146178+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:08.565224+00', 5419, '{"total-fields":71,"updated-fields":0}'), +(32853, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:08.565493+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:08.795493+00', 230, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32854, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:08.795873+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:10.577647+00', 1781, NULL), +(32855, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:10.893819+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:11.304355+00', 410, NULL), +(32856, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:10.893842+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:11.177396+00', 283, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32857, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:11.177704+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:11.236758+00', 59, '{"fields-classified":0,"fields-failed":0}'), +(32858, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:11.23731+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:19:11.304024+00', 66, '{"total-tables":8,"tables-classified":0}'), +(32859, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.381656+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.603946+00', 27222, NULL), +(32860, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.388732+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.544577+00', 155, '{"timezone-id":null}'), +(32861, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.545482+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:07.593658+00', 7048, '{"updated-tables":0,"total-tables":4}'), +(32862, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:07.593806+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.566552+00', 19972, '{"total-fields":39,"updated-fields":0}'), +(32863, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.566705+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.598843+00', 32, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32864, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.598966+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.603861+00', 4, NULL), +(32865, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.720083+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.880606+00', 160, NULL), +(32866, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.720128+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.808676+00', 88, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32867, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.808822+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.839762+00', 30, '{"fields-classified":0,"fields-failed":0}'), +(32868, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.839913+00', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:27.880524+00', 40, '{"total-tables":4,"tables-classified":0}'), +(32869, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:00.022+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:00.238+00', 216, NULL), +(32870, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:00.03+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:00.235+00', 205, NULL), +(32871, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.011355+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.780712+00', 769, NULL), +(32872, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.01139+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.182759+00', 171, '{"timezone-id":"UTC"}'), +(32873, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.182874+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.249978+00', 67, '{"updated-tables":0,"total-tables":8}'), +(32874, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.250068+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.546752+00', 296, '{"total-fields":71,"updated-fields":0}'), +(32875, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.546825+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.608695+00', 61, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32876, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.61683+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.780642+00', 163, NULL), +(32877, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.807552+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.849307+00', 41, NULL), +(32878, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.807575+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.829503+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32879, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.829598+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.840254+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(32880, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.840408+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:00.849237+00', 8, '{"total-tables":8,"tables-classified":0}'), +(32881, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:00.04421+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.088657+00', 3044, NULL), +(32882, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:00.044241+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:00.045069+00', 0, '{"timezone-id":null}'), +(32883, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:00.045141+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:00.117327+00', 72, '{"updated-tables":0,"total-tables":4}'), +(32884, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:00.117401+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.085885+00', 2968, '{"total-fields":39,"updated-fields":0}'), +(32885, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.085961+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.08793+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32886, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.088015+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.088624+00', 0, NULL), +(32887, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.146369+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.170929+00', 24, NULL), +(32888, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.146412+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.161321+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32889, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.161423+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.165094+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(32890, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.165177+00', TIMESTAMP WITH TIME ZONE '2023-02-13 16:49:03.170879+00', 5, '{"total-tables":4,"tables-classified":0}'), +(32891, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 17:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:00:00.01+00', 3, NULL), +(32892, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 17:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:00:00.13+00', 119, NULL), +(32893, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.011108+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.321922+00', 310, NULL), +(32894, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.011133+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.03339+00', 22, '{"timezone-id":"UTC"}'), +(32895, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.033598+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.054347+00', 20, '{"updated-tables":0,"total-tables":8}'), +(32896, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.05441+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.250824+00', 196, '{"total-fields":71,"updated-fields":0}'), +(32897, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.250898+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.263898+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32898, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.263954+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.32188+00', 57, NULL), +(32899, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.333452+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.424363+00', 90, NULL), +(32900, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.333474+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.349568+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32901, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.349637+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.35407+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(32902, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.354141+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:19:00.424302+00', 70, '{"total-tables":8,"tables-classified":0}'), +(32903, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:00.019668+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.020339+00', 3000, NULL), +(32904, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:00.019695+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:00.020662+00', 0, '{"timezone-id":null}'), +(32905, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:00.020758+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:00.122446+00', 101, '{"updated-tables":0,"total-tables":4}'), +(32906, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:00.122575+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.017651+00', 2895, '{"total-fields":39,"updated-fields":0}'), +(32907, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.017792+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.01959+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32908, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.019681+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.020309+00', 0, NULL), +(32909, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.039988+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.062789+00', 22, NULL), +(32910, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.040015+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.053514+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32911, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.053588+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.057241+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(32912, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.057318+00', TIMESTAMP WITH TIME ZONE '2023-02-13 17:49:03.062737+00', 5, '{"total-tables":4,"tables-classified":0}'), +(32913, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 18:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:00:00.008+00', 3, NULL), +(32914, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 18:00:00.034+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:00:00.177+00', 143, NULL), +(32915, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.009052+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.283405+00', 274, NULL), +(32916, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.009083+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.018172+00', 9, '{"timezone-id":"UTC"}'), +(32917, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.018265+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.033503+00', 15, '{"updated-tables":0,"total-tables":8}'), +(32918, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.033671+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.213103+00', 179, '{"total-fields":71,"updated-fields":0}'), +(32919, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.213172+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.225485+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32920, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.225547+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.283367+00', 57, NULL), +(32921, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.294758+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.323232+00', 28, NULL), +(32922, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.294781+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.31202+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32923, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.31214+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.317852+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(32924, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.317938+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:19:00.323182+00', 5, '{"total-tables":8,"tables-classified":0}'), +(32925, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:00.018726+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.91878+00', 2900, NULL), +(32926, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:00.018754+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:00.020263+00', 1, '{"timezone-id":null}'), +(32927, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:00.020352+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:00.087364+00', 67, '{"updated-tables":0,"total-tables":4}'), +(32928, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:00.087451+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.916383+00', 2828, '{"total-fields":39,"updated-fields":0}'), +(32929, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.916473+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.918197+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32930, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.91825+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.918755+00', 0, NULL), +(32931, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.938958+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.959026+00', 20, NULL), +(32932, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.938983+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.950572+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32933, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.95065+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.954016+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(32934, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.95411+00', TIMESTAMP WITH TIME ZONE '2023-02-13 18:49:02.95897+00', 4, '{"total-tables":4,"tables-classified":0}'), +(32935, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 19:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:00:00.007+00', 3, NULL), +(32936, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 19:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:00:00.167+00', 154, NULL), +(32937, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.009494+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.296573+00', 287, NULL), +(32938, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.009521+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.017615+00', 8, '{"timezone-id":"UTC"}'), +(32939, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.017705+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.031799+00', 14, '{"updated-tables":0,"total-tables":8}'), +(32940, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.031883+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.218871+00', 186, '{"total-fields":71,"updated-fields":0}'), +(32941, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.219127+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.231005+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32942, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.231226+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.296527+00', 65, NULL), +(32943, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.310369+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.339435+00', 29, NULL), +(32944, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.310394+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.327987+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32945, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.328073+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.333678+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(32946, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.333854+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:19:00.33926+00', 5, '{"total-tables":8,"tables-classified":0}'), +(32947, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:00.013219+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.797989+00', 2784, NULL), +(32948, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:00.013258+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:00.014279+00', 1, '{"timezone-id":null}'), +(32949, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:00.014357+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:00.095436+00', 81, '{"updated-tables":0,"total-tables":4}'), +(32950, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:00.095602+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.793839+00', 2698, '{"total-fields":39,"updated-fields":0}'), +(32951, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.793929+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.795873+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32952, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.795941+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.797938+00', 1, NULL), +(32953, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.819068+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.845284+00', 26, NULL), +(32954, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.819092+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.834729+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32955, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.834835+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.839313+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(32956, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.839397+00', TIMESTAMP WITH TIME ZONE '2023-02-13 19:49:02.845221+00', 5, '{"total-tables":4,"tables-classified":0}'), +(32957, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:00:00.111+00', 107, NULL), +(32958, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 20:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:00:00.111+00', 104, NULL), +(32959, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.007929+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.274919+00', 266, NULL), +(32960, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.007956+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.014511+00', 6, '{"timezone-id":"UTC"}'), +(32961, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.014592+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.028153+00', 13, '{"updated-tables":0,"total-tables":8}'), +(32962, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.02823+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.192291+00', 164, '{"total-fields":71,"updated-fields":0}'), +(32963, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.192364+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.206213+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32964, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.206281+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.274879+00', 68, NULL), +(32965, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.28806+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.316199+00', 28, NULL), +(32966, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.288086+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.305441+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32967, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.305528+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.310939+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(32968, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.311015+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:19:00.316145+00', 5, '{"total-tables":8,"tables-classified":0}'), +(32969, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:00.014286+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.764576+00', 2750, NULL), +(32970, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:00.014317+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:00.015531+00', 1, '{"timezone-id":null}'), +(32971, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:00.015612+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:00.057209+00', 41, '{"updated-tables":0,"total-tables":4}'), +(32972, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:00.057411+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.761813+00', 2704, '{"total-fields":39,"updated-fields":0}'), +(32973, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.76194+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.763825+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32974, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.76392+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.764525+00', 0, NULL), +(32975, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.779777+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.803882+00', 24, NULL), +(32976, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.780379+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.794804+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32977, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.794887+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.798367+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(32978, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.798471+00', TIMESTAMP WITH TIME ZONE '2023-02-13 20:49:02.803826+00', 5, '{"total-tables":4,"tables-classified":0}'), +(32979, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.027+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.029+00', 2, NULL), +(32980, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.041+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.148+00', 107, NULL), +(32981, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.034491+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:01.152363+00', 1117, NULL), +(32982, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.034521+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.264853+00', 230, '{"deleted":0}'), +(32983, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:00.264921+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:00:01.15231+00', 887, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(32984, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.007579+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.25917+00', 251, NULL), +(32985, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.007607+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.013137+00', 5, '{"timezone-id":"UTC"}'), +(32986, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.013215+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.023803+00', 10, '{"updated-tables":0,"total-tables":8}'), +(32987, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.023865+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.189531+00', 165, '{"total-fields":71,"updated-fields":0}'), +(32988, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.189594+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.201973+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(32989, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.202031+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.259131+00', 57, NULL), +(32990, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.273176+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.297978+00', 24, NULL), +(32991, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.273199+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.288646+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(32992, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.288756+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.293375+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(32993, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.293454+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:19:00.297922+00', 4, '{"total-tables":8,"tables-classified":0}'), +(32994, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:00.010355+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.775989+00', 2765, NULL), +(32995, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:00.010381+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:00.011148+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(32996, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:00.011294+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:00.119123+00', 107, '{"updated-tables":0,"total-tables":4}'), +(32997, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:00.119199+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.773297+00', 2654, '{"total-fields":39,"updated-fields":0}'), +(32998, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.773395+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.775377+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(32999, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.775448+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.775957+00', 0, NULL), +(33000, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.802059+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.825796+00', 23, NULL), +(33001, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.802087+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.817177+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33002, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.81726+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.821342+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33003, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.821415+00', TIMESTAMP WITH TIME ZONE '2023-02-13 21:49:02.825746+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33004, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 22:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:00:00.119+00', 112, NULL), +(33005, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 22:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:00:00.12+00', 111, NULL), +(33006, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.007611+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.249135+00', 241, NULL), +(33007, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.007638+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.015215+00', 7, '{"timezone-id":"UTC"}'), +(33008, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.015302+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.027815+00', 12, '{"updated-tables":0,"total-tables":8}'), +(33009, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.027889+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.182049+00', 154, '{"total-fields":71,"updated-fields":0}'), +(33010, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.182134+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.192858+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33011, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.192938+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.249096+00', 56, NULL), +(33012, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.259919+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.283522+00', 23, NULL), +(33013, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.259942+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.274604+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33014, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.274675+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.279221+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33015, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.279296+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:19:00.283474+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33016, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:00.01001+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.752075+00', 2742, NULL), +(33017, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:00.010033+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:00.010453+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33018, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:00.010504+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:00.053411+00', 42, '{"updated-tables":0,"total-tables":4}'), +(33019, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:00.053482+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.749519+00', 2696, '{"total-fields":39,"updated-fields":0}'), +(33020, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.7496+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.751487+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33021, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.751553+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.752039+00', 0, NULL), +(33022, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.781146+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.817633+00', 36, NULL), +(33023, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.781171+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.809638+00', 28, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33024, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.809725+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.813089+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33025, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.813161+00', TIMESTAMP WITH TIME ZONE '2023-02-13 22:49:02.81757+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33026, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 23:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:00:00.129+00', 121, NULL), +(33027, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-13 23:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:00:00.13+00', 127, NULL), +(33028, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.012654+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.254921+00', 242, NULL), +(33029, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.012676+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.018878+00', 6, '{"timezone-id":"UTC"}'), +(33030, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.018952+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.030195+00', 11, '{"updated-tables":0,"total-tables":8}'), +(33031, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.030257+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.18655+00', 156, '{"total-fields":71,"updated-fields":0}'), +(33032, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.186618+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.19806+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33033, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.198129+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.25488+00', 56, NULL), +(33034, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.267644+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.290692+00', 23, NULL), +(33035, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.267682+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.282296+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33036, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.28236+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.286385+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33037, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.286468+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:19:00.290641+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33038, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:00.010949+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.786027+00', 2775, NULL), +(33039, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:00.010975+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:00.011658+00', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33040, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:00.011739+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:00.05753+00', 45, '{"updated-tables":0,"total-tables":4}'), +(33041, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:00.0576+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.783403+00', 2725, '{"total-fields":39,"updated-fields":0}'), +(33042, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.783509+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.785244+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33043, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.785316+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.785983+00', 0, NULL), +(33044, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.799949+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.827272+00', 27, NULL), +(33045, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.799971+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.813529+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33046, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.813616+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.816942+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33047, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.81702+00', TIMESTAMP WITH TIME ZONE '2023-02-13 23:49:02.827208+00', 10, '{"total-tables":4,"tables-classified":0}'), +(33048, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 00:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:00:00.108+00', 96, NULL), +(33049, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 00:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:00:00.108+00', 102, NULL), +(33050, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.008021+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.25799+00', 249, NULL), +(33051, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.008048+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.014526+00', 6, '{"timezone-id":"UTC"}'), +(33052, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.014848+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.028248+00', 13, '{"updated-tables":0,"total-tables":8}'), +(33053, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.028465+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.183151+00', 154, '{"total-fields":71,"updated-fields":0}'), +(33054, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.183436+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.206393+00', 22, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33055, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.206493+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.25796+00', 51, NULL), +(33056, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.26894+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.294519+00', 25, NULL), +(33057, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.26896+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.28475+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33058, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.284815+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.288977+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33059, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.289067+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:19:00.294472+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33060, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:00.01096+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.030372+00', 3019, NULL), +(33061, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:00.010998+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:00.029792+00', 18, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33062, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:00.03002+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:00.076523+00', 46, '{"updated-tables":0,"total-tables":4}'), +(33063, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:00.076625+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.027334+00', 2950, '{"total-fields":39,"updated-fields":0}'), +(33064, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.027475+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.02938+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33065, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.029625+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.030334+00', 0, NULL), +(33066, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.054822+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.083945+00', 29, NULL), +(33067, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.054845+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.073432+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33068, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.073781+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.078183+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33069, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.078266+00', TIMESTAMP WITH TIME ZONE '2023-02-14 00:49:03.083867+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33070, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:00:00.006+00', 2, NULL), +(33071, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 01:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:00:00.213+00', 205, NULL), +(33072, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.00667+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.250936+00', 244, NULL), +(33073, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.006692+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.029681+00', 22, '{"timezone-id":"UTC"}'), +(33074, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.029797+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.049751+00', 19, '{"updated-tables":0,"total-tables":8}'), +(33075, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.049867+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.190811+00', 140, '{"total-fields":71,"updated-fields":0}'), +(33076, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.190883+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.205348+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33077, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.205455+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.250883+00', 45, NULL), +(33078, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.26114+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.282823+00', 21, NULL), +(33079, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.261164+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.273784+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33080, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.273892+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.278396+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33081, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.278484+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:19:00.282775+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33082, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:00.011368+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.797077+00', 2785, NULL), +(33083, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:00.011421+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:00.013528+00', 2, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33084, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:00.013676+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:00.062424+00', 48, '{"updated-tables":0,"total-tables":4}'), +(33085, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:00.062588+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.794663+00', 2732, '{"total-fields":39,"updated-fields":0}'), +(33086, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.79477+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.796317+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33087, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.796403+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.79705+00', 0, NULL), +(33088, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.834496+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.855086+00', 20, NULL), +(33089, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.834528+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.846228+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33090, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.846466+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.850123+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33091, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.850226+00', TIMESTAMP WITH TIME ZONE '2023-02-14 01:49:02.854986+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33092, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.032+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.034+00', 2, NULL), +(33093, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.043+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.194+00', 151, NULL), +(33094, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.028248+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:03.694918+00', 3666, NULL), +(33095, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.028273+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.282983+00', 254, '{"deleted":0}'), +(33096, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:00.283076+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:00:03.694824+00', 3411, '{"errors":0,"created":0,"updated":4,"deleted":0}'), +(33097, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.006612+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.301661+00', 295, NULL), +(33098, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.006635+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.013575+00', 6, '{"timezone-id":"UTC"}'), +(33099, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.013641+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.061116+00', 47, '{"updated-tables":0,"total-tables":8}'), +(33100, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.061251+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.229748+00', 168, '{"total-fields":71,"updated-fields":0}'), +(33101, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.229816+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.240126+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33102, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.240198+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.301618+00', 61, NULL), +(33103, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.315857+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.380777+00', 64, NULL), +(33104, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.315883+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.330872+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33105, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.331088+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.336595+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33106, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.33667+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:19:00.380675+00', 44, '{"total-tables":8,"tables-classified":0}'), +(33107, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:00.010731+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.696218+00', 2685, NULL), +(33108, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:00.010761+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:00.011511+00', 0, '{"timezone-id":null}'), +(33109, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:00.01158+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:00.061781+00', 50, '{"updated-tables":0,"total-tables":4}'), +(33110, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:00.061846+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.693461+00', 2631, '{"total-fields":39,"updated-fields":0}'), +(33111, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.693545+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.695512+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33112, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.69558+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.696181+00', 0, NULL), +(33113, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.713107+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.760368+00', 47, NULL), +(33114, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.71313+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.748787+00', 35, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33115, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.748882+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.755459+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(33116, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.755541+00', TIMESTAMP WITH TIME ZONE '2023-02-14 02:49:02.760314+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33117, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 03:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:00:00.174+00', 168, NULL), +(33118, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 03:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:00:00.175+00', 167, NULL), +(33119, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.012136+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.268446+00', 256, NULL), +(33120, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.012164+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.018785+00', 6, '{"timezone-id":"UTC"}'), +(33121, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.018923+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.028512+00', 9, '{"updated-tables":0,"total-tables":8}'), +(33122, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.028618+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.203906+00', 175, '{"total-fields":71,"updated-fields":0}'), +(33123, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.204026+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.214884+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33124, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.215032+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.268348+00', 53, NULL), +(33125, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.281314+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.307679+00', 26, NULL), +(33126, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.281338+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.296671+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33127, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.296971+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.302017+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33128, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.302177+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:19:00.307622+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33129, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:00.008548+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.124119+00', 3115, NULL), +(33130, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:00.008574+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:00.009114+00', 0, '{"timezone-id":null}'), +(33131, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:00.009181+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:00.06398+00', 54, '{"updated-tables":0,"total-tables":4}'), +(33132, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:00.064054+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.12077+00', 3056, '{"total-fields":39,"updated-fields":0}'), +(33133, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.121138+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.123116+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33134, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.123367+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.123941+00', 0, NULL), +(33135, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.145612+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.207225+00', 61, NULL), +(33136, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.145637+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.197705+00', 52, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33137, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.197798+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.2016+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33138, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.201669+00', TIMESTAMP WITH TIME ZONE '2023-02-14 03:49:03.207168+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33139, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:00:00.006+00', 2, NULL), +(33140, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 04:00:00.015+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:00:00.128+00', 113, NULL), +(33141, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.006846+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.332089+00', 325, NULL), +(33142, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.00687+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.013909+00', 7, '{"timezone-id":"UTC"}'), +(33143, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.014046+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.029569+00', 15, '{"updated-tables":0,"total-tables":8}'), +(33144, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.029645+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.263484+00', 233, '{"total-fields":71,"updated-fields":0}'), +(33145, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.263561+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.275978+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33146, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.276044+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.332045+00', 56, NULL), +(33147, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.344389+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.367033+00', 22, NULL), +(33148, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.344455+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.358167+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33149, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.358242+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.362635+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33150, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.362714+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:19:00.366986+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33151, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:00.01213+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.860834+00', 2848, NULL), +(33152, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:00.012159+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:00.012805+00', 0, '{"timezone-id":null}'), +(33153, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:00.012865+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:00.066698+00', 53, '{"updated-tables":0,"total-tables":4}'), +(33154, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:00.066772+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.857635+00', 2790, '{"total-fields":39,"updated-fields":0}'), +(33155, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.857745+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.859883+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33156, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.859964+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.860795+00', 0, NULL), +(33157, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.879323+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.930684+00', 51, NULL), +(33158, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.879347+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.924209+00', 44, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33159, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.924279+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.926741+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(33160, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.926846+00', TIMESTAMP WITH TIME ZONE '2023-02-14 04:49:02.93063+00', 3, '{"total-tables":4,"tables-classified":0}'), +(33161, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:00:00.005+00', 2, NULL), +(33162, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 05:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:00:00.118+00', 111, NULL), +(33163, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.008932+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.246356+00', 237, NULL), +(33164, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.008959+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.02243+00', 13, '{"timezone-id":"UTC"}'), +(33165, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.022544+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.040511+00', 17, '{"updated-tables":0,"total-tables":8}'), +(33166, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.040579+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.193355+00', 152, '{"total-fields":71,"updated-fields":0}'), +(33167, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.193413+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.203848+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33168, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.203902+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.246323+00', 42, NULL), +(33169, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.2563+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.279469+00', 23, NULL), +(33170, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.256322+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.2683+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33171, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.268365+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.27506+00', 6, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33172, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.275131+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:19:00.279387+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33173, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:00.011652+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.084288+00', 3072, NULL), +(33174, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:00.011693+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:00.012807+00', 1, '{"timezone-id":null}'), +(33175, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:00.012882+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:00.06229+00', 49, '{"updated-tables":0,"total-tables":4}'), +(33176, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:00.062486+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.071822+00', 3009, '{"total-fields":39,"updated-fields":0}'), +(33177, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.071904+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.080875+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33178, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.08101+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.084222+00', 3, NULL), +(33179, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.118478+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.152679+00', 34, NULL), +(33180, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.118508+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.140822+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33181, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.141117+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.146526+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33182, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.146612+00', TIMESTAMP WITH TIME ZONE '2023-02-14 05:49:03.152488+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33183, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 06:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:00:00.006+00', 2, NULL), +(33184, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 06:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:00:00.141+00', 135, NULL), +(33185, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.010493+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.247651+00', 237, NULL), +(33186, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.010527+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.01734+00', 6, '{"timezone-id":"UTC"}'), +(33187, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.017414+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.03487+00', 17, '{"updated-tables":0,"total-tables":8}'), +(33188, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.03495+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.184252+00', 149, '{"total-fields":71,"updated-fields":0}'), +(33189, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.18432+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.195326+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33190, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.195389+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.247612+00', 52, NULL), +(33191, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.258783+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.283985+00', 25, NULL), +(33192, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.258805+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.274229+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33193, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.2743+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.279368+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33194, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.279439+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:19:00.283934+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33195, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:00.011487+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.088204+00', 3076, NULL), +(33196, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:00.011517+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:00.012453+00', 0, '{"timezone-id":null}'), +(33197, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:00.012577+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:00.089498+00', 76, '{"updated-tables":0,"total-tables":4}'), +(33198, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:00.089618+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.085429+00', 2995, '{"total-fields":39,"updated-fields":0}'), +(33199, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.085599+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.087437+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33200, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.087549+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.08817+00', 0, NULL), +(33201, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.117964+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.146166+00', 28, NULL), +(33202, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.118005+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.128653+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33203, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.128756+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.132283+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33204, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.132401+00', TIMESTAMP WITH TIME ZONE '2023-02-14 06:49:03.146112+00', 13, '{"total-tables":4,"tables-classified":0}'), +(33205, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 07:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:00:00.005+00', 2, NULL), +(33206, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 07:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:00:00.151+00', 140, NULL), +(33207, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.007679+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.284525+00', 276, NULL), +(33208, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.007708+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.019854+00', 12, '{"timezone-id":"UTC"}'), +(33209, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.019954+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.042288+00', 22, '{"updated-tables":0,"total-tables":8}'), +(33210, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.042377+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.207717+00', 165, '{"total-fields":71,"updated-fields":0}'), +(33211, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.208054+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.223558+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33212, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.223912+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.284456+00', 60, NULL), +(33213, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.29829+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.343852+00', 45, NULL), +(33214, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.298316+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.315054+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33215, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.315137+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.321269+00', 6, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33216, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.321464+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:19:00.3437+00', 22, '{"total-tables":8,"tables-classified":0}'), +(33217, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:00.012057+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.85289+00', 2840, NULL), +(33218, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:00.012083+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:00.012647+00', 0, '{"timezone-id":null}'), +(33219, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:00.012708+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:00.051908+00', 39, '{"updated-tables":0,"total-tables":4}'), +(33220, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:00.052039+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.83918+00', 2787, '{"total-fields":39,"updated-fields":0}'), +(33221, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.839269+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.851205+00', 11, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33222, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.851339+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.852848+00', 1, NULL), +(33223, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.872232+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.88979+00', 17, NULL), +(33224, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.872257+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.882789+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33225, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.882869+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.885784+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(33226, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.885856+00', TIMESTAMP WITH TIME ZONE '2023-02-14 07:49:02.889725+00', 3, '{"total-tables":4,"tables-classified":0}'), +(33227, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 08:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:00:00.146+00', 142, NULL), +(33228, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 08:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:00:00.147+00', 140, NULL), +(33229, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.007476+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.287631+00', 280, NULL), +(33230, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.007503+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.025013+00', 17, '{"timezone-id":"UTC"}'), +(33231, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.025095+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.038247+00', 13, '{"updated-tables":0,"total-tables":8}'), +(33232, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.038311+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.224943+00', 186, '{"total-fields":71,"updated-fields":0}'), +(33233, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.225051+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.23661+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33234, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.236707+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.287537+00', 50, NULL), +(33235, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.299419+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.322477+00', 23, NULL), +(33236, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.299441+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.313145+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33237, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.313278+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.317398+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33238, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.3175+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:19:00.322422+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33239, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:00.011533+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.85487+00', 2843, NULL), +(33240, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:00.01156+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:00.012295+00', 0, '{"timezone-id":null}'), +(33241, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:00.012385+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:00.061924+00', 49, '{"updated-tables":0,"total-tables":4}'), +(33242, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:00.062024+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.85216+00', 2790, '{"total-fields":39,"updated-fields":0}'), +(33243, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.852238+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.854127+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33244, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.854203+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.854836+00', 0, NULL), +(33245, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.877261+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.900805+00', 23, NULL), +(33246, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.877285+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.888026+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33247, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.888152+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.89495+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(33248, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.895034+00', TIMESTAMP WITH TIME ZONE '2023-02-14 08:49:02.900708+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33249, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:00:00.006+00', 2, NULL), +(33250, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 09:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:00:00.123+00', 115, NULL), +(33251, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.022915+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.280374+00', 257, NULL), +(33252, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.022947+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.044258+00', 21, '{"timezone-id":"UTC"}'), +(33253, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.04452+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.054809+00', 10, '{"updated-tables":0,"total-tables":8}'), +(33254, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.054868+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.216504+00', 161, '{"total-fields":71,"updated-fields":0}'), +(33255, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.216567+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.228085+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33256, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.228152+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.280333+00', 52, NULL), +(33257, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.293339+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.319608+00', 26, NULL), +(33258, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.293362+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.309631+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33259, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.309709+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.314602+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33260, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.314676+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:19:00.31955+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33261, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:00.011382+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.10584+00', 3094, NULL), +(33262, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:00.011408+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:00.012439+00', 1, '{"timezone-id":null}'), +(33263, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:00.012512+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:00.106944+00', 94, '{"updated-tables":0,"total-tables":4}'), +(33264, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:00.107047+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.103426+00', 2996, '{"total-fields":39,"updated-fields":0}'), +(33265, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.103508+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.10533+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33266, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.105399+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.105811+00', 0, NULL), +(33267, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.123496+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.141442+00', 17, NULL), +(33268, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.123521+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.133917+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33269, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.134004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.137337+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33270, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.137411+00', TIMESTAMP WITH TIME ZONE '2023-02-14 09:49:03.141387+00', 3, '{"total-tables":4,"tables-classified":0}'), +(33271, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 10:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:00:00.008+00', 2, NULL), +(33272, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 10:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:00:00.126+00', 116, NULL), +(33273, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.00757+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.264958+00', 257, NULL), +(33274, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.007598+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.023146+00', 15, '{"timezone-id":"UTC"}'), +(33275, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.023241+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.036332+00', 13, '{"updated-tables":0,"total-tables":8}'), +(33276, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.036455+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.199454+00', 162, '{"total-fields":71,"updated-fields":0}'), +(33277, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.199531+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.211901+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33278, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.21196+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.26492+00', 52, NULL), +(33279, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.27759+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.301426+00', 23, NULL), +(33280, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.277612+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.293081+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33281, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.293149+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.297059+00', 3, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33282, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.297129+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:19:00.301372+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33283, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:00.008963+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:02.977149+00', 2968, NULL), +(33284, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:00.00899+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:00.009539+00', 0, '{"timezone-id":null}'), +(33285, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:00.009614+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:00.056701+00', 47, '{"updated-tables":0,"total-tables":4}'), +(33286, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:00.056937+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:02.974957+00', 2918, '{"total-fields":39,"updated-fields":0}'), +(33287, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:02.975034+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:02.976628+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33288, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:02.976713+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:02.977123+00', 0, NULL), +(33289, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.021694+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.046339+00', 24, NULL), +(33290, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.021721+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.036453+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33291, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.036608+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.040554+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33292, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.040623+00', TIMESTAMP WITH TIME ZONE '2023-02-14 10:49:03.046286+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33293, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:00:00.005+00', 2, NULL), +(33294, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 11:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:00:00.143+00', 133, NULL), +(33295, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.008365+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.259227+00', 250, NULL), +(33296, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.008395+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.017167+00', 8, '{"timezone-id":"UTC"}'), +(33297, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.017243+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.030745+00', 13, '{"updated-tables":0,"total-tables":8}'), +(33298, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.030863+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.187635+00', 156, '{"total-fields":71,"updated-fields":0}'), +(33299, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.187708+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.200955+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33300, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.201031+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.259188+00', 58, NULL), +(33301, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.286416+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.315033+00', 28, NULL), +(33302, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.286443+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.303708+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33303, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.303807+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.309652+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33304, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.309731+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:19:00.314982+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33305, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:00.008528+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.042409+00', 3033, NULL), +(33306, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:00.008556+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:00.0091+00', 0, '{"timezone-id":null}'), +(33307, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:00.009162+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:00.063145+00', 53, '{"updated-tables":0,"total-tables":4}'), +(33308, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:00.063254+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.036525+00', 2973, '{"total-fields":39,"updated-fields":0}'), +(33309, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.036634+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.041317+00', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33310, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.0414+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.042101+00', 0, NULL), +(33311, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.067801+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.091559+00', 23, NULL), +(33312, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.067833+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.078648+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33313, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.078889+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.084762+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33314, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.084954+00', TIMESTAMP WITH TIME ZONE '2023-02-14 11:49:03.091476+00', 6, '{"total-tables":4,"tables-classified":0}'), +(33315, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:00.023+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:00.024+00', 1, NULL), +(33316, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:00.029+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:00.295+00', 266, NULL), +(33317, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.007829+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.245781+00', 237, NULL), +(33318, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.007853+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.019179+00', 11, '{"timezone-id":"UTC"}'), +(33319, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.019527+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.028871+00', 9, '{"updated-tables":0,"total-tables":8}'), +(33320, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.029007+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.187102+00', 158, '{"total-fields":71,"updated-fields":0}'), +(33321, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.187162+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.196726+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33322, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.196844+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.245748+00', 48, NULL), +(33323, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.258115+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.283012+00', 24, NULL), +(33324, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.258137+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.272193+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33325, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.272328+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.277353+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33326, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.277486+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:19:00.282958+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33327, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:00.010507+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.682645+00', 2672, NULL), +(33328, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:00.010532+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:00.011094+00', 0, '{"timezone-id":null}'), +(33329, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:00.011166+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:00.075633+00', 64, '{"updated-tables":0,"total-tables":4}'), +(33330, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:00.075696+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.679414+00', 2603, '{"total-fields":39,"updated-fields":0}'), +(33331, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.679733+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.68174+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33332, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.681964+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.682527+00', 0, NULL), +(33333, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.703996+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.726333+00', 22, NULL), +(33334, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.704022+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.71674+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33335, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.716838+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.720823+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33336, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.720907+00', TIMESTAMP WITH TIME ZONE '2023-02-14 12:49:02.726273+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33337, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 13:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:00:00.133+00', 125, NULL), +(33338, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 13:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:00:00.132+00', 126, NULL), +(33339, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.008627+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.268066+00', 259, NULL), +(33340, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.008654+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.015167+00', 6, '{"timezone-id":"UTC"}'), +(33341, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.015277+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.043942+00', 28, '{"updated-tables":0,"total-tables":8}'), +(33342, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.044026+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.203188+00', 159, '{"total-fields":71,"updated-fields":0}'), +(33343, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.203276+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.21333+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33344, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.213397+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.268029+00', 54, NULL), +(33345, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.283528+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.309681+00', 26, NULL), +(33346, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.283553+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.299462+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33347, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.299536+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.304241+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33348, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.304325+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:19:00.309618+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33349, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:00.015785+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.015155+00', 2999, NULL), +(33350, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:00.015814+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:00.016896+00', 1, '{"timezone-id":null}'), +(33351, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:00.016977+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:00.070891+00', 53, '{"updated-tables":0,"total-tables":4}'), +(33352, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:00.071035+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.011937+00', 2940, '{"total-fields":39,"updated-fields":0}'), +(33353, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.012284+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.014165+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33354, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.014266+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.015123+00', 0, NULL), +(33355, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.034889+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.058607+00', 23, NULL), +(33356, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.034915+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.049364+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33357, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.049519+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.053904+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33358, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.054023+00', TIMESTAMP WITH TIME ZONE '2023-02-14 13:49:03.058555+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33359, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 14:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:00:00.006+00', 1, NULL), +(33360, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 14:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:00:00.138+00', 130, NULL), +(33361, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.016172+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.288962+00', 272, NULL), +(33362, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.016198+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.024784+00', 8, '{"timezone-id":"UTC"}'), +(33363, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.024871+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.042724+00', 17, '{"updated-tables":0,"total-tables":8}'), +(33364, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.042945+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.208289+00', 165, '{"total-fields":71,"updated-fields":0}'), +(33365, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.208556+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.219103+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33366, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.219428+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.288929+00', 69, NULL), +(33367, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.302146+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.334182+00', 32, NULL), +(33368, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.302175+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.32354+00', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33369, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.323676+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.32912+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33370, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.329315+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:19:00.334131+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33371, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:00.026517+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.793611+00', 2767, NULL), +(33372, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:00.026549+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:00.029738+00', 3, '{"timezone-id":null}'), +(33373, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:00.029832+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:00.1026+00', 72, '{"updated-tables":0,"total-tables":4}'), +(33374, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:00.102706+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.790423+00', 2687, '{"total-fields":39,"updated-fields":0}'), +(33375, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.790652+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.792776+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33376, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.793005+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.793503+00', 0, NULL), +(33377, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.817647+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.839541+00', 21, NULL), +(33378, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.817671+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.830078+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33379, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.830486+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.83408+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33380, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.834269+00', TIMESTAMP WITH TIME ZONE '2023-02-14 14:49:02.839491+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33381, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:00:00.01+00', 8, NULL), +(33382, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 15:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:00:00.185+00', 173, NULL), +(33383, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.015221+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.273927+00', 258, NULL), +(33384, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.015246+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.023467+00', 8, '{"timezone-id":"UTC"}'), +(33385, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.023554+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.034406+00', 10, '{"updated-tables":0,"total-tables":8}'), +(33386, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.034573+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.193578+00', 159, '{"total-fields":71,"updated-fields":0}'), +(33387, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.193661+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.20863+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33388, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.208703+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.273888+00', 65, NULL), +(33389, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.286412+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.311751+00', 25, NULL), +(33390, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.286492+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.302036+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33391, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.302124+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.307209+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33392, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.307273+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:19:00.311708+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33393, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:00.014078+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.870594+00', 2856, NULL), +(33394, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:00.014102+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:00.014798+00', 0, '{"timezone-id":null}'), +(33395, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:00.014867+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:00.075457+00', 60, '{"updated-tables":0,"total-tables":4}'), +(33396, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:00.075545+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.858934+00', 2783, '{"total-fields":39,"updated-fields":0}'), +(33397, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.859312+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.86942+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33398, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.86958+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.870526+00', 0, NULL), +(33399, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.887862+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.910671+00', 22, NULL), +(33400, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.887886+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.898295+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33401, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.898457+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.904973+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(33402, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.905092+00', TIMESTAMP WITH TIME ZONE '2023-02-14 15:49:02.910583+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33403, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 16:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:00:00.005+00', 3, NULL), +(33404, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 16:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:00:00.173+00', 161, NULL), +(33405, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.007736+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.220453+00', 212, NULL), +(33406, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.00776+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.017999+00', 10, '{"timezone-id":"UTC"}'), +(33407, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.018089+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.033694+00', 15, '{"updated-tables":0,"total-tables":8}'), +(33408, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.033752+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.159119+00', 125, '{"total-fields":71,"updated-fields":0}'), +(33409, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.159195+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.16853+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33410, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.168586+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.220397+00', 51, NULL), +(33411, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.23089+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.253124+00', 22, NULL), +(33412, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.23091+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.244826+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33413, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.244893+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.24901+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33414, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.249076+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:19:00.253081+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33415, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:00.011153+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.06419+00', 3053, NULL), +(33416, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:00.01118+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:00.011694+00', 0, '{"timezone-id":null}'), +(33417, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:00.011791+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:00.083761+00', 71, '{"updated-tables":0,"total-tables":4}'), +(33418, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:00.083848+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.055028+00', 2971, '{"total-fields":39,"updated-fields":0}'), +(33419, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.055316+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.058281+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33420, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.058457+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.064011+00', 5, NULL), +(33421, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.091633+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.11414+00', 22, NULL), +(33422, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.091659+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.101935+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33423, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.102022+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.106777+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33424, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.106863+00', TIMESTAMP WITH TIME ZONE '2023-02-14 16:49:03.11404+00', 7, '{"total-tables":4,"tables-classified":0}'), +(33425, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 17:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:00:00.005+00', 3, NULL), +(33426, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 17:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:00:00.208+00', 200, NULL), +(33427, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.00788+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.269206+00', 261, NULL), +(33428, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.007904+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.017149+00', 9, '{"timezone-id":"UTC"}'), +(33429, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.01734+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.037843+00', 20, '{"updated-tables":0,"total-tables":8}'), +(33430, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.037988+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.200643+00', 162, '{"total-fields":71,"updated-fields":0}'), +(33431, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.200785+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.212889+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33432, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.212961+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.269118+00', 56, NULL), +(33433, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.282779+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.311407+00', 28, NULL), +(33434, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.282803+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.299669+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33435, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.299836+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.305433+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33436, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.305581+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:19:00.311352+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33437, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:00.009927+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.687717+00', 2677, NULL), +(33438, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:00.00995+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:00.01048+00', 0, '{"timezone-id":null}'), +(33439, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:00.010531+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:00.064571+00', 54, '{"updated-tables":0,"total-tables":4}'), +(33440, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:00.064639+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.685581+00', 2620, '{"total-fields":39,"updated-fields":0}'), +(33441, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.685646+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.687355+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33442, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.68741+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.687686+00', 0, NULL), +(33443, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.70158+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.717023+00', 15, NULL), +(33444, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.701601+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.710841+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33445, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.710914+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.713645+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(33446, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.713706+00', TIMESTAMP WITH TIME ZONE '2023-02-14 17:49:02.716981+00', 3, '{"total-tables":4,"tables-classified":0}'), +(33447, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:00:00.008+00', 4, NULL), +(33448, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 18:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:00:00.162+00', 152, NULL), +(33449, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.006477+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.234332+00', 227, NULL), +(33450, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.006499+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.013876+00', 7, '{"timezone-id":"UTC"}'), +(33451, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.014061+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.024609+00', 10, '{"updated-tables":0,"total-tables":8}'), +(33452, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.02472+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.16846+00', 143, '{"total-fields":71,"updated-fields":0}'), +(33453, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.168536+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.178057+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33454, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.17812+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.234295+00', 56, NULL), +(33455, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.249588+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.273589+00', 24, NULL), +(33456, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.249614+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.265199+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33457, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.265273+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.269526+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33458, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.269593+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:19:00.273547+00', 3, '{"total-tables":8,"tables-classified":0}'), +(33459, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:00.010721+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:02.997475+00', 2986, NULL), +(33460, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:00.010747+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:00.011407+00', 0, '{"timezone-id":null}'), +(33461, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:00.011476+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:00.059009+00', 47, '{"updated-tables":0,"total-tables":4}'), +(33462, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:00.059071+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:02.995112+00', 2936, '{"total-fields":39,"updated-fields":0}'), +(33463, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:02.995202+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:02.996942+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33464, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:02.997009+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:02.997445+00', 0, NULL), +(33465, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.014524+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.030952+00', 16, NULL), +(33466, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.014546+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.023645+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33467, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.023714+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.026403+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(33468, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.026477+00', TIMESTAMP WITH TIME ZONE '2023-02-14 18:49:03.030899+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33469, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:00:00.005+00', 2, NULL), +(33470, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 19:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:00:00.135+00', 129, NULL), +(33471, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.007944+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.259509+00', 251, NULL), +(33472, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.007971+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.023368+00', 15, '{"timezone-id":"UTC"}'), +(33473, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.023692+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.037117+00', 13, '{"updated-tables":0,"total-tables":8}'), +(33474, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.037219+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.192869+00', 155, '{"total-fields":71,"updated-fields":0}'), +(33475, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.192982+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.204854+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33476, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.204965+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.259432+00', 54, NULL), +(33477, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.271666+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.298418+00', 26, NULL), +(33478, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.271689+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.287721+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33479, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.287843+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.293217+00', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33480, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.293332+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:19:00.29834+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33481, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:00.020396+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.779912+00', 2759, NULL), +(33482, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:00.020452+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:00.021125+00', 0, '{"timezone-id":null}'), +(33483, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:00.021195+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:00.069989+00', 48, '{"updated-tables":0,"total-tables":4}'), +(33484, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:00.070045+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.777645+00', 2707, '{"total-fields":39,"updated-fields":0}'), +(33485, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.777706+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.779236+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33486, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.779288+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.779869+00', 0, NULL), +(33487, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.831393+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.853976+00', 22, NULL), +(33488, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.83142+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.84274+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33489, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.842833+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.849159+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(33490, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.849234+00', TIMESTAMP WITH TIME ZONE '2023-02-14 19:49:02.853924+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33491, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 20:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:00:00.006+00', 2, NULL), +(33492, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 20:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:00:00.156+00', 146, NULL), +(33493, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.008265+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.270694+00', 262, NULL), +(33494, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.008288+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.015459+00', 7, '{"timezone-id":"UTC"}'), +(33495, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.015568+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.037937+00', 22, '{"updated-tables":0,"total-tables":8}'), +(33496, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.038003+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.194061+00', 156, '{"total-fields":71,"updated-fields":0}'), +(33497, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.194408+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.205414+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33498, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.205716+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.270601+00', 64, NULL), +(33499, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.283894+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.308131+00', 24, NULL), +(33500, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.283917+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.298804+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33501, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.298882+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.303591+00', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33502, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.303782+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:19:00.308004+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33503, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:00.01135+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.620635+00', 2609, NULL), +(33504, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:00.011373+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:00.012328+00', 0, '{"timezone-id":null}'), +(33505, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:00.012452+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:00.051521+00', 39, '{"updated-tables":0,"total-tables":4}'), +(33506, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:00.051593+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.618622+00', 2567, '{"total-fields":39,"updated-fields":0}'), +(33507, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.618681+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.62005+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33508, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.620169+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.620543+00', 0, NULL), +(33509, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.637755+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.6543+00', 16, NULL), +(33510, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.637778+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.647295+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33511, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.647532+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.6507+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33512, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.650835+00', TIMESTAMP WITH TIME ZONE '2023-02-14 20:49:02.654182+00', 3, '{"total-tables":4,"tables-classified":0}'), +(33513, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.01+00', 2, NULL), +(33514, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.127+00', 113, NULL), +(33515, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.006868+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.750941+00', 744, NULL), +(33516, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.006897+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.205449+00', 198, '{"deleted":0}'), +(33517, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.205753+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:00:00.750661+00', 544, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(33518, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.006664+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.238484+00', 231, NULL), +(33519, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.006689+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.011647+00', 4, '{"timezone-id":"UTC"}'), +(33520, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.011714+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.028257+00', 16, '{"updated-tables":0,"total-tables":8}'), +(33521, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.028564+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.173481+00', 144, '{"total-fields":71,"updated-fields":0}'), +(33522, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.173842+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.185283+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33523, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.185619+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.238443+00', 52, NULL), +(33524, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.250249+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.276159+00', 25, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33525, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.250273+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.264593+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33526, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.264883+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.270129+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33527, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.270313+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:19:00.276011+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33528, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:00.008051+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.703933+00', 2695, NULL), +(33529, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:00.008077+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:00.00877+00', 0, '{"timezone-id":null}'), +(33530, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:00.008859+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:00.050233+00', 41, '{"updated-tables":0,"total-tables":4}'), +(33531, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:00.050316+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.701404+00', 2651, '{"total-fields":39,"updated-fields":0}'), +(33532, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.701513+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.703236+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33533, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.703309+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.703902+00', 0, NULL), +(33534, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.720458+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.738745+00', 18, NULL), +(33535, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.720482+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.730166+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33536, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.730258+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.733512+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33537, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.733598+00', TIMESTAMP WITH TIME ZONE '2023-02-14 21:49:02.738692+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33538, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 22:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:00:00.005+00', 2, NULL), +(33539, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 22:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:00:00.122+00', 116, NULL), +(33540, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.005711+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.248842+00', 243, NULL), +(33541, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.005734+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.013246+00', 7, '{"timezone-id":"UTC"}'), +(33542, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.013331+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.026775+00', 13, '{"updated-tables":0,"total-tables":8}'), +(33543, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.02684+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.1923+00', 165, '{"total-fields":71,"updated-fields":0}'), +(33544, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.192366+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.201254+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33545, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.201316+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.248806+00', 47, NULL), +(33546, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.259852+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.280564+00', 20, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33547, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.259872+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.272587+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33548, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.272654+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.276453+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33549, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.276522+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:19:00.280515+00', 3, '{"total-tables":8,"tables-classified":0}'), +(33550, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:00.011346+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.844384+00', 2833, NULL), +(33551, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:00.011371+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:00.011848+00', 0, '{"timezone-id":null}'), +(33552, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:00.011903+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:00.063851+00', 51, '{"updated-tables":0,"total-tables":4}'), +(33553, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:00.063909+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.840806+00', 2776, '{"total-fields":39,"updated-fields":0}'), +(33554, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.840945+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.843489+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33555, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.84358+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.844345+00', 0, NULL), +(33556, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.866739+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.891701+00', 24, NULL), +(33557, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.866764+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.880554+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33558, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.881394+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.886213+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33559, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.886316+00', TIMESTAMP WITH TIME ZONE '2023-02-14 22:49:02.891624+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33560, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:00:00.006+00', 2, NULL), +(33561, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-14 23:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:00:00.176+00', 164, NULL), +(33562, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.011533+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.259176+00', 247, NULL), +(33563, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.011555+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.01961+00', 8, '{"timezone-id":"UTC"}'), +(33564, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.019683+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.033964+00', 14, '{"updated-tables":0,"total-tables":8}'), +(33565, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.034026+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.189181+00', 155, '{"total-fields":71,"updated-fields":0}'), +(33566, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.189271+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.202272+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33567, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.202533+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.259077+00', 56, NULL), +(33568, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.273738+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.304442+00', 30, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33569, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.273761+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.291732+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33570, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.291844+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.298218+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(33571, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.298299+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:19:00.304363+00', 6, '{"total-tables":8,"tables-classified":0}'), +(33572, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:00.008083+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.787993+00', 2779, NULL), +(33573, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:00.008106+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:00.008572+00', 0, '{"timezone-id":null}'), +(33574, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:00.008645+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:00.044246+00', 35, '{"updated-tables":0,"total-tables":4}'), +(33575, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:00.044298+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.785496+00', 2741, '{"total-fields":39,"updated-fields":0}'), +(33576, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.785555+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.787577+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33577, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.787639+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.787971+00', 0, NULL), +(33578, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.803636+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.823696+00', 20, NULL), +(33579, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.803665+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.815242+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33580, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.815329+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.818828+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33581, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.818905+00', TIMESTAMP WITH TIME ZONE '2023-02-14 23:49:02.823637+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33582, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 00:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:00:00.769+00', 762, NULL), +(33583, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 00:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:00:00.771+00', 764, NULL), +(33584, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.010567+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.281846+00', 271, NULL), +(33585, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.010639+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.024267+00', 13, '{"timezone-id":"UTC"}'), +(33586, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.024699+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.038539+00', 13, '{"updated-tables":0,"total-tables":8}'), +(33587, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.038645+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.200711+00', 162, '{"total-fields":71,"updated-fields":0}'), +(33588, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.200785+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.215081+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33589, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.215177+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.281788+00', 66, NULL), +(33590, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.295666+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.33066+00', 34, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33591, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.295686+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.312468+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33592, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.31258+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.325613+00', 13, '{"fields-classified":0,"fields-failed":0}'), +(33593, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.325702+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:19:00.330611+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33594, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:00.010741+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:02.990506+00', 2979, NULL), +(33595, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:00.010772+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:00.011868+00', 1, '{"timezone-id":null}'), +(33596, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:00.012036+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:00.104325+00', 92, '{"updated-tables":0,"total-tables":4}'), +(33597, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:00.104389+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:02.987889+00', 2883, '{"total-fields":39,"updated-fields":0}'), +(33598, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:02.987999+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:02.989825+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33599, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:02.989905+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:02.990464+00', 0, NULL), +(33600, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.034575+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.063076+00', 28, NULL), +(33601, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.034601+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.053694+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33602, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.053949+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.058175+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33603, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.058365+00', TIMESTAMP WITH TIME ZONE '2023-02-15 00:49:03.062946+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33604, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 01:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:00:00.214+00', 206, NULL), +(33605, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 01:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:00:00.215+00', 209, NULL), +(33606, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.008203+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.241206+00', 233, NULL), +(33607, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.008226+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.016201+00', 7, '{"timezone-id":"UTC"}'), +(33608, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.016275+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.025708+00', 9, '{"updated-tables":0,"total-tables":8}'), +(33609, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.025768+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.178287+00', 152, '{"total-fields":71,"updated-fields":0}'), +(33610, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.178359+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.190257+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33611, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.190311+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.241167+00', 50, NULL), +(33612, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.252684+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.275709+00', 23, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33613, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.25271+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.266414+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33614, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.266471+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.270833+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33615, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.270907+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:19:00.275659+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33616, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:00.012327+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.966556+00', 2954, NULL), +(33617, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:00.012355+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:00.013044+00', 0, '{"timezone-id":null}'), +(33618, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:00.013107+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:00.063507+00', 50, '{"updated-tables":0,"total-tables":4}'), +(33619, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:00.063571+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.964285+00', 2900, '{"total-fields":39,"updated-fields":0}'), +(33620, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.964342+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.965954+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33621, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.966002+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.966514+00', 0, NULL), +(33622, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.986125+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:03.007612+00', 21, NULL), +(33623, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.986145+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.999012+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33624, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:02.999099+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:03.002909+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33625, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:03.002983+00', TIMESTAMP WITH TIME ZONE '2023-02-15 01:49:03.007563+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33626, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.017+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.018+00', 1, NULL), +(33627, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.034+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.171+00', 137, NULL), +(33628, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.011321+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:02.130853+00', 2119, NULL), +(33629, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.011345+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.210296+00', 198, '{"deleted":0}'), +(33630, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:00.210482+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:00:02.130796+00', 1920, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(33631, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.018986+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.344307+00', 325, NULL), +(33632, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.019011+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.031698+00', 12, '{"timezone-id":"UTC"}'), +(33633, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.03184+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.042374+00', 10, '{"updated-tables":0,"total-tables":8}'), +(33634, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.042551+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.268171+00', 225, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33635, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.268236+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.28266+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33636, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.282726+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.344268+00', 61, NULL), +(33637, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.357834+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.387653+00', 29, NULL), +(33638, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.357857+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.375302+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33639, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.375375+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.381724+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(33640, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.38181+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:19:00.387575+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33641, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:00.018112+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.175487+00', 3157, NULL), +(33642, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:00.018137+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:00.018924+00', 0, '{"timezone-id":null}'), +(33643, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:00.019029+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:00.107671+00', 88, '{"updated-tables":0,"total-tables":4}'), +(33644, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:00.107793+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.173405+00', 3065, '{"total-fields":39,"updated-fields":0}'), +(33645, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.173487+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.175051+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33646, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.17511+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.175466+00', 0, NULL), +(33647, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.190811+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.207378+00', 16, NULL), +(33648, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.190835+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.200049+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33649, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.200124+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.202956+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(33650, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.203017+00', TIMESTAMP WITH TIME ZONE '2023-02-15 02:49:03.207335+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33651, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:00:00.005+00', 2, NULL), +(33652, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 03:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:00:00.188+00', 182, NULL), +(33653, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.00863+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.347904+00', 339, NULL), +(33654, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.008656+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.018622+00', 9, '{"timezone-id":"UTC"}'), +(33655, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.018746+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.030429+00', 11, '{"updated-tables":0,"total-tables":8}'), +(33656, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.030592+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.279907+00', 249, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33657, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.280026+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.291407+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33658, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.291546+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.347839+00', 56, NULL), +(33659, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.357877+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.380928+00', 23, NULL), +(33660, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.357899+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.371718+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33661, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.371827+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.376344+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33662, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.376463+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:19:00.380838+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33663, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:00.012668+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.957284+00', 2944, NULL), +(33664, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:00.012695+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:00.013415+00', 0, '{"timezone-id":null}'), +(33665, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:00.013474+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:00.10412+00', 90, '{"updated-tables":0,"total-tables":4}'), +(33666, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:00.104228+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.954335+00', 2850, '{"total-fields":39,"updated-fields":0}'), +(33667, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.954488+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.956515+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33668, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.956616+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.957229+00', 0, NULL), +(33669, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.976773+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.99869+00', 21, NULL), +(33670, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.976821+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.990337+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33671, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.990407+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.993965+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33672, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.994076+00', TIMESTAMP WITH TIME ZONE '2023-02-15 03:49:02.998598+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33673, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 04:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:00:00.005+00', 2, NULL), +(33674, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 04:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:00:00.146+00', 141, NULL), +(33675, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.009036+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.253526+00', 244, NULL), +(33676, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.009058+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.020439+00', 11, '{"timezone-id":"UTC"}'), +(33677, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.020729+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.036141+00', 15, '{"updated-tables":0,"total-tables":8}'), +(33678, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.036205+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.192028+00', 155, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33679, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.192097+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.202404+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33680, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.202464+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.25349+00', 51, NULL), +(33681, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.26589+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.289367+00', 23, NULL), +(33682, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.26591+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.280732+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33683, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.280794+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.285092+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33684, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.285238+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:19:00.289315+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33685, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:00.009138+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.937229+00', 2928, NULL), +(33686, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:00.009164+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:00.009897+00', 0, '{"timezone-id":null}'), +(33687, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:00.010047+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:00.059459+00', 49, '{"updated-tables":0,"total-tables":4}'), +(33688, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:00.05953+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.935318+00', 2875, '{"total-fields":39,"updated-fields":0}'), +(33689, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.935383+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.936856+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33690, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.936912+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.937208+00', 0, NULL), +(33691, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.953987+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.973286+00', 19, NULL), +(33692, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.954294+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.965656+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33693, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.96573+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.969076+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33694, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.969149+00', TIMESTAMP WITH TIME ZONE '2023-02-15 04:49:02.973236+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33695, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:00:00.005+00', 2, NULL), +(33696, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 05:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:00:00.13+00', 125, NULL), +(33697, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.009286+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.255393+00', 246, NULL), +(33698, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.009315+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.017667+00', 8, '{"timezone-id":"UTC"}'), +(33699, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.018511+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.034819+00', 16, '{"updated-tables":0,"total-tables":8}'), +(33700, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.034939+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.190289+00', 155, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33701, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.190361+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.202137+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33702, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.2022+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.255251+00', 53, NULL), +(33703, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.270757+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.301167+00', 30, NULL), +(33704, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.27078+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.288556+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33705, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.288749+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.29497+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(33706, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.29515+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:19:00.301119+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33707, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:00.010225+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.969403+00', 2959, NULL), +(33708, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:00.01025+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:00.010915+00', 0, '{"timezone-id":null}'), +(33709, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:00.010983+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:00.075471+00', 64, '{"updated-tables":0,"total-tables":4}'), +(33710, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:00.075534+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.967041+00', 2891, '{"total-fields":39,"updated-fields":0}'), +(33711, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.967122+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.96883+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33712, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.968892+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.969375+00', 0, NULL), +(33713, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.988387+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:03.007504+00', 19, NULL), +(33714, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:02.988408+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:03.000334+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33715, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:03.000409+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:03.003486+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33716, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:03.003558+00', TIMESTAMP WITH TIME ZONE '2023-02-15 05:49:03.007454+00', 3, '{"total-tables":4,"tables-classified":0}'), +(33717, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 06:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:00:00.005+00', 3, NULL), +(33718, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 06:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:00:00.15+00', 137, NULL), +(33719, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.005965+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.277097+00', 271, NULL), +(33720, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.005986+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.01195+00', 5, '{"timezone-id":"UTC"}'), +(33721, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.012017+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.036997+00', 24, '{"updated-tables":0,"total-tables":8}'), +(33722, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.037061+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.219291+00', 182, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33723, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.219371+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.229345+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33724, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.229415+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.277032+00', 47, NULL), +(33725, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.290156+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.317718+00', 27, NULL), +(33726, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.290176+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.305224+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33727, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.305333+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.310911+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33728, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.310991+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:19:00.317652+00', 6, '{"total-tables":8,"tables-classified":0}'), +(33729, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:00.02746+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.2332+00', 3205, NULL), +(33730, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:00.027492+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:00.029183+00', 1, '{"timezone-id":null}'), +(33731, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:00.029261+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:00.085837+00', 56, '{"updated-tables":0,"total-tables":4}'), +(33732, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:00.085949+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.22431+00', 3138, '{"total-fields":39,"updated-fields":0}'), +(33733, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.224607+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.226262+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33734, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.226335+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.233126+00', 6, NULL), +(33735, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.257209+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.277201+00', 19, NULL), +(33736, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.257232+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.268035+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33737, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.268452+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.271881+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33738, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.271959+00', TIMESTAMP WITH TIME ZONE '2023-02-15 06:49:03.27707+00', 5, '{"total-tables":4,"tables-classified":0}'), +(33739, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:00:00.006+00', 2, NULL), +(33740, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 07:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:00:00.231+00', 223, NULL), +(33741, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.010369+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.269113+00', 258, NULL), +(33742, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.01039+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.022548+00', 12, '{"timezone-id":"UTC"}'), +(33743, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.022623+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.039988+00', 17, '{"updated-tables":0,"total-tables":8}'), +(33744, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.040042+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.18988+00', 149, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33745, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.189939+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.201554+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33746, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.201621+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.269073+00', 67, NULL), +(33747, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.284769+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.317993+00', 33, NULL), +(33748, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.284822+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.30055+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33749, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.300646+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.30911+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(33750, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.309216+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:19:00.317937+00', 8, '{"total-tables":8,"tables-classified":0}'), +(33751, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:00.01578+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.805894+00', 3790, NULL), +(33752, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:00.015806+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:00.016346+00', 0, '{"timezone-id":null}'), +(33753, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:00.016399+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:00.07924+00', 62, '{"updated-tables":0,"total-tables":4}'), +(33754, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:00.07931+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.803103+00', 3723, '{"total-fields":39,"updated-fields":0}'), +(33755, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.80321+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.805387+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33756, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.805461+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.805864+00', 0, NULL), +(33757, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.852046+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.912987+00', 60, NULL), +(33758, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.85207+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.871782+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33759, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.871932+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.88606+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(33760, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.886142+00', TIMESTAMP WITH TIME ZONE '2023-02-15 07:49:03.912926+00', 26, '{"total-tables":4,"tables-classified":0}'), +(33761, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 08:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:00:00.005+00', 2, NULL), +(33762, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 08:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:00:00.165+00', 159, NULL), +(33763, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.010956+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.348746+00', 337, NULL), +(33764, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.010979+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.047512+00', 36, '{"timezone-id":"UTC"}'), +(33765, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.052619+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.078415+00', 25, '{"updated-tables":0,"total-tables":8}'), +(33766, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.078505+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.282222+00', 203, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33767, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.282283+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.297591+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33768, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.297667+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.348706+00', 51, NULL), +(33769, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.368917+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.401696+00', 32, NULL), +(33770, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.368936+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.381906+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33771, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.381978+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.396321+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(33772, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.396477+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:19:00.401649+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33773, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:00.009361+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.408123+00', 3398, NULL), +(33774, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:00.009386+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:00.010425+00', 1, '{"timezone-id":null}'), +(33775, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:00.010546+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:00.072251+00', 61, '{"updated-tables":0,"total-tables":4}'), +(33776, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:00.07234+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.396723+00', 3324, '{"total-fields":39,"updated-fields":0}'), +(33777, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.396876+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.407035+00', 10, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33778, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.407218+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.408083+00', 0, NULL), +(33779, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.44296+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.463696+00', 20, NULL), +(33780, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.442985+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.455364+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33781, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.45545+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.458901+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33782, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.458969+00', TIMESTAMP WITH TIME ZONE '2023-02-15 08:49:03.463643+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33783, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 09:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:00:00.133+00', 127, NULL), +(33784, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 09:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:00:00.134+00', 126, NULL), +(33785, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.029003+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.3034+00', 274, NULL), +(33786, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.029028+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.065149+00', 36, '{"timezone-id":"UTC"}'), +(33787, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.065251+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.075855+00', 10, '{"updated-tables":0,"total-tables":8}'), +(33788, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.076079+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.226976+00', 150, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33789, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.227047+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.238214+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33790, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.238278+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.303354+00', 65, NULL), +(33791, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.318786+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.352071+00', 33, NULL), +(33792, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.318807+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.336591+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33793, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.336676+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.34186+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33794, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.341934+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:19:00.351976+00', 10, '{"total-tables":8,"tables-classified":0}'), +(33795, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:00.009859+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.521953+00', 3512, NULL), +(33796, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:00.009884+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:00.010389+00', 0, '{"timezone-id":null}'), +(33797, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:00.010447+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:00.062133+00', 51, '{"updated-tables":0,"total-tables":4}'), +(33798, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:00.062206+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.519398+00', 3457, '{"total-fields":39,"updated-fields":0}'), +(33799, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.519553+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.521334+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33800, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.521404+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.521922+00', 0, NULL), +(33801, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.539312+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.610371+00', 71, NULL), +(33802, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.539337+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.598508+00', 59, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33803, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.598608+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.605708+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(33804, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.605797+00', TIMESTAMP WITH TIME ZONE '2023-02-15 09:49:03.61032+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33805, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:00:00.006+00', 2, NULL), +(33806, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 10:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:00:00.228+00', 217, NULL), +(33807, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.00782+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.307777+00', 299, NULL), +(33808, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.007845+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.015468+00', 7, '{"timezone-id":"UTC"}'), +(33809, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.015743+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.027773+00', 12, '{"updated-tables":0,"total-tables":8}'), +(33810, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.027834+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.223371+00', 195, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33811, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.223506+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.24735+00', 23, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33812, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.247552+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.307429+00', 59, NULL), +(33813, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.324648+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.36858+00', 43, NULL), +(33814, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.324671+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.348366+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33815, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.348517+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.363147+00', 14, '{"fields-classified":0,"fields-failed":0}'), +(33816, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.363251+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:19:00.368529+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33817, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:00.018264+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.229286+00', 3211, NULL), +(33818, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:00.01829+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:00.019047+00', 0, '{"timezone-id":null}'), +(33819, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:00.019121+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:00.075496+00', 56, '{"updated-tables":0,"total-tables":4}'), +(33820, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:00.075559+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.226478+00', 3150, '{"total-fields":39,"updated-fields":0}'), +(33821, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.226552+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.228712+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33822, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.228791+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.229251+00', 0, NULL), +(33823, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.298847+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.3357+00', 36, NULL), +(33824, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.298909+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.325071+00', 26, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33825, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.325176+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.329322+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33826, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.329413+00', TIMESTAMP WITH TIME ZONE '2023-02-15 10:49:03.335637+00', 6, '{"total-tables":4,"tables-classified":0}'), +(33827, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 11:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:00:00.021+00', 13, NULL), +(33828, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 11:00:00.023+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:00:00.243+00', 220, NULL), +(33829, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.007687+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.270094+00', 262, NULL), +(33830, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.007717+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.015051+00', 7, '{"timezone-id":"UTC"}'), +(33831, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.015208+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.027687+00', 12, '{"updated-tables":0,"total-tables":8}'), +(33832, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.027797+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.191038+00', 163, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33833, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.191192+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.207784+00', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33834, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.207911+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.270058+00', 62, NULL), +(33835, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.284084+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.31473+00', 30, NULL), +(33836, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.284106+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.30175+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33837, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.301928+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.308996+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(33838, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.309144+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:19:00.314645+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33839, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:00.008993+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.190612+00', 3181, NULL), +(33840, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:00.009018+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:00.009758+00', 0, '{"timezone-id":null}'), +(33841, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:00.009859+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:00.060839+00', 50, '{"updated-tables":0,"total-tables":4}'), +(33842, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:00.060946+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.188073+00', 3127, '{"total-fields":39,"updated-fields":0}'), +(33843, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.188163+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.190041+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33844, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.190147+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.190582+00', 0, NULL), +(33845, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.220921+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.242997+00', 22, NULL), +(33846, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.220942+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.234912+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33847, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.234989+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.239085+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33848, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.239181+00', TIMESTAMP WITH TIME ZONE '2023-02-15 11:49:03.242951+00', 3, '{"total-tables":4,"tables-classified":0}'), +(33849, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 12:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:00:00.015+00', 1, NULL), +(33850, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 12:00:00.016+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:00:00.201+00', 185, NULL), +(33851, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.006623+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.250189+00', 243, NULL), +(33852, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.006645+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.020223+00', 13, '{"timezone-id":"UTC"}'), +(33853, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.020342+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.03656+00', 16, '{"updated-tables":0,"total-tables":8}'), +(33854, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.036703+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.176497+00', 139, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33855, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.176642+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.188324+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33856, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.188484+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.250102+00', 61, NULL), +(33857, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.264343+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.291263+00', 26, NULL), +(33858, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.264366+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.280604+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33859, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.280912+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.286047+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33860, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.286221+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:19:00.291206+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33861, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:00.023791+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.102+00', 3078, NULL), +(33862, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:00.023814+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:00.024637+00', 0, '{"timezone-id":null}'), +(33863, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:00.024772+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:00.076623+00', 51, '{"updated-tables":0,"total-tables":4}'), +(33864, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:00.076794+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.09971+00', 3022, '{"total-fields":39,"updated-fields":0}'), +(33865, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.099804+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.101584+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33866, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.101651+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.101973+00', 0, NULL), +(33867, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.121072+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.140267+00', 19, NULL), +(33868, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.121102+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.132537+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33869, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.132616+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.13578+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33870, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.13587+00', TIMESTAMP WITH TIME ZONE '2023-02-15 12:49:03.140215+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33871, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 13:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:00:00.17+00', 165, NULL), +(33872, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 13:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:00:00.171+00', 166, NULL), +(33873, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.013284+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.251587+00', 238, NULL), +(33874, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.013359+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.021661+00', 8, '{"timezone-id":"UTC"}'), +(33875, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.02175+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.033941+00', 12, '{"updated-tables":0,"total-tables":8}'), +(33876, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.034114+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.189313+00', 155, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33877, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.189393+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.201024+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33878, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.201086+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.251557+00', 50, NULL), +(33879, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.262939+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.28726+00', 24, NULL), +(33880, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.262957+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.276944+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33881, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.277012+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.281764+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33882, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.281928+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:19:00.287202+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33883, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:00.033109+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.967383+00', 2934, NULL), +(33884, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:00.033136+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:00.033773+00', 0, '{"timezone-id":null}'), +(33885, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:00.033842+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:00.101482+00', 67, '{"updated-tables":0,"total-tables":4}'), +(33886, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:00.101546+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.96463+00', 2863, '{"total-fields":39,"updated-fields":0}'), +(33887, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.964708+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.966597+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33888, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.966671+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.96735+00', 0, NULL), +(33889, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.986117+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:03.011434+00', 25, NULL), +(33890, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:02.98614+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:03.001445+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33891, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:03.0016+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:03.006274+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33892, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:03.006431+00', TIMESTAMP WITH TIME ZONE '2023-02-15 13:49:03.011309+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33893, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 14:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:00:00.004+00', 2, NULL), +(33894, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 14:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:00:00.178+00', 171, NULL), +(33895, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.015851+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.28591+00', 270, NULL), +(33896, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.015873+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.028377+00', 12, '{"timezone-id":"UTC"}'), +(33897, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.028514+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.048583+00', 20, '{"updated-tables":0,"total-tables":8}'), +(33898, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.048658+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.216248+00', 167, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33899, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.216321+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.226781+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33900, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.226838+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.285874+00', 59, NULL), +(33901, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.29841+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.339212+00', 40, NULL), +(33902, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.298433+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.331747+00', 33, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33903, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.33181+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.334861+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33904, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.334923+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:19:00.339137+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33905, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:00.025423+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.337961+00', 3312, NULL), +(33906, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:00.025449+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:00.026117+00', 0, '{"timezone-id":null}'), +(33907, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:00.026188+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:00.086471+00', 60, '{"updated-tables":0,"total-tables":4}'), +(33908, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:00.086539+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.335504+00', 3248, '{"total-fields":39,"updated-fields":0}'), +(33909, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.335791+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.337606+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33910, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.337668+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.337944+00', 0, NULL), +(33911, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.357149+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.379988+00', 22, NULL), +(33912, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.357173+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.36739+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33913, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.367652+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.373469+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33914, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.373547+00', TIMESTAMP WITH TIME ZONE '2023-02-15 14:49:03.379904+00', 6, '{"total-tables":4,"tables-classified":0}'), +(33915, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 15:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:00:00.004+00', 2, NULL), +(33916, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 15:00:00.026+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:00:00.189+00', 163, NULL), +(33917, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.01265+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.249967+00', 237, NULL), +(33918, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.012677+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.026129+00', 13, '{"timezone-id":"UTC"}'), +(33919, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.026219+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.042432+00', 16, '{"updated-tables":0,"total-tables":8}'), +(33920, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.042498+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.179705+00', 137, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33921, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.179768+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.192946+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33922, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.193024+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.249926+00', 56, NULL), +(33923, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.262697+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.289235+00', 26, NULL), +(33924, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.26272+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.278294+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33925, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.278375+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.283576+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33926, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.283658+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:19:00.289142+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33927, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:00.01112+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.978614+00', 2967, NULL), +(33928, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:00.011144+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:00.011852+00', 0, '{"timezone-id":null}'), +(33929, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:00.011916+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:00.056342+00', 44, '{"updated-tables":0,"total-tables":4}'), +(33930, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:00.056398+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.976063+00', 2919, '{"total-fields":39,"updated-fields":0}'), +(33931, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.976182+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.977999+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33932, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.978078+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.978575+00', 0, NULL), +(33933, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.997424+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:03.026679+00', 29, NULL), +(33934, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:02.997447+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:03.018073+00', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33935, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:03.018218+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:03.021985+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33936, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:03.022075+00', TIMESTAMP WITH TIME ZONE '2023-02-15 15:49:03.026627+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33937, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 16:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:00:00.004+00', 1, NULL), +(33938, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 16:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:00:00.244+00', 238, NULL), +(33939, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.006537+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.246798+00', 240, NULL), +(33940, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.006562+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.015108+00', 8, '{"timezone-id":"UTC"}'), +(33941, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.015254+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.026236+00', 10, '{"updated-tables":0,"total-tables":8}'), +(33942, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.026438+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.187066+00', 160, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33943, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.187151+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.198026+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33944, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.198082+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.246767+00', 48, NULL), +(33945, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.259219+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.283715+00', 24, NULL), +(33946, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.259241+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.274427+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33947, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.274499+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.27918+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33948, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.279258+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:19:00.283667+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33949, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:00.008589+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.877288+00', 2868, NULL), +(33950, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:00.008615+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:00.009137+00', 0, '{"timezone-id":null}'), +(33951, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:00.009198+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:00.063001+00', 53, '{"updated-tables":0,"total-tables":4}'), +(33952, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:00.063063+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.874687+00', 2811, '{"total-fields":39,"updated-fields":0}'), +(33953, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.875135+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.876797+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33954, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.876855+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.877259+00', 0, NULL), +(33955, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.891071+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.964676+00', 73, NULL), +(33956, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.89109+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.956245+00', 65, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33957, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.956333+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.960079+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(33958, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.96029+00', TIMESTAMP WITH TIME ZONE '2023-02-15 16:49:02.964535+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33959, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 17:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:00:00.004+00', 2, NULL), +(33960, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 17:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:00:00.163+00', 156, NULL), +(33961, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.011213+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.340313+00', 329, NULL), +(33962, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.01124+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.049325+00', 38, '{"timezone-id":"UTC"}'), +(33963, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.049566+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.126857+00', 77, '{"updated-tables":0,"total-tables":8}'), +(33964, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.126957+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.271684+00', 144, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33965, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.271783+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.281296+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33966, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.28139+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.34023+00', 58, NULL), +(33967, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.354269+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.379872+00', 25, NULL), +(33968, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.35429+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.369723+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33969, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.36988+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.374825+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(33970, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.374971+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:19:00.379816+00', 4, '{"total-tables":8,"tables-classified":0}'), +(33971, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:00.016015+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.227021+00', 3211, NULL), +(33972, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:00.016053+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:00.017417+00', 1, '{"timezone-id":null}'), +(33973, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:00.017629+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:00.072459+00', 54, '{"updated-tables":0,"total-tables":4}'), +(33974, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:00.072531+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.224685+00', 3152, '{"total-fields":39,"updated-fields":0}'), +(33975, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.224788+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.226482+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33976, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.226545+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.226991+00', 0, NULL), +(33977, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.244946+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.266254+00', 21, NULL), +(33978, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.244971+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.258966+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33979, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.259125+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.262096+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(33980, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.262163+00', TIMESTAMP WITH TIME ZONE '2023-02-15 17:49:03.266187+00', 4, '{"total-tables":4,"tables-classified":0}'), +(33981, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 18:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:00:00.166+00', 160, NULL), +(33982, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:00:00.169+00', 165, NULL), +(33983, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.007914+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.242382+00', 234, NULL), +(33984, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.007936+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.014513+00', 6, '{"timezone-id":"UTC"}'), +(33985, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.014586+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.02725+00', 12, '{"updated-tables":0,"total-tables":8}'), +(33986, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.027406+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.185449+00', 158, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(33987, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.185584+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.194555+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(33988, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.194736+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.242352+00', 47, NULL), +(33989, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.253913+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.280103+00', 26, NULL), +(33990, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.253935+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.268909+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(33991, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.269091+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.274416+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(33992, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.274634+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:19:00.280014+00', 5, '{"total-tables":8,"tables-classified":0}'), +(33993, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:00.017111+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.930958+00', 2913, NULL), +(33994, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:00.017134+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:00.017726+00', 0, '{"timezone-id":null}'), +(33995, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:00.017787+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:00.065678+00', 47, '{"updated-tables":0,"total-tables":4}'), +(33996, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:00.065772+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.929125+00', 2863, '{"total-fields":39,"updated-fields":0}'), +(33997, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.929195+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.930587+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(33998, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.930643+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.930938+00', 0, NULL), +(33999, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.94738+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.963252+00', 15, NULL), +(34000, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.947401+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.955918+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34001, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.956149+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.959073+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34002, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.959184+00', TIMESTAMP WITH TIME ZONE '2023-02-15 18:49:02.963093+00', 3, '{"total-tables":4,"tables-classified":0}'), +(34003, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 19:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:00:00.01+00', 2, NULL), +(34004, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 19:00:00.016+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:00:00.186+00', 170, NULL), +(34005, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.007579+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.244498+00', 236, NULL), +(34006, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.0076+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.013542+00', 5, '{"timezone-id":"UTC"}'), +(34007, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.013617+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.022259+00', 8, '{"updated-tables":0,"total-tables":8}'), +(34008, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.02232+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.17563+00', 153, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34009, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.175701+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.188603+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34010, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.188678+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.244461+00', 55, NULL), +(34011, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.256368+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.280861+00', 24, NULL), +(34012, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.256389+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.272073+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34013, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.272154+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.276543+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34014, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.276609+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:19:00.280788+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34015, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:00.019931+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.793568+00', 2773, NULL), +(34016, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:00.019956+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:00.020546+00', 0, '{"timezone-id":null}'), +(34017, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:00.020603+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:00.068834+00', 48, '{"updated-tables":0,"total-tables":4}'), +(34018, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:00.068895+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.790402+00', 2721, '{"total-fields":39,"updated-fields":0}'), +(34019, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.790573+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.792718+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34020, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.792834+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.793491+00', 0, NULL), +(34021, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.811941+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.84006+00', 28, NULL), +(34022, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.811966+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.824661+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34023, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.824755+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.828821+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34024, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.828912+00', TIMESTAMP WITH TIME ZONE '2023-02-15 19:49:02.839982+00', 11, '{"total-tables":4,"tables-classified":0}'), +(34025, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 20:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:00:00.007+00', 1, NULL), +(34026, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 20:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:00:00.162+00', 153, NULL), +(34027, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.007019+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.243912+00', 236, NULL), +(34028, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.007042+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.013912+00', 6, '{"timezone-id":"UTC"}'), +(34029, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.014062+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.023223+00', 9, '{"updated-tables":0,"total-tables":8}'), +(34030, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.023339+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.187065+00', 163, '{"total-fields":71,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34031, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.187129+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.195398+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34032, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.195453+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.243862+00', 48, NULL), +(34033, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.25425+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.279604+00', 25, NULL), +(34034, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.254271+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.268987+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34035, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.269132+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.274256+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34036, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.27443+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:19:00.27952+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34037, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:00.0123+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.923674+00', 2911, NULL), +(34038, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:00.012325+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:00.01487+00', 2, '{"timezone-id":null}'), +(34039, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:00.015769+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:00.064065+00', 48, '{"updated-tables":0,"total-tables":4}'), +(34040, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:00.064134+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.921772+00', 2857, '{"total-fields":39,"updated-fields":0}'), +(34041, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.921838+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.923318+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34042, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.923374+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.923654+00', 0, NULL), +(34043, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.940809+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.957312+00', 16, NULL), +(34044, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.94084+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.949921+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34045, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.950002+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.953291+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34046, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.953389+00', TIMESTAMP WITH TIME ZONE '2023-02-15 20:49:02.957255+00', 3, '{"total-tables":4,"tables-classified":0}'), +(34047, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.009+00', 1, NULL), +(34048, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.027+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.191+00', 164, NULL), +(34049, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.007702+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.900987+00', 893, NULL), +(34050, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.007723+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.265258+00', 257, '{"deleted":0}'), +(34051, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.265592+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:00:00.900942+00', 635, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(34052, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.007138+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.228369+00', 221, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34053, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.007164+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.012227+00', 5, '{"timezone-id":"UTC"}'), +(34054, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.012296+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.020832+00', 8, '{"updated-tables":0,"total-tables":8}'), +(34055, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.020926+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.16856+00', 147, '{"total-fields":71,"updated-fields":0}'), +(34056, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.168689+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.179103+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34057, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.179223+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.228284+00', 49, NULL), +(34058, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.238902+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.264777+00', 25, NULL), +(34059, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.238922+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.254747+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34060, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.254906+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.259764+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34061, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.259901+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:19:00.264693+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34062, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:00.013947+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.84095+00', 2827, NULL), +(34063, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:00.013973+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:00.015407+00', 1, '{"timezone-id":null}'), +(34064, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:00.015492+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:00.102034+00', 86, '{"updated-tables":0,"total-tables":4}'), +(34065, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:00.102101+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.838987+00', 2736, '{"total-fields":39,"updated-fields":0}'), +(34066, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.839059+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.840633+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34067, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.84068+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.840928+00', 0, NULL), +(34068, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.853086+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.870815+00', 17, NULL), +(34069, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.853109+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.86362+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34070, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.863726+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.866566+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34071, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.866684+00', TIMESTAMP WITH TIME ZONE '2023-02-15 21:49:02.870733+00', 4, '{"total-tables":4,"tables-classified":0}'), +(34072, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 22:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:00:00.005+00', 2, NULL), +(34073, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 22:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:00:00.181+00', 175, NULL), +(34074, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.017647+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.219829+00', 202, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34075, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.017666+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.022872+00', 5, '{"timezone-id":"UTC"}'), +(34076, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.022931+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.03082+00', 7, '{"updated-tables":0,"total-tables":8}'), +(34077, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.030875+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.158368+00', 127, '{"total-fields":71,"updated-fields":0}'), +(34078, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.158439+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.168457+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34079, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.168526+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.219793+00', 51, NULL), +(34080, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.232578+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.257785+00', 25, NULL), +(34081, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.232601+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.248114+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34082, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.248195+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.252974+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34083, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.253051+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:19:00.257726+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34084, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:00.007834+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.328095+00', 3320, NULL), +(34085, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:00.007858+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:00.018343+00', 10, '{"timezone-id":null}'), +(34086, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:00.018478+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:00.065169+00', 46, '{"updated-tables":0,"total-tables":4}'), +(34087, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:00.065354+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.32582+00', 3260, '{"total-fields":39,"updated-fields":0}'), +(34088, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.325918+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.327536+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34089, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.327608+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.328051+00', 0, NULL), +(34090, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.345336+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.369746+00', 24, NULL), +(34091, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.34536+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.361562+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34092, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.361655+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.364867+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34093, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.36494+00', TIMESTAMP WITH TIME ZONE '2023-02-15 22:49:03.369693+00', 4, '{"total-tables":4,"tables-classified":0}'), +(34094, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 23:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:00:00.006+00', 2, NULL), +(34095, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-15 23:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:00:00.186+00', 180, NULL), +(34096, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.013196+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.273214+00', 260, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34097, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.013223+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.022553+00', 9, '{"timezone-id":"UTC"}'), +(34098, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.022896+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.033292+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34099, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.033398+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.200324+00', 166, '{"total-fields":71,"updated-fields":0}'), +(34100, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.200496+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.212722+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34101, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.212821+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.273146+00', 60, NULL), +(34102, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.285546+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.310766+00', 25, NULL), +(34103, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.285567+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.300755+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34104, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.300855+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.30582+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34105, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.305937+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:19:00.31069+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34106, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:00.023313+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.801464+00', 2778, NULL), +(34107, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:00.023344+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:00.026206+00', 2, '{"timezone-id":null}'), +(34108, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:00.026308+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:00.064128+00', 37, '{"updated-tables":0,"total-tables":4}'), +(34109, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:00.06419+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.799435+00', 2735, '{"total-fields":39,"updated-fields":0}'), +(34110, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.799507+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.801089+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34111, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.801145+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.801443+00', 0, NULL), +(34112, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.824529+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.881456+00', 56, NULL), +(34113, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.824568+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.841783+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34114, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.841947+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.877494+00', 35, '{"fields-classified":0,"fields-failed":0}'), +(34115, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.877571+00', TIMESTAMP WITH TIME ZONE '2023-02-15 23:49:02.881377+00', 3, '{"total-tables":4,"tables-classified":0}'), +(34116, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 00:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:00:00.004+00', 1, NULL), +(34117, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 00:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:00:00.214+00', 209, NULL), +(34118, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.026852+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.304565+00', 277, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34119, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.026987+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.035103+00', 8, '{"timezone-id":"UTC"}'), +(34120, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.035203+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.047496+00', 12, '{"updated-tables":0,"total-tables":8}'), +(34121, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.047562+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.206219+00', 158, '{"total-fields":71,"updated-fields":0}'), +(34122, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.206283+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.216393+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34123, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.216496+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.304528+00', 88, NULL), +(34124, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.31673+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.339626+00', 22, NULL), +(34125, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.316752+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.331639+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34126, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.331705+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.33554+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34127, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.335601+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:19:00.339578+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34128, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:00.012714+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.044391+00', 3031, NULL), +(34129, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:00.012741+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:00.013276+00', 0, '{"timezone-id":null}'), +(34130, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:00.013331+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:00.066486+00', 53, '{"updated-tables":0,"total-tables":4}'), +(34131, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:00.066682+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.042294+00', 2975, '{"total-fields":39,"updated-fields":0}'), +(34132, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.042389+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.043919+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34133, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.043982+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.044367+00', 0, NULL), +(34134, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.085576+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.103056+00', 17, NULL), +(34135, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.085969+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.095662+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34136, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.095782+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.09898+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34137, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.099046+00', TIMESTAMP WITH TIME ZONE '2023-02-16 00:49:03.102998+00', 3, '{"total-tables":4,"tables-classified":0}'), +(34138, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 01:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:00:00.006+00', 2, NULL), +(34139, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 01:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:00:00.264+00', 252, NULL), +(34140, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.008393+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.209636+00', 201, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34141, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.008442+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.016103+00', 7, '{"timezone-id":"UTC"}'), +(34142, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.01623+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.028108+00', 11, '{"updated-tables":0,"total-tables":8}'), +(34143, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.028178+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.148755+00', 120, '{"total-fields":71,"updated-fields":0}'), +(34144, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.14882+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.15724+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34145, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.1573+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.209577+00', 52, NULL), +(34146, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.219956+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.243534+00', 23, NULL), +(34147, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.219976+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.233917+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34148, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.234018+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.238438+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34149, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.238538+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:19:00.24347+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34150, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:00.01888+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.340124+00', 3321, NULL), +(34151, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:00.018907+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:00.021874+00', 2, '{"timezone-id":null}'), +(34152, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:00.02208+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:00.071814+00', 49, '{"updated-tables":0,"total-tables":4}'), +(34153, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:00.071875+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.336952+00', 3265, '{"total-fields":39,"updated-fields":0}'), +(34154, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.337034+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.339431+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34155, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.339638+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.340094+00', 0, NULL), +(34156, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.363471+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.393841+00', 30, NULL), +(34157, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.363494+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.373846+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34158, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.374023+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.379064+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34159, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.379204+00', TIMESTAMP WITH TIME ZONE '2023-02-16 01:49:03.393744+00', 14, '{"total-tables":4,"tables-classified":0}'), +(34160, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.03+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.031+00', 1, NULL), +(34161, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.047+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.219+00', 172, NULL), +(34162, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.013027+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:02.961808+00', 2948, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34163, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.013054+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.27577+00', 262, '{"deleted":0}'), +(34164, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:00.275849+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:00:02.961761+00', 2685, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(34165, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.008985+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.280684+00', 271, NULL), +(34166, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.009007+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.015923+00', 6, '{"timezone-id":"UTC"}'), +(34167, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.015994+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.029271+00', 13, '{"updated-tables":0,"total-tables":8}'), +(34168, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.029447+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.21486+00', 185, '{"total-fields":71,"updated-fields":0}'), +(34169, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.214912+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.229697+00', 14, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34170, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.229959+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.280654+00', 50, NULL), +(34171, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.292013+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.315288+00', 23, NULL), +(34172, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.292033+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.306349+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34173, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.306574+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.310792+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34174, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.310899+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:19:00.315241+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34175, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:00.01325+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.908334+00', 2895, NULL), +(34176, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:00.013274+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:00.013863+00', 0, '{"timezone-id":null}'), +(34177, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:00.013928+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:00.061367+00', 47, '{"updated-tables":0,"total-tables":4}'), +(34178, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:00.06143+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.905774+00', 2844, '{"total-fields":39,"updated-fields":0}'), +(34179, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.906009+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.907582+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34180, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.907763+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.90821+00', 0, NULL), +(34181, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.929735+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.945214+00', 15, NULL), +(34182, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.929759+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.938259+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34183, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.938506+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.941422+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34184, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.941568+00', TIMESTAMP WITH TIME ZONE '2023-02-16 02:49:02.945088+00', 3, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34185, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 03:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:00:00.006+00', 2, NULL), +(34186, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 03:00:00.02+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:00:00.216+00', 196, NULL), +(34187, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.006463+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.241068+00', 234, NULL), +(34188, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.006483+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.014263+00', 7, '{"timezone-id":"UTC"}'), +(34189, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.014334+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.021677+00', 7, '{"updated-tables":0,"total-tables":8}'), +(34190, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.021734+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.169721+00', 147, '{"total-fields":71,"updated-fields":0}'), +(34191, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.169786+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.188377+00', 18, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34192, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.188477+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.241037+00', 52, NULL), +(34193, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.252778+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.274462+00', 21, NULL), +(34194, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.252798+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.266257+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34195, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.266325+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.270475+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34196, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.270545+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:19:00.274414+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34197, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:00.00852+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.941805+00', 2933, NULL), +(34198, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:00.008542+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:00.021069+00', 12, '{"timezone-id":null}'), +(34199, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:00.021151+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:00.09528+00', 74, '{"updated-tables":0,"total-tables":4}'), +(34200, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:00.095366+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.939609+00', 2844, '{"total-fields":39,"updated-fields":0}'), +(34201, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.939697+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.941334+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34202, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.941404+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.941778+00', 0, NULL), +(34203, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.971697+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:03.003677+00', 31, NULL), +(34204, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.971725+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.994875+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34205, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.995227+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.998612+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34206, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:02.99872+00', TIMESTAMP WITH TIME ZONE '2023-02-16 03:49:03.003623+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34207, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 04:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:00:00.005+00', 2, NULL), +(34208, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 04:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:00:00.169+00', 163, NULL), +(34209, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.008129+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.267018+00', 258, NULL), +(34210, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.008149+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.030312+00', 22, '{"timezone-id":"UTC"}'), +(34211, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.030407+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.04894+00', 18, '{"updated-tables":0,"total-tables":8}'), +(34212, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.04904+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.197853+00', 148, '{"total-fields":71,"updated-fields":0}'), +(34213, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.197923+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.209277+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34214, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.209345+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.266937+00', 57, NULL), +(34215, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.279766+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.306569+00', 26, NULL), +(34216, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.279786+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.295642+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34217, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.295724+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.30183+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(34218, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.301898+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:19:00.306519+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34219, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:00.029404+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.747355+00', 3717, NULL), +(34220, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:00.029469+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:00.030208+00', 0, '{"timezone-id":null}'), +(34221, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:00.03027+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:00.100961+00', 70, '{"updated-tables":0,"total-tables":4}'), +(34222, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:00.101121+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.744266+00', 3643, '{"total-fields":39,"updated-fields":0}'), +(34223, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.744341+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.746537+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34224, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.746609+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.747303+00', 0, NULL), +(34225, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.768294+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.78491+00', 16, NULL), +(34226, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.768354+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.776805+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34227, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.776907+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.780035+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34228, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.780105+00', TIMESTAMP WITH TIME ZONE '2023-02-16 04:49:03.784817+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34229, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:00:00.005+00', 2, NULL), +(34230, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 05:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:00:00.254+00', 246, NULL), +(34231, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.011084+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.237918+00', 226, NULL), +(34232, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.011109+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.018249+00', 7, '{"timezone-id":"UTC"}'), +(34233, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.018323+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.028482+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34234, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.028557+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.175678+00', 147, '{"total-fields":71,"updated-fields":0}'), +(34235, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.175759+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.185232+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34236, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.185303+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.237887+00', 52, NULL), +(34237, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.249713+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.278181+00', 28, NULL), +(34238, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.249735+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.269468+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34239, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.269562+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.274127+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34240, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.2742+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:19:00.278136+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34241, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:00.017403+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.16608+00', 3148, NULL), +(34242, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:00.017428+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:00.018329+00', 0, '{"timezone-id":null}'), +(34243, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:00.018395+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:00.115652+00', 97, '{"updated-tables":0,"total-tables":4}'), +(34244, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:00.115777+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.161962+00', 3046, '{"total-fields":39,"updated-fields":0}'), +(34245, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.162116+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.164812+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34246, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.164887+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.166032+00', 1, NULL), +(34247, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.20588+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.226861+00', 20, NULL), +(34248, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.205903+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.215364+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34249, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.215448+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.218793+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34250, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.218869+00', TIMESTAMP WITH TIME ZONE '2023-02-16 05:49:03.226769+00', 7, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34251, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 06:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:00:00.005+00', 2, NULL), +(34252, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 06:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:00:00.223+00', 215, NULL), +(34253, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.005861+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.333988+00', 328, NULL), +(34254, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.005883+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.012959+00', 7, '{"timezone-id":"UTC"}'), +(34255, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.013123+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.023648+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34256, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.023763+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.168956+00', 145, '{"total-fields":71,"updated-fields":0}'), +(34257, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.169021+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.27056+00', 101, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34258, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.270637+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.333946+00', 63, NULL), +(34259, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.346738+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.375341+00', 28, NULL), +(34260, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.346758+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.363699+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34261, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.363843+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.369398+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34262, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.369493+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:19:00.375283+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34263, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:00.011266+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.084125+00', 3072, NULL), +(34264, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:00.011294+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:00.012219+00', 0, '{"timezone-id":null}'), +(34265, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:00.012312+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:00.061182+00', 48, '{"updated-tables":0,"total-tables":4}'), +(34266, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:00.061252+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.080927+00', 3019, '{"total-fields":39,"updated-fields":0}'), +(34267, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.081098+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.083186+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34268, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.083324+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.084086+00', 0, NULL), +(34269, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.119094+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.169249+00', 50, NULL), +(34270, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.119187+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.142112+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34271, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.14221+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.150216+00', 8, '{"fields-classified":0,"fields-failed":0}'), +(34272, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.150294+00', TIMESTAMP WITH TIME ZONE '2023-02-16 06:49:03.168319+00', 18, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34273, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 07:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:00:00.008+00', 4, NULL), +(34274, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 07:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:00:00.202+00', 190, NULL), +(34275, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.013202+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.28552+00', 272, NULL), +(34276, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.013222+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.023073+00', 9, '{"timezone-id":"UTC"}'), +(34277, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.02317+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.038813+00', 15, '{"updated-tables":0,"total-tables":8}'), +(34278, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.038904+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.203355+00', 164, '{"total-fields":71,"updated-fields":0}'), +(34279, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.203424+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.213957+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34280, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.214023+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.285483+00', 71, NULL), +(34281, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.298803+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.323535+00', 24, NULL), +(34282, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.298824+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.314537+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34283, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.314611+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.318818+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34284, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.318893+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:19:00.323482+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34285, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:00.008774+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.209739+00', 3200, NULL), +(34286, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:00.008798+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:00.009352+00', 0, '{"timezone-id":null}'), +(34287, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:00.009408+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:00.067143+00', 57, '{"updated-tables":0,"total-tables":4}'), +(34288, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:00.067211+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.207861+00', 3140, '{"total-fields":39,"updated-fields":0}'), +(34289, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.207936+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.209355+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34290, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.209409+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.209717+00', 0, NULL), +(34291, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.238462+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.259315+00', 20, NULL), +(34292, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.238485+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.249108+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34293, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.249196+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.252646+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34294, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.252725+00', TIMESTAMP WITH TIME ZONE '2023-02-16 07:49:03.259267+00', 6, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34295, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 08:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:00:00.004+00', 2, NULL), +(34296, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 08:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:00:00.156+00', 150, NULL), +(34297, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.006292+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.237585+00', 231, NULL), +(34298, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.006314+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.013475+00', 7, '{"timezone-id":"UTC"}'), +(34299, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.013556+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.023813+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34300, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.023888+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.176234+00', 152, '{"total-fields":71,"updated-fields":0}'), +(34301, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.1763+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.187368+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34302, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.187431+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.237551+00', 50, NULL), +(34303, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.255549+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.29077+00', 35, NULL), +(34304, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.255569+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.280017+00', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34305, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.28012+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.285392+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34306, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.285507+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:19:00.290695+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34307, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:00.018881+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.560753+00', 3541, NULL), +(34308, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:00.018909+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:00.020131+00', 1, '{"timezone-id":null}'), +(34309, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:00.02037+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:00.091132+00', 70, '{"updated-tables":0,"total-tables":4}'), +(34310, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:00.091201+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.557456+00', 3466, '{"total-fields":39,"updated-fields":0}'), +(34311, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.557536+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.559747+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34312, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.560004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.560601+00', 0, NULL), +(34313, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.598603+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.619891+00', 21, NULL), +(34314, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.598629+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.613676+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34315, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.613787+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.616333+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34316, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.616409+00', TIMESTAMP WITH TIME ZONE '2023-02-16 08:49:03.619827+00', 3, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34317, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 09:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:00:00.007+00', 2, NULL), +(34318, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 09:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:00:00.213+00', 199, NULL), +(34319, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.007932+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.238778+00', 230, NULL), +(34320, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.007955+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.01423+00', 6, '{"timezone-id":"UTC"}'), +(34321, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.014303+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.023776+00', 9, '{"updated-tables":0,"total-tables":8}'), +(34322, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.023835+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.182314+00', 158, '{"total-fields":71,"updated-fields":0}'), +(34323, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.182371+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.191792+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34324, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.191849+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.238745+00', 46, NULL), +(34325, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.250343+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.275146+00', 24, NULL), +(34326, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.250363+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.265388+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34327, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.265488+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.27037+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34328, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.270458+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:19:00.274951+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34329, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:00.009114+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.132885+00', 3123, NULL), +(34330, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:00.009143+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:00.009736+00', 0, '{"timezone-id":null}'), +(34331, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:00.009836+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:00.071515+00', 61, '{"updated-tables":0,"total-tables":4}'), +(34332, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:00.071677+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.130473+00', 3058, '{"total-fields":39,"updated-fields":0}'), +(34333, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.130525+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.13226+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34334, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.132315+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.132858+00', 0, NULL), +(34335, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.152616+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.170844+00', 18, NULL), +(34336, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.152639+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.163022+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34337, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.163104+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.166588+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34338, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.166702+00', TIMESTAMP WITH TIME ZONE '2023-02-16 09:49:03.17077+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34339, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:00:00.007+00', 3, NULL), +(34340, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 10:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:00:00.2+00', 187, NULL), +(34341, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.032623+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.316665+00', 284, NULL), +(34342, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.032646+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.040508+00', 7, '{"timezone-id":"UTC"}'), +(34343, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.040608+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.052576+00', 11, '{"updated-tables":0,"total-tables":8}'), +(34344, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.052658+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.245477+00', 192, '{"total-fields":71,"updated-fields":0}'), +(34345, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.245865+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.257268+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34346, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.257907+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.316628+00', 58, NULL), +(34347, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.328733+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.366894+00', 38, NULL), +(34348, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.328753+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.351388+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34349, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.351506+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.361511+00', 10, '{"fields-classified":0,"fields-failed":0}'), +(34350, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.36159+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:19:00.366841+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34351, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:00.008664+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.033464+00', 3024, NULL), +(34352, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:00.008691+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:00.009531+00', 0, '{"timezone-id":null}'), +(34353, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:00.009598+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:00.052681+00', 43, '{"updated-tables":0,"total-tables":4}'), +(34354, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:00.052757+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.030064+00', 2977, '{"total-fields":39,"updated-fields":0}'), +(34355, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.030213+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.032734+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34356, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.032818+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.033434+00', 0, NULL), +(34357, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.052613+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.072081+00', 19, NULL), +(34358, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.052663+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.063922+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34359, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.063995+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.067394+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34360, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.0675+00', TIMESTAMP WITH TIME ZONE '2023-02-16 10:49:03.072006+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34361, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:00:00.004+00', 1, NULL), +(34362, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 11:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:00:00.168+00', 162, NULL), +(34363, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.00703+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.247089+00', 240, NULL), +(34364, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.007055+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.015586+00', 8, '{"timezone-id":"UTC"}'), +(34365, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.015675+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.031053+00', 15, '{"updated-tables":0,"total-tables":8}'), +(34366, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.031153+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.171836+00', 140, '{"total-fields":71,"updated-fields":0}'), +(34367, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.171914+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.182121+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34368, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.182209+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.247+00', 64, NULL), +(34369, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.26431+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.292989+00', 28, NULL), +(34370, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.264334+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.282479+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34371, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.282547+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.288038+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34372, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.288116+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:19:00.292936+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34373, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:00.023546+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.958468+00', 2934, NULL), +(34374, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:00.023573+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:00.024913+00', 1, '{"timezone-id":null}'), +(34375, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:00.025113+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:00.085203+00', 60, '{"updated-tables":0,"total-tables":4}'), +(34376, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:00.085561+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.956597+00', 2871, '{"total-fields":39,"updated-fields":0}'), +(34377, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.956679+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.957982+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34378, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.95805+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.958431+00', 0, NULL), +(34379, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.970257+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.983874+00', 13, NULL), +(34380, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.970277+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.978282+00', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34381, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.978365+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.980635+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34382, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.980712+00', TIMESTAMP WITH TIME ZONE '2023-02-16 11:49:02.983827+00', 3, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34383, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 12:00:00.018+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:00:00.019+00', 1, NULL), +(34384, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 12:00:00.021+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:00:00.313+00', 292, NULL), +(34385, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.005515+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.270629+00', 265, NULL), +(34386, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.005538+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.013175+00', 7, '{"timezone-id":"UTC"}'), +(34387, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.013259+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.024342+00', 11, '{"updated-tables":0,"total-tables":8}'), +(34388, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.024435+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.20583+00', 181, '{"total-fields":71,"updated-fields":0}'), +(34389, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.205895+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.216047+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34390, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.216112+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.270595+00', 54, NULL), +(34391, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.2834+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.309683+00', 26, NULL), +(34392, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.283419+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.299135+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34393, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.299212+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.304438+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34394, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.304522+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:19:00.309623+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34395, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:00.015538+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.984233+00', 2968, NULL), +(34396, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:00.015564+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:00.016172+00', 0, '{"timezone-id":null}'), +(34397, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:00.016233+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:00.072712+00', 56, '{"updated-tables":0,"total-tables":4}'), +(34398, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:00.072799+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.981555+00', 2908, '{"total-fields":39,"updated-fields":0}'), +(34399, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.981608+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.983346+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34400, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.983409+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.9842+00', 0, NULL), +(34401, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.998626+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:03.016044+00', 17, NULL), +(34402, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:02.998649+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:03.009075+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34403, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:03.009152+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:03.011946+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34404, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:03.012013+00', TIMESTAMP WITH TIME ZONE '2023-02-16 12:49:03.015991+00', 3, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34405, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 13:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:00:00.005+00', 2, NULL), +(34406, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 13:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:00:00.218+00', 212, NULL), +(34407, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.006366+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.257796+00', 251, NULL), +(34408, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.006387+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.025021+00', 18, '{"timezone-id":"UTC"}'), +(34409, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.025117+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.035838+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34410, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.035932+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.191942+00', 156, '{"total-fields":71,"updated-fields":0}'), +(34411, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.191998+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.20211+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34412, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.202177+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.257763+00', 55, NULL), +(34413, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.270341+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.291456+00', 21, NULL), +(34414, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.270363+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.283419+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34415, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.28349+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.287402+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34416, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.287472+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:19:00.291407+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34417, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:00.026376+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:02.997048+00', 2970, NULL), +(34418, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:00.026832+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:00.027606+00', 0, '{"timezone-id":null}'), +(34419, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:00.027678+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:00.074295+00', 46, '{"updated-tables":0,"total-tables":4}'), +(34420, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:00.074514+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:02.993955+00', 2919, '{"total-fields":39,"updated-fields":0}'), +(34421, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:02.994196+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:02.996204+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34422, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:02.996388+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:02.997015+00', 0, NULL), +(34423, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.012817+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.030134+00', 17, NULL), +(34424, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.012837+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.02224+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34425, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.022307+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.025147+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34426, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.025221+00', TIMESTAMP WITH TIME ZONE '2023-02-16 13:49:03.030074+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34427, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 14:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:00:00.008+00', 5, NULL), +(34428, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 14:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:00:00.231+00', 223, NULL), +(34429, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.00603+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.239949+00', 233, NULL), +(34430, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.006052+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.025343+00', 19, '{"timezone-id":"UTC"}'), +(34431, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.025423+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.033449+00', 8, '{"updated-tables":0,"total-tables":8}'), +(34432, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.033501+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.189795+00', 156, '{"total-fields":71,"updated-fields":0}'), +(34433, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.189854+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.198401+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34434, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.198467+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.23992+00', 41, NULL), +(34435, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.25296+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.27262+00', 19, NULL), +(34436, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.25298+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.264975+00', 11, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34437, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.265039+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.268924+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34438, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.268991+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:00.27257+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34439, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:00.045002+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.865215+00', 2820, NULL), +(34440, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:00.045029+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:00.045567+00', 0, '{"timezone-id":null}'), +(34441, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:00.045622+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:00.115279+00', 69, '{"updated-tables":0,"total-tables":4}'), +(34442, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:00.115342+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.862641+00', 2747, '{"total-fields":39,"updated-fields":0}'), +(34443, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.86274+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.864623+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34444, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.864705+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.865171+00', 0, NULL), +(34445, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.878908+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.89748+00', 18, NULL), +(34446, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.878933+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.88944+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34447, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.889541+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.893074+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34448, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.893167+00', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:02.897409+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34449, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:00.013+00', 10, NULL), +(34450, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:00.015+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:00.143+00', 128, NULL), +(34451, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.009592+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.288794+00', 279, NULL), +(34452, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.009615+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.01832+00', 8, '{"timezone-id":"UTC"}'), +(34453, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.01842+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.028232+00', 9, '{"updated-tables":0,"total-tables":8}'), +(34454, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.028308+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.2256+00', 197, '{"total-fields":71,"updated-fields":0}'), +(34455, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.225674+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.236783+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34456, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.236874+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.28875+00', 51, NULL), +(34457, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.301655+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.325857+00', 24, NULL), +(34458, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.301675+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.316648+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34459, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.31672+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.321245+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34460, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.321343+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:00.325807+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34461, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:00.015481+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.768366+00', 2752, NULL), +(34462, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:00.015508+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:00.016102+00', 0, '{"timezone-id":null}'), +(34463, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:00.016166+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:00.067544+00', 51, '{"updated-tables":0,"total-tables":4}'), +(34464, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:00.067607+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.766392+00', 2698, '{"total-fields":39,"updated-fields":0}'), +(34465, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.766527+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.767953+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34466, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.768008+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.768341+00', 0, NULL), +(34467, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.783593+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.856338+00', 72, NULL), +(34468, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.783643+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.793676+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34469, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.793896+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.797236+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34470, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.851915+00', TIMESTAMP WITH TIME ZONE '2023-02-16 15:49:02.856287+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34471, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 16:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:00:00.151+00', 144, NULL), +(34472, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 16:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:00:00.151+00', 148, NULL), +(34473, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.028346+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.306015+00', 277, NULL), +(34474, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.028374+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.061748+00', 33, '{"timezone-id":"UTC"}'), +(34475, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.061902+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.072168+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34476, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.072356+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.245754+00', 173, '{"total-fields":71,"updated-fields":0}'), +(34477, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.24583+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.255516+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34478, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.255586+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.30596+00', 50, NULL), +(34479, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.31756+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.347248+00', 29, NULL), +(34480, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.317582+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.335992+00', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34481, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.336066+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.341392+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34482, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.341484+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:19:00.347204+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34483, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:00.014977+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.431872+00', 3416, NULL), +(34484, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:00.015005+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:00.015997+00', 0, '{"timezone-id":null}'), +(34485, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:00.016081+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:00.069379+00', 53, '{"updated-tables":0,"total-tables":4}'), +(34486, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:00.069445+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.429828+00', 3360, '{"total-fields":39,"updated-fields":0}'), +(34487, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.429939+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.431495+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34488, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.431561+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.431852+00', 0, NULL), +(34489, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.446875+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.464024+00', 17, NULL), +(34490, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.446895+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.457238+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34491, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.457307+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.460058+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34492, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.460123+00', TIMESTAMP WITH TIME ZONE '2023-02-16 16:49:03.463978+00', 3, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34493, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 17:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:00:00.14+00', 136, NULL), +(34494, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 17:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:00:00.14+00', 135, NULL), +(34495, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.010696+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.281736+00', 271, NULL), +(34496, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.010721+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.023868+00', 13, '{"timezone-id":"UTC"}'), +(34497, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.023949+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.037793+00', 13, '{"updated-tables":0,"total-tables":8}'), +(34498, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.037859+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.208656+00', 170, '{"total-fields":71,"updated-fields":0}'), +(34499, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.208721+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.224471+00', 15, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34500, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.224712+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.281701+00', 56, NULL), +(34501, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.294164+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.327859+00', 33, NULL), +(34502, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.294184+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.308162+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34503, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.308246+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.315972+00', 7, '{"fields-classified":0,"fields-failed":0}'), +(34504, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.316045+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:19:00.327803+00', 11, '{"total-tables":8,"tables-classified":0}'), +(34505, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:00.038882+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.484919+00', 3446, NULL), +(34506, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:00.038907+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:00.039481+00', 0, '{"timezone-id":null}'), +(34507, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:00.039649+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:00.107574+00', 67, '{"updated-tables":0,"total-tables":4}'), +(34508, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:00.107647+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.483302+00', 3375, '{"total-fields":39,"updated-fields":0}'), +(34509, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.483361+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.484652+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34510, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.484702+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.484905+00', 0, NULL), +(34511, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.510757+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.591098+00', 80, NULL), +(34512, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.510781+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.574488+00', 63, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34513, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.574764+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.585827+00', 11, '{"fields-classified":0,"fields-failed":0}'), +(34514, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.585918+00', TIMESTAMP WITH TIME ZONE '2023-02-16 17:49:03.590738+00', 4, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34515, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 18:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:00:00.006+00', 2, NULL), +(34516, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 18:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:00:00.127+00', 122, NULL), +(34517, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.0109+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.254068+00', 243, NULL), +(34518, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.01092+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.019625+00', 8, '{"timezone-id":"UTC"}'), +(34519, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.019737+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.031443+00', 11, '{"updated-tables":0,"total-tables":8}'), +(34520, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.031525+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.195563+00', 164, '{"total-fields":71,"updated-fields":0}'), +(34521, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.195637+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.206345+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34522, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.206411+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.254034+00', 47, NULL), +(34523, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.265062+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.289541+00', 24, NULL), +(34524, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.265086+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.279312+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34525, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.279398+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.284221+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34526, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.284302+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:19:00.289485+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34527, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:00.034863+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.828748+00', 2793, NULL), +(34528, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:00.034887+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:00.035778+00', 0, '{"timezone-id":null}'), +(34529, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:00.035857+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:00.089421+00', 53, '{"updated-tables":0,"total-tables":4}'), +(34530, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:00.089572+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.826084+00', 2736, '{"total-fields":39,"updated-fields":0}'), +(34531, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.826204+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.8279+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34532, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.828007+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.828714+00', 0, NULL), +(34533, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.853232+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.876356+00', 23, NULL), +(34534, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.853257+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.863269+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34535, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.863341+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.866599+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34536, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.866704+00', TIMESTAMP WITH TIME ZONE '2023-02-16 18:49:02.876263+00', 9, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34537, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 19:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:00:00.006+00', 3, NULL), +(34538, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 19:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:00:00.147+00', 139, NULL), +(34539, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.020522+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.362631+00', 342, NULL), +(34540, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.020553+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.055934+00', 35, '{"timezone-id":"UTC"}'), +(34541, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.056068+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.082816+00', 26, '{"updated-tables":0,"total-tables":8}'), +(34542, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.082897+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.284197+00', 201, '{"total-fields":71,"updated-fields":0}'), +(34543, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.284251+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.301033+00', 16, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34544, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.301124+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.362589+00', 61, NULL), +(34545, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.374622+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.40446+00', 29, NULL), +(34546, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.374647+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.394398+00', 19, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34547, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.394473+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.399704+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34548, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.39978+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:19:00.40439+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34549, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:00.021263+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.121242+00', 3099, NULL), +(34550, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:00.021288+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:00.021943+00', 0, '{"timezone-id":null}'), +(34551, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:00.022021+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:00.079999+00', 57, '{"updated-tables":0,"total-tables":4}'), +(34552, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:00.080068+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.118984+00', 3038, '{"total-fields":39,"updated-fields":0}'), +(34553, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.119071+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.120777+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34554, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.120837+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.121218+00', 0, NULL), +(34555, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.141252+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.162213+00', 20, NULL), +(34556, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.141278+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.153541+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34557, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.153727+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.156292+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34558, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.156389+00', TIMESTAMP WITH TIME ZONE '2023-02-16 19:49:03.16213+00', 5, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34559, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 20:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:00:00.01+00', 2, NULL), +(34560, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 20:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:00:00.148+00', 136, NULL), +(34561, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.012201+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.266771+00', 254, NULL), +(34562, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.01223+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.023854+00', 11, '{"timezone-id":"UTC"}'), +(34563, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.023954+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.039992+00', 16, '{"updated-tables":0,"total-tables":8}'), +(34564, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.040068+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.197297+00', 157, '{"total-fields":71,"updated-fields":0}'), +(34565, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.197409+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.210561+00', 13, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34566, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.210628+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.266736+00', 56, NULL), +(34567, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.278619+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.304638+00', 26, NULL), +(34568, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.278643+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.294745+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34569, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.294839+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.300053+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34570, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.300128+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:19:00.304581+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34571, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:00.025002+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.854381+00', 2829, NULL), +(34572, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:00.025026+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:00.040836+00', 15, '{"timezone-id":null}'), +(34573, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:00.040933+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:00.104853+00', 63, '{"updated-tables":0,"total-tables":4}'), +(34574, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:00.104928+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.851769+00', 2746, '{"total-fields":39,"updated-fields":0}'), +(34575, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.851891+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.853635+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34576, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.853727+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.854316+00', 0, NULL), +(34577, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.963838+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.98031+00', 16, NULL), +(34578, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.963867+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.973255+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34579, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.973367+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.976296+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34580, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.976402+00', TIMESTAMP WITH TIME ZONE '2023-02-16 20:49:02.980257+00', 3, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34581, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.015+00', 1, NULL), +(34582, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.016+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.137+00', 121, NULL), +(34583, 'field values scanning', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.007319+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.698802+00', 691, NULL), +(34584, 'delete-expired-advanced-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.007341+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.207977+00', 200, '{"deleted":0}'), +(34585, 'update-field-values', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.208035+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:00:00.698753+00', 490, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(34586, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.005696+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.376983+00', 371, NULL), +(34587, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.005718+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.025313+00', 19, '{"timezone-id":"UTC"}'), +(34588, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.025403+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.037939+00', 12, '{"updated-tables":0,"total-tables":8}'), +(34589, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.037998+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.299062+00', 261, '{"total-fields":71,"updated-fields":0}'), +(34590, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.299119+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.329638+00', 30, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34591, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.329925+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.376755+00', 46, NULL), +(34592, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.388189+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.413+00', 24, NULL), +(34593, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.388209+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.402739+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34594, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.403004+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.407716+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34595, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.407903+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:19:00.412942+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34596, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:00.017668+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.792203+00', 2774, NULL), +(34597, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:00.017702+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:00.018631+00', 0, '{"timezone-id":null}'), +(34598, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:00.018724+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:00.064686+00', 45, '{"updated-tables":0,"total-tables":4}'), +(34599, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:00.064752+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.790409+00', 2725, '{"total-fields":39,"updated-fields":0}'), +(34600, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.79048+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.79184+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34601, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.791897+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.792183+00', 0, NULL), +(34602, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.805922+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.826201+00', 20, NULL), +(34603, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.805945+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.815146+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34604, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.815266+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.821436+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(34605, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.821505+00', TIMESTAMP WITH TIME ZONE '2023-02-16 21:49:02.826127+00', 4, '{"total-tables":4,"tables-classified":0}'), +(34606, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 22:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:00:00.005+00', 2, NULL), +(34607, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 22:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:00:00.132+00', 126, NULL), +(34608, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.008215+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.262125+00', 253, NULL), +(34609, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.008268+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.021279+00', 13, '{"timezone-id":"UTC"}'), +(34610, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.021415+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.036604+00', 15, '{"updated-tables":0,"total-tables":8}'), +(34611, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.036718+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.198192+00', 161, '{"total-fields":71,"updated-fields":0}'), +(34612, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.198251+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.207808+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34613, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.207863+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.26209+00', 54, NULL), +(34614, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.272615+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.294639+00', 22, NULL), +(34615, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.272635+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.287033+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34616, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.287103+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.29086+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34617, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.29093+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:19:00.294592+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34618, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:00.012535+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.914768+00', 2902, NULL), +(34619, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:00.012562+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:00.013127+00', 0, '{"timezone-id":null}'), +(34620, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:00.01321+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:00.066403+00', 53, '{"updated-tables":0,"total-tables":4}'), +(34621, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:00.066456+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.91194+00', 2845, '{"total-fields":39,"updated-fields":0}'), +(34622, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.912002+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.914049+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34623, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.914114+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.914707+00', 0, NULL), +(34624, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.935553+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.953093+00', 17, NULL), +(34625, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.935577+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.946306+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34626, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.94639+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.949336+00', 2, '{"fields-classified":0,"fields-failed":0}'), +(34627, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.94943+00', TIMESTAMP WITH TIME ZONE '2023-02-16 22:49:02.953018+00', 3, '{"total-tables":4,"tables-classified":0}'), +(34628, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 23:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:00:00.007+00', 1, NULL), +(34629, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-16 23:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:00:00.137+00', 129, NULL), +(34630, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.008044+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.23874+00', 230, NULL), +(34631, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.008077+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.015484+00', 7, '{"timezone-id":"UTC"}'), +(34632, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.015567+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.026211+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34633, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.026263+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.179217+00', 152, '{"total-fields":71,"updated-fields":0}'), +(34634, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.179359+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.189243+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34635, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.18939+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.238668+00', 49, NULL), +(34636, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.249299+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.273128+00', 23, NULL), +(34637, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.249324+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.263363+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34638, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.26348+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.268312+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34639, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.268462+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:19:00.273046+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34640, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:00.013935+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.979128+00', 2965, NULL), +(34641, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:00.013963+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:00.014592+00', 0, '{"timezone-id":null}'), +(34642, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:00.014658+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:00.081489+00', 66, '{"updated-tables":0,"total-tables":4}'), +(34643, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:00.081551+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.977147+00', 2895, '{"total-fields":39,"updated-fields":0}'), +(34644, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.97724+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.978631+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34645, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.978697+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.979103+00', 0, NULL), +(34646, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.995684+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:03.013651+00', 17, NULL), +(34647, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:02.995704+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:03.005063+00', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34648, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:03.005198+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:03.008991+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34649, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:03.009142+00', TIMESTAMP WITH TIME ZONE '2023-02-16 23:49:03.013517+00', 4, '{"total-tables":4,"tables-classified":0}'), +(34650, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 00:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:00:00.17+00', 167, NULL), +(34651, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 00:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:00:00.17+00', 163, NULL), +(34652, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.011738+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.291371+00', 279, NULL), +(34653, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.01176+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.020925+00', 9, '{"timezone-id":"UTC"}'), +(34654, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.02101+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.031718+00', 10, '{"updated-tables":0,"total-tables":8}'), +(34655, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.031791+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.206672+00', 174, '{"total-fields":71,"updated-fields":0}'), +(34656, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.206732+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.218431+00', 11, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34657, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.218489+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.291338+00', 72, NULL), +(34658, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.304335+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.329617+00', 25, NULL), +(34659, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.304355+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.320195+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34660, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.320268+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.325786+00', 5, '{"fields-classified":0,"fields-failed":0}'), +(34661, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.325891+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:19:00.329567+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34662, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:00.017925+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.653306+00', 2635, NULL), +(34663, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:00.017967+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:00.018503+00', 0, '{"timezone-id":null}'), +(34664, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:00.01856+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:00.061094+00', 42, '{"updated-tables":0,"total-tables":4}'), +(34665, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:00.061152+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.64353+00', 2582, '{"total-fields":39,"updated-fields":0}'), +(34666, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.643788+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.652776+00', 8, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34667, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.652874+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.65328+00', 0, NULL), +(34668, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.670123+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.695078+00', 24, NULL), +(34669, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.670152+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.687875+00', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34670, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.687996+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.691206+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34671, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.691289+00', TIMESTAMP WITH TIME ZONE '2023-02-17 00:49:02.695008+00', 3, '{"total-tables":4,"tables-classified":0}'), +(34672, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 01:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:00:00.006+00', 3, NULL), +(34673, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 01:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:00:00.145+00', 135, NULL), +(34674, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.0073+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.317005+00', 309, NULL), +(34675, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.007323+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.017374+00', 10, '{"timezone-id":"UTC"}'), +(34676, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.017567+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.06692+00', 49, '{"updated-tables":0,"total-tables":8}'), +(34677, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.067024+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.239784+00', 172, '{"total-fields":71,"updated-fields":0}'), +(34678, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.239868+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.252376+00', 12, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34679, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.252496+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.316966+00', 64, NULL), +(34680, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.328894+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.361036+00', 32, NULL), +(34681, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.328916+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.351167+00', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34682, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.351253+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.356203+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34683, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.356294+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:19:00.360983+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34684, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:00.031676+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:02.995034+00', 2963, NULL), +(34685, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:00.031702+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:00.032659+00', 0, '{"timezone-id":null}'), +(34686, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:00.032792+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:00.088443+00', 55, '{"updated-tables":0,"total-tables":4}'), +(34687, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:00.088505+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:02.993443+00', 2904, '{"total-fields":39,"updated-fields":0}'), +(34688, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:02.993502+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:02.994722+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34689, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:02.994775+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:02.995014+00', 0, NULL), +(34690, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.011173+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.042638+00', 31, NULL), +(34691, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.011198+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.03451+00', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34692, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.034598+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.038468+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34693, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.038545+00', TIMESTAMP WITH TIME ZONE '2023-02-17 01:49:03.04259+00', 4, '{"total-tables":4,"tables-classified":0}'), +(34694, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.015+00', 1, NULL), +(34695, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.019+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.131+00', 112, NULL), +(34696, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.020193+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:02.279321+00', 2259, NULL), +(34697, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.020216+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.198599+00', 178, '{"deleted":0}'), +(34698, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:00.198668+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:00:02.279271+00', 2080, '{"errors":0,"created":0,"updated":3,"deleted":0}'), +(34699, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.00804+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.240732+00', 232, NULL), +(34700, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.008086+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.01422+00', 6, '{"timezone-id":"UTC"}'), +(34701, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.015268+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.024171+00', 8, '{"updated-tables":0,"total-tables":8}'), +(34702, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.024362+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.187285+00', 162, '{"total-fields":71,"updated-fields":0}'), +(34703, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.187628+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.196218+00', 8, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34704, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.19647+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.240705+00', 44, NULL), +(34705, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.250511+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.273718+00', 23, NULL), +(34706, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.25053+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.264776+00', 14, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34707, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.264886+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.269231+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34708, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.269373+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:19:00.273647+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34709, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:00.012403+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.075851+00', 3063, NULL), +(34710, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:00.012515+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:00.013106+00', 0, '{"timezone-id":null}'), +(34711, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:00.013168+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:00.078112+00', 64, '{"updated-tables":0,"total-tables":4}'), +(34712, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:00.078187+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.073186+00', 2994, '{"total-fields":39,"updated-fields":0}'), +(34713, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.073261+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.075003+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34714, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.075096+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.075794+00', 0, NULL), +(34715, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.091743+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.111505+00', 19, NULL), +(34716, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.091773+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.102068+00', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34717, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.102182+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.106422+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34718, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.10653+00', TIMESTAMP WITH TIME ZONE '2023-02-17 02:49:03.111407+00', 4, '{"total-tables":4,"tables-classified":0}'), +(34719, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 03:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:00:00.007+00', 4, NULL), +(34720, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 03:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:00:00.157+00', 151, NULL), +(34721, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.00829+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.304289+00', 295, NULL), +(34722, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.008311+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.021605+00', 13, '{"timezone-id":"UTC"}'), +(34723, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.021703+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.036474+00', 14, '{"updated-tables":0,"total-tables":8}'), +(34724, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.036554+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.19454+00', 157, '{"total-fields":71,"updated-fields":0}'), +(34725, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.194624+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.251932+00', 57, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34726, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.252009+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.304248+00', 52, NULL), +(34727, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.31469+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.342808+00', 28, NULL), +(34728, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.314712+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.331512+00', 16, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34729, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.331629+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.337647+00', 6, '{"fields-classified":0,"fields-failed":0}'), +(34730, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.337729+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:19:00.342754+00', 5, '{"total-tables":8,"tables-classified":0}'), +(34731, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:00.019835+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.128685+00', 3108, NULL), +(34732, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:00.019862+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:00.021031+00', 1, '{"timezone-id":null}'), +(34733, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:00.021109+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:00.06883+00', 47, '{"updated-tables":0,"total-tables":4}'), +(34734, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:00.068928+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.126781+00', 3057, '{"total-fields":39,"updated-fields":0}'), +(34735, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.126852+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.128323+00', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34736, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.128379+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.128664+00', 0, NULL), +(34737, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.148375+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.168725+00', 20, NULL), +(34738, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.148399+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.161194+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34739, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.161274+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.164443+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34740, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.164519+00', TIMESTAMP WITH TIME ZONE '2023-02-17 03:49:03.168679+00', 4, '{"total-tables":4,"tables-classified":0}'), +(34741, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 04:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:00:00.168+00', 162, NULL), +(34742, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 04:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:00:00.168+00', 164, NULL), +(34743, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.008041+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.282408+00', 274, NULL), +(34744, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.008064+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.016803+00', 8, '{"timezone-id":"UTC"}'), +(34745, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.016893+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.02652+00', 9, '{"updated-tables":0,"total-tables":8}'), +(34746, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.027089+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.215416+00', 188, '{"total-fields":71,"updated-fields":0}'), +(34747, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.215475+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.225444+00', 9, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34748, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.225497+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.282376+00', 56, NULL), +(34749, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.293538+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.317711+00', 24, NULL), +(34750, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.293613+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.309301+00', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34751, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.309425+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.31337+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34752, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.313432+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:19:00.317665+00', 4, '{"total-tables":8,"tables-classified":0}'), +(34753, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:00.009377+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.22465+00', 3215, NULL), +(34754, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:00.009403+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:00.010059+00', 0, '{"timezone-id":null}'), +(34755, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:00.010147+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:00.058908+00', 48, '{"updated-tables":0,"total-tables":4}'), +(34756, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:00.059009+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.213263+00', 3154, '{"total-fields":39,"updated-fields":0}'), +(34757, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.213451+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.215626+00', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34758, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.21576+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.224563+00', 8, NULL), +(34759, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.242895+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.266061+00', 23, NULL), +(34760, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.242924+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.25624+00', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34761, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.256448+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.260704+00', 4, '{"fields-classified":0,"fields-failed":0}'), +(34762, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.260807+00', TIMESTAMP WITH TIME ZONE '2023-02-17 04:49:03.265939+00', 5, '{"total-tables":4,"tables-classified":0}'), +(34763, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 05:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:00:00.006+00', 4, NULL), +(34764, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 05:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:00:00.194+00', 187, NULL), +(34765, 'sync', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.006728+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.238684+00', 231, NULL), +(34766, 'sync-timezone', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.006751+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.014669+00', 7, '{"timezone-id":"UTC"}'), +(34767, 'sync-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.014987+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.023893+00', 8, '{"updated-tables":0,"total-tables":8}'), +(34768, 'sync-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.023978+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.180444+00', 156, '{"total-fields":71,"updated-fields":0}'), +(34769, 'sync-fks', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.180505+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.191035+00', 10, '{"total-fks":6,"updated-fks":0,"total-failed":0}'), +(34770, 'sync-metabase-metadata', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.19108+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.238652+00', 47, NULL), +(34771, 'analyze', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.248141+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.269038+00', 20, NULL), +(34772, 'fingerprint-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.248158+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.261131+00', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34773, 'classify-fields', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.261185+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.265082+00', 3, '{"fields-classified":0,"fields-failed":0}'), +(34774, 'classify-tables', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.265148+00', TIMESTAMP WITH TIME ZONE '2023-02-17 05:19:00.268994+00', 3, '{"total-tables":8,"tables-classified":0}'), +(34779, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 06:00:00.08+00', TIMESTAMP WITH TIME ZONE '2023-02-17 06:00:00.2+00', 120, NULL), +(34780, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 06:00:00.257+00', TIMESTAMP WITH TIME ZONE '2023-02-17 06:00:00.436+00', 179, NULL), +(34781, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 11:00:00.065+00', TIMESTAMP WITH TIME ZONE '2023-02-17 11:00:00.109+00', 44, NULL), +(34782, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-17 11:00:00.177+00', TIMESTAMP WITH TIME ZONE '2023-02-17 11:00:00.41+00', 233, NULL), +(34783, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:01.537854+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.460194+07', 4922, NULL), +(34784, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:01.539987+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:01.598126+07', 58, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34785, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:01.62042+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:01.76486+07', 144, '{"updated-tables":0,"total-tables":4}'), +(34786, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:01.765228+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.42929+07', 4664, '{"total-fields":8,"updated-fields":39}'), +(34787, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.429413+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.454535+07', 25, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34788, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.456284+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.460159+07', 3, NULL), +(34789, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.869153+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:07.40586+07', 536, NULL), +(34790, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:06.869182+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:07.227179+07', 357, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34791, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:07.227266+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:07.240524+07', 13, '{"fields-classified":0,"fields-failed":0}'), +(34792, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:07.240592+07', TIMESTAMP WITH TIME ZONE '2023-02-22 16:49:07.405469+07', 164, '{"total-tables":4,"tables-classified":0}'), +(34793, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-02-22 10:00:00.112+00', TIMESTAMP WITH TIME ZONE '2023-02-22 10:00:00.508+00', 396, NULL), +(34794, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-02-22 10:00:00.079+00', TIMESTAMP WITH TIME ZONE '2023-02-22 10:00:00.509+00', 430, NULL), +(34795, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.036991+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.66392+06', 626, NULL), +(34796, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.038419+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.040402+06', 1, '{"timezone-id":null}'), +(34797, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.040599+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.052129+06', 11, '{"updated-tables":0,"total-tables":4}'), +(34798, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.052173+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.655635+06', 603, '{"total-fields":17,"updated-fields":23}'), +(34799, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.655703+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.661816+06', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34800, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.66191+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.663861+06', 1, NULL), +(34801, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.709676+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.747973+06', 38, NULL), +(34802, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.7097+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.729848+06', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34803, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.729968+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.736479+06', 6, '{"fields-classified":0,"fields-failed":0}'), +(34804, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.736554+06', TIMESTAMP WITH TIME ZONE '2023-04-28 17:49:00.747905+06', 11, '{"total-tables":4,"tables-classified":0}'), +(34805, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-04-28 12:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-04-28 12:00:00.101+00', 90, NULL), +(34806, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-04-28 12:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-04-28 12:00:00.101+00', 88, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34807, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.036905+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.53637+06', 499, NULL), +(34808, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.0383+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.041006+06', 2, '{"timezone-id":null}'), +(34809, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.041362+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.058334+06', 16, '{"updated-tables":0,"total-tables":4}'), +(34810, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.058397+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.526509+06', 468, '{"total-fields":17,"updated-fields":0}'), +(34811, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.52657+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.534299+06', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34812, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.534363+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.536332+06', 1, NULL), +(34813, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.585707+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.626874+06', 41, NULL), +(34814, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.585762+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.609751+06', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34815, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.609809+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.615401+06', 5, '{"fields-classified":0,"fields-failed":0}'), +(34816, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.61545+06', TIMESTAMP WITH TIME ZONE '2023-05-02 17:49:00.626833+06', 11, '{"total-tables":4,"tables-classified":0}'), +(34817, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-02 12:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-05-02 12:00:00.083+00', 69, NULL), +(34818, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-02 12:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-05-02 12:00:00.083+00', 69, NULL), +(34819, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.024622+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.262241+06', 237, NULL), +(34820, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.024659+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.025524+06', 0, '{"timezone-id":null}'), +(34821, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.025583+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.031928+06', 6, '{"updated-tables":0,"total-tables":4}'), +(34822, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.031989+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.260762+06', 228, '{"total-fields":17,"updated-fields":0}'), +(34823, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.260792+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.261872+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34824, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.261901+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.26223+06', 0, NULL), +(34825, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.273035+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.29013+06', 17, NULL), +(34826, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.273053+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.281874+06', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34827, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.281938+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.285033+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(34828, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.285083+06', TIMESTAMP WITH TIME ZONE '2023-05-02 18:49:00.29009+06', 5, '{"total-tables":4,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34829, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-02 13:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-02 13:00:00.007+00', 3, NULL), +(34830, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-02 13:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-02 13:00:00.053+00', 45, NULL), +(34831, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.015707+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.187611+06', 171, NULL), +(34832, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.015726+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.016502+06', 0, '{"timezone-id":null}'), +(34833, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.016553+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.021931+06', 5, '{"updated-tables":0,"total-tables":4}'), +(34834, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.021972+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.186004+06', 164, '{"total-fields":17,"updated-fields":0}'), +(34835, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.186036+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.187215+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34836, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.187259+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.187599+06', 0, NULL), +(34837, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.196675+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.209031+06', 12, NULL), +(34838, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.196688+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.202947+06', 6, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34839, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.202985+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.205428+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(34840, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.205469+06', TIMESTAMP WITH TIME ZONE '2023-05-02 19:49:00.209002+06', 3, '{"total-tables":4,"tables-classified":0}'), +(34841, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-02 14:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-05-02 14:00:00.005+00', 2, NULL), +(34842, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-02 14:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-02 14:00:00.066+00', 59, NULL), +(34843, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 03:46:10.003+00', TIMESTAMP WITH TIME ZONE '2023-05-03 03:46:10.103+00', 100, NULL), +(34844, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 03:46:10.001+00', TIMESTAMP WITH TIME ZONE '2023-05-03 03:46:10.103+00', 102, NULL), +(34845, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.032514+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.421724+06', 389, NULL), +(34846, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.033871+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.036786+06', 2, '{"timezone-id":null}'), +(34847, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.037034+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.050585+06', 13, '{"updated-tables":0,"total-tables":4}'), +(34848, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.050633+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.415882+06', 365, '{"total-fields":26,"updated-fields":46}'), +(34849, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.415915+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.420479+06', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34850, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.420522+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.421699+06', 1, NULL), +(34851, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.4413+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.466221+06', 24, NULL), +(34852, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.441319+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.455163+06', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34853, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.455202+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.459825+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(34854, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.459874+06', TIMESTAMP WITH TIME ZONE '2023-05-03 09:49:00.466189+06', 6, '{"total-tables":4,"tables-classified":0}'), +(34855, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 04:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-05-03 04:00:00.133+00', 128, NULL), +(34856, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 04:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-05-03 04:00:00.133+00', 131, NULL), +(34857, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.027419+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.501801+06', 474, NULL), +(34858, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.027451+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.028752+06', 1, '{"timezone-id":null}'), +(34859, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.028807+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.037453+06', 8, '{"updated-tables":0,"total-tables":4}'), +(34860, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.0375+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.498564+06', 461, '{"total-fields":26,"updated-fields":0}'), +(34861, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.498635+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.50121+06', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34862, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.501264+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.501775+06', 0, NULL), +(34863, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.518818+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.538765+06', 19, NULL), +(34864, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.518834+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.52804+06', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34865, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.528096+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.53287+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(34866, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.532928+06', TIMESTAMP WITH TIME ZONE '2023-05-03 10:49:00.538726+06', 5, '{"total-tables":4,"tables-classified":0}'), +(34867, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 05:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-03 05:00:00.008+00', 4, NULL), +(34868, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 05:00:00.012+00', TIMESTAMP WITH TIME ZONE '2023-05-03 05:00:00.066+00', 54, NULL), +(34869, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.024295+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.238887+06', 214, NULL), +(34870, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.024313+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.024997+06', 0, '{"timezone-id":null}'), +(34871, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.025054+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.02946+06', 4, '{"updated-tables":0,"total-tables":4}'), +(34872, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.029498+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.228437+06', 198, '{"total-fields":26,"updated-fields":0}'), +(34873, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.228485+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.237787+06', 9, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34874, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.23787+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.238856+06', 0, NULL), +(34875, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.250835+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.264638+06', 13, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34876, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.25085+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.258821+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34877, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.258869+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.261018+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(34878, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.261057+06', TIMESTAMP WITH TIME ZONE '2023-05-03 11:49:00.264603+06', 3, '{"total-tables":4,"tables-classified":0}'), +(34879, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 06:00:00.02+00', TIMESTAMP WITH TIME ZONE '2023-05-03 06:00:00.021+00', 1, NULL), +(34880, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 06:00:00.024+00', TIMESTAMP WITH TIME ZONE '2023-05-03 06:00:00.076+00', 52, NULL), +(34881, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.031699+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.3298+06', 298, NULL), +(34882, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.031749+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.033222+06', 1, '{"timezone-id":null}'), +(34883, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.033289+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.039539+06', 6, '{"updated-tables":0,"total-tables":4}'), +(34884, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.03959+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.327082+06', 287, '{"total-fields":26,"updated-fields":0}'), +(34885, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.327146+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.329143+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34886, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.329194+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.329771+06', 0, NULL), +(34887, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.351888+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.377379+06', 25, NULL), +(34888, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.351911+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.364599+06', 12, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34889, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.364723+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.37016+06', 5, '{"fields-classified":0,"fields-failed":0}'), +(34890, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.370235+06', TIMESTAMP WITH TIME ZONE '2023-05-03 12:49:00.377311+06', 7, '{"total-tables":4,"tables-classified":0}'), +(34891, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 07:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-05-03 07:00:00.013+00', 4, NULL), +(34892, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 07:00:00.02+00', TIMESTAMP WITH TIME ZONE '2023-05-03 07:00:00.08+00', 60, NULL), +(34893, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.01831+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.336554+06', 318, NULL), +(34894, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.018354+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.019498+06', 1, '{"timezone-id":null}'), +(34895, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.019572+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.024881+06', 5, '{"updated-tables":0,"total-tables":4}'), +(34896, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.024924+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.334832+06', 309, '{"total-fields":35,"updated-fields":16}'), +(34897, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.334872+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.336156+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34898, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.336203+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.33654+06', 0, NULL), +(34899, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.346688+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.360823+06', 14, NULL), +(34900, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.346709+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.355485+06', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34901, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.355541+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.358059+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(34902, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.358104+06', TIMESTAMP WITH TIME ZONE '2023-05-03 13:49:00.360795+06', 2, '{"total-tables":4,"tables-classified":0}'), +(34903, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 08:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-03 08:00:00.006+00', 2, NULL), +(34904, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 08:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-03 08:00:00.072+00', 65, NULL), +(34905, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.017367+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.362894+06', 345, NULL), +(34906, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.017386+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.017998+06', 0, '{"timezone-id":null}'), +(34907, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.018049+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.022066+06', 4, '{"updated-tables":0,"total-tables":4}'), +(34908, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.022103+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.360443+06', 338, '{"total-fields":35,"updated-fields":0}'), +(34909, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.36054+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.362416+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34910, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.362463+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.362877+06', 0, NULL), +(34911, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.374517+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.39122+06', 16, NULL), +(34912, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.374541+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.385512+06', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34913, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.385567+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.387377+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(34914, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.387417+06', TIMESTAMP WITH TIME ZONE '2023-05-03 14:49:00.391172+06', 3, '{"total-tables":4,"tables-classified":0}'), +(34915, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 09:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-03 09:00:00.05+00', 43, NULL), +(34916, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-03 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-03 09:00:00.051+00', 47, NULL), +(34917, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.042846+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.548419+06', 505, NULL), +(34918, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.044732+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.047702+06', 2, '{"timezone-id":null}'), +(34919, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.048031+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.091253+06', 43, '{"updated-tables":1,"total-tables":4}'), +(34920, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.091332+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.538979+06', 447, '{"total-fields":23,"updated-fields":11}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34921, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.539051+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.546213+06', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34922, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.54628+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.548368+06', 2, NULL), +(34923, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.584892+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.622075+06', 37, NULL), +(34924, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.584961+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.605538+06', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34925, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.605608+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.613498+06', 7, '{"fields-classified":0,"fields-failed":0}'), +(34926, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.613558+06', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:00.622016+06', 8, '{"total-tables":3,"tables-classified":0}'), +(34927, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 07:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-05-08 07:00:00.065+00', 55, NULL), +(34928, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 07:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-05-08 07:00:00.065+00', 55, NULL), +(34929, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.012858+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.223345+06', 210, NULL), +(34930, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.012874+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.013249+06', 0, '{"timezone-id":null}'), +(34931, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.0133+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.015954+06', 2, '{"updated-tables":0,"total-tables":3}'), +(34932, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.015988+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.222658+06', 206, '{"total-fields":23,"updated-fields":0}'), +(34933, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.222687+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.223169+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34934, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.223193+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.223336+06', 0, NULL), +(34935, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.229231+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.237097+06', 7, NULL), +(34936, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.229247+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.233913+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34937, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.233965+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.235575+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(34938, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.235617+06', TIMESTAMP WITH TIME ZONE '2023-05-08 13:49:00.237075+06', 1, '{"total-tables":3,"tables-classified":0}'), +(34939, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 08:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-08 08:00:00.006+00', 2, NULL), +(34940, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 08:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-08 08:00:00.051+00', 43, NULL), +(34941, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.015442+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.215176+06', 199, NULL), +(34942, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.015464+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.015871+06', 0, '{"timezone-id":null}'), +(34943, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.015918+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.021137+06', 5, '{"updated-tables":0,"total-tables":3}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34944, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.021196+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.21443+06', 193, '{"total-fields":23,"updated-fields":0}'), +(34945, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.214462+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.215014+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34946, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.215034+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.215167+06', 0, NULL), +(34947, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.221095+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.229634+06', 8, NULL), +(34948, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.22111+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.225747+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34949, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.225795+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.227634+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(34950, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.227725+06', TIMESTAMP WITH TIME ZONE '2023-05-08 14:49:00.229608+06', 1, '{"total-tables":3,"tables-classified":0}'), +(34951, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 09:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-05-08 09:00:00.006+00', 3, NULL), +(34952, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 09:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-08 09:00:00.065+00', 57, NULL), +(34953, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.027158+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.224768+06', 197, NULL), +(34954, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.02718+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.027737+06', 0, '{"timezone-id":null}'), +(34955, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.027785+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.034855+06', 7, '{"updated-tables":0,"total-tables":3}'), +(34956, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.034896+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.224024+06', 189, '{"total-fields":23,"updated-fields":0}'), +(34957, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.224066+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.224558+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34958, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.224596+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.22476+06', 0, NULL), +(34959, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.230129+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.235429+06', 5, NULL), +(34960, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.230145+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.23339+06', 3, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34961, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.233421+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.234265+06', 0, '{"fields-classified":0,"fields-failed":0}'), +(34962, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.234291+06', TIMESTAMP WITH TIME ZONE '2023-05-08 15:49:00.235413+06', 1, '{"total-tables":3,"tables-classified":0}'), +(34963, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 10:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-05-08 10:00:00.005+00', 2, NULL), +(34964, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 10:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-08 10:00:00.05+00', 43, NULL), +(34965, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.018088+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.271739+06', 253, NULL), +(34966, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.018109+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.018474+06', 0, '{"timezone-id":null}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34967, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.018519+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.02077+06', 2, '{"updated-tables":0,"total-tables":3}'), +(34968, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.020806+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.270858+06', 250, '{"total-fields":23,"updated-fields":0}'), +(34969, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.270891+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.271526+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34970, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.271561+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.271729+06', 0, NULL), +(34971, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.277823+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.285212+06', 7, NULL), +(34972, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.277841+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.28276+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34973, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.282802+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.283937+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(34974, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.283962+06', TIMESTAMP WITH TIME ZONE '2023-05-08 16:49:00.285197+06', 1, '{"total-tables":3,"tables-classified":0}'), +(34975, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 11:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-08 11:00:00.007+00', 3, NULL), +(34976, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 11:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-05-08 11:00:00.07+00', 61, NULL), +(34977, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.017594+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.186495+06', 168, NULL), +(34978, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.017619+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.018161+06', 0, '{"timezone-id":null}'), +(34979, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.018221+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.021796+06', 3, '{"updated-tables":0,"total-tables":3}'), +(34980, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.021842+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.185706+06', 163, '{"total-fields":23,"updated-fields":0}'), +(34981, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.185747+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.186291+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34982, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.186328+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.186488+06', 0, NULL), +(34983, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.192383+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.199282+06', 6, NULL), +(34984, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.192402+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.196892+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34985, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.196928+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.197916+06', 0, '{"fields-classified":0,"fields-failed":0}'), +(34986, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.19794+06', TIMESTAMP WITH TIME ZONE '2023-05-08 17:49:00.199265+06', 1, '{"total-tables":3,"tables-classified":0}'), +(34987, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 12:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-08 12:00:00.007+00', 3, NULL), +(34988, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 12:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-05-08 12:00:00.071+00', 60, NULL), +(34989, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.011816+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.272994+06', 261, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(34990, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.011841+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.012463+06', 0, '{"timezone-id":null}'), +(34991, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.01255+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.015628+06', 3, '{"updated-tables":0,"total-tables":3}'), +(34992, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.015664+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.272227+06', 256, '{"total-fields":23,"updated-fields":0}'), +(34993, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.272261+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.272809+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(34994, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.27283+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.272979+06', 0, NULL), +(34995, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.278353+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.284455+06', 6, NULL), +(34996, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.278367+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.282223+06', 3, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(34997, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.282256+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.283159+06', 0, '{"fields-classified":0,"fields-failed":0}'), +(34998, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.283187+06', TIMESTAMP WITH TIME ZONE '2023-05-08 18:49:00.284439+06', 1, '{"total-tables":3,"tables-classified":0}'), +(34999, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 13:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-08 13:00:00.006+00', 2, NULL), +(35000, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 13:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-08 13:00:00.051+00', 43, NULL), +(35001, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.023482+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.267711+06', 244, NULL), +(35002, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.023498+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.023947+06', 0, '{"timezone-id":null}'), +(35003, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.02399+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.026681+06', 2, '{"updated-tables":0,"total-tables":3}'), +(35004, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.026718+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.26691+06', 240, '{"total-fields":23,"updated-fields":0}'), +(35005, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.266954+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.26755+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35006, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.267567+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.267704+06', 0, NULL), +(35007, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.273024+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.277959+06', 4, NULL), +(35008, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.273037+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.275932+06', 2, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35009, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.275964+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.27682+06', 0, '{"fields-classified":0,"fields-failed":0}'), +(35010, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.276846+06', TIMESTAMP WITH TIME ZONE '2023-05-08 19:49:00.277941+06', 1, '{"total-tables":3,"tables-classified":0}'), +(35011, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 14:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-05-08 14:00:00.003+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35012, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 14:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-08 14:00:00.048+00', 44, NULL), +(35013, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.011401+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.238961+06', 227, NULL), +(35014, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.011415+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.011858+06', 0, '{"timezone-id":null}'), +(35015, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.011903+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.014722+06', 2, '{"updated-tables":0,"total-tables":3}'), +(35016, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.014756+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.238211+06', 223, '{"total-fields":23,"updated-fields":0}'), +(35017, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.238253+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.238748+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35018, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.238767+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.238949+06', 0, NULL), +(35019, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.244493+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.249801+06', 5, NULL), +(35020, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.24452+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.247696+06', 3, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35021, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.247727+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.248647+06', 0, '{"fields-classified":0,"fields-failed":0}'), +(35022, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.248677+06', TIMESTAMP WITH TIME ZONE '2023-05-08 20:49:00.249783+06', 1, '{"total-tables":3,"tables-classified":0}'), +(35023, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 15:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-08 15:00:00.006+00', 2, NULL), +(35024, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-08 15:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-05-08 15:00:00.06+00', 51, NULL), +(35025, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.257623+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.84845+06', 590, NULL), +(35026, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.258859+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.262027+06', 3, '{"timezone-id":null}'), +(35027, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.262496+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.286284+06', 23, '{"updated-tables":0,"total-tables":3}'), +(35028, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.286446+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.839726+06', 553, '{"total-fields":23,"updated-fields":0}'), +(35029, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.839826+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.846183+06', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35030, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.846305+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.848383+06', 2, NULL), +(35031, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.916981+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.959203+06', 42, NULL), +(35032, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.917025+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.94038+06', 23, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35033, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.940457+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.947771+06', 7, '{"fields-classified":0,"fields-failed":0}'), +(35034, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.947846+06', TIMESTAMP WITH TIME ZONE '2023-05-09 12:49:00.959093+06', 11, '{"total-tables":3,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35035, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 07:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-05-09 07:00:00.021+00', 10, NULL), +(35036, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 07:00:00.018+00', TIMESTAMP WITH TIME ZONE '2023-05-09 07:00:00.105+00', 87, NULL), +(35037, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.041221+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.477925+06', 436, NULL), +(35038, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.042521+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.045683+06', 3, '{"timezone-id":null}'), +(35039, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.046018+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.059658+06', 13, '{"updated-tables":0,"total-tables":3}'), +(35040, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.059716+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.469092+06', 409, '{"total-fields":23,"updated-fields":0}'), +(35041, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.469196+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.475673+06', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35042, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.475737+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.477861+06', 2, NULL), +(35043, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.531928+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.580552+06', 48, NULL), +(35044, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.531972+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.556503+06', 24, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35045, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.556564+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.566422+06', 9, '{"fields-classified":0,"fields-failed":0}'), +(35046, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.566531+06', TIMESTAMP WITH TIME ZONE '2023-05-09 13:49:00.580379+06', 13, '{"total-tables":3,"tables-classified":0}'), +(35047, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 08:00:00.08+00', TIMESTAMP WITH TIME ZONE '2023-05-09 08:00:00.357+00', 277, NULL), +(35048, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 08:00:00.026+00', TIMESTAMP WITH TIME ZONE '2023-05-09 08:00:00.084+00', 58, NULL), +(35049, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.039846+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.451817+06', 411, NULL), +(35050, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.040761+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.042692+06', 1, '{"timezone-id":null}'), +(35051, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.042906+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.056792+06', 13, '{"updated-tables":0,"total-tables":3}'), +(35052, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.05685+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.444923+06', 388, '{"total-fields":23,"updated-fields":0}'), +(35053, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.444983+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.450402+06', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35054, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.450527+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.451786+06', 1, NULL), +(35055, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.485587+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.512224+06', 26, NULL), +(35056, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.485623+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.499369+06', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35057, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.499457+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.504124+06', 4, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35058, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.504194+06', TIMESTAMP WITH TIME ZONE '2023-05-09 14:49:00.512166+06', 7, '{"total-tables":3,"tables-classified":0}'), +(35059, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 09:00:00.01+00', TIMESTAMP WITH TIME ZONE '2023-05-09 09:00:00.023+00', 13, NULL), +(35060, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 09:00:00.018+00', TIMESTAMP WITH TIME ZONE '2023-05-09 09:00:00.174+00', 156, NULL), +(35061, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.036093+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.441571+06', 405, NULL), +(35062, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.037042+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.039369+06', 2, '{"timezone-id":null}'), +(35063, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.039638+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.054605+06', 14, '{"updated-tables":0,"total-tables":3}'), +(35064, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.054668+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.432757+06', 378, '{"total-fields":24,"updated-fields":6}'), +(35065, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.43283+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.439384+06', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35066, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.439451+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.441515+06', 2, NULL), +(35067, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.481375+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.521768+06', 40, NULL), +(35068, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.481414+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.500376+06', 18, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35069, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.500461+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.509968+06', 9, '{"fields-classified":0,"fields-failed":0}'), +(35070, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.510069+06', TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:00.521713+06', 11, '{"total-tables":3,"tables-classified":0}'), +(35071, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 11:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-09 11:00:00.061+00', 54, NULL), +(35072, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 11:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-05-09 11:00:00.061+00', 52, NULL), +(35073, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.019096+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.299253+06', 280, NULL), +(35074, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.019125+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.019863+06', 0, '{"timezone-id":null}'), +(35075, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.019926+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.024643+06', 4, '{"updated-tables":0,"total-tables":3}'), +(35076, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.024688+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.298085+06', 273, '{"total-fields":24,"updated-fields":0}'), +(35077, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.298121+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.298986+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35078, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.299027+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.299242+06', 0, NULL), +(35079, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.308479+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.323406+06', 14, NULL), +(35080, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.308496+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.317569+06', 9, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35081, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.317627+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.320094+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(35082, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.320151+06', TIMESTAMP WITH TIME ZONE '2023-05-09 17:49:00.323366+06', 3, '{"total-tables":3,"tables-classified":0}'), +(35083, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 12:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-05-09 12:00:00.005+00', 2, NULL), +(35084, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 12:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-09 12:00:00.049+00', 42, NULL), +(35085, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.010991+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.202749+06', 191, NULL), +(35086, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.011006+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.011524+06', 0, '{"timezone-id":null}'), +(35087, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.011577+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.016746+06', 5, '{"updated-tables":0,"total-tables":3}'), +(35088, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.016789+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.201558+06', 184, '{"total-fields":24,"updated-fields":0}'), +(35089, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.201595+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.202464+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35090, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.202506+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.202739+06', 0, NULL), +(35091, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.210131+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.221842+06', 11, NULL), +(35092, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.210146+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.217932+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35093, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.217974+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.219607+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35094, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.219646+06', TIMESTAMP WITH TIME ZONE '2023-05-09 18:49:00.221814+06', 2, '{"total-tables":3,"tables-classified":0}'), +(35095, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 13:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-05-09 13:00:00.003+00', 1, NULL), +(35096, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 13:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-09 13:00:00.044+00', 36, NULL), +(35097, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.01464+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.176874+06', 162, NULL), +(35098, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.014658+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.015171+06', 0, '{"timezone-id":null}'), +(35099, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.015227+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.019473+06', 4, '{"updated-tables":0,"total-tables":3}'), +(35100, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.01951+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.17592+06', 156, '{"total-fields":24,"updated-fields":0}'), +(35101, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.175949+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.176632+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35102, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.176657+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.176864+06', 0, NULL), +(35103, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.183402+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.191236+06', 7, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35104, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.183422+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.1879+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35105, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.187945+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.189489+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35106, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.189522+06', TIMESTAMP WITH TIME ZONE '2023-05-09 19:49:00.191209+06', 1, '{"total-tables":3,"tables-classified":0}'), +(35107, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.006+00', 1, NULL), +(35108, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.059+00', 51, NULL), +(35109, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.014651+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.179382+06', 164, NULL), +(35110, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.014664+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.015232+06', 0, '{"timezone-id":null}'), +(35111, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.015299+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.019308+06', 4, '{"updated-tables":0,"total-tables":3}'), +(35112, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.019351+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.178372+06', 159, '{"total-fields":24,"updated-fields":0}'), +(35113, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.178417+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.179132+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35114, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.179171+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.179347+06', 0, NULL), +(35115, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.186386+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.194543+06', 8, NULL), +(35116, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.186407+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.191533+06', 5, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35117, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.191573+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.192898+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35118, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.192925+06', TIMESTAMP WITH TIME ZONE '2023-05-09 20:49:00.194524+06', 1, '{"total-tables":3,"tables-classified":0}'), +(35119, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 15:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-09 15:00:00.006+00', 2, NULL), +(35120, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 15:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-09 15:00:00.044+00', 36, NULL), +(35121, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.015423+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.182424+06', 167, NULL), +(35122, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.015442+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.015986+06', 0, '{"timezone-id":null}'), +(35123, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.016031+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.020147+06', 4, '{"updated-tables":0,"total-tables":3}'), +(35124, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.020191+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.181428+06', 161, '{"total-fields":24,"updated-fields":0}'), +(35125, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.181461+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.182197+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35126, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.182221+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.182413+06', 0, NULL), +(35127, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.190177+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.199344+06', 9, NULL), +(35128, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.190195+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.19542+06', 5, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35129, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.195461+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.19704+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35130, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.19708+06', TIMESTAMP WITH TIME ZONE '2023-05-09 21:49:00.199317+06', 2, '{"total-tables":3,"tables-classified":0}'), +(35131, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 16:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-09 16:00:00.006+00', 2, NULL), +(35132, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-09 16:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-09 16:00:00.054+00', 47, NULL), +(35133, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.018179+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.187642+06', 169, NULL), +(35134, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.018201+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.018732+06', 0, '{"timezone-id":null}'), +(35135, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.01878+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.023337+06', 4, '{"updated-tables":0,"total-tables":3}'), +(35136, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.023386+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.186764+06', 163, '{"total-fields":24,"updated-fields":0}'), +(35137, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.186792+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.187428+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35138, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.187448+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.187633+06', 0, NULL), +(35139, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.193991+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.201277+06', 7, NULL), +(35140, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.194007+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.198381+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35141, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.198422+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.199634+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35142, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.199663+06', TIMESTAMP WITH TIME ZONE '2023-05-09 22:49:00.201254+06', 1, '{"total-tables":3,"tables-classified":0}'), +(35143, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 04:36:37.416+00', TIMESTAMP WITH TIME ZONE '2023-05-10 04:36:37.418+00', 2, NULL), +(35144, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 04:36:37.42+00', TIMESTAMP WITH TIME ZONE '2023-05-10 04:36:37.465+00', 45, NULL), +(35145, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.011313+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.242517+06', 231, NULL), +(35146, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.011333+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.013127+06', 1, '{"timezone-id":null}'), +(35147, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.0132+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.02382+06', 10, '{"updated-tables":0,"total-tables":3}'), +(35148, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.023888+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.241611+06', 217, '{"total-fields":24,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35149, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.241642+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.242317+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35150, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.242339+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.242506+06', 0, NULL), +(35151, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.249251+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.25845+06', 9, NULL), +(35152, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.249269+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.255055+06', 5, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35153, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.255108+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.257009+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35154, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.257037+06', TIMESTAMP WITH TIME ZONE '2023-05-10 10:49:00.258431+06', 1, '{"total-tables":3,"tables-classified":0}'), +(35155, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 05:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-05-10 05:00:00.005+00', 2, NULL), +(35156, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 05:00:00.008+00', TIMESTAMP WITH TIME ZONE '2023-05-10 05:00:00.051+00', 43, NULL), +(35157, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.019033+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.192513+06', 173, NULL), +(35158, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.019045+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.019986+06', 0, '{"timezone-id":null}'), +(35159, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.020045+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.022722+06', 2, '{"updated-tables":0,"total-tables":3}'), +(35160, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.022751+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.190668+06', 167, '{"total-fields":24,"updated-fields":0}'), +(35161, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.19071+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.192132+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35162, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.192166+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.192496+06', 0, NULL), +(35163, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.201906+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.211905+06', 9, NULL), +(35164, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.201922+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.207861+06', 5, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35165, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.207906+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.209676+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35166, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.209713+06', TIMESTAMP WITH TIME ZONE '2023-05-10 11:49:00.211877+06', 2, '{"total-tables":3,"tables-classified":0}'), +(35167, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 06:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-05-10 06:00:00.007+00', 1, NULL), +(35168, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 06:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-05-10 06:00:00.058+00', 49, NULL), +(35169, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.050905+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.511758+06', 460, NULL), +(35170, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.052682+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.058472+06', 5, '{"timezone-id":null}'), +(35171, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.058952+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.084459+06', 25, '{"updated-tables":0,"total-tables":3}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35172, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.084553+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.50365+06', 419, '{"total-fields":24,"updated-fields":0}'), +(35173, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.503716+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.509273+06', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35174, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.509337+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.511689+06', 2, NULL), +(35175, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.553133+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.598702+06', 45, NULL), +(35176, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.553174+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.575588+06', 22, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35177, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.575687+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.585005+06', 9, '{"fields-classified":0,"fields-failed":0}'), +(35178, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.585117+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:00.59863+06', 13, '{"total-tables":3,"tables-classified":0}'), +(35179, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:07.835554+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.18677+06', 351, NULL), +(35180, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:07.835588+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:07.836656+06', 1, '{"timezone-id":null}'), +(35181, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:07.836732+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:07.84387+06', 7, '{"updated-tables":0,"total-tables":3}'), +(35182, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:07.843956+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.185122+06', 341, '{"total-fields":24,"updated-fields":0}'), +(35183, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.185173+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.186296+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35184, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.186341+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.186748+06', 0, NULL), +(35185, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.201854+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.217136+06', 15, NULL), +(35186, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.201879+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.209758+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35187, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.209836+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.213251+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(35188, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.213313+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:08.217094+06', 3, '{"total-tables":3,"tables-classified":0}'), +(35189, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.350618+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.668381+06', 317, NULL), +(35190, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.350647+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.393207+06', 42, '{"deleted":3}'), +(35191, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.393387+06', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:09.668327+06', 274, '{"errors":0,"created":0,"updated":10,"deleted":0}'), +(35192, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 07:00:00.018+00', TIMESTAMP WITH TIME ZONE '2023-05-10 07:00:00.115+00', 97, NULL), +(35193, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 07:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-05-10 07:00:00.115+00', 102, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35194, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:23.969279+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.221015+06', 251, NULL), +(35195, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:23.9693+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:23.969799+06', 0, '{"timezone-id":null}'), +(35196, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:23.969849+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.00774+06', 37, '{"updated-tables":1,"total-tables":3}'), +(35197, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.007872+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.219691+06', 211, '{"total-fields":32,"updated-fields":9}'), +(35198, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.219719+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.220666+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35199, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.220724+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.220997+06', 0, NULL), +(35200, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.229259+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.237993+06', 8, NULL), +(35201, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.229282+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.234673+06', 5, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35202, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.234711+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.236053+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35203, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.236085+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.237954+06', 1, '{"total-tables":4,"tables-classified":0}'), +(35204, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.804013+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:25.083965+06', 279, NULL), +(35205, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.804071+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.832672+06', 28, '{"deleted":0}'), +(35206, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:24.83271+06', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:25.083944+06', 251, '{"errors":0,"created":0,"updated":19,"deleted":0}'), +(35207, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.03185+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.527311+06', 495, NULL), +(35208, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.032919+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.035465+06', 2, '{"timezone-id":null}'), +(35209, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.03574+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.05239+06', 16, '{"updated-tables":0,"total-tables":4}'), +(35210, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.052484+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.519507+06', 467, '{"total-fields":32,"updated-fields":0}'), +(35211, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.519589+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.524815+06', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35212, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.524902+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.52727+06', 2, NULL), +(35213, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.561221+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.594495+06', 33, NULL), +(35214, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.561246+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.577222+06', 15, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35215, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.577306+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.584251+06', 6, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35216, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.584314+06', TIMESTAMP WITH TIME ZONE '2023-05-10 14:49:00.59444+06', 10, '{"total-tables":4,"tables-classified":0}'), +(35217, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 09:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-10 09:00:00.199+00', 192, NULL), +(35218, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-10 09:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-05-10 09:00:00.199+00', 185, NULL), +(35219, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:44.611361+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.200617+06', 589, NULL), +(35220, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:44.612916+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:44.720053+06', 107, '{"deleted":0}'), +(35221, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:44.720482+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.200573+06', 480, '{"errors":0,"created":0,"updated":22,"deleted":0}'), +(35222, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.502298+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.059547+06', 557, NULL), +(35223, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.502352+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.506065+06', 3, '{"timezone-id":null}'), +(35224, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.50616+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.576697+06', 70, '{"updated-tables":1,"total-tables":4}'), +(35225, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:45.576749+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.052129+06', 475, '{"total-fields":25,"updated-fields":12}'), +(35226, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.052206+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.058064+06', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35227, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.058117+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.059511+06', 1, NULL), +(35228, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.083336+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.163844+06', 80, NULL), +(35229, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.083373+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.136914+06', 53, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":1,"fingerprints-attempted":1}'), +(35230, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.136982+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.157507+06', 20, '{"fields-classified":1,"fields-failed":0}'), +(35231, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.157572+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:46.163805+06', 6, '{"total-tables":3,"tables-classified":0}'), +(35232, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.258361+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.495771+06', 237, NULL), +(35233, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.258396+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.287429+06', 29, '{"deleted":0}'), +(35234, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.287515+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.495735+06', 208, '{"errors":0,"created":1,"updated":2,"deleted":0}'), +(35235, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.739727+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.204014+06', 464, NULL), +(35236, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.7398+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.741456+06', 1, '{"timezone-id":null}'), +(35237, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.741572+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.753143+06', 11, '{"updated-tables":0,"total-tables":3}'), +(35238, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:42.753231+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.200029+06', 446, '{"total-fields":25,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35239, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.200116+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.203142+06', 3, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35240, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.203238+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.203978+06', 0, NULL), +(35241, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.223869+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.24384+06', 19, NULL), +(35242, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.223894+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.23474+06', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35243, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.234829+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.23862+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(35244, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.238689+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:43.243783+06', 5, '{"total-tables":3,"tables-classified":0}'), +(35245, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.040724+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.634758+06', 594, NULL), +(35246, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.041702+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.045938+06', 4, '{"timezone-id":null}'), +(35247, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.046424+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.063752+06', 17, '{"updated-tables":0,"total-tables":3}'), +(35248, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.063817+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.625152+06', 561, '{"total-fields":25,"updated-fields":0}'), +(35249, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.625256+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.63207+06', 6, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35250, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.632148+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.634698+06', 2, NULL), +(35251, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.681599+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.721217+06', 39, NULL), +(35252, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.681633+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.70203+06', 20, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35253, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.702133+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.710453+06', 8, '{"fields-classified":0,"fields-failed":0}'), +(35254, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.710522+06', TIMESTAMP WITH TIME ZONE '2023-05-10 16:49:00.721124+06', 10, '{"total-tables":3,"tables-classified":0}'), +(35255, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.092356+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.581475+06', 489, NULL), +(35256, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.095102+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.10069+06', 5, '{"timezone-id":null}'), +(35257, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.10111+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.160067+06', 58, '{"updated-tables":1,"total-tables":3}'), +(35258, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.160127+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.572899+06', 412, '{"total-fields":34,"updated-fields":6}'), +(35259, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.572943+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.580019+06', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35260, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.58007+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.581445+06', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35261, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.614132+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.686462+06', 72, NULL), +(35262, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.614155+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.652733+06', 38, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":1,"fingerprints-attempted":1}'), +(35263, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.652823+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.677533+06', 24, '{"fields-classified":1,"fields-failed":0}'), +(35264, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.677605+06', TIMESTAMP WITH TIME ZONE '2023-05-11 14:49:00.686419+06', 8, '{"total-tables":4,"tables-classified":0}'), +(35265, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 09:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-05-11 09:00:00.093+00', 80, NULL), +(35266, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 09:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-05-11 09:00:00.093+00', 79, NULL), +(35267, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.016465+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.297763+06', 281, NULL), +(35268, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.01651+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.01767+06', 1, '{"timezone-id":null}'), +(35269, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.017754+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.02551+06', 7, '{"updated-tables":0,"total-tables":4}'), +(35270, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.025558+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.295646+06', 270, '{"total-fields":34,"updated-fields":0}'), +(35271, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.295689+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.297258+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35272, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.297301+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.297743+06', 0, NULL), +(35273, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.311846+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.326673+06', 14, NULL), +(35274, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.311874+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.31995+06', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35275, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.319996+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.322783+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(35276, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.322833+06', TIMESTAMP WITH TIME ZONE '2023-05-11 15:49:00.326642+06', 3, '{"total-tables":4,"tables-classified":0}'), +(35277, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 10:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-05-11 10:00:00.004+00', 2, NULL), +(35278, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 10:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-05-11 10:00:00.046+00', 41, NULL), +(35279, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.021834+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.320479+06', 298, NULL), +(35280, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.021862+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.022908+06', 1, '{"timezone-id":null}'), +(35281, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.022964+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.028195+06', 5, '{"updated-tables":0,"total-tables":4}'), +(35282, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.02824+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.318436+06', 290, '{"total-fields":34,"updated-fields":0}'), +(35283, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.318484+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.319959+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35284, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.320002+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.320456+06', 0, NULL), +(35285, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.333856+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.350238+06', 16, NULL), +(35286, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.333873+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.342537+06', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35287, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.342599+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.345797+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(35288, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.345891+06', TIMESTAMP WITH TIME ZONE '2023-05-11 16:49:00.350197+06', 4, '{"total-tables":4,"tables-classified":0}'), +(35289, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-05-11 11:00:00.007+00', 4, NULL), +(35290, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 11:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-05-11 11:00:00.057+00', 46, NULL), +(35291, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.024595+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.229969+06', 205, NULL), +(35292, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.02463+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.025413+06', 0, '{"timezone-id":null}'), +(35293, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.025464+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.030246+06', 4, '{"updated-tables":0,"total-tables":4}'), +(35294, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.030298+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.228282+06', 197, '{"total-fields":34,"updated-fields":0}'), +(35295, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.22832+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.229609+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35296, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.229656+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.229958+06', 0, NULL), +(35297, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.240525+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.253254+06', 12, NULL), +(35298, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.240539+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.248019+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35299, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.248058+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.250254+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(35300, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.2503+06', TIMESTAMP WITH TIME ZONE '2023-05-11 17:49:00.253222+06', 2, '{"total-tables":4,"tables-classified":0}'), +(35301, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 12:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-11 12:00:00.007+00', 3, NULL), +(35302, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 12:00:00.009+00', TIMESTAMP WITH TIME ZONE '2023-05-11 12:00:00.058+00', 49, NULL), +(35303, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.012009+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.263327+06', 251, NULL), +(35304, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.012035+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.012977+06', 0, '{"timezone-id":null}'), +(35305, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.013037+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.019118+06', 6, '{"updated-tables":0,"total-tables":4}'), +(35306, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.019176+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.261815+06', 242, '{"total-fields":34,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35307, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.261858+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.262924+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35308, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.262958+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.263312+06', 0, NULL), +(35309, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.273777+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.2873+06', 13, NULL), +(35310, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.273795+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.281466+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35311, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.281516+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.283973+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(35312, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.28401+06', TIMESTAMP WITH TIME ZONE '2023-05-11 18:49:00.28727+06', 3, '{"total-tables":4,"tables-classified":0}'), +(35313, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 13:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-05-11 13:00:00.006+00', 2, NULL), +(35314, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-11 13:00:00.007+00', TIMESTAMP WITH TIME ZONE '2023-05-11 13:00:00.049+00', 42, NULL), +(35315, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.025813+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.208105+06', 182, NULL), +(35316, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.025835+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.026696+06', 0, '{"timezone-id":null}'), +(35317, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.026747+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.031374+06', 4, '{"updated-tables":0,"total-tables":4}'), +(35318, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.031422+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.206464+06', 175, '{"total-fields":34,"updated-fields":0}'), +(35319, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.206506+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.207724+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35320, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.207768+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.208078+06', 0, NULL), +(35321, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.217531+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.231795+06', 14, NULL), +(35322, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.217548+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.22626+06', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35323, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.226312+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.228537+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(35324, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.228574+06', TIMESTAMP WITH TIME ZONE '2023-05-11 19:49:00.231756+06', 3, '{"total-tables":4,"tables-classified":0}'), +(35325, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.507562+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.008383+06', 500, NULL), +(35326, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.508636+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.553435+06', 44, '{"deleted":0}'), +(35327, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:31.553666+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.008313+06', 454, '{"errors":0,"created":1,"updated":22,"deleted":0}'), +(35328, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.145142+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.587281+06', 442, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35329, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.14517+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.147497+06', 2, '{"timezone-id":null}'), +(35330, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.147557+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.15817+06', 10, '{"updated-tables":0,"total-tables":4}'), +(35331, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.158235+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.581566+06', 423, '{"total-fields":32,"updated-fields":10}'), +(35332, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.581633+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.585948+06', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35333, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.586006+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.587245+06', 1, NULL), +(35334, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.607796+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.639755+06', 31, NULL), +(35335, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.607818+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.621489+06', 13, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35336, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.62156+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.627517+06', 5, '{"fields-classified":0,"fields-failed":0}'), +(35337, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.627597+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:32.639707+06', 12, '{"total-tables":4,"tables-classified":0}'), +(35338, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.0246+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.416655+06', 392, NULL), +(35339, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.024623+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.025378+06', 0, '{"timezone-id":null}'), +(35340, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.025528+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.038124+06', 12, '{"updated-tables":0,"total-tables":4}'), +(35341, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.038197+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.414131+06', 375, '{"total-fields":32,"updated-fields":0}'), +(35342, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.41419+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.416243+06', 2, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35343, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.416297+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.416635+06', 0, NULL), +(35344, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.426584+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.437702+06', 11, NULL), +(35345, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.426603+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.433743+06', 7, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35346, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.433791+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.435556+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35347, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.43559+06', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:00.437676+06', 2, '{"total-tables":4,"tables-classified":0}'), +(35348, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-22 07:00:00.011+00', TIMESTAMP WITH TIME ZONE '2023-05-22 07:00:00.063+00', 52, NULL), +(35349, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-22 07:00:00.013+00', TIMESTAMP WITH TIME ZONE '2023-05-22 07:00:00.063+00', 50, NULL), +(35350, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.041622+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.552118+06', 510, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35351, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.042647+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.045955+06', 3, '{"timezone-id":null}'), +(35352, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.046313+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.061942+06', 15, '{"updated-tables":0,"total-tables":4}'), +(35353, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.061988+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.541199+06', 479, '{"total-fields":25,"updated-fields":26}'), +(35354, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.541326+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.54927+06', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35355, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.549352+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.552047+06', 2, NULL), +(35356, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.604878+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.647175+06', 42, NULL), +(35357, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.604904+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.625933+06', 21, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35358, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.625994+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.63434+06', 8, '{"fields-classified":0,"fields-failed":0}'), +(35359, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.634411+06', TIMESTAMP WITH TIME ZONE '2023-05-31 18:49:00.647123+06', 12, '{"total-tables":4,"tables-classified":0}'), +(35360, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-05-31 13:00:00.017+00', TIMESTAMP WITH TIME ZONE '2023-05-31 13:00:00.117+00', 100, NULL), +(35361, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-05-31 13:00:00.014+00', TIMESTAMP WITH TIME ZONE '2023-05-31 13:00:00.117+00', 103, NULL), +(35362, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.019811+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.430498+06', 410, NULL), +(35363, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.020799+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.022848+06', 2, '{"timezone-id":null}'), +(35364, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.023021+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.059602+06', 36, '{"updated-tables":2,"total-tables":4}'), +(35365, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.059649+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.424244+06', 364, '{"total-fields":20,"updated-fields":10}'), +(35366, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.424286+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.428734+06', 4, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35367, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.428782+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.430441+06', 1, NULL), +(35368, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.458366+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.480277+06', 21, NULL), +(35369, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.458382+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.468473+06', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35370, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.468524+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.472714+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(35371, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.472778+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:00.480237+06', 7, '{"total-tables":2,"tables-classified":0}'), +(35372, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.043872+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.21896+06', 175, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35373, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.043889+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.061629+06', 17, '{"deleted":0}'), +(35374, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.061666+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.218913+06', 157, '{"errors":0,"created":0,"updated":6,"deleted":0}'), +(35375, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.504326+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.725793+06', 221, NULL), +(35376, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.504346+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.505207+06', 0, '{"timezone-id":null}'), +(35377, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.505276+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.510947+06', 5, '{"updated-tables":0,"total-tables":2}'), +(35378, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.511002+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.724759+06', 213, '{"total-fields":20,"updated-fields":0}'), +(35379, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.724789+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.725544+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35380, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.725565+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.725785+06', 0, NULL), +(35381, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.731722+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.739484+06', 7, NULL), +(35382, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.731738+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.735446+06', 3, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35383, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.735495+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.737186+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35384, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.737231+06', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:00.73945+06', 2, '{"total-tables":2,"tables-classified":0}'), +(35385, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 07:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-07-12 07:00:00.094+00', 91, NULL), +(35386, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 07:00:00.005+00', TIMESTAMP WITH TIME ZONE '2023-07-12 07:00:00.094+00', 89, NULL), +(35387, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.682821+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.87039+06', 187, NULL), +(35388, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.682833+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.683129+06', 0, '{"timezone-id":null}'), +(35389, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.683161+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.687329+06', 4, '{"updated-tables":0,"total-tables":2}'), +(35390, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.687368+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.869537+06', 182, '{"total-fields":20,"updated-fields":0}'), +(35391, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.869566+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.870214+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35392, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.870234+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.870381+06', 0, NULL), +(35393, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.877224+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.884444+06', 7, NULL), +(35394, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.877242+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.8807+06', 3, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35395, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.880752+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.882517+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35396, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.882567+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:14.884417+06', 1, '{"total-tables":2,"tables-classified":0}'), +(35397, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:15.071088+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:15.198713+06', 127, NULL), +(35398, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:15.071099+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:15.084644+06', 13, '{"deleted":0}'), +(35399, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:15.084684+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:15.198659+06', 113, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(35400, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.206085+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.887731+06', 681, NULL), +(35401, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.206837+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.209536+06', 2, '{"timezone-id":null}'), +(35402, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.209852+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.230967+06', 21, '{"updated-tables":0,"total-tables":2}'), +(35403, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.231066+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.876913+06', 645, '{"total-fields":20,"updated-fields":0}'), +(35404, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.877049+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.884465+06', 7, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35405, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.884601+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.887643+06', 3, NULL), +(35406, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.959305+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:01.011333+06', 52, NULL), +(35407, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.95936+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.987014+06', 27, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35408, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.987135+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.996222+06', 9, '{"fields-classified":0,"fields-failed":0}'), +(35409, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:00.996328+06', TIMESTAMP WITH TIME ZONE '2023-07-12 13:49:01.011162+06', 14, '{"total-tables":2,"tables-classified":0}'), +(35410, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 08:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-07-12 08:00:00.068+00', 64, NULL), +(35411, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 08:00:00.006+00', TIMESTAMP WITH TIME ZONE '2023-07-12 08:00:00.068+00', 62, NULL), +(35412, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.013224+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.515084+06', 501, NULL), +(35413, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.013261+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.014436+06', 1, '{"timezone-id":null}'), +(35414, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.01452+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.022209+06', 7, '{"updated-tables":0,"total-tables":2}'), +(35415, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.02227+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.512579+06', 490, '{"total-fields":20,"updated-fields":0}'), +(35416, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.512644+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.514407+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35417, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.514464+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.515063+06', 0, NULL), +(35418, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.531424+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.553161+06', 21, NULL), +(35419, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.531451+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.541813+06', 10, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35420, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.541905+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.546273+06', 4, '{"fields-classified":0,"fields-failed":0}'), +(35421, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.546356+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:49:00.553105+06', 6, '{"total-tables":2,"tables-classified":0}'), +(35422, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.658933+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.981469+06', 322, NULL), +(35423, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.65896+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.659931+06', 0, '{"timezone-id":null}'), +(35424, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.660027+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.66949+06', 9, '{"updated-tables":0,"total-tables":2}'), +(35425, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.66958+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.978626+06', 309, '{"total-fields":20,"updated-fields":0}'), +(35426, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.97871+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.98068+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35427, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.980744+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.981436+06', 0, NULL), +(35428, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.998884+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.014989+06', 16, NULL), +(35429, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:22.998908+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.00771+06', 8, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35430, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.007787+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.01098+06', 3, '{"fields-classified":0,"fields-failed":0}'), +(35431, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.011062+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.014946+06', 3, '{"total-tables":2,"tables-classified":0}'), +(35432, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.048958+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.329599+06', 280, NULL), +(35433, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.048991+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.088515+06', 39, '{"deleted":0}'), +(35434, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.088594+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:23.329556+06', 240, '{"errors":0,"created":0,"updated":5,"deleted":0}'), +(35435, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.269032+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.448026+06', 178, NULL), +(35436, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.269062+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.270227+06', 1, '{"timezone-id":null}'), +(35437, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.270286+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.275135+06', 4, '{"updated-tables":0,"total-tables":2}'), +(35438, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.27518+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.446565+06', 171, '{"total-fields":20,"updated-fields":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35439, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.446599+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.44767+06', 1, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35440, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.4477+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.448012+06', 0, NULL), +(35441, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.458362+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.466057+06', 7, NULL), +(35442, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.458378+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.462381+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35443, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.462417+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.463752+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35444, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.463784+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.466028+06', 2, '{"total-tables":2,"tables-classified":0}'), +(35445, 'field values scanning', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.728511+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.93062+06', 202, NULL), +(35446, 'delete-expired-advanced-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.728533+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.752571+06', 24, '{"deleted":0}'), +(35447, 'update-field-values', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.752643+06', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:28.930586+06', 177, '{"errors":0,"created":0,"updated":0,"deleted":0}'), +(35448, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 09:00:00.001+00', TIMESTAMP WITH TIME ZONE '2023-07-12 09:00:00.002+00', 1, NULL), +(35449, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 09:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-07-12 09:00:00.054+00', 50, NULL), +(35450, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.009791+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.188909+06', 179, NULL), +(35451, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.00981+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.010472+06', 0, '{"timezone-id":null}'), +(35452, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.010543+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.014147+06', 3, '{"updated-tables":0,"total-tables":2}'), +(35453, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.014179+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.187774+06', 173, '{"total-fields":20,"updated-fields":0}'), +(35454, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.187805+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.188592+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35455, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.188615+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.188897+06', 0, NULL), +(35456, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.19663+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.204619+06', 7, NULL), +(35457, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.196653+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.200942+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35458, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.200993+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.202383+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35459, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.202422+06', TIMESTAMP WITH TIME ZONE '2023-07-12 15:49:00.204583+06', 2, '{"total-tables":2,"tables-classified":0}'), +(35460, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 10:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-07-12 10:00:00.003+00', 1, NULL); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35461, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 10:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-07-12 10:00:00.064+00', 60, NULL), +(35462, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.007999+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.256109+06', 248, NULL), +(35463, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.008012+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.008409+06', 0, '{"timezone-id":null}'), +(35464, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.008446+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.011058+06', 2, '{"updated-tables":0,"total-tables":2}'), +(35465, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.011089+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.2549+06', 243, '{"total-fields":20,"updated-fields":0}'), +(35466, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.254948+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.255801+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35467, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.255824+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.256095+06', 0, NULL), +(35468, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.266651+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.273409+06', 6, NULL), +(35469, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.266671+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.270628+06', 3, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35470, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.270668+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.271881+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35471, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.271913+06', TIMESTAMP WITH TIME ZONE '2023-07-12 16:49:00.273391+06', 1, '{"total-tables":2,"tables-classified":0}'), +(35472, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 11:00:00.001+00', TIMESTAMP WITH TIME ZONE '2023-07-12 11:00:00.002+00', 1, NULL), +(35473, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 11:00:00.003+00', TIMESTAMP WITH TIME ZONE '2023-07-12 11:00:00.057+00', 54, NULL), +(35474, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.009996+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.205602+06', 195, NULL), +(35475, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.01001+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.010376+06', 0, '{"timezone-id":null}'), +(35476, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.010406+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.013008+06', 2, '{"updated-tables":0,"total-tables":2}'), +(35477, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.013037+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.204578+06', 191, '{"total-fields":20,"updated-fields":0}'), +(35478, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.204613+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.205384+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35479, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.205405+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.205588+06', 0, NULL), +(35480, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.218715+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.230665+06', 11, NULL), +(35481, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.218748+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.225396+06', 6, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35482, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.225463+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.22764+06', 2, '{"fields-classified":0,"fields-failed":0}'), +(35483, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.22769+06', TIMESTAMP WITH TIME ZONE '2023-07-12 17:49:00.230627+06', 2, '{"total-tables":2,"tables-classified":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35484, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 12:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-07-12 12:00:00.004+00', 2, NULL), +(35485, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 12:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-07-12 12:00:00.055+00', 51, NULL), +(35486, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.020061+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.30525+06', 285, NULL), +(35487, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.020077+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.02063+06', 0, '{"timezone-id":null}'), +(35488, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.020674+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.023461+06', 2, '{"updated-tables":0,"total-tables":2}'), +(35489, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.023489+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.304211+06', 280, '{"total-fields":20,"updated-fields":0}'), +(35490, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.30425+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.304988+06', 0, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35491, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.305015+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.305237+06', 0, NULL), +(35492, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.314419+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.322216+06', 7, NULL), +(35493, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.314435+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.319012+06', 4, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35494, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.319062+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.320378+06', 1, '{"fields-classified":0,"fields-failed":0}'), +(35495, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.320421+06', TIMESTAMP WITH TIME ZONE '2023-07-12 18:49:00.322184+06', 1, '{"total-tables":2,"tables-classified":0}'), +(35496, 'send-pulses', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 13:00:00.002+00', TIMESTAMP WITH TIME ZONE '2023-07-12 13:00:00.003+00', 1, NULL), +(35497, 'task-history-cleanup', NULL, TIMESTAMP WITH TIME ZONE '2023-07-12 13:00:00.004+00', TIMESTAMP WITH TIME ZONE '2023-07-12 13:00:00.049+00', 45, NULL), +(35498, 'sync', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.204918+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.803773+06', 598, NULL), +(35499, 'sync-timezone', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.206305+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.209619+06', 3, '{"timezone-id":null}'), +(35500, 'sync-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.210199+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.237453+06', 27, '{"updated-tables":0,"total-tables":2}'), +(35501, 'sync-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.237601+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.796219+06', 558, '{"total-fields":20,"updated-fields":0}'), +(35502, 'sync-fks', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.796297+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.801516+06', 5, '{"total-fks":0,"updated-fks":0,"total-failed":0}'), +(35503, 'sync-metabase-metadata', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.801591+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.803701+06', 2, NULL), +(35504, 'analyze', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.860105+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.894595+06', 34, NULL), +(35505, 'fingerprint-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.860162+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.877876+06', 17, '{"no-data-fingerprints":0,"failed-fingerprints":0,"updated-fingerprints":0,"fingerprints-attempted":0}'), +(35506, 'classify-fields', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.87796+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.883468+06', 5, '{"fields-classified":0,"fields-failed":0}'); +INSERT INTO PUBLIC.TASK_HISTORY(ID, TASK, DB_ID, STARTED_AT, ENDED_AT, DURATION, TASK_DETAILS) VALUES +(35507, 'classify-tables', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.883548+06', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:10.894509+06', 10, '{"total-tables":2,"tables-classified":0}'); +CREATE INDEX PUBLIC.IDX_TASK_HISTORY_END_TIME ON PUBLIC.TASK_HISTORY(ENDED_AT); +CREATE INDEX PUBLIC.IDX_TASK_HISTORY_DB_ID ON PUBLIC.TASK_HISTORY(DB_ID); +CREATE CACHED TABLE PUBLIC.DATA_MIGRATIONS( + ID VARCHAR(254) NOT NULL, + TIMESTAMP TIMESTAMP NOT NULL +); +ALTER TABLE PUBLIC.DATA_MIGRATIONS ADD CONSTRAINT PUBLIC.PK_DATA_MIGRATIONS PRIMARY KEY(ID); +-- 2 +/- SELECT COUNT(*) FROM PUBLIC.DATA_MIGRATIONS; +INSERT INTO PUBLIC.DATA_MIGRATIONS(ID, TIMESTAMP) VALUES +('migrate-click-through', TIMESTAMP '2022-12-13 12:22:10.473'), +('migrate-remove-admin-from-group-mapping-if-needed', TIMESTAMP '2022-12-13 12:22:10.48'); +CREATE INDEX PUBLIC.IDX_DATA_MIGRATIONS_ID ON PUBLIC.DATA_MIGRATIONS(ID); +CREATE CACHED TABLE PUBLIC.COLLECTION_PERMISSION_GRAPH_REVISION COMMENT 'Used to keep track of changes made to collections.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_AC3E8137_FFD8_404A_854F_521F53AA6922) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_AC3E8137_FFD8_404A_854F_521F53AA6922, + BEFORE CLOB NOT NULL COMMENT 'Serialized JSON of the collections graph before the changes.', + AFTER CLOB NOT NULL COMMENT 'Serialized JSON of the collections graph after the changes.', + USER_ID INT NOT NULL COMMENT 'The ID of the admin who made this set of changes.', + CREATED_AT TIMESTAMP NOT NULL COMMENT 'The timestamp of when these changes were made.', + REMARK CLOB COMMENT 'Optional remarks explaining why these changes were made.' +); +ALTER TABLE PUBLIC.COLLECTION_PERMISSION_GRAPH_REVISION ADD CONSTRAINT PUBLIC.PK_COLLECTION_REVISION PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.COLLECTION_PERMISSION_GRAPH_REVISION; +CREATE CACHED TABLE PUBLIC.REPORT_DASHBOARDCARD( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_17DCFE6D_690E_41E4_A8B3_F49A479585E4) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_17DCFE6D_690E_41E4_A8B3_F49A479585E4, + CREATED_AT TIMESTAMP DEFAULT NOW() NOT NULL, + UPDATED_AT TIMESTAMP DEFAULT NOW() NOT NULL, + SIZE_X INT DEFAULT '2' NOT NULL, + SIZE_Y INT DEFAULT '2' NOT NULL, + ROW INT DEFAULT 0 NOT NULL, + COL INT DEFAULT 0 NOT NULL, + CARD_ID INT, + DASHBOARD_ID INT NOT NULL, + PARAMETER_MAPPINGS CLOB NOT NULL, + VISUALIZATION_SETTINGS CLOB NOT NULL, + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.', + ACTION_ID INT COMMENT 'The related action' +); +ALTER TABLE PUBLIC.REPORT_DASHBOARDCARD ADD CONSTRAINT PUBLIC.PK_REPORT_DASHBOARDCARD PRIMARY KEY(ID); +-- 15 +/- SELECT COUNT(*) FROM PUBLIC.REPORT_DASHBOARDCARD; +INSERT INTO PUBLIC.REPORT_DASHBOARDCARD(ID, CREATED_AT, UPDATED_AT, SIZE_X, SIZE_Y, ROW, COL, CARD_ID, DASHBOARD_ID, PARAMETER_MAPPINGS, VISUALIZATION_SETTINGS, ENTITY_ID, ACTION_ID) VALUES +(1, TIMESTAMP '2022-12-13 14:23:08.182', TIMESTAMP '2022-12-14 12:55:47.72', 9, 5, 0, 0, 1, 1, '[{"parameter_id":"4600174f","card_id":1,"target":["dimension",["template-tag","filterGender"]]},{"parameter_id":"fa21fc60","card_id":1,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"7425de21","card_id":1,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"c6f1160d","card_id":1,"target":["dimension",["template-tag","filterOffice"]]}]', '{}', '1puTN0Z8LTV7OyRXl8Odb', NULL), +(2, TIMESTAMP '2022-12-13 16:06:33.989', TIMESTAMP '2022-12-14 12:55:47.722', 9, 5, 0, 9, 2, 1, '[{"parameter_id":"c6f1160d","card_id":2,"target":["dimension",["template-tag","filterOffice"]]},{"parameter_id":"7425de21","card_id":2,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"4600174f","card_id":2,"target":["dimension",["template-tag","filterGender"]]},{"parameter_id":"fa21fc60","card_id":2,"target":["dimension",["template-tag","filterEvent"]]}]', '{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender"}', 'Sz9_4hPenSlGg6Xrvt4Sj', NULL), +(4, TIMESTAMP '2022-12-13 19:04:22.601', TIMESTAMP '2022-12-14 12:55:47.728', 9, 5, 5, 0, 4, 1, '[{"parameter_id":"c6f1160d","card_id":4,"target":["dimension",["template-tag","filterOffice"]]},{"parameter_id":"7425de21","card_id":4,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"fa21fc60","card_id":4,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"4600174f","card_id":4,"target":["dimension",["template-tag","filterGender"]]}]', '{}', 'Pf3d1m7PR8x6piYzp-LdW', NULL), +(14, TIMESTAMP '2022-12-15 15:27:19.364', TIMESTAMP '2023-05-22 12:49:34.676', 4, 4, 0, 14, 1, 2, '[{"parameter_id":"6ffeab10","card_id":1,"target":["dimension",["template-tag","filterGender"]]},{"parameter_id":"80f32cc","card_id":1,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"6299a85e","card_id":1,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"45724d13","card_id":1,"target":["dimension",["template-tag","filterDate"]]}]', '{"graph.show_goal":false,"graph.show_values":true,"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"graph.x_axis.labels_enabled":false,"table.cell_column":"Gender","graph.y_axis.labels_enabled":false,"graph.metrics":["Count"],"table.pivot_column":"count","graph.dimensions":["Gender"]}', 'lZ2a6Wd0PLPrpnwBuujod', NULL), +(15, TIMESTAMP '2022-12-15 15:27:19.37', TIMESTAMP '2023-05-22 12:49:34.682', 13, 5, 4, 5, 9, 2, '[{"parameter_id":"6ffeab10","card_id":9,"target":["dimension",["template-tag","filterGender"]]},{"parameter_id":"80f32cc","card_id":9,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"6299a85e","card_id":9,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"45724d13","card_id":9,"target":["dimension",["template-tag","filterDate"]]}]', '{"map.type":"region","map.region":"cdc1d5eb-c7f8-8b01-b296-eda34d06b6da","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State","card.title":" Completeness Rates by State (%)"}', 'l00a5uc4GlBu4inljlOIA', NULL), +(17, TIMESTAMP '2022-12-16 10:39:48.485', TIMESTAMP '2023-05-22 12:49:34.685', 5, 5, 4, 0, 13, 2, '[{"parameter_id":"80f32cc","card_id":13,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"6ffeab10","card_id":13,"target":["dimension",["template-tag","filterGender"]]},{"parameter_id":"6299a85e","card_id":13,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"45724d13","card_id":13,"target":["dimension",["template-tag","filterDate"]]}]', '{"table.pivot_column":"_id","table.cell_column":"percentage","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"card.title":"Completeness rate","column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}}', 'Y6mKXZo0_c3N27pdgA9WK', NULL); +INSERT INTO PUBLIC.REPORT_DASHBOARDCARD(ID, CREATED_AT, UPDATED_AT, SIZE_X, SIZE_Y, ROW, COL, CARD_ID, DASHBOARD_ID, PARAMETER_MAPPINGS, VISUALIZATION_SETTINGS, ENTITY_ID, ACTION_ID) VALUES +(18, TIMESTAMP '2022-12-16 10:44:13.216', TIMESTAMP '2023-05-22 12:49:34.69', 12, 4, 9, 0, 14, 2, '[{"parameter_id":"6ffeab10","card_id":14,"target":["dimension",["field",680,null]]},{"parameter_id":"80f32cc","card_id":14,"target":["dimension",["field",671,null]]},{"parameter_id":"6299a85e","card_id":14,"target":["dimension",["field",666,null]]},{"parameter_id":"45724d13","card_id":14,"target":["dimension",["field",677,null]]}]', '{"graph.dimensions":["createdAt"],"graph.y_axis.labels_enabled":false,"graph.x_axis.labels_enabled":false,"graph.x_axis.scale":"ordinal","graph.x_axis.axis_enabled":true,"graph.metrics":["count"]}', 'JtvhtdtxGLVaXhKafxV7k', NULL), +(20, TIMESTAMP '2022-12-16 13:07:17.986', TIMESTAMP '2023-05-22 12:49:34.692', 3, 4, 0, 0, 16, 2, '[{"parameter_id":"6299a85e","card_id":16,"target":["dimension",["field",666,null]]},{"parameter_id":"80f32cc","card_id":16,"target":["dimension",["field",671,null]]},{"parameter_id":"6ffeab10","card_id":16,"target":["dimension",["field",680,null]]},{"parameter_id":"45724d13","card_id":16,"target":["dimension",["field",677,null]]}]', '{"card.title":"Total Registrations"}', 'K6zShEznA_Dza6gzK-sGn', NULL), +(21, TIMESTAMP '2022-12-20 05:50:39.648', TIMESTAMP '2023-08-25 18:24:19.043', 9, 4, 0, 9, 20, 3, '[{"parameter_id":"65d94567","card_id":20,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"6111342e","card_id":20,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"ae9a87b8","card_id":20,"target":["dimension",["template-tag","filterGender"]]},{"parameter_id":"7d44a6ef","card_id":20,"target":["dimension",["template-tag","filterDate"]]},{"parameter_id":"c6c83494","card_id":20,"target":["dimension",["template-tag","filterDistrict"]]}]', '{}', 'B1dCOcggDhiEQWMLrKsZc', NULL), +(29, TIMESTAMP '2022-12-20 09:22:09.874', TIMESTAMP '2023-08-25 18:24:19.052', 9, 4, 0, 0, 27, 3, '[{"parameter_id":"ae9a87b8","card_id":27,"target":["dimension",["field",680,null]]},{"parameter_id":"6111342e","card_id":27,"target":["dimension",["field",671,null]]},{"parameter_id":"65d94567","card_id":27,"target":["dimension",["field",666,null]]},{"parameter_id":"7d44a6ef","card_id":27,"target":["dimension",["field",677,null]]},{"parameter_id":"c6c83494","card_id":27,"target":["dimension",["field",723,null]]}]', '{}', '382lZSayXSlSZxUfTdXFO', NULL), +(33, TIMESTAMP '2022-12-21 07:25:58.75', TIMESTAMP '2023-05-22 12:49:34.694', 5, 4, 0, 9, 31, 2, '[{"parameter_id":"6299a85e","card_id":31,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"80f32cc","card_id":31,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"6ffeab10","card_id":31,"target":["dimension",["template-tag","filterGender"]]},{"parameter_id":"45724d13","card_id":31,"target":["dimension",["template-tag","filterDate"]]}]', '{}', '0voWjhN5tVAqv0GBC-0Hj', NULL), +(34, TIMESTAMP '2023-01-24 12:12:40.331', TIMESTAMP '2023-05-22 12:49:34.699', 6, 4, 0, 3, 30, 2, '[{"parameter_id":"6299a85e","card_id":30,"target":["dimension",["field",666,null]]},{"parameter_id":"45724d13","card_id":30,"target":["dimension",["field",677,null]]},{"parameter_id":"80f32cc","card_id":30,"target":["dimension",["field",671,null]]},{"parameter_id":"6ffeab10","card_id":30,"target":["dimension",["field",680,null]]}]', '{}', 'm52xKE_tx50X9w5947dRJ', NULL), +(36, TIMESTAMP '2023-01-26 08:59:23.192', TIMESTAMP '2023-05-22 12:49:34.701', 6, 4, 9, 12, 28, 2, '[{"parameter_id":"6299a85e","card_id":28,"target":["dimension",["field",693,null]]},{"parameter_id":"45724d13","card_id":28,"target":["dimension",["field",695,null]]},{"parameter_id":"80f32cc","card_id":28,"target":["dimension",["field",690,null]]},{"parameter_id":"6ffeab10","card_id":28,"target":["dimension",["field",687,null]]}]', '{}', 'kMVaQ_Be3ZztuSefMKPI6', NULL), +(37, TIMESTAMP '2023-02-22 17:25:31.375', TIMESTAMP '2023-02-24 15:18:29.823', 9, 8, 0, 0, 12, 4, '[{"parameter_id":"4d1c7aac","card_id":12,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"9882246c","card_id":12,"target":["dimension",["template-tag","filterDate"]]},{"parameter_id":"f7070a19","card_id":12,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"d2d1a17a","card_id":12,"target":["dimension",["template-tag","filterGender"]]}]', '{}', 'dqZA-pKGY_S55ESkbj96u', NULL); +INSERT INTO PUBLIC.REPORT_DASHBOARDCARD(ID, CREATED_AT, UPDATED_AT, SIZE_X, SIZE_Y, ROW, COL, CARD_ID, DASHBOARD_ID, PARAMETER_MAPPINGS, VISUALIZATION_SETTINGS, ENTITY_ID, ACTION_ID) VALUES +(38, TIMESTAMP '2023-02-24 15:14:52.689', TIMESTAMP '2023-02-24 15:18:29.83', 9, 8, 0, 9, 33, 4, '[{"parameter_id":"4d1c7aac","card_id":33,"target":["dimension",["template-tag","filterEvent"]]},{"parameter_id":"9882246c","card_id":33,"target":["dimension",["template-tag","filterDate"]]},{"parameter_id":"f7070a19","card_id":33,"target":["dimension",["template-tag","filterState"]]},{"parameter_id":"d2d1a17a","card_id":33,"target":["dimension",["template-tag","filterGender"]]}]', '{}', 'N5_wS4hJZw2bfBYBzWs8v', NULL); +CREATE INDEX PUBLIC.IDX_DASHBOARDCARD_CARD_ID ON PUBLIC.REPORT_DASHBOARDCARD(CARD_ID); +CREATE INDEX PUBLIC.IDX_DASHBOARDCARD_DASHBOARD_ID ON PUBLIC.REPORT_DASHBOARDCARD(DASHBOARD_ID); +CREATE CACHED TABLE PUBLIC.DASHBOARD_BOOKMARK COMMENT 'Table holding bookmarks on dashboards'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_F7B5E9FA_651D_4581_B07D_55005BC5AC7E) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F7B5E9FA_651D_4581_B07D_55005BC5AC7E, + USER_ID INT NOT NULL COMMENT 'ID of the User who bookmarked the Dashboard', + DASHBOARD_ID INT NOT NULL COMMENT 'ID of the Dashboard bookmarked by the user', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the bookmark was created' +); +ALTER TABLE PUBLIC.DASHBOARD_BOOKMARK ADD CONSTRAINT PUBLIC.PK_DASHBOARD_BOOKMARK PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.DASHBOARD_BOOKMARK; +CREATE INDEX PUBLIC.IDX_DASHBOARD_BOOKMARK_USER_ID ON PUBLIC.DASHBOARD_BOOKMARK(USER_ID); +CREATE INDEX PUBLIC.IDX_DASHBOARD_BOOKMARK_DASHBOARD_ID ON PUBLIC.DASHBOARD_BOOKMARK(DASHBOARD_ID); +CREATE CACHED TABLE PUBLIC.LABEL( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_EECAE83F_73F8_44BE_9265_A330443A1826) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_EECAE83F_73F8_44BE_9265_A330443A1826, + NAME VARCHAR(254) NOT NULL, + SLUG VARCHAR(254) NOT NULL, + ICON VARCHAR(128) +); +ALTER TABLE PUBLIC.LABEL ADD CONSTRAINT PUBLIC.PK_LABEL PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.LABEL; +CREATE INDEX PUBLIC.IDX_LABEL_SLUG ON PUBLIC.LABEL(SLUG); +CREATE CACHED TABLE PUBLIC.DEPENDENCY( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_434C90C8_ED94_4F09_9963_E66966B3858F) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_434C90C8_ED94_4F09_9963_E66966B3858F, + MODEL VARCHAR(32) NOT NULL, + MODEL_ID INT NOT NULL, + DEPENDENT_ON_MODEL VARCHAR(32) NOT NULL, + DEPENDENT_ON_ID INT NOT NULL, + CREATED_AT TIMESTAMP NOT NULL +); +ALTER TABLE PUBLIC.DEPENDENCY ADD CONSTRAINT PUBLIC.PK_DEPENDENCY PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.DEPENDENCY; +CREATE INDEX PUBLIC.IDX_DEPENDENCY_MODEL ON PUBLIC.DEPENDENCY(MODEL); +CREATE INDEX PUBLIC.IDX_DEPENDENCY_MODEL_ID ON PUBLIC.DEPENDENCY(MODEL_ID); +CREATE INDEX PUBLIC.IDX_DEPENDENCY_DEPENDENT_ON_MODEL ON PUBLIC.DEPENDENCY(DEPENDENT_ON_MODEL); +CREATE INDEX PUBLIC.IDX_DEPENDENCY_DEPENDENT_ON_ID ON PUBLIC.DEPENDENCY(DEPENDENT_ON_ID); +CREATE CACHED TABLE PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_F3B8CE94_5AB1_44BD_A377_36174FB04171) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F3B8CE94_5AB1_44BD_A377_36174FB04171, + USER_ID INT NOT NULL, + GROUP_ID INT NOT NULL, + IS_GROUP_MANAGER BOOLEAN DEFAULT 'false' NOT NULL COMMENT 'Boolean flag to indicate whether user is a group''s manager.' +); +ALTER TABLE PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP ADD CONSTRAINT PUBLIC.PK_PERMISSIONS_GROUP_MEMBERSHIP PRIMARY KEY(ID); +-- 2 +/- SELECT COUNT(*) FROM PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP; +INSERT INTO PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP(ID, USER_ID, GROUP_ID, IS_GROUP_MANAGER) VALUES +(1, 1, 1, FALSE), +(2, 1, 2, FALSE); +CREATE INDEX PUBLIC.IDX_PERMISSIONS_GROUP_MEMBERSHIP_GROUP_ID ON PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP(GROUP_ID); +CREATE INDEX PUBLIC.IDX_PERMISSIONS_GROUP_MEMBERSHIP_USER_ID ON PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP(USER_ID); +CREATE INDEX PUBLIC.IDX_PERMISSIONS_GROUP_MEMBERSHIP_GROUP_ID_USER_ID ON PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP(GROUP_ID, USER_ID); +CREATE CACHED TABLE PUBLIC.DASHBOARD_FAVORITE COMMENT 'Presence of a row here indicates a given User has favorited a given Dashboard.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_81F642AC_A8A9_4BEB_A3CD_C9EBFB66DFE2) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_81F642AC_A8A9_4BEB_A3CD_C9EBFB66DFE2, + USER_ID INT NOT NULL COMMENT 'ID of the User who favorited the Dashboard.', + DASHBOARD_ID INT NOT NULL COMMENT 'ID of the Dashboard favorited by the User.' +); +ALTER TABLE PUBLIC.DASHBOARD_FAVORITE ADD CONSTRAINT PUBLIC.PK_DASHBOARD_FAVORITE PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.DASHBOARD_FAVORITE; +CREATE INDEX PUBLIC.IDX_DASHBOARD_FAVORITE_USER_ID ON PUBLIC.DASHBOARD_FAVORITE(USER_ID); +CREATE INDEX PUBLIC.IDX_DASHBOARD_FAVORITE_DASHBOARD_ID ON PUBLIC.DASHBOARD_FAVORITE(DASHBOARD_ID); +CREATE CACHED TABLE PUBLIC.DIMENSION COMMENT 'Stores references to alternate views of existing fields, such as remapping an integer to a description, like an enum'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_56CA509B_A3B8_4C20_9E08_80268FB36B0C) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_56CA509B_A3B8_4C20_9E08_80268FB36B0C, + FIELD_ID INT NOT NULL COMMENT 'ID of the field this dimension row applies to', + NAME VARCHAR(254) NOT NULL COMMENT 'Short description used as the display name of this new column', + TYPE VARCHAR(254) NOT NULL COMMENT 'Either internal for a user defined remapping or external for a foreign key based remapping', + HUMAN_READABLE_FIELD_ID INT COMMENT 'Only used with external type remappings. Indicates which field on the FK related table to use for display', + CREATED_AT TIMESTAMP NOT NULL COMMENT 'The timestamp of when the dimension was created.', + UPDATED_AT TIMESTAMP NOT NULL COMMENT 'The timestamp of when these dimension was last updated.', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.DIMENSION ADD CONSTRAINT PUBLIC.PK_DIMENSION PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.DIMENSION; +CREATE INDEX PUBLIC.IDX_DIMENSION_FIELD_ID ON PUBLIC.DIMENSION(FIELD_ID); +CREATE CACHED TABLE PUBLIC.QUERY COMMENT 'Information (such as average execution time) for different queries that have been previously ran.'( + QUERY_HASH BINARY(32) NOT NULL SELECTIVITY 100 COMMENT 'The hash of the query dictionary. (This is a 256-bit SHA3 hash of the query dict.)', + AVERAGE_EXECUTION_TIME INT NOT NULL SELECTIVITY 25 COMMENT 'Average execution time for the query, round to nearest number of milliseconds. This is updated as a rolling average.', + QUERY CLOB COMMENT 'The actual "query dictionary" for this query.' +); +ALTER TABLE PUBLIC.QUERY ADD CONSTRAINT PUBLIC.PK_QUERY PRIMARY KEY(QUERY_HASH); +-- 3463 +/- SELECT COUNT(*) FROM PUBLIC.QUERY; +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4e593a1c0b2629377c681948968bd52751df0f1c012f9e646e4ec8bf70c66767', 392, '{"database":2,"query":{"source-table":22,"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'02a64b3814e9e4302e8cf06c9a989abf3bc2bfe81d1cd7cd9bee2ea6dbd57907', 60, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: {salePeriod: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Total Count\": \"$_id.$totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'80c8bc6b679224fbc351f91ed384c95050d137436cc459a6c3a696eabd06168d', 24, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: {salePeriod: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Total Count\": \"$_id.$totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ec196cf54d47317023e38aa828cb845f956f1830eab8253a38b36c091f2d42b0', 15, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: {totalCount: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Total Count\": \"$_id.$totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b112102283d27efe3110a7c1fc65e6f8d8f72c3bf2c61e3105ac509bf7eb299d', 29, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: {totalCount: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Total Count\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ce2fbedf749bbbbe56cc1234c0fc9a61dce35f8e97379aa0225aae87bc74902f', 34, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: {totalCount: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Total Count\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"56b52da5-caab-ac76-71b2-a487a0402d18"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5f00f2b658873d061b76e26d8c0e1dbce47f7966bac6fe154f7b933f63d4b22c', 18, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: {totalCount: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Total Count\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"56b52da5-caab-ac76-71b2-a487a0402d18"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3900862cc63bfd4175bfde01dd939821e048c6e3ad66f6a6871afc515b0e0f95', 7, '{"database":2,"type":"native","native":{"query":"$totalCount","template-tags":{},"collection":"analyticsRegistrations"},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'38d3ba89c18f902e76c4448af4cbd0c0d76d9f75e045197f333f6bbf1f1dfb2f', 18, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: { gender: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'05bdd58901b4c8ab974e8fa2797e97c7e2f04651f9225f318862f25a74eed315', 17, '{"database":2,"type":"native","native":{"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: { gender: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"56b52da5-caab-ac76-71b2-a487a0402d18","name":"filterGender","display-name":"gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations"},"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"56b52da5-caab-ac76-71b2-a487a0402d18"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b33d6035ee535318a76ba60453010d9e649739373f55d68d72a49772d323da40', 13, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[, {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: { gender: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a636cc4af66585dd394367f2e886f34db8e862abf91d34d029f8ba2b69fabae0', 18, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: { gender: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"714d5902-296d-8cee-ed3c-103c588a855a"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ad807084d74e9371f4c53199a48029f499c2c10a07f4a8c935a9313a0628dc72', 12, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: { gender: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"714d5902-296d-8cee-ed3c-103c588a855a"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c88634ff3094743f56b67f2d980a986166f5d9328960621111a380c7353c714c', 14, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , {$group: { \n _id: { gender: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'37bf5f38a042e81ca1ebcd36e1379ae3800c66789799c85508b5c51750d0f143', 14, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }\n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'caa6ef02f7dba8bd6750758393063ac92d9daf5ef816b00eea55e3bed71dc34f', 14, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }\n , {$project: { \n _id : NumberInt(0)\n , \"Gender\": \"$_id.totalCount\"\n , totalCount: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"714d5902-296d-8cee-ed3c-103c588a855a"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd8bf36abe59e5457d06b23da5060ce9fc4d13eb197f70a113ab54be2ec2dc682', 16, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }\n , {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c9781de73600d39adbffed487d79cdc4bc81aa9a81d725b9b62f0699c09c6eea', 18, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }\n , {\n \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f392470f8e20cb75f19bcb5855ee79b11bdb841eab9b008a02facbb5af3107c8', 18, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }\n , {\n \"$project\": {\n \"_id\": true,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4ac7bce9ad639bef80828e518e9a2c9a2edd2d9ebd23c7290c94fe29008c75c8', 15, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}\n , \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }\n , {\n \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'06d6f747b0cd6eeb680307a22052e5efe2fdf6e5a141a3f059833b32268d1f8f', 31, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4c733831f29005e5a4bf1161b8a28d3697dca3611f96403d4e44daadcb654fd8', 15, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"Gender\": \"$_id.gender\",\n \"_id\": false,\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a343df5bd15d1f179bb6c12660871c69a7d6c4402a13af4bf323f691a1509462', 12, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n { \"$project\": {\n \"Gender\": \"$_id.gender\",\n \"_id\": false,\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'87a9026130b2f0c7ccfe55097c8b5dcd7b3eebb2713b48a84ba1f2a2bee683da', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"Gender\": \"$_id.gender\",\n \"_id\": false,\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5fc8551d43a6054c083ab6e06ba625ca82fbb5a35fad0ac9c0c64a9f26e5dfdb', 12, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"Gender\": \"$_id.gender\",\n \"_id\": false,\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd7cf43106bbab7d01fe126c13ae138c61c6288442bff6a8b426090cbadf8df44', 16, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"Gender\": \"$_id.gender\",\n \n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd5fd4792c3670019aa0f89be248656b28a7d64e3b0803cd0a5ba3d9f418aeda1', 13, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"714d5902-296d-8cee-ed3c-103c588a855a"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'faf6ee4215ef0d589405117bddae76f62bcedb7ce4b7bd3434ffc29317d7523a', 15, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"714d5902-296d-8cee-ed3c-103c588a855a"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e8052298fb9222b117fa0f21286a66d857f1322a0daaa5a2cee8f0ff86bd9216', 12, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"}],"async?":true,"cache-ttl":null}'), +(X'26a9fdd7cfb90ea5f11999a470522b01c03d4c5fb1e87c2247734fed9da70608', 14, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"}],"async?":true,"cache-ttl":null}'), +(X'398fdb4e27d5372b2c803da635f7a7e4e1f56416cffc1f35ff4e131cfbd2091c', 18, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["male","female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'042aeac4e8428726241597547a83a4fe2968280ba1a65804de834f2d72ccfc98', 14, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', 15, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'82e510cb13360cfa4581dea2ca4e97fa0f3e69124b70e5e9611722d261fbb765', 11, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'c62439b1bab68bd0d58fd2ee295e983b0b2a8d6efd462de3b42cbf4d401ca5a0', 11, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cf61d8a87a3e0b009e29b3d4e64eb836aa4f10f9a930c65100e635d63918e6fc', 8, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"category":{"id":"339d680e-3a7b-486c-d8c8-9eccb6db1a80","name":"category","display-name":"Category","type":"text"}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n WHERE true\n [[AND {{category}}]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'c976ccd73b4b978c5dcf98a2b301bccc0d8a08f6621a0b611ebf1df0ea2a1125', 12, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'), +(X'4cb702f6ec1c35b6f9889e371474ad04df7890158bf03ced98b62247e99b1d51', 12, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a086fc5730aa8565ada9833a2f91809833e36788cbfb3c98d48daef95040ac27', 12, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["OKARIA H.C"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6f1160d"}],"async?":true,"cache-ttl":null}'), +(X'0b36cf13851ae9b27e0edf7908de5fc952d5842ae661e962dee3a9853a59e99f', 56, '{"type":"query","query":{"source-table":22,"filter":["<",["field",341,null],365],"aggregation":[["count"],["cum-sum",["field",346,null]]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2649dec82cc4627b0988a3d62fee7618cc8aa4ae2352033ee02d4e69051f18b8', 13, '{"database":2,"query":{"source-table":22,"aggregation":[["count"],["cum-sum",["field",346,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0254fca5fa84670a3d39fbbc32fe0dcc2a377bf4a798b8cf3b6f68883596ffbb', 6, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"age\": {\n \"age\": \"$childsAgeInDaysAtDeclaration\" < 366 \n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{"filterGender":{"id":"d76ccdb4-0d6d-fed9-1fff-b278d2545bbb","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7ebc8e58-8c6d-3d43-6ea6-c233d14207a0","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"a6ff8f16-4934-91be-ed63-d2935e71a570","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"12a3dd67-404e-275a-dd1e-871c5080771f","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1ec98a781bf26f2b68d4a075a82155a7a6f594681404a713cc7ffa854fcceb5e', 17, '{"database":2,"query":{"source-table":22,"filter":["<",["field",341,null],366],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b7544ef44cd3b395f44cdb09c28611b084482c0be48128dc0fb72f73cad2d05b', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'69c70f659c8180d42fb2619884c5be8a9dbb4a55882dbe27dc6fbd6059378744', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'49a34fbac4e329735f7c17c0dba1ab698643619bf72405ae5b5f0a17cd2a3878', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"cb98e793-8e53-1c97-650e-a02494c83f92"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f1526e69f1584d9c0f88bedd65593af7d19c4a77f497859c468ef2cd8356495f', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f4b0c8196200c7fd6f59ec81d632c0e14153f5e356837f6515f4e5d9cb19dd95', 16, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"Count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$_id.count\", 100]}, \"$_id.gender\"\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4632dfab0bee946babd4647fbeb6a7892855eda699117f0a9c1f73e4c3c96f69', 17, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"Count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$_id.count\", 100]}, \"$_id.gender\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7b8e194b0e91ab146c07a82b20a6cc8ad44a57426bc250bfb1a68c76760ec809', 16, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$_id.count\", 100]}, \"$_id.gender\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a09d0920cdefed13433c86a5e07d5ba484bea38ece356df337c2efc98e951f7f', 24, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$_id.count\", 100]}, 5]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6171a9ac33c22ffc3c88d13e63a40a5f91f8cc516e03857ec92f46e449bd17e0', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [count, 100]}, 5]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dc32e35a6349faa2a82501ab6300383bcf5933462f612fdd041252c6a9cadf2c', 31, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$count\", 100]}, 5]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a9cdbc1dd47c62db86139487b5a1723a3f04c0e857fdd39ee52a3cf1423c99a2', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$count\", 100]}, 6]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a4fa43159ea5f50b7e9898253abc000073ff96d9fee765d756925442b04394fd', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$count\", 100]}, 66]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'12e5f6b1c511675ae9cf19d1e80a7f90bdccfb97a36ca927451a72dffbd9011c', 18, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [\"$count\", 100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8413e1fff99c505756d3037a2ffc1f2e171c9f51be8f84eba9e4b990ba769e63', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4d282285bdf49c365914155327335c143b1fab82eeb37073bf9d95052029e520', 21, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f9ba95bdc178ade1ad75f565e43e472f4c405c4deb6c91b85b27d146cb4ee9b1', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": (365*5)+1\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3d7078706515ea54f0dbe198aed0b4941d88bc8ec5e711e239f221f26e7a1ef1', 9, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": [(365*5)+1]\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'98c7860d99f6f2583f7b922563613012c9f1200c68bd21af001163ff95726d9c', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": [(365*5)]\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e3a8d333629f01a9d3913909cc2ce8e43506ae8d6774663bfc6caad1facc133c', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": (365*5)\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'020837c40a6871040b7bc344bbf6dc51d5d59f5c14271a7a7dcec472383b8d50', 18, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f517746541b10da68b17d642345bda7e80b0ee759957c746c222395ee6b6ded6', 17, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [{$multiply: [100]}, \"$count\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'aea6e039ebb29da9a32a9ad651f56fdd60edd7ddfa4ee87ff0942a9d37bfc4c6', 36, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$_id.gender\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'de4e71243c11605e407ac2f25ab8a2c7c7df16ee7bb31c39f128fdd11b5d5936', 7, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'411dca3ee17a5dd6408437a9c9166777578d9f7251e441aa34f22dd87552cf50', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"{$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1f942d45dc3e046429965d210a85c1f5c6dcafc5d031ed96f4d0e7b6a1aa1020', 22, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCount: [\n \t{$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n\t{$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }\n ]\n \n }}\n , { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ba953842a93db3ecf68c88565692eaf303bbb69e914259a4af8a46ab50a14ddc', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$group\": {\n \"_id\": {\n \"totalCount\": \"$total\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c97df5d051e1b0dd6faf0f07b6f6ef5f78829801747706d1d61cc3ef27cc56ad', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$group\": {\n \"_id\": {\n \"totalCount\": \"$total\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$_id.totalCount\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5edbcfe47bdcfc3fbc40d804bd79cd92b5670e51d32733a052150ff87a10add7', 35, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$group\": {\n \"_id\": {\n \"totalCount\": {$sum: NumberInt(1)}\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$_id.totalCount\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dd3d318fb21bb731831088c72d364b79ef67c23ee0565d660ba201bb8fd2994c', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'070e38bc337bc35a844b742575cecc8fffbf45237421ac05c6b351ee81c3aceb', 18, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {$group : { \n _id: null\n , totalCount: {$sum: NumberInt(1)}\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3e30b0696acf2cec595d107322d23758e5d929e39732091d6f1672ae2eca3674', 14, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {$group : { \n \"_id\": null\n , \"totalCount\": 1\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8bb39ac584acabeccaa913a2203ced2ade5de86791237aaf7b9e9f2ff6f001db', 16, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {$group : { \n \"_id\": null\n , \"totalCount\": {\"$sum\": 1}\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'915a0b5ab93604497b99780ec488547eb92dfcdd818f1d86c2e1cf28beb8ed4d', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\"$group\" : { \n \"_id\": \"null\"\n , \"totalCount\": {\"$sum\": 1}\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'180f8d98f0fac1dcdc258dd33998838fc8c4d37be1cd3b7a5b9541994a335da9', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\"$group\" : { \n \"_id\": null\n , \"totalCount\": {\"$sum\": 1}\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4ef9a4e9c4af8230925a7339512b1d666e716330bd69ad51f56568dc4b089c70', 2, '{"database":2,"native":{"template-tags":{},"query":" // {\"$group\" : { \n // \"_id\": null\n // , \"totalCount\": {\"$sum\": 1}\n // }\n // },","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'12e6978bb06dd0819dbb3bcbf96706a892d097d45fa81fb072b7239733eef7c2', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$sum\": {\"$count\"}]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'23168698deabe35ac8ba797ea6ff560ea675b92b0ae7e4ba1bbe6249a109d85c', 7, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$sum\": $count]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'565c4bfd5dea4d67f89d918bf5087c20d83c791ae926e5e4451ea4e2fa744c60', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'828fe517a4629fdddc32dee7661d84ae5278310209ecee94b3d8d659c8bd6956', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n $group: {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n TOTAL_OBJECTS: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8893fead2d58d85004ce4f6d39d910b14f6c1f2af2a1c3b022e794a4ae8d1e74', 2, '{"database":2,"native":{"template-tags":{},"query":"totalCount","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'16e0a7e76d556025daeb84a34b18bce3d7c95dba6861e42a437e498ccc646ae6', 17, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bdc95d753b59ef47e34c875788846897206b686cd47a17a4e1d4aca85b8ec247', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", totalCount]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9e521e7cde186c2ccee50de7472c9ec02beefb69e020c3c335364d1ecff8e443', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$totalCount\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'047f446e3c518ea97d6bc85bf8ddaa111e2ce89f3247308ac41993dfadc34551', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e34556a7cba46abc9a3e33932d8f4e2c518fb3c1e84c8ac66e647f003fba0dcf', 35, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": true,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$totalCount\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e6d9ac7f6c2a7525f0a079fdbce5a99575978b54e91e4a608f0ede7dafdcbf90', 3, '{"database":2,"native":{"template-tags":{},"query":"false","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2826e9fe95710a602304fd7777db9322f3698d4c4adc0bc202fd6ba79c483b6f', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"totalCount\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'617c416651735db1b645b7259338637bf71797054ca64504d456c04103a78555', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },$\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", \"$totalCount\"]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3f4594fc17e4d3c7c745bc33fb6843daefbffd2036c0393f75efeeba586faa63', 18, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$group\": {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$childsAgeInDaysAtDeclaration\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'017fb49490e9cf2b116421e2184d96ec4561bff5f5af9c98eeee6d72af39bdaa', 7, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n\n , {$group: { \n _id: \"$count\"\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }},\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ac93f818a10cc68d529af9cbced197fbe15b5e96df3eda8b15476ae906e1c050', 20, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n\n {$group: { \n _id: \"$count\"\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }},\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'883b462fa45f0d147849e1bd9d692bc0b9aa8aaa741426370562f340862c2771', 2, '{"database":2,"native":{"template-tags":{},"query":"9","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a21b8c445a33494a9056bbd885cacd39e163937849b6216d3e9fa118f81a7a75', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a8e70b7b9d137820ebb28469cf5073734ffb5cb76f489abff9bd09afa494fdc9', 17, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1b3ab18aaaf3824732ba1c62ab28621ac8cfccaeb3b5d3ea9bbffd6ed6135c46', 68, '{"type":"query","query":{"source-table":22,"filter":["<",["field",341,null],11111111111],"limit":10},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a1b5ea0bbda8b03e7a0e24c7a652f908a261d262e701679412d7b8947133417b', 65, '{"database":2,"query":{"source-table":22,"filter":["<",["field",341,null],11111111111],"aggregation":[["count"]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8d62c1af7d318d75384e600b8d16b20cb359214656c7112c3ad99beedae2ec42', 31, '{"database":2,"query":{"source-table":22,"filter":["<",["field",341,null],11111111111],"aggregation":[["count"],["cum-count"]],"breakout":[["field",336,null]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ff6930d0da39de0833aab49ac337cd9540ea4b7d97c5d9c3e31e2defa9cda46c', 39, '{"type":"query","query":{"source-table":22,"filter":["<",["field",341,null],11111111111],"aggregation":[["count"]],"breakout":[["field",336,null]],"limit":10},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'85c5f49932000352a915db46ca55e502a7f5195052056924036426a0b43ab10e', 19, '{"database":2,"query":{"source-table":22,"filter":["<",["field",341,null],11111111111],"aggregation":[["count"]],"breakout":[["field",336,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fc02edb2bbfe5acd163e17b7525040e7ef2dfe187f991caf7a1d7361fa32a153', 16, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 9]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c428573e6271e91fc40ca445ea7117e11a8f02df84c74c5c8d3f1351e0d3f5c1', 17, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n {\n \"$group\": {\n \"_id\": null,\n \"documents\": { $push: \"$$ROOT\" },\n \"TOTAL_OBJECTS\": { $sum: \"childsAgeInDaysAtDeclaration\" }\n }\n }\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'06d31d0594493e16dc5480747de115083321f307d4789f81c434c86fb19ca193', 3, '{"database":2,"native":{"template-tags":{},"query":"childsAgeInDaysAtDeclaration","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'86484caaa45f04293df07279391c97de429bbe888b557bebc9703d23d5a4261e', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9181b39d836399e62ed1406285b8e9a2c2b3c0df812e7f61e63449f4a0af3f98', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n $group: {\n _id: null,\n totalCount: {\n $sum: { \"$count\"}\n },\n total: { $sum: 1 }\n }\n },\n \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e75bd2f2baa75ed9249bc1532c341b54d8d6525a6fc1e26a312aae3e8ea9b6d2', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n $group: {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n TOTAL_OBJECTS: { $sum: \"$OBJECTS\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'371dec7f646c211ffb7beb3bdbaf0e2d09c0c3af3b3b600c90bee98f782ac4b6', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n $group: {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5a5467c4e352f77b75d85f1cfd028f6fd2bffb26c827ee60d1b2162ba46deb31', 10, '{"database":2,"native":{"template-tags":{},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n $group: {\n _id: null,\n documents: { $push: \"$$ROOT\" },\n totalCount: { $sum: \"$count\" }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'250934363928e74dbae33321a36b62efa71ef8e8de46020df68956bebb3d8732', 14, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"f012cd3e-4e43-490b-e50e-6a671d9155b7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"fedd52bb-f601-a640-b7bd-676c79849b8c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8b860bb6-1ee7-3ee0-3e6e-6ed5deacdaff","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"548d2aa6-4315-6dfc-76bf-faf3fd183d7a","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'aee5292e242a6c31e6a509d2589842195b2b82dc7f157f61654c4da21eb36878', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"f012cd3e-4e43-490b-e50e-6a671d9155b7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"fedd52bb-f601-a640-b7bd-676c79849b8c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8b860bb6-1ee7-3ee0-3e6e-6ed5deacdaff","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"548d2aa6-4315-6dfc-76bf-faf3fd183d7a","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$group\": {\n \"_id\": null,\n \"totalCount\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8cd4e41489e49dd43a8ac19d7ff3e463605d47b6343703241e76860789946f15', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"f012cd3e-4e43-490b-e50e-6a671d9155b7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"fedd52bb-f601-a640-b7bd-676c79849b8c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8b860bb6-1ee7-3ee0-3e6e-6ed5deacdaff","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"548d2aa6-4315-6dfc-76bf-faf3fd183d7a","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n \n { \"$group\": {\n \"_id\": null,\n \"totalCount\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c60d02d110149acf88e1994c93895b3ad2c91cebd5b1147df2ed246aa9e19d54', 16, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"f012cd3e-4e43-490b-e50e-6a671d9155b7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"fedd52bb-f601-a640-b7bd-676c79849b8c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8b860bb6-1ee7-3ee0-3e6e-6ed5deacdaff","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"548d2aa6-4315-6dfc-76bf-faf3fd183d7a","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2388ae86d66fc862ce519ebc7b89944b7f1bed02282237575154e3eee0b6a2cd', 32, '{"database":2,"query":{"source-table":22,"filter":["<",["field",341,null],11111111111111112],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ec7468a74313db07640404d0432582e35ae990a0805ccef4103c775dc926015e', 16, '{"type":"query","query":{"source-table":22,"filter":["<",["field",341,null],11111111111111112],"aggregation":[["count"]],"limit":10},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd53c2a6f9dc8e1b63f847596933972d614dcebe8dee26f73dce6e05ce876aeea', 17, '{"database":2,"query":{"source-table":22,"filter":["<",["field",341,null],11111111111111112],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3cfc5365c808fbd5c31c51d0b59624eba5c2023e0a6c95a27849ff2380bbd8dc', 13, '{"database":2,"native":{"template-tags":{},"query":"[\n {\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111112\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"ccount\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"ccount\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'67202f7d74e60ceb48c34579fd649df213dd3a46ad476e79d1dc5e7318c0045b', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"f012cd3e-4e43-490b-e50e-6a671d9155b7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"fedd52bb-f601-a640-b7bd-676c79849b8c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8b860bb6-1ee7-3ee0-3e6e-6ed5deacdaff","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"548d2aa6-4315-6dfc-76bf-faf3fd183d7a","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"totalCount\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1cd82e8fe4b7c0390d2ae5e389d21ffbcca7b0695aeeb7d3f6eb390396542368', 53, '{"database":2,"native":{"template-tags":{},"query":"[\n {\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 11111111111111112\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"ccount\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"ccount\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4ff97cd6ba38944f9b200b26672739aa6f116598a6add0770eda6661a7d2cc35', 18, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"f012cd3e-4e43-490b-e50e-6a671d9155b7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"fedd52bb-f601-a640-b7bd-676c79849b8c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8b860bb6-1ee7-3ee0-3e6e-6ed5deacdaff","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"548d2aa6-4315-6dfc-76bf-faf3fd183d7a","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true,\n \"Percentage\": {$divide: [\"$count\", 7]}\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'50aa51802245e010a0b5870b2d0bf44c54439b7daeb3e31e9bc2400204b2547f', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: {''$otherStatusInfo''}}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allStatusInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': ''$allStatusInfo.gender''\n , ''Account Size'': ''$allStatusInfo.count''\n , ''Portfolio Size'': ''$totalCount''\n , ''% of Portfolio'': {$divide: [{$multiply: [''$allStatusInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cb33691f77d1dc218a13fa4c021bf87b41b665cc7646d0850756c85d1d18f909', 23, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': ''otherStatusInfo.gender''\n , ''Account Size'': ''otherStatusInfo.count''\n , ''Portfolio Size'': ''$totalCount''\n , ''% of Portfolio'': {$divide: [{$multiply: [''otherStatusInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a500fb4a1082c810a37e29fcfb6e1d9b5fbe1f6536c150c97e5ca94b4ad517bc', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": 7\n }\n }\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': ''otherStatusInfo.gender''\n , ''Account Size'': ''otherStatusInfo.count''\n , ''Portfolio Size'': ''$totalCount''\n , ''% of Portfolio'': {$divide: [{$multiply: [''otherStatusInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'58cbcf86619fed76df1f06846a65e14d7ba5bdd142e2af4155802b2c2d29ceb7', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': ''otherStatusInfo.gender''\n , ''Account Size'': ''otherStatusInfo.count''\n , ''Portfolio Size'': ''$totalCount''\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'130e3b3b81af2786d8d76bc0b3731cf91f85152ed7a7c537775bfdb7f4757d06', 14, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': \"otherStatusInfo.gender\"\n , ''Account Size'': \"otherStatusInfo.count\"\n , ''Portfolio Size'': \"totalCountInfo.totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'23c51f826194f013ce7ef9e6a1672f061a957e4efd25df1eef472fd16ce24168', 25, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': \"$otherStatusInfo.gender\"\n , ''Account Size'': \"$otherStatusInfo.count\"\n , ''Portfolio Size'': \"$totalCountInfo.totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'afc41e6e9b463448fbea843996c7bfa0a15901629f7be4068a37b309788956eb', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$unwind: ''$otherStatusInfo'', ''$totalCountInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': \"$otherStatusInfo.gender\"\n , ''Account Size'': \"$otherStatusInfo.count\"\n , ''Portfolio Size'': \"$totalCountInfo.totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ff6baecfea1121b37004923b3d23d717452ab7d56a17982a021760089070c6e4', 55, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: ''$otherStatusInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': \"$allStatusInfo.gender\"\n , ''Account Size'': \"$allStatusInfo.count\"\n , ''Portfolio Size'': \"$allStatusInfo.totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'824b83c285644697505d5e8721513ae8c755c3b32c486b1c59e43c5896b52dda', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: ''$otherStatusInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': \"$allStatusInfo.gender\"\n , ''Account Size'': \"$allStatusInfo.count\"\n , ''Portfolio Size'': \"totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5356135fe2f86f93a1cb8808fec911d11a14406c2277580f587a73e87c7b5855', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: ''$otherStatusInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': \"$allStatusInfo.gender\"\n , ''Account Size'': \"$allStatusInfo.count\"\n , ''Portfolio Size'': \"$totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'015a123448d4150ad9d42b9f368599c6e59d4d2567ef7c151e61f2cbe29254ad', 14, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: ''$otherStatusInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allStatusInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Account Status'': \"$allStatusInfo.gender\"\n , ''Account Size'': \"$allStatusInfo.count\"\n , ''Portfolio Size'': \"$totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'616347afa190b2dbb8340ffba754cf48e677ac4045dec53d0b7de535743d07b1', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: ''$otherStatusInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allStatusInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allStatusInfo.gender\"\n , ''Count'': \"$allStatusInfo.count\"\n , ''Percentage'': \"$count\"/\"$totalCount\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3e286d77d5476b22bc6893e8a0c843d0dfaeeec1ed9dab981b206011e2fba542', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: ''$otherStatusInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allStatusInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allStatusInfo.gender\"\n , ''Count'': \"$allStatusInfo.count\"\n , ''Percentage'': $divide: [{$multiply: [''$allStatusInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1495d2becb404880ca9d80d09013a014fe3f6dfddedaf37197298dca50678272', 10, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherStatusInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allStatusInfo: ''$otherStatusInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allStatusInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allStatusInfo.gender\"\n , ''Count'': \"$allStatusInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allStatusInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cc31be37c4f82dbb819e6b05df4e97082ff9f4d7a3bd2f514a256da109c7e98a', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allStatusInfo.gender\"\n , ''Count'': \"$allStatusInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e9fa377775c0c8a43f1bc1eab18d44f710acb0a83502828687d76e7a9b364ab5', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {\"$facet\": {\n \"totalCountInfo\": [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'aee1702f53de0ec0212d36f1156b1e235caeeabcb5da53fde5aa00740a3c36f1', 2, '{"database":2,"native":{"template-tags":{},"query":"$ne","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7568e58e968dde446c8eda5474c1351fed35912481da54abca1e8d21ae470733', 3, '{"database":2,"native":{"template-tags":{},"query":"$and","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f1b4a982940c021e7a3ea88d19de7c0f5061ea3ce2b290f92a825acdd99a7209', 3, '{"database":2,"native":{"template-tags":{},"query":"$match","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b09ed8cd8223105621c639adcd12b965b055c736d3290abd8834ca0778d5bff5', 2, '{"database":2,"native":{"template-tags":{},"query":"totalCountInfo","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'273b6c5c76d280e5b6aa3e25de6fbb073da10b9938e46900291713a1346e6ecb', 2, '{"database":2,"native":{"template-tags":{},"query":"$facet","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cffc115badf85e693167a46b7d341fb6e188bc6695f9421852db9e7e0bedc27f', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group : { \n _id: null\n , qty: {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e47e8a4579fb5022bd5f6da0670fbba229c3b545966fa9401355e7df9a76a29e', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9c0ca2f4-7f2f-d6c7-2a4c-8ddfd4cde351","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"7e6c7eca-4aaf-a538-9c31-9078ec3bb034","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"32b41cd0-efc7-28e4-3f98-a245a11d0654","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e87a1e6e-b44f-af87-21c8-e4283105c0e6","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ca134b72d9624a67298d0b4bc571bc442e69fceecd9335c3611ddd4809e818b8', 9, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {$project : { \n _id: ''$_id''\n , totalCount: ''$qty''\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"bdb552dc-1495-4dec-a074-69de6c1200f2","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"d37e0476-2776-26cd-2921-b1abc3b7100a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"1c2ab737-9c0a-efc1-288b-fe0fe84fa6d0","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"819f3656-0a03-d814-be1b-56c7ed161984","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7bd47ccbd8bbc951f13edaab46641a5b11e942607f801700fd774dbc0b74e3c6', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"bdb552dc-1495-4dec-a074-69de6c1200f2","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"d37e0476-2776-26cd-2921-b1abc3b7100a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"1c2ab737-9c0a-efc1-288b-fe0fe84fa6d0","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"819f3656-0a03-d814-be1b-56c7ed161984","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , totalCount: ''$qty''\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'753931027d7df4b74bbd7ea0d622b3b9a3cd6d17d30c275d7bad79fc161f1d19', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"bdb552dc-1495-4dec-a074-69de6c1200f2","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"d37e0476-2776-26cd-2921-b1abc3b7100a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"1c2ab737-9c0a-efc1-288b-fe0fe84fa6d0","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"819f3656-0a03-d814-be1b-56c7ed161984","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', 4, '{"database":2,"native":{"template-tags":{},"query":"_id","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'508f5b691ffddc84980cf45459c8d1bebd395bb934b34cd6488be3c21c08ef8f', 8, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"38806e71-dc38-dbb9-e1fb-065bd0b4b02c","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"39565e2c-1847-84a9-1ed7-f49d32b333a9","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"28f92b9e-aea4-97b6-e17c-4a7724c9e612","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"3f890b1e-a4b0-70e7-e948-0264d4010474","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'51d4e859e693fd2e26aeb0e220e614798e007654add7c246abcf07411038c713', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"38806e71-dc38-dbb9-e1fb-065bd0b4b02c","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"39565e2c-1847-84a9-1ed7-f49d32b333a9","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"28f92b9e-aea4-97b6-e17c-4a7724c9e612","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"3f890b1e-a4b0-70e7-e948-0264d4010474","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5a50446e7a36f89234cbaf78a2567acf6120043915014a3994ae3e9fe902a80c', 9, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ \"filterGender\" }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterEvent":{"id":"53c296cb-8212-6f80-e34d-f76b0d940084","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"376ce8b2-b0fb-688c-1c3c-b31fed5c36a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"dd734c6d-1dee-446e-d57d-5fe402f8d24d","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterGender":{"id":"d79ecb7b-706f-1f88-2fe8-87892ac163cc","name":"filterGender","display-name":"Filtergender","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'16f3c679d7be8ca98a2d1773d4d9520a8363e0da017930fcd95803ea7edb0bb6', 2, '{"database":2,"native":{"template-tags":{},"query":"filterGender","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b551b5d6fcd3bbb7b143ad7482a2402b1316b22a4ce8c86e551fad5de58ce911', 10, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"c309db3c-baca-8b00-45f1-23eb6a8b36ce","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"e47f764f-fd02-491e-6fe4-520210603fdc","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8d5013c3-22f2-783c-d78e-265982e62cc7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e6739e08-4df3-be0d-3d04-cedb4227172e","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f1c6e2208b1f7d11517bcd9378653405d9ab5e86e4342ac23594f02600054d72', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c309db3c-baca-8b00-45f1-23eb6a8b36ce","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"e47f764f-fd02-491e-6fe4-520210603fdc","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8d5013c3-22f2-783c-d78e-265982e62cc7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e6739e08-4df3-be0d-3d04-cedb4227172e","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8a4dd8301109c493d336ba977870b981f2cd0915ee554a343f7f351ff852133b', 17, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4334330933e7feafbff2f8c97a9715f4bbd331b356d85098dcd94c01ccf79123', 22, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"20e2c029-3679-018c-24d6-484d76a11d32"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'020d6c6bea20c6875bfeb5d405649fd051b45a31085b3a9eb3ebe6f8f17cb81e', 23, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f736bc249a6eb99d0f37a973a8b9a0943243fe58d8ab3f050cf3e40b297812e6', 29, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"}],"async?":true,"cache-ttl":null}'), +(X'1ccfa25bb59c85d9755c9b4d546b9dba1126ae65c6fb55aeb36c3267f90a421a', 34, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"}],"async?":true,"cache-ttl":null}'), +(X'1049099c1cd6bf8395fd70620da3c7983f8a88bffa329f5b9731a7d515229deb', 32, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'78e5a7503dbde9cfe89f2a45e9e663804bd775945103d17971834bcdca5e9c00', 14, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'350be020afae5d8396bae553609ab0025297a3bfa436e96fd061ea881cee779e', 15, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ddccbbf8e565389d941d628f0f77f443defdef5531eaf552939f1345c79ea50e', 19, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'bac9710b9a705626755202a47e6cb4337be03fd264d38274ca75df4f0761f05d', 17, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'a3746ae3effdd1273925119d64fb06a8190adedf78abb81d139e6e123af28ac5', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'de55e3727f9a15f6cb25ca7726c7c9bf8516b22a27b016af4aaa2bb149434f02', 13, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6f1160d"}],"async?":true,"cache-ttl":null}'), +(X'0a87679fe06ec977055a1ca610a6ce73b1253ffbdb257446d1e4277849829e8c', 20, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'b843938f50a9be2122a3d06603b79a5ade4dec23168d14caaddf0ac16b58049c', 20, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'513f38ddd64c2b566481868d8e54f4e9adfa85f8a6ec631af772640733898a2d', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'ad12b46b9bdfe6eb5f688629f8ab575ebd470432a2d685ed05f0822e91023c19', 31, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'50c5c209a0b3b180ecf192567c2f6e48e07e743eb0a674c355cc1a6aba74c674', 16, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', 20, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'1be5fad59a7cd8c40f2b013aecb70c115221eb6c88e1affcc85f9a503228e817', 21, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0f2cb96f16a8feb17cde832f6c100cd06344b6457c63c130892ac53fdd30a392', 26, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'), +(X'53207fc9f9344a792094fcd75c4926bbc68bfd9bca3edaf3d07385dccc488759', 36, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'34c8d3c78934bd5b67a852b5193356c47b25f83c85b83b47e255590003871913', 21, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'), +(X'b3696a64a0e12189b62383a7e44089abd711836309659d96c0ce930e93f3f9dd', 32, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6f1160d"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bb35525c3b6344c238e251631893c0dcf597803ab4eee4ed695f6fa2e77b11cc', 17, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6f1160d"}],"async?":true,"cache-ttl":null}'), +(X'ca82f63e92e6e301c0744f8151048a186ddae451ce4a605d84ec5ec12476d0c0', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6f1160d"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'549603661f5444f8c4cf80aaa1c2f51a03d1e35c29c4aec3c4c8fd0caae8b3d2', 18, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6f1160d"}],"async?":true,"cache-ttl":null}'), +(X'e715a02c9f3da94909268e64c36e117c565a6ba4c6975ef7c7d34d506b5bbb50', 18, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ea04f0276d9ac17bced0d2202babb52c109ffeb6fed707115cdfb476532dae42', 36, '{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', 50, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', 50, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', 47, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0e66f5a7c9d952da39e7efd8d82bbfd5e0a7466ddaa036cee21178e4587974bf', 19, '{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6a53129233be3e12f27b25f7ceb3e62ab53cb8efe0436e1a2f05e30dbd290f5a', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2e6ed96110b21df965246e3da8297454bb905e97ebf50bf3cfb819be0a2b2f59', 19, '{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ae6e79ed55c03416a2c6db95c050b6c05ec23c954582f8d9c06c44a183f5a05e', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd12989d291fd0e1d649c16530499307b64dc0451caaac5156f5f9bd2c1f7be2b', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c8878e7d815dcc24d4f25a7c6858b0824647f922cbd72d976911744cfbc1a87d', 15, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ccb714994be33b236b9b63a280126746934d2772526ac0f29e7bf3dbe0a05d90', 18, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'2307926171d8765226856e142e0913986ab7a18f90039d0b6a7851f5074627ea', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1962ccc7d989e241874c8cf995e7099e0d20d8bb96fa42353be2f99181b94f03', 31, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'baf5993891719aa9b51384eae10cc81c1d5d0aec6008a1bea40d904bfbfc0269', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e0fb88ed4698825ad54c751e29cf7f58dd971d4e1913694a4da8dde094adac95', 19, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'f76610567883ebe109198886e9b2f1f0a70696712625fee8d9f008cda059f006', 15, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ed14456d-7b78-9730-8a38-240630157985"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6d3637d235144bdf20830490b2142b4a1ce6aff04dee3eb7c84688b3a94bdb3e', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'5a02d17bb8c4fc6c0deda71500ac6106135ad5794549ca0ad1484673e173722f', 29, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6cd40d477729c99f176a00402daa78fb7b0c0e37f4f9ac8bd5fdf7976236edc7', 29, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'7028c466344422a3162e4242e64fdb35763d7ff6efb705f86b2bcf9c3f6b8afc', 40, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'698cdf61c2f116526f1bfefbee994dadbf38dcdafbd9d005646e9fc952feee93', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'), +(X'8b2cb2c706fd7a3e577e77a2e488a530354987275a8389a1efbaa51b724033ad', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'85868c3961a6e45a8b8e7cb47ab8f8a7144e868d5c30dd2c4593bf04b7360d12', 32, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'), +(X'a2b656227b594bd570ce76cbdb6f442f9a56a1b6ba26532cb649bd7e8f7bd439', 41, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7425de21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'46bc9418268dfdf86a9b30f0c8ba8b5af62a7a5d67972f8d907ea47a7befe4c6', 36, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'c7dc3f1a2d346f7af062284b61c2dc90d48c3efc14219a1d6c8657c10f10b023', 45, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'773e00c12eaa55d477f13a595623939ddd6a5c6ddb319bbfb8f49261e32c293a', 24, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'fe1a6fbf53ff280127a62757e56ded7ffd70f3370a00e5cebde94e33122854bd', 36, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"4600174f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'ba40f2cafe49cb8d36f84a6b787a22490c3819fe2456cfa32c2a09e3fe65beb2', 15, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",336,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fef97315a7b8cbf0b1585af93e3e28bf923d16b62cd4accf160872c57ea627b7', 99, '{"type":"query","query":{"source-table":22,"filter":["=",["field",336,null],"female","male"],"aggregation":[["count"]],"breakout":[["field",336,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b5ec6c726941dbfd104cff249affd9e4080582223680f8821976b3a8a9eff16e', 24, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'f62fa7be586322031ab069a8794c4a005ee1ddb90e121682c34ae1164b6d535a', 28, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cead588ecc9933a0992ce640dfd89e2a012fdbaebdfc61a4864860d161c3e000', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'a38ffde814d071faa66083b5e3dc8085db3ed9e5c71613f2e0b975eed686d177', 26, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'efedfb382fcfdf1de974316fc37a1e569c76caabfe3beba64f3ac3318317026e', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"619d14fd"}],"async?":true,"cache-ttl":null}'), +(X'cb0f8c93dbd44e720d8f4f0b33740f35ab98a1b15cac433eb8c8683c6c3fb429', 31, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"619d14fd"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'77c4648ebc44bd16438ae2bc68d7f02f5962012bafe113792a12072da27fd992', 29, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"619d14fd"}],"async?":true,"cache-ttl":null}'), +(X'b867b51cee0f945f5fc68512fa439aeea7c1d8042a38fe4296a1e7225a757b7f', 39, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["NPC OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"619d14fd"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'32e2ee6e4d9a0b2fe2744b977e76c01b9ec3437d9e83401e59694dd045145214', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f"}],"async?":true,"cache-ttl":null}'), +(X'8a919c73f79d5381cdcb5dd6adadf1bd547d2fe271ce5ddcab81cd83a078123f', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'56b7f7584a074346b4d78cb2374fc6287d86bc1fa37af542e89c5005156f02a9', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"c1e83638-0f0e-5ecd-0f66-62456c1c6d9f","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"0026274f-c378-4c4f-787a-6de3f3473944","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8ad34d2e-1c50-8d62-e7e7-02d55cd4d6e9","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e80082fa-a095-0260-a4ba-dcb2bb7f7a56","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'c9bebb9787ba2473d5ab270c972f7d2608d3bc093021c5f970d0c84aae70fdc6', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', 21, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'fb48839821917d674c1af4460c1713c88cab477de4d0ac5fd0d8f9bfa167b3d2', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd05c66aa982e359169ba391e548718d4877f66c9623919cc61c6180eff175b30', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9497db7af7adb9b31745916f3319f2429d8f5b7f25f519fb54e545452929b2d5', 13, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7eee08f3977941698617c0aaaac17f0eafe54f7ae6ca638e8d0faa01b1f274e3', 21, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",340,null],["field",538,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'38384011a6927b751c3d1d511aa3311adf9b9d48401fa201cdaaa604857c9a8b', 19, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",340,null],["field",338,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fa6c88ab45dd9811520e4a8c465b396a055d8ac8aabc1060cac3cefcd7e34226', 47, '{"database":1,"query":{"source-table":5,"aggregation":[["count"]],"breakout":[["field",36,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e6ecd38ac3f141904da5a0d826b511a28e78ae6f84e3f30d3d2822282715096f', 15, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'), +(X'e9412aa37dff239a26b25cfa10fbacb71b5b40202dd9c88d770dba2830725ba2', 20, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'090c814b2ec83d79b2ff329dad30f2215454a0047651092fc517aafeb037f635', 22, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'), +(X'48ddf58215b073b134e537c3327da80145e4784faf5864d31df2381595b6feec', 14, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",569,null],["field",538,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dda9d015271d749f238abe1838ce68f8e3cd4fb35d0d18a4adb0f23c10b4e394', 5, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",569,null]],"filter":["inside",["aggregation",0,null],["aggregation",0,null],6.292908814488466,-0.40550353991583915,0.07465704081614767,6.046002780572293]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'072a6b2733096e6d1e0ac970ba88ff418e1afba40d3d4edc0e7ff854af1d0f48', 353, '{"database":1,"query":{"source-table":5},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', 15, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",569,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c77c9b5e3cff560800846e5341c5d054a42fa1bc6c86044dc0d6e06b289e88aa', 20, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'997a2f4c519ac345a9692ce26be2b2e4953f778b171d6f9ddc3f45388a094985', 17, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'061d5c58546d3a9f3796d402faf2c370851731eeb76a4efa6757af143c8ad5dc', 17, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'16fbd95ca520aace7715302ab547f9a4b589086a6b23dedf78672f945f0b8fd9', 21, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'78a192a77d1cbfdc4fd0ed2e6636b234f69abb510a44c53625898e50f6d3b93a', 22, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'), +(X'402f4c923c907cdb190ec8244354fbd4add341c449210110a0254c87a1e96e82', 20, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ab9149a6c48349652259adce29354e943eebe7b49484d627d1a0373c4e4d13d1', 28, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'), +(X'36cc0fa1ba6292bf486c1da487216b8a40f8063eb7996e3c751c4dace274d63d', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi","Ekiti","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6e6be90fc49bfebd68ab03f4aa0e1d44ff340877fea806ba81dd3412a0132260', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi","Ekiti","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'), +(X'762c2eb76811ed2826df0d808c1d725386eab6c6ea1724bbbe8708d6c6eb6adb', 28, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi","Ekiti","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"7f1b38e1"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'181ddd6325a204ba424a36fc5d99e19d18b58187175dc86f626f57e5d02d5ad1', 24, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'7a2daaf2e0d835a4667389ef9f1904f2d723f57479ccfa4cf46fd2b8a2e77803', 26, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ea78f2dfbcb83d4318da6a1808799b2e3cbf7a62d6ba9e6ee35c6676239667ca', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'950a3ba0a35c78c16e557724cefe09cef4d403c13ee4354debfb9cf734b6e7a5', 22, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'53bc7bca69276fe524332e5ce2d1616a2cbe6e9dbba1b45fffeab588cddc8644', 6, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4622ecf2-2734-fe46-4410-9d6dd33188b2","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"70b4d653-0a42-4669-2463-30392f4ce9f5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cdd92d0d-fed3-d983-beb1-7461e4a50d94","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a8271c69-ffae-4406-db7b-21293c9a9490","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match:\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: \n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"stateName\": 1\n }\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'accb66921e2ccd4c178c4b37f5baf83812aceb57dc29a705fed053befc31ede8', 4, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4622ecf2-2734-fe46-4410-9d6dd33188b2","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"70b4d653-0a42-4669-2463-30392f4ce9f5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cdd92d0d-fed3-d983-beb1-7461e4a50d94","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a8271c69-ffae-4406-db7b-21293c9a9490","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match:\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: \n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"stateName\": 1\n }\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5ecb229f9057e3dcd820e9fcdf764cc66e68e3d5fc434804788ffbc018452747', 4, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match:\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: \n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"stateName\": 1\n }\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'56e5104e8f5c1e449c102236ba2c43b6093c6a30bdd1b8182a508deee5c4d841', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match:\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: \n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b346528bb3722e6c24eb1515aeccbc385c11d4718ed346ba684dc73eef27c39a', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b785c20c189cdb8805db097a03c86e13f7dd6a55852a4da50072b6520c003f23', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e0569b0ec1c6199c350d438859f8245093ca46674a02ca2ba0ff3c1fe2cce466', 11, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'98edee3f3a3894b9054b6e1bd54b84b17f32fdd5fb26ccd2482b125c786c7532', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'40174caa931f41d8612ffccd2c034e0d5316bca561e345a92aa934ff59e079dc', 14, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3170a8fe92196221148d626fb6a94062090036890a308e45551c21d6bf9a8efd', 14, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",538,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b4952b7fade183051a4a0a9904baa01dd81c90812b433fa8fb8de9b72389b6c0', 91, '{"database":2,"native":{"template-tags":{"filterStartDate":{"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a","name":"filterStartDate","display-name":"Filterstartdate","type":"text"},"filterEndDate":{"id":"da20a80c-0d62-a576-1b20-88ada761e33c","name":"filterEndDate","display-name":"Filterenddate","type":"text"},"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {$expr: {$gte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterStartDate }} } } ] } } ]] \n [[ {$expr: {$lte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterEndDate }} } } ] } } ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd9f21a9f6928e5cb77edfbcdc9a2c28695e3a9ef35fc9711a093034d22dcf405', 20, '{"database":2,"native":{"template-tags":{"filterStartDate":{"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a","name":"filterStartDate","display-name":"Start Date","type":"date","default":null},"filterEndDate":{"id":"da20a80c-0d62-a576-1b20-88ada761e33c","name":"filterEndDate","display-name":"End Date","type":"date","default":null},"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {$expr: {$gte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterStartDate }} } } ] } } ]] \n [[ {$expr: {$lte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterEndDate }} } } ] } } ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd94d783863fb80fdad28c13fb5d980e6b1f3ff6727526f43b990d7e9b82f50f9', 52, '{"database":2,"native":{"template-tags":{"filterStartDate":{"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a","name":"filterStartDate","display-name":"Start Date","type":"date","default":null},"filterEndDate":{"id":"da20a80c-0d62-a576-1b20-88ada761e33c","name":"filterEndDate","display-name":"End Date","type":"date","default":null},"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {$expr: {$gte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterStartDate }} } } ] } } ]] \n [[ {$expr: {$lte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterEndDate }} } } ] } } ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"date/single","value":"2022-12-01","target":["variable",["template-tag","filterStartDate"]],"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a"},{"type":"date/single","value":"2022-12-14","target":["variable",["template-tag","filterEndDate"]],"id":"da20a80c-0d62-a576-1b20-88ada761e33c"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bc3193156ba3637ef8a78302bec0ab44336889dd203f62fa43690c955ef33746', 39, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {$expr: {$gte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterStartDate }} } } ] } } ]] \n [[ {$expr: {$lte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterEndDate }} } } ] } } ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterStartDate":{"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a","name":"filterStartDate","display-name":"Start Date","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="},"filterEndDate":{"id":"da20a80c-0d62-a576-1b20-88ada761e33c","name":"filterEndDate","display-name":"End Date","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="},"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["2022-12-01"],"target":["dimension",["template-tag","filterStartDate"]],"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a"},{"type":"string/=","value":["2022-12-14"],"target":["dimension",["template-tag","filterEndDate"]],"id":"da20a80c-0d62-a576-1b20-88ada761e33c"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a47e6349a58fd73c5538ae417f67a336829ce576f26f069702aa8ce1b8a13307', 25, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {$expr: {$gte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterStartDate }} } } ] } } ]] \n [[ {$expr: {$lte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterEndDate }} } } ] } } ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterStartDate":{"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a","name":"filterStartDate","display-name":"Start Date","type":"date","default":null},"filterEndDate":{"id":"da20a80c-0d62-a576-1b20-88ada761e33c","name":"filterEndDate","display-name":"End Date","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="},"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"date/single","value":"2022-12-01","target":["variable",["template-tag","filterStartDate"]],"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a"},{"type":"string/=","value":["2022-12-14"],"target":["dimension",["template-tag","filterEndDate"]],"id":"da20a80c-0d62-a576-1b20-88ada761e33c"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'61046bb2a7fe7ab33c7f5e5378c615f1e18ba67ef7af894f624a4262a7e5ef50', 8, '{"type":"native","native":{"collection":"analyticsRegistrations","query":" // [[ {$expr: {$gte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterStartDate }} } } ] } } ]] \n // [[ {$expr: {$lte: [{ $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: {{ filterEndDate }} } } ] } } ]]","template-tags":{"filterStartDate":{"id":"2ef7cc47-3469-4f69-cf25-5dce8caaf13a","name":"filterStartDate","display-name":"Start Date","type":"date","default":null},"filterEndDate":{"id":"da20a80c-0d62-a576-1b20-88ada761e33c","name":"filterEndDate","display-name":"End Date","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5a45c0491622f6a66c5e23413db32e09603cc5ef8d100f2b2074246ded479dba', 26, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1554b62dedf70f2b146dc77308eec2411078600c9e5dba2412f66bc0e3d3f985', 3, '{"database":2,"native":{"query":"g","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ea415461ae1df3a48ed1ffc733cbd2cd393cd143c9dcdfebe731d911ec6f5ddb', 10, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"Gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e69ef6458442a4790e222535e0ab9be55ece58fba9716d674ecf2611ce6a8436', 14, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'325db0aea0a0963838f254a84a9c4dbea8909dbbdf56baa12399f3c279b8c6dd', 11, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"CCCount\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0a05ba26a01076469bdc43b8f48a105b816c4f71cbd036d8d6e21c32c8b09c57', 10, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"Count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6c75c372d8a0a248895638292d0ee84f39a3ba490e761d1f72ef63f63f7292c2', 11, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'40cd12870813399e0748517f79a95a036b2ed63f89fbe997c3e5f7bac5f74c37', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"85080b18-a42f-751f-611d-e635ee088698","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1b3e4391-6824-7a96-6a3a-e5c915e2452d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ae773e4c-fa61-ec1b-8a7d-42a6981eb35c","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"713c4cc8-bf1b-da63-89a5-d71b4d840c87","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd73f4589d43c728b2b7c0ad1ea9b6e3f1628a4ab531fd84b6e4691c3107b87bf', 17, '{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'09d142ca1fa73014257f2c49dda8ffe1dd50a51f286a248877ff1b75164d6584', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistrationInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , registrationsUnderAgeOneInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1ae697ba8a7cc335894df1e464708075dcbf51a52d3794fe106deb8ef0d8145d', 3, '{"database":2,"native":{"query":"$registrationsUnderAgeOneInfo","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b4ff33128db58875c068d2659b83a2c1c3ca8aa0ddc791a536b05e9a1078971b', 78, '{"type":"query","query":{"source-table":22,"filter":["<=",["field",341,null],365],"aggregation":[["count"]],"breakout":[["field",336,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0bd77e44f2400dd74e7b31546a32a094be414cbaada2375bfe4a6a9429b89932', 55, '{"database":2,"query":{"source-table":22,"filter":["<=",["field",341,null],365],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6604f33942e8c26276a168043420b7c84cadebcef9a6a591abd62568a3d95b64', 14, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"filter":["<=",["field",341,null],1825]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c226204ae787fa44d65a962cbd1105667f8f5ad8ce2e8303a3361742b4fb2947', 27, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5d63e55756293c29dd2b40ac6da70ecbf8dbf662c81902d611da0f07c570205c', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0ad39847654209c555ac16da84ad3848564e8a5224e2fbc58cd770cd809858c3', 2, '{"database":2,"native":{"query":"{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a4c12deebc3c94ff7eea4e9fc87f49bc64617f8c93c97159f582af5cf05a6769', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$totalRegistrations.count\"\n , ''Count'': \"$registrationsUnderAgeOne.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'99fc55c6fe04371beddbe0f4a321901bf5d82193007a37f2c63f04cfaabb0d1f', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistrations.count\"\n , ''Under age 1'': \"$registrationsUnderAgeOne.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'93f4fe6ada04f4cb43c6fd2da8bd0749088e1c6b96cff973bafeec27878f0630', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''Under age 1'': \"$registrationsUnderAgeOne.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6983a8fbceafde2289848a0ce9d49f1ea5263cb2994bbcc883681d2ebf8a8637', 14, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'467373f30468b28ac383038c167dd853b285e8583cdd8550715fddd51cf8bc7d', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration'', ''$registrationsUnderAgeOne'', ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0966091cb8d1e6ce3269b4c3da06213ca5cee2f7da88d46a0eaa95e9fbb8beb5', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c8cff77bebfde3176c857f28194157871fb4047a65b4f35f8f5adde96f1f838e', 6, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd9ba67a58a621d9fae7fff8fadf8c681166e2bb603620015464e8f70dff4fedd', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'99315b9c9bf1139499089f67400e73945b765e360964a1197e5e4358d53d85d7', 15, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'16b41d043d934318a7b441e284c41e58fb3574d5e9432291830075dce946c288', 406, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",343,null]],"order-by":[["asc",["aggregation",0,null]]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd3b5efb4c7f725f08baa588faf2a823fc827d26ede200f9c9793e8d350b8bd7c', 34, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",343,null]],"order-by":[["desc",["aggregation",0,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'017aeaddc6cfb740d8dd4119ee6b3229e2745dc1e4027369c084a349da74b2f1', 20, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9c46a51287449e1c70c13821f01899ee8c89acc775b239882fc264c80c06dad1', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }} , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {ageUnderOne: ''$registrationsUnderAgeOne''}, {ageUnderFive: ''$registrationsUnderAgeFive''}, {''$arrayElemAt'': [''$totalRegistration'', 0]}\n ]\n }\n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"ageUnderOne.count\"\n , ''< 5'': \"ageUnderFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'147e0bfc3abd41fce119c05ca00e31997170b47fa39b907e3c44687f515c4efe', 26, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ],\n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$group: { \n _id: { age: ''$age''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Duration'': ''$_id.payPeriod''\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"6a21c245-c508-83a6-0dc6-2b94bdde1726","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"a86cdd0c-6a75-19ba-f03a-af2674272730","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b273a5d1-daf2-399d-bd86-ee3703c3536f","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0b1ec6e0-d896-1b6b-285b-c6614f72b5de","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'547d36e8f78d2c28c87df4f8321e912aec3879d5227a4f102b19327f42a61910', 35, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ],\n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$group: { \n _id: { age: ''$age''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Duration'': ''$_id.age''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"6a21c245-c508-83a6-0dc6-2b94bdde1726","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"a86cdd0c-6a75-19ba-f03a-af2674272730","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b273a5d1-daf2-399d-bd86-ee3703c3536f","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0b1ec6e0-d896-1b6b-285b-c6614f72b5de","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9591f7b47628bcc12aa72daba146302cd31be8fa8c3198d1307fcc15adc6b8cc', 16, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ],\n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$group: { \n _id: { age: ''$age''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Duration'': ''$_id.childsAge''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"6a21c245-c508-83a6-0dc6-2b94bdde1726","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"a86cdd0c-6a75-19ba-f03a-af2674272730","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b273a5d1-daf2-399d-bd86-ee3703c3536f","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0b1ec6e0-d896-1b6b-285b-c6614f72b5de","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f3b910437606a0b56de94154233f81842549f0e270fc3928202509cf5130db7c', 5, '{"database":2,"native":{"query":"age","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dbedf013c4014072788a9fb0776db5a1d70c2ece8f9189540703a800f1c7601d', 14, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ],\n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Duration'': ''$_id.age''\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"3547950d-a3d7-91f8-d864-a291bd16c681","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"d527fdad-c922-1814-48ed-8fcdbfe93f75","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"361f0b08-bc45-676c-6497-ef9090aec72a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"6c6478a9-a1f2-a1c4-68f4-afbaeea44fc4","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd7c3a9c3320882c5dedd2a87d34ffc08eb49978f5e622ba9770813d06dfb8c8c', 29, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ],\n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$group: { \n _id: { age: ''$age''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Duration'': ''$_id.age''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"3547950d-a3d7-91f8-d864-a291bd16c681","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"d527fdad-c922-1814-48ed-8fcdbfe93f75","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"361f0b08-bc45-676c-6497-ef9090aec72a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"6c6478a9-a1f2-a1c4-68f4-afbaeea44fc4","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'897a387e853dfe4cd2fa0a0354642d0ede587315358cd312501369778d51b051', 16, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ],\n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , ''Duration'': ''$_id.age''\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"3547950d-a3d7-91f8-d864-a291bd16c681","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"d527fdad-c922-1814-48ed-8fcdbfe93f75","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"361f0b08-bc45-676c-6497-ef9090aec72a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"6c6478a9-a1f2-a1c4-68f4-afbaeea44fc4","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3c221d0298830c4f6fdeb8fdc0719cb024a3e58efe28be69bbdedf9ced2b1276', 21, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ],\n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$group: { \n _id: { age: ''$age''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Duration'': ''$_id.age''\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"3547950d-a3d7-91f8-d864-a291bd16c681","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"d527fdad-c922-1814-48ed-8fcdbfe93f75","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"361f0b08-bc45-676c-6497-ef9090aec72a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"6c6478a9-a1f2-a1c4-68f4-afbaeea44fc4","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cbe319d723c37487be1c372248210f6d8f3ceb42fdad1c854465831d5c9929a2', 16, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bb32e1d4863974831d879effbe420e8a08ec37814545302b641ba2b24a5913a1', 8, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true,\n \"show\": $count\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'308976c344f66e2ff7d71f8647aa380419d1a33d89351d7c985aa0a769670e5b', 6, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true,\n \"show\": count\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'53e8f2d53ff8509a2d931821330d0ae3f419811319021f9794fcfebb20028e14', 7, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'80a618f3d205c77a56b0a6909744ebf81d0e5e8b84ac7d24a2111052f4365271', 14, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'426f66bdc62cb8638d022d0fb77f8d5ede5cd924dff9f8e12dcf9e24fb25aee9', 18, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', 42, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"a1101e24-2f5b-9fdf-bfa8-276d003de12f","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"910660e6-3547-f474-4e59-cffb93d157a3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0d6ba8a9-ba1e-8740-72e3-14e117c5a433","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0160f2d8-6ed0-745f-a273-9e28f2f09b94","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'2b3ea1b28f13ff5bd4ccfaa6eb8d571d4e1fd744dcdf711be5785e3c7d7b0547', 18, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\",\n \"gender2\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Gender2'': \"$allInfo.gender2\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'32a2edc43d81d2c8b9ef387fbf109d98da16114cc19203ad979405dff3593aa0', 16, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\",\n \"gender2\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"gender2\": \"$_id.gender2\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Gender2'': \"$allInfo.gender2\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'19d8812824e840b49a5b86197e311837bf30e620fbe8ad4a9ca456887273002a', 17, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\",\n \"gender2\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"gender2\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Gender2'': \"$allInfo.gender2\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'da3705cb4a0c617cf03eec068ef9b5c2679af91874dd585b146b3beb7a85039a', 19, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\",\n \"gender2\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"gender2\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Gender2'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fc0c0d0a4733926c0c9afa193f1fd6c848616a096caa07d3eb52453a8057494e', 13, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"fd981c16-54b3-9e95-46b7-856d13867134","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"f6e460c1-41a9-8e05-dff6-b42ff83a7090","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6d70cbee-a852-6b0e-987f-9efd4a174911","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"191c78e6-1cc0-5253-28fc-dfa45b511a76","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6aa585b120ea2b235a7eecec7a08a207bd631e02c901c6e41d121d414f27c893', 16, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: false\n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"expectedPayment\"\n , ''< 5'': \"expectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6d6866407b561ba1433a03a93f3ae2cfc86f1c9379740839176597c54c90b8b8', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: false\n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'372c0c8a1c6a1a04c0103776801da6e395286ac1640482b800e326a409c89a91', 29, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n totalRegistration: \"$totalRegistration.count\"\n , expectedPayment: \"$registrationsUnderAgeOne.count\"\n , collectedPayment: \"$registrationsUnderAgeOne.count\"\n }}\n , {$project: {\n ''Total'': \"$totalRegistration\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'70a16df34033f8678ed43a7a9562fe59a6e88cf6fee556e4b0cd2a9cc65c3dd6', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n totalRegistration: \"$totalRegistration.count\"\n , expectedPayment: \"$registrationsUnderAgeOne.count\"\n , collectedPayment: \"$registrationsUnderAgeFive.count\"\n }}\n , {$project: {\n ''Total'': \"$totalRegistration\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5549b468c97900aea42ae359c886dea7b52f9c9b5928bde02343b5a2be5f8894', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: {\n _id: \"_id\",\n totalRegistration: \"$totalRegistration.count\"\n , expectedPayment: \"$registrationsUnderAgeOne.count\"\n , collectedPayment: \"$registrationsUnderAgeFive.count\"\n }}\n , {$project: {\n ''Total'': \"$totalRegistration\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cd048423b84998738f6796666ee274fa0c259e5d77a4b8bb61d780e9fa9426f6', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n \n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"0ade50d2-fd83-8f90-a001-ed753583b864","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"92183371-8450-3016-4a72-fd3a4471adbd","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"892225e8-5fe4-de0d-3b91-7836fa377e53","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"524919cf-2711-e218-e435-fc311603a650","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a78a668258e258627197bf2a790946151518dddbb36299e1e0722d9f684a4898', 2, '{"database":2,"native":{"query":" _id: false","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3e79a137f18d3e4570b9df8565f2352c72ab7dfb38b5aa503fed89dea8a14cb2', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: false\n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"70668777-5a3b-c1a2-c3c5-c8aa29a363dd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"00098baf-9b9e-7b77-576c-c8f8780ef580","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"66fc7e2a-107e-61be-71ae-13dda343878a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"acd89a21-9401-0eb9-4f6a-7db7f084c6ce","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5fd1f899b78019faab8e66d8a82b1e0ab5b5c67e6d9497418e87e5f4c7e5730f', 10, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"70668777-5a3b-c1a2-c3c5-c8aa29a363dd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"00098baf-9b9e-7b77-576c-c8f8780ef580","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"66fc7e2a-107e-61be-71ae-13dda343878a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"acd89a21-9401-0eb9-4f6a-7db7f084c6ce","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2b82c00d35bc216bda49ea0b4d5131bb45b6d84a56833fa08e7b06aed9ac79ad', 8, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"053b9cb7-28cc-80d2-ea11-e64e191e00d1","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"3bdbbf1c-18f7-c3af-7f3a-b43c9702bcd3","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"83686387-b14f-1fae-521f-7eb6e6185421","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"de7b2a39-c83d-abdc-3c42-72dde66363a5","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'44bb0149861844ed2c450c4df85f169aad0807085da0fa2d7b70403c190c640c', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: false\n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f10d2cb3-5a8d-9c7d-1806-6f05e179a280","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ced142e3-0b3a-c5f9-b23c-b630208189f4","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"fba7e92b-2b62-605a-2cf0-5750f95de2fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"20c992f4-aa43-2493-64ff-2843f98bc0f2","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b426dd57e9c15462b5e563f85450c224bedd67e7c138630940794c54644dc8e8', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: \"$totalRegistration\"\n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f10d2cb3-5a8d-9c7d-1806-6f05e179a280","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ced142e3-0b3a-c5f9-b23c-b630208189f4","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"fba7e92b-2b62-605a-2cf0-5750f95de2fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"20c992f4-aa43-2493-64ff-2843f98bc0f2","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8e3682628842b3641eac2f868d1a6591415eb37ac38a44621042d3f890e79bc1', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: \"$totalRegistration.count\"\n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f10d2cb3-5a8d-9c7d-1806-6f05e179a280","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ced142e3-0b3a-c5f9-b23c-b630208189f4","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"fba7e92b-2b62-605a-2cf0-5750f95de2fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"20c992f4-aa43-2493-64ff-2843f98bc0f2","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a6b2aedc46c9ee4b631f095551897c9c04131be7b8e4bd6d3c93a1d9af01cb8f', 14, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: \"$totalRegistration.count\"\n , expectedPayment: {$sum: \"$registrationsUnderAgeOne.count\"} \n , collectedPayment: {$sum: \"$registrationsUnderAgeFive.count\"} \n }}\n , {$project: {\n ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$expectedPayment\"\n , ''< 5'': \"$collectedPayment\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f10d2cb3-5a8d-9c7d-1806-6f05e179a280","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ced142e3-0b3a-c5f9-b23c-b630208189f4","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"fba7e92b-2b62-605a-2cf0-5750f95de2fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"20c992f4-aa43-2493-64ff-2843f98bc0f2","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7e25ff62f0b6d0f480315e1faae05f461f2d3ee92a75911b56becc036888e38d', 19, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''},\n {$group: { \n _id: {totalRegistration: ''$totalRegistration.count'', registrationsUnderAgeOne: ''$registrationsUnderAgeOne.count'', registrationsUnderAgeFive: ''$registrationsUnderAgeFive.count''}\n }}\n , {$project: {\n ''Total'': \"$_id.totalRegistration\"\n , ''< 1'': \"$_id.registrationsUnderAgeOne\"\n , ''< 5'': \"$_id.registrationsUnderAgeFive\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f10d2cb3-5a8d-9c7d-1806-6f05e179a280","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ced142e3-0b3a-c5f9-b23c-b630208189f4","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"fba7e92b-2b62-605a-2cf0-5750f95de2fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"20c992f4-aa43-2493-64ff-2843f98bc0f2","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'993d1cdd7d4951317ef0a84d0e9550874b24aaecedbba68d921cfa3d7c1bcd6b', 14, '{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'17ea3b62829494750fc47e1bf4544511b9eb8f87cc685c7f45c98fb21bbfba0e', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e18d19fb4bead92ab27325b4892d8195fe33196c89e2b6f573ac46ecc774fdf1', 17, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": \"$_id\",\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'22b9ea8ff1e95b2f9396404034d3b85b9e66c206fc5a4df0ae453f68450ccda4', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": \"$_id\",\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": \"$_id\",\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": \"$_id\",\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ade2d165ba5878216cd2632098f32ee4c43a394a077afb8e7e6c33d6d8c7c351', 3, '{"database":2,"native":{"query":"false","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1a89139e3e5a88ddeeb236049d704c2d4a1293434a290423acf6c1f15e71fc92', 13, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'105ca1580fa6fd5a6859440ee428dfc73f369759a2ce44f3dcb62250a9c72e10', 9, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeOne: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n , registrationsUnderAgeFive: [\n{\n \"$match\": {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 365, \"$lte\": 1825\n }\n }\n },\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$unwind: ''$totalRegistration''},\n {$unwind: ''$registrationsUnderAgeOne''},\n {$unwind: ''$registrationsUnderAgeFive''}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n , ''< 1'': \"$registrationsUnderAgeOne.count\"\n , ''< 5'': \"$registrationsUnderAgeFive.count\"\n \n }}\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0273592c77b26db8ca32ed0221fed34fa9cf47ddec9d381035b7b6193278c650', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c36610e9f626ec7e2fcda1abe25b39501e2e8ed4599be51e830c76f556bdcceb', 3, '{"database":2,"native":{"query":".count","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'817687948b75c5f3490dcf55ed9a98a8ca9902bdce8629d174a0c766cac07eef', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'18c40a7c34e337d885918ea2a07b868dd989bfa8d17ff39b42993c2bcb01b1c4', 14, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": \"$totalRegistration\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e37c29386dc8c3db897a17dcac7f735aa8def930600f7cfef1d9bcc29b209205', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": \"$totalRegistration\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7b976d15d1c795278c11d1b1ebb7136bb393cab056f94ac1d682134d185428fd', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": \"$totalRegistration\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"totalRegistration\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'35e213817e0c0a7dc682fb64a301c132828a05627e20c7ae95e1c060f374b3a3', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": \"$totalRegistration\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e9694292562f2b6fe8c101e2ca53fc8ea08277f5baac76d588f2889de4323b74', 16, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'28b5a88e16d59a8fb979e53153870cc96f7ad1da22ccd825e3ad412d53e8d263', 8, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"name\": \"Total\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.name\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4565267b-3874-7d28-5e4b-a646b6cb1d29","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"129a23ab-830d-fb36-939e-e5efd904ff5b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"234a1d91-63fb-e1ed-b875-41e06aa0b114","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d1a572c8-5921-590e-0a76-03ed36252b54","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b98b21e612ed3893c78bb67e30db5790e28193f4b84c5d938947f669ff81d29c', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"name\": \"Total\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.name\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"631c6fca-5a61-eeaa-7782-265defe4cbdb","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"10c6f1de-0f99-b0da-9836-470c05c19f35","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"dc12844b-1e47-50f0-3fc2-f9132e51b6de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"c0a9b9fb-8d1d-b33e-5a04-5fe799c6419c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1db1f00239707161800255bb54c9dd0ce36355700189609c40c949e9eb49949b', 3, '{"database":2,"native":{"query":"\"Total\"","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c62991acea767372117ef217bed17d4f1856fbee31cd8ad10f8af24b2be2236f', 8, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"name\": \"Total\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.name\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9548b2c52d3a9fc2c7ac606483875aba0e89aefe3cbf40ea6c972787e423a571', 8, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"name\": \"$Total\",\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.name\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ccfca4c1582308d0b6093c55ef583875b40e1aea2d1cfb967582ee3b995310fe', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"$totalRegistration.name\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b4d224690668676b93217acb9b451902bde8ddff0f1cef46f833e57085d3323f', 14, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fe9377579720c844886cd4a903eeade8099bccea05206be846b6360018a8479c', 10, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'54b41aed3cb1b79ec94b376c830ed4df48b50cdc0184f5a7ccfd180cdb48892d', 14, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3e8d1c963d8999bae925fd5f0165994c82f67050c287399775c811d479c012f2', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5585a2485a362f93b1b9680acdbd3b369e5443b3499016f8e7f2d969bdde7415', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c58e2833a4d66c65b4790b7c462538cd720e792b56ad38ed7478fd8b562572c1', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total2\",\n ''Count'': \"$totalRegistration.count\"\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'86bcc36ec725ebedd8812302391353526c1cc6a450f1f6743a91d62aedcb7182', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9b1516b038997e68ebb7ad78f15fba01dcabb12f2a63d8d1fbc82bacd2c09858', 5, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8593eeeff2ec6bc9cdb140ef1db0c7aac6038e196263c674a567b0c144ef88fc', 10, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: [{\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }]}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6ce24b93ab0c859bcd76d453e4efd8135027c3e3222573173849a2db0688bc6e', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\",\n ''b2'': \"< 1\",\n ''Count'': \"$totalRegistration.count\"\n }, }\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c6d2173c49aac3cc8a186ec084efb437edad4ee94d6e0ea365868a10ab684153', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, }\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'15443db136f483c9a459933cd0fcd799e5970147efc905bfc09480d041b2f81a', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, }\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, }\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'df540c9e67908920d7474e423798538d02e9bcda987210499f801c9b4422af23', 10, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, }\n \n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'297fb85e80bf433ce44d53adf683a64b2721bdedcb6b55c26f84260d7cbd4237', 5, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n{ \"$addFields\": {\n \"totalList\": { \"$list\": \"$totalRegistration\" },\n\"totalList2\": { \"$list\": \"$totalRegistration\" }\n }},\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, }\n \n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4eb4a6e102567fc318178cd0b0421b8e4447fcb8b572b7a83a3dabffddeae606', 5, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n{ \"$addFields\": {\n \"totalList\": { \"$list\": \"$totalRegistration\" },\n \"totalList2\": { \"$list\": \"$totalRegistration\" }\n }},\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n }, }\n \n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'23814cf96b8ba3c460289e7e80db351198de32c6619082281b2d37ff7b26f4b8', 2, '{"database":2,"native":{"query":" \"List\": {\n \"$substr\": [\n { \"$reduce\": {\n \"input\": \"$List\",\n \"initialValue\": \"\",\n \"in\": { \"$concat\": [\"$$value\", \",\", \"$$this\"] }\n }},\n 1,\n 50\n ]\n }","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'479cbc7de7bcaa65870fca40e7b602d1aaae4bd0ce41ec7157b8b066e866ec80', 6, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n{ \"$addFields\": {\n \"totalList\": { \"$list\": \"$totalRegistration\" }\n\n }},\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalList\"\n }, }\n \n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"b9af62b5-fc1d-bd31-7397-0213d47f319b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"db4226c9-05ba-2ce7-a42b-6eee93271867","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"13317405-4327-3af5-7d3d-b436554be933","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a86e40bf-f0c7-93dd-9802-b4a95da37f48","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'852707d05e7d8bb3c20a1147b07a73d8bb960cc8cb08f60aea3e6cbb29669c76', 3, '{"database":2,"native":{"query":"down","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'16a4314a168b2cbc5dbda6c9b71d89eec92d0fbc87a7d934fd89f63748955e04', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n\n \n }}\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Breakdown'': \"Total\",\n ''Count'': \"$totalRegistration.count\"\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4ac0988d-b903-bd85-b60e-be43d373f802","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"3300184d-128d-52fb-777c-4ef79b7d3446","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"85954987-0e53-669e-81b5-1543f00604de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"c1af8cb7-1bec-3148-8b48-0054df8818a6","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f9f4b172d26fd1d1ef167606bf5c34bfaf51ac83e5b73b700fb9b314a2a92fac', 7, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Breakdown\": \"$totalRegistration.count\" }\n }},\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"4ac0988d-b903-bd85-b60e-be43d373f802","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"3300184d-128d-52fb-777c-4ef79b7d3446","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"85954987-0e53-669e-81b5-1543f00604de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"c1af8cb7-1bec-3148-8b48-0054df8818a6","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f37e62eeea2c817699634a6c6e767f78ee71b987ac648c82845d768772eeadb6', 4, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Breakdown\": \"$totalRegistration.count\" }\n }},\n , {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"275ee038-6a6b-c341-e776-ee64f9d985c8","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"9c41b987-ffa5-2aa4-0793-eaba293c4f6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e160c309-a6af-bd2a-88b4-4851c5fd44f0","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a161a186-544f-2b2f-757d-0ecce3594e8a","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'137b941e31975ca4fc7069a6e9a0a0cf3542e256fbfb3f4407b2baa0d9d78acf', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Breakdown\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"275ee038-6a6b-c341-e776-ee64f9d985c8","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"9c41b987-ffa5-2aa4-0793-eaba293c4f6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e160c309-a6af-bd2a-88b4-4851c5fd44f0","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a161a186-544f-2b2f-757d-0ecce3594e8a","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ccfc2450d55e642b68e1c4526c76986e00e3b010d2aa2db791ac14df410f50fb', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Breakdown\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalList''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"275ee038-6a6b-c341-e776-ee64f9d985c8","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"9c41b987-ffa5-2aa4-0793-eaba293c4f6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e160c309-a6af-bd2a-88b4-4851c5fd44f0","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a161a186-544f-2b2f-757d-0ecce3594e8a","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e93f674d7dd0bb90ad9886eb16e5ecbfbd173d51635e892f9f1670ccdb11aa2e', 2, '{"database":2,"native":{"query":"$totalRegistration","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f042b992f63ff7dcacb77506a9ff4b6f0d47e3b5888ea653f118cf2cddb3414e', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Breakdown\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"63c7efe1-c1a3-01a2-77b9-33e05eb411c6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cb4fe90e-04c7-7e16-1751-bc40d148776d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"a259071b-2a79-b783-2a5d-0e429ed19f37","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"334f28e9-dc25-fca4-0117-aac17e688f39","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a36a5f1c699041c7d1766511e1eb50792db863fa5bb712d362c989120f0e0eb1', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"63c7efe1-c1a3-01a2-77b9-33e05eb411c6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cb4fe90e-04c7-7e16-1751-bc40d148776d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"a259071b-2a79-b783-2a5d-0e429ed19f37","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"334f28e9-dc25-fca4-0117-aac17e688f39","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b9734da8b780d042d6a0f5c23d10c97131b2cfba641e08740a30f6c3a04aa21e', 7, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Total'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"63c7efe1-c1a3-01a2-77b9-33e05eb411c6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cb4fe90e-04c7-7e16-1751-bc40d148776d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"a259071b-2a79-b783-2a5d-0e429ed19f37","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"334f28e9-dc25-fca4-0117-aac17e688f39","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a135c1136604effa25bb7b7c6f985edca17d1defdb48583986d3eeb88f99ea81', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''count'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"63c7efe1-c1a3-01a2-77b9-33e05eb411c6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cb4fe90e-04c7-7e16-1751-bc40d148776d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"a259071b-2a79-b783-2a5d-0e429ed19f37","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"334f28e9-dc25-fca4-0117-aac17e688f39","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'519b064e4846a7bbb7006c4c1cc95ab20250cf2debc841548883f988dfeb8fed', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''Count'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"63c7efe1-c1a3-01a2-77b9-33e05eb411c6","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cb4fe90e-04c7-7e16-1751-bc40d148776d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"a259071b-2a79-b783-2a5d-0e429ed19f37","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"334f28e9-dc25-fca4-0117-aac17e688f39","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd41fb35d1e4646d58c073c30002a312d4468953beb14296a7302b633710610a8', 2, '{"database":2,"native":{"query":"totalList","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b6e9f174346731e582574d8e2b54c218df649ac253c6fe26c5de4a4bb580fa80', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': 1\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8ae93020772725b193cda3bf3ae8f9e00f150bfd9e9229dce5759d498b845a41', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalRegistration.totalList\"\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'459963782c47e792bdf5ede59bf7ab8897a21c34f8e4f78822e31bacb77e1cba', 10, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"totalList\"\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1c7e5bd9fd324c1453e34b8fea353290f22c14ea0157a039363c5e16f619487a', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList\"\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f599322d41be1283bcc67dfaed01182d3835f9b30a652b70ff1c0c5a472bba88', 9, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList.Total\"\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'59467922f08009f82b46ac98645b82549766f1692dd1b9bdb098091cd3b022a7', 13, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList.Total\",\n ''totalList'': \"$totalList.Total\",\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ef9d77b65bb69c1ce5fbcd131d247daa077ec0211d5dff2d193e61d4ec0c79ee', 10, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList.Total\",\n ''totalList'': \"$totalList.Count\",\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b81ee3404f686ac97a5fdbcbd44e347d7380d9969db5c6400e53070b65e979fb', 12, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList.Total\",\n ''totalList2'': \"$totalList.Count\",\n\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4a2f4477ab4fa159e87c2a03c15e13a24e6e140f9fc90fdc82a01c65e869a66a', 5, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" },\n \"totalList2\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList.Total\",\n ''totalList2'': \"$totalList.Count\",\n , ''totalList3'': \"$totalList.Total\",\n ''totalList4'': \"$totalList.Count\",\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'38eb46b019db007a0b0e5652457a46c2762db241915cd60edf747cfe391fb703', 4, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" },\n \"totalList2\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList.Total\",\n ''totalList2'': \"$totalList.Count\",\n , ''totalList3'': \"$totalList.Total\",\n ''totalList4'': \"$totalList.Count\"\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9d0123ad0637320de8555f501eada3ca5045adbcfc76fd7a12ca08c59fa6843d', 11, '{"database":2,"native":{"query":"[\n {$facet: {\n totalRegistration: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n }},\n { \"$addFields\": {\n \"totalList\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" },\n \"totalList2\": { \"Total\": \"Total\", \"Count\": \"$totalRegistration.count\" }\n }},\n {$unwind: ''$totalRegistration''}\n\n , {$project: {\n _id: NumberInt(0)\n , ''totalList'': \"$totalList.Total\",\n ''totalList2'': \"$totalList.Count\",\n ''totalList3'': \"$totalList.Total\",\n ''totalList4'': \"$totalList.Count\"\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"cb70c06b-2c4d-d96d-5938-2c4cb45ae10e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"37c2d193-1635-c412-d5b2-597634db9a6c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b5f23e9b-2824-af79-5294-b9170629bdf3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"a7b299b7-153b-81ad-6f58-c4b383302e50","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f9c698e7761e53052954214bf2cbe176e81991b292c621f6f1ae149f8b7c6d9d', 12, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f514b764-0a86-03c3-841c-419806f2a6ec","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bfc151f1-1191-e98f-7e88-709fcd66c0c5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f95305f2-9332-ae27-894d-adcb77d556c7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"1c17e25f-c99a-74ab-2b09-9a85e57f270c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e0def3e4d8d761d78e431290ccd5f51b5c4d71adb8884000f8051ce9ce003590', 12, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f514b764-0a86-03c3-841c-419806f2a6ec","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bfc151f1-1191-e98f-7e88-709fcd66c0c5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f95305f2-9332-ae27-894d-adcb77d556c7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"1c17e25f-c99a-74ab-2b09-9a85e57f270c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f787513f112713a42e7490996e57de158c37315a6d89785ee61ecab436f163ab', 10, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''PAR 1-30''}\n \n ],\n default: ''Non-PAR''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$match: {\n par: {$ne: ''Non-PAR''}\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f514b764-0a86-03c3-841c-419806f2a6ec","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bfc151f1-1191-e98f-7e88-709fcd66c0c5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f95305f2-9332-ae27-894d-adcb77d556c7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"1c17e25f-c99a-74ab-2b09-9a85e57f270c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'778bd8a5e81b8ff5392f51c54be10575be175c6507b067a6d00329c3e0be8302', 6, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {[{$gte: [''$childsAge'', 0]}] }, then: ''PAR 1-30''}\n \n ],\n default: ''Non-PAR''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$match: {\n par: {$ne: ''Non-PAR''}\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"f514b764-0a86-03c3-841c-419806f2a6ec","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bfc151f1-1191-e98f-7e88-709fcd66c0c5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f95305f2-9332-ae27-894d-adcb77d556c7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"1c17e25f-c99a-74ab-2b09-9a85e57f270c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd79c8af50440a36f8b4097aa2dbe83e627bf2dee2b03f718af51bba98bbfd0a2', 3, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {[{$gte: [''$childsAge'', 0]}] }, then: ''PAR 1-30''}\n \n ],\n default: ''Non-PAR''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$match: {\n par: {$ne: ''Non-PAR''}\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9adfda41c9bf01f631fbc4db405e3af769de6724d4a7cb81f8dca102d6dd00d0', 10, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''PAR 1-30''}\n \n ],\n default: ''Non-PAR''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$match: {\n par: {$ne: ''Non-PAR''}\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'59b58fe68670bd14b7902abc13d2e56fd853100cf2f53885a084a62392d0f40b', 12, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n ,{case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n \n ],\n default: ''Non-PAR''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$match: {\n par: {$ne: ''Non-PAR''}\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0cbfeb0959a973a04a0aaabb2c83e453b86da3bd0dd462d6259aa896ec935699', 10, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$group: { \n _id: {childsAge: ''$childsAgeInDaysAtDeclaration''}\n , doc: {$first: ''$$ROOT''}\n }}\n , {$replaceRoot: {\n newRoot: ''$doc'' \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n \n ],\n default: ''Non-PAR''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$match: {\n par: {$ne: ''Non-PAR''}\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'efa0a55b3f824a07d21053a860c8288f1e3d0e4e1190ec9258c5fa9d38a8f41a', 11, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n \n ],\n default: ''Non-PAR''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$match: {\n par: {$ne: ''Non-PAR''}\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''PAR Category'': ''$_id.par''\n , ''PAR Size (Customer)'': ''$totalCustomer''\n }}\n \n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b06a37974006b42f8366c21fc9f454a52e7106623cc17f2ad548f3c988d78fea', 9, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$childsAge'', 0]}] }, then: ''Total''}\n , {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''t1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'fe1ff39e1fc762feac14775ec4a92f87792f50e2169b609d8ed3fb00146b7a38', 79, '{"database":2,"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'03d62b58fe4f97ab157c21e397f7761926defdfd1f9700b6e587ff870e3dc86f', 64, '{"database":2,"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'296c0216f91d0eda02da730fb6c71bbc0c5426b8118ebcfc1bb3175fe817dbb3', 107, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { $dateToString: { format: \"%Y-%m-%d\", date: \"createdAt\" } },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fdea48ae5e3517640f11052fbc4583c60fbc0842978e58dbce0088f21359b0b8', 52, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { $dateToString: { format: \"%Y-%m-%d\", date: \"$creadtedAt\" } },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'48816d54b67584c1d4eeccaf66b963c5aaf65a8a66655fd48b292e4eeeae42b2', 51, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { $dateToString: { format: \"%Y-%m-%d\", date: \"$cdreatedAt\" } },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1ff20c01403015d81ef5813f84649ccf423763b72c62b07a22e36177f4c8dc93', 65, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2d2a5f4ee1f19b9e5d11969bc5b1a7c8f772e9c8c1f1a454661c14737c48d723', 36, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } },\n total: { $sum: 1 },\n state: ''$state''\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c0e6afe2e43e4d8568603ca265bc7ae2a614a68689b532a9f12307c42e18be88', 29, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } },\n total: { $sum: 1 },\n state: 1\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1a60c569eb370dd9555593d821ac2100e0dd619c513be8a14bad19bd2a57c98b', 56, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" }, state: \"$state\" },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', 78, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f502e8aa91819f265d7a6c5655e86608c088cf43b2d52f43655291bab0a099e9', 17, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'071ebb96a2240f5f08d2372bd1a9dc507ce99205d830a1c3c81ff20c10fc47d0', 17, '{"type":"native","native":{"collection":"analyticsRegistrations","query":" {\n $group: {\n _id: { date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, state: \"$state\"},\n total: { $sum: 1 }\n }\n } ","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3454eeb16db9828f22794b1a4c51791120d6b3d07a25ea462749eaf2ebaddf23', 40, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }},\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3a110239aef48554947a332260143dea17603c216d12fac6b31ff65aa171ce67', 16, '{"type":"native","native":{"collection":"analyticsRegistrations","query":", state: \"$state\"","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6fbf2e48af25104939dbdca561d89812f492d85a4b51c664679507ff6d583e1a', 43, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } },state: \"$state\"},\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd765c1decfb307887d302d83f77e9c543306bb88684895e7b4bb9ce56b3b3037', 63, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, state: \"$state\"},\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1b1fb610b96b65cf8f3944fb537997be797b70b041543e3edf37e5625ba2e718', 46, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n state: \"$stated\"\n },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'27ec8119e26614e4f0042e3511e6b8f02a56cc714d463fa027c87af0d110b971', 153, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n state: \"$state\"\n },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ec1ae01d503700a3e953ff34fa39fcd0aa36405ca1e5f19f5dfb1d0bddaddc13', 174, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n foo: 1\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b3f3f7a637b60a2b0e50a054bef606453c3f9ae0ebb9a73e74de807a6d5f5a82', 34, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\",\n officeName: \"$officeName\"\n },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c376f69208a0a43bdd689b8772e9f7d0a87cfcf616c46abde029549580fbcb53', 4, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"stateName","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'323c7d51bb8e07c9c23403536a55661ed5a8075fd8718e998ab41e461d784d68', 36, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n } \n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'116614bb82fee16792ac1fc20a260fbc7a18583b38246f5e4551f8dd7ff90ea2', 4, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n $addFields:{stateName: ''$_id.stateName''}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'23ed5787d287cd41ee7ada517a8197e893b340e62ae49d5d384a92f16995e94e', 35, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName''}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b8b8efb26815e74720c5317573ae48187220a3b8e982ebb5653e835bbf5673c1', 64, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5162787eb8cb5d28d32a6091e0e3c148b27c952ece7778d1e7c83d7801f4be05', 69, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'870354bfb47ae6a79285faaebf97271ac33f997af9d58e7ff8c8d4d7ad54e61d', 107, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'154bebf2f1eccbd0c5680b9624e4b5432dfdab25f5dcdc805418a5df5c938fca', 68, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''estimate''}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'86ea6109ec5b95dca82612d4c8b655dcba707a81957544626b995def93dcbb89', 54, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'77f8e378211f82720682a5d957c6462b3d5bcba1dc3a5972fbd38cdfcbe5cc01', 48, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', 162, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd35f7fcea980fb834f200f62364dac19663dd0721069c81dda9a141225ed5570', 75, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"f4c2dfaf-2fcb-d8cc-304e-3df31f4675b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"category","value":"Lagos","target":["variable",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'723a0c59ccdbd30f5683d80e3559a446df61129817ab1a19c47ffc8a0dcbe145', 52, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"parameters":[{"type":"category","value":"Lagos","target":["variable",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b20ba15be08bcd1ea83ec4d009769ab5a9ff7d57e3c0037ac5b046ef339ea3ce', 40, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd1946b514cfb6cb56119a7a1b63ef95f8e4c60544a6a0513f4dc146509fd6fa8', 259, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4d0f76101bfe84da0d24429df9a9c4e1dfb911057870fd9b124fc5d004ac49ca', 192, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":true}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5ee9a9fff694412404b82bab2c3d4fe2478c0d34ea36acbbe7dffabc3ddafc23', 45, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":true}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4b1115b829beb3e7117b4a1ec0ddc7a711407d8e81001aeea1c64c7080f8b92a', 79, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: { \n date: \"$date\", \n stateName: \"$stateName\"\n },\n total: { $sum: 1 },\n estimate: { $sum: 1 }\n }\n }, \n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'566e0b776aa52fc2c11534d5c18125a42f1cc886dd34f041d1bc14dfcfd3e7e9', 47, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n \n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c5eece399eb69e22b9f64f133ef8d37cb5160d9bee117651e83dfd3e3a9dd727', 82, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: { \n date: \"$date\", \n stateName: \"$stateName\"\n },\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n }, \n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6791f6811173e65aacbabc6a96f3966c1ef459e36c29a9caf59abe1099e6efdd', 99, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n }, \n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'749a667c2f4ec250aa9a2e01707197fea4360fc3971f6d89e68683d0a02c55a0', 70, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {\n stateName: \"$stateName\"\n },\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n }, \n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'91eaee741eb1e83cc0f0c34eef2caeec2f63a8fc21dab0b4eff34f28969e86c4', 50, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'31df210fac8c7583b64606ed09282802ecc9cd2ce7aab443fb2009c3c376db59', 39, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n }, \n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4c5304b60deeaf63720003412b1264647be7fe5802b4415a91e32ec41e6e3287', 22, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n $addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5fec2e8c66474264f68a8715ef6e2dde49a9caa19ebcd958aa5bfd1dc54cc0f2', 61, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0227386abe94134d8fd911a85d103c92ecbf5e56c6af7238480c5814e860eaeb', 69, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {percentage: 1}},\n { $replaceRoot: { newRoot: ''$percentage''}}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd557a8db6cd0242b7d0ce0686c0963d74820cc8c981a85507319ba8e70e6b762', 51, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {percentage: 1}}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'37bec23db86982ae6c72a78d0f0dae6d95048b1467e6431698bb9d3a742d680d', 111, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {percentage: 1}}\n]","template-tags":{"filterGender":{"id":"c8b4b1c4-ad15-f4df-ee0d-87bc2e1682be","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"afa15f25-4391-18ab-2e1d-93a037a9227a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8fddc955-9b5e-7557-d5f8-9ab33dac7145","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","required":false}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'dcb09580ee33d82d5bcbf0eb15904173beb37e2bcac4793fbcb1c12f80549535', 31, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n \"$group\": {\n \"_id\": null,\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n]\n","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'03ba3df097e71aab0441935b674b73bc9669cf32766f380db5f3fdde15e7be0e', 33, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {percentage: 1}}\n]","template-tags":{"filterGender":{"id":"43f6a1f5-12f8-fe12-be51-560f9ef0d5bf","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bb393f42-4375-7dc5-ac6d-05575846902d","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"72dda2fb-8710-4175-3040-e1169d8846d3","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0ec46fb9b72cf9b5982b9f7bdacd8077e49dd3a38aa6d1f59f60945a80f4a2c2', 111, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'579d5c4178a614dcc29ec1b5d63035e64243347e0ba3eb3bb52f9104cbd3bfa7', 372, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b11c4fcbec90533a99ead57314f937b67ec8885bbfa8eba86b3c06fdcb029cbe', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi","Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4cb8b6d7cbff10a126a4e3a1d7f9a3437e5e2bbe514b0eba1355ee7f9bfc588a', 99, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi","Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'886787bde8b7e14b6e44e3c4f75e7f9613c001432cfcda6c21be34a4f2f3e72c', 91, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi","Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'1f46c5e3593611053c9273fe950a11c1a4ebb37d2d95c96f944912a6e4495017', 82, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi","Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'af45a111a319ba356b8c19edab7b3e118ab50138dab3301e53fba62afbb526d6', 68, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'8a6efeaad41d11bf8eeaec29176fa2e497874ee85cd84d1a2f1dca82640bd7db', 63, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5bd78c6168ce38f580e558ea6291fcaf891574dde74c1f4d1f245d7fa25fb7e6', 176, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a3aa392051de9d060e8705d6fc5b9fea8c0dfe2802d0513fa9951a9dcfc30d7b', 114, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'73efa2684a12a5f370c72bb525caddc70d31992a01f0f80b1e1210fd8f47c862', 333, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4f56d2b73cd531f8dd2d810ed21a352db07790f91475856182b581f4746ea789', 208, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4c4f8290c5f61b59f74708f28ead147bdf980c03979411952f7cf5fe52b51143', 78, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'b099c15f38b4eec458fbea58e9089cb5b995cfd46760caef0507423f1ffde119', 157, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd5b0ca7a744ca1f1137b6f28fd9da11b469bc2d8223fa6556430f7cbdcbbc1cf', 85, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'b677c6eb630334925b3323e8c7b28f6980666dbb962842e7b8335bb796d11345', 118, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'775a4dca803769ea069de3df8876fd59dc8119b7217bed62e22300b19b86a0ba', 220, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'7127251391977e6a251eb48f3644d718594d16bd868187d77e1dadf7ed4e53c7', 269, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1de132f7130609c44df0774d21ba508556f32dad8ed17b96a260f3fdcace2988', 126, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti","Ebonyi","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'42a60b347d5e8c386d622ad560555cf48eddf49251c7b962a88d23cc4217c81c', 96, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti","Ebonyi","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'036f7e6720f1da3b69b989443de1e086460ca020e43a63fb52280b6c7e30ed01', 103, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti","Ebonyi","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'c0a0642354209236498d4533e3e5110938b8e1f3555d642fe3f92430342e5e2d', 178, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ekiti","Ebonyi","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'df229f37f717863850e5c863c14e70f3d8590edbff50d5a03f74c5a8f573149d', 235, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'dc7115baf80e3bb28bded35917b495cc88644e456f93e6e7e9c1841c8b133bfb', 168, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a1cdf4a0cecf29c198ca650ecf5c3fd20a3184db129b01ac85a33b4a91d64e46', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'da477431496438bc1c5d556093e79734c54ee15cea42a471b6f8c6ebb54a088c', 209, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4df598d41c7ebed17a29cb3efa301110b661d0440393576b5337e4781e2c0e9d', 537, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'231d36e14b3b82cca85c23bc36ed6fa315ab0c3414340fc7d52aa850d11f7433', 400, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'93e12b38e733f2c333e49d7e81543e79b524d1e8775c5f3f7b775c72e91fac30', 418, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'2e0636b791d6868084eb0f2b040bb54668605b73fcc72f1db22a2b5db6ee22ab', 315, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5aeff364478391d4e8f1e8e2b3a4be8718590f50e62c2f0a271ea2a77b27c6bd', 183, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'8db0a46f470471cb73c5197bd519a46089b33c89ea23fe011fe0497e22c01448', 218, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e17fa347a6a4e0a27560e068bf691aeb5f5d8517e08992ae4004710786e87694', 323, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'5c6ecec8a5225858b4e0b17984e2e07860cc70dca3d1dea71f57614046e7a7de', 241, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd0d4cf7ea04458ea60edc41a6e6eb5546fe945e3190deafb866c2b2653579c72', 310, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'dcb1f84e7c817ce0a32272ddd0bbd25a76c39ba7485aee334c0bd70939c75201', 308, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fbd937e8f5f565339dca6b19ea29a9e3ac671519216baa5f21db788dff05beab', 543, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'481465bc092917a06568417c15a2abd812f7b5c359c357e0f9432ca3fd34fcfd', 385, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3f120f0900a8d11d943bdb897754c639773fc215acdb54fd730c7f6568846178', 66, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'c28ae36d38cbb947883eee7352876ed6c241e3ca944247ddce11fd1f15559950', 128, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ce5d3391a9a01803711bffb2601df528bfc2ae5b09c37bc84dbdc73e76e2ca42', 132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'3ee3deb9b9427d856aed0fc3ff4fe65aa98e7d4c4ef22c31fffd0804e158508b', 132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Ebonyi"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', 223, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'784071150b0ca29b0d0851f48238a004bdd697ccbe5322429a393c312c8bb2cf', 21, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["aa"],"target":["variable",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'643499d70fda7415ab9db3ab16da522d139233c4905e331536281053e2279cb1', 77, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["aa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a013f4caa6ee5b7b2c946b1222e8d41622574125ecc54a4aa1f94b8af4c3f7d7', 104, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["aa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6709707136b7b3a7109102bfd3331226b7418a51b879ffa7228a00377568c574', 115, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["aa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'028f2f8cac01b6ddd73953582fdea3fae45c5d58fa21ab7b999502d930bd3928', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["aa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd45213ea414838f337e40886f53c9a37eb8c96173f0d810f58e591e2f54de28d', 94, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["aa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'12b52a311cb6f37eb4476b02d0338aa5c12793e7e348d2024a8f7dc1f94c2982', 155, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"string/=","value":["aa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'8adc88afc54dea8990b9b295c7447ff5c23d424083f6a730fa21cb15cd087d0c', 204, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1b02019b817802dd94b4bcea7013565ac437c9fce7755675ee84f4eb93229804', 110, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["variable",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'6b11a95fc7cd60b55a36b19e0deba67c3926108fe228d92fa83eef294072e3ed', 407, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'71420c8769c9d8a1462f4ceab7bdf39fb5e7c91d245e7e5040ddcb13f48189e8', 207, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'f2dbab6c37aebb2dce01f4626f4e4be742b42f524a533cc75eb2aec61847dd13', 154, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e72f19e0c2408eef4ddf6c28cb0f95ed4700d4a228209194b1ddfa29877cded7', 200, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'70c41924fd7b6ae259a54de0191a7da24bc3e69ca8ba5df2a73d51434bc214c8', 36, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["sa"],"target":["variable",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'815814990db68d66dbf85ef0daf368bdc0ec3d6c9a2c809bbe38f2962251e5f2', 182, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["sa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'd5f49248e594c2f5f523ed193923d3bd3a1234bb516345adc80fa8cef3d003e3', 136, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["sa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b9ab41b8f07320431ac3e92b792626e664e48db52fab1273a739fa2a86a2f092', 193, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["sa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4e5fd70460d96ed339a5a1fb9b6787e8059739c568bb0022bae32c451e31fb4b', 234, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["sa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a2fbc44f5edc4bbfe783b1fe2000a17f246da2e2c8c7bc9bcbe7f842d7be3514', 243, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["sa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'e9c494f5c3679d20d48820a11c27acd17c9133ccf8d805ca3df3e16505896914', 280, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"string/=","value":["sa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', 195, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', 398, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'6c811c92a76158a9251f933afab7449f55b55e2291534b1d1fd1143d962c1aad', 71, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023","name":"filterDate","display-name":"Date","type":"date","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8e5d2a5fef79569cbbd46f23395c5b644fb11d0add1a12917458c8b716d54883', 62, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023","name":"filterDate","display-name":"Date","type":"date","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'b893df30f743ddd775de9abeac5db3794897bcd20ac00a8d6f0a4c98d1ac7f86', 245, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1, poo: ''[[ {{ filterDate }} ]]''}}\n]","template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023","name":"filterDate","display-name":"Date","type":"date","default":null}}},"database":2,"parameters":[{"type":"date/single","value":"2022-12-16","target":["variable",["template-tag","filterDate"]],"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5a349213291452d910c63d51dc3132bd2f5d4d1da2dfacd6a18fa71db46b1889', 51, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1, poo: 1}}\n]","template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023","name":"filterDate","display-name":"Date","type":"date","default":null}}},"database":2,"parameters":[{"type":"date/single","value":"2022-12-16","target":["variable",["template-tag","filterDate"]],"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'34fbf4af615bc2f591e392e5a661925373a206b77e7eaf7ba9481c4df3d613c6', 96, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1, poo: ''d''}}\n]","template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023","name":"filterDate","display-name":"Date","type":"date","default":null}}},"database":2,"parameters":[{"type":"date/single","value":"2022-12-16","target":["variable",["template-tag","filterDate"]],"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7503e707d3f9cf8d2df75494f6d7987caf6385cabf11a14a618b3f0652daa753', 40, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","template-tags":{"filterGender":{"id":"cdc580d5-c4cb-afc1-844e-62b63feaac5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"57075379-237a-8aaa-b853-f805728833a4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b3017fa6-62ba-a5c1-ce81-3371eb267018","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023","name":"filterDate","display-name":"Date","type":"date","default":null}}},"database":2,"parameters":[{"type":"date/single","value":"2022-12-16","target":["variable",["template-tag","filterDate"]],"id":"3d6b4cff-5dfa-35a3-aab7-e27c2df4f023"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4617a06de7cadf124a1098551af2fd52e57f79e7f6ae43dc1bb159445fbb6e56', 33, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","template-tags":{"filterDate":{"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'190a370ec0fbeccc5b19e2a3bff4e12e2aa6c7e4b95a0ed154b30bff8fb24431', 45, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}},\n {$addFields: {foo: ''[[ {{ filterDate }} ]]''}}\n]","template-tags":{"filterDate":{"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd432eb23842d6975b404ac38b613d523475aa0798a8ff8929832bfd3dc9b3b60', 67, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}},\n {$addFields: {foo: ''[[ {{ filterDate }} ]]''}}\n]","template-tags":{"filterDate":{"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053","name":"filterDate","display-name":"Date","type":"date","default":null},"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b41dc42dcea1dd9c9c4a781a13b39fa9577367502e4730a4cfdde114b881bf25', 37, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}},\n {$addFields: {foo: ''dd[[ {{ filterDate }} ]]''}}\n]","template-tags":{"filterDate":{"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053","name":"filterDate","display-name":"Date","type":"date","default":null},"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7b8fe09b0146513c88d36e1560ada749167bd52735efb36aa7ac40b1b578c900', 33, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}},\n {$addFields: {foo: ''dd[[ {{ filterDate }} ]]''}}\n]","template-tags":{"filterDate":{"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053","name":"filterDate","display-name":"Date","type":"date","default":null},"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"parameters":[{"type":"date/single","value":"2022-12-07","target":["variable",["template-tag","filterDate"]],"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5282c7bccfc84f99010ad9ff36a58368910353a53fbcafb0234dc2daf4706bb7', 36, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}},\n {$addFields: {foo: ''dd[[ {{ filterDate }} ]]''}}\n]","template-tags":{"filterDate":{"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053","name":"filterDate","display-name":"Date","type":"date","default":null},"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"parameters":[{"type":"date/single","value":"2022-12-07","target":["variable",["template-tag","filterDate"]],"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e71acd03a055ce2c3fc44db0999e892f71d28dc65d0a2cad494f4316256e2bc0', 221, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}},\n {$addFields: {foo: ''dd[[ {{ filterDate }} ]]''}}\n]","template-tags":{"filterDate":{"id":"ba0db1ec-47a6-bc9d-6692-fca60af9d053","name":"filterDate","display-name":"Date","type":"date","default":null},"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'dbb3ebe15645be7c19f44c44433dbeb21709266c75a84fc53ff6ebacabd96361', 37, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","template-tags":{"filterGender":{"id":"dc4afc2c-9215-f33e-9f6b-cf5d242db52b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6bcd782a80624538e82d269be129e0a1aed86a24a22c484b4ed2379b0cd618eb', 42, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bbfaefeaaa440aeb735b4b2218d366c4a6f60ccca2497b1ffd86ec845b404041', 91, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[{$project: {foo: ''bar''}}]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1d5f8be9d3e93004307c9f878b061fa8639ea7c399743a5f63c00da49769bb51', 63, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterDate","display-name":"Filterdate","type":"date","default":null}},"query":"[{$project: {foo: ''[[{{filterDate}}]]''}}]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'd1f15d1c5bd70b20debe4ddfcc67ee6e95ec4245c00b64a4129132419e8a1a40', 58, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterDate","display-name":"Filterdate","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="}},"query":"[{$project: {foo: ''[[{{filterDate}}]]''}}]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'a14f78f2288e13b6876140e85ac0652f6971caae223dcb951e37927aa7dd1cfa', 57, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterFrom":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterFrom","display-name":"Filterfrom","type":"date","default":null},"filterTo":{"id":"0d4ae775-ae4b-95a3-6342-771cd1b8f66e","name":"filterTo","display-name":"Filterto","type":"date","default":null}},"query":"[{$project: {foo: ''[[{{filterFrom}}]] - [[{{filterTo}}]]''}}]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'bc5235e491b1cecd4792b10b84cc5a8f6b168972e7a0b8df5f47c045fa424bde', 56, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterFrom":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterFrom","display-name":"Filterfrom","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="},"filterTo":{"id":"0d4ae775-ae4b-95a3-6342-771cd1b8f66e","name":"filterTo","display-name":"Filterto","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="}},"query":"[{$project: {foo: ''[[{{filterFrom}}]] - [[{{filterTo}}]]''}}]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', 145, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7718b5f563e81736f2cec0b247011e3aa570810040dc33a39ae094bce7a49bf5', 69, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"async?":true,"cache-ttl":null}'), +(X'da299c0c2cd36f1ea21e313d6887661d8a2414b3ddc84a0d0df0c742b09f125d', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ac3c1e037c11b18881386e3a2011be054231041d9a954ece91daff7005537a69', 80, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"2022-01","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'17579285869eada38ded36a1e18f9e48729d9f1ef3f9b7d492f46662ff51baef', 93, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n \n {$project: {_id: false, percentage: 1}}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n fake: true\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ fake: true }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n }\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"2022-01","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9dc04ca4fcc87ce6f431fefb2835450f9715173d2353c06559ffa969fee183df', 72, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n \n {$project: {_id: false, percentage: 1}}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ fake: true }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n }\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"2022-01","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5437ef8dfb80997343c4b190a5036e4dc130e5707a57a171a5720eacad7ab906', 37, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }},\n \n {$project: {_id: false, percentage: 1}}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n }\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"2022-01","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'053ea9696dd5f784c999279ef6d7b3d3eccddf354509e841219842f650670f29', 64, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: 1}}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"2022-01","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd82c5c401580767b3ceca8063fffba5d85e604d97c8ff494810292f2bc32dc6c', 39, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n }\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"2022-01","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8088d6cac70fa624930c5c894f73133196b1cbcb54c1a8401f5fdea937c35621', 35, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"2022-01","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7b6b6190a22228a208026ffe08b0fe4fbdaf6e31a5337086c76f83bb571b4121', 40, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', 57, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'26ae1a5505c71482293ed35166be33f1986a9e3c85d46cabe7862734a05eebcc', 9, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c0f43db3638bc1b15f9a41cb3b2576c486896a10bec03d98eb6199426cf2b793', 34, '{"database":2,"native":{"query":";[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: NumberInt(0),\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: NumberInt(0),\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: NumberInt(1) }\n }\n },\n {\n $project: {\n _id: NumberInt(0),\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }\n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","parameters":[{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'75bb09319cb5677bfeacc657e0820cd47153d217cc7c220b99d444dd67d7fab2', 5, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: NumberInt(0),\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: NumberInt(0),\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: NumberInt(1) }\n }\n },\n {\n $project: {\n _id: NumberInt(0),\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }\n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","parameters":[{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e8e2b672aab6e9e70b84e7fb7dacb9872869ce1cedea1f2de9367340d98653c4', 9, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","parameters":[{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'30e1550fecfb10f2d6860c5d98c16142bf74579989875ad496ff6cced1a5b381', 4, '{"database":2,"native":{"query":"[\n\n ]\n ","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2989f4049bed9f291d230fddd7568a6259aa23016d57f86476fc2be719550354', 3, '{"database":2,"native":{"query":"{\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2b16b0d529cc1dd4a90cd16494b1581b918f1822b2dc3efe19e275c59cab57ba', 87, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n \n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7f83f3e757720ceacf8a4ff07f062274f52104a673b39b7b663cae583187f90e', 4, '{"database":2,"native":{"query":",\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1e15d46a6589f7a03e28725af424396ce898cd85c39b1dc3e741c0183700b76e', 34, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'51bab8df825b05236cc8d104ff8f69da8e5134325de3f24cfb00ad165a23f9c0', 54, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f949deffec7e51236c24a0eaa0675861965b43dddaa4fef5547625a3f2d62b3f', 3, '{"database":2,"native":{"query":",\n {\n $sort: {\n category: 1\n }\n }","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1b983f7e8f5f1279e665dab76c69d73695c4990155367c01a9b85e3d95632f7c', 34, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\ncategory: 1\n}\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'87ca0db86eb79038aa6b8c750ca1408a362ad06ff06ac43a6fc0413a5ae620bc', 34, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''>5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e4d1408c5fce0a627c572e7d7139492303c6086ea76f4100a0cd679359a192a8', 40, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: -1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'12d7791a4d4dc0aa817c57688545e44d6384ce66b03dce25640c8fb174e6f39c', 106, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: [''Total'']\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'35abe1d49151342f3455802ce23bad0da19d18da4f17a6e9ae5c995d5f5e2953', 4, '{"database":2,"native":{"query":"-1","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'390c807444dc3ea34d457e09c17395eec0433b0f2cfffa3efd7f6e54243a01d6', 73, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4b7927e0a1a8fd39c62f95620b6f657affd004f24e7126f926f90bf47b056684', 10, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n \"order\" : {\n \"$cond\" : {\n if : { \"$eq\" : [\"$category\", \"Total\"] }, then : 1,\n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 1\"] }, then : 2, \n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 5\"] }, then : 3, \n else : 4\n }\n }\n }\n }\n }\n }\n {\n $sort: {\n order: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'09729c45efdf09c3270204f985f0096d36a4257e6a25ab8178730240fa90e9d0', 5, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n \"order\" : {\n \"$cond\" : {\n if : { \"$eq\" : [\"$category\", \"Total\"] }, then : 1,\n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 1\"] }, then : 2, \n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 5\"] }, then : 3, \n else : 4\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e3347919066a0dc7c2bbe6bccb4481f691e80ca40e23bd60328d37a43e10290f', 82, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n \"order\" : {\n \"$cond\" : {\n if : { \"$eq\" : [\"$category\", \"Total\"] }, then : 1,\n else : 4\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a94c67f76aab6468821c388621fb20e7849659ecf80cde020fd1aad001d73cc5', 5, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n \"order\" : {\n \"$cond\" : {\n if : { \"$eq\" : [\"$category\", \"Total\"] }, then : 1,\n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 1\"] }, then : 2, \n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 5\"] }, then : 3, \n else : 4\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'420b78389d406de831a45d2e64618362da9e5651e27f0a3ea7af44d3a41d0589', 76, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n \"order\" : {\n \"$cond\" : {\n if : { \"$eq\" : [\"$category\", \"Total\"] }, then : 1,\n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 1\"] }, then : 2, \n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 5\"] }, then : 3, \n else : 4\n }\n }\n }\n }\n }\n }\n }},\n {\n $sort: {\n order: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8fa30a237d27aa3a9bfcc667584cb3182909635514fa967d80ddc4c083c57fe1', 139, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n \"order\" : {\n \"$cond\" : {\n if : { \"$eq\" : [\"$category\", \"Total\"] }, then : 1,\n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 1\"] }, then : 2, \n else : { \"$cond\" : {\n \"if\" : { \"$eq\" : [\"$category\", \"Under 5\"] }, then : 3, \n else : 4\n }\n }\n }\n }\n }\n }\n }},\n {\n $sort: {\n order: 1\n }\n },\n {$project: {total: 1, category: 1}}\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd7c5d145deb3b7e20001982890025d35d9ff9f216d5290644ba551d8042e7a9a', 5, '{"database":2,"native":{"query":";[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd517d2e5a0e23a5e368a778d8fc72f9c0223d60b4b5ca9871ba584456d364c68', 32, '{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'326b1ebdc31d9d9354682b3d32abbf107b4d07e4b759ae716b95872948a6482e', 56, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ab506f02d8ee32b8b8140cdca244865701705eece971da79b6e9254c6e182e88', 6, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"parameters":[{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"}],"async?":true,"cache-ttl":null}'), +(X'792014f2f28f8ced1c69c0a2c7f9a67e9bc04ee247f1562969f5eda3e1a51280', 70, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9af471321501e22fdb52fe0469c6bc2a71bf5f8d3ca0d88c0be937837efb6c16', 36, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'1b34e8fb7916b099701a4e7be44e4d102fdda7a7d53d90bd2bd7072c58a9e5c9', 195, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'924b67dc528d1a18eb15d538b2ef4e4a43912644d20286438be78994814b6405', 6, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"date/month-year","value":"Birth","target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"}],"async?":true,"cache-ttl":null}'), +(X'4d48696efc2b03b836530951894430638903fa02246849e80c174dbe0a06159d', 85, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["field",354,null]],"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],-1,"year"]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'28130619d2bcb051d81d7dd3c26e50605f4c693d02ed5dcf6f7c487c55ea396c', 74, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cda8c18e-0863-d59e-4846-e6622917d67e"}],"async?":true,"cache-ttl":null}'), +(X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', 193, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'2f7559cabe60c505bd889605240729300fce5b1c37c82b56b89aff638f0b6607', 229, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]]},"async?":true,"cache-ttl":null}'), +(X'5f64ba5d1ca6d00f73096cecc895774af8e07c5c0864b395b3c7d2ce8d1fd6ec', 183, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]]},"parameters":[{"type":"date/relative","value":"thisday","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', 188, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'7fe06268877159752caf9b0d260c0619f6d256328086f4b96c5da5d068295cee', 122, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'103519ab4a751262d71fd78a0da321ae407506dbbb11b164d58885065c7149f5', 38, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"}],"async?":true,"cache-ttl":null}'), +(X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', 185, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'49615049c0a873ac045fea418bcd4ad2c16abe214310aef57a1a5f68726b7b19', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"}],"async?":true,"cache-ttl":null}'), +(X'c66be3c7a97c04719080828a9a615fded0e73665f890402187a3b71da510e868', 112, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]]},"parameters":[{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd889f61c0ae8c3de7ca8297478e201f72b880121c3b0c0d891294be0cf1d394b', 89, '{"database":2,"query":{"aggregation":[["count"]],"filter":["time-interval",["field",354,null],-1,"year"],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', 186, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'4b45ace4e250f32ef64da8de3ae1ad34160ade89a7f13f972c4627d5bfa156b0', 54, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'801481aa4861a73bb3eaeea8dfdda8eab880d9e2b8554778aefec3711cf40b81', 46, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"}],"async?":true,"cache-ttl":null}'), +(X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', 184, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e20477722ff15200fd23ae9ce9d30831347940a35045cba07726b6a6f78e086d', 105, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"async?":true,"cache-ttl":null}'), +(X'd02b9f785893959a4a29fc85222d41279dc043b7f5c50d86ca4e14568f6747bb', 41, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'43070c31e703ed67e9361592a1290226cb29232f8aaa0a2219403c02311c6ba9', 215, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"filter":["time-interval",["field",354,null],-1,"year"],"source-table":22},"parameters":[{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd236c7d63c9a52c92382171ae5220ed4a6f0684c5b190f649040bca1238f677d', 138, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'c4d784465b04a7480658c8b4bb97b06e16639f8681934196b19ceef61d7c0d6f', 191, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9699faaf07d2d5c390741f3c293759b9bc2c9b5cdcc0a832a9e2fa310785348b', 220, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'652c1641b9292c3c7e0ffe2dcb7834e61850f5854c4ba5c7954dcdb155fd4ced', 184, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'22e0797dbbf5e58d293234c39b6149dfb8bd8b367196a1e3478f99a39b67dcc2', 125, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"filter":["time-interval",["field",354,null],-1,"year"],"source-table":22},"async?":true,"cache-ttl":null}'), +(X'9c5394727372bf94924e9f2072c51815dc7bbba3fea36aca1d76b1d9de0abae5', 50, '{"type":"query","query":{"aggregation":[["count"]],"source-table":22},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'12d01d25f0d0c3f2508a718b3885184f558613cc8b4a49f9f1563f08928ed62d', 235, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b6752591527ada3b6b6189c02d4f6ac5f34b292d061cd69e70b9ede691c8b5f8', 244, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', 178, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fe0b852e11c33a59799e533d04ea32441e0e68e5cecd17e7320f6386eee9e866', 40, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'603eb7cb675eaff0eda790d876c8459ea56e21e18b2a73c8461192bd7a780272', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', 175, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'164e06e3d27617e0b719bead83493007b5a4bd1a95ef2ca8f946969eda8203ee', 193, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'49987e900ee97102e772924b7b51b871ef5292f4bcfc123baf8f256014f9106e', 142, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'08b60acae8d6b2387b57051e1fa07a36baec7a4d4a22929b7b069eba08849ead', 226, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'69661ba562ae3a21de1e6a7d630e3358812cb9f6ccd6251e2cb4a9b58ec24632', 174, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'77d50d8011de090c014ba2f0bad20d9cde6253eb77a424231a95d16cc05ca351', 43, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'05eefe2ca94ef7d2c9df93fb616ee8bf765a3a8ccb52e790e06480757ca7c0fc', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e7fb0376bf46c7d47f699fea241050b5aaf4cb7f0bcd4e50d281a03e776bbef4', 204, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a4c997e6fd85163dc711935614a64070509fdc8a645b8752f7b07a9c71dadc9a', 235, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'dee94a6555a7cfeca4eaf6cbdcde18da5f2b54ab5893b2c40106a00ed0a4a3b1', 211, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fb80097c1b02896d394def12746d3c5b4e0afbe9910a9d124606f027385ce7ff', 146, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/month-year","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'60baad6de23e7b3f74375da4776234c393f83b430dc73dd8104cf43a2a6f2f8a', 42, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/month-year","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'eb9dea3e6e2d6102918a6804daa6b550b9e6abe525dfb7155d492fa80506eb00', 201, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'8f55f525e01949ef8cbf50534cfb3687e4c4f51529b3718185c46eb1c66ef941', 38, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e17b86d5d9dce082762f03105fcde6da567cbd882085337a5a595ed5a1b7ec50', 41, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"async?":true,"cache-ttl":null}'), +(X'50939ad6f271643caad165fde559976df29b8db2772ca8db109d664687a16014', 153, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'792e1d2dae63df3aa4b6986c0c27f27cc3c7dbe982a149266231246e12ca474f', 105, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'8ce338c19e84632cfed3e3633a7cb00fa24896f4dcf3ad47a76c8d00957f1653', 129, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'450d13868bf9c1ce52d50ec0d78d4129dfc57206e8bed57f6338550e39ddd9e6', 267, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(18, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"ta', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(18, 1, 'rget":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', 149, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'f125a622d6440cb6cc95a2b3ff57617073671bf7be09d22cc65326d7edeabfd1', 85, SYSTEM_COMBINE_CLOB(18)), +(X'868a5305da2a1a87974d93ae3893654f6062de9a46612d99e2aaf0cbf0822ed4', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'da784767217d451744ede6220345175384e329661a8be60d74323754cc2cf6b6', 73, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a5a8531af56809387859e3591afd1a63a69c42d357683a9827fae63e0c47392e', 82, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd5ddc1140a56d51b51b3fbce6ed06f92091c22e6e9f04f42e77588ce7a3d8240', 135, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'bfc4e458947db52515ce1ac1b75319d9fdca1414888caf05896fe36b9e358517', 113, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'10060d1a1b9aa772aca6e9c02af8c09eaafd59b53d1b2df6613a2b539257e145', 97, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(19, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Lagos"],"targe', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(19, 1, 't":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'585690893e0b6a4e184656e8b19ad163aa4f0f92deba4911b93fcb2949169bb6', 106, SYSTEM_COMBINE_CLOB(19)), +(X'4913725a51cbf12045407d7af79c844279a1e7fb978720d0594a534fd6ac8c29', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'9327346250a0e55c40d70066fca56d09c78db51b6b5dac1b05a14d9a5cc3b9ce', 179, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Lagos"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'74448f466afb2b4fb11571beb660ed322e0715a8cedca030f70b559d6aa2a63f', 151, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4975c9c4a083e80061e6592b04326b40f59a6317708c2077b65b9ffd09bd5ce6', 170, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'29aea902d134b37e0e6fe201afbc99943233293f9f2dd42f32362e5e866c93bb', 182, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'692694f7786ca3cf4b1bae6f8af9b7802e9b4a716b3d606a319c7383098cbf82', 215, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Lagos"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'c79c55f1af03ba0cfed7928f2a470e35837185ed5b2b3d72136e1541842d2e93', 119, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'edd1836700fc58f6bf2dc4d2effa7f64da94626148b8d5af3cc53299c493aaff', 165, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(20, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(20, 1, '":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'febca63f2ff6d83d6c4d33f2bbe30b3341002ef817f2b04b5d729447a958bea0', 138, SYSTEM_COMBINE_CLOB(20)), +(X'c4d252975b31ab3141e85e0359e3285a3a846b20b42deed501542b409b400a4c', 164, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'7190ab175312799255d901784a01fbed40131cc18bfc09c926b06f8309205895', 149, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'c836e0bd4f983925ed076fa1a1546214f5268919990fbb2bfaddd8da6dee13d4', 207, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'956a1ca7151f49c09487e388cc145a0334ec3377f7fc1391469c32e33d4d8724', 240, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'0134a43fc81b4f43db78ed99e7602e6b36ea6b10dc9858e920f2aa38aeae1e55', 85, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'70aa13d1ad8ca9856ba691e62fc0c511536bc99fa548d2bcd11ac6ba09718c07', 74, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'0e0ffbbcd81a5be17047783036bd8a352699c312793864a7d9365cdd01b93886', 106, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Kano"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4f5afbebed9d94d51e0133006db00f78d00c7ca7e2c44d461463f8dfacc02b8f', 293, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bafff8894a9ef3ab118fb5b3b036d7baaa159c345bf273009a80d406167c6f4f', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'767065df990a4f9da3e50e095c98d76e295b6dcbcf73a94e521595f7e1faec25', 113, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0be978711b95725996babcaa129815543c319334374bf8ce71addde41b8e1f16', 122, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'938de3f488fb9c4e3f53c5ae012911305500bd031a2565e6d7ce285926bb346e', 139, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c143b9ae0317d4952ee9e9c81decd72f2f87f157aa08d4e0b29092e87ab2cca4', 159, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a41019ce7649090b35dd55f03f5a417191d24fcd7174685174e5052eeeb6915c', 192, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5956769beed4fe91463c83869f75475c3589c01b1808547f90e61f56eef09f67', 123, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'cd1f0d5251ab7c171b0a33cf750b89a2e5f7d1642b295a85998b581d4dcb0a0b', 119, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'2f9975119822bddae904139fb5239b6b7b29f78fa3a0254536bdfa2bb21f7e95', 137, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e22afcf163b1f9312c0834efc6a5d1358decd8b7c582424e88fd368a1c6dfca4', 153, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'c527434a7df955bd0bd0d3f891f9ee975117b427006a04f1149b5936dc5fb918', 56, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'75037be4d2969d761d12f5c5125f78c0d589a29c988497eaf3096ae81b665559', 79, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'523a4637c0978bc7f8feb38fb1348c32bb50a76e6373afbb197dc299c24d011e', 59, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'f736097df00f04e2f07330f543d4d3eabb9ac80854d59e50fb6ac2d9c1c47048', 118, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a5c0b51e284f4027b07644aa89f9212ba3892fe392179e79e3d364d2204ecff2', 124, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'ff2099074b4ee32c7246470b8634048ac7760892461a49dc29c689d0e31547ff', 159, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["female","male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e643ce7d9b647389def92f13abd7278d8d9372f1463437781c46709d4c096efa', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'f6fd0d5e72b122478a98406ea838cd39202b84b49eaa20aacd3a3731abd29db8', 106, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'effbfa6cf2e88b86c7ae81f20bdbb8c110931bd97513c5c807de9a32cc991395', 58, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"thisweek","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'c9574bb35fcc235aba64505237e5ca236e4b828055b17b3da77760eccf2118bc', 50, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5d9469ac6d8c24ad7772ed970ed62ad08c4793a669422e9cdfb5e6e2f165e51f', 111, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b9e76e97514c63b1e4e9ba0a905684956fb857ef6d83250b3b9eb6b1084c3e2a', 112, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd553cf69fa5f931b6cdf23d28e5676a363958fbb9b9a19f983d16b03d50429d6', 172, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thisweek","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', 191, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', 176, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', 193, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', 121, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', 201, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', 153, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', 187, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'a8618a8345f44a5570236cad173025fbf38bcc62f46132c55141d2dbf47552ce', 114, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past1months","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'a51842cbf95847eed96145258042e6536ccb686675b1fc730f4f10d953b21a9a', 133, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3eb7573ff80edd2b6569adc6312ae22a7d5f566691b2025f5741e6032f0ef672', 141, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past1months","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'1013a1d89ae605249c2b583f53d016e38cc9edadbe5d6c3eb70e3e7d6b6bc9e5', 118, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'be30f64e1158fc7c66132f9f87c669288f45aabb4a204b097fcd729949cd20e1', 196, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'14d9220f9c7aa9d9d33420f2e8547be861082c53086a95bb7058bba8aafbe92b', 165, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'4bd0014b492899d72fcaf1b4813ceb24a6c6d911f9680d47e3d003adf8eec787', 202, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7676cf039cfa6d150108443fb59599fcfaf4b838df8c19b3309b437e55c6a90d', 171, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bf29d226196a9122b4af33ddd1c529363ef71786c7889d021370b8b82ab85f4a', 222, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'e7011381b98c2203574a5b7361dda1d27c4de1c1c5db998f500c3189af60d665', 189, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"thisday","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', 109, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1f697a33196817c987e4d3641dfd469d276123469aaf382b26657ee7590fa8cc', 152, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'9ff1f12c7ddc626ce892cb828586e93a50d9cfc463e3d59d8958024a630683ea', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e487ba591206f39cbb65d1cd6bce3694ea7f12207f0818f3a3b926367c75ea2a', 53, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd6709c116c6e0ecd0fb6382d8f1cfd3968ec8bbabd6e1371a849b897f54bbe47', 61, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', 230, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thisday","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'9438e2d8588081b0cd93f4e19739ca89350196f2413a19022052729d328e2982', 81, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'22d7d600d7335d667b35d56d25959cf1a6f0701772d724da78446f6ab720365a', 152, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'830fb4a8c31478f5de86369dd771fd2dfae450627a67193d8e52e9e5835d23cb', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'14455a2e3bf45b42c045ffd6c4a552d45379c202d893c590a40251c53e178d5a', 137, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9cc704a74ab03ad9fe821ce726fe24c104a911a35b1bec46b9dde0a7a3e8b2d6', 199, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'a4e65918e7c4d827793ff0b50f5bdde7aeb6c1efc2d6d6e147d97290b966e533', 166, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past1days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b1bd6c00bb07fe55430f8c2d6d9188dbd628c1c985eb9f4c0cb070f0af413e7a', 137, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past1days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c609b2ec0b35664dc94ceea76fc1931ac60b57ae52b504b63a6da16c3723e271', 87, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'31412d2cf4b466afea43fd3175aa76744233c15ef74cae9ce084ef4653803e74', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'0caff5f234007bc1dad15e7b52f92381075709f632a0cb40c0acf86d0f157aea', 61, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'10287f6b3eca29bb5191320c9c81704098b9a9c6d4af01581c855069e003c7f0', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'8358453dfea6add21a8d4dd63a7afa6c607145efa17b26a69f252077b25ea658', 96, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'39bc65bb9953497238846a79abb6490f60047e2c4bd80ff8a4fa19cdf70b08b3', 87, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'cdfbb1252186dd05b17bb3debac10e8d21573cef2de9e93b5459542500e49bca', 113, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'0aa02e9e67c5c8be9ccc624ec5c3882e4556471c6a969a38406718ca0e51babc', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2b28cbfd7e481e4cfef4816270dc1376abbabc6cbf06f546667e446b2ae6e3d6', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a4a3fa9bcbf7abea88ac0c6c31a6d15998a4da9ad6193f36db51a5765a29c003', 87, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4933c781a78bb5bd0daa552ce6a3be374f1cdcc354c119d4c721ec8ad33dca6b', 142, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(21, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"targe', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(21, 1, 't":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'64fdd676ede7d00c9dfd47fd4443805fd273a646b2a0d13fb493cd33fd7a29ba', 79, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'b017f8bcd704185bff2523e4169d83437dc831783a2ea40606af5b8f1cdbe29f', 177, SYSTEM_COMBINE_CLOB(21)), +(X'9deaa9166bb0f354627ed0648d1ef26930276a410afe3ff3cd80ad4f4f35c63c', 83, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3b05d66350065ec1883c26da09a95057ea4c448c2f56a778a27044377b3a848a', 47, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'771ee6b0ded002a424913722eba6e6cf21acb60b9818021d6a3960ac9763cb86', 141, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(22, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","target":["dimension",["', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(22, 1, 'template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b998ce7e83181d86082cb1eeb4b5be0613c88d85d43e74ceb3af4d12785a9fec', 149, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a46f42a4d589d45fb20ef825b2bd0595d493804cde4efd1bab36f0cd4fbb0cf1', 128, SYSTEM_COMBINE_CLOB(22)), +(X'5446d6d3f0cf8293dd0a55aedd2cd8c5db10dab46362af9cc17882a2a3cb9354', 127, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'459e4edb0d11769c75dd9b265c0e93f90a8811d6e7809bca2b59ea42e16c3080', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8ae23bd2b255103287f062ae0431c38d4ad877f814b153e94a582a33ab1fed7a', 88, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'29119da2c8176dee315201a95b805f7e0466aa3748392d9b1594998c5ff8c6d1', 140, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c6f1e406c9dc429dbd7cc973b7c254f482625c803bc5911bd8b374907d21c4f6', 273, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'a1e22038a2759f285e518b0e8f5e025fe02030aa5986f77946f54334b638c657', 155, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(23, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(23, 1, '":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6a5a82efda161dc140e94e17405fa144ba8cde26b39e8dcd9dde203750a35beb', 87, SYSTEM_COMBINE_CLOB(23)), +(X'b38c2d6e24a84c8ab6e62150364a2292c99a1430684fa520e63c491e3e2a9e03', 114, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'9b68751265e3310120dfa94676a551cc3d5bb85e5016f3e659a124c3c3f13cc6', 91, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'ad9b66b024be30005a95c194391e3ac173208f49efd1ee3aaafde6e547b06be6', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fb1550b157c7219948e8d3d449794dd9c5ad9fc92f9ece4ac932bf5e168fe41e', 98, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'1c8731315664064c06a3297b5518c429d382f8fae13f3ac4b4dd6dc60b9962a5', 50, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3bde4ac260f4b92239c6cf47eedc506440a04c0678159b601ab35c7c6401544b', 60, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a459bc9594931ca4cb980b903a04fefc23f8d9fd57883d7a5aca612a5fdb3a2f', 224, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e21c2d50b0376cb5426223337cea908c1775a290b8e2dbe1f90205476fec95c9', 106, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'2312184b76e35435f2f45b0632d1119a5e93a00b1f07e294a090120944f1d74f', 293, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'85a51996f1d0baf48743ee483f449b93cb6e3905890c9f1816475e7a202b9071', 105, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'474d704dc4a4b77ff62f1e6115b180ad86b384c7f384c0935574aa112e1432ed', 42, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'64f6643f1eff4f46ea6c0d25acda405cc95fc5023dd74ccfffa2ec0cf1201215', 46, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'1ce349ccf43dd2be9cf3ce8fe5bf0f40db3476c5ae08012e0f2b35791b611c49', 151, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8dc4fda0df0510be5535ac37a800d7bee0bb31cfce81421451c514755197bc3b', 108, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'4efc12bd48cf6300c427b67a583249f0c793355bbd55be9821cf9815b57ce559', 121, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'15ff8b0cd0bba91066654bf20eda262394d92159b11e0a69d3361d4ec0cc41ee', 100, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'42231ae3dde4b2a6c07c950ddab7d2a07887e73c28506bbe36fcd226c0b0980f', 300, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(24, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(24, 1, '"Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bb4ef0b9461e5cf84f972bd21474904aa9f37998da72a14311418cee6aa63a88', 305, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'dab499599831fa5506181cd39ff57309fdc2a9ef840e2557cc8cb6094fd3d021', 241, SYSTEM_COMBINE_CLOB(24)), +(X'df70623e725542ad4d58d2e9d174e71b212cbc9fe0f1c06d2050b7f4d9de82d1', 259, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b06a7c8bfc2cb626f37ce375aabd9312e3dcad1cc9a78a6d0c451a2e5dba948a', 193, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'd40ada4f20b0106978d31191e1f64c4e0d74c76d45a06d6bd622242e1976da01', 391, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno","Lagos","Kano","Enugu","Cross River","Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', 281, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(25, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"past30days","target":["dimension",["template-tag","filterDate"]]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(25, 1, ',"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(26, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(26, 1, 'ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'083e815720461ee2634d02d8baccbd7ac7d1b5abef36d4c111fa2cf8920a99e9', 86, SYSTEM_COMBINE_CLOB(25)), +(X'417abbc0589089da7bd4fc5657dd475a832ef67fdc7146a70ea91e1b8b117143', 67, SYSTEM_COMBINE_CLOB(26)), +(X'049c5c5f119d60a0eebda11e54f01c0594c73f184f74c392f37292990b0bee00', 183, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["field",336,null]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'a420f957f5cd0d0cc6324ec519a05903227440b0f7a35354b6b86e4f063a5508', 238, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'839b8072874307f6dd7c68ecb1bbbcd512e321257c932068df10ef883fa1ae71', 205, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b098aa2b23226d574ecd4285f6a9c19d78cc5509ae17c6f04d33ecd2067e49df', 161, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(27, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(27, 1, '"dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b6517ba125b6e9c3f8ac3f2c041aa58cd8c5f95f0a345b29f7520737686cdaf7', 214, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"string/=","value":["female"],"target":["dimension",["field",336,null]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'8f7001fe36ced3bb51dd729b2030d9dd4f8577c58cbc577c782051a9dc54e472', 306, SYSTEM_COMBINE_CLOB(27)), +(X'74379d9d32ecef4cfad134863c0cfabda6810f2763d6f7ff8b89c94037e171e3', 328, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ffef372bac793947b7972fa5c516ce26cfa91b0032e31c840600b887525c9bd0', 280, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","target":["dimension",["field",336,null]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'4916dd7af1eb50b2f01d507e5592879a7d0e0764107229b66ae1e5abcd33b5ec', 273, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"string/=","target":["dimension",["field",336,null]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'22e3c146fb4908802514893f8aa5f4136362673558d3930c5568d2a85bee8663', 282, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(28, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["templ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(28, 1, 'ate-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'62257cbea46dfe98db4abf1495ae4b9332b3bfcb280b49a3dc2865a0dc71138c', 211, SYSTEM_COMBINE_CLOB(28)), +(X'7f62111765437e60dd4f55956e0b4484a796632527e8fa6a3a91c4aef45abb01', 298, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'68413c085e5cfc648aa0770eeec0e84fbaa7b824e1f04a2a0a3487f0f52fa72d', 70, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ccd4bcb802cd7507e497c417c91910e4ffeb057a164168441aac5a68754dff03', 97, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b702cc7bf8a55f2f6756d247a61cc21e468efbec927779b0a5ff1ea5348b2057', 162, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd322e551509b5fd2733ab18f2197907960c309fa418fe14d34c51f01f001069b', 72, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(29, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["d', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(29, 1, 'imension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9ec11c64d153268bd0a00dd60d4537738ef902f699a69bbfd6234c7f4a4b1d5a', 63, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'f261e9781d74d0c04d2aae5ee9ae6374d4f082b7910c74c47a6ef0c9de4ead17', 155, SYSTEM_COMBINE_CLOB(29)), +(X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', 178, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3f127303db565b443c2b54bf9f2951a5b0d787a194da522d82941335852bf994', 60, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"async?":true,"cache-ttl":null}'), +(X'9a2500ea357d3fa1df2be3cbef45937116c2e5f1becae81b9934b0ece4ce64f2', 44, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', 124, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', 203, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'8167787d8b1f3353e505b70c732a30d847fca4988558352076b76cc66bc4876a', 115, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', 287, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', 263, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', 229, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', 240, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'63f63d7caa4f7dd0564646ffe0f6ea814a1074f3fcb5a5b7905ec519999fa799', 135, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e1f6db90ede9315058e931917df872fa1d97846c3cbcb0eb109b042dd4489220', 74, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'2fcdb5d6e4e3106766684754b637c959c657d928d401c912bd8b4bd78ef48361', 109, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ed55d7854ade968eb71b78b00a73f2b7217b2049e62b478795cd31f76770400f', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f5337bace3ce49bc133045f82e7c97ca930ac8d92b65311f247379f01527b3db', 212, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"thismonth","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'ef143763e718c147378d63cc9c9e2c54c82e904a366d0d314f07c367931a01ac', 187, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'5e88ab9a63f31aa90ab37fd8e0b64c265b68dbe76c5bcbb94ed005e09ca9cd2a', 247, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2e044de41e4f7f47672a01df43b63b63598ddf39a67dce32e1599147386462a7', 222, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"thismonth","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'73f3f60b046eee2f1e20469bd67b6e1e21ebc5733b8bd712f3df2af4d12522c3', 204, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'aa6269761b2058344f26200ffe80990947bb9f68d9bc500de0852dede1d3d383', 176, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(30, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dime', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(30, 1, 'nsion",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'da0eccd7fb4782976b9c9eb2c7988a27651edcfa95406632d3c807715bd2c017', 176, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'2ab8a1445d001d8053c3b9200a8898df28273ec13b860387ba08b56846ef007c', 290, SYSTEM_COMBINE_CLOB(30)), +(X'a9d65b044d9afe1246f885cb2ce535793cb204a481284158fd263ba5ed378328', 244, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2bf1af0884831eb5ce7389eeddd960fc26f2bea513e3266b82a825096b786f01', 311, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'2f12fa599608af16c1b5fcb2d7644fecc0c5bf396a7461e22bcfc242fde33605', 117, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(31, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dime', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(31, 1, 'nsion",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ac67eab879703942433745a0c79e26f2f7031dca05ad951454c397a4789870fb', 155, SYSTEM_COMBINE_CLOB(31)), +(X'341b71bb7b0a16cdfbe9dc384627873c801b359a01aadf06188c5610af7bb9d2', 168, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'0c6130510e48eb8245794348aef26d20a1a60280cbc3ca59a5f264e481ded1aa', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4e710b6b827ee575d347bcef025bf3d349e626af89709fbf509f136cd3f53eed', 125, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9c17621ea5f324e2fc3524c9cc36182b7faa0f2908613d328b7ece021041b89f', 116, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'77c85e1f823e54c006addf2b0ef8edbd33d07e5b19b423594db5c12c689a900f', 114, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3ba47959e8ed5242974a039e779755df8551920203eee331aeb0f71d36d79898', 217, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'e9b933d9e5e07ba52b03a8a39b8855a81d22787e3218253ef8351c8b64dbe065', 222, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ca64217cd61163bb0945b9abf92ba798f065e7c85d0d0af434b3d0a189cd36c8', 223, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'7b3ed35b5b81d808ab7e7da5e08a15a74104b3c970f33c6a23f7b1d086a5ce28', 82, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'329b95e435c3b2c2546c08af0d8fd04254e8c572fab7f30af8a3671d63e0cba5', 96, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(32, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dime', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(32, 1, 'nsion",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'68ae2d10fdbc2490e7cd1a8a139a2be625eb1cedb7e04c05e7547b6197bf632a', 106, SYSTEM_COMBINE_CLOB(32)), +(X'8cd5d0c6e6faf4891b0c3a89fc8443cf23cd6e52c0ac639630ee0caf3d65920f', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'1c48da1811b0e4fb0a9953f8863695cfd8c2e8700b7369aee876758ec8a1785e', 48, '{"database":2,"native":{"collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"aa9c8d6b-32ff-bfa7-89af-94e52ee50e66","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"f33da106-ee15-cd2d-cd9e-af6a475b24c2","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"194f2142-f189-1a5c-5b81-158625c75d35","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"c1f9eee2-61bd-3b4d-6c68-e846f3c1d5bc","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]"},"type":"native","parameters":[{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"194f2142-f189-1a5c-5b81-158625c75d35"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bca30745aea5d12eda5ff658d1ab9838cffaead2518e697720fb309445f8fe97', 34, '{"database":2,"native":{"collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"aa9c8d6b-32ff-bfa7-89af-94e52ee50e66","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"f33da106-ee15-cd2d-cd9e-af6a475b24c2","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"194f2142-f189-1a5c-5b81-158625c75d35","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"c1f9eee2-61bd-3b4d-6c68-e846f3c1d5bc","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]"},"type":"native","parameters":[{"type":"string/=","value":["Borno","Cross River","Enugu","Kano","Lagos","Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"194f2142-f189-1a5c-5b81-158625c75d35"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f8768ce4141d94b6aac8ad9339c9b7809474da57ade4ff3ee8d5fa3c131dc3b7', 192, '{"database":2,"native":{"collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"aa9c8d6b-32ff-bfa7-89af-94e52ee50e66","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"f33da106-ee15-cd2d-cd9e-af6a475b24c2","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"194f2142-f189-1a5c-5b81-158625c75d35","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"c1f9eee2-61bd-3b4d-6c68-e846f3c1d5bc","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7ffec4ec5c3ce00fbbcee7e71fe7324f71b64bac7ea0ee87ded13077e9c0a1fd', 17, '{"type":"native","native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5a889e2135fc6fd079838209a5f720112ab2dc1447ca1a5313720f20b6cb7cc7', 48, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'747e453d4e989a27bf6fdea22dc78c4514771b00cc707d2be708217b49d83d06', 158, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",338,null],["field",336,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', 89, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', 94, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",338,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e39bb41913b5152129e5edd728da35a02a8a7c5a5348cdd6a01af173887f4406', 149, '{"database":2,"native":{"query":"[\n {\n \"$project\": {\n \"_id\": \"$_id\",\n \"stateName\": \"$stateName\",\n \"createdBy\": \"$createdBy\",\n \"placeOfBirthType\": \"$placeOfBirthType\",\n \"practitionerRole\": \"$practitionerRole\",\n \"childsAgeInDaysAtDeclaration\": \"$childsAgeInDaysAtDeclaration\",\n \"birthOrder\": \"$birthOrder\",\n \"createdAt\": \"$createdAt\",\n \"fathersEducationalAttainment\": \"$fathersEducationalAttainment\",\n \"mothersAgeAtBirthOfChildInYears\": \"$mothersAgeAtBirthOfChildInYears\",\n \"lgaName\": \"$lgaName\",\n \"event\": \"$event\",\n \"practitionerName\": \"$practitionerName\",\n \"mothersEducationalAttainment\": \"$mothersEducationalAttainment\",\n \"id\": \"$id\",\n \"birthType\": \"$birthType\",\n \"fathersLiteracy\": \"$fathersLiteracy\",\n \"gender\": \"$gender\",\n \"officeName\": \"$officeName\",\n \"mothersLiteracy\": \"$mothersLiteracy\"\n }\n },\n {\n \"$limit\": 1048575\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4df951a6c32af377ab7c8a82ac7f8eaf07832b3f3fdc94cc10d43a95bb4fcab6', 81, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\",\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'efbd4efe72dc5946f3a6f41ad2cbd1cc3f89378e250e30a51f00a94d2bb20aca', 93, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f5ff8623cdcea4ab2aaad21ee3b616832e8d55e8aa623aa4aa6d947d3d76f6c6', 186, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0a36ce7a03a38389628d2f37eca7ca31ee5d2216982b79085ffe7b1de6e7d9a0', 45, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\",\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'552cb418c1c15cc9d2560a0eaededb97389b6b4134db6350ba038a2c27fc10cc', 61, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e730835e4519f4ee84639c5f6e837cd815947449336f50d367b21036b08ea303', 291, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b49a9742f90518ebc69e5c85aa8f155dd8f32175b46b265e39022a394a708afc', 72, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'96a2b7d62476169f4ecf1883da7ac9b88785f8f6e4ad47731831cc944e881c71', 81, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'988f3b77596ddf0f529b8bf2dca86e35738b7e953347d95a0c76566beddddd5a', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"date/month-year","value":"2022-12","target":["dimension",["template-tag","filterDate"]],"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5"}],"async?":true,"cache-ttl":null}'), +(X'16804c5e52bd7d42bcaaa588842f12085e3bca388c8088ca2ab7933b2b4e0f6f', 90, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",337,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9daef5c85de387b303362cd424860efb810dc74ce91ccefefa08605b79cf1e7b', 112, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"fathersLiteracy\": \"$fathersLiteracy\",\n \"mothersLiteracy\": \"$mothersLiteracy\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"fathersLiteracy\": \"$_id.fathersLiteracy\",\n \"mothersLiteracy\": \"$_id.mothersLiteracy\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"fathersLiteracy\": 1,\n \"mothersLiteracy\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1d4da3ec8899bebb11b174abfecc3405b18d5807111e128b398a5f4b7b994e17', 78, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"fathersLiteracy\": \"$fathersLiteracy\",\n \"mothersLiteracy\": \"$mothersLiteracy\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"fathersLiteracy\": \"$_id.fathersLiteracy\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"fathersLiteracy\": 1,\n \"mothersLiteracy\": 1\n }\n }\n]","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3a0279e76c29f0aea86aa1c81b6af20ea512e0b0f2ebcbd6521a5a9c5552c628', 41, '{"database":2,"native":{"query":",\n \"mothersLiteracy\": \"$_id.mothersLiteracy\",","collection":"analyticsRegistrations","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'682b7522e6d42a9039c2206cf4c38f2d8f9589b7e5e1f8cc30ffbc6e0d543056', 220, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }}\n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'477c0ee56ca69ca6dcfc8193c6f3186a61ea3b001a3f8d0af2ac857461ac487f', 74, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }}\n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'281a81f51db57dcfa7ffb4a43888604a94d51e32a4854de5d934a28fea654ab9', 47, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }}\n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c6fb74e148e4a5373a50fe81ef7b680b9048ceafb5cd05ec96d411969702488a', 32, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ade981c4f89b6c23d23bd9dde087e194222815fc9857be0b6c0c306cb2a86279', 53, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ],\n mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n \n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4594e0a5f4d60c29601004db656c07e1831545300510b90928749cc37296f607', 51, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n \n , {$match: {\n \"fathersLiteracy\": {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , fathersLiteracy: \"$fathersLiteracy\"\n , totalCount: \"$totalCount\"\n }}\n ]\n }},\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fc463168a0f7b2a959730f9669d5be37147dbcfb40686e0fd8e77c225ac71f99', 37, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n \n , {$match: {\n \"fathersLiteracy\": {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , fathersLiteracy: \"$fathersLiteracy\"\n , totalCount: \"$totalCount\"\n }}\n ]\n }},\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n \n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'295f017106d7e8f320f47d75116dd43e2fdcc5becb8bf06ddf05f41fdf5918ce', 36, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n \n ]\n }},\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"9089a691-4266-0a00-aa52-b8fee61d4036","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27e27cd9-fbae-cf87-bc51-c80804b9c974","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"8c6b86b4-771a-cdb1-ddac-7764a7eb4601","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"74a21df6-19dd-8230-5fdc-0a1c579f4948","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd27db8988326b237e43a56304048644dda88ae9730cffd51d9177c569f769db1', 36, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"17af367d-6c03-7205-6f37-659cca799486","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"392d7a19-f79e-05f6-c6cf-fa116399d84e","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e1686786-9b80-d7d2-b9dd-a054c3218c07","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"234ecfeb-34c0-a6ac-1d91-3d06aefc778c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n \n]\n"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f2145fa3f34fd7ad8b8236189030ee3bab361d76869d98f94b9d79f3da141989', 48, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n {\n \"$project\": {\n \"_id\": false,\n \"count\": true\n }\n }\n ]\n \n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17af367d-6c03-7205-6f37-659cca799486","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"392d7a19-f79e-05f6-c6cf-fa116399d84e","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e1686786-9b80-d7d2-b9dd-a054c3218c07","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"234ecfeb-34c0-a6ac-1d91-3d06aefc778c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4f59320c7f693b02c20bcc05298d8a4b40ec10158c0bd0e5267ff026db48d846', 30, '{"database":2,"native":{"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n {\n \"$project\": {\n \"_id\": true,\n \"count\": true\n }\n }\n ]\n \n }}\n \n \n]\n","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17af367d-6c03-7205-6f37-659cca799486","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"392d7a19-f79e-05f6-c6cf-fa116399d84e","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e1686786-9b80-d7d2-b9dd-a054c3218c07","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"234ecfeb-34c0-a6ac-1d91-3d06aefc778c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4aae9c6b1560ceac9e5b8a2197fd1e95de1e763a160c743370cbd58e440c37b8', 89, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",345,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cad422564f93ab804815483e8f263bb59e2e9989c5f32fdcc6ed442db3ae35b4', 55, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, \n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1c4186a9d927d128518e78808f34cabd9e1fbf09274e3f52e1cd37d1dcf77472', 76, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }}\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8cd9f999ef416b2c6271dcb3456fe11462dc4a29561fcfe4b14667470ec57fe7', 56, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }}\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f270607a315da299e32779aac48e233cfd46c8a40a04bc5d23094aad0e69e7aa', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.$fathersLiteracy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fba0552c553e4e54f4b4e107b5f405183a0195cd021446ee8d032299e0b4d92a', 77, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.fathersLiteracy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7e4b162b17840fa25f2a67ef6fb239e4d51d75dda3d549dac77fc6e0351b90a8', 50, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd54b935d7591d7a800fb7a0710b34c97141fcba954fe9c5f935400b5c4d0bc37', 81, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }},\n {$addFields: {\n fathersLiteracy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }},\n {$addFields: {\n fathersLiteracy: \"fathersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.fathersLiteracy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7ce3f70275e343d8dffad844683c8d4fbd4d6ef82e19bd9a3cf3dc2a43c8352d', 96, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }},\n {$addFields: {\n Literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }},\n {$addFields: {\n Literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'69184067e0a0eddc387e8fee3f1bb7136d49990887acf509607e3905be5feffb', 51, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"totalCount\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"totalCount\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'532ca3555b107743d30362c4aa1a635d81b63803e47acb13ca0cd499b8c90a81', 81, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }}\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'44f9f961b3f146437a129b573973a5177494d08f57a4f5d90988d4c8da904542', 48, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'63dc263429871a662a09fa8e199404869429142c436134a5163cc48fdac1dbb9', 45, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: true\n , ''Category'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'455edd72615dd953ae4860ee791cee0f98b325b19ea9a89d7c450c1e630b80a6', 36, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"23d79734-7558-b70b-eccc-8d2115f8a2ff","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"62b0c5ec-a1ea-149f-31be-65dd0a238f56","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f48670f4-2178-9795-0cf6-cde8d103d86a","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5dae9217-6276-68ac-fc43-ee5228b60021","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(1)\n , ''Category'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'652120cf761dce215152f174ed0741a9d3a4c8f6f042f5d8905c1cbdd9854022', 5, '{"database":2,"native":{"template-tags":{},"query":"0","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c5b58b17870156f2815c4353fe11b5947f306e2c59560eb69dcb8feb3a392f07', 54, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"21f80ea4-9f35-2640-7917-e87e1c0036d8","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"40953b7e-1f00-7343-41c1-727d4faf9503","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e517bd5e-0ce0-f86e-5a15-857345d9a910","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"850a8478-1a5d-da02-5170-8e646881d084","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b3a72b1b93bbc42ccaf0dd5619a7be92794e75de27cee0e6ef45f9e90f612522', 43, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"21f80ea4-9f35-2640-7917-e87e1c0036d8","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"40953b7e-1f00-7343-41c1-727d4faf9503","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"e517bd5e-0ce0-f86e-5a15-857345d9a910","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"850a8478-1a5d-da02-5170-8e646881d084","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }}\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6691d81c336d20ba8f828d05934c14da503628ffb867b4b0f22b872544bb2748', 8, '{"database":2,"native":{"template-tags":{},"query":",\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0659bca79676095c766c0485eccabb39c363842b15a7d84e95d3ed3706830a18', 82, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ba53dc44260acf89f287d991932eaa3d4ee7f0f8e0555e7a444cfb3d800860c2', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'eb6d46056f7b2d9d2aa51a6f956f5d2233b73df933701adfd7f2044181dee219', 59, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ee082d901bca437e2427a5fba4ed5bc6ec1636580febcb7df9a20add0f9653e8', 96, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6e24eefff8027e4f7f431d445a5f1d566aae4b9ca23e0ed75ee09d334f723ff3', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n , {$match: {\n \"fathersLiteracy\": {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"fathersLiteracy\": \"$_id.count\"\n , totalCount: \"$totalCount\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'736b1e4d4bbc9c1ac62278c07838af12bff4866a8a52f7524afd7b4057ae28c5', 78, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n , {$match: {\n \"fathersLiteracy\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"fathersLiteracy\": \"$_id.count\"\n , totalCount: \"$totalCount\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd42683180f7eed1af1fd0b253835d343b132eee1208a82078228d12295fd28ca', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n , {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"fathersLiteracy\": \"$_id.count\"\n , totalCount: \"$totalCount\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6e3d835d6e8ca7eca0f07e61b47cd4841d7ce7224863bfc14b2f8cd9cfa08bcc', 43, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"fathersLiteracy\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"fathersLiteracy\": \"$_id.count\"\n , totalCount: \"$totalCount\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'66191ae8d2422ce356646c07da0dcf7eb8e41b271fd5626c087a5d5f419903db', 72, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"fathersLiteracy\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"fathersLiteracy\": \"$_id.fathersLiteracy\"\n , count: \"$totalCount\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'00f80eecdbab3ddd5be5c481d554c05e0535dc701d41822a3f48e9fa13de2e22', 54, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"fathersLiteracy\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"fathersLiteracy\": \"$_id\"\n , count: \"$totalCount\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'67c2021b693cce83ace5f760d928f139237782fc364d5ce6b0b09e6f71abd94e', 51, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"fathersLiteracy\": \"$_id\"\n , count: \"$totalCount\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'19dc24887a0b009a5ccc6e131ea8d0a8a0e1a67d414e2e52219787fcfe399f74', 50, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e9996224d072604fb9c614a197524b93bfe9d847d3262f003dc9380ce0985893', 47, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"e8218caf-e2aa-573e-1776-02cffff42462"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3a6a4973df1c4c6c2f86a1cbda73b5e78a9d09aca2d782b1fdd148aa06638647', 6, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"\n {\"_id\": {\"$ne\": null}}","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c08b2388fcbb2cb21225a8e43b46dc1baed91f336f4f0ae2b58d22b972a08a6f', 53, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":[],"target":["dimension",["template-tag","filterState"]],"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7"},{"type":"string/=","value":["AKAMA OGHE H/C"],"target":["dimension",["template-tag","filterOffice"]],"id":"0debbb0c-3e5f-021c-9188-83371bf19895"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'65d82fabdc53a4c354841bde611d1fa2c2b5fe75dbb05149de4767e11b06f877', 88, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":[],"target":["dimension",["template-tag","filterState"]],"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd762fc93e5a62e0e47687123a1ac40f85282bfe188a67b9ff5f2edf2a80c1176', 39, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'613a02fe3968065e6934f9e180b62590e130052ec6baecbca2088fa6de97e7a8', 40, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"e8218caf-e2aa-573e-1776-02cffff42462"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1e2ed7fc881a067004021cbd4a3ed3ddc1820b97318c62eeca688ff4bf4d8fbf', 58, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"}],"async?":true,"cache-ttl":null}'), +(X'94fdb81015340dd7a7fc6ca4a935ad3b512140cf46338af34f5ff6d423ab2cde', 78, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd2c51bc5b9277f3b66aabf352b4d23eb0c85d90963d62710b2697aae97462401', 72, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7"}],"async?":true,"cache-ttl":null}'), +(X'ec53c95b36b8bbf03edbd1c626ca542d68ee4f678f8521b92e76d04bc59c7841', 60, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"string/=","value":["AKAMA OGHE H/C"],"target":["dimension",["template-tag","filterOffice"]],"id":"0debbb0c-3e5f-021c-9188-83371bf19895"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'28fb91736ce3640e607dde0c6cf7d9a0f5db6acd9cdb6ac36295410480b1adcb', 40, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"2022-12","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}'), +(X'aa6aa3076814cad386a80a87eb36e038e1c28986ce04cc04fc44f4a726485f35', 48, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"9e3a2f1d-031c-0bd1-0818-6efa8b490cfe","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthOrder\": \"$birthOrder\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthOrder\": \"$_id.birthOrder\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ac838b6463517e6ab23a56c896530ae3c686b8d9880b17405b99a45cf013c94a', 47, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"9e3a2f1d-031c-0bd1-0818-6efa8b490cfe","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthOrder\": \"$birthOrder\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthOrder\": \"$_id.birthOrder\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'409ad527645e26235a7428d0f19581a768604175d1196d5a801921240e70d1d6', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: \"$birthOrder\"\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''birthOrder'', 1]}}, then: ''order 1''},\n {case: {$and: [{$eq: [''birthOrder'', 2]}}, then: ''order 2''},\n {case: {$and: [{$eq: [''birthOrder'', 3]}}, then: ''order 3''},\n {case: {$and: [{$eq: [''birthOrder'', 4]}}, then: ''order 4''},\n {case: {$and: [{$eq: [''birthOrder'', 5]}}, then: ''order 5''},\n {case: {$and: [{$gte: [''birthOrder'', 6]}}, then: ''order 6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'81418d16269b6e3078620943cf5723c2a3832b2d7efebda30c630ab0e6571d0d', 7, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n ]\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5c1971eb012fd26ced295a70451a0ee9100fb29aa0a1dfb434e617c966928824', 1556, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: \"$birthOrder\"\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''birthOrder'', 1]}}, then: ''order 1''},\n {case: {$and: [{$eq: [''birthOrder'', 2]}}, then: ''order 2''},\n {case: {$and: [{$eq: [''birthOrder'', 3]}}, then: ''order 3''},\n {case: {$and: [{$eq: [''birthOrder'', 4]}}, then: ''order 4''},\n {case: {$and: [{$eq: [''birthOrder'', 5]}}, then: ''order 5''},\n {case: {$and: [{$gte: [''birthOrder'', 6]}}, then: ''order 6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'88b438f62c3d6504b432a3b10566c871f2f3d257bbfbfe6d2dee82ea8d7c50bc', 71, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''< 1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''< 5''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fd438647ebe6ebfdd8f17e44ca4d1dab14b37ba4d7c97cb8f13a3145a2933bf5', 36, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'41432339a7c25d3aacd35b0598b1fd463feb02d2d51dd5d9e2b47be89558a0ce', 44, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": 1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'30d5b055e6219cca0a32576846b38d5dbdb77db40ec67fdb386e61ce3f76894f', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": 1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b9d3641f099521b4a276b4707b652c10ff95227c5032b87c9fde8c442be26c89', 31, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": 1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5d535af3e9a623777a91f3c614f46cf4b08bce71e1b9382c5ae53eac125ff808', 4, '{"database":2,"native":{"template-tags":{},"query":",\n {$addFields: {\n category: \"Total\"\n }}","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4315ad17cbe98b8b6a6074029e692d430e2a3d4aac532a3223fbfb8c13a86db2', 56, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$totalCountInfo\", \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": 1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a192332e391cfb6d9938a883fcdd3f3a43b5a4fa556c04dddf52626c6d91b105', 65, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd9537ddea04f02424363ed091dae7b52de3d9f803f87af8e8d72744880a7e6e8', 6, '{"database":2,"native":{"template-tags":{},"query":",\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": 1\n }\n },","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e9980a5350ffd3a4ff3d9ccf53b3abcbfd240dab0b0216634f1a317df378f3bd', 93, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$otherInfo\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Category\": 1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1a02ca21447a613e03ba71aa6945e9e65364db8eb99f5f8cf8f02f5544951e57', 60, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }},\n {$addFields: {\n category: \"Total\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'412690e09c0d5a7326a06ac858ac773ff8e7121273b9fb8d736ebbb77b9b7b3b', 44, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fa87e93a5aeb69eecbcb9585f75699847b4711537372d309accfa575c01a5235', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }},\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'aee243f382d4595b386c01c6c73b58a06f4483f431cb2c8384ca684eb046ad11', 44, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c76607b23dc83e49cf0e6fc572de0ffa4bad8e9322167e370c1aff20f7c54b5f', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dbe5af7d440b62677a19930fd6501628b7e482122e249e0de60c297a99bd363e', 37, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n age: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n }}\n , {$match: {\n age: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , age: ''$age''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { age: ''$age''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.age''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''birthOrder'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd0edfcaa1b445e26e38727f5e4824d974181511bd45db7f0f82d4d573980665c', 47, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''birthOrder'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'303434b623e611bdc7a89627232aed22e6901c3cf6198a308954a003846d5b65', 39, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'21c736d6303eccd0c1fd85a0278593be03427d916cc810863edfc62a5f08bc20', 39, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''birthOrder'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'33f97ef115d89053bb52b2d52037adb2ccb45fd21cb4465a4bfaaa2ac7d02553', 77, '{"database":2,"query":{"source-table":22,"order-by":[["asc",["field",350,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ffa29894318342d64318c10d2511192bc69626117def472a6e3fb8a4c21f343e', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e439a1f0-2af2-30b9-8801-7b9fba1cbb98","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cae2d4a4-d21a-2e94-e6f0-926fc6c7b023","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"faab6f25-917e-c303-38a6-12e8f8c742c9","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"7c1881c5-3194-f05c-abd4-3ec53471c3d1","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9]} {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]} {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]} {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]} {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]} {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]} {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]} {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]} {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]} {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]} {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} }, then: ''60+''},\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4995ebf6c8b01bc59afe24c0a7619f47fd376f1cf7be3b8752a2cf9e4c34d0fb', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e439a1f0-2af2-30b9-8801-7b9fba1cbb98","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cae2d4a4-d21a-2e94-e6f0-926fc6c7b023","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"faab6f25-917e-c303-38a6-12e8f8c742c9","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"7c1881c5-3194-f05c-abd4-3ec53471c3d1","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9]} {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]} {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]} {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]} {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]} {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]} {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]} {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]} {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]} {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]} {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} }, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'aba0c7d1de14342eec996a6fb8bffac2c7a5c3eb582ea6a61f61c41cc9cafd14', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e439a1f0-2af2-30b9-8801-7b9fba1cbb98","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cae2d4a4-d21a-2e94-e6f0-926fc6c7b023","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"faab6f25-917e-c303-38a6-12e8f8c742c9","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"7c1881c5-3194-f05c-abd4-3ec53471c3d1","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9]}, {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} }, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e852efba524c7e0b20840fd5e0570a5857481783a5961c138d361edeaf1b21cd', 61, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e439a1f0-2af2-30b9-8801-7b9fba1cbb98","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cae2d4a4-d21a-2e94-e6f0-926fc6c7b023","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"faab6f25-917e-c303-38a6-12e8f8c742c9","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"7c1881c5-3194-f05c-abd4-3ec53471c3d1","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9]}, {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2f10e42d20630d3e5e9afccc3510cefbefe170c7eba2fa0b0dbd9508bafc1f67', 98, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e439a1f0-2af2-30b9-8801-7b9fba1cbb98","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cae2d4a4-d21a-2e94-e6f0-926fc6c7b023","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"faab6f25-917e-c303-38a6-12e8f8c742c9","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"7c1881c5-3194-f05c-abd4-3ec53471c3d1","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b10b4e5e41c734e7d742b841e975a1fa34352573650180c8aa65be4cc2038e22', 4, '{"database":2,"native":{"template-tags":{},"query":" {case: {$and: [ {gte: [''$mothersAge'', 9]}, {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'25ba5542d40c67ad842adf123c84823ef6265bedd6844db8001c548dd5b30bff', 72, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9]}, {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f3fb4c667dac5e3dd9da43198dbb5ba81e599f23e64a85d466ab6927b2eb2075', 59, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {lte: [''$mothersAge'', 14]}, {gte: [''$mothersAge'', 9]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'70d5ef6933beccf2b5bb4a5e1895896d2928596d67ab9eafb313811f75b418d2', 45, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {lte: [''$mothersAge'', 9.0]}, {lte: [''$mothersAge'', 14.0]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'af7b3280ce0c84e85ab3771a0b8adf29b60606111601fe49426bdbe929925a45', 73, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {lte: [''$mothersAge'', 9]}, {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'afed181eff818fabf06cd6c6d2667a0b816caeffb7b069e9289b8fffb0c89acb', 33, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9]}, {lte: [''$mothersAge'', 14]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd4845d21bf04cd52cc1416580c78d895ec6899f120509d2daf79daf1378ae295', 94, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9.0]}, {lte: [''$mothersAge'', 14.0]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8c602f6c06e6bb70a9c80c4b829d85a80984f8a4ff86027c3f535b5ba9142cca', 98, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9.0]}, {lte: [''$mothersAge'', 14.0]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b8727822d2443e9f56b5dc3afae31b2b2c7e37db24dd946724440cc314daf0cb', 45, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9.0]}, {lte: [''$mothersAge'', 14.0]}] }, then: ''9-14''}\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c160a8b1ae570126b33b308ffd4fe1cfaddcb1b4ed3d33532830228b22250091', 80, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9.0]}, {lte: [''$mothersAge'', 14.0]}] }, then: ''9-14''}\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5565d91ffa05e1f6f74cf7b4e59a13038a3ee0143f5c62dd3e67c4365589dfec', 49, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$mothersAge'', 14]}, {$gte: [''$mothersAge'', 9]}] }, then: ''9-14''}\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9c471f40cda8f372aa06bf36791d54814f407d2357f4002fab98cf8974398bfd', 59, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$lte: [''$mothersAge'', 14]}, {$gte: [''$mothersAge'', 9]}] }, then: ''9-14''}\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'db1cdbdeadc6a5a48133f26e7a81dafad99857957587c29a1f292a5e9a905dac', 66, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lte: [''$mothersAge'', 14]}] }, then: ''9-14''}\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'351aca616d1f583d8c3da7fdc391f1a417fee393a6c7c79474d573d3c9632e2c', 58, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\",\n ''total'': \"$totalCount\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'21fa419ff2841eaf390731d3219b86e6e1d0e7f1533a1a0f455aa4f45382882e', 42, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1a76d2133ca0e34a329a90f6d606b93410d207c3e66c6fa80b0df438d9eeea3b', 63, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'578f537dab0ca62506ddfa5586ded943cd551765d24322376d6a9c5361348740', 81, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd1c11cd8ff4f2a3a19738e3cdaca597a5e9ff5cdc69de191f783f6ad6235d6b4', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(33, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-e', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(33, 1, 'a79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"56559614-c685-9d81-d44b-a688fe5b103b"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'17e216f605b61737d7708bf175373b764f5346ccdfbf4a933bf35e0f27b6b01f', 39, SYSTEM_COMBINE_CLOB(33)), +(X'85134d0c4451d1f1467ff9e4a6828565319cd570551bfebb8a1328078033c04c', 67, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",349,null],["field",348,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f192d9e0369b33dcecf8b0575507251e5a74171b2a84dc2ef444b6219189c6dc', 44, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",349,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'36a4f389353a3dc810f863c8dc0e77317488cabbd776108be8cf1820138fe163', 58, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ee71f48dc8eece50bca60fa0e64467eeec08c19476d8503e08a3dcffff3e2ccc', 40, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'16a104361b772de031ee7f1346652fdbef1dd95739ecfd8dde422ba70f8ca3c0', 78, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fcd6cea773262908178fcfbb401f33b7a800e72a9c23f2bf421cd397c54a5d5b', 50, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"a94c0fd1-e550-61f5-bf93-6745782a3236"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'80f114bd64f4aac75c9e40ec5f2639beefeaa37955db5e155892297f13095eb4', 48, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a0d253af06e6ecd3736e80e0ab74a20be76c0f1626e362c33aa83581c630ed37', 52, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",342,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3318b906776515c942cf8d5d0698fdcf46d898382a6b39cc7ba939a87f805fe4', 30, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"birthType\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3b256d54597c624b415f72bf7b031f9573761f1ec0132a1b611a564fff8a2a02', 88, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'15b6387e165db3dda148cbcd7ed278e73047540d8c65fbafdc1453f824ee0f5b', 57, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b78ef5903488e566891d7937fa8027f5bddca16f1796527ab6490d527b285dd1', 46, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ce3630b5efbf8b2aad1ba812dfd20e4cbd2e29be1c6d18be80d01d6290532757', 36, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'79a4d08c877a1c439dde7a26feb3282ab90b1f147da76a91d7bbc93637ee473f', 217, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': 0\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'aa3461ce199bf1773c22c77f2671f3062993d73d7a2a665bb56db45f574c8e4f', 37, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a9c04d70c5c7644136ff6b21ea550798f2d0f2c2274aa6cb88f1c73604bd8270', 53, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4d0a9b00d8785dfaa32a439045387f837a572f760650d9221991ac122a0dacf9', 54, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e0fcf503caab19708f6a4ebdac9ccefccd90dcbba0d01a2b0ec5f393e0aedbd8', 46, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 09]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'577f57d0c9fe7fe66b2692f6c19fdac2fd379d1fedbed00adc76ea4ac73def3a', 55, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'130f4eededf20465bf1ea82a6920f4c39ac536e7a033cc913df1932775afeb7b', 52, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9be651aed00e7a1a0f98694e3ea9a9e0b6bf60305947d8f3a20932c97a6e0030', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b82bbee442c8dd06a1d92b825b33d1fefa1d4cc61fc1fd60a803dafc1f71e08e', 64, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6aa07aa5d619d7a75c1c2c6e51bb192e30bcd829b6fe4b0bd74e3aea8f2e0626', 81, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"44befac7-4574-1271-49b1-69c58e2781c9","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"dc0470f6-bd15-bf09-bfe5-cfecb5d3d152","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"24f65ed2-6d5d-cfb5-375b-55cb9ca2a9de","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"0d494a66-a356-d1b0-a8ee-096059925b87","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"2b1394ce-33e5-6e2a-380a-3e41af08b58a","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , childsAge : \"$childsAgeInDaysAtDeclaration\"\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'11b998c7f23037a3052642f9cda822f849d84029638d92d91debda177ac88b40', 4, '{"database":2,"native":{"template-tags":{},"query":", {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": 1\n }\n }","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a0df3353d5df1aba010446de53d5ca0941229daaabc24c1abe7d346c9b24e9d4', 8, '{"database":2,"native":{"template-tags":{},"query":"Count","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c35ee1091cdc842e6b0a3df2815422a2c7136d43e9aed0e217f47ee288b84e1b', 45, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(34, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , childsAge : \"$childsAgeInDaysAtDeclaration\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userla', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(34, 1, 'nd-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(35, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , childsAge : ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userla', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(35, 1, 'nd-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(36, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(36, 1, 'true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(37, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(37, 1, ':true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(38, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(38, 1, 'rue,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(39, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"nati', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(39, 1, 've","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(40, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', totalCount: \"$totalCount\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analytic', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(40, 1, 'sRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(41, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analytic', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(41, 1, 'sRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(42, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(42, 1, ': -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(43, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''1'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Co', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(43, 1, 'unt\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(44, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(44, 1, ' \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd1c91b6e6937910baa0dfcdedf07ca663a18a24f879883f35f4b57ee6ee630ef', 25, SYSTEM_COMBINE_CLOB(34)), +(X'3c1f46a7db331a3dd24b8c014a4f84250c1fc47aec7e296c76be2112e19bc594', 34, SYSTEM_COMBINE_CLOB(35)), +(X'01dac61fed56a5f4fdb990a862abe6e3f20fdda3e295f3ff53bbf714fd134c9e', 49, SYSTEM_COMBINE_CLOB(36)), +(X'1a03667d46c96f2c1e76aeec32ba37cceb082b00f323d1008eb530e913327d2e', 75, SYSTEM_COMBINE_CLOB(37)), +(X'd99cfd02bb99dfb8cbc0b835b5b310e583ea51f825a368c6a4938ed698454daa', 38, SYSTEM_COMBINE_CLOB(38)), +(X'8de608ef99719b521bdfb70074046bd29d5ac6b70291a9c20b5ee5a472295de9', 61, SYSTEM_COMBINE_CLOB(39)), +(X'5846eb69108f21a0f66f89ae270e098999c6b5af69050cee06e9ab1934a234db', 82, SYSTEM_COMBINE_CLOB(40)), +(X'c95f87c859f84387803332a5b3e61d7d38b505df1149ce744ff7fb923b069b63', 54, SYSTEM_COMBINE_CLOB(41)), +(X'e3160d8405f1738a2b63cdedd8bdf9819dc4ad749c22592f109ea3e212e234c1', 62, SYSTEM_COMBINE_CLOB(42)), +(X'2adefdfa6450e83b0cc3bcf915772ef35a30c3eda1728573058227f5fca51618', 34, SYSTEM_COMBINE_CLOB(43)), +(X'e5898c8dc0fe7ec7740eb104fdc2288fa3ab7ca2d2b2ffc19270d0766854e0a1', 55, SYSTEM_COMBINE_CLOB(44)), +(X'be11e60101ab344e57433d819564249a360788b57a7aa2312a8b223c2c9cc8b2', 200, '{"type":"query","query":{"source-table":22,"filter":["between",["field",350,null],30,35]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7b8697b9ef8789d180e3898858f46705f392507b31bf120f19d6f696cef3d04c', 45, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'289f53a494711550523a850b5622549dc627460d949904d630a92f58a9b5a438', 65, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'efe03cb23549b7ccf6a3b8c59e8a66bb9851879fae065fee335f6d6f496a0cb8', 52, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5239caa61b23b3e4364d40c23ebdb9eff35ea501f6237dc06e0c8c61e537639a', 173, '{"database":2,"query":{"source-table":22,"filter":["between",["field",350,null],9,14]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'74c525da6e1b13642bf74d51ec2b7e8ab7e448f47b03407259563156796a616e', 78, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: { birthOrder: \"$birthOrder\" }\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'eef4215fef491a4907b32d50f43c15956e6ce0aa4bc8681e11b9118de76edaf6', 62, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder\" \n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cf659cc04b2358e8e9c183e0881e0ef0efeeea2a47cca88c4730b8c86a1db78a', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder\" \n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder1: \"$birthOrder1\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': ''$_id.birthOrder1''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder1'': \"$allInfo.birthOrder1\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a0587d1bdd78e34c59bc3e155b6537d12cb6879505543be462d3a00677c2ac2d', 7, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: { {$eq: [''$birthOrder'', 1]}\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder1: \"$birthOrder1\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': ''$_id.birthOrder1''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder1'': \"$allInfo.birthOrder1\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0b98468c1df379e836f7c8b78554acf79cc30bd1b88c65e814b6f8e2a3bd8ad2', 11, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: {$and {$eq: [''$birthOrder'', 1]}\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder1: \"$birthOrder1\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': ''$_id.birthOrder1''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder1'': \"$allInfo.birthOrder1\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8de9470e6803e89d09f427b01a558e93e018ee5a536f846f5c33fddeae7ef055', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: { {$eq: [''$birthOrder'', 9]}\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder1: \"$birthOrder1\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': ''$_id.birthOrder1''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder1'': \"$allInfo.birthOrder1\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'57e13c454f55814fa7433f062deb6bafb09507dedb6d5ba4527ac994dea7273d', 17, '{"database":2,"native":{"template-tags":{},"query":"$mothersAge","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'eb2282727d1eb16d64b7bb16f20e59f1435b7ee0126a638744b7c9aaaa61bca7', 96, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bfbfbad1a79872a6fbb3ef5b6885ced7b37584ebe7c6bdd40ecde644daab2e2b', 32, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : {\n $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', ''2'' ]\n }\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e07a84afd73f27ae2330f4deb8cf491682b0ed861d329c03e38b48157759e947', 206, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b17c314fa7ae53f056e8199b3a61576fab1a43d378563d1f7a99485824553512', 33, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ef4581c2231c13471ffcf9b69d0bb4afa5da8cea281368971e6c571f18efdd17', 41, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''5'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'729bfcac7305970548aee3a343a0e0065165550ac28044b5f08be90a193b4088', 40, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''$sum: \"$birthOrder\"'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b37a8834de11441ef508444565f6e5365a0cad80217d7d0d14e0f46a8a62225e', 46, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''$sum: \"$birthOrderOne\"'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', 9, '{"database":2,"native":{"template-tags":{},"query":"$sum","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'26a6e7a6215ff35838edefa835f30d2711d3c535bf8ac999d9782eeb93efd3b3', 50, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''$sum: $birthOrderOne'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'59337c8d175e0e429ece019e69041e35440c5e33b147cbee6d276681fd7bc22f', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: $birthOrderOne''}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'af1b2f16df72268ddc66969c84f2e3657a008131ac0851aad052d3019099ad04', 6, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: $birthOrder''}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'746c199c62431a301c3fad652761bab7d34aebf21872e1833c8af4be3f571b2a', 54, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2569c1484715dbb5408b9a1838fcc950137e46f36ed2fab6b88534aa88aa912b', 45, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'28928cb618f008fffe5f03a99127794ffba7969f5c1ddfc2a33697c7b4b39718', 85, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(45, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(45, 1, 'int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(46, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrderOne: \"$birthOrderOne\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(46, 1, ',"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(47, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(47, 1, ', ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(48, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne'',\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(48, 1, '0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1ea4720ee0ce7568477bb84da0faa921d5e64a1d16220c87f104b723b84e554d', 38, SYSTEM_COMBINE_CLOB(45)), +(X'9fd98e928aac5e538f3c2ea2a0aafcbd48abba89b04a33ddd069179ebf7a4eab', 34, SYSTEM_COMBINE_CLOB(46)), +(X'c675169a2e9b0338229c2a6eb43ad3d85c6002646ca6385df0b538adeb9db760', 33, SYSTEM_COMBINE_CLOB(47)), +(X'cd44a3f8e740219e54e93a9414c4091c5b890033963a89d719c16e0a291a85bd', 5, SYSTEM_COMBINE_CLOB(48)), +(X'022c7ec6fd68660e12c06aa5c3e76fa8d217019c36ceaba14c7693d11af0f046', 54, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(49, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n]","collection":"analyticsRegi', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(49, 1, 'strations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(50, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoo', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(50, 1, 't: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(51, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoo', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(51, 1, 't: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.count\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(52, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoo', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(52, 1, 't: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.count\"\n , ''birthOrderTwo'': \"$allInfo.count\"\n , ''birthOrderThree'': \"$allInfo.count\"\n , ''birthOrderFour'': \"$allInfo.count\"\n , ''birthOrderFive'': \"$allInfo.count\"\n , ''birthOrderSix'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(53, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, ''1'', '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoo', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(53, 1, 't: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(54, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(54, 1, '}}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(55, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, ''2'', '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, ''3'', '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, ''4'', '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''5'', '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, ''6'', '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(55, 1, ': {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(56, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, ''{$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_i', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(56, 1, 'd.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(57, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(57, 1, '.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(58, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: NumberInt(2)}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(58, 1, '.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(59, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: NumberInt(6)}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(59, 1, '.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(60, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$_id\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.bir', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(60, 1, 'thOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(61, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$count: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(61, 1, '''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(62, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(62, 1, '_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(63, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n {\"$group\" : { \n \"_id\": { mothersAge: ''$mothersAgeAtBirthOfChildInYears'' }\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.bir', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(63, 1, 'thOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(64, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(64, 1, 'id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSix'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(65, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFour : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderFive : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderSix : { $cond: [ { $gte: [ \"$birthOrder\", 6 ] }, {$sum: NumberInt(1)}, '''' ] }\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , birthOrderFour: \"$birthOrderFour\"\n , birthOrderFive: \"$birthOrderFive\"\n , birthOrderSix: \"$birthOrderSix\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''birthOrderFour'': ''$_id.birthOrderFour''\n , ''birthOrderFive'': ''$_id.birthOrderFive''\n , ''birthOrderSi', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(65, 1, 'x'': ''$_id.birthOrderSix''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''birthOrderFour'': \"$allInfo.birthOrderFour\"\n , ''birthOrderFive'': \"$allInfo.birthOrderFive\"\n , ''birthOrderSix'': \"$allInfo.birthOrderSix\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3a6ad120f151518921c061e0e2285022fa2ecd50a6586769c049032be1b8a2b2', 34, SYSTEM_COMBINE_CLOB(49)), +(X'f7b7b67f24ef031a754fae80538dd7090b55693b01808ed97b9e498b13d0b7b5', 32, SYSTEM_COMBINE_CLOB(50)), +(X'b0304046f476b478bc0fab0acb3e69a6e3e645e407ad76d57c0fe1b061de2896', 77, SYSTEM_COMBINE_CLOB(51)), +(X'860117fc88f8df303646b21b1b38870c456625b8cf9efcfd86f579b6241313cd', 35, SYSTEM_COMBINE_CLOB(52)), +(X'4dd0acc33f052aa473ed468c3ff899abe217bf9f287a4b969c0b56230ce61195', 6, '{"database":2,"native":{"template-tags":{},"query":"birthOrderOne","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'aa41a3cf263e28a16a1bbd5fd57bea88957f22d4dcb34da80b3f93da85f33817', 44, SYSTEM_COMBINE_CLOB(53)), +(X'e1d099cc1052632d9c9a1523b1999773a3c0fe23d95c259eca68c7dacf1e6d24', 44, SYSTEM_COMBINE_CLOB(54)), +(X'895414a3b394a0e02180c213262952151607d0cad8604fcf321f693758c9a46d', 5, '{"database":2,"native":{"template-tags":{},"query":"''2''","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c4d39c1a69ff259f43f33c84cf64a3a0ae5a6f32737290cb9fee74a29fed54e7', 38, SYSTEM_COMBINE_CLOB(55)), +(X'08c3675f6373b646e5aba22f4c68808ef93c0f61e32856d7c463332fee897a42', 9, SYSTEM_COMBINE_CLOB(56)), +(X'6103cb21d4a8e30005f19a25d3bf7bb2b73ca9e908a24a0e88e57da8ad8c4e0d', 43, SYSTEM_COMBINE_CLOB(57)), +(X'1be22ecfe3a876ec32c6ac2e2b35609541c8f3294d159176b63f839f476129b3', 82, SYSTEM_COMBINE_CLOB(58)), +(X'a0b49f30423f2f4f1258eaf67babe02c8cb093502bb06fec650ea02ab931193c', 53, SYSTEM_COMBINE_CLOB(59)), +(X'dce33851562a48a437420eefda0bbb7260ded4e92f09b7c373a4c4f59a840b1a', 38, SYSTEM_COMBINE_CLOB(60)), +(X'09b3770d34c180da9c3aad8c29c997926b35fb946c22acf6dae3a7c79155ba1d', 279, SYSTEM_COMBINE_CLOB(61)), +(X'91540bd4ad87fa9ac8bdb77cc9f6ee3ee72f665a57b4ea13ccc7338fe773c0de', 52, SYSTEM_COMBINE_CLOB(62)), +(X'68e044dffcefd1f8c6af4acffbc0b09d5b838915c15c49f8c5561773cf36277c', 37, SYSTEM_COMBINE_CLOB(63)), +(X'ae17bbefc5e724063ad85c6b78c065e143aa5510b463f327b73b64e2085b2eda', 43, SYSTEM_COMBINE_CLOB(64)), +(X'7b13ac1e3ff32bffbf8e78ec2933910374888221925ef727d85efaf7562e4025', 56, SYSTEM_COMBINE_CLOB(65)), +(X'4086cc9fddd9390ae45e606f89c0b4e486261e7f20bf030ca2edb71ba8552de6', 58, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 2 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 3 ] }, {$sum: NumberInt(1)}, '''' ] }\n\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'08a2ad0ee9bf9f59d7637054bfdd82d300345c640d671f46de5b7ba2bedf0943', 32, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderTwo'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderThree'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'01376b32c52aee606e3868fad82544cf636b8c795d3d349bc5a64e844e376d1d', 62, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: NumberInt(1)}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: NumberInt(1)}, '''' ] }\n\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'352b5138d64b1e37ce55815c3c0d87404712027adeaec1d94d0bb4bf0cc6c3ea', 4, '{"database":2,"native":{"template-tags":{},"query":"$birthOrder","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bdb4d2ee1240b059a49982730e69e8598f9ef54382f501210abe8d8ff4a73c51', 4, '{"database":2,"native":{"template-tags":{},"query":"{$sum: \"$birthOrder\"},","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a15a23535ef6ab642e7011bbe633a4e41a0f084e3f165164e6a56f95a63c5f6c', 36, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e0364a792f0b6a3777e1b54369a842ca9fd3ce797db3e4d1aa4224e4efe6345f', 41, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$_id\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cb57b0b2172793ed8c59c7bf42680ba252c29c17304ac8f8f635ca582c464eb3', 117, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, {$sum: \"$birthOrder\"}, '''' ] }\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2365d7fd268d6c061dffe2aebe7f89616237b472e613beaca764e86d03bebb8e', 49, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9efcc71ebc9263dd98a817693792e21936c9386a497d6016bb49a23f9ab0ed29', 36, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n \n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c29e3c62189ebd677300f581431ea48909a3fdbe31a8526fad278acfac3ea411', 5, '{"database":2,"native":{"template-tags":{},"query":", {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'01ad55cb4573dd8a95d1fa100d2ef733e8670989ccb9df488ffc1dcc23fd2c89', 7, '{"database":2,"native":{"template-tags":{},"query":"5","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a6a85b37be18b3615ab198dd0ecba4f893c92bb2c6b6bcf7270408f14378e354', 44, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrderOne : { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo : { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree : { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'34a97630f46d8bda48d803e3fecafc763b1ddcdfec63a1d985a0f70b90b71c4c', 79, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1b358b1e6bfc51a00e6549043280081036bb72bb590d9a5c614dc603d5dc5f78', 33, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(66, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'' }\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(66, 1, 'ype":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(67, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"typ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(67, 1, 'e":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e393bfa10d2b51d2ebcd976ad90a8afce9b378b4eed92dd7f09f305412b9be5a', 7, SYSTEM_COMBINE_CLOB(66)), +(X'6eec4e74f6c993c42e4a6c4b028d48354df0d191121aaf94970f0c154149a012', 55, SYSTEM_COMBINE_CLOB(67)), +(X'817cc55b0b2f1fbdaee07870f507d97236141535424f2179353622554dcffc77', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'' }\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0f87816e84a804703946ec076e7ac9db8cb5e78e3094c6b85c91557ed003dbe0', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fb2efdf9b4231ca2c843903afc0d1700bf57815da00c2e814e30232d95eb81a6', 4, '{"database":2,"native":{"template-tags":{},"query":"_id: { ","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ca835ed429b4bbbac61f45afddc87dfe01a24baf272b9d7c6155a5fd75c60a45', 66, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(68, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n ,{$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , totalCount: {$sum: NumberInt(1)}\n }}, \n {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(68, 1, ' \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(69, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n ,{$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , totalCount: {$sum: NumberInt(1)}\n }}}, \n {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(69, 1, ' \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(70, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n \n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder: ''$birthOrder''\n\n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n ,{$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , birthOrderTwo: { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , birthOrderThree: { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , totalCount: {$sum: NumberInt(1)}\n }}}, \n {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderOne: \"$birthOrderOne\"\n , birthOrderTwo: \"$birthOrderTwo\"\n , birthOrderThree: \"$birthOrderThree\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrderOne'': ''$_id.birthOrderOne''\n , ''birthOrderTwo'': ''$_id.birthOrderTwo''\n , ''birthOrderThree'': ''$_id.birthOrderThree''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrderOne'': \"$allInfo.birthOrderOne\"\n , ''birthOrderFour'': \"$allInfo.birthOrderTwo\"\n , ''birthOrderFive'': \"$allInfo.birthOrderThree\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":tru', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(70, 1, 'e,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a24e02346e92ad0408b7860a89f43452b17dec4cd9415f828abca5a72719849a', 6, SYSTEM_COMBINE_CLOB(68)), +(X'896bab5c27241b8c853310c1340bafb7d3c0e2fbc98255d09a919278f31e2449', 51, SYSTEM_COMBINE_CLOB(69)), +(X'47c988b4396f8cc522d0428a6af439344105d3f35c4340fbf948cbb0cff64f2c', 37, SYSTEM_COMBINE_CLOB(70)), +(X'9a1de0935f81af7bb983fdb6eea258f3bdd20b4b12b119ac2cc09851011c8b56', 56, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'967515b07c4bc07595471ccac1d81720978fe2f08986f4972356e1459c9b1ff6', 34, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a2701ed627fe864c1055bf0758b7d59a1ed7e9d4e78dff53dffd4fb994d952a0', 35, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c09d454b40f2de780034ae430f48e0c8e64a554152fc92f307fd6d1836886366', 43, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"08cdc09f-e3b9-8a96-f4ee-53d53526b033","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'585f557b9a6ae5c232e05fec8508edcee9828764801d970c07a97f4a0a6e54f1', 68, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b48ca641158985f6bf0aed7243b494e003e2ad697337b2158784175ac938f97a', 36, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'363036f463afd4c0767a906e57a53efded1e878066b9569e7432aed671515035', 31, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8315d2feec5c74265c290ecd309b327f7f3396e9c358bef24a36835ba2da1ed0', 64, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.orders\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'11af46b933fe16f9f1a28e1d31e586445d987151a476185b531b459cf44078cd', 53, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'db4070b4ce1dd1b259181ce114d15b5d04d8e5788b56c052ebeec344b54651a7', 34, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$otherInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$otherInfo.category\"\n , ''Count'': \"$otherInfo.count\"\n , ''birthOrder'': \"$otherInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$otherInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8149f67d0d5bd79928de4a6845b9da3f28a0ce10e5ada15a9d80a35a2d42e05e', 86, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$otherInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$otherInfo.category\"\n , ''Count'': \"$otherInfo.count\"\n , ''birthOrder'': \"$otherInfo.birthOrder\"\n\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b2c2a19889dd15ba4e0b9c83d5b686610cd0c12f55ed1f049c31cc3480662847', 71, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$otherInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$otherInfo.category\"\n , ''Count'': \"$otherInfo.count\"\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$otherInfo.birthOrder\", 1 ] }, 1, '''' ] }\n\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9adef11505d517af553a68ceab99158c025034690cb054190e60dfe3de5a3964', 4, '{"database":2,"native":{"template-tags":{},"query":" // , ''Count'': \"$otherInfo.count\"","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'aa85a87e38f8f523f73fe48b58e0d88aa77f49c59698ba27e52b867207b04d54', 34, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$otherInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$otherInfo.category\"\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$otherInfo.birthOrder\", 1 ] }, 1, '''' ] }\n\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'efc9b606d61c03f9788427ee50da992131038646380baf6232a468b12c4da549', 33, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$otherInfo.birthOrder\", 1 ] }, 1, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$otherInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$otherInfo.category\"\n , ''birthOrder1'': \"$otherInfo.birthOrder1\"\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dbd926401695f9eec5351e00c37bbd2e7e146b3f311d47d5f6b8d8bcdf75aadb', 61, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$$birthOrder\", 1 ] }, 1, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$otherInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$otherInfo.category\"\n , ''birthOrder1'': \"$otherInfo.birthOrder1\"\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8d4463764722777b013e4c73df6993a227f740e6e02247ce6c81d0e1b99ee94e', 37, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$unwind: ''$otherInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$otherInfo.category\"\n , ''birthOrder1'': \"$otherInfo.birthOrder1\"\n \n }},\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2e299534caaebc2195f663651d796a2be47a7885205d16517131d3eaf1ab27b4', 34, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e83fd92587edaefaec20aedc319575d48bec3b5636f0a9f863c9658189e8eb38', 31, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'56a95f401cd25d5fddab11ecd0a4b5a9463fa35749a84faa23c009cc3921b22e', 34, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'24fecbe6d7dc5fb8f9d556e01ce691c25a58bd94a332217c0902437aa942abaa', 72, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'af38248afa441b9b2e0fabf95b416036cf515c95fa30ab5c69adb124ceb30c6e', 196, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , birthOrder4: \"$birthOrder4\"\n , birthOrder5: \"$birthOrder5\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e7d457d721761996d429e3553a681c22f980d69be12c7c498f38c413cad4a45c', 74, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , birthOrder4: \"$birthOrder4\"\n , birthOrder5: \"$birthOrder5\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bee3673b5aa5deb11ec810061199073e067d4f3435f9144266d3b257e839ff62', 68, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , birthOrder4: \"$birthOrder4\"\n , birthOrder5: \"$birthOrder5\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'41a000a24139ea3fe78ab8ea483154b123bc1f6c34d5e35b5b8899b41c147f6d', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: {$count : $birthOrder1}\n , birthOrder4: \"$birthOrder4\"\n , birthOrder5: \"$birthOrder5\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': \"$birthOrder1\"\n , ''birthOrder4'': \"$birthOrder4\"\n , ''birthOrder5'': \"$birthOrder5\"\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cbc25a7bfd632b539bcc64720ce5b22ed02fd737ee87e6dd6c1a73d7f0825935', 3, '{"database":2,"native":{"template-tags":{},"query":"\"$birthOrder1\"","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cf8dc03cf19739b312ec0f0915e36b5796a6cd94e3cb843dfa92d7d46405e09a', 43, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b052a61a-8981-8638-bdb0-681d8b681ae7","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"ba139981-9cf9-8d6b-0557-52e30e0c455a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"0720fca3-306f-e16a-0586-71659ba2f9f8","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d5bc4386-92f2-d8c3-4b9a-f4d74232c5e4","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , birthOrder4: \"$birthOrder4\"\n , birthOrder5: \"$birthOrder5\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': \"$birthOrder1\"\n , ''birthOrder4'': \"$birthOrder4\"\n , ''birthOrder5'': \"$birthOrder5\"\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bc2026af8125077b971b6aa9c8037028c6bcc32597f1c83f5479fe382ebbdc94', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"d49384fc-efdb-5b40-0e10-ad4f999f1069","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"234d1302-61b3-cb21-8386-5e394e6d4f80","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"7a99f792-06f7-2a5a-9f7b-c7bb99a11019","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"39c80c5d-91f6-0d5a-6c18-3a150a7925c5","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , birthOrder4: \"$birthOrder4\"\n , birthOrder5: \"$birthOrder5\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': \"$birthOrder1\"\n , ''birthOrder4'': \"$birthOrder4\"\n , ''birthOrder5'': \"$birthOrder5\"\n , ''count'': ''$totalCount''\n }}","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5b36e06801237c5912ef772fffb3acdee6fea0abf6f1bae7cebf6d1ed2645abb', 63, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"d49384fc-efdb-5b40-0e10-ad4f999f1069","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"234d1302-61b3-cb21-8386-5e394e6d4f80","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"7a99f792-06f7-2a5a-9f7b-c7bb99a11019","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"39c80c5d-91f6-0d5a-6c18-3a150a7925c5","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder1: \"$birthOrder1\"\n , birthOrder4: \"$birthOrder4\"\n , birthOrder5: \"$birthOrder5\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder1'': \"$birthOrder1\"\n , ''birthOrder4'': \"$birthOrder4\"\n , ''birthOrder5'': \"$birthOrder5\"\n , ''count'': ''$totalCount''\n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'67955502fa2b8115fbf02191d611a46902433bc2b1636415073011ca13fc0213', 121, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"d49384fc-efdb-5b40-0e10-ad4f999f1069","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"234d1302-61b3-cb21-8386-5e394e6d4f80","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"7a99f792-06f7-2a5a-9f7b-c7bb99a11019","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"39c80c5d-91f6-0d5a-6c18-3a150a7925c5","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n \n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f5cce4605bbe3c05cb238da876ab7eedd74115a9cf1a868a6b90e2484c430b20', 78, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"d49384fc-efdb-5b40-0e10-ad4f999f1069","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"234d1302-61b3-cb21-8386-5e394e6d4f80","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"7a99f792-06f7-2a5a-9f7b-c7bb99a11019","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"39c80c5d-91f6-0d5a-6c18-3a150a7925c5","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n \n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'05a62b52c55bfefd56b667c225fd3975f2645e0d71c7123fce278996ee0e68ef', 4, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"d49384fc-efdb-5b40-0e10-ad4f999f1069","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"234d1302-61b3-cb21-8386-5e394e6d4f80","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"7a99f792-06f7-2a5a-9f7b-c7bb99a11019","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"39c80c5d-91f6-0d5a-6c18-3a150a7925c5","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"count\": \"$qty\"\n }},\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5844d1a9fdff09a50a6646157e0f998a8d908ee63b3453d448ecef4704610963', 48, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"d49384fc-efdb-5b40-0e10-ad4f999f1069","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"234d1302-61b3-cb21-8386-5e394e6d4f80","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"7a99f792-06f7-2a5a-9f7b-c7bb99a11019","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"39c80c5d-91f6-0d5a-6c18-3a150a7925c5","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1, '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd6a4ecd5cbd379ec60bc022231272bba516e0b8e4dd087060939b272cd45657d', 37, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"d49384fc-efdb-5b40-0e10-ad4f999f1069","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"234d1302-61b3-cb21-8386-5e394e6d4f80","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"7a99f792-06f7-2a5a-9f7b-c7bb99a11019","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"39c80c5d-91f6-0d5a-6c18-3a150a7925c5","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n {\n $group: {\n _id: \"$birthOrder\",\n countNumberOfDocumentsForState: {\n $count: {}\n }\n }\n }\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'59561fc0e05b6cefc6d67962736886bf59f985a9e0740f6d276482547e2e66a4', 3, '{"database":2,"native":{"template-tags":{},"query":", {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, , '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'440a1c20a45242a23250966bce16fa4eb38699a2d9c82da2d979d09867285dc4', 5, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, , '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n ,\n \n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8e45122642e6ac3c01b2b90c6478cca5f5721c21a0609449d4381ea17033e0be', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, , '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n \n \n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dc003ac18f9e39ee8e71164a94bf6b57e197aef3de1e57f993e53e3dc61bb462', 40, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":" [ {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , ''birthOrder1'': { $cond: [ { $eq: [ \"$birthOrder\", 1 ] }, 1 , '''' ] }\n , ''birthOrder4'': { $cond: [ { $eq: [ \"$birthOrder\", 4 ] }, 4, '''' ] }\n , ''birthOrder5'': { $cond: [ { $eq: [ \"$birthOrder\", 5 ] }, 5, '''' ] }\n \n \n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bc9fce45f652f4e123adfc3129036024d3b1a4f690343d847a2d49c6ac7d9dbc', 57, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"de9db672-71e9-7d26-4204-abd84f9b0f02","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9c7c46bc55aed2e9ea62657cea9671ce0aadc0dcc135fd7b3f464a5d8f8c7109', 67, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"de9db672-71e9-7d26-4204-abd84f9b0f02","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\" \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f7356bc76fb11a9b606cc56c1e704f9ab741236ba9c46d57bd24a875e61069cb', 33, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"de9db672-71e9-7d26-4204-abd84f9b0f02","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n \n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\" \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dcab37711ba83490ee6feae8ee45edd1ac05530f7cadbb93d471ad30a66ee0e2', 49, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"},"filterDate":{"id":"de9db672-71e9-7d26-4204-abd84f9b0f02","name":"filterDate","display-name":"Filterdate","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]\n }}, {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''birthOrder'': \"$allInfo.birthOrder\" \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e05aeaab643ee929fce114ae7eab6a74de27410588a0b68f5ca068150e31cd81', 52, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9dccb17171cc5b18afb4adcfdc2fe27e344041d919f33f35d4a9461b8428c329', 69, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n \n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b076b2d220f08728819a39113643e7be0b76fc43ef2540a5966d21b1a2358006', 57, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n \n \n , {$group: { \n _id: { orders: ''$orders'', birthOrder: \"$birthOrder\"}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''birthOrder'': ''$_id.birthOrder''\n , ''count'': ''$totalCount''\n }}\n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3e0de6a6890c2a18dc539fedd5c3f0a4f78c87f66f63fe392792edce279ba055', 51, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"8219589e-0e76-985b-5e60-6e3038e29ef0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"b4852df8-a7b5-407f-d82a-b28aff6633e6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"d074db0e-91c6-87c7-dd2a-1816507d1e04","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d21330dd-47c8-162c-b7f3-b258ab4878b7","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n , birthOrder : ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''}\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , birthOrder: \"$birthOrder\"\n }}\n \n \n \n ]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'47359d392eae798b773a74e45d5f71d60d26be2785b93296773034c56ad0b944', 103, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'064d6e1da5a9ce521346e3a06a629c6ce5f211a1bb443db2b7c402c29ae2b079', 68, '{"database":2,"query":{"aggregation":[["count"]],"filter":["time-interval",["field",354,null],"current","year"],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3933773f87a0ad76dacdf4d5ded63f2a09e7c33e6b8f6494dd174cbdfefcb006', 98, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd24561b6663d040e04274b4d0b95a1fbef9f8dc4004998524ac9be1efe1b3cd2', 136, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3371a0a07e305d42ea888d462d720b85643cad850b0445e3c5dd3dd5ea7563ef', 92, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd91bed1d7cc5ce580378392504a0cb7a5c676815469e7c44c998eb96a58b5852', 102, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'536a16bcbada0cff95ebb50a5fc84b24741281fb72b1964eeea8c012f15089a6', 115, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'1be726fe5ff606bff71292f1874f01dbab9f75ec58b3b1be63c6efcec9cd7d1f', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd0204dfafde5436a0afedf676ec80c8ad4f31c595eb80558785afa2cf60951c5', 58, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6cba134252bf7f0114306057b3df37e5d260f0c2f9c3b07f360ec542026851e4', 80, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f691a8e652045da32b7d1cbe53ee374419805789b279c81c5eb7c2b506529c00', 71, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(71, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-e', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(71, 1, 'a79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f93b78a676023f8f058c1b4318f9a76ab0d89a3d4f02d487832b766ea44b99e3', 84, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', 85, SYSTEM_COMBINE_CLOB(71)), +(X'e64ce3688391f6f405a1718196bdcc367835d9be9892eb27e12204c8a6c13971', 125, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9be54dd4c7c95f482afe94c13f31d7e017dfe8e3389037bb927c29b07fcb24da', 72, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f"}],"async?":true,"cache-ttl":null}'), +(X'863f340d7a6bc4800faccccf2ef48737be53062028a467c401728829b61012a3', 42, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cb32e5d7ac0331c9e26811d7da7260ead6ae6a8dbb07dd48db60d8646f89d3cf', 378, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'ea6eb5ebd6ce7b2369f4167e4c44c0eda95bf1f3886a2ef6db297f6ff1b89d55', 150, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'509536cb7cec8cbc4cad30ccbcd2bd32f3ab38700074e048e9853ab57394f6a2', 334, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'e36f0a3d794a2f18badb7738a538c6338e565848157f90948ff50a98c22d4ada', 270, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', 288, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'a1259bf5b6a1c671759de9349b7e35a9e2368e321a68e3e91fbc49caba9e6e1d', 235, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"}],"async?":true,"cache-ttl":null}'), +(X'78447e2814de993723aac252f78eb943a4f68b032f7ef2fcdec8c4c190ac2f62', 61, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(72, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(72, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4828c29713cd5530efb8714e9786894ec68e5de52a612d1985e0124da2b02cea', 70, SYSTEM_COMBINE_CLOB(72)), +(X'9cad830fe555ef3595bf054bff9502fa2922629d4b554290d6274eaa5b3feebb', 76, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'), +(X'fd4a127fc234affbddd43a9cc74de480a53adcff2cd905becd230fa670374a6c', 83, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'31a2b5bc3ea70237328ba9c44fb9da2a176ff58bb6d90d1fd41854f8fb7e718c', 81, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'), +(X'6b0370d181a502c1570b9757a1ecc1f396f07704465db921d07a9dc1d85a51d1', 77, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(73, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(73, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e4a5c1bd4d036be81902da71a8975ea3c974b37b2d3623f75d60bffb2a75669d', 42, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'), +(X'23b7b9b09769324665c9c9b79fa76c586e6d034b9609c41cc8cda9302e70ba14', 81, SYSTEM_COMBINE_CLOB(73)), +(X'e45bbffb78e56cd99b924549ecdc70f68e0f2f8722e390326ab64fdce25bf3cd', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b68b99ed11ac8cddadcfa9080ee2c8054b7eaa9de1de52820e25c8e93c67c7b1', 85, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'), +(X'3788d1e3ce9119b07ec500318260f8c5599c6a105d1a3d750be138dd148bdf2e', 78, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f19aa23fd86e5bcd7949f0131b4af086b2d09ec26fbd435811375e4681be3721', 84, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'953f59bd1ba9df9409a572221c970a552beadac9a8633b8f2ac03e1fd0eff226', 92, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'), +(X'9671b6aeda72192838c92b44ada637a963f8cafc88fd3948c159d4c1558163fe', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(74, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(74, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e0993196c0841a123cb093b3ce6954bcfed47ad147658d3828523781316618ab', 99, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'), +(X'a2e5ca9e4d15ea73bcc3a81474623752236290745c5f7088e6aefcfa64312c02', 95, SYSTEM_COMBINE_CLOB(74)), +(X'0a12024b4a670a54d56a4cb2f28e9a77d231d25c5ecc6c080d82053905c36ffd', 110, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e7acd63fb322bd4f9074a581c862571e164217be325db511b07ba3fa723eb209', 138, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"80d846d2"}],"async?":true,"cache-ttl":null}'), +(X'057f77c8c11faf9869754ea3e956d4c1c95b0a5d62190ce4dfcd1a5b1c9d79d9', 76, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9350e24580c87b2b39e67a25a791e0c22aac00b8ecf4a4e5353bc69153cc32ba', 94, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'4a57fc8ec46cb4a51b65b4e16d3b6d019e538c8fcff15f68fddd1f90691d0ba9', 69, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(75, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(75, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e320b50a3c71c8ddcbdeef853d3b3b55174c7d1b075768123e20a54f091ebfff', 153, SYSTEM_COMBINE_CLOB(75)), +(X'a09004fedc9ba69b178219c131e94ae3da52a2055585194f2f330a2534851caa', 159, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'c61d2227e2baa2868c909437c75b5f6334d915a9c8d5edee636cd96ab157f437', 117, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'46dc6c4009dcf42de376ffb65fefef711904fc855ee14c3cb6adbe933b2329a9', 78, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"async?":true,"cache-ttl":null}'), +(X'49878e372dc1fbb24ce8a1e508a4ac868cfa816f37106af23a3d866cbd3f8e68', 48, '{"database":2,"native":{"template-tags":{},"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsCorrections"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f3745de86b1c4d458e3e7cb9288de545697b05f4fb123fcd319a1cc3f626b1c7', 5, '{"database":2,"native":{"template-tags":{},"query":",\n {\n \"$sort\": {\n \"gender\": 1\n }\n }","collection":"analyticsCorrections"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'745e4574fa35d42d9386bc45d368b15f9b5e2e7d23f4becae84bbc5844b46374', 31, '{"database":2,"native":{"template-tags":{},"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsCorrections"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'068a7a0c6240e1bf8589b910bf7fbf86ea1503ab0bd02991e02e99fc61dd7915', 29, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'21b0c804f65654a4b978fc6122307783777b4a7cda2a0a60274b393bcda14576', 32, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f8d7e7e39b7812ce2bf6ef0a80eb5fc64cb432fc72d8453d3f0be3cb451e20b9', 67, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'687d75d74c26c41efd54752f24fbad77e25c46fec1db5eed14e5f51b7f12004d', 35, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsPopulationEstimatesPerDay'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''estimate''\r\n }},\r\n {$unwind: ''$estimate''},\r\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\r\n {\r\n $group: {\r\n _id: null,\r\n total: { $sum: ''$total'' },\r\n estimate: { $sum:''$estimate'' }\r\n }\r\n },\r\n {$addFields: {\r\n percentage: {$divide: [''$total'', ''$estimate'']}\r\n }}\r\n ],\r\n fake: [\r\n {\r\n $project: {\r\n _id: 0,\r\n percentage: 0\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n $project: {\r\n results: {\r\n $cond: [\r\n { $eq: [ \"$results\", [] ] },\r\n [{ percentage: 0 }],\r\n \"$results\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n $unwind: \"$results\"\r\n },\r\n {$project: {_id: false, percentage: ''$results.percentage''}}\r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bd3555146089691a01384832226fbc65202b9d76faa8cb2a913416ffd148b0cd', 53, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsPopulationEstimatesPerDay'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''estimate''\r\n }}\r\n ]\r\n \r\n }\r\n }\r\n \r\n]\r\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6dd96c282f75c306e39f67630251e0a408b8e4b080da88dc826e410bab5857b2', 105, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''estimate''\r\n }}\r\n ]\r\n \r\n }\r\n }\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ed49a22c8f58b632aee9d72eae99edd1505ad6fd8d568a7544632701149942de', 49, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }}\r\n ]\r\n \r\n }\r\n }\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bb39f799f145ed188c270fa9d0dde3eee8dddb7a255e3f5999cab433e1fc7ab2', 47, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }}\r\n ]\r\n \r\n }\r\n },\r\n \r\n {\r\n \"$group\": {\r\n \"_id\": {\r\n \"gender\": \"$gender\"\r\n },\r\n \"count\": {\r\n \"$sum\": 1\r\n }\r\n }\r\n },\r\n {\r\n \"$project\": {\r\n \"_id\": false,\r\n \"Gender\": \"$_id.gender\",\r\n \"count\": true\r\n }\r\n }\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1acbf9925c38299087099472a64211d26be8fbe7e277a3e4983d7122681f0b5d', 49, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }},\r\n {$unwind: ''$info''},\r\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\r\n ]\r\n \r\n }\r\n }\r\n \r\n\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1e0380c0df67342f051208850ef70913a583562ff93049da7f5ce96b26633c63', 99, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }},\r\n {$unwind: ''$info''}\r\n ]\r\n \r\n }\r\n }\r\n \r\n\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8f5953e54f0a58b3f9e28466ba91616e62923679df64011cd0c4e48988090641', 5, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }},\r\n {$unwind: ''$info''},\r\n {$addFields: {state: ''$info.state''}, {date: $info.date}},\r\n ]\r\n \r\n }\r\n }\r\n \r\n\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5d83185f1ef0dc3112dd89c966a81a2787fbeed9f06e987bec1bc48c381e6fbf', 38, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }},\r\n {$unwind: ''$info''},\r\n {$addFields: {state: ''$info.state''}},\r\n ]\r\n \r\n }\r\n }\r\n \r\n\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7d41e2d13ea90f0ed55bb12f4d1b0fea0635ea553c2d08544dc838b5ee9c58e5', 18, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }},\r\n {$unwind: ''$info''},\r\n {\r\n $project: {\r\n info: $info\r\n }\r\n }\r\n ]\r\n \r\n }\r\n }\r\n \r\n\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6e98f70bf6293498639bbfb3406c1cd2b3a5a45c87d696a54c7abfa3601518ca', 43, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }},\r\n {$unwind: ''$info''},\r\n {\r\n $project: {\r\n data: $info\r\n }\r\n }\r\n ]\r\n \r\n }\r\n }\r\n \r\n\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c90b449f3a2da32b2be5ed2a66bd2d07212e3f6da8bbaed47eb1eddaf91ebfea', 4, '{"type":"native","native":{"collection":"analyticsCertifications","query":"[\r\n {\r\n $facet: {\r\n results: [\r\n {$match: {\r\n $and: [\r\n {\"_id\": {\"$ne\": null}}\r\n [[ {{ filterGender }} ]]\r\n [[ {{ filterDate }} ]]\r\n [[ {{ filterEvent }} ]]\r\n [[ {{ filterState }} ]]\r\n ]\r\n }},\r\n {\r\n $group: {\r\n _id: { \r\n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \r\n stateName: \"$stateName\"\r\n },\r\n total: { $sum: 1 }\r\n }\r\n },\r\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\r\n {$lookup: {\r\n from: ''analyticsRegistrations'',\r\n localField: ''stateName'',\r\n foreignField: ''name'',\r\n as: ''info''\r\n }},\r\n {$unwind: ''$info''},\r\n {\r\n $project: {\r\n data: $info.stateName\r\n }\r\n }\r\n ]\r\n \r\n }\r\n }\r\n \r\n\r\n \r\n]\r\n","template-tags":{"filterGender":{"id":"0308a29c-953b-f157-7bba-0114f0fe7524","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"9121fa52-5699-59ce-12b2-72f4fc23a171","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"06106e48-619b-0971-6ff5-b31bc24c2a12","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"48c5fd02-fd14-6c79-e874-00e34c04bdcf","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'989b1a4d25a0519be1b5afe2afaad53de2f0c99fb9d900036ce8cf677bfff9e3', 144, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"f7c41ba5-43a7-ea03-9b1a-40b7d40c46c3","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"02757b28-c757-b6c2-d3e3-f16f38fd5d68","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"27462bae-c19a-cb21-069e-76c914e3b192","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"84853cd4-ddfe-7a90-1561-a1d03d8ac46f","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"51c4957d-fde1-3d3a-0c40-ecd099689181","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","collection":"analyticsCorrections"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'32990090fa7b19063142c32a50d01d16c36c75428b5f6b180a458840c9b5c382', 116, '{"type":"native","native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"02757b28-c757-b6c2-d3e3-f16f38fd5d68","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"27462bae-c19a-cb21-069e-76c914e3b192","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f41c2c18f66463269f2c3d2bae053e2f3bde5f7dd232f8fa978bbe173de7c54e', 30, '{"type":"native","native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"02757b28-c757-b6c2-d3e3-f16f38fd5d68","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"27462bae-c19a-cb21-069e-76c914e3b192","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"27462bae-c19a-cb21-069e-76c914e3b192"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9c91451d471ac373bed0e271c6c722e69373933916734844eb21bef20988487a', 31, '{"type":"native","native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"02757b28-c757-b6c2-d3e3-f16f38fd5d68","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'94c2e75067030548c5be7a5c2f1f4939bd5a415de39e125083c0662b68c5b3c3', 50, '{"type":"native","native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"f23364d5-4c3f-2263-1e94-a05f003ceef7","name":"filterGender","display-name":"Filtergender","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'06880a258df71643e85d4f8d9231d4653080eb09951a622cd55861e5acb59801', 31, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"159af7f7-00fe-e38a-a93a-35cb2c03549a","name":"filterGender","display-name":"Filtergender","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","collection":"analyticsCorrections"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'db2c8cf1e15ae40e36e574cb0188ac96bdcedbfd055d56fa0e2a02ed2561090b', 121, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(76, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(76, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9183a70b26da6371e9211108dc1ae0e15b32fec6e6b6c606f8aedfd0546023af', 104, SYSTEM_COMBINE_CLOB(76)), +(X'd8de849c2b6f14c60517d0a7401b3acae7ff96c14e72eacae62c1ca7225c26ce', 126, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'1af9dc1305573da0e3be82ce6bb91c2b792a0a0cb75e57475abbb642d6f4aca3', 163, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e16ad6adef791e28a08f03f6817f2c24ef83a1e99b6f2daea7432548c27585b6', 141, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'2f695c1f040df024a1be848aaa51e2675f8db3cd5f2c32eb3099875e9916490c', 167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0a85e354a673439f146e465f22efa7a15dc06cfe2c8bf57d08c92174eae97a61', 45, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'7b0b504212d43dcc05e14fe209acc51310d2e3bfff8ff77c8aaeab3e828890f3', 51, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dda733d44ab69e5205744dad19aa7cc3fada17009a0be476209e6115b095f0fa', 76, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(77, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(77, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ea24671af24ca0c411589b75ac9fe073bf0b1460f1a09a89fa234453f35d00b6', 72, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'ba2daed13418deb1805f4547edf5f599b1902d1c8abbe1a08190922ec82f0bd8', 66, SYSTEM_COMBINE_CLOB(77)), +(X'1c21b7d677748b96c0a7474ee6aae671741bfc5376b1f5df8c5b0aac3b37bf28', 77, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6ef6e5e47a909a53259c293bc824974af670207686a2ae3c7441958ca9ce9b6d', 95, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(78, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(78, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0c9969c27d1d135ee4a07f2a1fbd0be6646b29be592867fc5ef787e2b57fb953', 146, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'da7806eb8d39f11a5847e0b5bb9a735736dcc520cd0ecc808c8a90a8d0032227', 193, SYSTEM_COMBINE_CLOB(78)), +(X'e4a59a49efd6f45c674c3dd2ebcf1f8baa3acffdbddb22ec5186b1d72ba9a033', 167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f38a1282a39ce1e20eab8bab6174ca0b892bcbc68f6193bf95d830373cfa9e7e', 226, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'59b3602c637f912b732d1a98f8b8acef9fb13f66a18d5de2b0e3da40bb492a49', 219, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', 157, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'5a03d741b68ac7d2adaaad64b5563248e92d5d129cc4df22e58ce9c595cf7099', 168, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(79, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(79, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'095063ab5613d53dddd4b22c9f961917b012cb8c179bcbad436e3ccead94a546', 172, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'c0a1918262c0e4d8de88db9a4915b806b7bab4cb6f5cf647ff690a20aa2c2c88', 211, SYSTEM_COMBINE_CLOB(79)), +(X'a215b266ef6082c6cef7ca8100e86fcad35a378fa40db609ba456f711e9336de', 217, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f4808e1c952174056354c5fdb6cc329e3163469aab792bb25a2fd22275913f6d', 196, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'ee3f8505e240dab9f2bdc170533c5d6d4121ca998464b5048890fc1f1384a3e5', 196, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', 206, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', 214, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', 221, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', 201, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', 208, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', 288, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"601da076"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'45cfb3b45c8a223617230b0e0b3eced4c8d036fd3455b21ed56e016a489a17ec', 176, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'67dff83ec7df6024aa6c4fccdae35c00e0e5a4887d7fdf99f6d8908837984d89', 150, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'af81c80df748b0be1f91223cdcdc9cf9d1bfabe55cac771226df3215c6719fa2', 152, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7aada2f03eacd1c744378b34cb8537194af418609ab8346c1d4a4cd89c07e3b5', 145, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', 232, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'68501413befb67115fd46f78ed52d92717e7ecdc107cb4621c39adf530ad1e76', 128, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3e48780f928188bb6045ec0c5b244142cff5f8b2a6d25e09838d8795d54e4cb9', 138, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'5227534e1fda21689c88e8436b385cd2f277cf43bb68799d251e40188c7173e3', 95, '{"type":"query","query":{"source-table":32,"aggregation":[["count"]],"breakout":[["field",513,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'31ed44d477531dfed91c17c8cc7dd6982cfe0c9d83cd5ff986719fd9c0372d99', 45, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsCertifications"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4ea4741a4f14753717999d4cbc9c2f51318464dcbb2a4f3e909ffeac0760cb19', 74, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"e077944a-b578-c674-c8b8-0ddad320c4a0","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"7eed05c6-dd3f-ebaf-e491-060f0be6f28f","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"c7bdb75d-fbbe-7f30-6d40-c80137461359","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"53963d4d-bb02-15b4-68aa-561e36ef3fdc","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', 150, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', 71, '{"database":2,"query":{"source-table":68},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'83fa085ecb56571eb4bc31d38c8581c538161e810b5754de8223b3e0831d4f56', 70, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"e077944a-b578-c674-c8b8-0ddad320c4a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterDate":{"id":"7eed05c6-dd3f-ebaf-e491-060f0be6f28f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",635,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"c7bdb75d-fbbe-7f30-6d40-c80137461359","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"53963d4d-bb02-15b4-68aa-561e36ef3fdc","name":"filterState","display-name":"State","type":"dimension","dimension":["field",623,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"01e63ac3-da4f-cb5b-ec81-1899092eb8e1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",627,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"e077944a-b578-c674-c8b8-0ddad320c4a0"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3759d68764c65460576cb09e1e7fb24e25f1d58c4eb8eda2942914c985df28c2', 62, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"e077944a-b578-c674-c8b8-0ddad320c4a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterDate":{"id":"7eed05c6-dd3f-ebaf-e491-060f0be6f28f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",629,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"c7bdb75d-fbbe-7f30-6d40-c80137461359","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"53963d4d-bb02-15b4-68aa-561e36ef3fdc","name":"filterState","display-name":"State","type":"dimension","dimension":["field",623,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"01e63ac3-da4f-cb5b-ec81-1899092eb8e1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",627,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'664258f8de7c0332ea0d3ec53682cb353a2d72836d298aea84f731fe6ec5a05b', 75, '{"database":2,"query":{"source-table":68,"aggregation":[["count"]],"breakout":[["field",617,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6856561883fb019395c9ce14d53348115624feb4d01166d200d4308485ffc8ab', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","collection":"analyticsCorrections"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'353f94fb27ed10673f9c3b0384eeb36c3aac9a163cdf9f86cca311c243d0944d', 81, '{"type":"native","native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'82e58e46d4c8b5c25a25f0bdfba1ee1247f6ea5056ec61e3a630d840daa0aa46', 48, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"159af7f7-00fe-e38a-a93a-35cb2c03549a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'cf0e98a19acb5e32987cee5f9e7f14c165f881336988eab6c5f4363e2d577ca8', 45, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",350,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', 88, '{"database":2,"query":{"source-table":32},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a7df3d0859a64066765282bb09ea79b8f6e53440e629acecf22bce2e926e46d9', 98, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {$lookup: {\n from: ''analyticsRegistrations'',\n localField: ''stateName'',\n foreignField: ''stateName'',\n as: ''state''\n }},\n {$unwind: ''$state''},\n {$addFields: {info: ''$state''}},\n \n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"e077944a-b578-c674-c8b8-0ddad320c4a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterDate":{"id":"7eed05c6-dd3f-ebaf-e491-060f0be6f28f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",629,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"c7bdb75d-fbbe-7f30-6d40-c80137461359","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"53963d4d-bb02-15b4-68aa-561e36ef3fdc","name":"filterState","display-name":"State","type":"dimension","dimension":["field",623,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"01e63ac3-da4f-cb5b-ec81-1899092eb8e1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",627,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'66020a64c75ebd77c42bab1b1bc9f0abf6bdd5bebf89232115969cca45fc15f6', 333, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]],null],"BirthOrder":["field",346,null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null],["expression","BirthOrder",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b9772b3c4216a66468374aefc582a350249dca39a77e0f93744a8bd3484f0a2f', 104, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f73c08d98bcd1e7bd90ddb4f37665ca2215936e1fe8939aac2da0f04630f89f5', 181, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["field",346,null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5ad106060f0fe599da84573e7bd224587b8ab7a65d8072e7da4d75a1d4b84e86', 108, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["field",346,null]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'702f0e708f0b99cd4d5487b3b2bb565c90f32f78afb7eb75066ff30ae69b96d6', 94, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'554a22ca58406bc439a94b7fe0a963d4a30befb4b3fd60f97908f72400395702', 226, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null],["field",346,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'13ab874fec6632706691edc5115f77111f412d66d028c42a52d9ffaaa32f4edb', 188, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null],["expression","BirthOrderGroup",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0264d7a6a820905643b90ed842dcbe3cf1a778cfe556fe05e45513e6841e2b81', 233, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["cum-count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b29067aaabe76c6e8b0de746e473b32ee1536de41a700f7adbe9ff1de715dac1', 113, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'84432bf5371583d04327ce36d0e74ab84251c1dda40e217545930a65ec81ed88', 253, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["cum-count"]],"breakout":[["expression","MothersAgeGroup",null],["expression","BirthOrderGroup",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'521dcb050aae2995805f07abd0afded36b7bb1efc2e98524c82b9de2db8cf569', 120, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null],["expression","BirthOrderGroup",null]],"order-by":[["asc",["expression","MothersAgeGroup",null]]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'84aec2dc7261953d9ae5b649ff253c07f0d4b437211def5c495961e87760ca90', 128, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null],["expression","BirthOrderGroup",null]],"order-by":[["desc",["expression","MothersAgeGroup",null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b2f118b1d6f257c875f330a45b848a462abe98b3ae8f1e3db6ce20b495838019', 154, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup",null]],"order-by":[["desc",["expression","MothersAgeGroup",null]]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'11e5f0aca1ca272a40a2dd87ae4b5f15f634198a3b9878be092e8ef8ffbb09a5', 119, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3c44e423a31caeb4b0a6255ea44a3db1002841533cc345eb476fca4157e81394', 171, '{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup",null],["expression","MothersAgeGroup",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7926c97febc9fe624a1d4f632fee66f7f0c24f07a19a141a06767e8deda4eafd', 41, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",346,null],["field",350,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f0c0eb4d2615394dd783c03d161171154da6ce340d37ba48d573dd7b4f27d1f4', 46, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",346,null],["field",350,null]],"order-by":[["desc",["field",350,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7e10b97b2bb0cae00f9029275655cb444f22ab635831533d8c6bc4910309afeb', 49, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",346,null],["field",350,null]],"order-by":[["asc",["field",350,null]]],"filter":["<",["field",350,null],9.008219178082191]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ee6ce3c4b09478aabec60d48afb7a8c25872a9650f239029bbf4500173922a68', 40, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",346,null],["field",350,null]],"order-by":[["asc",["field",350,null]]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6952082e6828eaec1d6dff13534ddd7cf20f736cc3b0c106a06e59750fb6aee1', 147, '{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {$lookup: {\n from: ''analyticsRegistrations'',\n localField: ''stateName'',\n foreignField: ''stateName'',\n as: ''state''\n }},\n {$unwind: ''$state''},\n {$addFields: {info: ''$state''}},\n \n\n]","collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"e077944a-b578-c674-c8b8-0ddad320c4a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterDate":{"id":"7eed05c6-dd3f-ebaf-e491-060f0be6f28f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",629,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"c7bdb75d-fbbe-7f30-6d40-c80137461359","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"53963d4d-bb02-15b4-68aa-561e36ef3fdc","name":"filterState","display-name":"State","type":"dimension","dimension":["field",623,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"01e63ac3-da4f-cb5b-ec81-1899092eb8e1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",627,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0fec3800bf88eb0308c0bba8ac67c609a450187a54811250cf68bcbdaddac659', 178, '{"type":"query","query":{"source-query":{"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]],"expressions":{"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]],"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'51dabd24b50fd941cf37cbebbd3eb984cb1431d9da33790f157ea47f063954b8', 374, '{"database":2,"query":{"source-query":{"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]],"expressions":{"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]],"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"filter":["=",["field","MothersAgeGroup",{"base-type":"type/Text"}],"20-24"]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c3df63c74e7d7fd230eebe2d3a597043a2db1b4530bd682db04f06e10a8ca149', 174, '{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">=",["field",346,null],6],"6+"]],null]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', 293, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9f8816bc305db02c18c551027326437cc3e019ac75bfee72e9c559316d25e866', 51, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5"}],"async?":true,"cache-ttl":null}'), +(X'cc0411757c12d7252bd1c7c096c0aaa8429d5a1bd6b570f37aa9a9cd9b32fc49', 136, '{"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[[">",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]],null]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a75cb508f8e3a4d86a5757d45002c66267aada71a152f9e095bd8122b1887c1e', 77, '{"type":"query","query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]],null]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', 99, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"09cf09fd-43f0-76a9-1a84-19e2211c5f99","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5d5e27a0-0a80-75a6-8663-a48fc368824f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"74598bc8-a103-0234-07d9-bd9a3a8a8c03","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"60404361-fd98-8d80-56dc-39e7e3142256","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ecc33b91-6c9e-0cf5-ecb1-dcdd6083cbc5","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"placeOfBirthType\": \"$placeOfBirthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"placeOfBirthType\": \"$_id.placeOfBirthType\",\n \"gender\": \"$_id.gender\"\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"placeOfBirthType\": 1\n }\n }\n]"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'720f4a79b2e7e7314cdb1b9091f7160fd9674f134641eded7d741200e20a5140', 54, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5a5d876901397a96415bef4129fc9ef5ac6c630611c12ba4b6368550a063d97b', 45, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'72e75afda026b5e400937c75831c88f57b237755b3d46e6cbc8eb78cf4f400ea', 211, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(80, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(80, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'72bb6293464d581ee0c9ba4082b8e3932b0ea76932071b8d30a5fe92b0a5bcd7', 157, SYSTEM_COMBINE_CLOB(80)), +(X'6b6fee8bdc5b209c7cc9268e6b3a5a9092867057ed9c8d00b02f847bac8b30a2', 208, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'48f26db4ff97f6f39e22c0c8acf88599ad2ccd1e9e983c6e7b813b7e8b1ee581', 160, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9cb90f1a01d52c447fd09c6e64954c3ce301b087f1cc62564d7594ebf16b2119', 409, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'1bef0ac877902f9b15782ee5a73a097b143bb01be246d3f2766f939aa90c5863', 393, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'2327b2b9b4ca390daf7d69dbf962adec3908e11b085bfe02593ad9310c0f01d6', 310, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'70946fc27a63d8a376394792c937816b1d741b1faf2fc6664112ff6427ea55cc', 505, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'31fcbcc4bf88524bbac61796e601c1f65bfe31b00c66c8272762cbc92ec1b8a0', 422, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'3fae5e9d18a4eb2c1a0c7fe73eed116f37bad47a71ba77dec9504dcae9a09a2e', 325, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(81, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(81, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a1442bfd1c1315c22a8564d1090e7279c12b56806b7dbdf216e2bee8d904dea7', 353, SYSTEM_COMBINE_CLOB(81)), +(X'95c1a3d7c747d723143d457d727d9d2766aaa3d65f74694aa79c8494f668ff02', 232, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'a6596fb9bf8d75260622b2c83c745747e4696a61d7fec5a75f890565c610da0e', 845, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(82, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(82, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ec2e35c1b7c79bde76e6161a75c4b26df03bed6616c0c760dde2dcb6b347b193', 1378, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"past1days","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', 151, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', 157, SYSTEM_COMBINE_CLOB(82)), +(X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', 146, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', 196, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', 167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'67535e9e9cc5a3e8af0a9fe5c403d1d19a9ef3e3c901d92506583f5ba8d2da0d', 138, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'0c06c93f247a56b3ad7df9b08b818bb99018698bd56a658fc601e15a0488f0e6', 360, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'f6387e8647d2235e9d6faaa232936748132108b2a3e9bb705f640a488fe3adf2', 405, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'596525564dedf8e5dfcca43a391669cf556f7d353bb333fd939db8199ad7b58c', 90, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f"}],"async?":true,"cache-ttl":null}'), +(X'9dc636cd6c67fe0dc884c9d4f9e86174e8dbd68d7de8edf070876d7235472f43', 58, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', 165, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'56f2359817e42964bcbc7d778858f31d549c01d9aa3c36255e20e8e640ccde34', 136, '{"type":"query","query":{"source-table":68,"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]],null]},"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'90ea5d5d66e3254eeba2bf82eb8d29f09d44b48b6c5350d22b7f73886f36173a', 63, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsCorrections","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n\t\t\t[[ {{ filterOffice }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"reason\": \"$reason\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"reason\": \"$_id.reason\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"reason\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"45c1a608-4f90-575f-b4bd-d7f94fab463d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",618,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4d2085eb-4e76-a972-cda0-29e95c0e659f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",640,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"bad1be56-f14e-362c-8d18-0b313f6adb3f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",650,null],"widget-type":"string/=","default":null},"filterState":{"id":"5a021558-c1be-4bab-931d-66de2a7a7973","name":"filterState","display-name":"State","type":"dimension","dimension":["field",637,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"4b2f66c9-15b5-1cc8-592d-684eae9218cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",639,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9f0bfbb9564f8d9385324032b7c1e5eb92f52d26e2225f5317c474d58f66e285', 42, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"863856af-c2bd-7f03-86ba-ee2d20391afa"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"69a1f49c-c196-1066-8180-ba4992cd197b"}],"async?":true,"cache-ttl":null}'), +(X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', 236, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b2dd606a8a2cca20c2cd65c9c55c14a3d6962e9f140a0bbbd51312d105972e0b', 100, '{"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]],null]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth",null]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'37aeb298b14d0e06e6bd66d67e4e4d822be50912844abef705147d4bf08655ed', 164, '{"type":"query","query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]],null]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f2fdf02ba30b9c042e7c4b8ff0c4be2df8595ab39afece92288cd09ce0468605', 113, '{"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]],null]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth",null]],"order-by":[["asc",["aggregation",0,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd01b054195e21477f7b218f2f63ac43b0f2189e80a8928b512ed8c5b4aca3c7b', 93, '{"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]],null]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth",null]],"order-by":[["asc",["expression","TypeOfBirth",null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f375cbe7b945041392ca76d597c4f66a52af7c809aed19afdd88b2d0c569711d', 77, '{"type":"query","query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]],null]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth",null]],"order-by":[["desc",["expression","TypeOfBirth",null]]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7c8b723179a023d207c30a991ad168443bbce4289de648a5e825edeb11328fec', 85, '{"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]],null]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth",null]],"order-by":[["desc",["aggregation",0,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', 127, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthType\": \"$birthType\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthType\": \"$_id.birthType\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"6c30554e-f7ca-3bf2-22ba-f62b35e6470e","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"863856af-c2bd-7f03-86ba-ee2d20391afa","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"d9aa4d33-546c-a100-7285-ad924027150e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"320bc93e-9921-b649-b119-4aa7f4bf5a8f","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"69a1f49c-c196-1066-8180-ba4992cd197b","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c7ab4b582b590238fc95b852082594d93281005fd26dcb567ca0074de3735454', 252, '{"database":2,"query":{"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"filter":["and",["=",["expression","PlaceOfBirth"],"Maternity home"],["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2d8cf15289f44cda2afaa65ef49d260299e0a5d6f3984f729d03300acfcff99b', 82, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"order-by":[["desc",["aggregation",0,null]]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', 358, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7081e1b4a20abfd4f6bf6cb4231bd254bcf4c95b1775abfa2dcf0d5fd54019e7', 88, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"async?":true,"cache-ttl":null}'), +(X'a7fbf52b2dc39c80051ead502fda3e2391e25ffe0d188653bb1365d62a40992c', 227, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ad98952a5db3ce23d1181578af284a64e9f97f8393aa39b5cd1a9c241bf866b8', 102, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'8c3f178967ded84a3e75d0e2fe22e57009b16be0f6b72c975c538d4e6612061f', 76, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0035eec9f1a09519bf45c7f389141d5003c4d4a1d531b6e1f9d96a114ee4fc16', 56, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a1356d1098bc871ffeaa6fe9d9ca6e43216441551b86d79aad63737f3ac70d25', 153, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Ccount'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9f593437577e4606282cb3bffce6897fe4f8b21d8ec7598129a1a7cdedd23e23', 160, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', 355, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'712de5b3aa78b9b34be459212b8ead7405aae5e4eba595a8073c0833ad23b83f', 56, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'f9388092a6e8862f32340d7bec98077918149bdecb8b80bd22604bed60e815fa', 78, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'70f5b0e7cccac670eb4d51bd015be28d318d71dad74dba0ec977621c4f19fc6d', 111, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'709b521ab6948b781dce974796c9320e2cc84bc59717dd5945f370539dde0dd8', 168, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'72f08dc0b64d969e56d4d0894eacace888df3794b22fe88af8035cc250e71310', 360, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'f5a1388d619a826ed885ea66ca20d80c71fb9a21f0e9934fe82499cf97ca32d9', 443, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c4afd09dff17414cb34138c59e0acc5551ed166c7725aa348aac9a7723636ad6', 190, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'2d97a67c2b89f7f935870ae4fd3e1a505b6c03823f5b240aeb8562290f81ac75', 183, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'236c74576945ef6f09c71a782117fc5872f54a33519c42115fa9c4e199a93130', 164, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'5edf9b60ff378203bfddbd3b866dfb612a3ca4eadcce818b9fce367c0a32b07c', 238, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ac8f726013190767ac24034406097a8c7eec80cdcf3c3852ca4cb3274af1d201', 46, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'6f59fbe9e7ba22573d2bc9be34b266e78bb1c877ca4d7a8c0449cea587fd2a6b', 46, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",340,null]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', 32, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",340,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fe0fbd108f2b68637f77f5370b9a564a3688953bdbd379acb2331222ffb9ab90', 95, '{"database":2,"native":{"query":"[\n {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"stateName\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a3b7d5d707aece358d6396bc1443a20bc1c55e74589831e639396f10eecc2f2d', 86, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 1\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3fcf68bbc493953b49acff4ffa84e31363e13dde7474e7a09c5491a810edc6d7', 122, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 5\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ce031f81e3c84fbd5cd0f5299fc6e8cf6f7f18be6b3f9fc902a867748fbe01b9', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 5\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'1cff66aca327f03e2bb0eb8a3e79333f84f434bcdddc071a97a8a91cf1c1f0bc', 90, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 5\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bb1f1bc1f472942fb444196f4db66c8854777bc7df9bfdd763b997b39248f3cf', 110, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'30bf500126dcd7109d667bee8d49869475930f5459ae62c0ffdd4adaa7cef33c', 294, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'347ed7c6dce248e5e9fa7c983d95b95059eadab015f81a2477674d1b0f1f8ee7', 129, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'07da46b215149f961df533927f146bd1873860e341d0c6e78c7c3d25464dbe6c', 135, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3a0f38da9db0517508abd931ccd3a45de42aeb034791cdc028f35316e5a3d282', 166, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b0ca731f8af0265ab476d73833f9da4fda26c46b898c62ebcb6d0fcb43f9da14', 185, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'4039d2c854defd61e94912d8cdea685af187f142e172fb1f1030458737d2a84d', 151, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dc6e65368b34e861afcbaaee94b749ae20c73b509c76b247c834b2f015b45ad7', 170, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'2396372bbf57fc4039bf3a7277cd6ef9c02662f334ca3a95fcfc4dfcb898f27c', 182, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past7days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'2a9cde6c3934dbbf5f6ea473f79b030fa6ed8aba30cf1917bdce893832b3dd2c', 537, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'10ed8ca1329de5c69267fb19c1e0e3e7b4aa343978b6b1122cc5ad8b31b3bb25', 171, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'ffdd9540669dd31a5f06e9a29f093c8767e73d6ed73a2b55b4192980b2332af0', 97, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2862787f4a11dbd60165f6d8cff79e12618d5034e45e5264f7badf39b71959fe', 56, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e272608839ad6613df4c30ac3043308e258071e071dfbee1a1f2be6f71876101', 5588, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5a47c533fb043236f58e5f0802917b71b2623206ddb6bed00520ff7bec6badb5', 218, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'c6c903b6979ac36645afa981a4e70ddd8de4fe0a8e7f4231582063a6451e3dd8', 87, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd3ca945c84e08135880c73e9ebd81d82f6bfd8302a57d1a86278e4167e3062a9', 594, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'c53dcf544bab60b8a909c50ad8ca5003442b3b9cd5f1dd318667a2fc9273937a', 36, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'95e57cc8e6cf8fc23b0681ab24d4891dbd5f0d2aa0a7671d5906cac13abf8b02', 509, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'c521ff97e1fe57d1a9009096a4e7dbbcba592687b1dd23e09168768e25adfc90', 124, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n\n \n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd472baad6df82c9937d4bd0e61c3b775cd1acf09564adc032db49d15ad20621b', 198, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'875efa1bbe3ef0b1cc5a820c413b20262d0234a1d75b2a185c5823a0041e95f6', 104, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'55276dc76bca2b0dd307f3145d9aa93e1a12dd3056b607e0e258bed178b50a2b', 45, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'62a667212100ed3e85ae0045ffac752ba51545ace88b1a2d8b28e4eb9c0029e1', 75, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5aef1ee839a21d5353f8dd32aabcb207ef13c2f98466e1c2585dc9c9c561b4a1', 43, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'114113cc181751af4a3c3c62989521e4d1bfbb9a0db1d7bcf2bfc841a3ad6de6', 132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"database":2,"query":{"source-table":68,"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]]]},"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"async?":true,"cache-ttl":null}'), +(X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', 261, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd6a795a4df425a34519f86e98f8a862e0f5eb03ec6494f00d9880e8319a7f2b9', 189, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"async?":true,"cache-ttl":null}'), +(X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', 147, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ebeeb9b54dee59b8e436a54c7f4e0484d6b6d243108b081ba2b8e232563d80f3', 68, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]],null]},"breakout":[["expression","Status",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'49e4dd7aa470a695e20893a2cca84f92aa886f88d88ebd86d0b13fd9eb18ff68', 37, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n {\n \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"gender\": 1\n }\n }\n]","collection":"analyticsCertifications","template-tags":{"filterGender":{"id":"e077944a-b578-c674-c8b8-0ddad320c4a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",513,null],"widget-type":"string/=","default":null},"filterDate":{"id":"7eed05c6-dd3f-ebaf-e491-060f0be6f28f","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",629,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"c7bdb75d-fbbe-7f30-6d40-c80137461359","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",539,null],"widget-type":"string/=","default":null},"filterState":{"id":"53963d4d-bb02-15b4-68aa-561e36ef3fdc","name":"filterState","display-name":"State","type":"dimension","dimension":["field",623,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"01e63ac3-da4f-cb5b-ec81-1899092eb8e1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",627,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'2b3fb6213f06a172a470c28fe646be7e75c733ec698950a3eec1980b46bb9e90', 75, '{"type":"query","query":{"source-table":22,"expressions":{"ParentsLiteracy":["case",[[["=",["field",345,null],"LITERATE"],"Literate"],[["=",["field",345,null],"ILLITERATE"],"Illiterate"],[["=",["field",337,null],"LITERATE"],"Literate"],[["=",["field",337,null],"ILLITERATE"],"Illiterate"]],null]},"aggregation":[["count"]],"breakout":[["expression","ParentsLiteracy",null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4358d1308b0f8956c59f90ef61e9a92c3dba8fd7c5306b966e1842f405ca902c', 106, '{"type":"query","query":{"source-table":22,"expressions":{"ParentsLiteracy":["case",[[["=",["field",345,null],"LITERATE"],"Literate"],[["=",["field",345,null],"ILLITERATE"],"Illiterate"],[["=",["field",337,null],"LITERATE"],"Literate"],[["=",["field",337,null],"ILLITERATE"],"Illiterate"]]]},"aggregation":[["count"]],"breakout":[["expression","ParentsLiteracy"]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3872df380f4c503d29332aaefed67b42a2c1d2955b483a704656b6fb3d44fe4e', 61, '{"database":2,"query":{"source-table":22,"expressions":{"FathersLiteracy":["case",[[["=",["field",345,null],"LITERATE"],"Literate"],[["=",["field",345,null],"ILLITERATE"],"Illiterate"]],null],"MothersLiteracy":["case",[[["=",["field",337,null],"LITERATE"],"Literate"],[["=",["field",337,null],"ILLITERATE"],"Illiterate"]],null]},"aggregation":[["count"]],"breakout":[["expression","FathersLiteracy",null],["expression","MothersLiteracy",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8a4f94e32026d2efab95419999f774c8324a95c160b76c8c7b807c402fcb3954', 131, '{"type":"query","query":{"source-table":22,"expressions":{"FathersLiteracy":["case",[[["=",["field",345,null],"LITERATE"],"Literate"],[["=",["field",345,null],"ILLITERATE"],"Illiterate"]],null],"MothersLiteracy":["case",[[["=",["field",337,null],"LITERATE"],"Literate"],[["=",["field",337,null],"ILLITERATE"],"Illiterate"]],null]},"aggregation":[["count"]],"breakout":[["expression","FathersLiteracy",null],["expression","MothersLiteracy",null]],"limit":10},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b849ad62aceb1a97b7249d8ad68dbb6574711c7f0485ebdfe4644742d4ac8cb1', 102, '{"database":2,"query":{"source-table":22,"expressions":{"FathersLiteracy":["case",[[["=",["field",345,null],"LITERATE"],"Literate"],[["=",["field",345,null],"ILLITERATE"],"Illiterate"]],null],"MothersLiteracy":["case",[[["=",["field",337,null],"LITERATE"],"Literate"],[["=",["field",337,null],"ILLITERATE"],"Illiterate"]],null]},"aggregation":[["count"]],"breakout":[["expression","MothersLiteracy",null]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c46c59472392eda9d66750242885b2591fe7da1d220a644d1f761d3ed21f03a6', 90, '{"type":"query","query":{"source-table":22,"expressions":{"FathersLiteracy":["case",[[["=",["field",345,null],"LITERATE"],"Literate"],[["=",["field",345,null],"ILLITERATE"],"Illiterate"]],null],"MothersLiteracy":["case",[[["=",["field",337,null],"LITERATE"],"Literate"],[["=",["field",337,null],"ILLITERATE"],"Illiterate"]],null]},"aggregation":[["count"]],"breakout":[["expression","MothersLiteracy",null],["expression","FathersLiteracy",null]],"limit":10},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7d7d641985dd483ff93e0c7d58dad692fbc0ca8c01bb7d35381d9f9b40ea7c04', 60, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",345,null],["field",337,null]],"limit":10},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c430e738aa0d18637bd1166c093c7f197406a47b1448c6bb031b9d4231fe83fb', 108, '{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",345,null],["field",337,null]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8ad1bdf43dc0cfd483da16660297906d9b631d8bb66b489e7487d4591092841c', 76, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",348,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b1756a52aa70e662f133727d6826b75bbfb7a7e4784f2dbaf9131d1c599d7340', 101, '{"type":"query","query":{"source-table":22,"aggregation":[["distinct",["field",349,null]]]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f1a417e417468d0897cb3249c1669794f9b2e2ef19cce743740380f8c0e60b82', 141, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4638b332d3d2a67403e403c289ab01decb968a8501f3bff444fa55d885a78dc5', 108, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'f15e2b0d8040a50464e7f29db54338a97788d1040d4a6354e225e319071f44cb', 187, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b62bca007711589ed7aa86722664e423cd3e510ed51e0691f8fe0f09b66000d4', 138, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'd30eef6732003929dccc2d5a146820c06e26540b17f19e2112a0402f4cea1987', 353, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(83, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(83, 1, 'dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e4d9e0b10c42f3642f0a1d241f5c49d9dedf6dba8a04372a84d81f439b9ff232', 365, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'953320ee998b4d9ae97a5a800f2df174bfb76b159ac26011f504d2c8600a1a41', 231, SYSTEM_COMBINE_CLOB(83)), +(X'e625818bd2221030748a95bf7d1566a2b41792ac426d5d0b7e189b84f4622df7', 498, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9b1572b2d2efbe2e2dfe27a0f390964046100e91929e84bad849af78b21ce9b4', 424, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'72e0bdfe2c4a7cfa44cfe8a625b00a42719c0f47bbbe0a3100103386080d43d6', 100, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd292345ab78b4b040a3e2642092ffb315b9cfeef99ba7368c9024650b59747e3', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b601e3a7cef02186b47b6c44232113f01af231682cf726d0ef404efd0d2d0d46', 174, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b0c9cf3603909a8e617feebbd826244d0e0521608b23dca5f2f5f6954f50c7be', 174, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'81c54369928fd9e13b745368f460b14aa23d89260f20cad5a938752052cad973', 196, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'9f20be72c64f17d6e24610bc53756a486c09347551c94c9f35521990a58e1fa2', 195, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'daabf7fa7ce6d01ab60e2cb24462300574c0d9f672070668e685d1ca02da119f', 244, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b1193654f5b612afdd9154c53da18145ab953550a24de09274426494d384d72a', 52, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7a042dd7aee6753afe77a767f107120ee99beaa11e11410dc357f5a853fc03bd', 60, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thismonth","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'43e781c11b92cb566704519c9f2ff546fea894a94a0ee1b785fe4b397b41ff7e', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'e24ef67040f3c310765daef67376e267733102df276e6ec9d1a98e6372984e4a', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thismonth","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e15358fdd50d1c41b18d0e06019f19b0ea4cf06ee3dba604bb0bfeebc7085479', 84, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ade494d7c49de7cf19b6f0d9002c8540b7a45c53f4e2e3a1965b845f8a095487', 71, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'7b250905f8359ca945002cb15a17526d19b28e9e219692887a8a6cac5d898bc0', 112, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f84cc55423cfe3fee5dbf7bca810ed3fbf0512a78253ff0c3effae8a826d42a5', 52, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}'), +(X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', 144, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'28b8f8489a4f139796d7e2911656b3251492673369924e5d2451d520e56b75ab', 57, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $cond: [ { $eq: [ \"$_id\", \"LITERATE\" ] }, \"Literate\", \"\" ]\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd67b68a0cbf0513eca0074ca5a9c151e55bd09cd5167b457e67de64c5bebaf80', 13, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $cond: [ { $eq: [ \"$_id\", \"LITERATE\" ] }, \"Literate\", $cond: [ { $eq: [ \"$_id\", \"ILLITERATE\" ] }, \"illiterate\", \"\"]\n } ]\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e7c32f659d6322f601c61f86b0ce504cbafafdf345bf2e2ae1a7afe4a4cf1a8a', 9, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $cond: [ { $eq: [ \"$_id\", \"LITERATE\" ] }, \"Literate\", { $cond: [ { $eq: [ \"$_id\", \"ILLITERATE\" ] }, \"illiterate\", \"\"] }\n } ]\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fab581bb5477d0784ce8a7dc52338cef7ac0643cfc9be17cf9658a5bb1c84d93', 15, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $cond: [ { $eq: [ \"$_id\", \"LITERATE\" ] }, \"Literate\", \" { $cond: [ { $eq: [ \"$_id\", \"ILLITERATE\" ] }, \"illiterate\", \"\"] }\"\n } ]\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'44b3320f05cbe16ba67272d0fec4f86265cc445d8860d39ccfca2ec3ed8cbf34', 61, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'43eea50f1057e5da3ecfb78becc3ac3e89f5645ba85051f7a1b4b8937dad98f6', 52, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n \n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b4315f1b03919e2047780589d0a695fc6d7ef1f59192518125524a547cc7de7e', 85, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"oo\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a602724b736d9474438b7a18a824308de14a9aa82d875449a9ae0b75a5ca051b', 36, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', 543, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'3867ed5ff832700da54d26fd4aacec2d7b73ab2c8ca828cb15280fadbfe811b1', 66, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'13fec3a49df277e764eef58dbfe47b7d02a32b20fcd7d32bfe5f54311094111d', 92, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9f097a14313aa95ae975058f0e363cf81e9b56a401f0056fb741086cb289ec9c', 43, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'345c224ee0cb9655ae2f415cfc913ae59acb1963a2ee42253ea9658d51086d23', 47, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(84, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$category\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$category\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$category\", \"HIGH_SCHOOL\"] },\n then: \"High School\"\n },\n {\n case: { $eq: [\"$category\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$category\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$category\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$category\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-na', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(84, 1, 'me":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(85, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGH_SCHOOL\"] },\n then: \"High School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","di', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(85, 1, 'mension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(86, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(86, 1, ',"dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(87, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(87, 1, 'mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(88, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"oo\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"oo\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(88, 1, ': \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'03b09305062aaab2e0c51b1575cb2464c945ab102da42a4e577628e1de344008', 72, SYSTEM_COMBINE_CLOB(84)), +(X'44e0d7583cf5f79f139f83497786cf5a6252f398f608080e9a92d4f3e0b497ef', 43, SYSTEM_COMBINE_CLOB(85)), +(X'b06f5ea2ad4a3144d482a84237d624584768793e6569a4c9ec2d702aa4471945', 45, SYSTEM_COMBINE_CLOB(86)), +(X'104e206234f41abdfa814bbddabc15304f1439931269811c8df0b1201e42179e', 5, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"ER","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'132f48547035c5da16418f51593956aa63853e3399f9a957248956d34038882f', 41, SYSTEM_COMBINE_CLOB(87)), +(X'091c3c5067668f7ca489fd200bc47c33c95dea4981151011bbac3447b69e5d62', 38, SYSTEM_COMBINE_CLOB(88)), +(X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', 416, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(89, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"oo\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attain', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(89, 1, 'ment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(90, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"oo\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attain', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(90, 1, 'ment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(91, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_i', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(91, 1, 'd\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(92, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$coun', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(92, 1, 't\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(93, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n \n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id.mothersAttainment\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(93, 1, ' attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ffc2c8aa764edcacb68516db504b9ed60020e2faf3b39a92c77149056d92b53b', 67, SYSTEM_COMBINE_CLOB(89)), +(X'8888af8d22d387731c93aff4460ced759927b31a18ad7acae77af1ce86db0728', 121, SYSTEM_COMBINE_CLOB(90)), +(X'a9c239acde81fc593ca9c19767e6ca5e2f73f39305c8e9fe8277d58413f4598c', 39, SYSTEM_COMBINE_CLOB(91)), +(X'5a0c2116ce10406f526ea0162458814e4749ca8628a2663cb898c9ca4aaa6126', 48, SYSTEM_COMBINE_CLOB(92)), +(X'be21ea96547e1d3158c8c81d703a5eead24c606263d0ce8d83df716b6e6ac01e', 39, SYSTEM_COMBINE_CLOB(93)), +(X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', 501, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(94, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(94, 1, ' $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'93abab75111cee5f18dac37d86cc2003c2a153d5a5c05d06a58a4a9ebd5128cf', 51, SYSTEM_COMBINE_CLOB(94)), +(X'93c12625316b4fb7af59f0afe5ea52fc3ad47ffd07d90b8a99eeeb16e1e2677a', 59, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', 328, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6a832d9dec27dfc04c03215db060ae8ed23ef4347c5024a43437d8d216d6622a', 36, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 20\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bc178df08f4d1534cd9c4ab701b933e2d5b33cb04a1132316a6302890c54fd7e', 54, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 20\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f11b1c12014744402742eff0197b26bb981ad948ea5d0a4cf72a0152cd65a0f7', 97, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 20\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'980d5826bf85ba12309cc764577ddb9dc6df123f107454e2712afec0576798fc', 49, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 20\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'78d0069c02ba5f5689495a9cf7882af6be343d6b4821ce27556392cadbcd4df9', 209, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 20\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'dde754121898a7d070b69ffd9e67616bc79c17e34f9c2b6c60fc017d27ebcdc8', 90, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4454ce644ccc549a4eb58b0de057da56a2e7e25340308025f29b6ee216ae3415', 57, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"async?":true,"cache-ttl":null}'), +(X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', 172, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', 84, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"async?":true,"cache-ttl":null}'), +(X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', 76, '{"database":2,"query":{"source-table":36},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'541e7d7318cf427db0265b82c64e688db8ee665b9161f651a6a54c6b25cac1aa', 13, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8714939a88599ffcb41b6b0e942d00d769d8bd886398753ae4a55d84ae65cf13', 71, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'309c47c0b5aa10d6d0a4ccd62a27f4b0eae1c0f62ad446971486e25e322f49a1', 60, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'91c0cfa89ef90cdab92232355e85ec6f74fae49d2d51dcb7041fe8140a8d2907', 42, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.estimate\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'628b778de3890ba8778b9f91a75f4a4262805d80b47784c5b0145f4556ab2c27', 166, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b0028666e4c48478e079f4a4d26bd9d0ab1ba23309ec23183645ce30f6de1986', 38, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cab60cf045061e875fa8ae1473a3a8d66ecf5ac308397f11ac29432ec5129f73', 109, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Com'': {$divide: [{$multiply: [''$allInfo.estimate'', 100]}, ''$totalCount'']}\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6ce7eb57a732425fc1044482adf9f45ac9bea6c206b2631c384998143acfa7f9', 60, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Com'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'634b13afdddbff9b779c323721d3a3627280beb090f0953c7be55d704a8aae67', 49, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(95, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"asy', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(95, 1, 'nc?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(96, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(96, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(97, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(97, 1, '["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(98, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(98, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'077fe4ec0ab19e246aa6ba18532ebafef95784e2ffc04f6e23e21e781fa7df6f', 157, SYSTEM_COMBINE_CLOB(95)), +(X'674bc7a1a2a01b95f3e22ecd5b0f698205f499c2cc8fe6d4eacbdda52d078e98', 147, SYSTEM_COMBINE_CLOB(96)), +(X'ae0b443f01eaf3618a0f740b37f2efba44d4fa99d9b8957e1566b9abce95342c', 123, SYSTEM_COMBINE_CLOB(97)), +(X'02c3116c5cbcf641bee14c768444c0ce4d7b077c75ab72f16cccb277fb3cb9fb', 192, SYSTEM_COMBINE_CLOB(98)), +(X'87ccb9211620e8ab6cd36c7c6861dcd876f8d5b08e51783c042dcc4e7ac5f356', 219, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":68,"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]]]},"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",637,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'2c957d73ad79689bc7f74b69195a9a9363a590a4c59c856c9fa70fc9166e6b7e', 197, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'cf8cd3d12364c04afa517d88a0bbfa6f05f303cc3107f7f4497571007eabf5e5', 40, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'80543c65db03a8e30a7491dc6ed476d9bbcdb30301064955da4d807ea2d642af', 77, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'76615f1bb6a5017eb9ca223118eca5c550d66139fede2c95c62995fca3f3124d', 14, '{"database":2,"native":{"template-tags":{},"query":"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e77102f46a77c94abf51f9b1e10178f9869459eea90b8a62371d62a342ee1ab2', 96, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fa83c3a5b1570207584c7969692d04fdccaf02821e3dd9b6e79414be2496c339', 83, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",354,{"temporal-unit":"month"}]],"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f20ab02bd639ace3fae124ac247a444ff692604646705e9a1b383529f185d28d', 98, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', 154, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2ff0659b5c627b5dac8181b71eff98488c886c4b900f915fff7385b8fa399922', 39, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'), +(X'fb666afcaf2e3aef2992149f390936cd7f4892a68d66ff64adffc32e9bcb2d35', 36, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"thisday"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2d534d0a8185ddb124a263413bb81cce213fd377aa772fdc4a705b0ab1e8450a', 227, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"thisday"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'fbe47dfc9bf7c6cbe7d78eac23078f7b95499d5e053b0dc91f2892385455cd54', 56, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'14411a571e578c346413c58ac378ad81bff818cd5c6cb06d53e991a95c132a05', 108, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"thisday"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', 158, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(99, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n },\n fake: [\n {\n $project: {\n category: '''',\n total: ''''\n }\n }\n ]\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(99, 1, '":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(100, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n },\n fake: [\n {\n $project: {\n category: '''',\n total: 0\n }\n }\n ]\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(100, 1, ':"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'58a2b8748f979f1b1be778e45cd9cd3f0827a0ef738312e4bc861e273319fd47', 124, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'3993edd2261f43b9fa718c85cd512c9ece0ed13fd7781ac87094993140945c7f', 72, SYSTEM_COMBINE_CLOB(99)), +(X'6b9ac0f645f67552a43bcfaf235f5109c0469ec7969a6a6640d597ea29234c6c', 42, SYSTEM_COMBINE_CLOB(100)), +(X'adff00d0ec8a0ea0eb12252800018da2befc8fa47b1d767bc646042534f93ea3', 49, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n },\n \n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'354b8da5367568157709ce7f16b2127b762bcf6170a4e223a1d082faccf6bec8', 57, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n fake: [\n {\n $project: {\n category: '''',\n total: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0052a02c4636d23c887439311d9831ca7ae3a67b8a86a14bac40cfcb9d4bde91', 61, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n fake: [\n {\n $project: {\n _id: 0,\n category: null,\n total: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ee933a590ce2832995f9ac3b9466e89bbd85e72e1a6cd58ccc816cb91af6cfbf', 51, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n total: 1\n }\n },\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'158f6e68ff8a23981400cf27e9a42513da425e7c10d486b8dacb8760710f75f5', 95, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', 164, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', 164, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', 75, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'391a440f45ea434c2d21c16ce3ad24c9423a1f264df96de6748d5722e50a7338', 151, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', 142, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"async?":true,"cache-ttl":null}'), +(X'ae0af8d7b4e02148cbf6b5825d36aa19145053c50f31409f1c2c23b09370832f', 61, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', 226, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"async?":true,"cache-ttl":null}'), +(X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', 116, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1196c28cc6bcd5084be9c64c45e8b76f2802993dc1eeeadcc13f07c218c0b08c', 33, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'3ca9046e2784858cdd3b820259517633f64d9f281afd3fb966c2db471aaccf7b', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'52d3a07fcf86991f2f21277105039a0c3a4ba3e4b676e8022bd19eef5e5597fc', 142, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'20451f977de34041e8d9bd3427723e0552e7ee2265a16d638b29c471f632b714', 94, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e7114480d95c27605cee007bee1668723ee7d6c25062c04aff8c6c4e2171590b', 132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'a85b36705ad68a238037bd76d34642fae8a7327e50167d1ff306cf877514a214', 155, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5fff72062ccd0333a67e028875c0d7f998e6b48c864085cc5880a7ec8040b79f', 167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'aaced19bd730369a0b6ca4e0357e70277d4a1e7aae536302e25f3bdb09670602', 167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'c0f4acf0e2e25d3b561331d909b966a2f089f3f870419554cd22de2ab671d9c7', 234, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd52a2028872c323993caf7fb769729d2303fe61fd0af4676a3a085808fde321f', 223, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'66cf824950f5d152c5b486002c91a28f485d92a6e64d657abb9634102cbb4288', 299, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'45a7539b6fd7e9b0f126d3418156c36035b122e9eb2442754dc6a4e0dfbd3527', 204, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', 142, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'edbb30a9eb8702b76248d882e4ed8d230adc68ebb27bcada45f9e9000414186d', 87, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7fe56b0168c436bf4112b8f070c3a19482a05773f01e62af30105907c0085539', 216, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'34a0c0d643147d704654214fd2d883a977550f2bb3d90c56c0aa4066a147e5d2', 121, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":68,"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]]]},"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["field",618,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'a5d7329e4256238c2a2723e1ef73a4c632346627ebecf16667f8bbb631e55e3d', 264, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'33832d7607cef1aae8837aedde03d585ab1e4f1c3a08f50b7a3ba7b6a5cf90da', 282, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'c46dd50c95d9bf3c65e76068eb7a13c5b69f61cd64e55f70b4d9702831145c0a', 341, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":68,"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]]]},"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["field",618,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(101, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(101, 1, '["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(102, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(102, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(103, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(103, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(104, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"asy', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(104, 1, 'nc?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'192186a3d29943678c2d85bd698c3fad0953898cce157676b2196c574ce72706', 1468, SYSTEM_COMBINE_CLOB(101)), +(X'afe714b1b6aeca56e7b5e8d93df3c35cfaf0f35c308aebaa6ff105fd3e766d7e', 489, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'14236e172b3bba96c2694d726317689d1e4bb285c197471b75d0a8cc55e32bd6', 2310, SYSTEM_COMBINE_CLOB(102)), +(X'e764e5fe38ace0ee64c846d586be9d6d09c5d359b993dc0f02d86ab5b4e2939c', 476, SYSTEM_COMBINE_CLOB(103)), +(X'0513e7efdf728a3c4317bcb1956f86a7cf0921232ec94b626098ce6ed2738bbb', 442, SYSTEM_COMBINE_CLOB(104)), +(X'8ed242a5cd37ac338c64dad05af899f8d28b6dcb444ebbb369639a19e0a6f8fb', 732, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["male"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', 91, '{"database":2,"query":{"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9305683eaf35822d88ffc9357e7218f576133856841e290d71de49dff63b346c', 71, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",346,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0372f37da4911486bd329b219557b18c5704321e77085cd24711d55692cbb2bb', 66, '{"type":"query","query":{"source-table":22,"filter":["between",["field",350,null],8,15]},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5e75f421df313d1ef0f8af8de57ba54b01fabb2672318ab39673e62c9272955c', 45, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: -1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'805d0ca083d12c78604153fbd8113c486bab1ae9a5a057ee63233cc5a004c698', 89, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: -1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'921b95e361a8722ead4a3c8fc72b12eedce1048f3c579255b5211829dfb6730c', 119, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ed80c1e77a4ab6524eb2c26f54f2bc2e1366ffb3109df6697b1c58512ea50cc8', 96, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''> 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ced42aaae260cab5b907e14b8e59d650ebbb24bbc997cabf62faee41368fa4f8', 89, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'35615d22df10329735db7d3b9a8ab7189a11afb0d3ea2479300175a7665309b2', 42, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5e471679fa4166329cab1c9f34578bbc318474faaf9bcfc7440f1f08376608db', 115, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f14e3cf1c75834baaebfede1adea821894334135d92e124d202e57d3ff1d0b88', 71, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'92e82e54aa3bb287f891cbdee35e4bb8dcbe34676b1882c36fc8a14260d9b8e1', 38, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n total: 1\n }\n },\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b5c419f8c7a2627acf1f30b4fa7f5965bce80a9493f28b0382f1edaf2951013a', 40, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n total: 1\n }\n },\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'df3956145c9f1bf9f089d16ec64dcb2af43afb22963595faff42478ceb5371a2', 40, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fb71a113d57daa79af49598666ed3746e903ba0cbde95d3d226583469140352f', 53, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'acc3971ef094432e77f252ec91c528e664588c28a9585bc77060330e02162970', 73, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]"},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ffd9622b3387937e60835012c91bac4ac326b08e3598ba9a9c6594ce70d389df', 46, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b8d759092651056f87f2f1b4b97f5cfebe45c1676ab16a3ec166663cdebd6e68', 68, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'58b95fb980542e04d56c66a9bde707e1e9c0a8d4af62a1eef3e5e380b2bf1563', 11, '{"database":2,"native":{"template-tags":{},"query":"t","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7a6bc6e6a4c3d1000cd8561be7bc27e3dc0fb684be4c688dbbfbf1fef8436a7d', 39, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2fc52eeead3465526ac6631e08b7b98ef348c048bc014747064068ba898ce41d', 33, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, Category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(105, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"1e389631-be8c-fe8d-ce92-18066d89fb39"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"ea', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(105, 1, '45ef14-a48c-031a-9105-1d97f9a69f69"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0acf3ceb12140c2fa622f5b56cb966f2156e26e0b02856b4d506339a6d1ef8d6', 12, '{"database":2,"native":{"template-tags":{},"query":"c","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'56f8d34a15b37f3ea01838843e886cb8c687b3854ed283e8f8ffe49a8fc19969', 36, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', 68, SYSTEM_COMBINE_CLOB(105)), +(X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', 156, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(106, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(106, 1, '["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(107, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"a', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(107, 1, 'sync?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', 390, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'f50ebdb67d85546af2627121a1fee046fc101c38309551c61122ff6432218f29', 114, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', 308, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":68,"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]]]},"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'8b0d3f74dae6756c5f7f33571e8f90bcec096eb9cb8f8c68d346965e27362f4b', 112, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0dcd7befcd416d30043eb461fa6f740bbf762c43ea7479d0ebc112ce2ee0495c', 211, SYSTEM_COMBINE_CLOB(106)), +(X'837c7aa77a214ea0fde0f14a83b39d5e78fb5dfd18425103ef90251a80a2586c', 167, SYSTEM_COMBINE_CLOB(107)), +(X'89f9854fcc62c27ed4f063cc2ba5ba86657b784b8ac6f37f43e1651a7879990b', 142, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["field",618,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(108, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(108, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(109, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(109, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4f9246f4d6d32cc4ea5f6ffc12e693082be688bb477c7717fbafff7237d854b7', 266, SYSTEM_COMBINE_CLOB(108)), +(X'5a8109755eb335ad563ce775f77b2f0f6bc1a0b1dd0a382e1103d9a80a706e7d', 231, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'250d2624ff9b3a6c6eaff31711193c1595ba2ee449e2d544080b0cc487117799', 172, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'83393cc8bc813ae1da6ee5b17e3b0596b698cacd6ac26f3ebaf06d7e05c47129', 157, SYSTEM_COMBINE_CLOB(109)), +(X'982acc2aa5723080821f9f2ab0042bca51b12a1f60de85d4062002dc30cb24b9', 178, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'b763fb8e405258618129300cdd9e8d32282465445d61583b12eb6ffaa2f89ae5', 208, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["female"],"target":["dimension",["field",336,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(110, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(110, 1, 'filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'930dbe94439634cbe185f80def3fde9fafabb7b74d06585b9f23a7e4b7f391e2', 54, SYSTEM_COMBINE_CLOB(110)), +(X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', 104, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', 230, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6a036c6cadc087e7cd13665f96f0f1ad6c13a1fb95d7a638a7c765439b1ae806', 45, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"async?":true,"cache-ttl":null}'), +(X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', 283, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'080071f65d9e6a4e617d2d6b845217b46b18a91ddb3bd571bbdc2b7f46447e49', 106, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'baf5ce9aaa35a3029368332fc6b330d631f2bf81aa4a554f89d341a19316e16a', 62, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8baa36892c0c0b9430f525bf317f6309dbe7a2d51c6592c2fac2ad755f387044', 68, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'77b6c08a3304570425045addc68c940888ff8be07bbd9d7e65067845d47ff24d', 129, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3a8a22af4317feb8ec6ce5554a4222ef6511f47f98858b714ccf76ff248aab86', 41, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"async?":true,"cache-ttl":null}'), +(X'a10304b2b53d9ed42c0b70d33ba0a20e7aefebba1a51ca976a0ca5d93e9f9555', 146, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.registrations\"\n , ''Registrations'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a5ba85c2643821118c3fcec77bc69faa419d77e71706e6a93ab764e0bae227fb', 115, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.registrations\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4dccdec81bc9944aaee0ccc5a1ad7df6d16cb859508d1760e71619c4cfbd56e6', 41, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n , ''Registrations'': \"$allInfo.registrations\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', 157, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'ee50a769604432e19a847f2e695a26dd72b7c7518cd6e087182c49625ad99247', 3, '{"database":2,"native":{"template-tags":{},"query":", ''Registrations'': \"$allInfo.registrations\"","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f56aa392bc904f4391b6fc9c76807d22d9401cee195d9787487cf3b4348d1d42', 110, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n , ''Registrations'': \"$allInfo.registrations\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f732919b406da4f9ffa1a24fadd876076acf6c8a5a569e958dfd5840be1d29d3', 83, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a68c13b13d321dc5e552c03f0a08f3471b7698fd624345168e840e60085c18e2', 86, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n , ''Registrations'': \"$allInfo.registrations\"\n \n }}\n]","template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'718b1da4dba4115a868027f6df3517e2dff278bc829f1fadb18e82375a21d9d3', 8, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n , ''Registrations'': \"$allInfo.registrations\"\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"56bcad79-0f63-fedb-353f-06d76542e554"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"44beaa9e-5267-84ba-f544-6122407db01b"}],"async?":true,"cache-ttl":null}'), +(X'7d7acfb39a904abe56b566f7712ab786dae3fd27713f04ffd9d1f47ec19b64ca', 60, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n , ''Registrations'': \"$allInfo.registrations\"\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ec192a494cd30b341ca05a276eb6d5a05ce080b57a026095d4af2d412f10454e', 37, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', 177, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n , ''Registrations'': \"$allInfo.registrations\"\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0b6695c5e8a073e3787e09a3053b9fa91ed799cd3121d075df61ced61cb8e784', 26, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"56bcad79-0f63-fedb-353f-06d76542e554"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"44beaa9e-5267-84ba-f544-6122407db01b"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'eb49b18c6e2e0e0e91e9629ac46a941e457d2b7a4dbb4f5402778a05b03e9222', 43, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a2d5a685344d3525472676635e768422fce2b3be0a00b527b93a1369f3c30ba7', 13, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"56bcad79-0f63-fedb-353f-06d76542e554"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"44beaa9e-5267-84ba-f544-6122407db01b"}],"async?":true,"cache-ttl":null}'), +(X'07ca708bf461469de6128d5672321b9feb866f099ebe65d4593d5ba3f087aab5', 25, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"56bcad79-0f63-fedb-353f-06d76542e554"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"44beaa9e-5267-84ba-f544-6122407db01b"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cf14022e8b56bf23f36705932ff432246c7fd192f46d53ffadfd28146ad49fe5', 223, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"56bcad79-0f63-fedb-353f-06d76542e554"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"44beaa9e-5267-84ba-f544-6122407db01b"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dc0fdae6794ac43d83329cc2e5e873db502e85c70946381e055da6884d26fd19', 8, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"56bcad79-0f63-fedb-353f-06d76542e554"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"44beaa9e-5267-84ba-f544-6122407db01b"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1d3fada79ef9fff5dbc38b3881fd0cb3199de04d3aad1e56d7d871d8bda60db2', 34, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: false\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"56bcad79-0f63-fedb-353f-06d76542e554"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"44beaa9e-5267-84ba-f544-6122407db01b"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4870482517e52c90a387cd19ec4e22210b7e3b71c93a622a838b0cd9b8f34c72', 249, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', 175, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'89d2a95c9022ccd8f916ad13fc6a8376343277e41e61cad03476aa82f5852306', 62, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', 248, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', 281, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', 115, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', 118, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(111, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widge', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(111, 1, 't-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(112, 0, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(112, 1, '-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(113, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":nu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(113, 1, 'll},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ba1dcd4f31302a3d232b0f00e8f4c5b9b5841961566bc647c8e789a4b64d9637', 58, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'883c4e92009cc1098209b4f4531f43d3e79fe7977200be8bad4b6f4a4607ab32', 53, SYSTEM_COMBINE_CLOB(111)), +(X'5217a19a6cf2a7882c672bfe5cfd5b768bddfd2b0446b6d0addb2eec1b81e5b0', 56, SYSTEM_COMBINE_CLOB(112)), +(X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', 123, SYSTEM_COMBINE_CLOB(113)), +(X'91b83edbfa94d26d2c6060aaef97954494fe48f5e5097c3beabb35de54c4d3c2', 52, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'89f79e687e69b08b638f844549fdd00f899a5e7b1e881179e5d9919c32ae541b', 55, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"async?":true,"cache-ttl":null}'), +(X'd523feacdf6a908ce8d0f1234a37826af361a8ec25da81978cc24a8b127e9051', 80, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n }\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a301463a8b07a347721a476608e709dda27bde457afc0e34b975ea25d094ce5a', 148, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c252d49aeeca1a34ff3f2f89d27b7fe81d0372c24d0f16087769c3b41aca94d8', 68, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2fe11c4891b266bbb7aa1ad582265955c8eb73cb89897638c6fa7aa794c021ce', 57, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'23345e252694eec9ce7c30bb2c152594b16d3f9c2298c2427c41eccd9155372c', 73, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1297e6baf2917e1d261e80ca54e4f3085f977d8d84baf2b29d8b3ce493598185', 86, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{"filterGender":{"id":"1d64bc1a-b7a0-a753-2012-fcdf809d04f2","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"33f9702f-6c27-41ec-8baf-57cc3a6a5454","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"ea51bb24-d867-e888-23b1-630f6b73f84c","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"59db07d1-4b7f-24ba-03bb-4bd34eb5d349","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'53969a603e6b87b38c3afe9df101c0d91096da952276557a2c6f497dc5551993', 40, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'389882cb63f3fc10141b38c95e7ced70ca1b77a48f30bc773fc5beedb7999f94', 17, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"\n {$project: {_id: false, percentage: ''$results.percentage''}}","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'abc67cae9fc72260949efccb22b90a1d2370426335211ce4826e4ad80fdd9b4a', 403, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b5cf237985d6daaa92f96afd48da608f6c96f38ca0030c2d4c154f1d727b88d6', 25, '{"type":"native","native":{"collection":"analyticsRegistrations","query":",\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'55bc1f3783b5a05aaa7ebbda6d80920e895ab9056f1c87f6f416bd6aae59814a', 197, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f72f26eafd5ff8b088a52f9eb5987bc700ffbdda78a58722926fddb9a3b7ab46', 548, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: \"$date\"}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1077509df60d419364488bf16850fa247551575c306f7c4fe665f43962ee2089', 427, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: \"$date\"}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'55f9bd6c26b23f47bec28727b50095fccb4f4bafb062ba3247ba0312b17cc06c', 4, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: {\n \n $dateFromParts: {\n year: { $subtract: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }}, ,\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'29024728c009bbe872dc9bbe1093edbabb1541225576a096527a94a044dd4114', 581, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: {\n \n $dateFromParts: {\n year: { $subtract: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dcbc0864324145e03ed7ef9ae5e84fc06e303a41bea3954c53e8011d8a3240bc', 445, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: {\n \n $dateFromParts: {\n year: { $subtract: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9df1b7a3e91103e41a9278cedb0a25e836c66f5b1aed3f2ed7dec2fed6a34d3e', 516, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: {\n \n $dateFromParts: {\n year: { $subtract: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n \n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'90fc9691d4cf17feac60d8a02d9ac7b492d22d655de6e6c6cc2924b1d9de51cb', 443, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: {\n \n $dateFromParts: {\n year: { $subtract: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a706bebaafb810cd70a3e58f4e50f1882f6236ba27ea2351ecc15654ecc63e7f', 457, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: {\n \n $dateFromParts: {\n year: { $subtract: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f2a43e5f2826503802541bdf1c6ea1b710e0d84d617085b43a6c9e11710deefa', 415, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n let: {\n firstDate: {$dateToString: {date: {\n \n $dateFromParts: {\n year: { $subtract: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}},\n firstState: \"$stateName\"\n },\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n {\n $eq: [\n \"$date\",\n \"$$firstDate\"\n ]\n },\n {\n $eq: [\n \"$name\",\n \"$$firstState\"\n ]\n }\n ]\n }\n }\n }\n ],\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ce6c180da18619cd99d29e00d861fdfb0796c9e39af1a0ad6d4f7a2bac7060db', 381, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ]\n }\n }\n]","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f08fac32444c03615abd994c45ba3cd0f2125ef19411bd8c17c9f2a42f00e10e', 125, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(114, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(114, 1, 'type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(115, 0, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-stri', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(115, 1, 'ng?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', 663, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n results: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }},\n {\n $group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }\n },\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n total: { $sum: ''$total'' },\n estimate: { $sum:''$estimate'' }\n }\n },\n {$addFields: {\n percentage: {$divide: [''$total'', ''$estimate'']}\n }}\n ],\n fake: [\n {\n $project: {\n _id: 0,\n percentage: 0\n }\n }\n ]\n }\n },\n {\n $project: {\n results: {\n $cond: [\n { $eq: [ \"$results\", [] ] },\n [{ percentage: 0 }],\n \"$results\"\n ]\n }\n }\n },\n {\n $unwind: \"$results\"\n },\n {$project: {_id: false, percentage: ''$results.percentage''}}\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'9016fe9e6d7778dd7ae3bbb59c24c477105752b53cf6deb855ca913714622d0f', 35, SYSTEM_COMBINE_CLOB(114)), +(X'a7cca1f91dc4a21770fc0a0323438371ab0963acc06c770400a97868d1710313', 57, SYSTEM_COMBINE_CLOB(115)), +(X'f980e7e97e68dd0ecc318da31d167ac5c9013543ddce29553d54726d6acc8710', 34, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(116, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimens', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(116, 1, 'ion",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7202961ea564d54e471ec7535f33d2c590763b92f21263d91d812f160879b07b', 83, SYSTEM_COMBINE_CLOB(116)), +(X'18e7cdc92b9caa5f66097d66d7502e5c9af5cd614a16a64b13606eb73e571745', 37, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(117, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(117, 1, ',"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a33ba39e62823ca307d50b9c177cce315cea6c13f33ee396ae9822cdfd8acb23', 45, SYSTEM_COMBINE_CLOB(117)), +(X'3170e80802c15a541aad29284b8f79ff89e0fe9ff6e2afd62df19362935a2f38', 45, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'aed6953aedb01a980e65e436f6bddce23c7265b2224bd66a4b317639008d153f', 312, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4267dab015ba43afd5ef56766d302d5aacd958459c3c87ba3c7de76010733831', 87, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e9dc399961c6ce3552f4e130d4ab97dc6141ace834954c53ddef79bb96b18f57', 38, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n\n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f7936510d9835996fc126c1bcb5f13dda80f686edf2af6d1ab04bf49aed99480', 47, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n \n [[ {{ filterDate }} ]]\n ]\n }}, \n\n\n]","template-tags":{"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'eee3f658366c823d1797b986e211ae96a845d69d435d4c83648e0df937644496', 4, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}},\n \"foo\": \"[[ {{ filterDate }} ]]\"\n }\n }\n\n\n]","template-tags":{"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3ebe5be324f12680a55613b3abf9715df3ae0011331caaa9caf101111a842057', 10, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}},\n foo: \"[[ {{ filterDate }} ]]\"\n }\n }\n\n\n]","template-tags":{"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3ce9cdc0acdab0ae094e42f4dc6f29d63d861a07d318b33ca824c182bab65490', 27, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}},\n foo: ''[[ {{ filterDate }} ]]''''\n }\n }\n\n\n]","template-tags":{"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8d02dd347d138c55fd3637a55aa2dc9d8cde64af37b28906cc670beda4c132be', 57, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}},\n foo: ''[[ {{ filterDate }} ]]''\n }\n }\n\n\n]","template-tags":{"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e75a84bb944a228c1690de7b80a642ad199b2b4193c1b14fe67c458b4e0b2730', 3, '{"type":"native","native":{"collection":"analyticsRegistrations","query":" {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} ","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(118, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(118, 1, 'type":"string/=","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"82f62304-2510-50ed-8dcb-e81b116736ff"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(119, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"a', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(119, 1, 'sync?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(120, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"82f62304-2510-50ed-8dcb-e81b116736ff","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimens', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(120, 1, 'ion",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'358172363b88def9ed5b71c91d8db73f0a70ca8467f3c84c557df210625d851c', 41, SYSTEM_COMBINE_CLOB(118)), +(X'1cda669e34925acb72ef713d621988d2fe1d1a1b496e4cdf36684c617db1c40e', 48, SYSTEM_COMBINE_CLOB(119)), +(X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', 168, SYSTEM_COMBINE_CLOB(120)), +(X'87410c7851ad3cb271dab2ce745905aef80d0a74ed7796e97e1d2c7708c1cb3c', 212, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'1c94333724449ab83581dd4bbc65b9ab4e3816cca73a2d9c0d884a52b3cb5f29', 469, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(121, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(121, 1, ',"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a653b1c2b48e439c4380595a266ff2c316fd08e6105dcd65da02c4aaf0e55567', 58, SYSTEM_COMBINE_CLOB(121)), +(X'453f4dc9b4318774abbbd5d0dcb73747c0ef9e1ab9888b87e8fb9042c11bbc8f', 48, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n \n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ae22b9910716a75660fd0cc1f59199f93e22b6a9586a52d2a0fdbda538b15d6f', 57, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n \n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n stateName: ''$stateName'',\n percentage: ''$percentage''\n }}\n \n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3743817337d0f2d526439c217bdf74a832d664e1964bc3e87db8e8b7611028ab', 65, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n \n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'06b19b02c8795ad3714c9a611e186321c94c4fa16e4cc3b328d86394b02a74f9', 65, '{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fbb0b237deff980c37ed62abed42ed240caa5403370fdfc96a9f72d36a250078', 272, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'83caf2d10780b4c3b4647774853291c0b8cee2bea0fe0b21b16a557cdc247154', 1369, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ca4121624fced32d5e9e603eae04534a7c3f460461a44fbe018542746d4d2688', 336, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n \n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'299850568c8ca6e2e620dc89b71debb495c2ce44b86f67adeb718cb250b635cb', 61, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: 1},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd91551b5eea8e4bbd908934b41f295b4219de9a9902338a2b51e589ab38741a5', 1580, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c5cb7ad37199404e02b9d5461de20f292075e7f6d7cc5c7bfaa075c7b9ca9ec3', 1359, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', 928, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n },\n }, \n {$lookup: {\n from: ''analyticsPopulationEstimatesPerDay'',\n localField: ''stateName'',\n foreignField: ''name'',\n as: ''estimate''\n }},\n {$unwind: ''$estimate''},\n {$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Completeness Rate'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$allInfo.estimate'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"98d80974-0259-1c2a-3441-4653bbbc4555","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'e14c9148f0c62d58288580e41612657712178954e114f2dbe15ac87f60436b08', 2394, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$multiply: [''$percentage'', 100] }\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b50555d6bf708144e0d86e32784e2ab51bc5ae087dbd06b1c5b782022a015fc7', 1777, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 1]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'659e801f7f0ef2035c54ba361fd4314a84a96a275df6fbd19f4ba097381da407', 1641, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(122, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"da', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(122, 1, 'te/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(123, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterE', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(123, 1, 'vent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(124, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimen', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(124, 1, 'sion",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(125, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterE', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(125, 1, 'vent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(126, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterE', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(126, 1, 'vent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(127, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimen', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(127, 1, 'sion",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(128, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"midd', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(128, 1, 'leware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(129, 0, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707"}],"mi', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(129, 1, 'ddleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', 460, SYSTEM_COMBINE_CLOB(122)), +(X'bb0059f5aa601a17d36d5df6ff2472f74bbac8784d3ff0d99900b20a8e2899e4', 1580, SYSTEM_COMBINE_CLOB(123)), +(X'8cb2d526ebb40748b745529bf95654b5ea345d81066171d60be693c1bd40e299', 142, SYSTEM_COMBINE_CLOB(124)), +(X'142af1e37439732f116f3acd22b2fef36535c27aed1225693317dd19e369ef01', 188, SYSTEM_COMBINE_CLOB(125)), +(X'139b5daef338b5441cbac04893fe856eeccbb673c39c1af3411688ae75db2be5', 242, SYSTEM_COMBINE_CLOB(126)), +(X'63332bd9638547e5377728d5376d175afc52c36be0482d276b8c83412553b680', 182, SYSTEM_COMBINE_CLOB(127)), +(X'ec566a4f8c40f2f8bb49716f576a3b1b2b4990d40116386a9fcf1cc7a19f0b34', 76, SYSTEM_COMBINE_CLOB(128)), +(X'aa5a77e0d67d6f0fa04127c1d348436d5c5f45a9d038258762d1b28888d1fe63', 134, SYSTEM_COMBINE_CLOB(129)), +(X'81d99571e6776a36e172400309580f91bfe3eaabdba5a8bab5be298ae76b5861', 1779, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(130, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"4e8c4b25-97d0-a897-018a-c9ccc726a3b6","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8250932e-cc6c-a1aa-1ca0-50051e40746d","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5772d1b6-c370-a8a0-1131-09334777fe9c","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterDate":{"id":"4ea4c020-1cf1-34f0-88c8-bed473a07707","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null}},"query":"[\n {\n $addFields: {\n date: ''$date''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterE', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(130, 1, 'vent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', 423, SYSTEM_COMBINE_CLOB(130)), +(X'3e9e22a83985d681b77523fe75a82834fe75f5c4aceb97428a7e23a662ee0b35', 8, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5aeb6b28ca18765ae452dedc3917a9b6634ce9ff298e17155e52a0948f93b460', 2567, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"async?":true,"cache-ttl":null}'), +(X'f234d62e57b43fb0c749b26b997362067121544b564af6dae21bd779fd6f27f4', 9, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'00cd4983c832fcde3597af9c0bff83695e460cb3d2df889dd20f7ff531311d1e', 8, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: \"[[ {{ filterDate }} ]]\"\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'909f9410392cbb046eca091ae8a6873684032be7b4e9ac3b20edb71f31012c57', 6, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'109f1be0fb2a3c930f1ee190c4a94d69837104662cc49b33728b163ea682f20e', 6, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5d9a9a94b3faf6c2dd75edf0d24c20145f1f12960fdddc1804531aa969c6ec32', 12, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'04027dd5cdea8320f60ad632cbd7c500aed24af379e947c1898dae8798cbf091', 6, '{"database":2,"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"category","value":["Birth"],"target":["variable",["template-tag","filterEvent"]],"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', 1787, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4405c9ec2192b9acd3b8620e522df0df65eacb011f13b5d3e2f38567561b24bf', 1316, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"async?":true,"cache-ttl":null}'), +(X'00f75ece63ad2874a1e0559c9ec78d9c7aa84adcc732daafa7390af5ee1e708c', 496, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'22195ff56272a0c145017f07275a65abda7234a09b4cffe9695f14d5544c512a', 348, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'ec5414935f0cb901d10e61df8bdd099f7f6f05d16b28ea365129f395bc711f6b', 591, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', 234, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', 224, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', 211, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(131, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-tt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(131, 1, 'l":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'70c43c04d3b99013d2925fea0aec25d89e2af1d17ba33dcdde5aabcf0be3685f', 1870, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'00d44c7360d177cb9dc43b206205daa887517e70b76a33bfd947a08b87c80815', 139, SYSTEM_COMBINE_CLOB(131)), +(X'a9a4361330fcd8e85a7723e1005b4e3ceaeef2ee6b07b6210e47f19384549716', 285, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(132, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["di', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(132, 1, 'mension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'91f5ed072e7035e6b7f4ba9381db042bfb3d44f96e260b1e11afa597cf34de96', 114, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'5575c148091b28ab9cddf71a8a8644ca3fb43e27e506815347df615b6fa6e019', 218, SYSTEM_COMBINE_CLOB(132)), +(X'87fb6475edf47bbc6f5726c3eb2d1628d5a92fda502d58e67731102f1cf8a55e', 192, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'2405c3fc069e8019fbfbc66c76391429ad7eb6a7ee332167d1d3bc3515388810', 202, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'412a4085f875151255b14caf51c88c0ed2f05f2a386c22634fd60f51301e801e', 278, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'69d73d93e610c087b1bf260a684e155549ee6850ddaa1af2e34bb45dfa688e85', 183, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"date/range","value":"2022-12-22~2022-12-22","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7d9dbd3cc860f512235cc584930fea51111f7f3485f72ede6243086741510e4b', 181, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"date/range","value":"2021-12-22~2021-12-22","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'), +(X'3fc46b294cd19166725e556a3bf3a1c795498acc5a1fd1e7b652e708c3d6be6d', 180, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"date/range","value":"2021-12-05~2021-12-17","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2e72f1f3aa0112dcd3b07ecd8076c9f18c19c5e698557d60519df13ddac28308', 143, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"2021-12-05~2021-12-17","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'92b341f61374c2692879460e4b0cd21634fdf7265394dff87eb5e63688e9e18f', 15, '{"database":2,"native":{"template-tags":{},"query":" {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, ","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'285e1aac76ba44da27a403a78a1cfefc8f33347890b1eafb38ab245fabee7eb7', 235, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"2021-12-05~2021-12-17","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3079d0b2650de366bae224a4488945d1f7436b1a6bb0af578418cb77b8323d23', 251, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"2022-08-01~2022-08-11","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'de3fa94887a7287b8566393ebd31ddeaf756e15f6d380a65ea20fa720032cfbe', 256, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"2022-10-01~2022-10-29","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c6be86cd5924ea1545aed5c351c6b56bb89ca792dca1fcf225d57aa34544ed09', 198, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"2022-12-22~2022-12-22","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'14619ebabaa10d23d7c0c4f6eedfafd99456e4613965067f10d2e59fabed2ff2', 148, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"2021-10-01~2021-10-31","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'334b2e59e33b1bdf10082fe8a93a52dcef14d5bf4d9e45c8134dfae9be26a93f', 206, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"2021-10-01~2021-10-31","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'85830da00ddf6b7e55e304426c197a3d49a662f7999580f43095f447851497af', 3, '{"database":2,"native":{"template-tags":{},"query":" {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6e6f9ac8c7b9385dc2e9507a948cb2c4fe0310fb061169b4dc0863de7ee823b2', 217, '{"database":2,"native":{"template-tags":{},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n\n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'86f8d28781137892a90754f93dd3ce646f7a4c5bf1b119b3b36de4e916be28f0', 232, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'), +(X'96d4605b5a932a009c38c2ca4461dd221f4ca04f12b8bca726b666e595fbc4d4', 167, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n\n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'df18fd98a2cfe5a739910e6812759cd999a7ca0782c39d2094ceeed36b24ae52', 259, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n \n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]'',\n bar: ''[[ {{ filterState }} ]]''\n }}\n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f2780daa1b37a60d2020072c8776f9d1ba3e09afdc58d15b1a69f27d61707db4', 191, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4c6d6f89cbc74c2279ae11eb522046faca8fa776844b95b6a3d596ee474effd6', 153, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'576f92db4cff146f87c932b319e61e8ec480b79473f0caa259f026c1dc4fb869', 320, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n \n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c74a8a22815228222bb72fa0781a019f412be1bbf6c680b846ed358f6b21a34a', 4, '{"database":2,"native":{"template-tags":{},"query":"_id: false,","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b234c6de298bfae846482c8a9dafd61f09efa84f2ab363474f06bc8749c30e4b', 1115, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', 558, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(133, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(133, 1, '{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"778705c5-e02b-4b7e-1379-c87c41870dd5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(134, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dime', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(134, 1, 'nsion",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(135, 0, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"778705c5-e02b-4b7e-1379-c87c41870dd5"}],"middleware":{"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(135, 1, 'js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'eb7cae8e01d2f17f948cf91b259fee02a4e421e137839033b46fe2e4117f77e3', 1268, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'19082e30288b0fe16c03d5bab3c3a9b3927cabd1872c8561e0ad12e6e3035cb9', 40, SYSTEM_COMBINE_CLOB(133)), +(X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', 279, SYSTEM_COMBINE_CLOB(134)), +(X'67e5003c0de3dfbb4b014ce241f70ee4209ba0b1f23d07ff5e68d8c0739fe997', 208, SYSTEM_COMBINE_CLOB(135)), +(X'de99288da3f1aa785cf6f48e878f3b0b97562139bc9bf3b882c5b6ca62c93414', 216, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"778705c5-e02b-4b7e-1379-c87c41870dd5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5c60c30b9d13a8ec31dbe0b5b9b5bf645d2d60bd8e61d4c9324d050b45ad8a4c', 178, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"778705c5-e02b-4b7e-1379-c87c41870dd5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b67b55aa7acaecfc9515d07cc4dc68ae92a9ab81b853abbe0241323c8702f5f3', 196, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"1cda86e7-bb6c-c923-2bf0-d6b3c7cdaa34","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}\n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1289461890982027da333d2efc32ae338c062a838f17173cd4c10384b5abdd87', 452, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"1cda86e7-bb6c-c923-2bf0-d6b3c7cdaa34","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}\n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"2022-12-04~2022-12-23","target":["dimension",["template-tag","filterDate"]],"id":"1cda86e7-bb6c-c923-2bf0-d6b3c7cdaa34"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8947798d97fef3fddcadb2aab273d27ee1164f527e951067c9327a0176943f86', 4, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":" \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} ","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a64b6031d59125d15c98987d5a522d7ed000fd8dc09c93d976c9c7e8976c77ed', 1421, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1e0c4f9acf846dc0fca59fbea9bf98dfe81d354519f73ecbd03f60f10a34b67f', 260, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'add9e738612213cc7f98a299d6deb0b97627482b178ab79437e1943332fb0800', 1653, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$addFields: {foo: ''[[ {{ filterDate }} ]]''}},\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6cff4d036328cc04f51af98f02a58d36565dd5d15bf648c15cc70cf71e21c436', 454, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$addFields: {foo: ''[[ {{ filterDate }} ]]''}},\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'16437f7aa4940b0ea20392c35337a6feb489dd536749e01c959cbbe5ec95b2a3', 3, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"{$project: {_id: false, percentage: ''$percentage''}} ","template-tags":{}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e5ada8ece79cec6c7e8158ba757159e4b36fd28ed0e8e5395127296cddbfa913', 1660, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$addFields: {foo: ''[[ {{ filterDate }} ]]''}},\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'76ba1b914435c433734e1738ab5f77e60f5119cbe9244bcca8a7bd0950ed5d5e', 1172, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e642eec1f72a68c44e8ea90b5cab6e8bb5f0394a666ed81d03ff338de788b9a7', 1815, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage'', foo: ''[[ {{ filterDate }} ]]''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ce5656d4-d6a2-d719-25ba-60db908d3efa","name":"filterDate","display-name":"Filterdate","type":"text"}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2f11cb7e524e5cf4b21499d21dc328768a927a2768eefa36080991a9f6d74278', 208, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage'', foo: ''[[ {{ filterDate }} ]]''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4b83b8b155eab3b9d4aa3f9f0629eea666dd5c4d4540321ef4348f1a27b80546', 1407, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]'',\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c3fb66e472bb6c077c939218b83b266d2575c9cec975a5e65d20970e15612a22', 1459, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage'', foo: ''[[ {{ filterDate }} ]]''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6583d5096182d6d7f43ee42e906311e872f47aa77fee9911b92596cbcbe80264', 185, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]'',\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'718cb17e85f712a56655bc164ea5901b88e58c41af67e4c1a832dfb8a335dd81', 412, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]'',\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8fe9ca5cb6bdc733eec93107bfd0044e1f642274981f6f766401d12448dc04b4', 419, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}, \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0767787422d9ff708667b99554b766ab8653b06306350c528aa7f0680b4d6027', 240, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}, \n\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}, \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'449b4f1f9587da1684432f9678a2d25cb595d457b77922c020326b4dc6a62541', 285, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}, \n \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f2482af3c1338e6f8cac902544b3fee02e05798d0aff7eb671b3823f9d0a4242', 155, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n [[ {{ filterDate }} ]]\n ]\n }}, \n\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}, \n \n]","template-tags":{"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8e51d800d0e9c2155ebaeccb84509bd9debbcd95f4cfffb863fdc133bcf7d448', 146, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n \n ]\n }}, \n\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}, \n \n]","template-tags":{"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b7bc24d8269d2f3ceb3e0746172016671a441f62c1086a97b310e955f6163805', 145, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n ]\n }}, \n\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}, \n \n]","template-tags":{"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'052cc8c975a4fa4ad1563b5060c4b685fa636fd666246fdeec797aeda03fad61', 318, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n ]\n }}, \n\n\n {$addFields: {\n foo: ''[[ {{ filterDate }} ]]''\n }}, \n \n]","template-tags":{"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bd012686b50d9378419875787b2970440bd2a743b25a4c982103f24fa8730925', 132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', 378, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(136, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"i', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(136, 1, 'd":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e97df1aa0bb19d467b43ff64771af69489c1302dda853419baab41ddb9414611', 180, SYSTEM_COMBINE_CLOB(136)), +(X'd8a5bb9e401f512a576e5a54049fd905e0540b4d444d3822b1f3068072ea9760', 776, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1abf4346e4596d567ebaaa77fff8b2a24f156d3de5bc697199e1c2ebd20faf2b', 81, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {\n date: {\"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e3d57c014a135b2350762979cc59c73fb44c9b699629dd4f96086cea54d7c6f2', 9, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {\n date: {\"$date\" }},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7523d7b9adf1c4ba56b35111eba8a8db452c5ede263d00482ec833ddb9530406', 16, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c1dd0a6d8659dd4c738d462b614ec2d640f8bc4fe83886ec16db28e2eb28688c', 8, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e4ac0831cda2f7993df8d71cdbb7b03e337def3de915676b52580a9228419318', 868, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(137, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(137, 1, 'null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'773b8fd01aad63423e53f035678c1dc07ce5f54bf7545519db0c8dd3bc04ef56', 147, SYSTEM_COMBINE_CLOB(137)), +(X'c1517b8af3d77ec1b328517e9a8972abef5950b1be669636d77fd063b2d37ea4', 327, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'e700db1f9f312efd042a7b0e7cb4fc95e681c96e2ee89d56ba22c98e9d7dea0e', 240, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'188494a6b0e3f5c5a92cc36ac0a57f47f51b116c5d163269d7bd1ee41684412e', 120, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cf8b406797575a5b504c12280ed50661aa6d474fcb81e95eb15254a075522948', 413, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'37c365038a59c73dbe38650932e8a0930d04566ae85104f26171e6aece4c94ab', 105, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'03cefc1ec2e90c46416acdaccca48e42016b3ccdd9037edecbcf4069e03f0942', 191, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(138, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-tt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(138, 1, 'l":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'943e23a00f50d1db1c29deed029ef32b7c3ac48441269f1715d96f2d318dfac3', 103, SYSTEM_COMBINE_CLOB(138)), +(X'fdf25174dd76bf49788dd170804065a6692dd102d810cb6eaf8a16d9b314a9ed', 183, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'5d7471c6e8bdc5d310e3679b40efa74f6be475fbaf5a5e4db344f30fb95d4741', 189, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'0c043cdf3302cfccb55ba5ec14449b7d55bd287cf8608a140fa29c732655dab6', 208, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'22c09c1f037db977115c230a2efda81a4f751492038fe9f15f237eb29a5b5729', 226, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'317c40240c300e25f74abf4d8464d1a1706f0f0815ccb231db84ba14556f40b4', 298, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bcd443b264c51d84503c356a9762ab18360fa0e0274f887cbb9f8b09757e23ed', 426, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'baab165aadfa90cbcc938255a3f49cfdb2f2f189b0b71d1f800f6c8cfc416282', 878, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9d41b72505acdde022d67c4dc9758746db632b89fe96e3bc4a80bfdf64cfb21f', 932, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(139, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(139, 1, ':["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7da53c830b2acce90bbd06a33134baaf3079f5d9d39c542a811c54298033a6ad', 543, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a09f5867ff540a01e7a77bda1fda810f73b0d0481c74bf1e114987b2ce8fbfe6', 167, SYSTEM_COMBINE_CLOB(139)), +(X'1d77f3601204641e9906aab578d9fca496f62c2c8a95c89591a985302b6ebd7c', 139, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(140, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Federal Capital Territory', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(140, 1, ' "],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a23c697c530d0807d1b5f6d6907768562ff63d6bcb6edc7d851e7b20e905163d', 214, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'537639098fd5c4d510ad7c9d588cd072da2b4b0d43c3c10f1b51ca337663387f', 281, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'f8585eced85349f221d1ad80223034a510d1944fa3f6859da1f1bc2663e6875c', 330, SYSTEM_COMBINE_CLOB(140)), +(X'5613b62f5d014259de6026843f88d385ffb0c29c2f62e2b783f715b4762a7e58', 165, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'529930ea546bc050238a1fb6dbf6c6c03ba6d9de1ae977165dfca7219605097b', 329, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', 235, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",637,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(141, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(141, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(142, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(142, 1, '["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(143, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(143, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(144, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(144, 1, 'async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', 227, SYSTEM_COMBINE_CLOB(141)), +(X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', 251, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', 198, SYSTEM_COMBINE_CLOB(142)), +(X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', 236, SYSTEM_COMBINE_CLOB(143)), +(X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', 199, SYSTEM_COMBINE_CLOB(144)), +(X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', 295, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', 243, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', 284, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(145, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dim', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(145, 1, 'ension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(146, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(146, 1, '9b53-1d2a-5396-317e766e7de8"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(147, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(147, 1, '9b53-1d2a-5396-317e766e7de8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2a64f234f79247d639f5c122b79d121777f13b42ac4f7332504a6a6b17aab13d', 557, SYSTEM_COMBINE_CLOB(145)), +(X'5da2c92d90ddbdb618ba1f1651553eacec5adf0774cdaed554d888101b9b531e', 105, SYSTEM_COMBINE_CLOB(146)), +(X'40b934d0c8a940c2c3b03e911a97d8075a301c37d92b10370d089ec56ac02d4f', 175, SYSTEM_COMBINE_CLOB(147)), +(X'9606415ed481bbfd57f3301db2a5f62b8cbf925d1319c47c6aaec601dee5ea99', 202, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8612a0597fd4808b23afa60e0b16e8b1b31f4566967dd60d45853ff8f7403930', 9, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n },\n foo: ''[[ {{ filterGender }} ]]'',\n bar: ''[[ {{ filterDate }} ]]'',\n baz: ''[[ {{ filterEvent }} ]]'',\n bax ''[[ {{ filterState }} ]]''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bf81d4dbe7aaf42b39b066d7283cb651e33365b9ad040747815010a0c69210c9', 109, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n },\n foo: ''[[ {{ filterGender }} ]]'',\n bar: ''[[ {{ filterDate }} ]]'',\n baz: ''[[ {{ filterEvent }} ]]''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7d84361c4f9a61a5f4ec7fe725df9fb8f97bbbb8c5473b0665cbdb63f79590b1', 5, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":",\n bax ''[[ {{ filterState }} ]]''","template-tags":{"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null}}},"database":2,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0942a2e09ba5afe58e5566fd6fef838b23d5fa54d714bcd9b86a1de53b696d2b', 107, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n },\n foo: ''[[ {{ filterGender }} ]]'',\n bar: ''[[ {{ filterDate }} ]]'',\n baz:''[[ {{ filterEvent }} ]]'',\n bax:''[[ {{ filterState }} ]]''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'80478b6e1151979a1971a16949678c8f4b4b021494eb83abb518a4f1a36de45b', 422, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n },\n foo: ''[[ {{ filterGender }} ]]'',\n bar: ''[[ {{ filterDate }} ]]'',\n baz:''[[ {{ filterEvent }} ]]'',\n bax:''[[ {{ filterState }} ]]''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n ]\n }}, \n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9f73bd09286f5df5612236350c924b5105536f015d1bd5f66807c8d67df61207', 313, '{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n },\n foo: ''[[ {{ filterGender }} ]]'',\n bar: ''[[ {{ filterDate }} ]]'',\n baz:''[[ {{ filterEvent }} ]]'',\n bax:''[[ {{ filterState }} ]]''\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n \n ]\n }}, \n\n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', 1305, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(148, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(148, 1, '5e8-d1f2-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(149, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(149, 1, '9b53-1d2a-5396-317e766e7de8"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(150, 0, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(150, 1, '-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'afb6f48f83ca47743c1a4584e9da8f4bd86ec302a0d53d90e888437dfd47a020', 716, SYSTEM_COMBINE_CLOB(148)), +(X'853ffdfd82f1853d0f606e31d5d6c8b27b7f4ecb3830a5403260351ab3c68fc1', 219, SYSTEM_COMBINE_CLOB(149)), +(X'b2905b868e5a7e54f5b4d929c08b79030b31e70d6ec5c28e1b87cff81636fb4b', 128, SYSTEM_COMBINE_CLOB(150)), +(X'ff71d281c5d975ddec72738ce2b9c7a503811eb67d79cede224c7878961871cd', 285, '{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"63587bed-9b53-1d2a-5396-317e766e7de8"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ff60ea9454df04fc7211d60dd99df55be3e2723bf76a55c6928e3f3cdceb0b97', 425, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'963adeb65b2496619a7c93425813e9236cc09bb0407dfb4a0a689988643e3fd2', 96, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"async?":true,"cache-ttl":null}'), +(X'6e0151ec7840407fd902cc6fd96b5a2d4bdc53e27cc8d2557aff0d3dc6a1ce26', 116, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2d160401f03ba321881443ad5ef7de9838e8e6c293d1e6188c0eb935a15a10b7', 111, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1ec9d1df160ad467c8f46a14f8bcf71454f44f81b75efa87c66e06eb07f0ef32', 146, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n } \n }}, \n {$addFields: {\n \n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(151, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(151, 1, '5e8-d1f2-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', 454, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'4bd2faa6c1e587c057c026d82fa62ef4f4cde2b13453d9f1b34771ae63a90677', 869, SYSTEM_COMBINE_CLOB(151)), +(X'dd379125776364d81ceb6f0ba0eaed431c3b2136810557fc6ad77715c060570d', 96, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n } \n }}, \n {$addFields: {\n \n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0bbc22c1ded957c96cd78cb5aa4a725a6dfd57dba60288b61343ab6116420c1f', 170, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n } \n }}, \n {$addFields: {\n \n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bca4827d0bb134fa34370484d32c391a7514de4cc4c18dd86f3aa248cfb660d4', 332, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { format: \"%Y-%m-%d\", date: \"$createdAt\" }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n } \n }}, \n {$addFields: {\n \n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6c5edc7cf51add7cf021c36ff69f04e8d829a28b9274539dd23589d34d695dc5', 321, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n } \n }}, \n {$addFields: {\n \n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'25c33cb75b01edae36c068ad9483e669bff6b7c15ebc42aba81df192d627d530', 3, '{"database":2,"native":{"template-tags":{},"query":"''$percentage''","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'feae8b25d51d011754dd7e5cf10845101a509f272657d7a0f3553f6bfd739b03', 1336, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"715970b9-3299-a3cf-7587-380b9b98c773","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"81ada1dd-a5cb-64a6-402e-a1d7dc89b48c","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ef8cfe7032f3a5f6b889aad0461a69d4832a6606a8daf3731386be0af14f875d', 55, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"715970b9-3299-a3cf-7587-380b9b98c773","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"81ada1dd-a5cb-64a6-402e-a1d7dc89b48c","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"category","value":"Nasarawa","target":["variable",["template-tag","filterState"]],"id":"81ada1dd-a5cb-64a6-402e-a1d7dc89b48c"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'35b54aa116df30ef169e7f1c3c6efc2707b392cc763eb2c9697e7a1fd48b71fd', 202, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dd8d39fe40850179491762b8799ca4cb8db908569ca80fb6fdd073c139f8f72d', 41, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {addFields: {\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9876397326184890575374a6da54b9dbf2097336beae96ce684e592095d7525d', 124, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: { $dateFromString: { dateString: ''$_id.date''}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$addFields: {\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'108c0a27b039595d51f2f47155458f4da99006435d94052bd9e1ab18d096ef48', 106, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n \n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$addFields: {\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ef25392cb730d02cbeb0ccfc1ad49e5733f91c2cff3f5b878198349f4c5f6b22', 3, '{"database":2,"native":{"template-tags":{},"query":"{ $eq: [ \"$date\", \"$$date\" ] },","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3a290c9cd19225aee15c598aae1cfce71a3a549e578c36470fde4af8d61c4fb1', 170, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$addFields: {\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e63b5dd1db8dd4645ec16a033d27c2b0ed3b0fa21d5ec82c5cc93adfdd771453', 188, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\", date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$addFields: {\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e3610f4a04df087eac6df430fe416e33b0dca5889e8418b474a248103fce1de3', 140, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\",date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$addFields: {\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3e1ec597e51fc10771d8104df3fdb95fa2ff4dba8343f7eb486b1643cfa23e93', 239, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\",date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9080af1807e0a197dac4bd59e90456e00f5e9c3cd079e6e067d4b857763c8df3', 402, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\",date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e3a5f777a43ea067ac275dfbec20f41030e450a5f6eb01de1df3f901dd49ddd8', 1722, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e99e1b7d8ab8f14969ad82e1438afb5841519d8996793983ec0cd6fc71efb566', 1534, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\", date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1feefc833e9cd47e9ff66bc249233c03f14bc3f0ab15bec5744c8f4e33b44800', 1465, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\", date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3fd476d5635dc4d6f579ccab5babe64cdbd560cbbc9484e5048dcc9a31622660', 694, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\", date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f6f3ca869ceb41954d51e7f07e144f4b4bcc65e062a527dc3ef0a8ba0d9aa5d8', 184, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { format: \"%Y-%m-%d\", date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'88118744432df87a28941209696a5e57728c6e0c2e5c13acec577aecdb176113', 194, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'26e6ff6993c9d152179346ffffc9a625768cf24e7ce9a4fcae3d9f56b839a831', 10, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" } ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'558641bcb83188c7ed5e5fdc47bbca5a79da50fc4959ea5de9e9d0dcba83bcef', 265, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b6c33d2f6cc8173c06cdfebec87cb19943f3d27333517d3a2ade9002247c446b', 177, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1f141caa8d666db14002a5f5747a985ffa2da4d7a8fce9c9248db0e4e1a94b64', 563, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n \n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4bbaf1b6850c3db348a0310b06d995018b1cdbfdd717aa99d77f43b7ddb96b42', 274, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n \n \n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bad00690a8885f3a7084e4211373fbeccd88838197bfdaefc7257cdf87d4ea70', 261, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","parameters":[{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3c3cf12c5a258d1055abaf0664825c783b4191342984f3ae804f4ddd1c9e6e97', 1494, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"async?":true,"cache-ttl":null}'), +(X'8c2812209a32f8de9a4dc35bea8bdac3d765a4a63fc833e9f19eaef1533d2d54', 9, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n },\n \n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6da5ccf717aef182045560de371934f99f12ede4423148ce70f742898f972e6b', 2, '{"database":2,"native":{"template-tags":{},"query":" {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7c3afce2233e4df06bdcb3747cbec7970a2b1367e88f3538331ebdcf67ff347d', 1823, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(152, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(152, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(153, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(153, 1, '["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(154, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(154, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c6fe3cfc554377e4b91b262b7811437ddcc1fc4a348114c2d46d74854f794484', 1428, '{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0e68d3dcdd948c160ca6b03c46a9e9b47e8a8d7b6f045f18d073b192bb2ac768', 183, SYSTEM_COMBINE_CLOB(152)), +(X'd628c99b06ac6828f2d69899748fa37cdbbdf3fab85edcdf4bce0e588526c505', 201, SYSTEM_COMBINE_CLOB(153)), +(X'4677b9ecc89d89f05664fdab54c34201265023d2021e7db35a25fcead4696864', 198, SYSTEM_COMBINE_CLOB(154)), +(X'0b0edc9ba83efb0efc6aab918cac0202e0581773782f3d8dd7357ecfc3b35319', 230, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["field",352,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(155, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["template-tag","filterOffice"]],"id":"c', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(155, 1, '6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fa361798544ef4bf04cc5dd15dd34753a6d76d4fec0a8cf084c7d1b62168bb79', 217, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["field",352,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'0f780b33a18f5b26ce9c3e617ee9eef6207c5504c20377e8a2face58f3a4da9c', 161, SYSTEM_COMBINE_CLOB(155)), +(X'601272030dbe4907d3d5c93404283756601aa7f81b947cca7da2c310928ed9b2', 286, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["field",352,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'ad68469d2cdc9034ac3215347dc87a1d6681774acad5ac7159e880460ca57ad5', 221, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["NPC LGA OFFICE KARU"],"target":["dimension",["field",352,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', 276, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(156, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"async?":true,"cache-ttl', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(156, 1, '":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(157, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":nu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(157, 1, 'll},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(158, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(158, 1, ': \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(159, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(159, 1, 'Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(160, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(160, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(161, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(161, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(162, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(162, 1, '["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'317ea3ea24c31e3c8f8d992ef299184b13a46d58437e4540f50fa535e47ca150', 84, SYSTEM_COMBINE_CLOB(156)), +(X'4214a9c178449f7891a888c635418897a09f57540bfb0155d57a04ad7465960a', 65, SYSTEM_COMBINE_CLOB(157)), +(X'592017c3f2f9092fba419ead0344d83a97fc8226c8e0671b54bf1582237e67e3', 40, SYSTEM_COMBINE_CLOB(158)), +(X'ac8f4cd7a6562f7f46effecb856f4ee918f2eaae68ddb717f3bced4b2b950a17', 41, SYSTEM_COMBINE_CLOB(159)), +(X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', 348, SYSTEM_COMBINE_CLOB(160)), +(X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', 307, SYSTEM_COMBINE_CLOB(161)), +(X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', 295, SYSTEM_COMBINE_CLOB(162)), +(X'c129001428dc95db73d743aa31b50cd3b48c1d9a6e32ef6cbccce0f7b2730429', 165, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(163, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"async?":true,"cache-ttl":n', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(163, 1, 'ull}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(164, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":nu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(164, 1, 'll},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(165, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(165, 1, ': \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(166, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Bir', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(166, 1, 'th"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(167, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"async?":true,"cache-ttl":n', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(167, 1, 'ull}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(168, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(168, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(169, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(169, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(170, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(170, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c011fe651f0dc6a3a187fdc6279ddbe274d5458e57cd98c5fe5f1d2a6e7de83b', 65, SYSTEM_COMBINE_CLOB(163)), +(X'93af36f968ca8f913647f77c6bb9ee588e95a27159d0eb0b78ed5584b9bc2d35', 130, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c39ea25ecc00d282391782c13cd6cce723427ec4f7f26d89329a041ea2ef49cc', 71, SYSTEM_COMBINE_CLOB(164)), +(X'3e2eb87634f54149f59a689db22caca1b11f9ab926d1c9fa5a161edc7cac371a', 75, SYSTEM_COMBINE_CLOB(165)), +(X'885af516da1f92f38f8e1d8e77c431d20d0143b314f6d44f2ae57c4489debab4', 85, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd462798382c6310c4ef183539856edb94bf6f3f0c7e70755555a8bd40bbea3f0', 41, SYSTEM_COMBINE_CLOB(166)), +(X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', 193, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]],"expressions":{"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]],"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8c8315ad293486831d97ac3e6efd946c0c43cdbcca1418634e87e12dc72da812', 38, SYSTEM_COMBINE_CLOB(167)), +(X'e89f87cf1d45de7290200df5db76fbea0794d053af3ed1a22c30b71168e4dcd4', 95, SYSTEM_COMBINE_CLOB(168)), +(X'c36eb96ebc8f34534a2a208359654b15c8bf2b32a4c8b25e71451edc1f0657db', 148, SYSTEM_COMBINE_CLOB(169)), +(X'd5cc1b5f7201c50bee395b3953c6da65afee2063a01421553a908cdc286c21fe', 106, SYSTEM_COMBINE_CLOB(170)), +(X'2799aff13a5fee9ed906a3634f69f51d633c8d2dd80369d60b41bfdbf03bff58', 99, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(171, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"asyn', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(171, 1, 'c?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7359039404eea12af11b7327cce0c315061aeffbeb7b3395247b4fed51715e44', 175, SYSTEM_COMBINE_CLOB(171)), +(X'8a1b1f4599f71724bffc13bb7a225d125b7de416046c7bf72102df3387caab9d', 200, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'e126fce6895947ff67aa737b0bf1a1fc2040b292cf0c2091aae19f569dc4d372', 189, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'd4c882d72b0a8ba7575101d7e741cb57847fa75a26f37f6c055aa679c32f5af6', 213, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'fd2165db23c7fe7d8ea12cf0a4f63c654f593ca08de9395ef0d8f9378b74bb99', 261, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(172, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(172, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(173, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(173, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(174, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(174, 1, '":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(175, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(175, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e52429a2ff96d65c996b5034f2facbda1a70cd7098ac648bd319d136bdaecc94', 209, SYSTEM_COMBINE_CLOB(172)), +(X'5b7785c9a7f319452797488bec5f4c8ba3feb153d67422c10f190eee3d9bcd16', 243, SYSTEM_COMBINE_CLOB(173)), +(X'85134b1d27ae7168f4e87c0b24362a074ecdd9cf4056bf2c2abf509033a5aa82', 249, SYSTEM_COMBINE_CLOB(174)), +(X'd3524dc61bc67f614c7caead24e5024265b0af2c83aeb4f9f74ec0e73a0cc10c', 169, SYSTEM_COMBINE_CLOB(175)), +(X'5a48b3153456001c26bb46906cd3f60d8fbf80670ae59415bf2f42f22e6ba8cd', 232, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'6ab5fd0fcc83b5ad0341a17598dbc14f4aade861a38de7724faa57b88df9c1c2', 268, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'51aee73f311a9c208b482a703d6fcefba18b14f045689740c23ce20b0eb5e180', 331, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'2f3d257717def86d8a7c07dc0c1265ec4aaab336d0df7e2ce6ad13b5a6f94e56', 369, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(176, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"as', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(176, 1, 'ync?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(177, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(177, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(178, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(178, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(179, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(179, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd506bf9ae9e3f535aec7c74460e60533007742080312593f91a2d64f8e9871e0', 561, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', 279, SYSTEM_COMBINE_CLOB(176)), +(X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', 375, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', 454, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', 318, SYSTEM_COMBINE_CLOB(177)), +(X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', 342, SYSTEM_COMBINE_CLOB(178)), +(X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', 265, SYSTEM_COMBINE_CLOB(179)), +(X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', 419, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(180, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(180, 1, '"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(181, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(181, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(182, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(182, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', 294, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', 361, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'56ade9f256893acb505aabdef2bb80922dea53c1d80a197ce120b0be341b8d1f', 41, SYSTEM_COMBINE_CLOB(180)), +(X'1f444b9550c0e8ff5b0ef5eb28dcbf2708c90d21fa499737628952704f7aa09b', 71, SYSTEM_COMBINE_CLOB(181)), +(X'b56736747f5b61d2c5d5d15cb6ff1ecf48a97dea528ed30a14a892b975637dde', 109, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'fd315791514b735b2e44488766bf705f8542f9b1391c97f5cac96012430c16da', 97, SYSTEM_COMBINE_CLOB(182)), +(X'681020fddc8df5236eeef585b2fe42a939b6dd8e955d7b6f271939050e1c0604', 165, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(183, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(183, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(184, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(184, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(185, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(185, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd4b72a28801c96cd3a3413c64895a56894ebd50b5bbc6c78a31a47ef589d836d', 52, SYSTEM_COMBINE_CLOB(183)), +(X'e014becc29a542ab65f8a350aaaace9e1c6d6e29c086700f0ef075ff96f4a868', 100, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'27e960c47acb8912331f189d062dc9b570408472f72b0665cb20e33ebeae8435', 112, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["field",637,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'eed4fcb8b486b98392ef64cdeda38e33c8064f84a03de6bd50ecdf9fbdfe1628', 203, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Enugu"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'e27ed3a62f97780bf9f3f1bba0560451d81d76fd68600c325ca550b2b4c22f2a', 146, SYSTEM_COMBINE_CLOB(184)), +(X'd0f0f309a897def76be0b0728dc515cafccc761d4b8969a97c86159e5c54b7e8', 251, SYSTEM_COMBINE_CLOB(185)); +INSERT INTO SYSTEM_LOB_STREAM VALUES(186, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(186, 1, '":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(187, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(187, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7aeb02891a2fcee6d09c4080bf0d72f52ac9b1d99b9e2570d734ee11100a09d2', 198, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'722710f02f89e0e3d62bdceb4c51041e6dd635ec428546dee2b00201bac6558c', 240, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'5a1375deddf8a339c1e63b526517ec2d14a95babaddf187fc17b861cb70c08b5', 195, SYSTEM_COMBINE_CLOB(186)), +(X'54872164ca9dc86666920f8576399c58337184603a030e68c61c1da38e3cec9d', 168, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'9207cc1a6fac570490a8d7f31487cd68c3523947fb47f0e3ffa36782bbf8ecca', 439, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",637,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'5051df207fdaebcc11e68eb47ae42b51e440fc5cfa75324801c4a4d1686da53a', 337, SYSTEM_COMBINE_CLOB(187)); +INSERT INTO SYSTEM_LOB_STREAM VALUES(188, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(188, 1, '"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(189, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(189, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(190, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(190, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(191, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(191, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'998d111c0c6bc66219bd17d4f6867725bff632ef627d49fb5ffc514bd54418c6', 229, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'a974925e528c80f12eb609b3f4af0ffea03ce104f515f351f66400139f556d81', 213, SYSTEM_COMBINE_CLOB(188)), +(X'3adb7d8e6e35479e91e2e0999b3351a71cb80553929de40044971902b66f1fd2', 251, SYSTEM_COMBINE_CLOB(189)), +(X'df5c48f7917722dce1bfadfc566801c7374b50866548a964d77ba3a56c6c75fc', 168, SYSTEM_COMBINE_CLOB(190)), +(X'de13f10f5af9a4e5091fcfdfae8698e7c85dac200939a3fd4fe7bef82d8735b4', 240, SYSTEM_COMBINE_CLOB(191)), +(X'8b4ec932edebe2f8efa8ab8273f3e33d68b0ec6bdf54bf5c39153ea2ddafd4f2', 469, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'28db55636b085667e0fbeedc83c3e617ed187b18ba325f601b1449740c432636', 337, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",637,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'ccc3bfdb4b15cd356f678f270aa6abfb8cc480574b6e45f58d87c682cc50ea95', 397, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(192, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(192, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(193, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(193, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(194, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"61113', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(194, 1, '42e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(195, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(195, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bd8e88c8b99a94182dec1d94f119c90d708bdde72ff1618f04ae752d711249b0', 344, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'1f0e1f1997e7c81647469dfd0017704bad2487bf5f44f5b4edbe0d402afc6782', 388, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'185d0d479604a8bbd32ec15439fdf3f99152b93f897386ba6441921b52304e55', 83, SYSTEM_COMBINE_CLOB(192)), +(X'78eb09521694954ed102a114c839668a61fe6feb49e665709992c8bc506ec474', 95, SYSTEM_COMBINE_CLOB(193)), +(X'cc30f5309fa43450fe766e4da60b0317319e39bfd6064c212ef82d47ef2b3605', 237, SYSTEM_COMBINE_CLOB(194)), +(X'b1306c0351b2e238011a8e2906745303198ddb546ee58226896f2de0a39f07d8', 153, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'32c8c07aa8882e2b461f054639454e5c4b5d3e045e1d4b37e2705e1400d75094', 51, SYSTEM_COMBINE_CLOB(195)); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'955be4c4ca53f449db618de70dbdb90135c4e0e005928b74b648cd3f287c3860', 221, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'b0db00ea7e7908e9f7079ca2a73a92f2ce6be2959b74a2aac26670b44ffee907', 189, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'8ae6c0638dff0cee8954ae18ae440b3685d35db50decafea75ea7c1c9b4c6b2a', 157, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["field",637,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'b26cd065dc3d0119cc7e73831239cc796277f5280f4302a832a153f322157191', 200, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Borno","Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(196, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(196, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(197, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(197, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(198, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(198, 1, 'type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(199, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(199, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bb75eb6f79cfcc37502469f3afbfdb2a8d1bf562575adb64a354aa9aa024e1da', 151, SYSTEM_COMBINE_CLOB(196)), +(X'7564fdff6d22de948f3821c61aa412abd94855594d78c9fd611ab170b068b927', 144, SYSTEM_COMBINE_CLOB(197)), +(X'56678a7b0fabf391160b5c4067247b1695637e4b69ef83498f8820851f814bfa', 191, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'cd10c85fe6a65f605c060ce579ec69855cfe453f351d131e076a2835cd9dec71', 275, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'120ad432cc1f37a01cbe4dcb0c7ba46e2c10cda2140d3c6b702b560611118995', 294, SYSTEM_COMBINE_CLOB(198)), +(X'e64e01b41a743a76d181aa36135ef8640ff15c5a1df6db466ff2b817272e2d83', 359, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'394ae4c71febedbac7e22a92d2eed75f6691e76d93a1a57a3fb12fd5b09e74f3', 282, SYSTEM_COMBINE_CLOB(199)), +(X'3a03fd8917d0937ab896a57559b679798fcbd29c50949b2bd8cf4568225de465', 317, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",637,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'24738664cd08424fe57dd08446edab150d1c42814479b6651fd3ad6698f705f7', 371, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Jere"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', 411, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', 357, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', 412, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', 435, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(200, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dim', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(200, 1, 'ension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(201, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(201, 1, ':["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(202, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"typ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(202, 1, 'e":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(203, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(203, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', 372, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', 486, SYSTEM_COMBINE_CLOB(200)), +(X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', 382, SYSTEM_COMBINE_CLOB(201)), +(X'e9a56657033991fe2ffee2905a8c596de3dab3c745f4bcfa9a260ac4be12336a', 829, SYSTEM_COMBINE_CLOB(202)), +(X'2efcb15b65a8465d70bc06c0b9a7e1482d9340e29d8bf69e923b5a25a750806f', 710, SYSTEM_COMBINE_CLOB(203)), +(X'29be2f00c12df4687e8124e61475f893b10a07cd0fa52bc08b12929b04fb6935', 901, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(204, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(204, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(205, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(205, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c7207eb8d1e522031aa9ea259a1adb0352f99db00254179f508b977fadef9b40', 645, SYSTEM_COMBINE_CLOB(204)), +(X'13c84007abc41f59affd9471936999211a734d4c5578039073de16a5498c9972', 1080, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'32716e14b7b7611f0c49729a3bdbbbcf3c2d0b115ff15467c12c3916da6d2f00', 732, SYSTEM_COMBINE_CLOB(205)), +(X'efb27e4aaa9e8843464b8057b02ae65f467accb6734c4bfcfd08a2ba6485acc1', 984, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",637,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'9708c8e831ed1752807e4c802dd8c308f9590070b9efe6ecb84ae7fcf881df99', 1110, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(206, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(206, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(207, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(207, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(208, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(208, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(209, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(209, 1, '":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f82ce782ee04e6e5ba7c7b2e8ffb4dba39061ae1b79aef45040a2784b86fe218', 581, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'f9d873f49ac2b96281cb49c187cf12998dd5e6f507656d8c58c9ac527d77e4e5', 743, SYSTEM_COMBINE_CLOB(206)), +(X'977b0bc2ee38dff074f7b448efefe6be1ee164713befd0e019f63d8e68d94c1c', 741, SYSTEM_COMBINE_CLOB(207)), +(X'219ab60390e98446b75d82b130526c2b71e2189de0df4e7845f2bba7865211b8', 1442, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'c12b84a038237919ee09c864bdfe81866e807add628d1877783b183e79ade4c2', 774, SYSTEM_COMBINE_CLOB(208)), +(X'19778a635d98c1fc26d426656b27307ce463c0e304507c32aadd0f1063e0b593', 1462, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'4b918ed83f668aa9aae308c141766e3443a4cca949b8416abe056d561393d361', 931, SYSTEM_COMBINE_CLOB(209)), +(X'1e2d144f3eab8757466962c88c8dbf0cbe2043aed52c0122db867d41ce949c92', 1298, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(210, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(210, 1, ':"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(211, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(211, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(212, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(212, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3ec47d74bb3c8650989753f99419ccbec6aec2ab1f8f069980257b0b43a8dd97', 1135, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["field",340,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'4682ccaaf25041e735dcb93b5f974ba90223ea649fbcd4abfe7f4bfe4906e404', 994, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Kebbi"],"target":["dimension",["field",637,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', 724, SYSTEM_COMBINE_CLOB(210)), +(X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', 842, SYSTEM_COMBINE_CLOB(211)), +(X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', 802, SYSTEM_COMBINE_CLOB(212)), +(X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', 991, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', 1021, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(213, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(213, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', 1119, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', 1233, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["field",340,null]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["field",339,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', 858, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"},{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["field",637,null]],"id":"6111342e"},{"type":"string/=","value":["Municipal Area Council"],"target":["dimension",["field",638,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', 781, SYSTEM_COMBINE_CLOB(213)), +(X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', 1009, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(214, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(214, 1, '$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(215, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(215, 1, 'emplate-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(216, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(216, 1, 'b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', 969, SYSTEM_COMBINE_CLOB(214)), +(X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', 1105, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', 976, SYSTEM_COMBINE_CLOB(215)), +(X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', 997, SYSTEM_COMBINE_CLOB(216)), +(X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', 1066, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', 1099, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(217, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(217, 1, ':null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', 1156, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', 694, SYSTEM_COMBINE_CLOB(217)), +(X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', 896, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', 807, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', 3377, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', 3130, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'8e9f9570792c12d65d7bd2f3c826cd92ce2ec482b0ca7d1edd26d3ad7141fc08', 806, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"parameters":[{"type":"date/range","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', 25, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'), +(X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', 32, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5e202e14107f2a56d078995072467ddd714c42babc3f57ddbeb335acc8cd9902', 32, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', 33, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3402ca982bf43e05e9d83725ca4708c09afef44e8802f75dad49af885dd37aaf', 80, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]}},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3d51ae98c5a208ef485cda2ca65f37d82f5532f722fd9b7564242cc89613ecab', 61, '{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["field",651,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cd8809cd51e8a827bcd8a7e9ea9c75bfbab30fe79c64a477e0e5b38e541e04dd', 100, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"async?":true,"cache-ttl":null}'), +(X'8d08dec52893e4aaa3ae0670db1032903cc72bd1ef77636ad1884de726c6d0b3', 100, '{"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]],null]},"aggregation":[["count"]],"breakout":[["expression","Status",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'08eb9cb5d058cebe247d92a0238f641ff61a02219c93629db965ef08226e221f', 1494, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c1d2c98dc9c40b9f68f2da3d39eb6f1cb56106e1511e0480c350660d7dd2f919', 50, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}}},"database":3,"async?":true,"cache-ttl":null}'), +(X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'680f1f849de4ccfcac185f5d69eabd5b10d1b28e6750275c04143318b3f1e7e5', 61, '{"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]],null]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a070542269902bc10bc0dd166ff1ca5b4632435b6d3b78f36009c6f671ae4899', 184, '{"type":"query","query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]],null]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection",null]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8ddb484682ba740f5d117c52716925460be130e6117b4516fdb95170c091efe5', 142, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'07e1d913ca2958aa4b0b81b51c21bdad6f5ee654ddf93cd51b86a4e4488bfb64', 87, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(218, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":nu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(218, 1, 'll},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(219, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(219, 1, '/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(220, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(220, 1, ': \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(221, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(221, 1, ' case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(222, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(222, 1, ' $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'464a3a192d97f771ae11a89faddc54a1c9731f611a9de7cdfc91855d336f0213', 257, SYSTEM_COMBINE_CLOB(218)), +(X'49dc76afbc9fff26be8d972199e7ffb932ac8005bed2296413aa065852fddc91', 101, SYSTEM_COMBINE_CLOB(219)), +(X'ff257b36a897ea82d47c56ffe47fb113249e9352768740c4173de4ebda6c3c57', 94, SYSTEM_COMBINE_CLOB(220)), +(X'46256951dc30f216cbeb647922e741a70db8a680fec5134327cfcfefdb78b4c6', 4, SYSTEM_COMBINE_CLOB(221)), +(X'f46420116379a92e7b417634d78ee6b6c547c774cded69c8df1fc11cc7f9a12f', 121, SYSTEM_COMBINE_CLOB(222)), +(X'712f5cdad6213d7978c923664feccad038b625c10c08b5779a2965e7c27605ce', 98, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7f87fa569e54fbaf7e11bfb63ab02129c75a1fd4ebb7c03ec3129bd99e0dbac4', 93, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4b0da880787466db72b2c9b525001ad1f3a94f66c01abc5db1d19bd10235b7a5', 1247, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'68dad245000e82734faef368454541aed4f0bb29107a5bb60c931a1bbe913056', 1437, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e2b8637c16fc89994a0a71dfa4e9765a7ab627018788b601ac2ce1ed1ddfeaf2', 1399, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f9f978fc100eb3c151ded06ae10ffcab22aa1443900ef1b537908da3b76f11ea', 158, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"async?":true,"cache-ttl":null}'), +(X'ba289e3ee6ddf115a7aa9ac09a26360b2c4b9acd009bb304ecf76f2981e3e806', 78, '{"type":"query","query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]],null]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth",null]],"order-by":[["desc",["aggregation",0,null]]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', 44, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9451b9d2280dd6c2e8f8b42bf81badfc30ba6d0a1a527891da73e08ddc1c30b4', 45, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', 24, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c31b4e00a221756adb915247c880e3c1f78ef960474aaf490f40882f4d67e195', 51, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b9249e34fd65b543964cad484256984abc77b40e6cb0d373824a0009f2123b92', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"database":2,"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f011c0a9df1fd3563830ff4695645cfe012b3c53263c541190d97fa297eb6ea3', 134, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/month-year","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', 241, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0a6b06aa8eae66056920195f3c985f2c5e096f981bb4df676864be4e5a4d6f7b', 51, '{"database":3,"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', 110, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ae24c03c95053e9f9681162f1296c489078b46b9a92a98ff7bd4e35306e085c4', 137, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'), +(X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', 124, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'29b2920d20e70f98fd7d379c49822b239f8aff0166dab6adb1d6a05d7f8eb17d', 43, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bf375fc8c11d464eedda8fe92083b8978a064449a985cb6f72894ac614405512', 47, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0a64735d3624d2b5fff485449ee5b1db4544b6d387133fa11c4df5b6c26c680f', 51, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"async?":true,"cache-ttl":null}'), +(X'6119a9408c96c2a2a9a8e783ea128bf0cda82b2e1ca7be6cd7a2ccb5584c907d', 46, '{"database":3,"native":{"template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]"},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', 100, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":2,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"async?":true,"cache-ttl":null}'), +(X'b99a02df8791dfdb6e44141411b6ea9d5015dddbcd0ca2b69e61e64e5483f409', 99, '{"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]],null]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bdbb39fe9581771a5b73ef262fb9ea69d4d8d8985f5db46d27729817622241b0', 107, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'058436f69ac3f888813babb8e9fe105e23ead58a07ea366b98c633465407adf5', 92, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'6e0f7675f6f97bf2072528ca03c22ef7681f0dcd09ebd1c2caa503e6768e33b6', 24, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'df74b939ec243323b2c40af097a20b441e3069e318fcc473d6b7b88537783e75', 67, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",650,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",640,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'75ff26af08a15c7d04ecf3d9578031cd09175968fbb05d6cf60fee111f444eb3', 288, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd6c1a7c9de4e8ab1f59e029be24415a6a0d6c684d5f280a9f3fb4bbf3c0fd5cc', 41, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(223, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(223, 1, 'bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'edd7e6f588ff78c556c01806fb79ea506b12d64e141c61e78fd6cbb051ffeb0a', 71, SYSTEM_COMBINE_CLOB(223)), +(X'f9f7381688aea4af844024bea6f357bf127346b0ae275c9bd89f5c5d867c9da7', 624, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', 672, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"aggregation":[["count"]],"source-table":22},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'2b71ec88f46d33e8f248c84a6d20008f2aa151b41b6931a0d1b3ae9937862f85', 101, '{"database":2,"query":{"aggregation":[["count"]],"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', 784, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd00099f4797e3abcd65a77af7d33d77f9cdaffd07b07ec80ee97876c7e0f81c2', 112, '{"database":2,"query":{"aggregation":[["count"]],"breakout":[["field",354,null]],"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5d101b3748639c5dd88c53fde28e7cf0ec662d8c136f4b856c7fcd89c9924d6d', 902, '{"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'adfafabbc8c1c2e1053d81be3bdaf9b837991db2e6b20c7e71b222b96fbd10cd', 24, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'7e1d50e28205989f59133b30af65baef4cf69644e413c7c6e6bdaccb7a11df39', 56, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'46224c5b9b54875eca8277622d8c0c3da4e3ad7a7664f6cc9ed2e03284027b36', 7128, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'950e44c1ba6c7179bb97faee9403d3dacddac6b32de699cd2bd137c77d08815c', 119, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', 48, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', 2636, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(224, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(224, 1, 'e5e8-d1f2-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bac9177c3b5b97efaedf6dad42bd805ce5a7158ac08330b0dcb0f84fd5bd77a9', 3254, SYSTEM_COMBINE_CLOB(224)), +(X'4b6457038796425365a70a41fcf3986c8c1fc4814fd1680da7c7b803c0287953', 4660, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1bb875d392fed44948422736667427c41c6d7cf24799fcf61a509544a2901c96', 7265, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"async?":true,"cache-ttl":null}'), +(X'f1923139ef66319aa0e4e21b680182a78927c2ecd16655b0f8742c96a9b6b356', 813958, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(225, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(225, 1, '-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b0b5a956d4437ed3a6ace0ad29916a3062c56337418055bfe053f170e7f5cf92', 652896, SYSTEM_COMBINE_CLOB(225)), +(X'a23c82e358d3c996d49d31ebb1e001ae10094a40daf1844fc5c39032280e7e87', 1200677, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'414c9063c2ca63b5afb603772346ddd02930e797ee7da4c2d7200dc7201ad848', 1200730, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"populationEstimatesPerDay"},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'508c447ce84eb52e312a3eed3e18e93c73fcaf54dae919d60cc8784722a8ec5a', 1141184, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"async?":true,"cache-ttl":null}'), +(X'c7e6123cd2848b70420f314a8e7df33a1f8693264e86eab70aea1fa136d4ef60', 70, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: {$dateToString: { format: \"%Y-%m-%d\", date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$addFields: {date: {$dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" }}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n }, \n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName''}} \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ee9f2f5ab36b1ab46a0252b7c3dfd897508173f3c0f6bcb8ee0bca1865f54001', 340181, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: {$dateToString: { format: \"%Y-%m-%d\", date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$addFields: {date: {$dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" }}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n }, \n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName''}} \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5bfd12318055cf19da0a82afadd49b0adf79005e47ca3d26f6c2e9a0717e1312', 91, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] },\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2d53d002a394bc6922178ab1c2b2a5bd4d7b0b6f66f9c21d2867411efed84969', 88, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] },\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9f1db7a56fc97e55be5f7914ea7f075dfc0e47f1e7343239b21475920eaadfdb', 58, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8f9a4a71ca30e55f196d165fa70b9797a4ebfb1819b3d99bab07827bd7707da6', 15, '{"type":"native","native":{"template-tags":{},"query":",","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'933718e3e67d81683acde31a278ae7cfed5ee9d55d944487941e8030e9750564', 241352, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $and: [\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n ]\n }\n }, \n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b7df71cf435d3601b86345156b96efcb519823544d62666ce610c59d78a9fab2', 332940, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'20948c0d0ee978edb24ddf3c80f3910adafdb6375660eb47c710f7acae38e4b5', 227040, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $and: [\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n ]\n }\n }, \n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'56eeaddd9ba5086db2af82247b59feb488a61be285ebf4224ad420d271357cf3', 150864, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrationsPerDayByState'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4267e6444b86628c04da99b170b9105b9edbd15053808e4c38e0892311a1f214', 58784, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'97a3f4e6c47f3e963231ae1cb944f4e9c4c7ac2788ebd1d0d2e9212ec7ec78cc', 349309, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ecb99e24c2a6f25bd6c55b2a83685fa429a1af3d0fbb7e8f5cb4e6ce4b1dac50', 331016, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"async?":true,"cache-ttl":null}'), +(X'a709e3d3491f0a31f41e23a15cda62efbc413c207aa63bcfbcc612141d6881d3', 296068, '{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: ''$date''\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAtDate'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: ''$createdAtDate'',\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82"},{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e78f416e3867cbf1363abab8b4fa677704d0df8059fc15f691f08e9b39b25c55', 740, '{"type":"native","native":{"template-tags":{"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd2b80d68041313f2e6e89defa502a1aa2db0ec51d671a36b81534ad1a0607a20', 394, '{"type":"native","native":{"template-tags":{},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6bd0d88cc71d27773a80d1cc83e6e68731943b92e7d137ee4e4c9d7576502e06', 26, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":" {\n $match: {\n $and: [\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, ","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'403f99ec306d2509e0cc183a1e01e178c5b51a0c5d268da27facc72c2e762a4c', 135, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'91fad3d140caa88a8f79e97fd264a2666bd86b3d571fed53a327493209e99ee3', 53, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ae75a6a67096a47e69de5f6021102a7ecb0eaf3f24cce6e53862436e499dc3c1', 467, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c43561e7bf701bfee0c5d22dc8bbe3a930cf9016cd5c1b2574f68ccf0b4b057d', 836, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7e382eea92179c5e62e14b4d1c1b5a7ae92903352db2e7da24216a2592d50c8a', 497, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'16a946244dda1771ac5362b7f73c3865d16c8c312a4998180f5db6d88b67769c', 443, '{"type":"native","native":{"template-tags":{},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', 661260, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'670348114222f718a6a7fc1efbec8275c9126da4f0824194054b23f52f05690d', 36457, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'375691beab0d0f40e2fcee142199a148338c3654b6dc5d2179b5aa3a23aea191', 12, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'05f29d7a41ee1ddf78cbafe9d1d8f47a86049c5fd88bfeb1d6569398e6d6c73b', 420, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': ''$percentage''\n}} \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd47d866253104d5fd1a24273164bfd3d3d319bf8a4fd20d3e006f0e0ad5f97bb', 418, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': 2\n}} \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7ca6fe17002dc2b431201fbe3791633634c139c7eef61c3e3c1574c21517f63b', 7, '{"type":"native","native":{"template-tags":{},"query":"{$round: [{$multiply: [''$percentage'', 100] }, 0]}","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5e9889bf88119dbf6b92966de7718b37afbf7e9ff2b53c4022e090e361ad773f', 511, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"populationEstimatesPerDay"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'75bb9544889c17865c44b92ce50bda1643a90df2c6ed2d9e1cf162399d4659e6', 506, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd88a4b3f371d47b4c44db478779d37fd5187683c752883cd7b903313842a9167', 482, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}'), +(X'e21d31d866861f122f86902aa5e3101ce5d9af6078c2d66d79fa43531519ec9e', 895, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'062e17c3a01a5c76eb654d9f9ad3636f5b0cee3f47b6e2bb88cd618894f6643a', 828, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'844648d2e75bba28794fa6bb13618d842408258b0b8876455ef117ba241320ac', 900, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'7201efc3e28b71c0e5ea6a869da603fca97e47585e1e9453d2a48958d807a1ca', 882, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fd9afcf308a8f67e647e038328ad08ea241b1c0fbbe93c4110fa2570af4bff5f', 1217, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'd147f7343999d99b3148b10d7d7d6489154ca0315c120f4f8b16b126ea236bb6', 1280, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'5a18d1938591fa249d78177022a404c51059cd374f62f46e1ff1f2ea2ceffe74', 1380, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5178ea7376cdf971e9b7114f356ccc9ffbb1ad0a1d2b1c4919ad4b0b4d60cfef', 626, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'69e74560b25a0406ab7cb40fce0cb95dd7a022c489aff1aff952e54fd9a83871', 913, '{"type":"native","native":{"template-tags":{},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}}\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'56ca1b5251b5ff7dfdfb2bf68fa3abdd3402a3358164815379fd00cb6d82e020', 714, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'face3825450560c33ab88b86e1c8c580e97b065512e8523d28ca8b94f89c1ffe', 443, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"async?":true,"cache-ttl":null}'), +(X'd4c4a6bc8597da75228c7aa475a2144a27f6323510071bc8d12f31322e914724', 495, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2214bea26db26486f8f4acc38ef2469a9beb236dc7087fa15d9ff390fa861e82', 1184, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'71c0b106eb58a3e35ad6cf4732258fd136b3c443b9b0948cba763b857abf4e4c', 22, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3,"parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'873e1145488d56df9105371c1ac8504fe1eecfecf32bc6ab05f2323192745bca', 10, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","parameters":[{"type":"category","value":["thisyear"],"target":["variable",["template-tag","filterDate"]],"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd05ca19f6c4e2cf191acb35943919caa510d556de6c29b0a4c11919a32c51260', 490, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":["thisyear"],"target":["dimension",["template-tag","filterDate"]],"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a28ccacdcb70651a0097c178d6d2e1626e0bd95b52e5d83fbd9ff6f0a2811aac', 503, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'24b79b800880fb8235de74845350918ff94699db63555a06b8ffa680920ce5a0', 482, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/month-year","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(226, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEve', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(226, 1, 'nt"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(227, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(227, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(228, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(228, 1, 'ag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(229, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(229, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', 2265, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",538,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",354,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'a197ca935c75bd52a644b6529c0f18cdd380e648cf9f3480ba4398a276027a8e', 1791, SYSTEM_COMBINE_CLOB(226)), +(X'd2c662db25639cd341c04bf0520463ba79345ec80723d9a62ed010ad16828a09', 632, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'f290968b0655a6852e4b6b249c8045123982caea85dadd73266d51d87bf09c6a', 914, SYSTEM_COMBINE_CLOB(227)), +(X'e349b69c5b6b497eb24720017fa3cbeac1b8f26c822585e4ebe8df5b87269c6c', 1083, SYSTEM_COMBINE_CLOB(228)), +(X'410f7fc32dbdddd01f32d42c6961b7b43a3685d2eed61499665c0d63641b9f54', 781, SYSTEM_COMBINE_CLOB(229)), +(X'f04bca8adae714c9e9e6084e7ba9b0294a10c4a55225747d8760f366bd48e257', 1990, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ea781114ef92b7f725436fcc8be4a0c93b7b138f1a562061c4ccd737ef32fdaf', 1873, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'e390919d16fc73d15eec9c2232c142bd36f01961f2e8cc3365b02e26e13a0084', 2854, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'578b760f7fe8f1966bc3c43a4ba59b2457777f7337f963f8b1331a21c4fae60e', 1824, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5084ffb598cfa5baf6a799808d75101f11b5df6b62f6ff2816d7fc98b054ea30', 2888, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'c6b8f10b6128255c0ee364d1a2eb6c04d16b3b524b91acb8fdfc730edb3070a9', 5225, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2e143b01cc768d49c18fe18e363badef3d45e2e729b5a54f53c81b302221c239', 5144, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', 2499, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', 3153, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', 2561, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', 2596, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', 3281, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', 5420, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', 5423, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'97fda941ea4685ab61a9edcd9d73b2cce0907c933b03d188d762ce8b39af5cba', 482, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fab1147fb3c8ece94b9a5218cfb18c275e4ed3bbd240651462b676d64bba6e73', 616, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'c36a6469726a2881b0f82b26a8d621b6e7139c6364b4e894eb5c476c13904d9c', 667, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["field",677,null]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'a7296ef6b82ee5f23451a0d82791d7b12a82e0ea5489c4805d4b468363632eb2', 599, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6cd4a344bb80d682f2913caa10ac9a4b6e828510f9547fbc86cd9322fa35181a', 679, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0fc8730a675db40d36b4f680f4691f478bb30dfcc86090e0d8bfb1ec7572733d', 1130, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'), +(X'0dd24f4ac98901744aab9a4aa0a8a0650a83906f87df2eabf171407d49dd1fba', 1201, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"73166d4e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(230, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(230, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', 1890, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",695,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', 3630, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",677,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', 3621, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",677,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', 5283, SYSTEM_COMBINE_CLOB(230)), +(X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', 5307, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(231, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(231, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(232, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(232, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', 3711, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/relative","value":"thisyear","target":["dimension",["field",677,null]],"id":"a904ebd4"}],"async?":true,"cache-ttl":null}'), +(X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', 5339, SYSTEM_COMBINE_CLOB(231)), +(X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', 5340, SYSTEM_COMBINE_CLOB(232)), +(X'409b6d2b6267a9fe44252e3a407243c19605b9a297e597845fc63c6b0f425daf', 517, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-30,"day"]],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'389162e6fdce814f4e768356a400750eb121c18956bce65a12160c3bfa989ead', 230, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"],["time-interval",["field",677,null],-30,"day"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'324b3811d75cde4798f822eb223a51d46544690b2fbcffc22fbe4726be155eb7', 721, '{"type":"query","query":{"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"],["time-interval",["field",677,null],-30,"day"]],"source-table":70,"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'994f225fe83b0e494861f1d0f87bd28632716a1c1a79fe6e572fbfa94896bcdf', 573, '{"type":"query","query":{"filter":["=",["field",666,null],"Birth"],"source-table":70,"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'efe4bc37686033a4df972a22f20d9cd0cccf3cc4b982aedf5d6c5cf280e9f106', 150, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"source-table":71},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bd869c6a2aa99b840b15ca1f080e38dd8ffb33c209278d3da51388721089b071', 55, '{"type":"query","query":{"source-table":71,"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9ecdbc3505fd19a3b66ea5a60eabf1863e78b78b53b1290936556e84d9b21463', 1095, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"async?":true,"cache-ttl":null}'), +(X'18f40d8159b4e5e38b0abd39bf4c58892e1c7c578c3ad9323008536d03428435', 5359, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"thisyear","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'40cd85b4f31701a3c98b4002c6867b3180127b048847cbd6572eac48d55bce9a', 5312, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"thisyear","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'6f71f28ac124c5f33cf0a98478bcf45e564ae57f069753a597cec3576f1efdfd', 5261, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"thisyear","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'4805f72331d46115a346f4dc6269aee11e0c596a9e894b46bae1e8085bd1264d', 8185, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(233, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(233, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(234, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(234, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(235, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(235, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"thisyear","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(236, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(236, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9abdc1ea45f15053b941b98440b3dbebc5628f9fdbdcfb200d05535224dbf2d2', 8184, SYSTEM_COMBINE_CLOB(233)), +(X'b60b5299bb6edc46749a3f2e55865df9f9c73cc2b49131472e09599e63de3183', 8079, SYSTEM_COMBINE_CLOB(234)), +(X'324973c3cdb2be58cbee65315189fb7f5f40805b36004b2739a174022ff50129', 8184, SYSTEM_COMBINE_CLOB(235)), +(X'0085dd9d6313d8314fc2b4d9f01adced044e4b9463bd90d2736ecf800cef682d', 1456, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1years","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'b25b2302594bfe9d8b112e2ecfbaf660f6b6e1f179b821d419cd3ca35db1cb76', 2342, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1years","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'f65931acb836606eb2a7718de09033639cd2d968ca102e291fe1567006e2d1c5', 2168, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1years","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'a63b058aa20668d4f0c6f83873f5382170aaa8e7d1b1d2a4374160762eee63c3', 2345, SYSTEM_COMBINE_CLOB(236)), +(X'90709578191039815d366bae19f31bddff8bb9ea99cef925d5d2e735dd5dfd98', 2308, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(237, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(237, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(238, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(238, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'61a1381fa9d01b2addaacbf9e86add4d52a76837079a7cbd577dbc300f9eee69', 2364, SYSTEM_COMBINE_CLOB(237)), +(X'955cef53858f24cdb3c80c145207950121c24ebcb95ab4bd221efe1f7f309d0c', 2282, SYSTEM_COMBINE_CLOB(238)), +(X'240b1ee43748d745561d7301a13a14d651b5fc566b97f4f6d14a2b927b5f7b76', 332, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",690,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'bd8da8ed2626123a11338b73dddb312ff777d5d06f194ea4317aace777544bde', 816, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'a8b4a910417477f27cc04265204fa5bc2ffd666bedf791e7b7a53ed96cfa6390', 1172, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'e0544c0269b0eb92f1173c7bb78156fd5fc82e04b0fca20b7d5b86af3c0b6efa', 853, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(239, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(239, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(240, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(240, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(241, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(241, 1, '?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(242, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(242, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(243, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(243, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(244, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(244, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(245, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(245, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cb46a8c30fddc31168e77eff4c1bb2160902b93a6b6151aace4e6907a2adc4c8', 2612, SYSTEM_COMBINE_CLOB(239)), +(X'46686939291982b5c4fefa9a2f18caa96b83ad39c7eec884249387a7fdf5ef7d', 2650, SYSTEM_COMBINE_CLOB(240)), +(X'fd9a347b0b6c873a7443b8ac9484c2557cd433eb2bc8ae501df0c749ccce20a4', 2451, SYSTEM_COMBINE_CLOB(241)), +(X'fdfe8ad82ba0af7178bb1569fd2d761f3423b5e0af36dfced2d65c498e878888', 2471, SYSTEM_COMBINE_CLOB(242)), +(X'72d5719a30c34bc64f7ea48403e8977ca74119adcecc8a87668216d3699356fd', 448, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'15d813fac7f40ca48405a0019811a4e1404de4d987dba2b625c4c6fdee48430b', 497, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",690,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",692,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",687,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'55ce7d96f5b33e0c8cee1478451a917b7a9ee0c739d559a05c2cd4c52e944e5f', 725, SYSTEM_COMBINE_CLOB(243)), +(X'5cfe234009739f054cf161e9035a02189b0921762f2e14ada6a85a9f75572077', 751, SYSTEM_COMBINE_CLOB(244)), +(X'64685a27bce081461da53b2bcde19045a2f8792b9a210e0b06b401f23843e954', 789, SYSTEM_COMBINE_CLOB(245)), +(X'cfffa6f735473e5b2a1a69d0f31120de0c69a8bd582632379661b0f6d4c17154', 791, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(246, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(246, 1, ':"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0b3417edaecf6622fd1087eafd2051f358bcfa4fd0101600d37c464a03aa8d9e', 871, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'10097d4f7b3fb913233f6ee6c2c5ac629e5d0b89fa217f1bb99f52b8301b816b', 831, SYSTEM_COMBINE_CLOB(246)), +(X'db1af4fcbb2f6e85fbb05fda3311f148b5e5458dd1e672fb024c94d9c68d12cd', 348, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["field",690,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",692,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",687,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'c9cb2a76400f7629ed7c430b59d19c82cbcd15cb4e996929d266fba9da8b3674', 711, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'45e32b06304d9c1a21742affe61b857f5fbf86577088551e1ecddd16cdac809d', 672, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(247, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(247, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(248, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(248, 1, '{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(249, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(249, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(250, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(250, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(251, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(251, 1, '"Anambra"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ee26bcfa1e67ba6f714826f88910ef388c5fbc1f1f7aa55568c25dc36f9aa7f6', 718, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa","Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'329298694b8fc91f73d7383719a55d3dd80b26c2ce08717e13159dbb2450934d', 1161, SYSTEM_COMBINE_CLOB(247)), +(X'413633e1a9637a54bff82e6911cf5779879324ae6b6afab5b326ab77c21ae9a2', 1194, SYSTEM_COMBINE_CLOB(248)), +(X'48901990fb5763c7a543e8869636203f2d4c80340800e9a327c0df3148cdec86', 1267, SYSTEM_COMBINE_CLOB(249)), +(X'5c8b0090d1d98d0630a8acb665650e9fc28c4a0837984ac2fbb472fd67dd19bb', 1239, SYSTEM_COMBINE_CLOB(250)), +(X'aefbc665baacb94810be1c1798df6bdee5252b86a8636f7e034f15d83f1219f0', 2888, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Anambra"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'eb76e6d1fe76f4d6b4d144957417fc505eeea74121e29ff686f784ddd0c861e5', 2710, SYSTEM_COMBINE_CLOB(251)), +(X'37782f518cbea5fe9b45cdaf2015e5080b56e28990bdd56d6fb1b2d553d86186', 2591, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Anambra"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'34296c0277eced3b431899c17b016f119d0a76e1e655b3b2d5c5960b726c38db', 4747, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Anambra"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'907a00b9ffd90cc5b0a2873dac4e4cb45bf4c8ee653a0f5881c8d9f95f2e8006', 4904, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Anambra"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'08f2356c1573e489948d9c1d799e3b1f487e8d17d23a82328eccecc7091cd202', 8364, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Anambra"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(252, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(252, 1, '"Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ed4a74ef92dd99e1334ce47e96919e41f434b23c04d22081e1bb0a227fe5453b', 8481, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Anambra"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'287060adbf9d58e40cae6164937073ec6e9477cdedadc747ce3de84160cd54ba', 1212, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'e0698c34d0f8caeafaf0bfc8007245793aabb041b914e5696413ffdc85ab7658', 1251, SYSTEM_COMBINE_CLOB(252)), +(X'477d835aac6f1434d8a3383c746cf9316869eb92bd032ab7ab2c77f38c9c4e78', 1207, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ae8018013a389533f6b4b06dfc78260ee2d155fccba96e95559a7e930b308f3d', 1560, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'bc9facfc77279e626d36a258121a519f74208a7722ef89d4144962a61ecdc99f', 527, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', 785, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'52be33ffed84bb96075a6a27be139145a5d7f2a06c5fbfee203dea2f66f842f7', 2658, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(253, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"targ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(253, 1, 'et":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e9aa78318991fb36efdbbbd82ae7c1beb20a62d599edf57a5d50f25ed0279e31', 2644, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'945487bb9b8136f6d80ba0aade2a9f526013121981471a3e44527f4963fbf52a', 2776, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'0be9ffc78938403e85b176b0bcfc4e59d95eb862fc517262107172cf5b6f7014', 274, SYSTEM_COMBINE_CLOB(253)), +(X'e5979327c2b6c3356c42e98ffb9865c44ecf2976eb9cd29da2ccb6782ede039a', 1899, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(254, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(254, 1, '"Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'219927674e95400ecf801b92ed2a5501a996087d27735ab998cf18e25442eb55', 1922, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'e4b61e48266d37f552b4c7a29eac08f5d6fd2d93d5520a97cb12863724cd8a51', 1910, SYSTEM_COMBINE_CLOB(254)), +(X'6e1b913308c9db893acda0c9deffa5f6d5511d655e66e2dac7f6dde12c6937ca', 3016, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'216b28df6ce785480a8e076a6806ce9e03c8a3fb88d734e25989e81b98fad83d', 2777, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'3fa949ec153f0dba5d939e12faa54a5dfc7998ce866e68695446c4d7fe41a04c', 3882, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f95a973195dadc58876cec126312aeda332f5f613438144301123e72d449e24a', 4155, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'8f62243336be07e17a12efadb45d666c719750e5a99c1c454618a52664fc5cd1', 1526, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'e9131ccc80e934a2a3d69d69fc3be8f8c56e61cb3206e2babcabc77880b15e5d', 4440, '{"database":3,"query":{"source-table":70,"order-by":[["asc",["field",669,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9111da91b0ebbe7064d9b9dfc0b0c782f6c4dea98c4f33966da454bf4ea5964d', 681, '{"database":3,"query":{"source-table":70,"order-by":[["desc",["field",669,null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'216cdb219e3341daafb7cba5674a4d0a08f89940b7fd9ea4d5cd480e4fa1756a', 434, '{"database":3,"query":{"source-table":72},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(255, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(255, 1, 'null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8dccacdeb63362e80778dfe5272526080a96d9334329b88105795b053d3f1070', 2665, '{"type":"query","query":{"source-table":70,"aggregation":[["distinct",["field",682,null]]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'77c929fb19132523d5c31b778a2059f2febb7c3b4b6d502f080748d8a3f8ef4e', 1109, SYSTEM_COMBINE_CLOB(255)), +(X'375152b6454cb750cb07412e413fea182a4dacffff70934d5b341e748606b98c', 1004, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'cdfb6203b02176075bbbd9c057f5e738450db90c2b65916152af10b8b6eef8c1', 1318, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(256, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":nul', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(256, 1, 'l}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', 2663, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1years","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', 2802, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1years","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', 3871, SYSTEM_COMBINE_CLOB(256)), +(X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', 3813, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', 3929, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', 5088, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', 5121, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1years","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'23dadd7124e6d9740b1ec21c0921a13f480ff625d2f8ac9883032605c145b8f5', 3830, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'17ab0203adc94d8bb3aabd38013334be3a49699c8118582a76e2083df3f1907d', 2257, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(257, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(257, 1, 'ag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(258, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(258, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(259, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(259, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1be9ec06935aef0e95f3f3691a42e92f3aa52287c7658ccdea0b0e2aabff0c3a', 75, SYSTEM_COMBINE_CLOB(257)), +(X'8ad6b766635b4d61eec42dd7c41432e5e5917cdc92b310b3b569ccf2def33b2a', 1746, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",690,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'fb809b1c7e161d6712a41494a728a29b7affc9d932515ef74833e95faa6a8a83', 1963, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'87bbd861e26fac44627af695cd9891e6e402b5d3ebc7e681272b001a489ad6a7', 2059, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'92dff361aa238a72db71f87b88f8f0ded8c3ca89e10bcf8e41783cee38e67c29', 1912, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'57bac4466e80408bac8a6cb84dce63d47c93b27ce4656826d1c2d83081daf126', 2630, SYSTEM_COMBINE_CLOB(258)), +(X'c49eb00f7b3e5a6de46ef46d127ec2d0fc04fc1ed4d80bcd7afcd54b1a2a701c', 2458, SYSTEM_COMBINE_CLOB(259)); +INSERT INTO SYSTEM_LOB_STREAM VALUES(260, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(260, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1a9d98e656ed3c51eef5f10a2e0af287422e1e14147d3f20f70b37fae4c3e29d', 2690, SYSTEM_COMBINE_CLOB(260)), +(X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', 3027, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",690,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",692,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', 3954, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', 4098, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', 4252, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(261, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(261, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(262, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(262, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(263, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(263, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', 6496, SYSTEM_COMBINE_CLOB(261)), +(X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', 6527, SYSTEM_COMBINE_CLOB(262)), +(X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', 6723, SYSTEM_COMBINE_CLOB(263)), +(X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', 4000, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'9cd010d7cb6c316525e4c53329699bb2497eae81592c50ca063396df76a0fccf', 425, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'015cd3d01d8a31e4620f7e001da65a6dd6f2226bfc040350020a4076a9dafac5', 7378, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"minute"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8b55dd6dc0fc33658ea2cae1ab333878164ae5679ebc845e1fd3692772c21a6a', 617, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(264, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":nu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(264, 1, 'll}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(265, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":nu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(265, 1, 'll}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6163f77be825f0aca809960253306e6552201de332e4cc030657901a692f60d4', 628, SYSTEM_COMBINE_CLOB(264)), +(X'04a4d235fefb78b41b64255042442d555311f2a5e8dd7b2e72b603b98922c7cf', 1489, SYSTEM_COMBINE_CLOB(265)), +(X'c47d48214e050edc4d15964706ea29fb167e33225cd47104d1faa82e420faa5b', 2239, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'7454ac8a9c902697eeb9e57eea84bdf0ed40e8e809d02433ba0d9c47be3a3c3e', 583, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ff9059537eb2d0174e3769251d93da0da8324519e2aa2c8876daac9a14c8838f', 199, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past130days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'20bb3d88c500d71321ce5c6140587e6c5df86fcafd338e5baca3d03e26663a5b', 330, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past130days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'854ffdf41b5b1aa7524ce7b41be24fe6af3bc3b0f081f5962ebbe08ba94451a7', 384, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past130days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(266, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past130days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":nu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(266, 1, 'll}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8edb8972978b27b02bff37287e7b9c33c7cd8b6d9d5c69e99e45ee129d835e99', 394, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past130days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'c5c34525424a6fdbeb5f867533d4f112de9ac3ae2a31b9bb85332bbfd3f37caf', 383, SYSTEM_COMBINE_CLOB(266)), +(X'23213429c4c11ea3b1a1dce782aabeaf3a36bb2c7b811fc2e15c247ab2167991', 699, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past130days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'17df06564dd3d7778171f72bb8ad99c2e50672f69a5e14e3c09c8cd1fcee240e', 803, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past130days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', 1267, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c02a8fa16b8f28a6e5754b3f760f1d404cc57f015f7f23913bb4a2b7c9c5d335', 352, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"}],"async?":true,"cache-ttl":null}'), +(X'b20f350e3d646db73cee46e48e0df28edcfc061cec0bec2a6e61618256061a12', 1243, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(267, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(267, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(268, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(268, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(269, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(269, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7b49665b3c0f605749a57a058dd59657fdaba16ddda5d3e0fea5c4dff9012492', 998, '{"type":"query","query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["asc",["aggregation",0,null]]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'36f10b85fbf13da5d80630450fd6443cef7927a8f6682dfc811a6da557b57504', 427, '{"type":"query","query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["asc",["aggregation",0,null]]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6906b2cf06dc587247d8b89eab3dcc8f2cb55bbda43075094e97fdad27e8c6b6', 982, '{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["desc",["aggregation",0,null]]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', 3580, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', 3757, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', 6121, SYSTEM_COMBINE_CLOB(267)), +(X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', 6141, SYSTEM_COMBINE_CLOB(268)), +(X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', 6606, SYSTEM_COMBINE_CLOB(269)), +(X'10dec3b3fdcaa59ebc57ac2413b6bec284419f53c8a59bfe7c7c729a6b49c6d1', 2997, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b13f78f3c6c95d2d969d008f5912cb909f8ac86ac87759d6fc5c6a23285b1f66', 573, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bab37f87f167a02e24f8a6a3dc8cae9c4eabdaafc8173a57960312aaaf97d483', 55, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]} + ''%''\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4ce90d949d05bab7546f4b83254796617420e0ab992f1dc8a5b8a8df91d5bc77', 34, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]} ''%''\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4542178d6aaee30d60f858e89741a583c40e93f9646ca9722bf040ccb5386e0f', 23, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]} %\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c6df9062308b052e1305336945d76157dabc7524f1c5048aaedd3514492131b4', 14, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': `{$round: [{$multiply: [''$percentage'', 100] }, 0]}` \n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1eb39a507ea7ad1ae084d4aaf19a17e362a7b5728e5666d6976406efba57bf00', 29, '{"database":3,"native":{"collection":"registrations","query":"{$round: [{$multiply: [''$percentage'', 100] }, 0]}","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'40898ab539eeb8d7539c51475194559ec423ce1128de2e2ea972203815c69090', 398, '{"type":"query","query":{"source-table":70,"filter":["=",["field",671,null],"Kwara"]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c5977b676443d268de6316f167fbf1655f3a1b6c19f41d3bff16f828f5f6eb8b', 176, '{"database":3,"query":{"source-table":70,"filter":["=",["field",671,null],"Kwara"],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dec1195a4b7aed64f67a50a14803a360d965276ea45dc8432e23b611d8ef8fad', 236, '{"database":3,"query":{"source-table":69,"filter":["=",["field",659,null],"Kwara"]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b3fda51ec43dce2cc62b1b586c0beb37140340172af65ea917241383bd02f61c', 85, '{"type":"query","query":{"source-table":69,"filter":["=",["field",659,null],"Kwara"],"aggregation":[["count"]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3fa7c770426e100595fdc339acc0cd385d7531aae0f72059107af742e5c0a2bc', 88, '{"database":3,"query":{"source-table":69,"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd52c96dae39c6dc80d20c582ca16f6b8ca2276f317cf148614e4e2225602ed5f', 477, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n \n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fd53d64c344788258484c9b24ea0718abcc526b9ed6c81537a34e558024fe2f3', 355, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7393be8a17692879afa1d12c8a1bc9b5cf7250c149c848fead5b7d2129cf74ac', 1258, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $cond: {\n if: { $lt: [''$childsAge'', 365] },\n then: <1,\n else: {\n $cond: {\n if: { $lt: [''$childsAge'', 1825] },\n then: <5,\n else: {\n $cond: {\n if: { $gte: [''$childsAge'', 1825] },\n then: 5+,\n else: 0\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e6a943dd397f5fdb0d33958f6ef6c4b1e799d0e34acb052138b579b8486c4b9c', 22, '{"type":"native","native":{"template-tags":{},"query":"0","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e110a1cab810bb674ebf97a87ecc96268b7b34521faf7f15965ab963515f4fc3', 3938, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $cond: {\n if: { $lt: [''$childsAge'', 365] },\n then: ''<1'',\n else: {\n $cond: {\n if: { $lt: [''$childsAge'', 1825] },\n then: ''<5'',\n else: {\n $cond: {\n if: { $gte: [''$childsAge'', 1825] },\n then: ''5+'',\n else: ''0''\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7693e2a76bf1af65b9d45aceb93a65ceb394708d8c292c48ba080252c9bd8f8a', 9953, '{"type":"query","query":{"source-table":70,"expressions":{"RegByAge":["case",[[["<",["field",672,null],365],"<1"],[["<",["field",672,null],1825],"<5"],[[">=",["field",672,null],1825],"5+"]],null]}},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'43fbf21adfb4efdca6decbdcb250a7e12ec1db6be810e4ca8c3f38c64e78ff82', 4941, '{"type":"query","query":{"source-table":70,"expressions":{"RegByAge":["case",[[["<",["field",672,null],365],"<1"],[["<",["field",672,null],1825],"<5"],[[">=",["field",672,null],1825],"5+"]],null]},"aggregation":[["count"]],"breakout":[["expression","RegByAge",null]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7203c31401a0297ecca9290b712f144ebe61a5ff6281a068cf5d82c6663f6b7a', 295, '{"database":3,"query":{"source-table":70,"expressions":{"RegByAge":["case",[[["<",["field",672,null],365],"<1"],[["<",["field",672,null],1825],"<5"],[[">=",["field",672,null],1825],"5+"]],null]},"aggregation":[["count"]],"breakout":[["expression","RegByAge",null]],"order-by":[["asc",["expression","RegByAge",null]]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e0d0c18d0ee91d1c56f876beca1253dde5ab2ea982181d1c832567d627bf6f78', 292, '{"type":"query","query":{"source-table":70,"expressions":{"RegByAge":["case",[[["<",["field",672,null],365],"<1"],[["<",["field",672,null],1825],"<5"],[[">=",["field",672,null],1825],"5+"]],null]},"aggregation":[["count"]],"breakout":[["expression","RegByAge",null]],"order-by":[["desc",["expression","RegByAge",null]]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'90649d94ad65dff58354f34a6138c5c50e2b84555c899b0132abd8a226b226ef', 5984, '{"database":3,"query":{"source-table":70,"expressions":{"RegByAge":["case",[[["<",["field",672,null],1825],"<1"],[["<",["field",672,null],365],"<5"],[[">=",["field",672,null],1825],"5+"]],null]},"aggregation":[["count"]],"breakout":[["expression","RegByAge",null]],"order-by":[["desc",["expression","RegByAge",null]]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cba62465aca408e0ce8d4be207dac9bce8b1de5094417c9afa843dc5b6b02557', 1104, '{"type":"query","query":{"source-table":70,"expressions":{"RegByAge":["case",[[[">",["field",672,null],0],"Total"],[["<",["field",672,null],1825],"<1"],[["<",["field",672,null],365],"<5"],[[">=",["field",672,null],1825],"5+"]],null]},"aggregation":[["count"]],"breakout":[["expression","RegByAge",null]],"order-by":[["desc",["expression","RegByAge",null]]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd4b8a821d580a6e72389b32751467bc1fc9f24ee20f689318c5e160b5f5c3d83', 260, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', 3224, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'7182c4047d01b979439aa897137c0b2b07be3336ce6a1b30458b091fdf61c8ba', 317, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(270, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(270, 1, '}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1db75e50d35774f826cee87d1aeec7843c86774f610f698d42cca0a161da2d9f', 355, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"}],"async?":true,"cache-ttl":null}'), +(X'6c75d41979376886e7c6f8dd3614cf9c6b252085bb8db77e57986e316965f002', 650, SYSTEM_COMBINE_CLOB(270)), +(X'8719635bddb3bf0b6451902a0553369aba2cdd75fb1028c4ac3b50cbc8697542', 891, '{"type":"native","native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'75e256fc500c9433d8f39bbdccd6a657e20f84ebabb052d7c857075f14fcd2f1', 3630, '{"type":"native","native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0abbdb29215482cee97f239e05c764708a28b350f115a20907e35a9ff7a7a1d3', 219, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(271, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(271, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(272, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(272, 1, 'erOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(273, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(273, 1, '/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(274, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(274, 1, '=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(275, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''10-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(275, 1, '/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(276, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(276, 1, '/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(277, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(277, 1, ' case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(278, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(278, 1, ' case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": -1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(279, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(279, 1, ' case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(280, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Mo', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(280, 1, 'dern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(281, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"M', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(281, 1, 'odern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(282, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": -1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(282, 1, 'Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(283, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addField', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(283, 1, 's: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(284, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$coun', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(284, 1, 't\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(285, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"M', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(285, 1, 'odern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c80d36101179dfbe91d5ef960efe54a8857077fca1c1523c5b68ded5ae5aa94b', 2572, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70,"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8c0ca856d9f90e1a7e42a3766f196358e63deaca42e410a7631bf0fd7ced4b1e', 741, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"async?":true,"cache-ttl":null}'), +(X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', 4620, SYSTEM_COMBINE_CLOB(271)), +(X'4d521f7538ca91557a0fb8d9a69ecb1d7f165387543b4897bfe2318bcce3c7f1', 4023, SYSTEM_COMBINE_CLOB(272)), +(X'8861f2928673f4cbf4b89d0002682126bf618e97e0cb764ace6c42f9ad60a047', 474, SYSTEM_COMBINE_CLOB(273)), +(X'1abd7b6bc07a4806a990f136ed8680947feaaf419a88c7f99e1cc58c4eac7fcc', 284, SYSTEM_COMBINE_CLOB(274)), +(X'6e4ef387e071b7994cfa14c5195d3bbe9206e4407e3c84c567b2f047262dd0eb', 345, SYSTEM_COMBINE_CLOB(275)), +(X'd902408e6d8b6451f28ee5a109ca8dde6186d3c2b68d389639f2fc82ded3d27f', 367, SYSTEM_COMBINE_CLOB(276)), +(X'9454a3c00bd4fe60417ad4c1a19390ae661a67aa3736522fd433334dc94e863e', 484, SYSTEM_COMBINE_CLOB(277)), +(X'764edf097bad29d4fcdb44b10e3ebd0a5f22c6af5a097895e5a60e7ae3666ab3', 549, SYSTEM_COMBINE_CLOB(278)), +(X'c11918e81e84e93274356a9f28643dd8338f7b44873d6866ca93b29c0dc264a3', 476, SYSTEM_COMBINE_CLOB(279)), +(X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', 276, SYSTEM_COMBINE_CLOB(280)), +(X'289ec1dc5e84eb85e978f7195996260456daf82a00e060d97248746d106a7dd0', 267, SYSTEM_COMBINE_CLOB(281)), +(X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', 229, SYSTEM_COMBINE_CLOB(282)), +(X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', 3804, SYSTEM_COMBINE_CLOB(283)), +(X'273dab855268f8e13cf516ad9103568922e366f0c31869effeb0b92cffe513c3', 3094, SYSTEM_COMBINE_CLOB(284)), +(X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', 1297, SYSTEM_COMBINE_CLOB(285)), +(X'e03a561d96a2c0fa6c4b212e1622dec08632e6cd17df5a1820ea62bd7e426342', 3808, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"757a20cf-8f70-6857-0ed5-acb310688b3a"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(286, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {$match: {\n \"literacy\": {$ne: null}\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(286, 1, '/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(287, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {$match: {\n \"literacy\": {$ne: null}\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {$match: {\n \"literacy\": {$ne: null}\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(287, 1, '],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', 2320, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'bbaf3333f14ddee561326dc2391f2849278a173f82b590dfae34cc2aff43b331', 229, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5b382317a1535fe463209b3f2855282d371916f0e33d59fce31636987d20043e', 323, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c23c2fce7656a14c412a592bb8ef0246af83540216ba0e99824b8310eda6434f', 1260, SYSTEM_COMBINE_CLOB(286)), +(X'f164f24711f52cb0562f7cec63791c8242da90c78465fbe315687428d8cbe864', 324, SYSTEM_COMBINE_CLOB(287)), +(X'6624eb80569e9732dbdc2d033ca81fa483927e4f8947cefd0979a4e4f73720b7', 3708, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1a22223da4d3723d56ff5f510beace9b13b154ff3daebae2404e7cfab76e90c2', 300, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(288, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }},\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {$match: {\n \"literacy\": {$ne: null}\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-us', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(288, 1, 'erland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'028e3b13ee7034174dfed5501d64527d5da30de58f1108247d3256230847f1f6', 386, SYSTEM_COMBINE_CLOB(288)), +(X'acc3fc733101b6f6eb78bd23ccf078b8f1f8b1284ffb3d36f2d96dc2766669ac', 1067, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(289, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n ,fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(289, 1, 'true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(290, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(290, 1, 'true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(291, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(291, 1, 'ag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(292, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"tar', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(292, 1, 'get":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(293, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"w', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(293, 1, 'idget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(294, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","di', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(294, 1, 'mension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(295, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","di', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(295, 1, 'mension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(296, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-y', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(296, 1, 'ear","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(297, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(297, 1, '-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(298, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterD', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(298, 1, 'ate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(299, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","co', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(299, 1, 'llection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(300, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allIn', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(300, 1, 'fo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3b8932a7e377950fbed82db4496bd3c22b44c6d3aa55b0e9e1ae22a2f264578c', 395, SYSTEM_COMBINE_CLOB(289)), +(X'54d824a83dafb7751039119ba6cd32b235bbe4d535c5ab582fbde3e2f665f68f', 344, SYSTEM_COMBINE_CLOB(290)), +(X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', 2755, SYSTEM_COMBINE_CLOB(291)), +(X'3636b229dc657a9570cb2532b562454ccdc150998d0b29e243d5b0680576aaec', 736, SYSTEM_COMBINE_CLOB(292)), +(X'a3cb18069bb4e79425ec17cea17dfa0e029b0113a9c3e3a0f6d9dd542c742a48', 249, '{"database":3,"query":{"source-table":70,"filter":["and",["=",["field",669,null],"ILLITERATE","LITERATE"],["=",["field",667,null],"ILLITERATE","LITERATE"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4d667d0bc380100d953d1c3e544b78f458e883779e6176c46a7547ed9ad76b3c', 146, '{"type":"query","query":{"source-table":70,"filter":["and",["=",["field",669,null],"ILLITERATE","LITERATE"],["=",["field",667,null],"ILLITERATE","LITERATE"]],"aggregation":[["count"]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5cff5288adf0820153eb82329772aeb4bf00369d44c0bfeecd4ee1c94bd73639', 222, '{"database":3,"query":{"source-table":70,"filter":["=",["field",669,null],"ILLITERATE","LITERATE"],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a564c6cd8bb6ce6af682565aabfd980b46b6c831135e99503417e553b2470c9e', 129, '{"database":3,"query":{"source-table":70,"filter":["=",["field",669,null],"ILLITERATE","LITERATE"]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b47bef2a3d34377b6c7d74168ed96c7ac9847b57b8fc8b4a05c65809699ad7ac', 186, '{"database":3,"query":{"source-table":70,"filter":["=",["field",669,null],"ILLITERATE"]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'643b4017a50fae53e49e7c39b8e7f0982aa67bdbe09371a153a0dbdb1028139c', 145, '{"type":"query","query":{"source-table":70,"filter":["=",["field",669,null],"LITERATE"]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4ff42af6a57f414f36643daa405d1277b7f4123b1a6bc6ca9f86f25d6ba35887', 170, '{"database":3,"query":{"source-table":70,"filter":["=",["field",667,null],"LITERATE"]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'af7f8576a1e8c0c4bff6a43b77e5833db8abba3be6dc16574152204041ad8494', 129, '{"type":"query","query":{"source-table":70,"filter":["=",["field",667,null],"ILLITERATE"]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a507d6770f98fa2b0788e5847d0b630039ef69b414f6b30ec59790bc30d3cfa4', 1003, SYSTEM_COMBINE_CLOB(293)), +(X'7b3372ae7b2e4eb9883e1f866f6a6ecc1da65f5cd86316cd81b7754bf2fed015', 224, SYSTEM_COMBINE_CLOB(294)), +(X'84644db8c1ecab8f71ded22a36a8eb9b07eb34892fca2cb58c70ab098241df00', 207, SYSTEM_COMBINE_CLOB(295)), +(X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', 1163, SYSTEM_COMBINE_CLOB(296)), +(X'436f73708869ba3f5ec1e0a9d85fedb92c03bccd818ad2cf6e31b985b6b014a2', 2375, SYSTEM_COMBINE_CLOB(297)), +(X'26f15b0c0dd570be3daf79658f1b4c436924c6fb7334178c5ad4fa07e5df8277', 2439, SYSTEM_COMBINE_CLOB(298)), +(X'5298db39e52692b5564e1ddd0a4956a796ae299755c95922156264c46f294712', 262, SYSTEM_COMBINE_CLOB(299)), +(X'500d5000cca215622a573ffff9f41f32dd86db4a41fdd91f55b6e1b2daf339c9', 174, SYSTEM_COMBINE_CLOB(300)), +(X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', 1304, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(301, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":nul', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(301, 1, 'l}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', 516, SYSTEM_COMBINE_CLOB(301)), +(X'fe9b611222e91c0ad89f11936022323028cd68e0708cd51ab8db7f34f967dfdd', 467, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'53bbe7dcecc5ac968a003d0d662c0a94a9e3614205f03471be6fae80d5b4273d', 518, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'c70945606e7d8f1384344cfd34e39a6484edc625b2c2f28336134e140939f493', 704, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'264373257055d61325042782082f2842ffb65dadfef51b52767a877f375609c7', 662, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'94a9df876f95db512f9fb3675b95d5d2fe6d2c30049fa9fd30804d3fb73db961', 631, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'b56a9bd37b1a80e722506ad1bad21df477481557562b70d66c646c026166ec7a', 870, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b2361cfc8128d9cd687b5eca611fd86540e3fafe5fcd2766c7ef43911f715976', 1225, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'e4be35391a595ec229451d97f1e2cd239f69de0b5640dcb76caa806509b6dd4b', 1518, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', 1379, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"async?":true,"cache-ttl":null}'), +(X'10b226cbfd7e723a1f400d94518fc74385e4446881fe23b93b083b523618a6db', 1623, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'b7852f13d304c345a15a033268bc05e9bdc86ac7a086e3883497e13856328148', 1411, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', 1325, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}'), +(X'8c8171596edcc6c910cb0b06c21859ad1550a3d2421a26246f366961296a21a0', 2167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'c00ae5509e99becc6d41e4c90095965162688464ebda17a820f2d37e0a3997d8', 2611, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",668,null]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cedd9b796190cedccb9fcd5c082a43c935cbe407a688d68b1d40a675405a5d96', 4131, '{"type":"query","database":3,"query":{"source-table":70,"breakout":[["field",677,{"temporal-unit":"default"}]],"aggregation":[["count"]],"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'55e8efc5881d5b75041098356695f45335c481a64785d65567781ef1322c8b00', 5063, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",678,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4b30cb07f443992feb36e60d93dc968328629189bd61d0a58305f239362e27d9', 6158, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"day-of-week"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3d1fabcc3a2642e49bf162975bc52f6690bfd559534da3068dbcf961dbacf876', 6121, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"aggregation":[["sum",["field",672,null]],["avg",["field",672,null]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5ad12d3c6f5b3a01bcdef494bf0a6b7240b44c51a1b6c5c386cb9bf451c2e831', 6349, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",671,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9ad4eb7f33a173db5878b3e5782d5f12baa4416b5979be2d709a0ff1e5401624', 6255, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",669,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6ea5334e5d1ed6305f0f7b413d96de8b941e69a8e2d7ce59f2f53fa43be3ab40', 8103, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",679,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'37b1c2f163378fe861a61bc7e1fb8cd537611183c00f2344adc3c38ac4a526c7', 6175, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",667,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3c1614ad7f59fb11b57bd3d63c9d344f89736652233e84d0e6ef0ce7c162076b', 8440, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'92a8d44b85c2c2e681574e7361841a1f223bb8668d9446a0200622011f18c818', 7769, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"day-of-month"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd456c769b4aa9011d8a081cc76ddf61af2a2da5eba5f28c4e68bcd5b45d8f783', 8131, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"aggregation":[["distinct",["field",677,{"temporal-unit":"day"}]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9aa818ed08b9ca736feb1a23498c5e9d22e3bcafb61c7a0de45522561c61ab8a', 10020, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",682,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3eb5d3c0c1bf77da3b7d81f53c92642b3691b15b056a0cf3d629b8fc862677e1', 2432, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"hour-of-day"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd988ebd842599dabbbdff261942fd958477c0ef55723fcd8cbd86e7bd6ce277d', 4006, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",681,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ccd08a2ee3d8a765e1e240c34f7ab3db01168999011b440faa65249fb57d63d2', 7111, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2c8a706e7ee7301fc9bff437c9f362e51a22ebbf811347ca3091eaa65bac7a2b', 3673, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",682,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', 18577, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",679,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0e53c9e1fe8480faf26c6d7d95e0122c483f541709f7f7a990a47bcba90b54bf', 8226, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",678,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3aceab9955f0503c6952b8f489fc85021e2b64e1da93cb0c374e3eeb5643e88f', 4672, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",666,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dfc4c8add09a4b15d1a1aafef44c1b1722b7188e1e047a6e996387f7a17a19a6', 2369, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a08ac374647d64945bb7c8d8b79f00a45692e2c49bfe2ca1b6d4edd5a12765a0', 2294, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",670,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c6f444ebe5607b72ca97176981359c1d681cbccfb4b32127edcdad230dfb3bb2', 4590, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",681,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fd0a2389a464d7d5b69700246a99290a51b09bc5f3a54cd4fe4c4cee89abfc20', 3404, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",679,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a63a5726e9cb6a5b21f4b237a8d8eed00e76d66b335a413bd81f93de45e26fd8', 4067, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"day-of-week"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ab282fc10baf8cc47eb958d190be8949a35588c45350c24b76a82c5ae689149e', 4979, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",680,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'345c24a9167280ced4013a254c846b700571b446ad58e28343e14f0ce364d7a7', 2999, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",666,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ae7578ebf5304a5d28e61a6eaaa63e162383a2246e8f43579bee847925751226', 5363, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",666,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'964075f646237b2a4937c2714a8e763fceb7afbf874b17de53e48c5ac033c477', 3307, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",668,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1c08a9001715cb54a5f32128feb33d32d41a8c8d7ff5de54bde8539c27c2b5d5', 6718, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",670,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8ca664995b329105780b6ea0b6ac9c796a94bb978785d82d056c27f23f9633b7', 3796, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"aggregation":[["distinct",["field",677,{"temporal-unit":"day"}]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c6d2a0d6a1b9f34cfa7f3b3a604110c609e19d2ff521c79d0a50f802f7019d9d', 3867, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2346a25361b88a163f99639bd729c1fb5429827a3eaada969f0d353ce5581c56', 2708, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",668,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd7495a03fe019ba69457663674a9755dcf167cb5e4534c798223913300ac258e', 3812, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",673,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'212f9d7e6aae846af0c8faa25ca0ee05fc3b29737c627847c116e90d97c9eb1d', 4184, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day-of-month"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8f28965e343d77c113ce9ba2f22ef8e8ac0dc0e99a45aa3764380732d83fbed1', 4371, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",674,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'85faea5575296e17d5da30714f175015268c8cb2f45aad240efdaab61d30e218', 2362, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",680,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3e844858ca92e5288c794a8ffb3b62782ed3befd821d9d316940f7c32247b507', 3227, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",686,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3105f6ebb0c035616117e2a1c9d6334809b33c42f3557b4be83a1b9602f3d0eb', 6182, '{"type":"query","database":3,"query":{"source-table":70,"breakout":[["field",666,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a0785f68168ca3a0f7ca8f0c0f323dadd66fd7153ecc91685c0fa1737f964e99', 5010, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["is-null",["field",677,{"temporal-unit":"day"}]]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4bb0ffa03075ebd17232de7ea2f8bbc659d9db6104db636aae966b392ca4f469', 6484, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",674,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'680c6bdc769726057395ab45de92b419fd3c61916fc17aeaf36e2f96259d7a99', 3905, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"hour-of-day"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'44f2921dea1ea7a6217c1421e4e98e4a4acc1ac0f6657b0d00bd89476eb01e09', 4859, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",686,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a5b3d95e7a7ded7fbff49922c96c46587b9fbb520fc18dc098d120990ecc3d61', 5186, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",679,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3e5d26981092edffe0976d1876357036c0ceee1fa54c5eee8fa4a17c8e5dd8d8', 21834, '{"type":"query","database":3,"query":{"source-table":70,"breakout":[["field",677,{"temporal-unit":"default"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', 4737, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",669,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'273cdb762ca7dbcd80b111285339bf8a5945d24567122d76a3f0f9352307eeea', 13643, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"aggregation":[["sum",["field",672,null]],["avg",["field",672,null]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bdfc639809d5e17029d982525e56520be6a081b76b8fec4d5a0648dc67b2d553', 5400, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",674,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', 6934, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",686,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', 5591, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",666,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bbc37d8fb196b946c618e7fcf8f9b52b6323ce1c1fe94c1b372651b14b1512e4', 3461, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",673,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', 5265, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6f607350a694f8dfad9de0ec18198ab8d89375eb57ac7d86cafc9331020b226d', 3592, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",667,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', 4531, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",682,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'00328835a9975115b9b42ab78510d33bb8ad6551da8c037391c4cfff0434847f', 4998, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",680,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', 4935, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",680,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', 5454, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",666,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b47b84bb7b7dbb1721852cdbd6306b4ce9477133b66373266ce744bb62fc1399', 3542, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",682,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', 3776, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"month-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'60cd80dfd993811e75785bca6e865f603a331675183e2344739bd076ac0bab8a', 3328, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day-of-month"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', 7042, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",668,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd4981558d67ad571c4ecced9c15ea3b9b759a8fde64c6179a6019bc919efd289', 3691, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",669,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c3fc15c9b7876ff53902af0a95fb3b73b218232fd60d0c5a3f8e7b4c98b94c8d', 4052, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",679,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b15fd376c4611a565ef8814399d2a4857c1fbe9375b9d815a16e61235bca64e1', 3285, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"day-of-month"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5023b374c0c9fd76981e58612017e1c5d54862009c81bcda31db6e421880ca01', 2999, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'63ff490b06bc3586093b13326e3aa8142366b60289cdca64fdf3ac194facacda', 4477, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",669,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9980e8e88984fe6c185b8fe86f1d7e971aadb022ac1dd9a04e31c5aa59c529db', 4195, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",667,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f8d4e21283f01aef1a7854195fc2c3dfde0d9f404f03bc8988bbc5840138ce28', 5729, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",681,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f04bcddc57dcbb249bbd9cb1a150f2482bc37099706aff6b23c146fd0782e8d8', 4615, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"quarter-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', 2789, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",667,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f3051e63ef4ba1e8b20ec0a2b5280e6b1bb89bdfd7acbe8c014eba0de00e80f9', 2065, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",669,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0d7df2380b62c1ff587dcff6c5eea5ca05cded8b21c99ced205cec927d4b6eed', 4026, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",678,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', 3447, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day-of-week"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f09a1631c6147dc2f4106813d6202e6fcd94fbecb51ca5875f45ca64d6e31a6a', 3442, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",668,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', 6346, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"quarter-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'37f4fb1444c141a27a9bd019c0e1488b199ce33b9d52e246652718149566228f', 4125, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",678,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'283c77fce65fca38495281e0a779acd9d41dfa423337e70cacb948238b8355f5', 2706, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",667,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'de0186606c908a3ecb1088258fc2c14761e5277e71ed7d2586a98d5881c7d5dc', 4024, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",681,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', 5070, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",680,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ccf03d1778b5d4ec1417e3e5e49e67ac71f3af60ea61f140ce194f8098958f18', 4031, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",680,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', 5949, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', 2906, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"hour-of-day"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'50de3c7f70e849ac47e12470755890dd1d66b557cbd76b20d7d565cd6bcd6502', 4421, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",674,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a9b33e58fb041f70e0df877723c1dcd4bd760ae6641d0dd724560eaac17f95a8', 6422, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",682,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', 8955, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",682,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3e9b6fbb2e8f8867cba27ad177639daac1902d9d454ec51e78979c8b3c46b7ba', 13471, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",670,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', 4547, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",674,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a895699d968a3899bd8abd88029e721999cc6f256ee4bea514b911bc01a41f3e', 3692, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",668,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', 4356, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"month-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'86646c342100be4d3e5a23e9fff74789196f14616d48d6ebf08731fc11cc31be', 4104, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', 6164, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",674,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'84e9dad59f3b5e10e8802d655cbe7e789de487c5521d8106a9c8cd6ddd346531', 3505, '{"type":"query","database":3,"query":{"source-table":70,"breakout":[["field",666,null]],"aggregation":[["count"]],"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'51dbaed004f09b92348e3f381067d7950def7f034d03e66705ea8aea7c34c45e', 5401, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"aggregation":[["sum",["field",684,null]],["avg",["field",684,null]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', 3773, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",669,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', 4334, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",679,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', 4491, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",667,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', 5830, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",686,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1a49cd7741b62d07dd8c80c7771da2173b090a5080c67e1160318bb2c8350cfc', 5553, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["is-null",["field",677,{"temporal-unit":"day"}]],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'da6142e4ee9d1bf0136db760a0a0d92e7ef450281e36aab6606e52d546c9b47a', 7319, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",722,{"temporal-unit":"quarter-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', 8161, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day-of-week"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fb43c163cf8941cb9ff6a62d2c1d7db47301fd7d9663be59e17119e58fcdd330', 10004, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"aggregation":[["sum",["field",684,null]],["avg",["field",684,null]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8bc868c5d121ed454dde6e763d4754de866710a9cd8f8a90755f976e32ea6545', 5257, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",666,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', 5051, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"quarter-of-year"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'946508b8daf0cc7a810f768aecc367e036faff0250165d20f703d94c408aedcc', 4361, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",670,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', 3703, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",677,{"temporal-unit":"hour-of-day"}]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4345a797141896b72ba3041b22337248b69b3ce01d0806e8956fa64583f6241d', 4599, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",686,null]],"aggregation":[["count"]],"order-by":[["desc",["aggregation",0]]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'80b81fae0a5a6135b17e390b711bdf86fbda150289ec699e4f0d5d8e4a6818d3', 3430, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"]],"breakout":[["field",671,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', 5154, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",677,{"temporal-unit":"day"}],["field",668,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(302, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filte', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(302, 1, 'rEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'890be5a8c6086f1d5b81b327299efbbef8f1283f8f8c3fb5fbe7cfefef5154c6', 4381, '{"type":"query","database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["=",["field",677,{"temporal-unit":"day"}],"2022-12-28T00:00:00Z"]],"breakout":[["field",722,{"temporal-unit":"month"}],["field",686,null]],"aggregation":[["count"]]},"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'968cf073e236a221396630059895f8382f2ec1669cabf44b1d05b02535f833ee', 679, SYSTEM_COMBINE_CLOB(302)), +(X'e7fd43846a14313063adf175753e94906da725c994f46de8222de81d1067bfda', 1701, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'43f13c0085bf85cba550609a9f06abcfe755e66e4c5ecbcb0ad79d0f7de8e5be', 4151, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2472f7165c04ee6d9361c1af7f051586ed5f35885479cf9003cc4df2b909e86f', 6807, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n \n \"<1\": {\n $cond: [ { $lt: [''$childsAge'', 365] }, \"<1\", \"\"]\n},\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2048fb724d8209c9cfae523a5676ad04d9b9b2d10e116e8bc3a1b3903b2825bc', 321, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n \n {\n $cond: [ { $lt: [''$childsAge'', 365] }, \"<1\", \"\"]\n},\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2315cfff0c78f78276a3d0dc6ab4125782fe5b532d4bff73a5355651e2163d21', 829, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: \"test\" : {\n \n {\n $cond: [ { $lt: [''$childsAge'', 365] }, \"<1\", \"\"]\n},\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ed7ea952698f3c9124fd4263e725c2770f368de64d17ee74deb7929340a9b89a', 48, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: \"test\" : {\n \n {\n $cond: [ { $lt: [''$childsAge'', 365] }, \"<1\", \"1+\"]\n},\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ce753526a44c96ddfcce88b21f4aa4bfa00c4b1ac99ff25286d1b5d24aac2234', 5225, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n \n \"test\": {\n $cond: [ { $lt: [''$childsAge'', 365] }, \"<1\", \"1+\"]\n},\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(303, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":n', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(303, 1, 'ull}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ffb8b8a281b34784d107b08738a92b18e50c0f938cd66d0a8bf5e09a2478f17d', 3542, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n , { \"$group\": {\n \"_id\": {\n \"childsAge\": \"$childsAgeInDaysAtDeclaration\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"category\": \"$_id.childsAge\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', 2896, SYSTEM_COMBINE_CLOB(303)), +(X'414228d8fa046d3655bcb8a5967f7e1d8960a5af03b7fef114da773f7d714c0a', 246, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n , { \"$group\": {\n \"_id\": {\n \"childsAge\": \"$childsAgeInDaysAtDeclaration\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": 1,\n \"category\": \"$_id.childsAge\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e081fee49b0255b67a78e13e28f52f42f5ad842886889893662084bc93a139e3', 203, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n , { \"$group\": {\n \"_id\": {\n \"childsAge\": \"$childsAgeInDaysAtDeclaration\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n\n \"category\": \"$_id.childsAge\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'45ca03798efda9b4a8d6a7538e9f7d222a87c02bab634fb0b2b5006702465fa2', 26, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n , { \"$group\": {\n \"_id\": {\n \"childsAge\": \"$childsAgeInDaysAtDeclaration\"\n },\n {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": 1,\n \"category\": \"$_id.childsAge\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dc08f39221662229022f5ea1ee79795e41b015528b89f792ac4c31845057b624', 95, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n , { \"$group\": {\n \"_id\": {\n \"childsAge\": \"$childsAgeInDaysAtDeclaration\"\n },\n \"age\" : {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": 1,\n \"category\": \"$_id.childsAge\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e6c448f5e13489fd3a4f3f87e2a689eab02e44d17ddecff19eb2b82aac5359bb', 100, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n , { \"$group\": {\n \"_id\": {\n \"childsAge\": \"$childsAgeInDaysAtDeclaration\"\n },\n $addFields: {\n lessThanOne: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n }\n },\n {\n $project: {\n _id: 0,\n lessThanOne: ''$lessThanOne''\n }\n },\n {\n $group: {\n _id: { lessThanOne: ''$lessThanOne'' },\n total: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.lessThanOne'',\n total: ''$total''\n }\n }\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'77ea494f2292c42abe2d5fc319f164f9168fd87a252c0d533cdb6e55a423bda1', 20, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n $addFields: {\n lessThanOne: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n } ]\n },\n {\n $project: {\n _id: 0,\n lessThanOne: ''$lessThanOne''\n }\n },\n {\n $group: {\n _id: { lessThanOne: ''$lessThanOne'' },\n total: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.lessThanOne'',\n total: ''$total''\n }\n }\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'645b8f6b150e5bdef55f490e328008c9736dceef8c317dc1ab6ceda5ce374040', 19, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n lessThanOne: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n } ]\n }\n },\n {\n $project: {\n _id: 0,\n lessThanOne: ''$lessThanOne''\n }\n },\n {\n $group: {\n _id: { lessThanOne: ''$lessThanOne'' },\n total: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.lessThanOne'',\n total: ''$total''\n }\n }\n \n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', 1993, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}'), +(X'03f3486b45d4fa1b217fb2464d1398e205dfa0f484b296aeb352801032bb7165', 455, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ]\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'068aa85f89159f6dcf6c8b8067e5873c3f1c25f0b6ae5a2678efbb6e794f573a', 197, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'616ad9685649ebc086d8433db029c7c7a6b05315a612d594499bc02240b594f1', 194, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n \n }\n }\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6976044a4481be4d84158e4021e7c57c386d3eac934351a4fcfd6f197f6022f3', 176, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $cond: {\n if: { $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ] },\n then: 1,\n else: {\n \n }\n }\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b30646dd2c1af8a3570ca5b73076d2913bd1cd38cecae75cff37bfb6979ea1a4', 25, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $cond: {\n if: { $lt: [''$childsAge'', 365] },\n then: 1,\n else: {\n ''''\n }\n }\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e7ece429e528729277452039741aa6b68062fc80306386c6905cf0b76bd16345', 21, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $cond: {\n { $lt: [''$childsAge'', 365] },\n 1, ''''\n \n }\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cc1c570327de49799f9f008ef2073b8ffd03678225025c10e155b2f23ffd5b0f', 174, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $cond: {\n if: { $lt: [''$childsAge'', 365] },\n then: 1,\n else: {\n \n }\n }\n \n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'47ef61e50c337895297fc19f8a66256cb18afc59e0245c6418074dc0db431456', 2251, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'649bcd48f5525c11139a7011412aa80c391439beab5b03ee1480a0b50da37a60', 75, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a8f2c9672178e8ef9f629b182647914003076ad3014bb0e337bd3d853470062d', 181, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3b2ca309b9020b2fd82c2fd1412e8f825649de9172253b61b6ffe99b913a68fe', 205, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ]\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(304, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if:', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(304, 1, ' { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(305, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(305, 1, ': { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(306, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $gte: [''$childsAge'', 1825] }\n ]\n },\n then: ''< 1''\n }\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(306, 1, ' ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(307, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $gte: [''$childsAge'', 1825] }\n ]\n },\n then: ''5+''\n }\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(307, 1, ' ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(308, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n \n { $gte: [''$childsAge'', 1825] }\n \n },\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(308, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c07c1cd910f6a70f50e084da173998dda32e15f10c2d6773f81b98a490fec223', 190, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0fbe818df324895584843994bc18b07541e1967f174a450f0176d24f853949f6', 281, SYSTEM_COMBINE_CLOB(304)), +(X'80234084dee7553c901d4b95a14e2cdd6563caabbe16edb74abc3197923a26fd', 237, SYSTEM_COMBINE_CLOB(305)), +(X'f5eda6e5d2cd6f22e6262b7b2b623cdd333968879bacfaffd6e91e411b8fab2b', 477, SYSTEM_COMBINE_CLOB(306)), +(X'c0b5b9a42ec3be2323806046c81f5f1e8f5b51d1974f48ad17d171578eea7f8c', 303, SYSTEM_COMBINE_CLOB(307)), +(X'89e1db84e14717eb184b1b26b633c74fe590aa0dea832e64b0cd6f63e1a8e1f2', 30, SYSTEM_COMBINE_CLOB(308)); +INSERT INTO SYSTEM_LOB_STREAM VALUES(309, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(309, 1, 'default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(310, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''11''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(310, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(311, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(311, 1, 'if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(312, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(312, 1, 'if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(313, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n },\n {\n $sort: {\n category: 1\n }\n },\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(313, 1, ' else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(314, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n },\n {\n $sort: {\n category: -1\n }\n },\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(314, 1, ' else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(315, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n },\n {\n $sort: {\n category: 1\n }\n },\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n },\n \n ],\n {\n $sort: {\n category: 1\n }\n },\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n i', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(315, 1, 'f: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(316, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n },\n {\n $sort: {\n category: 1\n }\n },\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n },\n {\n $sort: {\n category: 1\n }\n },\n ],\n \n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n i', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(316, 1, 'f: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(317, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(317, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(318, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(318, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(319, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(319, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n total: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(320, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(320, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n total: 1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(321, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(321, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: 1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(322, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(322, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n total: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(323, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(323, 1, ' default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(324, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< o''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default: ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(324, 1, '''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(325, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 01''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default:', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(325, 1, ' ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(326, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default: ''''', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(326, 1, '\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(327, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''<1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default: ''', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(327, 1, '''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(328, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default:', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(328, 1, ' ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(329, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default:', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(329, 1, ' ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(330, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default:', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(330, 1, ' ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(331, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups3: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: \n \n { $gte: [''$childsAge'', 1825] }\n \n ,\n then: ''5+''\n }\n ],\n default:', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(331, 1, ' ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(332, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: {\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n \n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(332, 1, ' $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(333, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n \n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$catego', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(333, 1, 'ry'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(334, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(334, 1, ': [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(335, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(335, 1, ' $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(336, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(336, 1, ' $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(337, 0, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(337, 1, ' $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(338, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","de', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(338, 1, 'fault":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f4398b0861caecf8642532736a295c25d2af31997b2d96956db53f71cee803b4', 261, SYSTEM_COMBINE_CLOB(309)), +(X'f2ccd4964a87f0cab6a7edad5422e5c1673d6689bb305d600e75405542565154', 274, SYSTEM_COMBINE_CLOB(310)), +(X'2e7bea7f9f05faac1b7a9cd02188c6794851e0fcc2e7ce482728eb7751e40223', 199, SYSTEM_COMBINE_CLOB(311)), +(X'5afbeebeb348b608b7bb855004bd412a3f931a9d96680cd5fd2af18e5d908d6d', 12, '{"type":"native","native":{"template-tags":{},"query":"-","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b974f963aca83b9748f1fc62f66807fd6f6f13769d688f41e226a92e453cfa64', 257, SYSTEM_COMBINE_CLOB(312)), +(X'e6d9804c46757bc4dff70607f31ec307efa783b5e02bf96ce14791e78d78cbd1', 249, SYSTEM_COMBINE_CLOB(313)), +(X'516b2afdc8d7be44341bcaca7bb160179a26577d2ed8e2db80e32e821540ec05', 320, SYSTEM_COMBINE_CLOB(314)), +(X'2d45d6075fc154b8ecbb6ea0bd930f0bcf1785f9917a80410bf662390d1d40be', 36, SYSTEM_COMBINE_CLOB(315)), +(X'95466524749fced004c613b8bfefc85ae6cd42fcc57abfa885ac97470932a1d6', 220, SYSTEM_COMBINE_CLOB(316)), +(X'678cb80682ee30ed4b0a67d9747fb8204c08c08f323f26c20464244a73233a35', 251, SYSTEM_COMBINE_CLOB(317)), +(X'60d7f2bf87753f9ed260fe7105cc7f370a49495f18bfc68b4ce9c7cf3b29b761', 257, SYSTEM_COMBINE_CLOB(318)), +(X'1a4287340603570a4f24127c63b1c7040c9a0e276b94d70241f54e627e62b4f3', 274, SYSTEM_COMBINE_CLOB(319)), +(X'400e3b5834d262c1784da438aff25d32db17caa38aee5887fa1baae678f84ab2', 244, SYSTEM_COMBINE_CLOB(320)), +(X'8da6e35eefc79a35f29b93b0f56e44d8a1998fa898b567c763c1bf6b36f5e9fd', 256, SYSTEM_COMBINE_CLOB(321)), +(X'807319b39193b0f1c8c76a3f6780078873309332ca6a686f003a19633e0e82f5', 263, SYSTEM_COMBINE_CLOB(322)), +(X'436dd3a8fa5c1e364cfd92af19864cb33be491f6cd506dec618cc52b668d2775', 11, '{"type":"native","native":{"template-tags":{},"query":"category","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e2c44b02715818e660c9b1cfd45d70a20861c1f5e0d49596ef0592684ce46195', 267, SYSTEM_COMBINE_CLOB(323)), +(X'0e3368ee2605dabba6566751a08551e8af769f73a6a75f807a1afe89ffb19edb', 293, SYSTEM_COMBINE_CLOB(324)), +(X'73aa707f3fa90680140d5a4a70e3a83c46098c8ee7ec43277a5bc45f425c7bb2', 262, SYSTEM_COMBINE_CLOB(325)), +(X'5dcc98156b6694b4e04496e9b703c6e7d46183517a529a7f60692f961fb5a157', 295, SYSTEM_COMBINE_CLOB(326)), +(X'3960a3da2c415faef1cae0356741ff693e51449c3729f3cf30ecd8482c0fde2b', 264, SYSTEM_COMBINE_CLOB(327)), +(X'002499548466d7363c019e7dae9d0bf78843e7318ab17d94e720fb7cb0cbefff', 291, SYSTEM_COMBINE_CLOB(328)), +(X'e22cf37f30dbf9279d8e6602cb7c73842e3f31951e0bcc3830797b9b9249e1d6', 215, SYSTEM_COMBINE_CLOB(329)), +(X'1cf56eaec6c15043347776653b510f020b79b2fedf3b842c30bbb7a104ae1f00', 285, SYSTEM_COMBINE_CLOB(330)), +(X'c99d9e191530354be9cd97a58d92953f5a0996e45fb4754552859b98c09990d5', 200, SYSTEM_COMBINE_CLOB(331)), +(X'e0d4d1692f4726e66bfed9ea9f16452a90cab0461f00acfce648f3533050be18', 85, SYSTEM_COMBINE_CLOB(332)), +(X'00033ac0fc89423fb651f7e4a8ba2cfa271ef2622942c56c8c66c46399f12d1c', 301, SYSTEM_COMBINE_CLOB(333)), +(X'2054b60a99c6b7a66fd4f167d904e836c72ed64dc0f086f4662014151f6380dc', 7, '{"type":"native","native":{"template-tags":{},"query":"default: ''''","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7b449322be336f4d62b3a670148de558c37554f3c96f6e705ab544f139576f4c', 218, SYSTEM_COMBINE_CLOB(334)), +(X'd2371c7881db8d39de6c11087eaad896a40291689a1217cbef8e7629751208fd', 262, SYSTEM_COMBINE_CLOB(335)), +(X'ab285c9301e88148e508c4ba94c568a3b562c84822fa028b25d99238feb83460', 217, SYSTEM_COMBINE_CLOB(336)), +(X'fbc9881a83501a348a1c6cd3710fa96ffaebfcbd6cd274869c846538df6a6770', 147, SYSTEM_COMBINE_CLOB(337)), +(X'443595b88fdd0953937d11c0f2e5340f58e1b2d5a9bb3abc3c7d0a20766677bf', 229, SYSTEM_COMBINE_CLOB(338)), +(X'1a336af4b4812af72aaa2217869b6d858f32c0c793f70362758c0b5d600f8ec7', 591, '{"database":3,"query":{"source-table":70,"filter":["<",["field",672,null],365]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(339, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(339, 1, ':{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(340, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(340, 1, ':{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(341, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(341, 1, ':{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(342, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(342, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bbbe97b706add588876792401cd9306df880d92d41eadeeeb0730759027af855', 79, '{"type":"query","query":{"source-table":70,"filter":["<",["field",672,null],365],"aggregation":[["count"]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5b8b946ec5bfdfd311a280e76ffe1218a0ab739e890ae32243c5995a5394e074', 85, '{"type":"query","query":{"source-table":70,"filter":["<",["field",672,null],1825],"aggregation":[["count"]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'2ca1c9f2480aab2962b16340526185b1b53ae706aba13a4db1d926953d4bb233', 89, '{"database":3,"query":{"source-table":70,"filter":[">=",["field",672,null],1825],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'374c991ab72fdfbf617ea21200eaf6653b444fdd373d71729097741a481ba0fe', 249, SYSTEM_COMBINE_CLOB(339)), +(X'8242bcd360b551e6563109b190ff5178062e36bade7786cc019cee6ff9f97ae7', 151, SYSTEM_COMBINE_CLOB(340)), +(X'63de900c0469b802601ea65ae95dab4cd2860d90cdababe43f067a2c81cc2525', 134, SYSTEM_COMBINE_CLOB(341)), +(X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', 1482, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'ee51114c61ae0039d0cd9d7d463c3ef764cade3f847d74b3b08ddbefd3b15137', 270, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'1edfe51e692cd81602a20326722b04ef9cd94215a94fe7444da250ab7044ce34', 273, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'2de49d3e28da3d295b7ecca3ba0fe2b92f8282f0d552b3fb0a39b504f115c6fc', 350, SYSTEM_COMBINE_CLOB(342)), +(X'327ba823847d681f5caf4d95e2b28badf550f137175e30f004d6950d82ded99f', 468, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'c86aef61ee425eae26ccfcaa5e60735c1cce531c888f7c35a9adc5c68d6ac3a4', 487, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'864615ea06e4a6bf2152f3071f254ff46923635cf39fb0a10068f8cec0e8d51a', 473, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'247b874d87d3b4fd94509fa1bed8bd3221ff6bb42c61e4c8c0c84a2a4e887611', 438, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'98be6186e85ff469674d75eccd5ed533d99974bb3180c5c764af374112b3b719', 851, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'41f21187161e3d374f81d914cd6b5cb7b8b409d2e59a0ff8515f5db81d8d5bf2', 866, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f9b618b1f7822c41748453be055d4242ea4fac96b1e2fbb6fdbeaac3c3b9b786', 819, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'13e083d7388166cafcdf07640b7d3f7b99253512e3abeb93f8d5143ecef73bcf', 583, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'8f1eb9a9eab6e50817c18e4d0f5f020bad20603724e50037c41ece0e959eaaab', 466, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1a73ed9da0cb27c5b4a20849069d44912e0ce3e370f8239c739a51a116cedbb0', 552, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'288d9c04b83c3503ec8df6fc8587e3cd00d8e4b19be7b47cb1c7b685c3e4fa14', 452, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'674350c63171f782f84b143b1926411cfd121b491352ba0e4c78bc57e1e4c84a', 465, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fe734e2ae9e9b7e2f51602674f68b81b47d409f1b77470591678b80f43e25e47', 502, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'856f0b1cdea96a18d4da66d1d02ccc21e70bbe9159b98813ba8c49849f8ce52e', 661, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'456eac148c86649f244559276bf75e34c5d5669e0294fdf0754a3c79ff0a921a', 463, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'eaab65cda5132f15a43efcf94462418a047ba4e5e953dd41257eff9c0d078b41', 497, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'a6a1065d9c382994eeeb5b4d821aac09e5038cfc9ef16a98d4700f00f65b0b6a', 595, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd7fe59c808fa8e5ae160dda145efd2ac68cf740e4f6d640b4f9193c9fd68cf56', 852, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'25e197708108dff59cfac1f4cc2989deb6ba57fd20d60074ecafc26c978e7894', 494, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ce56f07c259977b1886f42618de60127c9edbb5fca57b57232889c714f7ba253', 612, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'd25d7bae28404f16a09c369b5a02ff8edac4de0542e60852fb46b507b5bdbf4c', 617, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'b2be8f8e949fc7756d62a678ad65d09f120a53a27b9c501a2be387c4d7e28fd4', 787, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(343, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(343, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5c76bf45b4f49f8dd86823b4fd2c3f052002dfec025f61e1b3241816d0edc858', 905, SYSTEM_COMBINE_CLOB(343)), +(X'b9a6d1c332ffc637d5cd22cdf7e01913fd692a3481769817970c31d0730ec28b', 1006, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'87703b2158a0c8884df5ebff26752a712691d613417976624be402403ae8c1b6', 1092, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b3f8997e455eb2afbab4115a52e2e1fb7f8e14b8bc30873d4648fbdaf59de70d', 1213, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'fd2b8f52ff2d042008a42211577618108a432902c4a18eb36acea6d1d41c2c1e', 1560, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past4quarters","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'fa1c40bf0f09056112f579f0572c09098232acac431433dfa55732e431b10b64', 968, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'1feb4955f2a1d47a17537eeb433a82bfc8832665b18fb28a15f8ec24dd350284', 693, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'eb89f05ce555e743d19c50dbf5273db7222532427d919df591fb4bc27f753bab', 1132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bfbf22e37bc843b502f3f93211492f4e756a0b3a12730ef7f15823cb90aea61b', 799, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'f8315ac8314efc1f62f565a0d674c9666a5df60d1a556d57901f4879a30faccc', 857, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'4915596b080fe0d9f7ce778d6e17a127181b8507517d34eb64e869c335b90275', 1776, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(344, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(344, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'213d1d06b21b6de7d19db7ac3b7a20393652160d162ad57cce1e53a19c102161', 648, SYSTEM_COMBINE_CLOB(344)), +(X'1ff217f2b2a1b7e40d20a025d357a837d2c56c4443693f81d7c19ac79f982453', 1117, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'81eb85ad0ed3d0177c26f9cfdae384db793bc7b26ab272aa89d4a2fbfda4f451', 1584, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1quarters","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(345, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(345, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(346, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(346, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(347, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(347, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'38f391b2e5cca3af30a3fe36c27bb54e0787e3f5dadf0e0b65cfde2b4939aade', 610, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'9bd9a45be45cb1d203ed5dfb3e85b834be03085523a649e3a24816737901ed48', 646, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'01a4482b670fccddabe20be387d3949202ab90bd79206c03732d87d6171af873', 510, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'd0a67de511e74b5c20288e425518544ad331d097447c3ad4755f95e30e423e46', 692, SYSTEM_COMBINE_CLOB(345)), +(X'7281bb1f2e7b4d7457b10ad1df3148c110543a019e70e7f883bdee37df9e256e', 665, SYSTEM_COMBINE_CLOB(346)), +(X'705ed0464d5c52ed7c76f7e1640f6fc13f93e06079bdbbf9d797d203cb10da7f', 647, SYSTEM_COMBINE_CLOB(347)), +(X'd16bf17d8b7dd5756a6c777bc599603e80b76e9d1c1593e6f79f0b2d62d7dde5', 600, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(348, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(348, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past15days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(349, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(349, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past15days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b336b8257c526f4537017f3c45e74c538aac75d02136445e01be9d6d4a5e5ad0', 1184, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past15days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'd8ffbb9765b261e467522cfff08360b5152947b43cf80db19ef8a46cfa1fc448', 1207, SYSTEM_COMBINE_CLOB(348)), +(X'2c5ac01e00b6ce8a11e5eb2906a63efca8c2631fb61ae058bfb6dbd3f0694a1f', 1206, SYSTEM_COMBINE_CLOB(349)), +(X'0f6aaec28968eaffb1316967176472c0397b10bab82b232a3de6231925f80bcd', 1334, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past15days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(350, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(350, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past15days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5dd537852603dbc8fa66bfdcdf86463e495abd0a3bab606d40c7c6a1d62e6b6e', 1320, SYSTEM_COMBINE_CLOB(350)), +(X'63a76b56cfa9fe232260c52f1f7d56599e7dbaec519af6735b662cbd352b0ff0', 1677, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past15days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'c7c2d1573ec4dfe08ba4213f6b8f0a3ec1a0f30bd5012b542549a1c36ff83aa1', 1922, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past15days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'1b27e0a7e445ca647cf66c8d39dea77698de5676c49e2abf98b972ac27434efc', 507, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'c4f9aa39702320aaeb3fb5d65f47604dce2b79e4d6f5d32c756a182947824c82', 543, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'1e84a23ae9c6cf158c972c56ba0bd886d03bfd3167442b21f2afa78d0642f035', 2382, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(351, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(351, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'728f705813e38aad10892d85c0f65794931e8b21f4fa1de2a26cd103fc73ed1a', 2381, SYSTEM_COMBINE_CLOB(351)), +(X'1c76f1187e0abb35ffa45d48b5b1e56f9e2da1727003edb9f0ece51cbaf31051', 2296, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(352, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(352, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(353, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(353, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(354, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(354, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(355, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(355, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6e57b385feb9572de35d7e74aaa8aff3630592bc97c3d2042467b92894ba451a', 308, SYSTEM_COMBINE_CLOB(352)), +(X'9e75a5b67b6748783b5b688ba5cdd9e106761c1d444e668a035df3b65bcdaaeb', 2329, SYSTEM_COMBINE_CLOB(353)), +(X'25aa76fcaf173971c6613006007b91f835d3b63c9916cea488b98462fda13f55', 647, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'2a9ddb6cb6ceffb5b75de45d35b73a3e32055492f6573cad277e857be5ba2b21', 563, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'2bebd39075bfa3da16cf0babaf9013e003620ca4200474f8ab41fb7b20c10dd5', 5070, SYSTEM_COMBINE_CLOB(354)), +(X'cbda9826f7c6cc1ab038ec636b2968423661c768397e01f95bca43a85500e644', 4949, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'20ea1ab09a73590c72fc658e977ecf98d33d6adfccca61eb943f76053006a7df', 5335, SYSTEM_COMBINE_CLOB(355)), +(X'cb6a0b02f0bcd43cd2a30ead8f63b869f7a855aa69af358713023a58e2db6add', 4761, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'7f2ebce786cfd32bde4070dda39a76bad5d9511a6f7ed3a76f8d1a54d038ee26', 540, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(356, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(356, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(357, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(357, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'86f78c925616f61423d40b348498b2d364e7e7fb8f45e0efff2567d5ea491fe7', 588, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'97f4b3540f4c3e174d243b238cefdbd248db4baeac323482de3bf53a75b0d93a', 430, SYSTEM_COMBINE_CLOB(356)), +(X'aff50e5d3dff1318e5cea8e7075ea07211003f5a9e092e8c2277ce10e78ee3fb', 712, SYSTEM_COMBINE_CLOB(357)), +(X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', 734, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', 722, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', 2771, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'95ba332b87c184b5965672148c4b43d3a686723e18dc0ef35b027c10b6d7e2ab', 695, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-1,"quarter"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'3569a3dfaec82a0735a5b593da3fa947a85306f7fbdc06cc026af183837f0472', 762, '{"database":1,"query":{"source-table":2},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', 1128, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"async?":true,"cache-ttl":null}'), +(X'9c9d1d7967cb0519030f9af58ba87423fce16cdc85d766807cf446a2ae48d942', 396, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"],["expression","test",null]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]],"test":["ceil",["field",674,null]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70,"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a495d2a7b696ba85192d72a4eeda3adf580e9a54c630d0c53ddd2cab1b06a7ef', 205, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]],"test":["ceil",["field",674,null]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70,"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b8f2e3381e36b9032549b1228b1d92b2c01fe337d021e4b7d90f458e1e44ea99', 201, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]],"test":["ceil",["field",674,null]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70,"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'239b5a942a58daa0e9b02a1b1f5135f73d4a04bd0712a4cbf75a29dfe284e81c', 538, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'ef4ecafc3859302a819622a481fefc29b93606c82ebeecbc18d56e9c599f4dc0', 388, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'7986d26a25eb91196e89acb86937fdd52775c1e32a3a35c4b3725186102fea9a', 763, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2cbd1de7be35f2b050442c61137f77c83d0c3d59239b9c2f9f7880211e532eee', 314, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'759a15ce8cbfc97d0db0fb8c6b9c02a85043d458c49e843f4b327f488a173587', 375, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'88a7075da6671c7e5fc92b11a98ffab00ee06cc1d3656b7b8d0703f683054541', 497, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(358, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(358, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fafb70779ab7a6175dd13a323ba23684c75414c4d61f9a98841fe50ef5257369', 508, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'810b90d6262b5c52f19c8b7b48c01bbc64128e4d99d09451e1e37237fbe9af76', 442, SYSTEM_COMBINE_CLOB(358)), +(X'6f3f778b0c41640eeae48e4ee774c4d1377b2b0834b43df9892a64d8006764cd', 516, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'a297dcb23299ab57c1139e54b86acf793f71e36f4c9133adb86782f379f3f429', 523, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'919fad2847fafbf28f367a7802ddb95534be54c82a66c0bdb0c67b6b34a7d758', 800, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'716c88546191940158721071ffb62fc2c47682f2b927629fe13b2ddf403b8a0d', 862, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past2months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3718572b92e77ebb0fca4821d3784aefef6dd7b5d0c4ffa885341838354e64fd', 345, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'bdd79d0cfc7963681b182d4c3f5317ee9c0dffe32e081e7e4065096c7636c64f', 589, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'3a35a8b2377ed70a298aad482fe25e383ad916061655ac457fec11793d11538b', 697, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4d6a4fa43a1018192b2bb84e91b1897c2d2589955eb3b82c643b9a45db604f7d', 650, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'62462821b96fddd66cc499aaba9117a56d997848d80a2daf08cb520c3d0e54df', 2169, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'bf5c1b872026ae30ce07ef6bfbf8b34a2fa734d84cce04b3db68b9a40236828d', 2404, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', 1918, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', 2247, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', 900, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cc63790079de853a1b402097d320517f293418a4cca207e175a61ad04e5dc3a1', 4858, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"week"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e40a841c0aa8ec8d8b0f6f4e937ef9b5c74201553caba4bfd01e142e5c257a43', 4027, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"week"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'ac12765127a9c1c923d4738cec1cbec587415fd7bfe14d6a98884f9ca3ee6415', 5338, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"week"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', 1490, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e420eaa3eab9d8251db1e947c4f53d075947e44bd7c496ea371e5a973bdd1f3c', 233, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"757a20cf-8f70-6857-0ed5-acb310688b3a"}],"async?":true,"cache-ttl":null}'), +(X'4588ad8daff5b8ab24fd04c538c727079122601b64078ec8fe86fdf723ae54bc', 232, '{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native","parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"757a20cf-8f70-6857-0ed5-acb310688b3a"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', 1107, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'69622b8e334af358a735daa267c4d0268b39006e30dcbc8da3d2a11ac07cc1a7', 1223, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'5357318741cd8b2e1477c38144c2d36f714b30c2e37c989800c094df41868e9e', 603, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(359, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(359, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7a3143bc387da3a62140eb548d72ca4923d483d485c20a58964696bfc00eadc8', 2944, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'f02f82a6fcb4e976c1e7ac48f3701cbfc795af649e9af1618657dc5776b599e1', 605, SYSTEM_COMBINE_CLOB(359)), +(X'27e58af60a95a5b823841b07eeb8665e93951a43721834ba60f8b256d8d4a919', 2982, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'05c80a6f89f4ed4b20f5aac2abac5f1e2f19c5fd47f1ad88d229b1a878d9c8dd', 725, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'a62df3018bb984b291beb070846386368d90c49a712821e12dedfe6a363c5300', 1865, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'118accfbeca896dc2a0e6b5dc38360039b0274f3dcf64ffc4d0194319e716b85', 1299, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0c605acea02bf6122ddcbaf408f9fdd946ebb031c3a9b633990f0417827b5d17', 633, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', 751, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', 1189, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'1204be76258d5e823b284ac8617e30d1acbcf2a528b3008b7043c1ba5e92f33b', 278, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', 1178, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', 502, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'664ebad2cd7b333adcde64692e1aa6e0b1ed82557b21c6b7b00c7f409297aa27', 733, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'5c36f202dcc625d20c0cc3100afe7fc0b005ef4150b1271c3dba1277a88f8ac1', 552, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'a1e26a87819424c1a7558613dc5de690538920a7bfd4f4a46dc2c5e2c3c45be2', 847, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'ebc2e741678af2a6e985d30005c862dbaebbc5eddcf7b6b8195b1b265a8ce8b9', 179, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"],["time-interval",["field",677,null],"current","month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b9009ef1262e20432a634bdd7c994a7282f627ea39328a0979f57d5773a51918', 185, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{}],["time-interval",["field",677,null],"current","month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(360, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(360, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7ec9ab05ec9e1103653fe4c668c253b770a9fab636d8bdb9270944f86907a937', 202, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{}],["time-interval",["field",677,null],"current","month"]],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ea70a6a69e823455b8ee0082d6e5fec61e343db37f2eed81e3325e9bfffb5255', 879, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a966dd89dfc83796021b1233da31a6cba018ec7fb533b31a82f112f4e5700d25', 428, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{}]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', 989, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'3b64dbcf360e6c076d3907f971efe77833d6b8dd3d9978e054103cbb80701944', 548, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'2c9f7f5c76cc57b0748b16f86772c3ee6ccc29049b8961eba71e4870772a7adf', 204, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'63995715e4983d280c8489d2ad44af172a745055e05c9108bf792a2deb552343', 451, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'1a93fb215f20e0e3d4a97470d2632482cfa7cebd181e904cde19fcc68fc372d6', 336, SYSTEM_COMBINE_CLOB(360)), +(X'c10ee518185fb0f1a6919a73c24a42eadf2f6714970db2f6a65d99d26ef51349', 683, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7aa900d654787e3028af6d699d9b3e939d538f16ee1c87302ecffe3aaec016e1', 602, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'9c2139f5549f75bea2bb32aa386cf556c38676c11596f004620dd14e323f6572', 586, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'ef7f47fbf6984f723905a2fed5fafa6fa5f45772bfc1fafb0db73bcea01cb8ea', 702, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'513d03f1aeb8d6bd0ba1524be87698477fea643d28b3704aa9bba714ec8fae1f', 772, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'0b378856ad9022b18511d2727a1cceeb3aeeeef0d66c83bc818d31a73c5e4259', 1112, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(361, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(361, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ae079d74608995c6eb143cac76ce4e2c332cc0b165c027d7c2533913ad7a4871', 1133, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'3c0f5292a653994a425a88c1831d1234bf31dfe1b8365957139ecaa3188e840a', 471, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'4cf60d0f99aef34ba547d9b38093ecfc41f6d07ce1cb97a16fbcf10bd64846f7', 520, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'b35e0988c656666c4cca042a9c602354ec27d37de24b84aa04000079e455bdd3', 479, SYSTEM_COMBINE_CLOB(361)), +(X'ce747aacc8a608fb572f5d6a0169a6123e15d2450bbbb9a7dac4ad50c8c9f671', 543, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'72f2357d3a7da1330b2ab1dc0715390d072de5f70130c1aca598d8e724a2b7f4', 667, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'9244a23962c9463be750964f225ddaf6181939e4b45b4a59a46463dfb2cd3ea9', 647, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'8eeb0d1f27ba560884a27ed898e3f27b7365d478fe592abca192fff2fb0e8c28', 747, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'873998a01a7fc1245533f49f4a397f4884af373a8363570337399aca02eaa83b', 1076, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'24e92c1f89a3237bc0df2a8c03565c9a7e140be2eb68bdcfdb9618ad7a3aacce', 1087, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisweek","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(362, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(362, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3d7d9e0a349642aa182478af29383124fff12b7bb72687545edcdf71ae2a92d1', 585, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'fc2973c1df21275994cf491777eb74ed15a654bb0db4609f59a2581eb01b1c39', 316, SYSTEM_COMBINE_CLOB(362)), +(X'2ece8cd49a67bec020b98478121e9fcbb4a9c0ed450ba4b37b48356fb38f54c5', 310, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'335521098cc6e3ee281863983bed010d7cda81ba6ccd630934a8e7157c142eb7', 330, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fb837e3737fe917b8d851caad1d210a7def5cde46b0d8598d9f62c1d28ee66e7', 331, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'9673ad863679dd968ab0a7ba07a844dc5c7cc47785435c0c28b7cda98155a7be', 435, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9a642a4138cea3e39f84d1f3f14912405acb5c475c2538dc8eb68fd6a7624222', 805, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'33ddc8d692ec665d8adfc6962775462cab5eb8b6eabb443f98e1e04e73b0e331', 1075, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6a5d392e40ed4424408c78972fa8b46e9e61c1d3ca7b229c1886e66d7da913e7', 1167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"thisquarter","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'd7111a7dcb876c4472361c5732f03acc776903595e8863a8e1765992b49fb31f', 385, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'67cb0d651fd22bda7af0a906ebc94c534e3ef98beac401f0539739ba918f448a', 620, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(363, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(363, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ad9aab92294969199f4718dd8cb869acdd9128ee976b08c63ead04cc62e9ca44', 542, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'ca0c1fe18c4540ef1b78aea5239b230e49ea9e7ae6b8edf87a56420457906e5d', 530, SYSTEM_COMBINE_CLOB(363)), +(X'bfbfd4d62fbfbe3a69f2eb4f1e34f81bbbd9c30e0158f00cb907ada6ecfc1f9b', 540, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'a5c0dca47e8a5802d99626794c9ac1c8d8fbc043c995af1c10c38d6475f63ec8', 551, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'986a258d996f1105374db1881aad393efb0a06c473e9511982fcc352f5f74388', 588, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'f142d0d3875976f13d7a435793e9daea752ef1d16438b9e7eba97c22da29936c', 1118, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'77eb49a4990cb1a278ca008feffc2081a4773c7970a7a23bdaffa41c5dd15309', 1102, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'de9cbc25f9f26fa756273cc23616bab804742e9605b54a10d23f3ebf9a405702', 154, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'068a1d6b0194d252fd4d4563d8c7baf8d9b747297a7a52808b5a36963a42c4f8', 447, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b414acd18110d51fee975654ded6f94402d55c0931fbc2a6cc70d5f9fd16d3d3', 515, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'2e14e8189c7267d0f9a34d85396752ab905660f6299889d58b382e1c6daf15e9', 502, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(364, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(364, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'80293dd2c9cef1b0cf48727fd8fbed9bb3e1992ad774820285794f9a41744864', 630, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'3b66f17d0b89c3761849a6e8e1ba5d69a5f012bd2d30c73fc21253972a465aee', 657, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'e0cdd143a188429a3739b0679d1341edfd546614a07434acd5662ef568a762ff', 716, SYSTEM_COMBINE_CLOB(364)), +(X'0a5ceaad03edd78be0edda60542773b2d67e0dc68d58b2d84bad200d0922cd6d', 909, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'83ac863841fb88dfab979d4a527783c7773286f0e5de53054276ad23eea8f5bd', 1121, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past3months~","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', 1569, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",690,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",692,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'a7772d68d43526551b312e0d76b21b006e8dbbe40eefc023e90d37a22dc7acd2', 2514, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(365, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(365, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(366, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(366, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(367, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(367, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(368, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(368, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(369, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(369, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(370, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(370, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', 5164, SYSTEM_COMBINE_CLOB(365)), +(X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', 5184, SYSTEM_COMBINE_CLOB(366)), +(X'e52817af119b8c7dba9d03e36ea300da401da5141468e14628dcf4290fa532b6', 2500, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'cf024a03e6a6ceb36cd2daeab8025d62b8dcf1bc67c95f6e57ab8017020b4b61', 1552, SYSTEM_COMBINE_CLOB(367)), +(X'a02b41d4c331e560edabb41d19df7c2ad96ebff72169f12dd7aa3375bb4097f7', 1938, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'740876ad22d10782da798f18b6b8e8cd35fb8eed8fc9c0f978eb4aeb0078c047', 453, SYSTEM_COMBINE_CLOB(368)), +(X'1f9c9764efc73c1d3547fc8d24c05327a9400b9881ca256814fcb5f9592b6106', 503, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'b504fd42107860e0d6135f7f7c02e9c6207d33d9e0b93014926a1fdd818ee37e', 711, SYSTEM_COMBINE_CLOB(369)), +(X'41c617f36ecf8ab69021814d30af9dfeddfbaadec473e1dc0860b3892620aa9f', 715, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'ca0d8287d7e0f8223c6f735dc0db1033ad49a50bd74d1cec20fe652d2b89ff3b', 719, SYSTEM_COMBINE_CLOB(370)), +(X'1ce4e0a0888f7a4fa269bc3aab9727b42910ea6c3231b78a1775d66d46bb20b2', 631, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(371, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(371, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(372, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(372, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(373, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(373, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e619c2c27e276f29d3cf25f39f1bd4dc282bfdc6d625b694287f8d7e6ea321c7', 685, SYSTEM_COMBINE_CLOB(371)), +(X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', 904, SYSTEM_COMBINE_CLOB(372)), +(X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', 871, SYSTEM_COMBINE_CLOB(373)), +(X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', 472, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'd11499bc7473a73e06294b4d61414cde895256ac7de660e3a04a34a60916b89f', 1378, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/relative","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"57523c92-bc05-e144-f15d-a07fc78322c2"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(374, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(374, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(375, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(375, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(376, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(376, 1, '":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(377, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","de', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(377, 1, 'fault":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(378, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","de', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(378, 1, 'fault":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(379, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","de', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(379, 1, 'fault":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(380, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","de', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(380, 1, 'fault":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(381, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","de', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(381, 1, 'fault":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(382, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(382, 1, '":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', 922, SYSTEM_COMBINE_CLOB(374)), +(X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', 2046, SYSTEM_COMBINE_CLOB(375)), +(X'6123a845ffa204a43a0d1945547006ab4ea992a40e82e07531046487d4cc684e', 482, SYSTEM_COMBINE_CLOB(376)), +(X'abf7b8819443aa018ff274c784c7a9c2a42f0cea390c2b3387296f64fa838127', 346, SYSTEM_COMBINE_CLOB(377)), +(X'5083d907044b0313a3e608b35dbf230db1ab66292e059c77885fbf8859ab6d84', 744, SYSTEM_COMBINE_CLOB(378)), +(X'0d7450d4902238146adf9ad8c2cbc7f802c40d05a7e7ae2d6dcbc9c263907d08', 365, SYSTEM_COMBINE_CLOB(379)), +(X'e23aa1cd93f3ff76baded8f342ba4a11b01c548433f7a0adc10a8d68946bc93e', 273, SYSTEM_COMBINE_CLOB(380)), +(X'7516ff2c3d0ed693d1210c6e43dba24880b0b0a56b1c91ace1bcb53a646d023f', 276, SYSTEM_COMBINE_CLOB(381)), +(X'1808f16a048aa28fa80a938ecce164477d31226a4832eaacd6653e6238ededcd', 225, SYSTEM_COMBINE_CLOB(382)), +(X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', 287, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4f3fd7db21e9842c18168227e47167b2cb31a066f41904aab5319f85567c812b', 62, '{"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]],null]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e8d3b4253577eb56670ea0eae4b321256ab3667336b92539eb19f773ece260d7', 71, '{"type":"query","query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]],null]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'dccc2087799e27d085a126ab798570f352bc0c627ed10b2e6afc99a95d95eb54', 172, '{"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a28f107148e7fe23e8cba7e05361071a0a24777da7ff822f82bcc7dc316b4a32', 231, '{"type":"query","query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]],null]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","Reason",null]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e6e23d4d22071cec716809ac35d65b28448e58c3305e045bd3b55b11f3676183', 83, '{"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]],null]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","Reason",null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', 400, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(383, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'':', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(383, 1, ' \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(384, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allI', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(384, 1, 'nfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(385, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(385, 1, ':"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(386, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(386, 1, ':"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(387, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registr', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(387, 1, 'ations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(388, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registr', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(388, 1, 'ations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(389, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Kor', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(389, 1, 'anic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(390, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(390, 1, ' then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(391, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(391, 1, ' },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(392, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(392, 1, ' },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(393, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(393, 1, 'erOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9602cbcedc08ecfe2ea5017901fea2c27b306bd7dafc231c3bfbd38108054704', 98, '{"type":"query","query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]],null]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason",null]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', 1058, SYSTEM_COMBINE_CLOB(383)), +(X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', 264, SYSTEM_COMBINE_CLOB(384)), +(X'04a005f0953fca3788a4d14eab849901e26d1174e40d6e230ea38a9fdbcf1ec9', 556, SYSTEM_COMBINE_CLOB(385)), +(X'f47998caac9c377348cdc9ab785899b5079cb1a482f778cdbb0ab73dc43662ea', 227, SYSTEM_COMBINE_CLOB(386)), +(X'fc578462a130775eef99ed92fff943989f33b1238c8c6050fa13f4256b0205cd', 215, SYSTEM_COMBINE_CLOB(387)), +(X'bfd57ee2ac53e6b5897988702cdee7058b28f1969ff5164f8dd281c17375ce25', 182, SYSTEM_COMBINE_CLOB(388)), +(X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', 908, SYSTEM_COMBINE_CLOB(389)), +(X'060f5673961331a4f9057d0a34f520e9e0904205161a927fe5bff7858a8a345d', 256, SYSTEM_COMBINE_CLOB(390)), +(X'f70e2c6046d0eea46a278618d07c81bd41161dd5c74f3ecbe7e779ddbc6b082e', 278, SYSTEM_COMBINE_CLOB(391)), +(X'9aca95da23f5b1ccc35146095e4ad1386787e966ec5edb219e6dcd55dbacd607', 189, SYSTEM_COMBINE_CLOB(392)), +(X'6e5006a7bbd254e5f6a4bd806659fd26a3be8d869a1b22b7c5276551ec20e0ed', 224, SYSTEM_COMBINE_CLOB(393)), +(X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', 1409, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'42e8dcdc5cd5cba93215f221e34266285fbb9be363d64bb1c910afdfe97bd025', 95, '{"database":3,"query":{"source-table":70,"filter":["!=",["field",680,null],"female","male"],"aggregation":[["count"]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'cab2c4c017dd1bbe2707a29cf0d38271c2e6a3dec6de8312eed216f92c2cd516', 169, '{"type":"query","query":{"source-table":70,"filter":["!=",["field",680,null],"female","male"]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', 447, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'964d1695134327b42ecbda8f18b6b8cfb2b168913e631db590433db8e5278b41', 652, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', 566, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', 654, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'364b80be10cc703c9d6fad31d8ca7cb5ccce0ed0112c2a1c30d45e69431f3c62', 133, '{"type":"query","query":{"source-table":70,"filter":["!=",["field",682,null],"CERTIFIED","REGISTERED"]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a5b2858dd192a2e4a9a9e3cc9c77c1dabacea43255af52d07bbaddd1e139de73', 358, '{"type":"query","query":{"source-table":70,"aggregation":[["count"]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'56514df4b33cb080b2e376749dea6c0258707228fb01950fd02d2b534938671d', 313, '{"type":"query","query":{"source-table":70,"filter":["=",["field",682,null],"REGISTERED","CERTIFIED"],"aggregation":[["count"]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a339901d4ab590b9e2a9a87ad2b7561820e1d591a26813e729a28570782ee81a', 736, '{"database":3,"query":{"source-table":70,"filter":["=",["field",682,null],"REGISTERED","CERTIFIED"]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'884e735362b14dbac8c0ccf0e8b6419d923fa2574de380db6066a18bed0aebf2', 202, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70,"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1690e2581fac88d13d64c0f5a9857b11c9cd20169ae31bb9bc917a6f4365cdbc', 160, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["time-interval",["field",677,null],-12,"month"],"source-table":70,"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd7f9b60d5dca5f3a71f11b28ce73e631dd290d47d7e734341dfa79ef19e35255', 190, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["time-interval",["field",677,null],-12,"month"],["=",["field",666,null],"Birth"]],"source-table":70,"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'e2c3410fbe5d6a663b29649a34c160c1d5b9020cfe70b02584ea5bf31b566a5a', 95, '{"type":"query","query":{"source-table":70,"filter":["=",["field",682,null],"REGISTERED"],"aggregation":[["count"]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'452014fa26779da501a722dd24466d45870f7c644e24234e6f4a471b4d2f4bff', 122, '{"database":3,"query":{"source-table":70,"filter":["=",["field",682,null],"CERTIFIED"],"aggregation":[["count"]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ecf1b0ee4d6b104b8104009f3d7ac3962a24a2e38cd3dcf67ea0c98866f987e0', 210, '{"type":"query","query":{"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["time-interval",["field",677,null],-12,"month"],["=",["field",666,null],"Birth"]],"source-table":70,"breakout":[["expression","Status",null]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1c331551c60b1dda99c3dc4fedc443589d3390a722b6e37f5d2d239d18edc415', 181, '{"type":"query","query":{"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["time-interval",["field",677,null],-12,"month"],["=",["field",666,null],"Birth"]],"source-table":70,"breakout":[["field",682,null]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'311710c3b6147aa5b8e931660fc81b75fabe2d4ea06e5e84d1a69820ed384373', 205, '{"database":3,"query":{"aggregation":[["count"]],"expressions":{"Statuses":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]],null]},"filter":["and",["time-interval",["field",677,null],-12,"month"],["=",["field",666,null],"Birth"]],"source-table":70,"breakout":[["field",682,null]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ef2e247d1039a3a8525809a5e2a98e58127bc1d5eb4c5f19ba5fc15258dca036', 180, '{"type":"query","query":{"aggregation":[["count"]],"expressions":{"Statuses":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]],null]},"filter":["=",["field",666,null],"Birth"],"source-table":70,"breakout":[["field",682,null]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f54b3504ab1d64adf362cb746982e866b01d17951a0ab0c4c889bf2ba9f03825', 143, '{"type":"query","query":{"aggregation":[["count"]],"expressions":{"Statuses":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]],null]},"filter":["=",["field",666,null],"Birth"],"source-table":70,"breakout":[["expression","Statuses",null]],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a80581c131096443f1d01ab1c2e5d9735d8868ac60c94181831b0c648d568554', 240, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'd74dd84e743f58175cda69a85938768f7cae13cf8b95b2941f968fc8bba12e0c', 165, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', 1029, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(394, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(394, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'00c737465c583f8bf132beaac705198cdd5159d832263cbf3211da9fe7a1b514', 687, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"}],"async?":true,"cache-ttl":null}'), +(X'82ff277ac815815e72a7a2b8a1639b29669fc19394232c4ff7b7f4059556e9d7', 320, SYSTEM_COMBINE_CLOB(394)), +(X'70a5e7f53e52b6cad466f93afbd68cd262b10d9f683dff4436dbb66350f64436', 385, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'77025f283671b1bd61b53448ee02b3580ce90aebbf12b84572ac97b9751518b3', 483, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'832c507dcfcba300e3a2485f82ac9eadd299d422c429d7f060bf84c779c02f21', 560, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'f048611570e8b4c3b2a04dc84b8df03bcede8198432c741e745d4ff97355c5b1', 809, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'd5268d649f0c9ff3d72d3d7dd70967c0fec6efb88e4894680b212a9971612a21', 774, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'43c656debd9ac421c60a9df8a8d5a129aa2db1aa5ffbefb34315e11940d3337b', 467, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'0aa405d8f9872a40215c8dc0ecefcb9f074811092464caa8ea16f8c127c9dfae', 1152, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(395, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(395, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd67be39fe12f68c829a9ba48eb3af95d98548e60624d207b69846e58dde67112', 1190, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'2747c21d39211fd2980a6357a4a69220502c545dcb35021fbf8943003d8c04ee', 333, SYSTEM_COMBINE_CLOB(395)), +(X'74835a86123cf042dc6925bea6a612cb61d3e9198abb74bb60bdec034c97422a', 401, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'47e48fb6bb420dff7eaf6d6bf899522d3b9676b756e1a70a25f7ddbb3f6aafea', 459, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'e4306a7381969cdd6d6bc66c6ee72f24675e809d61b13c926820394e2ffde49e', 471, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'40884d0e2f4e29e76f7eb4074b5907fa9eef02404afb45d67beeff24f26f22eb', 817, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'd07003714a61f9ac6e17ae7ee039e0c5f411d2706db9d971de72427dab800397', 855, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'169e5f39ac4042fe41e6fc72395360180dcd8042d472161a022faf9ce7824af5', 873, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e4e3996225aa05dfd1c26abe9984a75048ab746dd346920f22851fddf46eed1e', 911, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'cb1a88bfde01d45a7a55c3f2a5a7302f69e91267ec373f19976c31d008cc94ad', 1012, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"2023-01-01","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'18f1a14b4c00b8e3761af4a0b30f4af303291bdc317e8f70b6a46bc57de3d83a', 111, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'51f3529be12a190a381e9e6ca3786c1582f3373415a9516e8536b138e8a7ada3', 411, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(396, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(396, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fd90fd5684ee74d977946e9e70e44f42bebb8747ba0ac39628372adb3b8d6326', 389, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",695,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",690,null]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["field",687,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'22fa1c9e32625fb50070cd9bdffc663890ebfe96441fba63e95b50598995a154', 464, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'ab6d256a87150c42fd5d7d24b773b357c7d38be3c42010b5eeb4f64a80aae187', 479, SYSTEM_COMBINE_CLOB(396)), +(X'2278b3e4dc1faf041f3846b1a9fdba809415982f999996cbd625233eeb9e8d86', 494, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'8a44c7e62405b08e63ff4298ca439574d0d7f0853eb10ec4027b9a8866fb9cd2', 502, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ce7ff37a108742d605a06afac78f67fdd9e52582f85d62b7a0221588ea2e4b85', 627, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'2f4ea155ab90d1557feae2dfde61965cd0c0ced4030539a2e6515d5c0439f78b', 607, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3ac7c0e7acb5911fa16e9c6b53156d52d554b43b08732c4ec0505b2e322621a9', 874, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'678a638a9d3a9f2aeefc80c8035b64dea744ba141a9bc3a6ff4407242a842f3c', 912, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(397, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(397, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9a18d1196caad8bb2a6d420d7a86e6382ffe4e87b23e1fe39ad89e7260fe2371', 311, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'2f8954dd99f08e20d46cf29c83db8a19c6b60f52a849a4971a7f9770a6dbd55c', 350, SYSTEM_COMBINE_CLOB(397)), +(X'4b71b5234c2ed42e3b80ab38ab3967abe002dc4bc616c8284f90a1a0e200ffee', 476, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'458d258e3c956bdd21a2cef3ed8ab3f4bbbd5f8b455cdc8babd67b6ca4415f0a', 562, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'35865dafcbbaedc116f851a364d3e7be9af25d50dc274f1161850402c06bd54f', 1170, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'8b88bf3bee024809d89f90e4df0569526c91fb117ff0d5a8c9aada05d30d5b97', 516, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'0b1cf8da0cb5f0c08e7fbaf38c7f1c13a6be3495c3f4c30867e18da5d8f1d95d', 1120, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a728d5ea68e3e9246dac1a1aee744f4f3eecbd60c51e805062d97234f8c8e9a2', 413, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",695,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",690,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'b240cf2e050682d4350a2a09cab156e907206b31a0d4121df2f2362e49dca16e', 461, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8b37d2f6106859d0dd719f938618adf3a43925fc586b0f9d8332f5e7efe9386d', 597, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'baeed90d2e4d5d180cb0afb21def10a4e6ea80919ff16173929aa6356a932ea8', 232, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",695,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'88b32903b8b3395563a7cefac413de3df5096d355af265c19a67c6820af19580', 527, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', 705, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', 590, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'2fbbf8acea56f112818d5b70fefd035ae7238065ee9f193acb19f87e27867994', 236, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(398, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(398, 1, 'erOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7c0b92c307d2007f36ca4eafc3feb559c2f32a9e177a0202bd4bf8c529322e24', 215, SYSTEM_COMBINE_CLOB(398)), +(X'12ff662a111fc272729f30501f5622f27e0130b08aadacf9b7ccda32a518d9ec', 514, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'2b9dc3373b82e5a8a2dd184c48f252c64f1c8992c685ae6aeb8e642fe11400ef', 211, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', 745, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'23452513407ad0145b61985091197e576f43c220489a9bfdf47da29c47f70130', 220, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'2c33fca2c25032b218f6193909339cef0e3f1f4999e216ec85124a5ec45f3e68', 179, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(399, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(399, 1, '":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', 303, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'feb3e8cf78c0b6e103b1f877fcc4e9007ce0b24adee1d16e706fb87e54c30028', 321, SYSTEM_COMBINE_CLOB(399)), +(X'848a9f48ac50de3013082e6d9a13700ea1f53bc719c442850da3db0bb6e91566', 495, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterGender":{"id":"1f4d53e9-a503-9479-e544-b24c0400516a","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"2fe8f81d-0cff-30d5-d16e-dc549403c989","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterOffice":{"id":"88bcc18c-2313-4016-0c6e-296a2b90995a","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","parameters":[{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9c54f94d942f30732b56b14153cfa0fb6d7853eb9454cc7205565edbedd6caa2', 515, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterGender":{"id":"1f4d53e9-a503-9479-e544-b24c0400516a","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"2fe8f81d-0cff-30d5-d16e-dc549403c989","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterOffice":{"id":"88bcc18c-2313-4016-0c6e-296a2b90995a","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(400, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(400, 1, 'true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(401, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(401, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(402, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(402, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(403, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(403, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'26046bfd60a8f178d5db9b55e29b36d69976674aedbb1dd1074c1b11b0d399cb', 106, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],-12,"month"]],"source-table":71},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', 589, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",693,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",695,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'f4c37d9fe7bba7ce3408795f51585d1e2499e212268fdb4dcf191210aa8bafd0', 343, SYSTEM_COMBINE_CLOB(400)), +(X'7e2bb040b9e9f89d9439294df265ed570b808bfd9e68256c5411bcf41e8c4281', 288, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'28b0564aa5c39550ea4a56296ccbbb3d7803293ec692ab0206379a63e1197d48', 357, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'2d1060f133e4ccc5e019f4e22dee6f4d8e8ee3b39553cba7438920386e02eeba', 418, SYSTEM_COMBINE_CLOB(401)), +(X'269f1a4d2b2c9980ff5d80b535f9826531d3610e26bf2e54cc51469b5659353b', 416, SYSTEM_COMBINE_CLOB(402)), +(X'256b83eedb6c1e6872d7c855bc684234f0a8a5bd70a24f0766d19cae73f4d7a5', 459, SYSTEM_COMBINE_CLOB(403)), +(X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', 567, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(404, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(404, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(405, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(405, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(406, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(406, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'60c84b43b4a0596544a61f4ab034c239b2842fcfcb45623705794316ca839fee', 442, SYSTEM_COMBINE_CLOB(404)), +(X'01639419021f8951ce7bee5de08dd3f126204bc3ba7ebfa1680faeb0f143e646', 330, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', 636, SYSTEM_COMBINE_CLOB(405)), +(X'74b775cc839e15bbcec30bb42db132b4079a235221753ff632023857c78f021d', 356, SYSTEM_COMBINE_CLOB(406)), +(X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', 595, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(407, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(407, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(408, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(408, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(409, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(409, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'dbac558e98f16563df2203bb64a8080dafe99457991e339062cddbed845849c5', 385, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'03ba393747437c2396b5541ae710e38c281e7cb7887db020c3fd14525d29cc64', 451, SYSTEM_COMBINE_CLOB(407)), +(X'f6e820a8babd10e0e65afc083effc53477774ad0130e1ab15242f609537a603f', 445, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'390fe2702e9726166bbcc43403c534bdedca616ef64af668586f0f8af9853fc4', 529, SYSTEM_COMBINE_CLOB(408)), +(X'335299dcda788aceeec24c4dc08e1657d005ff88e928cc2b7a17e8cdc02bfe7a', 523, SYSTEM_COMBINE_CLOB(409)), +(X'4022fe91c64cd8d1e584303934807e483142b46a0cf3290cfab6ae32ccc2b7bd', 550, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(410, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"past30day', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(410, 1, 's","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(411, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(411, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(412, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(412, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(413, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":tr', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(413, 1, 'ue,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(414, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(414, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'483a9670922ec80c17a7d2d36a8bc1d99cdb34aba91296bc0837926e6eac8dab', 203, SYSTEM_COMBINE_CLOB(410)), +(X'e7d8b1fd6d156487df8608f437f9fe5a3adc944f2a6c065d6094129c9d0608b4', 350, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'e9b90f84cab34de2a53704f121a9aea52cbcefbbddda84b742af5fca242c7af7', 314, SYSTEM_COMBINE_CLOB(411)), +(X'2d8cb04d4f4cf1cb29138b9881da6f44a6eb4472dc7931fe10b6916fcae78f8f', 362, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'f898abb57c853de502942071990a33c681811376ec3ea0befc7ee91e36d3a76c', 277, SYSTEM_COMBINE_CLOB(412)), +(X'52a766f3266042bc3009d9e37e6cba01e48c9070aed8623007e2a167d63f456c', 427, SYSTEM_COMBINE_CLOB(413)), +(X'1b635040c74253a09de9a1174a3f04865cc2f3655fdbaa4e751e189ec6ad5477', 417, SYSTEM_COMBINE_CLOB(414)), +(X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', 525, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'514866e3685cbda5bdc22e89bc14f719c6611cf4f00f08c751f94c9f3880c3ec', 422, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'043205889f2bbeeba4a34feb1d9341a819fe702a68b1c07436d1c130f5861b51', 397, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'328d48e93f13e13c453feb759b37af1e5f089e6ecf39e839f68f26ae9f173a88', 441, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'fb860ac1534c7627ecded8a6a4686908eaf52dc93f9e0d276f019c535207e76e', 689, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(415, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(415, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6c5f3da092202476aeab18f2e584030f30502184f79bba96f4f74809f714a24f', 606, SYSTEM_COMBINE_CLOB(415)), +(X'f56a37a0fd27d2b8d04615460ee5c50ff42489456be44ad79ca734a26d2d77dc', 680, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'7b60855f0b6b07a8d21645ae41ef9454eec13c231885c62caeee6f3eb16b8df1', 684, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7f185c673999c2b72bc0f16addd1b7994376f575ae0f9f91fd7222ed5b94ec8e', 896, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'62e4c3f4c670ccb96724288bbc97f68ca15aac651dde5cdb3c4814011d27c50c', 1046, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["female"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(416, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(416, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b687228d1041fc2c09cb13e0a8565a6d56e90c27ed97dd2c1992e5b97461dd48', 343, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'c8052c956c744ea4cbbe2630bf3e0fab071761d02d9d76b361e33b8f952ace1d', 492, SYSTEM_COMBINE_CLOB(416)), +(X'3854ec1be21323b95c044984a3c4227e7e7f99a37484d6aee1d87f19cfc05f77', 240, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'e8ee8b741d82484e0e6ac747701104285d78c853894c4273b6f650760ccccf40', 423, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3fc9d48108fba226f4cca1647598c2e94b37ce77309b0866a06bb3553093e747', 476, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'72253ebab7b825c94ad8e49b63a17f1707ec83eddf4fc0eb1f8822b45463bdff', 532, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c9891f7dc0185c70148046634df5c59bdabefb5172188fed21a7269b12ab7027', 598, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'ecd8c8bfda93199708648206754ee2fc53a65d416842202c8dc5ab4265bbe921', 1002, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'098829e035f65555c60e7d92dd610f4314e726047198f943a9fd68ae346c35de', 997, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"6ffeab10"}],"async?":true,"cache-ttl":null}'), +(X'c536e8beb65628321ba586761750717b9861f3ba6c23c3cb6217da410ccc23ee', 648, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'f407bf6645522b7deacb6bb7d6ac1a2ab49be16243949966f8ae9d7c19898230', 1167, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(417, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(417, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'85d34e9d3a72e3be03a0956aaa9d8ed517bbc09e4fe617cad5a14265838156af', 1102, SYSTEM_COMBINE_CLOB(417)), +(X'9b596034670887eef0a3738410e0d7d2c31828681c45555457aa68876da25921', 1441, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'386e8471f800395b551738562f4d35d573655001777e907bb595ec34175a6f0a', 1359, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'13ff448233958896a72ed33aa5682ef52111a726daf14c2c74b1bffc5685cb2b', 1420, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'267f2508095ee9c803c85f026ff7dbd7cdd105920479c41c265550ab20db7a82', 1363, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'aa3b4bebbb2aa1ea575861881ab9574fe3c9fff2f9f055f28854a8c78386d775', 1533, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(418, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(418, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd0e7054a8607be1e962cdf95262f845479188fcaa0c2a38f2b4b11bc9c0d4dd9', 1453, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'd8b82c75987e52d097fae90031ee184092a45206ef942fba4a84622e1b788177', 324, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'd22183b4fc1e13f650ea997cddfdcb47af996fcb01750d3f02cbbec353b62e91', 699, SYSTEM_COMBINE_CLOB(418)), +(X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', 476, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0163101f1f4be6cbd207c4defde7874bda330a6ede8b08b4464c3fa5200ca264', 742, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2"}],"async?":true,"cache-ttl":null}'), +(X'110e0c9ae03a115a9e8da1aa7aa40f45b5bbc834df784f186767ddda16f08754', 421, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'ea5c4611b80f33fa70740af95ad555e98aaaa1f0d6f4865cb6148959b381466e', 427, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', 487, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(419, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(419, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', 610, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'd5eab01f60e5e69440c429570df8e48c570a6f2554b3a25675e9bd4a5b3b89ef', 435, SYSTEM_COMBINE_CLOB(419)), +(X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', 599, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', 616, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', 1097, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(420, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(420, 1, ' then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/all-options","value":"past7days","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(421, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(421, 1, ' then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/all-options","value":"past7weeks","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', 1089, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', 2694, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'04d30eac8f5cac4cd099ac9ee35c0965ba2774cd9095741dfcc16adaa6b57ecf', 702, SYSTEM_COMBINE_CLOB(420)), +(X'956b1eba05ca3a1a84d08a3a483d2f06bb8343336798a1dbe5b46fbaac1ef2df', 780, SYSTEM_COMBINE_CLOB(421)); +INSERT INTO SYSTEM_LOB_STREAM VALUES(422, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n ,', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(422, 1, ' ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(423, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(423, 1, ' then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'243860d64894381b7deed0bdd7ae3f541e28b83f9b93e2ba1246b590f5b42e5a', 212, SYSTEM_COMBINE_CLOB(422)), +(X'87f2c0512194c2216040ae75b2ad37907b0fa81cf1ab678ed48b52faeee3675d', 1632, SYSTEM_COMBINE_CLOB(423)), +(X'58421101d0c3dd4ee618047d5daa47b987f1598b14979afd7f0abd64d29d1ef3', 2499, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Federal Capital Territory "],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"async?":true,"cache-ttl":null}'), +(X'aa0029cadb728feedac9a2594aadc7bc04e1165b95577304972ba43b9a3aeb24', 1117, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(424, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(424, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(425, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(425, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(426, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(426, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7a83274de46af03e459c1d38585b2684912c42e61187ad5c3516b70d8a70a60b', 2219, '{"type":"query","query":{"source-table":70,"aggregation":[["distinct",["field",671,null]]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'7c09df1c0971df362de3163193a5d818da4f7a4aa6842cfa60d51caea216a4d3', 475, '{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"filter":["=",["field",671,null],"Federal Capital Territory "]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', 4015, '{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'27e9a2080c19421103c83a2e80f32b9cccd8816cd1b89c62768768bd52e81075', 332, '{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"filter":["=",["field",671,null],"Cross River"]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c7406322e940c8cfb20bb3b07c064fccf58e2c73dc9a75793d6f7aed5601b394', 4669, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'0c327a43e3f90159f15a2086e172782206afb02818d8e9e67448df8932ada35a', 2343, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'2bc9720f7675c9dabcdb74141eab5a4eed982ae8af8c6348e39821f186421979', 5080, SYSTEM_COMBINE_CLOB(424)), +(X'59d592bec34507f26613b806a8125573533cc8cf9dacc673c17f80157a0d5a34', 3442, SYSTEM_COMBINE_CLOB(425)), +(X'a7a2a5ac99b95cb80464941ea920a03eac951703ec123aa127a65684f80ac0f3', 3487, SYSTEM_COMBINE_CLOB(426)), +(X'dd9208917f6683975d197cfb0ec034818da6c5ee0ede575f13b62c3ce8fdd8d3', 5057, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past3months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(427, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(427, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(428, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(428, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'be2aee154477c2b5e41a641dc8cd20ab69b2f3386e1bc60c7b754d5732474bba', 483, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'c2453b5af4408337e8275e557ccb24eabd962f10a0ad81d34065146c51ebc466', 494, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'd21b61fdcc530f6f96ab3f4c9f8c13f5352998cc7ac763160c0958e446c412fa', 667, SYSTEM_COMBINE_CLOB(427)), +(X'59c898ac28800678800298d02d572ae95c5c996110b433ed4c8d3be053a9f223', 665, SYSTEM_COMBINE_CLOB(428)), +(X'49e6764580635bd4ecc46783358324b60e0dc8b12d26b5e29847f37f852f267c', 682, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(429, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(429, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past1months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'29add2f06f88815885de6272b3c07eb547ae4ed919e0eb051a87de425784ee46', 733, SYSTEM_COMBINE_CLOB(429)), +(X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', 585, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', 727, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', 980, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(430, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(430, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', 1025, SYSTEM_COMBINE_CLOB(430)), +(X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', 1053, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', 965, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', 1160, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', 1680, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'), +(X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', 1609, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', 6550, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', 599, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'552a32ced815eb993c6e7b203d96574fc9aaa20d255752dc609b1581d03b1cfc', 179, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'8a75122198754c3404f999324e02554b01b683cb85485493944cbde6bcc2944f', 182, '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]],null]},"filter":["=",["field",666,null],"Birth"],"source-table":70,"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'15452fe94ccf2d22c45f7aadcff2aa53ac21c347cbc00c522296961637653804', 250, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]],null]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(431, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"asy', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(431, 1, 'nc?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(432, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(432, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(433, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(433, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(434, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(434, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(435, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(435, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(436, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(436, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e860aeeb789f8c284ef2962300fbba395f7d988ba125dca5c72989ce18c8026d', 221, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'a73f69ab04df9c39ecda65d7afcc407c7dd14cdabacd24e698b57a97794961ff', 367, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Aba North"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'147325a37611152e67264b9fcf8c1d99eb4a399e065bdf9ed2181ef88763d846', 387, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Aba North"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'b8ac21177587ac831cea34a55b49690a5f7384c7327659332592afd4db3a182c', 687, SYSTEM_COMBINE_CLOB(431)), +(X'4e1eea187733a05d4521d8d8355466038f6f335cf2ff089692865c4ec6be1c8e', 686, SYSTEM_COMBINE_CLOB(432)), +(X'5cdd3a486dadaaf9e3f9d3660ee2f31f2871821c2748fff0c0943c362e3f8edf', 724, SYSTEM_COMBINE_CLOB(433)), +(X'd9b7e93c516102fc4bcc0ca28b23d4c27c034512a65948739c9677504104e5ea', 736, SYSTEM_COMBINE_CLOB(434)), +(X'f037080c652bddc661bcd6bd612375e27d2b8b2c71d8efcd036003b74031d11f', 630, SYSTEM_COMBINE_CLOB(435)), +(X'517dafa068cdd0a5de1a544d6b3ceaeb339190c13d287d8c292e9f7c31382dce', 660, SYSTEM_COMBINE_CLOB(436)), +(X'84164770002715810e34025f1bd8157a85cbc34fe95bfbdca3d92bd5679596fb', 658, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Aba North"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(437, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(437, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(438, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"st', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(438, 1, 'ring/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(439, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(439, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Umu Nneochi"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(440, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(440, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Umu Nneochi"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(441, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(441, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Umu Nneochi"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bea2518f2a6d48b41e5752ef346d6e902df9b0c6645ba0b355aad0d1b99258d7', 672, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Aba North"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'6719f6fcd3633f82bdd9f3ba07415abcd064b043a3e26f7e42c7752b1e1acac5', 788, SYSTEM_COMBINE_CLOB(437)), +(X'72d0e73f734b32ef2add786f66747b246d03e6c8e19d4d1f1c62ebe5a70b1ff0', 782, SYSTEM_COMBINE_CLOB(438)), +(X'15f187022fd8c18a74123f0b30dbc66b82f2de82288b2a1a12a38cd60a0f873c', 330, SYSTEM_COMBINE_CLOB(439)), +(X'8394212b5132b7044d2b80ae097d8619b7b912ab92d402654358de4d75773d74', 781, SYSTEM_COMBINE_CLOB(440)), +(X'8bfd4edb19d5a4dd403d739fc81ee9acc15a68a7eb87da812e76e31199d6be25', 837, SYSTEM_COMBINE_CLOB(441)), +(X'88121428ba5429531acd453d6a78d86685c643d233b3004692876af883b96f9f', 841, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Umu Nneochi"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'b766952300449d91695271e0a913cc59f5e7cc6256752a13703f291841afceac', 915, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Umu Nneochi"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(442, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"st', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(442, 1, 'ring/=","value":["Umu Nneochi"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(443, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(443, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(444, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(444, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(445, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(445, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(446, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(446, 1, 'rue,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4855c61acebf8a4ef9ccc37159de667f208738163de92505f6e058caa7b17ff6', 760, SYSTEM_COMBINE_CLOB(442)), +(X'b68f3ed7a902afb6eab2e12d714cbfdda77003b3f9633c436454b6dbe4bb5c58', 522, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'861f7c6b74dae2a32fc241f1fbe9724071225c1869c48f4a1fd92116017fc160', 674, SYSTEM_COMBINE_CLOB(443)), +(X'6f9eb1ae3d02a036de163138f26bd7d4383b52526e59f8b05077f0c9dd8483ec', 569, SYSTEM_COMBINE_CLOB(444)), +(X'1d4ccd7406a4d4bd304ea1143dd42c271f525ea43ecc3ade3d2cfac60ffceaa9', 758, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'3f20f2b951f7c51ac0296e78fa059a19ec85741a0e8da0398cc6dec22819e2d0', 858, SYSTEM_COMBINE_CLOB(445)), +(X'9de57056fa774d86279a02291e04bc60bba57c69612962fb7db8cb0aa4068622', 819, SYSTEM_COMBINE_CLOB(446)), +(X'3dea2956120012beeef18a35f9d4950369944438bbc0345ddc964012bc456e2c', 1731, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["Aba North"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'bd65461b22cfe783e454e09c27d10824fdf90f436efbb6cf5f5188c45a9375e8', 1762, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["Aba North"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(447, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(447, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(448, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(448, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'80cfea932304716c3172315eab49fcee050e4db59bca88d1927a808e09f58f2e', 2178, SYSTEM_COMBINE_CLOB(447)), +(X'0dfca024aa7890ad179566e1c65b0bd19d8d7ee09f2e808fd9ed4727342d7948', 1950, SYSTEM_COMBINE_CLOB(448)), +(X'26dd6182ea715619d27af9316c27f9077b73b6fa6e968419df5929132fceb06b', 2204, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(449, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(449, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba North"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(450, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(450, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba South"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(451, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(451, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba South"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(452, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(452, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba South"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'87bfa302bab493722f158c51ebc934e352101fa0bffcc215a71e140c96c41bc2', 2217, SYSTEM_COMBINE_CLOB(449)), +(X'2616476fc61ca3c339ca1241b815e211b185486798ab90ddae11e968f56ea0db', 126, '{"type":"query","query":{"source-table":70,"filter":["=",["field",670,null],"Aba North"]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'eb289930cf8265d21b2a9496850569ff88dd0769315af1411d4f8663cef69927', 862, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["Aba South"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'f926461802edc6fc7e99de80b4b5040374d9d4e6bb12832e4a474b99f00f526d', 971, SYSTEM_COMBINE_CLOB(450)), +(X'38cac17648fd7eb0a701db5028d7add13fdba07beddf4933929b9249314633d7', 951, SYSTEM_COMBINE_CLOB(451)), +(X'ecfbc82647158b612d64982c5a3b6e92bd05b8bda9ec968ee8accedeb94cd366', 851, SYSTEM_COMBINE_CLOB(452)), +(X'a1850e32fa7ad6014dd026eb5604c3e46d1679cb519f126585ac2f1e2c0e41cf', 817, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aba South"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'56093d3ae74a16d82ca96abd37ec96832d2b5c200ae2c0996e3e1a1ee3f5afb3', 849, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["Aba South"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'f0dc7aaa0553b9445e4fca99b96042d27458158044059949b1f49a071e72e53c', 527, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["Aliero"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'6ade19ccace78a02f9bc8e8a7957c32bcb4409093f0881afc2291dcf753bd167', 587, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aliero"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(453, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(453, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aliero"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(454, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(454, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aliero"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(455, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(455, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"string/=","value":["Aliero"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(456, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(456, 1, ' then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(457, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(457, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(458, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(458, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(459, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(459, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'05d632ba3f73dedc9572f7af1706126e9c2cd8ec3c13c22a9d6d5eeb5cdddbd7', 634, SYSTEM_COMBINE_CLOB(453)), +(X'be4f1ea3d08aefa7b3d225a05249ebd7284b513e12cb211c3689b515bc242ce9', 658, SYSTEM_COMBINE_CLOB(454)), +(X'b1fab383e1ce50843c7a7218e9b2830349765200c15163f03b0ef35368454f9b', 657, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"string/=","value":["Aliero"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'9179a75fe31bb845b2d169343b79b3ee3e56d57b3c333b3ec9f55ea6cc916dc9', 700, SYSTEM_COMBINE_CLOB(455)), +(X'6fc3c9a041f6d6ce5ddf6960a80ebd88c97d5c84b5f810b54765042092fe374e', 755, '{"type":"query","query":{"source-table":70,"filter":["=",["field",670,null],"Aliero"],"limit":10},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a5db3f635bdfeda7ca890e10528f1ffa4d6ea0cbb9535921c1705b14af4c58a7', 278, '{"database":3,"query":{"source-table":70,"filter":["and",["is-empty",["field",669,null]],["is-empty",["field",667,null]]],"limit":10},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'b28c96bfee6195920da282f823dd1ffe16b6511ac4ad62ba3056e688ceb7b452', 4366, '{"database":3,"query":{"source-table":70,"filter":["is-empty",["field",669,null]]},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f9159315cd93cff6a964c6b88a05188d344e88720be6aa28f2c3aff0eac07d1b', 255, SYSTEM_COMBINE_CLOB(456)), +(X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', 1067, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'), +(X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', 1058, SYSTEM_COMBINE_CLOB(457)), +(X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', 1253, SYSTEM_COMBINE_CLOB(458)), +(X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', 1075, SYSTEM_COMBINE_CLOB(459)), +(X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', 1246, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', 1206, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(460, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n ,', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(460, 1, ' ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"bf69e085-3c01-7924-5108-7151c85dc371"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(461, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(461, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e829049742397b67da06a95aa8116cc99638b5dbe63765ea7ee5324696e519fd', 160, SYSTEM_COMBINE_CLOB(460)), +(X'06012da79cec79bee23a4058bf1b1b2ae8046c5fdee24800ec982b08aa9b8f17', 624, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'623f9ec3beb69a8774b6c5d5db8b2f876b5c75d869d6337bbfd65ed98651516b', 649, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'8c6feab64dc6d3eea43cf2428dbbc22f23eac21c419f0b62c8d0e6289689f4f0', 709, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'd4bd9128f3a19f1336b71af640dcb94ef806ac8824dac5a70c3bdf79f98d1209', 808, SYSTEM_COMBINE_CLOB(461)), +(X'99f39f868c00c159e945dde1fd2d6f37d09f552a34a2d8d71f985b60c1e15562', 942, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'336e3a584a850e7c9ebdc549256e8a8b495bf04e230bfa3b87b942b641245e09', 980, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4be5e926ab5c80e511be3ebc87930937bd0ffb96d1785a0d50e62ba09608edef', 1006, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6a370c70ddd0ee2c0cd6da418c0092fa56d9261028a1922dd1b0a6a001ee1bf9', 1442, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'a5e80b109638fb11540d8b719b381feb47a13c847c3ab04e4cd8fc9a8a2564da', 1488, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Abia"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(462, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(462, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Yala"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(463, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"ty', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(463, 1, 'pe":"string/=","value":["Yala"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(464, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(464, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Yala"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(465, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(465, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Yala"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(466, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(466, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', 4068, SYSTEM_COMBINE_CLOB(462)), +(X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', 2260, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Yala"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', 2275, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Yala"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', 4030, SYSTEM_COMBINE_CLOB(463)), +(X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', 4167, SYSTEM_COMBINE_CLOB(464)), +(X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', 4161, SYSTEM_COMBINE_CLOB(465)), +(X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', 2392, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', 3568, SYSTEM_COMBINE_CLOB(466)); +INSERT INTO SYSTEM_LOB_STREAM VALUES(467, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(467, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(468, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(468, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(469, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"as', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(469, 1, 'ync?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(470, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"s', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(470, 1, 'tring/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(471, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(471, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(472, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(472, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(473, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(473, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Enugu"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', 2466, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Cross River"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', 3397, SYSTEM_COMBINE_CLOB(467)), +(X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', 3480, SYSTEM_COMBINE_CLOB(468)), +(X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', 3520, SYSTEM_COMBINE_CLOB(469)), +(X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', 3387, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Enugu"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', 3446, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Enugu"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Ezeagu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', 6152, SYSTEM_COMBINE_CLOB(470)), +(X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', 6207, SYSTEM_COMBINE_CLOB(471)), +(X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', 6237, SYSTEM_COMBINE_CLOB(472)), +(X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', 6219, SYSTEM_COMBINE_CLOB(473)); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b3de9180cbff6d42a80780a06e5e90efbf2181d8eb76160c83f1022e0b703648', 961, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'6195e3680e2ab105f30a1abc0f3b19e573562210c8c2f8ca01f0d94ebb053a03', 4387, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'f3d2a4792e7cb129682f523db9006f5ac4ede654f13e43289a5f3b2b7e2655dc', 2476, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'28a83145ccbd7fefc86c8f0b6ca2d0db7d3e5b90de31bb35ed483f7f2b2d86df', 2893, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(474, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(474, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f3d441cc9c83afd64158dc50964cd9340199fe5f2d238ceb1f67fcee5579821d', 4787, SYSTEM_COMBINE_CLOB(474)), +(X'11f38c968eb964a4079eb1373154369a48dc68a4416b719272c4766b8773b7da', 2149, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'9d07fc4a27824c6a0158946eb0bf59b4053ebc2ac7e955a6b89c3f54c2151fad', 2238, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4c58e76fe5ee7920139f9e4b5ccf2e8ecb09bf65584128ced119da14a92650a8', 3911, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'308de4c4c4ed344f17a777c0c7f38cccf96efdfed34c568eba3cca1bbbc2fff5', 4016, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'f4bab0e6e6097a4c97bfc41109f1b4b591460dad8fb7fa17dad9d3a27af77377', 290, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'30ff5b00baa7671e429f0723ed15c9c2ad90e3bc7aa5529592f7d1ac2e559de4', 438, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'c08b9b39f8a40fd20818d1a3736fc53f629e903d96b00bac67b1719b6a33cd19', 604, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(475, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(475, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e83e0a8202979ea3dfb1fb89ef85155eaca01a4aeda5f334a89dc8e721d7a953', 582, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"fa21fc60"}],"async?":true,"cache-ttl":null}'), +(X'ce785e425cd7e09839472c8110fc5f47a7242160d3a86be042e87d8f0af5e227', 589, SYSTEM_COMBINE_CLOB(475)), +(X'd14b49316ef35c8312cfc23f28458b4ef690a9c941a7516a91094898e309cfe6', 578, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(476, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(476, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(477, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(477, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(478, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"s', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(478, 1, 'tring/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'31e91bef48239187fcf4768b796c53b9847c674d7baba8142aeca114d9fad54d', 1489, SYSTEM_COMBINE_CLOB(476)), +(X'8a4a2db15fd2a4fe7ef6bb6752a81b703aba74bceb51c37cc5e9ac33d2f9028d', 1794, SYSTEM_COMBINE_CLOB(477)), +(X'a0b50074b014290c84e7299c2694a47f170444b60a60c4b2fe6cfd094e47ce54', 1466, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'094a6079d710829ffd1ad5face9389d3df7786e2d70f71e17a77ab03f29665f2', 1820, SYSTEM_COMBINE_CLOB(478)), +(X'c01ec4b272e70667b378fd0370ec807576aa8ffbf1f4d2f5f9b6520bb5ba7cb6', 637, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'a2e36817be9f82729f15bbb7eb46d1afd123cd55e3911241d8bbc3d4236cf9e6', 681, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(479, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(479, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(480, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(480, 1, '342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(481, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(481, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(482, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(482, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(483, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(483, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(484, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(484, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(485, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"s', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(485, 1, 'tring/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(486, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(486, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0ccaf43ff604990a538fa303c8d28b46ee38b5f8a60d56b96b1e84c8dc7f0fc7', 743, SYSTEM_COMBINE_CLOB(479)), +(X'ee0e3c6c1f5fa0fbdd7feb01c046907bc2d350017c9995afc882a9ab7b030786', 701, SYSTEM_COMBINE_CLOB(480)), +(X'ec2ece55fbceed080a7b7e2a4a0d8bfcafea5d78fc98780aa427894fd519381d', 771, SYSTEM_COMBINE_CLOB(481)), +(X'9cba6bbfb35b4587220bebfc9af491ebe8f7fcc4870fcc350b0fdf20c8a17a3b', 796, SYSTEM_COMBINE_CLOB(482)), +(X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', 1026, SYSTEM_COMBINE_CLOB(483)), +(X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', 834, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', 776, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', 1122, SYSTEM_COMBINE_CLOB(484)), +(X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', 1021, SYSTEM_COMBINE_CLOB(485)), +(X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', 989, SYSTEM_COMBINE_CLOB(486)), +(X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', 545, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(487, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(487, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(488, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(488, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(489, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(489, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(490, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(490, 1, '342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"},{"type":"string/=","value":["male"],"target":["dimension",["template-tag","filterGender"]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', 553, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Lagos","Abia","Adamawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Alimosho","Agege","Ajeromi-ifelodun","Apapa"],"target":["dimension",["field",670,null]],"id":"c6c83494"},{"type":"string/=","value":["male"],"target":["dimension",["field",680,null]],"id":"ae9a87b8"}],"async?":true,"cache-ttl":null}'), +(X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', 704, SYSTEM_COMBINE_CLOB(487)), +(X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', 716, SYSTEM_COMBINE_CLOB(488)), +(X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', 710, SYSTEM_COMBINE_CLOB(489)), +(X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', 788, SYSTEM_COMBINE_CLOB(490)), +(X'02d9bceb62ac62b98a440d6a88ca4c10df57f9c55c185148f3a3c59b0a18044b', 206, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'5507ce9c440ec0de75ffacaffe8339a3f989d9b95aa65a447ab0460554bf698b', 346, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'bd4d1b65119ef1e377135fb267e3fdac83e34bb19da61553c303e9c63ed05f91', 416, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(491, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(491, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'872d22e47b822888da285e6b7b5f169fdb3c42d695f3b512bb7581b77b69ea64', 460, SYSTEM_COMBINE_CLOB(491)), +(X'02040cee6be01f0eb6ff60d3ed97da963114328535474fa79de6f08a07529e56', 548, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4dc312256c770c0c48ed34594ecfd1ba8c3bfb7d21b4eab013a90da2c79aee2b', 1399, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2d17f02728ea121d0d66d019a3c9ef2c25c8484236dfea5d39275393b411d64d', 571, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'4467d42d82200b72df5759e39845000fb768033cfde7d655e16c4d96446faa97', 1918, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5369ad9297a1b98712fa4fc170075ff4602855069ed7447bf42ce75add3907e7', 1886, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"80f32cc"}],"async?":true,"cache-ttl":null}'), +(X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', 1060, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(492, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(492, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(493, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(493, 1, ':"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(494, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(494, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(495, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(495, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(496, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(496, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(497, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(497, 1, 'true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(498, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(498, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(499, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(499, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', 1703, SYSTEM_COMBINE_CLOB(492)), +(X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', 1855, SYSTEM_COMBINE_CLOB(493)), +(X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', 1055, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Nasarawa"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', 1713, SYSTEM_COMBINE_CLOB(494)), +(X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', 1662, SYSTEM_COMBINE_CLOB(495)), +(X'd294416dd8462c53649f6fba3d5b6871bdbefe47a4e3a78f4907b9427c14d0f8', 298, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'4fa7a0705568c8736b3ef9d07dc0329a29e68c089626c975b5016603792aec04', 298, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'026365709b5300b1d3091fe8204cd08e8e2bf29409d2ff484c4b46c4fe5c2cb0', 409, SYSTEM_COMBINE_CLOB(496)), +(X'92d09e2eb1d54c6ed7bef3e1304ca05b3d865af996d63020f0a389c6f670ac30', 451, SYSTEM_COMBINE_CLOB(497)), +(X'a76b3239ac93f22c770b8defd6363466fd79d2a5d64fe493492ac3b3f754ee99', 490, SYSTEM_COMBINE_CLOB(498)), +(X'e312810e2e433d97664d6277e2f47c7e561ffe2c89a3f6dadb93d523549f25aa', 498, SYSTEM_COMBINE_CLOB(499)); +INSERT INTO SYSTEM_LOB_STREAM VALUES(500, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(500, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(501, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(501, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(502, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"st', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(502, 1, 'ring/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(503, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(503, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4c088e47777a5bf0b81be2cc0fb07fc6705d11011bec8548c861d113e4082569', 225, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'b936d4911e33ac75c0ed91d14ab7cefce1723fa011fce8aecf14967f4b3b7edd', 246, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'f54799f070b19b8cdbe5d1295029cf43904bae3718a52fa73e3d955eea3f875e', 373, SYSTEM_COMBINE_CLOB(500)), +(X'243ee9f7910cd438ec7938e57443ce1984c169499cfed6ad4a16f0b90f2fe0ca', 363, SYSTEM_COMBINE_CLOB(501)), +(X'540cd6f49ccd5892d13dda198a87dde78e5f5a3b9341a43bada24eab549edbb6', 364, SYSTEM_COMBINE_CLOB(502)), +(X'4b883144c28775b69c9858d69dcbe651442b25b36496d3614e8ec0383f57c137', 399, SYSTEM_COMBINE_CLOB(503)), +(X'a44b2556268b56e3024684f1ffffb21e801f7a310ccd0e54fce714139ffbe8a2', 223, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu","Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'341e854c38ecd9d48b501744e17b13cc00f3f60ac1d4cdd5b2032a44a2885476', 285, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Karu","Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(504, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"st', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(504, 1, 'ring/=","value":["Karu","Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(505, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(505, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu","Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(506, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(506, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu","Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(507, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(507, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Karu","Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(508, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(508, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(509, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(509, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(510, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(510, 1, 'rue,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(511, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(511, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'4db391e8a9d82c9ce9ca126b0f89399d2b0332e4429b3a6431770ef9c59de7dc', 330, SYSTEM_COMBINE_CLOB(504)), +(X'0f58b73a8bc8ee31e5d9dafbdefd81cfbd30a6ab5d72610033b83f455fac2f47', 320, SYSTEM_COMBINE_CLOB(505)), +(X'cdcdbb902cbf64d026ce2f8cbb5160bd8a0d461d577d8267c6162701a7020ad3', 417, SYSTEM_COMBINE_CLOB(506)), +(X'a65a2d06086c780754e4d2875df7c45de08dc8e186b26c020b1b0831450ac53c', 454, SYSTEM_COMBINE_CLOB(507)), +(X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', 400, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', 393, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"}],"async?":true,"cache-ttl":null}'), +(X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', 602, SYSTEM_COMBINE_CLOB(508)), +(X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', 546, SYSTEM_COMBINE_CLOB(509)), +(X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', 708, SYSTEM_COMBINE_CLOB(510)), +(X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', 672, SYSTEM_COMBINE_CLOB(511)), +(X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', 557, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(512, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(512, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(513, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"st', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(513, 1, 'ring/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(514, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(514, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(515, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(515, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["template-tag","filterState"]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["template-tag","filterOffice"]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(516, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(516, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', 887, SYSTEM_COMBINE_CLOB(512)), +(X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', 828, SYSTEM_COMBINE_CLOB(513)), +(X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', 838, SYSTEM_COMBINE_CLOB(514)), +(X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', 838, SYSTEM_COMBINE_CLOB(515)), +(X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', 536, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"},{"type":"string/=","value":["Kano"],"target":["dimension",["field",671,null]],"id":"6111342e"},{"type":"string/=","value":["Gaya"],"target":["dimension",["field",670,null]],"id":"c6c83494"}],"async?":true,"cache-ttl":null}'), +(X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', 1272, SYSTEM_COMBINE_CLOB(516)), +(X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', 959, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(517, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(517, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', 1135, SYSTEM_COMBINE_CLOB(517)), +(X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', 1047, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', 901, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(518, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(518, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', 576, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', 819, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', 1074, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"65d94567"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"7d44a6ef"}],"async?":true,"cache-ttl":null}'), +(X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', 903, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["field",666,null]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["field",677,null]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', 1024, SYSTEM_COMBINE_CLOB(518)), +(X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', 821, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(519, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(519, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', 872, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', 981, SYSTEM_COMBINE_CLOB(519)), +(X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', 1476, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', 1483, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"6299a85e"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"45724d13"}],"async?":true,"cache-ttl":null}'), +(X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', 1076, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', 700, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'42bee50874e36b9c34e3ee136d8bbf3ce254d59063e2d26fd50838167775db30', 340, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(520, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(520, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'eced80f64ed06e974d874d202a03db7dcfda90e7f360e8be46cfdf5630ffe562', 473, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"async?":true,"cache-ttl":null}'), +(X'c48f3ac43425d5792c114e6e15e11a77075be12a943d345a7a6f5e8f88a05826', 88, '{"database":3,"query":{"source-table":71},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'32c600cfcca4e12b348e0c271f19210efcf7988a1f92f0e62b67ddbfca19708a', 54, SYSTEM_COMBINE_CLOB(520)), +(X'14f2225d10d7f99d88990cf8b86830d75152a6549920f763ca0bfb5b8150423c', 56, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c70f9c825f0b2907fbdd9cc0a877de16985538f446143a9126b11cf0aa2892b4', 73, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'f3bef64318af6e9bb40a74148d0055cad9a338c700cd6f1c49207d63da70cd75', 133, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'd95b60041695ef0718ceba0e718298301339dd8cba030cff28f5046308eee147', 77, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'00e3e576b8cbcc1290d77b5d9daf3115c1018f909b5a7dd02c945ce15b72d18f', 270, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'374e576b46c823b889adb45ff6ec8935c784401f5b31c2f3cac1603d8daea97d', 277, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'), +(X'eb078a533aad7ed329b42e6c14a13049a8fabe1c61b72c26a5fa1cb8ca6e0e0c', 88, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female","male"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(521, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(521, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female","male"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5665ace83d16a57d4bbf00ef17a4e9b06a6bb014a2fe37d7aa8270b87e6a9556', 99, SYSTEM_COMBINE_CLOB(521)), +(X'986117cc97f76d813d12db4886e9da40e333cf749feb02405d615634e4c07a34', 117, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female","male"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'7d712508585c9bb2762aca4ad5f8d1bb70be6e41f87f6643df5b875f2ad91ad1', 128, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female","male"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'c994a57bf44a8f35265ac2d89f7864d8b22300b7ba6ee21a73f2552497ccb06b', 99, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female","male"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'6ef18dd2448b3e149c41b7511a02b0b5ed975af94232de712d8bdfd6e993e4d6', 302, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female","male"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(522, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(522, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'05cddaadc6185ceed16d86eb0cd8f22ec75dca83ea3dd1e33650be56a6035ee3', 275, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female","male"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'), +(X'ba45ca01c7c510a9edf68febee79ff1bfb1a3caeb1380c45d3ef5e330fe9f861', 31, SYSTEM_COMBINE_CLOB(522)), +(X'a109673621ae1f6e2a72f1129cab2f36d3196437c0638d6c4b543559cb7f5346', 72, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'1de9e1b9dc28cde6a91f1ab176c4a91a464320f182796ac229e1fa308c6ac0a7', 78, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'516cb5f585ec8d22a74640d59677774bf409256d5765411c018569cd4ad637e9', 197, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'95ec264bf139d909d3ef36dac723b81b0b92160bcc16223a1bdb86992cdac22f', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["field",680,null]]}],"async?":true,"cache-ttl":null}'), +(X'8f997071f5fc219bc6e3aaf478fe38d5b12da4cd78b4289637b5f14d6a505347', 240, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3a37257a2213bb264032f522cce32f499f6d08f513dd9c44599017199cf61986', 267, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["female"],"id":"6ffeab10","target":["dimension",["template-tag","filterGender"]]}],"async?":true,"cache-ttl":null}'), +(X'238da0aaeb4f6aacd915e4768807c7b3de7f66a89500b387739fe1ad292f7487', 16, '{"database":3,"query":{"aggregation":[["count"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a54d9189036f108be8b4567615f55a279e3b10a6fef5dc4c87ca6d8b86c88495', 1619, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(523, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n ,', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(523, 1, ' ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(524, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(524, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0356ae7b058c0b083519364771de664fa682b062531673e1cecf22d88b29a4ee', 21, SYSTEM_COMBINE_CLOB(523)), +(X'50fbce18eba37a6633bdff06589a172a7f820ba30be9f0e40acdf9ccf48934a1', 59, '{"type":"query","query":{"source-table":69,"aggregation":[["distinct",["field",659,null]]]},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'aa4a07ca29bf0630f10b924247321b95756977ee0d3ddb8fe13a1e540fb4738c', 68, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'3ab739579b3077825c1f33fc73ef360a8de9b5cf8d6dad7245dace7161c4a73b', 56, SYSTEM_COMBINE_CLOB(524)), +(X'5b464dfbcb7c736ccb1128e03987922798cff78b2717abf190a0a9983fa247e0', 125, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'473eb67e52140718cc653dfda1c37d6936a59d55bbc7f20834dc23a21c249ef5', 108, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'ca88e11f19181bc157395040bd6132eada5f1600e32a4b97f6b8ac1d21fc4540', 114, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'9a621d1d9cd21ee1f49a1c221865a71dcf656aef44bd016258a369fa2173d8cb', 299, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'f1101a0f962501b658d46a71319d0973c63c42e58b43e00e8f61266b29d98507', 335, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(525, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(525, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0f92d2f7691ce1902fe0047b14c2d86ae1301a26925445ea0679bc52377db752', 53, SYSTEM_COMBINE_CLOB(525)), +(X'37ca693ba3ee407569a4f990f392f8afffe7cc145ace6a95e61f0cca6c3ecad5', 113, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'3e0365511cf16561c9f3df73a445f5a467bffa378254a5fc579ecdfaf30c390b', 106, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'ae0055fcbf303d8485d903be0c2540303259afcdd4505b81bb4b135ac6f055e8', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a9f44a64597ce016c003771b8cf75d35c65cec5ab7f62832d04b2609ccdb79c5', 130, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'fdc537c83eeaab2845334bba05491fb56619d1aca15ce689ef9f4e41518084f7', 306, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'81f808a660808666fec7deb52208d0412a50978855ea4e3801939ccde1429039', 327, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12years","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3d8b0c9910c4b6d5deca6e775a76e6b291ee396c2b78d74e4037e119260cce83', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]"},"database":3,"async?":true,"cache-ttl":null}'), +(X'9d43182f103d0ea10160d3a4fe85055099f3ec99a9ea53eb0707f012f7fb7162', 77, '{"type":"query","query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0e52c3064e3d3f037e2d4693364d93ff33b90e9cc0b510cd4960547981b38d81', 137, '{"database":3,"query":{"aggregation":[["count"]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c54cd790b3a02c358cef29895dea4bda6331b987759ae017adaa2ac9aa9e4434', 224, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4"},{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', 291, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c8381264b9783072cb62fb647208d5fd47e9c72780875e6298863b912ec92c2a', 497, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8ae528cbb556d29ba7d2eed6684bc4ad4ab4514dea2b30f60fe4593cee9f163c', 21, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'53429c8aba776d8cb21c2f99be3e7d441b3e5bbced82d6a1796b4841da3f47d6', 14, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}'), +(X'988d500a5928ce7c2305300e3d6a264076fc966fb0f9f731f6f63085044aadd3', 15, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(526, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.litera', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(526, 1, 'cy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', 124, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"757a20cf-8f70-6857-0ed5-acb310688b3a"}],"async?":true,"cache-ttl":null}'), +(X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', 246, SYSTEM_COMBINE_CLOB(526)), +(X'0e7f0cde45be454c31e67107066c56d2e16f6ddf0487d90043d83928264512f8', 111, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(527, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(527, 1, ' },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(528, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(528, 1, ' then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3,"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', 780, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', 262, SYSTEM_COMBINE_CLOB(527)), +(X'6d06c8768b56f92dfd2f3e747ab54500dfacd1a751c73bde7c47f0a686030819', 38, SYSTEM_COMBINE_CLOB(528)), +(X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', 1333, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"async?":true,"cache-ttl":null}'), +(X'5a151b36cab17afce3c7343a175274ae4c0e3cd5bba7804bff12a0b776422480', 378, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'42c2c82fe5598e98e624185ca606ca7b43d1ad26d7e0db33a172586de4f62451', 220, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'05b24432b42ed7e616c8508e2c7986c582f93a68d6a0558ae59d13e2bf775b17', 329, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'affe01c310d7fd6f32d4391798914137986d2d84ae5b0e97f3cde17d45ecd432', 137, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ac07317be5aa20ca6181bc5f83d7f48c899c6c7442d4462fcbfade2621756211', 286, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'd2a6ce638ce898063ce3acf8b2a25a13d429f84805e0c47afb2733d401a4bd84', 50, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(529, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(529, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ff55ec7423eefa67c6837a780128d24e3824bbdd176866bf47cb78e6fa1f0776', 98, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'bcdc1359f8d68c822b0ee764fb3de9d1ab4514eb773bd1c251242f9390c3d564', 119, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'088751dbd7405ebad6c2f963cb8a8cf39fe368bf5625ce9cc0b2bd0517460e36', 122, SYSTEM_COMBINE_CLOB(529)), +(X'6f1fa80a4f191f3c89accc29b571ffc25b0c417a75affdc33b5391c6832a0216', 110, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'7243a0033c8901613a66021cde0f703d379881ce578238aef7a3ba97f054e690', 276, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0276680bf80488fcc57b1bd4866252911f4dd2b4a830d884405a27688fa13b74', 297, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'1ff9b3fddf4f7d5aad2768717358358295228e5d27ce74def468d8eb0d86c349', 80, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]}],"async?":true,"cache-ttl":null}'), +(X'423ebcb93e914c900398c5e813ded335dec0b47be3520a685d3cbb4fb318f10a', 239, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(530, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(530, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(531, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(531, 1, '-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(532, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(532, 1, 'erOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(533, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a4', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(533, 1, '1c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(534, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(534, 1, 'filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(535, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.cate', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(535, 1, 'gory\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(536, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arr', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(536, 1, 'ayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"},{"type":"date/month-year","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(537, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arr', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(537, 1, 'ayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"cd1a4146-89c8-79a8-3ea0-145647317de1"}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd6757e6132bb7ff9123104875485fa2641d233a03d51eaf962c29e6b3f02bd73', 70, SYSTEM_COMBINE_CLOB(530)), +(X'22473e28a8c2d45b145d848677b955e3ab5d8fdd022901369c2f49b724226969', 229, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', 144, SYSTEM_COMBINE_CLOB(531)), +(X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', 1285, SYSTEM_COMBINE_CLOB(532)), +(X'4d2d0858e0b82ce6abd7c7a525e39bbeb4d195d2f52b6bb674f38fa17518fc2c', 45, SYSTEM_COMBINE_CLOB(533)), +(X'912780ce5b10a3a7e180547b85005be186e71060d599f4ad25f15277cb0576cb', 24, SYSTEM_COMBINE_CLOB(534)), +(X'0892c9758ebea907e9be7fee22bbb7453abbb7e5333e6cc0e9641599c41265d4', 30, SYSTEM_COMBINE_CLOB(535)), +(X'f33dd8c0aa9af4499d223a36b0392d80f1ca8324842b74dd338576fe528015ec', 30, SYSTEM_COMBINE_CLOB(536)), +(X'aa387f15ae206713491dd58ca02814cabc2a4eacbd627e7f0f089329b0a286cc', 31, SYSTEM_COMBINE_CLOB(537)), +(X'128bec4885907434caaec896c860d9ea647969b05a98e1e425deec02b57348bc', 195, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca"},{"type":"string/=","value":["Birth"],"target":["dimension",["template-tag","filterEvent"]],"id":"757a20cf-8f70-6857-0ed5-acb310688b3a"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', 361, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', 531, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'1da209bff316af82f1da2e2d20a3d2f91835b627915dd873510233460f73969d', 102, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c384bd80da65dae69324344056efdbd9603731641ac113b877a2a80adfc55ace', 248, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', 151, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', 92, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9d84d9621cef21cb6b034d94ba48b1f7049c2a18e81a00e9560bad1e486c6c28', 233, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'9a55e11330436e606da76c18ad144271604f8fa6e386e2700e702a7144196be1', 82, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'44b93f92fc6ca116a7ab7fcc326eabd8e084c4bfb6d3e40caf9f181e3ab3ed02', 148, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'f31170f5df18ff2f2ea2a12fde09b28f60ef27d8f5785100552c3e4bb42e014e', 74, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'37aacb7658fc2beb5bcd8c1885815bbe1710625645c3058dd13444079c126879', 44, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{"include-current":true}],["=",["field",671,null],"Central"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b3417c1268012b75f0b321e6967eea2005b84830fe4333e1e82e3bf428deb187', 140, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{"include-current":true}],["=",["field",671,null],"Central"]],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'b527f876a8547341cfc6d4d8a36512f9d06b5935f283c4f4f62981633ca3c2e5', 31, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["=",["field",671,null],"Central"]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'ce21b77e635b58f0de9f991640e85a666387d2883c4e2803d40e1ed869e81b9d', 40, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{"include-current":true}],["=",["field",671,null],"Central"]],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'ef8effdc27c934d219f33474337bb8e23a1eacbff686bcde1e45a766b7c25d1f', 31, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'aa33ad7c6938cbc2547be6f43c9f1e13a261446e438241a9dd41eec38934315c', 77, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]}],"async?":true,"cache-ttl":null}'), +(X'2ebc4930b7d860dc762b4a9b73ffd805f07cb4b80c82ec9ee763d4ea215a5aca', 32, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],-12,"month",{"include-current":true}]],"source-table":71},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(538, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'',', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(538, 1, ' 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'7ff7a89e43dd713fe6f4180dbd90f0f32c1f56bb54233662127996459ffbd35e', 35, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"async?":true,"cache-ttl":null}'), +(X'5c30ba4ab6c0ba577c500c2873409001378756040ebe855b58b65abdc6e63e15', 122, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'abf62986f68cf8a6c5e5e4ad93c8d0657b25e9be00b3192f8f7b657d1e00057a', 36, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{"include-current":true}]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd56892081c91daa201aaeaacdc323bb988945fd3641e75c363ac3366329c12c6', 22, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', 100, SYSTEM_COMBINE_CLOB(538)), +(X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', 207, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"7d44a6ef","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'03d4d6b2dd6bd6e5d2a5062c230c8b8607b63717c7b4bb30d3f9e12965cae2bd', 96, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"7d44a6ef","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6a6a194535b6023ecb18578ec70bee36d6e3ecbf788cdc935924b2a81330c1ae', 41, '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{"include-current":true}]],"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'f5f0143d903018d63d72fc727fbf699281e3097aee1c54a8368a2ac66c7d1e2e', 38, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"ADMIN_STRUCTURE"],"Admin Structure"],[["=",["field",668,null],"CRVS_OFFICE"],"CRVS Office"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"OTHER"],"Other"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"async?":true,"cache-ttl":null}'), +(X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', 71, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"4d1c7aac","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"9882246c","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', 72, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"4d1c7aac","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"9882246c","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'7a576bd0719fd94d15f0c3116edc59e7b4f7c473052bffd7da168ce67a5efc92', 330, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', 306, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', 266, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(539, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(539, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fcc07898f9ea165b9da75dc9d42ed6cbc17ea466542acaa5e19cd216cb190d57', 86, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'ad837d57c185b4468f5cddc20d73b20457e75b533762224afdba6673d1196bd0', 83, SYSTEM_COMBINE_CLOB(539)), +(X'5a60bdeb60d2fd04b474f26ec34458ca11fa1f54bfcc1df4c88f694ff2a4d4aa', 113, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'73eac1d1cb252b113a314e120558be3700c4e6a53dd44877c4285a5391e012de', 116, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'a0938cd75802a0ce92b05377ca9c76a07d8fbcee46a76b8ab2571e0b2d71ecdc', 104, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'794e2c28d1bf093a0ebb0ed0473c2491cd5ccbe8fecddef18f1fa2e2f5b15f25', 109, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'753a61b2e883abb8e1728e0a89ec31e2c0421e5051860030520acf54d0f37514', 300, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ffe837f37276baf0292a43fafceeaf10a327d4c976c0c8cc1a55efa0a820a078', 361, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past31days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'c81450a589e2eb856cb585164bdc97d7dedce7512c0e7eeab48408e348d87a9c', 203, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/month-year","value":"past31days~","target":["dimension",["template-tag","filterDate"]],"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"1f3f4237-bceb-1188-a732-80eea58169b8"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'31fec452ab2af6d9813e3431604a2c0a9f3d8ba003d11b859fe765fd55974150', 19, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n{ $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":"past31days~","target":["dimension",["template-tag","filterDate"]],"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"1f3f4237-bceb-1188-a732-80eea58169b8"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'6d7875a5e38350f314a670667ebda6c5baa95f6ae9e6af512074efdddc310b63', 128, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8cb3bf4e7793967844259e79f8d691b8ad8b7746fc29c2003e32fa9bca1a66a7', 109, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c665cb580934607eb858c5fa0c7796067d5ddb44bed4610ffe48674fb89aef39', 133, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"thismonth","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0a645741f83aac335dadbc443fbfcd83b1bdabce3d86decbe7b2e009388719ee', 145, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'119f07b850c9eed31bcdcd5ee5c4dbb178e46bee75b11034db0caa352886eef4', 113, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'56963b880f5c161a42d4e4f452277ad9c7710301d219a3792fed224037b5e8a2', 175, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'd4d07659a1256d176536ec7512779f118d99e60ccd92fd36861102f9c6a3f221', 121, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past1weeks","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'17ff7465f2ca290bb62aeb6a62161df9eb5176d3b9f507851610640940b95d02', 117, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'316bcd5fad2f273dee9e0f7fed47d998e2ef7bbbfe8c99bea8745268f6549426', 148, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n \n\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n\n\n } }}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/relative","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'82faaaaa2f096ebd0c2e6e462f50e7f9b4cf9a6a80d68402b2b953503fb705f8', 18, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'' , estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","parameters":[{"type":"category","value":"past30days","target":["variable",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"category","value":["Central"],"target":["variable",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a1ae7bfb1f327c880ce4e6c2f33e8bf1e3d9824a41392e1904dc68b99ab1e6f4', 8, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","parameters":[{"type":"category","value":"past30days","target":["variable",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"category","value":["Central"],"target":["variable",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'a860068c592ea9ba0d3f500454e304721d681e09becd05a0f1e16e60b36c8d2b', 139, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'a808ecbc432450b23d4eb51f47fd3b1af582548ea26476b0502721b7e3b03e52', 150, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past31days","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bdb54d037c309c8fd3be189cfc6d8d971dd9ff8cccf00ddfabfa2eb66aac25a4', 153, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past31days~","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'90774042c19b5ffde142f39b84adde00d3fce41d3b779bb4dc99c70765f13478', 259, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'87c9881c229a74bb00c25f9b97cc30601df7439285b4f170adc3e4a503a55c4e', 246, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'8d93d5ba49668e7c1837bf40cb29b602081e5ab8e195ad73323d6e89184cac3e', 11, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":3,"parameters":[{"type":"category","value":["past30days~"],"target":["variable",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"category","value":["Central"],"target":["variable",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c78259a58aca4e331cfdd1207bdfd29a2c65483d157d72ada4e945f484d28bbc', 115, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":3,"async?":true,"cache-ttl":null}'), +(X'b29e36a715ac849dec466623440c65750502488f5f999a352db1fd9d5827490d', 149, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'beafa2f33385ecda84c267cae8a0971269cffe98466cd1eaa0adb2b8b41c26f7', 145, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past30days","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0cd357d2f0fa87370d76fdac0129a012b4b4e3e67c8461024a8b96e7f2102d8c', 267, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6593f67e120cad051c9464e39f03c77c0cedfbb5e3d4eb20bfb2131bfb028790', 139, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"past30days~","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'52b64db98be0ce301056f501e334390b526993f11f2ee1509bfa1c3bb9ee0eac', 116, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'ed6e934a2e8ad10a3a46f856140625eafa42cf1a16f690899d3f46b8972be9eb', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(540, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(540, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ba609a5e0e793c138ced0ddd2c32d51fd04e87937df6707e02eda02d0e343390', 149, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'8fe1db5145862808fce1c27deae38d48f779da365437fbe9ac3a2f243ed6bf0a', 77, SYSTEM_COMBINE_CLOB(540)), +(X'2b00158128cdf9e4bfa756025a66dadc6f9edc23576ecd07ba953e6c70a669ec', 82, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",695,null]]}],"async?":true,"cache-ttl":null}'), +(X'f80d56ef587fda8b77890a983af2330ea7e17ee4f527f84e2f0bb237ef289896', 85, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'ca2de21462fd01b9aba4db7f56719d70347971950bd8fd6f9085cd88d71717cb', 281, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(541, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(541, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'81c561571b7e44ff9a95b3856c69c8731b838fb991460311bad8ab7cca354530', 273, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'38b0c03215b3ff7ade10004321e78618bfbab33170f8893f7013ac76d40e17de', 103, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'068fefc52e0518963fe619459f4c9cbeb0a6b4af96fef83a31d195196f1bd16c', 110, SYSTEM_COMBINE_CLOB(541)), +(X'4ddf828d1d3e6855f0d648c64010f9f35ba4ec6ce67d1acff6a4b8245953a7ca', 148, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'147ec9eb21cf8a8885fe3a6aedd21da298ac7c3d92e148b86ab36b50d6e64889', 115, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'35b3cc917e840c25fb13c0598f6f5a8182de12d8e04e1289eefd103292a16d07', 73, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'a8e7fac7b107d868687e7ca40d60b068d242ad6d10e3742179f3b0e015f6967c', 283, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'c0d82bc5e8344ca7a5b031caf110dbac0b725e969b6fa32dd445549bc3da04ff', 118, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'e18d3423b8e2a709c52d8eafa2cea1e6fb0679c9addc4d15a010ae0149561483', 316, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past30days~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', 99, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(542, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(542, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', 77, SYSTEM_COMBINE_CLOB(542)), +(X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', 79, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'd061b18d0b4e31848cfb4f8b12c6472794e841419612ef41aa1386006b7a2d3a', 110, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'1455f77023e34811e569e5716e8a4e1ca7b07a6f161a638a7100fd76100beec4', 229, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', 100, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'bc82d678cd17656c8e2dab9019a3bd7c9eb70943a927bbfa50e7317d67a2ab0c', 98, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', 261, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(543, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(543, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'40aed0afba6d45ca9d5395f3667f3d12ffcb4c01cdc2868b0c91a7018903b9bd', 87, SYSTEM_COMBINE_CLOB(543)), +(X'55e2fa9072dc2d1c354c4c133354d0f5139ce3c58b0eb6b5a437ae4ec6d93bb2', 148, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'0b26d14ac2a612c1498dfc0d4dc9174abba8032c7a221b58e46864fe2c29fb0c', 148, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'1984ee2d10e1f753c7ff722004515410fff2ae849897536c9d837bc0651854c0', 203, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'ae34f4fae2b6d5d3be9e752649eb8068e1b8cb4250c587466134e35205134cdd', 80, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'6511ea93c54bf1e86beea971dce3c9116d4d0fb93ac1472c73882f7b059f88e5', 127, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(544, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(544, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'04cce612d60b8e3dce270de8f39af5c7277f0fc9e36f68362b874d891b93b6c1', 62, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'74ad707a9d9c965372ba8a4dccc6c308f129356bfedc420471fa12cce1530fcd', 285, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Sulaka"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'd5d74257d7908a2e47826390281e78e8ddb73e86ae6518b4799da9dda267a729', 44, SYSTEM_COMBINE_CLOB(544)), +(X'c67c970705c0c9ee96d9435e672017d5ea92d9991538b2d81170a6ef3f8bd3d6', 59, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'783d0d8ba0f80f1c2eb8c8e9b8334ef2dc5c8aa9582d3f74310d663695c488d9', 58, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'2db863edb0da2b1035e862d8432ea7b1d31f2ea5e94803aac677c6b0fc44f48b', 112, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'76aa95082772db36c8d723879df19c513d40af0fd7f930d418d05f823b1f4fb5', 55, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'5e6012e2838efaaebca17f41403367a66999629b8785aae97d6730ac0e9ec84f', 241, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'b887b8c1444cdea1dc13f0194119a2ee8f1f154eac78a5be0d11b76ca2375cd1', 123, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'67a72e4a544972713252d95af318aca31263d85fe92e4be8283e6a8b96794ba7', 237, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'664749f345d53ce9696e84150f518fe7ca9958641ace8c960771c68f4c2d8920', 66, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'9e28bdb0bfa3894c8c504fa6b0aba7e7fbcd3f0729e1fb232659c158b8cd1560', 71, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(545, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(545, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fee0eca8b9b0caa01fb419654e89a0a4deef30c21ddc4e6f4fcbd37ff88493a2', 76, SYSTEM_COMBINE_CLOB(545)), +(X'0306c058f798577a9c89a1cf0fc923f96075c2378a4791a5a883f308b0bfdc5e', 107, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'01d4534376758594e834ab0a4479b156a68258a40f4ee807c3712d72c45ff706', 74, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'2abfac2f10016f7f402cab84dba60f9275b38af82cf9bd6042b8ab95839034be', 241, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(546, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(546, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2c3c20a1e04c569e227858e5a5414ae64506d0615477128bfaf6d75de58bbc24', 113, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'20c3d0c50abc25d896ce1bca63fb761cdeed9d4761a3a7ef7180f343ed0f3652', 292, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', 50, SYSTEM_COMBINE_CLOB(546)), +(X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', 46, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', 72, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]}],"async?":true,"cache-ttl":null}'), +(X'46a515014fe23653d4f77f858f11b6173e6a9a76cf35a1b96c9d778fc9394706', 106, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]}],"async?":true,"cache-ttl":null}'), +(X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', 60, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]}],"async?":true,"cache-ttl":null}'), +(X'1dec8cab3d6d70ed6aeb009903c30e7fbea496bb450e91d1419355aa8f232211', 198, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(547, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(547, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5894656f72e8cae27246383c345ea5a4f36232da74b419372d34a5475e2ee252', 77, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]}],"async?":true,"cache-ttl":null}'), +(X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', 274, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}'), +(X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', 269, SYSTEM_COMBINE_CLOB(547)), +(X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', 280, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', 297, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'37c47bbe3dfd1bbc3ee025bab55aeabad50d6487ee80525f2e78c984cbf216f8', 104, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', 169, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'f4454fec781b7de62d237b53dc46e8c946dc56cb868bebb4447295bc0e32905b', 82, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["field",695,null]]}],"async?":true,"cache-ttl":null}'), +(X'58bd47fc3a8171f4a13ad03756442d870e5fc216ce03a9fe0e9292d869a9402f', 245, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', 477, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'95d090df69b593405fe9f34f365f445b0acf2cf5ac575c8705e0dc364bdaef6d', 101, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Central","Sulaka"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fbed3b8600429d604d0c495e3572e498f0b2dcca23c5a8037b3d3d5582e14265', 111, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/month-year","value":"2023-01","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"},{"type":"string/=","value":["Central","Sulaka"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"async?":true,"cache-ttl":null}'), +(X'46d79f6699d41b5d9578a125706dadabd8dc22a9e082c9b69e76a3b9f6492e84', 6, '{"database":3,"native":{"collection":"registrations","query":" {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'4ba4400f9c1d7089b2edc88dad744bcb7e5a487bb765dc33e4dc4c04e703676e', 92, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"67f3b176-38ad-db1e-7b09-8bf886688a1e","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"d01ad384-ff99-2fb4-5a45-5722d56682b7","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'cc427a7164dfbc63bab90c03b12b1df49ab3c88b38817d22bd8463cfb88400bd', 2445, '{"database":3,"query":{"source-table":69},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9201d78f1e0fe7c3593d1c4c18198855909dff640838c3d681124af6269d065b', 890, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["desc",["aggregation",0,null]]],"limit":10},"async?":true,"cache-ttl":null}'), +(X'1a5b02cb568e41737312ad7247d964e868b66cf7b67e1850f2d98c0e4a9edcd2', 105, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"string/=","value":["Central","Sulaka"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', 64, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"fa21fc60","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', 61, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"fa21fc60","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}'), +(X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', 65, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"fa21fc60","target":["dimension",["template-tag","filterEvent"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', 48, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"4d1c7aac","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"9882246c","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', 52, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"4d1c7aac","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"9882246c","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(548, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(548, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9e4ce32f035239121d23a568a65075830adf83b5462b7946f2c866b9ff7ae75e', 32, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'800bbc714b8eb621ef5c22d26921775abb6a569d3aa07de6a984ca7e15272bca', 50, SYSTEM_COMBINE_CLOB(548)), +(X'e9d282e1c3912323a3360e1e91989c410a52a07d2cd3259a9012f83c834a352f', 78, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'248c89985823afc9a4066270a09f52cd84b209b75e316a53b180d6d527d7de2a', 134, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'0e46d660180117b6c90c5486db7dcb720b4ac61631fcf8ef2d16c470a57a83b4', 90, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'040b8b0b7734915c803ea16ca3e935cf3f0adee35d096da1e574154227d0174e', 212, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'59e2b0cfb72bcf3af8292d7e2ff16fbe7dc3cb1a052f383a56be101d51a6280b', 97, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'3b4033cc9dce988bab11e25a14f3953bc64c1151b8cb6b3fee441db9eafb5005', 266, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Chuminga"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'ece965dc336a88bf54919c92e209d95901de6088ba01064a909ecdf6f588b34d', 94, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'9a1ebe764966b88055b4aefa3c05e94682b0c3d606a3237c7a614c699411c0f6', 10, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n \n]","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'c851eb4229a8a2c74a859a4f1fff5e7c1a492dabe07fb9034966c662444f825e', 4, '{"database":3,"native":{"collection":"registrations","query":"{ $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} ","template-tags":{"filterDate":{"id":"77da3220-1d87-82e6-b6b6-b911830bee95","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"fdc76b73-1e03-c61a-611c-c244a7b80edc","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'fa43ea061d045f1e81bbef4e53eb5704fb8163b5dd08c9adca52cd5c92c97a34', 98, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"77da3220-1d87-82e6-b6b6-b911830bee95","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"fdc76b73-1e03-c61a-611c-c244a7b80edc","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'38abe0438d1039b691683a616d3480970ed01bef286640ec74cb2c202b755e92', 276, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n\n]","template-tags":{}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'874c27a295b079f959d4cc264061e342e361f167ce9195dc85fd88aca04b9a10', 335, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n\n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'9212b940a1f882d37c9d23dc735c5a07334455878c50cd71521e18392792fb10', 99, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: ''$estimate''\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'349b9ae2b6dbdeb3d9153a0bdc60a9de5c927f1a7d0e99ee8fd367b7faa3ada6', 100, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: ''$estimate''\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":"2023-07","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'85063a9cc65075faeb32bdbab064562041408403bba1ec4832c3b471f1755844', 98, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: ''$totalRegistrations''\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":"2023-07","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'8700604625e484d61af48d87d36eb4989ab0d4fe7ebe5e2bcca687ac5ee5d0e0', 94, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: ''$estimate''\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"03da5d89-9fff-6029-690c-2588f8eb0d0d","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"738730a6-4332-b07a-beb5-68e73409d239","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'96aa25f3658fb6f3c67d998404aaf807f141c4583c47bddacbcf954f8ae687eb', 92, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: ''$estimate''\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'0f8569c19d02f82f7f79106d4d02902ace084078ce4f8b2e34143de7ef21737c', 143, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: ''$estimate''\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":"2023-07","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'19fe2b390b8518f56a3b98343c81eec782d4bf49b62363844168d085ef1d265f', 115, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":"2023-07","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'd950edc242b982caa43b562ca5032f05c858ff5175fe5af45ef17f537c6eb42a', 92, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"251ce6f1-62e6-92ba-dcb6-867ac71f3b6a","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"ca3f404b-8104-3d5f-b6d0-49f4f444457e","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'1c985b4775f23ca3808697298c074f22368a4c34e2adafb0e7d3716fa134bae0', 130, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 10]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","parameters":[{"type":"date/month-year","value":"2023-07","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'be9c8b07c5888b3360d1155db72e1ace0b87dc2da58c3605c1265e1cfe9140a2', 94, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Chuminga"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"async?":true,"cache-ttl":null}'), +(X'93e70d97516ff50844f725f0eb9d259c5695499561192344a2f864f6a6fec90b', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Chuminga"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'bfc871d32f239311bc7b0df2546654253cb7092d2c4f581c1cf4bbe6ec8019f5', 85, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months~","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Chuminga"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"async?":true,"cache-ttl":null}'), +(X'509b7c05f642788341988a14cca0b3ac828f1ec1c01380ad867779cbc4bc8677', 99, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 10]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months~","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b1d6a6cd2d408bdacb568e54eb5a0111cb9ff99c030c6f00c54aa16555ef0478', 93, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Chuminga"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"async?":true,"cache-ttl":null}'), +(X'1aa7efa578a785d599e0b3bf48aa02c823a7a6693d5263d58e481555ee3ba40d', 109, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/month-year","value":"2023-07","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'ee3b97d9d93bb0a42099860bfe4cd595448069eef4d44d55590e30a8488b7a28', 106, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'8404f953e2323a9d0385b17273addab08a705e194747397ca2c3502fcd21ff1e', 23, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"text","default":null}}},"type":"native","parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"},{"type":"category","value":"Chuminga","target":["variable",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(549, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(549, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', 1021, '{"database":3,"query":{"source-table":70},"type":"query","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'147c1573c52a14b884d142183238c243659592d77bfba6a1744deaf34348c038', 124, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'9b4ccdbab9ebb6eedd3b9923a281d85946e7fd80db456ddc730bbb38ccda33ac', 74, SYSTEM_COMBINE_CLOB(549)), +(X'49a6bdec10aae95a7ea82ac2b6e72c6a3e377926f809037b30756a13ab86bd13', 66, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'fdf3befe21f604236b1517ba4c081d765f2af4e406d09b1b6e03ec452f16f435', 172, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'79abca3b18af9de24844cd7be7f392f89069be14a612a0537c369b0d00fc8fdd', 122, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'044ed690fa15bf8da7eb0dda348e1636da55a084343463f37dfcacffe6728413', 228, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'840cb79802a1cf0f14f8eee52006d2f860528c527b26741af59c76987d268fd4', 141, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",695,null]]}],"async?":true,"cache-ttl":null}'), +(X'9d1109255e821f8deb286212678941aa68903e5c043e42a6ad1f573b8ec1bb2c', 283, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'ad5da3ccc13aed87607329d695dbe408c8ddef8a3635622618428f3e5e6b9021', 61, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(550, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(550, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'63ca9afbe54e4880fda5b9de91ee503226a5d2055b221de737fcf463707334f4', 87, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'7a9de7e1e1215065d349de3b40aa91d947e0bfc6b53f8dcff8264e2de9f20b5f', 93, SYSTEM_COMBINE_CLOB(550)), +(X'474f21e289a712baa773aa3d6524b050c7b9b1bdced13d7b544f3a11da75c1e0', 127, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'bb44dbcab3a4497567294d16d1f524b37cd2fbaea3a9b0003be98c465f00277f', 74, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",677,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",671,null]]}],"async?":true,"cache-ttl":null}'), +(X'4a9f87448414674acbfda1d04c5f30b47547b9e1e826d5f49fca323b41b95e08', 237, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'13eb3fc59ce57da3a13629722c78cd87bf7ed2db3b80a68e10e9745ae744ba12', 113, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["field",695,null]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["field",690,null]]}],"async?":true,"cache-ttl":null}'), +(X'54c6e6df8c131e54c47b7d319fa9c3ca1c0fadf0de11951babc9cfeab988f8c0', 276, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"thisday","id":"45724d13","target":["dimension",["template-tag","filterDate"]]},{"type":"string/=","value":["Central"],"id":"80f32cc","target":["dimension",["template-tag","filterState"]]}],"async?":true,"cache-ttl":null}'), +(X'78ec9fc31769604ce1c81df33f9307946f582fd1cdc565b5b0ddff8a2e6c436c', 111, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'907eab0ed3d0816e8aca8484663967ed2fa523894109923df60156be844956df', 95, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"async?":true,"cache-ttl":null}'), +(X'b4a0349cae6ad75d43fe7aeb2a3a23d459ddac9347ca6a001e0a95604387f070', 32, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: ''$date''\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'234aaf8d68a39ba174d506fadf8908f009acab840eac26c8234d9fe8a7e336b9', 98, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'09e7093f077e4cbad48c2a3ff96238d4db16ab3251c5e8983727dcc81433cf95', 103, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 2]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'b48e196dabb325953a709c025fb032fadde0609b868a4118b2280e7bffe75ae2', 94, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 2]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'0197c708bfc73498b5edfc91db5a28286f5e5b7f65b102ddc23b6badbec952fc', 95, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"},{"type":"string/=","value":["Central"],"target":["dimension",["template-tag","filterState"]],"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e764bab63df05f52286aacf3aa5b384747cde710c1a315e6f19a4e2b4c7e376f', 85, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"}],"async?":true,"cache-ttl":null}'), +(X'25643b362e244e21343d565359f8f6597d84240c81721153b2abde731e0fd84d', 93, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 2]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"past12months","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'08f06fae904b59b5bb355f6cc75dc642ffbea1ccea4500276671ca4ec0841c82', 99, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 2]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', 132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/month-year","value":"past12months~","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(551, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(551, 1, 'b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', 121, SYSTEM_COMBINE_CLOB(551)), +(X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', 120, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', 173, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', 214, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', 273, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'), +(X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', 318, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', 109, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",693,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",695,null]]}],"async?":true,"cache-ttl":null}'), +(X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', 111, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"6299a85e","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"45724d13","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'), +(X'27527cfc06ec25ed07c1e450cb856754ebc036ac8adf76108f11295ddbe3ad74', 107, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"past12months~","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"}],"async?":true,"cache-ttl":null}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', 629, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"async?":true,"cache-ttl":null}'), +(X'e39d3ccdae25507b433b0da43345856c45e1b0a384981b7ab9d0a911ffffdd61', 101, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 2]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'acf5e1ea0b4b290d62f1bb522be9f8d8e6ce1e8e812ed88aaba6fcae2fd37be7', 121, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 5]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native","middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'155a93684029b359d04495f642a838bb16317c658b59be05716027d73606c880', 91, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee"}],"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'111fafb7726dc2c0989708438675665590c4cd4071bae329861a974b100d0c05', 89, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":true,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"parameters":[{"type":"date/all-options","value":"thisday","target":["dimension",["template-tag","filterDate"]],"id":"56e116a3-0612-74c2-b84a-28f672d719ef"}],"async?":true,"cache-ttl":null}'), +(X'bfcabc9e33602776120243e08c2f9430dd3da3c05bac112b974398eb1295ee68', 135, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false,"process-viz-settings?":false},"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"database":3,"async?":true,"cache-ttl":null}'); +INSERT INTO SYSTEM_LOB_STREAM VALUES(552, 0, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"native","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'',', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(552, 1, ' 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3,"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["template-tag","filterEvent"]]},{"type":"date/all-options","value":"past12months~","id":"7d44a6ef","target":["dimension",["template-tag","filterDate"]]}],"async?":true,"cache-ttl":null}', NULL); +INSERT INTO PUBLIC.QUERY(QUERY_HASH, AVERAGE_EXECUTION_TIME, QUERY) VALUES +(X'2a479496b36e8ec0650ba320fedbaa1861052e90dc2b651b595254fe5707929c', 125, '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3,"middleware":{"js-int-to-string?":true,"add-default-userland-constraints?":true}}'), +(X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', 77, SYSTEM_COMBINE_CLOB(552)), +(X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', 132, '{"constraints":{"max-results":10000,"max-results-bare-rows":2000},"type":"query","middleware":{"js-int-to-string?":true,"ignore-cached-results?":false},"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"ADMIN_STRUCTURE"],"Admin Structure"],[["=",["field",668,null],"CRVS_OFFICE"],"CRVS Office"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"OTHER"],"Other"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"parameters":[{"type":"string/=","value":["Birth"],"id":"65d94567","target":["dimension",["field",666,null]]},{"type":"date/all-options","value":"past12months~","id":"7d44a6ef","target":["dimension",["field",677,null]]}],"async?":true,"cache-ttl":null}'); +CREATE CACHED TABLE PUBLIC.PERMISSIONS_GROUP( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_9543541B_5507_46A3_A990_9384645E1E07) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_9543541B_5507_46A3_A990_9384645E1E07, + NAME VARCHAR(255) NOT NULL +); +ALTER TABLE PUBLIC.PERMISSIONS_GROUP ADD CONSTRAINT PUBLIC.PK_PERMISSIONS_GROUP PRIMARY KEY(ID); +-- 2 +/- SELECT COUNT(*) FROM PUBLIC.PERMISSIONS_GROUP; +INSERT INTO PUBLIC.PERMISSIONS_GROUP(ID, NAME) VALUES +(1, 'All Users'), +(2, 'Administrators'); +CREATE INDEX PUBLIC.IDX_PERMISSIONS_GROUP_NAME ON PUBLIC.PERMISSIONS_GROUP(NAME); +CREATE CACHED TABLE PUBLIC.DASHBOARDCARD_SERIES( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_3C4E6475_0A1E_415F_9EB4_DB0920D42268) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_3C4E6475_0A1E_415F_9EB4_DB0920D42268, + DASHBOARDCARD_ID INT NOT NULL, + CARD_ID INT NOT NULL, + POSITION INT NOT NULL +); +ALTER TABLE PUBLIC.DASHBOARDCARD_SERIES ADD CONSTRAINT PUBLIC.PK_DASHBOARDCARD_SERIES PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.DASHBOARDCARD_SERIES; +CREATE INDEX PUBLIC.IDX_DASHBOARDCARD_SERIES_DASHBOARDCARD_ID ON PUBLIC.DASHBOARDCARD_SERIES(DASHBOARDCARD_ID); +CREATE INDEX PUBLIC.IDX_DASHBOARDCARD_SERIES_CARD_ID ON PUBLIC.DASHBOARDCARD_SERIES(CARD_ID); +CREATE CACHED TABLE PUBLIC.QRTZ_JOB_DETAILS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL, + JOB_NAME VARCHAR(200) NOT NULL, + JOB_GROUP VARCHAR(200) NOT NULL, + DESCRIPTION VARCHAR(250), + JOB_CLASS_NAME VARCHAR(250) NOT NULL, + IS_DURABLE BOOLEAN NOT NULL, + IS_NONCONCURRENT BOOLEAN NOT NULL, + IS_UPDATE_DATA BOOLEAN NOT NULL, + REQUESTS_RECOVERY BOOLEAN NOT NULL, + JOB_DATA BLOB +); +ALTER TABLE PUBLIC.QRTZ_JOB_DETAILS ADD CONSTRAINT PUBLIC.PK_QRTZ_JOB_DETAILS PRIMARY KEY(SCHED_NAME, JOB_NAME, JOB_GROUP); +-- 11 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_JOB_DETAILS; +INSERT INTO PUBLIC.QRTZ_JOB_DETAILS(SCHED_NAME, JOB_NAME, JOB_GROUP, DESCRIPTION, JOB_CLASS_NAME, IS_DURABLE, IS_NONCONCURRENT, IS_UPDATE_DATA, REQUESTS_RECOVERY, JOB_DATA) VALUES +('MetabaseScheduler', 'metabase.task.upgrade-checks.job', 'DEFAULT', NULL, 'metabase.task.upgrade_checks.CheckForNewVersions', FALSE, FALSE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.anonymous-stats.job', 'DEFAULT', NULL, 'metabase.task.send_anonymous_stats.SendAnonymousUsageStats', FALSE, FALSE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.refresh-channel-cache.job', 'DEFAULT', NULL, 'metabase.task.refresh_slack_channel_user_cache.RefreshCache', FALSE, FALSE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.abandonment-emails.job', 'DEFAULT', NULL, 'metabase.task.follow_up_emails.AbandonmentEmail', FALSE, FALSE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.send-pulses.job', 'DEFAULT', NULL, 'metabase.task.send_pulses.SendPulses', FALSE, FALSE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.follow-up-emails.job', 'DEFAULT', NULL, 'metabase.task.follow_up_emails.FollowUpEmail', FALSE, FALSE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'); +INSERT INTO PUBLIC.QRTZ_JOB_DETAILS(SCHED_NAME, JOB_NAME, JOB_GROUP, DESCRIPTION, JOB_CLASS_NAME, IS_DURABLE, IS_NONCONCURRENT, IS_UPDATE_DATA, REQUESTS_RECOVERY, JOB_DATA) VALUES +('MetabaseScheduler', 'metabase.task.task-history-cleanup.job', 'DEFAULT', NULL, 'metabase.task.task_history_cleanup.TaskHistoryCleanup', FALSE, FALSE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.sync-and-analyze.job', 'DEFAULT', 'sync-and-analyze for all databases', 'metabase.task.sync_databases.SyncAndAnalyzeDatabase', TRUE, TRUE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.update-field-values.job', 'DEFAULT', 'update-field-values for all databases', 'metabase.task.sync_databases.UpdateFieldValues', TRUE, TRUE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.PersistenceRefresh.job', 'DEFAULT', 'Persisted Model refresh task', 'metabase.task.persist_refresh.PersistenceRefresh', TRUE, TRUE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'), +('MetabaseScheduler', 'metabase.task.PersistencePrune.job', 'DEFAULT', 'Persisted Model prune task', 'metabase.task.persist_refresh.PersistencePrune', TRUE, TRUE, FALSE, FALSE, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f40000000000010770800000010000000007800'); +CREATE INDEX PUBLIC.IDX_QRTZ_J_REQ_RECOVERY ON PUBLIC.QRTZ_JOB_DETAILS(SCHED_NAME, REQUESTS_RECOVERY); +CREATE INDEX PUBLIC.IDX_QRTZ_J_GRP ON PUBLIC.QRTZ_JOB_DETAILS(SCHED_NAME, JOB_GROUP); +CREATE CACHED TABLE PUBLIC.ACTIVITY( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_C9109A6C_C7C9_477B_8AA6_F1D8E4A94FF4) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_C9109A6C_C7C9_477B_8AA6_F1D8E4A94FF4, + TOPIC VARCHAR(32) NOT NULL, + TIMESTAMP TIMESTAMP NOT NULL, + USER_ID INT, + MODEL VARCHAR(16), + MODEL_ID INT, + DATABASE_ID INT, + TABLE_ID INT, + CUSTOM_ID VARCHAR(48), + DETAILS CLOB NOT NULL +); +ALTER TABLE PUBLIC.ACTIVITY ADD CONSTRAINT PUBLIC.PK_ACTIVITY PRIMARY KEY(ID); +-- 390 +/- SELECT COUNT(*) FROM PUBLIC.ACTIVITY; +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(1, 'install', TIMESTAMP '2022-12-13 12:22:10.685', NULL, 'install', NULL, NULL, NULL, NULL, '{}'), +(2, 'user-joined', TIMESTAMP '2022-12-13 12:23:43.767', 1, 'user', 1, NULL, NULL, NULL, '{}'), +(3, 'card-create', TIMESTAMP '2022-12-13 13:55:36.194', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(4, 'card-update', TIMESTAMP '2022-12-13 14:13:30.454', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(5, 'dashboard-create', TIMESTAMP '2022-12-13 14:15:06.93', 1, 'dashboard', 1, NULL, NULL, NULL, '{"description":null,"name":"Live Births"}'), +(6, 'dashboard-add-cards', TIMESTAMP '2022-12-13 14:23:08.201', 1, 'dashboard', 1, NULL, NULL, NULL, '{"description":null,"name":"Live Births","dashcards":[{"name":"Live births registered by age of child (Total)","description":null,"id":1,"card_id":1}]}'), +(7, 'card-update', TIMESTAMP '2022-12-13 14:57:45.446', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(8, 'card-update', TIMESTAMP '2022-12-13 14:59:36.983', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(9, 'card-update', TIMESTAMP '2022-12-13 15:11:57.152', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(10, 'card-update', TIMESTAMP '2022-12-13 15:12:41.424', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(11, 'card-update', TIMESTAMP '2022-12-13 15:40:50.495', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(12, 'card-create', TIMESTAMP '2022-12-13 16:05:38.694', 1, 'card', 2, 2, NULL, NULL, '{"name":"Under 1 (at the time of registration)","description":null}'), +(13, 'dashboard-add-cards', TIMESTAMP '2022-12-13 16:06:33.995', 1, 'dashboard', 1, NULL, NULL, NULL, '{"description":null,"name":"Live Births","dashcards":[{"name":"Under 1 (at the time of registration)","description":null,"id":2,"card_id":2}]}'), +(14, 'card-update', TIMESTAMP '2022-12-13 16:06:51.042', 1, 'card', 2, 2, NULL, NULL, '{"name":"Under 1 Year (at the time of registration)","description":null}'), +(15, 'card-update', TIMESTAMP '2022-12-13 16:07:10.597', 1, 'card', 2, 2, NULL, NULL, '{"name":"Under 1 Year (at the time of registration)","description":null}'), +(16, 'card-create', TIMESTAMP '2022-12-13 16:09:24.395', 1, 'card', 3, 2, NULL, NULL, '{"name":"Under 5 Years (at the time of registration)","description":null}'), +(17, 'dashboard-add-cards', TIMESTAMP '2022-12-13 16:09:59.475', 1, 'dashboard', 1, NULL, NULL, NULL, '{"description":null,"name":"Live Births","dashcards":[{"name":"Under 5 Years (at the time of registration)","description":null,"id":3,"card_id":3}]}'), +(18, 'card-update', TIMESTAMP '2022-12-13 16:10:06.738', 1, 'card', 3, 2, NULL, NULL, '{"name":"Under 5 Years (at the time of registration)","description":null}'), +(19, 'card-update', TIMESTAMP '2022-12-13 16:10:30.957', 1, 'card', 3, 2, NULL, NULL, '{"name":"Under 5 Years (at the time of registration)","description":null}'), +(20, 'card-update', TIMESTAMP '2022-12-13 16:15:49.341', 1, 'card', 2, 2, NULL, NULL, '{"name":"Age under 1 year (at the time of registration)","description":null}'), +(21, 'card-update', TIMESTAMP '2022-12-13 16:16:05.224', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 Years (at the time of registration)","description":null}'), +(22, 'card-update', TIMESTAMP '2022-12-13 16:31:44.893', 1, 'card', 2, 2, NULL, NULL, '{"name":"Age under 1 year (at the time of registration)","description":null}'), +(23, 'card-update', TIMESTAMP '2022-12-13 16:32:00.109', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 Years (at the time of registration)","description":null}'), +(24, 'card-update', TIMESTAMP '2022-12-13 16:32:36.683', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(25, 'card-create', TIMESTAMP '2022-12-13 19:04:05.869', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years (at the time of registration) - II","description":"bar graph with percentage"}'), +(26, 'dashboard-add-cards', TIMESTAMP '2022-12-13 19:04:22.617', 1, 'dashboard', 1, NULL, NULL, NULL, '{"description":null,"name":"Live Births","dashcards":[{"name":"Age under 5 Years (at the time of registration) - II","description":"bar graph with percentage","id":4,"card_id":4}]}'), +(27, 'card-update', TIMESTAMP '2022-12-13 19:06:04.753', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years (at the time of registration) - II","description":"bar graph with percentage"}'), +(28, 'card-update', TIMESTAMP '2022-12-13 19:06:29.007', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years (at the time of registration) - II","description":"bar graph with percentage"}'), +(29, 'card-update', TIMESTAMP '2022-12-13 19:46:13.354', 1, 'card', 1, 2, NULL, NULL, '{"name":"Live births registered by age of child (Total)","description":null}'), +(30, 'card-update', TIMESTAMP '2022-12-13 19:55:43.499', 1, 'card', 1, 2, NULL, NULL, '{"name":"Total Birth Registered","description":null}'), +(31, 'card-update', TIMESTAMP '2022-12-13 19:56:10.793', 1, 'card', 2, 2, NULL, NULL, '{"name":"Age under 1 year","description":null}'), +(32, 'card-update', TIMESTAMP '2022-12-13 19:56:57.426', 1, 'card', 2, 2, NULL, NULL, '{"name":"Age under 1 year","description":"Those who were under 1 year age at the time of registration"}'), +(33, 'card-update', TIMESTAMP '2022-12-13 19:57:33.144', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 years","description":null}'), +(34, 'card-update', TIMESTAMP '2022-12-13 19:57:40.806', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 years","description":"Those who were under 5 years age at the time of registration"}'), +(35, 'card-update', TIMESTAMP '2022-12-13 19:58:01.825', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years (at the time of registration) - II","description":"Those who were under 1 year age at the time of registration (in bar chart)"}'), +(36, 'card-update', TIMESTAMP '2022-12-13 19:58:08.14', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years - II","description":"Those who were under 1 year age at the time of registration (in bar chart)"}'), +(37, 'card-update', TIMESTAMP '2022-12-14 12:07:49.471', 1, 'card', 2, 2, NULL, NULL, '{"name":"Age under 1 year","description":"Those who were under 1 year age at the time of registration"}'), +(38, 'card-update', TIMESTAMP '2022-12-14 12:07:52.56', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 years","description":"Those who were under 5 years age at the time of registration"}'), +(39, 'card-update', TIMESTAMP '2022-12-14 12:07:54.914', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years - II","description":"Those who were under 1 year age at the time of registration (in bar chart)"}'), +(40, 'card-update', TIMESTAMP '2022-12-14 12:07:56.824', 1, 'card', 1, 2, NULL, NULL, '{"name":"Total Birth Registered","description":null}'), +(41, 'card-create', TIMESTAMP '2022-12-14 12:29:12.626', 1, 'card', 5, 2, NULL, NULL, '{"name":"Total Birth Registered","description":null}'), +(42, 'card-update', TIMESTAMP '2022-12-14 12:32:52.371', 1, 'card', 2, 2, NULL, NULL, '{"name":"Age under 1 year","description":"Those who were under 1 year age at the time of registration"}'), +(43, 'card-update', TIMESTAMP '2022-12-14 12:33:04.937', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 years","description":"Those who were under 5 years age at the time of registration"}'), +(44, 'card-update', TIMESTAMP '2022-12-14 12:33:29.059', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years - II","description":"Those who were under 1 year age at the time of registration (in bar chart)"}'), +(45, 'card-create', TIMESTAMP '2022-12-14 12:38:23.171', 1, 'card', 6, 2, NULL, NULL, '{"name":"Within legally stipulated period","description":"Those who were registered within 30 days of birth"}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(46, 'card-create', TIMESTAMP '2022-12-14 12:44:07.806', 1, 'card', 7, 2, NULL, NULL, '{"name":"Late Birth Registration","description":"Those who registered between 30 days and 1 year of birth"}'), +(47, 'card-create', TIMESTAMP '2022-12-14 12:47:04.878', 1, 'card', 8, 2, NULL, NULL, '{"name":"Delayed Birth Registration","description":"Those who registered after 1 year of birth"}'), +(48, 'dashboard-create', TIMESTAMP '2022-12-14 12:48:54.902', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period"}'), +(49, 'dashboard-add-cards', TIMESTAMP '2022-12-14 12:52:28.427', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Late Birth Registration","description":"Those who registered between 30 days and 1 year of birth","id":7,"card_id":7}]}'), +(50, 'dashboard-add-cards', TIMESTAMP '2022-12-14 12:52:28.428', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Delayed Birth Registration","description":"Those who registered after 1 year of birth","id":6,"card_id":8}]}'), +(51, 'dashboard-add-cards', TIMESTAMP '2022-12-14 12:52:28.429', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"id":5,"card_id":null}]}'), +(52, 'dashboard-add-cards', TIMESTAMP '2022-12-14 12:52:28.433', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"id":8,"card_id":null}]}'), +(53, 'dashboard-add-cards', TIMESTAMP '2022-12-14 12:52:28.442', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Within legally stipulated period","description":"Those who were registered within 30 days of birth","id":10,"card_id":6}]}'), +(54, 'dashboard-add-cards', TIMESTAMP '2022-12-14 12:52:28.447', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Total Birth Registered","description":null,"id":9,"card_id":5}]}'), +(55, 'card-update', TIMESTAMP '2022-12-14 12:53:30.729', 1, 'card', 6, 2, NULL, NULL, '{"name":"Within legally stipulated period","description":"Those who were registered within 30 days of birth"}'), +(56, 'card-update', TIMESTAMP '2022-12-14 12:53:44.646', 1, 'card', 8, 2, NULL, NULL, '{"name":"Delayed Birth Registration","description":"Those who registered after 1 year of birth"}'), +(57, 'card-update', TIMESTAMP '2022-12-14 12:53:59.101', 1, 'card', 7, 2, NULL, NULL, '{"name":"Late Birth Registration","description":"Those who registered between 30 days and 1 year of birth"}'), +(58, 'dashboard-remove-cards', TIMESTAMP '2022-12-14 12:54:33.061', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"id":5,"card_id":null}]}'), +(59, 'dashboard-remove-cards', TIMESTAMP '2022-12-14 12:54:33.063', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"id":8,"card_id":null}]}'), +(60, 'dashboard-add-cards', TIMESTAMP '2022-12-14 15:03:30.378', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"id":11,"card_id":null}]}'), +(61, 'dashboard-remove-cards', TIMESTAMP '2022-12-14 15:03:54.697', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"id":11,"card_id":null}]}'), +(62, 'card-update', TIMESTAMP '2022-12-14 15:26:58.578', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 years","description":"Those who were under 5 years age at the time of registration"}'), +(63, 'card-update', TIMESTAMP '2022-12-14 15:27:06.519', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 Years","description":"Those who were under 1 year age at the time of registration (in bar chart)"}'), +(64, 'card-update', TIMESTAMP '2022-12-14 15:28:48.452', 1, 'card', 2, 2, NULL, NULL, '{"name":"Age under 1 year","description":"Those who were under 1 year age at the time of registration"}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(65, 'card-update', TIMESTAMP '2022-12-14 15:29:11.782', 1, 'card', 4, 2, NULL, NULL, '{"name":"Age under 5 years","description":"Those who were under 1 year age at the time of registration (in bar chart)"}'), +(66, 'card-create', TIMESTAMP '2022-12-14 18:09:38.276', 1, 'card', 9, 2, NULL, NULL, '{"name":"Live births by State","description":null}'), +(67, 'card-update', TIMESTAMP '2022-12-14 18:18:54.464', 1, 'card', 9, 2, NULL, NULL, '{"name":"Live births by State","description":null}'), +(68, 'card-create', TIMESTAMP '2022-12-14 18:42:08.069', 1, 'card', 10, 2, NULL, NULL, '{"name":"Total Registrations","description":null}'), +(69, 'card-update', TIMESTAMP '2022-12-14 18:49:55.959', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(70, 'card-create', TIMESTAMP '2022-12-14 18:53:39.219', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(71, 'card-update', TIMESTAMP '2022-12-14 19:22:09.273', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(72, 'card-create', TIMESTAMP '2022-12-14 19:46:36.074', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":null}'), +(73, 'card-update', TIMESTAMP '2022-12-15 12:01:14.399', 1, 'card', 9, 2, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(74, 'card-update', TIMESTAMP '2022-12-15 15:25:17.472', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(75, 'dashboard-remove-cards', TIMESTAMP '2022-12-15 15:27:19.323', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Within legally stipulated period","description":"Those who were registered within 30 days of birth","id":10,"card_id":6}]}'), +(76, 'dashboard-remove-cards', TIMESTAMP '2022-12-15 15:27:19.329', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Late Birth Registration","description":"Those who registered between 30 days and 1 year of birth","id":7,"card_id":7}]}'), +(77, 'dashboard-remove-cards', TIMESTAMP '2022-12-15 15:27:19.339', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Total Birth Registered","description":null,"id":9,"card_id":5}]}'), +(78, 'dashboard-remove-cards', TIMESTAMP '2022-12-15 15:27:19.355', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Delayed Birth Registration","description":"Those who registered after 1 year of birth","id":6,"card_id":8}]}'), +(79, 'dashboard-add-cards', TIMESTAMP '2022-12-15 15:27:19.401', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Registrations by State","description":null,"id":15,"card_id":9}]}'), +(80, 'dashboard-add-cards', TIMESTAMP '2022-12-15 15:27:19.403', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Registrations by gender","description":null,"id":14,"card_id":1}]}'), +(81, 'dashboard-add-cards', TIMESTAMP '2022-12-15 15:27:19.41', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Leaderboard by Registrars","description":null,"id":13,"card_id":12}]}'), +(82, 'dashboard-add-cards', TIMESTAMP '2022-12-15 15:27:19.418', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Birth registered by time period","dashcards":[{"name":"Total Registrations","description":null,"id":12,"card_id":10}]}'), +(83, 'card-update', TIMESTAMP '2022-12-15 15:29:02.485', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":null}'), +(84, 'dashboard-add-cards', TIMESTAMP '2022-12-16 08:34:03.835', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Registrations by age","description":null,"id":16,"card_id":11}]}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(85, 'card-update', TIMESTAMP '2022-12-16 09:11:19.446', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(86, 'card-update', TIMESTAMP '2022-12-16 09:18:56.181', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(87, 'card-update', TIMESTAMP '2022-12-16 09:19:08.392', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(88, 'card-create', TIMESTAMP '2022-12-16 10:23:02.89', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(89, 'card-update', TIMESTAMP '2022-12-16 10:25:00.229', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(90, 'card-update', TIMESTAMP '2022-12-16 10:37:09.62', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(91, 'dashboard-add-cards', TIMESTAMP '2022-12-16 10:39:48.528', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Completeness rate gauge","description":null,"id":17,"card_id":13}]}'), +(92, 'card-create', TIMESTAMP '2022-12-16 10:43:38.249', 1, 'card', 14, 2, 22, NULL, '{"name":"Registrations over time","description":null}'), +(93, 'dashboard-add-cards', TIMESTAMP '2022-12-16 10:44:13.236', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Registrations over time","description":null,"id":18,"card_id":14}]}'), +(94, 'card-update', TIMESTAMP '2022-12-16 11:57:10.693', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(95, 'card-update', TIMESTAMP '2022-12-16 12:01:44.619', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(96, 'card-update', TIMESTAMP '2022-12-16 12:03:29.167', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(97, 'card-create', TIMESTAMP '2022-12-16 12:08:12.823', 1, 'card', 15, 2, NULL, NULL, '{"name":"Filter date test","description":null}'), +(98, 'dashboard-add-cards', TIMESTAMP '2022-12-16 12:08:35.167', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Filter date test","description":null,"id":19,"card_id":15}]}'), +(99, 'card-update', TIMESTAMP '2022-12-16 12:11:58.98', 1, 'card', 15, 2, NULL, NULL, '{"name":"Filter date test","description":null}'), +(100, 'card-update', TIMESTAMP '2022-12-16 12:13:28.888', 1, 'card', 15, 2, NULL, NULL, '{"name":"Filter date test","description":null}'), +(101, 'card-update', TIMESTAMP '2022-12-16 12:15:26.282', 1, 'card', 15, 2, NULL, NULL, '{"name":"Filter date test","description":null}'), +(102, 'dashboard-remove-cards', TIMESTAMP '2022-12-16 12:17:51.107', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Filter date test","description":null,"id":19,"card_id":15}]}'), +(103, 'card-update', TIMESTAMP '2022-12-16 12:18:44.731', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(104, 'card-update', TIMESTAMP '2022-12-16 12:26:04.116', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(105, 'card-update', TIMESTAMP '2022-12-16 12:32:02.563', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(106, 'card-update', TIMESTAMP '2022-12-16 12:39:30.497', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(107, 'card-update', TIMESTAMP '2022-12-16 12:41:51.798', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(108, 'card-update', TIMESTAMP '2022-12-16 13:00:42.757', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(109, 'card-update', TIMESTAMP '2022-12-16 13:00:51.305', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(110, 'card-create', TIMESTAMP '2022-12-16 13:06:40.367', 1, 'card', 16, 2, 22, NULL, '{"name":"Total Registrations (without native query)","description":null}'), +(111, 'dashboard-remove-cards', TIMESTAMP '2022-12-16 13:07:17.797', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Total Registrations","description":null,"id":12,"card_id":10}]}'), +(112, 'dashboard-add-cards', TIMESTAMP '2022-12-16 13:07:18.025', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Total Registrations (without native query)","description":null,"id":20,"card_id":16}]}'), +(113, 'card-update', TIMESTAMP '2022-12-16 13:08:02.862', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(114, 'card-update', TIMESTAMP '2022-12-16 13:08:10.763', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(115, 'card-update', TIMESTAMP '2022-12-16 13:08:26.985', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(116, 'card-update', TIMESTAMP '2022-12-16 13:09:55.078', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(117, 'card-update', TIMESTAMP '2022-12-16 13:10:28.409', 1, 'card', 16, 2, 22, NULL, '{"name":"Total Registrations (without native query)","description":null}'), +(118, 'card-update', TIMESTAMP '2022-12-16 13:11:01.985', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":null}'), +(119, 'card-update', TIMESTAMP '2022-12-16 13:11:58.864', 1, 'card', 9, 2, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(120, 'card-update', TIMESTAMP '2022-12-16 13:13:36.432', 1, 'card', 16, 2, 22, NULL, '{"name":"Total Registrations (without native query)","description":null}'), +(121, 'card-update', TIMESTAMP '2022-12-16 13:14:54.844', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(122, 'card-update', TIMESTAMP '2022-12-16 13:15:05.82', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(123, 'card-update', TIMESTAMP '2022-12-16 13:15:44.573', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(124, 'card-update', TIMESTAMP '2022-12-16 13:16:38.306', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":null}'), +(125, 'card-update', TIMESTAMP '2022-12-16 13:16:44.123', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":null}'), +(126, 'card-update', TIMESTAMP '2022-12-16 13:17:02.253', 1, 'card', 9, 2, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(127, 'card-update', TIMESTAMP '2022-12-16 13:40:00.12', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(128, 'card-update', TIMESTAMP '2022-12-16 13:40:09.132', 1, 'card', 11, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(129, 'card-update', TIMESTAMP '2022-12-16 13:42:13.938', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(130, 'card-update', TIMESTAMP '2022-12-19 06:41:15.376', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(131, 'card-create', TIMESTAMP '2022-12-19 07:33:52.334', 1, 'card', 17, 2, NULL, NULL, '{"name":"Place of birth","description":null}'), +(132, 'card-update', TIMESTAMP '2022-12-19 07:36:57.445', 1, 'card', 17, 2, NULL, NULL, '{"name":"Place of birth","description":null}'), +(133, 'card-create', TIMESTAMP '2022-12-19 08:37:34.146', 1, 'card', 18, 2, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(134, 'card-create', TIMESTAMP '2022-12-19 08:50:07.851', 1, 'card', 19, 2, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(135, 'card-update', TIMESTAMP '2022-12-19 09:28:20.207', 1, 'card', 19, 2, NULL, NULL, '{"name":"Live births by Order","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(136, 'card-update', TIMESTAMP '2022-12-19 09:31:08.23', 1, 'card', 19, 2, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(137, 'card-update', TIMESTAMP '2022-12-19 09:31:47.847', 1, 'card', 19, 2, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(138, 'card-create', TIMESTAMP '2022-12-19 09:56:45.354', 1, 'card', 20, 2, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(139, 'card-update', TIMESTAMP '2022-12-19 10:14:19.744', 1, 'card', 20, 2, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(140, 'card-update', TIMESTAMP '2022-12-19 10:18:25.802', 1, 'card', 20, 2, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(141, 'card-create', TIMESTAMP '2022-12-19 10:32:35.29', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(142, 'card-create', TIMESTAMP '2022-12-19 10:39:30.593', 1, 'card', 22, 2, NULL, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(143, 'dashboard-create', TIMESTAMP '2022-12-20 05:46:30.83', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard"}'), +(144, 'dashboard-add-cards', TIMESTAMP '2022-12-20 05:50:39.665', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live births by age of Mother","description":null,"id":21,"card_id":20}]}'), +(145, 'dashboard-add-cards', TIMESTAMP '2022-12-20 05:50:39.674', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Place of birth","description":null,"id":23,"card_id":17}]}'), +(146, 'dashboard-add-cards', TIMESTAMP '2022-12-20 05:50:39.688', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Literacy of parents","description":null,"id":24,"card_id":18}]}'), +(147, 'dashboard-add-cards', TIMESTAMP '2022-12-20 05:50:39.708', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live Births by Level of Education of Parent","description":null,"id":25,"card_id":21}]}'), +(148, 'dashboard-add-cards', TIMESTAMP '2022-12-20 05:50:39.756', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live births by Order","description":null,"id":22,"card_id":19}]}'), +(149, 'dashboard-add-cards', TIMESTAMP '2022-12-20 05:50:39.804', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live Births by Type of Birth","description":null,"id":26,"card_id":22}]}'), +(150, 'card-update', TIMESTAMP '2022-12-20 05:52:36.061', 1, 'card', 19, 2, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(151, 'card-update', TIMESTAMP '2022-12-20 05:53:22.363', 1, 'card', 18, 2, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(152, 'card-update', TIMESTAMP '2022-12-20 05:58:12.672', 1, 'card', 20, 2, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(153, 'card-update', TIMESTAMP '2022-12-20 05:59:05.28', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(154, 'card-create', TIMESTAMP '2022-12-20 06:51:23.578', 1, 'card', 23, 2, NULL, NULL, '{"name":"Corrections by type","description":null}'), +(155, 'card-update', TIMESTAMP '2022-12-20 06:57:45.679', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(156, 'card-update', TIMESTAMP '2022-12-20 06:58:51.465', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(157, 'card-update', TIMESTAMP '2022-12-20 07:02:29.843', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(158, 'card-update', TIMESTAMP '2022-12-20 07:03:35.869', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(159, 'card-update', TIMESTAMP '2022-12-20 07:10:28.995', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(160, 'card-update', TIMESTAMP '2022-12-20 07:24:45.78', 1, 'card', 18, 2, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(161, 'card-update', TIMESTAMP '2022-12-20 07:29:33.522', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":null}'), +(162, 'card-create', TIMESTAMP '2022-12-20 07:54:32.406', 1, 'card', 24, 2, NULL, NULL, '{"name":"Certificates issued","description":null}'), +(163, 'card-create', TIMESTAMP '2022-12-20 08:01:05.818', 1, 'card', 25, 2, NULL, NULL, '{"name":"Corrections by type","description":null}'), +(164, 'card-update', TIMESTAMP '2022-12-20 08:01:22.652', 1, 'card', 23, 2, NULL, NULL, '{"name":"Corrections by type","description":null}'), +(165, 'dashboard-add-cards', TIMESTAMP '2022-12-20 08:25:00.901', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Corrections by type","description":null,"id":27,"card_id":25}]}'), +(166, 'card-create', TIMESTAMP '2022-12-20 08:34:27.532', 1, 'card', 26, 2, 22, NULL, '{"name":"Birth order by mother''s age","description":null}'), +(167, 'card-update', TIMESTAMP '2022-12-20 08:46:50.8', 1, 'card', 26, 2, 22, NULL, '{"name":"Birth order by mother''s age","description":null}'), +(168, 'card-update', TIMESTAMP '2022-12-20 08:47:39.391', 1, 'card', 26, 2, 22, NULL, '{"name":"Birth order by mother''s age","description":null}'), +(169, 'dashboard-add-cards', TIMESTAMP '2022-12-20 08:50:18.742', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Birth order by mother''s age","description":null,"id":28,"card_id":26}]}'), +(170, 'card-create', TIMESTAMP '2022-12-20 09:21:07.349', 1, 'card', 27, 2, 22, NULL, '{"name":"Place of birth","description":null}'), +(171, 'card-update', TIMESTAMP '2022-12-20 09:21:27.082', 1, 'card', 17, 2, NULL, NULL, '{"name":"Place of birth","description":null}'), +(172, 'dashboard-add-cards', TIMESTAMP '2022-12-20 09:22:09.917', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Place of birth","description":null,"id":29,"card_id":27}]}'), +(173, 'card-create', TIMESTAMP '2022-12-20 09:26:38.506', 1, 'card', 28, 2, 68, NULL, '{"name":"Corrections by type","description":null}'), +(174, 'card-update', TIMESTAMP '2022-12-20 09:27:12.876', 1, 'card', 25, 2, NULL, NULL, '{"name":"Corrections by type","description":null}'), +(175, 'dashboard-add-cards', TIMESTAMP '2022-12-20 09:27:49.945', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Corrections by type","description":null,"id":30,"card_id":28}]}'), +(176, 'card-create', TIMESTAMP '2022-12-20 09:32:38.032', 1, 'card', 29, 2, 22, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(177, 'card-update', TIMESTAMP '2022-12-20 09:32:52.079', 1, 'card', 22, 2, NULL, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(178, 'dashboard-add-cards', TIMESTAMP '2022-12-20 09:33:28.442', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live Births by Type of Birth","description":null,"id":31,"card_id":29}]}'), +(179, 'card-update', TIMESTAMP '2022-12-20 09:40:55.073', 1, 'card', 9, 2, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(180, 'card-update', TIMESTAMP '2022-12-20 09:41:25.002', 1, 'card', 9, 2, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(181, 'card-update', TIMESTAMP '2022-12-20 09:42:42.884', 1, 'card', 9, 2, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(182, 'card-update', TIMESTAMP '2022-12-20 09:45:32.808', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(183, 'card-update', TIMESTAMP '2022-12-20 09:45:55.598', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars (last 30 days)","description":null}'), +(184, 'card-update', TIMESTAMP '2022-12-20 09:47:07.068', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars (last 30 days)","description":"This leaderboard is showing the result of past 30 days"}'), +(185, 'card-update', TIMESTAMP '2022-12-20 09:47:47.805', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(186, 'card-update', TIMESTAMP '2022-12-20 09:52:10.568', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(187, 'card-update', TIMESTAMP '2022-12-20 09:52:55.363', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(188, 'card-update', TIMESTAMP '2022-12-20 09:54:08.79', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(189, 'card-update', TIMESTAMP '2022-12-20 09:55:32.345', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(190, 'card-update', TIMESTAMP '2022-12-20 09:56:06.148', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(191, 'card-update', TIMESTAMP '2022-12-20 09:56:56.781', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(192, 'card-update', TIMESTAMP '2022-12-20 09:58:09.636', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(193, 'card-update', TIMESTAMP '2022-12-20 10:00:27.324', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(194, 'card-update', TIMESTAMP '2022-12-20 10:00:52.858', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(195, 'card-update', TIMESTAMP '2022-12-20 10:01:03.398', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(196, 'card-update', TIMESTAMP '2022-12-20 10:01:54.503', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(197, 'card-update', TIMESTAMP '2022-12-20 10:04:17.136', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars for last 30 days","description":"This leaderboard is showing the result of past 30 days"}'), +(198, 'card-create', TIMESTAMP '2022-12-20 10:12:01.22', 1, 'card', 30, 2, 22, NULL, '{"name":"Certificates issued","description":null}'), +(199, 'card-update', TIMESTAMP '2022-12-20 10:12:19.512', 1, 'card', 24, 2, NULL, NULL, '{"name":"Certificates issued","description":null}'), +(200, 'dashboard-add-cards', TIMESTAMP '2022-12-20 10:13:30.819', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Certificates issued","description":null,"id":32,"card_id":30}]}'), +(201, 'card-update', TIMESTAMP '2022-12-20 10:52:54.705', 1, 'card', 18, 2, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(202, 'card-update', TIMESTAMP '2022-12-20 11:07:50.615', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(203, 'card-update', TIMESTAMP '2022-12-20 11:08:29.569', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(204, 'card-update', TIMESTAMP '2022-12-20 11:09:37.648', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(205, 'card-update', TIMESTAMP '2022-12-20 11:10:03.419', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(206, 'card-update', TIMESTAMP '2022-12-20 11:10:24.536', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(207, 'card-update', TIMESTAMP '2022-12-20 11:11:13.459', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(208, 'card-update', TIMESTAMP '2022-12-20 11:11:32.828', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(209, 'card-update', TIMESTAMP '2022-12-20 11:14:45.352', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(210, 'card-update', TIMESTAMP '2022-12-20 12:09:14.256', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(211, 'card-update', TIMESTAMP '2022-12-20 12:22:44.283', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(212, 'card-update', TIMESTAMP '2022-12-20 12:23:27.131', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This leaderboard is showing the result of past 30 days"}'), +(213, 'card-update', TIMESTAMP '2022-12-20 12:41:33.771', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(214, 'card-update', TIMESTAMP '2022-12-20 12:41:57.539', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness rate gauge","description":null}'), +(215, 'card-update', TIMESTAMP '2022-12-20 13:25:59.146', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(216, 'card-create', TIMESTAMP '2022-12-21 07:21:48.039', 1, 'card', 31, 2, NULL, NULL, '{"name":"Live births registered by age of child v2","description":null}'), +(217, 'card-update', TIMESTAMP '2022-12-21 07:22:41.153', 1, 'card', 31, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(218, 'card-update', TIMESTAMP '2022-12-21 07:24:43.816', 1, 'card', 31, 2, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(219, 'dashboard-remove-cards', TIMESTAMP '2022-12-21 07:25:58.369', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Registrations by age","description":null,"id":16,"card_id":11}]}'), +(220, 'dashboard-add-cards', TIMESTAMP '2022-12-21 07:25:58.78', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Registrations by age","description":null,"id":33,"card_id":31}]}'), +(221, 'card-update', TIMESTAMP '2022-12-21 07:32:07.372', 1, 'card', 27, 2, 22, NULL, '{"name":"Place of birth","description":null}'), +(222, 'card-update', TIMESTAMP '2022-12-21 07:32:38.955', 1, 'card', 28, 2, 68, NULL, '{"name":"Corrections by type","description":null}'), +(223, 'card-update', TIMESTAMP '2022-12-21 10:50:07.491', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(224, 'card-update', TIMESTAMP '2022-12-21 10:51:09.249', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard by Registrars","description":"This widget will show the result of past 30 days (default)"}'), +(225, 'card-update', TIMESTAMP '2022-12-21 10:54:08.772', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(226, 'card-update', TIMESTAMP '2022-12-21 10:54:51.623', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(227, 'card-update', TIMESTAMP '2022-12-21 10:57:18.957', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(228, 'card-update', TIMESTAMP '2022-12-21 10:58:34.877', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(229, 'card-update', TIMESTAMP '2022-12-21 11:04:42.042', 1, 'card', 1, 2, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(230, 'card-delete', TIMESTAMP '2022-12-21 12:46:31.552', 1, 'card', 23, 2, NULL, NULL, '{"name":"Corrections by type","description":null}'), +(231, 'card-delete', TIMESTAMP '2022-12-21 12:46:34.541', 1, 'card', 24, 2, NULL, NULL, '{"name":"Certificates issued","description":null}'), +(232, 'card-delete', TIMESTAMP '2022-12-21 12:46:36.558', 1, 'card', 22, 2, NULL, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(233, 'card-delete', TIMESTAMP '2022-12-21 12:46:38.2', 1, 'card', 25, 2, NULL, NULL, '{"name":"Corrections by type","description":null}'), +(234, 'card-delete', TIMESTAMP '2022-12-21 12:46:43.082', 1, 'card', 17, 2, NULL, NULL, '{"name":"Place of birth","description":null}'), +(235, 'card-delete', TIMESTAMP '2022-12-21 12:46:43.905', 1, 'card', 3, 2, NULL, NULL, '{"name":"Age under 5 years","description":"Those who were under 5 years age at the time of registration"}'), +(236, 'card-update', TIMESTAMP '2022-12-22 08:17:00.368', 1, 'card', 12, 2, NULL, NULL, '{"name":"Leaderboard of Registrars","description":"This widget will show the result of past 30 days (default)"}'), +(237, 'card-update', TIMESTAMP '2022-12-22 08:20:14.701', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(238, 'card-update', TIMESTAMP '2022-12-22 08:22:34.08', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(239, 'card-update', TIMESTAMP '2022-12-22 11:58:18.331', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(240, 'card-update', TIMESTAMP '2022-12-22 11:59:23.643', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(241, 'card-update', TIMESTAMP '2022-12-22 12:03:33.945', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(242, 'card-update', TIMESTAMP '2022-12-22 12:03:42.576', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(243, 'card-update', TIMESTAMP '2022-12-22 13:35:28.761', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(244, 'card-update', TIMESTAMP '2022-12-22 13:40:01.147', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(245, 'card-update', TIMESTAMP '2022-12-22 13:41:36.111', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(246, 'card-update', TIMESTAMP '2022-12-22 13:45:51.028', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(247, 'card-update', TIMESTAMP '2022-12-22 13:50:18.85', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(248, 'card-update', TIMESTAMP '2022-12-22 13:50:35.114', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(249, 'card-update', TIMESTAMP '2022-12-22 13:58:31.47', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(250, 'card-update', TIMESTAMP '2022-12-22 14:02:22.349', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(251, 'card-update', TIMESTAMP '2022-12-22 14:02:32.003', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(252, 'card-update', TIMESTAMP '2022-12-22 17:41:43.062', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(253, 'card-update', TIMESTAMP '2022-12-23 09:05:33.922', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(254, 'card-update', TIMESTAMP '2022-12-23 09:05:45.585', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(255, 'card-update', TIMESTAMP '2022-12-23 09:05:53.4', 1, 'card', 13, 2, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(256, 'card-update', TIMESTAMP '2022-12-23 09:39:38.712', 1, 'card', 9, 2, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(257, 'card-update', TIMESTAMP '2022-12-23 11:30:38.676', 1, 'card', 19, 2, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(258, 'card-update', TIMESTAMP '2022-12-23 11:32:17.36', 1, 'card', 20, 2, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(259, 'card-update', TIMESTAMP '2022-12-23 11:32:37.051', 1, 'card', 21, 2, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(260, 'card-update', TIMESTAMP '2022-12-23 11:32:53.8', 1, 'card', 18, 2, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(261, 'card-update', TIMESTAMP '2022-12-23 11:37:13.296', 1, 'card', 19, 2, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(262, 'card-update', TIMESTAMP '2022-12-29 10:12:04.179', 1, 'card', 30, 3, 70, NULL, '{"name":"Certificates issued","description":null}'), +(263, 'card-update', TIMESTAMP '2022-12-29 10:14:18.349', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(264, 'card-update', TIMESTAMP '2022-12-29 10:16:49.441', 1, 'card', 28, 3, 71, NULL, '{"name":"Corrections by type","description":null}'), +(265, 'card-update', TIMESTAMP '2022-12-29 10:18:50.026', 1, 'card', 18, 3, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(266, 'card-update', TIMESTAMP '2022-12-29 10:20:09.555', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(267, 'card-update', TIMESTAMP '2022-12-29 10:21:28.933', 1, 'card', 21, 3, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(268, 'card-update', TIMESTAMP '2022-12-29 10:22:57.561', 1, 'card', 19, 3, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(269, 'card-update', TIMESTAMP '2022-12-29 10:24:24.282', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(270, 'card-update', TIMESTAMP '2022-12-29 10:25:22.892', 1, 'card', 29, 3, 70, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(271, 'card-update', TIMESTAMP '2022-12-29 10:26:26.832', 1, 'card', 2, 3, NULL, NULL, '{"name":"Age under 1 year","description":"Those who were under 1 year age at the time of registration"}'), +(272, 'card-update', TIMESTAMP '2022-12-29 10:27:42.109', 1, 'card', 4, 3, NULL, NULL, '{"name":"Age under 5 years","description":"Those who were under 1 year age at the time of registration (in bar chart)"}'), +(273, 'card-update', TIMESTAMP '2022-12-29 10:29:03.009', 1, 'card', 12, 3, NULL, NULL, '{"name":"Leaderboard of Registrars","description":"This widget will show the result of past 30 days (default)"}'), +(274, 'card-update', TIMESTAMP '2022-12-29 10:30:04.24', 1, 'card', 11, 3, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(275, 'card-update', TIMESTAMP '2022-12-29 10:31:02.465', 1, 'card', 31, 3, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(276, 'card-update', TIMESTAMP '2022-12-29 10:31:53.709', 1, 'card', 1, 3, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(277, 'card-update', TIMESTAMP '2022-12-29 10:32:36.05', 1, 'card', 10, 3, NULL, NULL, '{"name":"Total Registrations","description":null}'), +(278, 'card-update', TIMESTAMP '2022-12-29 10:33:14.306', 1, 'card', 8, 3, NULL, NULL, '{"name":"Delayed Birth Registration","description":"Those who registered after 1 year of birth"}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(279, 'card-update', TIMESTAMP '2022-12-29 10:33:45.392', 1, 'card', 7, 3, NULL, NULL, '{"name":"Late Birth Registration","description":"Those who registered between 30 days and 1 year of birth"}'), +(280, 'card-update', TIMESTAMP '2022-12-29 10:34:20.274', 1, 'card', 5, 3, NULL, NULL, '{"name":"Total Birth Registered","description":null}'), +(281, 'card-update', TIMESTAMP '2022-12-29 10:34:51.031', 1, 'card', 6, 3, NULL, NULL, '{"name":"Within legally stipulated period","description":"Those who were registered within 30 days of birth"}'), +(282, 'card-update', TIMESTAMP '2022-12-29 10:35:54.019', 1, 'card', 27, 3, 70, NULL, '{"name":"Place of birth","description":null}'), +(283, 'card-update', TIMESTAMP '2022-12-29 11:13:45.017', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(294, 'card-update', TIMESTAMP '2022-12-29 11:34:27.88', 1, 'card', 16, 3, 70, NULL, '{"name":"Total Registrations (without native query)","description":null}'), +(295, 'card-update', TIMESTAMP '2022-12-29 11:40:47.601', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over time","description":null}'), +(296, 'card-update', TIMESTAMP '2022-12-29 11:45:15.977', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(297, 'card-update', TIMESTAMP '2022-12-29 12:18:27.524', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(298, 'card-update', TIMESTAMP '2022-12-29 13:36:03.688', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(299, 'card-update', TIMESTAMP '2022-12-29 13:40:19.535', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(300, 'card-update', TIMESTAMP '2022-12-29 13:40:45.721', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(301, 'card-update', TIMESTAMP '2022-12-29 13:46:28.082', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(302, 'card-update', TIMESTAMP '2022-12-29 13:46:50.756', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State","description":null}'), +(303, 'card-update', TIMESTAMP '2022-12-29 13:51:15.032', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(304, 'card-update', TIMESTAMP '2023-01-24 10:07:53.236', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over time","description":null}'), +(305, 'card-update', TIMESTAMP '2023-01-24 10:10:27.085', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over time","description":null}'), +(306, 'card-create', TIMESTAMP '2023-01-24 10:30:25.571', 1, 'card', 32, 3, 70, NULL, '{"name":"Registrations by State","description":null}'), +(307, 'card-update', TIMESTAMP '2023-01-24 10:39:47.89', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State (%)","description":null}'), +(308, 'card-update', TIMESTAMP '2023-01-24 11:20:30.253', 1, 'card', 12, 3, NULL, NULL, '{"name":"Leaderboard of Registrars","description":""}'), +(309, 'card-update', TIMESTAMP '2023-01-24 11:20:41.443', 1, 'card', 12, 3, NULL, NULL, '{"name":"Leaderboard of Registrars","description":""}'), +(310, 'card-create', TIMESTAMP '2023-01-24 11:31:41.253', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(311, 'card-update', TIMESTAMP '2023-01-24 11:32:03.245', 1, 'card', 32, 3, 70, NULL, '{"name":"Registrations by State","description":null}'), +(312, 'card-update', TIMESTAMP '2023-01-24 11:33:36.315', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(313, 'card-update', TIMESTAMP '2023-01-24 11:54:15.894', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(314, 'card-update', TIMESTAMP '2023-01-24 12:10:26.964', 1, 'card', 21, 3, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(315, 'dashboard-add-cards', TIMESTAMP '2023-01-24 12:12:40.481', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Certificates issued","description":null,"id":34,"card_id":30}]}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(316, 'dashboard-add-cards', TIMESTAMP '2023-01-24 12:12:40.487', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Registrations by State","description":null,"id":35,"card_id":33}]}'), +(317, 'card-update', TIMESTAMP '2023-01-24 13:24:30.905', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(318, 'card-update', TIMESTAMP '2023-01-24 13:25:15.287', 1, 'card', 30, 3, 70, NULL, '{"name":"% of Total Registrations Certified","description":null}'), +(319, 'card-update', TIMESTAMP '2023-01-24 13:27:14.049', 1, 'card', 27, 3, 70, NULL, '{"name":"Place of birth","description":null}'), +(320, 'card-update', TIMESTAMP '2023-01-24 13:45:39.112', 1, 'card', 18, 3, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(321, 'card-update', TIMESTAMP '2023-01-24 13:48:01.021', 1, 'card', 18, 3, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(322, 'card-update', TIMESTAMP '2023-01-24 13:49:46.43', 1, 'card', 18, 3, NULL, NULL, '{"name":"Literacy of parents","description":null}'), +(323, 'card-update', TIMESTAMP '2023-01-25 07:30:28.318', 1, 'card', 31, 3, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(324, 'card-update', TIMESTAMP '2023-01-25 07:42:00.391', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(325, 'dashboard-remove-cards', TIMESTAMP '2023-01-25 08:02:55.877', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"% of Total Registrations Certified","description":null,"id":32,"card_id":30}]}'), +(326, 'card-update', TIMESTAMP '2023-01-25 12:20:12.749', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over time","description":null}'), +(327, 'card-update', TIMESTAMP '2023-01-25 12:20:44.047', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over time","description":null}'), +(328, 'card-update', TIMESTAMP '2023-01-25 12:21:52.788', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over time","description":null}'), +(329, 'card-update', TIMESTAMP '2023-01-25 12:25:18.855', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(330, 'card-update', TIMESTAMP '2023-01-25 12:31:36.028', 1, 'card', 31, 3, NULL, NULL, '{"name":"Registrations by age","description":null}'), +(331, 'card-update', TIMESTAMP '2023-01-25 12:33:01.391', 1, 'card', 1, 3, NULL, NULL, '{"name":"Registrations by gender","description":null}'), +(332, 'card-update', TIMESTAMP '2023-01-25 12:33:59.5', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(333, 'card-update', TIMESTAMP '2023-01-25 12:34:39.537', 1, 'card', 30, 3, 70, NULL, '{"name":"% of Total Registrations Certified","description":null}'), +(334, 'card-update', TIMESTAMP '2023-01-25 12:42:53.399', 1, 'card', 12, 3, NULL, NULL, '{"name":"Leaderboard of Registrars","description":""}'), +(335, 'card-update', TIMESTAMP '2023-01-25 13:36:37.225', 1, 'card', 29, 3, 70, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(336, 'card-update', TIMESTAMP '2023-01-25 13:51:35.908', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over time","description":null}'), +(337, 'card-update', TIMESTAMP '2023-01-26 06:57:00.136', 1, 'card', 28, 3, 71, NULL, '{"name":"Corrections by type","description":null}'), +(338, 'card-update', TIMESTAMP '2023-01-26 08:56:29.758', 1, 'card', 18, 3, NULL, NULL, '{"name":"Live birth by literacy of parents","description":null}'), +(339, 'card-update', TIMESTAMP '2023-01-26 08:56:46.903', 1, 'card', 18, 3, NULL, NULL, '{"name":"Live births by literacy of parents","description":null}'), +(340, 'card-update', TIMESTAMP '2023-01-26 08:57:06.267', 1, 'card', 18, 3, NULL, NULL, '{"name":"Live Births by Literacy of Parents","description":null}'), +(341, 'dashboard-add-cards', TIMESTAMP '2023-01-26 08:59:23.241', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Corrections by type","description":null,"id":36,"card_id":28}]}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(342, 'card-update', TIMESTAMP '2023-01-26 09:00:03.562', 1, 'card', 28, 3, 71, NULL, '{"name":"Record Corrections by Type","description":null}'), +(343, 'dashboard-remove-cards', TIMESTAMP '2023-01-26 09:00:34.155', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Record Corrections by Type","description":null,"id":30,"card_id":28}]}'), +(344, 'card-update', TIMESTAMP '2023-01-26 09:06:07.916', 1, 'card', 19, 3, NULL, NULL, '{"name":"Live births by Order","description":null}'), +(345, 'card-update', TIMESTAMP '2023-01-26 09:07:24.842', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live births by age of Mother","description":null}'), +(346, 'card-update', TIMESTAMP '2023-01-26 09:07:59.575', 1, 'card', 18, 3, NULL, NULL, '{"name":"Live Births by Literacy of Parents","description":null}'), +(347, 'card-update', TIMESTAMP '2023-01-26 09:08:21.675', 1, 'card', 21, 3, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(348, 'card-update', TIMESTAMP '2023-01-26 09:09:12.973', 1, 'card', 27, 3, 70, NULL, '{"name":"Place of birth","description":null}'), +(349, 'card-update', TIMESTAMP '2023-01-26 09:10:07.405', 1, 'card', 29, 3, 70, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(350, 'card-update', TIMESTAMP '2023-01-26 09:17:57.034', 1, 'card', 31, 3, NULL, NULL, '{"name":"Registrations by Age","description":null}'), +(351, 'card-update', TIMESTAMP '2023-01-26 09:18:10.125', 1, 'card', 1, 3, NULL, NULL, '{"name":"Registrations by Gender","description":null}'), +(352, 'card-update', TIMESTAMP '2023-01-26 09:18:54.421', 1, 'card', 14, 3, 70, NULL, '{"name":"Registrations over Time","description":null}'), +(353, 'card-update', TIMESTAMP '2023-01-26 09:25:34.798', 1, 'card', 31, 3, NULL, NULL, '{"name":"Registrations by Age","description":null}'), +(354, 'card-update', TIMESTAMP '2023-01-26 09:28:44.253', 1, 'card', 28, 3, 71, NULL, '{"name":"Record Corrections by Type","description":null}'), +(355, 'card-update', TIMESTAMP '2023-01-26 09:34:47.989', 1, 'card', 18, 3, NULL, NULL, '{"name":"Live Births by Literacy of Parents","description":null}'), +(356, 'card-update', TIMESTAMP '2023-01-26 09:36:24.513', 1, 'card', 21, 3, NULL, NULL, '{"name":"Live Births by Level of Education of Parent","description":null}'), +(357, 'card-update', TIMESTAMP '2023-01-26 09:36:39.811', 1, 'card', 19, 3, NULL, NULL, '{"name":"Live Births by Order","description":null}'), +(358, 'card-update', TIMESTAMP '2023-01-26 09:36:55.093', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live Births by Age of Mother","description":null}'), +(359, 'card-update', TIMESTAMP '2023-01-26 09:37:31.864', 1, 'card', 27, 3, 70, NULL, '{"name":"Live Births by Place of Birth","description":null}'), +(360, 'card-update', TIMESTAMP '2023-01-26 09:45:02.521', 1, 'card', 30, 3, 70, NULL, '{"name":"% of Total Registrations Certified","description":null}'), +(361, 'card-update', TIMESTAMP '2023-01-26 09:45:41.042', 1, 'card', 16, 3, 70, NULL, '{"name":"Total Registrations (without native query)","description":null}'), +(362, 'card-update', TIMESTAMP '2023-01-26 09:55:15.378', 1, 'card', 27, 3, 70, NULL, '{"name":"Live Births by Place of Birth","description":null}'), +(363, 'card-update', TIMESTAMP '2023-01-26 09:55:42.95', 1, 'card', 29, 3, 70, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(364, 'card-update', TIMESTAMP '2023-01-31 07:20:23.992', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live Births by Age of Mother","description":null}'), +(365, 'card-update', TIMESTAMP '2023-02-02 09:02:21.321', 1, 'card', 27, 3, 70, NULL, '{"name":"Live Births by Place of Birth","description":null}'), +(366, 'card-update', TIMESTAMP '2023-02-02 09:03:28.018', 1, 'card', 27, 3, 70, NULL, '{"name":"Live Births by Place of Birth","description":null}'), +(367, 'dashboard-create', TIMESTAMP '2023-02-22 17:07:09.537', 1, 'dashboard', 4, NULL, NULL, NULL, '{"description":null,"name":"Leaderboard"}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(368, 'dashboard-add-cards', TIMESTAMP '2023-02-22 17:25:31.406', 1, 'dashboard', 4, NULL, NULL, NULL, '{"description":null,"name":"Leaderboard","dashcards":[{"name":"Leaderboard of Registrars","description":"","id":37,"card_id":12}]}'), +(369, 'dashboard-remove-cards', TIMESTAMP '2023-02-24 15:14:15.06', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Leaderboard of Registrars","description":"","id":13,"card_id":12}]}'), +(370, 'dashboard-remove-cards', TIMESTAMP '2023-02-24 15:14:15.13', 1, 'dashboard', 2, NULL, NULL, NULL, '{"description":null,"name":"Registrations Dashboard","dashcards":[{"name":"Registrations by State","description":null,"id":35,"card_id":33}]}'), +(371, 'dashboard-add-cards', TIMESTAMP '2023-02-24 15:14:52.741', 1, 'dashboard', 4, NULL, NULL, NULL, '{"description":null,"name":"Leaderboard","dashcards":[{"name":"Registrations by State","description":null,"id":38,"card_id":33}]}'), +(372, 'card-update', TIMESTAMP '2023-05-08 13:32:28.806', 1, 'card', 19, 3, NULL, NULL, '{"name":"Live Births by Order","description":null}'), +(373, 'card-update', TIMESTAMP '2023-05-09 14:05:01.767', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by state","description":null}'), +(374, 'card-update', TIMESTAMP '2023-05-09 14:05:20.163', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(375, 'card-update', TIMESTAMP '2023-05-09 14:06:24.699', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(376, 'card-update', TIMESTAMP '2023-05-09 14:07:29.196', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(377, 'dashboard-remove-cards', TIMESTAMP '2023-05-09 14:12:25.176', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live Births by Order","description":null,"id":22,"card_id":19}]}'), +(378, 'dashboard-remove-cards', TIMESTAMP '2023-05-09 14:12:25.193', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live Births by Level of Education of Parent","description":null,"id":25,"card_id":21}]}'), +(379, 'dashboard-remove-cards', TIMESTAMP '2023-05-09 14:12:25.208', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live Births by Literacy of Parents","description":null,"id":24,"card_id":18}]}'), +(380, 'dashboard-remove-cards', TIMESTAMP '2023-05-09 14:12:25.219', 1, 'dashboard', 3, NULL, NULL, NULL, '{"description":null,"name":"Statistics Dashboard","dashcards":[{"name":"Live Births by Type of Birth","description":null,"id":31,"card_id":29}]}'), +(381, 'card-update', TIMESTAMP '2023-05-09 14:14:19.317', 1, 'card', 19, 3, NULL, NULL, '{"name":"Live Births by Order","description":null}'), +(382, 'card-update', TIMESTAMP '2023-05-09 14:14:27.296', 1, 'card', 29, 3, 70, NULL, '{"name":"Live Births by Type of Birth","description":null}'), +(383, 'card-update', TIMESTAMP '2023-05-09 14:17:29.748', 1, 'card', 32, 3, 70, NULL, '{"name":"Registrations by State","description":null}'), +(384, 'card-update', TIMESTAMP '2023-05-09 14:44:33.357', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State in percent","description":null}'), +(385, 'card-update', TIMESTAMP '2023-05-09 14:46:23.847', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State (%)","description":null}'), +(386, 'card-update', TIMESTAMP '2023-05-10 16:22:20.622', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live Births by Age of Mother","description":null}'), +(387, 'card-update', TIMESTAMP '2023-05-10 16:29:52.723', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live Births by Age of Mother","description":null}'), +(388, 'card-update', TIMESTAMP '2023-05-10 16:30:03.235', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live Births by Age of Mother","description":null}'), +(389, 'card-update', TIMESTAMP '2023-05-10 16:30:59.049', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live Births by Age of Mother","description":null}'); +INSERT INTO PUBLIC.ACTIVITY(ID, TOPIC, TIMESTAMP, USER_ID, MODEL, MODEL_ID, DATABASE_ID, TABLE_ID, CUSTOM_ID, DETAILS) VALUES +(390, 'card-update', TIMESTAMP '2023-05-10 16:31:24.905', 1, 'card', 20, 3, NULL, NULL, '{"name":"Live Births by Age of Mother","description":null}'), +(391, 'card-update', TIMESTAMP '2023-05-10 16:31:56.551', 1, 'card', 33, 3, NULL, NULL, '{"name":"Registrations by State","description":null}'), +(392, 'card-update', TIMESTAMP '2023-05-22 12:52:09.098', 1, 'card', 30, 3, 70, NULL, '{"name":"% of Total Registrations Certified","description":null}'), +(393, 'card-update', TIMESTAMP '2023-05-22 12:55:17.39', 1, 'card', 30, 3, 70, NULL, '{"name":"% of Total Registrations Certified","description":null}'), +(394, 'card-update', TIMESTAMP '2023-05-22 12:59:11.86', 1, 'card', 28, 3, 71, NULL, '{"name":"Record Corrections by Type","description":null}'), +(395, 'card-update', TIMESTAMP '2023-05-22 13:02:21.276', 1, 'card', 30, 3, 70, NULL, '{"name":"% of Total Registrations Certified","description":null}'), +(396, 'card-update', TIMESTAMP '2023-05-22 13:10:36.325', 1, 'card', 27, 3, 70, NULL, '{"name":"Live Births by Place of Birth","description":null}'), +(397, 'card-update', TIMESTAMP '2023-05-31 18:21:38.399', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(398, 'card-update', TIMESTAMP '2023-05-31 18:57:50.283', 1, 'card', 13, 3, NULL, NULL, '{"name":"Completeness Rate","description":null}'), +(399, 'card-update', TIMESTAMP '2023-07-12 12:52:50.688', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State (%)","description":null}'), +(400, 'card-update', TIMESTAMP '2023-07-12 19:52:35.895', 1, 'card', 9, 3, NULL, NULL, '{"name":" Completeness Rates by State (%)","description":null}'); +CREATE INDEX PUBLIC.IDX_ACTIVITY_TIMESTAMP ON PUBLIC.ACTIVITY(TIMESTAMP); +CREATE INDEX PUBLIC.IDX_ACTIVITY_USER_ID ON PUBLIC.ACTIVITY(USER_ID); +CREATE INDEX PUBLIC.IDX_ACTIVITY_CUSTOM_ID ON PUBLIC.ACTIVITY(CUSTOM_ID); +CREATE CACHED TABLE PUBLIC.QUERY_CACHE COMMENT 'Cached results of queries are stored here when using the DB-based query cache.'( + QUERY_HASH BINARY(32) NOT NULL COMMENT 'The hash of the query dictionary. (This is a 256-bit SHA3 hash of the query dict).', + UPDATED_AT TIMESTAMP WITH TIME ZONE NOT NULL, + RESULTS BLOB NOT NULL COMMENT 'Cached, compressed results of running the query with the given hash.' +); +ALTER TABLE PUBLIC.QUERY_CACHE ADD CONSTRAINT PUBLIC.PK_QUERY_CACHE PRIMARY KEY(QUERY_HASH); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QUERY_CACHE; +CREATE INDEX PUBLIC.IDX_QUERY_CACHE_UPDATED_AT ON PUBLIC.QUERY_CACHE(UPDATED_AT); +CREATE CACHED TABLE PUBLIC.SECRET COMMENT 'Storage for managed secrets (passwords, binary data, etc.)'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_095A6096_F5BB_4053_B59C_DAA6E5A9D843) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_095A6096_F5BB_4053_B59C_DAA6E5A9D843 COMMENT 'Part of composite primary key for secret; this is the uniquely generted ID column', + VERSION INT DEFAULT 1 NOT NULL COMMENT 'Part of composite primary key for secret; this is the version column', + CREATOR_ID INT COMMENT 'User ID who created this secret instance', + CREATED_AT TIMESTAMP WITH TIME ZONE NOT NULL COMMENT 'Timestamp for when this secret instance was created', + UPDATED_AT TIMESTAMP WITH TIME ZONE COMMENT 'Timestamp for when this secret record was updated. Only relevant when non-value field changes since a value change will result in a new version being inserted.', + NAME VARCHAR(254) NOT NULL COMMENT 'The name of this secret record.', + KIND VARCHAR(254) NOT NULL COMMENT 'The kind of secret this record represents; the value is interpreted as a Clojure keyword with a hierarchy. Ex: ''bytes'' means generic binary data, ''jks-keystore'' extends ''bytes'' but has a specific meaning.', + SOURCE VARCHAR(254) COMMENT 'The source of secret record, which controls how Metabase interprets the value (ex: ''file-path'' means the ''simple_value'' is not the real value, but a pointer to a file that contains the value).', + VALUE BLOB NOT NULL COMMENT 'The base64 encoded binary value of this secret record. If encryption is enabled, this will be the output of the encryption procedure on the plaintext. If not, it will be the base64 encoded plaintext.' +); +ALTER TABLE PUBLIC.SECRET ADD CONSTRAINT PUBLIC.PK_SECRET PRIMARY KEY(ID, VERSION); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.SECRET; +CREATE CACHED TABLE PUBLIC.QRTZ_TRIGGERS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL SELECTIVITY 9, + TRIGGER_NAME VARCHAR(200) NOT NULL SELECTIVITY 100, + TRIGGER_GROUP VARCHAR(200) NOT NULL SELECTIVITY 9, + JOB_NAME VARCHAR(200) NOT NULL SELECTIVITY 81, + JOB_GROUP VARCHAR(200) NOT NULL SELECTIVITY 9, + DESCRIPTION VARCHAR(250) SELECTIVITY 45, + NEXT_FIRE_TIME BIGINT SELECTIVITY 81, + PREV_FIRE_TIME BIGINT SELECTIVITY 81, + PRIORITY INT SELECTIVITY 9, + TRIGGER_STATE VARCHAR(16) NOT NULL SELECTIVITY 18, + TRIGGER_TYPE VARCHAR(8) NOT NULL SELECTIVITY 9, + START_TIME BIGINT NOT NULL SELECTIVITY 27, + END_TIME BIGINT SELECTIVITY 9, + CALENDAR_NAME VARCHAR(200) SELECTIVITY 9, + MISFIRE_INSTR SMALLINT SELECTIVITY 27, + JOB_DATA BLOB +); +ALTER TABLE PUBLIC.QRTZ_TRIGGERS ADD CONSTRAINT PUBLIC.PK_QRTZ_TRIGGERS PRIMARY KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP); +-- 9 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_TRIGGERS; +INSERT INTO PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP, JOB_NAME, JOB_GROUP, DESCRIPTION, NEXT_FIRE_TIME, PREV_FIRE_TIME, PRIORITY, TRIGGER_STATE, TRIGGER_TYPE, START_TIME, END_TIME, CALENDAR_NAME, MISFIRE_INSTR, JOB_DATA) VALUES +('MetabaseScheduler', 'metabase.task.upgrade-checks.trigger', 'DEFAULT', 'metabase.task.upgrade-checks.job', 'DEFAULT', NULL, 1693008900000, -1, 5, 'WAITING', 'CRON', 1692966223000, 0, NULL, 0, X''), +('MetabaseScheduler', 'metabase.task.anonymous-stats.trigger', 'DEFAULT', 'metabase.task.anonymous-stats.job', 'DEFAULT', NULL, 1692976800000, -1, 5, 'WAITING', 'CRON', 1692966223000, 0, NULL, 0, X''), +('MetabaseScheduler', 'metabase.task.refresh-channel-cache.trigger', 'DEFAULT', 'metabase.task.refresh-channel-cache.job', 'DEFAULT', NULL, 1692975420000, -1, 5, 'WAITING', 'CRON', 1692966223000, 0, NULL, 2, X''), +('MetabaseScheduler', 'metabase.task.abandonment-emails.trigger', 'DEFAULT', 'metabase.task.abandonment-emails.job', 'DEFAULT', NULL, 1693029600000, -1, 5, 'WAITING', 'CRON', 1692966223000, 0, NULL, 0, X''), +('MetabaseScheduler', 'metabase.task.send-pulses.trigger', 'DEFAULT', 'metabase.task.send-pulses.job', 'DEFAULT', NULL, 1692968400000, -1, 5, 'WAITING', 'CRON', 1692966223000, 0, NULL, 1, X''), +('MetabaseScheduler', 'metabase.task.follow-up-emails.trigger', 'DEFAULT', 'metabase.task.follow-up-emails.job', 'DEFAULT', NULL, 1693029600000, -1, 5, 'WAITING', 'CRON', 1692966223000, 0, NULL, 0, X''), +('MetabaseScheduler', 'metabase.task.task-history-cleanup.trigger', 'DEFAULT', 'metabase.task.task-history-cleanup.job', 'DEFAULT', NULL, 1692968400000, -1, 5, 'WAITING', 'CRON', 1692966223000, 0, NULL, 0, X''), +('MetabaseScheduler', 'metabase.task.sync-and-analyze.trigger.3', 'DEFAULT', 'metabase.task.sync-and-analyze.job', 'DEFAULT', 'sync-and-analyze Database 3', 1692967740000, 1689169740000, 5, 'WAITING', 'CRON', 1672258773000, 0, NULL, 2, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c7708000000100000000174000564622d6964737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000000037800'), +('MetabaseScheduler', 'metabase.task.update-field-values.trigger.3', 'DEFAULT', 'metabase.task.update-field-values.job', 'DEFAULT', 'update-field-values Database 3', 1693015200000, 1676599200000, 5, 'WAITING', 'CRON', 1672258773000, 0, NULL, 2, X'aced0005737200156f72672e71756172747a2e4a6f62446174614d61709fb083e8bfa9b0cb020000787200266f72672e71756172747a2e7574696c732e537472696e674b65794469727479466c61674d61708208e8c3fbc55d280200015a0013616c6c6f77735472616e7369656e74446174617872001d6f72672e71756172747a2e7574696c732e4469727479466c61674d617013e62ead28760ace0200025a000564697274794c00036d617074000f4c6a6176612f7574696c2f4d61703b787000737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c7708000000100000000174000564622d6964737200116a6176612e6c616e672e496e746567657212e2a0a4f781873802000149000576616c7565787200106a6176612e6c616e672e4e756d62657286ac951d0b94e08b0200007870000000037800'); +CREATE INDEX PUBLIC.IDX_QRTZ_T_J ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, JOB_NAME, JOB_GROUP); +CREATE INDEX PUBLIC.IDX_QRTZ_T_JG ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, JOB_GROUP); +CREATE INDEX PUBLIC.IDX_QRTZ_T_C ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, CALENDAR_NAME); +CREATE INDEX PUBLIC.IDX_QRTZ_T_G ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_GROUP); +CREATE INDEX PUBLIC.IDX_QRTZ_T_STATE ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_STATE); +CREATE INDEX PUBLIC.IDX_QRTZ_T_N_STATE ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP, TRIGGER_STATE); +CREATE INDEX PUBLIC.IDX_QRTZ_T_N_G_STATE ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_GROUP, TRIGGER_STATE); +CREATE INDEX PUBLIC.IDX_QRTZ_T_NEXT_FIRE_TIME ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, NEXT_FIRE_TIME); +CREATE INDEX PUBLIC.IDX_QRTZ_T_NFT_ST ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_STATE, NEXT_FIRE_TIME); +CREATE INDEX PUBLIC.IDX_QRTZ_T_NFT_MISFIRE ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, MISFIRE_INSTR, NEXT_FIRE_TIME); +CREATE INDEX PUBLIC.IDX_QRTZ_T_NFT_ST_MISFIRE ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, MISFIRE_INSTR, NEXT_FIRE_TIME, TRIGGER_STATE); +CREATE INDEX PUBLIC.IDX_QRTZ_T_NFT_ST_MISFIRE_GRP ON PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, MISFIRE_INSTR, NEXT_FIRE_TIME, TRIGGER_GROUP, TRIGGER_STATE); +CREATE CACHED TABLE PUBLIC.BOOKMARK_ORDERING COMMENT 'Table holding ordering information for various bookmark tables'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_E88969E3_EF69_4C8A_89CD_33B223F94AF9) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_E88969E3_EF69_4C8A_89CD_33B223F94AF9, + USER_ID INT NOT NULL COMMENT 'ID of the User who ordered bookmarks', + TYPE VARCHAR(255) NOT NULL COMMENT 'type of the Bookmark', + ITEM_ID INT NOT NULL COMMENT 'id of the item being bookmarked (Card, Collection, Dashboard, ...) no FK, so may no longer exist', + ORDERING INT NOT NULL COMMENT 'order of bookmark for user' +); +ALTER TABLE PUBLIC.BOOKMARK_ORDERING ADD CONSTRAINT PUBLIC.PK_BOOKMARK_ORDERING PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.BOOKMARK_ORDERING; +CREATE INDEX PUBLIC.IDX_BOOKMARK_ORDERING_USER_ID ON PUBLIC.BOOKMARK_ORDERING(USER_ID); +CREATE CACHED TABLE PUBLIC.MODERATION_REVIEW COMMENT 'Reviews (from moderators) for a given question/dashboard (BUCM)'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_760D42BD_A3B0_46CF_BDCC_A01B1DBC9EA8) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_760D42BD_A3B0_46CF_BDCC_A01B1DBC9EA8, + UPDATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'most recent modification time', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'creation time', + STATUS VARCHAR(255) COMMENT 'verified, misleading, confusing, not_misleading, pending', + TEXT CLOB COMMENT 'Explanation of the review', + MODERATED_ITEM_ID INT NOT NULL COMMENT 'either a document or question ID; the item that needs review', + MODERATED_ITEM_TYPE VARCHAR(255) NOT NULL COMMENT 'whether it''s a question or dashboard', + MODERATOR_ID INT NOT NULL COMMENT 'ID of the user who did the review', + MOST_RECENT BOOLEAN NOT NULL COMMENT 'tag for most recent review' +); +ALTER TABLE PUBLIC.MODERATION_REVIEW ADD CONSTRAINT PUBLIC.PK_MODERATION_REVIEW PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.MODERATION_REVIEW; +CREATE INDEX PUBLIC.IDX_MODERATION_REVIEW_ITEM_TYPE_ITEM_ID ON PUBLIC.MODERATION_REVIEW(MODERATED_ITEM_TYPE, MODERATED_ITEM_ID); +CREATE CACHED TABLE PUBLIC.ACTION COMMENT 'An action is something you can do, such as run a readwrite query'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_593AEEFE_653C_4232_B108_90A1A101A9B0) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_593AEEFE_653C_4232_B108_90A1A101A9B0, + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the action was created', + UPDATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the action was updated', + TYPE CLOB NOT NULL COMMENT 'Type of action' +); +ALTER TABLE PUBLIC.ACTION ADD CONSTRAINT PUBLIC.PK_ACTION PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.ACTION; +CREATE CACHED TABLE PUBLIC.PULSE_CARD( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_D7E75EE8_2E04_488D_9DBB_35B17738893A) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_D7E75EE8_2E04_488D_9DBB_35B17738893A, + PULSE_ID INT NOT NULL, + CARD_ID INT NOT NULL, + POSITION INT NOT NULL, + INCLUDE_CSV BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'True if a CSV of the data should be included for this pulse card', + INCLUDE_XLS BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'True if a XLS of the data should be included for this pulse card', + DASHBOARD_CARD_ID INT COMMENT 'If this Pulse is a Dashboard subscription, the ID of the DashboardCard that corresponds to this PulseCard.', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.PULSE_CARD ADD CONSTRAINT PUBLIC.PK_PULSE_CARD PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.PULSE_CARD; +CREATE INDEX PUBLIC.IDX_PULSE_CARD_PULSE_ID ON PUBLIC.PULSE_CARD(PULSE_ID); +CREATE INDEX PUBLIC.IDX_PULSE_CARD_CARD_ID ON PUBLIC.PULSE_CARD(CARD_ID); +CREATE CACHED TABLE PUBLIC.REPORT_CARDFAVORITE( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_8A249DF1_A301_4484_93C8_E107A0A1AD69) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_8A249DF1_A301_4484_93C8_E107A0A1AD69, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + CARD_ID INT NOT NULL, + OWNER_ID INT NOT NULL +); +ALTER TABLE PUBLIC.REPORT_CARDFAVORITE ADD CONSTRAINT PUBLIC.PK_REPORT_CARDFAVORITE PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.REPORT_CARDFAVORITE; +CREATE INDEX PUBLIC.IDX_CARDFAVORITE_CARD_ID ON PUBLIC.REPORT_CARDFAVORITE(CARD_ID); +CREATE INDEX PUBLIC.IDX_CARDFAVORITE_OWNER_ID ON PUBLIC.REPORT_CARDFAVORITE(OWNER_ID); +CREATE CACHED TABLE PUBLIC.PULSE_CHANNEL( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_11F3DA6A_236E_4119_98AA_C73C22B072F5) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_11F3DA6A_236E_4119_98AA_C73C22B072F5, + PULSE_ID INT NOT NULL, + CHANNEL_TYPE VARCHAR(32) NOT NULL, + DETAILS CLOB NOT NULL, + SCHEDULE_TYPE VARCHAR(32) NOT NULL, + SCHEDULE_HOUR INT, + SCHEDULE_DAY VARCHAR(64), + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + SCHEDULE_FRAME VARCHAR(32), + ENABLED BOOLEAN DEFAULT TRUE NOT NULL, + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.PULSE_CHANNEL ADD CONSTRAINT PUBLIC.PK_PULSE_CHANNEL PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.PULSE_CHANNEL; +CREATE INDEX PUBLIC.IDX_PULSE_CHANNEL_PULSE_ID ON PUBLIC.PULSE_CHANNEL(PULSE_ID); +CREATE INDEX PUBLIC.IDX_PULSE_CHANNEL_SCHEDULE_TYPE ON PUBLIC.PULSE_CHANNEL(SCHEDULE_TYPE); +CREATE CACHED TABLE PUBLIC.COMPUTATION_JOB COMMENT 'Stores submitted async computation jobs.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_7EA0412E_E359_4406_B651_BBD8BECBA72F) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_7EA0412E_E359_4406_B651_BBD8BECBA72F, + CREATOR_ID INT, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + TYPE VARCHAR(254) NOT NULL, + STATUS VARCHAR(254) NOT NULL, + CONTEXT CLOB, + ENDED_AT TIMESTAMP +); +ALTER TABLE PUBLIC.COMPUTATION_JOB ADD CONSTRAINT PUBLIC.PK_COMPUTATION_JOB PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.COMPUTATION_JOB; +CREATE CACHED TABLE PUBLIC.GROUP_TABLE_ACCESS_POLICY COMMENT 'Records that a given Card (Question) should automatically replace a given Table as query source for a given a Perms Group.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_2EDFDDA6_2A96_4716_9C8C_D4D703FA32F3) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_2EDFDDA6_2A96_4716_9C8C_D4D703FA32F3, + GROUP_ID INT NOT NULL COMMENT 'ID of the Permissions Group this policy affects.', + TABLE_ID INT NOT NULL COMMENT 'ID of the Table that should get automatically replaced as query source for the Permissions Group.', + CARD_ID INT COMMENT 'ID of the Card (Question) to be used to replace the Table.', + ATTRIBUTE_REMAPPINGS CLOB COMMENT 'JSON-encoded map of user attribute identifier to the param name used in the Card.' +); +ALTER TABLE PUBLIC.GROUP_TABLE_ACCESS_POLICY ADD CONSTRAINT PUBLIC.PK_GROUP_TABLE_ACCESS_POLICY PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.GROUP_TABLE_ACCESS_POLICY; +CREATE INDEX PUBLIC.IDX_GTAP_TABLE_ID_GROUP_ID ON PUBLIC.GROUP_TABLE_ACCESS_POLICY(TABLE_ID, GROUP_ID); +CREATE CACHED TABLE PUBLIC.CORE_SESSION( + ID VARCHAR(254) NOT NULL, + USER_ID INT NOT NULL, + CREATED_AT TIMESTAMP NOT NULL, + ANTI_CSRF_TOKEN CLOB COMMENT 'Anti-CSRF token for full-app embed sessions.' +); +ALTER TABLE PUBLIC.CORE_SESSION ADD CONSTRAINT PUBLIC.PK_CORE_SESSION PRIMARY KEY(ID); +-- 9 +/- SELECT COUNT(*) FROM PUBLIC.CORE_SESSION; +INSERT INTO PUBLIC.CORE_SESSION(ID, USER_ID, CREATED_AT, ANTI_CSRF_TOKEN) VALUES +('6116652b-052f-4bf1-bcff-826433e97aee', 1, TIMESTAMP '2023-02-24 15:12:36.88', NULL), +('0de105b0-917e-451b-8b32-28203fd0f848', 1, TIMESTAMP '2023-04-28 17:18:58.876', NULL), +('f3627e22-21b8-4b4e-9494-c3f3bca5817a', 1, TIMESTAMP '2023-05-09 14:27:06.286', NULL), +('0e22a55e-f2d0-46e0-928f-7e106012880d', 1, TIMESTAMP '2023-05-09 14:28:36.091', NULL), +('9928443b-ca60-4a00-be10-78f8ff315e6c', 1, TIMESTAMP '2023-05-09 14:42:45.938', NULL), +('47adfb72-594b-4f05-a212-b86db46144ec', 1, TIMESTAMP '2023-05-22 12:36:17.597', NULL), +('423321ba-4c24-444e-8899-b7e98f6bdd81', 1, TIMESTAMP '2023-05-31 18:14:26.738', NULL), +('d7fc40ca-160a-417b-a27d-e869162fad35', 1, TIMESTAMP '2023-07-12 12:19:45.288', NULL), +('c2220621-50e0-4f5a-bba3-44cc40473f83', 1, TIMESTAMP '2023-08-25 18:23:58.526', NULL); +CREATE CACHED TABLE PUBLIC.CARD_LABEL( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_97C4EFC0_64EF_4BEE_828C_7923504AD6F2) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_97C4EFC0_64EF_4BEE_828C_7923504AD6F2, + CARD_ID INT NOT NULL, + LABEL_ID INT NOT NULL +); +ALTER TABLE PUBLIC.CARD_LABEL ADD CONSTRAINT PUBLIC.PK_CARD_LABEL PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.CARD_LABEL; +CREATE INDEX PUBLIC.IDX_CARD_LABEL_CARD_ID ON PUBLIC.CARD_LABEL(CARD_ID); +CREATE INDEX PUBLIC.IDX_CARD_LABEL_LABEL_ID ON PUBLIC.CARD_LABEL(LABEL_ID); +CREATE CACHED TABLE PUBLIC.PULSE( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_FBF2FDCE_D5D9_485D_90C3_3A1219D2190D) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_FBF2FDCE_D5D9_485D_90C3_3A1219D2190D, + CREATOR_ID INT NOT NULL, + NAME VARCHAR(254), + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + SKIP_IF_EMPTY BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Skip a scheduled Pulse if none of its questions have any results', + ALERT_CONDITION VARCHAR(254) COMMENT 'Condition (i.e. "rows" or "goal") used as a guard for alerts', + ALERT_FIRST_ONLY BOOLEAN COMMENT 'True if the alert should be disabled after the first notification', + ALERT_ABOVE_GOAL BOOLEAN COMMENT 'For a goal condition, alert when above the goal', + COLLECTION_ID INT COMMENT 'Options ID of Collection this Pulse belongs to.', + COLLECTION_POSITION SMALLINT COMMENT 'Optional pinned position for this item in its Collection. NULL means item is not pinned.', + ARCHIVED BOOLEAN DEFAULT FALSE COMMENT 'Has this pulse been archived?', + DASHBOARD_ID INT COMMENT 'ID of the Dashboard if this Pulse is a Dashboard Subscription.', + PARAMETERS CLOB NOT NULL COMMENT 'Let dashboard subscriptions have their own filters', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.PULSE ADD CONSTRAINT PUBLIC.PK_PULSE PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.PULSE; +CREATE INDEX PUBLIC.IDX_PULSE_CREATOR_ID ON PUBLIC.PULSE(CREATOR_ID); +CREATE INDEX PUBLIC.IDX_PULSE_COLLECTION_ID ON PUBLIC.PULSE(COLLECTION_ID); +CREATE CACHED TABLE PUBLIC.COMPUTATION_JOB_RESULT COMMENT 'Stores results of async computation jobs.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_5A28C5A7_FD5A_486C_A6A1_B943ED518FCF) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_5A28C5A7_FD5A_486C_A6A1_B943ED518FCF, + JOB_ID INT NOT NULL, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + PERMANENCE VARCHAR(254) NOT NULL, + PAYLOAD CLOB NOT NULL +); +ALTER TABLE PUBLIC.COMPUTATION_JOB_RESULT ADD CONSTRAINT PUBLIC.PK_COMPUTATION_JOB_RESULT PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.COMPUTATION_JOB_RESULT; +CREATE CACHED TABLE PUBLIC.TIMELINE COMMENT 'Timeline table to organize events'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_F4C56B52_1BFF_4853_A2EF_57491E1A4079) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F4C56B52_1BFF_4853_A2EF_57491E1A4079, + NAME VARCHAR(255) NOT NULL COMMENT 'Name of the timeline', + DESCRIPTION VARCHAR(255) COMMENT 'Optional description of the timeline', + ICON VARCHAR(128) NOT NULL COMMENT 'the icon to use when displaying the event', + COLLECTION_ID INT COMMENT 'ID of the collection containing the timeline', + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Whether or not the timeline has been archived', + CREATOR_ID INT NOT NULL COMMENT 'ID of the user who created the timeline', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the timeline was created', + UPDATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the timeline was updated', + DEFAULT BOOLEAN DEFAULT 'false' NOT NULL COMMENT 'Boolean value indicating if the timeline is the default one for the containing Collection', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.TIMELINE ADD CONSTRAINT PUBLIC.PK_TIMELINE PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.TIMELINE; +CREATE INDEX PUBLIC.IDX_TIMELINE_COLLECTION_ID ON PUBLIC.TIMELINE(COLLECTION_ID); +CREATE CACHED TABLE PUBLIC.LOGIN_HISTORY COMMENT 'Keeps track of various logins for different users and additional info such as location and device'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_58B20A80_514C_42CB_820F_81176F60E87F) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_58B20A80_514C_42CB_820F_81176F60E87F, + TIMESTAMP TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'When this login occurred.', + USER_ID INT NOT NULL COMMENT 'ID of the User that logged in.', + SESSION_ID VARCHAR(254) COMMENT 'ID of the Session created by this login if one is currently active. NULL if Session is no longer active.', + DEVICE_ID CHAR(36) NOT NULL COMMENT 'Cookie-based unique identifier for the device/browser the user logged in from.', + DEVICE_DESCRIPTION CLOB NOT NULL COMMENT 'Description of the device that login happened from, for example a user-agent string, but this might be something different if we support alternative auth mechanisms in the future.', + IP_ADDRESS CLOB NOT NULL COMMENT 'IP address of the device that login happened from, so we can geocode it and determine approximate location.' +); +ALTER TABLE PUBLIC.LOGIN_HISTORY ADD CONSTRAINT PUBLIC.PK_LOGIN_HISTORY PRIMARY KEY(ID); +-- 38 +/- SELECT COUNT(*) FROM PUBLIC.LOGIN_HISTORY; +INSERT INTO PUBLIC.LOGIN_HISTORY(ID, TIMESTAMP, USER_ID, SESSION_ID, DEVICE_ID, DEVICE_DESCRIPTION, IP_ADDRESS) VALUES +(1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:21:22.101+06', 1, NULL, '7d0562e3-c179-4a78-a5eb-213e25d46e3f', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:23.178+06', 1, NULL, '7d0562e3-c179-4a78-a5eb-213e25d46e3f', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(3, TIMESTAMP WITH TIME ZONE '2022-12-14 18:35:35.836+06', 1, NULL, '7d0562e3-c179-4a78-a5eb-213e25d46e3f', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(4, TIMESTAMP WITH TIME ZONE '2022-12-14 19:40:36.991+06', 1, NULL, '7d0562e3-c179-4a78-a5eb-213e25d46e3f', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(5, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:41.528+06', 1, NULL, '7d0562e3-c179-4a78-a5eb-213e25d46e3f', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(6, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:33.824+06', 1, NULL, '7d0562e3-c179-4a78-a5eb-213e25d46e3f', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(7, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:29.437+06', 1, NULL, '7d0562e3-c179-4a78-a5eb-213e25d46e3f', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(8, TIMESTAMP WITH TIME ZONE '2022-12-15 19:48:31.542+02', 1, NULL, 'bfccf896-2ec4-446f-8546-3d68baddbe7b', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(40, TIMESTAMP WITH TIME ZONE '2022-12-15 18:45:54.739+00', 1, NULL, 'bf1bceda-defd-422d-910b-c3284dea39f9', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(41, TIMESTAMP WITH TIME ZONE '2022-12-15 18:52:14.519+00', 1, NULL, '659b1dc7-bd1f-48a7-9df3-64932413a97e', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(42, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:32.06+00', 1, NULL, '3a8806c4-e275-4126-8552-0b4b4764d3d0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(43, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:07.032+00', 1, NULL, 'd0f4f2ba-a2e8-49ef-bb58-62b0fe9af0a5', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(44, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:01.901+00', 1, NULL, '4116b380-512c-4eb6-ac79-c7b2523f74e1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(45, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:19.798+00', 1, NULL, 'e48e89eb-b4fd-4f70-8733-8dc75cd64c84', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(46, TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:01.724+00', 1, NULL, 'd79298b3-c474-40da-84ad-5b40013195b6', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(47, TIMESTAMP WITH TIME ZONE '2023-01-04 06:33:56.032+00', 1, NULL, 'c79da967-8c2b-469b-9944-dc78f4f926a5', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36', '10.0.0.2'), +(48, TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:34.609+00', 1, NULL, 'c79da967-8c2b-469b-9944-dc78f4f926a5', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '10.0.0.2'); +INSERT INTO PUBLIC.LOGIN_HISTORY(ID, TIMESTAMP, USER_ID, SESSION_ID, DEVICE_ID, DEVICE_DESCRIPTION, IP_ADDRESS) VALUES +(49, TIMESTAMP WITH TIME ZONE '2023-01-31 06:35:11.467+00', 1, NULL, '0fefbbdf-000f-49da-a02e-a6cec1e5eebe', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '10.0.0.2'), +(50, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:42.698+00', 1, NULL, '3b831c71-1da0-4a28-b333-e0295db32067', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '10.0.0.2'), +(51, TIMESTAMP WITH TIME ZONE '2023-02-03 09:06:16.386+00', 1, NULL, '0fefbbdf-000f-49da-a02e-a6cec1e5eebe', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '10.0.0.2'), +(52, TIMESTAMP WITH TIME ZONE '2023-02-09 08:40:55.643+00', 1, NULL, 'd073800e-bb61-4ad8-bbec-218c7ab0eab0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '10.0.0.2'), +(53, TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:06.685+00', 1, NULL, '322f127f-aa6b-4b4d-bfdb-59e1aa70fb90', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '10.0.0.2'), +(54, TIMESTAMP WITH TIME ZONE '2023-02-17 12:57:09.415+07', 1, NULL, 'bfccf896-2ec4-446f-8546-3d68baddbe7b', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(55, TIMESTAMP WITH TIME ZONE '2023-02-17 17:59:37.101+07', 1, NULL, 'd984863e-fa2e-4c4c-8f90-2350cc9e42dd', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(56, TIMESTAMP WITH TIME ZONE '2023-02-24 15:11:49.373+07', 1, NULL, 'd984863e-fa2e-4c4c-8f90-2350cc9e42dd', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(57, TIMESTAMP WITH TIME ZONE '2023-02-24 15:12:36.888+07', 1, '6116652b-052f-4bf1-bcff-826433e97aee', 'd984863e-fa2e-4c4c-8f90-2350cc9e42dd', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(58, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:58.881+06', 1, '0de105b0-917e-451b-8b32-28203fd0f848', '40681322-1f49-45fa-b2df-79314cced00a', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(59, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:36.671+06', 1, NULL, '9884d71a-754d-4e94-892a-11144c2790cc', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(60, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:10.672+06', 1, NULL, '9884d71a-754d-4e94-892a-11144c2790cc', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(61, TIMESTAMP WITH TIME ZONE '2023-05-09 12:43:02.848+06', 1, NULL, '9884d71a-754d-4e94-892a-11144c2790cc', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(62, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:15.739+06', 1, NULL, '9884d71a-754d-4e94-892a-11144c2790cc', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(63, TIMESTAMP WITH TIME ZONE '2023-05-09 14:27:06.292+06', 1, 'f3627e22-21b8-4b4e-9494-c3f3bca5817a', '60561335-25c3-43c6-8138-90fb3e3f01d8', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(64, TIMESTAMP WITH TIME ZONE '2023-05-09 14:28:36.092+06', 1, '0e22a55e-f2d0-46e0-928f-7e106012880d', '0db1a9bc-e94a-4cb0-be21-266c41a82067', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/112.0', '127.0.0.1'), +(65, TIMESTAMP WITH TIME ZONE '2023-05-09 14:42:45.939+06', 1, '9928443b-ca60-4a00-be10-78f8ff315e6c', '9884d71a-754d-4e94-892a-11144c2790cc', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'); +INSERT INTO PUBLIC.LOGIN_HISTORY(ID, TIMESTAMP, USER_ID, SESSION_ID, DEVICE_ID, DEVICE_DESCRIPTION, IP_ADDRESS) VALUES +(66, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:17.606+06', 1, '47adfb72-594b-4f05-a212-b86db46144ec', '410a5cea-76e1-4906-a628-2629dd4372eb', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(67, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:26.743+06', 1, '423321ba-4c24-444e-8899-b7e98f6bdd81', '789ec8a3-6225-4c9b-a76b-344b5be10249', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(68, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:45.294+06', 1, 'd7fc40ca-160a-417b-a27d-e869162fad35', 'd53c110e-1004-4cc6-9a66-33ae0d36c29d', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'), +(69, TIMESTAMP WITH TIME ZONE '2023-08-25 18:23:58.533+06', 1, 'c2220621-50e0-4f5a-bba3-44cc40473f83', '92378e4c-de06-4768-b993-4faac7588c15', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36', '0:0:0:0:0:0:0:1'); +CREATE INDEX PUBLIC.IDX_USER_ID ON PUBLIC.LOGIN_HISTORY(USER_ID); +CREATE INDEX PUBLIC.IDX_SESSION_ID ON PUBLIC.LOGIN_HISTORY(SESSION_ID); +CREATE INDEX PUBLIC.IDX_TIMESTAMP ON PUBLIC.LOGIN_HISTORY(TIMESTAMP); +CREATE INDEX PUBLIC.IDX_USER_ID_DEVICE_ID ON PUBLIC.LOGIN_HISTORY(SESSION_ID, DEVICE_ID); +CREATE INDEX PUBLIC.IDX_USER_ID_TIMESTAMP ON PUBLIC.LOGIN_HISTORY(USER_ID, TIMESTAMP); +CREATE CACHED TABLE PUBLIC.HTTP_ACTION COMMENT 'An http api call type of action'( + ACTION_ID INT NOT NULL COMMENT 'The related action', + NAME VARCHAR(254) NOT NULL COMMENT 'The name of this action', + DESCRIPTION CLOB COMMENT 'An optional description for this action', + TEMPLATE CLOB NOT NULL COMMENT 'A template that defines method,url,body,headers required to make an api call', + RESPONSE_HANDLE CLOB COMMENT 'A program to take an api response and transform to an appropriate response for emitters', + ERROR_HANDLE CLOB COMMENT 'A program to take an api response to determine if an error occurred' +); +ALTER TABLE PUBLIC.HTTP_ACTION ADD CONSTRAINT PUBLIC.PK_HTTP_ACTION PRIMARY KEY(ACTION_ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.HTTP_ACTION; +CREATE CACHED TABLE PUBLIC.APPLICATION_PERMISSIONS_REVISION COMMENT 'Used to keep track of changes made to general permissions.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_DCB0374C_7489_4F6E_9092_4F963B681F16) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_DCB0374C_7489_4F6E_9092_4F963B681F16, + BEFORE CLOB NOT NULL COMMENT 'Serialized JSON of the permission graph before the changes.', + AFTER CLOB NOT NULL COMMENT 'Serialized JSON of the changes in permission graph.', + USER_ID INT NOT NULL COMMENT 'The ID of the admin who made this set of changes.', + CREATED_AT TIMESTAMP NOT NULL COMMENT 'The timestamp of when these changes were made.', + REMARK CLOB COMMENT 'Optional remarks explaining why these changes were made.' +); +ALTER TABLE PUBLIC.APPLICATION_PERMISSIONS_REVISION ADD CONSTRAINT PUBLIC.PK_GENERAL_PERMISSIONS_REVISION PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.APPLICATION_PERMISSIONS_REVISION; +CREATE CACHED TABLE PUBLIC.SEGMENT( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_926BB83A_3559_4264_8724_8F830EE62844) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_926BB83A_3559_4264_8724_8F830EE62844, + TABLE_ID INT NOT NULL, + CREATOR_ID INT NOT NULL, + NAME VARCHAR(254) NOT NULL, + DESCRIPTION CLOB, + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL, + DEFINITION CLOB NOT NULL, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + POINTS_OF_INTEREST CLOB, + CAVEATS CLOB, + SHOW_IN_GETTING_STARTED BOOLEAN DEFAULT FALSE NOT NULL, + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.SEGMENT ADD CONSTRAINT PUBLIC.PK_SEGMENT PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.SEGMENT; +CREATE INDEX PUBLIC.IDX_SEGMENT_CREATOR_ID ON PUBLIC.SEGMENT(CREATOR_ID); +CREATE INDEX PUBLIC.IDX_SEGMENT_TABLE_ID ON PUBLIC.SEGMENT(TABLE_ID); +CREATE INDEX PUBLIC.IDX_SEGMENT_SHOW_IN_GETTING_STARTED ON PUBLIC.SEGMENT(SHOW_IN_GETTING_STARTED); +CREATE CACHED TABLE PUBLIC.PERSISTED_INFO COMMENT 'Table holding information about persisted models'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_CC5C7B7A_71AA_4186_A8A9_E7348F961AA4) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_CC5C7B7A_71AA_4186_A8A9_E7348F961AA4, + DATABASE_ID INT NOT NULL COMMENT 'ID of the database associated to the persisted card', + CARD_ID INT NOT NULL COMMENT 'ID of the Card model persisted', + QUESTION_SLUG CLOB NOT NULL COMMENT 'Slug of the card which will form the persisted table name', + TABLE_NAME CLOB NOT NULL COMMENT 'Name of the table persisted', + DEFINITION CLOB COMMENT 'JSON object that captures the state of the table when we persisted', + QUERY_HASH CLOB COMMENT 'Hash of the query persisted', + ACTIVE BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Indicating whether the persisted table is active and can be swapped', + STATE CLOB NOT NULL COMMENT 'Persisted table state (creating, persisted, refreshing, deleted)', + REFRESH_BEGIN TIMESTAMP WITH TIME ZONE NOT NULL COMMENT 'The timestamp of when the most recent refresh was started', + REFRESH_END TIMESTAMP WITH TIME ZONE COMMENT 'The timestamp of when the most recent refresh ended', + STATE_CHANGE_AT TIMESTAMP WITH TIME ZONE COMMENT 'The timestamp of when the most recent state changed', + ERROR CLOB COMMENT 'Error message from persisting if applicable', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the model was first persisted', + CREATOR_ID INT COMMENT 'The person who persisted a model' +); +ALTER TABLE PUBLIC.PERSISTED_INFO ADD CONSTRAINT PUBLIC.PK_PERSISTED_INFO PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.PERSISTED_INFO; +CREATE CACHED TABLE PUBLIC.QUERY_EXECUTION COMMENT 'A log of executed queries, used for calculating historic execution times, auditing, and other purposes.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_620C6AAA_F68E_4094_B4AE_7C4D6E261B94) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_620C6AAA_F68E_4094_B4AE_7C4D6E261B94 SELECTIVITY 100, + HASH BINARY(32) NOT NULL SELECTIVITY 41 COMMENT 'The hash of the query dictionary. This is a 256-bit SHA3 hash of the query.', + STARTED_AT TIMESTAMP WITH TIME ZONE NOT NULL SELECTIVITY 98, + RUNNING_TIME INT NOT NULL SELECTIVITY 8 COMMENT 'The time, in milliseconds, this query took to complete.', + RESULT_ROWS INT NOT NULL SELECTIVITY 1 COMMENT 'Number of rows in the query results.', + NATIVE BOOLEAN NOT NULL SELECTIVITY 1 COMMENT 'Whether the query was a native query, as opposed to an MBQL one (e.g., created with the GUI).', + CONTEXT VARCHAR(32) SELECTIVITY 1 COMMENT 'Short string specifying how this query was executed, e.g. in a Dashboard or Pulse.', + ERROR CLOB COMMENT 'Error message returned by failed query, if any.', + EXECUTOR_ID INT SELECTIVITY 1 COMMENT 'The ID of the User who triggered this query execution, if any.', + CARD_ID INT SELECTIVITY 1 COMMENT 'The ID of the Card (Question) associated with this query execution, if any.', + DASHBOARD_ID INT SELECTIVITY 1 COMMENT 'The ID of the Dashboard associated with this query execution, if any.', + PULSE_ID INT SELECTIVITY 1 COMMENT 'The ID of the Pulse associated with this query execution, if any.', + DATABASE_ID INT SELECTIVITY 1 COMMENT 'ID of the database this query was ran against.', + CACHE_HIT BOOLEAN SELECTIVITY 1 COMMENT 'Cache hit on query execution' +); +ALTER TABLE PUBLIC.QUERY_EXECUTION ADD CONSTRAINT PUBLIC.PK_QUERY_EXECUTION PRIMARY KEY(ID); +-- 65527 +/- SELECT COUNT(*) FROM PUBLIC.QUERY_EXECUTION; +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1, X'4e593a1c0b2629377c681948968bd52751df0f1c012f9e646e4ec8bf70c66767', TIMESTAMP WITH TIME ZONE '2022-12-13 13:23:03.924082+06', 392, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2, X'02a64b3814e9e4302e8cf06c9a989abf3bc2bfe81d1cd7cd9bee2ea6dbd57907', TIMESTAMP WITH TIME ZONE '2022-12-13 13:33:10.417962+06', 60, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$and/$or/$nor must be a nonempty array'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "$and/$or/$nor must be a nonempty array", "code" : 2, "codeName" : "BadValue" }', 1, NULL, NULL, NULL, 2, NULL), +(3, X'80c8bc6b679224fbc351f91ed384c95050d137436cc459a6c3a696eabd06168d', TIMESTAMP WITH TIME ZONE '2022-12-13 13:33:38.777924+06', 25, 0, TRUE, 'ad-hoc', 'Command failed with error 16410 (Location16410): ''Invalid $project :: caused by :: FieldPath field names may not start with ''$''.'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: FieldPath field names may not start with ''$''.", "code" : 16410, "codeName" : "Location16410" }', 1, NULL, NULL, NULL, 2, NULL), +(4, X'80c8bc6b679224fbc351f91ed384c95050d137436cc459a6c3a696eabd06168d', TIMESTAMP WITH TIME ZONE '2022-12-13 13:33:39.79294+06', 12, 0, TRUE, 'ad-hoc', 'Command failed with error 16410 (Location16410): ''Invalid $project :: caused by :: FieldPath field names may not start with ''$''.'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: FieldPath field names may not start with ''$''.", "code" : 16410, "codeName" : "Location16410" }', 1, NULL, NULL, NULL, 2, NULL), +(5, X'ec196cf54d47317023e38aa828cb845f956f1830eab8253a38b36c091f2d42b0', TIMESTAMP WITH TIME ZONE '2022-12-13 13:34:55.688364+06', 15, 0, TRUE, 'ad-hoc', 'Command failed with error 16410 (Location16410): ''Invalid $project :: caused by :: FieldPath field names may not start with ''$''.'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: FieldPath field names may not start with ''$''.", "code" : 16410, "codeName" : "Location16410" }', 1, NULL, NULL, NULL, 2, NULL), +(6, X'b112102283d27efe3110a7c1fc65e6f8d8f72c3bf2c61e3105ac509bf7eb299d', TIMESTAMP WITH TIME ZONE '2022-12-13 13:35:15.985236+06', 31, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7, X'ce2fbedf749bbbbe56cc1234c0fc9a61dce35f8e97379aa0225aae87bc74902f', TIMESTAMP WITH TIME ZONE '2022-12-13 13:35:54.105234+06', 36, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(8, X'b112102283d27efe3110a7c1fc65e6f8d8f72c3bf2c61e3105ac509bf7eb299d', TIMESTAMP WITH TIME ZONE '2022-12-13 13:36:00.273609+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(9, X'ce2fbedf749bbbbe56cc1234c0fc9a61dce35f8e97379aa0225aae87bc74902f', TIMESTAMP WITH TIME ZONE '2022-12-13 13:36:07.552526+06', 14, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(10, X'5f00f2b658873d061b76e26d8c0e1dbce47f7966bac6fe154f7b933f63d4b22c', TIMESTAMP WITH TIME ZONE '2022-12-13 13:36:12.266958+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(11, X'3900862cc63bfd4175bfde01dd939821e048c6e3ad66f6a6871afc515b0e0f95', TIMESTAMP WITH TIME ZONE '2022-12-13 13:37:16.787657+06', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$totalCount''.', 1, NULL, NULL, NULL, 2, NULL), +(12, X'38d3ba89c18f902e76c4448af4cbd0c0d76d9f75e045197f333f6bbf1f1dfb2f', TIMESTAMP WITH TIME ZONE '2022-12-13 13:38:20.29287+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13, X'05bdd58901b4c8ab974e8fa2797e97c7e2f04651f9225f318862f25a74eed315', TIMESTAMP WITH TIME ZONE '2022-12-13 13:38:36.649748+06', 17, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(14, X'fef97315a7b8cbf0b1585af93e3e28bf923d16b62cd4accf160872c57ea627b7', TIMESTAMP WITH TIME ZONE '2022-12-13 13:40:18.944463+06', 110, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15, X'b33d6035ee535318a76ba60453010d9e649739373f55d68d72a49772d323da40', TIMESTAMP WITH TIME ZONE '2022-12-13 13:43:53.241098+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(16, X'c88634ff3094743f56b67f2d980a986166f5d9328960621111a380c7353c714c', TIMESTAMP WITH TIME ZONE '2022-12-13 13:44:25.913483+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(17, X'a636cc4af66585dd394367f2e886f34db8e862abf91d34d029f8ba2b69fabae0', TIMESTAMP WITH TIME ZONE '2022-12-13 13:44:49.273895+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(18, X'ad807084d74e9371f4c53199a48029f499c2c10a07f4a8c935a9313a0628dc72', TIMESTAMP WITH TIME ZONE '2022-12-13 13:44:55.055416+06', 12, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(19, X'c88634ff3094743f56b67f2d980a986166f5d9328960621111a380c7353c714c', TIMESTAMP WITH TIME ZONE '2022-12-13 13:44:58.775662+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(20, X'37bf5f38a042e81ca1ebcd36e1379ae3800c66789799c85508b5c51750d0f143', TIMESTAMP WITH TIME ZONE '2022-12-13 13:45:25.185177+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21, X'caa6ef02f7dba8bd6750758393063ac92d9daf5ef816b00eea55e3bed71dc34f', TIMESTAMP WITH TIME ZONE '2022-12-13 13:45:37.919639+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22, X'd8bf36abe59e5457d06b23da5060ce9fc4d13eb197f70a113ab54be2ec2dc682', TIMESTAMP WITH TIME ZONE '2022-12-13 13:45:58.393375+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23, X'd8bf36abe59e5457d06b23da5060ce9fc4d13eb197f70a113ab54be2ec2dc682', TIMESTAMP WITH TIME ZONE '2022-12-13 13:46:22.992168+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(24, X'd8bf36abe59e5457d06b23da5060ce9fc4d13eb197f70a113ab54be2ec2dc682', TIMESTAMP WITH TIME ZONE '2022-12-13 13:46:24.351518+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(25, X'c9781de73600d39adbffed487d79cdc4bc81aa9a81d725b9b62f0699c09c6eea', TIMESTAMP WITH TIME ZONE '2022-12-13 13:46:44.649223+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26, X'f392470f8e20cb75f19bcb5855ee79b11bdb841eab9b008a02facbb5af3107c8', TIMESTAMP WITH TIME ZONE '2022-12-13 13:48:22.841752+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27, X'4ac7bce9ad639bef80828e518e9a2c9a2edd2d9ebd23c7290c94fe29008c75c8', TIMESTAMP WITH TIME ZONE '2022-12-13 13:48:29.155331+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(28, X'4ac7bce9ad639bef80828e518e9a2c9a2edd2d9ebd23c7290c94fe29008c75c8', TIMESTAMP WITH TIME ZONE '2022-12-13 13:48:43.623038+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(29, X'06d6f747b0cd6eeb680307a22052e5efe2fdf6e5a141a3f059833b32268d1f8f', TIMESTAMP WITH TIME ZONE '2022-12-13 13:49:46.980761+06', 31, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30, X'5fc8551d43a6054c083ab6e06ba625ca82fbb5a35fad0ac9c0c64a9f26e5dfdb', TIMESTAMP WITH TIME ZONE '2022-12-13 13:50:11.351504+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(31, X'5fc8551d43a6054c083ab6e06ba625ca82fbb5a35fad0ac9c0c64a9f26e5dfdb', TIMESTAMP WITH TIME ZONE '2022-12-13 13:50:20.815108+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(32, X'5fc8551d43a6054c083ab6e06ba625ca82fbb5a35fad0ac9c0c64a9f26e5dfdb', TIMESTAMP WITH TIME ZONE '2022-12-13 13:50:21.743167+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(33, X'5fc8551d43a6054c083ab6e06ba625ca82fbb5a35fad0ac9c0c64a9f26e5dfdb', TIMESTAMP WITH TIME ZONE '2022-12-13 13:50:42.471497+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(34, X'4c733831f29005e5a4bf1161b8a28d3697dca3611f96403d4e44daadcb654fd8', TIMESTAMP WITH TIME ZONE '2022-12-13 13:50:56.506314+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(35, X'4c733831f29005e5a4bf1161b8a28d3697dca3611f96403d4e44daadcb654fd8', TIMESTAMP WITH TIME ZONE '2022-12-13 13:50:57.23305+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36, X'a343df5bd15d1f179bb6c12660871c69a7d6c4402a13af4bf323f691a1509462', TIMESTAMP WITH TIME ZONE '2022-12-13 13:51:16.407585+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(37, X'a343df5bd15d1f179bb6c12660871c69a7d6c4402a13af4bf323f691a1509462', TIMESTAMP WITH TIME ZONE '2022-12-13 13:51:17.05443+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(38, X'87a9026130b2f0c7ccfe55097c8b5dcd7b3eebb2713b48a84ba1f2a2bee683da', TIMESTAMP WITH TIME ZONE '2022-12-13 13:51:32.098244+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(39, X'5fc8551d43a6054c083ab6e06ba625ca82fbb5a35fad0ac9c0c64a9f26e5dfdb', TIMESTAMP WITH TIME ZONE '2022-12-13 13:51:36.968033+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(40, X'd7cf43106bbab7d01fe126c13ae138c61c6288442bff6a8b426090cbadf8df44', TIMESTAMP WITH TIME ZONE '2022-12-13 13:54:43.46567+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(41, X'042aeac4e8428726241597547a83a4fe2968280ba1a65804de834f2d72ccfc98', TIMESTAMP WITH TIME ZONE '2022-12-13 13:54:52.205919+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(42, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 13:55:50.472038+06', 15, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(43, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 13:55:58.473552+06', 14, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(44, X'd5fd4792c3670019aa0f89be248656b28a7d64e3b0803cd0a5ba3d9f418aeda1', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:09.450437+06', 13, 0, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(45, X'faf6ee4215ef0d589405117bddae76f62bcedb7ce4b7bd3434ffc29317d7523a', TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:14.980504+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(46, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:13:30.689812+06', 20, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(47, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:13:35.525002+06', 15, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(48, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:14.893951+06', 14, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(49, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:21.486022+06', 10, 1, TRUE, 'question', NULL, 1, 1, 1, NULL, 2, FALSE), +(50, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:14.437381+06', 16, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(51, X'e8052298fb9222b117fa0f21286a66d857f1322a0daaa5a2cee8f0ff86bd9216', TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:18.642552+06', 12, 0, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(52, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:21.320041+06', 13, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(53, X'26a9fdd7cfb90ea5f11999a470522b01c03d4c5fb1e87c2247734fed9da70608', TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:23.735199+06', 14, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(54, X'398fdb4e27d5372b2c803da635f7a7e4e1f56416cffc1f35ff4e131cfbd2091c', TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:29.932473+06', 18, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(55, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:31.408364+06', 11, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(56, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:24:09.673621+06', 15, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:24:13.634453+06', 11, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(58, X'042aeac4e8428726241597547a83a4fe2968280ba1a65804de834f2d72ccfc98', TIMESTAMP WITH TIME ZONE '2022-12-13 14:27:16.464869+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(59, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:27:32.679292+06', 11, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(60, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:43.349569+06', 13, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(61, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:48.330201+06', 12, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(62, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:53.316845+06', 27, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(63, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:01.445473+06', 21, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(64, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:02.132886+06', 24, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(65, X'a259231a731ac4ac4c92f00ddf6d4d95a4a99c0805adc4123301c751b04701b7', TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:06.87339+06', 12, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(66, X'82e510cb13360cfa4581dea2ca4e97fa0f3e69124b70e5e9611722d261fbb765', TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:45.798011+06', 11, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(67, X'c62439b1bab68bd0d58fd2ee295e983b0b2a8d6efd462de3b42cbf4d401ca5a0', TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:50.737745+06', 11, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(68, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 14:59:37.546359+06', 11, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(69, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 14:59:43.296354+06', 12, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(70, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:02:33.059216+06', 18, 1, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(71, X'cf61d8a87a3e0b009e29b3d4e64eb836aa4f10f9a930c65100e635d63918e6fc', TIMESTAMP WITH TIME ZONE '2022-12-13 15:11:57.510231+06', 8, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''WHERE''.', 1, 1, NULL, NULL, 2, NULL), +(72, X'50c5c209a0b3b180ecf192567c2f6e48e07e743eb0a674c355cc1a6aba74c674', TIMESTAMP WITH TIME ZONE '2022-12-13 15:12:30.522274+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(73, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:12:46.955338+06', 14, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(74, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:14:26.161862+06', 12, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(75, X'c976ccd73b4b978c5dcf98a2b301bccc0d8a08f6621a0b611ebf1df0ea2a1125', TIMESTAMP WITH TIME ZONE '2022-12-13 15:14:29.47465+06', 12, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(76, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:14:30.514856+06', 17, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(77, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:35:50.660752+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(78, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:32.822215+06', 14, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(79, X'020d6c6bea20c6875bfeb5d405649fd051b45a31085b3a9eb3ebe6f8f17cb81e', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:36.066319+06', 21, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(80, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:37.176569+06', 11, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(81, X'4cb702f6ec1c35b6f9889e371474ad04df7890158bf03ced98b62247e99b1d51', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:40.838375+06', 12, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(82, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:42.386612+06', 12, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(83, X'de55e3727f9a15f6cb25ca7726c7c9bf8516b22a27b016af4aaa2bb149434f02', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:44.944204+06', 12, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(84, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:51.806508+06', 12, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(85, X'a086fc5730aa8565ada9833a2f91809833e36788cbfb3c98d48daef95040ac27', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:54.410329+06', 12, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(86, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:55.703829+06', 11, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(87, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:39:38.905124+06', 17, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(88, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:41:17.535722+06', 13, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(89, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:41:49.934103+06', 11, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(90, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 15:55:07.80778+06', 18, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(91, X'0b36cf13851ae9b27e0edf7908de5fc952d5842ae661e962dee3a9853a59e99f', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:50.334208+06', 56, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(92, X'2649dec82cc4627b0988a3d62fee7618cc8aa4ae2352033ee02d4e69051f18b8', TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:57.125524+06', 13, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(93, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-13 15:57:15.475798+06', 10, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(94, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-13 15:57:19.633669+06', 22, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(95, X'0254fca5fa84670a3d39fbbc32fe0dcc2a377bf4a798b8cf3b6f68883596ffbb', TIMESTAMP WITH TIME ZONE '2022-12-13 16:00:17.866462+06', 6, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 270. Character: ''<''.', 1, NULL, NULL, NULL, 2, NULL), +(96, X'1ec98a781bf26f2b68d4a075a82155a7a6f594681404a713cc7ffa854fcceb5e', TIMESTAMP WITH TIME ZONE '2022-12-13 16:01:00.153339+06', 17, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(97, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:01:46.425057+06', 11, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(98, X'b7544ef44cd3b395f44cdb09c28611b084482c0be48128dc0fb72f73cad2d05b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:02:40.778888+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(99, X'69c70f659c8180d42fb2619884c5be8a9dbb4a55882dbe27dc6fbd6059378744', TIMESTAMP WITH TIME ZONE '2022-12-13 16:03:03.051431+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(100, X'49a34fbac4e329735f7c17c0dba1ab698643619bf72405ae5b5f0a17cd2a3878', TIMESTAMP WITH TIME ZONE '2022-12-13 16:04:49.105577+06', 13, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(101, X'f1526e69f1584d9c0f88bedd65593af7d19c4a77f497859c468ef2cd8356495f', TIMESTAMP WITH TIME ZONE '2022-12-13 16:04:53.566191+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(102, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:42.762876+06', 12, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(103, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:42.889793+06', 17, 1, TRUE, 'question', NULL, 1, 2, 1, NULL, 2, FALSE), +(104, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:06:39.952392+06', 12, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(105, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:19.342849+06', 14, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(106, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:19.344216+06', 12, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(107, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:28.672577+06', 13, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(108, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.489689+06', 14, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(109, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.489494+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(110, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.645046+06', 16, 2, TRUE, 'question', NULL, 1, 3, 1, NULL, 2, FALSE), +(111, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:01.110132+06', 11, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(112, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:10.547903+06', 21, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(113, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:10.550687+06', 18, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(114, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:10.55007+06', 27, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(115, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:20.169778+06', 18, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(116, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:39.48051+06', 22, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(117, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:39.48536+06', 17, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(118, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:39.48051+06', 22, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(119, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:15:30.9839+06', 12, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(120, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:15:55.079292+06', 11, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(121, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:16:08.719772+06', 15, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(122, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:16:08.721151+06', 18, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(123, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:16:08.718478+06', 22, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(124, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:29.731057+06', 418, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(125, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:48.408219+06', 27, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(126, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:04.399798+06', 50, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(127, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:04.400289+06', 49, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(128, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:04.40042+06', 76, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(129, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:21.613061+06', 25, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(130, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:42.581033+06', 50, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(131, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:42.568133+06', 70, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(132, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:42.619054+06', 43, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(133, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:38:22.844696+06', 19, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(134, X'f4b0c8196200c7fd6f59ec81d632c0e14153f5e356837f6515f4e5d9cb19dd95', TIMESTAMP WITH TIME ZONE '2022-12-13 16:47:57.167547+06', 16, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(135, X'4632dfab0bee946babd4647fbeb6a7892855eda699117f0a9c1f73e4c3c96f69', TIMESTAMP WITH TIME ZONE '2022-12-13 16:48:12.325642+06', 17, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(136, X'4632dfab0bee946babd4647fbeb6a7892855eda699117f0a9c1f73e4c3c96f69', TIMESTAMP WITH TIME ZONE '2022-12-13 16:48:37.239897+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(137, X'7b8e194b0e91ab146c07a82b20a6cc8ad44a57426bc250bfb1a68c76760ec809', TIMESTAMP WITH TIME ZONE '2022-12-13 16:48:50.650739+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(138, X'a09d0920cdefed13433c86a5e07d5ba484bea38ece356df337c2efc98e951f7f', TIMESTAMP WITH TIME ZONE '2022-12-13 16:49:15.259919+06', 25, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(139, X'a09d0920cdefed13433c86a5e07d5ba484bea38ece356df337c2efc98e951f7f', TIMESTAMP WITH TIME ZONE '2022-12-13 16:49:16.246953+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(140, X'6171a9ac33c22ffc3c88d13e63a40a5f91f8cc516e03857ec92f46e449bd17e0', TIMESTAMP WITH TIME ZONE '2022-12-13 16:49:26.093309+06', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''count''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(141, X'dc32e35a6349faa2a82501ab6300383bcf5933462f612fdd041252c6a9cadf2c', TIMESTAMP WITH TIME ZONE '2022-12-13 16:49:36.981786+06', 31, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(142, X'a9cdbc1dd47c62db86139487b5a1723a3f04c0e857fdd39ee52a3cf1423c99a2', TIMESTAMP WITH TIME ZONE '2022-12-13 16:50:28.285734+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(143, X'a4fa43159ea5f50b7e9898253abc000073ff96d9fee765d756925442b04394fd', TIMESTAMP WITH TIME ZONE '2022-12-13 16:50:34.271679+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(144, X'12e5f6b1c511675ae9cf19d1e80a7f90bdccfb97a36ca927451a72dffbd9011c', TIMESTAMP WITH TIME ZONE '2022-12-13 16:50:46.596171+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(145, X'8413e1fff99c505756d3037a2ffc1f2e171c9f51be8f84eba9e4b990ba769e63', TIMESTAMP WITH TIME ZONE '2022-12-13 16:50:57.740652+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(146, X'4d282285bdf49c365914155327335c143b1fab82eeb37073bf9d95052029e520', TIMESTAMP WITH TIME ZONE '2022-12-13 16:51:39.279631+06', 21, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(147, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:02.803381+06', 19, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(148, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:07.405954+06', 17, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(149, X'f9ba95bdc178ade1ad75f565e43e472f4c405c4deb6c91b85b27d146cb4ee9b1', TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:25.523994+06', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(150, X'3d7078706515ea54f0dbe198aed0b4941d88bc8ec5e711e239f221f26e7a1ef1', TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:32.083713+06', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(151, X'98c7860d99f6f2583f7b922563613012c9f1200c68bd21af001163ff95726d9c', TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:37.652426+06', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(152, X'e3a8d333629f01a9d3913909cc2ce8e43506ae8d6774663bfc6caad1facc133c', TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:41.805873+06', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(153, X'020837c40a6871040b7bc344bbf6dc51d5d59f5c14271a7a7dcec472383b8d50', TIMESTAMP WITH TIME ZONE '2022-12-13 16:53:04.95588+06', 18, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(154, X'f517746541b10da68b17d642345bda7e80b0ee759957c746c222395ee6b6ded6', TIMESTAMP WITH TIME ZONE '2022-12-13 16:53:31.148622+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(155, X'aea6e039ebb29da9a32a9ad651f56fdd60edd7ddfa4ee87ff0942a9d37bfc4c6', TIMESTAMP WITH TIME ZONE '2022-12-13 16:54:41.57903+06', 36, 0, TRUE, 'ad-hoc', 'Command failed with error 16609 (Location16609): ''$divide only supports numeric types, not int and string'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "$divide only supports numeric types, not int and string", "code" : 16609, "codeName" : "Location16609" }', 1, NULL, NULL, NULL, 2, NULL), +(156, X'de4e71243c11605e407ac2f25ab8a2c7c7df16ee7bb31c39f128fdd11b5d5936', TIMESTAMP WITH TIME ZONE '2022-12-13 16:54:54.505018+06', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(157, X'de4e71243c11605e407ac2f25ab8a2c7c7df16ee7bb31c39f128fdd11b5d5936', TIMESTAMP WITH TIME ZONE '2022-12-13 16:54:55.607605+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(158, X'dd3d318fb21bb731831088c72d364b79ef67c23ee0565d660ba201bb8fd2994c', TIMESTAMP WITH TIME ZONE '2022-12-13 16:55:09.899423+06', 15, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(159, X'dd3d318fb21bb731831088c72d364b79ef67c23ee0565d660ba201bb8fd2994c', TIMESTAMP WITH TIME ZONE '2022-12-13 16:59:41.937967+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(160, X'411dca3ee17a5dd6408437a9c9166777578d9f7251e441aa34f22dd87552cf50', TIMESTAMP WITH TIME ZONE '2022-12-13 17:04:58.793032+06', 12, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(161, X'dd3d318fb21bb731831088c72d364b79ef67c23ee0565d660ba201bb8fd2994c', TIMESTAMP WITH TIME ZONE '2022-12-13 17:05:21.66939+06', 18, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(162, X'1f942d45dc3e046429965d210a85c1f5c6dcafc5d031ed96f4d0e7b6a1aa1020', TIMESTAMP WITH TIME ZONE '2022-12-13 17:05:46.454829+06', 22, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(163, X'ba953842a93db3ecf68c88565692eaf303bbb69e914259a4af8a46ab50a14ddc', TIMESTAMP WITH TIME ZONE '2022-12-13 17:07:44.974488+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(164, X'c97df5d051e1b0dd6faf0f07b6f6ef5f78829801747706d1d61cc3ef27cc56ad', TIMESTAMP WITH TIME ZONE '2022-12-13 17:08:09.626533+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(165, X'c97df5d051e1b0dd6faf0f07b6f6ef5f78829801747706d1d61cc3ef27cc56ad', TIMESTAMP WITH TIME ZONE '2022-12-13 17:08:10.505308+06', 20, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(166, X'5edbcfe47bdcfc3fbc40d804bd79cd92b5670e51d32733a052150ff87a10add7', TIMESTAMP WITH TIME ZONE '2022-12-13 17:08:41.70704+06', 35, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(167, X'dd3d318fb21bb731831088c72d364b79ef67c23ee0565d660ba201bb8fd2994c', TIMESTAMP WITH TIME ZONE '2022-12-13 17:11:18.790403+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(168, X'070e38bc337bc35a844b742575cecc8fffbf45237421ac05c6b351ee81c3aceb', TIMESTAMP WITH TIME ZONE '2022-12-13 17:11:51.70325+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(169, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:24.115171+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(170, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:28.029567+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(171, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:33.54668+06', 17, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(172, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:39.216929+06', 15, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(173, X'8bb39ac584acabeccaa913a2203ced2ade5de86791237aaf7b9e9f2ff6f001db', TIMESTAMP WITH TIME ZONE '2022-12-13 17:13:05.019026+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(174, X'3e30b0696acf2cec595d107322d23758e5d929e39732091d6f1672ae2eca3674', TIMESTAMP WITH TIME ZONE '2022-12-13 17:14:46.328026+06', 14, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''totalCount'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''totalCount'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(175, X'8bb39ac584acabeccaa913a2203ced2ade5de86791237aaf7b9e9f2ff6f001db', TIMESTAMP WITH TIME ZONE '2022-12-13 17:14:50.634839+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(176, X'915a0b5ab93604497b99780ec488547eb92dfcdd818f1d86c2e1cf28beb8ed4d', TIMESTAMP WITH TIME ZONE '2022-12-13 17:15:42.841064+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(177, X'915a0b5ab93604497b99780ec488547eb92dfcdd818f1d86c2e1cf28beb8ed4d', TIMESTAMP WITH TIME ZONE '2022-12-13 17:15:43.483016+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(178, X'180f8d98f0fac1dcdc258dd33998838fc8c4d37be1cd3b7a5b9541994a335da9', TIMESTAMP WITH TIME ZONE '2022-12-13 17:15:57.74526+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(179, X'180f8d98f0fac1dcdc258dd33998838fc8c4d37be1cd3b7a5b9541994a335da9', TIMESTAMP WITH TIME ZONE '2022-12-13 17:15:58.354895+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(180, X'4ef9a4e9c4af8230925a7339512b1d666e716330bd69ad51f56568dc4b089c70', TIMESTAMP WITH TIME ZONE '2022-12-13 17:16:17.095254+06', 2, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is REGULAR_EXPRESSION.', 1, NULL, NULL, NULL, 2, NULL), +(181, X'565c4bfd5dea4d67f89d918bf5087c20d83c791ae926e5e4451ea4e2fa744c60', TIMESTAMP WITH TIME ZONE '2022-12-13 17:16:28.751812+06', 15, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(182, X'12e6978bb06dd0819dbb3bcbf96706a892d097d45fa81fb072b7239733eef7c2', TIMESTAMP WITH TIME ZONE '2022-12-13 17:18:46.446672+06', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '':''.', 1, NULL, NULL, NULL, 2, NULL), +(183, X'23168698deabe35ac8ba797ea6ff560ea675b92b0ae7e4ba1bbe6249a109d85c', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:02.361286+06', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '':''.', 1, NULL, NULL, NULL, 2, NULL), +(184, X'565c4bfd5dea4d67f89d918bf5087c20d83c791ae926e5e4451ea4e2fa744c60', TIMESTAMP WITH TIME ZONE '2022-12-13 17:19:13.239272+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(185, X'828fe517a4629fdddc32dee7661d84ae5278310209ecee94b3d8d659c8bd6956', TIMESTAMP WITH TIME ZONE '2022-12-13 17:25:59.687973+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(186, X'8893fead2d58d85004ce4f6d39d910b14f6c1f2af2a1c3b022e794a4ae8d1e74', TIMESTAMP WITH TIME ZONE '2022-12-13 17:26:34.955082+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''totalCount''.', 1, NULL, NULL, NULL, 2, NULL), +(187, X'16e0a7e76d556025daeb84a34b18bce3d7c95dba6861e42a437e498ccc646ae6', TIMESTAMP WITH TIME ZONE '2022-12-13 17:28:11.981793+06', 17, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(188, X'bdc95d753b59ef47e34c875788846897206b686cd47a17a4e1d4aca85b8ec247', TIMESTAMP WITH TIME ZONE '2022-12-13 17:28:22.058726+06', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''totalCount''.', 1, NULL, NULL, NULL, 2, NULL), +(189, X'9e521e7cde186c2ccee50de7472c9ec02beefb69e020c3c335364d1ecff8e443', TIMESTAMP WITH TIME ZONE '2022-12-13 17:28:29.40601+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(190, X'9e521e7cde186c2ccee50de7472c9ec02beefb69e020c3c335364d1ecff8e443', TIMESTAMP WITH TIME ZONE '2022-12-13 17:29:43.29314+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(191, X'047f446e3c518ea97d6bc85bf8ddaa111e2ce89f3247308ac41993dfadc34551', TIMESTAMP WITH TIME ZONE '2022-12-13 17:29:52.945744+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(192, X'047f446e3c518ea97d6bc85bf8ddaa111e2ce89f3247308ac41993dfadc34551', TIMESTAMP WITH TIME ZONE '2022-12-13 17:29:54.212171+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(193, X'e34556a7cba46abc9a3e33932d8f4e2c518fb3c1e84c8ac66e647f003fba0dcf', TIMESTAMP WITH TIME ZONE '2022-12-13 17:30:03.342959+06', 35, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(194, X'e6d9ac7f6c2a7525f0a079fdbce5a99575978b54e91e4a608f0ede7dafdcbf90', TIMESTAMP WITH TIME ZONE '2022-12-13 17:30:07.489789+06', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is BOOLEAN.', 1, NULL, NULL, NULL, 2, NULL), +(195, X'2826e9fe95710a602304fd7777db9322f3698d4c4adc0bc202fd6ba79c483b6f', TIMESTAMP WITH TIME ZONE '2022-12-13 17:30:27.500864+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(196, X'617c416651735db1b645b7259338637bf71797054ca64504d456c04103a78555', TIMESTAMP WITH TIME ZONE '2022-12-13 17:30:37.107905+06', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found ''totalCount''.', 1, NULL, NULL, NULL, 2, NULL), +(197, X'883b462fa45f0d147849e1bd9d692bc0b9aa8aaa741426370562f340862c2771', TIMESTAMP WITH TIME ZONE '2022-12-13 17:30:50.996288+06', 2, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(198, X'883b462fa45f0d147849e1bd9d692bc0b9aa8aaa741426370562f340862c2771', TIMESTAMP WITH TIME ZONE '2022-12-13 17:31:02.012939+06', 4, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(199, X'3f4594fc17e4d3c7c745bc33fb6843daefbffd2036c0393f75efeeba586faa63', TIMESTAMP WITH TIME ZONE '2022-12-13 17:32:19.932248+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(200, X'017fb49490e9cf2b116421e2184d96ec4561bff5f5af9c98eeee6d72af39bdaa', TIMESTAMP WITH TIME ZONE '2022-12-13 17:36:16.151174+06', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(201, X'ac93f818a10cc68d529af9cbced197fbe15b5e96df3eda8b15476ae906e1c050', TIMESTAMP WITH TIME ZONE '2022-12-13 17:36:25.338682+06', 20, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(202, X'883b462fa45f0d147849e1bd9d692bc0b9aa8aaa741426370562f340862c2771', TIMESTAMP WITH TIME ZONE '2022-12-13 17:37:31.241394+06', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(203, X'a21b8c445a33494a9056bbd885cacd39e163937849b6216d3e9fa118f81a7a75', TIMESTAMP WITH TIME ZONE '2022-12-13 17:37:43.655525+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(204, X'a8e70b7b9d137820ebb28469cf5073734ffb5cb76f489abff9bd09afa494fdc9', TIMESTAMP WITH TIME ZONE '2022-12-13 17:39:34.332756+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(205, X'a21b8c445a33494a9056bbd885cacd39e163937849b6216d3e9fa118f81a7a75', TIMESTAMP WITH TIME ZONE '2022-12-13 17:39:39.059127+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(206, X'a8e70b7b9d137820ebb28469cf5073734ffb5cb76f489abff9bd09afa494fdc9', TIMESTAMP WITH TIME ZONE '2022-12-13 17:40:51.217361+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(207, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 17:44:22.380386+06', 45, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(208, X'1b3ab18aaaf3824732ba1c62ab28621ac8cfccaeb3b5d3ea9bbffd6ed6135c46', TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:00.547207+06', 68, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(209, X'a1b5ea0bbda8b03e7a0e24c7a652f908a261d262e701679412d7b8947133417b', TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:10.3792+06', 65, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(210, X'ff6930d0da39de0833aab49ac337cd9540ea4b7d97c5d9c3e31e2defa9cda46c', TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:18.913756+06', 42, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(211, X'8d62c1af7d318d75384e600b8d16b20cb359214656c7112c3ad99beedae2ec42', TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:48.037455+06', 31, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(212, X'ff6930d0da39de0833aab49ac337cd9540ea4b7d97c5d9c3e31e2defa9cda46c', TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:57.969704+06', 16, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(213, X'85c5f49932000352a915db46ca55e502a7f5195052056924036426a0b43ab10e', TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:00.755104+06', 17, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(214, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:44.678106+06', 23, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(215, X'85c5f49932000352a915db46ca55e502a7f5195052056924036426a0b43ab10e', TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:46.147365+06', 19, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(216, X'85c5f49932000352a915db46ca55e502a7f5195052056924036426a0b43ab10e', TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:56.195578+06', 19, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(217, X'85c5f49932000352a915db46ca55e502a7f5195052056924036426a0b43ab10e', TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:00.804976+06', 22, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(218, X'85c5f49932000352a915db46ca55e502a7f5195052056924036426a0b43ab10e', TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:10.958376+06', 18, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(219, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:22.427899+06', 26, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(220, X'85c5f49932000352a915db46ca55e502a7f5195052056924036426a0b43ab10e', TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:24.883986+06', 23, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(221, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:29.247144+06', 14, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(222, X'fc02edb2bbfe5acd163e17b7525040e7ef2dfe187f991caf7a1d7361fa32a153', TIMESTAMP WITH TIME ZONE '2022-12-13 17:48:40.413252+06', 16, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(223, X'86484caaa45f04293df07279391c97de429bbe888b557bebc9703d23d5a4261e', TIMESTAMP WITH TIME ZONE '2022-12-13 17:48:51.269444+06', 15, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(224, X'c428573e6271e91fc40ca445ea7117e11a8f02df84c74c5c8d3f1351e0d3f5c1', TIMESTAMP WITH TIME ZONE '2022-12-13 17:53:00.655539+06', 17, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(225, X'06d31d0594493e16dc5480747de115083321f307d4789f81c434c86fb19ca193', TIMESTAMP WITH TIME ZONE '2022-12-13 17:53:39.679823+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''childsAgeInDaysAtDeclaration''.', 1, NULL, NULL, NULL, 2, NULL), +(226, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 17:53:49.948271+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(227, X'86484caaa45f04293df07279391c97de429bbe888b557bebc9703d23d5a4261e', TIMESTAMP WITH TIME ZONE '2022-12-13 18:11:44.985063+06', 18, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(228, X'9181b39d836399e62ed1406285b8e9a2c2b3c0df812e7f61e63449f4a0af3f98', TIMESTAMP WITH TIME ZONE '2022-12-13 18:19:42.496812+06', 11, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(229, X'e75bd2f2baa75ed9249bc1532c341b54d8d6525a6fc1e26a312aae3e8ea9b6d2', TIMESTAMP WITH TIME ZONE '2022-12-13 18:20:22.944387+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(230, X'371dec7f646c211ffb7beb3bdbaf0e2d09c0c3af3b3b600c90bee98f782ac4b6', TIMESTAMP WITH TIME ZONE '2022-12-13 18:20:36.625385+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(231, X'5a5467c4e352f77b75d85f1cfd028f6fd2bffb26c827ee60d1b2162ba46deb31', TIMESTAMP WITH TIME ZONE '2022-12-13 18:21:37.2417+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(232, X'250934363928e74dbae33321a36b62efa71ef8e8de46020df68956bebb3d8732', TIMESTAMP WITH TIME ZONE '2022-12-13 18:21:48.007201+06', 14, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(233, X'aee5292e242a6c31e6a509d2589842195b2b82dc7f157f61654c4da21eb36878', TIMESTAMP WITH TIME ZONE '2022-12-13 18:22:31.455458+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(234, X'8cd4e41489e49dd43a8ac19d7ff3e463605d47b6343703241e76860789946f15', TIMESTAMP WITH TIME ZONE '2022-12-13 18:23:14.107634+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(235, X'c60d02d110149acf88e1994c93895b3ad2c91cebd5b1147df2ed246aa9e19d54', TIMESTAMP WITH TIME ZONE '2022-12-13 18:23:33.28163+06', 16, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(236, X'4ff97cd6ba38944f9b200b26672739aa6f116598a6add0770eda6661a7d2cc35', TIMESTAMP WITH TIME ZONE '2022-12-13 18:25:34.294817+06', 18, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(237, X'2388ae86d66fc862ce519ebc7b89944b7f1bed02282237575154e3eee0b6a2cd', TIMESTAMP WITH TIME ZONE '2022-12-13 18:27:15.239645+06', 32, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(238, X'ec7468a74313db07640404d0432582e35ae990a0805ccef4103c775dc926015e', TIMESTAMP WITH TIME ZONE '2022-12-13 18:27:23.455107+06', 16, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(239, X'd53c2a6f9dc8e1b63f847596933972d614dcebe8dee26f73dce6e05ce876aeea', TIMESTAMP WITH TIME ZONE '2022-12-13 18:27:28.332231+06', 17, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(240, X'3cfc5365c808fbd5c31c51d0b59624eba5c2023e0a6c95a27849ff2380bbd8dc', TIMESTAMP WITH TIME ZONE '2022-12-13 18:28:06.740613+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(241, X'67202f7d74e60ceb48c34579fd649df213dd3a46ad476e79d1dc5e7318c0045b', TIMESTAMP WITH TIME ZONE '2022-12-13 18:28:28.070115+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(242, X'1cd82e8fe4b7c0390d2ae5e389d21ffbcca7b0695aeeb7d3f6eb390396542368', TIMESTAMP WITH TIME ZONE '2022-12-13 18:28:49.814633+06', 53, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(243, X'4ff97cd6ba38944f9b200b26672739aa6f116598a6add0770eda6661a7d2cc35', TIMESTAMP WITH TIME ZONE '2022-12-13 18:31:31.188346+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(244, X'50aa51802245e010a0b5870b2d0bf44c54439b7daeb3e31e9bc2400204b2547f', TIMESTAMP WITH TIME ZONE '2022-12-13 18:45:02.070023+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(245, X'cb33691f77d1dc218a13fa4c021bf87b41b665cc7646d0850756c85d1d18f909', TIMESTAMP WITH TIME ZONE '2022-12-13 18:47:31.319402+06', 23, 0, TRUE, 'ad-hoc', 'Command failed with error 16555 (Location16555): ''Failed to optimize pipeline :: caused by :: $multiply only supports numeric types, not string'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Failed to optimize pipeline :: caused by :: $multiply only supports numeric types, not string", "code" : 16555, "codeName" : "Location16555" }', 1, NULL, NULL, NULL, 2, NULL), +(246, X'a500fb4a1082c810a37e29fcfb6e1d9b5fbe1f6536c150c97e5ca94b4ad517bc', TIMESTAMP WITH TIME ZONE '2022-12-13 18:48:19.469812+06', 12, 0, TRUE, 'ad-hoc', 'Command failed with error 16555 (Location16555): ''Failed to optimize pipeline :: caused by :: $multiply only supports numeric types, not string'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Failed to optimize pipeline :: caused by :: $multiply only supports numeric types, not string", "code" : 16555, "codeName" : "Location16555" }', 1, NULL, NULL, NULL, 2, NULL), +(247, X'58cbcf86619fed76df1f06846a65e14d7ba5bdd142e2af4155802b2c2d29ceb7', TIMESTAMP WITH TIME ZONE '2022-12-13 18:48:47.633837+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(248, X'130e3b3b81af2786d8d76bc0b3731cf91f85152ed7a7c537775bfdb7f4757d06', TIMESTAMP WITH TIME ZONE '2022-12-13 18:49:48.188784+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(249, X'23c51f826194f013ce7ef9e6a1672f061a957e4efd25df1eef472fd16ce24168', TIMESTAMP WITH TIME ZONE '2022-12-13 18:50:10.896765+06', 25, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(250, X'afc41e6e9b463448fbea843996c7bfa0a15901629f7be4068a37b309788956eb', TIMESTAMP WITH TIME ZONE '2022-12-13 18:51:47.883587+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found ''}''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(251, X'ff6baecfea1121b37004923b3d23d717452ab7d56a17982a021760089070c6e4', TIMESTAMP WITH TIME ZONE '2022-12-13 18:53:07.652196+06', 55, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(252, X'824b83c285644697505d5e8721513ae8c755c3b32c486b1c59e43c5896b52dda', TIMESTAMP WITH TIME ZONE '2022-12-13 18:53:19.103652+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(253, X'5356135fe2f86f93a1cb8808fec911d11a14406c2277580f587a73e87c7b5855', TIMESTAMP WITH TIME ZONE '2022-12-13 18:53:26.553303+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(254, X'015a123448d4150ad9d42b9f368599c6e59d4d2567ef7c151e61f2cbe29254ad', TIMESTAMP WITH TIME ZONE '2022-12-13 18:53:44.146706+06', 14, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(255, X'616347afa190b2dbb8340ffba754cf48e677ac4045dec53d0b7de535743d07b1', TIMESTAMP WITH TIME ZONE '2022-12-13 18:55:39.008445+06', 5, 0, TRUE, 'ad-hoc', 'Invalid JSON regular expression. Position: 1304.', 1, NULL, NULL, NULL, 2, NULL), +(256, X'3e286d77d5476b22bc6893e8a0c843d0dfaeeec1ed9dab981b206011e2fba542', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:06.21639+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$divide''.', 1, NULL, NULL, NULL, 2, NULL), +(257, X'1495d2becb404880ca9d80d09013a014fe3f6dfddedaf37197298dca50678272', TIMESTAMP WITH TIME ZONE '2022-12-13 18:56:26.657439+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(258, X'cc31be37c4f82dbb819e6b05df4e97082ff9f4d7a3bd2f514a256da109c7e98a', TIMESTAMP WITH TIME ZONE '2022-12-13 18:57:56.757831+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(259, X'cffc115badf85e693167a46b7d341fb6e188bc6695f9421852db9e7e0bedc27f', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:12.190721+06', 11, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(260, X'e9fa377775c0c8a43f1bc1eab18d44f710acb0a83502828687d76e7a9b364ab5', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:25.038689+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(261, X'aee1702f53de0ec0212d36f1156b1e235caeeabcb5da53fde5aa00740a3c36f1', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:39.480226+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$ne''.', 1, NULL, NULL, NULL, 2, NULL), +(262, X'aee1702f53de0ec0212d36f1156b1e235caeeabcb5da53fde5aa00740a3c36f1', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:42.755097+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$ne''.', 1, NULL, NULL, NULL, 2, NULL), +(263, X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:44.987937+06', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(264, X'7568e58e968dde446c8eda5474c1351fed35912481da54abca1e8d21ae470733', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:47.227804+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$and''.', 1, NULL, NULL, NULL, 2, NULL), +(265, X'f1b4a982940c021e7a3ea88d19de7c0f5061ea3ce2b290f92a825acdd99a7209', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:50.115403+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$match''.', 1, NULL, NULL, NULL, 2, NULL), +(266, X'b09ed8cd8223105621c639adcd12b965b055c736d3290abd8834ca0778d5bff5', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:52.491717+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''totalCountInfo''.', 1, NULL, NULL, NULL, 2, NULL), +(267, X'273b6c5c76d280e5b6aa3e25de6fbb073da10b9938e46900291713a1346e6ecb', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:54.659646+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$facet''.', 1, NULL, NULL, NULL, 2, NULL), +(268, X'cffc115badf85e693167a46b7d341fb6e188bc6695f9421852db9e7e0bedc27f', TIMESTAMP WITH TIME ZONE '2022-12-13 18:58:59.510816+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(269, X'e47e8a4579fb5022bd5f6da0670fbba229c3b545966fa9401355e7df9a76a29e', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:18.71162+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(270, X'e47e8a4579fb5022bd5f6da0670fbba229c3b545966fa9401355e7df9a76a29e', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:19.363341+06', 15, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(271, X'e47e8a4579fb5022bd5f6da0670fbba229c3b545966fa9401355e7df9a76a29e', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:19.835996+06', 9, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(272, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:25.987808+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(273, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:30.019615+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(274, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:30.875447+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(275, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:33.011553+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(276, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:33.772252+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(277, X'ca134b72d9624a67298d0b4bc571bc442e69fceecd9335c3611ddd4809e818b8', TIMESTAMP WITH TIME ZONE '2022-12-13 18:59:39.092503+06', 9, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(278, X'7bd47ccbd8bbc951f13edaab46641a5b11e942607f801700fd774dbc0b74e3c6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:26.172308+06', 14, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(279, X'7bd47ccbd8bbc951f13edaab46641a5b11e942607f801700fd774dbc0b74e3c6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:26.883442+06', 8, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(280, X'753931027d7df4b74bbd7ea0d622b3b9a3cd6d17d30c275d7bad79fc161f1d19', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:37.776485+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(281, X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:46.731493+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(282, X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:47.692031+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(283, X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:48.315526+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(284, X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:48.515286+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(285, X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:48.699682+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(286, X'3dd6212ee2a1d914f7bf9851c8a90a2b4ef11c6a0e1a99b27ebe4ecaf92bf0ff', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:48.883443+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(287, X'508f5b691ffddc84980cf45459c8d1bebd395bb934b34cd6488be3c21c08ef8f', TIMESTAMP WITH TIME ZONE '2022-12-13 19:00:53.388037+06', 8, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(288, X'51d4e859e693fd2e26aeb0e220e614798e007654add7c246abcf07411038c713', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:02.401984+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(289, X'16f3c679d7be8ca98a2d1773d4d9520a8363e0da017930fcd95803ea7edb0bb6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:07.195262+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''filterGender''.', 1, NULL, NULL, NULL, 2, NULL), +(290, X'16f3c679d7be8ca98a2d1773d4d9520a8363e0da017930fcd95803ea7edb0bb6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:08.515487+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''filterGender''.', 1, NULL, NULL, NULL, 2, NULL), +(291, X'5a50446e7a36f89234cbaf78a2567acf6120043915014a3994ae3e9fe902a80c', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:14.59673+06', 9, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(292, X'16f3c679d7be8ca98a2d1773d4d9520a8363e0da017930fcd95803ea7edb0bb6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:24.083944+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''filterGender''.', 1, NULL, NULL, NULL, 2, NULL), +(293, X'16f3c679d7be8ca98a2d1773d4d9520a8363e0da017930fcd95803ea7edb0bb6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:27.92365+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''filterGender''.', 1, NULL, NULL, NULL, 2, NULL), +(294, X'16f3c679d7be8ca98a2d1773d4d9520a8363e0da017930fcd95803ea7edb0bb6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:28.587111+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''filterGender''.', 1, NULL, NULL, NULL, 2, NULL), +(295, X'b551b5d6fcd3bbb7b143ad7482a2402b1316b22a4ce8c86e551fad5de58ce911', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:32.331578+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(296, X'f1c6e2208b1f7d11517bcd9378653405d9ab5e86e4342ac23594f02600054d72', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:54.026006+06', 11, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(297, X'f1c6e2208b1f7d11517bcd9378653405d9ab5e86e4342ac23594f02600054d72', TIMESTAMP WITH TIME ZONE '2022-12-13 19:01:54.787637+06', 8, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(298, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:02:03.402616+06', 13, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(299, X'8a4dd8301109c493d336ba977870b981f2cd0915ee554a343f7f351ff852133b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:03:17.268908+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(300, X'4334330933e7feafbff2f8c97a9715f4bbd331b356d85098dcd94c01ccf79123', TIMESTAMP WITH TIME ZONE '2022-12-13 19:03:22.927835+06', 22, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(301, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.31028+06', 17, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(302, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.314645+06', 22, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(303, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.311937+06', 31, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(304, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.535268+06', 13, 2, TRUE, 'question', NULL, 1, 4, 1, NULL, 2, FALSE), +(305, X'020d6c6bea20c6875bfeb5d405649fd051b45a31085b3a9eb3ebe6f8f17cb81e', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.808946+06', 36, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(306, X'f736bc249a6eb99d0f37a973a8b9a0943243fe58d8ab3f050cf3e40b297812e6', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.819082+06', 29, 1, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(307, X'1ccfa25bb59c85d9755c9b4d546b9dba1126ae65c6fb55aeb36c3267f90a421a', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.819133+06', 34, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(308, X'1049099c1cd6bf8395fd70620da3c7983f8a88bffa329f5b9731a7d515229deb', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.829635+06', 32, 1, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(309, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.322781+06', 35, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(310, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.324792+06', 32, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(311, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.323923+06', 23, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(312, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.341282+06', 34, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(313, X'78e5a7503dbde9cfe89f2a45e9e663804bd775945103d17971834bcdca5e9c00', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.003203+06', 14, 0, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(314, X'350be020afae5d8396bae553609ab0025297a3bfa436e96fd061ea881cee779e', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.003913+06', 15, 1, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(315, X'ddccbbf8e565389d941d628f0f77f443defdef5531eaf552939f1345c79ea50e', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.00229+06', 19, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(316, X'bac9710b9a705626755202a47e6cb4337be03fd264d38274ca75df4f0761f05d', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.002332+06', 17, 0, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(317, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.464587+06', 16, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(318, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.464585+06', 16, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(319, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.473309+06', 22, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(320, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.467444+06', 28, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(321, X'1be5fad59a7cd8c40f2b013aecb70c115221eb6c88e1affcc85f9a503228e817', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.401294+06', 20, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(322, X'34c8d3c78934bd5b67a852b5193356c47b25f83c85b83b47e255590003871913', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.403411+06', 18, 1, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(323, X'a3746ae3effdd1273925119d64fb06a8190adedf78abb81d139e6e123af28ac5', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.405157+06', 25, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(324, X'0f2cb96f16a8feb17cde832f6c100cd06344b6457c63c130892ac53fdd30a392', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.404272+06', 26, 1, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(325, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.167407+06', 15, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(326, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.16739+06', 15, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(327, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.16739+06', 15, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(328, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.169689+06', 22, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(329, X'de55e3727f9a15f6cb25ca7726c7c9bf8516b22a27b016af4aaa2bb149434f02', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.571868+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(330, X'549603661f5444f8c4cf80aaa1c2f51a03d1e35c29c4aec3c4c8fd0caae8b3d2', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.573787+06', 16, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(331, X'bb35525c3b6344c238e251631893c0dcf597803ab4eee4ed695f6fa2e77b11cc', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.572731+06', 17, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(332, X'b3696a64a0e12189b62383a7e44089abd711836309659d96c0ce930e93f3f9dd', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.572769+06', 33, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(333, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.060143+06', 15, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(334, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.060141+06', 15, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(335, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.060763+06', 25, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(336, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.059555+06', 31, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(337, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:40.722589+06', 13, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(338, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.113111+06', 18, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(339, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.111251+06', 20, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(340, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.11311+06', 18, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(341, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.11311+06', 36, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(342, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:20.76051+06', 12, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(343, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.441553+06', 20, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(344, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.441578+06', 20, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(345, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.449666+06', 25, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(346, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.441578+06', 38, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(347, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:43.670803+06', 11, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(348, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:27.371089+06', 14, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(349, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.317892+06', 18, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(350, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.318172+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(351, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.319594+06', 16, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(352, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.323799+06', 29, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(353, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:25:40.765389+06', 18, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(354, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.474909+06', 24, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(355, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.474236+06', 21, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(356, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.476245+06', 19, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(357, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.474334+06', 35, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(358, X'0a87679fe06ec977055a1ca610a6ce73b1253ffbdb257446d1e4277849829e8c', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.602077+06', 20, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(359, X'b843938f50a9be2122a3d06603b79a5ade4dec23168d14caaddf0ac16b58049c', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.603291+06', 20, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(360, X'513f38ddd64c2b566481868d8e54f4e9adfa85f8a6ec631af772640733898a2d', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.604987+06', 27, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(361, X'ad12b46b9bdfe6eb5f688629f8ab575ebd470432a2d685ed05f0822e91023c19', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.603291+06', 31, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(362, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.641434+06', 16, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(363, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.641831+06', 16, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(364, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.641434+06', 22, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(365, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.649823+06', 23, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(366, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:25.891275+06', 15, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(367, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:36.747659+06', 11, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(368, X'50c5c209a0b3b180ecf192567c2f6e48e07e743eb0a674c355cc1a6aba74c674', TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:52.74666+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(369, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:59.825269+06', 11, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(370, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:45:03.036979+06', 14, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(371, X'f7cca91a4a6757ee569f3519a54a983f0d4e77dfbc09a0750f794fff49397676', TIMESTAMP WITH TIME ZONE '2022-12-13 19:45:11.593918+06', 11, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(372, X'e715a02c9f3da94909268e64c36e117c565a6ba4c6975ef7c7d34d506b5bbb50', TIMESTAMP WITH TIME ZONE '2022-12-13 19:45:52.325153+06', 19, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(373, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.069695+06', 25, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(374, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.073528+06', 22, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(375, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.06997+06', 25, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(376, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.070763+06', 29, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(377, X'1be5fad59a7cd8c40f2b013aecb70c115221eb6c88e1affcc85f9a503228e817', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.570258+06', 30, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(378, X'0f2cb96f16a8feb17cde832f6c100cd06344b6457c63c130892ac53fdd30a392', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.573644+06', 30, 1, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(379, X'53207fc9f9344a792094fcd75c4926bbc68bfd9bca3edaf3d07385dccc488759', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.569948+06', 36, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(380, X'34c8d3c78934bd5b67a852b5193356c47b25f83c85b83b47e255590003871913', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.569874+06', 43, 1, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(381, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.584867+06', 19, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(382, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.585448+06', 19, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(383, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.586082+06', 29, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(384, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.588608+06', 36, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(385, X'b3696a64a0e12189b62383a7e44089abd711836309659d96c0ce930e93f3f9dd', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.591829+06', 21, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(386, X'bb35525c3b6344c238e251631893c0dcf597803ab4eee4ed695f6fa2e77b11cc', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.591812+06', 21, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(387, X'ca82f63e92e6e301c0744f8151048a186ddae451ce4a605d84ec5ec12476d0c0', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.592045+06', 27, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(388, X'549603661f5444f8c4cf80aaa1c2f51a03d1e35c29c4aec3c4c8fd0caae8b3d2', TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.595399+06', 38, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(389, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.836894+06', 24, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(390, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.83656+06', 25, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(391, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.836924+06', 25, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(392, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.836538+06', 26, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(393, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:14.382576+06', 17, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(394, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:21.546514+06', 11, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(395, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.302162+06', 14, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(396, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.301476+06', 16, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(397, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.307049+06', 24, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(398, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.305113+06', 26, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(399, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:23.931823+06', 13, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(400, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.430025+06', 22, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(401, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.432625+06', 20, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(402, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.433848+06', 26, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(403, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.441032+06', 32, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(404, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:27.707963+06', 12, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(405, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:49.299494+06', 28, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(406, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.305767+06', 18, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(407, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.308967+06', 22, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(408, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.305774+06', 26, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(409, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.31022+06', 26, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(410, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:27.475459+06', 12, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(411, X'e715a02c9f3da94909268e64c36e117c565a6ba4c6975ef7c7d34d506b5bbb50', TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:45.302686+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(412, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.167068+06', 26, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(413, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.166448+06', 33, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(414, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.170725+06', 37, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(415, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.170588+06', 38, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(416, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:53.792205+06', 9, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(417, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:13.339459+06', 12, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(418, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.464122+06', 16, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(419, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.467719+06', 19, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(420, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.468262+06', 18, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(421, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.466773+06', 22, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(422, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:17.150209+06', 10, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(423, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.860139+06', 17, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(424, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.857847+06', 22, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(425, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.862928+06', 23, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(426, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.862997+06', 30, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(427, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:25.465591+06', 11, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(428, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.743117+06', 14, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(429, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.739352+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(430, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.743118+06', 22, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(431, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.74558+06', 28, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(432, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:48.370146+06', 14, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(433, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.641423+06', 29, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(434, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.645912+06', 27, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(435, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.647206+06', 26, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(436, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.645875+06', 38, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(437, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:03.980815+06', 325, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(438, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:03.973332+06', 332, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(439, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:03.981177+06', 324, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(440, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:03.973852+06', 332, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(441, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-14 12:26:39.137501+06', 46, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(442, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 12:26:44.826732+06', 30, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(443, X'ea04f0276d9ac17bced0d2202babb52c109ffeb6fed707115cdfb476532dae42', TIMESTAMP WITH TIME ZONE '2022-12-14 12:28:18.791812+06', 36, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(444, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:06.079055+06', 27, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(445, X'949002117670166cb2dec2b891f3fa1eac80435bd802860529a4f564ade96e23', TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:35.376916+06', 21, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(446, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:52.620749+06', 24, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(447, X'0590a55b3575497380ef44deded785071bbd63aeb86326a02d4fce12a060515b', TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:55.482652+06', 17, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(448, X'e0fb88ed4698825ad54c751e29cf7f58dd971d4e1913694a4da8dde094adac95', TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:05.14345+06', 15, 2, TRUE, 'question', NULL, 1, 3, NULL, NULL, 2, FALSE), +(449, X'31be59ed464c7e80053d84c4307b2811ddba7ded519924221bf8dcd8982846d9', TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:08.703082+06', 17, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(450, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:29.284686+06', 17, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(451, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:32.181657+06', 21, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(452, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:40.788278+06', 21, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(453, X'0e66f5a7c9d952da39e7efd8d82bbfd5e0a7466ddaa036cee21178e4587974bf', TIMESTAMP WITH TIME ZONE '2022-12-14 12:36:13.51466+06', 19, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(454, X'6a53129233be3e12f27b25f7ceb3e62ab53cb8efe0436e1a2f05e30dbd290f5a', TIMESTAMP WITH TIME ZONE '2022-12-14 12:36:23.200076+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(455, X'2e6ed96110b21df965246e3da8297454bb905e97ebf50bf3cfb819be0a2b2f59', TIMESTAMP WITH TIME ZONE '2022-12-14 12:37:11.587307+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(456, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-14 12:40:17.882345+06', 16, 1, TRUE, 'question', NULL, 1, 6, NULL, NULL, 2, FALSE), +(457, X'ae6e79ed55c03416a2c6db95c050b6c05ec23c954582f8d9c06c44a183f5a05e', TIMESTAMP WITH TIME ZONE '2022-12-14 12:41:42.825569+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(458, X'd12989d291fd0e1d649c16530499307b64dc0451caaac5156f5f9bd2c1f7be2b', TIMESTAMP WITH TIME ZONE '2022-12-14 12:42:51.414942+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(459, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:13.936571+06', 14, 1, TRUE, 'question', NULL, 1, 6, NULL, NULL, 2, FALSE), +(460, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:23.733103+06', 37, 1, TRUE, 'question', NULL, 1, 7, NULL, NULL, 2, FALSE), +(461, X'c8878e7d815dcc24d4f25a7c6858b0824647f922cbd72d976911744cfbc1a87d', TIMESTAMP WITH TIME ZONE '2022-12-14 12:45:38.496396+06', 15, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(462, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.736302+06', 22, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(463, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.731835+06', 28, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(464, X'e0fb88ed4698825ad54c751e29cf7f58dd971d4e1913694a4da8dde094adac95', TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.725273+06', 43, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(465, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.733785+06', 36, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(466, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 12:48:12.429612+06', 25, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(467, X'5e202e14107f2a56d078995072467ddd714c42babc3f57ddbeb335acc8cd9902', TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:13.190599+06', 15, 2, TRUE, 'question', NULL, 1, 5, 2, NULL, 2, FALSE), +(468, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:18.523762+06', 13, 1, TRUE, 'question', NULL, 1, 6, 2, NULL, 2, FALSE), +(469, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:19.286464+06', 11, 1, TRUE, 'question', NULL, 1, 7, 2, NULL, 2, FALSE), +(470, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:19.952527+06', 20, 2, TRUE, 'question', NULL, 1, 8, 2, NULL, 2, FALSE), +(471, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.859423+06', 73, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(472, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.863177+06', 69, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(473, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.863697+06', 94, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(474, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.883219+06', 84, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(475, X'ccb714994be33b236b9b63a280126746934d2772526ac0f29e7bf3dbe0a05d90', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.146346+06', 18, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(476, X'2307926171d8765226856e142e0913986ab7a18f90039d0b6a7851f5074627ea', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.147692+06', 25, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(477, X'1962ccc7d989e241874c8cf995e7099e0d20d8bb96fa42353be2f99181b94f03', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.147692+06', 31, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(478, X'baf5993891719aa9b51384eae10cc81c1d5d0aec6008a1bea40d904bfbfc0269', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.151698+06', 27, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(479, X'e0fb88ed4698825ad54c751e29cf7f58dd971d4e1913694a4da8dde094adac95', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.180194+06', 23, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(480, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.182011+06', 37, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(481, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.180474+06', 43, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(482, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.188851+06', 37, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(483, X'8a919c73f79d5381cdcb5dd6adadf1bd547d2fe271ce5ddcab81cd83a078123f', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.467332+06', 28, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(484, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.469972+06', 32, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(485, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.469768+06', 34, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(486, X'56b7f7584a074346b4d78cb2374fc6287d86bc1fa37af542e89c5005156f02a9', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.47537+06', 28, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(487, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.689849+06', 32, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(488, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.690515+06', 31, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(489, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.689635+06', 34, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(490, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.690653+06', 49, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(491, X'8a919c73f79d5381cdcb5dd6adadf1bd547d2fe271ce5ddcab81cd83a078123f', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.565372+06', 23, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(492, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.558967+06', 30, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(493, X'56b7f7584a074346b4d78cb2374fc6287d86bc1fa37af542e89c5005156f02a9', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.562019+06', 25, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(494, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.565372+06', 26, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(495, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.528304+06', 25, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(496, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.52837+06', 25, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(497, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.537405+06', 31, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(498, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.534963+06', 34, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(499, X'f76610567883ebe109198886e9b2f1f0a70696712625fee8d9f008cda059f006', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:17.898207+06', 15, 1, TRUE, 'question', NULL, 1, 6, NULL, NULL, 2, FALSE), +(500, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:34.533339+06', 15, 2, TRUE, 'question', NULL, 1, 8, NULL, NULL, 2, FALSE), +(501, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:48.793887+06', 12, 1, TRUE, 'question', NULL, 1, 7, NULL, NULL, 2, FALSE), +(502, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:05.622842+06', 15, 1, TRUE, 'question', NULL, 1, 6, NULL, NULL, 2, FALSE), +(503, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.148551+06', 35, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(504, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.153575+06', 35, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(505, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.149792+06', 52, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(506, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.161348+06', 54, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(507, X'8a919c73f79d5381cdcb5dd6adadf1bd547d2fe271ce5ddcab81cd83a078123f', TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.415428+06', 19, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(508, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.415428+06', 20, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(509, X'56b7f7584a074346b4d78cb2374fc6287d86bc1fa37af542e89c5005156f02a9', TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.413764+06', 32, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(510, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.41547+06', 36, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(511, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 12:59:36.489617+06', 40, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(512, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 12:59:56.951102+06', 68, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(513, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:48.254846+06', 28, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(514, X'8a919c73f79d5381cdcb5dd6adadf1bd547d2fe271ce5ddcab81cd83a078123f', TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.966778+06', 24, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(515, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.967856+06', 25, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(516, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.967856+06', 31, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(517, X'56b7f7584a074346b4d78cb2374fc6287d86bc1fa37af542e89c5005156f02a9', TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.969253+06', 24, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(518, X'6d3637d235144bdf20830490b2142b4a1ce6aff04dee3eb7c84688b3a94bdb3e', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.038626+06', 27, 1, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(519, X'5a02d17bb8c4fc6c0deda71500ac6106135ad5794549ca0ad1484673e173722f', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.037324+06', 29, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(520, X'6cd40d477729c99f176a00402daa78fb7b0c0e37f4f9ac8bd5fdf7976236edc7', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.037216+06', 29, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(521, X'7028c466344422a3162e4242e64fdb35763d7ff6efb705f86b2bcf9c3f6b8afc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.043711+06', 40, 1, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(522, X'773e00c12eaa55d477f13a595623939ddd6a5c6ddb319bbfb8f49261e32c293a', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.051207+06', 24, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(523, X'46bc9418268dfdf86a9b30f0c8ba8b5af62a7a5d67972f8d907ea47a7befe4c6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.053826+06', 38, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(524, X'fe1a6fbf53ff280127a62757e56ded7ffd70f3370a00e5cebde94e33122854bd', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.056709+06', 37, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(525, X'c7dc3f1a2d346f7af062284b61c2dc90d48c3efc14219a1d6c8657c10f10b023', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.059545+06', 48, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(526, X'698cdf61c2f116526f1bfefbee994dadbf38dcdafbd9d005646e9fc952feee93', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.536732+06', 27, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(527, X'8b2cb2c706fd7a3e577e77a2e488a530354987275a8389a1efbaa51b724033ad', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.53551+06', 27, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(528, X'85868c3961a6e45a8b8e7cb47ab8f8a7144e868d5c30dd2c4593bf04b7360d12', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.541197+06', 32, 1, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(529, X'a2b656227b594bd570ce76cbdb6f442f9a56a1b6ba26532cb649bd7e8f7bd439', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.541168+06', 41, 1, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(530, X'46bc9418268dfdf86a9b30f0c8ba8b5af62a7a5d67972f8d907ea47a7befe4c6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.446338+06', 20, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(531, X'c7dc3f1a2d346f7af062284b61c2dc90d48c3efc14219a1d6c8657c10f10b023', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.446338+06', 20, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(532, X'773e00c12eaa55d477f13a595623939ddd6a5c6ddb319bbfb8f49261e32c293a', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.447314+06', 19, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(533, X'fe1a6fbf53ff280127a62757e56ded7ffd70f3370a00e5cebde94e33122854bd', TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.458309+06', 29, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(534, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:22.953592+06', 17, 2, TRUE, 'question', NULL, 1, 8, NULL, NULL, 2, FALSE), +(535, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.498219+06', 24, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(536, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.497814+06', 25, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(537, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.498219+06', 30, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(538, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.506696+06', 34, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(539, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.14274+06', 21, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(540, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.143095+06', 20, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(541, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.14274+06', 24, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(542, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.149189+06', 36, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(543, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.407435+06', 21, 1, TRUE, 'embedded-dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(544, X'5e202e14107f2a56d078995072467ddd714c42babc3f57ddbeb335acc8cd9902', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.409125+06', 31, 2, TRUE, 'embedded-dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(545, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.413163+06', 31, 1, TRUE, 'embedded-dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(546, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.413889+06', 38, 2, TRUE, 'embedded-dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(547, X'5e202e14107f2a56d078995072467ddd714c42babc3f57ddbeb335acc8cd9902', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.354178+06', 18, 2, TRUE, 'embedded-dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(548, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.363534+06', 23, 2, TRUE, 'embedded-dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(549, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.359122+06', 26, 1, TRUE, 'embedded-dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(550, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.368048+06', 35, 1, TRUE, 'embedded-dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(551, X'5e202e14107f2a56d078995072467ddd714c42babc3f57ddbeb335acc8cd9902', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.246534+06', 24, 2, TRUE, 'embedded-dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(552, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.25802+06', 27, 1, TRUE, 'embedded-dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(553, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.265647+06', 40, 1, TRUE, 'embedded-dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(554, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.273259+06', 33, 2, TRUE, 'embedded-dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(555, X'32e2ee6e4d9a0b2fe2744b977e76c01b9ec3437d9e83401e59694dd045145214', TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:33.147222+06', 22, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 2, FALSE), +(556, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.091294+06', 26, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(557, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.089009+06', 28, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(558, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.097193+06', 31, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(559, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.093411+06', 35, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(560, X'32e2ee6e4d9a0b2fe2744b977e76c01b9ec3437d9e83401e59694dd045145214', TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:41.059625+06', 14, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 2, FALSE), +(561, X'fef97315a7b8cbf0b1585af93e3e28bf923d16b62cd4accf160872c57ea627b7', TIMESTAMP WITH TIME ZONE '2022-12-14 13:33:29.42719+06', 81, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(562, X'ba40f2cafe49cb8d36f84a6b787a22490c3819fe2456cfa32c2a09e3fe65beb2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:33:39.843061+06', 15, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(563, X'fef97315a7b8cbf0b1585af93e3e28bf923d16b62cd4accf160872c57ea627b7', TIMESTAMP WITH TIME ZONE '2022-12-14 13:33:41.086479+06', 24, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(564, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.960933+06', 24, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(565, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.964345+06', 26, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(566, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.959381+06', 30, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(567, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.965467+06', 35, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(568, X'a38ffde814d071faa66083b5e3dc8085db3ed9e5c71613f2e0b975eed686d177', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.206118+06', 22, 1, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(569, X'cead588ecc9933a0992ce640dfd89e2a012fdbaebdfc61a4864860d161c3e000', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.205455+06', 23, 1, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(570, X'f62fa7be586322031ab069a8794c4a005ee1ddb90e121682c34ae1164b6d535a', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.204243+06', 26, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(571, X'b5ec6c726941dbfd104cff249affd9e4080582223680f8821976b3a8a9eff16e', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.204156+06', 24, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(572, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.714831+06', 25, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(573, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.715138+06', 31, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(574, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.713997+06', 44, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(575, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.721156+06', 42, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(576, X'32e2ee6e4d9a0b2fe2744b977e76c01b9ec3437d9e83401e59694dd045145214', TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:40.931073+06', 18, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 2, FALSE), +(577, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 13:35:30.177848+06', 12, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(578, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:11.493704+06', 13, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(579, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.623507+06', 18, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(580, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.625594+06', 30, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(581, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.62472+06', 27, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(582, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.633527+06', 29, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(583, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.049132+06', 18, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(584, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.04789+06', 20, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(585, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.04789+06', 20, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(586, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.053634+06', 29, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(587, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-14 13:38:31.153283+06', 12, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(588, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 13:38:58.197249+06', 14, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(589, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 13:45:57.561782+06', 16, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(590, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.577096+06', 39, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(591, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.570946+06', 37, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(592, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.577235+06', 48, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(593, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.572449+06', 59, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(594, X'56b7f7584a074346b4d78cb2374fc6287d86bc1fa37af542e89c5005156f02a9', TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.226073+06', 20, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE), +(595, X'8a919c73f79d5381cdcb5dd6adadf1bd547d2fe271ce5ddcab81cd83a078123f', TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.226087+06', 29, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(596, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.230167+06', 29, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(597, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.226684+06', 35, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(598, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.130647+06', 27, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(599, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.128245+06', 36, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(600, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.130977+06', 40, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(601, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.134997+06', 49, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(602, X'b5ec6c726941dbfd104cff249affd9e4080582223680f8821976b3a8a9eff16e', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.879698+06', 28, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(603, X'f62fa7be586322031ab069a8794c4a005ee1ddb90e121682c34ae1164b6d535a', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.882281+06', 42, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(604, X'cead588ecc9933a0992ce640dfd89e2a012fdbaebdfc61a4864860d161c3e000', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.88185+06', 43, 1, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(605, X'a38ffde814d071faa66083b5e3dc8085db3ed9e5c71613f2e0b975eed686d177', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.895089+06', 63, 1, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(606, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.679205+06', 35, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(607, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.687567+06', 33, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(608, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.68984+06', 35, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(609, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.712569+06', 26, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(610, X'efedfb382fcfdf1de974316fc37a1e569c76caabfe3beba64f3ac3318317026e', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.695326+06', 27, 0, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(611, X'cb0f8c93dbd44e720d8f4f0b33740f35ab98a1b15cac433eb8c8683c6c3fb429', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.695261+06', 31, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(612, X'77c4648ebc44bd16438ae2bc68d7f02f5962012bafe113792a12072da27fd992', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.697458+06', 29, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(613, X'b867b51cee0f945f5fc68512fa439aeea7c1d8042a38fe4296a1e7225a757b7f', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.695187+06', 39, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(614, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.379875+06', 22, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(615, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.379692+06', 22, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(616, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.399352+06', 23, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(617, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.387567+06', 35, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(618, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:28.610707+06', 37, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(619, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.214026+06', 28, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(620, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.213358+06', 29, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(621, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.21407+06', 30, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(622, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.213352+06', 43, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(623, X'32e2ee6e4d9a0b2fe2744b977e76c01b9ec3437d9e83401e59694dd045145214', TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:08.972037+06', 14, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 2, FALSE), +(624, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.529643+06', 29, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(625, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.531534+06', 31, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(626, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.527912+06', 44, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(627, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.538268+06', 38, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(628, X'32e2ee6e4d9a0b2fe2744b977e76c01b9ec3437d9e83401e59694dd045145214', TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:31.641371+06', 65, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 2, FALSE), +(629, X'5e202e14107f2a56d078995072467ddd714c42babc3f57ddbeb335acc8cd9902', TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:54.08127+06', 16, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 2, FALSE), +(630, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.128425+06', 25, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(631, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.128462+06', 27, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(632, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.130096+06', 23, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(633, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.132289+06', 31, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(634, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.543278+06', 23, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(635, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.5489+06', 23, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(636, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.550192+06', 22, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(637, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.548191+06', 28, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(638, X'8a919c73f79d5381cdcb5dd6adadf1bd547d2fe271ce5ddcab81cd83a078123f', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.50451+06', 22, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(639, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.503542+06', 26, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(640, X'56b7f7584a074346b4d78cb2374fc6287d86bc1fa37af542e89c5005156f02a9', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.508701+06', 29, 2, TRUE, 'dashboard', NULL, 1, 3, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(641, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.508745+06', 29, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(642, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:02.533112+06', 22, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(643, X'c9bebb9787ba2473d5ab270c972f7d2608d3bc093021c5f970d0c84aae70fdc6', TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:13.17948+06', 11, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(644, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:16.025084+06', 11, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(645, X'd05c66aa982e359169ba391e548718d4877f66c9623919cc61c6180eff175b30', TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:29.777436+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(646, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:50.692361+06', 13, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(647, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:53.692002+06', 12, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(648, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:09.91832+06', 12, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(649, X'124a88dbff727b024025c57150e6c7eb9a3a1074b4b7df8f63a8ede53e25c4b5', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:12.39587+06', 13, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(650, X'fb48839821917d674c1af4460c1713c88cab477de4d0ac5fd0d8f9bfa167b3d2', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:20.496564+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(651, X'd05c66aa982e359169ba391e548718d4877f66c9623919cc61c6180eff175b30', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:31.99547+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(652, X'd05c66aa982e359169ba391e548718d4877f66c9623919cc61c6180eff175b30', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:33.14985+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(653, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.946452+06', 17, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(654, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.946537+06', 17, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(655, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.953275+06', 22, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(656, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.956466+06', 30, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(657, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:00.594108+06', 14, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(658, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:00.592913+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(659, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:00.59627+06', 19, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(660, X'9497db7af7adb9b31745916f3319f2429d8f5b7f25f519fb54e545452929b2d5', TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:07.831387+06', 13, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(661, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:16.098511+06', 16, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(662, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:16.099482+06', 15, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(663, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:16.098511+06', 16, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(664, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 15:32:28.326942+06', 17, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(665, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.163638+06', 18, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(666, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.163567+06', 20, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(667, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.167984+06', 25, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(668, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.168001+06', 26, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(669, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:21.995391+06', 14, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(670, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:06:52.445039+06', 12, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(671, X'7eee08f3977941698617c0aaaac17f0eafe54f7ae6ca638e8d0faa01b1f274e3', TIMESTAMP WITH TIME ZONE '2022-12-14 16:07:24.291225+06', 21, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(672, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:07:31.247354+06', 16, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(673, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:08.997499+06', 23, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(674, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:08.999815+06', 40, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(675, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:08.999239+06', 42, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(676, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:09.006925+06', 38, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(677, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:22:29.228517+06', 13, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(678, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:23:52.000339+06', 12, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(679, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:24:19.636324+06', 13, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(680, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.757067+06', 24, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(681, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.754746+06', 27, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(682, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.757459+06', 24, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(683, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.760691+06', 31, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(684, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:42.170678+06', 15, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(685, X'38384011a6927b751c3d1d511aa3311adf9b9d48401fa201cdaaa604857c9a8b', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:17.32644+06', 19, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(686, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:20.284302+06', 16, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(687, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:29.209871+06', 26, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(688, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:42.80906+06', 28, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(689, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:47.176021+06', 10, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(690, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:48.743767+06', 20, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(691, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:52.007934+06', 25, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(692, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:59.925289+06', 12, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(693, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 16:42:01.474207+06', 12, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(694, X'fa6c88ab45dd9811520e4a8c465b396a055d8ac8aabc1060cac3cefcd7e34226', TIMESTAMP WITH TIME ZONE '2022-12-14 16:44:54.75995+06', 47, 49, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 1, FALSE), +(695, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.08117+06', 38, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(696, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.085216+06', 35, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(697, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.083459+06', 40, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(698, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.083459+06', 35, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(699, X'e6ecd38ac3f141904da5a0d826b511a28e78ae6f84e3f30d3d2822282715096f', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.600792+06', 15, 0, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(700, X'e9412aa37dff239a26b25cfa10fbacb71b5b40202dd9c88d770dba2830725ba2', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.602274+06', 20, 0, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(701, X'090c814b2ec83d79b2ff329dad30f2215454a0047651092fc517aafeb037f635', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.601969+06', 22, 0, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(702, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.605073+06', 31, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(703, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.393763+06', 20, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(704, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.393758+06', 20, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(705, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.399054+06', 23, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(706, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.40972+06', 27, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(707, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:40.952482+06', 21, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(708, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.521042+06', 17, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(709, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.520994+06', 18, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(710, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.5236+06', 22, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(711, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.526567+06', 24, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(712, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 16:52:12.641883+06', 11, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(713, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:17.075988+06', 14, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(714, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:30.057838+06', 21, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(715, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:06:59.08244+06', 12, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(716, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.126891+06', 16, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(717, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.126891+06', 16, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(718, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.127374+06', 15, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(719, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.13579+06', 18, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(720, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:09:14.233411+06', 13, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(721, X'48ddf58215b073b134e537c3327da80145e4784faf5864d31df2381595b6feec', TIMESTAMP WITH TIME ZONE '2022-12-14 17:10:33.457656+06', 14, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(722, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:10:35.668475+06', 13, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(723, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:12:41.99328+06', 11, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(724, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:05.650223+06', 13, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(725, X'dda9d015271d749f238abe1838ce68f8e3cd4fb35d0d18a4adb0f23c10b4e394', TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:36.234744+06', 5, 0, FALSE, 'ad-hoc', STRINGDECODE('Input to resolve-card-id-source-tables* does not match schema: \n\n\t \u001b[0;33m [(named {:query {:filter (named [nil (named (not (matches-some-precondition? a-clojure.lang.PersistentVector)) \"lat-field\") (named (not (matches-some-precondition? a-clojure.lang.PersistentVector)) \"lon-field\") nil nil nil nil] \"Must be a valid instance of one of these clauses: :and, :or, :not, :=, :!=, :<, :>, :<=, :>=, :between, :starts-with, :ends-with, :contains, :does-not-contain, :inside, :is-empty, :not-empty, :is-null, :not-null, :time-interval, :segment\")}} arg0)] \u001b[0m \n\n'), 1, NULL, NULL, NULL, 2, NULL), +(726, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:46.120678+06', 15, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(727, X'dda9d015271d749f238abe1838ce68f8e3cd4fb35d0d18a4adb0f23c10b4e394', TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:47.338506+06', 1, 0, FALSE, 'ad-hoc', STRINGDECODE('Input to resolve-card-id-source-tables* does not match schema: \n\n\t \u001b[0;33m [(named {:query {:filter (named [nil (named (not (matches-some-precondition? a-clojure.lang.PersistentVector)) \"lat-field\") (named (not (matches-some-precondition? a-clojure.lang.PersistentVector)) \"lon-field\") nil nil nil nil] \"Must be a valid instance of one of these clauses: :and, :or, :not, :=, :!=, :<, :>, :<=, :>=, :between, :starts-with, :ends-with, :contains, :does-not-contain, :inside, :is-empty, :not-empty, :is-null, :not-null, :time-interval, :segment\")}} arg0)] \u001b[0m \n\n'), 1, NULL, NULL, NULL, 2, NULL), +(728, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:48.133108+06', 51, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(729, X'072a6b2733096e6d1e0ac970ba88ff418e1afba40d3d4edc0e7ff854af1d0f48', TIMESTAMP WITH TIME ZONE '2022-12-14 17:14:25.762942+06', 353, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 1, FALSE), +(730, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 17:23:17.065595+06', 23, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(731, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:24:39.439692+06', 13, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(732, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:25:11.328716+06', 11, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(733, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:25:12.060726+06', 12, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(734, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 17:34:56.980308+06', 33, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(735, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:36:05.307445+06', 15, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(736, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:41:18.101264+06', 12, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(737, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:42:49.241913+06', 13, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(738, X'e0e8b4046f5119d0a57197cec5258fd325f3c3b3b4ec612da9efb5a6c01bc1e9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:46:06.853412+06', 12, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(739, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-14 17:55:11.429867+06', 28, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(740, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.362183+06', 14, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(741, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.368251+06', 25, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(742, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.368253+06', 24, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(743, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.368266+06', 29, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(744, X'c77c9b5e3cff560800846e5341c5d054a42fa1bc6c86044dc0d6e06b289e88aa', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.102832+06', 20, 0, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(745, X'997a2f4c519ac345a9692ce26be2b2e4953f778b171d6f9ddc3f45388a094985', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.105479+06', 17, 0, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(746, X'061d5c58546d3a9f3796d402faf2c370851731eeb76a4efa6757af143c8ad5dc', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.115395+06', 17, 1, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(747, X'16fbd95ca520aace7715302ab547f9a4b589086a6b23dedf78672f945f0b8fd9', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.111759+06', 21, 1, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(748, X'ea78f2dfbcb83d4318da6a1808799b2e3cbf7a62d6ba9e6ee35c6676239667ca', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.716838+06', 25, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(749, X'7a2daaf2e0d835a4667389ef9f1904f2d723f57479ccfa4cf46fd2b8a2e77803', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.7166+06', 29, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(750, X'181ddd6325a204ba424a36fc5d99e19d18b58187175dc86f626f57e5d02d5ad1', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.721254+06', 25, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(751, X'950a3ba0a35c78c16e557724cefe09cef4d403c13ee4354debfb9cf734b6e7a5', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.719127+06', 22, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(752, X'78a192a77d1cbfdc4fd0ed2e6636b234f69abb510a44c53625898e50f6d3b93a', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.798373+06', 22, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(753, X'7a2daaf2e0d835a4667389ef9f1904f2d723f57479ccfa4cf46fd2b8a2e77803', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.798425+06', 22, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(754, X'402f4c923c907cdb190ec8244354fbd4add341c449210110a0254c87a1e96e82', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.801563+06', 20, 1, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(755, X'ab9149a6c48349652259adce29354e943eebe7b49484d627d1a0373c4e4d13d1', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.803916+06', 28, 0, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(756, X'7a2daaf2e0d835a4667389ef9f1904f2d723f57479ccfa4cf46fd2b8a2e77803', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.60693+06', 22, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(757, X'36cc0fa1ba6292bf486c1da487216b8a40f8063eb7996e3c751c4dace274d63d', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.607335+06', 25, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(758, X'6e6be90fc49bfebd68ab03f4aa0e1d44ff340877fea806ba81dd3412a0132260', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.608376+06', 25, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(759, X'762c2eb76811ed2826df0d808c1d725386eab6c6ea1724bbbe8708d6c6eb6adb', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.610946+06', 28, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(760, X'181ddd6325a204ba424a36fc5d99e19d18b58187175dc86f626f57e5d02d5ad1', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.969207+06', 16, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(761, X'7a2daaf2e0d835a4667389ef9f1904f2d723f57479ccfa4cf46fd2b8a2e77803', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.968702+06', 17, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(762, X'ea78f2dfbcb83d4318da6a1808799b2e3cbf7a62d6ba9e6ee35c6676239667ca', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.967076+06', 21, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(763, X'950a3ba0a35c78c16e557724cefe09cef4d403c13ee4354debfb9cf734b6e7a5', TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.971261+06', 26, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(764, X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', TIMESTAMP WITH TIME ZONE '2022-12-14 17:58:03.169692+06', 12, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(765, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 17:58:45.059674+06', 10, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(766, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-14 17:59:08.367341+06', 10, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(767, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 17:59:57.947808+06', 12, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(768, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 18:00:21.435835+06', 13, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(769, X'53bc7bca69276fe524332e5ce2d1616a2cbe6e9dbba1b45fffeab588cddc8644', TIMESTAMP WITH TIME ZONE '2022-12-14 18:02:04.29954+06', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$and''.', 1, NULL, NULL, NULL, 2, NULL), +(770, X'accb66921e2ccd4c178c4b37f5baf83812aceb57dc29a705fed053befc31ede8', TIMESTAMP WITH TIME ZONE '2022-12-14 18:02:52.967672+06', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$and''.', 1, NULL, NULL, NULL, 2, NULL), +(771, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 18:03:33.212441+06', 11, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(772, X'5ecb229f9057e3dcd820e9fcdf764cc66e68e3d5fc434804788ffbc018452747', TIMESTAMP WITH TIME ZONE '2022-12-14 18:03:48.438621+06', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$and''.', 1, NULL, NULL, NULL, 2, NULL), +(773, X'56e5104e8f5c1e449c102236ba2c43b6093c6a30bdd1b8182a508deee5c4d841', TIMESTAMP WITH TIME ZONE '2022-12-14 18:04:27.878831+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$and''.', 1, NULL, NULL, NULL, 2, NULL), +(774, X'56e5104e8f5c1e449c102236ba2c43b6093c6a30bdd1b8182a508deee5c4d841', TIMESTAMP WITH TIME ZONE '2022-12-14 18:05:23.696298+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$and''.', 1, NULL, NULL, NULL, 2, NULL), +(775, X'b346528bb3722e6c24eb1515aeccbc385c11d4718ed346ba684dc73eef27c39a', TIMESTAMP WITH TIME ZONE '2022-12-14 18:07:48.565644+06', 11, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(776, X'b785c20c189cdb8805db097a03c86e13f7dd6a55852a4da50072b6520c003f23', TIMESTAMP WITH TIME ZONE '2022-12-14 18:08:35.091978+06', 11, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(777, X'98edee3f3a3894b9054b6e1bd54b84b17f32fdd5fb26ccd2482b125c786c7532', TIMESTAMP WITH TIME ZONE '2022-12-14 18:09:11.364797+06', 12, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(778, X'e0569b0ec1c6199c350d438859f8245093ca46674a02ca2ba0ff3c1fe2cce466', TIMESTAMP WITH TIME ZONE '2022-12-14 18:09:43.199753+06', 11, 3, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(779, X'98edee3f3a3894b9054b6e1bd54b84b17f32fdd5fb26ccd2482b125c786c7532', TIMESTAMP WITH TIME ZONE '2022-12-14 18:12:04.128356+06', 7, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(780, X'40174caa931f41d8612ffccd2c034e0d5316bca561e345a92aa934ff59e079dc', TIMESTAMP WITH TIME ZONE '2022-12-14 18:18:49.448482+06', 14, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(781, X'40174caa931f41d8612ffccd2c034e0d5316bca561e345a92aa934ff59e079dc', TIMESTAMP WITH TIME ZONE '2022-12-14 18:18:51.849676+06', 9, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(782, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:04.373711+06', 11, 3, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(783, X'3170a8fe92196221148d626fb6a94062090036890a308e45551c21d6bf9a8efd', TIMESTAMP WITH TIME ZONE '2022-12-14 18:20:27.518306+06', 14, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(784, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 18:36:04.902672+06', 10204, 0, TRUE, 'question', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 1, NULL, NULL, 2, NULL), +(785, X'b4952b7fade183051a4a0a9904baa01dd81c90812b433fa8fb8de9b72389b6c0', TIMESTAMP WITH TIME ZONE '2022-12-14 18:38:21.132211+06', 91, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(786, X'd9f21a9f6928e5cb77edfbcdc9a2c28695e3a9ef35fc9711a093034d22dcf405', TIMESTAMP WITH TIME ZONE '2022-12-14 18:39:38.255927+06', 20, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(787, X'd94d783863fb80fdad28c13fb5d980e6b1f3ff6727526f43b990d7e9b82f50f9', TIMESTAMP WITH TIME ZONE '2022-12-14 18:39:47.033447+06', 52, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''can''t convert from BSON type string to Date'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "can''t convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006" }', 1, NULL, NULL, NULL, 2, NULL), +(788, X'bc3193156ba3637ef8a78302bec0ab44336889dd203f62fa43690c955ef33746', TIMESTAMP WITH TIME ZONE '2022-12-14 18:40:26.378863+06', 39, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''Failed to optimize pipeline :: caused by :: Failed to optimize expression :: caused by :: Failed to optimize expression :: caused by :: can''t convert from BSON type object to Date'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Failed to optimize pipeline :: caused by :: Failed to optimize expression :: caused by :: Failed to optimize expression :: caused by :: can''t convert from BSON type object to Date", "code" : 16006, "codeName" : "Location16006" }', 1, NULL, NULL, NULL, 2, NULL), +(789, X'a47e6349a58fd73c5538ae417f67a336829ce576f26f069702aa8ce1b8a13307', TIMESTAMP WITH TIME ZONE '2022-12-14 18:41:18.982736+06', 25, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''Failed to optimize pipeline :: caused by :: Failed to optimize expression :: caused by :: Failed to optimize expression :: caused by :: can''t convert from BSON type object to Date'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Failed to optimize pipeline :: caused by :: Failed to optimize expression :: caused by :: Failed to optimize expression :: caused by :: can''t convert from BSON type object to Date", "code" : 16006, "codeName" : "Location16006" }', 1, NULL, NULL, NULL, 2, NULL), +(790, X'61046bb2a7fe7ab33c7f5e5378c615f1e18ba67ef7af894f624a4262a7e5ef50', TIMESTAMP WITH TIME ZONE '2022-12-14 18:41:37.942552+06', 8, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is REGULAR_EXPRESSION.', 1, NULL, NULL, NULL, 2, NULL), +(791, X'5a45c0491622f6a66c5e23413db32e09603cc5ef8d100f2b2074246ded479dba', TIMESTAMP WITH TIME ZONE '2022-12-14 18:41:49.273552+06', 26, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(792, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:18.22786+06', 17, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(793, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:32.330219+06', 29, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(794, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:35.968034+06', 50, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(795, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:35.981342+06', 62, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(796, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:35.970964+06', 81, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(797, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:35.990952+06', 78, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(798, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:44.343822+06', 16, 1, TRUE, 'question', NULL, 1, 10, 2, NULL, 2, FALSE), +(799, X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:41.339141+06', 17, 1, TRUE, 'question', NULL, 1, 2, 2, NULL, 2, FALSE), +(800, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:42.558014+06', 17, 2, TRUE, 'question', NULL, 1, 4, 2, NULL, 2, FALSE), +(801, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:43.430809+06', 16, 2, TRUE, 'question', NULL, 1, 8, 2, NULL, 2, FALSE), +(802, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:43.926229+06', 22, 1, TRUE, 'question', NULL, 1, 7, 2, NULL, 2, FALSE), +(803, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:46.088232+06', 15, 3, TRUE, 'question', NULL, 1, 9, 2, NULL, 2, FALSE), +(804, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 18:44:38.844176+06', 23, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(805, X'e69ef6458442a4790e222535e0ab9be55ece58fba9716d674ecf2611ce6a8436', TIMESTAMP WITH TIME ZONE '2022-12-14 18:46:10.322362+06', 14, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(806, X'ea415461ae1df3a48ed1ffc733cbd2cd393cd143c9dcdfebe731d911ec6f5ddb', TIMESTAMP WITH TIME ZONE '2022-12-14 18:46:38.084361+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(807, X'1554b62dedf70f2b146dc77308eec2411078600c9e5dba2412f66bc0e3d3f985', TIMESTAMP WITH TIME ZONE '2022-12-14 18:46:46.552384+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''g''.', 1, NULL, NULL, NULL, 2, NULL), +(808, X'1554b62dedf70f2b146dc77308eec2411078600c9e5dba2412f66bc0e3d3f985', TIMESTAMP WITH TIME ZONE '2022-12-14 18:46:56.476553+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''g''.', 1, NULL, NULL, NULL, 2, NULL), +(809, X'ea415461ae1df3a48ed1ffc733cbd2cd393cd143c9dcdfebe731d911ec6f5ddb', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:07.566624+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(810, X'ea415461ae1df3a48ed1ffc733cbd2cd393cd143c9dcdfebe731d911ec6f5ddb', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:10.251357+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(811, X'ea415461ae1df3a48ed1ffc733cbd2cd393cd143c9dcdfebe731d911ec6f5ddb', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:11.857205+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(812, X'e69ef6458442a4790e222535e0ab9be55ece58fba9716d674ecf2611ce6a8436', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:13.956059+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(813, X'e69ef6458442a4790e222535e0ab9be55ece58fba9716d674ecf2611ce6a8436', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:15.85195+06', 9, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(814, X'6c75c372d8a0a248895638292d0ee84f39a3ba490e761d1f72ef63f63f7292c2', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:30.626+06', 11, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(815, X'325db0aea0a0963838f254a84a9c4dbea8909dbbdf56baa12399f3c279b8c6dd', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:41.411924+06', 11, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(816, X'0a05ba26a01076469bdc43b8f48a105b816c4f71cbd036d8d6e21c32c8b09c57', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:46.995463+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(817, X'0a05ba26a01076469bdc43b8f48a105b816c4f71cbd036d8d6e21c32c8b09c57', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:47.668647+06', 9, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(818, X'6c75c372d8a0a248895638292d0ee84f39a3ba490e761d1f72ef63f63f7292c2', TIMESTAMP WITH TIME ZONE '2022-12-14 18:47:56.412007+06', 10, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(819, X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', TIMESTAMP WITH TIME ZONE '2022-12-14 18:48:42.63477+06', 18, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(820, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:04.307055+06', 18, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(821, X'40cd12870813399e0748517f79a95a036b2ed63f89fbe997c3e5f7bac5f74c37', TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:11.002585+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(822, X'40cd12870813399e0748517f79a95a036b2ed63f89fbe997c3e5f7bac5f74c37', TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:22.829592+06', 14, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(823, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:34.38085+06', 18, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(824, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:37.447974+06', 21, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(825, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:40.706217+06', 16, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(826, X'40cd12870813399e0748517f79a95a036b2ed63f89fbe997c3e5f7bac5f74c37', TIMESTAMP WITH TIME ZONE '2022-12-14 18:51:40.09924+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(827, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:22.845766+06', 18, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(828, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:26.006439+06', 15, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(829, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:33.363915+06', 17, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(830, X'd73f4589d43c728b2b7c0ad1ea9b6e3f1628a4ab531fd84b6e4691c3107b87bf', TIMESTAMP WITH TIME ZONE '2022-12-14 18:53:11.420227+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(831, X'09d142ca1fa73014257f2c49dda8ffe1dd50a51f286a248877ff1b75164d6584', TIMESTAMP WITH TIME ZONE '2022-12-14 18:55:11.333029+06', 11, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(832, X'1ae697ba8a7cc335894df1e464708075dcbf51a52d3794fe106deb8ef0d8145d', TIMESTAMP WITH TIME ZONE '2022-12-14 18:58:24.636646+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$registrationsUnderAgeOneInfo''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(833, X'1ae697ba8a7cc335894df1e464708075dcbf51a52d3794fe106deb8ef0d8145d', TIMESTAMP WITH TIME ZONE '2022-12-14 18:58:27.918797+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$registrationsUnderAgeOneInfo''.', 1, NULL, NULL, NULL, 2, NULL), +(834, X'c226204ae787fa44d65a962cbd1105667f8f5ad8ce2e8303a3361742b4fb2947', TIMESTAMP WITH TIME ZONE '2022-12-14 18:58:59.419559+06', 32, 2, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(835, X'c226204ae787fa44d65a962cbd1105667f8f5ad8ce2e8303a3361742b4fb2947', TIMESTAMP WITH TIME ZONE '2022-12-14 18:59:15.173483+06', 24, 2, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(836, X'0bd77e44f2400dd74e7b31546a32a094be414cbaada2375bfe4a6a9429b89932', TIMESTAMP WITH TIME ZONE '2022-12-14 18:59:43.778936+06', 59, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(837, X'b4ff33128db58875c068d2659b83a2c1c3ca8aa0ddc791a536b05e9a1078971b', TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:01.895086+06', 78, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(838, X'0bd77e44f2400dd74e7b31546a32a094be414cbaada2375bfe4a6a9429b89932', TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:49.236811+06', 18, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(839, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:54.072554+06', 14, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(840, X'6604f33942e8c26276a168043420b7c84cadebcef9a6a591abd62568a3d95b64', TIMESTAMP WITH TIME ZONE '2022-12-14 19:01:41.995548+06', 14, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(841, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 19:04:36.282336+06', 14, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(842, X'c226204ae787fa44d65a962cbd1105667f8f5ad8ce2e8303a3361742b4fb2947', TIMESTAMP WITH TIME ZONE '2022-12-14 19:04:48.315248+06', 12, 2, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(843, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:12.082475+06', 12, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(844, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:22.628252+06', 25, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(845, X'c226204ae787fa44d65a962cbd1105667f8f5ad8ce2e8303a3361742b4fb2947', TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:30.729115+06', 12, 2, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(846, X'5d63e55756293c29dd2b40ac6da70ecbf8dbf662c81902d611da0f07c570205c', TIMESTAMP WITH TIME ZONE '2022-12-14 19:07:26.794687+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(847, X'0ad39847654209c555ac16da84ad3848564e8a5224e2fbc58cd770cd809858c3', TIMESTAMP WITH TIME ZONE '2022-12-14 19:09:02.724145+06', 2, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(848, X'a4c12deebc3c94ff7eea4e9fc87f49bc64617f8c93c97159f582af5cf05a6769', TIMESTAMP WITH TIME ZONE '2022-12-14 19:12:05.503254+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(849, X'99fc55c6fe04371beddbe0f4a321901bf5d82193007a37f2c63f04cfaabb0d1f', TIMESTAMP WITH TIME ZONE '2022-12-14 19:12:54.214353+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(850, X'93f4fe6ada04f4cb43c6fd2da8bd0749088e1c6b96cff973bafeec27878f0630', TIMESTAMP WITH TIME ZONE '2022-12-14 19:13:06.89089+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(851, X'6983a8fbceafde2289848a0ce9d49f1ea5263cb2994bbcc883681d2ebf8a8637', TIMESTAMP WITH TIME ZONE '2022-12-14 19:13:57.394007+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(852, X'467373f30468b28ac383038c167dd853b285e8583cdd8550715fddd51cf8bc7d', TIMESTAMP WITH TIME ZONE '2022-12-14 19:14:35.975958+06', 13, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found '',''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(853, X'0966091cb8d1e6ce3269b4c3da06213ca5cee2f7da88d46a0eaa95e9fbb8beb5', TIMESTAMP WITH TIME ZONE '2022-12-14 19:14:46.150437+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(854, X'c8cff77bebfde3176c857f28194157871fb4047a65b4f35f8f5adde96f1f838e', TIMESTAMP WITH TIME ZONE '2022-12-14 19:17:04.829925+06', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(855, X'd9ba67a58a621d9fae7fff8fadf8c681166e2bb603620015464e8f70dff4fedd', TIMESTAMP WITH TIME ZONE '2022-12-14 19:17:13.728066+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(856, X'99315b9c9bf1139499089f67400e73945b765e360964a1197e5e4358d53d85d7', TIMESTAMP WITH TIME ZONE '2022-12-14 19:21:40.39433+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(857, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:40.287775+06', 10, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(858, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:46.689307+06', 12, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(859, X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:55.762113+06', 13, 1, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(860, X'16b41d043d934318a7b441e284c41e58fb3574d5e9432291830075dce946c288', TIMESTAMP WITH TIME ZONE '2022-12-14 19:41:08.018068+06', 406, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(861, X'd3b5efb4c7f725f08baa588faf2a823fc827d26ede200f9c9793e8d350b8bd7c', TIMESTAMP WITH TIME ZONE '2022-12-14 19:41:14.434646+06', 34, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(862, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-14 19:41:55.827976+06', 99, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(863, X'017aeaddc6cfb740d8dd4119ee6b3229e2745dc1e4027369c084a349da74b2f1', TIMESTAMP WITH TIME ZONE '2022-12-14 19:44:35.306897+06', 20, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(864, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-15 11:59:12.330169+06', 418, 0, TRUE, 'question', 'Error reducing result rows: null', 1, 1, NULL, NULL, 2, NULL), +(865, X'8a3d073865b89bcb71db27d16b18f8a1d7077621b2a56d1cc33510fa424140d1', TIMESTAMP WITH TIME ZONE '2022-12-15 11:59:13.538191+06', 49, 3, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(866, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:30.577339+06', 29, 3, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(867, X'e20477722ff15200fd23ae9ce9d30831347940a35045cba07726b6a6f78e086d', TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:45.164715+06', 79, 3, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(868, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:54.378187+06', 34, 3, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(869, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:14.483617+06', 20, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(870, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:20.428462+06', 21, 1, TRUE, 'question', NULL, 1, 7, NULL, NULL, 2, FALSE), +(871, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:23.126046+06', 28, 2, TRUE, 'question', NULL, 1, 8, NULL, NULL, 2, FALSE), +(872, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:52.843252+06', 15, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(873, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:03.052565+06', 38, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(874, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:08.6096+06', 21, 1, TRUE, 'question', NULL, 1, 7, NULL, NULL, 2, FALSE), +(875, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:14.728358+06', 24, 2, TRUE, 'question', NULL, 1, 8, NULL, NULL, 2, FALSE), +(876, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:06:11.524135+06', 14, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(877, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:07:10.040989+06', 16, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(878, X'9c46a51287449e1c70c13821f01899ee8c89acc775b239882fc264c80c06dad1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:12:38.099994+06', 12, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(879, X'9c46a51287449e1c70c13821f01899ee8c89acc775b239882fc264c80c06dad1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:12:39.392973+06', 9, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(880, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:45.691565+06', 324, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(881, X'147e0bfc3abd41fce119c05ca00e31997170b47fa39b907e3c44687f515c4efe', TIMESTAMP WITH TIME ZONE '2022-12-15 12:43:29.647518+06', 26, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(882, X'547d36e8f78d2c28c87df4f8321e912aec3879d5227a4f102b19327f42a61910', TIMESTAMP WITH TIME ZONE '2022-12-15 12:45:14.295701+06', 35, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(883, X'9591f7b47628bcc12aa72daba146302cd31be8fa8c3198d1307fcc15adc6b8cc', TIMESTAMP WITH TIME ZONE '2022-12-15 12:47:48.216013+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(884, X'f3b910437606a0b56de94154233f81842549f0e270fc3928202509cf5130db7c', TIMESTAMP WITH TIME ZONE '2022-12-15 12:47:52.884797+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''age''.', 1, NULL, NULL, NULL, 2, NULL), +(885, X'd7c3a9c3320882c5dedd2a87d34ffc08eb49978f5e622ba9770813d06dfb8c8c', TIMESTAMP WITH TIME ZONE '2022-12-15 12:48:00.846252+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(886, X'dbedf013c4014072788a9fb0776db5a1d70c2ece8f9189540703a800f1c7601d', TIMESTAMP WITH TIME ZONE '2022-12-15 12:49:46.253614+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(887, X'dbedf013c4014072788a9fb0776db5a1d70c2ece8f9189540703a800f1c7601d', TIMESTAMP WITH TIME ZONE '2022-12-15 12:49:47.273478+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(888, X'd7c3a9c3320882c5dedd2a87d34ffc08eb49978f5e622ba9770813d06dfb8c8c', TIMESTAMP WITH TIME ZONE '2022-12-15 12:50:03.206932+06', 15, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(889, X'd7c3a9c3320882c5dedd2a87d34ffc08eb49978f5e622ba9770813d06dfb8c8c', TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:39.521137+06', 152, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(890, X'3c221d0298830c4f6fdeb8fdc0719cb024a3e58efe28be69bbdedf9ced2b1276', TIMESTAMP WITH TIME ZONE '2022-12-15 13:00:04.295659+06', 22, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(891, X'897a387e853dfe4cd2fa0a0354642d0ede587315358cd312501369778d51b051', TIMESTAMP WITH TIME ZONE '2022-12-15 13:00:39.863545+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(892, X'3c221d0298830c4f6fdeb8fdc0719cb024a3e58efe28be69bbdedf9ced2b1276', TIMESTAMP WITH TIME ZONE '2022-12-15 13:00:49.103906+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(893, X'cbe319d723c37487be1c372248210f6d8f3ceb42fdad1c854465831d5c9929a2', TIMESTAMP WITH TIME ZONE '2022-12-15 13:01:07.528481+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(894, X'426f66bdc62cb8638d022d0fb77f8d5ede5cd924dff9f8e12dcf9e24fb25aee9', TIMESTAMP WITH TIME ZONE '2022-12-15 13:04:05.44724+06', 18, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(895, X'bb32e1d4863974831d879effbe420e8a08ec37814545302b641ba2b24a5913a1', TIMESTAMP WITH TIME ZONE '2022-12-15 13:06:36.191457+06', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$count''.', 1, NULL, NULL, NULL, 2, NULL), +(896, X'308976c344f66e2ff7d71f8647aa380419d1a33d89351d7c985aa0a769670e5b', TIMESTAMP WITH TIME ZONE '2022-12-15 13:06:44.223172+06', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''count''.', 1, NULL, NULL, NULL, 2, NULL), +(897, X'426f66bdc62cb8638d022d0fb77f8d5ede5cd924dff9f8e12dcf9e24fb25aee9', TIMESTAMP WITH TIME ZONE '2022-12-15 13:06:56.636072+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(898, X'53e8f2d53ff8509a2d931821330d0ae3f419811319021f9794fcfebb20028e14', TIMESTAMP WITH TIME ZONE '2022-12-15 13:07:57.342102+06', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(899, X'80a618f3d205c77a56b0a6909744ebf81d0e5e8b84ac7d24a2111052f4365271', TIMESTAMP WITH TIME ZONE '2022-12-15 13:08:03.749295+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(900, X'426f66bdc62cb8638d022d0fb77f8d5ede5cd924dff9f8e12dcf9e24fb25aee9', TIMESTAMP WITH TIME ZONE '2022-12-15 13:08:53.924222+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(901, X'21000f76b4d22e5ef3cf5bf83eb892fd74ec10636567966b5dacad9ef0b43aa1', TIMESTAMP WITH TIME ZONE '2022-12-15 13:10:30.840218+06', 18, 1, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(902, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-15 13:10:43.366695+06', 39, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(903, X'2b3ea1b28f13ff5bd4ccfaa6eb8d571d4e1fd744dcdf711be5785e3c7d7b0547', TIMESTAMP WITH TIME ZONE '2022-12-15 13:13:44.466368+06', 18, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(904, X'32a2edc43d81d2c8b9ef387fbf109d98da16114cc19203ad979405dff3593aa0', TIMESTAMP WITH TIME ZONE '2022-12-15 13:14:24.424038+06', 16, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(905, X'32a2edc43d81d2c8b9ef387fbf109d98da16114cc19203ad979405dff3593aa0', TIMESTAMP WITH TIME ZONE '2022-12-15 13:14:25.585684+06', 15, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(906, X'19d8812824e840b49a5b86197e311837bf30e620fbe8ad4a9ca456887273002a', TIMESTAMP WITH TIME ZONE '2022-12-15 13:14:37.617196+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(907, X'19d8812824e840b49a5b86197e311837bf30e620fbe8ad4a9ca456887273002a', TIMESTAMP WITH TIME ZONE '2022-12-15 13:14:49.224868+06', 17, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(908, X'da3705cb4a0c617cf03eec068ef9b5c2679af91874dd585b146b3beb7a85039a', TIMESTAMP WITH TIME ZONE '2022-12-15 13:14:55.05839+06', 19, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(909, X'fc0c0d0a4733926c0c9afa193f1fd6c848616a096caa07d3eb52453a8057494e', TIMESTAMP WITH TIME ZONE '2022-12-15 13:15:18.466624+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(910, X'6aa585b120ea2b235a7eecec7a08a207bd631e02c901c6e41d121d414f27c893', TIMESTAMP WITH TIME ZONE '2022-12-15 13:23:05.477188+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(911, X'6d6866407b561ba1433a03a93f3ae2cfc86f1c9379740839176597c54c90b8b8', TIMESTAMP WITH TIME ZONE '2022-12-15 13:23:22.170543+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(912, X'372c0c8a1c6a1a04c0103776801da6e395286ac1640482b800e326a409c89a91', TIMESTAMP WITH TIME ZONE '2022-12-15 13:24:51.404759+06', 29, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''totalRegistration'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''totalRegistration'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(913, X'70a16df34033f8678ed43a7a9562fe59a6e88cf6fee556e4b0cd2a9cc65c3dd6', TIMESTAMP WITH TIME ZONE '2022-12-15 13:25:09.523024+06', 9, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''totalRegistration'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''totalRegistration'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(914, X'5549b468c97900aea42ae359c886dea7b52f9c9b5928bde02343b5a2be5f8894', TIMESTAMP WITH TIME ZONE '2022-12-15 13:25:53.763072+06', 11, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''totalRegistration'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''totalRegistration'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(915, X'cd048423b84998738f6796666ee274fa0c259e5d77a4b8bb61d780e9fa9426f6', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:10.260172+06', 9, 0, TRUE, 'ad-hoc', 'Command failed with error 15955 (Location15955): ''a group specification must include an _id'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "a group specification must include an _id", "code" : 15955, "codeName" : "Location15955" }', 1, NULL, NULL, NULL, 2, NULL), +(916, X'cd048423b84998738f6796666ee274fa0c259e5d77a4b8bb61d780e9fa9426f6', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:11.58013+06', 7, 0, TRUE, 'ad-hoc', 'Command failed with error 15955 (Location15955): ''a group specification must include an _id'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "a group specification must include an _id", "code" : 15955, "codeName" : "Location15955" }', 1, NULL, NULL, NULL, 2, NULL), +(917, X'a78a668258e258627197bf2a790946151518dddbb36299e1e0722d9f684a4898', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:16.371107+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(918, X'a78a668258e258627197bf2a790946151518dddbb36299e1e0722d9f684a4898', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:18.523548+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(919, X'3e79a137f18d3e4570b9df8565f2352c72ab7dfb38b5aa503fed89dea8a14cb2', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:21.667622+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(920, X'5fd1f899b78019faab8e66d8a82b1e0ab5b5c67e6d9497418e87e5f4c7e5730f', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:31.357054+06', 10, 0, TRUE, 'ad-hoc', 'Command failed with error 15955 (Location15955): ''a group specification must include an _id'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "a group specification must include an _id", "code" : 15955, "codeName" : "Location15955" }', 1, NULL, NULL, NULL, 2, NULL), +(921, X'2b82c00d35bc216bda49ea0b4d5131bb45b6d84a56833fa08e7b06aed9ac79ad', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:37.116543+06', 8, 0, TRUE, 'ad-hoc', 'Command failed with error 15955 (Location15955): ''a group specification must include an _id'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "a group specification must include an _id", "code" : 15955, "codeName" : "Location15955" }', 1, NULL, NULL, NULL, 2, NULL), +(922, X'44bb0149861844ed2c450c4df85f169aad0807085da0fa2d7b70403c190c640c', TIMESTAMP WITH TIME ZONE '2022-12-15 13:26:54.399608+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(923, X'b426dd57e9c15462b5e563f85450c224bedd67e7c138630940794c54644dc8e8', TIMESTAMP WITH TIME ZONE '2022-12-15 13:27:16.227488+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(924, X'8e3682628842b3641eac2f868d1a6591415eb37ac38a44621042d3f890e79bc1', TIMESTAMP WITH TIME ZONE '2022-12-15 13:27:26.840921+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(925, X'a6b2aedc46c9ee4b631f095551897c9c04131be7b8e4bd6d3c93a1d9af01cb8f', TIMESTAMP WITH TIME ZONE '2022-12-15 13:27:39.080975+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(926, X'7e25ff62f0b6d0f480315e1faae05f461f2d3ee92a75911b56becc036888e38d', TIMESTAMP WITH TIME ZONE '2022-12-15 13:29:49.862176+06', 19, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(927, X'993d1cdd7d4951317ef0a84d0e9550874b24aaecedbba68d921cfa3d7c1bcd6b', TIMESTAMP WITH TIME ZONE '2022-12-15 13:31:55.017265+06', 14, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(928, X'17ea3b62829494750fc47e1bf4544511b9eb8f87cc685c7f45c98fb21bbfba0e', TIMESTAMP WITH TIME ZONE '2022-12-15 13:32:27.457742+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(929, X'17ea3b62829494750fc47e1bf4544511b9eb8f87cc685c7f45c98fb21bbfba0e', TIMESTAMP WITH TIME ZONE '2022-12-15 13:33:12.398202+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(930, X'e18d19fb4bead92ab27325b4892d8195fe33196c89e2b6f573ac46ecc774fdf1', TIMESTAMP WITH TIME ZONE '2022-12-15 13:36:11.155953+06', 17, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(931, X'22b9ea8ff1e95b2f9396404034d3b85b9e66c206fc5a4df0ae453f68450ccda4', TIMESTAMP WITH TIME ZONE '2022-12-15 13:36:28.048149+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(932, X'ade2d165ba5878216cd2632098f32ee4c43a394a077afb8e7e6c33d6d8c7c351', TIMESTAMP WITH TIME ZONE '2022-12-15 13:37:05.763948+06', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is BOOLEAN.', 1, NULL, NULL, NULL, 2, NULL), +(933, X'1a89139e3e5a88ddeeb236049d704c2d4a1293434a290423acf6c1f15e71fc92', TIMESTAMP WITH TIME ZONE '2022-12-15 13:37:09.415567+06', 13, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(934, X'105ca1580fa6fd5a6859440ee428dfc73f369759a2ce44f3dcb62250a9c72e10', TIMESTAMP WITH TIME ZONE '2022-12-15 13:37:12.328143+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(935, X'817687948b75c5f3490dcf55ed9a98a8ca9902bdce8629d174a0c766cac07eef', TIMESTAMP WITH TIME ZONE '2022-12-15 13:37:52.283258+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(936, X'0273592c77b26db8ca32ed0221fed34fa9cf47ddec9d381035b7b6193278c650', TIMESTAMP WITH TIME ZONE '2022-12-15 13:38:19.243532+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(937, X'c36610e9f626ec7e2fcda1abe25b39501e2e8ed4599be51e830c76f556bdcceb', TIMESTAMP WITH TIME ZONE '2022-12-15 13:38:24.52578+06', 3, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 1. Character: ''.''.', 1, NULL, NULL, NULL, 2, NULL), +(938, X'817687948b75c5f3490dcf55ed9a98a8ca9902bdce8629d174a0c766cac07eef', TIMESTAMP WITH TIME ZONE '2022-12-15 13:38:29.909931+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(939, X'18c40a7c34e337d885918ea2a07b868dd989bfa8d17ff39b42993c2bcb01b1c4', TIMESTAMP WITH TIME ZONE '2022-12-15 13:38:57.297668+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(940, X'e37c29386dc8c3db897a17dcac7f735aa8def930600f7cfef1d9bcc29b209205', TIMESTAMP WITH TIME ZONE '2022-12-15 13:39:23.905303+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(941, X'7b976d15d1c795278c11d1b1ebb7136bb393cab056f94ac1d682134d185428fd', TIMESTAMP WITH TIME ZONE '2022-12-15 13:40:06.255791+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(942, X'35e213817e0c0a7dc682fb64a301c132828a05627e20c7ae95e1c060f374b3a3', TIMESTAMP WITH TIME ZONE '2022-12-15 13:40:12.328786+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(943, X'e9694292562f2b6fe8c101e2ca53fc8ea08277f5baac76d588f2889de4323b74', TIMESTAMP WITH TIME ZONE '2022-12-15 13:40:38.534773+06', 16, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(944, X'28b5a88e16d59a8fb979e53153870cc96f7ad1da22ccd825e3ad412d53e8d263', TIMESTAMP WITH TIME ZONE '2022-12-15 13:41:06.090103+06', 8, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(945, X'b98b21e612ed3893c78bb67e30db5790e28193f4b84c5d938947f669ff81d29c', TIMESTAMP WITH TIME ZONE '2022-12-15 13:41:10.163665+06', 9, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(946, X'b98b21e612ed3893c78bb67e30db5790e28193f4b84c5d938947f669ff81d29c', TIMESTAMP WITH TIME ZONE '2022-12-15 13:41:11.243234+06', 7, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(947, X'b98b21e612ed3893c78bb67e30db5790e28193f4b84c5d938947f669ff81d29c', TIMESTAMP WITH TIME ZONE '2022-12-15 13:41:23.732419+06', 7, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(948, X'1db1f00239707161800255bb54c9dd0ce36355700189609c40c949e9eb49949b', TIMESTAMP WITH TIME ZONE '2022-12-15 13:41:52.314775+06', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(949, X'1db1f00239707161800255bb54c9dd0ce36355700189609c40c949e9eb49949b', TIMESTAMP WITH TIME ZONE '2022-12-15 13:41:56.826109+06', 2, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(950, X'1db1f00239707161800255bb54c9dd0ce36355700189609c40c949e9eb49949b', TIMESTAMP WITH TIME ZONE '2022-12-15 13:42:06.962424+06', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(951, X'c62991acea767372117ef217bed17d4f1856fbee31cd8ad10f8af24b2be2236f', TIMESTAMP WITH TIME ZONE '2022-12-15 13:42:11.120875+06', 8, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(952, X'c62991acea767372117ef217bed17d4f1856fbee31cd8ad10f8af24b2be2236f', TIMESTAMP WITH TIME ZONE '2022-12-15 13:42:25.466706+06', 7, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(953, X'c62991acea767372117ef217bed17d4f1856fbee31cd8ad10f8af24b2be2236f', TIMESTAMP WITH TIME ZONE '2022-12-15 13:44:54.737703+06', 9, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL), +(954, X'9548b2c52d3a9fc2c7ac606483875aba0e89aefe3cbf40ea6c972787e423a571', TIMESTAMP WITH TIME ZONE '2022-12-15 13:45:03.116201+06', 8, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''name'' must be an accumulator object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "The field ''name'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234" }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(955, X'ccfca4c1582308d0b6093c55ef583875b40e1aea2d1cfb967582ee3b995310fe', TIMESTAMP WITH TIME ZONE '2022-12-15 13:45:17.766717+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(956, X'b4d224690668676b93217acb9b451902bde8ddff0f1cef46f833e57085d3323f', TIMESTAMP WITH TIME ZONE '2022-12-15 13:45:26.859374+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(957, X'fe9377579720c844886cd4a903eeade8099bccea05206be846b6360018a8479c', TIMESTAMP WITH TIME ZONE '2022-12-15 13:45:38.568645+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(958, X'54b41aed3cb1b79ec94b376c830ed4df48b50cdc0184f5a7ccfd180cdb48892d', TIMESTAMP WITH TIME ZONE '2022-12-15 13:45:57.494328+06', 14, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(959, X'3e8d1c963d8999bae925fd5f0165994c82f67050c287399775c811d479c012f2', TIMESTAMP WITH TIME ZONE '2022-12-15 13:46:26.763443+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(960, X'5585a2485a362f93b1b9680acdbd3b369e5443b3499016f8e7f2d969bdde7415', TIMESTAMP WITH TIME ZONE '2022-12-15 13:47:11.638384+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(961, X'c58e2833a4d66c65b4790b7c462538cd720e792b56ad38ed7478fd8b562572c1', TIMESTAMP WITH TIME ZONE '2022-12-15 13:47:19.026136+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(962, X'86bcc36ec725ebedd8812302391353526c1cc6a450f1f6743a91d62aedcb7182', TIMESTAMP WITH TIME ZONE '2022-12-15 13:47:27.244751+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(963, X'9b1516b038997e68ebb7ad78f15fba01dcabb12f2a63d8d1fbc82bacd2c09858', TIMESTAMP WITH TIME ZONE '2022-12-15 13:47:36.482621+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(964, X'9b1516b038997e68ebb7ad78f15fba01dcabb12f2a63d8d1fbc82bacd2c09858', TIMESTAMP WITH TIME ZONE '2022-12-15 13:47:39.039359+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(965, X'8593eeeff2ec6bc9cdb140ef1db0c7aac6038e196263c674a567b0c144ef88fc', TIMESTAMP WITH TIME ZONE '2022-12-15 13:47:55.558088+06', 10, 0, TRUE, 'ad-hoc', 'Command failed with error 15969 (Location15969): ''$project specification must be an object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "$project specification must be an object", "code" : 15969, "codeName" : "Location15969" }', 1, NULL, NULL, NULL, 2, NULL), +(966, X'8593eeeff2ec6bc9cdb140ef1db0c7aac6038e196263c674a567b0c144ef88fc', TIMESTAMP WITH TIME ZONE '2022-12-15 13:47:56.479652+06', 7, 0, TRUE, 'ad-hoc', 'Command failed with error 15969 (Location15969): ''$project specification must be an object'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "$project specification must be an object", "code" : 15969, "codeName" : "Location15969" }', 1, NULL, NULL, NULL, 2, NULL), +(967, X'c6d2173c49aac3cc8a186ec084efb437edad4ee94d6e0ea365868a10ab684153', TIMESTAMP WITH TIME ZONE '2022-12-15 13:48:07.475176+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(968, X'6ce24b93ab0c859bcd76d453e4efd8135027c3e3222573173849a2db0688bc6e', TIMESTAMP WITH TIME ZONE '2022-12-15 13:56:54.59511+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(969, X'c6d2173c49aac3cc8a186ec084efb437edad4ee94d6e0ea365868a10ab684153', TIMESTAMP WITH TIME ZONE '2022-12-15 13:57:12.921227+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(970, X'15443db136f483c9a459933cd0fcd799e5970147efc905bfc09480d041b2f81a', TIMESTAMP WITH TIME ZONE '2022-12-15 13:57:41.835312+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(971, X'df540c9e67908920d7474e423798538d02e9bcda987210499f801c9b4422af23', TIMESTAMP WITH TIME ZONE '2022-12-15 13:57:50.660156+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(972, X'297fb85e80bf433ce44d53adf683a64b2721bdedcb6b55c26f84260d7cbd4237', TIMESTAMP WITH TIME ZONE '2022-12-15 14:00:30.061502+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(973, X'4eb4a6e102567fc318178cd0b0421b8e4447fcb8b572b7a83a3dabffddeae606', TIMESTAMP WITH TIME ZONE '2022-12-15 14:17:51.688135+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(974, X'23814cf96b8ba3c460289e7e80db351198de32c6619082281b2d37ff7b26f4b8', TIMESTAMP WITH TIME ZONE '2022-12-15 14:17:58.762356+06', 2, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(975, X'479cbc7de7bcaa65870fca40e7b602d1aaae4bd0ce41ec7157b8b066e866ec80', TIMESTAMP WITH TIME ZONE '2022-12-15 14:18:30.203969+06', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(976, X'852707d05e7d8bb3c20a1147b07a73d8bb960cc8cb08f60aea3e6cbb29669c76', TIMESTAMP WITH TIME ZONE '2022-12-15 14:18:49.129979+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''down''.', 1, NULL, NULL, NULL, 2, NULL), +(977, X'852707d05e7d8bb3c20a1147b07a73d8bb960cc8cb08f60aea3e6cbb29669c76', TIMESTAMP WITH TIME ZONE '2022-12-15 14:18:50.002155+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''down''.', 1, NULL, NULL, NULL, 2, NULL), +(978, X'852707d05e7d8bb3c20a1147b07a73d8bb960cc8cb08f60aea3e6cbb29669c76', TIMESTAMP WITH TIME ZONE '2022-12-15 14:18:54.546671+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''down''.', 1, NULL, NULL, NULL, 2, NULL), +(979, X'16a4314a168b2cbc5dbda6c9b71d89eec92d0fbc87a7d934fd89f63748955e04', TIMESTAMP WITH TIME ZONE '2022-12-15 14:18:59.225505+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(980, X'f9f4b172d26fd1d1ef167606bf5c34bfaf51ac83e5b73b700fb9b314a2a92fac', TIMESTAMP WITH TIME ZONE '2022-12-15 14:22:07.723104+06', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(981, X'f9f4b172d26fd1d1ef167606bf5c34bfaf51ac83e5b73b700fb9b314a2a92fac', TIMESTAMP WITH TIME ZONE '2022-12-15 14:24:09.451688+06', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(982, X'f9f4b172d26fd1d1ef167606bf5c34bfaf51ac83e5b73b700fb9b314a2a92fac', TIMESTAMP WITH TIME ZONE '2022-12-15 14:24:10.291319+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(983, X'f37e62eeea2c817699634a6c6e767f78ee71b987ac648c82845d768772eeadb6', TIMESTAMP WITH TIME ZONE '2022-12-15 14:24:13.672906+06', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(984, X'137b941e31975ca4fc7069a6e9a0a0cf3542e256fbfb3f4407b2baa0d9d78acf', TIMESTAMP WITH TIME ZONE '2022-12-15 14:24:27.460036+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(985, X'ccfc2450d55e642b68e1c4526c76986e00e3b010d2aa2db791ac14df410f50fb', TIMESTAMP WITH TIME ZONE '2022-12-15 14:24:55.143249+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(986, X'ccfc2450d55e642b68e1c4526c76986e00e3b010d2aa2db791ac14df410f50fb', TIMESTAMP WITH TIME ZONE '2022-12-15 14:24:56.059785+06', 8, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(987, X'e93f674d7dd0bb90ad9886eb16e5ecbfbd173d51635e892f9f1670ccdb11aa2e', TIMESTAMP WITH TIME ZONE '2022-12-15 14:25:00.143039+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$totalRegistration''.', 1, NULL, NULL, NULL, 2, NULL), +(988, X'f042b992f63ff7dcacb77506a9ff4b6f0d47e3b5888ea653f118cf2cddb3414e', TIMESTAMP WITH TIME ZONE '2022-12-15 14:25:06.201892+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(989, X'a36a5f1c699041c7d1766511e1eb50792db863fa5bb712d362c989120f0e0eb1', TIMESTAMP WITH TIME ZONE '2022-12-15 14:25:42.813205+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(990, X'b9734da8b780d042d6a0f5c23d10c97131b2cfba641e08740a30f6c3a04aa21e', TIMESTAMP WITH TIME ZONE '2022-12-15 14:25:56.002296+06', 7, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(991, X'a135c1136604effa25bb7b7c6f985edca17d1defdb48583986d3eeb88f99ea81', TIMESTAMP WITH TIME ZONE '2022-12-15 14:26:01.720998+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(992, X'519b064e4846a7bbb7006c4c1cc95ab20250cf2debc841548883f988dfeb8fed', TIMESTAMP WITH TIME ZONE '2022-12-15 14:26:08.249472+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(993, X'd41fb35d1e4646d58c073c30002a312d4468953beb14296a7302b633710610a8', TIMESTAMP WITH TIME ZONE '2022-12-15 14:26:18.855722+06', 2, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''totalList''.', 1, NULL, NULL, NULL, 2, NULL), +(994, X'b6e9f174346731e582574d8e2b54c218df649ac253c6fe26c5de4a4bb580fa80', TIMESTAMP WITH TIME ZONE '2022-12-15 14:26:25.487494+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(995, X'8ae93020772725b193cda3bf3ae8f9e00f150bfd9e9229dce5759d498b845a41', TIMESTAMP WITH TIME ZONE '2022-12-15 14:26:48.838665+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(996, X'8ae93020772725b193cda3bf3ae8f9e00f150bfd9e9229dce5759d498b845a41', TIMESTAMP WITH TIME ZONE '2022-12-15 14:26:49.627514+06', 7, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(997, X'459963782c47e792bdf5ede59bf7ab8897a21c34f8e4f78822e31bacb77e1cba', TIMESTAMP WITH TIME ZONE '2022-12-15 14:26:54.027888+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(998, X'1c7e5bd9fd324c1453e34b8fea353290f22c14ea0157a039363c5e16f619487a', TIMESTAMP WITH TIME ZONE '2022-12-15 14:27:02.77477+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(999, X'f599322d41be1283bcc67dfaed01182d3835f9b30a652b70ff1c0c5a472bba88', TIMESTAMP WITH TIME ZONE '2022-12-15 14:27:12.647221+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1000, X'59467922f08009f82b46ac98645b82549766f1692dd1b9bdb098091cd3b022a7', TIMESTAMP WITH TIME ZONE '2022-12-15 14:27:32.168681+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1001, X'ef9d77b65bb69c1ce5fbcd131d247daa077ec0211d5dff2d193e61d4ec0c79ee', TIMESTAMP WITH TIME ZONE '2022-12-15 14:27:41.030747+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1002, X'b81ee3404f686ac97a5fdbcbd44e347d7380d9969db5c6400e53070b65e979fb', TIMESTAMP WITH TIME ZONE '2022-12-15 14:27:45.716453+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1003, X'4a2f4477ab4fa159e87c2a03c15e13a24e6e140f9fc90fdc82a01c65e869a66a', TIMESTAMP WITH TIME ZONE '2022-12-15 14:29:09.001662+06', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(1004, X'38eb46b019db007a0b0e5652457a46c2762db241915cd60edf747cfe391fb703', TIMESTAMP WITH TIME ZONE '2022-12-15 14:29:13.46752+06', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(1005, X'9d0123ad0637320de8555f501eada3ca5045adbcfc76fd7a12ca08c59fa6843d', TIMESTAMP WITH TIME ZONE '2022-12-15 14:29:21.767784+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1006, X'9d0123ad0637320de8555f501eada3ca5045adbcfc76fd7a12ca08c59fa6843d', TIMESTAMP WITH TIME ZONE '2022-12-15 15:02:59.717565+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1007, X'9d0123ad0637320de8555f501eada3ca5045adbcfc76fd7a12ca08c59fa6843d', TIMESTAMP WITH TIME ZONE '2022-12-15 15:03:42.88425+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1008, X'f9c698e7761e53052954214bf2cbe176e81991b292c621f6f1ae149f8b7c6d9d', TIMESTAMP WITH TIME ZONE '2022-12-15 15:08:36.823783+06', 12, 9, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1009, X'e0def3e4d8d761d78e431290ccd5f51b5c4d71adb8884000f8051ce9ce003590', TIMESTAMP WITH TIME ZONE '2022-12-15 15:09:27.359348+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1010, X'f787513f112713a42e7490996e57de158c37315a6d89785ee61ecab436f163ab', TIMESTAMP WITH TIME ZONE '2022-12-15 15:11:22.745138+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1011, X'f787513f112713a42e7490996e57de158c37315a6d89785ee61ecab436f163ab', TIMESTAMP WITH TIME ZONE '2022-12-15 15:11:24.020945+06', 7, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1012, X'778bd8a5e81b8ff5392f51c54be10575be175c6507b067a6d00329c3e0be8302', TIMESTAMP WITH TIME ZONE '2022-12-15 15:11:58.993646+06', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''[''.', 1, NULL, NULL, NULL, 2, NULL), +(1013, X'd79c8af50440a36f8b4097aa2dbe83e627bf2dee2b03f718af51bba98bbfd0a2', TIMESTAMP WITH TIME ZONE '2022-12-15 15:12:04.444874+06', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''[''.', 1, NULL, NULL, NULL, 2, NULL), +(1014, X'9adfda41c9bf01f631fbc4db405e3af769de6724d4a7cb81f8dca102d6dd00d0', TIMESTAMP WITH TIME ZONE '2022-12-15 15:12:07.380232+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1015, X'0cbfeb0959a973a04a0aaabb2c83e453b86da3bd0dd462d6259aa896ec935699', TIMESTAMP WITH TIME ZONE '2022-12-15 15:12:24.43326+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1016, X'0cbfeb0959a973a04a0aaabb2c83e453b86da3bd0dd462d6259aa896ec935699', TIMESTAMP WITH TIME ZONE '2022-12-15 15:12:25.276935+06', 8, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1017, X'59b58fe68670bd14b7902abc13d2e56fd853100cf2f53885a084a62392d0f40b', TIMESTAMP WITH TIME ZONE '2022-12-15 15:13:02.706625+06', 12, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1018, X'59b58fe68670bd14b7902abc13d2e56fd853100cf2f53885a084a62392d0f40b', TIMESTAMP WITH TIME ZONE '2022-12-15 15:13:03.837914+06', 7, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1019, X'59b58fe68670bd14b7902abc13d2e56fd853100cf2f53885a084a62392d0f40b', TIMESTAMP WITH TIME ZONE '2022-12-15 15:13:36.413546+06', 8, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1020, X'0cbfeb0959a973a04a0aaabb2c83e453b86da3bd0dd462d6259aa896ec935699', TIMESTAMP WITH TIME ZONE '2022-12-15 15:13:44.945931+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1021, X'efa0a55b3f824a07d21053a860c8288f1e3d0e4e1190ec9258c5fa9d38a8f41a', TIMESTAMP WITH TIME ZONE '2022-12-15 15:14:49.762494+06', 11, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1022, X'efa0a55b3f824a07d21053a860c8288f1e3d0e4e1190ec9258c5fa9d38a8f41a', TIMESTAMP WITH TIME ZONE '2022-12-15 15:14:50.765375+06', 7, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1023, X'b06a37974006b42f8366c21fc9f454a52e7106623cc17f2ad548f3c988d78fea', TIMESTAMP WITH TIME ZONE '2022-12-15 15:15:15.31317+06', 9, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1024, X'b64efa69df8d9a5ea43aea6d844c468b0d8627b12ad7fc04594ce5fc99e7f5db', TIMESTAMP WITH TIME ZONE '2022-12-15 15:15:52.16889+06', 12, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1025, X'8a56ca60f3f7d396a5147430b3d90ddecd072dbd1b2c3210b6afb40b621bdbee', TIMESTAMP WITH TIME ZONE '2022-12-15 15:16:22.353619+06', 13, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1026, X'74b7713aaf9b22c79cb4203e7512f28a959642c3520b0469ab32bea2f0ca6a43', TIMESTAMP WITH TIME ZONE '2022-12-15 15:16:40.178746+06', 10, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1027, X'0b446c548e36337bacdd0b82c6f1bc8b262367b0824a7ac6c5eef81fdd3db789', TIMESTAMP WITH TIME ZONE '2022-12-15 15:16:58.104463+06', 12, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1028, X'74b7713aaf9b22c79cb4203e7512f28a959642c3520b0469ab32bea2f0ca6a43', TIMESTAMP WITH TIME ZONE '2022-12-15 15:17:36.850136+06', 12, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1029, X'74b7713aaf9b22c79cb4203e7512f28a959642c3520b0469ab32bea2f0ca6a43', TIMESTAMP WITH TIME ZONE '2022-12-15 15:18:05.549116+06', 7, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1030, X'74b7713aaf9b22c79cb4203e7512f28a959642c3520b0469ab32bea2f0ca6a43', TIMESTAMP WITH TIME ZONE '2022-12-15 15:18:22.355825+06', 9, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1031, X'74b7713aaf9b22c79cb4203e7512f28a959642c3520b0469ab32bea2f0ca6a43', TIMESTAMP WITH TIME ZONE '2022-12-15 15:18:26.259638+06', 11, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1032, X'74b7713aaf9b22c79cb4203e7512f28a959642c3520b0469ab32bea2f0ca6a43', TIMESTAMP WITH TIME ZONE '2022-12-15 15:18:27.164102+06', 7, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1033, X'74b7713aaf9b22c79cb4203e7512f28a959642c3520b0469ab32bea2f0ca6a43', TIMESTAMP WITH TIME ZONE '2022-12-15 15:21:02.69854+06', 8, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1034, X'dea1dab9a414ee49510a7d3ee1424e2a5bf273f1da50e05266cad47b13ad05b6', TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.013251+06', 71, 2, TRUE, 'dashboard', NULL, 1, 8, 2, NULL, 2, FALSE), +(1035, X'7a9862f461b19976498f4437a8a53f5a1c4dbf367eb98dc372cfeb0169dd16c2', TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.00516+06', 78, 1, TRUE, 'dashboard', NULL, 1, 7, 2, NULL, 2, FALSE), +(1036, X'fe9aca9591508f8c2231ad7cc5cadbd306d27b163d81614ae08aef03063ccfea', TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.00504+06', 81, 2, TRUE, 'dashboard', NULL, 1, 5, 2, NULL, 2, FALSE), +(1037, X'8a70ab34e585e0c674775da9c6427f24bafb1fb2abd47aa1ac881f1fb616e8bc', TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.00709+06', 108, 1, TRUE, 'dashboard', NULL, 1, 6, 2, NULL, 2, FALSE), +(1038, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:58.495794+06', 11, 1, TRUE, 'question', NULL, 1, 10, 2, NULL, 2, FALSE), +(1039, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:14.195685+06', 13, 2, TRUE, 'question', NULL, 1, 1, 2, NULL, 2, FALSE), +(1040, X'8a3d073865b89bcb71db27d16b18f8a1d7077621b2a56d1cc33510fa424140d1', TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:40.672497+06', 9, 3, TRUE, 'question', NULL, 1, 12, 2, NULL, 2, FALSE), +(1041, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:52.031955+06', 12, 3, TRUE, 'question', NULL, 1, 9, 2, NULL, 2, FALSE), +(1042, X'8a3d073865b89bcb71db27d16b18f8a1d7077621b2a56d1cc33510fa424140d1', TIMESTAMP WITH TIME ZONE '2022-12-15 15:27:21.276615+06', 11, 3, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(1043, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:02.825561+06', 17, 3, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(1044, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.148521+06', 30, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1045, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.15192+06', 32, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1046, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.148531+06', 37, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1047, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.154625+06', 40, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1048, X'f30d45c2c5fb7f870c55fe9fd54daa2ff2a62a9cbbcf7716d7c767ab850fb50c', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.850964+06', 24, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1049, X'19183016744d85365a3cdf36faadb261fa3d0d1b144406c41b752627c2d52831', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.857565+06', 62, 1, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1050, X'aa5a4eca413cf2b7c3e8c70794591fbc3bfded0d17fc56c1674a5c1683fbff10', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.858331+06', 61, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1051, X'4892d796a5797cfb9b7d411fb10429eb0446a2f1f6e366e79d74aff31a0b86aa', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.874084+06', 59, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1052, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:50.996644+06', 20, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1053, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:50.998335+06', 18, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1054, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:50.995369+06', 21, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1055, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:51.002289+06', 27, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1056, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:09.364787+06', 18, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(1057, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:09.362131+06', 20, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(1058, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:09.364846+06', 29, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(1059, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.371391+06', 21, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1060, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.372212+06', 22, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1061, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.372238+06', 27, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1062, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.37838+06', 24, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1063, X'88c6f38b546fe515b0effeb5a4fedfebf51ed1ab32510d2411ee3370e398038e', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:34.154394+06', 8, 3, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(1064, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:37.115857+06', 16, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(1065, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.349223+06', 22, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1066, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.352439+06', 33, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1067, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.346862+06', 38, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1068, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.355482+06', 37, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1069, X'886787bde8b7e14b6e44e3c4f75e7f9613c001432cfcda6c21be34a4f2f3e72c', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:46.944637+06', 65, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1070, X'1f46c5e3593611053c9273fe950a11c1a4ebb37d2d95c96f944912a6e4495017', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:46.947298+06', 64, 2, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1071, X'b11c4fcbec90533a99ead57314f937b67ec8885bbfa8eba86b3c06fdcb029cbe', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:46.944637+06', 68, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1072, X'4cb8b6d7cbff10a126a4e3a1d7f9a3437e5e2bbe514b0eba1355ee7f9bfc588a', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:46.944947+06', 88, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1073, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.927916+06', 23, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1074, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.928072+06', 28, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1075, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.929338+06', 27, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1076, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.934474+06', 30, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1077, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.614383+06', 37, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1078, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.614389+06', 45, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1079, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.616729+06', 52, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1080, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.618493+06', 54, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1081, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:37.323286+06', 17, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(1082, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:37.323286+06', 22, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(1083, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:37.322016+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(1084, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.150337+06', 16, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1085, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.150458+06', 19, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1086, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.158197+06', 24, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1087, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.154052+06', 26, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1088, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:22.417925+06', 18, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(1089, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:22.417091+06', 18, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(1090, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:22.418633+06', 24, 1, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(1091, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.184873+06', 22, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1092, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.190064+06', 19, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1093, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.189856+06', 25, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1094, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.192654+06', 25, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1095, X'7a8f7cb8983d885b42c58dba173560cb2e399163c3055c60ab3ffc26fde451ef', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:35.980871+06', 41, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1096, X'58fd139e1d1279c90f6c721baf2f52f3c1ed0a9800e041792022c356ed3097c1', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:35.980871+06', 41, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1097, X'9a9377fe5b679e284665048b660c489e8f264efefb68fba44e704019612608aa', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:35.980907+06', 44, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1098, X'f0774255d9a48c53067804f72fbf3244bdd484004af83aa6496451c52cb90596', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:36.005871+06', 29, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1099, X'db110844a127434a06c999cab57c300143b72055d02098513116fe1c33a81813', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.099117+06', 20, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1100, X'7e99c3f1fd460294a02a38925c5ecb4ca6da2e952a1f47a90d9a36a2fb4b1003', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.099117+06', 22, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1101, X'56a05ef431420f61cf538a1be7ac6593d4de2d51d9248d9587508d98b4b51c84', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.101563+06', 34, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1102, X'12e59c86aaa72cc158f48eb70951c35c4468433962645e80972de82e20ecb588', TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.101563+06', 39, 3, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1103, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:02.856016+02', 926, 0, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(1104, X'0b50f5b00de660d15e503301c0d33260cd366ba04ee1ba8efc802d67ae86e47b', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:02.856013+02', 927, 0, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(1105, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:02.856042+02', 926, 0, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(1106, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:08.971383+02', 425, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1107, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:09.017868+02', 379, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1108, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:08.968387+02', 455, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1109, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:09.047461+02', 348, 0, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1110, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:35.549215+02', 301, 0, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1111, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:35.550239+02', 504, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1112, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:35.550131+02', 579, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1113, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:35.570883+02', 559, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1114, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:58.929461+02', 331, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1115, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:58.931206+02', 316, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1116, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:58.928491+02', 484, 0, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1117, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:59.015732+02', 319, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1118, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:12.561136+02', 832, 0, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1119, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:12.766602+02', 753, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1120, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:13.780338+02', 175, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1121, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:13.956777+02', 160, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1122, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:47.940002+02', 315, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1123, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:47.940517+02', 177, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1124, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:47.939965+02', 422, 0, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1125, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:47.940092+02', 185, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1126, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:52.855856+02', 303, 0, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1127, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:52.856438+02', 304, 0, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1128, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:52.855913+02', 302, 0, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1129, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:52.85572+02', 303, 0, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1130, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:26.643382+02', 442, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1131, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:26.641815+02', 444, 1, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1132, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:26.64144+02', 444, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1133, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:26.641575+02', 445, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1135, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.175633+00', 10777, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1136, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.153777+00', 10799, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 1, 2, NULL, 2, NULL), +(1137, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.153445+00', 10799, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 10, 2, NULL, 2, NULL), +(1138, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.264946+00', 10688, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 1, 2, NULL, 2, NULL), +(1139, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.151149+00', 10801, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 9, 2, NULL, 2, NULL), +(1140, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.260913+00', 10722, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 9, 2, NULL, 2, NULL), +(1141, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.148084+00', 10946, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 10, 2, NULL, 2, NULL), +(1142, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 18:47:19.240646+00', 10743, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 12, 2, NULL, 2, NULL), +(1143, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:53.826495+00', 10344, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 10, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1144, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:53.823611+00', 10347, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 1, 2, NULL, 2, NULL), +(1145, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:53.82299+00', 10348, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 9, 2, NULL, 2, NULL), +(1146, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:53.830227+00', 10339, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 12, 2, NULL, 2, NULL), +(1147, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.546033+00', 10148, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 1, 2, NULL, 2, NULL), +(1148, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.545917+00', 10185, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 12, 2, NULL, 2, NULL), +(1149, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.606149+00', 10204, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 1, 2, NULL, 2, NULL), +(1150, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.715817+00', 10175, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 9, 2, NULL, 2, NULL), +(1151, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.835259+00', 10137, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1152, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.918204+00', 10073, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 9, 2, NULL, 2, NULL), +(1153, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.867025+00', 10192, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 10, 2, NULL, 2, NULL), +(1154, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:25:53.83412+00', 10225, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 10, 2, NULL, 2, NULL), +(1155, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:27:15.348038+00', 10051, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 10, 2, NULL, 2, NULL), +(1156, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:27:15.315948+00', 10144, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 1, 2, NULL, 2, NULL), +(1157, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:27:15.306706+00', 10155, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 12, 2, NULL, 2, NULL), +(1158, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:27:15.308432+00', 10151, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=localhost:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 9, 2, NULL, 2, NULL), +(1159, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.351379+00', 223, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1160, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.341521+00', 233, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1161, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.327934+00', 249, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1162, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.366784+00', 210, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1163, X'e20477722ff15200fd23ae9ce9d30831347940a35045cba07726b6a6f78e086d', TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:57.504991+00', 370, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(1164, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.395306+00', 455, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1165, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.417635+00', 467, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1166, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.519679+00', 412, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1167, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.468586+00', 413, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1168, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.468586+00', 415, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1169, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.492013+00', 450, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1170, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.712272+00', 377, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1171, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.68402+00', 432, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1172, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.712159+00', 432, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1173, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.042762+00', 177, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1174, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.078176+00', 256, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1175, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.131407+00', 233, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1176, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.068089+00', 301, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1177, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.430183+00', 257, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1178, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.450787+00', 271, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1179, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.504497+00', 222, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1180, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.49117+00', 259, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1181, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.045974+00', 202, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1182, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.09162+00', 364, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1183, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.152564+00', 335, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1184, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.164808+00', 332, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1185, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:22.866996+00', 97, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1186, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:22.866546+00', 142, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1187, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:22.853888+00', 242, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1188, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:22.855936+00', 246, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1189, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.303256+00', 228, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1190, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.300371+00', 274, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1191, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.308311+00', 390, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1192, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.351865+00', 351, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1193, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:28.742497+00', 112, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1194, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:28.788191+00', 162, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1195, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:28.776964+00', 172, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1196, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:28.776598+00', 232, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1197, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.851225+00', 258, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1198, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.851225+00', 279, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1199, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.781729+00', 445, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1200, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.783066+00', 471, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1201, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.726987+00', 671, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1202, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.796885+00', 603, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1203, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.887321+00', 609, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1204, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.794156+00', 716, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1205, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:39.768941+00', 785, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1206, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.744867+00', 54, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1207, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.717574+00', 101, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1208, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.72606+00', 100, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1209, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.707544+00', 137, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1210, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.042267+00', 218, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1211, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.039031+00', 229, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1212, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.057268+00', 238, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1213, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.192929+00', 192, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1214, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:08.966552+00', 190, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1215, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:09.012577+00', 196, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1216, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:09.035806+00', 185, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1217, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:09.031796+00', 195, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1218, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.960621+00', 330, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1219, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.84196+00', 473, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1220, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.746116+00', 636, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1221, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.80873+00', 577, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1222, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.726356+00', 667, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1223, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.80873+00', 595, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1224, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.928+00', 584, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1225, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.841921+00', 681, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1226, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:18.792647+00', 757, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1227, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:21.757495+00', 148, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1228, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:21.786314+00', 153, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1229, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:21.761092+00', 229, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1230, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:21.78019+00', 234, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1231, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:30.814166+00', 188, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1232, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:30.870133+00', 214, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1233, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:30.862741+00', 230, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1234, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:30.852757+00', 272, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1235, X'e1697e9389d33b917209dfd7200734710d605bb442f4123e354fabffe94f1d71', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.106776+00', 193, 6, TRUE, 'embedded-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1236, X'21fbcb7ffa0c1b0ef2f6fc28051f2174ba9e26504108a61cb7c628f69eb11068', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.074286+00', 245, 2, TRUE, 'embedded-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1237, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.099733+00', 239, 1, TRUE, 'embedded-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1238, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.120605+00', 224, 14, TRUE, 'embedded-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1239, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.368143+00', 104, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1240, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.391984+00', 112, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1241, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.391984+00', 114, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1242, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.375474+00', 162, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1243, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.363812+00', 175, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1244, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.450309+00', 107, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1245, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.43342+00', 127, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1246, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.440745+00', 234, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1247, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.495978+00', 221, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1248, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.518378+00', 163, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1249, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.518378+00', 154, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1250, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.536985+00', 235, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1251, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.621946+00', 196, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1252, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.56649+00', 377, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1253, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.663594+00', 368, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1254, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.707397+00', 333, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1255, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.663381+00', 397, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1256, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.731684+00', 392, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1257, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.740854+00', 369, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1258, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.746738+00', 386, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1259, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.80723+00', 415, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1260, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.758965+00', 470, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1261, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.758965+00', 512, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1262, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.832896+00', 441, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1263, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.813761+00', 481, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1264, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.781476+00', 526, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1265, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:59.819247+00', 570, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1266, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.590792+00', 404, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1267, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.590792+00', 408, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1268, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.579871+00', 483, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1269, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.55577+00', 603, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1270, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.516833+00', 640, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1271, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.850314+00', 433, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1272, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.573527+00', 752, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1273, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.574614+00', 751, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1274, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:30.716885+00', 673, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1275, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:10.871983+00', 309, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1276, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:10.924272+00', 260, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1277, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:10.985804+00', 251, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1278, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:10.961619+00', 281, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1279, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.011227+00', 244, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1280, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:10.920586+00', 367, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1281, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:10.961619+00', 284, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1282, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.037146+00', 268, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1283, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.025622+00', 277, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1284, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.016786+00', 327, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1285, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:28.988371+00', 407, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1286, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:28.984305+00', 461, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1287, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.084618+00', 385, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1288, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.084646+00', 402, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1289, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.03015+00', 516, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1290, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.203009+00', 357, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1291, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.074621+00', 508, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1292, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.074621+00', 521, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1293, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.487285+00', 318, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1294, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.487285+00', 326, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 10, 2, NULL, 2, NULL), +(1295, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.596567+00', 301, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1296, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.516626+00', 427, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1297, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.682163+00', 331, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(1298, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.605797+00', 431, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(1299, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.671713+00', 423, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(1300, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.677652+00', 457, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(1301, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.672317+00', 473, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(1302, X'dce651137faa3db28dab6efec19441035c91622f42ef027bfd4981d8124359a1', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.091108+00', 220, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(1303, X'990629b5124905526b3d9df1f9f58b387141fb9165e23d8a0ca74e59be61a645', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.089874+00', 233, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1304, X'5b632e6b82df4e847d09c4861cf22f448bf3e9b3a6342e957715d5e3a3ad2278', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.057096+00', 252, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(1305, X'eb49fbdcb22c5a3c6afd6dc290eb64252998b4bbb23260cb04c0efaf7be8eca2', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.088952+00', 282, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(1306, X'f7e85bdd334e7bc066af5ad9451907cfe892e9c93cdea8a001d918dd923cf246', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.549238+00', 104, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(1307, X'1e8f592a874e1fa7277aa99ac0b2c7c16634fb6dd45047b99f56a15852487623', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.545592+00', 136, 0, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1308, X'4854a4f1906c8d0b96941c0e8527088e349a3ad2304d1454cc8018e83a73c779', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.559393+00', 148, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(1309, X'0012b9626005715f7ec9bdf7699cbe779ab28c9092e703b7da2770dd7b4be9e3', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.575261+00', 150, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(1310, X'9063e69f3705cd16186a59c44440234924d540fc694cecf0075f7aa4bf2605d7', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.66414+00', 172, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(1311, X'74044683ac58cf90e2a127a49733a01a570d59704bd63589483979d746ba838a', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.737206+00', 140, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1312, X'4632eb879bde5a4d7db0e657f17c5dfcac9cfc5ebcf64b852f595cfbee981b1e', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.74809+00', 156, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(1313, X'41f2e4548bbb4225843d40d7a89a508c725f533f60b5b2d9bebc9a4b53c87f16', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.744418+00', 169, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(1314, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.929813+00', 213, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(1315, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.854522+00', 342, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1316, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.88631+00', 317, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(1317, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.846062+00', 438, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1318, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.846062+00', 439, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 10, 2, NULL, 2, NULL), +(1319, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.84785+00', 479, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(1320, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.942061+00', 390, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(1321, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.923127+00', 492, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(1322, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:58.950212+00', 500, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1323, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.545018+00', 224, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(1324, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.616776+00', 168, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(1325, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.597042+00', 217, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1326, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.511121+00', 345, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1327, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.583478+00', 274, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(1328, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.511121+00', 359, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 10, 2, NULL, 2, NULL), +(1329, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.694378+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(1330, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.636021+00', 268, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(1331, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.507125+00', 237, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1332, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.547065+00', 243, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1333, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.622205+00', 208, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1334, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.377583+00', 472, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1335, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.377583+00', 508, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1336, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.451519+00', 437, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1337, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.427774+00', 512, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1338, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.456185+00', 500, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1339, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.689056+00', 625, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1340, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.51035+00', 313, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1341, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.496202+00', 351, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1342, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.496202+00', 384, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1343, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.531848+00', 400, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1344, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.575545+00', 387, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1345, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.543472+00', 439, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1346, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.477682+00', 494, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1347, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.690852+00', 325, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1348, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.557704+00', 600, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1349, X'9a9377fe5b679e284665048b660c489e8f264efefb68fba44e704019612608aa', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:32.974175+00', 96, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1350, X'7a8f7cb8983d885b42c58dba173560cb2e399163c3055c60ab3ffc26fde451ef', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:32.973273+00', 161, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1351, X'58fd139e1d1279c90f6c721baf2f52f3c1ed0a9800e041792022c356ed3097c1', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:32.991077+00', 146, 7, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1352, X'f0774255d9a48c53067804f72fbf3244bdd484004af83aa6496451c52cb90596', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:32.99072+00', 176, 5, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1353, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.549778+00', 95, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1354, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.551045+00', 113, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1355, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.545171+00', 154, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1356, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.578764+00', 136, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1357, X'af45a111a319ba356b8c19edab7b3e118ab50138dab3301e53fba62afbb526d6', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.605644+00', 66, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1358, X'8a6efeaad41d11bf8eeaec29176fa2e497874ee85cd84d1a2f1dca82640bd7db', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.606535+00', 62, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1359, X'5bd78c6168ce38f580e558ea6291fcaf891574dde74c1f4d1f245d7fa25fb7e6', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.542427+00', 176, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1360, X'a3aa392051de9d060e8705d6fc5b9fea8c0dfe2802d0513fa9951a9dcfc30d7b', TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.608223+00', 113, 2, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1361, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.175527+00', 265, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(1362, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.20456+00', 237, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1363, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.214928+00', 245, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(1364, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.20456+00', 286, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 10, 2, NULL, 2, NULL), +(1365, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.249247+00', 329, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(1366, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.238313+00', 435, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(1367, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.304835+00', 436, 1, TRUE, 'public-dashboard', NULL, NULL, 10, 2, NULL, 2, FALSE), +(1368, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.299597+00', 446, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(1369, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.254565+00', 516, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(1370, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.423895+00', 253, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1371, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.535317+00', 182, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1372, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.535317+00', 170, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1373, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.464652+00', 314, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1374, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.425777+00', 363, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1375, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.425984+00', 398, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1376, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.511997+00', 372, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1377, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.576921+00', 367, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1378, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.562869+00', 498, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1379, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:39.803419+00', 251, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1380, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:39.780577+00', 282, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1381, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:39.796325+00', 307, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1382, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:39.797695+00', 307, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1383, X'88c6f38b546fe515b0effeb5a4fedfebf51ed1ab32510d2411ee3370e398038e', TIMESTAMP WITH TIME ZONE '2022-12-16 08:33:24.820314+00', 159, 3, TRUE, 'question', NULL, 1, 11, 2, NULL, 2, FALSE), +(1384, X'88c6f38b546fe515b0effeb5a4fedfebf51ed1ab32510d2411ee3370e398038e', TIMESTAMP WITH TIME ZONE '2022-12-16 08:34:18.241418+00', 83, 3, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(1385, X'88c6f38b546fe515b0effeb5a4fedfebf51ed1ab32510d2411ee3370e398038e', TIMESTAMP WITH TIME ZONE '2022-12-16 08:36:05.946702+00', 141, 3, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(1386, X'88c6f38b546fe515b0effeb5a4fedfebf51ed1ab32510d2411ee3370e398038e', TIMESTAMP WITH TIME ZONE '2022-12-16 08:40:58.960368+00', 39, 3, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(1387, X'88c6f38b546fe515b0effeb5a4fedfebf51ed1ab32510d2411ee3370e398038e', TIMESTAMP WITH TIME ZONE '2022-12-16 08:42:29.228788+00', 38, 3, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(1388, X'6e4640337b145da422cfdf09230cd308a3b37900a82661593e085830bdac1318', TIMESTAMP WITH TIME ZONE '2022-12-16 08:43:28.057525+00', 14, 0, TRUE, 'ad-hoc', 'Invalid JSON regular expression. Position: 559.', 1, NULL, NULL, NULL, 2, NULL), +(1389, X'137a47b8e146805856eee3745f033d98f3447f281aff0695abc08674f5dd072f', TIMESTAMP WITH TIME ZONE '2022-12-16 08:43:35.16764+00', 10, 0, TRUE, 'ad-hoc', 'Invalid JSON regular expression. Position: 561.', 1, NULL, NULL, NULL, 2, NULL), +(1390, X'02d06e5ec100fd0d59aec4fa8103deff2b0956c6d888573c4e0127916b7e1ca4', TIMESTAMP WITH TIME ZONE '2022-12-16 08:43:46.249297+00', 62, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1391, X'c1e77f39fda129c15714885b1a26dd4be387408016f291140d0fa984c44c4392', TIMESTAMP WITH TIME ZONE '2022-12-16 08:50:45.477252+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$facet''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1392, X'ec95095b5f9cd62c814a6ec91d8cbedad7cfffa0ab354b158c4d92d7d49da982', TIMESTAMP WITH TIME ZONE '2022-12-16 08:50:52.712299+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(1393, X'b41ed5997b693b545f4af18d8ca38cb171c8290af4ddf15ce69dde134aed0233', TIMESTAMP WITH TIME ZONE '2022-12-16 08:51:01.894113+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(1394, X'354910804df95cc0668d0dad48373e4a309ab134e6b0b4b7850a0f6210d3d0f1', TIMESTAMP WITH TIME ZONE '2022-12-16 08:51:20.943829+00', 59, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1395, X'd88890aeac43513ee03677a5d21711bbdff0028dae7b7b4ce2ec8d9957933b7b', TIMESTAMP WITH TIME ZONE '2022-12-16 08:51:38.949227+00', 111, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1396, X'0a42cc2ab6a26d1f5726358fae1245d6feaebfa84e43417b47a43e0cae5d0748', TIMESTAMP WITH TIME ZONE '2022-12-16 08:57:25.608275+00', 251, 0, TRUE, 'ad-hoc', 'Command failed with error 28818 (Location28818): ''path option to $unwind stage should be prefixed with a ''$'': ageGroups'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671181042, "i" : 51 } }, "ok" : 0.0, "errmsg" : "path option to $unwind stage should be prefixed with a ''$'': ageGroups", "code" : 28818, "codeName" : "Location28818", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671181042, "i" : 51 } }, "signature" : { "hash" : { "$binary" : "bY2rya58BzSVpYx306lkHZPIhTk=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1397, X'7d886185463a463728c082ec5750949f0554d30efaa94aa31d42ac371962eb2c', TIMESTAMP WITH TIME ZONE '2022-12-16 08:57:28.778613+00', 101, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1398, X'48c95d78e6d16681438d44ab53bf32e1595e70d1e9b40e1ffaf695c7a316b7c5', TIMESTAMP WITH TIME ZONE '2022-12-16 09:00:17.484191+00', 67, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1399, X'13675c519ed399f0d1e823291f34f274d4f00d24d27e46c315f40943f4af4f53', TIMESTAMP WITH TIME ZONE '2022-12-16 09:01:16.87004+00', 40, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1400, X'1b465c3e7b8975ceeca5a94c78c5aaabc99b00fbfb93008bf95e8b3d1dc328d3', TIMESTAMP WITH TIME ZONE '2022-12-16 09:01:32.383185+00', 35, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1401, X'6caa6ede8a867709fa3a9d869113fd586f1efe877291ed177ace5219f2cfd7d3', TIMESTAMP WITH TIME ZONE '2022-12-16 09:05:24.090149+00', 41, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1402, X'690a4a2a1f35834e141d9562b0e728a6a6c370d9b5f21568a04916d73ed620ad', TIMESTAMP WITH TIME ZONE '2022-12-16 09:05:40.607048+00', 36, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1403, X'8fff03f2a7bcb61f801249ccd0cbb25b03df9684e7f63467d3d031e40f37bbd7', TIMESTAMP WITH TIME ZONE '2022-12-16 09:07:12.103124+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$ageGroups''.', 1, NULL, NULL, NULL, 2, NULL), +(1404, X'ac57af9c05576cc622c04efcfb3d1f12617043572de729b484e8623b062d8e05', TIMESTAMP WITH TIME ZONE '2022-12-16 09:07:20.134414+00', 69, 0, TRUE, 'ad-hoc', 'Command failed with error 28664 (Location28664): ''$concatArrays only supports arrays, not object'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671181633, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$concatArrays only supports arrays, not object", "code" : 28664, "codeName" : "Location28664", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671181633, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "XG0sKtqEwXbhErGCWL5mJnR5iQg=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1405, X'690a4a2a1f35834e141d9562b0e728a6a6c370d9b5f21568a04916d73ed620ad', TIMESTAMP WITH TIME ZONE '2022-12-16 09:08:02.534779+00', 56, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1406, X'ccef7312033626f10cfac5375515bec2fc056bdba245c9e56566ff562c4c10e8', TIMESTAMP WITH TIME ZONE '2022-12-16 09:08:07.507523+00', 119, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1407, X'11e013e2f0e5d6b5945e3a48e892d0f798359f6e661bb66afd867d0de5435ad5', TIMESTAMP WITH TIME ZONE '2022-12-16 09:08:16.718891+00', 57, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1408, X'3635c26a19d61f321d01fef3042a004733b90bc1b889d49009b452132137fb07', TIMESTAMP WITH TIME ZONE '2022-12-16 09:09:17.658331+00', 36, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1409, X'586d6c77139a5bc971dddbd8ce5e4936bb91fe49d8318e0dd9c04f590084dd02', TIMESTAMP WITH TIME ZONE '2022-12-16 09:10:17.93479+00', 107, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1410, X'fe1ff39e1fc762feac14775ec4a92f87792f50e2169b609d8ed3fb00146b7a38', TIMESTAMP WITH TIME ZONE '2022-12-16 09:11:06.770591+00', 80, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1411, X'ac0d13b3953a8cf0d602661df9a34ae1acbbd736b2c99b6a7ffc814af0129a49', TIMESTAMP WITH TIME ZONE '2022-12-16 09:11:33.441494+00', 85, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(1412, X'fe1ff39e1fc762feac14775ec4a92f87792f50e2169b609d8ed3fb00146b7a38', TIMESTAMP WITH TIME ZONE '2022-12-16 09:12:27.915232+00', 69, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1413, X'03d62b58fe4f97ab157c21e397f7761926defdfd1f9700b6e587ff870e3dc86f', TIMESTAMP WITH TIME ZONE '2022-12-16 09:18:17.595632+00', 64, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1414, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.112504+00', 74, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1415, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.099981+00', 96, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1416, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.134425+00', 72, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1417, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.131309+00', 99, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1418, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.132713+00', 100, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1419, X'296c0216f91d0eda02da730fb6c71bbc0c5426b8118ebcfc1bb3175fe817dbb3', TIMESTAMP WITH TIME ZONE '2022-12-16 09:36:52.206674+00', 107, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''Failed to optimize pipeline :: caused by :: can''t convert from BSON type string to Date'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183403, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Failed to optimize pipeline :: caused by :: can''t convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183403, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "/CAmZYifLLT7YCFwna4orUWOHvM=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1420, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:37:03.414903+00', 114, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''can''t convert from BSON type string to Date'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183422, "i" : 14 } }, "ok" : 0.0, "errmsg" : "can''t convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183422, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "DIpIIgM/uI8GZSqUxMFxd3IgSLY=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1421, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:37:12.054561+00', 44, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''can''t convert from BSON type string to Date'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183422, "i" : 14 } }, "ok" : 0.0, "errmsg" : "can''t convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183422, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "DIpIIgM/uI8GZSqUxMFxd3IgSLY=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1422, X'fdea48ae5e3517640f11052fbc4583c60fbc0842978e58dbce0088f21359b0b8', TIMESTAMP WITH TIME ZONE '2022-12-16 09:37:48.33025+00', 52, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1423, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:37:51.407758+00', 41, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''can''t convert from BSON type string to Date'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183463, "i" : 1 } }, "ok" : 0.0, "errmsg" : "can''t convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183463, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "l1Re2W42t2faNMfzUoZ6dbg0Utc=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1424, X'48816d54b67584c1d4eeccaf66b963c5aaf65a8a66655fd48b292e4eeeae42b2', TIMESTAMP WITH TIME ZONE '2022-12-16 09:37:53.512017+00', 51, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1425, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:37:54.745163+00', 40, 0, TRUE, 'ad-hoc', 'Command failed with error 16006 (Location16006): ''can''t convert from BSON type string to Date'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183473, "i" : 1 } }, "ok" : 0.0, "errmsg" : "can''t convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183473, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "LmVUEgTxXfk4klmvSVMF5g1EQMg=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1426, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:41:25.510418+00', 62, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1427, X'1ff20c01403015d81ef5813f84649ccf423763b72c62b07a22e36177f4c8dc93', TIMESTAMP WITH TIME ZONE '2022-12-16 09:42:01.159832+00', 65, 0, TRUE, 'ad-hoc', 'Command failed with error 15952 (Location15952): ''unknown group operator ''$dateToString'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183718, "i" : 4 } }, "ok" : 0.0, "errmsg" : "unknown group operator ''$dateToString''", "code" : 15952, "codeName" : "Location15952", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183718, "i" : 4 } }, "signature" : { "hash" : { "$binary" : "ApKCFsFFEsBC5svJISjtsvVWgd4=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1428, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:42:10.755309+00', 54, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1429, X'2d2a5f4ee1f19b9e5d11969bc5b1a7c8f772e9c8c1f1a454661c14737c48d723', TIMESTAMP WITH TIME ZONE '2022-12-16 09:42:17.85392+00', 36, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''state'' must be an accumulator object'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183733, "i" : 1 } }, "ok" : 0.0, "errmsg" : "The field ''state'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183733, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "DYzJ+7Ok5/oU6d5NAMeK3dc4BoI=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1430, X'c0e6afe2e43e4d8568603ca265bc7ae2a614a68689b532a9f12307c42e18be88', TIMESTAMP WITH TIME ZONE '2022-12-16 09:42:20.432796+00', 29, 0, TRUE, 'ad-hoc', 'Command failed with error 40234 (Location40234): ''The field ''state'' must be an accumulator object'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183733, "i" : 1 } }, "ok" : 0.0, "errmsg" : "The field ''state'' must be an accumulator object", "code" : 40234, "codeName" : "Location40234", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183733, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "DYzJ+7Ok5/oU6d5NAMeK3dc4BoI=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1431, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:43:16.262687+00', 44, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1432, X'1a60c569eb370dd9555593d821ac2100e0dd619c513be8a14bad19bd2a57c98b', TIMESTAMP WITH TIME ZONE '2022-12-16 09:43:20.964865+00', 56, 0, TRUE, 'ad-hoc', 'Command failed with error 15983 (Location15983): ''An object representing an expression must have exactly one field: { $dateToString: { format: "%Y-%m-%d", date: "$createdAt" }, state: "$state" }'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671183793, "i" : 1 } }, "ok" : 0.0, "errmsg" : "An object representing an expression must have exactly one field: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" }, state: \"$state\" }", "code" : 15983, "codeName" : "Location15983", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671183793, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "UTMffOKP+un+ZzCJRCcr8uKimrQ=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1433, X'6f572b52b9b6863bb0bc145b1e588c73e3f3b19e00341dec35a78b02c2480747', TIMESTAMP WITH TIME ZONE '2022-12-16 09:43:23.555768+00', 35, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1434, X'3454eeb16db9828f22794b1a4c51791120d6b3d07a25ea462749eaf2ebaddf23', TIMESTAMP WITH TIME ZONE '2022-12-16 09:43:58.131406+00', 36, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1435, X'd765c1decfb307887d302d83f77e9c543306bb88684895e7b4bb9ce56b3b3037', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:02.640875+00', 60, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1436, X'd765c1decfb307887d302d83f77e9c543306bb88684895e7b4bb9ce56b3b3037', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:04.331775+00', 83, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1437, X'f502e8aa91819f265d7a6c5655e86608c088cf43b2d52f43655291bab0a099e9', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:12.118569+00', 17, 0, TRUE, 'ad-hoc', 'Index -1 out of bounds for length 0', 1, NULL, NULL, NULL, 2, NULL), +(1438, X'071ebb96a2240f5f08d2372bd1a9dc507ce99205d830a1c3c81ff20c10fc47d0', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:14.901867+00', 19, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(1439, X'071ebb96a2240f5f08d2372bd1a9dc507ce99205d830a1c3c81ff20c10fc47d0', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:16.884137+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(1440, X'3a110239aef48554947a332260143dea17603c216d12fac6b31ff65aa171ce67', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:20.315705+00', 18, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(1441, X'3454eeb16db9828f22794b1a4c51791120d6b3d07a25ea462749eaf2ebaddf23', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:21.673025+00', 69, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1442, X'3a110239aef48554947a332260143dea17603c216d12fac6b31ff65aa171ce67', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:24.03072+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(1443, X'3454eeb16db9828f22794b1a4c51791120d6b3d07a25ea462749eaf2ebaddf23', TIMESTAMP WITH TIME ZONE '2022-12-16 09:44:25.269151+00', 45, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1444, X'3a110239aef48554947a332260143dea17603c216d12fac6b31ff65aa171ce67', TIMESTAMP WITH TIME ZONE '2022-12-16 09:45:05.604332+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(1445, X'6fbf2e48af25104939dbdca561d89812f492d85a4b51c664679507ff6d583e1a', TIMESTAMP WITH TIME ZONE '2022-12-16 09:45:11.230075+00', 43, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1446, X'd765c1decfb307887d302d83f77e9c543306bb88684895e7b4bb9ce56b3b3037', TIMESTAMP WITH TIME ZONE '2022-12-16 09:45:13.850262+00', 71, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1447, X'27ec8119e26614e4f0042e3511e6b8f02a56cc714d463fa027c87af0d110b971', TIMESTAMP WITH TIME ZONE '2022-12-16 09:45:23.687148+00', 164, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1448, X'1b1fb610b96b65cf8f3944fb537997be797b70b041543e3edf37e5625ba2e718', TIMESTAMP WITH TIME ZONE '2022-12-16 09:45:25.466551+00', 46, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1449, X'27ec8119e26614e4f0042e3511e6b8f02a56cc714d463fa027c87af0d110b971', TIMESTAMP WITH TIME ZONE '2022-12-16 09:45:26.528375+00', 51, 8, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1450, X'ec1ae01d503700a3e953ff34fa39fcd0aa36405ca1e5f19f5dfb1d0bddaddc13', TIMESTAMP WITH TIME ZONE '2022-12-16 09:45:38.827081+00', 174, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1451, X'323c7d51bb8e07c9c23403536a55661ed5a8075fd8718e998ab41e461d784d68', TIMESTAMP WITH TIME ZONE '2022-12-16 09:46:12.711675+00', 36, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1452, X'b3f3f7a637b60a2b0e50a054bef606453c3f9ae0ebb9a73e74de807a6d5f5a82', TIMESTAMP WITH TIME ZONE '2022-12-16 09:46:22.399853+00', 34, 24, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1453, X'c376f69208a0a43bdd689b8772e9f7d0a87cfcf616c46abde029549580fbcb53', TIMESTAMP WITH TIME ZONE '2022-12-16 09:46:29.161323+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''stateName''.', 1, NULL, NULL, NULL, 2, NULL), +(1454, X'323c7d51bb8e07c9c23403536a55661ed5a8075fd8718e998ab41e461d784d68', TIMESTAMP WITH TIME ZONE '2022-12-16 09:46:30.951287+00', 36, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1455, X'116614bb82fee16792ac1fc20a260fbc7a18583b38246f5e4551f8dd7ff90ea2', TIMESTAMP WITH TIME ZONE '2022-12-16 09:50:03.735799+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$addFields''.', 1, NULL, NULL, NULL, 2, NULL), +(1456, X'23ed5787d287cd41ee7ada517a8197e893b340e62ae49d5d384a92f16995e94e', TIMESTAMP WITH TIME ZONE '2022-12-16 09:50:11.722505+00', 35, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1457, X'b8b8efb26815e74720c5317573ae48187220a3b8e982ebb5653e835bbf5673c1', TIMESTAMP WITH TIME ZONE '2022-12-16 09:50:25.521756+00', 64, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1458, X'5162787eb8cb5d28d32a6091e0e3c148b27c952ece7778d1e7c83d7801f4be05', TIMESTAMP WITH TIME ZONE '2022-12-16 09:51:58.29287+00', 69, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1459, X'870354bfb47ae6a79285faaebf97271ac33f997af9d58e7ff8c8d4d7ad54e61d', TIMESTAMP WITH TIME ZONE '2022-12-16 09:55:13.980551+00', 107, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1460, X'154bebf2f1eccbd0c5680b9624e4b5432dfdab25f5dcdc805418a5df5c938fca', TIMESTAMP WITH TIME ZONE '2022-12-16 09:55:30.217633+00', 68, 0, TRUE, 'ad-hoc', 'Command failed with error 28818 (Location28818): ''path option to $unwind stage should be prefixed with a ''$'': estimate'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671184523, "i" : 1 } }, "ok" : 0.0, "errmsg" : "path option to $unwind stage should be prefixed with a ''$'': estimate", "code" : 28818, "codeName" : "Location28818", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671184523, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "43zUrep0v+wgKtOisUUyBisNurk=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1461, X'86ea6109ec5b95dca82612d4c8b655dcba707a81957544626b995def93dcbb89', TIMESTAMP WITH TIME ZONE '2022-12-16 09:55:33.25751+00', 54, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1462, X'77f8e378211f82720682a5d957c6462b3d5bcba1dc3a5972fbd38cdfcbe5cc01', TIMESTAMP WITH TIME ZONE '2022-12-16 09:55:57.630525+00', 48, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1463, X'2d4906bc775e66c4a9f879cb550c2ada2cd47c6bb25ef404446bc216b662ca84', TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:50.740781+00', 70, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(1464, X'd35f7fcea980fb834f200f62364dac19663dd0721069c81dda9a141225ed5570', TIMESTAMP WITH TIME ZONE '2022-12-16 09:58:05.205836+00', 75, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671184682, "i" : 14 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671184682, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "HE+J4XQi3lqlLAxEnGuGCI4rzyA=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1465, X'723a0c59ccdbd30f5683d80e3559a446df61129817ab1a19c47ffc8a0dcbe145', TIMESTAMP WITH TIME ZONE '2022-12-16 09:58:41.16394+00', 52, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671184713, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671184713, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "nty54C0uOQG3NACKdsFCM4Rzog8=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1466, X'b20ba15be08bcd1ea83ec4d009769ab5a9ff7d57e3c0037ac5b046ef339ea3ce', TIMESTAMP WITH TIME ZONE '2022-12-16 09:58:59.666486+00', 40, 0, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(1467, X'd1946b514cfb6cb56119a7a1b63ef95f8e4c60544a6a0513f4dc146509fd6fa8', TIMESTAMP WITH TIME ZONE '2022-12-16 09:59:07.099667+00', 259, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1468, X'4d0f76101bfe84da0d24429df9a9c4e1dfb911057870fd9b124fc5d004ac49ca', TIMESTAMP WITH TIME ZONE '2022-12-16 10:07:38.922021+00', 192, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1469, X'5ee9a9fff694412404b82bab2c3d4fe2478c0d34ea36acbbe7dffabc3ddafc23', TIMESTAMP WITH TIME ZONE '2022-12-16 10:07:46.083193+00', 45, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1470, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 10:08:06.61078+00', 89, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(1471, X'4b1115b829beb3e7117b4a1ec0ddc7a711407d8e81001aeea1c64c7080f8b92a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:13:01.939481+00', 79, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1472, X'566e0b776aa52fc2c11534d5c18125a42f1cc886dd34f041d1bc14dfcfd3e7e9', TIMESTAMP WITH TIME ZONE '2022-12-16 10:13:13.540292+00', 47, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1473, X'c5eece399eb69e22b9f64f133ef8d37cb5160d9bee117651e83dfd3e3a9dd727', TIMESTAMP WITH TIME ZONE '2022-12-16 10:13:31.909065+00', 82, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1474, X'749a667c2f4ec250aa9a2e01707197fea4360fc3971f6d89e68683d0a02c55a0', TIMESTAMP WITH TIME ZONE '2022-12-16 10:13:44.820803+00', 67, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1475, X'6791f6811173e65aacbabc6a96f3966c1ef459e36c29a9caf59abe1099e6efdd', TIMESTAMP WITH TIME ZONE '2022-12-16 10:13:53.879151+00', 99, 0, TRUE, 'ad-hoc', 'Command failed with error 15955 (Location15955): ''a group specification must include an _id'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671185633, "i" : 1 } }, "ok" : 0.0, "errmsg" : "a group specification must include an _id", "code" : 15955, "codeName" : "Location15955", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671185633, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "QGn6LeDRxTRF0iYNRdPCLKTIZjI=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1476, X'749a667c2f4ec250aa9a2e01707197fea4360fc3971f6d89e68683d0a02c55a0', TIMESTAMP WITH TIME ZONE '2022-12-16 10:13:59.854075+00', 99, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1477, X'91eaee741eb1e83cc0f0c34eef2caeec2f63a8fc21dab0b4eff34f28969e86c4', TIMESTAMP WITH TIME ZONE '2022-12-16 10:14:06.923506+00', 50, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1478, X'31df210fac8c7583b64606ed09282802ecc9cd2ce7aab443fb2009c3c376db59', TIMESTAMP WITH TIME ZONE '2022-12-16 10:14:31.352078+00', 39, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1479, X'4c5304b60deeaf63720003412b1264647be7fe5802b4415a91e32ec41e6e3287', TIMESTAMP WITH TIME ZONE '2022-12-16 10:15:24.000425+00', 22, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$addFields''.', 1, NULL, NULL, NULL, 2, NULL), +(1480, X'5fec2e8c66474264f68a8715ef6e2dde49a9caa19ebcd958aa5bfd1dc54cc0f2', TIMESTAMP WITH TIME ZONE '2022-12-16 10:15:32.592196+00', 61, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1481, X'd557a8db6cd0242b7d0ce0686c0963d74820cc8c981a85507319ba8e70e6b762', TIMESTAMP WITH TIME ZONE '2022-12-16 10:15:47.694851+00', 47, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1482, X'd557a8db6cd0242b7d0ce0686c0963d74820cc8c981a85507319ba8e70e6b762', TIMESTAMP WITH TIME ZONE '2022-12-16 10:16:46.562888+00', 67, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1483, X'0227386abe94134d8fd911a85d103c92ecbf5e56c6af7238480c5814e860eaeb', TIMESTAMP WITH TIME ZONE '2022-12-16 10:17:17.617791+00', 71, 0, TRUE, 'ad-hoc', 'Command failed with error 40228 (Location40228): ''''newRoot'' expression must evaluate to an object, but resulting value was: 0.000333193. Type of resulting value: ''double''. Input document: {_id: null, percentage: 0.000333193}'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671185833, "i" : 1 } }, "ok" : 0.0, "errmsg" : "''newRoot'' expression must evaluate to an object, but resulting value was: 0.000333193. Type of resulting value: ''double''. Input document: {_id: null, percentage: 0.000333193}", "code" : 40228, "codeName" : "Location40228", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671185833, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "+BE169zteKUTghWCk1Rhc+GB6z8=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1484, X'0227386abe94134d8fd911a85d103c92ecbf5e56c6af7238480c5814e860eaeb', TIMESTAMP WITH TIME ZONE '2022-12-16 10:18:14.128954+00', 54, 0, TRUE, 'ad-hoc', 'Command failed with error 40228 (Location40228): ''''newRoot'' expression must evaluate to an object, but resulting value was: 0.000333193. Type of resulting value: ''double''. Input document: {_id: null, percentage: 0.000333193}'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671185893, "i" : 1 } }, "ok" : 0.0, "errmsg" : "''newRoot'' expression must evaluate to an object, but resulting value was: 0.000333193. Type of resulting value: ''double''. Input document: {_id: null, percentage: 0.000333193}", "code" : 40228, "codeName" : "Location40228", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671185893, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "coqYk0M7S6FPJjMDlOfNkpWiilg=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1485, X'd557a8db6cd0242b7d0ce0686c0963d74820cc8c981a85507319ba8e70e6b762', TIMESTAMP WITH TIME ZONE '2022-12-16 10:18:16.74869+00', 52, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1486, X'd557a8db6cd0242b7d0ce0686c0963d74820cc8c981a85507319ba8e70e6b762', TIMESTAMP WITH TIME ZONE '2022-12-16 10:19:50.28009+00', 69, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1487, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-16 10:23:29.934583+00', 834, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1488, X'37bec23db86982ae6c72a78d0f0dae6d95048b1467e6431698bb9d3a742d680d', TIMESTAMP WITH TIME ZONE '2022-12-16 10:25:03.762815+00', 111, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1489, X'dcb09580ee33d82d5bcbf0eb15904173beb37e2bcac4793fbcb1c12f80549535', TIMESTAMP WITH TIME ZONE '2022-12-16 10:25:16.439862+00', 31, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1490, X'03ba3df097e71aab0441935b674b73bc9669cf32766f380db5f3fdde15e7be0e', TIMESTAMP WITH TIME ZONE '2022-12-16 10:25:31.819448+00', 33, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1491, X'0ec46fb9b72cf9b5982b9f7bdacd8077e49dd3a38aa6d1f59f60945a80f4a2c2', TIMESTAMP WITH TIME ZONE '2022-12-16 10:25:41.447205+00', 111, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1492, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:10.196761+00', 61, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1493, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.352436+00', 168, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1494, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.440271+00', 112, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1495, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.34791+00', 244, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1496, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.481788+00', 141, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1497, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.414476+00', 227, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1498, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.078056+00', 118, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1499, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.089614+00', 110, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1500, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.125786+00', 142, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1501, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.135216+00', 167, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1502, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.203532+00', 145, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1503, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:56.923528+00', 83, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1504, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:56.917924+00', 104, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1505, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:56.91801+00', 118, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1506, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:56.942784+00', 105, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1507, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:56.981878+00', 77, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1508, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:01.519815+00', 100, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1509, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.191894+00', 298, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1510, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.206763+00', 294, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1511, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.191147+00', 308, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1512, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.208765+00', 343, 1, TRUE, 'question', NULL, 1, 13, 2, NULL, 2, FALSE), +(1513, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.30608+00', 271, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1514, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.225417+00', 356, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1515, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.585918+00', 100, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1516, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.610423+00', 145, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1517, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.577896+00', 192, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1518, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.596853+00', 175, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1519, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.628659+00', 156, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1520, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.638164+00', 157, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1521, X'579d5c4178a614dcc29ec1b5d63035e64243347e0ba3eb3bb52f9104cbd3bfa7', TIMESTAMP WITH TIME ZONE '2022-12-16 10:40:51.77129+00', 372, 8, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1522, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.421999+00', 272, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1523, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.448928+00', 359, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1524, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.489642+00', 407, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1525, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.498202+00', 444, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1526, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.590667+00', 472, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1527, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.484806+00', 551, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1528, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.862503+00', 299, 8, FALSE, 'question', NULL, 1, 14, 2, NULL, 2, FALSE), +(1529, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.623763+00', 707, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1530, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.607252+00', 824, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1531, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.607252+00', 828, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(1532, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.887577+00', 848, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1533, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.895336+00', 851, 0, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1534, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.701791+00', 1042, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1535, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.887577+00', 864, 0, TRUE, 'public-dashboard', 'Closed', 1, 10, 2, NULL, 2, NULL), +(1536, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.895336+00', 856, 0, TRUE, 'public-dashboard', 'Closed', 1, 11, 2, NULL, 2, NULL), +(1537, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.701791+00', 1060, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(1538, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.637238+00', 1109, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1539, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.637238+00', 1133, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL), +(1540, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.87287+00', 1156, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1541, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:36.743019+00', 1295, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1542, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:37.206231+00', 876, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1543, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:37.37576+00', 710, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1544, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:37.11723+00', 1241, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 14, 2, NULL, 2, NULL), +(1545, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:37.381288+00', 1009, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1546, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:37.274858+00', 1161, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1547, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:37.652558+00', 928, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1548, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.284191+00', 228, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1549, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.29064+00', 248, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1550, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.283522+00', 367, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1551, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.296285+00', 378, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1552, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.287402+00', 407, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1553, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.483355+00', 241, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1554, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.482371+00', 273, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1555, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.645848+00', 270, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1556, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.784667+00', 255, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1557, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.653522+00', 398, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1558, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.784667+00', 273, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(1559, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.551257+00', 533, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1560, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.470228+00', 662, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1561, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.676222+00', 465, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1562, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.470228+00', 665, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1563, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.720685+00', 426, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(1564, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.596929+00', 636, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1565, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.61829+00', 661, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(1566, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.71937+00', 544, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1567, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.72178+00', 579, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1568, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.881679+00', 481, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1569, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:01.916853+00', 546, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1570, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.046481+00', 487, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1571, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:44.749195+00', 125, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1572, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:44.790427+00', 284, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1573, X'b11c4fcbec90533a99ead57314f937b67ec8885bbfa8eba86b3c06fdcb029cbe', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:44.749424+00', 322, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1574, X'4cb8b6d7cbff10a126a4e3a1d7f9a3437e5e2bbe514b0eba1355ee7f9bfc588a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:44.922914+00', 196, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1575, X'886787bde8b7e14b6e44e3c4f75e7f9613c001432cfcda6c21be34a4f2f3e72c', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:44.926033+00', 328, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1576, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:44.873277+00', 388, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1577, X'1f46c5e3593611053c9273fe950a11c1a4ebb37d2d95c96f944912a6e4495017', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:45.02227+00', 248, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1578, X'4f56d2b73cd531f8dd2d810ed21a352db07790f91475856182b581f4746ea789', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.432042+00', 207, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1579, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.394354+00', 253, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1580, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.374796+00', 275, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1581, X'b099c15f38b4eec458fbea58e9089cb5b995cfd46760caef0507423f1ffde119', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.538099+00', 143, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1582, X'73efa2684a12a5f370c72bb525caddc70d31992a01f0f80b1e1210fd8f47c862', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.346419+00', 344, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1583, X'4c4f8290c5f61b59f74708f28ead147bdf980c03979411952f7cf5fe52b51143', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.652084+00', 70, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1584, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.433134+00', 311, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1585, X'dc7115baf80e3bb28bded35917b495cc88644e456f93e6e7e9c1841c8b133bfb', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.250938+00', 173, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1586, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.321023+00', 178, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1587, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.230817+00', 294, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1588, X'df229f37f717863850e5c863c14e70f3d8590edbff50d5a03f74c5a8f573149d', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.294352+00', 245, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1589, X'a1cdf4a0cecf29c198ca650ecf5c3fd20a3184db129b01ac85a33b4a91d64e46', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.378822+00', 167, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1590, X'da477431496438bc1c5d556093e79734c54ee15cea42a471b6f8c6ebb54a088c', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.444562+00', 228, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1591, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.387501+00', 307, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1592, X'af45a111a319ba356b8c19edab7b3e118ab50138dab3301e53fba62afbb526d6', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.537804+00', 82, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1593, X'8a6efeaad41d11bf8eeaec29176fa2e497874ee85cd84d1a2f1dca82640bd7db', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.566402+00', 75, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1594, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.770795+00', 102, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1595, X'5bd78c6168ce38f580e558ea6291fcaf891574dde74c1f4d1f245d7fa25fb7e6', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.698512+00', 175, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1596, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.706428+00', 176, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1597, X'a3aa392051de9d060e8705d6fc5b9fea8c0dfe2802d0513fa9951a9dcfc30d7b', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.803654+00', 125, 2, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1598, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.757124+00', 192, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1599, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.237455+00', 126, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1600, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.260803+00', 168, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1601, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.340062+00', 170, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1602, X'73efa2684a12a5f370c72bb525caddc70d31992a01f0f80b1e1210fd8f47c862', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.333239+00', 236, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1603, X'4f56d2b73cd531f8dd2d810ed21a352db07790f91475856182b581f4746ea789', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.349044+00', 213, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1604, X'4c4f8290c5f61b59f74708f28ead147bdf980c03979411952f7cf5fe52b51143', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.462431+00', 145, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1605, X'b099c15f38b4eec458fbea58e9089cb5b995cfd46760caef0507423f1ffde119', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.346339+00', 286, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1606, X'd5b0ca7a744ca1f1137b6f28fd9da11b469bc2d8223fa6556430f7cbdcbbc1cf', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.218556+00', 85, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1607, X'b677c6eb630334925b3323e8c7b28f6980666dbb962842e7b8335bb796d11345', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.225289+00', 118, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1608, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.414455+00', 105, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1609, X'775a4dca803769ea069de3df8876fd59dc8119b7217bed62e22300b19b86a0ba', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.452092+00', 220, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1610, X'7127251391977e6a251eb48f3644d718594d16bd868187d77e1dadf7ed4e53c7', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.441692+00', 269, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1611, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.462345+00', 253, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1612, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.442665+00', 285, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1613, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.639039+00', 82, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1614, X'1de132f7130609c44df0774d21ba508556f32dad8ed17b96a260f3fdcace2988', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.650991+00', 126, 2, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1615, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.66956+00', 161, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1616, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.702321+00', 140, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1617, X'42a60b347d5e8c386d622ad560555cf48eddf49251c7b962a88d23cc4217c81c', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.758797+00', 96, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1618, X'036f7e6720f1da3b69b989443de1e086460ca020e43a63fb52280b6c7e30ed01', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.762198+00', 103, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1619, X'c0a0642354209236498d4533e3e5110938b8e1f3555d642fe3f92430342e5e2d', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.749658+00', 178, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1620, X'df229f37f717863850e5c863c14e70f3d8590edbff50d5a03f74c5a8f573149d', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.743442+00', 148, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1621, X'dc7115baf80e3bb28bded35917b495cc88644e456f93e6e7e9c1841c8b133bfb', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.768762+00', 127, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1622, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.748902+00', 172, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1623, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.724004+00', 208, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1624, X'a1cdf4a0cecf29c198ca650ecf5c3fd20a3184db129b01ac85a33b4a91d64e46', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.721588+00', 224, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1625, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.743298+00', 191, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1626, X'da477431496438bc1c5d556093e79734c54ee15cea42a471b6f8c6ebb54a088c', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.952473+00', 42, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1627, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.310414+00', 252, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1628, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.315626+00', 263, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1629, X'4df598d41c7ebed17a29cb3efa301110b661d0440393576b5337e4781e2c0e9d', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.280929+00', 537, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1630, X'231d36e14b3b82cca85c23bc36ed6fa315ab0c3414340fc7d52aa850d11f7433', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.456592+00', 400, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1631, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.295705+00', 597, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1632, X'93e12b38e733f2c333e49d7e81543e79b524d1e8775c5f3f7b775c72e91fac30', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.449399+00', 418, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1633, X'2e0636b791d6868084eb0f2b040bb54668605b73fcc72f1db22a2b5db6ee22ab', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.61432+00', 315, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1634, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.386065+00', 206, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1635, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.421467+00', 182, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1636, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.412369+00', 329, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1637, X'5aeff364478391d4e8f1e8e2b3a4be8718590f50e62c2f0a271ea2a77b27c6bd', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.550196+00', 183, 7, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1638, X'8db0a46f470471cb73c5197bd519a46089b33c89ea23fe011fe0497e22c01448', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.518844+00', 218, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1639, X'e17fa347a6a4e0a27560e068bf691aeb5f5d8517e08992ae4004710786e87694', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.431825+00', 323, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1640, X'5c6ecec8a5225858b4e0b17984e2e07860cc70dca3d1dea71f57614046e7a7de', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.526256+00', 241, 5, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1641, X'd0d4cf7ea04458ea60edc41a6e6eb5546fe945e3190deafb866c2b2653579c72', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.226324+00', 310, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1642, X'dcb1f84e7c817ce0a32272ddd0bbd25a76c39ba7485aee334c0bd70939c75201', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.232653+00', 308, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1643, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.236831+00', 341, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1644, X'fbd937e8f5f565339dca6b19ea29a9e3ac671519216baa5f21db788dff05beab', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.154109+00', 543, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1645, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.319585+00', 379, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1646, X'481465bc092917a06568417c15a2abd812f7b5c359c357e0f9432ca3fd34fcfd', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.31043+00', 385, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1647, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.219169+00', 502, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1648, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.895816+00', 79, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1649, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.819416+00', 153, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1650, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.912828+00', 122, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1651, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.919537+00', 145, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1652, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.932138+00', 147, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1653, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.911398+00', 179, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1654, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.933177+00', 166, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1655, X'3f120f0900a8d11d943bdb897754c639773fc215acdb54fd730c7f6568846178', TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.550308+00', 66, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1656, X'c28ae36d38cbb947883eee7352876ed6c241e3ca944247ddce11fd1f15559950', TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.550323+00', 128, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1657, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.570674+00', 131, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1658, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.718781+00', 89, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1659, X'ce5d3391a9a01803711bffb2601df528bfc2ae5b09c37bc84dbdc73e76e2ca42', TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.767592+00', 132, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1660, X'3ee3deb9b9427d856aed0fc3ff4fe65aa98e7d4c4ef22c31fffd0804e158508b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.767931+00', 132, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1661, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.767586+00', 169, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1662, X'4b45ace4e250f32ef64da8de3ae1ad34160ade89a7f13f972c4627d5bfa156b0', TIMESTAMP WITH TIME ZONE '2022-12-16 11:05:38.589003+00', 55, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(1663, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.851874+00', 122, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1664, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.833359+00', 172, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1665, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.860379+00', 173, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1666, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.931549+00', 135, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1667, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.953619+00', 114, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1668, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.967199+00', 138, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1669, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.978927+00', 153, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1670, X'4b45ace4e250f32ef64da8de3ae1ad34160ade89a7f13f972c4627d5bfa156b0', TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:24.594772+00', 55, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(1671, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:50.982925+00', 45, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1672, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.079089+00', 86, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1673, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.115675+00', 78, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1674, X'ab712bd3096e1c1c47741c36058e3202f01f5fd3931446f94f65346a82ca233a', TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.070178+00', 142, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(1675, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.158746+00', 78, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1676, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.050239+00', 182, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1677, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.14334+00', 96, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1678, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.242235+00', 302, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1679, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:48.848643+00', 880, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1680, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:48.901966+00', 975, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(1681, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:48.901966+00', 960, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1682, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.07417+00', 196, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1683, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.61884+00', 563, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1684, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.550864+00', 919, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1685, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.390361+00', 1153, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1686, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.550864+00', 1050, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL), +(1687, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.390361+00', 1259, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(1688, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.619314+00', 1174, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1689, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.678548+00', 1210, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1690, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.833621+00', 1053, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1691, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.618859+00', 1393, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1692, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.482525+00', 1574, 0, TRUE, 'public-dashboard', 'Closed', 1, 10, 2, NULL, 2, NULL), +(1693, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.482525+00', 1570, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1694, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.458419+00', 2297, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(1695, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.458419+00', 2262, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1696, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:49.345573+00', 2467, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1697, X'784071150b0ca29b0d0851f48238a004bdd697ccbe5322429a393c312c8bb2cf', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.282247+00', 21, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1698, X'643499d70fda7415ab9db3ab16da522d139233c4905e331536281053e2279cb1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.289575+00', 77, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1699, X'a013f4caa6ee5b7b2c946b1222e8d41622574125ecc54a4aa1f94b8af4c3f7d7', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.310123+00', 104, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1700, X'6709707136b7b3a7109102bfd3331226b7418a51b879ffa7228a00377568c574', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.333204+00', 115, 0, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1701, X'028f2f8cac01b6ddd73953582fdea3fae45c5d58fa21ab7b999502d930bd3928', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.48589+00', 101, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1702, X'd45213ea414838f337e40886f53c9a37eb8c96173f0d810f58e591e2f54de28d', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.542302+00', 94, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1703, X'12b52a311cb6f37eb4476b02d0338aa5c12793e7e348d2024a8f7dc1f94c2982', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.537852+00', 155, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1704, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:59.771447+00', 163, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1705, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:59.643839+00', 504, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1706, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:59.723526+00', 468, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1707, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:59.806528+00', 585, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1708, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:59.877081+00', 548, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1709, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:59.875006+00', 547, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1710, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:59.820456+00', 656, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1711, X'8adc88afc54dea8990b9b295c7447ff5c23d424083f6a730fa21cb15cd087d0c', TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:04.934624+00', 204, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1712, X'1b02019b817802dd94b4bcea7013565ac437c9fce7755675ee84f4eb93229804', TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.140239+00', 110, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1713, X'6b11a95fc7cd60b55a36b19e0deba67c3926108fe228d92fa83eef294072e3ed', TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:04.938749+00', 407, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1714, X'71420c8769c9d8a1462f4ceab7bdf39fb5e7c91d245e7e5040ddcb13f48189e8', TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.146972+00', 207, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1715, X'f2dbab6c37aebb2dce01f4626f4e4be742b42f524a533cc75eb2aec61847dd13', TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.279249+00', 154, 3, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1716, X'e72f19e0c2408eef4ddf6c28cb0f95ed4700d4a228209194b1ddfa29877cded7', TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.239183+00', 200, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1717, X'4f5afbebed9d94d51e0133006db00f78d00c7ca7e2c44d461463f8dfacc02b8f', TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.196065+00', 313, 4, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1718, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.553643+00', 7, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1719, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.541437+00', 112, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1720, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.5517+00', 116, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1721, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.661797+00', 59, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1722, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.669182+00', 69, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1723, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.670681+00', 84, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1724, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.691385+00', 79, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1725, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.258989+00', 10, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1726, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.248224+00', 82, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1727, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.268418+00', 90, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1728, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.297886+00', 125, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1729, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.28061+00', 149, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1730, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.324694+00', 146, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1731, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.384796+00', 95, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1732, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.786219+00', 19, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1733, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.778643+00', 71, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1734, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.794444+00', 65, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1735, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.798983+00', 121, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1736, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.801545+00', 146, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1737, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.942994+00', 80, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1738, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.935891+00', 86, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1739, X'70c41924fd7b6ae259a54de0191a7da24bc3e69ca8ba5df2a73d51434bc214c8', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.387117+00', 36, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1740, X'815814990db68d66dbf85ef0daf368bdc0ec3d6c9a2c809bbe38f2962251e5f2', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.373855+00', 182, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1741, X'd5f49248e594c2f5f523ed193923d3bd3a1234bb516345adc80fa8cef3d003e3', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.426474+00', 136, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1742, X'b9ab41b8f07320431ac3e92b792626e664e48db52fab1273a739fa2a86a2f092', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.39029+00', 193, 0, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1743, X'4e5fd70460d96ed339a5a1fb9b6787e8059739c568bb0022bae32c451e31fb4b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.415748+00', 234, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1744, X'a2fbc44f5edc4bbfe783b1fe2000a17f246da2e2c8c7bc9bcbe7f842d7be3514', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.420907+00', 243, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1745, X'e9c494f5c3679d20d48820a11c27acd17c9133ccf8d805ca3df3e16505896914', TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.423038+00', 280, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1746, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.228741+00', 30, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1747, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.21649+00', 104, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1748, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.230015+00', 226, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1749, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.419733+00', 163, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1750, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.210487+00', 382, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1751, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.216752+00', 375, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1752, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.48447+00', 131, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1753, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.235601+00', 26, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1754, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.226091+00', 112, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1755, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.234372+00', 147, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1756, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.392528+00', 140, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1757, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.196077+00', 336, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1758, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.472905+00', 169, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1759, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.240729+00', 405, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1760, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.318461+00', 24, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1761, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.308267+00', 50, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1762, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.30582+00', 47, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1763, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.297319+00', 70, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1764, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.296544+00', 105, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1765, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.411808+00', 48, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1766, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.417158+00', 52, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1767, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.694611+00', 90, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1768, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.747114+00', 82, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1769, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.706131+00', 125, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1770, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.723224+00', 179, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1771, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.695698+00', 211, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1772, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.938274+00', 173, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1773, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.868521+00', 246, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1774, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:34.968789+00', 22, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1775, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.001276+00', 328, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1776, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.007932+00', 308, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1777, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:34.995573+00', 377, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1778, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.029182+00', 402, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1779, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.083677+00', 381, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1780, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.378041+00', 171, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1781, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.391494+00', 169, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1782, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.502944+00', 90, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1783, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.394074+00', 278, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1784, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.501262+00', 185, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1785, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.477049+00', 334, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1786, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.338769+00', 485, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1787, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.601331+00', 262, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1788, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.417196+00', 65, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1789, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.344514+00', 220, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1790, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.398987+00', 188, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1791, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.372925+00', 237, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1792, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.473042+00', 172, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1793, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.402142+00', 246, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1794, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.527938+00', 183, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1795, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.085244+00', 167, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1796, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.250067+00', 43, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1797, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.167057+00', 248, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1798, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.191531+00', 231, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1799, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.28943+00', 152, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1800, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.266182+00', 237, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1801, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.201293+00', 312, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1802, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:40.957448+00', 27, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1803, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.007994+00', 158, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1804, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.014494+00', 155, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1805, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:40.986263+00', 350, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1806, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:40.969092+00', 371, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1807, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.00174+00', 349, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1808, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.008241+00', 362, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1809, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.685941+00', 45, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1810, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.704435+00', 120, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1811, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.731412+00', 139, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1812, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.696525+00', 239, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1813, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.713412+00', 238, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1814, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.775818+00', 202, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1815, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.779517+00', 216, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1816, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.763609+00', 20, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1817, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.81818+00', 68, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1818, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.84581+00', 116, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1819, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.874061+00', 92, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1820, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.880547+00', 94, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1821, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.834242+00', 134, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1822, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.874168+00', 150, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1823, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.487797+00', 88, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1824, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.492165+00', 107, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1825, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.55699+00', 59, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1826, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.519879+00', 127, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1827, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.518637+00', 170, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1828, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.590306+00', 112, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1829, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.56766+00', 146, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1830, X'ef79ce0c759c6cbfbd521f49d0f51e57d429940205ab2c4be447e5994def0e2b', TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:53.789207+00', 54, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1831, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.832034+00', 57, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1832, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.506059+00', 453, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(1833, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.558362+00', 633, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1834, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.558362+00', 636, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(1835, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.769279+00', 444, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(1836, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.671861+00', 587, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(1837, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.49201+00', 763, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(1838, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.671861+00', 583, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1839, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.168086+00', 293, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1840, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.102193+00', 402, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1841, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.214224+00', 300, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1842, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.84246+00', 892, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1843, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:48.88808+00', 1018, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(1844, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.306735+00', 706, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1845, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.243423+00', 848, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1846, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.244633+00', 917, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1847, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:53.717985+00', 8, 0, TRUE, 'public-dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1848, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:53.706788+00', 443, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1849, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:53.812432+00', 381, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1850, X'467c133aa6b1ae99cc825a52c42e2b1f1c89c53ad5818cc47ef91d1376fb09f9', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:53.847093+00', 349, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1851, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:53.851555+00', 351, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1852, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:53.821145+00', 457, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1853, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:53.872476+00', 406, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1854, X'8e5d2a5fef79569cbbd46f23395c5b644fb11d0add1a12917458c8b716d54883', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:11.193897+00', 63, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1855, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.269866+00', 30, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1856, X'6c811c92a76158a9251f933afab7449f55b55e2291534b1d1fd1143d962c1aad', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.288391+00', 71, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1857, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.281601+00', 114, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1858, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.305476+00', 94, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1859, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.305266+00', 123, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1860, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.301455+00', 131, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1861, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.309506+00', 126, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1862, X'8e5d2a5fef79569cbbd46f23395c5b644fb11d0add1a12917458c8b716d54883', TIMESTAMP WITH TIME ZONE '2022-12-16 11:59:02.728328+00', 54, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1863, X'b893df30f743ddd775de9abeac5db3794897bcd20ac00a8d6f0a4c98d1ac7f86', TIMESTAMP WITH TIME ZONE '2022-12-16 11:59:58.480911+00', 245, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671191993, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671191993, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "7n2M5pHpD8sYppHoui4ND8R5AnY=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1864, X'5a349213291452d910c63d51dc3132bd2f5d4d1da2dfacd6a18fa71db46b1889', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:08.445591+00', 51, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671192002, "i" : 14 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671192002, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "WSWXBGACW/qmC9HYd6o58zmVq34=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1865, X'34fbf4af615bc2f591e392e5a661925373a206b77e7eaf7ba9481c4df3d613c6', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:10.795683+00', 96, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671192002, "i" : 14 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671192002, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "WSWXBGACW/qmC9HYd6o58zmVq34=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1866, X'7503e707d3f9cf8d2df75494f6d7987caf6385cabf11a14a618b3f0652daa753', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:14.358477+00', 40, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671192013, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671192013, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "qP0LGRucicitCgZv3M1Mm1o8FA8=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1867, X'4617a06de7cadf124a1098551af2fd52e57f79e7f6ae43dc1bb159445fbb6e56', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:24.794819+00', 33, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1868, X'190a370ec0fbeccc5b19e2a3bff4e12e2aa6c7e4b95a0ed154b30bff8fb24431', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:38.249395+00', 45, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1869, X'd432eb23842d6975b404ac38b613d523475aa0798a8ff8929832bfd3dc9b3b60', TIMESTAMP WITH TIME ZONE '2022-12-16 12:00:56.048395+00', 67, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1870, X'b41dc42dcea1dd9c9c4a781a13b39fa9577367502e4730a4cfdde114b881bf25', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:02.167159+00', 37, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1871, X'7b8fe09b0146513c88d36e1560ada749167bd52735efb36aa7ac40b1b578c900', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:11.919549+00', 33, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671192062, "i" : 14 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671192062, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "8uFhQKnW4WKB+6OjhzzVzzPnL0Y=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1872, X'5282c7bccfc84f99010ad9ff36a58368910353a53fbcafb0234dc2daf4706bb7', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:19.931361+00', 36, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1873, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.272484+00', 23, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1874, X'e71acd03a055ce2c3fc44db0999e892f71d28dc65d0a2cad494f4316256e2bc0', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.255556+00', 221, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1875, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.256765+00', 272, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1876, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.290597+00', 283, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1877, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.260189+00', 323, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1878, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.502783+00', 108, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1879, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.470194+00', 166, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1880, X'dbb3ebe15645be7c19f44c44433dbeb21709266c75a84fc53ff6ebacabd96361', TIMESTAMP WITH TIME ZONE '2022-12-16 12:02:26.556906+00', 37, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1881, X'6bcd782a80624538e82d269be129e0a1aed86a24a22c484b4ed2379b0cd618eb', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:29.710962+00', 42, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1882, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.472263+00', 33, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1883, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.360384+00', 138, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1884, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.457468+00', 179, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1885, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.451716+00', 212, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1886, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.479365+00', 215, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1887, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.463205+00', 263, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1888, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.550771+00', 222, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1889, X'bbfaefeaaa440aeb735b4b2218d366c4a6f60ccca2497b1ffd86ec845b404041', TIMESTAMP WITH TIME ZONE '2022-12-16 12:04:49.190967+00', 91, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1890, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.051519+00', 169, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1891, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.202981+00', 32, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1892, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.123918+00', 123, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1893, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.048098+00', 209, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1894, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.139841+00', 131, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1895, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.184683+00', 124, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1896, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.24641+00', 82, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1897, X'1d5f8be9d3e93004307c9f878b061fa8639ea7c399743a5f63c00da49769bb51', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.275699+00', 63, 37, TRUE, 'question', NULL, 1, 15, 2, NULL, 2, FALSE), +(1898, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.620536+00', 33, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1899, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.624011+00', 128, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1900, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.667979+00', 93, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1901, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.645181+00', 129, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1902, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.646087+00', 127, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1903, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.625034+00', 156, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1904, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.674261+00', 120, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1905, X'1d5f8be9d3e93004307c9f878b061fa8639ea7c399743a5f63c00da49769bb51', TIMESTAMP WITH TIME ZONE '2022-12-16 12:11:23.736968+00', 65, 37, TRUE, 'question', NULL, 1, 15, NULL, NULL, 2, FALSE), +(1906, X'd1f15d1c5bd70b20debe4ddfcc67ee6e95ec4245c00b64a4129132419e8a1a40', TIMESTAMP WITH TIME ZONE '2022-12-16 12:11:59.745939+00', 41, 37, TRUE, 'question', NULL, 1, 15, NULL, NULL, 2, FALSE), +(1907, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.62722+00', 101, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1908, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.69388+00', 161, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1909, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.682475+00', 351, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1910, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.771665+00', 273, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1911, X'd1f15d1c5bd70b20debe4ddfcc67ee6e95ec4245c00b64a4129132419e8a1a40', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.849016+00', 228, 37, TRUE, 'dashboard', NULL, 1, 15, 2, NULL, 2, FALSE), +(1912, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.736452+00', 394, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1913, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.682151+00', 451, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1914, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.855222+00', 374, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1915, X'd1f15d1c5bd70b20debe4ddfcc67ee6e95ec4245c00b64a4129132419e8a1a40', TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:59.786561+00', 35, 37, TRUE, 'question', NULL, 1, 15, NULL, NULL, 2, FALSE), +(1916, X'a14f78f2288e13b6876140e85ac0652f6971caae223dcb951e37927aa7dd1cfa', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:29.360852+00', 52, 37, TRUE, 'question', NULL, 1, 15, NULL, NULL, 2, FALSE), +(1917, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.83411+00', 62, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1918, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.840759+00', 66, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1919, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.829027+00', 85, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1920, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.870624+00', 49, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1921, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.826747+00', 104, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1922, X'a14f78f2288e13b6876140e85ac0652f6971caae223dcb951e37927aa7dd1cfa', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.832961+00', 120, 37, TRUE, 'dashboard', NULL, 1, 15, 2, NULL, 2, FALSE), +(1923, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.881928+00', 90, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1924, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.914024+00', 71, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1925, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.800907+00', 34, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1926, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.753808+00', 110, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1927, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.800039+00', 118, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1928, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.775862+00', 182, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1929, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.798768+00', 168, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1930, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.776834+00', 197, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1931, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.800842+00', 330, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1932, X'a14f78f2288e13b6876140e85ac0652f6971caae223dcb951e37927aa7dd1cfa', TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:50.25984+00', 34, 37, TRUE, 'question', NULL, 1, 15, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1933, X'bc5235e491b1cecd4792b10b84cc5a8f6b168972e7a0b8df5f47c045fa424bde', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:26.748411+00', 36, 37, TRUE, 'question', NULL, 1, 15, NULL, NULL, 2, FALSE), +(1934, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.492061+00', 53, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1935, X'bc5235e491b1cecd4792b10b84cc5a8f6b168972e7a0b8df5f47c045fa424bde', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.501664+00', 104, 37, TRUE, 'dashboard', NULL, 1, 15, 2, NULL, 2, FALSE), +(1936, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.514017+00', 79, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1937, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.544965+00', 139, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1938, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.603073+00', 86, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1939, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.484448+00', 218, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1940, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.510125+00', 203, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1941, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.603789+00', 134, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1942, X'bc5235e491b1cecd4792b10b84cc5a8f6b168972e7a0b8df5f47c045fa424bde', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.681639+00', 108, 37, TRUE, 'dashboard', NULL, 1, 15, 2, NULL, 2, FALSE), +(1943, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.594571+00', 216, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1944, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.739648+00', 71, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1945, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.539283+00', 315, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1946, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.69978+00', 177, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1947, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.724771+00', 161, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1948, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.732428+00', 173, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1949, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.741745+00', 171, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1950, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.102378+00', 11, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1951, X'bc5235e491b1cecd4792b10b84cc5a8f6b168972e7a0b8df5f47c045fa424bde', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.122222+00', 106, 37, TRUE, 'dashboard', NULL, 1, 15, 2, NULL, 2, FALSE), +(1952, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.162881+00', 70, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1953, X'9591e1352e8ef0c8aa273a87173d0a29b0828959111c9c50f16a53bbc6632c2e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.185244+00', 74, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1954, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.142308+00', 141, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1955, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.204013+00', 83, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(1956, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.190566+00', 119, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1957, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.190343+00', 125, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1958, X'7718b5f563e81736f2cec0b247011e3aa570810040dc33a39ae094bce7a49bf5', TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:59.336757+00', 69, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1959, X'da299c0c2cd36f1ea21e313d6887661d8a2414b3ddc84a0d0df0c742b09f125d', TIMESTAMP WITH TIME ZONE '2022-12-16 12:18:45.212667+00', 64, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(1960, X'ac3c1e037c11b18881386e3a2011be054231041d9a954ece91daff7005537a69', TIMESTAMP WITH TIME ZONE '2022-12-16 12:18:51.394789+00', 80, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1961, X'17579285869eada38ded36a1e18f9e48729d9f1ef3f9b7d492f46662ff51baef', TIMESTAMP WITH TIME ZONE '2022-12-16 12:24:34.896325+00', 93, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1962, X'9dc04ca4fcc87ce6f431fefb2835450f9715173d2353c06559ffa969fee183df', TIMESTAMP WITH TIME ZONE '2022-12-16 12:24:59.727017+00', 72, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1963, X'5437ef8dfb80997343c4b190a5036e4dc130e5707a57a171a5720eacad7ab906', TIMESTAMP WITH TIME ZONE '2022-12-16 12:25:08.234765+00', 37, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1964, X'053ea9696dd5f784c999279ef6d7b3d3eccddf354509e841219842f650670f29', TIMESTAMP WITH TIME ZONE '2022-12-16 12:25:28.676582+00', 64, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1965, X'd82c5c401580767b3ceca8063fffba5d85e604d97c8ff494810292f2bc32dc6c', TIMESTAMP WITH TIME ZONE '2022-12-16 12:25:32.419465+00', 39, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1966, X'8088d6cac70fa624930c5c894f73133196b1cbcb54c1a8401f5fdea937c35621', TIMESTAMP WITH TIME ZONE '2022-12-16 12:25:42.269915+00', 35, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1967, X'7b6b6190a22228a208026ffe08b0fe4fbdaf6e31a5337086c76f83bb571b4121', TIMESTAMP WITH TIME ZONE '2022-12-16 12:25:49.926391+00', 40, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1968, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:09.927699+00', 96, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(1969, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:09.923455+00', 105, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(1970, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:09.921099+00', 127, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(1971, X'4d40cfdecc7f1ba704956c84519dcbbf7b9fc6b6427a3bd28355281921c01bd1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:10.060379+00', 21, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(1972, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:09.972448+00', 135, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1973, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:09.960856+00', 211, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(1974, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:09.974632+00', 241, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(1975, X'26ae1a5505c71482293ed35166be33f1986a9e3c85d46cabe7862734a05eebcc', TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:59.079306+00', 9, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 11, NULL, NULL, 2, NULL), +(1976, X'c0f43db3638bc1b15f9a41cb3b2576c486896a10bec03d98eb6199426cf2b793', TIMESTAMP WITH TIME ZONE '2022-12-16 12:28:24.86419+00', 34, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 1. Character: '';''.', 1, NULL, NULL, NULL, 2, NULL), +(1977, X'75bb09319cb5677bfeacc657e0820cd47153d217cc7c220b99d444dd67d7fab2', TIMESTAMP WITH TIME ZONE '2022-12-16 12:28:36.790077+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(1978, X'e8e2b672aab6e9e70b84e7fb7dacb9872869ce1cedea1f2de9367340d98653c4', TIMESTAMP WITH TIME ZONE '2022-12-16 12:29:04.193397+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(1979, X'e8e2b672aab6e9e70b84e7fb7dacb9872869ce1cedea1f2de9367340d98653c4', TIMESTAMP WITH TIME ZONE '2022-12-16 12:29:27.220064+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(1980, X'30e1550fecfb10f2d6860c5d98c16142bf74579989875ad496ff6cced1a5b381', TIMESTAMP WITH TIME ZONE '2022-12-16 12:29:43.902183+00', 4, 0, TRUE, 'ad-hoc', 'Index -1 out of bounds for length 0', 1, NULL, NULL, NULL, 2, NULL), +(1981, X'2b16b0d529cc1dd4a90cd16494b1581b918f1822b2dc3efe19e275c59cab57ba', TIMESTAMP WITH TIME ZONE '2022-12-16 12:29:50.690384+00', 92, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1982, X'2989f4049bed9f291d230fddd7568a6259aa23016d57f86476fc2be719550354', TIMESTAMP WITH TIME ZONE '2022-12-16 12:29:52.664347+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(1983, X'2989f4049bed9f291d230fddd7568a6259aa23016d57f86476fc2be719550354', TIMESTAMP WITH TIME ZONE '2022-12-16 12:29:56.326185+00', 5, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(1984, X'2b16b0d529cc1dd4a90cd16494b1581b918f1822b2dc3efe19e275c59cab57ba', TIMESTAMP WITH TIME ZONE '2022-12-16 12:29:58.698556+00', 46, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1985, X'1e15d46a6589f7a03e28725af424396ce898cd85c39b1dc3e741c0183700b76e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:30:18.005744+00', 34, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1986, X'7f83f3e757720ceacf8a4ff07f062274f52104a673b39b7b663cae583187f90e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:30:20.448554+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(1987, X'1e15d46a6589f7a03e28725af424396ce898cd85c39b1dc3e741c0183700b76e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:30:22.865686+00', 34, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1988, X'51bab8df825b05236cc8d104ff8f69da8e5134325de3f24cfb00ad165a23f9c0', TIMESTAMP WITH TIME ZONE '2022-12-16 12:30:38.58571+00', 54, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1989, X'f949deffec7e51236c24a0eaa0675861965b43dddaa4fef5547625a3f2d62b3f', TIMESTAMP WITH TIME ZONE '2022-12-16 12:30:40.292895+00', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(1990, X'1b983f7e8f5f1279e665dab76c69d73695c4990155367c01a9b85e3d95632f7c', TIMESTAMP WITH TIME ZONE '2022-12-16 12:30:49.438814+00', 34, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(1991, X'87ca0db86eb79038aa6b8c750ca1408a362ad06ff06ac43a6fc0413a5ae620bc', TIMESTAMP WITH TIME ZONE '2022-12-16 12:30:53.827121+00', 34, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1992, X'390c807444dc3ea34d457e09c17395eec0433b0f2cfffa3efd7f6e54243a01d6', TIMESTAMP WITH TIME ZONE '2022-12-16 12:31:25.185419+00', 75, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1993, X'e4d1408c5fce0a627c572e7d7139492303c6086ea76f4100a0cd679359a192a8', TIMESTAMP WITH TIME ZONE '2022-12-16 12:31:40.556983+00', 40, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1994, X'12d7791a4d4dc0aa817c57688545e44d6384ce66b03dce25640c8fb174e6f39c', TIMESTAMP WITH TIME ZONE '2022-12-16 12:31:48.959289+00', 106, 0, TRUE, 'ad-hoc', 'Command failed with error 15974 (Location15974): ''Illegal key in $sort specification: category: [ "Total" ]'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671193903, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Illegal key in $sort specification: category: [ \"Total\" ]", "code" : 15974, "codeName" : "Location15974", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671193903, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "PHoPBw8SMDidCJqXyJR7JaH2tMk=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(1995, X'35abe1d49151342f3455802ce23bad0da19d18da4f17a6e9ae5c995d5f5e2953', TIMESTAMP WITH TIME ZONE '2022-12-16 12:31:52.02923+00', 4, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(1996, X'390c807444dc3ea34d457e09c17395eec0433b0f2cfffa3efd7f6e54243a01d6', TIMESTAMP WITH TIME ZONE '2022-12-16 12:31:54.830597+00', 54, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(1997, X'4b7927e0a1a8fd39c62f95620b6f657affd004f24e7126f926f90bf47b056684', TIMESTAMP WITH TIME ZONE '2022-12-16 12:36:31.427035+00', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(1998, X'09729c45efdf09c3270204f985f0096d36a4257e6a25ab8178730240fa90e9d0', TIMESTAMP WITH TIME ZONE '2022-12-16 12:36:36.13437+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(1999, X'e3347919066a0dc7c2bbe6bccb4481f691e80ca40e23bd60328d37a43e10290f', TIMESTAMP WITH TIME ZONE '2022-12-16 12:37:02.134164+00', 82, 0, TRUE, 'ad-hoc', 'Command failed with error 40324 (Location40324): ''Unrecognized pipeline stage name: ''order'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671194220, "i" : 4 } }, "ok" : 0.0, "errmsg" : "Unrecognized pipeline stage name: ''order''", "code" : 40324, "codeName" : "Location40324", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671194220, "i" : 4 } }, "signature" : { "hash" : { "$binary" : "skiMHkg7YbtsR4VuaW+hs0U9CTs=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(2000, X'a94c67f76aab6468821c388621fb20e7849659ecf80cde020fd1aad001d73cc5', TIMESTAMP WITH TIME ZONE '2022-12-16 12:37:16.28262+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(2001, X'420b78389d406de831a45d2e64618362da9e5651e27f0a3ea7af44d3a41d0589', TIMESTAMP WITH TIME ZONE '2022-12-16 12:37:25.806252+00', 76, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2002, X'8fa30a237d27aa3a9bfcc667584cb3182909635514fa967d80ddc4c083c57fe1', TIMESTAMP WITH TIME ZONE '2022-12-16 12:37:43.588277+00', 139, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2003, X'd7c5d145deb3b7e20001982890025d35d9ff9f216d5290644ba551d8042e7a9a', TIMESTAMP WITH TIME ZONE '2022-12-16 12:38:20.279395+00', 5, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 1. Character: '';''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2004, X'd517d2e5a0e23a5e368a778d8fc72f9c0223d60b4b5ca9871ba584456d364c68', TIMESTAMP WITH TIME ZONE '2022-12-16 12:38:23.90667+00', 32, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2005, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:43.932186+00', 174, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2006, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:43.991496+00', 190, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2007, X'326b1ebdc31d9d9354682b3d32abbf107b4d07e4b759ae716b95872948a6482e', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.18986+00', 56, 0, TRUE, 'dashboard', 'JSON reader was expecting a value but found ''(''.', 1, 11, 2, NULL, 2, NULL), +(2008, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.069599+00', 183, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2009, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.053021+00', 220, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2010, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.016142+00', 390, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2011, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.045016+00', 418, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2012, X'ab506f02d8ee32b8b8140cdca244865701705eece971da79b6e9254c6e182e88', TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:53.950352+00', 6, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 11, NULL, NULL, 2, NULL), +(2013, X'ab506f02d8ee32b8b8140cdca244865701705eece971da79b6e9254c6e182e88', TIMESTAMP WITH TIME ZONE '2022-12-16 12:40:12.91892+00', 7, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 11, NULL, NULL, 2, NULL), +(2014, X'792014f2f28f8ced1c69c0a2c7f9a67e9bc04ee247f1562969f5eda3e1a51280', TIMESTAMP WITH TIME ZONE '2022-12-16 12:40:28.594626+00', 70, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2015, X'9af471321501e22fdb52fe0469c6bc2a71bf5f8d3ca0d88c0be937837efb6c16', TIMESTAMP WITH TIME ZONE '2022-12-16 12:41:52.617192+00', 36, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2016, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.59814+00', 145, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2017, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.62766+00', 186, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2018, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.596304+00', 220, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2019, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.710078+00', 101, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2020, X'1b34e8fb7916b099701a4e7be44e4d102fdda7a7d53d90bd2bd7072c58a9e5c9', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.636104+00', 207, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2021, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.73982+00', 144, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2022, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.736345+00', 148, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2023, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.408065+00', 122, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2024, X'1b34e8fb7916b099701a4e7be44e4d102fdda7a7d53d90bd2bd7072c58a9e5c9', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.467393+00', 101, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2025, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.42702+00', 150, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2026, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.486055+00', 101, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2027, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.4667+00', 153, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2028, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.422561+00', 225, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2029, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.42636+00', 239, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2030, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.846217+00', 131, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2031, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.84191+00', 152, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2032, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.846217+00', 152, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 2, NULL), +(2033, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.84191+00', 189, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(2034, X'1b34e8fb7916b099701a4e7be44e4d102fdda7a7d53d90bd2bd7072c58a9e5c9', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.847112+00', 163, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(2035, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.831735+00', 232, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 10, 2, NULL, 2, NULL), +(2036, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.831735+00', 230, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2037, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.917295+00', 158, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(2038, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.909414+00', 166, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(2039, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.956015+00', 226, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2040, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.906159+00', 276, 1, TRUE, 'public-dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2041, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.971538+00', 215, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2042, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.965267+00', 251, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(2043, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.075156+00', 156, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2044, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.018322+00', 231, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2045, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.97925+00', 276, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2046, X'1b34e8fb7916b099701a4e7be44e4d102fdda7a7d53d90bd2bd7072c58a9e5c9', TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.078222+00', 209, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2047, X'924b67dc528d1a18eb15d538b2ef4e4a43912644d20286438be78994814b6405', TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:03.224033+00', 6, 0, TRUE, 'question', STRINGDECODE('Don''t know how to parse date param ''Birth'' \u2014 invalid format'), 1, 11, NULL, NULL, 2, NULL), +(2048, X'49615049c0a873ac045fea418bcd4ad2c16abe214310aef57a1a5f68726b7b19', TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:43.249126+00', 61, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2049, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.155175+00', 73, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2050, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.136495+00', 107, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2051, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.162506+00', 114, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2052, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.170417+00', 131, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2053, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.208519+00', 132, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2054, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.133336+00', 213, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2055, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.152351+00', 227, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2056, X'4d48696efc2b03b836530951894430638903fa02246849e80c174dbe0a06159d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:26.030944+00', 85, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2057, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:28.92255+00', 143, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2058, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:28.963744+00', 178, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2059, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:28.981086+00', 193, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2060, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.005277+00', 216, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2061, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:28.985298+00', 253, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2062, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.088509+00', 216, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2063, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.002195+00', 331, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2064, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.281367+00', 125, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2065, X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.314328+00', 104, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2066, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.313754+00', 113, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2067, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.293548+00', 158, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2068, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.329373+00', 130, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2069, X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.2685+00', 224, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2070, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.323657+00', 174, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2071, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.835631+00', 68, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2072, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.831172+00', 84, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2073, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.903017+00', 85, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2074, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.890926+00', 109, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2075, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.922926+00', 78, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2076, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.880085+00', 134, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2077, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.969304+00', 60, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2078, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.208678+00', 150, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2079, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.19457+00', 222, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2080, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.210122+00', 247, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2081, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.202738+00', 255, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2082, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.320175+00', 157, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2083, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.307634+00', 181, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2084, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.224672+00', 277, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2085, X'28130619d2bcb051d81d7dd3c26e50605f4c693d02ed5dcf6f7c487c55ea396c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:33.397303+00', 74, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(2086, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:05:32.032635+00', 40, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(2087, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-16 13:05:56.977062+00', 56, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2088, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.796116+00', 177, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2089, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.77179+00', 267, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2090, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.797386+00', 349, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2091, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.78075+00', 387, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2092, X'5a4be00636d0f18cea80304dba0184a5100422ea6b40f6b65a32704d6e675959', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.8932+00', 322, 1, TRUE, 'dashboard', NULL, 1, 10, 2, NULL, 2, FALSE), +(2093, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.888426+00', 327, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2094, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.972072+00', 251, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2095, X'2f7559cabe60c505bd889605240729300fce5b1c37c82b56b89aff638f0b6607', TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.994165+00', 229, 1, FALSE, 'question', NULL, 1, 16, 2, NULL, 2, FALSE), +(2096, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.47752+00', 116, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2097, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.524999+00', 128, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2098, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.552823+00', 119, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2099, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.57416+00', 112, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2100, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.567593+00', 146, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2101, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.549103+00', 212, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2102, X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.583226+00', 71, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2103, X'5f64ba5d1ca6d00f73096cecc895774af8e07c5c0864b395b3c7d2ce8d1fd6ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.588985+00', 183, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2104, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.639347+00', 183, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2105, X'1884db9de2a9513d4938f5ed981edfb6f095f93d58ff33dcea0c51f274145283', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.667616+00', 171, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2106, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.668598+00', 198, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2107, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.663622+00', 229, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2108, X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.639345+00', 259, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2109, X'7fe06268877159752caf9b0d260c0619f6d256328086f4b96c5da5d068295cee', TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:33.7919+00', 122, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(2110, X'103519ab4a751262d71fd78a0da321ae407506dbbb11b164d58885065c7149f5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:03.370543+00', 36, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(2111, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.853487+00', 64, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2112, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.844808+00', 88, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2113, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.857076+00', 77, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2114, X'c66be3c7a97c04719080828a9a615fded0e73665f890402187a3b71da510e868', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.852442+00', 94, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2115, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.881463+00', 85, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2116, X'49987e900ee97102e772924b7b51b871ef5292f4bcfc123baf8f256014f9106e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.873452+00', 98, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2117, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.862128+00', 125, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2118, X'103519ab4a751262d71fd78a0da321ae407506dbbb11b164d58885065c7149f5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:20.489793+00', 54, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(2119, X'c66be3c7a97c04719080828a9a615fded0e73665f890402187a3b71da510e868', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.583987+00', 103, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2120, X'49987e900ee97102e772924b7b51b871ef5292f4bcfc123baf8f256014f9106e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.636484+00', 84, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2121, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.628151+00', 132, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2122, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.637027+00', 154, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2123, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.630526+00', 166, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2124, X'a91446b56c1553cd99d13675962fd93446dedf1c81753b64742686395c6c82ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.617128+00', 180, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2125, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.67025+00', 154, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2126, X'49615049c0a873ac045fea418bcd4ad2c16abe214310aef57a1a5f68726b7b19', TIMESTAMP WITH TIME ZONE '2022-12-16 13:09:18.337347+00', 88, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2127, X'fe0b852e11c33a59799e533d04ea32441e0e68e5cecd17e7320f6386eee9e866', TIMESTAMP WITH TIME ZONE '2022-12-16 13:09:55.589263+00', 38, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2128, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:01.989559+00', 109, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2129, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.019422+00', 152, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2130, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.013454+00', 171, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2131, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.038822+00', 196, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2132, X'c66be3c7a97c04719080828a9a615fded0e73665f890402187a3b71da510e868', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.010611+00', 265, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2133, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.016091+00', 292, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2134, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.01054+00', 299, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2135, X'd889f61c0ae8c3de7ca8297478e201f72b880121c3b0c0d891294be0cf1d394b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:06.652807+00', 89, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2136, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:32.791654+00', 296, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2137, X'4186e805bfd89d602c01fb9ab20c060912b1a06c908018d30db338ab57e28109', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:32.767653+00', 347, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2138, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:32.76675+00', 368, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2139, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:32.988938+00', 204, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2140, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:32.99047+00', 218, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2141, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.037756+00', 208, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2142, X'43070c31e703ed67e9361592a1290226cb29232f8aaa0a2219403c02311c6ba9', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.059952+00', 192, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2143, X'4b45ace4e250f32ef64da8de3ae1ad34160ade89a7f13f972c4627d5bfa156b0', TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:38.560501+00', 41, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(2144, X'801481aa4861a73bb3eaeea8dfdda8eab880d9e2b8554778aefec3711cf40b81', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:02.539398+00', 42, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(2145, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:06.939568+00', 109, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2146, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:06.90492+00', 260, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2147, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.01177+00', 216, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2148, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.009017+00', 241, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2149, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:06.970719+00', 292, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2150, X'43070c31e703ed67e9361592a1290226cb29232f8aaa0a2219403c02311c6ba9', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:06.947096+00', 326, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2151, X'08b60acae8d6b2387b57051e1fa07a36baec7a4d4a22929b7b069eba08849ead', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.025728+00', 264, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2152, X'801481aa4861a73bb3eaeea8dfdda8eab880d9e2b8554778aefec3711cf40b81', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:09.851428+00', 80, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(2153, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.830992+00', 173, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2154, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.903619+00', 131, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2155, X'08b60acae8d6b2387b57051e1fa07a36baec7a4d4a22929b7b069eba08849ead', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.887907+00', 175, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2156, X'ae0011068535fb5a8271ef5555cde2315571cbcce1a74ecd29b697e1256b2768', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.925589+00', 134, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2157, X'43070c31e703ed67e9361592a1290226cb29232f8aaa0a2219403c02311c6ba9', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.846536+00', 239, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2158, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.942503+00', 150, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2159, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.853036+00', 263, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2160, X'e20477722ff15200fd23ae9ce9d30831347940a35045cba07726b6a6f78e086d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:30.178072+00', 79, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(2161, X'd02b9f785893959a4a29fc85222d41279dc043b7f5c50d86ca4e14568f6747bb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:59.433386+00', 41, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(2162, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.468632+00', 119, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2163, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.620971+00', 151, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2164, X'43070c31e703ed67e9361592a1290226cb29232f8aaa0a2219403c02311c6ba9', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.499457+00', 280, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2165, X'e7fb0376bf46c7d47f699fea241050b5aaf4cb7f0bcd4e50d281a03e776bbef4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.584181+00', 235, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2166, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.462127+00', 358, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2167, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.607246+00', 218, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2168, X'164e06e3d27617e0b719bead83493007b5a4bd1a95ef2ca8f946969eda8203ee', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.635258+00', 200, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2169, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.862427+00', 97, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2170, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.791603+00', 215, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2171, X'08b60acae8d6b2387b57051e1fa07a36baec7a4d4a22929b7b069eba08849ead', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.798925+00', 241, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2172, X'164e06e3d27617e0b719bead83493007b5a4bd1a95ef2ca8f946969eda8203ee', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.789462+00', 251, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2173, X'49987e900ee97102e772924b7b51b871ef5292f4bcfc123baf8f256014f9106e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.909731+00', 182, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2174, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.883705+00', 219, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2175, X'22e0797dbbf5e58d293234c39b6149dfb8bd8b367196a1e3478f99a39b67dcc2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.993306+00', 109, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2176, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.79651+00', 189, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2177, X'c4d784465b04a7480658c8b4bb97b06e16639f8681934196b19ceef61d7c0d6f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.810586+00', 200, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2178, X'a1e22038a2759f285e518b0e8f5e025fe02030aa5986f77946f54334b638c657', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.862065+00', 166, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2179, X'9699faaf07d2d5c390741f3c293759b9bc2c9b5cdcc0a832a9e2fa310785348b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.851532+00', 225, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2180, X'22e0797dbbf5e58d293234c39b6149dfb8bd8b367196a1e3478f99a39b67dcc2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.758993+00', 328, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2181, X'd236c7d63c9a52c92382171ae5220ed4a6f0684c5b190f649040bca1238f677d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.947913+00', 140, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2182, X'652c1641b9292c3c7e0ffe2dcb7834e61850f5854c4ba5c7954dcdb155fd4ced', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.944008+00', 182, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2183, X'22e0797dbbf5e58d293234c39b6149dfb8bd8b367196a1e3478f99a39b67dcc2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:42.297689+00', 42, 0, FALSE, 'question', NULL, 1, 16, NULL, NULL, 2, FALSE), +(2184, X'd236c7d63c9a52c92382171ae5220ed4a6f0684c5b190f649040bca1238f677d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.11139+00', 120, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2185, X'c4d784465b04a7480658c8b4bb97b06e16639f8681934196b19ceef61d7c0d6f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.150497+00', 105, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2186, X'a1e22038a2759f285e518b0e8f5e025fe02030aa5986f77946f54334b638c657', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.157722+00', 151, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2187, X'9699faaf07d2d5c390741f3c293759b9bc2c9b5cdcc0a832a9e2fa310785348b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.150497+00', 173, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2188, X'652c1641b9292c3c7e0ffe2dcb7834e61850f5854c4ba5c7954dcdb155fd4ced', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.150563+00', 203, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2189, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.087083+00', 295, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2190, X'22e0797dbbf5e58d293234c39b6149dfb8bd8b367196a1e3478f99a39b67dcc2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.150497+00', 240, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2191, X'22e0797dbbf5e58d293234c39b6149dfb8bd8b367196a1e3478f99a39b67dcc2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:01.5901+00', 41, 0, FALSE, 'question', NULL, 1, 16, NULL, NULL, 2, FALSE), +(2192, X'9c5394727372bf94924e9f2072c51815dc7bbba3fea36aca1d76b1d9de0abae5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:30.51958+00', 50, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2193, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.236724+00', 138, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2194, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.189288+00', 266, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2195, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.238294+00', 243, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2196, X'e7fb0376bf46c7d47f699fea241050b5aaf4cb7f0bcd4e50d281a03e776bbef4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.234068+00', 283, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2197, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.31762+00', 211, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2198, X'eb9dea3e6e2d6102918a6804daa6b550b9e6abe525dfb7155d492fa80506eb00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.271527+00', 271, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2199, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.283305+00', 261, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2200, X'08b60acae8d6b2387b57051e1fa07a36baec7a4d4a22929b7b069eba08849ead', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:42.868583+00', 177, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2201, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:42.912839+00', 178, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2202, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:42.823199+00', 323, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2203, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:42.915882+00', 238, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2204, X'164e06e3d27617e0b719bead83493007b5a4bd1a95ef2ca8f946969eda8203ee', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.063432+00', 154, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2205, X'49987e900ee97102e772924b7b51b871ef5292f4bcfc123baf8f256014f9106e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.005678+00', 256, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2206, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.000724+00', 322, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2207, X'69661ba562ae3a21de1e6a7d630e3358812cb9f6ccd6251e2cb4a9b58ec24632', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.541553+00', 171, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2208, X'a4c997e6fd85163dc711935614a64070509fdc8a645b8752f7b07a9c71dadc9a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.52053+00', 253, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2209, X'dee94a6555a7cfeca4eaf6cbdcde18da5f2b54ab5893b2c40106a00ed0a4a3b1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.568231+00', 205, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2210, X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.548732+00', 265, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2211, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.594755+00', 257, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2212, X'e7011381b98c2203574a5b7361dda1d27c4de1c1c5db998f500c3189af60d665', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.68429+00', 210, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2213, X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.566172+00', 341, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2214, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.227953+00', 138, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2215, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.230443+00', 197, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2216, X'e7fb0376bf46c7d47f699fea241050b5aaf4cb7f0bcd4e50d281a03e776bbef4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.265806+00', 198, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2217, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.258216+00', 210, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2218, X'eb9dea3e6e2d6102918a6804daa6b550b9e6abe525dfb7155d492fa80506eb00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.264622+00', 214, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2219, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.268129+00', 240, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2220, X'b6752591527ada3b6b6189c02d4f6ac5f34b292d061cd69e70b9ede691c8b5f8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.266014+00', 260, 1, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2221, X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.397083+00', 76, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2222, X'e7011381b98c2203574a5b7361dda1d27c4de1c1c5db998f500c3189af60d665', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.373907+00', 170, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2223, X'12d01d25f0d0c3f2508a718b3885184f558613cc8b4a49f9f1563f08928ed62d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.43453+00', 235, 1, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2224, X'a4c997e6fd85163dc711935614a64070509fdc8a645b8752f7b07a9c71dadc9a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.440415+00', 268, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2225, X'69661ba562ae3a21de1e6a7d630e3358812cb9f6ccd6251e2cb4a9b58ec24632', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.426738+00', 301, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2226, X'dee94a6555a7cfeca4eaf6cbdcde18da5f2b54ab5893b2c40106a00ed0a4a3b1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.49171+00', 276, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2227, X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.48281+00', 316, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2228, X'e7fb0376bf46c7d47f699fea241050b5aaf4cb7f0bcd4e50d281a03e776bbef4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.395983+00', 59, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2229, X'eb9dea3e6e2d6102918a6804daa6b550b9e6abe525dfb7155d492fa80506eb00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.387884+00', 90, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2230, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.400341+00', 90, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2231, X'b6752591527ada3b6b6189c02d4f6ac5f34b292d061cd69e70b9ede691c8b5f8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.38991+00', 103, 1, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2232, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.383664+00', 117, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2233, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.418379+00', 92, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2234, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.418969+00', 93, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2235, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.506103+00', 73, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2236, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.498341+00', 87, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2237, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.535802+00', 119, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2238, X'08b60acae8d6b2387b57051e1fa07a36baec7a4d4a22929b7b069eba08849ead', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.619078+00', 66, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2239, X'49987e900ee97102e772924b7b51b871ef5292f4bcfc123baf8f256014f9106e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.500188+00', 229, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2240, X'164e06e3d27617e0b719bead83493007b5a4bd1a95ef2ca8f946969eda8203ee', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.630563+00', 112, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2241, X'ed502ad0e1b106b942bbe751fa6f70d3bec2ff616260999d7120e3c7f3681feb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.611907+00', 152, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2242, X'fe0b852e11c33a59799e533d04ea32441e0e68e5cecd17e7320f6386eee9e866', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:22.344539+00', 61, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2243, X'603eb7cb675eaff0eda790d876c8459ea56e21e18b2a73c8461192bd7a780272', TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:55.331424+00', 93, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2244, X'eb9dea3e6e2d6102918a6804daa6b550b9e6abe525dfb7155d492fa80506eb00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:11.986216+00', 53, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2245, X'0eb7a79f189620a780be39d94ddfec4dc78ac2f39357b70d75949ca0e8a6baba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.007586+00', 112, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2246, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.027499+00', 123, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2247, X'e7fb0376bf46c7d47f699fea241050b5aaf4cb7f0bcd4e50d281a03e776bbef4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:11.981232+00', 173, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2248, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.042268+00', 143, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2249, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:11.987257+00', 220, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2250, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.088652+00', 138, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2251, X'164e06e3d27617e0b719bead83493007b5a4bd1a95ef2ca8f946969eda8203ee', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.374916+00', 207, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2252, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.416107+00', 216, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2253, X'49987e900ee97102e772924b7b51b871ef5292f4bcfc123baf8f256014f9106e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.410123+00', 228, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2254, X'08b60acae8d6b2387b57051e1fa07a36baec7a4d4a22929b7b069eba08849ead', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.452575+00', 203, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2255, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.424971+00', 308, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2256, X'450d13868bf9c1ce52d50ec0d78d4129dfc57206e8bed57f6338550e39ddd9e6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.425443+00', 309, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2257, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.426697+00', 320, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2258, X'9ff1f12c7ddc626ce892cb828586e93a50d9cfc463e3d59d8958024a630683ea', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.253945+00', 75, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2259, X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.304501+00', 80, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2260, X'e7011381b98c2203574a5b7361dda1d27c4de1c1c5db998f500c3189af60d665', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.286985+00', 135, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2261, X'a4c997e6fd85163dc711935614a64070509fdc8a645b8752f7b07a9c71dadc9a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.304043+00', 151, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2262, X'dee94a6555a7cfeca4eaf6cbdcde18da5f2b54ab5893b2c40106a00ed0a4a3b1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.267864+00', 244, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2263, X'69661ba562ae3a21de1e6a7d630e3358812cb9f6ccd6251e2cb4a9b58ec24632', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.437888+00', 79, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2264, X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.275638+00', 278, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2265, X'77d50d8011de090c014ba2f0bad20d9cde6253eb77a424231a95d16cc05ca351', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:19.929204+00', 43, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(2266, X'05eefe2ca94ef7d2c9df93fb616ee8bf765a3a8ccb52e790e06480757ca7c0fc', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:39.699845+00', 38, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2267, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.31336+00', 79, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2268, X'eb9dea3e6e2d6102918a6804daa6b550b9e6abe525dfb7155d492fa80506eb00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.368977+00', 68, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2269, X'e7fb0376bf46c7d47f699fea241050b5aaf4cb7f0bcd4e50d281a03e776bbef4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.338917+00', 115, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2270, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.31153+00', 153, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2271, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.362654+00', 113, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2272, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.409259+00', 108, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2273, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.371489+00', 160, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2274, X'a4c997e6fd85163dc711935614a64070509fdc8a645b8752f7b07a9c71dadc9a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:18.960627+00', 140, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2275, X'9ff1f12c7ddc626ce892cb828586e93a50d9cfc463e3d59d8958024a630683ea', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:18.951939+00', 193, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2276, X'dee94a6555a7cfeca4eaf6cbdcde18da5f2b54ab5893b2c40106a00ed0a4a3b1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:18.983754+00', 179, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2277, X'1f697a33196817c987e4d3641dfd469d276123469aaf382b26657ee7590fa8cc', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.025502+00', 159, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2278, X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.005075+00', 207, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2279, X'e7011381b98c2203574a5b7361dda1d27c4de1c1c5db998f500c3189af60d665', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.014941+00', 222, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2280, X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.118602+00', 130, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2281, X'fb80097c1b02896d394def12746d3c5b4e0afbe9910a9d124606f027385ce7ff', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:23.216991+00', 146, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(2282, X'60baad6de23e7b3f74375da4776234c393f83b430dc73dd8104cf43a2a6f2f8a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:38.814621+00', 42, 0, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(2283, X'eb9dea3e6e2d6102918a6804daa6b550b9e6abe525dfb7155d492fa80506eb00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.146368+00', 96, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2284, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.171208+00', 162, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2285, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.161851+00', 180, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2286, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.261986+00', 108, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2287, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.201559+00', 185, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2288, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.233916+00', 155, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2289, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.231293+00', 169, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2290, X'8f55f525e01949ef8cbf50534cfb3687e4c4f51529b3718185c46eb1c66ef941', TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:52.005779+00', 38, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(2291, X'e17b86d5d9dce082762f03105fcde6da567cbd882085337a5a595ed5a1b7ec50', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:02.753338+00', 41, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(2292, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.696309+00', 72, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2293, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.685548+00', 89, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2294, X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.711257+00', 76, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2295, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.713736+00', 96, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2296, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.732973+00', 86, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2297, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.704367+00', 119, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2298, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.710449+00', 116, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2299, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.82708+00', 133, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2300, X'450d13868bf9c1ce52d50ec0d78d4129dfc57206e8bed57f6338550e39ddd9e6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.886301+00', 199, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2301, X'a1259bf5b6a1c671759de9349b7e35a9e2368e321a68e3e91fbc49caba9e6e1d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.970263+00', 268, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2302, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.883895+00', 407, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2303, X'cb32e5d7ac0331c9e26811d7da7260ead6ae6a8dbb07dd48db60d8646f89d3cf', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.838099+00', 468, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2304, X'509536cb7cec8cbc4cad30ccbcd2bd32f3ab38700074e048e9853ab57394f6a2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.884299+00', 434, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2305, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.983456+00', 453, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2306, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.005314+00', 122, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2307, X'50939ad6f271643caad165fde559976df29b8db2772ca8db109d664687a16014', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:08.992591+00', 153, 7, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2308, X'792e1d2dae63df3aa4b6986c0c27f27cc3c7dbe982a149266231246e12ca474f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.096982+00', 105, 5, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2309, X'450d13868bf9c1ce52d50ec0d78d4129dfc57206e8bed57f6338550e39ddd9e6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.096982+00', 129, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2310, X'8ce338c19e84632cfed3e3633a7cb00fa24896f4dcf3ad47a76c8d00957f1653', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.103564+00', 129, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2311, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.019006+00', 215, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2312, X'450d13868bf9c1ce52d50ec0d78d4129dfc57206e8bed57f6338550e39ddd9e6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:17.941189+00', 143, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2313, X'cb32e5d7ac0331c9e26811d7da7260ead6ae6a8dbb07dd48db60d8646f89d3cf', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:17.998241+00', 147, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2314, X'a1259bf5b6a1c671759de9349b7e35a9e2368e321a68e3e91fbc49caba9e6e1d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.026062+00', 135, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2315, X'31a924c7f421af681b9c905e2ca5f89933300e2ab931ebf1db57b6b60bcff62a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:17.99662+00', 171, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2316, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:17.942145+00', 285, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2317, X'509536cb7cec8cbc4cad30ccbcd2bd32f3ab38700074e048e9853ab57394f6a2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.114675+00', 140, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2318, X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.334386+00', 70, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2319, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.363378+00', 99, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2320, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.363378+00', 112, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2321, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.364257+00', 181, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2322, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.364257+00', 185, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 2, NULL), +(2323, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.45711+00', 156, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2324, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.45711+00', 167, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 1, 2, NULL, 2, NULL), +(2325, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.355137+00', 325, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2326, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.361288+00', 333, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2327, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.355137+00', 337, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 11, 2, NULL, 2, NULL), +(2328, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.361288+00', 326, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2329, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.490753+00', 244, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2330, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.440681+00', 325, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2331, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.440681+00', 328, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 12, 2, NULL, 2, NULL), +(2332, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.566262+00', 339, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2333, X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.544133+00', 362, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2334, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.668719+00', 579, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2335, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.703314+00', 718, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2336, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.563516+00', 808, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2337, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.706606+00', 733, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2338, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:40.884887+00', 81, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2339, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:40.932292+00', 170, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2340, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.029594+00', 416, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2341, X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.118431+00', 342, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2342, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.003119+00', 494, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2343, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.157567+00', 398, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2344, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.346786+00', 280, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2345, X'f125a622d6440cb6cc95a2b3ff57617073671bf7be09d22cc65326d7edeabfd1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:46.99873+00', 85, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2346, X'868a5305da2a1a87974d93ae3893654f6062de9a46612d99e2aaf0cbf0822ed4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.031877+00', 64, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2347, X'da784767217d451744ede6220345175384e329661a8be60d74323754cc2cf6b6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.028121+00', 73, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2348, X'a5a8531af56809387859e3591afd1a63a69c42d357683a9827fae63e0c47392e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.035575+00', 82, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2349, X'd5ddc1140a56d51b51b3fbce6ed06f92091c22e6e9f04f42e77588ce7a3d8240', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:46.997455+00', 135, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2350, X'bfc4e458947db52515ce1ac1b75319d9fdca1414888caf05896fe36b9e358517', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.019205+00', 113, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2351, X'10060d1a1b9aa772aca6e9c02af8c09eaafd59b53d1b2df6613a2b539257e145', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.047027+00', 97, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2352, X'585690893e0b6a4e184656e8b19ad163aa4f0f92deba4911b93fcb2949169bb6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.774747+00', 106, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2353, X'4913725a51cbf12045407d7af79c844279a1e7fb978720d0594a534fd6ac8c29', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.765929+00', 173, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2354, X'9327346250a0e55c40d70066fca56d09c78db51b6b5dac1b05a14d9a5cc3b9ce', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.764868+00', 179, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2355, X'74448f466afb2b4fb11571beb660ed322e0715a8cedca030f70b559d6aa2a63f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.81484+00', 151, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2356, X'4975c9c4a083e80061e6592b04326b40f59a6317708c2077b65b9ffd09bd5ce6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.819782+00', 170, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2357, X'29aea902d134b37e0e6fe201afbc99943233293f9f2dd42f32362e5e866c93bb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.820121+00', 182, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2358, X'692694f7786ca3cf4b1bae6f8af9b7802e9b4a716b3d606a319c7383098cbf82', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.813467+00', 215, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2359, X'c79c55f1af03ba0cfed7928f2a470e35837185ed5b2b3d72136e1541842d2e93', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.501028+00', 119, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2360, X'edd1836700fc58f6bf2dc4d2effa7f64da94626148b8d5af3cc53299c493aaff', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.476111+00', 165, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2361, X'febca63f2ff6d83d6c4d33f2bbe30b3341002ef817f2b04b5d729447a958bea0', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.507516+00', 138, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2362, X'c4d252975b31ab3141e85e0359e3285a3a846b20b42deed501542b409b400a4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.540134+00', 164, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2363, X'7190ab175312799255d901784a01fbed40131cc18bfc09c926b06f8309205895', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.566486+00', 149, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2364, X'c836e0bd4f983925ed076fa1a1546214f5268919990fbb2bfaddd8da6dee13d4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.510864+00', 207, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2365, X'956a1ca7151f49c09487e388cc145a0334ec3377f7fc1391469c32e33d4d8724', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.506137+00', 240, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2366, X'0134a43fc81b4f43db78ed99e7602e6b36ea6b10dc9858e920f2aa38aeae1e55', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.850935+00', 85, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2367, X'70aa13d1ad8ca9856ba691e62fc0c511536bc99fa548d2bcd11ac6ba09718c07', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.870228+00', 74, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2368, X'0e0ffbbcd81a5be17047783036bd8a352699c312793864a7d9365cdd01b93886', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.851009+00', 106, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2369, X'4f5afbebed9d94d51e0133006db00f78d00c7ca7e2c44d461463f8dfacc02b8f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.870206+00', 117, 4, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2370, X'bafff8894a9ef3ab118fb5b3b036d7baaa159c345bf273009a80d406167c6f4f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.903796+00', 89, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2371, X'767065df990a4f9da3e50e095c98d76e295b6dcbcf73a94e521595f7e1faec25', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.885717+00', 113, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2372, X'0be978711b95725996babcaa129815543c319334374bf8ce71addde41b8e1f16', TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.88137+00', 122, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2373, X'938de3f488fb9c4e3f53c5ae012911305500bd031a2565e6d7ce285926bb346e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.725436+00', 139, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2374, X'c143b9ae0317d4952ee9e9c81decd72f2f87f157aa08d4e0b29092e87ab2cca4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.725541+00', 159, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2375, X'a41019ce7649090b35dd55f03f5a417191d24fcd7174685174e5052eeeb6915c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.717728+00', 192, 3, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2376, X'5956769beed4fe91463c83869f75475c3589c01b1808547f90e61f56eef09f67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.793634+00', 123, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2377, X'2f9975119822bddae904139fb5239b6b7b29f78fa3a0254536bdfa2bb21f7e95', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.799365+00', 137, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2378, X'cd1f0d5251ab7c171b0a33cf750b89a2e5f7d1642b295a85998b581d4dcb0a0b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.819474+00', 119, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2379, X'e22afcf163b1f9312c0834efc6a5d1358decd8b7c582424e88fd368a1c6dfca4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.798309+00', 153, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2380, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.523936+00', 48, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2381, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.526283+00', 51, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2382, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.524319+00', 65, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2383, X'c527434a7df955bd0bd0d3f891f9ee975117b427006a04f1149b5936dc5fb918', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.562439+00', 56, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2384, X'75037be4d2969d761d12f5c5125f78c0d589a29c988497eaf3096ae81b665559', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.54647+00', 79, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2385, X'523a4637c0978bc7f8feb38fb1348c32bb50a76e6373afbb197dc299c24d011e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.582009+00', 59, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2386, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.581341+00', 63, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2387, X'f736097df00f04e2f07330f543d4d3eabb9ac80854d59e50fb6ac2d9c1c47048', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.430436+00', 118, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2388, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.464714+00', 103, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2389, X'a5c0b51e284f4027b07644aa89f9212ba3892fe392179e79e3d364d2204ecff2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.461187+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2390, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.462946+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2391, X'ff2099074b4ee32c7246470b8634048ac7760892461a49dc29c689d0e31547ff', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.453252+00', 159, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2392, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.414132+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2393, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.427244+00', 193, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2394, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.123472+00', 97, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2395, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.139528+00', 113, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2396, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.174175+00', 82, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2397, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.187086+00', 70, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2398, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.129023+00', 139, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2399, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.081201+00', 194, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2400, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.114209+00', 162, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2401, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.664141+00', 146, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2402, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.662352+00', 186, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2403, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.706594+00', 178, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2404, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.711702+00', 176, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2405, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.703143+00', 237, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2406, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.767463+00', 195, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2407, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.813682+00', 169, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2408, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.298534+00', 48, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2409, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.28704+00', 201, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2410, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.272378+00', 224, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2411, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.300528+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2412, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.317419+00', 190, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2413, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.303327+00', 206, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2414, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.33389+00', 200, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2415, X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.109221+00', 57, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2416, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.097004+00', 75, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2417, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.097098+00', 79, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2418, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.081314+00', 101, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2419, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.136076+00', 52, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2420, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.093352+00', 94, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2421, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.113644+00', 79, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2422, X'2fcdb5d6e4e3106766684754b637c959c657d928d401c912bd8b4bd78ef48361', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.238746+00', 110, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2423, X'7676cf039cfa6d150108443fb59599fcfaf4b838df8c19b3309b437e55c6a90d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.23245+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2424, X'63f63d7caa4f7dd0564646ffe0f6ea814a1074f3fcb5a5b7905ec519999fa799', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.271128+00', 151, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2425, X'ef143763e718c147378d63cc9c9e2c54c82e904a366d0d314f07c367931a01ac', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.253516+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2426, X'bf29d226196a9122b4af33ddd1c529363ef71786c7889d021370b8b82ab85f4a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.264944+00', 235, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2427, X'5e88ab9a63f31aa90ab37fd8e0b64c265b68dbe76c5bcbb94ed005e09ca9cd2a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.265943+00', 277, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2428, X'f5337bace3ce49bc133045f82e7c97ca930ac8d92b65311f247379f01527b3db', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.369589+00', 240, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2429, X'e643ce7d9b647389def92f13abd7278d8d9372f1463437781c46709d4c096efa', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.794193+00', 101, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2430, X'f6fd0d5e72b122478a98406ea838cd39202b84b49eaa20aacd3a3731abd29db8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.839936+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2431, X'effbfa6cf2e88b86c7ae81f20bdbb8c110931bd97513c5c807de9a32cc991395', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.900525+00', 58, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2432, X'c9574bb35fcc235aba64505237e5ca236e4b828055b17b3da77760eccf2118bc', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.916973+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2433, X'5d9469ac6d8c24ad7772ed970ed62ad08c4793a669422e9cdfb5e6e2f165e51f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.862385+00', 111, 13, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2434, X'b9e76e97514c63b1e4e9ba0a905684956fb857ef6d83250b3b9eb6b1084c3e2a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.8702+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2435, X'd553cf69fa5f931b6cdf23d28e5676a363958fbb9b9a19f983d16b03d50429d6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.836507+00', 172, 5, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2436, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.706349+00', 256, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2437, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.706349+00', 262, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2438, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.551844+00', 482, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2439, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.7531+00', 313, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2440, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.551844+00', 509, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(2441, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.701054+00', 422, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2442, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.762664+00', 417, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(2443, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.031127+00', 149, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(2444, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.773458+00', 443, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2445, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.74444+00', 540, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(2446, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.068773+00', 296, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2447, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.911729+00', 459, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(2448, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.101164+00', 288, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2449, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.888443+00', 565, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2450, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.099418+00', 632, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2451, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.334512+00', 140, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2452, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.376635+00', 209, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2453, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.333577+00', 245, 0, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2454, X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.498105+00', 145, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2455, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.321311+00', 339, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2456, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.500802+00', 173, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2457, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.530742+00', 211, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2458, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.047177+00', 86, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2459, X'29119da2c8176dee315201a95b805f7e0466aa3748392d9b1594998c5ff8c6d1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.037382+00', 140, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2460, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.122674+00', 177, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2461, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.140743+00', 162, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2462, X'c6f1e406c9dc429dbd7cc973b7c254f482625c803bc5911bd8b374907d21c4f6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.07826+00', 301, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2463, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.27378+00', 129, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2464, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.216384+00', 245, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2465, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.938354+00', 123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2466, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.938354+00', 125, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2467, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.867409+00', 203, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(2468, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.896054+00', 194, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(2469, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.95798+00', 412, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2470, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.934378+00', 457, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2471, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.934378+00', 465, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2472, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.250719+00', 228, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2473, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.892716+00', 573, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(2474, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:06.967398+00', 596, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(2475, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.129077+00', 435, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2476, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.033431+00', 541, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2477, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.08748+00', 654, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2478, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.366013+00', 445, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2479, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.271327+00', 536, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2480, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.248181+00', 592, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2481, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.241017+00', 143, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2482, X'29119da2c8176dee315201a95b805f7e0466aa3748392d9b1594998c5ff8c6d1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.255379+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2483, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.154079+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2484, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.249533+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2485, X'c6f1e406c9dc429dbd7cc973b7c254f482625c803bc5911bd8b374907d21c4f6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.154128+00', 271, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2486, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.212938+00', 258, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2487, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.21102+00', 267, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2488, X'9d8e869744b5185715e8f41c076e151cfb309dc615ecac25ac973d2e44acb533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.534343+00', 55, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2489, X'bd2dea6347ccbb72de5b2cc64592399df4bc86702a8e2afee47aae0b2d44e497', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.564358+00', 60, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2490, X'b50b58465f894d3d1c54a81862d6d857b9b69e6fcfe777c60f283ceab0e28b7c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.573682+00', 66, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2491, X'bc0a7e7af48f1fc22070ccc49e5ffaa05ad2e8345c5c802e6b182b59d04c2b65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.539191+00', 103, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2492, X'd93e35d5af6d2bc1f63bb9f0642ddf12b444e916a5ba00f513293d0c9e73f782', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.596098+00', 58, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2493, X'7d2493f48a73f613e918590f130eb7e0478740e76871c1f9eb71ae6da4f2aa67', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.611101+00', 55, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2494, X'187bab1a82bc02a0ec013e560371de5c6595dad9b1236755bdd2013c49460be3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.573171+00', 98, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2495, X'a8618a8345f44a5570236cad173025fbf38bcc62f46132c55141d2dbf47552ce', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.321429+00', 114, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2496, X'a51842cbf95847eed96145258042e6536ccb686675b1fc730f4f10d953b21a9a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.305647+00', 133, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2497, X'3eb7573ff80edd2b6569adc6312ae22a7d5f566691b2025f5741e6032f0ef672', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.364234+00', 141, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2498, X'1013a1d89ae605249c2b583f53d016e38cc9edadbe5d6c3eb70e3e7d6b6bc9e5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.398559+00', 118, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2499, X'be30f64e1158fc7c66132f9f87c669288f45aabb4a204b097fcd729949cd20e1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.343039+00', 196, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2500, X'14d9220f9c7aa9d9d33420f2e8547be861082c53086a95bb7058bba8aafbe92b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.38908+00', 165, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2501, X'4bd0014b492899d72fcaf1b4813ceb24a6c6d911f9680d47e3d003adf8eec787', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.367916+00', 202, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2502, X'10287f6b3eca29bb5191320c9c81704098b9a9c6d4af01581c855069e003c7f0', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.575046+00', 88, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2503, X'31412d2cf4b466afea43fd3175aa76744233c15ef74cae9ce084ef4653803e74', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.570284+00', 102, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2504, X'8358453dfea6add21a8d4dd63a7afa6c607145efa17b26a69f252077b25ea658', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.58518+00', 88, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2505, X'c609b2ec0b35664dc94ceea76fc1931ac60b57ae52b504b63a6da16c3723e271', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.594011+00', 87, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2506, X'0caff5f234007bc1dad15e7b52f92381075709f632a0cb40c0acf86d0f157aea', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.722081+00', 56, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2507, X'39bc65bb9953497238846a79abb6490f60047e2c4bd80ff8a4fa19cdf70b08b3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.722729+00', 83, 13, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2508, X'cdfbb1252186dd05b17bb3debac10e8d21573cef2de9e93b5459542500e49bca', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.702014+00', 112, 7, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2509, X'c6f1e406c9dc429dbd7cc973b7c254f482625c803bc5911bd8b374907d21c4f6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:56.758042+00', 259, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2510, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:56.798386+00', 282, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2511, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:56.822891+00', 288, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2512, X'29119da2c8176dee315201a95b805f7e0466aa3748392d9b1594998c5ff8c6d1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:56.875859+00', 244, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2513, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:56.876088+00', 249, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2514, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:56.797754+00', 335, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2515, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:56.982778+00', 163, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2516, X'7676cf039cfa6d150108443fb59599fcfaf4b838df8c19b3309b437e55c6a90d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.655484+00', 55, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2517, X'f5337bace3ce49bc133045f82e7c97ca930ac8d92b65311f247379f01527b3db', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.638242+00', 87, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2518, X'bf29d226196a9122b4af33ddd1c529363ef71786c7889d021370b8b82ab85f4a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.658014+00', 105, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2519, X'2fcdb5d6e4e3106766684754b637c959c657d928d401c912bd8b4bd78ef48361', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.656391+00', 116, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2520, X'63f63d7caa4f7dd0564646ffe0f6ea814a1074f3fcb5a5b7905ec519999fa799', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.772246+00', 93, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2521, X'5e88ab9a63f31aa90ab37fd8e0b64c265b68dbe76c5bcbb94ed005e09ca9cd2a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.771269+00', 100, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2522, X'ef143763e718c147378d63cc9c9e2c54c82e904a366d0d314f07c367931a01ac', TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.791388+00', 137, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2523, X'e7011381b98c2203574a5b7361dda1d27c4de1c1c5db998f500c3189af60d665', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.358398+00', 82, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2524, X'b05c27405f5b996a0f37860e9d4298a277aa6c47de8160c9d856e67131160e14', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.390373+00', 85, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2525, X'1f697a33196817c987e4d3641dfd469d276123469aaf382b26657ee7590fa8cc', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.403225+00', 89, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2526, X'9ff1f12c7ddc626ce892cb828586e93a50d9cfc463e3d59d8958024a630683ea', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.392153+00', 103, 0, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2527, X'e487ba591206f39cbb65d1cd6bce3694ea7f12207f0818f3a3b926367c75ea2a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.487562+00', 53, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2528, X'd6709c116c6e0ecd0fb6382d8f1cfd3968ec8bbabd6e1371a849b897f54bbe47', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.505954+00', 61, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2529, X'2e165b7c31952d928f66289e24e77ca5aa3d11f6cef2bcbbd7734e23080d7c5e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.505051+00', 81, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2530, X'9438e2d8588081b0cd93f4e19739ca89350196f2413a19022052729d328e2982', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.156877+00', 81, 2, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2531, X'22d7d600d7335d667b35d56d25959cf1a6f0701772d724da78446f6ab720365a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.122217+00', 152, 2, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2532, X'830fb4a8c31478f5de86369dd771fd2dfae450627a67193d8e52e9e5835d23cb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.20342+00', 89, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2533, X'14455a2e3bf45b42c045ffd6c4a552d45379c202d893c590a40251c53e178d5a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.166199+00', 137, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2534, X'9cc704a74ab03ad9fe821ce726fe24c104a911a35b1bec46b9dde0a7a3e8b2d6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.112486+00', 199, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2535, X'a4e65918e7c4d827793ff0b50f5bdde7aeb6c1efc2d6d6e147d97290b966e533', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.179788+00', 166, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2536, X'b1bd6c00bb07fe55430f8c2d6d9188dbd628c1c985eb9f4c0cb070f0af413e7a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.230034+00', 137, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2537, X'c609b2ec0b35664dc94ceea76fc1931ac60b57ae52b504b63a6da16c3723e271', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.348995+00', 85, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2538, X'31412d2cf4b466afea43fd3175aa76744233c15ef74cae9ce084ef4653803e74', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.402043+00', 90, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2539, X'0caff5f234007bc1dad15e7b52f92381075709f632a0cb40c0acf86d0f157aea', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.461624+00', 103, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2540, X'10287f6b3eca29bb5191320c9c81704098b9a9c6d4af01581c855069e003c7f0', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.352713+00', 218, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2541, X'8358453dfea6add21a8d4dd63a7afa6c607145efa17b26a69f252077b25ea658', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.413123+00', 163, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2542, X'39bc65bb9953497238846a79abb6490f60047e2c4bd80ff8a4fa19cdf70b08b3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.513483+00', 127, 13, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2543, X'cdfbb1252186dd05b17bb3debac10e8d21573cef2de9e93b5459542500e49bca', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.539085+00', 124, 7, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2544, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.030619+00', 71, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2545, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.190291+00', 162, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2546, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.231495+00', 184, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2547, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.110044+00', 308, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2548, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.192492+00', 249, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2549, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.066855+00', 393, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2550, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.202176+00', 362, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2551, X'0aa02e9e67c5c8be9ccc624ec5c3882e4556471c6a969a38406718ca0e51babc', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.62253+00', 93, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2552, X'2b28cbfd7e481e4cfef4816270dc1376abbabc6cbf06f546667e446b2ae6e3d6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.63331+00', 89, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2553, X'a4a3fa9bcbf7abea88ac0c6c31a6d15998a4da9ad6193f36db51a5765a29c003', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.655442+00', 87, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2554, X'4933c781a78bb5bd0daa552ce6a3be374f1cdcc354c119d4c721ec8ad33dca6b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.654866+00', 142, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2555, X'64fdd676ede7d00c9dfd47fd4443805fd273a646b2a0d13fb493cd33fd7a29ba', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.722832+00', 79, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2556, X'b017f8bcd704185bff2523e4169d83437dc831783a2ea40606af5b8f1cdbe29f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.634626+00', 177, 3, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2557, X'9deaa9166bb0f354627ed0648d1ef26930276a410afe3ff3cd80ad4f4f35c63c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.759526+00', 83, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2558, X'3b05d66350065ec1883c26da09a95057ea4c448c2f56a778a27044377b3a848a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.352904+00', 47, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2559, X'771ee6b0ded002a424913722eba6e6cf21acb60b9818021d6a3960ac9763cb86', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.318147+00', 141, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2560, X'b998ce7e83181d86082cb1eeb4b5be0613c88d85d43e74ceb3af4d12785a9fec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.350512+00', 149, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2561, X'a46f42a4d589d45fb20ef825b2bd0595d493804cde4efd1bab36f0cd4fbb0cf1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.377167+00', 128, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2562, X'5446d6d3f0cf8293dd0a55aedd2cd8c5db10dab46362af9cc17882a2a3cb9354', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.380665+00', 127, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2563, X'459e4edb0d11769c75dd9b265c0e93f90a8811d6e7809bca2b59ea42e16c3080', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.438999+00', 93, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2564, X'8ae23bd2b255103287f062ae0431c38d4ad877f814b153e94a582a33ab1fed7a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.444653+00', 88, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2565, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.586716+00', 57, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2566, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.585651+00', 107, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2567, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.585728+00', 134, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2568, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.735699+00', 77, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2569, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.74067+00', 74, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2570, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.747031+00', 64, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2571, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.734865+00', 95, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2572, X'29119da2c8176dee315201a95b805f7e0466aa3748392d9b1594998c5ff8c6d1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.076082+00', 45, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2573, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.10182+00', 45, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2574, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.093851+00', 52, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2575, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.072954+00', 89, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2576, X'c6f1e406c9dc429dbd7cc973b7c254f482625c803bc5911bd8b374907d21c4f6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.085464+00', 81, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2577, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.095667+00', 86, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2578, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.179914+00', 44, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2579, X'a1e22038a2759f285e518b0e8f5e025fe02030aa5986f77946f54334b638c657', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:11.02241+00', 66, 1, TRUE, 'question', NULL, 1, 13, 2, NULL, 2, FALSE), +(2580, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:16.866759+00', 171, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2581, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:16.884773+00', 158, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2582, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:16.937983+00', 106, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2583, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.038302+00', 79, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2584, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.070804+00', 82, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2585, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.050894+00', 102, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2586, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:16.935332+00', 234, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2587, X'6a5a82efda161dc140e94e17405fa144ba8cde26b39e8dcd9dde203750a35beb', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.060919+00', 87, 3, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2588, X'b38c2d6e24a84c8ab6e62150364a2292c99a1430684fa520e63c491e3e2a9e03', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.039153+00', 114, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2589, X'9b68751265e3310120dfa94676a551cc3d5bb85e5016f3e659a124c3c3f13cc6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.066025+00', 91, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2590, X'ad9b66b024be30005a95c194391e3ac173208f49efd1ee3aaafde6e547b06be6', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.083047+00', 93, 2, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2591, X'fb1550b157c7219948e8d3d449794dd9c5ad9fc92f9ece4ac932bf5e168fe41e', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.112842+00', 98, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2592, X'1c8731315664064c06a3297b5518c429d382f8fae13f3ac4b4dd6dc60b9962a5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.168486+00', 50, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2593, X'3bde4ac260f4b92239c6cf47eedc506440a04c0678159b601ab35c7c6401544b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.184001+00', 60, 2, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2594, X'a459bc9594931ca4cb980b903a04fefc23f8d9fd57883d7a5aca612a5fdb3a2f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:58.916118+00', 224, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2595, X'e21c2d50b0376cb5426223337cea908c1775a290b8e2dbe1f90205476fec95c9', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.039238+00', 106, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2596, X'dab499599831fa5506181cd39ff57309fdc2a9ef840e2557cc8cb6094fd3d021', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.029629+00', 283, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2597, X'42231ae3dde4b2a6c07c950ddab7d2a07887e73c28506bbe36fcd226c0b0980f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.057769+00', 360, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2598, X'bb4ef0b9461e5cf84f972bd21474904aa9f37998da72a14311418cee6aa63a88', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.101555+00', 338, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2599, X'2312184b76e35435f2f45b0632d1119a5e93a00b1f07e294a090120944f1d74f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.152255+00', 293, 13, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2600, X'd40ada4f20b0106978d31191e1f64c4e0d74c76d45a06d6bd622242e1976da01', TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.011188+00', 439, 7, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2601, X'42231ae3dde4b2a6c07c950ddab7d2a07887e73c28506bbe36fcd226c0b0980f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.326411+00', 71, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2602, X'dab499599831fa5506181cd39ff57309fdc2a9ef840e2557cc8cb6094fd3d021', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.3365+00', 65, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2603, X'85a51996f1d0baf48743ee483f449b93cb6e3905890c9f1816475e7a202b9071', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.318156+00', 105, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2604, X'd40ada4f20b0106978d31191e1f64c4e0d74c76d45a06d6bd622242e1976da01', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.362471+00', 108, 7, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2605, X'bb4ef0b9461e5cf84f972bd21474904aa9f37998da72a14311418cee6aa63a88', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.34839+00', 125, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2606, X'474d704dc4a4b77ff62f1e6115b180ad86b384c7f384c0935574aa112e1432ed', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.485209+00', 42, 7, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2607, X'64f6643f1eff4f46ea6c0d25acda405cc95fc5023dd74ccfffa2ec0cf1201215', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.483272+00', 46, 5, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2608, X'dab499599831fa5506181cd39ff57309fdc2a9ef840e2557cc8cb6094fd3d021', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.081022+00', 110, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2609, X'1ce349ccf43dd2be9cf3ce8fe5bf0f40db3476c5ae08012e0f2b35791b611c49', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.096559+00', 151, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2610, X'42231ae3dde4b2a6c07c950ddab7d2a07887e73c28506bbe36fcd226c0b0980f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.185991+00', 128, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2611, X'8dc4fda0df0510be5535ac37a800d7bee0bb31cfce81421451c514755197bc3b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.262564+00', 108, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2612, X'd40ada4f20b0106978d31191e1f64c4e0d74c76d45a06d6bd622242e1976da01', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.106041+00', 297, 7, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2613, X'bb4ef0b9461e5cf84f972bd21474904aa9f37998da72a14311418cee6aa63a88', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.146169+00', 293, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2614, X'4efc12bd48cf6300c427b67a583249f0c793355bbd55be9821cf9815b57ce559', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.328582+00', 121, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2615, X'15ff8b0cd0bba91066654bf20eda262394d92159b11e0a69d3361d4ec0cc41ee', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.414136+00', 100, 13, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2616, X'42231ae3dde4b2a6c07c950ddab7d2a07887e73c28506bbe36fcd226c0b0980f', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.426315+00', 198, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2617, X'dab499599831fa5506181cd39ff57309fdc2a9ef840e2557cc8cb6094fd3d021', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.454059+00', 194, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2618, X'bb4ef0b9461e5cf84f972bd21474904aa9f37998da72a14311418cee6aa63a88', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.431915+00', 214, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2619, X'df70623e725542ad4d58d2e9d174e71b212cbc9fe0f1c06d2050b7f4d9de82d1', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.475965+00', 259, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2620, X'b06a7c8bfc2cb626f37ce375aabd9312e3dcad1cc9a78a6d0c451a2e5dba948a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.551207+00', 193, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2621, X'd40ada4f20b0106978d31191e1f64c4e0d74c76d45a06d6bd622242e1976da01', TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.396678+00', 359, 7, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2622, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.204438+00', 247, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2623, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.204438+00', 252, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(2624, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.255617+00', 417, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2625, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.235863+00', 437, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(2626, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.154196+00', 518, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2627, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.463271+00', 254, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2628, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.224284+00', 544, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2629, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.264964+00', 506, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(2630, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.224284+00', 548, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(2631, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:31.98387+00', 812, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(2632, X'd770ab0e7e2c2e7a6835de82a4dc1664ce1b59fe8b9686a4d77a69c1cf8ffd78', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.135484+00', 678, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(2633, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.298464+00', 557, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2634, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.301925+00', 611, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2635, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.416743+00', 508, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2636, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.590011+00', 372, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2637, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.530953+00', 459, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2638, X'083e815720461ee2634d02d8baccbd7ac7d1b5abef36d4c111fa2cf8920a99e9', TIMESTAMP WITH TIME ZONE '2022-12-16 13:39:18.48547+00', 86, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2639, X'417abbc0589089da7bd4fc5657dd475a832ef67fdc7146a70ea91e1b8b117143', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:00.7009+00', 69, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2640, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.36368+00', 107, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2641, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.382376+00', 121, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2642, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.478158+00', 109, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2643, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.410762+00', 173, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2644, X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.451733+00', 128, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2645, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.463363+00', 140, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2646, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.414543+00', 214, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2647, X'049c5c5f119d60a0eebda11e54f01c0594c73f184f74c392f37292990b0bee00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.39415+00', 180, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2648, X'839b8072874307f6dd7c68ecb1bbbcd512e321257c932068df10ef883fa1ae71', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.412397+00', 201, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2649, X'b098aa2b23226d574ecd4285f6a9c19d78cc5509ae17c6f04d33ecd2067e49df', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.48014+00', 148, 7, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2650, X'a420f957f5cd0d0cc6324ec519a05903227440b0f7a35354b6b86e4f063a5508', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.398043+00', 237, 5, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2651, X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.513262+00', 150, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2652, X'b6517ba125b6e9c3f8ac3f2c041aa58cd8c5f95f0a345b29f7520737686cdaf7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.476494+00', 194, 7, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2653, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.534411+00', 156, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2654, X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.463158+00', 142, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2655, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.424139+00', 256, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2656, X'ffef372bac793947b7972fa5c516ce26cfa91b0032e31c840600b887525c9bd0', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.446433+00', 289, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2657, X'22e3c146fb4908802514893f8aa5f4136362673558d3930c5568d2a85bee8663', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.443684+00', 293, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2658, X'74379d9d32ecef4cfad134863c0cfabda6810f2763d6f7ff8b89c94037e171e3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.409797+00', 345, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2659, X'7f62111765437e60dd4f55956e0b4484a796632527e8fa6a3a91c4aef45abb01', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.447348+00', 307, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2660, X'4916dd7af1eb50b2f01d507e5592879a7d0e0764107229b66ae1e5abcd33b5ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.505269+00', 280, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2661, X'68413c085e5cfc648aa0770eeec0e84fbaa7b824e1f04a2a0a3487f0f52fa72d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.467328+00', 70, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2662, X'9ec11c64d153268bd0a00dd60d4537738ef902f699a69bbfd6234c7f4a4b1d5a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.487901+00', 56, 11, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2663, X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.491738+00', 61, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2664, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.52499+00', 67, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2665, X'd322e551509b5fd2733ab18f2197907960c309fa418fe14d34c51f01f001069b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.553612+00', 62, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2666, X'ccd4bcb802cd7507e497c417c91910e4ffeb057a164168441aac5a68754dff03', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.536444+00', 99, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2667, X'b702cc7bf8a55f2f6756d247a61cc21e468efbec927779b0a5ff1ea5348b2057', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.499425+00', 160, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2668, X'417abbc0589089da7bd4fc5657dd475a832ef67fdc7146a70ea91e1b8b117143', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:39.259349+00', 46, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2669, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.680121+00', 199, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2670, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.737539+00', 157, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2671, X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.834326+00', 105, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2672, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.78957+00', 193, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2673, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.778843+00', 242, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2674, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.833523+00', 193, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2675, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.824104+00', 237, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2676, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.718813+00', 170, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2677, X'049c5c5f119d60a0eebda11e54f01c0594c73f184f74c392f37292990b0bee00', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.706529+00', 214, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2678, X'a420f957f5cd0d0cc6324ec519a05903227440b0f7a35354b6b86e4f063a5508', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.808586+00', 245, 5, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2679, X'839b8072874307f6dd7c68ecb1bbbcd512e321257c932068df10ef883fa1ae71', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.814254+00', 243, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2680, X'b098aa2b23226d574ecd4285f6a9c19d78cc5509ae17c6f04d33ecd2067e49df', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.847647+00', 277, 7, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2681, X'b6517ba125b6e9c3f8ac3f2c041aa58cd8c5f95f0a345b29f7520737686cdaf7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.741287+00', 392, 7, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2682, X'8f7001fe36ced3bb51dd729b2030d9dd4f8577c58cbc577c782051a9dc54e472', TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.835246+00', 306, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2683, X'74379d9d32ecef4cfad134863c0cfabda6810f2763d6f7ff8b89c94037e171e3', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.68449+00', 176, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2684, X'ffef372bac793947b7972fa5c516ce26cfa91b0032e31c840600b887525c9bd0', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.718072+00', 203, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2685, X'4916dd7af1eb50b2f01d507e5592879a7d0e0764107229b66ae1e5abcd33b5ec', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.731416+00', 210, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2686, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.804075+00', 166, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2687, X'22e3c146fb4908802514893f8aa5f4136362673558d3930c5568d2a85bee8663', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.794022+00', 187, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2688, X'62257cbea46dfe98db4abf1495ae4b9332b3bfcb280b49a3dc2865a0dc71138c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.810249+00', 211, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2689, X'7f62111765437e60dd4f55956e0b4484a796632527e8fa6a3a91c4aef45abb01', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.809223+00', 217, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2690, X'68413c085e5cfc648aa0770eeec0e84fbaa7b824e1f04a2a0a3487f0f52fa72d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.045069+00', 65, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2691, X'ccd4bcb802cd7507e497c417c91910e4ffeb057a164168441aac5a68754dff03', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.086022+00', 77, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2692, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.130216+00', 100, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2693, X'b702cc7bf8a55f2f6756d247a61cc21e468efbec927779b0a5ff1ea5348b2057', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.057386+00', 183, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2694, X'd322e551509b5fd2733ab18f2197907960c309fa418fe14d34c51f01f001069b', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.085633+00', 164, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2695, X'9ec11c64d153268bd0a00dd60d4537738ef902f699a69bbfd6234c7f4a4b1d5a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.140089+00', 125, 11, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2696, X'f261e9781d74d0c04d2aae5ee9ae6374d4f082b7910c74c47a6ef0c9de4ead17', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.130164+00', 155, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2697, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:38.980544+00', 139, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2698, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.023467+00', 120, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2699, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:38.989118+00', 155, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2700, X'cdfd15afdf2db3e6c2d7f850dfa749a523eb65b06fda64991015459e7406a7c7', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.010634+00', 173, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2701, X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.022787+00', 173, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2702, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.022405+00', 187, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2703, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:38.974342+00', 240, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2704, X'3f127303db565b443c2b54bf9f2951a5b0d787a194da522d82941335852bf994', TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:43.752222+00', 60, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(2705, X'9a2500ea357d3fa1df2be3cbef45937116c2e5f1becae81b9934b0ece4ce64f2', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:14.445648+00', 44, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(2706, X'fcd11871e541cf149ae190b90bc22cf4addd510845fb883cec332e383205c9a4', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.336911+00', 100, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2707, X'548fa381fbcce7617b2c2d5f98dac83450d431a9c126e7b998822f9da71f8343', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.372673+00', 90, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2708, X'8167787d8b1f3353e505b70c732a30d847fca4988558352076b76cc66bc4876a', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.386125+00', 115, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2709, X'ffb9161fabe83bcce37a58248173954f8d7415426d5fab5a0842280ef1580e4c', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.403719+00', 104, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2710, X'0ee44146c0f3d53a573b83b8a19589e73cd3350f75a103741f5f9731b3bf0443', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.403338+00', 105, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2711, X'ea9e5b157c9a4b77a241fabf6248f124f413a86c2097012dae78cef816c92a31', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.382881+00', 169, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2712, X'90878ae4e810161bf9bb98479afd38f0832b8b9d65c5ca3877d0ee7dbac1f052', TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.362269+00', 198, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2713, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.018381+00', 185, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2714, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.147683+00', 106, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2715, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.018877+00', 245, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2716, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.159075+00', 150, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2717, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.12376+00', 205, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2718, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:45.980646+00', 360, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2719, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.194536+00', 155, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2720, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.107092+00', 320, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(2721, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.14315+00', 376, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2722, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.212288+00', 328, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2723, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.276687+00', 322, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(2724, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.374059+00', 396, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(2725, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.14315+00', 512, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2726, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.173279+00', 620, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2727, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.208038+00', 747, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(2728, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.076682+00', 878, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2729, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.440383+00', 518, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2730, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.481271+00', 480, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2731, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.510879+00', 544, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2732, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.503116+00', 588, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2733, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.510879+00', 587, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2734, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.572936+00', 772, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2735, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.472131+00', 880, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2736, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.098789+00', 569, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2737, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.073349+00', 596, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2738, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.101901+00', 567, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2739, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.168967+00', 505, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2740, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.362959+00', 393, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2741, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.362959+00', 422, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2742, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.195383+00', 606, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(2743, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.164234+00', 673, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2744, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.458716+00', 474, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2745, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.147085+00', 785, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2746, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.147085+00', 798, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2747, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.350037+00', 636, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2748, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.230037+00', 966, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2749, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.106031+00', 1110, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2750, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.106031+00', 1116, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(2751, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.374189+00', 873, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(2752, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.227004+00', 1066, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2753, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.227004+00', 1067, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(2754, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:41.984606+00', 43, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2755, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:41.983317+00', 51, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2756, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:41.984356+00', 64, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2757, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.088823+00', 54, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2758, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.099572+00', 60, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2759, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.116628+00', 58, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2760, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.084192+00', 94, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2761, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.063445+00', 131, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(2762, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.078067+00', 192, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2763, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.078067+00', 196, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2764, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.089657+00', 253, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(2765, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.086773+00', 287, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2766, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.086773+00', 285, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2767, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.150292+00', 226, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(2768, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.137928+00', 234, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(2769, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.180161+00', 200, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2770, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.192709+00', 178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2771, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.208208+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2772, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.09275+00', 344, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2773, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.180089+00', 290, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2774, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.306429+00', 213, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2775, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.206064+00', 330, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2776, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.334614+00', 246, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2777, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.471732+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2778, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.487354+00', 297, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2779, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.466976+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2780, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.467537+00', 344, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2781, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.630999+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2782, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.630567+00', 203, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2783, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.57448+00', 300, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2784, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.272423+00', 230, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2785, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.308239+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2786, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.356368+00', 316, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2787, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.362682+00', 309, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2788, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.389201+00', 329, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2789, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.363156+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2790, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.637289+00', 115, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2791, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.686459+00', 256, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2792, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.686513+00', 261, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(2793, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.686459+00', 282, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2794, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.69391+00', 281, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2795, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.69391+00', 289, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2796, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.71165+00', 344, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(2797, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.71514+00', 394, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(2798, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.719574+00', 504, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(2799, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.719474+00', 503, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2800, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.973701+00', 446, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2801, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.957423+00', 461, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2802, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.081306+00', 334, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2803, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.976259+00', 515, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2804, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.027775+00', 509, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2805, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.157769+00', 382, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2806, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.233033+00', 356, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2807, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.551532+00', 164, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(2808, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.584113+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2809, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.584113+00', 194, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2810, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.575292+00', 291, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2811, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.575292+00', 289, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2812, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.762015+00', 444, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2813, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.620805+00', 646, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(2814, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.874479+00', 408, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2815, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.800655+00', 482, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2816, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.632182+00', 625, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2817, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.584086+00', 737, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(2818, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.877454+00', 462, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2819, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.922498+00', 532, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2820, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.818468+00', 738, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(2821, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.89623+00', 666, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2822, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.792606+00', 774, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2823, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:02.690911+00', 609, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2824, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:02.802503+00', 768, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2825, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:02.802503+00', 770, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2826, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:02.896564+00', 781, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(2827, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:02.908931+00', 820, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2828, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.102359+00', 665, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(2829, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:02.908931+00', 915, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2830, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.389145+00', 528, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2831, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.420179+00', 496, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2832, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:02.946023+00', 980, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(2833, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.370198+00', 673, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2834, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.454341+00', 592, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2835, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.371689+00', 827, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2836, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.657121+00', 529, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2837, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.424044+00', 911, 0, FALSE, 'public-dashboard', 's=OPEN,api=BLOCKING,sc=true,e=null', NULL, 14, 2, NULL, 2, NULL), +(2838, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.774037+00', 1183, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2839, X'63f63d7caa4f7dd0564646ffe0f6ea814a1074f3fcb5a5b7905ec519999fa799', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.005012+00', 49, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2840, X'e1f6db90ede9315058e931917df872fa1d97846c3cbcb0eb109b042dd4489220', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.039289+00', 74, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2841, X'2fcdb5d6e4e3106766684754b637c959c657d928d401c912bd8b4bd78ef48361', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.033787+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2842, X'ed55d7854ade968eb71b78b00a73f2b7217b2049e62b478795cd31f76770400f', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.06373+00', 64, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2843, X'f5337bace3ce49bc133045f82e7c97ca930ac8d92b65311f247379f01527b3db', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.063506+00', 93, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2844, X'ef143763e718c147378d63cc9c9e2c54c82e904a366d0d314f07c367931a01ac', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.054314+00', 106, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2845, X'5e88ab9a63f31aa90ab37fd8e0b64c265b68dbe76c5bcbb94ed005e09ca9cd2a', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.028102+00', 135, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2846, X'73f3f60b046eee2f1e20469bd67b6e1e21ebc5733b8bd712f3df2af4d12522c3', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.328148+00', 204, 4, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2847, X'2e044de41e4f7f47672a01df43b63b63598ddf39a67dce32e1599147386462a7', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.288585+00', 222, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2848, X'aa6269761b2058344f26200ffe80990947bb9f68d9bc500de0852dede1d3d383', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.33406+00', 176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2849, X'da0eccd7fb4782976b9c9eb2c7988a27651edcfa95406632d3c807715bd2c017', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.408206+00', 176, 3, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2850, X'2ab8a1445d001d8053c3b9200a8898df28273ec13b860387ba08b56846ef007c', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.315589+00', 290, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2851, X'a9d65b044d9afe1246f885cb2ce535793cb204a481284158fd263ba5ed378328', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.366105+00', 244, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2852, X'2bf1af0884831eb5ce7389eeddd960fc26f2bea513e3266b82a825096b786f01', TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.320128+00', 311, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2853, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.096672+00', 285, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2854, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.110964+00', 431, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2855, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.110964+00', 442, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(2856, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.118408+00', 459, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(2857, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.097476+00', 532, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(2858, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.125911+00', 623, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2859, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.125911+00', 634, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(2860, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.531142+00', 712, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(2861, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.451625+00', 800, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(2862, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.195216+00', 562, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2863, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.228056+00', 528, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2864, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.278478+00', 489, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2865, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.310979+00', 586, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2866, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.544819+00', 401, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2867, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.551508+00', 439, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2868, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.577007+00', 415, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2869, X'2f12fa599608af16c1b5fcb2d7644fecc0c5bf396a7461e22bcfc242fde33605', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.248745+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2870, X'ac67eab879703942433745a0c79e26f2f7031dca05ad951454c397a4789870fb', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.250403+00', 155, 3, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2871, X'341b71bb7b0a16cdfbe9dc384627873c801b359a01aadf06188c5610af7bb9d2', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.294103+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2872, X'0c6130510e48eb8245794348aef26d20a1a60280cbc3ca59a5f264e481ded1aa', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.295508+00', 173, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2873, X'4e710b6b827ee575d347bcef025bf3d349e626af89709fbf509f136cd3f53eed', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.348055+00', 125, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2874, X'9c17621ea5f324e2fc3524c9cc36182b7faa0f2908613d328b7ece021041b89f', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.382426+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2875, X'77c85e1f823e54c006addf2b0ef8edbd33d07e5b19b423594db5c12c689a900f', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.385297+00', 114, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2876, X'3ba47959e8ed5242974a039e779755df8551920203eee331aeb0f71d36d79898', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.78008+00', 217, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(2877, X'e9b933d9e5e07ba52b03a8a39b8855a81d22787e3218253ef8351c8b64dbe065', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.768987+00', 222, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(2878, X'ca64217cd61163bb0945b9abf92ba798f065e7c85d0d0af434b3d0a189cd36c8', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.792844+00', 223, 1, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(2879, X'7b3ed35b5b81d808ab7e7da5e08a15a74104b3c970f33c6a23f7b1d086a5ce28', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.947101+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(2880, X'329b95e435c3b2c2546c08af0d8fd04254e8c572fab7f30af8a3671d63e0cba5', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.942425+00', 96, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(2881, X'68ae2d10fdbc2490e7cd1a8a139a2be625eb1cedb7e04c05e7547b6197bf632a', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.937173+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(2882, X'8cd5d0c6e6faf4891b0c3a89fc8443cf23cd6e52c0ac639630ee0caf3d65920f', TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.97281+00', 93, 1, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(2883, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.186149+00', 248, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2884, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.154555+00', 490, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2885, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.152923+00', 574, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2886, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.152446+00', 579, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2887, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.160039+00', 602, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2888, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.152458+00', 619, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2889, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.515295+00', 269, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2890, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.26112+00', 174, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2891, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.268019+00', 209, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2892, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.198279+00', 289, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2893, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.290041+00', 253, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2894, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.295996+00', 260, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2895, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.271655+00', 302, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2896, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.576968+00', 87, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2897, X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', TIMESTAMP WITH TIME ZONE '2022-12-19 06:41:08.068501+00', 66, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(2898, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.451622+00', 71, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2899, X'a1259bf5b6a1c671759de9349b7e35a9e2368e321a68e3e91fbc49caba9e6e1d', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.790339+00', 57, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2900, X'509536cb7cec8cbc4cad30ccbcd2bd32f3ab38700074e048e9853ab57394f6a2', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.815739+00', 124, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2901, X'ea6eb5ebd6ce7b2369f4167e4c44c0eda95bf1f3886a2ef6db297f6ff1b89d55', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.845386+00', 134, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2902, X'cb32e5d7ac0331c9e26811d7da7260ead6ae6a8dbb07dd48db60d8646f89d3cf', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.841893+00', 140, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2903, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.857044+00', 266, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2904, X'e36f0a3d794a2f18badb7738a538c6338e565848157f90948ff50a98c22d4ada', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.865418+00', 273, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2905, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.250053+00', 83, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2906, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.227337+00', 130, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2907, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.250278+00', 145, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2908, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.292101+00', 107, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2909, X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.300963+00', 131, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2910, X'ad98952a5db3ce23d1181578af284a64e9f97f8393aa39b5cd1a9c241bf866b8', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.531037+00', 55, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2911, X'ad98952a5db3ce23d1181578af284a64e9f97f8393aa39b5cd1a9c241bf866b8', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:47.977546+00', 405, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2912, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.028737+00', 363, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2913, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.014145+00', 533, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2914, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:47.989998+00', 649, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2915, X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.319461+00', 437, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2916, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.298957+00', 486, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2917, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.441381+00', 394, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2918, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-19 06:45:46.350278+00', 152, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2919, X'47359d392eae798b773a74e45d5f71d60d26be2785b93296773034c56ad0b944', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:14.787508+00', 89, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(2920, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:14.796966+00', 88, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(2921, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:14.78566+00', 108, 2, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(2922, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.475891+00', 146, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2923, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.580062+00', 181, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2924, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.562387+00', 396, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2925, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.563392+00', 416, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2926, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.955672+00', 141, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2927, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.964948+00', 170, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2928, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:21.010104+00', 163, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2929, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.629294+00', 84, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2930, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.616801+00', 135, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2931, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.619602+00', 131, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2932, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.630338+00', 149, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2933, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.859655+00', 66, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2934, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.878013+00', 53, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2935, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.857603+00', 158, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2936, X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:35.496734+00', 75, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(2937, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.385711+00', 285, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2938, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.369972+00', 272, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2939, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.533713+00', 137, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2940, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.402933+00', 310, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2941, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.422751+00', 354, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2942, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.597052+00', 207, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2943, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.694035+00', 120, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2944, X'5227534e1fda21689c88e8436b385cd2f277cf43bb68799d251e40188c7173e3', TIMESTAMP WITH TIME ZONE '2022-12-19 07:16:06.492695+00', 103, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2945, X'f8768ce4141d94b6aac8ad9339c9b7809474da57ade4ff3ee8d5fa3c131dc3b7', TIMESTAMP WITH TIME ZONE '2022-12-19 07:18:29.906767+00', 209, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2946, X'1c48da1811b0e4fb0a9953f8863695cfd8c2e8700b7369aee876758ec8a1785e', TIMESTAMP WITH TIME ZONE '2022-12-19 07:18:36.370838+00', 48, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2947, X'bca30745aea5d12eda5ff658d1ab9838cffaead2518e697720fb309445f8fe97', TIMESTAMP WITH TIME ZONE '2022-12-19 07:18:43.095905+00', 34, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2948, X'f8768ce4141d94b6aac8ad9339c9b7809474da57ade4ff3ee8d5fa3c131dc3b7', TIMESTAMP WITH TIME ZONE '2022-12-19 07:19:02.100277+00', 43, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2949, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.085574+00', 371, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(2950, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.218061+00', 251, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2951, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.218634+00', 233, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2952, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.20475+00', 261, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2953, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.183498+00', 272, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2954, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.175109+00', 365, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2955, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.478939+00', 124, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2956, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:37.077605+00', 75, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2957, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:50.592005+00', 186, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2958, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 07:23:36.11184+00', 123, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2959, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:11.686047+00', 69, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2960, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:41.622037+00', 51, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2961, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:44.049263+00', 63, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2962, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:47.994569+00', 58, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2963, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:50.234273+00', 80, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2964, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:53.175574+00', 46, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2965, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:54.923263+00', 95, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2966, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:56.71264+00', 176, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2967, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:58.471949+00', 102, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2968, X'7ffec4ec5c3ce00fbbcee7e71fe7324f71b64bac7ea0ee87ded13077e9c0a1fd', TIMESTAMP WITH TIME ZONE '2022-12-19 07:26:13.740303+00', 17, 0, TRUE, 'ad-hoc', 'Assert failed: (string? collection)', 1, NULL, NULL, NULL, 2, NULL), +(2969, X'5a889e2135fc6fd079838209a5f720112ab2dc1447ca1a5313720f20b6cb7cc7', TIMESTAMP WITH TIME ZONE '2022-12-19 07:26:21.062994+00', 48, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2970, X'747e453d4e989a27bf6fdea22dc78c4514771b00cc707d2be708217b49d83d06', TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:02.724461+00', 177, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2971, X'747e453d4e989a27bf6fdea22dc78c4514771b00cc707d2be708217b49d83d06', TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:27.957668+00', 105, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2972, X'747e453d4e989a27bf6fdea22dc78c4514771b00cc707d2be708217b49d83d06', TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:29.44508+00', 99, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2973, X'747e453d4e989a27bf6fdea22dc78c4514771b00cc707d2be708217b49d83d06', TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:30.52791+00', 108, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2974, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:00.146546+00', 164, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2975, X'617416cc2228fb3c110a9fca9a2b699ffedb35a72755dcead7454769e4daa6db', TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:01.606388+00', 93, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2976, X'c4a82cac7bb75e09db7a44c4f288206fb2bee0d30c17c5164bfbc4c740ad8163', TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:05.869296+00', 137, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2977, X'e39bb41913b5152129e5edd728da35a02a8a7c5a5348cdd6a01af173887f4406', TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:24.599897+00', 149, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2978, X'efbd4efe72dc5946f3a6f41ad2cbd1cc3f89378e250e30a51f00a94d2bb20aca', TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:51.018774+00', 98, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2979, X'4df951a6c32af377ab7c8a82ac7f8eaf07832b3f3fdc94cc10d43a95bb4fcab6', TIMESTAMP WITH TIME ZONE '2022-12-19 07:29:14.666021+00', 81, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2980, X'efbd4efe72dc5946f3a6f41ad2cbd1cc3f89378e250e30a51f00a94d2bb20aca', TIMESTAMP WITH TIME ZONE '2022-12-19 07:29:30.175523+00', 48, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2981, X'f5ff8623cdcea4ab2aaad21ee3b616832e8d55e8aa623aa4aa6d947d3d76f6c6', TIMESTAMP WITH TIME ZONE '2022-12-19 07:29:48.159301+00', 186, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2982, X'0a36ce7a03a38389628d2f37eca7ca31ee5d2216982b79085ffe7b1de6e7d9a0', TIMESTAMP WITH TIME ZONE '2022-12-19 07:30:15.953517+00', 45, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2983, X'552cb418c1c15cc9d2560a0eaededb97389b6b4134db6350ba038a2c27fc10cc', TIMESTAMP WITH TIME ZONE '2022-12-19 07:31:00.481349+00', 61, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2984, X'96a2b7d62476169f4ecf1883da7ac9b88785f8f6e4ad47731831cc944e881c71', TIMESTAMP WITH TIME ZONE '2022-12-19 07:32:43.395022+00', 77, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2985, X'e730835e4519f4ee84639c5f6e837cd815947449336f50d367b21036b08ea303', TIMESTAMP WITH TIME ZONE '2022-12-19 07:32:50.004663+00', 291, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2986, X'b49a9742f90518ebc69e5c85aa8f155dd8f32175b46b265e39022a394a708afc', TIMESTAMP WITH TIME ZONE '2022-12-19 07:33:04.276943+00', 72, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2987, X'96a2b7d62476169f4ecf1883da7ac9b88785f8f6e4ad47731831cc944e881c71', TIMESTAMP WITH TIME ZONE '2022-12-19 07:33:14.179145+00', 119, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2988, X'ad98952a5db3ce23d1181578af284a64e9f97f8393aa39b5cd1a9c241bf866b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:34:36.542965+00', 145, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(2989, X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', TIMESTAMP WITH TIME ZONE '2022-12-19 07:35:28.451408+00', 146, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(2990, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.227114+00', 240, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(2991, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.234658+00', 269, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(2992, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.227209+00', 649, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(2993, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.514327+00', 462, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(2994, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.586117+00', 542, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(2995, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.966861+00', 365, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2996, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.892379+00', 541, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(2997, X'064d6e1da5a9ce521346e3a06a629c6ce5f211a1bb443db2b7c402c29ae2b079', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:13.035143+00', 71, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(2998, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:18.957645+00', 88, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(2999, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:18.943472+00', 115, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3000, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:18.991142+00', 86, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3001, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.058233+00', 55, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3002, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.202932+00', 64, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3003, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.236494+00', 57, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3004, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.198507+00', 97, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3005, X'712de5b3aa78b9b34be459212b8ead7405aae5e4eba595a8073c0833ad23b83f', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:23.780954+00', 57, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(3006, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:59.248346+00', 42, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3007, X'988f3b77596ddf0f529b8bf2dca86e35738b7e953347d95a0c76566beddddd5a', TIMESTAMP WITH TIME ZONE '2022-12-19 07:39:24.888206+00', 101, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3008, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-19 07:39:32.154383+00', 73, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3009, X'c430e738aa0d18637bd1166c093c7f197406a47b1448c6bb031b9d4231fe83fb', TIMESTAMP WITH TIME ZONE '2022-12-19 07:42:10.783285+00', 114, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3010, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 07:45:57.880471+00', 136, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3011, X'4aae9c6b1560ceac9e5b8a2197fd1e95de1e763a160c743370cbd58e440c37b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:46:15.162197+00', 91, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3012, X'16804c5e52bd7d42bcaaa588842f12085e3bca388c8088ca2ab7933b2b4e0f6f', TIMESTAMP WITH TIME ZONE '2022-12-19 07:46:57.407786+00', 93, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3013, X'4aae9c6b1560ceac9e5b8a2197fd1e95de1e763a160c743370cbd58e440c37b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:06.43488+00', 110, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3014, X'16804c5e52bd7d42bcaaa588842f12085e3bca388c8088ca2ab7933b2b4e0f6f', TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:12.532574+00', 62, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3015, X'4aae9c6b1560ceac9e5b8a2197fd1e95de1e763a160c743370cbd58e440c37b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:15.453772+00', 104, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3016, X'4aae9c6b1560ceac9e5b8a2197fd1e95de1e763a160c743370cbd58e440c37b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:17.375257+00', 70, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3017, X'9daef5c85de387b303362cd424860efb810dc74ce91ccefefa08605b79cf1e7b', TIMESTAMP WITH TIME ZONE '2022-12-19 07:48:07.958662+00', 112, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3018, X'1d4da3ec8899bebb11b174abfecc3405b18d5807111e128b398a5f4b7b994e17', TIMESTAMP WITH TIME ZONE '2022-12-19 07:49:04.858975+00', 78, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3019, X'3a0279e76c29f0aea86aa1c81b6af20ea512e0b0f2ebcbd6521a5a9c5552c628', TIMESTAMP WITH TIME ZONE '2022-12-19 07:49:11.585356+00', 41, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3020, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-19 07:50:46.632699+00', 10029, 0, TRUE, 'question', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 11, NULL, NULL, 2, NULL), +(3021, X'682b7522e6d42a9039c2206cf4c38f2d8f9589b7e5e1f8cc30ffbc6e0d543056', TIMESTAMP WITH TIME ZONE '2022-12-19 07:52:18.780185+00', 220, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3022, X'281a81f51db57dcfa7ffb4a43888604a94d51e32a4854de5d934a28fea654ab9', TIMESTAMP WITH TIME ZONE '2022-12-19 07:53:17.841476+00', 46, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3023, X'477c0ee56ca69ca6dcfc8193c6f3186a61ea3b001a3f8d0af2ac857461ac487f', TIMESTAMP WITH TIME ZONE '2022-12-19 07:53:24.997852+00', 74, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3024, X'281a81f51db57dcfa7ffb4a43888604a94d51e32a4854de5d934a28fea654ab9', TIMESTAMP WITH TIME ZONE '2022-12-19 07:53:36.57933+00', 48, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3025, X'281a81f51db57dcfa7ffb4a43888604a94d51e32a4854de5d934a28fea654ab9', TIMESTAMP WITH TIME ZONE '2022-12-19 07:54:23.97212+00', 56, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3026, X'c6fb74e148e4a5373a50fe81ef7b680b9048ceafb5cd05ec96d411969702488a', TIMESTAMP WITH TIME ZONE '2022-12-19 07:54:53.299026+00', 32, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3027, X'ade981c4f89b6c23d23bd9dde087e194222815fc9857be0b6c0c306cb2a86279', TIMESTAMP WITH TIME ZONE '2022-12-19 07:55:58.916332+00', 53, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3028, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:25.671135+00', 75, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(3029, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:38.069506+00', 37, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(3030, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.497995+00', 43, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3031, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.493904+00', 59, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3032, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.847641+00', 130, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3033, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.831006+00', 170, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3034, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.852142+00', 168, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3035, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.818441+00', 229, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3036, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.900638+00', 216, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3037, X'4594e0a5f4d60c29601004db656c07e1831545300510b90928749cc37296f607', TIMESTAMP WITH TIME ZONE '2022-12-19 07:58:55.523989+00', 51, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3038, X'fc463168a0f7b2a959730f9669d5be37147dbcfb40686e0fd8e77c225ac71f99', TIMESTAMP WITH TIME ZONE '2022-12-19 07:59:52.045269+00', 37, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3039, X'295f017106d7e8f320f47d75116dd43e2fdcc5becb8bf06ddf05f41fdf5918ce', TIMESTAMP WITH TIME ZONE '2022-12-19 08:00:09.280636+00', 36, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3040, X'd27db8988326b237e43a56304048644dda88ae9730cffd51d9177c569f769db1', TIMESTAMP WITH TIME ZONE '2022-12-19 08:00:14.048821+00', 36, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3041, X'f2145fa3f34fd7ad8b8236189030ee3bab361d76869d98f94b9d79f3da141989', TIMESTAMP WITH TIME ZONE '2022-12-19 08:00:30.858771+00', 48, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3042, X'4f59320c7f693b02c20bcc05298d8a4b40ec10158c0bd0e5267ff026db48d846', TIMESTAMP WITH TIME ZONE '2022-12-19 08:01:00.244093+00', 30, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3043, X'4aae9c6b1560ceac9e5b8a2197fd1e95de1e763a160c743370cbd58e440c37b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:02:11.489164+00', 65, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3044, X'cad422564f93ab804815483e8f263bb59e2e9989c5f32fdcc6ed442db3ae35b4', TIMESTAMP WITH TIME ZONE '2022-12-19 08:11:37.586508+00', 55, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3045, X'1c4186a9d927d128518e78808f34cabd9e1fbf09274e3f52e1cd37d1dcf77472', TIMESTAMP WITH TIME ZONE '2022-12-19 08:12:15.556809+00', 76, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3046, X'8cd9f999ef416b2c6271dcb3456fe11462dc4a29561fcfe4b14667470ec57fe7', TIMESTAMP WITH TIME ZONE '2022-12-19 08:13:14.965923+00', 58, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3047, X'8cd9f999ef416b2c6271dcb3456fe11462dc4a29561fcfe4b14667470ec57fe7', TIMESTAMP WITH TIME ZONE '2022-12-19 08:13:33.558154+00', 35, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3048, X'7e4b162b17840fa25f2a67ef6fb239e4d51d75dda3d549dac77fc6e0351b90a8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:15:13.066498+00', 49, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3049, X'f270607a315da299e32779aac48e233cfd46c8a40a04bc5d23094aad0e69e7aa', TIMESTAMP WITH TIME ZONE '2022-12-19 08:15:34.171702+00', 38, 0, TRUE, 'ad-hoc', 'Command failed with error 16410 (Location16410): ''Invalid $project :: caused by :: FieldPath field names may not start with ''$''.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671437727, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: FieldPath field names may not start with ''$''.", "code" : 16410, "codeName" : "Location16410", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671437727, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "5uBqgorh5Y2uo6HK552+dNE3fb4=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(3050, X'fba0552c553e4e54f4b4e107b5f405183a0195cd021446ee8d032299e0b4d92a', TIMESTAMP WITH TIME ZONE '2022-12-19 08:15:44.780704+00', 77, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3051, X'7e4b162b17840fa25f2a67ef6fb239e4d51d75dda3d549dac77fc6e0351b90a8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:15:50.647478+00', 54, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3052, X'd54b935d7591d7a800fb7a0710b34c97141fcba954fe9c5f935400b5c4d0bc37', TIMESTAMP WITH TIME ZONE '2022-12-19 08:17:55.77772+00', 81, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3053, X'7ce3f70275e343d8dffad844683c8d4fbd4d6ef82e19bd9a3cf3dc2a43c8352d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:18:36.406141+00', 96, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3054, X'69184067e0a0eddc387e8fee3f1bb7136d49990887acf509607e3905be5feffb', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:09.743202+00', 52, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3055, X'69184067e0a0eddc387e8fee3f1bb7136d49990887acf509607e3905be5feffb', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:17.29682+00', 45, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3056, X'44f9f961b3f146437a129b573973a5177494d08f57a4f5d90988d4c8da904542', TIMESTAMP WITH TIME ZONE '2022-12-19 08:19:41.632231+00', 43, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3057, X'532ca3555b107743d30362c4aa1a635d81b63803e47acb13ca0cd499b8c90a81', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:05.175968+00', 81, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3058, X'44f9f961b3f146437a129b573973a5177494d08f57a4f5d90988d4c8da904542', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:15.918372+00', 73, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3059, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.73063+00', 458, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3060, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.73063+00', 466, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(3061, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.735271+00', 467, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(3062, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.850777+00', 497, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3063, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.765359+00', 583, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3064, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.842062+00', 511, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(3065, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.833548+00', 516, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(3066, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.090614+00', 276, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3067, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.934472+00', 425, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3068, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.975124+00', 571, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3069, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:25.961533+00', 571, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(3070, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.317671+00', 411, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3071, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.18249+00', 619, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3072, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.18249+00', 629, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3073, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.182122+00', 643, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(3074, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.133366+00', 736, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3075, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:14.991565+00', 167, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3076, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.084229+00', 102, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3077, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.08922+00', 136, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3078, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:14.962468+00', 439, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3079, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:14.962468+00', 444, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3080, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:14.971267+00', 468, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3081, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:14.971267+00', 470, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3082, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.12829+00', 384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3083, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.21321+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3084, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.209529+00', 309, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3085, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.119491+00', 395, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3086, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.223012+00', 305, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3087, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.176157+00', 406, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3088, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.100845+00', 476, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3089, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.413526+00', 203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3090, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.415112+00', 262, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3091, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.63755+00', 177, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3092, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.59919+00', 561, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3093, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.757294+00', 457, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3094, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.7749+00', 546, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3095, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.7749+00', 559, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3096, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.694261+00', 721, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3097, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.694261+00', 733, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3098, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.783221+00', 722, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3099, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.763939+00', 743, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3100, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.842052+00', 805, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3101, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.832144+00', 929, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3102, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.856295+00', 922, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3103, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.714241+00', 1159, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3104, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.792652+00', 1112, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3105, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.737401+00', 1205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3106, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.850374+00', 1083, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3107, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:25.850374+00', 1095, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(3108, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.329735+00', 273, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3109, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.482271+00', 700, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3110, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.752982+00', 492, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3111, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.752982+00', 498, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3112, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.784619+00', 554, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3113, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.480629+00', 925, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3114, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.534926+00', 873, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3115, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.956163+00', 717, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3116, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.956163+00', 706, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3117, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.555151+00', 1119, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3118, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.475947+00', 1192, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3119, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.475947+00', 1209, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(3120, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.059613+00', 659, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3121, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.555151+00', 1222, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(3122, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.029767+00', 813, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(3123, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.029767+00', 793, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3124, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:28.867605+00', 1062, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3125, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.194898+00', 942, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3126, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.345921+00', 977, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3127, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.081954+00', 312, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(3128, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.200665+00', 208, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3129, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.097788+00', 331, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3130, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.110125+00', 382, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3131, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.151438+00', 345, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(3132, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.110125+00', 385, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(3133, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.108596+00', 433, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(3134, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.100327+00', 436, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(3135, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.396091+00', 221, 14, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3136, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.125012+00', 559, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3137, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.125012+00', 564, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(3138, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.338131+00', 411, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3139, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.347124+00', 420, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3140, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.346542+00', 466, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3141, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.369082+00', 466, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3142, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.194224+00', 659, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3143, X'44f9f961b3f146437a129b573973a5177494d08f57a4f5d90988d4c8da904542', TIMESTAMP WITH TIME ZONE '2022-12-19 08:24:53.420015+00', 67, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3144, X'63dc263429871a662a09fa8e199404869429142c436134a5163cc48fdac1dbb9', TIMESTAMP WITH TIME ZONE '2022-12-19 08:25:03.074618+00', 45, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3145, X'455edd72615dd953ae4860ee791cee0f98b325b19ea9a89d7c450c1e630b80a6', TIMESTAMP WITH TIME ZONE '2022-12-19 08:25:11.040484+00', 36, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3146, X'652120cf761dce215152f174ed0741a9d3a4c8f6f042f5d8905c1cbdd9854022', TIMESTAMP WITH TIME ZONE '2022-12-19 08:25:14.963813+00', 5, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(3147, X'c5b58b17870156f2815c4353fe11b5947f306e2c59560eb69dcb8feb3a392f07', TIMESTAMP WITH TIME ZONE '2022-12-19 08:25:20.750762+00', 54, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3148, X'b3a72b1b93bbc42ccaf0dd5619a7be92794e75de27cee0e6ef45f9e90f612522', TIMESTAMP WITH TIME ZONE '2022-12-19 08:25:54.379039+00', 43, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3149, X'6691d81c336d20ba8f828d05934c14da503628ffb867b4b0f22b872544bb2748', TIMESTAMP WITH TIME ZONE '2022-12-19 08:26:16.003439+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3150, X'0659bca79676095c766c0485eccabb39c363842b15a7d84e95d3ed3706830a18', TIMESTAMP WITH TIME ZONE '2022-12-19 08:26:21.778299+00', 82, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3151, X'ba53dc44260acf89f287d991932eaa3d4ee7f0f8e0555e7a444cfb3d800860c2', TIMESTAMP WITH TIME ZONE '2022-12-19 08:27:16.925399+00', 38, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3152, X'eb6d46056f7b2d9d2aa51a6f956f5d2233b73df933701adfd7f2044181dee219', TIMESTAMP WITH TIME ZONE '2022-12-19 08:27:55.966286+00', 59, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3153, X'ee082d901bca437e2427a5fba4ed5bc6ec1636580febcb7df9a20add0f9653e8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:28:08.372316+00', 96, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3154, X'6e24eefff8027e4f7f431d445a5f1d566aae4b9ca23e0ed75ee09d334f723ff3', TIMESTAMP WITH TIME ZONE '2022-12-19 08:31:32.97824+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3155, X'736b1e4d4bbc9c1ac62278c07838af12bff4866a8a52f7524afd7b4057ae28c5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:31:42.545923+00', 78, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3156, X'd42683180f7eed1af1fd0b253835d343b132eee1208a82078228d12295fd28ca', TIMESTAMP WITH TIME ZONE '2022-12-19 08:31:50.69925+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3157, X'6e3d835d6e8ca7eca0f07e61b47cd4841d7ce7224863bfc14b2f8cd9cfa08bcc', TIMESTAMP WITH TIME ZONE '2022-12-19 08:32:02.579558+00', 43, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3158, X'66191ae8d2422ce356646c07da0dcf7eb8e41b271fd5626c087a5d5f419903db', TIMESTAMP WITH TIME ZONE '2022-12-19 08:32:26.918502+00', 72, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3159, X'00f80eecdbab3ddd5be5c481d554c05e0535dc701d41822a3f48e9fa13de2e22', TIMESTAMP WITH TIME ZONE '2022-12-19 08:32:36.944934+00', 54, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3160, X'67c2021b693cce83ace5f760d928f139237782fc364d5ce6b0b09e6f71abd94e', TIMESTAMP WITH TIME ZONE '2022-12-19 08:33:17.017276+00', 51, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3161, X'19dc24887a0b009a5ccc6e131ea8d0a8a0e1a67d414e2e52219787fcfe399f74', TIMESTAMP WITH TIME ZONE '2022-12-19 08:34:02.414953+00', 50, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3162, X'd762fc93e5a62e0e47687123a1ac40f85282bfe188a67b9ff5f2edf2a80c1176', TIMESTAMP WITH TIME ZONE '2022-12-19 08:36:13.985247+00', 36, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3163, X'e9996224d072604fb9c614a197524b93bfe9d847d3262f003dc9380ce0985893', TIMESTAMP WITH TIME ZONE '2022-12-19 08:36:19.493882+00', 47, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3164, X'3a6a4973df1c4c6c2f86a1cbda73b5e78a9d09aca2d782b1fdd148aa06638647', TIMESTAMP WITH TIME ZONE '2022-12-19 08:36:34.746089+00', 6, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(3165, X'65d82fabdc53a4c354841bde611d1fa2c2b5fe75dbb05149de4767e11b06f877', TIMESTAMP WITH TIME ZONE '2022-12-19 08:36:44.736986+00', 94, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3166, X'c08b2388fcbb2cb21225a8e43b46dc1baed91f336f4f0ae2b58d22b972a08a6f', TIMESTAMP WITH TIME ZONE '2022-12-19 08:36:49.561384+00', 53, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3167, X'65d82fabdc53a4c354841bde611d1fa2c2b5fe75dbb05149de4767e11b06f877', TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:00.390131+00', 36, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3168, X'd762fc93e5a62e0e47687123a1ac40f85282bfe188a67b9ff5f2edf2a80c1176', TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:13.783447+00', 62, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3169, X'613a02fe3968065e6934f9e180b62590e130052ec6baecbca2088fa6de97e7a8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:42.384082+00', 40, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3170, X'1e2ed7fc881a067004021cbd4a3ed3ddc1820b97318c62eeca688ff4bf4d8fbf', TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:48.114316+00', 58, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3171, X'94fdb81015340dd7a7fc6ca4a935ad3b512140cf46338af34f5ff6d423ab2cde', TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:20.321133+00', 78, 2, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3172, X'd2c51bc5b9277f3b66aabf352b4d23eb0c85d90963d62710b2697aae97462401', TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:30.698188+00', 72, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3173, X'ec53c95b36b8bbf03edbd1c626ca542d68ee4f678f8521b92e76d04bc59c7841', TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:37.345293+00', 60, 2, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3174, X'28fb91736ce3640e607dde0c6cf7d9a0f5db6acd9cdb6ac36295410480b1adcb', TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:45.084928+00', 40, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3175, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.699171+00', 89, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3176, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.686118+00', 122, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3177, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.745317+00', 142, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3178, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.821186+00', 98, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3179, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.822589+00', 120, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3180, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.840813+00', 135, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3181, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.988053+00', 107, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3182, X'9305683eaf35822d88ffc9357e7218f576133856841e290d71de49dff63b346c', TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:54.02752+00', 71, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3183, X'aa6aa3076814cad386a80a87eb36e038e1c28986ce04cc04fc44f4a726485f35', TIMESTAMP WITH TIME ZONE '2022-12-19 08:46:58.934548+00', 48, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3184, X'ac838b6463517e6ab23a56c896530ae3c686b8d9880b17405b99a45cf013c94a', TIMESTAMP WITH TIME ZONE '2022-12-19 08:48:34.019879+00', 46, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3185, X'ac838b6463517e6ab23a56c896530ae3c686b8d9880b17405b99a45cf013c94a', TIMESTAMP WITH TIME ZONE '2022-12-19 08:49:38.795939+00', 57, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3186, X'409ad527645e26235a7428d0f19581a768604175d1196d5a801921240e70d1d6', TIMESTAMP WITH TIME ZONE '2022-12-19 08:54:35.33471+00', 12, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3187, X'81418d16269b6e3078620943cf5723c2a3832b2d7efebda30c630ab0e6571d0d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:55:46.335185+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '']''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3188, X'81418d16269b6e3078620943cf5723c2a3832b2d7efebda30c630ab0e6571d0d', TIMESTAMP WITH TIME ZONE '2022-12-19 08:55:49.868706+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '']''.', 1, NULL, NULL, NULL, 2, NULL), +(3189, X'5c1971eb012fd26ced295a70451a0ee9100fb29aa0a1dfb434e617c966928824', TIMESTAMP WITH TIME ZONE '2022-12-19 08:56:01.613115+00', 1556, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3190, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:16.929499+00', 228, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3191, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:16.929499+00', 220, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3192, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:16.816506+00', 353, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3193, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:16.777873+00', 403, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3194, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:16.938171+00', 299, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3195, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:16.938171+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3196, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:16.822869+00', 423, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3197, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.093067+00', 476, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3198, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.247254+00', 325, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3199, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.120002+00', 558, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3200, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.262291+00', 430, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3201, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.137235+00', 604, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3202, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.153539+00', 690, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3203, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.181881+00', 671, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3204, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.290606+00', 587, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3205, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.32024+00', 571, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3206, X'88b438f62c3d6504b432a3b10566c871f2f3d257bbfbfe6d2dee82ea8d7c50bc', TIMESTAMP WITH TIME ZONE '2022-12-19 09:18:45.867601+00', 71, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3207, X'fd438647ebe6ebfdd8f17e44ca4d1dab14b37ba4d7c97cb8f13a3145a2933bf5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:21:27.40624+00', 36, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3208, X'30d5b055e6219cca0a32576846b38d5dbdb77db40ec67fdb386e61ce3f76894f', TIMESTAMP WITH TIME ZONE '2022-12-19 09:21:43.886726+00', 36, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3209, X'41432339a7c25d3aacd35b0598b1fd463feb02d2d51dd5d9e2b47be89558a0ce', TIMESTAMP WITH TIME ZONE '2022-12-19 09:22:11.228048+00', 44, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3210, X'30d5b055e6219cca0a32576846b38d5dbdb77db40ec67fdb386e61ce3f76894f', TIMESTAMP WITH TIME ZONE '2022-12-19 09:22:27.831176+00', 59, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3211, X'30d5b055e6219cca0a32576846b38d5dbdb77db40ec67fdb386e61ce3f76894f', TIMESTAMP WITH TIME ZONE '2022-12-19 09:22:32.698604+00', 38, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3212, X'4315ad17cbe98b8b6a6074029e692d430e2a3d4aac532a3223fbfb8c13a86db2', TIMESTAMP WITH TIME ZONE '2022-12-19 09:22:38.077789+00', 61, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3213, X'4315ad17cbe98b8b6a6074029e692d430e2a3d4aac532a3223fbfb8c13a86db2', TIMESTAMP WITH TIME ZONE '2022-12-19 09:22:48.442986+00', 32, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3214, X'b9d3641f099521b4a276b4707b652c10ff95227c5032b87c9fde8c442be26c89', TIMESTAMP WITH TIME ZONE '2022-12-19 09:23:14.903733+00', 31, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3215, X'5d535af3e9a623777a91f3c614f46cf4b08bce71e1b9382c5ae53eac125ff808', TIMESTAMP WITH TIME ZONE '2022-12-19 09:23:21.539627+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3216, X'4315ad17cbe98b8b6a6074029e692d430e2a3d4aac532a3223fbfb8c13a86db2', TIMESTAMP WITH TIME ZONE '2022-12-19 09:23:24.715226+00', 36, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3217, X'e9980a5350ffd3a4ff3d9ccf53b3abcbfd240dab0b0216634f1a317df378f3bd', TIMESTAMP WITH TIME ZONE '2022-12-19 09:23:45.128322+00', 99, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3218, X'a192332e391cfb6d9938a883fcdd3f3a43b5a4fa556c04dddf52626c6d91b105', TIMESTAMP WITH TIME ZONE '2022-12-19 09:24:05.425587+00', 65, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3219, X'd9537ddea04f02424363ed091dae7b52de3d9f803f87af8e8d72744880a7e6e8', TIMESTAMP WITH TIME ZONE '2022-12-19 09:24:17.304663+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3220, X'e9980a5350ffd3a4ff3d9ccf53b3abcbfd240dab0b0216634f1a317df378f3bd', TIMESTAMP WITH TIME ZONE '2022-12-19 09:24:20.636795+00', 37, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3221, X'1a02ca21447a613e03ba71aa6945e9e65364db8eb99f5f8cf8f02f5544951e57', TIMESTAMP WITH TIME ZONE '2022-12-19 09:25:19.057332+00', 60, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3222, X'412690e09c0d5a7326a06ac858ac773ff8e7121273b9fb8d736ebbb77b9b7b3b', TIMESTAMP WITH TIME ZONE '2022-12-19 09:25:29.737167+00', 44, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3223, X'fa87e93a5aeb69eecbcb9585f75699847b4711537372d309accfa575c01a5235', TIMESTAMP WITH TIME ZONE '2022-12-19 09:26:07.128974+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3224, X'fa87e93a5aeb69eecbcb9585f75699847b4711537372d309accfa575c01a5235', TIMESTAMP WITH TIME ZONE '2022-12-19 09:26:09.779403+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3225, X'aee243f382d4595b386c01c6c73b58a06f4483f431cb2c8384ca684eb046ad11', TIMESTAMP WITH TIME ZONE '2022-12-19 09:26:21.638219+00', 44, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3226, X'c76607b23dc83e49cf0e6fc572de0ffa4bad8e9322167e370c1aff20f7c54b5f', TIMESTAMP WITH TIME ZONE '2022-12-19 09:26:36.177739+00', 38, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3227, X'dbe5af7d440b62677a19930fd6501628b7e482122e249e0de60c297a99bd363e', TIMESTAMP WITH TIME ZONE '2022-12-19 09:26:56.363866+00', 37, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3228, X'd0edfcaa1b445e26e38727f5e4824d974181511bd45db7f0f82d4d573980665c', TIMESTAMP WITH TIME ZONE '2022-12-19 09:27:41.029638+00', 48, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3229, X'd0edfcaa1b445e26e38727f5e4824d974181511bd45db7f0f82d4d573980665c', TIMESTAMP WITH TIME ZONE '2022-12-19 09:27:57.486874+00', 33, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3230, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-19 09:28:58.120415+00', 43, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3231, X'303434b623e611bdc7a89627232aed22e6901c3cf6198a308954a003846d5b65', TIMESTAMP WITH TIME ZONE '2022-12-19 09:29:17.582173+00', 39, 5, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3232, X'f93b78a676023f8f058c1b4318f9a76ab0d89a3d4f02d487832b766ea44b99e3', TIMESTAMP WITH TIME ZONE '2022-12-19 09:29:59.093367+00', 71, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3233, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-19 09:30:15.906481+00', 78, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3234, X'21c736d6303eccd0c1fd85a0278593be03427d916cc810863edfc62a5f08bc20', TIMESTAMP WITH TIME ZONE '2022-12-19 09:30:23.255656+00', 39, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(3235, X'f691a8e652045da32b7d1cbe53ee374419805789b279c81c5eb7c2b506529c00', TIMESTAMP WITH TIME ZONE '2022-12-19 09:31:28.900499+00', 72, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3236, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-19 09:32:02.027165+00', 78, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3237, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 09:32:25.075603+00', 88, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3238, X'd0204dfafde5436a0afedf676ec80c8ad4f31c595eb80558785afa2cf60951c5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:34:49.476457+00', 58, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(3239, X'33f97ef115d89053bb52b2d52037adb2ccb45fd21cb4465a4bfaaa2ac7d02553', TIMESTAMP WITH TIME ZONE '2022-12-19 09:35:28.197234+00', 77, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3240, X'ffa29894318342d64318c10d2511192bc69626117def472a6e3fb8a4c21f343e', TIMESTAMP WITH TIME ZONE '2022-12-19 09:42:33.84996+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3241, X'4995ebf6c8b01bc59afe24c0a7619f47fd376f1cf7be3b8752a2cf9e4c34d0fb', TIMESTAMP WITH TIME ZONE '2022-12-19 09:42:40.856153+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3242, X'aba0c7d1de14342eec996a6fb8bffac2c7a5c3eb582ea6a61f61c41cc9cafd14', TIMESTAMP WITH TIME ZONE '2022-12-19 09:43:37.252861+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3243, X'aba0c7d1de14342eec996a6fb8bffac2c7a5c3eb582ea6a61f61c41cc9cafd14', TIMESTAMP WITH TIME ZONE '2022-12-19 09:43:39.03524+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3244, X'e852efba524c7e0b20840fd5e0570a5857481783a5961c138d361edeaf1b21cd', TIMESTAMP WITH TIME ZONE '2022-12-19 09:44:31.525161+00', 61, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3245, X'2f10e42d20630d3e5e9afccc3510cefbefe170c7eba2fa0b0dbd9508bafc1f67', TIMESTAMP WITH TIME ZONE '2022-12-19 09:46:13.54446+00', 98, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3246, X'b10b4e5e41c734e7d742b841e975a1fa34352573650180c8aa65be4cc2038e22', TIMESTAMP WITH TIME ZONE '2022-12-19 09:46:17.28037+00', 4, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3247, X'25ba5542d40c67ad842adf123c84823ef6265bedd6844db8001c548dd5b30bff', TIMESTAMP WITH TIME ZONE '2022-12-19 09:46:22.109529+00', 72, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3248, X'afed181eff818fabf06cd6c6d2667a0b816caeffb7b069e9289b8fffb0c89acb', TIMESTAMP WITH TIME ZONE '2022-12-19 09:51:18.118312+00', 32, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3249, X'f3fb4c667dac5e3dd9da43198dbb5ba81e599f23e64a85d466ab6927b2eb2075', TIMESTAMP WITH TIME ZONE '2022-12-19 09:51:44.196018+00', 59, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3250, X'70d5ef6933beccf2b5bb4a5e1895896d2928596d67ab9eafb313811f75b418d2', TIMESTAMP WITH TIME ZONE '2022-12-19 09:52:05.678733+00', 45, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3251, X'af7b3280ce0c84e85ab3771a0b8adf29b60606111601fe49426bdbe929925a45', TIMESTAMP WITH TIME ZONE '2022-12-19 09:52:10.183429+00', 73, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3252, X'd0204dfafde5436a0afedf676ec80c8ad4f31c595eb80558785afa2cf60951c5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:52:58.472037+00', 49, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(3253, X'afed181eff818fabf06cd6c6d2667a0b816caeffb7b069e9289b8fffb0c89acb', TIMESTAMP WITH TIME ZONE '2022-12-19 09:53:32.656121+00', 35, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3254, X'afed181eff818fabf06cd6c6d2667a0b816caeffb7b069e9289b8fffb0c89acb', TIMESTAMP WITH TIME ZONE '2022-12-19 09:54:48.948441+00', 41, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3255, X'd4845d21bf04cd52cc1416580c78d895ec6899f120509d2daf79daf1378ae295', TIMESTAMP WITH TIME ZONE '2022-12-19 09:55:00.227902+00', 94, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3256, X'd0204dfafde5436a0afedf676ec80c8ad4f31c595eb80558785afa2cf60951c5', TIMESTAMP WITH TIME ZONE '2022-12-19 09:55:34.536074+00', 33, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(3257, X'8c602f6c06e6bb70a9c80c4b829d85a80984f8a4ff86027c3f535b5ba9142cca', TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:19.831667+00', 113, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3258, X'8c602f6c06e6bb70a9c80c4b829d85a80984f8a4ff86027c3f535b5ba9142cca', TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:21.025305+00', 38, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3259, X'8c602f6c06e6bb70a9c80c4b829d85a80984f8a4ff86027c3f535b5ba9142cca', TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:30.504684+00', 73, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3260, X'8c602f6c06e6bb70a9c80c4b829d85a80984f8a4ff86027c3f535b5ba9142cca', TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:31.490237+00', 53, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3261, X'b8727822d2443e9f56b5dc3afae31b2b2c7e37db24dd946724440cc314daf0cb', TIMESTAMP WITH TIME ZONE '2022-12-19 09:59:08.98513+00', 45, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3262, X'c160a8b1ae570126b33b308ffd4fe1cfaddcb1b4ed3d33532830228b22250091', TIMESTAMP WITH TIME ZONE '2022-12-19 09:59:21.679729+00', 80, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3263, X'5565d91ffa05e1f6f74cf7b4e59a13038a3ee0143f5c62dd3e67c4365589dfec', TIMESTAMP WITH TIME ZONE '2022-12-19 10:00:11.403082+00', 49, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3264, X'9c471f40cda8f372aa06bf36791d54814f407d2357f4002fab98cf8974398bfd', TIMESTAMP WITH TIME ZONE '2022-12-19 10:00:29.099713+00', 59, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3265, X'db1cdbdeadc6a5a48133f26e7a81dafad99857957587c29a1f292a5e9a905dac', TIMESTAMP WITH TIME ZONE '2022-12-19 10:03:35.98734+00', 66, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3266, X'21fa419ff2841eaf390731d3219b86e6e1d0e7f1533a1a0f455aa4f45382882e', TIMESTAMP WITH TIME ZONE '2022-12-19 10:11:02.084763+00', 43, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3267, X'351aca616d1f583d8c3da7fdc391f1a417fee393a6c7c79474d573d3c9632e2c', TIMESTAMP WITH TIME ZONE '2022-12-19 10:13:12.960553+00', 58, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3268, X'21fa419ff2841eaf390731d3219b86e6e1d0e7f1533a1a0f455aa4f45382882e', TIMESTAMP WITH TIME ZONE '2022-12-19 10:13:33.635964+00', 32, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3269, X'1a76d2133ca0e34a329a90f6d606b93410d207c3e66c6fa80b0df438d9eeea3b', TIMESTAMP WITH TIME ZONE '2022-12-19 10:13:52.910133+00', 63, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3270, X'578f537dab0ca62506ddfa5586ded943cd551765d24322376d6a9c5361348740', TIMESTAMP WITH TIME ZONE '2022-12-19 10:14:01.833224+00', 81, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3271, X'd1c11cd8ff4f2a3a19738e3cdaca597a5e9ff5cdc69de191f783f6ad6235d6b4', TIMESTAMP WITH TIME ZONE '2022-12-19 10:16:21.875847+00', 64, 7, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3272, X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', TIMESTAMP WITH TIME ZONE '2022-12-19 10:18:26.700047+00', 54, 7, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3273, X'17e216f605b61737d7708bf175373b764f5346ccdfbf4a933bf35e0f27b6b01f', TIMESTAMP WITH TIME ZONE '2022-12-19 10:18:30.790542+00', 39, 5, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3274, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:53.680196+00', 89, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3275, X'f93b78a676023f8f058c1b4318f9a76ab0d89a3d4f02d487832b766ea44b99e3', TIMESTAMP WITH TIME ZONE '2022-12-19 10:20:55.849719+00', 75, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3276, X'f192d9e0369b33dcecf8b0575507251e5a74171b2a84dc2ef444b6219189c6dc', TIMESTAMP WITH TIME ZONE '2022-12-19 10:21:33.32816+00', 43, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3277, X'85134d0c4451d1f1467ff9e4a6828565319cd570551bfebb8a1328078033c04c', TIMESTAMP WITH TIME ZONE '2022-12-19 10:21:42.189304+00', 62, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3278, X'85134d0c4451d1f1467ff9e4a6828565319cd570551bfebb8a1328078033c04c', TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:08.725736+00', 76, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3279, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:30.109224+00', 69, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3280, X'85134d0c4451d1f1467ff9e4a6828565319cd570551bfebb8a1328078033c04c', TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:33.683772+00', 41, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3281, X'8ad1bdf43dc0cfd483da16660297906d9b631d8bb66b489e7487d4591092841c', TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:37.199469+00', 77, 8, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3282, X'85134d0c4451d1f1467ff9e4a6828565319cd570551bfebb8a1328078033c04c', TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:45.875506+00', 125, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3283, X'f192d9e0369b33dcecf8b0575507251e5a74171b2a84dc2ef444b6219189c6dc', TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:57.339325+00', 49, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3284, X'36a4f389353a3dc810f863c8dc0e77317488cabbd776108be8cf1820138fe163', TIMESTAMP WITH TIME ZONE '2022-12-19 10:28:40.306361+00', 58, 13, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3285, X'ee71f48dc8eece50bca60fa0e64467eeec08c19476d8503e08a3dcffff3e2ccc', TIMESTAMP WITH TIME ZONE '2022-12-19 10:28:58.431397+00', 40, 13, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3286, X'16a104361b772de031ee7f1346652fdbef1dd95739ecfd8dde422ba70f8ca3c0', TIMESTAMP WITH TIME ZONE '2022-12-19 10:29:14.024467+00', 78, 12, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3287, X'fcd6cea773262908178fcfbb401f33b7a800e72a9c23f2bf421cd397c54a5d5b', TIMESTAMP WITH TIME ZONE '2022-12-19 10:31:52.347223+00', 50, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3288, X'80f114bd64f4aac75c9e40ec5f2639beefeaa37955db5e155892297f13095eb4', TIMESTAMP WITH TIME ZONE '2022-12-19 10:32:12.12735+00', 48, 12, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3289, X'a0d253af06e6ecd3736e80e0ab74a20be76c0f1626e362c33aa83581c630ed37', TIMESTAMP WITH TIME ZONE '2022-12-19 10:35:30.596967+00', 53, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3290, X'a0d253af06e6ecd3736e80e0ab74a20be76c0f1626e362c33aa83581c630ed37', TIMESTAMP WITH TIME ZONE '2022-12-19 10:36:34.624857+00', 40, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3291, X'3318b906776515c942cf8d5d0698fdcf46d898382a6b39cc7ba939a87f805fe4', TIMESTAMP WITH TIME ZONE '2022-12-19 10:37:18.80603+00', 30, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3292, X'3b256d54597c624b415f72bf7b031f9573761f1ec0132a1b611a564fff8a2a02', TIMESTAMP WITH TIME ZONE '2022-12-19 10:37:36.021587+00', 88, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3293, X'15b6387e165db3dda148cbcd7ed278e73047540d8c65fbafdc1453f824ee0f5b', TIMESTAMP WITH TIME ZONE '2022-12-19 10:37:41.428848+00', 57, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3294, X'b78ef5903488e566891d7937fa8027f5bddca16f1796527ab6490d527b285dd1', TIMESTAMP WITH TIME ZONE '2022-12-19 10:39:04.711258+00', 46, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3295, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.748438+00', 76, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3296, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.78307+00', 60, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3297, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.750286+00', 117, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3298, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.769298+00', 119, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3299, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.794945+00', 109, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3300, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.809957+00', 99, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3301, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.776403+00', 139, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3302, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 10:48:23.326781+00', 117, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3303, X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', TIMESTAMP WITH TIME ZONE '2022-12-19 10:48:48.712389+00', 83, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3304, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-19 10:49:24.847691+00', 36, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(3305, X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', TIMESTAMP WITH TIME ZONE '2022-12-19 10:52:01.621685+00', 61, 7, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3306, X'cf0e98a19acb5e32987cee5f9e7f14c165f881336988eab6c5f4363e2d577ca8', TIMESTAMP WITH TIME ZONE '2022-12-19 10:52:31.607324+00', 40, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3307, X'ce3630b5efbf8b2aad1ba812dfd20e4cbd2e29be1c6d18be80d01d6290532757', TIMESTAMP WITH TIME ZONE '2022-12-19 10:52:46.297766+00', 36, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3308, X'79a4d08c877a1c439dde7a26feb3282ab90b1f147da76a91d7bbc93637ee473f', TIMESTAMP WITH TIME ZONE '2022-12-19 10:54:14.817758+00', 217, 0, TRUE, 'ad-hoc', 'Command failed with error 31254 (Location31254): ''Invalid $project :: caused by :: Cannot do exclusion on field 1 in inclusion projection'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671447238, "i" : 30 } }, "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: Cannot do exclusion on field 1 in inclusion projection", "code" : 31254, "codeName" : "Location31254", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671447238, "i" : 30 } }, "signature" : { "hash" : { "$binary" : "KA9Y4fxJliBntSGnv7hDUDht4p0=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3309, X'aa3461ce199bf1773c22c77f2671f3062993d73d7a2a665bb56db45f574c8e4f', TIMESTAMP WITH TIME ZONE '2022-12-19 10:54:26.699167+00', 37, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3310, X'a9c04d70c5c7644136ff6b21ea550798f2d0f2c2274aa6cb88f1c73604bd8270', TIMESTAMP WITH TIME ZONE '2022-12-19 10:54:41.561263+00', 53, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3311, X'4d0a9b00d8785dfaa32a439045387f837a572f760650d9221991ac122a0dacf9', TIMESTAMP WITH TIME ZONE '2022-12-19 10:54:52.20272+00', 54, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3312, X'577f57d0c9fe7fe66b2692f6c19fdac2fd379d1fedbed00adc76ea4ac73def3a', TIMESTAMP WITH TIME ZONE '2022-12-19 10:55:00.959622+00', 54, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3313, X'e0fcf503caab19708f6a4ebdac9ccefccd90dcbba0d01a2b0ec5f393e0aedbd8', TIMESTAMP WITH TIME ZONE '2022-12-19 10:55:08.299353+00', 46, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3314, X'577f57d0c9fe7fe66b2692f6c19fdac2fd379d1fedbed00adc76ea4ac73def3a', TIMESTAMP WITH TIME ZONE '2022-12-19 10:55:12.660528+00', 65, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3315, X'130f4eededf20465bf1ea82a6920f4c39ac536e7a033cc913df1932775afeb7b', TIMESTAMP WITH TIME ZONE '2022-12-19 10:55:26.742885+00', 52, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3316, X'9be651aed00e7a1a0f98694e3ea9a9e0b6bf60305947d8f3a20932c97a6e0030', TIMESTAMP WITH TIME ZONE '2022-12-19 10:57:39.282735+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''''.', 1, NULL, NULL, NULL, 2, NULL), +(3317, X'b82bbee442c8dd06a1d92b825b33d1fefa1d4cc61fc1fd60a803dafc1f71e08e', TIMESTAMP WITH TIME ZONE '2022-12-19 10:57:51.942505+00', 64, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3318, X'6aa07aa5d619d7a75c1c2c6e51bb192e30bcd829b6fe4b0bd74e3aea8f2e0626', TIMESTAMP WITH TIME ZONE '2022-12-19 11:01:07.195398+00', 81, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3319, X'11b998c7f23037a3052642f9cda822f849d84029638d92d91debda177ac88b40', TIMESTAMP WITH TIME ZONE '2022-12-19 11:01:19.275997+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3320, X'a0df3353d5df1aba010446de53d5ca0941229daaabc24c1abe7d346c9b24e9d4', TIMESTAMP WITH TIME ZONE '2022-12-19 11:01:24.652334+00', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''Count''.', 1, NULL, NULL, NULL, 2, NULL), +(3321, X'a0df3353d5df1aba010446de53d5ca0941229daaabc24c1abe7d346c9b24e9d4', TIMESTAMP WITH TIME ZONE '2022-12-19 11:01:27.010812+00', 51, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''Count''.', 1, NULL, NULL, NULL, 2, NULL), +(3322, X'c35ee1091cdc842e6b0a3df2815422a2c7136d43e9aed0e217f47ee288b84e1b', TIMESTAMP WITH TIME ZONE '2022-12-19 11:01:35.514699+00', 45, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3323, X'd1c91b6e6937910baa0dfcdedf07ca663a18a24f879883f35f4b57ee6ee630ef', TIMESTAMP WITH TIME ZONE '2022-12-19 11:01:58.512214+00', 25, 0, TRUE, 'ad-hoc', STRINGDECODE('JSON reader was expecting '':'' but found ''\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': ''.'), 1, NULL, NULL, NULL, 2, NULL), +(3324, X'3c1f46a7db331a3dd24b8c014a4f84250c1fc47aec7e296c76be2112e19bc594', TIMESTAMP WITH TIME ZONE '2022-12-19 11:02:14.887953+00', 34, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3325, X'01dac61fed56a5f4fdb990a862abe6e3f20fdda3e295f3ff53bbf714fd134c9e', TIMESTAMP WITH TIME ZONE '2022-12-19 11:03:18.987126+00', 49, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3326, X'1a03667d46c96f2c1e76aeec32ba37cceb082b00f323d1008eb530e913327d2e', TIMESTAMP WITH TIME ZONE '2022-12-19 11:03:35.513244+00', 75, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3327, X'd99cfd02bb99dfb8cbc0b835b5b310e583ea51f825a368c6a4938ed698454daa', TIMESTAMP WITH TIME ZONE '2022-12-19 11:04:10.281597+00', 38, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3328, X'8de608ef99719b521bdfb70074046bd29d5ac6b70291a9c20b5ee5a472295de9', TIMESTAMP WITH TIME ZONE '2022-12-19 11:04:44.370433+00', 61, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3329, X'5846eb69108f21a0f66f89ae270e098999c6b5af69050cee06e9ab1934a234db', TIMESTAMP WITH TIME ZONE '2022-12-19 11:05:15.473642+00', 82, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3330, X'c95f87c859f84387803332a5b3e61d7d38b505df1149ce744ff7fb923b069b63', TIMESTAMP WITH TIME ZONE '2022-12-19 11:05:32.202662+00', 54, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3331, X'e3160d8405f1738a2b63cdedd8bdf9819dc4ad749c22592f109ea3e212e234c1', TIMESTAMP WITH TIME ZONE '2022-12-19 11:05:54.372296+00', 62, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3332, X'2adefdfa6450e83b0cc3bcf915772ef35a30c3eda1728573058227f5fca51618', TIMESTAMP WITH TIME ZONE '2022-12-19 11:06:06.738263+00', 34, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3333, X'e5898c8dc0fe7ec7740eb104fdc2288fa3ab7ca2d2b2ffc19270d0766854e0a1', TIMESTAMP WITH TIME ZONE '2022-12-19 11:06:47.77766+00', 55, 15, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3334, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.047831+00', 609, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3335, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.047831+00', 614, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3336, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.141499+00', 763, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3337, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.140935+00', 768, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3338, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.085811+00', 825, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3339, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.085811+00', 829, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3340, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.359299+00', 568, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3341, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.668838+00', 459, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3342, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.710542+00', 419, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3343, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.169718+00', 1015, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3344, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.169718+00', 1020, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(3345, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.359437+00', 852, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3346, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.359437+00', 871, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(3347, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.709021+00', 524, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3348, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.358441+00', 875, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3349, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.903014+00', 364, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3350, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.66824+00', 609, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3351, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.703105+00', 651, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3352, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.207995+00', 69, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3353, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.203053+00', 142, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3354, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.203053+00', 152, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3355, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.25705+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3356, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.248924+00', 188, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3357, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.34217+00', 100, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3358, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.330999+00', 171, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3359, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.335391+00', 324, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3360, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.435077+00', 231, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3361, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.485336+00', 199, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3362, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.563264+00', 146, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3363, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.513199+00', 312, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3364, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.533513+00', 358, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3365, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.54954+00', 343, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3366, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.628588+00', 288, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3367, X'7aada2f03eacd1c744378b34cb8537194af418609ab8346c1d4a4cd89c07e3b5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.456417+00', 57, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3368, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.481238+00', 88, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3369, X'3e48780f928188bb6045ec0c5b244142cff5f8b2a6d25e09838d8795d54e4cb9', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.500817+00', 86, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3370, X'68501413befb67115fd46f78ed52d92717e7ecdc107cb4621c39adf530ad1e76', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.549209+00', 49, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3371, X'45cfb3b45c8a223617230b0e0b3eced4c8d036fd3455b21ed56e016a489a17ec', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.451033+00', 158, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3372, X'67dff83ec7df6024aa6c4fccdae35c00e0e5a4887d7fdf99f6d8908837984d89', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.512575+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3373, X'af81c80df748b0be1f91223cdcdc9cf9d1bfabe55cac771226df3215c6719fa2', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.518623+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3374, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.625292+00', 81, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3375, X'3933773f87a0ad76dacdf4d5ded63f2a09e7c33e6b8f6494dd174cbdfefcb006', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.651154+00', 78, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3376, X'1be726fe5ff606bff71292f1874f01dbab9f75ec58b3b1be63c6efcec9cd7d1f', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.675448+00', 74, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3377, X'3371a0a07e305d42ea888d462d720b85643cad850b0445e3c5dd3dd5ea7563ef', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.68487+00', 72, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3378, X'd24561b6663d040e04274b4d0b95a1fbef9f8dc4004998524ac9be1efe1b3cd2', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.633575+00', 128, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3379, X'd91bed1d7cc5ce580378392504a0cb7a5c676815469e7c44c998eb96a58b5852', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.682384+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3380, X'536a16bcbada0cff95ebb50a5fc84b24741281fb72b1964eeea8c012f15089a6', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.682286+00', 94, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3381, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.398532+00', 372, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3382, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.420811+00', 358, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3383, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.420811+00', 364, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3384, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.404608+00', 480, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3385, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.438409+00', 493, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3386, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.401692+00', 531, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3387, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.65749+00', 431, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3388, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.662636+00', 438, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3389, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.662636+00', 488, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3390, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.676549+00', 538, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3391, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.722889+00', 761, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3392, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.773931+00', 726, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3393, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.740357+00', 717, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3394, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.724349+00', 734, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3395, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.698081+00', 829, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3396, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.9487+00', 779, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3397, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:10.278326+00', 99, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3398, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.273626+00', 209, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3399, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.305993+00', 403, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3400, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.422176+00', 493, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3401, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.273595+00', 642, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3402, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.469316+00', 622, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3403, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.414748+00', 681, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3404, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.366017+00', 726, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3405, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.366017+00', 723, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3406, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.406479+00', 729, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3407, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.76176+00', 379, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3408, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.406479+00', 735, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3409, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.476866+00', 670, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3410, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.533807+00', 626, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3411, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.136899+00', 150, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3412, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.743049+00', 644, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3413, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:41.795844+00', 635, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3414, X'be11e60101ab344e57433d819564249a360788b57a7aa2312a8b223c2c9cc8b2', TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:55.369174+00', 200, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3415, X'7b8697b9ef8789d180e3898858f46705f392507b31bf120f19d6f696cef3d04c', TIMESTAMP WITH TIME ZONE '2022-12-19 11:37:02.535098+00', 45, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3416, X'289f53a494711550523a850b5622549dc627460d949904d630a92f58a9b5a438', TIMESTAMP WITH TIME ZONE '2022-12-19 11:37:12.488654+00', 65, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3417, X'efe03cb23549b7ccf6a3b8c59e8a66bb9851879fae065fee335f6d6f496a0cb8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:37:32.784977+00', 52, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3418, X'5239caa61b23b3e4364d40c23ebdb9eff35ea501f6237dc06e0c8c61e537639a', TIMESTAMP WITH TIME ZONE '2022-12-19 11:38:22.500946+00', 173, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3419, X'0372f37da4911486bd329b219557b18c5704321e77085cd24711d55692cbb2bb', TIMESTAMP WITH TIME ZONE '2022-12-19 11:39:16.234298+00', 59, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3420, X'9a1de0935f81af7bb983fdb6eea258f3bdd20b4b12b119ac2cc09851011c8b56', TIMESTAMP WITH TIME ZONE '2022-12-19 11:41:05.085983+00', 57, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3421, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.339457+00', 134, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3422, X'67dff83ec7df6024aa6c4fccdae35c00e0e5a4887d7fdf99f6d8908837984d89', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.332305+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3423, X'af81c80df748b0be1f91223cdcdc9cf9d1bfabe55cac771226df3215c6719fa2', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.465336+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3424, X'45cfb3b45c8a223617230b0e0b3eced4c8d036fd3455b21ed56e016a489a17ec', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.332305+00', 259, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3425, X'7aada2f03eacd1c744378b34cb8537194af418609ab8346c1d4a4cd89c07e3b5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.460363+00', 144, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3426, X'3e48780f928188bb6045ec0c5b244142cff5f8b2a6d25e09838d8795d54e4cb9', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.492995+00', 156, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3427, X'68501413befb67115fd46f78ed52d92717e7ecdc107cb4621c39adf530ad1e76', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.459508+00', 216, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3428, X'ad98952a5db3ce23d1181578af284a64e9f97f8393aa39b5cd1a9c241bf866b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.714138+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3429, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.673406+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3430, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.725207+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3431, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.771871+00', 144, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3432, X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.746002+00', 179, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3433, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.729716+00', 204, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3434, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.790221+00', 149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3435, X'74c525da6e1b13642bf74d51ec2b7e8ab7e448f47b03407259563156796a616e', TIMESTAMP WITH TIME ZONE '2022-12-19 11:44:04.41073+00', 78, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3436, X'9a1de0935f81af7bb983fdb6eea258f3bdd20b4b12b119ac2cc09851011c8b56', TIMESTAMP WITH TIME ZONE '2022-12-19 11:44:15.78059+00', 34, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3437, X'eef4215fef491a4907b32d50f43c15956e6ce0aa4bc8681e11b9118de76edaf6', TIMESTAMP WITH TIME ZONE '2022-12-19 11:44:43.1556+00', 62, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3438, X'cf659cc04b2358e8e9c183e0881e0ef0efeeea2a47cca88c4730b8c86a1db78a', TIMESTAMP WITH TIME ZONE '2022-12-19 11:45:16.636241+00', 38, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3439, X'a0587d1bdd78e34c59bc3e155b6537d12cb6879505543be462d3a00677c2ac2d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:46:20.332525+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(3440, X'a0587d1bdd78e34c59bc3e155b6537d12cb6879505543be462d3a00677c2ac2d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:46:23.671931+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(3441, X'0b98468c1df379e836f7c8b78554acf79cc30bd1b88c65e814b6f8e2a3bd8ad2', TIMESTAMP WITH TIME ZONE '2022-12-19 11:46:42.305185+00', 11, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(3442, X'8de9470e6803e89d09f427b01a558e93e018ee5a536f846f5c33fddeae7ef055', TIMESTAMP WITH TIME ZONE '2022-12-19 11:46:57.697867+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3443, X'57e13c454f55814fa7433f062deb6bafb09507dedb6d5ba4527ac994dea7273d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:47:29.904679+00', 17, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$mothersAge''.', 1, NULL, NULL, NULL, 2, NULL), +(3444, X'eb2282727d1eb16d64b7bb16f20e59f1435b7ee0126a638744b7c9aaaa61bca7', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:08.495225+00', 96, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3445, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.219488+00', 292, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3446, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.219488+00', 295, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3447, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.274401+00', 279, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3448, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.3809+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3449, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.256786+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3450, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.384206+00', 177, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3451, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.3809+00', 192, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3452, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.553197+00', 291, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3453, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.329398+00', 665, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3454, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.688998+00', 306, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3455, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.233966+00', 767, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3456, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.503939+00', 613, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3457, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.738823+00', 383, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3458, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.518642+00', 637, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3459, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.849323+00', 421, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3460, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.745204+00', 531, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3461, X'bfbfbad1a79872a6fbb3ef5b6885ced7b37584ebe7c6bdd40ecde644daab2e2b', TIMESTAMP WITH TIME ZONE '2022-12-19 11:50:03.929151+00', 32, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3462, X'e07a84afd73f27ae2330f4deb8cf491682b0ed861d329c03e38b48157759e947', TIMESTAMP WITH TIME ZONE '2022-12-19 11:51:09.155308+00', 206, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3463, X'b17c314fa7ae53f056e8199b3a61576fab1a43d378563d1f7a99485824553512', TIMESTAMP WITH TIME ZONE '2022-12-19 11:51:22.85462+00', 33, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3464, X'ef4581c2231c13471ffcf9b69d0bb4afa5da8cea281368971e6c571f18efdd17', TIMESTAMP WITH TIME ZONE '2022-12-19 11:52:08.69306+00', 41, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3465, X'729bfcac7305970548aee3a343a0e0065165550ac28044b5f08be90a193b4088', TIMESTAMP WITH TIME ZONE '2022-12-19 11:53:34.245111+00', 40, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3466, X'b37a8834de11441ef508444565f6e5365a0cad80217d7d0d14e0f46a8a62225e', TIMESTAMP WITH TIME ZONE '2022-12-19 11:53:58.845871+00', 46, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3467, X'26a6e7a6215ff35838edefa835f30d2711d3c535bf8ac999d9782eeb93efd3b3', TIMESTAMP WITH TIME ZONE '2022-12-19 11:54:03.93609+00', 50, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3468, X'a5d5ee106dbf3b96e5437c671aed53c968c2b3b63e9467279d270b92c90cfcc2', TIMESTAMP WITH TIME ZONE '2022-12-19 11:54:09.153317+00', 64, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$sum''.', 1, NULL, NULL, NULL, 2, NULL), +(3469, X'26a6e7a6215ff35838edefa835f30d2711d3c535bf8ac999d9782eeb93efd3b3', TIMESTAMP WITH TIME ZONE '2022-12-19 11:54:22.305209+00', 45, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3470, X'59337c8d175e0e429ece019e69041e35440c5e33b147cbee6d276681fd7bc22f', TIMESTAMP WITH TIME ZONE '2022-12-19 11:57:01.771867+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$birthOrderOne''.', 1, NULL, NULL, NULL, 2, NULL), +(3471, X'af1b2f16df72268ddc66969c84f2e3657a008131ac0851aad052d3019099ad04', TIMESTAMP WITH TIME ZONE '2022-12-19 11:57:07.094612+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$birthOrder''.', 1, NULL, NULL, NULL, 2, NULL), +(3472, X'746c199c62431a301c3fad652761bab7d34aebf21872e1833c8af4be3f571b2a', TIMESTAMP WITH TIME ZONE '2022-12-19 11:57:19.506513+00', 54, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3473, X'2569c1484715dbb5408b9a1838fcc950137e46f36ed2fab6b88534aa88aa912b', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:24.753738+00', 45, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3474, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:26.667515+00', 301, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3475, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:26.882592+00', 407, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3476, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.03224+00', 260, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3477, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:26.864553+00', 493, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3478, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.020077+00', 399, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3479, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.069329+00', 351, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3480, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.034139+00', 413, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3481, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:26.682703+00', 786, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3482, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.125186+00', 378, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3483, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.105141+00', 401, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3484, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.17203+00', 440, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3485, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.17203+00', 447, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3486, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.008966+00', 634, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3487, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:26.912818+00', 748, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3488, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:26.912818+00', 756, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3489, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.130625+00', 609, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3490, X'28928cb618f008fffe5f03a99127794ffba7969f5c1ddfc2a33697c7b4b39718', TIMESTAMP WITH TIME ZONE '2022-12-19 11:59:27.57597+00', 85, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3491, X'1ea4720ee0ce7568477bb84da0faa921d5e64a1d16220c87f104b723b84e554d', TIMESTAMP WITH TIME ZONE '2022-12-19 11:59:53.564232+00', 38, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3492, X'9fd98e928aac5e538f3c2ea2a0aafcbd48abba89b04a33ddd069179ebf7a4eab', TIMESTAMP WITH TIME ZONE '2022-12-19 12:00:31.870572+00', 34, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3493, X'c675169a2e9b0338229c2a6eb43ad3d85c6002646ca6385df0b538adeb9db760', TIMESTAMP WITH TIME ZONE '2022-12-19 12:00:52.039294+00', 33, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3494, X'cd44a3f8e740219e54e93a9414c4091c5b890033963a89d719c16e0a291a85bd', TIMESTAMP WITH TIME ZONE '2022-12-19 12:01:15.235318+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3495, X'022c7ec6fd68660e12c06aa5c3e76fa8d217019c36ceaba14c7693d11af0f046', TIMESTAMP WITH TIME ZONE '2022-12-19 12:01:31.106593+00', 54, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3496, X'3a6ad120f151518921c061e0e2285022fa2ecd50a6586769c049032be1b8a2b2', TIMESTAMP WITH TIME ZONE '2022-12-19 12:02:15.842393+00', 34, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3497, X'f7b7b67f24ef031a754fae80538dd7090b55693b01808ed97b9e498b13d0b7b5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:02:40.783605+00', 32, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3498, X'aa41a3cf263e28a16a1bbd5fd57bea88957f22d4dcb34da80b3f93da85f33817', TIMESTAMP WITH TIME ZONE '2022-12-19 12:03:33.416498+00', 44, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3499, X'b0304046f476b478bc0fab0acb3e69a6e3e645e407ad76d57c0fe1b061de2896', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:17.192719+00', 77, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3500, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:19.683784+00', 794, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3501, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:19.743591+00', 757, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3502, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:19.984362+00', 519, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3503, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.2219+00', 290, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3504, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.045238+00', 498, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3505, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.045238+00', 507, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3506, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:19.814479+00', 743, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3507, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:19.832834+00', 830, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3508, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.454065+00', 407, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3509, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.601477+00', 299, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3510, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.178901+00', 727, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3511, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.539148+00', 380, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3512, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.567109+00', 395, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3513, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.567109+00', 400, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3514, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.693971+00', 401, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3515, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.591066+00', 512, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3516, X'860117fc88f8df303646b21b1b38870c456625b8cf9efcfd86f579b6241313cd', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:29.905288+00', 35, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3517, X'4dd0acc33f052aa473ed468c3ff899abe217bf9f287a4b969c0b56230ce61195', TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:57.390503+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''birthOrderOne''.', 1, NULL, NULL, NULL, 2, NULL), +(3518, X'aa41a3cf263e28a16a1bbd5fd57bea88957f22d4dcb34da80b3f93da85f33817', TIMESTAMP WITH TIME ZONE '2022-12-19 12:05:02.321414+00', 45, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3519, X'c4d39c1a69ff259f43f33c84cf64a3a0ae5a6f32737290cb9fee74a29fed54e7', TIMESTAMP WITH TIME ZONE '2022-12-19 12:06:04.576926+00', 37, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3520, X'e1d099cc1052632d9c9a1523b1999773a3c0fe23d95c259eca68c7dacf1e6d24', TIMESTAMP WITH TIME ZONE '2022-12-19 12:06:17.214947+00', 44, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3521, X'895414a3b394a0e02180c213262952151607d0cad8604fcf321f693758c9a46d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:06:21.2556+00', 5, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(3522, X'895414a3b394a0e02180c213262952151607d0cad8604fcf321f693758c9a46d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:06:23.151078+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(3523, X'c4d39c1a69ff259f43f33c84cf64a3a0ae5a6f32737290cb9fee74a29fed54e7', TIMESTAMP WITH TIME ZONE '2022-12-19 12:06:27.190215+00', 50, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3524, X'08c3675f6373b646e5aba22f4c68808ef93c0f61e32856d7c463332fee897a42', TIMESTAMP WITH TIME ZONE '2022-12-19 12:06:58.279941+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$mothersAge''.', 1, NULL, NULL, NULL, 2, NULL), +(3525, X'08c3675f6373b646e5aba22f4c68808ef93c0f61e32856d7c463332fee897a42', TIMESTAMP WITH TIME ZONE '2022-12-19 12:07:03.154081+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$mothersAge''.', 1, NULL, NULL, NULL, 2, NULL), +(3526, X'6103cb21d4a8e30005f19a25d3bf7bb2b73ca9e908a24a0e88e57da8ad8c4e0d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:07:28.868238+00', 43, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3527, X'1be22ecfe3a876ec32c6ac2e2b35609541c8f3294d159176b63f839f476129b3', TIMESTAMP WITH TIME ZONE '2022-12-19 12:07:41.308226+00', 82, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3528, X'a0b49f30423f2f4f1258eaf67babe02c8cb093502bb06fec650ea02ab931193c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:07:50.59433+00', 53, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3529, X'dce33851562a48a437420eefda0bbb7260ded4e92f09b7c373a4c4f59a840b1a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:08:22.024254+00', 38, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3530, X'91540bd4ad87fa9ac8bdb77cc9f6ee3ee72f665a57b4ea13ccc7338fe773c0de', TIMESTAMP WITH TIME ZONE '2022-12-19 12:08:41.911414+00', 53, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3531, X'09b3770d34c180da9c3aad8c29c997926b35fb946c22acf6dae3a7c79155ba1d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:10:15.124073+00', 279, 0, TRUE, 'ad-hoc', 'Command failed with error 168 (InvalidPipelineOperator): ''Invalid $project :: caused by :: Unrecognized expression ''$count'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671451808, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: Unrecognized expression ''$count''", "code" : 168, "codeName" : "InvalidPipelineOperator", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671451808, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "tXVl4oGb8aHip5omxqtJ2WxYvkY=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(3532, X'91540bd4ad87fa9ac8bdb77cc9f6ee3ee72f665a57b4ea13ccc7338fe773c0de', TIMESTAMP WITH TIME ZONE '2022-12-19 12:11:44.591828+00', 50, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3533, X'91540bd4ad87fa9ac8bdb77cc9f6ee3ee72f665a57b4ea13ccc7338fe773c0de', TIMESTAMP WITH TIME ZONE '2022-12-19 12:11:51.031911+00', 41, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3534, X'ae17bbefc5e724063ad85c6b78c065e143aa5510b463f327b73b64e2085b2eda', TIMESTAMP WITH TIME ZONE '2022-12-19 12:12:13.858477+00', 44, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3535, X'68e044dffcefd1f8c6af4acffbc0b09d5b838915c15c49f8c5561773cf36277c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:12:30.531688+00', 33, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3536, X'68e044dffcefd1f8c6af4acffbc0b09d5b838915c15c49f8c5561773cf36277c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:12:32.994014+00', 75, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3537, X'ae17bbefc5e724063ad85c6b78c065e143aa5510b463f327b73b64e2085b2eda', TIMESTAMP WITH TIME ZONE '2022-12-19 12:12:40.757095+00', 33, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3538, X'7b13ac1e3ff32bffbf8e78ec2933910374888221925ef727d85efaf7562e4025', TIMESTAMP WITH TIME ZONE '2022-12-19 12:12:44.641191+00', 56, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3539, X'4086cc9fddd9390ae45e606f89c0b4e486261e7f20bf030ca2edb71ba8552de6', TIMESTAMP WITH TIME ZONE '2022-12-19 12:13:29.976772+00', 58, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3540, X'08a2ad0ee9bf9f59d7637054bfdd82d300345c640d671f46de5b7ba2bedf0943', TIMESTAMP WITH TIME ZONE '2022-12-19 12:13:59.592372+00', 32, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3541, X'01376b32c52aee606e3868fad82544cf636b8c795d3d349bc5a64e844e376d1d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:14:24.577076+00', 62, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3542, X'a15a23535ef6ab642e7011bbe633a4e41a0f084e3f165164e6a56f95a63c5f6c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:14:48.002207+00', 32, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3543, X'352b5138d64b1e37ce55815c3c0d87404712027adeaec1d94d0bb4bf0cc6c3ea', TIMESTAMP WITH TIME ZONE '2022-12-19 12:15:14.467+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$birthOrder''.', 1, NULL, NULL, NULL, 2, NULL), +(3544, X'bdb4d2ee1240b059a49982730e69e8598f9ef54382f501210abe8d8ff4a73c51', TIMESTAMP WITH TIME ZONE '2022-12-19 12:15:18.742043+00', 4, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(3545, X'a15a23535ef6ab642e7011bbe633a4e41a0f084e3f165164e6a56f95a63c5f6c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:15:21.632702+00', 67, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3546, X'e0364a792f0b6a3777e1b54369a842ca9fd3ce797db3e4d1aa4224e4efe6345f', TIMESTAMP WITH TIME ZONE '2022-12-19 12:15:55.026054+00', 39, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3547, X'e0364a792f0b6a3777e1b54369a842ca9fd3ce797db3e4d1aa4224e4efe6345f', TIMESTAMP WITH TIME ZONE '2022-12-19 12:16:00.552289+00', 61, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3548, X'cb57b0b2172793ed8c59c7bf42680ba252c29c17304ac8f8f635ca582c464eb3', TIMESTAMP WITH TIME ZONE '2022-12-19 12:16:06.295841+00', 117, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3549, X'a6a85b37be18b3615ab198dd0ecba4f893c92bb2c6b6bcf7270408f14378e354', TIMESTAMP WITH TIME ZONE '2022-12-19 12:16:24.239356+00', 43, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3550, X'a6a85b37be18b3615ab198dd0ecba4f893c92bb2c6b6bcf7270408f14378e354', TIMESTAMP WITH TIME ZONE '2022-12-19 12:17:15.295157+00', 35, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3551, X'2365d7fd268d6c061dffe2aebe7f89616237b472e613beaca764e86d03bebb8e', TIMESTAMP WITH TIME ZONE '2022-12-19 12:20:31.940165+00', 49, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3552, X'a6a85b37be18b3615ab198dd0ecba4f893c92bb2c6b6bcf7270408f14378e354', TIMESTAMP WITH TIME ZONE '2022-12-19 12:20:39.795028+00', 36, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3553, X'9efcc71ebc9263dd98a817693792e21936c9386a497d6016bb49a23f9ab0ed29', TIMESTAMP WITH TIME ZONE '2022-12-19 12:21:11.184913+00', 36, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3554, X'c29e3c62189ebd677300f581431ea48909a3fdbe31a8526fad278acfac3ea411', TIMESTAMP WITH TIME ZONE '2022-12-19 12:22:58.853971+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3555, X'c29e3c62189ebd677300f581431ea48909a3fdbe31a8526fad278acfac3ea411', TIMESTAMP WITH TIME ZONE '2022-12-19 12:23:00.719147+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3556, X'01ad55cb4573dd8a95d1fa100d2ef733e8670989ccb9df488ffc1dcc23fd2c89', TIMESTAMP WITH TIME ZONE '2022-12-19 12:23:05.904643+00', 7, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(3557, X'01ad55cb4573dd8a95d1fa100d2ef733e8670989ccb9df488ffc1dcc23fd2c89', TIMESTAMP WITH TIME ZONE '2022-12-19 12:23:08.215281+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(3558, X'01ad55cb4573dd8a95d1fa100d2ef733e8670989ccb9df488ffc1dcc23fd2c89', TIMESTAMP WITH TIME ZONE '2022-12-19 12:23:10.35793+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 2, NULL), +(3559, X'a6a85b37be18b3615ab198dd0ecba4f893c92bb2c6b6bcf7270408f14378e354', TIMESTAMP WITH TIME ZONE '2022-12-19 12:23:11.754402+00', 72, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3560, X'34a97630f46d8bda48d803e3fecafc763b1ddcdfec63a1d985a0f70b90b71c4c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:28:35.24204+00', 79, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3561, X'1b358b1e6bfc51a00e6549043280081036bb72bb590d9a5c614dc603d5dc5f78', TIMESTAMP WITH TIME ZONE '2022-12-19 12:28:51.985432+00', 33, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3562, X'ca835ed429b4bbbac61f45afddc87dfe01a24baf272b9d7c6155a5fd75c60a45', TIMESTAMP WITH TIME ZONE '2022-12-19 12:29:21.020281+00', 70, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3563, X'e393bfa10d2b51d2ebcd976ad90a8afce9b378b4eed92dd7f09f305412b9be5a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:30:41.037503+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3564, X'e393bfa10d2b51d2ebcd976ad90a8afce9b378b4eed92dd7f09f305412b9be5a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:30:47.793903+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3565, X'6eec4e74f6c993c42e4a6c4b028d48354df0d191121aaf94970f0c154149a012', TIMESTAMP WITH TIME ZONE '2022-12-19 12:30:51.306608+00', 55, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3566, X'ca835ed429b4bbbac61f45afddc87dfe01a24baf272b9d7c6155a5fd75c60a45', TIMESTAMP WITH TIME ZONE '2022-12-19 12:30:59.85807+00', 33, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3567, X'817cc55b0b2f1fbdaee07870f507d97236141535424f2179353622554dcffc77', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:06.665597+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3568, X'817cc55b0b2f1fbdaee07870f507d97236141535424f2179353622554dcffc77', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:10.729526+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3569, X'817cc55b0b2f1fbdaee07870f507d97236141535424f2179353622554dcffc77', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:34.778949+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3570, X'0f87816e84a804703946ec076e7ac9db8cb5e78e3094c6b85c91557ed003dbe0', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:46.409781+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3571, X'0f87816e84a804703946ec076e7ac9db8cb5e78e3094c6b85c91557ed003dbe0', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:47.955857+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3572, X'0f87816e84a804703946ec076e7ac9db8cb5e78e3094c6b85c91557ed003dbe0', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:49.473253+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3573, X'0f87816e84a804703946ec076e7ac9db8cb5e78e3094c6b85c91557ed003dbe0', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:51.880942+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(3574, X'fb2efdf9b4231ca2c843903afc0d1700bf57815da00c2e814e30232d95eb81a6', TIMESTAMP WITH TIME ZONE '2022-12-19 12:31:55.4488+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(3575, X'ca835ed429b4bbbac61f45afddc87dfe01a24baf272b9d7c6155a5fd75c60a45', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:01.701863+00', 63, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3576, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.728514+00', 232, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3577, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.728514+00', 243, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3578, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.778046+00', 409, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3579, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.910883+00', 281, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3580, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.036517+00', 285, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3581, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.08034+00', 366, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3582, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.054773+00', 437, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3583, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.020955+00', 482, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3584, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.965254+00', 537, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3585, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.945055+00', 595, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3586, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.968691+00', 567, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3587, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.022072+00', 513, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3588, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.067062+00', 493, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3589, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.968691+00', 618, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3590, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.04911+00', 538, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3591, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.049899+00', 569, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3592, X'a24e02346e92ad0408b7860a89f43452b17dec4cd9415f828abca5a72719849a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:41.798734+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(3593, X'896bab5c27241b8c853310c1340bafb7d3c0e2fbc98255d09a919278f31e2449', TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:53.199096+00', 51, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3594, X'47c988b4396f8cc522d0428a6af439344105d3f35c4340fbf948cbb0cff64f2c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:34:03.350028+00', 33, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3595, X'47c988b4396f8cc522d0428a6af439344105d3f35c4340fbf948cbb0cff64f2c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:34:14.363869+00', 69, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3596, X'9a1de0935f81af7bb983fdb6eea258f3bdd20b4b12b119ac2cc09851011c8b56', TIMESTAMP WITH TIME ZONE '2022-12-19 12:34:23.011888+00', 71, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3597, X'9a1de0935f81af7bb983fdb6eea258f3bdd20b4b12b119ac2cc09851011c8b56', TIMESTAMP WITH TIME ZONE '2022-12-19 12:35:10.189561+00', 49, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3598, X'c09d454b40f2de780034ae430f48e0c8e64a554152fc92f307fd6d1836886366', TIMESTAMP WITH TIME ZONE '2022-12-19 12:35:50.980504+00', 43, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3599, X'967515b07c4bc07595471ccac1d81720978fe2f08986f4972356e1459c9b1ff6', TIMESTAMP WITH TIME ZONE '2022-12-19 12:39:01.267467+00', 34, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3600, X'c09d454b40f2de780034ae430f48e0c8e64a554152fc92f307fd6d1836886366', TIMESTAMP WITH TIME ZONE '2022-12-19 12:39:26.180066+00', 30, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3601, X'a2701ed627fe864c1055bf0758b7d59a1ed7e9d4e78dff53dffd4fb994d952a0', TIMESTAMP WITH TIME ZONE '2022-12-19 12:40:53.319219+00', 35, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3602, X'c09d454b40f2de780034ae430f48e0c8e64a554152fc92f307fd6d1836886366', TIMESTAMP WITH TIME ZONE '2022-12-19 12:41:16.674834+00', 48, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3603, X'585f557b9a6ae5c232e05fec8508edcee9828764801d970c07a97f4a0a6e54f1', TIMESTAMP WITH TIME ZONE '2022-12-19 12:41:29.583992+00', 68, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3604, X'b48ca641158985f6bf0aed7243b494e003e2ad697337b2158784175ac938f97a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:41:38.333992+00', 36, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3605, X'11af46b933fe16f9f1a28e1d31e586445d987151a476185b531b459cf44078cd', TIMESTAMP WITH TIME ZONE '2022-12-19 12:41:58.30078+00', 58, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3606, X'b48ca641158985f6bf0aed7243b494e003e2ad697337b2158784175ac938f97a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:42:03.517676+00', 33, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3607, X'11af46b933fe16f9f1a28e1d31e586445d987151a476185b531b459cf44078cd', TIMESTAMP WITH TIME ZONE '2022-12-19 12:42:11.287724+00', 30, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3608, X'363036f463afd4c0767a906e57a53efded1e878066b9569e7432aed671515035', TIMESTAMP WITH TIME ZONE '2022-12-19 12:42:20.329938+00', 31, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3609, X'8315d2feec5c74265c290ecd309b327f7f3396e9c358bef24a36835ba2da1ed0', TIMESTAMP WITH TIME ZONE '2022-12-19 12:42:38.934591+00', 64, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3610, X'11af46b933fe16f9f1a28e1d31e586445d987151a476185b531b459cf44078cd', TIMESTAMP WITH TIME ZONE '2022-12-19 12:42:49.895596+00', 39, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3611, X'db4070b4ce1dd1b259181ce114d15b5d04d8e5788b56c052ebeec344b54651a7', TIMESTAMP WITH TIME ZONE '2022-12-19 12:43:16.085287+00', 34, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3612, X'8149f67d0d5bd79928de4a6845b9da3f28a0ce10e5ada15a9d80a35a2d42e05e', TIMESTAMP WITH TIME ZONE '2022-12-19 12:43:50.591893+00', 86, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3613, X'b2c2a19889dd15ba4e0b9c83d5b686610cd0c12f55ed1f049c31cc3480662847', TIMESTAMP WITH TIME ZONE '2022-12-19 12:44:23.239904+00', 71, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3614, X'9adef11505d517af553a68ceab99158c025034690cb054190e60dfe3de5a3964', TIMESTAMP WITH TIME ZONE '2022-12-19 12:45:18.112444+00', 4, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is REGULAR_EXPRESSION.', 1, NULL, NULL, NULL, 2, NULL), +(3615, X'aa85a87e38f8f523f73fe48b58e0d88aa77f49c59698ba27e52b867207b04d54', TIMESTAMP WITH TIME ZONE '2022-12-19 12:45:25.367688+00', 34, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3616, X'efc9b606d61c03f9788427ee50da992131038646380baf6232a468b12c4da549', TIMESTAMP WITH TIME ZONE '2022-12-19 12:45:58.964496+00', 33, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3617, X'dbd926401695f9eec5351e00c37bbd2e7e146b3f311d47d5f6b8d8bcdf75aadb', TIMESTAMP WITH TIME ZONE '2022-12-19 12:46:10.224162+00', 61, 0, TRUE, 'ad-hoc', 'Command failed with error 17276 (Location17276): ''Invalid $project :: caused by :: Use of undefined variable: birthOrder'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671453958, "i" : 8 } }, "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: Use of undefined variable: birthOrder", "code" : 17276, "codeName" : "Location17276", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671453958, "i" : 8 } }, "signature" : { "hash" : { "$binary" : "sT/RCMadwRhgoyeUCAd0gqp1obc=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(3618, X'8d4463764722777b013e4c73df6993a227f740e6e02247ce6c81d0e1b99ee94e', TIMESTAMP WITH TIME ZONE '2022-12-19 12:46:15.655615+00', 37, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3619, X'2e299534caaebc2195f663651d796a2be47a7885205d16517131d3eaf1ab27b4', TIMESTAMP WITH TIME ZONE '2022-12-19 12:47:17.365552+00', 34, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3620, X'e83fd92587edaefaec20aedc319575d48bec3b5636f0a9f863c9658189e8eb38', TIMESTAMP WITH TIME ZONE '2022-12-19 12:48:10.062289+00', 31, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3621, X'56a95f401cd25d5fddab11ecd0a4b5a9463fa35749a84faa23c009cc3921b22e', TIMESTAMP WITH TIME ZONE '2022-12-19 12:52:16.968865+00', 34, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3622, X'24fecbe6d7dc5fb8f9d556e01ce691c25a58bd94a332217c0902437aa942abaa', TIMESTAMP WITH TIME ZONE '2022-12-19 12:52:51.857563+00', 72, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3623, X'af38248afa441b9b2e0fabf95b416036cf515c95fa30ab5c69adb124ceb30c6e', TIMESTAMP WITH TIME ZONE '2022-12-19 12:53:59.240536+00', 206, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3624, X'af38248afa441b9b2e0fabf95b416036cf515c95fa30ab5c69adb124ceb30c6e', TIMESTAMP WITH TIME ZONE '2022-12-19 12:53:59.240536+00', 247, 0, TRUE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 2, NULL), +(3625, X'af38248afa441b9b2e0fabf95b416036cf515c95fa30ab5c69adb124ceb30c6e', TIMESTAMP WITH TIME ZONE '2022-12-19 12:53:59.607047+00', 71, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3626, X'e7d457d721761996d429e3553a681c22f980d69be12c7c498f38c413cad4a45c', TIMESTAMP WITH TIME ZONE '2022-12-19 12:53:59.730197+00', 74, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3627, X'bee3673b5aa5deb11ec810061199073e067d4f3435f9144266d3b257e839ff62', TIMESTAMP WITH TIME ZONE '2022-12-19 12:54:46.102129+00', 68, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3628, X'cf8dc03cf19739b312ec0f0915e36b5796a6cd94e3cb843dfa92d7d46405e09a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:55:29.868522+00', 37, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3629, X'cf8dc03cf19739b312ec0f0915e36b5796a6cd94e3cb843dfa92d7d46405e09a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:55:58.497592+00', 63, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3630, X'41a000a24139ea3fe78ab8ea483154b123bc1f6c34d5e35b5b8899b41c147f6d', TIMESTAMP WITH TIME ZONE '2022-12-19 12:57:05.036822+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$birthOrder1''.', 1, NULL, NULL, NULL, 2, NULL), +(3631, X'cbc25a7bfd632b539bcc64720ce5b22ed02fd737ee87e6dd6c1a73d7f0825935', TIMESTAMP WITH TIME ZONE '2022-12-19 12:57:23.832215+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(3632, X'cf8dc03cf19739b312ec0f0915e36b5796a6cd94e3cb843dfa92d7d46405e09a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:57:26.672455+00', 34, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3633, X'cf8dc03cf19739b312ec0f0915e36b5796a6cd94e3cb843dfa92d7d46405e09a', TIMESTAMP WITH TIME ZONE '2022-12-19 12:58:40.313517+00', 74, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3634, X'bc2026af8125077b971b6aa9c8037028c6bcc32597f1c83f5479fe382ebbdc94', TIMESTAMP WITH TIME ZONE '2022-12-19 12:59:17.008535+00', 5, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(3635, X'bc2026af8125077b971b6aa9c8037028c6bcc32597f1c83f5479fe382ebbdc94', TIMESTAMP WITH TIME ZONE '2022-12-19 12:59:26.345148+00', 5, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(3636, X'5b36e06801237c5912ef772fffb3acdee6fea0abf6f1bae7cebf6d1ed2645abb', TIMESTAMP WITH TIME ZONE '2022-12-19 12:59:38.034479+00', 63, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3637, X'67955502fa2b8115fbf02191d611a46902433bc2b1636415073011ca13fc0213', TIMESTAMP WITH TIME ZONE '2022-12-19 12:59:49.468904+00', 121, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3638, X'5844d1a9fdff09a50a6646157e0f998a8d908ee63b3453d448ecef4704610963', TIMESTAMP WITH TIME ZONE '2022-12-19 13:00:12.688481+00', 46, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3639, X'f5cce4605bbe3c05cb238da876ab7eedd74115a9cf1a868a6b90e2484c430b20', TIMESTAMP WITH TIME ZONE '2022-12-19 13:01:30.788847+00', 78, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3640, X'05a62b52c55bfefd56b667c225fd3975f2645e0d71c7123fce278996ee0e68ef', TIMESTAMP WITH TIME ZONE '2022-12-19 13:01:36.691105+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3641, X'5844d1a9fdff09a50a6646157e0f998a8d908ee63b3453d448ecef4704610963', TIMESTAMP WITH TIME ZONE '2022-12-19 13:01:47.871496+00', 65, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3642, X'd6a4ecd5cbd379ec60bc022231272bba516e0b8e4dd087060939b272cd45657d', TIMESTAMP WITH TIME ZONE '2022-12-19 13:03:48.081767+00', 36, 0, TRUE, 'ad-hoc', 'Command failed with error 15952 (Location15952): ''unknown group operator ''$count'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671455027, "i" : 7 } }, "ok" : 0.0, "errmsg" : "unknown group operator ''$count''", "code" : 15952, "codeName" : "Location15952", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671455027, "i" : 7 } }, "signature" : { "hash" : { "$binary" : "UCKifDdIktS6c5utHR7k3oGzYf8=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3643, X'd6a4ecd5cbd379ec60bc022231272bba516e0b8e4dd087060939b272cd45657d', TIMESTAMP WITH TIME ZONE '2022-12-19 13:03:52.92948+00', 47, 0, TRUE, 'ad-hoc', 'Command failed with error 15952 (Location15952): ''unknown group operator ''$count'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671455027, "i" : 7 } }, "ok" : 0.0, "errmsg" : "unknown group operator ''$count''", "code" : 15952, "codeName" : "Location15952", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671455027, "i" : 7 } }, "signature" : { "hash" : { "$binary" : "UCKifDdIktS6c5utHR7k3oGzYf8=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(3644, X'59561fc0e05b6cefc6d67962736886bf59f985a9e0740f6d276482547e2e66a4', TIMESTAMP WITH TIME ZONE '2022-12-19 13:04:31.653593+00', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3645, X'440a1c20a45242a23250966bce16fa4eb38699a2d9c82da2d979d09867285dc4', TIMESTAMP WITH TIME ZONE '2022-12-19 13:04:34.873946+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3646, X'8e45122642e6ac3c01b2b90c6478cca5f5721c21a0609449d4381ea17033e0be', TIMESTAMP WITH TIME ZONE '2022-12-19 13:04:39.878541+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3647, X'8e45122642e6ac3c01b2b90c6478cca5f5721c21a0609449d4381ea17033e0be', TIMESTAMP WITH TIME ZONE '2022-12-19 13:04:42.681784+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3648, X'dc003ac18f9e39ee8e71164a94bf6b57e197aef3de1e57f993e53e3dc61bb462', TIMESTAMP WITH TIME ZONE '2022-12-19 13:04:50.026528+00', 40, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3649, X'9305683eaf35822d88ffc9357e7218f576133856841e290d71de49dff63b346c', TIMESTAMP WITH TIME ZONE '2022-12-19 13:05:37.756905+00', 39, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3650, X'bc9fce45f652f4e123adfc3129036024d3b1a4f690343d847a2d49c6ac7d9dbc', TIMESTAMP WITH TIME ZONE '2022-12-19 13:06:50.267238+00', 57, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3651, X'dcab37711ba83490ee6feae8ee45edd1ac05530f7cadbb93d471ad30a66ee0e2', TIMESTAMP WITH TIME ZONE '2022-12-19 13:07:21.672446+00', 53, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3652, X'9c7c46bc55aed2e9ea62657cea9671ce0aadc0dcc135fd7b3f464a5d8f8c7109', TIMESTAMP WITH TIME ZONE '2022-12-19 13:07:54.850967+00', 67, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3653, X'f7356bc76fb11a9b606cc56c1e704f9ab741236ba9c46d57bd24a875e61069cb', TIMESTAMP WITH TIME ZONE '2022-12-19 13:08:09.260862+00', 33, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3654, X'dcab37711ba83490ee6feae8ee45edd1ac05530f7cadbb93d471ad30a66ee0e2', TIMESTAMP WITH TIME ZONE '2022-12-19 13:08:19.02071+00', 32, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3655, X'dcab37711ba83490ee6feae8ee45edd1ac05530f7cadbb93d471ad30a66ee0e2', TIMESTAMP WITH TIME ZONE '2022-12-19 13:08:47.290651+00', 35, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3656, X'e05aeaab643ee929fce114ae7eab6a74de27410588a0b68f5ca068150e31cd81', TIMESTAMP WITH TIME ZONE '2022-12-19 13:10:56.373709+00', 52, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3657, X'9dccb17171cc5b18afb4adcfdc2fe27e344041d919f33f35d4a9461b8428c329', TIMESTAMP WITH TIME ZONE '2022-12-19 13:13:37.121196+00', 69, 9, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3658, X'b076b2d220f08728819a39113643e7be0b76fc43ef2540a5966d21b1a2358006', TIMESTAMP WITH TIME ZONE '2022-12-19 13:14:01.571619+00', 57, 9, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3659, X'3e0de6a6890c2a18dc539fedd5c3f0a4f78c87f66f63fe392792edce279ba055', TIMESTAMP WITH TIME ZONE '2022-12-19 13:25:24.228926+00', 51, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3660, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:09.241865+00', 232, 2, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(3661, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:09.24138+00', 234, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(3662, X'47359d392eae798b773a74e45d5f71d60d26be2785b93296773034c56ad0b944', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:09.241371+00', 233, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(3663, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.320753+00', 72, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3664, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.359324+00', 70, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3665, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.328078+00', 129, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3666, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.402592+00', 102, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3667, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.410282+00', 91, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3668, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.353979+00', 159, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3669, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.432564+00', 94, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3670, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.105989+00', 393, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3671, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.105989+00', 384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3672, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.266655+00', 308, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3673, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.137708+00', 458, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3674, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.132368+00', 474, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3675, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.235003+00', 409, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3676, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.466004+00', 225, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3677, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.462391+00', 238, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3678, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.606081+00', 445, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3679, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.466657+00', 659, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3680, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.632426+00', 518, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3681, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.654333+00', 542, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3682, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.210922+00', 1020, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3683, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.606376+00', 644, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3684, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.606376+00', 640, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3685, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.460781+00', 920, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3686, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:03.91233+00', 176, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3687, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:03.934674+00', 154, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3688, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:03.932123+00', 168, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3689, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:03.911982+00', 194, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3690, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:03.937274+00', 174, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3691, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:03.959916+00', 157, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3692, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.014542+00', 110, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3693, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:39.880055+00', 191, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3694, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:39.91341+00', 230, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3695, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.034107+00', 148, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3696, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:39.965463+00', 222, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3697, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:39.951253+00', 247, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3698, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:39.964551+00', 242, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3699, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:39.917932+00', 329, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3700, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.839941+00', 83, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3701, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.879334+00', 67, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3702, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.847505+00', 104, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3703, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.892028+00', 78, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3704, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.900161+00', 89, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3705, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.863658+00', 146, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3706, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.864348+00', 162, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3707, X'064d6e1da5a9ce521346e3a06a629c6ce5f211a1bb443db2b7c402c29ae2b079', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:07.837976+00', 39, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3708, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.893127+00', 144, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3709, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.953953+00', 101, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3710, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.951464+00', 125, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3711, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.919477+00', 172, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3712, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.974873+00', 148, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3713, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.911528+00', 228, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3714, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.978426+00', 168, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3715, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.215586+00', 147, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3716, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.317486+00', 50, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3717, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.179746+00', 213, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(3718, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.280264+00', 139, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3719, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.263567+00', 156, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3720, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.33658+00', 123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3721, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.314354+00', 152, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3722, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.276524+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3723, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.276524+00', 203, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3724, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.308178+00', 231, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3725, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.308178+00', 229, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3726, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.303436+00', 241, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3727, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.298266+00', 248, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3728, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.355193+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3729, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.467841+00', 238, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3730, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.343991+00', 404, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3731, X'67dff83ec7df6024aa6c4fccdae35c00e0e5a4887d7fdf99f6d8908837984d89', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.521371+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3732, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.580545+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3733, X'45cfb3b45c8a223617230b0e0b3eced4c8d036fd3455b21ed56e016a489a17ec', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.567028+00', 228, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3734, X'3e48780f928188bb6045ec0c5b244142cff5f8b2a6d25e09838d8795d54e4cb9', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.580105+00', 255, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3735, X'af81c80df748b0be1f91223cdcdc9cf9d1bfabe55cac771226df3215c6719fa2', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.665564+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3736, X'68501413befb67115fd46f78ed52d92717e7ecdc107cb4621c39adf530ad1e76', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.698919+00', 169, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3737, X'7aada2f03eacd1c744378b34cb8537194af418609ab8346c1d4a4cd89c07e3b5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.706714+00', 178, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3738, X'1be726fe5ff606bff71292f1874f01dbab9f75ec58b3b1be63c6efcec9cd7d1f', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.483764+00', 134, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3739, X'd24561b6663d040e04274b4d0b95a1fbef9f8dc4004998524ac9be1efe1b3cd2', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.494163+00', 143, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3740, X'd91bed1d7cc5ce580378392504a0cb7a5c676815469e7c44c998eb96a58b5852', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.526627+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3741, X'3371a0a07e305d42ea888d462d720b85643cad850b0445e3c5dd3dd5ea7563ef', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.523166+00', 153, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3742, X'536a16bcbada0cff95ebb50a5fc84b24741281fb72b1964eeea8c012f15089a6', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.52684+00', 148, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3743, X'3933773f87a0ad76dacdf4d5ded63f2a09e7c33e6b8f6494dd174cbdfefcb006', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.58378+00', 124, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3744, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.526537+00', 228, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3745, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.566243+00', 190, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(3746, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.650615+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3747, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.678083+00', 257, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3748, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.562727+00', 448, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3749, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.562727+00', 455, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(3750, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.891895+00', 179, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3751, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.801388+00', 650, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3752, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.72628+00', 758, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(3753, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.803493+00', 680, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(3754, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.730202+00', 801, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3755, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.262532+00', 279, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3756, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.89511+00', 665, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3757, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.933581+00', 622, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3758, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.89511+00', 677, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(3759, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.990836+00', 708, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3760, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.267172+00', 465, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(3761, X'67dff83ec7df6024aa6c4fccdae35c00e0e5a4887d7fdf99f6d8908837984d89', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.485108+00', 274, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3762, X'3e48780f928188bb6045ec0c5b244142cff5f8b2a6d25e09838d8795d54e4cb9', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.43452+00', 351, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3763, X'7aada2f03eacd1c744378b34cb8537194af418609ab8346c1d4a4cd89c07e3b5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.46854+00', 390, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3764, X'68501413befb67115fd46f78ed52d92717e7ecdc107cb4621c39adf530ad1e76', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.479149+00', 402, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3765, X'45cfb3b45c8a223617230b0e0b3eced4c8d036fd3455b21ed56e016a489a17ec', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.605231+00', 293, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3766, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.465414+00', 457, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3767, X'af81c80df748b0be1f91223cdcdc9cf9d1bfabe55cac771226df3215c6719fa2', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.507615+00', 422, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3768, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.077883+00', 38, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3769, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.050989+00', 73, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3770, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.059814+00', 67, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(3771, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.04964+00', 86, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3772, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.029628+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3773, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.04882+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3774, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.059139+00', 108, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3775, X'3933773f87a0ad76dacdf4d5ded63f2a09e7c33e6b8f6494dd174cbdfefcb006', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:55.994187+00', 235, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(3776, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:55.962184+00', 264, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(3777, X'd24561b6663d040e04274b4d0b95a1fbef9f8dc4004998524ac9be1efe1b3cd2', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.093153+00', 190, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3778, X'3371a0a07e305d42ea888d462d720b85643cad850b0445e3c5dd3dd5ea7563ef', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.136282+00', 203, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(3779, X'd91bed1d7cc5ce580378392504a0cb7a5c676815469e7c44c998eb96a58b5852', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.13629+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(3780, X'536a16bcbada0cff95ebb50a5fc84b24741281fb72b1964eeea8c012f15089a6', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.093112+00', 258, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(3781, X'1be726fe5ff606bff71292f1874f01dbab9f75ec58b3b1be63c6efcec9cd7d1f', TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.145248+00', 208, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(3782, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:46:52.350974+00', 42, 6, TRUE, 'question', NULL, 1, 17, 3, NULL, 2, FALSE), +(3783, X'f93b78a676023f8f058c1b4318f9a76ab0d89a3d4f02d487832b766ea44b99e3', TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:04.340232+00', 54, 4, TRUE, 'question', NULL, 1, 18, 3, NULL, 2, FALSE), +(3784, X'd0204dfafde5436a0afedf676ec80c8ad4f31c595eb80558785afa2cf60951c5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:19.428134+00', 33, 6, TRUE, 'question', NULL, 1, 19, 3, NULL, 2, FALSE), +(3785, X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:30.282882+00', 40, 7, TRUE, 'question', NULL, 1, 20, 3, NULL, 2, FALSE), +(3786, X'e64ce3688391f6f405a1718196bdcc367835d9be9892eb27e12204c8a6c13971', TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:43.949313+00', 70, 12, TRUE, 'question', NULL, 1, 21, 3, NULL, 2, FALSE), +(3787, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:53.852252+00', 58, 4, TRUE, 'question', NULL, 1, 22, 3, NULL, 2, FALSE), +(3788, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:50:45.825075+00', 53, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3789, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.721269+00', 115, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3790, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.740133+00', 131, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3791, X'e64ce3688391f6f405a1718196bdcc367835d9be9892eb27e12204c8a6c13971', TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.7864+00', 138, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3792, X'd0204dfafde5436a0afedf676ec80c8ad4f31c595eb80558785afa2cf60951c5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.858888+00', 103, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3793, X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.878543+00', 102, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3794, X'f93b78a676023f8f058c1b4318f9a76ab0d89a3d4f02d487832b766ea44b99e3', TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.894367+00', 99, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3795, X'd0204dfafde5436a0afedf676ec80c8ad4f31c595eb80558785afa2cf60951c5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:05.511538+00', 58, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(3796, X'6cba134252bf7f0114306057b3df37e5d260f0c2f9c3b07f360ec542026851e4', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:32.621097+00', 83, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3797, X'6cba134252bf7f0114306057b3df37e5d260f0c2f9c3b07f360ec542026851e4', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:40.977392+00', 55, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3798, X'f691a8e652045da32b7d1cbe53ee374419805789b279c81c5eb7c2b506529c00', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:42.077807+00', 63, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3799, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.680526+00', 134, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3800, X'f93b78a676023f8f058c1b4318f9a76ab0d89a3d4f02d487832b766ea44b99e3', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.665194+00', 221, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3801, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.711978+00', 213, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3802, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.684328+00', 266, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3803, X'e64ce3688391f6f405a1718196bdcc367835d9be9892eb27e12204c8a6c13971', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.673493+00', 283, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3804, X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.745573+00', 228, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3805, X'f93b78a676023f8f058c1b4318f9a76ab0d89a3d4f02d487832b766ea44b99e3', TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:50.931475+00', 59, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3806, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:23.262236+00', 44, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(3807, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.321059+00', 140, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3808, X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.329602+00', 162, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3809, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.364541+00', 157, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3810, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.345741+00', 184, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3811, X'e64ce3688391f6f405a1718196bdcc367835d9be9892eb27e12204c8a6c13971', TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.339053+00', 213, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3812, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.36822+00', 204, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3813, X'8b8946513ea0343ab33eb69e12bbb2bb6061e84f63c4f95ccd63da063faa25fa', TIMESTAMP WITH TIME ZONE '2022-12-20 05:57:45.883028+00', 84, 7, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3814, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:13.514443+00', 46, 7, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(3815, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.356416+00', 74, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3816, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.372185+00', 203, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3817, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.401488+00', 201, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3818, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.368709+00', 276, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3819, X'e64ce3688391f6f405a1718196bdcc367835d9be9892eb27e12204c8a6c13971', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.402134+00', 240, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3820, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.413617+00', 253, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3821, X'e64ce3688391f6f405a1718196bdcc367835d9be9892eb27e12204c8a6c13971', TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:37.50923+00', 144, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(3822, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:06.10473+00', 68, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(3823, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:10.904912+00', 141, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3824, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:10.887848+00', 188, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3825, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:10.964977+00', 153, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3826, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.022172+00', 96, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3827, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:10.939863+00', 196, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3828, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.043143+00', 107, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3829, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:24.619113+00', 42, 4, TRUE, 'question', NULL, 1, 22, NULL, NULL, 2, FALSE), +(3830, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.361196+00', 135, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3831, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.399194+00', 116, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3832, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.359513+00', 159, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3833, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.411574+00', 119, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3834, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.421092+00', 133, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3835, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.400689+00', 154, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3836, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.712004+00', 230, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3837, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.775099+00', 200, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3838, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.648085+00', 314, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3839, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.71855+00', 264, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3840, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.680822+00', 327, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3841, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.647377+00', 370, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3842, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.83057+00', 199, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3843, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:26.971374+00', 163, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3844, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:26.984485+00', 194, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3845, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:26.952924+00', 282, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3846, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:26.996855+00', 236, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3847, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.136572+00', 231, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3848, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.18555+00', 199, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3849, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.374429+00', 93, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3850, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.435488+00', 82, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3851, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.463863+00', 110, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3852, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.464256+00', 111, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3853, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.470501+00', 226, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3854, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.482298+00', 218, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3855, X'9be54dd4c7c95f482afe94c13f31d7e017dfe8e3389037bb927c29b07fcb24da', TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:18.870844+00', 72, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(3856, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.88773+00', 73, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3857, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.88869+00', 83, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3858, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.934445+00', 85, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3859, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.909588+00', 126, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3860, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.919569+00', 127, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3861, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.930184+00', 124, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3862, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.540195+00', 176, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3863, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.586531+00', 172, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3864, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.696461+00', 221, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3865, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.653949+00', 280, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3866, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.665621+00', 270, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3867, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.61735+00', 337, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3868, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.330207+00', 57, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3869, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.340555+00', 141, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3870, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.422613+00', 69, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3871, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.441128+00', 91, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3872, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.429524+00', 115, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3873, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.430349+00', 142, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3874, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.097546+00', 100, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3875, X'ea6eb5ebd6ce7b2369f4167e4c44c0eda95bf1f3886a2ef6db297f6ff1b89d55', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.134847+00', 98, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3876, X'a1259bf5b6a1c671759de9349b7e35a9e2368e321a68e3e91fbc49caba9e6e1d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.108857+00', 125, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3877, X'cb32e5d7ac0331c9e26811d7da7260ead6ae6a8dbb07dd48db60d8646f89d3cf', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.127036+00', 112, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3878, X'e36f0a3d794a2f18badb7738a538c6338e565848157f90948ff50a98c22d4ada', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.186392+00', 93, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3879, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.17221+00', 125, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3880, X'509536cb7cec8cbc4cad30ccbcd2bd32f3ab38700074e048e9853ab57394f6a2', TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.201802+00', 128, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3881, X'863f340d7a6bc4800faccccf2ef48737be53062028a467c401728829b61012a3', TIMESTAMP WITH TIME ZONE '2022-12-20 06:10:38.862692+00', 42, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(3882, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.070819+00', 276, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3883, X'cb32e5d7ac0331c9e26811d7da7260ead6ae6a8dbb07dd48db60d8646f89d3cf', TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.006209+00', 385, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3884, X'ea6eb5ebd6ce7b2369f4167e4c44c0eda95bf1f3886a2ef6db297f6ff1b89d55', TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.09413+00', 331, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3885, X'509536cb7cec8cbc4cad30ccbcd2bd32f3ab38700074e048e9853ab57394f6a2', TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.282257+00', 172, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3886, X'e36f0a3d794a2f18badb7738a538c6338e565848157f90948ff50a98c22d4ada', TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.079952+00', 403, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3887, X'18394d94575b07729d98f9dce445cb18ab4fedd8ad7f8551dc7e5b527146f994', TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.047397+00', 453, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3888, X'a1259bf5b6a1c671759de9349b7e35a9e2368e321a68e3e91fbc49caba9e6e1d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.188568+00', 337, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3889, X'78447e2814de993723aac252f78eb943a4f68b032f7ef2fcdec8c4c190ac2f62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.135812+00', 61, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3890, X'4828c29713cd5530efb8714e9786894ec68e5de52a612d1985e0124da2b02cea', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.148014+00', 70, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3891, X'9cad830fe555ef3595bf054bff9502fa2922629d4b554290d6274eaa5b3feebb', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.152871+00', 76, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3892, X'fd4a127fc234affbddd43a9cc74de480a53adcff2cd905becd230fa670374a6c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.150466+00', 83, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3893, X'31a2b5bc3ea70237328ba9c44fb9da2a176ff58bb6d90d1fd41854f8fb7e718c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.156671+00', 81, 0, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3894, X'6b0370d181a502c1570b9757a1ecc1f396f07704465db921d07a9dc1d85a51d1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.176397+00', 77, 0, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3895, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:30.904088+00', 133, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3896, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:30.922443+00', 122, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3897, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:30.900995+00', 198, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3898, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:30.915982+00', 199, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3899, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:30.935543+00', 207, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3900, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:30.938007+00', 206, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3901, X'e4a5c1bd4d036be81902da71a8975ea3c974b37b2d3623f75d60bffb2a75669d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.735722+00', 42, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3902, X'23b7b9b09769324665c9c9b79fa76c586e6d034b9609c41cc8cda9302e70ba14', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.718217+00', 81, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3903, X'e45bbffb78e56cd99b924549ecdc70f68e0f2f8722e390326ab64fdce25bf3cd', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.744684+00', 64, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3904, X'b68b99ed11ac8cddadcfa9080ee2c8054b7eaa9de1de52820e25c8e93c67c7b1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.729597+00', 85, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3905, X'3788d1e3ce9119b07ec500318260f8c5599c6a105d1a3d750be138dd148bdf2e', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.740161+00', 78, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3906, X'f19aa23fd86e5bcd7949f0131b4af086b2d09ec26fbd435811375e4681be3721', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.758743+00', 84, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3907, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.617569+00', 72, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3908, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.597187+00', 110, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3909, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.601323+00', 139, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3910, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.593157+00', 149, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3911, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.604523+00', 172, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3912, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.681611+00', 120, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3913, X'953f59bd1ba9df9409a572221c970a552beadac9a8633b8f2ac03e1fd0eff226', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.702177+00', 92, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3914, X'9671b6aeda72192838c92b44ada637a963f8cafc88fd3948c159d4c1558163fe', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.700073+00', 89, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3915, X'e0993196c0841a123cb093b3ce6954bcfed47ad147658d3828523781316618ab', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.720625+00', 99, 0, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3916, X'a2e5ca9e4d15ea73bcc3a81474623752236290745c5f7088e6aefcfa64312c02', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.759374+00', 95, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3917, X'0a12024b4a670a54d56a4cb2f28e9a77d231d25c5ecc6c080d82053905c36ffd', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.751092+00', 110, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3918, X'e7acd63fb322bd4f9074a581c862571e164217be325db511b07ba3fa723eb209', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.747969+00', 138, 0, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3919, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.025355+00', 135, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3920, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.020447+00', 181, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3921, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.055931+00', 218, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3922, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.131756+00', 155, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3923, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.135674+00', 170, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3924, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.135552+00', 184, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3925, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.867068+00', 83, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3926, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.872528+00', 87, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3927, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.855349+00', 124, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3928, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.890769+00', 127, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3929, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.901982+00', 122, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3930, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.900249+00', 120, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3931, X'057f77c8c11faf9869754ea3e956d4c1c95b0a5d62190ce4dfcd1a5b1c9d79d9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:40.935835+00', 76, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3932, X'9350e24580c87b2b39e67a25a791e0c22aac00b8ecf4a4e5353bc69153cc32ba', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:40.948919+00', 94, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(3933, X'4a57fc8ec46cb4a51b65b4e16d3b6d019e538c8fcff15f68fddd1f90691d0ba9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:40.981258+00', 69, 0, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3934, X'e320b50a3c71c8ddcbdeef853d3b3b55174c7d1b075768123e20a54f091ebfff', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:40.960952+00', 153, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3935, X'a09004fedc9ba69b178219c131e94ae3da52a2055585194f2f330a2534851caa', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:40.967989+00', 159, 0, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3936, X'c61d2227e2baa2868c909437c75b5f6334d915a9c8d5edee636cd96ab157f437', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:41.045135+00', 117, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3937, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.626072+00', 73, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3938, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.735157+00', 156, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3939, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.768252+00', 118, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3940, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.746422+00', 153, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3941, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.620347+00', 294, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3942, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.623749+00', 302, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3943, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.74732+00', 182, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3944, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.245092+00', 45, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(3945, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.252382+00', 46, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3946, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.246793+00', 60, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(3947, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.230559+00', 77, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(3948, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.245074+00', 82, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(3949, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.254186+00', 81, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(3950, X'd00099f4797e3abcd65a77af7d33d77f9cdaffd07b07ec80ee97876c7e0f81c2', TIMESTAMP WITH TIME ZONE '2022-12-20 06:16:35.60856+00', 125, 8, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3951, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:16:51.919903+00', 48, 8, FALSE, 'question', NULL, 1, 14, NULL, NULL, 2, FALSE), +(3952, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.242361+00', 80, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3953, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.330487+00', 65, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3954, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.261586+00', 152, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3955, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.367378+00', 74, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3956, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.280472+00', 162, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3957, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.314246+00', 148, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3958, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.299058+00', 196, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3959, X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:05.126713+00', 53, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(3960, X'46dc6c4009dcf42de376ffb65fefef711904fc855ee14c3cb6adbe933b2329a9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:20.409456+00', 78, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(3961, X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:24.279527+00', 98, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(3962, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.279411+00', 48, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3963, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.313416+00', 51, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3964, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.290479+00', 90, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3965, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.305243+00', 95, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3966, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.322674+00', 84, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3967, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.355318+00', 56, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3968, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.371297+00', 51, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3969, X'5227534e1fda21689c88e8436b385cd2f277cf43bb68799d251e40188c7173e3', TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:43.271478+00', 68, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3970, X'5227534e1fda21689c88e8436b385cd2f277cf43bb68799d251e40188c7173e3', TIMESTAMP WITH TIME ZONE '2022-12-20 06:20:14.172965+00', 39, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3971, X'49878e372dc1fbb24ce8a1e508a4ac868cfa816f37106af23a3d866cbd3f8e68', TIMESTAMP WITH TIME ZONE '2022-12-20 06:20:47.929383+00', 48, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3972, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 06:21:10.668168+00', 63, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3973, X'f3745de86b1c4d458e3e7cb9288de545697b05f4fb123fcd319a1cc3f626b1c7', TIMESTAMP WITH TIME ZONE '2022-12-20 06:21:17.709052+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(3974, X'745e4574fa35d42d9386bc45d368b15f9b5e2e7d23f4becae84bbc5844b46374', TIMESTAMP WITH TIME ZONE '2022-12-20 06:21:20.294689+00', 31, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3975, X'068a7a0c6240e1bf8589b910bf7fbf86ea1503ab0bd02991e02e99fc61dd7915', TIMESTAMP WITH TIME ZONE '2022-12-20 06:21:38.524927+00', 29, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3976, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 06:21:46.394766+00', 74, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3977, X'21b0c804f65654a4b978fc6122307783777b4a7cda2a0a60274b393bcda14576', TIMESTAMP WITH TIME ZONE '2022-12-20 06:22:02.041407+00', 32, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3978, X'f8d7e7e39b7812ce2bf6ef0a80eb5fc64cb432fc72d8453d3f0be3cb451e20b9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:22:18.032419+00', 67, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3979, X'687d75d74c26c41efd54752f24fbad77e25c46fec1db5eed14e5f51b7f12004d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:22:54.01042+00', 32, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3980, X'687d75d74c26c41efd54752f24fbad77e25c46fec1db5eed14e5f51b7f12004d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:23:03.239363+00', 66, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3981, X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', TIMESTAMP WITH TIME ZONE '2022-12-20 06:24:13.244612+00', 96, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3982, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 06:24:26.352082+00', 53, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3983, X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:24:58.703616+00', 47, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(3984, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 06:25:14.162954+00', 75, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3985, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 06:25:42.889464+00', 97, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3986, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 06:26:14.653153+00', 66, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(3987, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 06:26:18.521931+00', 82, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3988, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 06:27:45.114796+00', 61, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3989, X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', TIMESTAMP WITH TIME ZONE '2022-12-20 06:27:50.240862+00', 55, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3990, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 06:28:09.132444+00', 50, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3991, X'bd3555146089691a01384832226fbc65202b9d76faa8cb2a913416ffd148b0cd', TIMESTAMP WITH TIME ZONE '2022-12-20 06:29:39.924517+00', 53, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(3992, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.760237+00', 211, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(3993, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.772168+00', 210, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(3994, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.849622+00', 200, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(3995, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.927836+00', 127, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(3996, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.8304+00', 228, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(3997, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.942026+00', 153, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(3998, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.94337+00', 191, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(3999, X'd00099f4797e3abcd65a77af7d33d77f9cdaffd07b07ec80ee97876c7e0f81c2', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:34.99315+00', 62, 8, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4000, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.739036+00', 74, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4001, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.766477+00', 178, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4002, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.870947+00', 101, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4003, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.794402+00', 193, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4004, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.794855+00', 205, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4005, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.814259+00', 191, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4006, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.737152+00', 279, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4007, X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:40.797361+00', 37, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4008, X'6dd96c282f75c306e39f67630251e0a408b8e4b080da88dc826e410bab5857b2', TIMESTAMP WITH TIME ZONE '2022-12-20 06:33:37.299184+00', 105, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4009, X'ed49a22c8f58b632aee9d72eae99edd1505ad6fd8d568a7544632701149942de', TIMESTAMP WITH TIME ZONE '2022-12-20 06:34:06.330205+00', 49, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4010, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 06:35:57.881086+00', 77, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4011, X'bb39f799f145ed188c270fa9d0dde3eee8dddb7a255e3f5999cab433e1fc7ab2', TIMESTAMP WITH TIME ZONE '2022-12-20 06:37:20.778522+00', 47, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4012, X'1acbf9925c38299087099472a64211d26be8fbe7e277a3e4983d7122681f0b5d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:39:19.036699+00', 49, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4013, X'1e0380c0df67342f051208850ef70913a583562ff93049da7f5ce96b26633c63', TIMESTAMP WITH TIME ZONE '2022-12-20 06:39:34.07432+00', 99, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4014, X'8f5953e54f0a58b3f9e28466ba91616e62923679df64011cd0c4e48988090641', TIMESTAMP WITH TIME ZONE '2022-12-20 06:40:25.726923+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(4015, X'5d83185f1ef0dc3112dd89c966a81a2787fbeed9f06e987bec1bc48c381e6fbf', TIMESTAMP WITH TIME ZONE '2022-12-20 06:40:33.989591+00', 38, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4016, X'7d41e2d13ea90f0ed55bb12f4d1b0fea0635ea553c2d08544dc838b5ee9c58e5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:41:49.315496+00', 19, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$info''.', 1, NULL, NULL, NULL, 2, NULL), +(4017, X'7d41e2d13ea90f0ed55bb12f4d1b0fea0635ea553c2d08544dc838b5ee9c58e5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:41:53.190389+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$info''.', 1, NULL, NULL, NULL, 2, NULL), +(4018, X'6e98f70bf6293498639bbfb3406c1cd2b3a5a45c87d696a54c7abfa3601518ca', TIMESTAMP WITH TIME ZONE '2022-12-20 06:43:55.66595+00', 43, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$info''.', 1, NULL, NULL, NULL, 2, NULL), +(4019, X'c90b449f3a2da32b2be5ed2a66bd2d07212e3f6da8bbaed47eb1eddaf91ebfea', TIMESTAMP WITH TIME ZONE '2022-12-20 06:44:13.420285+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$info''.', 1, NULL, NULL, NULL, 2, NULL), +(4020, X'664258f8de7c0332ea0d3ec53682cb353a2d72836d298aea84f731fe6ec5a05b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:44:38.60938+00', 82, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4021, X'664258f8de7c0332ea0d3ec53682cb353a2d72836d298aea84f731fe6ec5a05b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:44:53.983578+00', 78, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4022, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.254686+00', 137, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4023, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.279883+00', 116, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4024, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.282571+00', 115, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4025, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.273365+00', 127, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4026, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.301026+00', 125, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4027, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.286304+00', 144, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4028, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.300289+00', 139, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4029, X'6a036c6cadc087e7cd13665f96f0f1ad6c13a1fb95d7a638a7c765439b1ae806', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:06.581994+00', 40, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(4030, X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:24.185067+00', 214, 2, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(4031, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:39.711711+00', 49, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(4032, X'989b1a4d25a0519be1b5afe2afaad53de2f0c99fb9d900036ce8cf677bfff9e3', TIMESTAMP WITH TIME ZONE '2022-12-20 06:47:19.399507+00', 144, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4033, X'32990090fa7b19063142c32a50d01d16c36c75428b5f6b180a458840c9b5c382', TIMESTAMP WITH TIME ZONE '2022-12-20 06:48:27.364142+00', 116, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4034, X'f41c2c18f66463269f2c3d2bae053e2f3bde5f7dd232f8fa978bbe173de7c54e', TIMESTAMP WITH TIME ZONE '2022-12-20 06:48:31.087928+00', 30, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4035, X'9c91451d471ac373bed0e271c6c722e69373933916734844eb21bef20988487a', TIMESTAMP WITH TIME ZONE '2022-12-20 06:48:41.327883+00', 31, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4036, X'94c2e75067030548c5be7a5c2f1f4939bd5a415de39e125083c0662b68c5b3c3', TIMESTAMP WITH TIME ZONE '2022-12-20 06:49:56.151003+00', 50, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4037, X'06880a258df71643e85d4f8d9231d4653080eb09951a622cd55861e5acb59801', TIMESTAMP WITH TIME ZONE '2022-12-20 06:51:01.810156+00', 31, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4038, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:03.837855+00', 66, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4039, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:11.641796+00', 59, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4040, X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:16.353634+00', 73, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4041, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.012821+00', 248, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4042, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.054029+00', 293, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4043, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.076908+00', 284, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4044, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.276061+00', 117, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4045, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.252528+00', 155, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4046, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.215755+00', 223, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4047, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:37.823926+00', 39, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4048, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.073757+00', 207, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4049, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.079348+00', 236, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4050, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:15.894193+00', 520, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4051, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:15.934522+00', 476, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4052, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.432784+00', 105, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4053, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.384228+00', 263, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4054, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.39799+00', 291, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4055, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.025504+00', 367, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4056, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.318815+00', 150, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4057, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.363385+00', 156, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4058, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.263712+00', 337, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4059, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.25566+00', 342, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4060, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.296524+00', 341, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4061, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:32.722805+00', 142, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(4062, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:53.961203+00', 103, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4063, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.004979+00', 216, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4064, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.098761+00', 268, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4065, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.094287+00', 292, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4066, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.14634+00', 307, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4067, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.113095+00', 358, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4068, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:04.861157+00', 10073, 0, TRUE, 'question', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 21, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4069, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:17.594069+00', 4290, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4070, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:17.54113+00', 4336, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4071, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:17.519367+00', 4432, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4072, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:17.424111+00', 4538, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4073, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:17.62051+00', 4360, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4074, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:17.629134+00', 4412, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4075, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:24.430502+00', 148, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(4076, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.535081+00', 90, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4077, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.529873+00', 186, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4078, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.561992+00', 156, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4079, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.53552+00', 200, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4080, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.562061+00', 249, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4081, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.672316+00', 161, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4082, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 07:01:58.895302+00', 37, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(4083, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.026573+00', 86, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4084, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:38.967334+00', 180, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4085, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:38.973247+00', 181, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4086, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.087999+00', 75, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4087, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.1168+00', 83, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4088, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.139682+00', 94, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4089, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:12.862029+00', 55, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4090, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.713715+00', 164, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4091, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.770289+00', 132, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4092, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.777288+00', 152, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4093, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.803175+00', 166, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4094, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.78973+00', 195, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4095, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.883156+00', 223, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4096, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 07:09:58.330449+00', 84, 12, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(4097, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.44544+00', 161, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4098, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.588433+00', 90, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4099, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.452991+00', 231, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4100, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.530424+00', 220, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4101, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.565071+00', 215, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4102, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.587773+00', 222, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4103, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.201436+00', 68, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4104, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.202996+00', 69, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4105, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.22077+00', 88, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4106, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.247872+00', 77, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4107, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.240962+00', 89, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4108, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.23041+00', 97, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4109, X'db2c8cf1e15ae40e36e574cb0188ac96bdcedbfd055d56fa0e2a02ed2561090b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:09.923597+00', 121, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4110, X'9183a70b26da6371e9211108dc1ae0e15b32fec6e6b6c606f8aedfd0546023af', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:09.942274+00', 104, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4111, X'd8de849c2b6f14c60517d0a7401b3acae7ff96c14e72eacae62c1ca7225c26ce', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:09.961751+00', 126, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4112, X'1af9dc1305573da0e3be82ce6bb91c2b792a0a0cb75e57475abbb642d6f4aca3', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:09.934213+00', 163, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4113, X'e16ad6adef791e28a08f03f6817f2c24ef83a1e99b6f2daea7432548c27585b6', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:09.963538+00', 141, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4114, X'2f695c1f040df024a1be848aaa51e2675f8db3cd5f2c32eb3099875e9916490c', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:09.943801+00', 167, 5, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4115, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.116521+00', 100, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4116, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.174455+00', 80, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4117, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.156594+00', 139, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4118, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.157297+00', 152, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4119, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.156886+00', 157, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4120, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.202924+00', 135, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4121, X'7b0b504212d43dcc05e14fe209acc51310d2e3bfff8ff77c8aaeab3e828890f3', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.097554+00', 51, 3, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4122, X'0a85e354a673439f146e465f22efa7a15dc06cfe2c8bf57d08c92174eae97a61', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.106307+00', 45, 1, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4123, X'dda733d44ab69e5205744dad19aa7cc3fada17009a0be476209e6115b095f0fa', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.106336+00', 76, 1, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4124, X'ea24671af24ca0c411589b75ac9fe073bf0b1460f1a09a89fa234453f35d00b6', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.122007+00', 72, 2, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4125, X'ba2daed13418deb1805f4547edf5f599b1902d1c8abbe1a08190922ec82f0bd8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.136566+00', 66, 2, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4126, X'1c21b7d677748b96c0a7474ee6aae671741bfc5376b1f5df8c5b0aac3b37bf28', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.124125+00', 77, 2, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4127, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:21.838621+00', 186, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4128, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:21.98373+00', 86, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4129, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:21.937365+00', 132, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4130, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:21.983598+00', 130, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4131, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:21.963588+00', 149, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4132, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:21.983656+00', 140, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4133, X'6ef6e5e47a909a53259c293bc824974af670207686a2ae3c7441958ca9ce9b6d', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.416824+00', 95, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4134, X'0c9969c27d1d135ee4a07f2a1fbd0be6646b29be592867fc5ef787e2b57fb953', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.386261+00', 146, 7, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4135, X'da7806eb8d39f11a5847e0b5bb9a735736dcc520cd0ecc808c8a90a8d0032227', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.49721+00', 193, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4136, X'e4a59a49efd6f45c674c3dd2ebcf1f8baa3acffdbddb22ec5186b1d72ba9a033', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.532642+00', 167, 5, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4137, X'f38a1282a39ce1e20eab8bab6174ca0b892bcbc68f6193bf95d830373cfa9e7e', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.489278+00', 226, 3, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4138, X'59b3602c637f912b732d1a98f8b8acef9fb13f66a18d5de2b0e3da40bb492a49', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.5327+00', 219, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4139, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:26.979688+00', 66, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4140, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:26.965813+00', 95, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4141, X'e48f62f90fe8596b1acf0a7e746939d6a2f00bc8bd4632fcaec3725d2c2f47f1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:26.976958+00', 111, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4142, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.016633+00', 85, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4143, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.019498+00', 86, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4144, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.022051+00', 86, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4145, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:01.160234+00', 45, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4146, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:16.780867+00', 85, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4147, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:21.407831+00', 37, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4148, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:38.441658+00', 59, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4149, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:41.474928+00', 49, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4150, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:50.509385+00', 61, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4151, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:16:47.222111+00', 67, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4152, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:17:05.629045+00', 37, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4153, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:17:10.11586+00', 68, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4154, X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', TIMESTAMP WITH TIME ZONE '2022-12-20 07:17:55.426744+00', 80, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4155, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.004735+00', 79, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4156, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:23.994063+00', 97, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4157, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:23.985567+00', 114, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4158, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.024616+00', 81, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4159, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.004579+00', 107, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4160, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.024703+00', 95, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4161, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.037395+00', 91, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4162, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.564679+00', 243, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4163, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.557177+00', 313, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4164, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.605031+00', 286, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4165, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.746986+00', 160, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4166, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.780307+00', 124, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4167, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.721767+00', 201, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4168, X'f84cc55423cfe3fee5dbf7bca810ed3fbf0512a78253ff0c3effae8a826d42a5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:13.875849+00', 46, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(4169, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:51.382265+00', 38, 23, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4170, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:09.051592+00', 215, 23, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4171, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:15.498709+00', 55, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4172, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:17.328471+00', 161, 23, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4173, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:42.26136+00', 73, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4174, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:44.959076+00', 80, 23, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4175, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:58.280382+00', 92, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4176, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:22.063115+00', 58, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4177, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:27.15642+00', 90, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4178, X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:29.364411+00', 39, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4179, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:31.123077+00', 74, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4180, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:33.433658+00', 46, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4181, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:46.139311+00', 71, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4182, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.178639+00', 118, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4183, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.112648+00', 220, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4184, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.137363+00', 196, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4185, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.112145+00', 441, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4186, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.16035+00', 422, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4187, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.192546+00', 422, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4188, X'5a03d741b68ac7d2adaaad64b5563248e92d5d129cc4df22e58ce9c595cf7099', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.289495+00', 168, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4189, X'095063ab5613d53dddd4b22c9f961917b012cb8c179bcbad436e3ccead94a546', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.299996+00', 172, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4190, X'a215b266ef6082c6cef7ca8100e86fcad35a378fa40db609ba456f711e9336de', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.29025+00', 217, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4191, X'f4808e1c952174056354c5fdb6cc329e3163469aab792bb25a2fd22275913f6d', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.329263+00', 196, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4192, X'c0a1918262c0e4d8de88db9a4915b806b7bab4cb6f5cf647ff690a20aa2c2c88', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.294136+00', 211, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4193, X'ee3f8505e240dab9f2bdc170533c5d6d4121ca998464b5048890fc1f1384a3e5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.331503+00', 196, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4194, X'31bdaf616328ebfffb3d289287dcc34b9f5768d7907e0dc8aeaf5b0e66d555b8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.327706+00', 115, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4195, X'09d928d7082b5358722e8c2b3e48abd18ea05854c75abc1a0a4eee7e758c7d41', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.344621+00', 141, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4196, X'bfc096bfcf722da782694beb9dc6b5d7442a8457bf9cb092e3b282248661c335', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.378774+00', 155, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4197, X'daa3de72c322346490e3acdd22b215db9dba08a4f0c14c858a07d91fa1298aa5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.335416+00', 223, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4198, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.415493+00', 171, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4199, X'e437e2dac44f895d67e8894894908c56f6713c5d475d6ec429000017641bdf65', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.420442+00', 195, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4200, X'9300f395cb8e84d0ebf1a133c0c76e06a5e0d415ef02041e65b15430e15e9fa5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.544342+00', 252, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4201, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.651962+00', 224, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4202, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.658189+00', 266, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4203, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.658531+00', 306, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4204, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.706381+00', 305, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4205, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.851807+00', 197, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4206, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.811689+00', 241, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4207, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.900165+00', 230, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4208, X'af81c80df748b0be1f91223cdcdc9cf9d1bfabe55cac771226df3215c6719fa2', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:43.825085+00', 211, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4209, X'45cfb3b45c8a223617230b0e0b3eced4c8d036fd3455b21ed56e016a489a17ec', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:43.868194+00', 195, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4210, X'68501413befb67115fd46f78ed52d92717e7ecdc107cb4621c39adf530ad1e76', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:43.819134+00', 263, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4211, X'67dff83ec7df6024aa6c4fccdae35c00e0e5a4887d7fdf99f6d8908837984d89', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:43.988608+00', 184, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4212, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:43.994395+00', 176, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4213, X'3e48780f928188bb6045ec0c5b244142cff5f8b2a6d25e09838d8795d54e4cb9', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.017225+00', 188, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4214, X'7aada2f03eacd1c744378b34cb8537194af418609ab8346c1d4a4cd89c07e3b5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:43.850278+00', 370, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4215, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.12888+00', 137, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4216, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.233337+00', 129, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4217, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.218172+00', 171, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4218, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.158943+00', 230, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4219, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.153813+00', 312, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4220, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.289969+00', 252, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4221, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.192959+00', 352, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4222, X'45cfb3b45c8a223617230b0e0b3eced4c8d036fd3455b21ed56e016a489a17ec', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.599523+00', 79, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4223, X'67dff83ec7df6024aa6c4fccdae35c00e0e5a4887d7fdf99f6d8908837984d89', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.514943+00', 209, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4224, X'af81c80df748b0be1f91223cdcdc9cf9d1bfabe55cac771226df3215c6719fa2', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.594018+00', 134, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4225, X'7aada2f03eacd1c744378b34cb8537194af418609ab8346c1d4a4cd89c07e3b5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.505952+00', 243, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4226, X'f7f4c9e749938901d138b94a7db7148ec5385ca45860a7ad4c851ced74148f3d', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.645278+00', 111, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4227, X'68501413befb67115fd46f78ed52d92717e7ecdc107cb4621c39adf530ad1e76', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.603296+00', 162, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4228, X'3e48780f928188bb6045ec0c5b244142cff5f8b2a6d25e09838d8795d54e4cb9', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.647172+00', 131, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4229, X'ad98952a5db3ce23d1181578af284a64e9f97f8393aa39b5cd1a9c241bf866b8', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.4244+00', 167, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4230, X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.438732+00', 164, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4231, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.492466+00', 168, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4232, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.42415+00', 237, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4233, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.401321+00', 294, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4234, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.510431+00', 226, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4235, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.331821+00', 431, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4236, X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:26.931667+00', 82, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4237, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.011587+00', 156, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4238, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.093513+00', 120, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4239, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.042582+00', 191, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4240, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.026789+00', 239, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4241, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.01741+00', 256, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4242, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.102797+00', 173, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4243, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.135567+00', 185, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4244, X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:56.741144+00', 73, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(4245, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:30:10.080388+00', 81, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4246, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 07:31:45.095484+00', 49, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(4247, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:32:05.292905+00', 48, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4248, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:32:35.316931+00', 53, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4249, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:34:05.441169+00', 66, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4250, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:34:08.120397+00', 38, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4251, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:34:23.618508+00', 56, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4252, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:35:45.581492+00', 88, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4253, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:35:48.996637+00', 63, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4254, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.297438+00', 66, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4255, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.2965+00', 111, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4256, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.28205+00', 134, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4257, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.310091+00', 114, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4258, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.402706+00', 54, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4259, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.360862+00', 103, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4260, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.402349+00', 74, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4261, X'5227534e1fda21689c88e8436b385cd2f277cf43bb68799d251e40188c7173e3', TIMESTAMP WITH TIME ZONE '2022-12-20 07:44:31.66823+00', 104, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4262, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:45:00.199828+00', 103, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4263, X'31ed44d477531dfed91c17c8cc7dd6982cfe0c9d83cd5ff986719fd9c0372d99', TIMESTAMP WITH TIME ZONE '2022-12-20 07:45:15.026191+00', 45, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4264, X'4ea4741a4f14753717999d4cbc9c2f51318464dcbb2a4f3e909ffeac0760cb19', TIMESTAMP WITH TIME ZONE '2022-12-20 07:46:37.385111+00', 74, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4265, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:26.46391+00', 80, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4266, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:32.48979+00', 34, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4267, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:50.723695+00', 106, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4268, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:00.059892+00', 65, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4269, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:10.998861+00', 158, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4270, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:29.311505+00', 55, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4271, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:43.21952+00', 48, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4272, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:54.193376+00', 78, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4273, X'4a118d3052e3bd058c6fb36c1e3214a81e13e56459b17565e4128f9a873a3763', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:21.673316+00', 117, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4274, X'6402c4696f16edd8f30bb483f91fbf27b8a11c5670268e1dd9b54f7f4769eeab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:47.729818+00', 62, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4275, X'83fa085ecb56571eb4bc31d38c8581c538161e810b5754de8223b3e0831d4f56', TIMESTAMP WITH TIME ZONE '2022-12-20 07:53:19.641639+00', 70, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4276, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 07:53:38.11884+00', 74, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4277, X'3759d68764c65460576cb09e1e7fb24e25f1d58c4eb8eda2942914c985df28c2', TIMESTAMP WITH TIME ZONE '2022-12-20 07:54:14.791959+00', 62, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4278, X'664258f8de7c0332ea0d3ec53682cb353a2d72836d298aea84f731fe6ec5a05b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:57:21.304674+00', 37, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4279, X'664258f8de7c0332ea0d3ec53682cb353a2d72836d298aea84f731fe6ec5a05b', TIMESTAMP WITH TIME ZONE '2022-12-20 07:57:44.528867+00', 45, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4280, X'6856561883fb019395c9ce14d53348115624feb4d01166d200d4308485ffc8ab', TIMESTAMP WITH TIME ZONE '2022-12-20 07:58:54.478219+00', 38, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4281, X'353f94fb27ed10673f9c3b0384eeb36c3aac9a163cdf9f86cca311c243d0944d', TIMESTAMP WITH TIME ZONE '2022-12-20 08:00:45.564177+00', 81, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4282, X'82e58e46d4c8b5c25a25f0bdfba1ee1247f6ea5056ec61e3a630d840daa0aa46', TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:15.101899+00', 48, 2, TRUE, 'question', NULL, 1, 23, NULL, NULL, 2, FALSE), +(4283, X'90ea5d5d66e3254eeba2bf82eb8d29f09d44b48b6c5350d22b7f73886f36173a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:24.837819+00', 64, 2, TRUE, 'question', NULL, 1, 25, NULL, NULL, 2, FALSE), +(4284, X'49e4dd7aa470a695e20893a2cca84f92aa886f88d88ebd86d0b13fd9eb18ff68', TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:30.63404+00', 37, 2, TRUE, 'question', NULL, 1, 24, NULL, NULL, 2, FALSE), +(4285, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:42.939805+00', 98, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4286, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:42.998503+00', 109, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4287, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.02619+00', 147, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4288, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.062831+00', 145, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4289, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:42.9909+00', 204, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4290, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.048867+00', 166, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4291, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.004545+00', 244, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4292, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.076878+00', 108, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4293, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.12524+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(4294, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.158229+00', 132, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(4295, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.190411+00', 105, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(4296, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.127858+00', 239, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(4297, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.176251+00', 229, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(4298, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.286451+00', 204, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4299, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.346134+00', 151, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4300, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.284121+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(4301, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.309213+00', 245, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4302, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.309213+00', 256, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(4303, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.497052+00', 197, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(4304, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.485303+00', 226, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(4305, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.531252+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4306, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.460353+00', 306, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(4307, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 08:17:08.42298+00', 66, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4308, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 08:17:19.488417+00', 60, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4309, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.076463+00', 51, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4310, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.077793+00', 54, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4311, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.071686+00', 135, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(4312, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.065974+00', 143, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(4313, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.071569+00', 143, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(4314, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.093006+00', 183, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(4315, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.085433+00', 220, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4316, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.085433+00', 230, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(4317, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.1732+00', 162, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4318, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.252396+00', 96, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(4319, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.34567+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(4320, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.273684+00', 181, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4321, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.352629+00', 124, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(4322, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.362246+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4323, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.371688+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(4324, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 08:21:39.094304+00', 53, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4325, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.028664+00', 82, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4326, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.034127+00', 108, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4327, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.021811+00', 142, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4328, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:20.999587+00', 163, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4329, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.07225+00', 120, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4330, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.124906+00', 118, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4331, X'90ea5d5d66e3254eeba2bf82eb8d29f09d44b48b6c5350d22b7f73886f36173a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:30.913768+00', 35, 2, TRUE, 'question', NULL, 1, 25, NULL, NULL, 2, FALSE), +(4332, X'90ea5d5d66e3254eeba2bf82eb8d29f09d44b48b6c5350d22b7f73886f36173a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:55.030482+00', 92, 2, TRUE, 'question', NULL, 1, 25, 3, NULL, 2, FALSE), +(4333, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 08:24:33.939995+00', 60, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4334, X'cf0e98a19acb5e32987cee5f9e7f14c165f881336988eab6c5f4363e2d577ca8', TIMESTAMP WITH TIME ZONE '2022-12-20 08:24:43.865144+00', 94, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4335, X'49e4dd7aa470a695e20893a2cca84f92aa886f88d88ebd86d0b13fd9eb18ff68', TIMESTAMP WITH TIME ZONE '2022-12-20 08:27:56.381866+00', 37, 2, TRUE, 'question', NULL, 1, 24, NULL, NULL, 2, FALSE), +(4336, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 08:30:47.985549+00', 69, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4337, X'6e84327839afe1e3717771b49a225f099bafc3e436dfa248bed7043fd93f5855', TIMESTAMP WITH TIME ZONE '2022-12-20 08:30:56.878265+00', 76, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4338, X'a7df3d0859a64066765282bb09ea79b8f6e53440e629acecf22bce2e926e46d9', TIMESTAMP WITH TIME ZONE '2022-12-20 08:31:51.860827+00', 98, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4339, X'6952082e6828eaec1d6dff13534ddd7cf20f736cc3b0c106a06e59750fb6aee1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:32:22.171291+00', 146, 90, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4340, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 08:32:38.30342+00', 73, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4341, X'66020a64c75ebd77c42bab1b1bc9f0abf6bdd5bebf89232115969cca45fc15f6', TIMESTAMP WITH TIME ZONE '2022-12-20 08:33:14.039118+00', 333, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4342, X'11e5f0aca1ca272a40a2dd87ae4b5f15f634198a3b9878be092e8ef8ffbb09a5', TIMESTAMP WITH TIME ZONE '2022-12-20 08:36:46.639781+00', 117, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4343, X'b9772b3c4216a66468374aefc582a350249dca39a77e0f93744a8bd3484f0a2f', TIMESTAMP WITH TIME ZONE '2022-12-20 08:37:16.796482+00', 104, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4344, X'f73c08d98bcd1e7bd90ddb4f37665ca2215936e1fe8939aac2da0f04630f89f5', TIMESTAMP WITH TIME ZONE '2022-12-20 08:37:52.609875+00', 181, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4345, X'5ad106060f0fe599da84573e7bd224587b8ab7a65d8072e7da4d75a1d4b84e86', TIMESTAMP WITH TIME ZONE '2022-12-20 08:38:18.644115+00', 108, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4346, X'702f0e708f0b99cd4d5487b3b2bb565c90f32f78afb7eb75066ff30ae69b96d6', TIMESTAMP WITH TIME ZONE '2022-12-20 08:38:28.850207+00', 94, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4347, X'554a22ca58406bc439a94b7fe0a963d4a30befb4b3fd60f97908f72400395702', TIMESTAMP WITH TIME ZONE '2022-12-20 08:38:42.659224+00', 226, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4348, X'3c44e423a31caeb4b0a6255ea44a3db1002841533cc345eb476fca4157e81394', TIMESTAMP WITH TIME ZONE '2022-12-20 08:39:35.27456+00', 176, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4349, X'13ab874fec6632706691edc5115f77111f412d66d028c42a52d9ffaaa32f4edb', TIMESTAMP WITH TIME ZONE '2022-12-20 08:39:52.031131+00', 188, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4350, X'0264d7a6a820905643b90ed842dcbe3cf1a778cfe556fe05e45513e6841e2b81', TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:06.497029+00', 249, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4351, X'0264d7a6a820905643b90ed842dcbe3cf1a778cfe556fe05e45513e6841e2b81', TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:06.95855+00', 85, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4352, X'b29067aaabe76c6e8b0de746e473b32ee1536de41a700f7adbe9ff1de715dac1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:16.233967+00', 113, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4353, X'84432bf5371583d04327ce36d0e74ab84251c1dda40e217545930a65ec81ed88', TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:35.678342+00', 266, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4354, X'84432bf5371583d04327ce36d0e74ab84251c1dda40e217545930a65ec81ed88', TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:36.177244+00', 132, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4355, X'521dcb050aae2995805f07abd0afded36b7bb1efc2e98524c82b9de2db8cf569', TIMESTAMP WITH TIME ZONE '2022-12-20 08:42:05.152647+00', 120, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4356, X'84aec2dc7261953d9ae5b649ff253c07f0d4b437211def5c495961e87760ca90', TIMESTAMP WITH TIME ZONE '2022-12-20 08:42:17.398087+00', 128, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4357, X'b2f118b1d6f257c875f330a45b848a462abe98b3ae8f1e3db6ce20b495838019', TIMESTAMP WITH TIME ZONE '2022-12-20 08:43:35.275558+00', 154, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4358, X'11e5f0aca1ca272a40a2dd87ae4b5f15f634198a3b9878be092e8ef8ffbb09a5', TIMESTAMP WITH TIME ZONE '2022-12-20 08:43:44.297669+00', 137, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4359, X'3c44e423a31caeb4b0a6255ea44a3db1002841533cc345eb476fca4157e81394', TIMESTAMP WITH TIME ZONE '2022-12-20 08:44:00.63422+00', 126, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4360, X'7926c97febc9fe624a1d4f632fee66f7f0c24f07a19a141a06767e8deda4eafd', TIMESTAMP WITH TIME ZONE '2022-12-20 08:46:49.38231+00', 41, 27, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4361, X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', TIMESTAMP WITH TIME ZONE '2022-12-20 08:46:53.711781+00', 200, 15, FALSE, 'question', NULL, 1, 26, NULL, NULL, 2, FALSE), +(4362, X'f0c0eb4d2615394dd783c03d161171154da6ce340d37ba48d573dd7b4f27d1f4', TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:15.915805+00', 46, 27, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4363, X'ee6ce3c4b09478aabec60d48afb7a8c25872a9650f239029bbf4500173922a68', TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:24.194101+00', 38, 27, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4364, X'7e10b97b2bb0cae00f9029275655cb444f22ab635831533d8c6bc4910309afeb', TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:41.939914+00', 49, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4365, X'ee6ce3c4b09478aabec60d48afb7a8c25872a9650f239029bbf4500173922a68', TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:43.273201+00', 53, 27, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4366, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.362205+00', 75, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4367, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.354976+00', 88, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4368, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.307406+00', 145, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4369, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.31174+00', 198, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4370, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.378375+00', 152, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4371, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.34495+00', 212, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4372, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.410435+00', 194, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4373, X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', TIMESTAMP WITH TIME ZONE '2022-12-20 08:49:21.728254+00', 234, 15, FALSE, 'question', NULL, 1, 26, 3, NULL, 2, FALSE), +(4374, X'6952082e6828eaec1d6dff13534ddd7cf20f736cc3b0c106a06e59750fb6aee1', TIMESTAMP WITH TIME ZONE '2022-12-20 08:50:28.713431+00', 151, 90, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4375, X'9f8816bc305db02c18c551027326437cc3e019ac75bfee72e9c559316d25e866', TIMESTAMP WITH TIME ZONE '2022-12-20 08:51:38.716074+00', 38, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(4376, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.301805+00', 128, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4377, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.334046+00', 157, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4378, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.432778+00', 102, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4379, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.386886+00', 148, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4380, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.394515+00', 157, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4381, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.422425+00', 148, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4382, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.438752+00', 139, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4383, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.418386+00', 277, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4384, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.76244+00', 79, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4385, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.797259+00', 74, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4386, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.8038+00', 69, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4387, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.826701+00', 68, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4388, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.838845+00', 71, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4389, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.837972+00', 92, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4390, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.882851+00', 59, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4391, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.852086+00', 186, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4392, X'9f8816bc305db02c18c551027326437cc3e019ac75bfee72e9c559316d25e866', TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:58.595891+00', 59, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(4393, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 08:57:20.708087+00', 73, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(4394, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:41.980996+00', 116, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4395, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:41.855227+00', 332, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4396, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:41.937339+00', 253, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4397, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:41.904254+00', 333, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4398, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:41.977423+00', 249, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4399, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:41.992167+00', 285, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4400, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.079895+00', 283, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4401, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:41.983548+00', 574, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4402, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.775363+00', 96, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4403, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.856648+00', 106, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4404, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.766798+00', 205, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4405, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.788163+00', 188, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4406, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.795338+00', 186, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4407, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.845767+00', 144, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4408, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.896329+00', 104, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4409, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.797167+00', 273, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4410, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:43.524609+00', 135, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4411, X'51dabd24b50fd941cf37cbebbd3eb984cb1431d9da33790f157ea47f063954b8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:21.882764+00', 398, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4412, X'0fec3800bf88eb0308c0bba8ac67c609a450187a54811250cf68bcbdaddac659', TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:23.346377+00', 178, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4413, X'51dabd24b50fd941cf37cbebbd3eb984cb1431d9da33790f157ea47f063954b8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:27.427412+00', 159, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4414, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:28.80211+00', 182, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4415, X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:40.968267+00', 142, 15, FALSE, 'question', NULL, 1, 26, NULL, NULL, 2, FALSE), +(4416, X'c3df63c74e7d7fd230eebe2d3a597043a2db1b4530bd682db04f06e10a8ca149', TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:00.205495+00', 174, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4417, X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:15.425175+00', 184, 15, FALSE, 'question', NULL, 1, 26, NULL, NULL, 2, FALSE), +(4418, X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:40.975435+00', 147, 15, FALSE, 'question', NULL, 1, 26, NULL, NULL, 2, FALSE), +(4419, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.132985+00', 156, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4420, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.113261+00', 163, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4421, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.154638+00', 156, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4422, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.205201+00', 176, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4423, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.229122+00', 169, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4424, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.323458+00', 179, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4425, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.16758+00', 347, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4426, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.156928+00', 486, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4427, X'9f8816bc305db02c18c551027326437cc3e019ac75bfee72e9c559316d25e866', TIMESTAMP WITH TIME ZONE '2022-12-20 09:15:25.194068+00', 134, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(4428, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.117398+00', 177, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4429, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.028455+00', 289, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4430, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:22.984302+00', 506, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4431, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:22.972221+00', 532, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4432, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.35838+00', 156, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4433, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.315314+00', 199, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4434, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.288272+00', 289, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4435, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.278087+00', 330, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4436, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:25.569346+00', 388, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4437, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.119502+00', 446, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4438, X'8cfeeb512d0d4dbd5e9ae03843477ca8cd65f12903fbd2be2d9c433a8f307095', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.112971+00', 481, 6, TRUE, 'dashboard', NULL, 1, 17, 3, NULL, 2, FALSE), +(4439, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.067396+00', 547, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4440, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.114035+00', 528, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4441, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.127653+00', 653, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4442, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.195431+00', 588, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4443, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.133369+00', 651, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4444, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.142911+00', 905, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4445, X'9f8816bc305db02c18c551027326437cc3e019ac75bfee72e9c559316d25e866', TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:18.542656+00', 72, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(4446, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.748228+00', 160, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(4447, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.764266+00', 1015, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(4448, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.740041+00', 1074, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(4449, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.79881+00', 1014, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4450, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.79881+00', 1015, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 9, 2, NULL, 2, NULL), +(4451, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.740041+00', 1115, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(4452, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.764266+00', 1095, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(4453, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.900963+00', 975, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(4454, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.900963+00', 1012, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(4455, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.88934+00', 1037, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4456, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.765154+00', 1163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4457, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.765154+00', 1170, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(4458, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.805585+00', 1175, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4459, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.805585+00', 1192, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(4460, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.714247+00', 344, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4461, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.714241+00', 652, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4462, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:09.960436+00', 1413, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(4463, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.714198+00', 698, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4464, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.718432+00', 752, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(4465, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.935031+00', 637, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(4466, X'cc0411757c12d7252bd1c7c096c0aaa8429d5a1bd6b570f37aa9a9cd9b32fc49', TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:55.950406+00', 136, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4467, X'a75cb508f8e3a4d86a5757d45002c66267aada71a152f9e095bd8122b1887c1e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:20:43.980029+00', 77, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4468, X'5eb12cb36427f4de1fb5596438146a627ede3d339c35bef0f76c433ff2767a2c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:14.965217+00', 49, 6, TRUE, 'question', NULL, 1, 17, NULL, NULL, 2, FALSE), +(4469, X'd6a795a4df425a34519f86e98f8a862e0f5eb03ec6494f00d9880e8319a7f2b9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:18.300049+00', 95, 6, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(4470, X'd6a795a4df425a34519f86e98f8a862e0f5eb03ec6494f00d9880e8319a7f2b9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:29.212233+00', 78, 6, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(4471, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.674228+00', 78, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4472, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.609984+00', 124, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4473, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.654151+00', 113, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4474, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.700948+00', 88, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4475, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.743051+00', 83, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4476, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.73484+00', 96, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4477, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.63991+00', 316, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4478, X'd6a795a4df425a34519f86e98f8a862e0f5eb03ec6494f00d9880e8319a7f2b9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:42.648138+00', 131, 6, FALSE, 'question', NULL, 1, 27, 3, NULL, 2, FALSE), +(4479, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.739084+00', 86, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4480, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.887505+00', 93, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4481, X'67535e9e9cc5a3e8af0a9fe5c403d1d19a9ef3e3c901d92506583f5ba8d2da0d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.892559+00', 94, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4482, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.911491+00', 148, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4483, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.91662+00', 172, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4484, X'f6387e8647d2235e9d6faaa232936748132108b2a3e9bb705f640a488fe3adf2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.816751+00', 302, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4485, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.91196+00', 220, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4486, X'0c06c93f247a56b3ad7df9b08b818bb99018698bd56a658fc601e15a0488f0e6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.86335+00', 303, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4487, X'720f4a79b2e7e7314cdb1b9091f7160fd9674f134641eded7d741200e20a5140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.530443+00', 54, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4488, X'5a5d876901397a96415bef4129fc9ef5ac6c630611c12ba4b6368550a063d97b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.63402+00', 45, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4489, X'72e75afda026b5e400937c75831c88f57b237755b3d46e6cbc8eb78cf4f400ea', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.574708+00', 211, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4490, X'72bb6293464d581ee0c9ba4082b8e3932b0ea76932071b8d30a5fe92b0a5bcd7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.672703+00', 157, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4491, X'6b6fee8bdc5b209c7cc9268e6b3a5a9092867057ed9c8d00b02f847bac8b30a2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.656493+00', 208, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4492, X'48f26db4ff97f6f39e22c0c8acf88599ad2ccd1e9e983c6e7b813b7e8b1ee581', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.764763+00', 160, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4493, X'9cb90f1a01d52c447fd09c6e64954c3ce301b087f1cc62564d7594ebf16b2119', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.5392+00', 409, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4494, X'1bef0ac877902f9b15782ee5a73a097b143bb01be246d3f2766f939aa90c5863', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.613552+00', 393, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4495, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:18.950935+00', 221, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4496, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.079185+00', 247, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4497, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.025881+00', 423, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4498, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.065855+00', 396, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4499, X'0c06c93f247a56b3ad7df9b08b818bb99018698bd56a658fc601e15a0488f0e6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.035433+00', 428, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4500, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.365811+00', 149, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4501, X'67535e9e9cc5a3e8af0a9fe5c403d1d19a9ef3e3c901d92506583f5ba8d2da0d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.360797+00', 160, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4502, X'f6387e8647d2235e9d6faaa232936748132108b2a3e9bb705f640a488fe3adf2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.086324+00', 536, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4503, X'2327b2b9b4ca390daf7d69dbf962adec3908e11b085bfe02593ad9310c0f01d6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:20.587621+00', 310, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4504, X'70946fc27a63d8a376394792c937816b1d741b1faf2fc6664112ff6427ea55cc', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:20.583155+00', 505, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4505, X'31fcbcc4bf88524bbac61796e601c1f65bfe31b00c66c8272762cbc92ec1b8a0', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.001236+00', 422, 0, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4506, X'3fae5e9d18a4eb2c1a0c7fe73eed116f37bad47a71ba77dec9504dcae9a09a2e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.23029+00', 325, 0, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4507, X'a1442bfd1c1315c22a8564d1090e7279c12b56806b7dbdf216e2bee8d904dea7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.265783+00', 353, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4508, X'95c1a3d7c747d723143d457d727d9d2766aaa3d65f74694aa79c8494f668ff02', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.483585+00', 232, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4509, X'a6596fb9bf8d75260622b2c83c745747e4696a61d7fec5a75f890565c610da0e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:20.885587+00', 845, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4510, X'ec2e35c1b7c79bde76e6161a75c4b26df03bed6616c0c760dde2dcb6b347b193', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:20.642313+00', 1378, 0, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4511, X'f171e9c642112219b1080e5df401df42b9a55502bd49e047ccb29973f9396513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.6021+00', 294, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4512, X'b0a093c16d267394b74a50d7bed93870daa08a4cf077b14ee7bc1678c1549da8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.575963+00', 390, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4513, X'48f442b029d5436205126aea2cb5e1d0e88b54bcc9b8d8973b5e6fdb0ef9f88c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.640091+00', 324, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4514, X'd595ff3e58bbe89469e03da59a4b798fe5d7f11e6f9883f151de91c0607eed62', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.62574+00', 389, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4515, X'1d6a46da0870c874ee391d183724723fc476b868cf41a1898dea7ff972466b94', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.642629+00', 446, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4516, X'67535e9e9cc5a3e8af0a9fe5c403d1d19a9ef3e3c901d92506583f5ba8d2da0d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.684281+00', 471, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4517, X'0c06c93f247a56b3ad7df9b08b818bb99018698bd56a658fc601e15a0488f0e6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.621632+00', 753, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4518, X'f6387e8647d2235e9d6faaa232936748132108b2a3e9bb705f640a488fe3adf2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.610134+00', 1121, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4519, X'596525564dedf8e5dfcca43a391669cf556f7d353bb333fd939db8199ad7b58c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:54.095449+00', 90, 2, TRUE, 'question', NULL, 1, 25, NULL, NULL, 2, FALSE), +(4520, X'90ea5d5d66e3254eeba2bf82eb8d29f09d44b48b6c5350d22b7f73886f36173a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:01.280743+00', 82, 2, TRUE, 'question', NULL, 1, 25, NULL, NULL, 2, FALSE), +(4521, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:18.911343+00', 73, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4522, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:18.951683+00', 67, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4523, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:18.911343+00', 143, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(4524, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:18.968809+00', 328, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4525, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:18.968809+00', 329, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(4526, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:18.98166+00', 321, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(4527, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.032704+00', 271, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(4528, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.016339+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4529, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.016966+00', 369, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(4530, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.083045+00', 362, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4531, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.3291+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(4532, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.41884+00', 178, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(4533, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.068222+00', 536, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(4534, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.415922+00', 211, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(4535, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.392019+00', 253, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(4536, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.402056+00', 261, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4537, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.901566+00', 125, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4538, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.837284+00', 202, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4539, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.942886+00', 102, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4540, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.973037+00', 100, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4541, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.95063+00', 137, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4542, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.020442+00', 80, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4543, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.962063+00', 154, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4544, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.895235+00', 277, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4545, X'9dc636cd6c67fe0dc884c9d4f9e86174e8dbd68d7de8edf070876d7235472f43', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:31.354345+00', 58, 2, TRUE, 'question', NULL, 1, 25, NULL, NULL, 2, FALSE), +(4546, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.646037+00', 71, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4547, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.580585+00', 159, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4548, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.710348+00', 152, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4549, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.71247+00', 159, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4550, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.73871+00', 133, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4551, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.712721+00', 183, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4552, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.744349+00', 163, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4553, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.73053+00', 311, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4554, X'f50ebdb67d85546af2627121a1fee046fc101c38309551c61122ff6432218f29', TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:57.927948+00', 118, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4555, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.35284+00', 248, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4556, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.358244+00', 298, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4557, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.394303+00', 327, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4558, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.479783+00', 287, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4559, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.358971+00', 425, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4560, X'5b240f3ccfbd12d0f01bf8186fcbcbe14c1fda7ef387339c3a10b2fd6ad1f035', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.394556+00', 429, 2, TRUE, 'dashboard', NULL, 1, 25, 3, NULL, 2, FALSE), +(4561, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.626494+00', 268, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4562, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.507294+00', 551, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4563, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.261364+00', 256, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(4564, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.325594+00', 207, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(4565, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.41146+00', 175, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(4566, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.389252+00', 276, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(4567, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.361025+00', 332, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(4568, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.486337+00', 372, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(4569, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.438172+00', 447, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(4570, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.439677+00', 467, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.69002+00', 394, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4572, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.472403+00', 644, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4573, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.472403+00', 677, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(4574, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.486993+00', 749, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4575, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.821418+00', 463, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(4576, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.821525+00', 513, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(4577, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.84056+00', 519, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(4578, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.84056+00', 517, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4579, X'56f2359817e42964bcbc7d778858f31d549c01d9aa3c36255e20e8e640ccde34', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:19.887186+00', 136, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4580, X'90ea5d5d66e3254eeba2bf82eb8d29f09d44b48b6c5350d22b7f73886f36173a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:47.812109+00', 46, 2, TRUE, 'question', NULL, 1, 25, NULL, NULL, 2, FALSE), +(4581, X'114113cc181751af4a3c3c62989521e4d1bfbb9a0db1d7bcf2bfc841a3ad6de6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:58.179457+00', 80, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4582, X'114113cc181751af4a3c3c62989521e4d1bfbb9a0db1d7bcf2bfc841a3ad6de6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:06.072279+00', 86, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(4583, X'90ea5d5d66e3254eeba2bf82eb8d29f09d44b48b6c5350d22b7f73886f36173a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:09.188557+00', 50, 2, TRUE, 'question', NULL, 1, 25, NULL, NULL, 2, FALSE), +(4584, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.140474+00', 152, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4585, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.147737+00', 163, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4586, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.26275+00', 49, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4587, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.248543+00', 81, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4588, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.268106+00', 97, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4589, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.142933+00', 226, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4590, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.253059+00', 180, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4591, X'114113cc181751af4a3c3c62989521e4d1bfbb9a0db1d7bcf2bfc841a3ad6de6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:28.582159+00', 46, 2, FALSE, 'question', NULL, 1, 28, 3, NULL, 2, FALSE), +(4592, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.032384+00', 173, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4593, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.032384+00', 175, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(4594, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.067692+00', 199, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(4595, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.063731+00', 226, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4596, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.063731+00', 230, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(4597, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.139673+00', 166, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(4598, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.112459+00', 342, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(4599, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.138352+00', 318, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(4600, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.302192+00', 345, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(4601, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.274393+00', 380, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4602, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.131893+00', 587, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(4603, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.237049+00', 531, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(4604, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.250245+00', 564, 14, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(4605, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.264121+00', 583, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(4606, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.538781+00', 455, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(4607, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.301728+00', 706, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(4608, X'9f0bfbb9564f8d9385324032b7c1e5eb92f52d26e2225f5317c474d58f66e285', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:12.66724+00', 42, 4, TRUE, 'question', NULL, 1, 22, NULL, NULL, 2, FALSE), +(4609, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:44.563442+00', 73, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4610, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:44.568729+00', 79, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4611, X'177a3d22ad8f26aaca8cbd12e911b59c3bb0c390924f765c4e9e0d70132b9140', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:44.591338+00', 58, 4, TRUE, 'dashboard', NULL, 1, 22, 3, NULL, 2, FALSE), +(4612, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.215653+00', 154, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4613, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.299573+00', 199, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4614, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.277528+00', 249, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4615, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.329752+00', 265, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4616, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.387633+00', 395, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4617, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:48.881453+00', 152, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4618, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 09:29:18.912653+00', 123, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4619, X'37aeb298b14d0e06e6bd66d67e4e4d822be50912844abef705147d4bf08655ed', TIMESTAMP WITH TIME ZONE '2022-12-20 09:30:56.645841+00', 167, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4620, X'd01b054195e21477f7b218f2f63ac43b0f2189e80a8928b512ed8c5b4aca3c7b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:15.339539+00', 107, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4621, X'b2dd606a8a2cca20c2cd65c9c55c14a3d6962e9f140a0bbbd51312d105972e0b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:41.430317+00', 100, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4622, X'37aeb298b14d0e06e6bd66d67e4e4d822be50912844abef705147d4bf08655ed', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:41.441203+00', 136, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4623, X'd01b054195e21477f7b218f2f63ac43b0f2189e80a8928b512ed8c5b4aca3c7b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:48.891795+00', 65, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4624, X'd01b054195e21477f7b218f2f63ac43b0f2189e80a8928b512ed8c5b4aca3c7b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:48.891795+00', 67, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 2, NULL), +(4625, X'f2fdf02ba30b9c042e7c4b8ff0c4be2df8595ab39afece92288cd09ce0468605', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:54.174204+00', 113, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4626, X'd01b054195e21477f7b218f2f63ac43b0f2189e80a8928b512ed8c5b4aca3c7b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:56.534091+00', 55, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4627, X'd01b054195e21477f7b218f2f63ac43b0f2189e80a8928b512ed8c5b4aca3c7b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:59.5239+00', 76, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 2, NULL), +(4628, X'f375cbe7b945041392ca76d597c4f66a52af7c809aed19afdd88b2d0c569711d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:01.319486+00', 77, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4629, X'7c8b723179a023d207c30a991ad168443bbce4289de648a5e825edeb11328fec', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:12.311122+00', 85, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4630, X'50c99070eb70bb05173a6b963f3cf81840f04c6779f09239c51ef78b9e01df24', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:46.990738+00', 114, 4, TRUE, 'question', NULL, 1, 22, NULL, NULL, 2, FALSE), +(4631, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.120681+00', 164, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4632, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.222808+00', 87, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4633, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.160807+00', 166, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4634, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.097659+00', 252, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4635, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.196992+00', 167, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4636, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.188501+00', 240, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4637, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.193658+00', 301, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4638, X'f9f978fc100eb3c151ded06ae10ffcab22aa1443900ef1b537908da3b76f11ea', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:08.451345+00', 108, 4, FALSE, 'question', NULL, 1, 29, 3, NULL, 2, FALSE), +(4639, X'c7ab4b582b590238fc95b852082594d93281005fd26dcb567ca0074de3735454', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:55.782677+00', 252, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4640, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.444235+00', 108, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4641, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.35773+00', 238, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4642, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.451263+00', 175, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4643, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.468766+00', 156, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4644, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.480182+00', 165, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4645, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.466798+00', 232, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4646, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.401552+00', 313, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4647, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.444164+00', 347, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4648, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.52259+00', 82, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4649, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.534067+00', 96, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4650, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.563513+00', 110, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4651, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.563545+00', 115, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4652, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.610178+00', 105, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4653, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.492852+00', 258, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4654, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.616126+00', 142, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4655, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.542985+00', 282, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4656, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:26.698952+00', 142, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4657, X'2d8cf15289f44cda2afaa65ef49d260299e0a5d6f3984f729d03300acfcff99b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:06.57429+00', 82, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4658, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:09.998324+00', 322, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4659, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:09.982062+00', 565, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4660, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.345258+00', 291, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4661, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.3624+00', 285, 7, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4662, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.329272+00', 394, 6, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4663, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.344299+00', 384, 12, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4664, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.097117+00', 675, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4665, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.110097+00', 753, 15, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4666, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.506923+00', 139, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4667, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.495632+00', 293, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4668, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.621498+00', 223, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4669, X'709758e751641916ade3e495534dad1dfc6ac9c245bd30825770f2f56c95d9bb', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.714077+00', 151, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4670, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.601561+00', 264, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4671, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.646333+00', 219, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4672, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.656144+00', 223, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4673, X'7081e1b4a20abfd4f6bf6cb4231bd254bcf4c95b1775abfa2dcf0d5fd54019e7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:24.73427+00', 88, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(4674, X'a7fbf52b2dc39c80051ead502fda3e2391e25ffe0d188653bb1365d62a40992c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:18.022808+00', 227, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4675, X'ad98952a5db3ce23d1181578af284a64e9f97f8393aa39b5cd1a9c241bf866b8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:28.116828+00', 72, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(4676, X'9f593437577e4606282cb3bffce6897fe4f8b21d8ec7598129a1a7cdedd23e23', TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:49.030154+00', 159, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4677, X'dde754121898a7d070b69ffd9e67616bc79c17e34f9c2b6c60fc017d27ebcdc8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:59.604072+00', 96, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(4678, X'8c3f178967ded84a3e75d0e2fe22e57009b16be0f6b72c975c538d4e6612061f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:41:12.325788+00', 76, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4679, X'0035eec9f1a09519bf45c7f389141d5003c4d4a1d531b6e1f9d96a114ee4fc16', TIMESTAMP WITH TIME ZONE '2022-12-20 09:41:21.232369+00', 56, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4680, X'a1356d1098bc871ffeaa6fe9d9ca6e43216441551b86d79aad63737f3ac70d25', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:05.985861+00', 153, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4681, X'9f593437577e4606282cb3bffce6897fe4f8b21d8ec7598129a1a7cdedd23e23', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:16.862124+00', 164, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4682, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.144765+00', 665, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4683, X'48e0bf0024459cbc3b93d582944599d6477a68150289c2818a211a018bf5cf93', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.656177+00', 173, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4684, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.45634+00', 596, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4685, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.506763+00', 635, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4686, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.847126+00', 437, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4687, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.773221+00', 593, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4688, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.884584+00', 579, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4689, X'712de5b3aa78b9b34be459212b8ead7405aae5e4eba595a8073c0833ad23b83f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:44:24.732673+00', 42, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4690, X'f9388092a6e8862f32340d7bec98077918149bdecb8b80bd22604bed60e815fa', TIMESTAMP WITH TIME ZONE '2022-12-20 09:45:03.611107+00', 78, 14, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4691, X'f9388092a6e8862f32340d7bec98077918149bdecb8b80bd22604bed60e815fa', TIMESTAMP WITH TIME ZONE '2022-12-20 09:45:24.744168+00', 81, 14, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4692, X'70f5b0e7cccac670eb4d51bd015be28d318d71dad74dba0ec977621c4f19fc6d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:45:40.071349+00', 111, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4693, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:00.963298+00', 156, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4694, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:00.982237+00', 319, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4695, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.016751+00', 353, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4696, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:00.958052+00', 400, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4697, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:00.962064+00', 449, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4698, X'5edf9b60ff378203bfddbd3b866dfb612a3ca4eadcce818b9fce367c0a32b07c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.184469+00', 253, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4699, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:00.989798+00', 468, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4700, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.247683+00', 87, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4701, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.276253+00', 128, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4702, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.31066+00', 100, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4703, X'10ed8ca1329de5c69267fb19c1e0e3e7b4aa343978b6b1122cc5ad8b31b3bb25', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.307474+00', 95, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4704, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.319376+00', 152, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4705, X'2d97a67c2b89f7f935870ae4fd3e1a505b6c03823f5b240aeb8562290f81ac75', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.354261+00', 158, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4706, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.357665+00', 158, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4707, X'709b521ab6948b781dce974796c9320e2cc84bc59717dd5945f370539dde0dd8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:17.952261+00', 168, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4708, X'c0f4acf0e2e25d3b561331d909b966a2f089f3f870419554cd22de2ab671d9c7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:17.904029+00', 250, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4709, X'72f08dc0b64d969e56d4d0894eacace888df3794b22fe88af8035cc250e71310', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:17.930192+00', 360, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4710, X'c1517b8af3d77ec1b328517e9a8972abef5950b1be669636d77fd063b2d37ea4', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:17.923939+00', 380, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4711, X'66cf824950f5d152c5b486002c91a28f485d92a6e64d657abb9634102cbb4288', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.009963+00', 303, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4712, X'f5a1388d619a826ed885ea66ca20d80c71fb9a21f0e9934fe82499cf97ca32d9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:17.949937+00', 443, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4713, X'cf8b406797575a5b504c12280ed50661aa6d474fcb81e95eb15254a075522948', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:17.909873+00', 521, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4714, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.470187+00', 138, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4715, X'2d97a67c2b89f7f935870ae4fd3e1a505b6c03823f5b240aeb8562290f81ac75', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.536269+00', 307, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4716, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.518537+00', 342, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4717, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.471914+00', 431, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4718, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.57744+00', 370, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4719, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.472434+00', 509, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4720, X'10ed8ca1329de5c69267fb19c1e0e3e7b4aa343978b6b1122cc5ad8b31b3bb25', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.537545+00', 458, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4721, X'3a0f38da9db0517508abd931ccd3a45de42aeb034791cdc028f35316e5a3d282', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.264591+00', 163, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4722, X'4039d2c854defd61e94912d8cdea685af187f142e172fb1f1030458737d2a84d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.289844+00', 152, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4723, X'2396372bbf57fc4039bf3a7277cd6ef9c02662f334ca3a95fcfc4dfcb898f27c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.280378+00', 168, 3, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4724, X'347ed7c6dce248e5e9fa7c983d95b95059eadab015f81a2477674d1b0f1f8ee7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.319423+00', 124, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4725, X'b0ca731f8af0265ab476d73833f9da4fda26c46b898c62ebcb6d0fcb43f9da14', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.26676+00', 189, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4726, X'07da46b215149f961df533927f146bd1873860e341d0c6e78c7c3d25464dbe6c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.343993+00', 133, 5, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4727, X'c4afd09dff17414cb34138c59e0acc5551ed166c7725aa348aac9a7723636ad6', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.320022+00', 190, 9, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4728, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.230962+00', 171, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4729, X'10ed8ca1329de5c69267fb19c1e0e3e7b4aa343978b6b1122cc5ad8b31b3bb25', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.215685+00', 199, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4730, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.243881+00', 259, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4731, X'2d97a67c2b89f7f935870ae4fd3e1a505b6c03823f5b240aeb8562290f81ac75', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.252871+00', 274, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4732, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.225544+00', 319, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4733, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.216311+00', 332, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4734, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.248746+00', 321, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4735, X'236c74576945ef6f09c71a782117fc5872f54a33519c42115fa9c4e199a93130', TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:33.189464+00', 164, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4736, X'5edf9b60ff378203bfddbd3b866dfb612a3ca4eadcce818b9fce367c0a32b07c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:13.94624+00', 149, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4737, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.015604+00', 136, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4738, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.024332+00', 216, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4739, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.00947+00', 251, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4740, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.058694+00', 203, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4741, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.016291+00', 294, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4742, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:13.979864+00', 347, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4743, X'ac8f726013190767ac24034406097a8c7eec80cdcf3c3852ca4cb3274af1d201', TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:37.875276+00', 46, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4744, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.073465+00', 188, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4745, X'5edf9b60ff378203bfddbd3b866dfb612a3ca4eadcce818b9fce367c0a32b07c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.076567+00', 196, 14, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4746, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.00453+00', 347, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4747, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.101842+00', 260, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4748, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.121342+00', 343, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4749, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.081165+00', 419, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4750, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.314125+00', 195, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4751, X'ac8f726013190767ac24034406097a8c7eec80cdcf3c3852ca4cb3274af1d201', TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:53.608116+00', 44, 14, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4752, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:49:53.331768+00', 105, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4753, X'6f59fbe9e7ba22573d2bc9be34b266e78bb1c877ca4d7a8c0449cea587fd2a6b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:50:16.40873+00', 46, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4754, X'e5fc7f23bd943d79094d9167534ea42bf9d03f87e3d1d95cb7875058d82518b1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:50:22.743203+00', 99, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 2, NULL), +(4755, X'fe0fbd108f2b68637f77f5370b9a564a3688953bdbd379acb2331222ffb9ab90', TIMESTAMP WITH TIME ZONE '2022-12-20 09:50:35.814751+00', 95, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4756, X'a3b7d5d707aece358d6396bc1443a20bc1c55e74589831e639396f10eecc2f2d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:51:51.410158+00', 86, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4757, X'bb1f1bc1f472942fb444196f4db66c8854777bc7df9bfdd763b997b39248f3cf', TIMESTAMP WITH TIME ZONE '2022-12-20 09:51:56.960406+00', 116, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4758, X'3fcf68bbc493953b49acff4ffa84e31363e13dde7474e7a09c5491a810edc6d7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:04.334914+00', 122, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4759, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.120544+00', 321, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4760, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:24.977233+00', 691, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4761, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.163914+00', 557, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4762, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.331124+00', 482, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4763, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.195396+00', 1016, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4764, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.299184+00', 990, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4765, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.37366+00', 1035, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4766, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.55327+00', 1359, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4767, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.407519+00', 103, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4768, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.400682+00', 174, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4769, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.450829+00', 195, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4770, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.506046+00', 167, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4771, X'ce031f81e3c84fbd5cd0f5299fc6e8cf6f7f18be6b3f9fc902a867748fbe01b9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.504796+00', 173, 5, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4772, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.548075+00', 169, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4773, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.492064+00', 243, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4774, X'1cff66aca327f03e2bb0eb8a3e79333f84f434bcdddc071a97a8a91cf1c1f0bc', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:42.613026+00', 90, 5, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4775, X'bb1f1bc1f472942fb444196f4db66c8854777bc7df9bfdd763b997b39248f3cf', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:51.827035+00', 52, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4776, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.777054+00', 134, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4777, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.811029+00', 131, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4778, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.813306+00', 257, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4779, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.829799+00', 279, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4780, X'30bf500126dcd7109d667bee8d49869475930f5459ae62c0ffdd4adaa7cef33c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.82049+00', 294, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4781, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.950624+00', 184, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4782, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.922273+00', 241, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4783, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:07.901357+00', 372, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4784, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:07.87973+00', 427, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4785, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:07.880706+00', 454, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4786, X'2a9cde6c3934dbbf5f6ea473f79b030fa6ed8aba30cf1917bdce893832b3dd2c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:07.979011+00', 578, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4787, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:07.952965+00', 652, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4788, X'10ed8ca1329de5c69267fb19c1e0e3e7b4aa343978b6b1122cc5ad8b31b3bb25', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.181514+00', 512, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4789, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:07.947882+00', 755, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4790, X'347ed7c6dce248e5e9fa7c983d95b95059eadab015f81a2477674d1b0f1f8ee7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:18.97277+00', 171, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4791, X'07da46b215149f961df533927f146bd1873860e341d0c6e78c7c3d25464dbe6c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.040113+00', 155, 5, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4792, X'b0ca731f8af0265ab476d73833f9da4fda26c46b898c62ebcb6d0fcb43f9da14', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.069261+00', 150, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4793, X'3a0f38da9db0517508abd931ccd3a45de42aeb034791cdc028f35316e5a3d282', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.028149+00', 190, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4794, X'4039d2c854defd61e94912d8cdea685af187f142e172fb1f1030458737d2a84d', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.110079+00', 139, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4795, X'dc6e65368b34e861afcbaaee94b749ae20c73b509c76b247c834b2f015b45ad7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.106543+00', 170, 6, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4796, X'2396372bbf57fc4039bf3a7277cd6ef9c02662f334ca3a95fcfc4dfcb898f27c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:18.987503+00', 303, 4, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4797, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.458105+00', 103, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4798, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.438202+00', 126, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4799, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.438136+00', 180, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4800, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.454041+00', 182, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4801, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.511247+00', 132, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4802, X'2a9cde6c3934dbbf5f6ea473f79b030fa6ed8aba30cf1917bdce893832b3dd2c', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.49147+00', 171, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4803, X'10ed8ca1329de5c69267fb19c1e0e3e7b4aa343978b6b1122cc5ad8b31b3bb25', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.532899+00', 138, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4804, X'ffdd9540669dd31a5f06e9a29f093c8767e73d6ed73a2b55b4192980b2332af0', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:33.197498+00', 97, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4805, X'2862787f4a11dbd60165f6d8cff79e12618d5034e45e5264f7badf39b71959fe', TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:43.111273+00', 56, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4806, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:14.333451+00', 6196, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4807, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:14.434798+00', 6116, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4808, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:14.434746+00', 6187, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4809, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:14.440596+00', 6185, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4810, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:14.440298+00', 6216, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4811, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:14.50116+00', 6211, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4812, X'e272608839ad6613df4c30ac3043308e258071e071dfbee1a1f2be6f71876101', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:14.604934+00', 6171, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4813, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.596278+00', 347, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4814, X'e272608839ad6613df4c30ac3043308e258071e071dfbee1a1f2be6f71876101', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.609706+00', 341, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4815, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.61046+00', 374, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4816, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.96843+00', 87, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4817, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:29.008733+00', 76, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4818, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.825545+00', 240, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4819, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.964023+00', 160, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4820, X'5a47c533fb043236f58e5f0802917b71b2623206ddb6bed00520ff7bec6badb5', TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:32.282998+00', 218, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4821, X'c6c903b6979ac36645afa981a4e70ddd8de4fe0a8e7f4231582063a6451e3dd8', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:21.74622+00', 87, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4822, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.547713+00', 407, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4823, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.651697+00', 532, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4824, X'd3ca945c84e08135880c73e9ebd81d82f6bfd8302a57d1a86278e4167e3062a9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.641454+00', 627, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4825, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.854349+00', 567, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4826, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.867895+00', 550, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4827, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.970736+00', 515, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4828, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.634292+00', 868, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4829, X'c53dcf544bab60b8a909c50ad8ca5003442b3b9cd5f1dd318667a2fc9273937a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:51.029306+00', 35, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4830, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:24.794321+00', 279, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4831, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:24.508657+00', 572, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4832, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:24.419682+00', 745, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4833, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:24.416368+00', 763, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4834, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:24.429181+00', 758, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4835, X'd3ca945c84e08135880c73e9ebd81d82f6bfd8302a57d1a86278e4167e3062a9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:24.424978+00', 809, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4836, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:24.751899+00', 556, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4837, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.309309+00', 84, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4838, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.419806+00', 89, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4839, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.309531+00', 206, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4840, X'd3ca945c84e08135880c73e9ebd81d82f6bfd8302a57d1a86278e4167e3062a9', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.442086+00', 136, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4841, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.458964+00', 143, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4842, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.477368+00', 133, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4843, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.463513+00', 152, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4844, X'c53dcf544bab60b8a909c50ad8ca5003442b3b9cd5f1dd318667a2fc9273937a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:57.867945+00', 48, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4845, X'c521ff97e1fe57d1a9009096a4e7dbbcba592687b1dd23e09168768e25adfc90', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:10.528915+00', 132, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4846, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:15.701907+00', 587, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4847, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:15.718326+00', 750, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4848, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.042998+00', 456, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4849, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.150304+00', 403, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4850, X'95e57cc8e6cf8fc23b0681ab24d4891dbd5f0d2aa0a7671d5906cac13abf8b02', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.119886+00', 509, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4851, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:15.700038+00', 954, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4852, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.183732+00', 505, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4853, X'c521ff97e1fe57d1a9009096a4e7dbbcba592687b1dd23e09168768e25adfc90', TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:26.566115+00', 55, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4854, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:19.604061+00', 66, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4855, X'55276dc76bca2b0dd307f3145d9aa93e1a12dd3056b607e0e258bed178b50a2b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:21.982111+00', 41, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4856, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.028117+00', 221, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4857, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.056049+00', 226, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4858, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.140165+00', 171, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4859, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.219685+00', 157, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4860, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.238211+00', 168, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4861, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.256201+00', 175, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4862, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.218724+00', 297, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4863, X'93c12625316b4fb7af59f0afe5ea52fc3ad47ffd07d90b8a99eeeb16e1e2677a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:38.706138+00', 63, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4864, X'875efa1bbe3ef0b1cc5a820c413b20262d0234a1d75b2a185c5823a0041e95f6', TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:53.680035+00', 97, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4865, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.577743+00', 95, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4866, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.6126+00', 123, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4867, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.661422+00', 106, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4868, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.660937+00', 149, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4869, X'd472baad6df82c9937d4bd0e61c3b775cd1acf09564adc032db49d15ad20621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.628285+00', 198, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4870, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.651255+00', 189, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4871, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.699016+00', 179, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4872, X'875efa1bbe3ef0b1cc5a820c413b20262d0234a1d75b2a185c5823a0041e95f6', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:11.752843+00', 165, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4873, X'55276dc76bca2b0dd307f3145d9aa93e1a12dd3056b607e0e258bed178b50a2b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:18.107854+00', 84, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4874, X'62a667212100ed3e85ae0045ffac752ba51545ace88b1a2d8b28e4eb9c0029e1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:47.75917+00', 75, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4875, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.591551+00', 92, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4876, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.590968+00', 137, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4877, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.625514+00', 104, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4878, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.591585+00', 210, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4879, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.677055+00', 133, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4880, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.628959+00', 206, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4881, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.648685+00', 199, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4882, X'93c12625316b4fb7af59f0afe5ea52fc3ad47ffd07d90b8a99eeeb16e1e2677a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:05.415982+00', 71, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4883, X'5aef1ee839a21d5353f8dd32aabcb207ef13c2f98466e1c2585dc9c9c561b4a1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:15.797493+00', 43, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4884, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.590183+00', 77, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4885, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.591961+00', 103, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4886, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.5979+00', 114, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4887, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.605302+00', 123, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4888, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.591566+00', 149, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4889, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.637517+00', 113, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4890, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.582608+00', 188, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4891, X'93c12625316b4fb7af59f0afe5ea52fc3ad47ffd07d90b8a99eeeb16e1e2677a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:07.701342+00', 53, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4892, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.146431+00', 176, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4893, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.220245+00', 258, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4894, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.213413+00', 302, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4895, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.25751+00', 317, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4896, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.2626+00', 356, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4897, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.151958+00', 476, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4898, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.269611+00', 370, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4899, X'93c12625316b4fb7af59f0afe5ea52fc3ad47ffd07d90b8a99eeeb16e1e2677a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:31.435076+00', 56, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(4900, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.052666+00', 96, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4901, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.079618+00', 123, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4902, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.106966+00', 131, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4903, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.098733+00', 159, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4904, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.122021+00', 153, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4905, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.022049+00', 278, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4906, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.178582+00', 135, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4907, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.196934+00', 101, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4908, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.198159+00', 286, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4909, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.235888+00', 282, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4910, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.206245+00', 372, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4911, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.222112+00', 392, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4912, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.23436+00', 385, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4913, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.504137+00', 157, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4914, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.188556+00', 489, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4915, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.343582+00', 194, 6, TRUE, 'embedded-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4916, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.500799+00', 222, 10, TRUE, 'embedded-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4917, X'd6a795a4df425a34519f86e98f8a862e0f5eb03ec6494f00d9880e8319a7f2b9', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.557968+00', 185, 5, FALSE, 'embedded-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4918, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.516538+00', 206, 4, TRUE, 'embedded-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4919, X'f9f978fc100eb3c151ded06ae10ffcab22aa1443900ef1b537908da3b76f11ea', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.576267+00', 190, 4, FALSE, 'embedded-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4920, X'114113cc181751af4a3c3c62989521e4d1bfbb9a0db1d7bcf2bfc841a3ad6de6', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.639202+00', 145, 2, FALSE, 'embedded-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4921, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.566402+00', 254, 4, TRUE, 'embedded-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4922, X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.480405+00', 384, 0, FALSE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 26, 3, NULL, 2, NULL), +(4923, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.385137+00', 398, 0, TRUE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(4924, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.37978+00', 452, 0, TRUE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(4925, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.372419+00', 467, 0, TRUE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(4926, X'114113cc181751af4a3c3c62989521e4d1bfbb9a0db1d7bcf2bfc841a3ad6de6', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.462835+00', 557, 0, FALSE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(4927, X'f9f978fc100eb3c151ded06ae10ffcab22aa1443900ef1b537908da3b76f11ea', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.454811+00', 576, 0, FALSE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(4928, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.782077+00', 281, 0, TRUE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(4929, X'0baa0bf346366983ee1ddb1160e8cf32fb26abf0af9b62d74f3dbfa1d8e8a4ad', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.632037+00', 721, 0, FALSE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 26, 3, NULL, 2, NULL), +(4930, X'd6a795a4df425a34519f86e98f8a862e0f5eb03ec6494f00d9880e8319a7f2b9', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:33.615617+00', 934, 0, FALSE, 'embedded-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 2, NULL), +(4931, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:58.895784+00', 71, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4932, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.279159+00', 88, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(4933, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.167207+00', 379, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(4934, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.250081+00', 320, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4935, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.174183+00', 458, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 2, NULL), +(4936, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.223294+00', 508, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4937, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.186267+00', 702, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(4938, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.307853+00', 601, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4939, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.597443+00', 363, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(4940, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.594097+00', 375, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(4941, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.45009+00', 675, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4942, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:58.90246+00', 1242, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4943, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:58.993079+00', 1157, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4944, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:58.993079+00', 1160, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(4945, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.537776+00', 648, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4946, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.696744+00', 532, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4947, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.71297+00', 739, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4948, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.641908+00', 182, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4949, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.724366+00', 123, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4950, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.712847+00', 138, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4951, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.700645+00', 183, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4952, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.731947+00', 154, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4953, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.724336+00', 183, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4954, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.670291+00', 254, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4955, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.679797+00', 260, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4956, X'f84cc55423cfe3fee5dbf7bca810ed3fbf0512a78253ff0c3effae8a826d42a5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:38.264916+00', 69, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(4957, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.625135+00', 301, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4958, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.745774+00', 249, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4959, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.713461+00', 326, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4960, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.932026+00', 156, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4961, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.011653+00', 112, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4962, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.018745+00', 376, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4963, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.949451+00', 476, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4964, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.827353+00', 645, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4965, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:44.813281+00', 42, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(4966, X'723fbdc25252be2697e458dd850ee85dcb0792ff1f617ea03c7bbabc3a358deb', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:19.093585+00', 46, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(4967, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.169967+00', 160, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4968, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.26505+00', 138, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4969, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.226449+00', 201, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4970, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.292361+00', 189, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4971, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.234534+00', 259, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4972, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.373528+00', 131, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4973, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.265041+00', 251, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4974, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.3397+00', 327, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(4975, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.553692+00', 114, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(4976, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.560052+00', 221, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(4977, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.570649+00', 216, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(4978, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.595633+00', 206, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(4979, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.644169+00', 173, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(4980, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.615841+00', 205, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(4981, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.643761+00', 193, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(4982, X'ebeeb9b54dee59b8e436a54c7f4e0484d6b6d243108b081ba2b8e232563d80f3', TIMESTAMP WITH TIME ZONE '2022-12-20 10:11:38.43332+00', 68, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4983, X'49e4dd7aa470a695e20893a2cca84f92aa886f88d88ebd86d0b13fd9eb18ff68', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:12.38288+00', 35, 2, TRUE, 'question', NULL, 1, 24, NULL, NULL, 2, FALSE), +(4984, X'cd8809cd51e8a827bcd8a7e9ea9c75bfbab30fe79c64a477e0e5b38e541e04dd', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:21.329594+00', 68, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 2, FALSE), +(4985, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.498835+00', 183, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(4986, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.550561+00', 224, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(4987, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.587002+00', 208, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4988, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.621477+00', 281, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4989, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.637221+00', 273, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(4990, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.637162+00', 299, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4991, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.538507+00', 419, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(4992, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.568107+00', 545, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(4993, X'cd8809cd51e8a827bcd8a7e9ea9c75bfbab30fe79c64a477e0e5b38e541e04dd', TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:49.515711+00', 70, 2, FALSE, 'question', NULL, 1, 30, 3, NULL, 2, FALSE), +(4994, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-20 10:14:41.131739+00', 226, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(4995, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.100413+00', 90, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(4996, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.124157+00', 108, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(4997, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.121567+00', 140, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(4998, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.104473+00', 190, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(4999, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.193021+00', 149, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5000, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.200277+00', 163, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5001, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.184681+00', 182, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5002, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.19649+00', 172, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5003, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.190316+00', 231, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5004, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:30.25123+00', 47, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(5005, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.10284+00', 192, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5006, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.178004+00', 252, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5007, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.322154+00', 247, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5008, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.227248+00', 356, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5009, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.320759+00', 294, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5010, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.308338+00', 320, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5011, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.22976+00', 424, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5012, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.469007+00', 223, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5013, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.402537+00', 304, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5014, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:13.736133+00', 79, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(5015, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:41.84661+00', 94, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5016, X'2b3fb6213f06a172a470c28fe646be7e75c733ec698950a3eec1980b46bb9e90', TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:18.535551+00', 75, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5017, X'4358d1308b0f8956c59f90ef61e9a92c3dba8fd7c5306b966e1842f405ca902c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:22.825656+00', 117, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5018, X'4358d1308b0f8956c59f90ef61e9a92c3dba8fd7c5306b966e1842f405ca902c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:39.726791+00', 64, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5019, X'4358d1308b0f8956c59f90ef61e9a92c3dba8fd7c5306b966e1842f405ca902c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:47.020122+00', 54, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5020, X'3872df380f4c503d29332aaefed67b42a2c1d2955b483a704656b6fb3d44fe4e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:25.493493+00', 61, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5021, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.299545+00', 192, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5022, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.35631+00', 207, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5023, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.459241+00', 128, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5024, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.508141+00', 128, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5025, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.224114+00', 414, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5026, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.3526+00', 301, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5027, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.421034+00', 241, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5028, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.514172+00', 154, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5029, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.515092+00', 152, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5030, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.490018+00', 166, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5031, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.520793+00', 202, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5032, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.602064+00', 144, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5033, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.452296+00', 297, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5034, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.558835+00', 216, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5035, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.675219+00', 171, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5036, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.628249+00', 266, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5037, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.648583+00', 254, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5038, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.451571+00', 507, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5039, X'8a4f94e32026d2efab95419999f774c8324a95c160b76c8c7b807c402fcb3954', TIMESTAMP WITH TIME ZONE '2022-12-20 10:21:08.429781+00', 131, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5040, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:21:51.895619+00', 74, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5041, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:33.915628+00', 271, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5042, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:33.987568+00', 281, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5043, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:33.901179+00', 375, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5044, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:33.966569+00', 351, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5045, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.130302+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5046, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:33.966569+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5047, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.113482+00', 225, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5048, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.153108+00', 244, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5049, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.196065+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5050, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.175012+00', 403, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5051, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.175012+00', 412, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5052, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.240312+00', 394, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5053, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.176163+00', 465, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5054, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.377294+00', 275, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5055, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.3842+00', 305, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5056, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.17525+00', 535, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5057, X'b849ad62aceb1a97b7249d8ad68dbb6574711c7f0485ebdfe4644742d4ac8cb1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:36.827388+00', 102, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5058, X'c46c59472392eda9d66750242885b2591fe7da1d220a644d1f761d3ed21f03a6', TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:58.399836+00', 90, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5059, X'7d7d641985dd483ff93e0c7d58dad692fbc0ca8c01bb7d35381d9f9b40ea7c04', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:28.508613+00', 60, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5060, X'c430e738aa0d18637bd1166c093c7f197406a47b1448c6bb031b9d4231fe83fb', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:38.144784+00', 51, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5061, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.215949+00', 137, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(5062, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.147186+00', 311, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(5063, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.212874+00', 351, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(5064, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.292699+00', 297, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(5065, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.282557+00', 334, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5066, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.203303+00', 482, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(5067, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.357933+00', 393, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(5068, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:51.937089+00', 103, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5069, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.000186+00', 152, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5070, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.036375+00', 127, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5071, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:51.955258+00', 222, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5072, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:51.985864+00', 208, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5073, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.02119+00', 188, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5074, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.024357+00', 199, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5075, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.10251+00', 135, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5076, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.106063+00', 182, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5077, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 10:24:06.70718+00', 78, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(5078, X'8ad1bdf43dc0cfd483da16660297906d9b631d8bb66b489e7487d4591092841c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:24:59.995135+00', 68, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5079, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:04.916977+00', 54, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5080, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.407337+00', 232, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(5081, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.546883+00', 192, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(5082, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.540693+00', 199, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(5083, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.217241+00', 570, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(5084, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.217241+00', 588, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(5085, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.690397+00', 187, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(5086, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.494712+00', 423, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(5087, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.402409+00', 572, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5088, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.402409+00', 628, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(5089, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.523791+00', 632, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(5090, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.554233+00', 603, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5091, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.604103+00', 567, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(5092, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.530217+00', 643, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5093, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.543144+00', 662, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(5094, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.435678+00', 771, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(5095, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.73962+00', 515, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(5096, X'b1756a52aa70e662f133727d6826b75bbfb7a7e4784f2dbaf9131d1c599d7340', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:26.799804+00', 100, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5097, X'b1756a52aa70e662f133727d6826b75bbfb7a7e4784f2dbaf9131d1c599d7340', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:35.201204+00', 110, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5098, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:35.637781+00', 54, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5099, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:50.862259+00', 223, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5100, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.467984+00', 182, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5101, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.600274+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5102, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:50.914777+00', 819, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5103, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.022195+00', 756, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5104, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.512966+00', 302, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5105, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.578535+00', 232, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5106, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.025019+00', 840, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5107, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.279237+00', 638, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5108, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.514852+00', 566, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5109, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.569898+00', 529, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5110, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.790306+00', 401, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5111, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.889287+00', 399, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5112, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.99762+00', 350, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5113, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.633898+00', 724, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5114, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.575645+00', 807, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5115, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.475932+00', 946, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5116, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:52.033601+00', 531, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5117, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.73016+00', 291, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5118, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.954454+00', 121, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5119, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.850568+00', 219, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5120, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.809382+00', 262, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5121, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.838362+00', 271, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5122, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.850568+00', 222, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5123, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.956194+00', 188, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5124, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.956194+00', 189, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5125, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.857367+00', 283, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5126, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.932341+00', 308, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5127, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.79019+00', 470, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5128, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.851813+00', 431, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5129, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.871126+00', 431, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5130, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.854961+00', 474, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5131, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.902853+00', 516, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5132, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:56.959173+00', 462, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5133, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:58.143488+00', 269, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5134, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.451968+00', 178, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(5135, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.560421+00', 161, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(5136, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.55474+00', 220, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(5137, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.488166+00', 301, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(5138, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.56728+00', 245, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5139, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.468613+00', 349, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(5140, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.610323+00', 233, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(5141, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:28.990633+00', 143, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5142, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:28.932299+00', 231, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5143, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:28.999333+00', 502, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5144, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.097488+00', 412, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5145, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.056567+00', 528, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5146, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.125008+00', 458, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5147, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.016214+00', 628, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5148, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.003496+00', 700, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5149, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.227293+00', 848, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5150, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.745552+00', 71, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5151, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.725218+00', 123, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5152, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.765325+00', 95, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5153, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.836186+00', 67, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5154, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.764374+00', 219, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5155, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.740716+00', 261, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5156, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.873611+00', 164, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5157, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.862599+00', 185, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5158, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.808902+00', 339, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5159, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:17.880347+00', 136, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5160, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:17.856036+00', 238, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5161, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.000866+00', 116, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5162, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:17.913355+00', 273, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5163, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:17.92731+00', 258, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5164, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:17.944296+00', 299, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5165, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.058155+00', 217, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5166, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.024977+00', 286, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5167, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.11458+00', 299, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5168, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.183098+00', 127, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5169, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.233771+00', 89, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5170, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.206851+00', 117, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5171, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.211706+00', 140, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5172, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.201285+00', 164, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5173, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.201285+00', 168, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5174, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.223323+00', 173, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5175, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.382148+00', 138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5176, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.305264+00', 266, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5177, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.453053+00', 138, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5178, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.259305+00', 351, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5179, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.259305+00', 358, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5180, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.522202+00', 120, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5181, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.370649+00', 323, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5182, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.374078+00', 320, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5183, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.447476+00', 306, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5184, X'0513e7efdf728a3c4317bcb1956f86a7cf0921232ec94b626098ce6ed2738bbb', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.664847+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5185, X'f1a417e417468d0897cb3249c1669794f9b2e2ef19cce743740380f8c0e60b82', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.69004+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5186, X'afe714b1b6aeca56e7b5e8d93df3c35cfaf0f35c308aebaa6ff105fd3e766d7e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.650959+00', 203, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5187, X'33832d7607cef1aae8837aedde03d585ab1e4f1c3a08f50b7a3ba7b6a5cf90da', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.692611+00', 201, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5188, X'e764e5fe38ace0ee64c846d586be9d6d09c5d359b993dc0f02d86ab5b4e2939c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.684233+00', 218, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5189, X'a5d7329e4256238c2a2723e1ef73a4c632346627ebecf16667f8bbb631e55e3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.836352+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5190, X'4638b332d3d2a67403e403c289ab01decb968a8501f3bff444fa55d885a78dc5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.914626+00', 108, 9, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5191, X'c46dd50c95d9bf3c65e76068eb7a13c5b69f61cd64e55f70b4d9702831145c0a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.917594+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5192, X'8ed242a5cd37ac338c64dad05af899f8d28b6dcb444ebbb369639a19e0a6f8fb', TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.899741+00', 203, 9, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5193, X'250d2624ff9b3a6c6eaff31711193c1595ba2ee449e2d544080b0cc487117799', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.840089+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5194, X'b763fb8e405258618129300cdd9e8d32282465445d61583b12eb6ffaa2f89ae5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.83717+00', 187, 5, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5195, X'7fe56b0168c436bf4112b8f070c3a19482a05773f01e62af30105907c0085539', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.859467+00', 176, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5196, X'f15e2b0d8040a50464e7f29db54338a97788d1040d4a6354e225e319071f44cb', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.896637+00', 187, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5197, X'83393cc8bc813ae1da6ee5b17e3b0596b698cacd6ac26f3ebaf06d7e05c47129', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.959184+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5198, X'b62bca007711589ed7aa86722664e423cd3e510ed51e0691f8fe0f09b66000d4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.958516+00', 138, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5199, X'34a0c0d643147d704654214fd2d883a977550f2bb3d90c56c0aa4066a147e5d2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.003346+00', 91, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5200, X'837c7aa77a214ea0fde0f14a83b39d5e78fb5dfd18425103ef90251a80a2586c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.959255+00', 170, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5201, X'5a8109755eb335ad563ce775f77b2f0f6bc1a0b1dd0a382e1103d9a80a706e7d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.896647+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5202, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.201665+00', 169, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5203, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.273556+00', 149, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5204, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.273556+00', 148, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5205, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.366994+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5206, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.201703+00', 351, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5207, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.530555+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5208, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.259906+00', 370, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5209, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.372473+00', 264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5210, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.355312+00', 291, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5211, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.398308+00', 254, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5212, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.265878+00', 390, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5213, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.287658+00', 378, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5214, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.242024+00', 456, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5215, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.242024+00', 460, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5216, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.170773+00', 661, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5217, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.420982+00', 446, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5218, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.578025+00', 86, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5219, X'd30eef6732003929dccc2d5a146820c06e26540b17f19e2112a0402f4cea1987', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.457503+00', 353, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5220, X'e4d9e0b10c42f3642f0a1d241f5c49d9dedf6dba8a04372a84d81f439b9ff232', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.50801+00', 365, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5221, X'953320ee998b4d9ae97a5a800f2df174bfb76b159ac26011f504d2c8600a1a41', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.644124+00', 231, 3, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5222, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.533441+00', 477, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5223, X'e625818bd2221030748a95bf7d1566a2b41792ac426d5d0b7e189b84f4622df7', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.515459+00', 498, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5224, X'9b1572b2d2efbe2e2dfe27a0f390964046100e91929e84bad849af78b21ce9b4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.665245+00', 424, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5225, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.74298+00', 48, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5226, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.594048+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5227, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.66206+00', 184, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5228, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.727379+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5229, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.62847+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5230, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.736885+00', 165, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5231, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.667727+00', 253, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5232, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.109569+00', 176, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5233, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.006264+00', 278, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5234, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.123398+00', 220, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5235, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.105065+00', 272, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5236, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.125029+00', 305, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5237, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.258363+00', 201, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5238, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.196241+00', 304, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5239, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.136881+00', 384, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5240, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.193538+00', 344, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5241, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.192073+00', 285, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5242, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.248727+00', 450, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5243, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.673474+00', 98, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5244, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.46207+00', 326, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5245, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.488326+00', 350, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5246, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.221467+00', 624, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5247, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.236131+00', 663, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5248, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.242238+00', 664, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5249, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.614161+00', 336, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5250, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.878783+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5251, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.823008+00', 256, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5252, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.884717+00', 298, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5253, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.014359+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5254, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.812809+00', 435, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5255, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.823974+00', 431, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5256, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.173999+00', 284, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5257, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.198599+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5258, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.163957+00', 511, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5259, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.86948+00', 165, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(5260, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.835478+00', 242, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(5261, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.675903+00', 443, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(5262, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.649679+00', 508, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(5263, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.842351+00', 326, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(5264, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.870398+00', 317, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5265, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.676839+00', 538, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(5266, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.829753+00', 457, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5267, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.829753+00', 475, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(5268, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.158001+00', 142, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(5269, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.757454+00', 566, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(5270, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.544763+00', 851, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(5271, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.935023+00', 525, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(5272, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.15158+00', 437, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(5273, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.895789+00', 798, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5274, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:54.895789+00', 806, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(5275, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.929264+00', 151, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(5276, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.965475+00', 364, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(5277, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.843415+00', 493, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(5278, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.971489+00', 538, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5279, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.930962+00', 652, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(5280, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.9377+00', 654, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5281, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.995516+00', 642, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(5282, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.920621+00', 808, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(5283, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.244388+00', 768, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5284, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.991433+00', 1219, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5285, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.917288+00', 1388, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5286, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.917288+00', 1393, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(5287, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.407282+00', 926, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5288, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.368203+00', 1024, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5289, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.986224+00', 1461, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(5290, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.151352+00', 1292, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5291, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:15.986224+00', 1447, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5292, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.071828+00', 1435, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5293, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.071828+00', 1445, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(5294, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.793622+00', 975, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5295, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.705062+00', 1456, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5296, X'72e0bdfe2c4a7cfa44cfe8a625b00a42719c0f47bbbe0a3100103386080d43d6', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.431163+00', 100, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5297, X'd292345ab78b4b040a3e2642092ffb315b9cfeef99ba7368c9024650b59747e3', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.457404+00', 93, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5298, X'b601e3a7cef02186b47b6c44232113f01af231682cf726d0ef404efd0d2d0d46', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.409169+00', 174, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5299, X'b0c9cf3603909a8e617feebbd826244d0e0521608b23dca5f2f5f6954f50c7be', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.453485+00', 174, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5300, X'81c54369928fd9e13b745368f460b14aa23d89260f20cad5a938752052cad973', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.465093+00', 196, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5301, X'9f20be72c64f17d6e24610bc53756a486c09347551c94c9f35521990a58e1fa2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.471708+00', 195, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5302, X'daabf7fa7ce6d01ab60e2cb24462300574c0d9f672070668e685d1ca02da119f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.451285+00', 244, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5303, X'b1193654f5b612afdd9154c53da18145ab953550a24de09274426494d384d72a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.659688+00', 52, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5304, X'7a042dd7aee6753afe77a767f107120ee99beaa11e11410dc357f5a853fc03bd', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.692904+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5305, X'43e781c11b92cb566704519c9f2ff546fea894a94a0ee1b785fe4b397b41ff7e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.676932+00', 89, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5306, X'e24ef67040f3c310765daef67376e267733102df276e6ec9d1a98e6372984e4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.688924+00', 93, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5307, X'e15358fdd50d1c41b18d0e06019f19b0ea4cf06ee3dba604bb0bfeebc7085479', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.708502+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5308, X'7b250905f8359ca945002cb15a17526d19b28e9e219692887a8a6cac5d898bc0', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.697655+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5309, X'ade494d7c49de7cf19b6f0d9002c8540b7a45c53f4e2e3a1965b845f8a095487', TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.73886+00', 71, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5310, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.52271+00', 84, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5311, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.562647+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5312, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.610711+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5313, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.535933+00', 173, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5314, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.612647+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5315, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.649432+00', 89, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5316, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.589573+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5317, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.295554+00', 199, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5318, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.385404+00', 147, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5319, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.390328+00', 188, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5320, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.410742+00', 173, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5321, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.416011+00', 237, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5322, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.414573+00', 259, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5323, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.370177+00', 319, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5324, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.410898+00', 282, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5325, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.418276+00', 280, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5326, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.322191+00', 193, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5327, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.338075+00', 222, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5328, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.416092+00', 174, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5329, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.442276+00', 208, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5330, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.338902+00', 337, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5331, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.460963+00', 260, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5332, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.306402+00', 432, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5333, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.458903+00', 281, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5334, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.512445+00', 407, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5335, X'f84cc55423cfe3fee5dbf7bca810ed3fbf0512a78253ff0c3effae8a826d42a5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:56.976886+00', 65, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(5336, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.448256+00', 399, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5337, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.430477+00', 438, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5338, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.647991+00', 230, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5339, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.647889+00', 231, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5340, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.62782+00', 266, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5341, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.606139+00', 440, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5342, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.586507+00', 615, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5343, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.016383+00', 609, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5344, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.550002+00', 1177, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5345, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.661572+00', 1214, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5346, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.993666+00', 957, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5347, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.035259+00', 1165, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5348, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.035259+00', 1186, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(5349, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.886645+00', 1445, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(5350, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.886645+00', 1438, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5351, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.191868+00', 1317, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5352, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.191868+00', 1352, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(5353, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.979425+00', 1660, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5354, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.750378+00', 903, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5355, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.750378+00', 912, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(5356, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:25.979425+00', 1685, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(5357, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.786187+00', 1050, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5358, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.786187+00', 1105, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(5359, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:26.22538+00', 1769, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(5360, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.027929+00', 749, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5361, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.0421+00', 874, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5362, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.170327+00', 1162, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5363, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.519576+00', 1249, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5364, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.876773+00', 936, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5365, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.57629+00', 1401, 0, TRUE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 12, 2, NULL, 2, NULL), +(5366, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.440345+00', 1550, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5367, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.440345+00', 1562, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(5368, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.724257+00', 1361, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 2, NULL), +(5369, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.81808+00', 1632, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5370, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.797582+00', 1691, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5371, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.668151+00', 2023, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5372, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:30.198178+00', 1541, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5373, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.972264+00', 1857, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5374, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.972264+00', 1869, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(5375, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:30.257128+00', 1660, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5376, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:30.257128+00', 1729, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(5377, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.691802+00', 376, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5378, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.774931+00', 377, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5379, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.715828+00', 431, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5380, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.65816+00', 618, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5381, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.830658+00', 470, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5382, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.969871+00', 357, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5383, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.991055+00', 339, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5384, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.991025+00', 408, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5385, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.866924+00', 561, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5386, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.952285+00', 652, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5387, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.025654+00', 627, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5388, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.094155+00', 600, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5389, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.83375+00', 868, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5390, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.691932+00', 1051, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5391, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.941812+00', 836, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5392, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.141783+00', 643, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5393, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.99483+00', 806, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5394, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.941812+00', 988, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5395, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:38.941812+00', 992, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(5396, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:17.831783+00', 399, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5397, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:17.823456+00', 786, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5398, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:17.787181+00', 833, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5399, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.185157+00', 508, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5400, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.18567+00', 506, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5401, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.185157+00', 577, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5402, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.185157+00', 585, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5403, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.174156+00', 625, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5404, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.174156+00', 642, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5405, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:17.945702+00', 884, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5406, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.696475+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5407, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.025411+00', 881, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5408, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.186305+00', 850, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5409, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:17.979132+00', 1102, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5410, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.16885+00', 949, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5411, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:19.0314+00', 244, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5412, X'f84cc55423cfe3fee5dbf7bca810ed3fbf0512a78253ff0c3effae8a826d42a5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:24.264159+00', 72, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(5413, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.285808+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5414, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.335257+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5415, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.317088+00', 147, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5416, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.370505+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5417, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.333517+00', 176, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5418, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.387299+00', 128, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5419, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.373755+00', 153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5420, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.708535+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5421, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.779091+00', 79, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5422, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.790764+00', 74, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5423, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.798822+00', 92, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5424, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.763763+00', 129, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5425, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.746174+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5426, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.723183+00', 182, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5427, X'670e40fc9ad54d405503aa441da110c6b5a58865415459a705f7ec0bc80a528b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:43:51.780555+00', 67, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(5428, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.566265+00', 228, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5429, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.639293+00', 197, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5430, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.550673+00', 459, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5431, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.889909+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5432, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.833518+00', 375, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5433, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.058096+00', 220, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5434, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.788662+00', 498, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5435, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.097949+00', 361, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5436, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.882316+00', 602, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5437, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:08.911437+00', 634, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5438, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.107318+00', 455, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5439, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.160996+00', 406, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5440, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.315337+00', 395, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5441, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.143122+00', 613, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5442, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.166713+00', 723, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5443, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.485937+00', 409, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5444, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.54988+00', 372, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5445, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.425308+00', 533, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5446, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.118444+00', 201, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5447, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.165362+00', 212, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5448, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.14063+00', 299, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5449, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.134328+00', 344, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5450, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.189151+00', 337, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5451, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.083026+00', 533, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5452, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.2028+00', 530, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5453, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.084422+00', 675, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5454, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.414456+00', 340, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5455, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.149941+00', 662, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5456, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.23029+00', 734, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5457, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.389841+00', 653, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5458, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.404816+00', 637, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5459, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.189399+00', 870, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5460, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.450583+00', 668, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5461, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.468581+00', 730, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5462, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.597695+00', 590, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5463, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.777034+00', 516, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5464, X'28b8f8489a4f139796d7e2911656b3251492673369924e5d2451d520e56b75ab', TIMESTAMP WITH TIME ZONE '2022-12-20 10:46:54.411784+00', 57, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5465, X'd67b68a0cbf0513eca0074ca5a9c151e55bd09cd5167b457e67de64c5bebaf80', TIMESTAMP WITH TIME ZONE '2022-12-20 10:47:52.0424+00', 13, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$cond''.', 1, NULL, NULL, NULL, 2, NULL), +(5466, X'e7c32f659d6322f601c61f86b0ce504cbafafdf345bf2e2ae1a7afe4a4cf1a8a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:48:25.497236+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(5467, X'fab581bb5477d0784ce8a7dc52338cef7ac0643cfc9be17cf9658a5bb1c84d93', TIMESTAMP WITH TIME ZONE '2022-12-20 10:48:40.553792+00', 15, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$_id''.', 1, NULL, NULL, NULL, 2, NULL), +(5468, X'44b3320f05cbe16ba67272d0fec4f86265cc445d8860d39ccfca2ec3ed8cbf34', TIMESTAMP WITH TIME ZONE '2022-12-20 10:49:02.679653+00', 61, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5469, X'43eea50f1057e5da3ecfb78becc3ac3e89f5645ba85051f7a1b4b8937dad98f6', TIMESTAMP WITH TIME ZONE '2022-12-20 10:49:50.81141+00', 52, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5470, X'b4315f1b03919e2047780589d0a695fc6d7ef1f59192518125524a547cc7de7e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:17.941772+00', 85, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5471, X'a602724b736d9474438b7a18a824308de14a9aa82d875449a9ae0b75a5ca051b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:27.430054+00', 36, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5472, X'667880c9e53f9e1603f155a18857585cc71520d354fcb1ea25531da00232226f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.593011+00', 44, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5473, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.653706+00', 105, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5474, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.658724+00', 120, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5475, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.657775+00', 136, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5476, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.590557+00', 256, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5477, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.694761+00', 163, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5478, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.650314+00', 252, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5479, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.775857+00', 182, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5480, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.601756+00', 359, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5481, X'3867ed5ff832700da54d26fd4aacec2d7b73ab2c8ca828cb15280fadbfe811b1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:51:03.612542+00', 66, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5482, X'13fec3a49df277e764eef58dbfe47b7d02a32b20fcd7d32bfe5f54311094111d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:51:47.285817+00', 95, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5483, X'13fec3a49df277e764eef58dbfe47b7d02a32b20fcd7d32bfe5f54311094111d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:52:01.914284+00', 62, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5484, X'9f097a14313aa95ae975058f0e363cf81e9b56a401f0056fb741086cb289ec9c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:52:12.002347+00', 43, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5485, X'345c224ee0cb9655ae2f415cfc913ae59acb1963a2ee42253ea9658d51086d23', TIMESTAMP WITH TIME ZONE '2022-12-20 10:52:31.36182+00', 45, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5486, X'345c224ee0cb9655ae2f415cfc913ae59acb1963a2ee42253ea9658d51086d23', TIMESTAMP WITH TIME ZONE '2022-12-20 10:52:41.806843+00', 61, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5487, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.338218+00', 66, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5488, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.294377+00', 114, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5489, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.301473+00', 165, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5490, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.360102+00', 107, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5491, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.394042+00', 79, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5492, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.455412+00', 106, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5493, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.461062+00', 117, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5494, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.432718+00', 162, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5495, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.438664+00', 188, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5496, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:19.080351+00', 120, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(5497, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.141721+00', 246, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5498, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.150426+00', 258, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5499, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.338042+00', 285, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5500, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.368874+00', 280, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5501, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.184355+00', 470, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5502, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.184355+00', 475, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5503, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.405237+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5504, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.21059+00', 526, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5505, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.267162+00', 493, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5506, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.140796+00', 637, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5507, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.140796+00', 644, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5508, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.553614+00', 302, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5509, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.405273+00', 449, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5510, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.411792+00', 455, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5511, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.337995+00', 562, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5512, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.556861+00', 369, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5513, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.133049+00', 85, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5514, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.116228+00', 193, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5515, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.15652+00', 182, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5516, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.219731+00', 150, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5517, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.242185+00', 162, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5518, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.085858+00', 351, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5519, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.325377+00', 128, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5520, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.17273+00', 286, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5521, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.238282+00', 255, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5522, X'03b09305062aaab2e0c51b1575cb2464c945ab102da42a4e577628e1de344008', TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:43.693674+00', 72, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5523, X'44e0d7583cf5f79f139f83497786cf5a6252f398f608080e9a92d4f3e0b497ef', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:06.769997+00', 43, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5524, X'b06f5ea2ad4a3144d482a84237d624584768793e6569a4c9ec2d702aa4471945', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:20.267731+00', 44, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5525, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.027645+00', 117, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5526, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.034999+00', 168, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5527, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.113716+00', 164, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5528, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.064843+00', 309, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5529, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.096789+00', 351, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5530, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.145363+00', 324, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5531, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.299002+00', 378, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5532, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.292296+00', 387, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5533, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.183833+00', 569, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5534, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.285925+00', 510, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5535, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.369533+00', 426, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5536, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.254795+00', 573, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5537, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.519128+00', 327, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5538, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.319385+00', 565, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5539, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.5682+00', 349, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5540, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.394376+00', 539, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5541, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.541334+00', 407, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5542, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.532997+00', 432, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5543, X'b06f5ea2ad4a3144d482a84237d624584768793e6569a4c9ec2d702aa4471945', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:32.32277+00', 57, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5544, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.367249+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5545, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.401296+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5546, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.4992+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5547, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.43828+00', 321, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5548, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.603557+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5549, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.507985+00', 460, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5550, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.618282+00', 356, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5551, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.506676+00', 477, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5552, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.412086+00', 574, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5553, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.270632+00', 93, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5554, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.303183+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5555, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.271323+00', 276, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5556, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.296567+00', 313, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5557, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.413008+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5558, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.455089+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5559, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.335345+00', 326, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5560, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.474658+00', 205, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5561, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.388516+00', 294, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5562, X'132f48547035c5da16418f51593956aa63853e3399f9a957248956d34038882f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:27.798656+00', 39, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5563, X'104e206234f41abdfa814bbddabc15304f1439931269811c8df0b1201e42179e', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:49.535848+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''ER''.', 1, NULL, NULL, NULL, 2, NULL), +(5564, X'132f48547035c5da16418f51593956aa63853e3399f9a957248956d34038882f', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:52.708661+00', 54, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5565, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.304053+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5566, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.295783+00', 289, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5567, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.302981+00', 357, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5568, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.594594+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5569, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.419992+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5570, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.41059+00', 345, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5571, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.496996+00', 264, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5572, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.595117+00', 190, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5573, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.614555+00', 255, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5574, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:11.255758+00', 90, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5575, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.285706+00', 182, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5576, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.286237+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5577, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.288257+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5578, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.434666+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5579, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.250527+00', 333, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5580, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.350629+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5581, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.492277+00', 162, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5582, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.34018+00', 345, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5583, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.677146+00', 152, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5584, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.254358+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5585, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.260634+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5586, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.342654+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5587, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.266214+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5588, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.321132+00', 196, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5589, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.295542+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5590, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.346305+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5591, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.364196+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5592, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.454126+00', 177, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5593, X'091c3c5067668f7ca489fd200bc47c33c95dea4981151011bbac3447b69e5d62', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:20.706264+00', 38, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5594, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.323094+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5595, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.340121+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5596, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.40931+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5597, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.303347+00', 350, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5598, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.311092+00', 382, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5599, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.408449+00', 277, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5600, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.416272+00', 378, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5601, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.435096+00', 369, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5602, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.409408+00', 430, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5603, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.280028+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5604, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.314417+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5605, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.382249+00', 126, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5606, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.259223+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5607, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.38424+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5608, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.378308+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5609, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.45829+00', 119, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5610, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.380813+00', 282, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5611, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.35731+00', 312, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5612, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:57.988825+00', 62, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5613, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.014201+00', 59, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5614, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:57.953003+00', 147, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5615, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:57.992195+00', 151, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5616, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.09776+00', 61, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5617, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.016604+00', 156, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(5618, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:57.999206+00', 185, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5619, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:57.990641+00', 196, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5620, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.061492+00', 168, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5621, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.545013+00', 274, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5622, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.468409+00', 378, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5623, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.543991+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5624, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.837184+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5625, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.75287+00', 296, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5626, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.678252+00', 379, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5627, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.860981+00', 229, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5628, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.75023+00', 369, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5629, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.92383+00', 284, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5630, X'd85f157de79e51e3ec21355d823f0f37a47636a6db461fef0cd5232fde810889', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:27.265625+00', 52, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(5631, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.761414+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5632, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.498489+00', 453, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5633, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.767015+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5634, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.563648+00', 423, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5635, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.877711+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5636, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.749142+00', 281, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5637, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.563177+00', 480, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5638, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.749172+00', 345, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5639, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.874079+00', 233, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5640, X'ffc2c8aa764edcacb68516db504b9ed60020e2faf3b39a92c77149056d92b53b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:02:57.295827+00', 67, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5641, X'8888af8d22d387731c93aff4460ced759927b31a18ad7acae77af1ce86db0728', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:04.24424+00', 121, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5642, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.693397+00', 464, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5643, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.765451+00', 483, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5644, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.738623+00', 564, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5645, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.662422+00', 682, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5646, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.128555+00', 736, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(5647, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.13389+00', 1447, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(5648, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.141135+00', 1446, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5649, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.272925+00', 1333, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5650, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.141135+00', 1460, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(5651, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.670407+00', 1974, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5652, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.670407+00', 1980, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(5653, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.347637+00', 1325, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5654, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.571267+00', 2170, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5655, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:13.571267+00', 2174, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(5656, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.339468+00', 1415, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 2, NULL), +(5657, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.55381+00', 1296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5658, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.507072+00', 1386, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5659, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.553678+00', 1374, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5660, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.585496+00', 1557, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(5661, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.585496+00', 1553, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5662, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.699959+00', 1467, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5663, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.44994+00', 1745, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(5664, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.645382+00', 1559, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(5665, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.44994+00', 1744, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5666, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.645382+00', 1558, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5667, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.584963+00', 1652, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5668, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.584946+00', 1848, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5669, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.50783+00', 1942, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5670, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.553481+00', 1935, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5671, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.553481+00', 1937, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(5672, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.552812+00', 1937, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5673, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.587427+00', 2063, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5674, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.553675+00', 2144, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5675, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.451464+00', 2276, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5676, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.629205+00', 2130, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5677, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.62868+00', 2143, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5678, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.62868+00', 2151, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(5679, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.629205+00', 2150, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(5680, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.510817+00', 2273, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5681, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.436102+00', 2447, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5682, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:14.359104+00', 2591, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5683, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:40.128943+00', 80, 22, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5684, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.34628+00', 96, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5685, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.391368+00', 125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5686, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.43889+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5687, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.512545+00', 99, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5688, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.356441+00', 265, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5689, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.420292+00', 213, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5690, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.530837+00', 181, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5691, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.776896+00', 184, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5692, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.839269+00', 258, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5693, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.934832+00', 319, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5694, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.915334+00', 373, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5695, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.974946+00', 681, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5696, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.870791+00', 811, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5697, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.794109+00', 910, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5698, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.870774+00', 848, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5699, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.023692+00', 746, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5700, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.974946+00', 784, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5701, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.051803+00', 741, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5702, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.948546+00', 897, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5703, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.885938+00', 1016, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5704, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.975044+00', 1033, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5705, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.975044+00', 1038, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(5706, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:10.849052+00', 1219, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5707, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.054154+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5708, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.069949+00', 157, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5709, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.004029+00', 311, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5710, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.026194+00', 541, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5711, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.153986+00', 472, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5712, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.051019+00', 608, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5713, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.146131+00', 515, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5714, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.182011+00', 527, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5715, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.915579+00', 946, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5716, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.642031+00', 239, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5717, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.786636+00', 314, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5718, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.690013+00', 450, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5719, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.682402+00', 464, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5720, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.958924+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5721, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.709092+00', 444, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5722, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.685309+00', 485, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5723, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.745384+00', 178, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5724, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.830492+00', 264, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5725, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.882285+00', 350, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5726, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.90685+00', 329, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5727, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.095561+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5728, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.959689+00', 337, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5729, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.91798+00', 390, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5730, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.178853+00', 229, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5731, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.227699+00', 180, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5732, X'a9c239acde81fc593ca9c19767e6ca5e2f73f39305c8e9fe8277d58413f4598c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:45.952459+00', 39, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5733, X'5a0c2116ce10406f526ea0162458814e4749ca8628a2663cb898c9ca4aaa6126', TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:58.880538+00', 45, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5734, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.551344+00', 77, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5735, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.563603+00', 79, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5736, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.588196+00', 68, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5737, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.592664+00', 81, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5738, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.601293+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5739, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.607045+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5740, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.607715+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5741, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.538093+00', 128, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5742, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.589458+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5743, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.579778+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5744, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.608575+00', 153, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5745, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.63211+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5746, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.652715+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5747, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.74299+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5748, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.69778+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5749, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.655039+00', 253, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5750, X'5a0c2116ce10406f526ea0162458814e4749ca8628a2663cb898c9ca4aaa6126', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:12.226653+00', 73, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5751, X'be21ea96547e1d3158c8c81d703a5eead24c606263d0ce8d83df716b6e6ac01e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:26.290075+00', 39, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5752, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.541529+00', 71, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5753, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.572005+00', 54, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5754, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.574969+00', 66, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5755, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.571418+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5756, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.57382+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5757, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.555552+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5758, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.611259+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5759, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.498717+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5760, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.523646+00', 90, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5761, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.464447+00', 154, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5762, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.49191+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5763, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.532157+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5764, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.524421+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5765, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.620406+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5766, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.523916+00', 187, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5767, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.564521+00', 181, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5768, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.595602+00', 156, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5769, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.718529+00', 137, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5770, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.727572+00', 179, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5771, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.779612+00', 244, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5772, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.711325+00', 552, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5773, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.845372+00', 420, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5774, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.951832+00', 336, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5775, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.990423+00', 327, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5776, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.734655+00', 590, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5777, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.717235+00', 632, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5778, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:00.535373+00', 818, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5779, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.101389+00', 336, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5780, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.093085+00', 371, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5781, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.06404+00', 721, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5782, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.282683+00', 577, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5783, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.369408+00', 540, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5784, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.110058+00', 797, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5785, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.364921+00', 630, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5786, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.85973+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5787, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.807233+00', 195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5788, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.782541+00', 223, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5789, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.833066+00', 181, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5790, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.852573+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5791, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.822524+00', 221, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5792, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.876136+00', 183, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5793, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:28.964292+00', 154, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5794, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.012114+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5795, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.037803+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5796, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.011021+00', 200, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5797, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.062997+00', 162, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5798, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.049361+00', 180, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5799, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.031622+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5800, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:28.975952+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5801, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.058108+00', 190, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5802, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.655374+00', 140, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5803, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.750305+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5804, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.751021+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5805, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.766114+00', 109, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5806, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.750762+00', 148, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5807, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.727002+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5808, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.719426+00', 208, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5809, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.497193+00', 47, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5810, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.383808+00', 220, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5811, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.40295+00', 290, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5812, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.832653+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5813, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.759954+00', 232, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5814, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.802338+00', 189, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5815, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.724418+00', 282, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5816, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.646441+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5817, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.815385+00', 291, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5818, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.950558+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5819, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.894706+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5820, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.633315+00', 504, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5821, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.915203+00', 274, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5822, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.898291+00', 295, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5823, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.775418+00', 437, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5824, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.019103+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5825, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.922761+00', 331, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5826, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.91379+00', 347, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5827, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:50.972367+00', 268, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5828, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:50.972367+00', 295, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5829, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:50.991617+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5830, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:50.991617+00', 310, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5831, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:50.971544+00', 436, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5832, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:50.971138+00', 481, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5833, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.166174+00', 334, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5834, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.066146+00', 738, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5835, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.170428+00', 649, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5836, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.170725+00', 658, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5837, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.560887+00', 271, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5838, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.256027+00', 596, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5839, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.293183+00', 592, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5840, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.20187+00', 685, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5841, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.137565+00', 818, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5842, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:50.92546+00', 1039, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 14, 2, NULL, 2, NULL), +(5843, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.498832+00', 559, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5844, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.516291+00', 595, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5845, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.550165+00', 650, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5846, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.600504+00', 699, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5847, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.054482+00', 273, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5848, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.686538+00', 774, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5849, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.651446+00', 946, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5850, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.669967+00', 959, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5851, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.057523+00', 585, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5852, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.81297+00', 845, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5853, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.585009+00', 1147, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5854, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.585009+00', 1153, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(5855, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.738735+00', 1000, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5856, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.056886+00', 887, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(5857, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.37266+00', 656, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5858, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.173264+00', 974, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5859, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.063895+00', 1092, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5860, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:52.978138+00', 1398, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5861, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.356457+00', 1377, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5862, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.534072+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5863, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.513383+00', 166, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5864, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.578545+00', 97, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5865, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.610802+00', 151, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5866, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.629624+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5867, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.636854+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5868, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.629605+00', 156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5869, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.526172+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5870, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.505169+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5871, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.577213+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5872, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.637761+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5873, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.637682+00', 113, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5874, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.666129+00', 108, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5875, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.636063+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5876, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.715376+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5877, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.566878+00', 270, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5878, X'93abab75111cee5f18dac37d86cc2003c2a153d5a5c05d06a58a4a9ebd5128cf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:27.387357+00', 37, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5879, X'93abab75111cee5f18dac37d86cc2003c2a153d5a5c05d06a58a4a9ebd5128cf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:35.048173+00', 94, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5880, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.173621+00', 111, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5881, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.262432+00', 120, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5882, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.249728+00', 299, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5883, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.324296+00', 338, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5884, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.27438+00', 505, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5885, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.239372+00', 620, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(5886, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.384546+00', 468, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5887, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.407758+00', 694, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5888, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.474374+00', 638, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5889, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.259154+00', 881, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5890, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.740576+00', 435, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5891, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.17306+00', 1021, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(5892, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.724895+00', 499, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5893, X'd18d94fcad1478cb9ee2bdc63ca2932af764fce4cc8e55522ff32d817bf0509a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.820406+00', 404, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5894, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.746143+00', 512, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5895, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.667311+00', 605, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5896, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.426331+00', 892, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5897, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.911975+00', 411, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5898, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.806662+00', 289, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5899, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.864474+00', 307, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5900, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.864474+00', 309, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5901, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.868905+00', 329, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5902, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.020341+00', 359, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5903, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.906271+00', 466, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5904, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.906271+00', 488, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(5905, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.00818+00', 400, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5906, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.158335+00', 307, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5907, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.923538+00', 557, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5908, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.098014+00', 558, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5909, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.027194+00', 698, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5910, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.047185+00', 702, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5911, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.077022+00', 704, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5912, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.10512+00', 696, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5913, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.946285+00', 866, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5914, X'93abab75111cee5f18dac37d86cc2003c2a153d5a5c05d06a58a4a9ebd5128cf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:48.277187+00', 125, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(5915, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.08092+00', 98, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(5916, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.090832+00', 129, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(5917, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.077504+00', 148, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(5918, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.083153+00', 147, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(5919, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.080126+00', 196, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(5920, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.080971+00', 197, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(5921, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.092894+00', 192, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(5922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.13489+00', 181, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5923, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.06641+00', 312, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(5924, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.692681+00', 85, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5925, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.743246+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5926, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.694032+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5927, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.700821+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5928, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.705717+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5929, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.698054+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5930, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.704534+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5931, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.733373+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5932, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.76241+00', 129, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5933, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.641422+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5934, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.642478+00', 81, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5935, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.64844+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5936, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.579541+00', 275, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5937, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.689963+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5938, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.614189+00', 262, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5939, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.640403+00', 241, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5940, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.555358+00', 51, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(5941, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.590583+00', 57, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(5942, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.595634+00', 63, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5943, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.581602+00', 79, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(5944, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.592959+00', 80, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(5945, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.581571+00', 97, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5946, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.608372+00', 85, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(5947, X'93c12625316b4fb7af59f0afe5ea52fc3ad47ffd07d90b8a99eeeb16e1e2677a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:24.316158+00', 42, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(5948, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.813074+00', 63, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(5949, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.803293+00', 204, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(5950, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.803871+00', 220, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(5951, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.895847+00', 147, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(5952, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.857118+00', 247, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(5953, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.938958+00', 170, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(5954, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.898739+00', 244, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(5955, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.496471+00', 71, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5956, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.489061+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5957, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.469527+00', 178, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5958, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.5124+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5959, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.498677+00', 192, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5960, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.505052+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5961, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.603341+00', 139, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5962, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.500804+00', 244, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5963, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.584429+00', 183, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5964, X'93c12625316b4fb7af59f0afe5ea52fc3ad47ffd07d90b8a99eeeb16e1e2677a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:41.005724+00', 54, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(5965, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.440678+00', 108, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5966, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.607247+00', 249, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(5967, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.793208+00', 166, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5968, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.793208+00', 186, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(5969, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.872651+00', 115, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(5970, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.7071+00', 310, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(5971, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.834045+00', 274, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(5972, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.736988+00', 375, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(5973, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.776942+00', 428, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(5974, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.875774+00', 345, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(5975, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.845234+00', 478, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(5976, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.860462+00', 575, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5977, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.869165+00', 597, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(5978, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.746172+00', 861, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(5979, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.984875+00', 742, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(5980, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.609806+00', 112, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(5981, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.500213+00', 356, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(5982, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.668706+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(5983, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.650905+00', 449, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(5984, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.597616+00', 542, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(5985, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.650927+00', 495, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(5986, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.671354+00', 498, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(5987, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.589341+00', 604, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(5988, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.720533+00', 503, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(5989, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.629547+00', 625, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(5990, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.402037+00', 853, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(5991, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.939899+00', 430, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(5992, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.743332+00', 837, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(5993, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.862554+00', 640, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(5994, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.955116+00', 634, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(5995, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.949035+00', 675, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(5996, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.858915+00', 786, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(5997, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.837317+00', 1023, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(5998, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.171827+00', 159, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(5999, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.22679+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6000, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.201113+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6001, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.222791+00', 313, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6002, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.259301+00', 284, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6003, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.237996+00', 320, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6004, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.278296+00', 334, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6005, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.276082+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6006, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.31216+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6007, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.325995+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6008, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.363213+00', 101, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6009, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.190399+00', 324, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6010, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.287801+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6011, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.250195+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6012, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.300198+00', 255, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6013, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.417507+00', 202, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6014, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.17311+00', 140, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6015, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.259382+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6016, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.214223+00', 131, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6017, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.271516+00', 107, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6018, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.222321+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6019, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.275841+00', 175, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6020, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.282137+00', 217, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6021, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.254615+00', 308, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6022, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.10471+00', 501, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6023, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.373775+00', 274, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6024, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.445504+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6025, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.413438+00', 321, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6026, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.436868+00', 328, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6027, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.494222+00', 278, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6028, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.37732+00', 403, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6029, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.330136+00', 470, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6030, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.50967+00', 306, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6031, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.590764+00', 232, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6032, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.607955+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6033, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.498306+00', 355, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6034, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.478801+00', 380, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6035, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.58811+00', 281, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6036, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.545663+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6037, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.777657+00', 151, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6038, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.77835+00', 196, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6039, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.838716+00', 153, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6040, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.889154+00', 130, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6041, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.81211+00', 237, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6042, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.777997+00', 314, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6043, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.943456+00', 204, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6044, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.12414+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6045, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.212531+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6046, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.161266+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6047, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.328127+00', 91, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6048, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.304169+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6049, X'821e97937bd6c487ed5ddac755132a4238ecb7defe9950fb97648f1d73f9ae8e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.190289+00', 294, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6050, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.222626+00', 281, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6051, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.064004+00', 589, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6052, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.3522+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6053, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.303516+00', 455, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6054, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.648759+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6055, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.703508+00', 195, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6056, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.648996+00', 252, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6057, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.641543+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6058, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.354467+00', 589, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6059, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.642515+00', 301, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6060, X'6a832d9dec27dfc04c03215db060ae8ed23ef4347c5024a43437d8d216d6622a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:18.701534+00', 36, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6061, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.203724+00', 71, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6062, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.24214+00', 49, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6063, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.213258+00', 105, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6064, X'f11b1c12014744402742eff0197b26bb981ad948ea5d0a4cf72a0152cd65a0f7', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.262508+00', 65, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6065, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.247576+00', 117, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6066, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.261372+00', 105, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6067, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.275347+00', 95, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6068, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.32204+00', 176, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6069, X'f11b1c12014744402742eff0197b26bb981ad948ea5d0a4cf72a0152cd65a0f7', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.253693+00', 262, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6070, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.239104+00', 283, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6071, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.320082+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6072, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.463028+00', 131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6073, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.360742+00', 222, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6074, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.444224+00', 207, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6075, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.415185+00', 137, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6076, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.411118+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6077, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.570005+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6078, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.652605+00', 146, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6079, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.552821+00', 254, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6080, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.582569+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6081, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.576559+00', 314, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6082, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.49279+00', 438, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6083, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.467598+00', 466, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6084, X'bc178df08f4d1534cd9c4ab701b933e2d5b33cb04a1132316a6302890c54fd7e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:49.153999+00', 54, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(6085, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.180874+00', 166, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6086, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.15859+00', 250, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6087, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.227818+00', 187, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6088, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.224083+00', 240, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6089, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.192991+00', 304, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6090, X'f11b1c12014744402742eff0197b26bb981ad948ea5d0a4cf72a0152cd65a0f7', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.290582+00', 201, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6091, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.229599+00', 295, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6092, X'980d5826bf85ba12309cc764577ddb9dc6df123f107454e2712afec0576798fc', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:07.294241+00', 49, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(6093, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.15406+00', 108, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6094, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.18734+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6095, X'78d0069c02ba5f5689495a9cf7882af6be343d6b4821ce27556392cadbcd4df9', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.170233+00', 201, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6096, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.208285+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6097, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.285503+00', 174, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6098, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.225628+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6099, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.3733+00', 147, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6100, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.030461+00', 340, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6101, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.126204+00', 469, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6102, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.345097+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6103, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.361381+00', 258, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6104, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.410266+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6105, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.540793+00', 155, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6106, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.501342+00', 248, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6107, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.452608+00', 317, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6108, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.346221+00', 451, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6109, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:18.922451+00', 155, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6110, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:18.925834+00', 178, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6111, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:18.91793+00', 212, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6112, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:18.891614+00', 283, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6113, X'78d0069c02ba5f5689495a9cf7882af6be343d6b4821ce27556392cadbcd4df9', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:18.913285+00', 281, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6114, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:18.884418+00', 334, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6115, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:18.950577+00', 271, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6116, X'f20ab02bd639ace3fae124ac247a444ff692604646705e9a1b383529f185d28d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:33.73223+00', 103, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(6117, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.398641+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6118, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.588714+00', 66, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6119, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.389866+00', 348, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6120, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.692048+00', 71, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6121, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.775785+00', 276, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6122, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.537913+00', 665, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6123, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.793069+00', 415, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6124, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.918962+00', 473, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6125, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.871272+00', 529, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6126, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.864748+00', 549, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6127, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.883136+00', 565, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6128, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.256849+00', 249, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6129, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.818872+00', 694, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6130, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.260613+00', 249, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6131, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.807315+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6132, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.77159+00', 154, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6133, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.922485+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6134, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.912983+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6135, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.9224+00', 227, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6136, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.743904+00', 409, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6137, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.961628+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6138, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.898362+00', 295, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6139, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.991176+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6140, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.71204+00', 229, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6141, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.71204+00', 239, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(6142, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.789818+00', 207, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6143, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.789818+00', 220, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(6144, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.746004+00', 385, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6145, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.790677+00', 353, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6146, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.790715+00', 362, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(6147, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.741118+00', 447, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(6148, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.115891+00', 335, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(6149, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.745356+00', 681, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(6150, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.790115+00', 726, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6151, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.798159+00', 900, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(6152, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.122397+00', 584, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6153, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.192286+00', 544, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6154, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.790344+00', 954, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6155, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.12913+00', 646, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6156, X'4454ce644ccc549a4eb58b0de057da56a2e7e25340308025f29b6ee216ae3415', TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:56.950486+00', 42, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(6157, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.342117+00', 239, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6158, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.34075+00', 249, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6159, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.338576+00', 284, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6160, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.324665+00', 303, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6161, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.337725+00', 294, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6162, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.430891+00', 243, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6163, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.52042+00', 174, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6164, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.717304+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6165, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.628942+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6166, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.630144+00', 234, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6167, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.627565+00', 338, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6168, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.629644+00', 339, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6169, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.750145+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6170, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.74794+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6171, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.666327+00', 387, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6172, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.771202+00', 314, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6173, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.746125+00', 144, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6174, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.724239+00', 176, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6175, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.769356+00', 157, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6176, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.837741+00', 98, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6177, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.798163+00', 138, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6178, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.850031+00', 109, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6179, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.76919+00', 203, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6180, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.328123+00', 91, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6181, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.331882+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6182, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.302306+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6183, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.337617+00', 110, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6184, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.302603+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6185, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.344962+00', 129, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6186, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.275631+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6187, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.553883+00', 335, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6188, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.593808+00', 381, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6189, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.895251+00', 256, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6190, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.527873+00', 634, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6191, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.631535+00', 546, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6192, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.694076+00', 525, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6193, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.683789+00', 549, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6194, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.633697+00', 618, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6195, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.690185+00', 593, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6196, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.670623+00', 89, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6197, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.685207+00', 104, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6198, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.684865+00', 109, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6199, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.700717+00', 111, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6200, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.731993+00', 83, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6201, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.746724+00', 72, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6202, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.731018+00', 89, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6203, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.281602+00', 143, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6204, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.308154+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6205, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.33643+00', 121, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6206, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.352881+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6207, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.394851+00', 108, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6208, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.353542+00', 147, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6209, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.366491+00', 149, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6210, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.610197+00', 125, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6211, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.747879+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6212, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.676756+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6213, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.758092+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6214, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.636524+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6215, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.780462+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6216, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.636653+00', 273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6217, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.714111+00', 224, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6218, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.640012+00', 311, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6219, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.708073+00', 73, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6220, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.71311+00', 85, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6221, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.69881+00', 127, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6222, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.694104+00', 135, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6223, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.713712+00', 126, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6224, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.734432+00', 122, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6225, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.729875+00', 134, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6226, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.264196+00', 92, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6227, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.371301+00', 95, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6228, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.496244+00', 84, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6229, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.36777+00', 213, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6230, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.425501+00', 167, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6231, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.442232+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6232, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.535507+00', 131, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6233, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.421127+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6234, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.45005+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6235, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.580627+00', 226, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6236, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.566174+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6237, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.592359+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6238, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.674884+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6239, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.713248+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6240, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.592339+00', 367, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6241, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.656776+00', 323, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6242, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.659741+00', 51, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6243, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.757015+00', 107, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6244, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.774952+00', 214, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6245, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.825986+00', 163, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6246, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.778361+00', 242, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6247, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.77774+00', 252, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6248, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.678025+00', 357, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6249, X'dde754121898a7d070b69ffd9e67616bc79c17e34f9c2b6c60fc017d27ebcdc8', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:03.139682+00', 40, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(6250, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.87267+00', 113, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6251, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.87267+00', 126, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(6252, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.860485+00', 256, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(6253, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.91455+00', 307, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6254, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.867713+00', 349, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(6255, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.91455+00', 334, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(6256, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.926967+00', 333, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6257, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.903379+00', 448, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(6258, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.091868+00', 260, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6259, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.89329+00', 503, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(6260, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.099624+00', 372, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6261, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.932426+00', 554, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6262, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.902107+00', 671, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(6263, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.294891+00', 321, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6264, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.3819+00', 241, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6265, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.355048+00', 308, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6266, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.346402+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6267, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.395006+00', 170, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6268, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.389539+00', 198, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6269, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.375515+00', 235, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6270, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.492363+00', 204, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6271, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.43757+00', 252, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6272, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.483924+00', 237, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6273, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.434758+00', 339, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6274, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.528868+00', 258, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6275, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.422219+00', 368, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6276, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.507436+00', 306, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6277, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.483886+00', 333, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6278, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.405977+00', 427, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6279, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.49845+00', 350, 8, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6280, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.644571+00', 210, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6281, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.657311+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6282, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.742089+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6283, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.664733+00', 250, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6284, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.782625+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6285, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.864876+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6286, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.759894+00', 226, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6287, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.74203+00', 271, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6288, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.80021+00', 217, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6289, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.712384+00', 84, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6290, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.700299+00', 98, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6291, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.748637+00', 63, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6292, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.702786+00', 112, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6293, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.745488+00', 80, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6294, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.72659+00', 106, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6295, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.739446+00', 98, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6296, X'4454ce644ccc549a4eb58b0de057da56a2e7e25340308025f29b6ee216ae3415', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:31.830543+00', 40, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(6297, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.046509+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6298, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.088841+00', 98, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6299, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.110753+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6300, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.081304+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6301, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.038194+00', 206, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6302, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.111278+00', 150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6303, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.046398+00', 260, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6304, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.322194+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6305, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.285096+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6306, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.33796+00', 190, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6307, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.390438+00', 149, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6308, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.381155+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6309, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.494528+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6310, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.495601+00', 114, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6311, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.383029+00', 289, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6312, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.480474+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6313, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.385013+00', 382, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6314, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.558319+00', 313, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6315, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.424399+00', 474, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6316, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.475041+00', 417, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6317, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.486445+00', 425, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6318, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.663823+00', 323, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6319, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.686252+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6320, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.2888+00', 75, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(6321, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.295744+00', 180, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(6322, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.394791+00', 141, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(6323, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.359515+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6324, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.347461+00', 232, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6325, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.385273+00', 217, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6326, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.399264+00', 213, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(6327, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.385273+00', 237, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(6328, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.429612+00', 209, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6329, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.446525+00', 205, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6330, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.446525+00', 216, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(6331, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.421734+00', 277, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6332, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.478717+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6333, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.49422+00', 334, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6334, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.51499+00', 322, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6335, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.395177+00', 505, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(6336, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.999206+00', 83, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6337, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.0991+00', 145, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6338, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.077358+00', 251, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6339, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.070012+00', 250, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6340, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.011321+00', 346, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6341, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.012735+00', 363, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6342, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.101332+00', 328, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6343, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.540174+00', 97, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6344, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.540174+00', 100, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(6345, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.572024+00', 242, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6346, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.781582+00', 170, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6347, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.760086+00', 192, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(6348, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.961314+00', 137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6349, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.658631+00', 494, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6350, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.805947+00', 364, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(6351, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.609086+00', 564, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(6352, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.633098+00', 549, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6353, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.915296+00', 327, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6354, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.819312+00', 424, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6355, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.819312+00', 430, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(6356, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.034647+00', 265, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6357, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.762251+00', 577, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(6358, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.035053+00', 315, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6359, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.246128+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6360, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.261535+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6361, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.269793+00', 75, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6362, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.255376+00', 88, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6363, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.284648+00', 94, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6364, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.277565+00', 149, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6365, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.284973+00', 172, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6366, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.434144+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6367, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.449376+00', 217, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6368, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.434144+00', 291, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6369, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.47014+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6370, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.534106+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6371, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.59477+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6372, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.548722+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6373, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.657505+00', 251, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6374, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.585032+00', 325, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6375, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.658905+00', 69, 8, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6376, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.642415+00', 125, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6377, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.665696+00', 106, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6378, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.692878+00', 91, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6379, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.676121+00', 107, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6380, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.695796+00', 103, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6381, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.688274+00', 116, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6382, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.325011+00', 333, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(6383, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.522342+00', 247, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(6384, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.609431+00', 163, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(6385, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.606658+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6386, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.35517+00', 454, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(6387, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.518406+00', 344, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6388, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.395357+00', 475, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(6389, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.729592+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6390, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.609265+00', 328, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6391, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.437197+00', 566, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(6392, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.80563+00', 315, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6393, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.693733+00', 451, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6394, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.991433+00', 198, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(6395, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.489977+00', 709, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6396, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.589773+00', 611, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(6397, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.53445+00', 673, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6398, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.995934+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6399, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.973761+00', 281, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(6400, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.315505+00', 173, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6401, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.277137+00', 294, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6402, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.366723+00', 364, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6403, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.363168+00', 421, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6404, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.393474+00', 396, 8, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6405, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.475186+00', 333, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6406, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.543994+00', 293, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6407, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.390156+00', 76, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6408, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.413727+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6409, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.504396+00', 103, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6410, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.481475+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6411, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.561223+00', 105, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6412, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.539993+00', 193, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6413, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.503187+00', 286, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6414, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.47452+00', 332, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6415, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.568648+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6416, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.694637+00', 95, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6417, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.693327+00', 148, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6418, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.688647+00', 158, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6419, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.724089+00', 156, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6420, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.750308+00', 138, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6421, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.701068+00', 188, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6422, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.706657+00', 191, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6423, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.32423+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6424, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.391737+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6425, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.302246+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6426, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.376482+00', 307, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6427, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.310442+00', 480, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6428, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.574293+00', 225, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6429, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.57675+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6430, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.577028+00', 234, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6431, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.621553+00', 213, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6432, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.318478+00', 84, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6433, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.287898+00', 173, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6434, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.300951+00', 173, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6435, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.316718+00', 162, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6436, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.30107+00', 194, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6437, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.365858+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6438, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.383831+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6439, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.53466+00', 57, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6440, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.414267+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6441, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.450239+00', 241, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6442, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.557266+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6443, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.557157+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6444, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.538998+00', 258, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6445, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.599478+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6446, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.61083+00', 202, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6447, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.515303+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6448, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.645995+00', 100, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6449, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.660586+00', 103, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6450, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.680704+00', 117, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6451, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.714149+00', 87, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6452, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.676328+00', 146, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6453, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.719645+00', 107, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6454, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.714157+00', 147, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6455, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.784221+00', 269, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(6456, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.813653+00', 255, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(6457, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.939453+00', 169, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(6458, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.79036+00', 798, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(6459, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:23.06662+00', 646, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(6460, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:23.113885+00', 605, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(6461, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.976406+00', 758, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(6462, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.959031+00', 784, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(6463, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.909726+00', 866, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(6464, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:23.009944+00', 839, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(6465, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:23.021215+00', 877, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(6466, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.906361+00', 1161, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6467, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:22.906361+00', 1214, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(6468, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.220373+00', 287, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6469, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.259931+00', 310, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6470, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.189087+00', 424, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6471, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.189087+00', 464, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(6472, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.288006+00', 522, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6473, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.184652+00', 633, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(6474, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.184652+00', 631, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6475, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.20495+00', 999, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(6476, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.646384+00', 662, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6477, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.60083+00', 773, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6478, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.721591+00', 985, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6479, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.729192+00', 1019, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6480, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.726098+00', 1051, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6481, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.473079+00', 1306, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6482, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.473079+00', 1317, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(6483, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.726098+00', 1055, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(6484, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.740144+00', 1076, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 2, NULL), +(6485, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.631719+00', 1187, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6486, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.631719+00', 1210, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(6487, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.737403+00', 119, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6488, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.741803+00', 142, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6489, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.730018+00', 162, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6490, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.77532+00', 125, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6491, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.75721+00', 150, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6492, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.794338+00', 127, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6493, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.697583+00', 225, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6494, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.788756+00', 83, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6495, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.815268+00', 157, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6496, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.85848+00', 138, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6497, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.816793+00', 192, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6498, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.741289+00', 277, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6499, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.931599+00', 137, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6500, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.850003+00', 226, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6501, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:25.919911+00', 129, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(6502, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.009147+00', 150, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6503, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.009147+00', 154, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(6504, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.080578+00', 154, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(6505, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.131404+00', 126, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6506, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.009574+00', 276, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(6507, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.00784+00', 281, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6508, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.00784+00', 293, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(6509, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.003052+00', 291, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(6510, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.015976+00', 287, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6511, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.136819+00', 291, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6512, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.170637+00', 274, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6513, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.295016+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6514, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.316844+00', 205, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6515, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.328095+00', 222, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6516, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.345601+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6517, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.174773+00', 171, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6518, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.201585+00', 212, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6519, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.291733+00', 211, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6520, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.260161+00', 281, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6521, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.285016+00', 271, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6522, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.29113+00', 311, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6523, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.323599+00', 323, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6524, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.730313+00', 159, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6525, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.739588+00', 194, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6526, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.731011+00', 224, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6527, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.833602+00', 141, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6528, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.832111+00', 162, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6529, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.895672+00', 103, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6530, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.871611+00', 134, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6531, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.098127+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6532, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.168836+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6533, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.092802+00', 160, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6534, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.151384+00', 118, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6535, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.108626+00', 191, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6536, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.202048+00', 102, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6537, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.20376+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6538, X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.819454+00', 39, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(6539, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.159048+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6540, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.182997+00', 51, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6541, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.172278+00', 71, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6542, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.186554+00', 69, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6543, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.198056+00', 74, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6544, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.216616+00', 68, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6545, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.183917+00', 105, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6546, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.98939+00', 79, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6547, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.954851+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6548, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.005875+00', 90, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6549, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.029488+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6550, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.012558+00', 191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6551, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.076246+00', 160, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6552, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.104966+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6553, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.000836+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6554, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.186114+00', 165, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6555, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.530036+00', 90, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6556, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.536475+00', 99, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6557, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.544615+00', 118, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6558, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.565634+00', 94, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6559, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.644536+00', 53, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6560, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.626061+00', 68, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6561, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.659523+00', 42, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6562, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:32.268492+00', 42, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(6563, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.210797+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6564, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.314551+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6565, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.372649+00', 277, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6566, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.374536+00', 310, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6567, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.420439+00', 283, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6568, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.367298+00', 379, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6569, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.571219+00', 191, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6570, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.561459+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.606027+00', 188, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6572, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.618607+00', 213, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6573, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.673876+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6574, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.773858+00', 75, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6575, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.673615+00', 175, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6576, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.696014+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6577, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.168771+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6578, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.070003+00', 191, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6579, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.176835+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6580, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.190252+00', 153, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6581, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.18633+00', 170, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6582, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.200899+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6583, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.163059+00', 219, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6584, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.144928+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6585, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.200177+00', 191, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6586, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.181631+00', 77, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6587, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.260822+00', 54, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6588, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.227977+00', 108, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6589, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.287351+00', 94, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6590, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.230671+00', 164, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6591, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.252418+00', 160, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6592, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.226379+00', 250, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6593, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.663023+00', 76, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6594, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.67897+00', 96, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6595, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.721255+00', 88, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6596, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.711905+00', 112, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6597, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.681501+00', 166, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6598, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.750618+00', 114, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6599, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.79677+00', 91, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6600, X'6a036c6cadc087e7cd13665f96f0f1ad6c13a1fb95d7a638a7c765439b1ae806', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:07.126049+00', 65, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(6601, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.114681+00', 108, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6602, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.158515+00', 61, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6603, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.1668+00', 90, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6604, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.131679+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6605, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.153169+00', 160, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6606, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.171833+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6607, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.225871+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6608, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.237753+00', 431, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6609, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.277289+00', 408, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6610, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.238059+00', 462, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6611, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.266292+00', 499, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6612, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.680563+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6613, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.667533+00', 283, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6614, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.456581+00', 494, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6615, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.541481+00', 429, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6616, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.458918+00', 525, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6617, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:22.9827+00', 239, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6618, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.027863+00', 268, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6619, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.191269+00', 111, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6620, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.083981+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6621, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.076754+00', 239, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6622, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.185504+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6623, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.161116+00', 233, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6624, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.131904+00', 103, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6625, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.160588+00', 104, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6626, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.158158+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6627, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.236784+00', 98, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6628, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.155746+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6629, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.212625+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6630, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.204338+00', 163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6631, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.555613+00', 138, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6632, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.585701+00', 161, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6633, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.626492+00', 133, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6634, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.630364+00', 151, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6635, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.624673+00', 161, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6636, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.658203+00', 178, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6637, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.644017+00', 207, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6638, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.278574+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6639, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.284592+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6640, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.354564+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6641, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.254603+00', 228, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6642, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.34736+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6643, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.354389+00', 250, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6644, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.333268+00', 310, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6645, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.327229+00', 329, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6646, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.383524+00', 302, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6647, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.392978+00', 192, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6648, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.469107+00', 151, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6649, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.495353+00', 220, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6650, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.523243+00', 203, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6651, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.50915+00', 239, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6652, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.493463+00', 269, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6653, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.508996+00', 258, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6654, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.099854+00', 117, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6655, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.156737+00', 70, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6656, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.160052+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6657, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.142821+00', 245, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6658, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.209667+00', 183, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6659, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.217697+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6660, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.208616+00', 222, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6661, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.135286+00', 54, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6662, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.178283+00', 90, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6663, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.234173+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6664, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.198736+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6665, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.259587+00', 125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6666, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.206553+00', 182, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6667, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.270823+00', 138, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6668, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.344146+00', 277, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6669, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.416011+00', 302, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6670, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.37119+00', 433, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6671, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.38244+00', 433, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6672, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.521518+00', 306, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6673, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.505765+00', 358, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6674, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.426399+00', 446, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6675, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.443351+00', 458, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6676, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.636495+00', 271, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6677, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.755985+00', 51, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6678, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.738182+00', 124, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6679, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.762839+00', 99, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6680, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.754437+00', 110, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6681, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.734294+00', 129, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6682, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.758684+00', 117, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6683, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.744732+00', 157, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6684, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:35.974975+00', 56, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6685, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:35.995119+00', 51, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6686, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:35.98627+00', 100, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6687, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.043059+00', 77, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6688, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.069185+00', 63, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6689, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:35.976049+00', 161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6690, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.010145+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6691, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.098709+00', 309, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6692, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.09622+00', 396, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6693, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.07238+00', 649, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6694, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.098667+00', 632, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6695, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.646217+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6696, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.179717+00', 699, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6697, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.141889+00', 732, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6698, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.690804+00', 240, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6699, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.424079+00', 510, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6700, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.824043+00', 135, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6701, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.159797+00', 820, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6702, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.500265+00', 513, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6703, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.885213+00', 155, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6704, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.824701+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6705, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.787594+00', 266, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6706, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.836039+00', 230, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6707, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.59556+00', 185, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6708, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.600003+00', 256, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6709, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.644683+00', 262, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6710, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.614986+00', 297, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6711, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.810515+00', 129, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6712, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.807643+00', 157, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6713, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.809893+00', 177, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6714, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.142696+00', 104, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6715, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.171601+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6716, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.16924+00', 166, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6717, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.146789+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6718, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.26698+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6719, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.169751+00', 189, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6720, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.187845+00', 200, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6721, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.274382+00', 342, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6722, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.491856+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6723, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.561406+00', 314, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6724, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.524337+00', 350, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6725, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.501633+00', 400, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6726, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.50525+00', 404, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6727, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.359171+00', 571, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6728, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.50067+00', 498, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6729, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.975982+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6730, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:18.88345+00', 97, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6731, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:18.998411+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6732, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:18.927576+00', 158, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6733, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:18.972532+00', 158, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6734, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:18.928509+00', 210, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6735, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:19.055159+00', 96, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6736, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:18.942393+00', 222, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6737, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.525515+00', 69, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6738, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.492682+00', 124, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6739, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.547997+00', 121, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6740, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.547901+00', 123, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6741, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.49978+00', 177, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6742, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.515849+00', 157, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6743, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.591227+00', 101, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6744, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.119083+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6745, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.125227+00', 113, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6746, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.169256+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6747, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.179403+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6748, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.105317+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6749, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.192161+00', 99, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6750, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.104804+00', 195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6751, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.076562+00', 138, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6752, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.121372+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6753, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.153154+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6754, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.257928+00', 87, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6755, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.20194+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6756, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.149307+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6757, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.280692+00', 110, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6758, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.279631+00', 117, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6759, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.275696+00', 171, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6760, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.154797+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6761, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.195631+00', 103, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6762, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.223799+00', 112, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6763, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.169594+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6764, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.265524+00', 118, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6765, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.265217+00', 131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6766, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.269289+00', 145, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6767, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.64526+00', 100, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6768, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.61167+00', 136, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6769, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.669706+00', 118, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6770, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.708684+00', 87, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6771, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.706854+00', 108, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6772, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.649116+00', 172, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6773, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.716853+00', 131, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6774, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.192707+00', 182, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6775, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.210118+00', 261, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6776, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.179674+00', 300, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6777, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.276773+00', 231, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6778, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.454459+00', 215, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6779, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.538079+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6780, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.194095+00', 548, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6781, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.281307+00', 457, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6782, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.376731+00', 464, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6783, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.304264+00', 619, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6784, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.684788+00', 466, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6785, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.691312+00', 494, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6786, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.732697+00', 480, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6787, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.845569+00', 378, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6788, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.786143+00', 470, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6789, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.870044+00', 400, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6790, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:33.912296+00', 115, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6791, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:33.96018+00', 120, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6792, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:33.978167+00', 155, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6793, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:33.915954+00', 248, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6794, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.023184+00', 177, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6795, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.119406+00', 120, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6796, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.025417+00', 286, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6797, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.098112+00', 116, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6798, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.13812+00', 101, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6799, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.170882+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6800, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.128683+00', 188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6801, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.29608+00', 70, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6802, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.292119+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6803, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.278576+00', 121, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6804, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.006443+00', 151, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6805, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.004801+00', 194, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6806, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.06121+00', 164, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6807, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.133013+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(6808, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.046694+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6809, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.128315+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6810, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.246313+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6811, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.132153+00', 216, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6812, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.246543+00', 107, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6813, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.196556+00', 65, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6814, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.222351+00', 207, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6815, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.223559+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6816, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.319695+00', 140, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6817, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.209333+00', 262, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6818, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.197648+00', 277, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6819, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.195035+00', 322, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6820, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.19011+00', 157, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6821, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.19023+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6822, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.162997+00', 315, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6823, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.306424+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6824, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.305396+00', 193, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6825, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.267705+00', 237, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6826, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.315097+00', 197, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6827, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.067286+00', 252, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(6828, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.151247+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(6829, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.090801+00', 398, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(6830, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.160884+00', 391, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6831, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.089332+00', 495, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(6832, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.399085+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(6833, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.20455+00', 488, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(6834, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.438064+00', 310, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(6835, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.244995+00', 512, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(6836, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.846471+00', 103, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6837, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.9091+00', 166, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6838, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.932226+00', 196, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6839, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.974763+00', 182, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6840, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.992778+00', 180, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6841, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.936534+00', 237, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6842, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.99271+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6843, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.64173+00', 64, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(6844, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.617677+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(6845, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.684987+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(6846, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.727436+00', 146, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(6847, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.727541+00', 165, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(6848, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.73728+00', 160, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(6849, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.824535+00', 120, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(6850, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.485002+00', 136, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6851, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.555345+00', 131, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6852, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.453763+00', 225, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6853, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.488056+00', 239, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6854, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.494976+00', 238, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6855, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.472053+00', 294, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6856, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.516722+00', 273, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6857, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.679686+00', 122, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6858, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.714624+00', 234, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6859, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.838965+00', 114, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6860, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.750306+00', 235, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6861, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.7164+00', 269, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6862, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.769477+00', 228, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6863, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.694336+00', 319, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6864, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.749527+00', 68, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6865, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.731214+00', 99, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6866, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.71149+00', 128, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6867, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.726277+00', 125, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6868, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.689541+00', 165, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6869, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.704631+00', 146, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6870, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.729349+00', 135, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6871, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.73573+00', 168, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6872, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.768287+00', 175, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6873, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.761491+00', 189, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6874, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.842697+00', 150, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6875, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.754039+00', 239, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6876, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.874688+00', 151, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6877, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.824047+00', 202, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6878, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:33.98701+00', 129, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6879, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.058398+00', 71, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6880, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.042251+00', 89, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6881, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.050456+00', 87, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6882, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.050352+00', 98, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6883, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.042042+00', 117, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6884, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.044236+00', 118, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6885, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.598037+00', 119, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6886, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.644761+00', 138, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6887, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.581696+00', 182, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6888, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.639033+00', 210, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6889, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.741252+00', 121, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6890, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.613346+00', 273, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6891, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.655289+00', 261, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6892, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.676597+00', 73, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6893, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.723419+00', 61, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6894, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.729134+00', 69, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6895, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.700996+00', 96, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6896, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.697485+00', 114, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6897, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.738987+00', 75, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6898, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.758422+00', 74, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6899, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.548365+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6900, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.557305+00', 83, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6901, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.531575+00', 131, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6902, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.557091+00', 109, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6903, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.566142+00', 106, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6904, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.570199+00', 106, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6905, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.564613+00', 117, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6906, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:57.977524+00', 332, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(6907, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.088807+00', 242, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(6908, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:57.96657+00', 419, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(6909, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.074873+00', 336, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(6910, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.200399+00', 211, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6911, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.018994+00', 402, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(6912, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.004927+00', 426, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(6913, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.082071+00', 412, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(6914, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.098955+00', 496, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(6915, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.525386+00', 126, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6916, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.569071+00', 99, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6917, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.55625+00', 146, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6918, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.52249+00', 196, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6919, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.563299+00', 174, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6920, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.666575+00', 83, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6921, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.666622+00', 89, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6922, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.61357+00', 91, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6923, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.649755+00', 95, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6924, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.594304+00', 170, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6925, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.682501+00', 91, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6926, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.689278+00', 82, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6927, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.690415+00', 109, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6928, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.61578+00', 191, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6929, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.66418+00', 97, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6930, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.670131+00', 239, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6931, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.744669+00', 213, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6932, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.776964+00', 252, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6933, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.721216+00', 332, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6934, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.890856+00', 206, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6935, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.761544+00', 350, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6936, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.530882+00', 114, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6937, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.528898+00', 126, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6938, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.514691+00', 161, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6939, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.566016+00', 160, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6940, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.514144+00', 230, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6941, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.601494+00', 150, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6942, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.558523+00', 213, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6943, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.617202+00', 78, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6944, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.653427+00', 51, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6945, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.66317+00', 61, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6946, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.634692+00', 99, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6947, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.661998+00', 86, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6948, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.658463+00', 116, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6949, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.651922+00', 163, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6950, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:57.840653+00', 234, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6951, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.01322+00', 156, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(6952, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.107533+00', 164, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(6953, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:57.901022+00', 400, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(6954, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:57.962355+00', 369, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(6955, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.176695+00', 174, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(6956, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.03558+00', 339, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(6957, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:57.990575+00', 436, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(6958, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:57.902182+00', 543, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(6959, X'4454ce644ccc549a4eb58b0de057da56a2e7e25340308025f29b6ee216ae3415', TIMESTAMP WITH TIME ZONE '2022-12-20 11:39:18.044728+00', 180, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(6960, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.092124+00', 74, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6961, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.150172+00', 60, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6962, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.13033+00', 93, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6963, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.094037+00', 142, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6964, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.120319+00', 124, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6965, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.137293+00', 110, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(6966, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.110165+00', 142, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6967, X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:37.151099+00', 70, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(6968, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:30.64794+00', 1318, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(6969, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:31.921647+00', 136, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(6970, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:31.931639+00', 152, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(6971, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:31.971235+00', 108, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6972, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:31.921648+00', 222, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(6973, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:31.971348+00', 177, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(6974, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:32.009492+00', 158, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(6975, X'4454ce644ccc549a4eb58b0de057da56a2e7e25340308025f29b6ee216ae3415', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:44.782365+00', 62, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(6976, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.245653+00', 79, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(6977, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:58.5331+00', 812, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(6978, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.213192+00', 209, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(6979, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.230565+00', 197, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(6980, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.258355+00', 203, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(6981, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.252458+00', 262, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(6982, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.279093+00', 252, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(6983, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.264799+00', 273, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(6984, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.282195+00', 332, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(6985, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.259196+00', 58, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(6986, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.283156+00', 99, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(6987, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.247431+00', 137, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(6988, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.231931+00', 168, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(6989, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.336083+00', 88, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(6990, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.355108+00', 86, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(6991, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.334583+00', 127, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(6992, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.3752+00', 98, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(6993, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.326552+00', 176, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(6994, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.547095+00', 156, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(6995, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.556252+00', 207, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(6996, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.515768+00', 297, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(6997, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.649614+00', 195, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(6998, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.708461+00', 138, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(6999, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.568283+00', 279, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7000, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.699145+00', 181, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7001, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.544875+00', 388, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7002, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.741446+00', 207, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7003, X'6712656b169d7c5ef5532a582c7b12cca29d2a3eb06987d57c22b9f61189386e', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:07.866563+00', 515, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7004, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:07.924322+00', 536, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7005, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.238926+00', 257, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7006, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.242796+00', 254, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7007, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.360556+00', 223, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7008, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.29468+00', 341, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7009, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.343598+00', 349, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7010, X'f9a01a0a02e921f8cc7326c6d38976eaf2d2ed39991c552b4261d0f347c868f9', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:11.852836+00', 260, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(7011, X'944cea2ec93eb9fb968ef90aab43a3e72a3d7dbeb5925b0e5db6163c8f6cd4cc', TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:40.73342+00', 76, 37, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7012, X'541e7d7318cf427db0265b82c64e688db8ee665b9161f651a6a54c6b25cac1aa', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:25.887975+00', 13, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7013, X'8714939a88599ffcb41b6b0e942d00d769d8bd886398753ae4a55d84ae65cf13', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:31.016484+00', 71, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7014, X'309c47c0b5aa10d6d0a4ccd62a27f4b0eae1c0f62ad446971486e25e322f49a1', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:39.482915+00', 60, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7015, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.521516+00', 99, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7016, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.506262+00', 179, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7017, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.566134+00', 137, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7018, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.570041+00', 151, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7019, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.556957+00', 170, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7020, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.644049+00', 92, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7021, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.555655+00', 175, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7022, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.510137+00', 247, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7023, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.549248+00', 237, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7024, X'91c0cfa89ef90cdab92232355e85ec6f74fae49d2d51dcb7041fe8140a8d2907', TIMESTAMP WITH TIME ZONE '2022-12-20 11:59:04.586048+00', 42, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7025, X'628b778de3890ba8778b9f91a75f4a4262805d80b47784c5b0145f4556ab2c27', TIMESTAMP WITH TIME ZONE '2022-12-20 11:59:19.166158+00', 166, 0, TRUE, 'ad-hoc', 'Command failed with error 40353 (Location40353): ''Invalid $project :: caused by :: FieldPath must not end with a ''.''.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671537558, "i" : 4 } }, "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: FieldPath must not end with a ''.''.", "code" : 40353, "codeName" : "Location40353", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671537558, "i" : 4 } }, "signature" : { "hash" : { "$binary" : "YQQjJt2XGJG/3/BO4npBvGW4pdI=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(7026, X'b0028666e4c48478e079f4a4d26bd9d0ab1ba23309ec23183645ce30f6de1986', TIMESTAMP WITH TIME ZONE '2022-12-20 11:59:34.380455+00', 38, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7027, X'cab60cf045061e875fa8ae1473a3a8d66ecf5ac308397f11ac29432ec5129f73', TIMESTAMP WITH TIME ZONE '2022-12-20 12:00:01.334329+00', 109, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7028, X'6ce7eb57a732425fc1044482adf9f45ac9bea6c206b2631c384998143acfa7f9', TIMESTAMP WITH TIME ZONE '2022-12-20 12:00:24.730171+00', 60, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7029, X'634b13afdddbff9b779c323721d3a3627280beb090f0953c7be55d704a8aae67', TIMESTAMP WITH TIME ZONE '2022-12-20 12:00:48.149472+00', 49, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7030, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:23.856074+00', 423, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(7031, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:23.662386+00', 641, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(7032, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.060672+00', 293, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(7033, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.004905+00', 458, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(7034, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:23.982516+00', 694, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(7035, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.245109+00', 473, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7036, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.174215+00', 561, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(7037, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.26877+00', 479, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7038, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.233158+00', 516, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7039, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.073793+00', 685, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(7040, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.116323+00', 686, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(7041, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.313484+00', 651, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7042, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.348859+00', 622, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7043, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.298424+00', 761, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7044, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.318091+00', 804, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7045, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.424277+00', 816, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7046, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.396383+00', 849, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7047, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.396383+00', 861, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7048, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.276009+00', 1001, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7049, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.239997+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7050, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.33587+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7051, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.241204+00', 296, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7052, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.335315+00', 228, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7053, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.409731+00', 176, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7054, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.462637+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7055, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.337279+00', 293, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7056, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.35993+00', 294, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7057, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.467738+00', 207, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7058, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.351526+00', 318, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7059, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.493814+00', 204, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7060, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.476135+00', 244, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7061, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.590871+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7062, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.613298+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7063, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.54813+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7064, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.607409+00', 147, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7065, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.384333+00', 387, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7066, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.611252+00', 187, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7067, X'077fe4ec0ab19e246aa6ba18532ebafef95784e2ffc04f6e23e21e781fa7df6f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.603463+00', 157, 1, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7068, X'674bc7a1a2a01b95f3e22ecd5b0f698205f499c2cc8fe6d4eacbdda52d078e98', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.705253+00', 147, 2, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7069, X'722710f02f89e0e3d62bdceb4c51041e6dd635ec428546dee2b00201bac6558c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.614884+00', 231, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7070, X'ae0b443f01eaf3618a0f740b37f2efba44d4fa99d9b8957e1566b9abce95342c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.756488+00', 123, 2, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7071, X'54872164ca9dc86666920f8576399c58337184603a030e68c61c1da38e3cec9d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.762393+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7072, X'02c3116c5cbcf641bee14c768444c0ce4d7b077c75ab72f16cccb277fb3cb9fb', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.725471+00', 192, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7073, X'87ccb9211620e8ab6cd36c7c6861dcd876f8d5b08e51783c042dcc4e7ac5f356', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.704142+00', 219, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7074, X'998d111c0c6bc66219bd17d4f6867725bff632ef627d49fb5ffc514bd54418c6', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.707086+00', 228, 2, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7075, X'2c957d73ad79689bc7f74b69195a9a9363a590a4c59c856c9fa70fc9166e6b7e', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.739303+00', 197, 1, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7076, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.284907+00', 55, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7077, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.265272+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7078, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.305896+00', 144, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7079, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.338529+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7080, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.276865+00', 191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7081, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.28973+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7082, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.389645+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7083, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.32309+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7084, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.297946+00', 191, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7085, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:33.882129+00', 175, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7086, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:33.846264+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7087, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:33.985174+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7088, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:33.952204+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7089, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:33.927974+00', 247, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7090, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:33.962+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7091, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:33.960864+00', 238, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7092, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.099354+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7093, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.020312+00', 283, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7094, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.144981+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7095, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.194562+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7096, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.269938+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7097, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.333069+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7098, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.254401+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7099, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.312439+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7100, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.315382+00', 226, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7101, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.242594+00', 306, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7102, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.36171+00', 220, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7103, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.011276+00', 311, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(7104, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.062913+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7105, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.021566+00', 362, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7106, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:55.886752+00', 546, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7107, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.249766+00', 215, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(7108, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.021566+00', 523, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(7109, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.366481+00', 243, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7110, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.628413+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7111, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.387926+00', 490, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(7112, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.349891+00', 625, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(7113, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.663671+00', 467, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(7114, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.586692+00', 637, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7115, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.380325+00', 1001, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7116, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.658684+00', 775, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7117, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.763817+00', 757, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(7118, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.468215+00', 1214, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7119, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.5813+00', 1198, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(7120, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.5813+00', 1197, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7121, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.609209+00', 1315, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7122, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:58.957514+00', 470, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7123, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.31316+00', 225, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7124, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.235331+00', 312, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7125, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.345269+00', 279, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7126, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.213085+00', 445, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7127, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.518126+00', 662, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7128, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:58.978053+00', 1274, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7129, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.507539+00', 950, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7130, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.000652+00', 1596, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7131, X'cf8cd3d12364c04afa517d88a0bbfa6f05f303cc3107f7f4497571007eabf5e5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:21.849863+00', 40, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7132, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.03531+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7133, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.084641+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7134, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.138442+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7135, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.040729+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7136, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.125208+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7137, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.07379+00', 178, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7138, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.088896+00', 194, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7139, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.103355+00', 179, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7140, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.19167+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7141, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.629015+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7142, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.734301+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7143, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.842538+00', 119, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7144, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.732691+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7145, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.732688+00', 258, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7146, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.850909+00', 158, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7147, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.64654+00', 381, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7148, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.656305+00', 372, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7149, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.811402+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7150, X'80543c65db03a8e30a7491dc6ed476d9bbcdb30301064955da4d807ea2d642af', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:34.290984+00', 77, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7151, X'76615f1bb6a5017eb9ca223118eca5c550d66139fede2c95c62995fca3f3124d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:48.17394+00', 14, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(7152, X'e77102f46a77c94abf51f9b1e10178f9869459eea90b8a62371d62a342ee1ab2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:57.522353+00', 96, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7153, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:09.544033+00', 290, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7154, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:09.827707+00', 273, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7155, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:09.70503+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7156, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:09.833001+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7157, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:09.738684+00', 440, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7158, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:09.940406+00', 366, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7159, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.113421+00', 272, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7160, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.172647+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7161, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.205515+00', 297, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7162, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.531249+00', 163, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7163, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.475391+00', 278, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7164, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.513128+00', 304, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7165, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.673355+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7166, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.692052+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7167, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.713125+00', 219, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7168, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.745535+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7169, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.748336+00', 235, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7170, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.759365+00', 268, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7171, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.517217+00', 217, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7172, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.518099+00', 244, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7173, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.643703+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7174, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.703637+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7175, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.661553+00', 282, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7176, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.610207+00', 348, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7177, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.629546+00', 367, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7178, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.632982+00', 412, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7179, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.581164+00', 488, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7180, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.289321+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7181, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.351784+00', 389, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7182, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.371613+00', 436, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7183, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.43764+00', 381, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7184, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.474256+00', 437, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7185, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.456528+00', 473, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7186, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.578648+00', 383, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7187, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.355943+00', 609, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7188, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.318651+00', 684, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7189, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.196831+00', 346, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7190, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.243139+00', 323, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7191, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.397563+00', 238, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7192, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.208877+00', 446, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7193, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.285044+00', 410, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7194, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.255146+00', 513, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7195, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.541387+00', 249, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7196, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.634619+00', 172, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7197, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.350059+00', 496, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7198, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.181411+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7199, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.251711+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7200, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.266873+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7201, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.262556+00', 186, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7202, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.303583+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7203, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.295392+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7204, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.380979+00', 107, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7205, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.348271+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7206, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.23736+00', 295, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7207, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.5055+00', 108, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7208, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.642398+00', 146, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7209, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.667871+00', 190, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7210, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.507175+00', 352, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7211, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.642366+00', 240, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7212, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.606904+00', 311, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7213, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.623402+00', 314, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7214, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.608023+00', 341, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7215, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.645522+00', 475, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7216, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:28.989394+00', 63, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7217, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:28.986758+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7218, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:29.013789+00', 77, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7219, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.820527+00', 44, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7220, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.836457+00', 54, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7221, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.808778+00', 98, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7222, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.869617+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7223, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.878427+00', 66, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7224, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.898799+00', 83, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7225, X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:38.487333+00', 70, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7226, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.742211+00', 149, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7227, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.734086+00', 284, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7228, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.698952+00', 324, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7229, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.753325+00', 302, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7230, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.802912+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7231, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.766162+00', 333, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7232, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.835376+00', 296, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7233, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.792691+00', 390, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7234, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.811979+00', 410, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7235, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.383919+00', 91, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7236, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.346268+00', 129, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7237, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.377714+00', 126, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7238, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.335608+00', 194, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7239, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.388782+00', 159, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7240, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.428125+00', 128, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7241, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.338716+00', 222, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7242, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.729422+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7243, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.752713+00', 328, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7244, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.689888+00', 422, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7245, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.779256+00', 337, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7246, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.707827+00', 413, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(7247, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.816092+00', 320, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7248, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.723391+00', 425, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7249, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.723391+00', 431, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(7250, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:48.556087+00', 58, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7251, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:48.567736+00', 84, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7252, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:48.573358+00', 158, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7253, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.005703+00', 49, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7254, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.013538+00', 64, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7255, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.026788+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7256, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.008743+00', 84, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7257, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.289075+00', 288, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7258, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.286322+00', 400, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7259, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.340969+00', 442, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7260, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.486755+00', 377, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7261, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.482849+00', 480, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7262, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.420407+00', 555, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7263, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.661208+00', 381, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7264, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.39486+00', 655, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7265, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.57494+00', 512, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7266, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.739831+00', 111, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7267, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.726932+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7268, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.768025+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7269, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.766454+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7270, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.801244+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7271, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.799512+00', 200, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7272, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.974264+00', 76, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7273, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.88751+00', 186, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7274, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.043965+00', 64, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7275, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.034482+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7276, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.130583+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7277, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.178127+00', 137, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7278, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.2165+00', 145, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7279, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.2324+00', 137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7280, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.322739+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7281, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.314951+00', 110, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7282, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.327793+00', 137, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7283, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.413711+00', 52, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7284, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.378893+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7285, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.510237+00', 40, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7286, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.491813+00', 71, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7287, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.563341+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7288, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.634422+00', 178, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7289, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.634422+00', 179, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(7290, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.572491+00', 259, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(7291, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.614657+00', 251, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7292, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.614657+00', 254, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(7293, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.798119+00', 202, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(7294, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.702092+00', 391, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(7295, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.946876+00', 246, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7296, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.982348+00', 249, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7297, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.883429+00', 384, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7298, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.957421+00', 336, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7299, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.010065+00', 315, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7300, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.208166+00', 208, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7301, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.221598+00', 361, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7302, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.517438+00', 402, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7303, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.586195+00', 413, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7304, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.610357+00', 458, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7305, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.570362+00', 681, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7306, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.521736+00', 728, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7307, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.928544+00', 340, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7308, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.797859+00', 534, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7309, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.23722+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7310, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.241942+00', 103, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7311, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.233652+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7312, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.218664+00', 176, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7313, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.225507+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7314, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.318984+00', 93, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7315, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.325364+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7316, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.666376+00', 263, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7317, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.694753+00', 283, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7318, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.686219+00', 310, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7319, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.687104+00', 311, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7320, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.70175+00', 309, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7321, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.720627+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7322, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.915979+00', 237, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7323, X'd00099f4797e3abcd65a77af7d33d77f9cdaffd07b07ec80ee97876c7e0f81c2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:11.994291+00', 93, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7324, X'fa83c3a5b1570207584c7969692d04fdccaf02821e3dd9b6e79414be2496c339', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:18.555573+00', 83, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7325, X'd00099f4797e3abcd65a77af7d33d77f9cdaffd07b07ec80ee97876c7e0f81c2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:26.120113+00', 75, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7326, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.554162+00', 69, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7327, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.531634+00', 166, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7328, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.594519+00', 99, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7329, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.607582+00', 121, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7330, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.633076+00', 131, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7331, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.64642+00', 171, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7332, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.529777+00', 319, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7333, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.60039+00', 279, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7334, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.622278+00', 319, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7335, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:18.927077+00', 62, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7336, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:18.918441+00', 98, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7337, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.034209+00', 48, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7338, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.036613+00', 98, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7339, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.056214+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7340, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.052568+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7341, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:22.502597+00', 76, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7342, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.436664+00', 43, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7343, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.438602+00', 43, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7344, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.436715+00', 53, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7345, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.660561+00', 43, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7346, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.620435+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7347, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.634104+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7348, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.660558+00', 94, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7349, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:35.88007+00', 65, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7350, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:35.869109+00', 94, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7351, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:35.883306+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7352, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.386386+00', 70, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7353, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.410086+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7354, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.384303+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7355, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.39147+00', 110, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7356, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.781055+00', 101, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(7357, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.7399+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7358, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.7399+00', 233, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(7359, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.78392+00', 199, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(7360, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.77658+00', 285, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(7361, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.819658+00', 248, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7362, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.819658+00', 253, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(7363, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.963286+00', 188, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7364, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.836151+00', 318, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(7365, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.820248+00', 399, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(7366, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.144233+00', 100, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7367, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.043048+00', 286, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7368, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.080781+00', 281, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7369, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.138393+00', 269, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7370, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.159125+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7371, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.120059+00', 300, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7372, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:23.908458+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7373, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:23.937552+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7374, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:23.934136+00', 183, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7375, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:23.964312+00', 199, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7376, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:23.97277+00', 221, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7377, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:23.944114+00', 300, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7378, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.085963+00', 174, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7379, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.758017+00', 80, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7380, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.829608+00', 66, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7381, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.74565+00', 150, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7382, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.811139+00', 117, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7383, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.73619+00', 197, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7384, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.867956+00', 69, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7385, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.814444+00', 130, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7386, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.910037+00', 74, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7387, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.912659+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7388, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.936497+00', 127, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7389, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.925516+00', 157, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7390, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.982861+00', 105, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7391, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.899255+00', 188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7392, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.997242+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7393, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:23.969306+00', 74, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7394, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.012395+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7395, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.008608+00', 82, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7396, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.000078+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7397, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.033458+00', 70, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7398, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.027316+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7399, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.07388+00', 61, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7400, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.555821+00', 53, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7401, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.515557+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7402, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.51436+00', 134, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7403, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.505232+00', 183, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7404, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.604045+00', 86, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7405, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.56863+00', 138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7406, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.579071+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7407, X'f20ab02bd639ace3fae124ac247a444ff692604646705e9a1b383529f185d28d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:22.568945+00', 51, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(7408, X'22eb1bbf86a777bcaa7a5fb75a9907a0675481f7af03d7c126efeb76814dc4d3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.041438+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7409, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.081719+00', 63, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7410, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.072479+00', 75, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7411, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.068318+00', 87, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7412, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.080833+00', 81, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7413, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.076683+00', 89, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7414, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.05606+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7415, X'2ff0659b5c627b5dac8181b71eff98488c886c4b900f915fff7385b8fa399922', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:32.212766+00', 39, 1, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(7416, X'fb666afcaf2e3aef2992149f390936cd7f4892a68d66ff64adffc32e9bcb2d35', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:45.111627+00', 36, 1, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(7417, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.474141+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7418, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.504572+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7419, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.510164+00', 129, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7420, X'14411a571e578c346413c58ac378ad81bff818cd5c6cb06d53e991a95c132a05', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.574668+00', 93, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7421, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.53318+00', 162, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7422, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.575773+00', 130, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7423, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.558837+00', 154, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7424, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.782046+00', 159, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7425, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.857613+00', 127, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7426, X'14411a571e578c346413c58ac378ad81bff818cd5c6cb06d53e991a95c132a05', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.806597+00', 227, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7427, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.832112+00', 212, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7428, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.855826+00', 253, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7429, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:56.004508+00', 147, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7430, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.850116+00', 336, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7431, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.332294+00', 185, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7432, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.449535+00', 93, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7433, X'58a2b8748f979f1b1be778e45cd9cd3f0827a0ef738312e4bc861e273319fd47', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.423778+00', 121, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7434, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.363898+00', 211, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7435, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.434514+00', 133, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7436, X'2d534d0a8185ddb124a263413bb81cce213fd377aa772fdc4a705b0ab1e8450a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.442083+00', 227, 1, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7437, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.434803+00', 257, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7438, X'fbe47dfc9bf7c6cbe7d78eac23078f7b95499d5e053b0dc91f2892385455cd54', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:16.190268+00', 56, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7439, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.602961+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7440, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.659792+00', 122, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7441, X'14411a571e578c346413c58ac378ad81bff818cd5c6cb06d53e991a95c132a05', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.687339+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7442, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.678051+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7443, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.690205+00', 183, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7444, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.713349+00', 169, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7445, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.715262+00', 189, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7446, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.012836+00', 130, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7447, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.020328+00', 132, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7448, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:31.970189+00', 184, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7449, X'58a2b8748f979f1b1be778e45cd9cd3f0827a0ef738312e4bc861e273319fd47', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:31.975699+00', 188, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7450, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.004833+00', 171, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7451, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.080387+00', 114, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7452, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:31.968688+00', 237, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7453, X'94a2df9d8b4553c24e21372a76188fac1b7e52435d1cf03cc7c3772729274db9', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.406758+00', 50, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7454, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.39904+00', 84, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7455, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.413238+00', 77, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7456, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.426609+00', 72, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7457, X'58a2b8748f979f1b1be778e45cd9cd3f0827a0ef738312e4bc861e273319fd47', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.41504+00', 85, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7458, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.441396+00', 66, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7459, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.426981+00', 89, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7460, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.30388+00', 172, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7461, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.278152+00', 199, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7462, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.332552+00', 169, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7463, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.319796+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7464, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.348699+00', 167, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7465, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.308076+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7466, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.319796+00', 232, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7467, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.328108+00', 111, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7468, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.305598+00', 155, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7469, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.306417+00', 198, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7470, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.413227+00', 131, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7471, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.330769+00', 239, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7472, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.283012+00', 308, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7473, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.449646+00', 153, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7474, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.347038+00', 303, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7475, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.355464+00', 354, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7476, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.350673+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7477, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.368415+00', 158, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7478, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.436282+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7479, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.450588+00', 188, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7480, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.338145+00', 329, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7481, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.418067+00', 257, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7482, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.47799+00', 244, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7483, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.367095+00', 103, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7484, X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.473262+00', 64, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7485, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.442207+00', 138, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7486, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.437549+00', 163, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7487, X'391a440f45ea434c2d21c16ce3ad24c9423a1f264df96de6748d5722e50a7338', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.442356+00', 160, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7488, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.484734+00', 131, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7489, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.397877+00', 219, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7490, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.23425+00', 76, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7491, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.240166+00', 83, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7492, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.261773+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7493, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.271955+00', 81, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7494, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.288939+00', 76, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7495, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.276626+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7496, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.297615+00', 90, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7497, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.416441+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7498, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.452019+00', 144, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7499, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.446773+00', 147, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7500, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.458864+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7501, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.474311+00', 154, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7502, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.525204+00', 123, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7503, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.537268+00', 120, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7504, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.732308+00', 70, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7505, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.758835+00', 176, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7506, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.786522+00', 149, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7507, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.77361+00', 178, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7508, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.757272+00', 190, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7509, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.789389+00', 155, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7510, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.791399+00', 180, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7511, X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:34.4158+00', 77, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(7512, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.26193+00', 83, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7513, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.329575+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7514, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.260192+00', 194, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7515, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.323607+00', 131, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7516, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.307275+00', 150, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7517, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.255737+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7518, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.378272+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7519, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.554904+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7520, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.575978+00', 268, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7521, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.660937+00', 201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7522, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.551314+00', 331, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7523, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.690321+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7524, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.572582+00', 372, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7525, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.577219+00', 376, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7526, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:33.842323+00', 75, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(7527, X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.183422+00', 70, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7528, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.216538+00', 136, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7529, X'391a440f45ea434c2d21c16ce3ad24c9423a1f264df96de6748d5722e50a7338', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.168245+00', 203, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7530, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.194678+00', 246, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7531, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.257402+00', 177, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7532, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.255173+00', 234, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7533, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.195864+00', 340, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7534, X'3993edd2261f43b9fa718c85cd512c9ece0ed13fd7781ac87094993140945c7f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:14.425252+00', 72, 0, TRUE, 'ad-hoc', 'Command failed with error 40323 (Location40323): ''A pipeline stage specification object must contain exactly one field.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671539290, "i" : 1 } }, "ok" : 0.0, "errmsg" : "A pipeline stage specification object must contain exactly one field.", "code" : 40323, "codeName" : "Location40323", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671539290, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "xP/NuN0b/0P6lDOygj34CiO5S5s=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(7535, X'6b9ac0f645f67552a43bcfaf235f5109c0469ec7969a6a6640d597ea29234c6c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:19.642607+00', 42, 0, TRUE, 'ad-hoc', 'Command failed with error 40323 (Location40323): ''A pipeline stage specification object must contain exactly one field.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671539298, "i" : 4 } }, "ok" : 0.0, "errmsg" : "A pipeline stage specification object must contain exactly one field.", "code" : 40323, "codeName" : "Location40323", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671539298, "i" : 4 } }, "signature" : { "hash" : { "$binary" : "bTEGJylSjhPAn81nThjuvWQor/0=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(7536, X'adff00d0ec8a0ea0eb12252800018da2befc8fa47b1d767bc646042534f93ea3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:30.822763+00', 49, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7537, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.364093+00', 219, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7538, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.394641+00', 192, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7539, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.386742+00', 247, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7540, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.392589+00', 379, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7541, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.598293+00', 186, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7542, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.606219+00', 232, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7543, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.574896+00', 262, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7544, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.604009+00', 370, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7545, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.578361+00', 549, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7546, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:29:03.631307+00', 33, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(7547, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:29:12.070934+00', 35, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(7548, X'354b8da5367568157709ce7f16b2127b762bcf6170a4e223a1d082faccf6bec8', TIMESTAMP WITH TIME ZONE '2022-12-20 12:31:33.816698+00', 57, 0, TRUE, 'ad-hoc', 'Command failed with error 31254 (Location31254): ''Invalid $project :: caused by :: Cannot do exclusion on field total in inclusion projection'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671539482, "i" : 14 } }, "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: Cannot do exclusion on field total in inclusion projection", "code" : 31254, "codeName" : "Location31254", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671539482, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "eMK867qi07TMB64GBZxAcNRna3o=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(7549, X'0052a02c4636d23c887439311d9831ca7ae3a67b8a86a14bac40cfcb9d4bde91', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:26.846698+00', 61, 0, TRUE, 'ad-hoc', 'Command failed with error 31254 (Location31254): ''Invalid $project :: caused by :: Cannot do exclusion on field total in inclusion projection'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671539542, "i" : 14 } }, "ok" : 0.0, "errmsg" : "Invalid $project :: caused by :: Cannot do exclusion on field total in inclusion projection", "code" : 31254, "codeName" : "Location31254", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671539542, "i" : 14 } }, "signature" : { "hash" : { "$binary" : "WYuX48QVS6SpMeK5jEwGF+xg2p0=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(7550, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:33.105987+00', 51, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(7551, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.418057+00', 103, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7552, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.468731+00', 87, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7553, X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.534314+00', 62, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7554, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.418886+00', 184, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7555, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.532734+00', 97, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7556, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.519004+00', 119, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7557, X'391a440f45ea434c2d21c16ce3ad24c9423a1f264df96de6748d5722e50a7338', TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.525634+00', 115, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7558, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.747629+00', 87, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7559, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.840417+00', 81, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7560, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.706417+00', 242, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7561, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.833411+00', 143, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7562, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.808355+00', 211, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7563, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.83991+00', 187, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7564, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.847637+00', 171, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7565, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.823574+00', 265, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7566, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.767962+00', 447, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7567, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.552863+00', 185, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7568, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.649686+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7569, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.658941+00', 233, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7570, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.702246+00', 224, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7571, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.687792+00', 240, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7572, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.687477+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7573, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.744799+00', 247, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7574, X'ee933a590ce2832995f9ac3b9466e89bbd85e72e1a6cd58ccc816cb91af6cfbf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:28.149888+00', 51, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7575, X'158f6e68ff8a23981400cf27e9a42513da425e7c10d486b8dacb8760710f75f5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:38.743256+00', 95, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7576, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.009679+00', 129, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7577, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.047842+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7578, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.022807+00', 172, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7579, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.029523+00', 207, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7580, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.102553+00', 151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7581, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.187036+00', 77, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7582, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.091538+00', 184, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7583, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:47.826262+00', 52, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(7584, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.576584+00', 130, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7585, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.579751+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7586, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.578484+00', 241, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7587, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.617127+00', 209, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7588, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.573689+00', 265, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7589, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.617943+00', 221, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7590, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.602491+00', 271, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7591, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:19.929326+00', 37, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7592, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.303609+00', 169, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7593, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.312278+00', 157, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7594, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.425676+00', 92, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7595, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.425599+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7596, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.344322+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7597, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.426083+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7598, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.369359+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7599, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.801354+00', 130, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7600, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.724036+00', 258, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7601, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.83846+00', 179, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7602, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.558417+00', 482, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7603, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.801287+00', 292, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7604, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.844281+00', 258, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7605, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.79551+00', 315, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7606, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.882288+00', 246, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7607, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.860823+00', 298, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7608, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.458748+00', 135, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7609, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.45692+00', 181, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7610, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.614263+00', 208, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7611, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.668348+00', 187, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7612, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.471045+00', 412, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7613, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.508494+00', 376, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7614, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.634056+00', 251, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7615, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.706357+00', 220, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7616, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.567253+00', 370, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7617, X'0d5bfb9a253b1521dd734b3b1f5ec8958c64c3e209a564de5ced2733acd8a8bd', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.843133+00', 54, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7618, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.803703+00', 101, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7619, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.872437+00', 128, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7620, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.845658+00', 160, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7621, X'f45175101bc287ee822524fc560797c62988700bfefdaa98a60f4989e817f513', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.859104+00', 160, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7622, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.81165+00', 225, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7623, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.910748+00', 153, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7624, X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:06.675174+00', 70, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(7625, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:32.917265+00', 57, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(7626, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:44.881891+00', 35, 1, FALSE, 'question', NULL, 1, 16, NULL, NULL, 2, FALSE), +(7627, X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.102126+00', 52, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7628, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.129064+00', 45, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7629, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.092478+00', 90, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7630, X'391a440f45ea434c2d21c16ce3ad24c9423a1f264df96de6748d5722e50a7338', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.118709+00', 77, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7631, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.14453+00', 74, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7632, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.164779+00', 55, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7633, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.162075+00', 66, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7634, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:57.051676+00', 34, 1, FALSE, 'question', NULL, 1, 16, NULL, NULL, 2, FALSE), +(7635, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:01.243015+00', 61, 23, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(7636, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:03.194376+00', 47, 1, FALSE, 'question', NULL, 1, 16, NULL, NULL, 2, FALSE), +(7637, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.14859+00', 192, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7638, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.176562+00', 178, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7639, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.146244+00', 227, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7640, X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.199209+00', 168, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7641, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.342851+00', 61, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7642, X'391a440f45ea434c2d21c16ce3ad24c9423a1f264df96de6748d5722e50a7338', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.177684+00', 228, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7643, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.178916+00', 285, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7644, X'896e62a7f8f222891e099933da0344d1e3aaf70c31c74c4b13192a0e20531f74', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:10.666235+00', 64, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(7645, X'ae0af8d7b4e02148cbf6b5825d36aa19145053c50f31409f1c2c23b09370832f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:34.657433+00', 58, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(7646, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.104665+00', 64, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7647, X'391a440f45ea434c2d21c16ce3ad24c9423a1f264df96de6748d5722e50a7338', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.115799+00', 83, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7648, X'6ca4a617426eaa855399e1051da20538a07802d1dcc6eefbbc15b683e5bd1cec', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.132141+00', 73, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7649, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.135261+00', 81, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7650, X'ae0af8d7b4e02148cbf6b5825d36aa19145053c50f31409f1c2c23b09370832f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.138125+00', 85, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7651, X'6c6d7021668c987ce4deeae8596b18a10e999cde36f393dcfff5e442ebfddfb5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.146062+00', 77, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7652, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.13967+00', 91, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7653, X'8e25cd1e0c2ce6c251845279412ec6806723c50944ee1c56751f06ead9cdaba3', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:42.82206+00', 50, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7654, X'1196c28cc6bcd5084be9c64c45e8b76f2802993dc1eeeadcc13f07c218c0b08c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:58.385967+00', 33, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(7655, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.065584+00', 193, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7656, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.143045+00', 160, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7657, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.095515+00', 211, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7658, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.141019+00', 179, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7659, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.180535+00', 172, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7660, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.150055+00', 256, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7661, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.206093+00', 222, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7662, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.009062+00', 72, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7663, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.007447+00', 72, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7664, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.000101+00', 97, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7665, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.025588+00', 80, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7666, X'87410c7851ad3cb271dab2ce745905aef80d0a74ed7796e97e1d2c7708c1cb3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:06.995361+00', 110, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7667, X'edbb30a9eb8702b76248d882e4ed8d230adc68ebb27bcada45f9e9000414186d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.034123+00', 85, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7668, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.023249+00', 107, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7669, X'3ca9046e2784858cdd3b820259517633f64d9f281afd3fb966c2db471aaccf7b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.125984+00', 89, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7670, X'52d3a07fcf86991f2f21277105039a0c3a4ba3e4b676e8022bd19eef5e5597fc', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.091369+00', 142, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7671, X'20451f977de34041e8d9bd3427723e0552e7ee2265a16d638b29c471f632b714', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.182764+00', 94, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7672, X'e7114480d95c27605cee007bee1668723ee7d6c25062c04aff8c6c4e2171590b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.143732+00', 132, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7673, X'a85b36705ad68a238037bd76d34642fae8a7327e50167d1ff306cf877514a214', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.143216+00', 155, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7674, X'5fff72062ccd0333a67e028875c0d7f998e6b48c864085cc5880a7ec8040b79f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.146515+00', 167, 0, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7675, X'aaced19bd730369a0b6ca4e0357e70277d4a1e7aae536302e25f3bdb09670602', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.161686+00', 167, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7676, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.883823+00', 86, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7677, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.836427+00', 187, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7678, X'87410c7851ad3cb271dab2ce745905aef80d0a74ed7796e97e1d2c7708c1cb3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.959312+00', 80, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7679, X'edbb30a9eb8702b76248d882e4ed8d230adc68ebb27bcada45f9e9000414186d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.962113+00', 144, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7680, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.901756+00', 224, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7681, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.888212+00', 243, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7682, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.990009+00', 173, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7683, X'c0f4acf0e2e25d3b561331d909b966a2f089f3f870419554cd22de2ab671d9c7', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.476307+00', 92, 2, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7684, X'cf8b406797575a5b504c12280ed50661aa6d474fcb81e95eb15254a075522948', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.387937+00', 156, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7685, X'd52a2028872c323993caf7fb769729d2303fe61fd0af4676a3a085808fde321f', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.45562+00', 223, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7686, X'66cf824950f5d152c5b486002c91a28f485d92a6e64d657abb9634102cbb4288', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.432493+00', 259, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7687, X'c1517b8af3d77ec1b328517e9a8972abef5950b1be669636d77fd063b2d37ea4', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.430069+00', 284, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7688, X'45a7539b6fd7e9b0f126d3418156c36035b122e9eb2442754dc6a4e0dfbd3527', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.499931+00', 204, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7689, X'e700db1f9f312efd042a7b0e7cb4fc95e681c96e2ee89d56ba22c98e9d7dea0e', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.457596+00', 281, 1, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7690, X'35c53ce5ce49865cfaa585a0ab472f13361d04e4650af8f03ddc0203aada5640', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.075245+00', 63, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7691, X'edbb30a9eb8702b76248d882e4ed8d230adc68ebb27bcada45f9e9000414186d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.173599+00', 49, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7692, X'87410c7851ad3cb271dab2ce745905aef80d0a74ed7796e97e1d2c7708c1cb3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.176223+00', 109, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7693, X'b7832938e8c589b290eeade89acd12c2f89842137a955239f468f67d8d1b693b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.122703+00', 164, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7694, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.186323+00', 151, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7695, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.17018+00', 182, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7696, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.188771+00', 183, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7697, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.066388+00', 121, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7698, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.232054+00', 110, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7699, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.106007+00', 242, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7700, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.081104+00', 303, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7701, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.30831+00', 151, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7702, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.156344+00', 395, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7703, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.174174+00', 389, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7704, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.078082+00', 495, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7705, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.165064+00', 474, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7706, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:57.915142+00', 97, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7707, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:57.874701+00', 159, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7708, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:57.924121+00', 124, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7709, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:57.936586+00', 144, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7710, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.022925+00', 69, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7711, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.00899+00', 97, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7712, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.017672+00', 103, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7713, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:57.916541+00', 213, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7714, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.032636+00', 150, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7715, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.562803+00', 237, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7716, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.593679+00', 205, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7717, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.626669+00', 195, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7718, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.566015+00', 269, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7719, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.624646+00', 312, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7720, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.582704+00', 624, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7721, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.722283+00', 502, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7722, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.819623+00', 412, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7723, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.794177+00', 537, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7724, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.321497+00', 279, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7725, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.196744+00', 398, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7726, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.383287+00', 244, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7727, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.38297+00', 360, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7728, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.333472+00', 408, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7729, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.311147+00', 435, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7730, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.428361+00', 403, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7731, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.270261+00', 610, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7732, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.512829+00', 395, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7733, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.58133+00', 102, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7734, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.564809+00', 185, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7735, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.640126+00', 191, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7736, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.632051+00', 239, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7737, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.647469+00', 374, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7738, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.480865+00', 560, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7739, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.66243+00', 408, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7740, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.790189+00', 315, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7741, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.748473+00', 510, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7742, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.699174+00', 91, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7743, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.521013+00', 326, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7744, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.610697+00', 297, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7745, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.551613+00', 363, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7746, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.699907+00', 251, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7747, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.694477+00', 270, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7748, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.642632+00', 373, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7749, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.626894+00', 396, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7750, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.706583+00', 403, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7751, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.575714+00', 153, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7752, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.567163+00', 192, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7753, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.629525+00', 277, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7754, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.661812+00', 282, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7755, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.622938+00', 385, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7756, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.65149+00', 422, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7757, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.747006+00', 352, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7758, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.685484+00', 469, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7759, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.749815+00', 422, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7760, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:59.028018+00', 10153, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketException: mongo1}, caused by {java.net.UnknownHostException: mongo1}}]', 1, 21, 3, NULL, 2, NULL), +(7761, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:58.99138+00', 10232, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 19, 3, NULL, 2, NULL), +(7762, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:59.104777+00', 10256, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 18, 3, NULL, 2, NULL), +(7763, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:59.106447+00', 10272, 0, FALSE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketException: mongo1}, caused by {java.net.UnknownHostException: mongo1}}]', 1, 29, 3, NULL, 2, NULL), +(7764, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:59.297405+00', 10254, 0, TRUE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketException: mongo1}, caused by {java.net.UnknownHostException: mongo1}}]', 1, 20, 3, NULL, 2, NULL), +(7765, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:59.057999+00', 10484, 0, FALSE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 30, 3, NULL, 2, NULL), +(7766, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:58.957369+00', 10597, 0, FALSE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 27, 3, NULL, 2, NULL), +(7767, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:59.105764+00', 10582, 0, FALSE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketException: mongo1}, caused by {java.net.UnknownHostException: mongo1}}]', 1, 28, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7768, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:58.917028+00', 11189, 0, FALSE, 'dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING, exception={com.mongodb.MongoSocketOpenException: Exception opening socket}, caused by {java.net.ConnectException: Connection refused (Connection refused)}}]', 1, 26, 3, NULL, 2, NULL), +(7769, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:40.675209+00', 730, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7770, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.262026+00', 339, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(7771, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:40.832479+00', 794, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(7772, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.266068+00', 465, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(7773, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:40.86066+00', 966, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(7774, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.02032+00', 194, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7775, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.610586+00', 597, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(7776, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.458199+00', 755, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(7777, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.024703+00', 244, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(7778, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.122173+00', 1202, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7779, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.460725+00', 957, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7780, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:40.642433+00', 1712, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(7781, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.122173+00', 1248, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(7782, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.25928+00', 1165, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7783, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.25928+00', 1174, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(7784, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.09964+00', 1337, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7785, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.460725+00', 977, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(7786, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.09964+00', 1338, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(7787, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.65029+00', 906, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7788, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.671675+00', 890, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7789, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.671675+00', 918, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(7790, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.677407+00', 1716, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7791, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.677407+00', 1764, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(7792, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.026069+00', 1451, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7793, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.064202+00', 1484, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7794, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.766225+00', 1772, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7795, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.034838+00', 1563, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7796, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.59723+00', 2040, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7797, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.04647+00', 1633, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7798, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.693669+00', 2032, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7799, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.693669+00', 2069, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(7800, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.027822+00', 2771, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7801, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.042067+00', 1763, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7802, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.033691+00', 1846, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7803, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.033691+00', 1847, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7804, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.045339+00', 1991, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7805, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.043909+00', 2010, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7806, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.018608+00', 2385, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7807, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.039821+00', 2388, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7808, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.018249+00', 2738, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7809, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.216356+00', 660, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(7810, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.222828+00', 1005, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7811, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.222828+00', 1019, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 2, NULL), +(7812, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:55.995734+00', 1256, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7813, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.411004+00', 955, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7814, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.322052+00', 1452, 0, TRUE, 'public-dashboard', 'Closed', 1, 11, 2, NULL, 2, NULL), +(7815, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.846574+00', 914, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7816, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.322052+00', 1451, 0, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7817, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.679392+00', 1565, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7818, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.061994+00', 1681, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7819, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.061994+00', 1711, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 2, NULL), +(7820, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.060028+00', 1890, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7821, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.136874+00', 2878, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7822, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.679392+00', 1719, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(7823, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.059511+00', 1281, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7824, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.439355+00', 1946, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7825, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.332159+00', 2825, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7826, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.332159+00', 2851, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL), +(7827, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.296301+00', 2792, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 2, NULL), +(7828, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:56.296301+00', 2775, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7829, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.675347+00', 732, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(7830, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.957718+00', 921, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(7831, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.419366+00', 1687, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 18, 3, NULL, 2, NULL), +(7832, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.834905+00', 1125, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7833, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.373805+00', 1229, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7834, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.373805+00', 1285, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(7835, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.075524+00', 2880, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7836, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.075524+00', 2945, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(7837, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.530063+00', 1521, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7838, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.276386+00', 2818, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7839, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.004895+00', 2389, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 27, 3, NULL, 2, NULL), +(7840, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.778832+00', 1790, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 20, 3, NULL, 2, NULL), +(7841, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.56717+00', 2042, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7842, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.825349+00', 2838, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7843, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.804261+00', 2906, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7844, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.000093+00', 3063, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7845, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.056758+00', 3087, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7846, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.056758+00', 3277, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(7847, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.325527+00', 1151, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7848, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.230649+00', 1866, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7849, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.325547+00', 2007, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7850, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.292069+00', 3331, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7851, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.476855+00', 2284, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7852, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.36553+00', 2435, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7853, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.71813+00', 2233, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7854, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:02.149789+00', 1801, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7855, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.890713+00', 2663, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7856, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.052452+00', 5582, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 26, 3, NULL, 2, NULL), +(7857, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.274395+00', 5844, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7858, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.427731+00', 3725, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7859, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.645435+00', 66, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7860, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.676736+00', 89, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7861, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.643089+00', 138, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7862, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.667021+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7863, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.669627+00', 153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7864, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.748418+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7865, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.667028+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7866, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.681525+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7867, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.793164+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7868, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.767336+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7869, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.809993+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7870, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.862684+00', 133, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7871, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.8577+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7872, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.840452+00', 170, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7873, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.836761+00', 189, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7874, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.900842+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7875, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.068468+00', 268, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7876, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.034475+00', 350, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7877, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.167388+00', 235, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7878, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.163738+00', 292, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7879, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.208227+00', 259, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7880, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.122715+00', 416, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7881, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.118857+00', 411, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7882, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.183682+00', 367, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7883, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.310998+00', 272, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7884, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.858174+00', 60, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7885, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.923459+00', 173, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7886, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.894462+00', 218, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7887, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.859397+00', 290, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7888, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.877287+00', 283, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7889, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.981768+00', 219, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7890, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.947849+00', 282, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7891, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:39.826231+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7892, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:39.854541+00', 389, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7893, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:39.942223+00', 516, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7894, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.129047+00', 399, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7895, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.162257+00', 409, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7896, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.320859+00', 304, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7897, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.302012+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7898, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.293084+00', 434, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7899, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.314453+00', 555, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7900, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.244148+00', 625, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7901, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.240161+00', 707, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7902, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.194791+00', 759, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7903, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:39.959467+00', 1008, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7904, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:39.925682+00', 1047, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7905, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.16732+00', 815, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7906, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.08225+00', 917, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7907, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:56.72655+00', 371, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(7908, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:56.794944+00', 441, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7909, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:56.808097+00', 503, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7910, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.176417+00', 200, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7911, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:56.870663+00', 556, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7912, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.166061+00', 303, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7913, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:56.875967+00', 615, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7914, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.03059+00', 478, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7915, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.073768+00', 490, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7916, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.561562+00', 111, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7917, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.634065+00', 154, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7918, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.594936+00', 206, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7919, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.649514+00', 154, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7920, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.678935+00', 147, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7921, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.649514+00', 185, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7922, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.625806+00', 232, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7923, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.832656+00', 120, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7924, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.77653+00', 181, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7925, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.7817+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7926, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.818186+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7927, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.764116+00', 354, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7928, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.874903+00', 265, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7929, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.941374+00', 199, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7930, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.958401+00', 205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7931, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.856725+00', 338, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7932, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.867434+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7933, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.844774+00', 414, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7934, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.834667+00', 447, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7935, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.802803+00', 501, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7936, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.995848+00', 301, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7937, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.888795+00', 419, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7938, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.964692+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7939, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.552431+00', 350, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(7940, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.774849+00', 327, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(7941, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.834572+00', 276, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(7942, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.887701+00', 368, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7943, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.843099+00', 435, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(7944, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.774882+00', 510, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(7945, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.789412+00', 571, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(7946, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.770982+00', 634, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(7947, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.698977+00', 738, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(7948, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.858112+00', 568, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(7949, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.922782+00', 526, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7950, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.281281+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7951, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.956486+00', 664, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(7952, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.149636+00', 504, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7953, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.953126+00', 871, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7954, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.964027+00', 864, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7955, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.964027+00', 865, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(7956, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.953126+00', 882, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(7957, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.95833+00', 873, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(7958, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.096186+00', 748, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(7959, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.954444+00', 892, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(7960, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.125661+00', 888, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(7961, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.164194+00', 872, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7962, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.189199+00', 899, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7963, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.067492+00', 472, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(7964, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.934702+00', 615, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(7965, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.214594+00', 407, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7966, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.47551+00', 1152, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7967, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.214594+00', 418, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(7968, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.903404+00', 783, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7969, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.991088+00', 690, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(7970, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.615484+00', 1048, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7971, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.281251+00', 1426, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(7972, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.850912+00', 853, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7973, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.97642+00', 746, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7974, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.721783+00', 1151, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(7975, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.25407+00', 628, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7976, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.02521+00', 862, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(7977, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.632531+00', 1269, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(7978, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.110446+00', 806, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 21, 3, NULL, 2, NULL), +(7979, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.02521+00', 915, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(7980, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.632531+00', 1322, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(7981, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.964795+00', 99, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(7982, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.485784+00', 827, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(7983, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.488213+00', 870, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(7984, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.011888+00', 389, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(7985, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.04201+00', 421, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(7986, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.23953+00', 342, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(7987, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.24888+00', 362, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(7988, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.125571+00', 483, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(7989, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.222966+00', 391, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(7990, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.812983+00', 86, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(7991, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.953955+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(7992, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.841106+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(7993, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.857899+00', 246, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(7994, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.97483+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(7995, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.831562+00', 281, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(7996, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.990574+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(7997, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.943702+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(7998, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.97483+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(7999, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.979576+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8000, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.837382+00', 336, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8001, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.019714+00', 172, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8002, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.029589+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8003, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.133932+00', 82, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8004, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.030685+00', 203, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8005, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.143714+00', 126, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8006, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.777025+00', 96, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8007, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.614178+00', 472, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8008, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.813533+00', 273, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8009, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.836023+00', 343, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8010, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.714229+00', 659, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8011, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.838932+00', 622, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8012, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.878402+00', 654, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8013, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.839542+00', 761, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8014, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.566411+00', 1142, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8015, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.025696+00', 354, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8016, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.056662+00', 599, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8017, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.41262+00', 324, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8018, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.214875+00', 539, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8019, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.224964+00', 525, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8020, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.075649+00', 711, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8021, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.409593+00', 556, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8022, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.62528+00', 368, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8023, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.44645+00', 638, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8024, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.470541+00', 620, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8025, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.558934+00', 556, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8026, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.560424+00', 554, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8027, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.772435+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8028, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.506947+00', 628, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8029, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.819048+00', 408, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8030, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.81529+00', 545, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8031, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.668752+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8032, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.674061+00', 116, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8033, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.597602+00', 208, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8034, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.610162+00', 296, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8035, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.711512+00', 198, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8036, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.656727+00', 317, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8037, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.675009+00', 299, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8038, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.812716+00', 463, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(8039, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.856095+00', 732, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8040, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.831684+00', 808, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(8041, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.830233+00', 1066, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 12, 2, NULL, 2, NULL), +(8042, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.87545+00', 1209, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 2, NULL), +(8043, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.906063+00', 1050, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(8044, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.513011+00', 729, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8045, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.868547+00', 1421, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8046, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.868547+00', 1439, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(8047, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.320539+00', 1257, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8048, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.320539+00', 1273, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(8049, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.217461+00', 1552, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8050, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.217461+00', 1556, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(8051, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.34178+00', 1510, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 2, NULL), +(8052, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.055412+00', 1892, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8053, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.055412+00', 1899, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(8054, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.992925+00', 1990, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8055, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.045261+00', 1969, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8056, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.390359+00', 1631, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8057, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.045261+00', 2001, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(8058, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.433299+00', 1614, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8059, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.923937+00', 2182, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8060, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.923937+00', 2183, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(8061, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.998415+00', 2124, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8062, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.2028+00', 1929, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8063, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.109491+00', 2032, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8064, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.332203+00', 1812, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8065, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.2028+00', 1964, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(8066, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.371+00', 1953, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8067, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.634134+00', 1713, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8068, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.371+00', 1983, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(8069, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.031491+00', 2372, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8070, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.260711+00', 2157, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8071, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.624114+00', 1818, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8072, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.512908+00', 1922, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8073, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:08.982874+00', 1472, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8074, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.929279+00', 2561, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8075, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:07.929279+00', 2575, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(8076, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.978922+00', 855, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8077, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.459156+00', 402, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8078, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.624376+00', 1303, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8079, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.347623+00', 378, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8080, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.45327+00', 277, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8081, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.289778+00', 465, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8082, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.305773+00', 453, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8083, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.290257+00', 471, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8084, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.207098+00', 564, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8085, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.295546+00', 526, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8086, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.553017+00', 292, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8087, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.358353+00', 554, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8088, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.447357+00', 549, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8089, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.534006+00', 582, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8090, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.217355+00', 958, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8091, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.542021+00', 617, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8092, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.565537+00', 600, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8093, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.53885+00', 688, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8094, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.35927+00', 901, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8095, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.766905+00', 365, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8096, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.920753+00', 310, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8097, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.806417+00', 559, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8098, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.794529+00', 606, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8099, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.965305+00', 566, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8100, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.042274+00', 529, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8101, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.790405+00', 788, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8102, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.815826+00', 769, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8103, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:26.966912+00', 731, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8104, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.51015+00', 130, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8105, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.583713+00', 118, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8106, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.522213+00', 248, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8107, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.502308+00', 302, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8108, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.647805+00', 194, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8109, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.677084+00', 197, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8110, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.823268+00', 98, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8111, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:37.876962+00', 463, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8112, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.086968+00', 411, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8113, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:37.87691+00', 708, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8114, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.049807+00', 505, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8115, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.182427+00', 395, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8116, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.122545+00', 491, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8117, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.294394+00', 438, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8118, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.274002+00', 470, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8119, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.218417+00', 540, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8120, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.031696+00', 734, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8121, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.327573+00', 474, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8122, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.429082+00', 390, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8123, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.258835+00', 571, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8124, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.291528+00', 538, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8125, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.16693+00', 686, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8126, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.547841+00', 321, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8127, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.837766+00', 219, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8128, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.993151+00', 93, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8129, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.182844+00', 114, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8130, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.825904+00', 524, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8131, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.152573+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8132, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.880256+00', 586, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8133, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.215342+00', 266, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8134, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.911703+00', 596, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8135, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.140948+00', 374, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8136, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.998245+00', 533, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8137, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.126614+00', 430, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8138, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.371322+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8139, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.823382+00', 771, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8140, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:39.958046+00', 657, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8141, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.194728+00', 439, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8142, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.187921+00', 507, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8143, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.506005+00', 95, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8144, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.514231+00', 193, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8145, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.503877+00', 209, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8146, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.574447+00', 335, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8147, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.754001+00', 191, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8148, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.554514+00', 401, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8149, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.690097+00', 266, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8150, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.665129+00', 305, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8151, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.826922+00', 144, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8152, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.276377+00', 106, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8153, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.302515+00', 90, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8154, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.330999+00', 115, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8155, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.334129+00', 112, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8156, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.327838+00', 129, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8157, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.419932+00', 63, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8158, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.374795+00', 106, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8159, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:07.93874+00', 327, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8160, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:07.967712+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8161, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.008627+00', 401, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8162, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:07.961382+00', 444, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8163, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.32329+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8164, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.233353+00', 260, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8165, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.051145+00', 444, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8166, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.052977+00', 466, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8167, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.029768+00', 499, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8168, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.233976+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8169, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.234544+00', 363, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8170, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.24634+00', 348, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8171, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.355926+00', 254, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8172, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.232855+00', 385, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8173, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.033743+00', 603, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8174, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.232386+00', 407, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8175, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.930118+00', 147, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8176, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.720499+00', 442, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8177, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.904586+00', 265, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8178, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.966293+00', 285, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8179, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.969077+00', 472, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8180, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.990019+00', 517, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8181, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.976904+00', 573, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8182, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.080665+00', 489, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8183, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.962818+00', 606, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8184, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.965906+00', 625, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8185, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.85564+00', 740, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8186, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.998464+00', 607, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8187, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.998376+00', 634, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8188, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:09.90852+00', 747, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8189, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.014041+00', 640, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8190, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.14805+00', 505, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8191, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.437416+00', 137, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8192, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.437396+00', 226, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8193, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.484566+00', 194, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8194, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.646212+00', 68, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8195, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.528629+00', 244, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8196, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.740872+00', 115, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8197, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.726213+00', 177, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8198, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.784743+00', 163, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8199, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.699383+00', 465, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8200, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.353131+00', 169, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8201, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.478485+00', 79, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8202, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.442015+00', 118, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8203, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.469541+00', 142, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8204, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.404966+00', 224, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8205, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.380582+00', 277, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8206, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.43809+00', 223, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8207, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.665856+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8208, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.680606+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8209, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.621529+00', 298, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8210, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.708377+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8211, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.752489+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8212, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.828233+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8213, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.629418+00', 377, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8214, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.718732+00', 293, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8215, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.626567+00', 388, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8216, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.727304+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8217, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.639728+00', 414, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8218, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.630032+00', 429, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8219, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.789927+00', 272, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8220, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.778099+00', 323, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8221, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.769192+00', 336, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8222, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.759978+00', 341, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8223, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.28246+00', 505, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8224, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.321682+00', 503, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8225, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.470388+00', 465, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8226, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.554298+00', 415, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8227, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.600154+00', 383, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8228, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.306327+00', 726, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8229, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.609055+00', 428, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8230, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.27106+00', 777, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8231, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.613283+00', 466, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8232, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.618366+00', 471, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8233, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.247043+00', 955, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8234, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.489316+00', 712, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8235, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.580241+00', 647, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8236, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.625359+00', 603, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8237, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.622906+00', 608, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8238, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.750638+00', 501, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8239, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:56.414132+00', 629, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8240, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:56.998689+00', 314, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8241, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.126905+00', 205, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8242, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:56.615751+00', 745, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8243, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.051074+00', 456, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8244, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.012604+00', 504, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8245, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.07217+00', 448, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8246, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.090217+00', 443, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8247, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.258296+00', 435, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8248, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.568894+00', 94, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8249, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.625305+00', 98, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8250, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.595243+00', 131, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8251, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.55566+00', 213, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8252, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.585516+00', 228, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8253, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.678422+00', 199, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8254, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.68309+00', 199, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8255, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.708986+00', 218, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8256, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.737395+00', 227, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8257, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.807002+00', 381, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8258, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.846437+00', 372, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8259, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.826116+00', 415, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8260, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.082403+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8261, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.838283+00', 515, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8262, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.764211+00', 592, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8263, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.99291+00', 372, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8264, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.056329+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8265, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.15617+00', 294, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8266, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.326433+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8267, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.179798+00', 337, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8268, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.181575+00', 343, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8269, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.196528+00', 365, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8270, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.344142+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8271, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.611972+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8272, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.736896+00', 131, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8273, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.774816+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8274, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.708346+00', 180, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8275, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.720713+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8276, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.791884+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8277, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.80895+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8278, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.782119+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8279, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.762147+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8280, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.772272+00', 178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8281, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.792758+00', 167, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8282, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.730021+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8283, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.827756+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8284, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.835842+00', 144, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8285, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.799571+00', 185, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8286, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.865972+00', 130, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8287, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.549933+00', 132, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8288, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.48833+00', 193, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8289, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.535913+00', 174, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8290, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.552558+00', 160, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8291, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.568961+00', 154, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8292, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.488288+00', 241, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8293, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.612897+00', 209, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8294, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.711539+00', 213, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8295, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.619525+00', 344, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8296, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.439993+00', 86, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8297, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.437018+00', 158, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8298, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.43863+00', 193, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8299, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.498365+00', 132, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8300, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.432251+00', 208, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8301, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.425779+00', 245, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8302, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.567246+00', 143, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8303, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.654265+00', 109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8304, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.659869+00', 251, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8305, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.514515+00', 411, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8306, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.951389+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8307, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.514279+00', 578, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8308, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.664646+00', 475, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8309, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.739417+00', 417, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8310, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.802402+00', 363, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8311, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.739529+00', 447, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8312, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.908079+00', 298, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8313, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.963452+00', 279, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8314, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.792529+00', 465, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8315, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.90646+00', 359, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8316, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.67863+00', 590, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8317, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.909098+00', 363, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8318, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.095899+00', 230, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8319, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:44.958732+00', 206, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8320, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:44.980648+00', 189, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8321, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.090355+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8322, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:44.904807+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8323, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:44.957424+00', 327, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8324, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.02124+00', 306, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8325, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.035895+00', 312, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8326, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.020755+00', 361, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8327, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.090208+00', 326, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8328, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:44.998402+00', 419, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8329, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.144679+00', 281, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8330, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.174233+00', 286, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8331, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.22103+00', 311, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8332, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.144002+00', 456, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8333, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.221374+00', 377, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8334, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.101606+00', 497, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8335, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.545795+00', 74, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8336, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.573157+00', 169, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8337, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.583908+00', 202, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8338, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.544866+00', 217, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8339, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.546114+00', 280, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8340, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.550335+00', 354, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8341, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.535855+00', 408, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8342, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.573815+00', 371, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8343, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.573938+00', 385, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8344, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.017735+00', 336, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8345, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.021695+00', 335, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8346, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.027777+00', 395, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8347, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.031941+00', 376, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8348, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.005033+00', 460, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8349, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.194662+00', 283, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8350, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:57.96275+00', 519, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8351, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.003191+00', 480, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8352, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.055888+00', 573, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8353, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.363937+00', 121, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8354, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.348708+00', 139, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8355, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.381661+00', 115, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8356, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.426536+00', 77, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8357, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.419257+00', 100, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8358, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.44452+00', 93, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8359, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.42531+00', 178, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8360, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.598326+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8361, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.607984+00', 243, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8362, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.675613+00', 370, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8363, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.672941+00', 391, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8364, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.665781+00', 413, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8365, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.675976+00', 419, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8366, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.758123+00', 381, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8367, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.076955+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8368, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.062868+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8369, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.982248+00', 316, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8370, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.160694+00', 166, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8371, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.060989+00', 273, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8372, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.01139+00', 333, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8373, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.059755+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8374, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.126899+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8375, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.065197+00', 307, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8376, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:14.750543+00', 418, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8377, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.036014+00', 240, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8378, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.164528+00', 122, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8379, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.193881+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8380, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.015962+00', 285, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8381, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.038764+00', 266, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8382, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.13046+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8383, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.129001+00', 248, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8384, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.208849+00', 225, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8385, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.120303+00', 330, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8386, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.169775+00', 282, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8387, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.167104+00', 292, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8388, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.160683+00', 325, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8389, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.318352+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8390, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.203226+00', 353, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8391, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.470037+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8392, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.526011+00', 303, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8393, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.486483+00', 389, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8394, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.446654+00', 534, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8395, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.731132+00', 292, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8396, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.693231+00', 383, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8397, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.61993+00', 512, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8398, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.74622+00', 442, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8399, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.626966+00', 569, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8400, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.666429+00', 688, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8401, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.355772+00', 75, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8402, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.324064+00', 119, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8403, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.384221+00', 66, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8404, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.37575+00', 96, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8405, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.370042+00', 109, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8406, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.382371+00', 97, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8407, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.369992+00', 116, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8408, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.060831+00', 66, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8409, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.092366+00', 54, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8410, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.084308+00', 108, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8411, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.069323+00', 144, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8412, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.072516+00', 146, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8413, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.097516+00', 169, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8414, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.154015+00', 117, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8415, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.076275+00', 204, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8416, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.102151+00', 257, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8417, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.116416+00', 193, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8418, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.190306+00', 140, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8419, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.244984+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8420, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.24059+00', 233, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8421, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.182195+00', 318, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8422, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.355432+00', 153, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8423, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.190085+00', 359, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8424, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.351433+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8425, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.278282+00', 292, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8426, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.401788+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8427, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.197566+00', 430, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8428, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.266704+00', 387, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8429, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.426055+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8430, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.40538+00', 270, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8431, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.44743+00', 248, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8432, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.416251+00', 287, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8433, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:44.826682+00', 378, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8434, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.103786+00', 119, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8435, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.059415+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8436, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.087927+00', 289, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8437, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.130366+00', 353, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8438, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.157791+00', 397, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8439, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.109666+00', 533, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8440, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.344153+00', 340, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8441, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.199856+00', 528, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8442, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.443026+00', 335, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8443, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.368616+00', 540, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8444, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.270402+00', 635, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8445, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.27933+00', 649, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8446, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.326393+00', 667, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8447, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.172628+00', 837, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8448, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.666238+00', 551, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8449, X'4f9246f4d6d32cc4ea5f6ffc12e693082be688bb477c7717fbafff7237d854b7', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.256755+00', 280, 5, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8450, X'837c7aa77a214ea0fde0f14a83b39d5e78fb5dfd18425103ef90251a80a2586c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.374266+00', 238, 2, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8451, X'5a8109755eb335ad563ce775f77b2f0f6bc1a0b1dd0a382e1103d9a80a706e7d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.488714+00', 146, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8452, X'83393cc8bc813ae1da6ee5b17e3b0596b698cacd6ac26f3ebaf06d7e05c47129', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.364467+00', 408, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8453, X'0dcd7befcd416d30043eb461fa6f740bbf762c43ea7479d0ebc112ce2ee0495c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.570272+00', 229, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8454, X'250d2624ff9b3a6c6eaff31711193c1595ba2ee449e2d544080b0cc487117799', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.534009+00', 293, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8455, X'7fe56b0168c436bf4112b8f070c3a19482a05773f01e62af30105907c0085539', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.296088+00', 574, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8456, X'b763fb8e405258618129300cdd9e8d32282465445d61583b12eb6ffaa2f89ae5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.592146+00', 325, 5, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8457, X'34a0c0d643147d704654214fd2d883a977550f2bb3d90c56c0aa4066a147e5d2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.544773+00', 394, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8458, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:14.921323+00', 325, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8459, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:14.970827+00', 256, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8460, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:14.939525+00', 1120, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8461, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:14.886052+00', 1294, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8462, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:14.886005+00', 1346, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8463, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:15.094337+00', 1860, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8464, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:14.921309+00', 2378, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8465, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:15.700326+00', 2055, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8466, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.212033+00', 1744, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8467, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.275548+00', 2489, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8468, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.176294+00', 2626, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8469, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.215543+00', 1689, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8470, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:15.803686+00', 3312, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8471, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.895389+00', 1266, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8472, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.895389+00', 1269, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(8473, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.832464+00', 1374, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(8474, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.879599+00', 723, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8475, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.910523+00', 2895, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8476, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:15.986046+00', 4963, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8477, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.691181+00', 5034, 0, TRUE, 'dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8478, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.510314+00', 4509, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8479, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.989736+00', 3017, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8480, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.038409+00', 3086, 0, TRUE, 'dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(8481, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.031874+00', 3192, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8482, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.038838+00', 5212, 0, FALSE, 'dashboard', 'Error reducing result rows: null', 1, 26, 3, NULL, 2, NULL), +(8483, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.960368+00', 3314, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8484, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.114817+00', 4332, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8485, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.064788+00', 426, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(8486, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.114817+00', 4365, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(8487, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.520249+00', 4056, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8488, X'a5d7329e4256238c2a2723e1ef73a4c632346627ebecf16667f8bbb631e55e3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:21.47944+00', 1147, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8489, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.520249+00', 4107, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(8490, X'33832d7607cef1aae8837aedde03d585ab1e4f1c3a08f50b7a3ba7b6a5cf90da', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:21.822001+00', 1011, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8491, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.30619+00', 3544, 0, FALSE, 'dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(8492, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.008524+00', 883, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(8493, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:20.95792+00', 2621, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8494, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.796226+00', 3806, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8495, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:20.288249+00', 3334, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8496, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.796226+00', 3830, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8497, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.310209+00', 4328, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(8498, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.310209+00', 4327, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8499, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:20.288249+00', 3390, 0, TRUE, 'dashboard', 'Closed', 1, 20, 3, NULL, 2, NULL), +(8500, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.102557+00', 4707, 0, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8501, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.102557+00', 4720, 0, FALSE, 'dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(8502, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.888724+00', 6048, 0, FALSE, 'dashboard', 'Cursor has been closed', 1, 28, 3, NULL, 2, NULL), +(8503, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:20.276824+00', 3675, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 2, NULL), +(8504, X'c46dd50c95d9bf3c65e76068eb7a13c5b69f61cd64e55f70b4d9702831145c0a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:21.730163+00', 2254, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8505, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:21.57661+00', 2442, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8506, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.1577+00', 4871, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8507, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:21.684208+00', 2362, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8508, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.1577+00', 4911, 0, TRUE, 'dashboard', 'Closed', 1, 19, 3, NULL, 2, NULL), +(8509, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.717375+00', 1400, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 21, 3, NULL, 2, NULL), +(8510, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.557037+00', 1563, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8511, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.557037+00', 1567, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(8512, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.604094+00', 1533, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8513, X'192186a3d29943678c2d85bd698c3fad0953898cce157676b2196c574ce72706', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.726751+00', 1468, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8514, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.268559+00', 2239, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8515, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.268559+00', 2243, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(8516, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.06419+00', 2550, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8517, X'afe714b1b6aeca56e7b5e8d93df3c35cfaf0f35c308aebaa6ff105fd3e766d7e', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:21.539591+00', 3065, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8518, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.440532+00', 2211, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8519, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.440532+00', 2234, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(8520, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.630146+00', 2047, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8521, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.630146+00', 2056, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(8522, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.418879+00', 2841, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8523, X'14236e172b3bba96c2694d726317689d1e4bb285c197471b75d0a8cc55e32bd6', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.126232+00', 2310, 9, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8524, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.775739+00', 2864, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8525, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.875398+00', 6031, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8526, X'e764e5fe38ace0ee64c846d586be9d6d09c5d359b993dc0f02d86ab5b4e2939c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.13071+00', 2801, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8527, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.111085+00', 2813, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8528, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.875398+00', 6117, 0, FALSE, 'dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(8529, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.15757+00', 2081, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8530, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.878986+00', 3369, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8531, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.878986+00', 3379, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(8532, X'0513e7efdf728a3c4317bcb1956f86a7cf0921232ec94b626098ce6ed2738bbb', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.108841+00', 3143, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8533, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:20.279557+00', 6106, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8534, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.794005+00', 3677, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8535, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.155639+00', 2366, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8536, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.155639+00', 2410, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8537, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.560181+00', 4184, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8538, X'8ed242a5cd37ac338c64dad05af899f8d28b6dcb444ebbb369639a19e0a6f8fb', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.115985+00', 5494, 9, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8539, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.197046+00', 172, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8540, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.084178+00', 285, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8541, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.210373+00', 165, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8542, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.312676+00', 153, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8543, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.394098+00', 158, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8544, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.255062+00', 340, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8545, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.244823+00', 347, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8546, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.376663+00', 245, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8547, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.288032+00', 387, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8548, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.433569+00', 78, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8549, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.441186+00', 118, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8550, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.480786+00', 95, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8551, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.573382+00', 97, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8552, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.5479+00', 147, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8553, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.544051+00', 152, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8554, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.597241+00', 140, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8555, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:44.736969+00', 424, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8556, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:44.886054+00', 336, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8557, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.01913+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8558, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:44.939172+00', 317, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8559, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:44.934952+00', 338, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8560, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:44.900062+00', 407, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8561, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:44.907711+00', 427, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8562, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.126777+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8563, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.103695+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8564, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:44.971036+00', 486, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8565, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.201702+00', 260, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8566, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.194677+00', 277, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8567, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.184495+00', 322, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8568, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.23476+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8569, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.234411+00', 282, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8570, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.296671+00', 242, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.005966+00', 285, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8572, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.355536+00', 68, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8573, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.027233+00', 502, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8574, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.05836+00', 482, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8575, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.540703+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8576, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.475296+00', 191, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8577, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.239666+00', 443, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8578, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.747316+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8579, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.436457+00', 494, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8580, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.678232+00', 305, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8581, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.606096+00', 396, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8582, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.692644+00', 311, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8583, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.311404+00', 702, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8584, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.693218+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8585, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.745416+00', 306, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8586, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.752625+00', 332, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8587, X'f08fac32444c03615abd994c45ba3cd0f2125ef19411bd8c17c9f2a42f00e10e', TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:49.166595+00', 82, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(8588, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.012919+00', 156, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8589, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.068318+00', 124, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8590, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.098945+00', 110, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(8591, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.087703+00', 219, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8592, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.099525+00', 307, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8593, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.166883+00', 230, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8594, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.25238+00', 205, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8595, X'f08fac32444c03615abd994c45ba3cd0f2125ef19411bd8c17c9f2a42f00e10e', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:07.083416+00', 53, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(8596, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.144188+00', 224, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8597, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.271868+00', 177, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(8598, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.263766+00', 216, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(8599, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.276246+00', 272, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(8600, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.260034+00', 295, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(8601, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.272213+00', 299, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(8602, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.29701+00', 278, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(8603, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.701373+00', 108, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8604, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.724979+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8605, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.728386+00', 157, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8606, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.739101+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8607, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.735612+00', 187, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8608, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.72544+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8609, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.862092+00', 103, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8610, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.827308+00', 159, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8611, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.835801+00', 156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8612, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.849589+00', 145, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8613, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.881555+00', 133, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8614, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.842478+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8615, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.871684+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8616, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.855032+00', 188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8617, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.857965+00', 188, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8618, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.866156+00', 188, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8619, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:16.96797+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8620, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:16.981383+00', 248, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8621, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.054268+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8622, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.071486+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8623, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.077765+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8624, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.001992+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8625, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.191316+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8626, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.21151+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8627, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.147331+00', 260, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8628, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.641257+00', 109, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8629, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.725379+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8630, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.650894+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8631, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.644694+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8632, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.70973+00', 315, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8633, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.811651+00', 211, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8634, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.693817+00', 342, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8635, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.755797+00', 92, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8636, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.703234+00', 318, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8637, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.698824+00', 350, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8638, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.673494+00', 454, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8639, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.643866+00', 490, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8640, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.907351+00', 220, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8641, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.830063+00', 326, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8642, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.786979+00', 379, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8643, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.774329+00', 400, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8644, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.70532+00', 470, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8645, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.794093+00', 386, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8646, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.906733+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8647, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.932797+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8648, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.820084+00', 408, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8649, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.850238+00', 405, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8650, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.125774+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8651, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.0243+00', 228, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8652, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.151878+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8653, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.136762+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8654, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.098195+00', 255, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8655, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.092718+00', 272, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8656, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.144216+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8657, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.08138+00', 309, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8658, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.054923+00', 357, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8659, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.18421+00', 228, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8660, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.912024+00', 98, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8661, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.884701+00', 159, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8662, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.931133+00', 178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8663, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.942635+00', 178, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8664, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.005634+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8665, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.934464+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8666, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.931767+00', 208, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8667, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.665104+00', 100, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8668, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.668336+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8669, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.703923+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8670, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.785299+00', 77, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8671, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.67487+00', 202, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8672, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.78493+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8673, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.819877+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8674, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.653338+00', 281, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8675, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.802619+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8676, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.877766+00', 62, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8677, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.817288+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8678, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.793929+00', 159, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8679, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.835755+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8680, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.825603+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8681, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.825733+00', 156, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8682, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.90375+00', 115, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8683, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:16.96845+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8684, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:16.971673+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8685, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.095335+00', 108, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8686, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:16.999828+00', 217, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8687, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.074733+00', 154, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8688, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:16.966706+00', 283, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8689, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.102459+00', 151, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8690, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:16.983952+00', 290, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8691, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.08669+00', 199, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8692, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.226699+00', 88, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8693, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.243456+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8694, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.266593+00', 154, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8695, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.309669+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8696, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.350474+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8697, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.31202+00', 159, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8698, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.329471+00', 178, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8699, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:44.975975+00', 108, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8700, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.04087+00', 66, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8701, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:44.992683+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8702, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.0408+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8703, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.336321+00', 50, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8704, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.336757+00', 72, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8705, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.328681+00', 90, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8706, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.342584+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8707, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.354518+00', 185, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8708, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.483197+00', 103, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8709, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.50825+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8710, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.629155+00', 60, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8711, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.646668+00', 95, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(8712, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.644704+00', 97, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(8713, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.680806+00', 72, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8714, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.680806+00', 75, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(8715, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.684717+00', 133, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8716, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.237983+00', 58, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8717, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.248935+00', 512, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8718, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.319825+00', 484, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8719, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.39414+00', 442, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8720, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.257983+00', 590, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8721, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.380255+00', 493, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8722, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.390233+00', 564, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8723, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.894194+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8724, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.881289+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8725, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.553728+00', 153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8726, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.549252+00', 205, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8727, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.662679+00', 160, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8728, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.667053+00', 180, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8729, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.571138+00', 291, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8730, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.649355+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8731, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.665932+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8732, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.477922+00', 738, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(8733, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.470644+00', 899, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8734, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.402223+00', 1042, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8735, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.639409+00', 896, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8736, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.610281+00', 922, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(8737, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.532863+00', 1014, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(8738, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.639409+00', 892, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8739, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.574046+00', 1089, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8740, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.305312+00', 477, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8741, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.473565+00', 1375, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8742, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.445946+00', 1481, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8743, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.935808+00', 1064, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8744, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.935808+00', 1086, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(8745, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.932034+00', 1147, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8746, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.49675+00', 1584, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8747, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.651955+00', 486, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(8748, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.462452+00', 1658, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8749, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:52.462452+00', 1689, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(8750, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.774799+00', 390, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(8751, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.740948+00', 441, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8752, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.670961+00', 746, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8753, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.670961+00', 765, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(8754, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.247883+00', 241, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8755, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.455713+00', 1084, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8756, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.226084+00', 324, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(8757, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.205528+00', 452, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8758, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.205528+00', 459, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(8759, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.168356+00', 494, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8760, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.578427+00', 1202, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8761, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.200782+00', 570, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8762, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.842339+00', 999, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8763, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.165054+00', 749, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8764, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.165054+00', 755, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(8765, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.728325+00', 1199, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(8766, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.728325+00', 1185, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8767, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.230393+00', 815, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8768, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.955108+00', 1098, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8769, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.230393+00', 826, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(8770, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.955108+00', 1107, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(8771, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.290177+00', 1009, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8772, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.874129+00', 1430, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8773, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.874129+00', 1431, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8774, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.086658+00', 252, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8775, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.271908+00', 217, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8776, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.229025+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8777, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.286133+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8778, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.303487+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8779, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.268596+00', 284, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8780, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.281679+00', 272, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8781, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.275283+00', 287, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8782, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.090899+00', 480, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8783, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.500444+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8784, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.438869+00', 317, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8785, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.681352+00', 109, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8786, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.527852+00', 279, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8787, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.562331+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8788, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.541186+00', 342, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8789, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.729585+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8790, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.109224+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8791, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:21.991208+00', 360, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8792, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.150961+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8793, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.092238+00', 599, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8794, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.034395+00', 680, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8795, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.35328+00', 389, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8796, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.033243+00', 732, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8797, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.282933+00', 503, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8798, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.303273+00', 503, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8799, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.167832+00', 662, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8800, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.091796+00', 754, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8801, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.111998+00', 744, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8802, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.392608+00', 481, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8803, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.340786+00', 563, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8804, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.589617+00', 325, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8805, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.669555+00', 265, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8806, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:46.962282+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8807, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:46.966166+00', 193, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8808, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.033535+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8809, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.038322+00', 166, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8810, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.020854+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8811, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:46.98054+00', 245, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8812, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.042168+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8813, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.029519+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8814, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.089905+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8815, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.83488+00', 98, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8816, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.823295+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8817, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.850809+00', 110, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8818, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.880506+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8819, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.844122+00', 158, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8820, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.875245+00', 136, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8821, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.84753+00', 171, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8822, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.370043+00', 288, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8823, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.403567+00', 286, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8824, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.445158+00', 243, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8825, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.3081+00', 387, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8826, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.393373+00', 320, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(8827, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.451037+00', 266, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8828, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.365282+00', 376, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8829, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.496043+00', 286, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8830, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.457637+00', 371, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8831, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.031002+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8832, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.092898+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8833, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.060335+00', 342, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8834, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.134814+00', 377, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8835, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.186671+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8836, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.334188+00', 273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8837, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.364817+00', 326, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8838, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.229524+00', 535, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8839, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.244773+00', 543, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8840, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.473106+00', 319, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8841, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.286406+00', 518, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8842, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.328517+00', 471, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8843, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.279545+00', 523, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8844, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.446169+00', 393, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8845, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.429606+00', 472, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8846, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.388448+00', 547, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8847, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.370102+00', 119, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(8848, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.268982+00', 250, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(8849, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.4151+00', 155, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(8850, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.503842+00', 81, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(8851, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.378102+00', 255, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(8852, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.297687+00', 367, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(8853, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.368731+00', 296, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8854, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.277746+00', 413, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(8855, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.298096+00', 457, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(8856, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.034344+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8857, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.188264+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8858, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.174815+00', 308, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8859, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.230376+00', 313, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8860, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.198942+00', 342, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8861, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.250602+00', 297, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8862, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.287348+00', 284, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8863, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.291012+00', 302, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8864, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.188244+00', 456, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8865, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.131473+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8866, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.132061+00', 186, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8867, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.150299+00', 201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8868, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.129415+00', 239, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8869, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.290623+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8870, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.129502+00', 275, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8871, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.186683+00', 221, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8872, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:21.997967+00', 121, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8873, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.01044+00', 272, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8874, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.019399+00', 295, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8875, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.089274+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8876, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.255216+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8877, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.00431+00', 462, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8878, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.065786+00', 408, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8879, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.08846+00', 396, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8880, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.344853+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8881, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.267766+00', 254, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8882, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.321686+00', 212, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8883, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.327509+00', 283, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8884, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.387127+00', 247, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8885, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.38688+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8886, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.306923+00', 337, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8887, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.321383+00', 335, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8888, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.074915+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8889, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.180146+00', 136, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8890, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.19+00', 164, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8891, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.175462+00', 199, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8892, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.21892+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8893, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.101743+00', 298, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8894, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.181076+00', 240, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8895, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.181532+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8896, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.18485+00', 305, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8897, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.3105+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8898, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.312863+00', 144, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8899, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.22006+00', 298, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8900, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.270238+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8901, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.310939+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8902, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.27799+00', 369, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8903, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.407729+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8904, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.157488+00', 316, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8905, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.12709+00', 376, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8906, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.213354+00', 330, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8907, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.230143+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8908, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.260984+00', 403, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8909, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.3862+00', 486, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8910, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.295671+00', 587, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8911, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.293368+00', 607, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8912, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.207725+00', 722, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8913, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.341571+00', 565, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8914, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.412869+00', 522, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8915, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.61663+00', 364, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8916, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.577101+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8917, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.330833+00', 685, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8918, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.425693+00', 597, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8919, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.538063+00', 500, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8920, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:21.950657+00', 148, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8921, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:21.996355+00', 143, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8922, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.045204+00', 248, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8923, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.070991+00', 294, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8924, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.154976+00', 434, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8925, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.075533+00', 516, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8926, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.207203+00', 448, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8927, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.297322+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8928, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.149364+00', 501, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8929, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.17267+00', 497, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8930, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.334321+00', 402, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8931, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.319123+00', 414, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8932, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.016239+00', 734, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8933, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.390549+00', 368, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8934, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.296778+00', 476, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8935, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.279002+00', 551, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8936, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.080859+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8937, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.065677+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8938, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.150165+00', 155, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8939, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.103778+00', 280, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8940, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.260214+00', 134, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8941, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.158646+00', 282, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8942, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.334129+00', 124, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8943, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.165071+00', 315, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8944, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.222874+00', 283, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8945, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.183342+00', 325, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8946, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.264915+00', 275, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8947, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.249694+00', 298, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8948, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.264449+00', 320, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8949, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.203768+00', 382, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8950, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.202889+00', 397, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8951, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.063489+00', 539, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8952, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:21.960082+00', 164, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(8953, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:21.992029+00', 336, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8954, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.042369+00', 394, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8955, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.064336+00', 538, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8956, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.105789+00', 504, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8957, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.10438+00', 523, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8958, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.071972+00', 572, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(8959, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.100465+00', 589, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8960, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.362726+00', 345, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8961, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.335688+00', 520, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(8962, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.099769+00', 777, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8963, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.176479+00', 702, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8964, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.317995+00', 584, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8965, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.219197+00', 680, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8966, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.463156+00', 457, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8967, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.319485+00', 605, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8968, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:30.817768+00', 297, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(8969, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:30.849265+00', 504, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(8970, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.020455+00', 493, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(8971, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:30.960909+00', 624, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(8972, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.375212+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8973, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.121532+00', 578, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(8974, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.046681+00', 668, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(8975, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.046681+00', 660, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8976, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:30.943399+00', 819, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(8977, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.123099+00', 709, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(8978, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.018578+00', 914, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(8979, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.546268+00', 455, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(8980, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.103234+00', 990, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(8981, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.539231+00', 558, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(8982, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:30.947621+00', 1688, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8983, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.263118+00', 1388, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(8984, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:30.947621+00', 1693, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(8985, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.422118+00', 1248, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(8986, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.048582+00', 1623, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(8987, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.892161+00', 792, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(8988, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.048582+00', 1643, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(8989, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.972733+00', 724, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(8990, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.646752+00', 1064, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(8991, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.100663+00', 1599, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(8992, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.741116+00', 1038, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(8993, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.065732+00', 717, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(8994, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.065732+00', 734, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(8995, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.666573+00', 1178, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(8996, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.996997+00', 858, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(8997, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.606934+00', 1213, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(8998, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.061209+00', 804, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(8999, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.175103+00', 797, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9000, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.094637+00', 957, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9001, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.117802+00', 2019, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(9002, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.053658+00', 1173, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9003, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.183805+00', 1070, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9004, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.183805+00', 1078, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(9005, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:00.888972+00', 172, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9006, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:00.902076+00', 278, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9007, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:00.920723+00', 329, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9008, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:00.925325+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9009, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:00.952864+00', 359, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9010, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.034234+00', 290, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9011, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.230036+00', 99, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9012, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.043741+00', 379, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9013, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.07856+00', 380, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9014, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.188487+00', 275, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9015, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.20143+00', 275, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9016, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.227907+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9017, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.081536+00', 460, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9018, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.193736+00', 351, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9019, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.175285+00', 380, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9020, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.18701+00', 371, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9021, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:30.93253+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9022, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.063746+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9023, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:30.959307+00', 369, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9024, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:30.939938+00', 461, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9025, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.16592+00', 298, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9026, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.165896+00', 374, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9027, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.164605+00', 378, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9028, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.146627+00', 395, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9029, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.292681+00', 269, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9030, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.159409+00', 408, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9031, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.20663+00', 370, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9032, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.17574+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9033, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.222458+00', 360, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9034, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.246189+00', 330, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9035, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.051663+00', 545, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9036, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.352856+00', 255, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9037, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.848815+00', 135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9038, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.850891+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9039, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.86686+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9040, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.926635+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9041, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.930619+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9042, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.908973+00', 162, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9043, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.967274+00', 107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9044, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.139329+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9045, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.266931+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9046, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.21983+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9047, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.264194+00', 113, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9048, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.267905+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9049, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.270231+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9050, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.239271+00', 212, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9051, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.17211+00', 294, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9052, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.209706+00', 264, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9053, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.884818+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9054, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.92101+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9055, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.919465+00', 141, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9056, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.874653+00', 207, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9057, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.908164+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9058, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.967411+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9059, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.87513+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9060, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.05393+00', 73, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9061, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.981167+00', 154, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9062, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.06391+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9063, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.042032+00', 114, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9064, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.057238+00', 114, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9065, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.976126+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9066, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.831397+00', 354, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9067, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.020778+00', 173, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9068, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.072137+00', 134, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9069, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.083651+00', 355, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9070, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.157792+00', 472, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9071, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.380403+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9072, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.313274+00', 384, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9073, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.380557+00', 374, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9074, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.413602+00', 382, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9075, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.533304+00', 311, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9076, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.707312+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9077, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.578586+00', 319, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9078, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.507713+00', 451, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9079, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.590951+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9080, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.816162+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9081, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.665313+00', 336, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9082, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.810253+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9083, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.643395+00', 422, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9084, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.809941+00', 258, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9085, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.87181+00', 48, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9086, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.925336+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9087, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.872881+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9088, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.961356+00', 146, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9089, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.953321+00', 132, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9090, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.95618+00', 161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9091, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.997995+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9092, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.050195+00', 194, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9093, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.005268+00', 244, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9094, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.983693+00', 292, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9095, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.980345+00', 291, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9096, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.04722+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9097, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.034164+00', 282, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9098, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.993406+00', 327, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9099, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.152961+00', 196, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9100, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.020271+00', 338, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9101, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.03615+00', 105, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9102, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.044182+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9103, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.099963+00', 135, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9104, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.101311+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9105, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.179939+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9106, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.067625+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9107, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.130572+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9108, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.231688+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9109, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.06501+00', 273, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9110, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.238558+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9111, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.077983+00', 279, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9112, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.216714+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9113, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.172611+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9114, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.216759+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9115, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.267286+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9116, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.303363+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9117, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.031112+00', 108, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(9118, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.109984+00', 395, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(9119, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.207276+00', 304, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(9120, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.320099+00', 377, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(9121, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.489132+00', 592, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9122, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.443676+00', 827, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9123, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.802543+00', 719, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9124, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.24636+00', 1440, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9125, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.342081+00', 1448, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9126, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.342081+00', 1451, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(9127, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.685027+00', 229, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9128, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.046128+00', 1010, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9129, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.4582+00', 1669, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9130, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.432439+00', 1727, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9131, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.6499+00', 1522, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9132, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.432439+00', 1743, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(9133, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.6499+00', 1534, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(9134, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.302845+00', 1915, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9135, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.682578+00', 1601, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9136, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.360245+00', 1084, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9137, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.707492+00', 1737, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 27, 3, NULL, 2, NULL), +(9138, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.30812+00', 1170, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9139, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.109689+00', 2402, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9140, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.231298+00', 1287, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9141, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.290706+00', 1308, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9142, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.317484+00', 1296, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9143, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.148673+00', 1485, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9144, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.650138+00', 1997, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9145, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.650138+00', 2012, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(9146, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.560678+00', 1149, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9147, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.606109+00', 1512, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9148, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.777022+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9149, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.760439+00', 276, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9150, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.850344+00', 213, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9151, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.816463+00', 265, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9152, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.870428+00', 212, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9153, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.901106+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9154, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.929832+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9155, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.648314+00', 239, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9156, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.81173+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9157, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.672522+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9158, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.605166+00', 335, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9159, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.840931+00', 115, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9160, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.70857+00', 319, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9161, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.86816+00', 194, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9162, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.868323+00', 199, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9163, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.684272+00', 413, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9164, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.186048+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9165, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.257478+00', 417, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9166, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.294865+00', 392, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9167, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.317688+00', 379, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9168, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.319216+00', 448, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9169, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.356901+00', 460, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9170, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.337307+00', 547, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9171, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.405284+00', 504, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9172, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.368239+00', 562, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9173, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.434185+00', 528, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9174, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.317938+00', 657, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9175, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.64375+00', 351, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9176, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.304881+00', 698, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9177, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.434121+00', 574, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9178, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.528182+00', 501, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9179, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.498523+00', 545, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9180, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.467958+00', 146, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9181, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.528237+00', 226, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(9182, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.55289+00', 244, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9183, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.748443+00', 148, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(9184, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.748457+00', 183, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9185, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.487856+00', 477, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9186, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.508295+00', 463, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(9187, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.795785+00', 256, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9188, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.851788+00', 351, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9189, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.706439+00', 590, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(9190, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.458592+00', 839, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(9191, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.827103+00', 525, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 2, NULL), +(9192, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:20.009786+00', 362, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9193, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.721494+00', 670, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(9194, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.783416+00', 915, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(9195, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.519024+00', 1270, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 26, 3, NULL, 2, NULL), +(9196, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.907743+00', 1060, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9197, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.881036+00', 1751, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9198, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:33.975725+00', 66, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(9199, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:33.991466+00', 135, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(9200, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.041492+00', 112, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(9201, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.041492+00', 110, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9202, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.174822+00', 196, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(9203, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.004927+00', 419, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9204, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.004927+00', 436, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(9205, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.134916+00', 305, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9206, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.109657+00', 410, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9207, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.100928+00', 472, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9208, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.231717+00', 367, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9209, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.211773+00', 392, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9210, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.109704+00', 493, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9211, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.179592+00', 479, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9212, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.223686+00', 492, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(9213, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.154659+00', 562, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(9214, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.380426+00', 186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9215, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.389928+00', 203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9216, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.474204+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9217, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.458319+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9218, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.445643+00', 190, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9219, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.41847+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9220, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.46667+00', 219, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9221, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.898299+00', 63, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9222, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.91352+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9223, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.927936+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9224, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.992733+00', 150, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9225, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.974748+00', 174, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9226, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.95184+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9227, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.017046+00', 150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9228, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.088086+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9229, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.983708+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9230, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.051977+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9231, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.119196+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9232, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.071952+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9233, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.137796+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9234, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.157911+00', 110, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9235, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.100024+00', 177, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9236, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.185638+00', 98, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9237, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.715644+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9238, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.723992+00', 98, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9239, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.756859+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9240, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.79402+00', 63, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9241, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.775617+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9242, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.830239+00', 56, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9243, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.817677+00', 79, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9244, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.839605+00', 120, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9245, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.845684+00', 121, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9246, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.654121+00', 188, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(9247, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.654121+00', 185, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9248, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.704437+00', 167, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(9249, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.736545+00', 152, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(9250, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.675493+00', 292, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(9251, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.700844+00', 289, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(9252, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.758558+00', 236, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9253, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.740864+00', 306, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(9254, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.800324+00', 304, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9255, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.854824+00', 275, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9256, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.800353+00', 363, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9257, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.912121+00', 254, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9258, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.800353+00', 366, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(9259, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.938655+00', 258, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9260, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.952411+00', 344, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9261, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.970288+00', 344, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9262, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.047077+00', 85, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9263, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.077666+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9264, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.142913+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9265, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.076295+00', 147, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9266, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.046205+00', 178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9267, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.079835+00', 157, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9268, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.134021+00', 120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9269, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.219129+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9270, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.247532+00', 256, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9271, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.258371+00', 303, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9272, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.258944+00', 360, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9273, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.244229+00', 440, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9274, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.23423+00', 475, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9275, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.236011+00', 521, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9276, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.562787+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9277, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.723035+00', 129, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9278, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.718029+00', 162, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9279, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.733855+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9280, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.731993+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9281, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.731356+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9282, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.709868+00', 250, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9283, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.58382+00', 379, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9284, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.733566+00', 260, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9285, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.845075+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9286, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.89038+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9287, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.876839+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9288, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.895492+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9289, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.997381+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9290, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.945747+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9291, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.853819+00', 284, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9292, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.028604+00', 148, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9293, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.91561+00', 295, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9294, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:29.975038+00', 1430, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 2, NULL), +(9295, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.486149+00', 1113, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9296, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.553082+00', 1167, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(9297, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.105123+00', 1625, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9298, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:29.912827+00', 1824, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(9299, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.143339+00', 1780, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9300, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.143339+00', 1829, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(9301, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.882011+00', 1099, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 2, NULL), +(9302, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.874022+00', 1243, 0, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9303, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.874022+00', 1273, 0, TRUE, 'public-dashboard', 'Closed', NULL, 11, 2, NULL, 2, NULL), +(9304, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.681791+00', 1482, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9305, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.668407+00', 1586, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9306, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.584659+00', 1712, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9307, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.802946+00', 1531, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9308, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.575299+00', 1774, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9309, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.575299+00', 1780, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(9310, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.926084+00', 1609, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9311, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:30.926084+00', 1898, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(9312, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.709359+00', 168, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9313, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.709359+00', 170, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(9314, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:31.432274+00', 1094, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9315, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.768173+00', 447, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9316, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.768173+00', 466, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(9317, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:31.617447+00', 1559, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9318, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:31.675104+00', 1602, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9319, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.518464+00', 765, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(9320, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.518464+00', 753, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9321, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.266549+00', 1288, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9322, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.266549+00', 1309, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(9323, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.706697+00', 969, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9324, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.706697+00', 988, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9325, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.361735+00', 1377, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9326, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.254232+00', 1503, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9327, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.327485+00', 1478, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9328, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.765019+00', 1080, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9329, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.7127+00', 1130, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9330, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.118118+00', 2128, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9331, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.785248+00', 1461, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9332, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.118118+00', 2132, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(9333, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.503546+00', 1866, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9334, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:59.435392+00', 867, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9335, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.019728+00', 433, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9336, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.036593+00', 426, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9337, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:59.435352+00', 1094, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9338, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.019432+00', 601, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9339, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.019558+00', 666, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9340, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.09408+00', 620, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9341, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.277962+00', 688, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9342, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.125072+00', 890, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9343, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.08723+00', 991, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9344, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.522574+00', 661, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9345, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.996829+00', 241, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9346, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.606833+00', 669, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9347, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.221445+00', 1155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9348, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.661181+00', 958, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9349, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.428209+00', 1009, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9350, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.222865+00', 560, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9351, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.293671+00', 552, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9352, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.063589+00', 815, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9353, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.068203+00', 862, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9354, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.223156+00', 790, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9355, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.691009+00', 382, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9356, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.607063+00', 1480, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9357, X'1a91769538d658c3f50123067ac0d034fbaff5133f4c4de96a4e55ee9c8159b4', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.828323+00', 93, 23, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(9358, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.681198+00', 321, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9359, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.673234+00', 458, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9360, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.949979+00', 249, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9361, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.697972+00', 523, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9362, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.925727+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9363, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.69527+00', 555, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9364, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.899245+00', 456, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9365, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:29.981136+00', 382, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9366, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.121444+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9367, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.167408+00', 313, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9368, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.11983+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9369, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.27122+00', 232, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9370, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.250559+00', 270, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9371, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.167338+00', 363, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9372, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.146646+00', 390, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9373, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.00896+00', 540, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9374, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.374586+00', 125, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(9375, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.355085+00', 222, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(9376, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.423914+00', 229, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(9377, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.410589+00', 256, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(9378, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.449135+00', 391, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9379, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.449135+00', 396, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(9380, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.520336+00', 383, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9381, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.465015+00', 442, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9382, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.560757+00', 372, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9383, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.492126+00', 451, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9384, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.323236+00', 622, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9385, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.323236+00', 636, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(9386, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.556749+00', 443, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(9387, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.6109+00', 404, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9388, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.531451+00', 503, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9389, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.54105+00', 525, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9390, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:59.825239+00', 501, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9391, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.067226+00', 376, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9392, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:59.980699+00', 551, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9393, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:59.862271+00', 716, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9394, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.021543+00', 577, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9395, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:59.836245+00', 766, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9396, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.391776+00', 227, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9397, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:59.958012+00', 684, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9398, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:59.914743+00', 759, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9399, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.366599+00', 319, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9400, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.27421+00', 419, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9401, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.331796+00', 411, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9402, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.417935+00', 378, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9403, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.427213+00', 372, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9404, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.494179+00', 308, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9405, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.420381+00', 400, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9406, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.093287+00', 220, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9407, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.099871+00', 234, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9408, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.129433+00', 217, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9409, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.1638+00', 211, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9410, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.160675+00', 260, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9411, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.111706+00', 312, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9412, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.128045+00', 325, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9413, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.602099+00', 47, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9414, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.615316+00', 88, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9415, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.63762+00', 101, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9416, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.637933+00', 107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9417, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.690139+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9418, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.627516+00', 186, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9419, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.651297+00', 192, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9420, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.693682+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9421, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.773608+00', 130, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9422, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.822187+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9423, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.810109+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9424, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.752278+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9425, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.834076+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9426, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.837717+00', 109, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9427, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.831631+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9428, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.828767+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9429, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.159115+00', 133, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9430, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.193052+00', 148, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9431, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.216702+00', 123, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9432, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.14998+00', 203, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9433, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.173663+00', 181, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9434, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.215391+00', 147, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9435, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.293767+00', 75, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9436, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:59.906645+00', 229, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9437, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:59.968913+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9438, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:59.882902+00', 367, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9439, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:59.965231+00', 286, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9440, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.040959+00', 234, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9441, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:59.948102+00', 374, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9442, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.290651+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9443, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.21679+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9444, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:59.964893+00', 536, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9445, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.070074+00', 447, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9446, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.191071+00', 334, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9447, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.257863+00', 280, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9448, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.094597+00', 480, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9449, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.478245+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9450, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.304517+00', 290, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9451, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.513301+00', 101, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9452, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.05033+00', 46, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9453, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.102271+00', 48, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9454, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.061113+00', 96, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9455, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.09213+00', 77, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9456, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.091304+00', 89, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9457, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.129463+00', 68, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9458, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.132341+00', 71, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9459, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.12265+00', 60, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9460, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.11916+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9461, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.126137+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9462, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.125808+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9463, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.290164+00', 47, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9464, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.290684+00', 91, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9465, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.404881+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9466, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.360414+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9467, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.361466+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9468, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.371905+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9469, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.349936+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9470, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.495991+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9471, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.548793+00', 73, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9472, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.575889+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9473, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.526732+00', 134, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9474, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.587234+00', 91, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9475, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.602469+00', 97, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9476, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.605355+00', 102, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9477, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.618097+00', 174, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9478, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.660497+00', 179, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9479, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.591488+00', 258, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9480, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.603807+00', 233, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9481, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.590292+00', 320, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9482, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.760722+00', 214, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9483, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.702139+00', 480, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9484, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.834773+00', 142, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9485, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.954583+00', 196, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9486, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.974557+00', 241, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9487, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.911619+00', 318, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9488, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.906501+00', 341, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9489, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.93224+00', 472, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9490, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.922115+00', 530, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9491, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.951525+00', 525, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9492, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.063824+00', 441, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9493, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.184011+00', 356, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9494, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.039587+00', 526, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9495, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.158353+00', 412, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9496, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.940032+00', 637, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9497, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.140435+00', 536, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9498, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.232718+00', 447, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9499, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.076586+00', 677, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9500, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.764421+00', 108, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9501, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.820143+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9502, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.860333+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9503, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.811512+00', 163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9504, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.822208+00', 181, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9505, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.843393+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9506, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.883705+00', 189, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9507, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.874538+00', 205, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9508, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.956266+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9509, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.046762+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9510, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.056122+00', 121, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9511, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.060925+00', 129, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9512, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.096572+00', 101, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9513, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.050491+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9514, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.075978+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9515, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.093021+00', 118, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9516, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.184574+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9517, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.232732+00', 157, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9518, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.207553+00', 218, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9519, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.282336+00', 267, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9520, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.182337+00', 477, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9521, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.453969+00', 238, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9522, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.257609+00', 467, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9523, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.288849+00', 448, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9524, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.625294+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9525, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.642174+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9526, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.595928+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9527, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.562224+00', 370, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9528, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.721566+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9529, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.759462+00', 283, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9530, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.749961+00', 318, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9531, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.848911+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9532, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:29.927671+00', 99, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9533, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:29.894814+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9534, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:29.922925+00', 149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9535, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:29.928432+00', 168, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9536, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:29.888677+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9537, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:29.93166+00', 239, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9538, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.13202+00', 66, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9539, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.130818+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9540, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.097583+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9541, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:29.928956+00', 378, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9542, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.106877+00', 203, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9543, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.220057+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9544, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.16154+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9545, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.276594+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9546, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.325802+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9547, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.328468+00', 99, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9548, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:59.774871+00', 287, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9549, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:59.7959+00', 393, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9550, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:59.947943+00', 259, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9551, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:59.797271+00', 416, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9552, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:59.828412+00', 426, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9553, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:59.957933+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9554, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:59.961522+00', 335, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9555, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.095183+00', 205, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9556, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.09459+00', 269, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9557, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.102273+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9558, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.182315+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9559, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.230341+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9560, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.223272+00', 196, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9561, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.218465+00', 212, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9562, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.229363+00', 212, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9563, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.246436+00', 208, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9564, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.919479+00', 131, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9565, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.940438+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9566, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.036357+00', 76, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9567, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.034535+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9568, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.928611+00', 207, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9569, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.90634+00', 272, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9570, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.959416+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9571, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.95912+00', 228, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9572, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.054239+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9573, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.996622+00', 221, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9574, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.067589+00', 169, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9575, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.928958+00', 309, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9576, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:29.987413+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9577, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.051259+00', 208, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9578, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.063678+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9579, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.159188+00', 126, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9580, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:41.996446+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9581, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.019747+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9582, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.002023+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9583, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.243493+00', 121, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9584, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.230743+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9585, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.296415+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9586, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.209415+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9587, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.277551+00', 269, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9588, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.273478+00', 274, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9589, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.361031+00', 257, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9590, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.278428+00', 360, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9591, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.315324+00', 326, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9592, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.236346+00', 436, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9593, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.313452+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9594, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.263548+00', 444, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9595, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.413306+00', 300, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9596, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.590997+00', 220, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9597, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.201071+00', 958, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9598, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.414985+00', 751, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9599, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.201071+00', 974, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(9600, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.194425+00', 1007, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(9601, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.327854+00', 928, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(9602, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.824394+00', 507, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9603, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.667421+00', 783, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9604, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.736244+00', 759, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9605, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.410145+00', 1113, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(9606, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.343044+00', 1199, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9607, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.343044+00', 1216, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(9608, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.447978+00', 1121, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 11, 2, NULL, 2, NULL), +(9609, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.738283+00', 916, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(9610, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.26847+00', 1394, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(9611, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.455519+00', 1240, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9612, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.149103+00', 704, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(9613, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.984555+00', 956, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9614, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.179408+00', 869, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9615, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.234671+00', 993, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 26, 3, NULL, 2, NULL), +(9616, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.910491+00', 1304, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(9617, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.204133+00', 1083, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9618, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.832991+00', 620, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(9619, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.950236+00', 1546, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 27, 3, NULL, 2, NULL), +(9620, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.096753+00', 1490, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 28, 3, NULL, 2, NULL), +(9621, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.135141+00', 1477, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9622, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.135141+00', 1502, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 2, NULL), +(9623, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.183239+00', 1464, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9624, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.106397+00', 1747, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9625, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.845046+00', 1326, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9626, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.827128+00', 1458, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9627, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.832842+00', 1822, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9628, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.846029+00', 1832, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(9629, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.846029+00', 1826, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9630, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.824013+00', 1893, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9631, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.665571+00', 2516, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9632, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.096433+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9633, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.118065+00', 322, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9634, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.249888+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9635, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.21802+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9636, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.14072+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9637, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.180555+00', 307, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9638, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.205725+00', 532, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9639, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.258841+00', 508, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9640, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.130724+00', 853, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9641, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.082675+00', 87, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9642, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.074227+00', 295, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9643, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.092664+00', 295, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9644, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.128898+00', 272, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9645, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.28918+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9646, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.125939+00', 304, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9647, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.235695+00', 233, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9648, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.45273+00', 401, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(9649, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.644054+00', 259, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9650, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.644054+00', 264, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(9651, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.733717+00', 221, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9652, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.627259+00', 355, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9653, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.733717+00', 257, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(9654, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.790741+00', 513, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9655, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.822804+00', 661, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9656, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.643788+00', 987, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(9657, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.733934+00', 930, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(9658, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.670713+00', 989, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(9659, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.698212+00', 945, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9660, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.885472+00', 815, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9661, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.748018+00', 1158, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(9662, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.748018+00', 1156, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9663, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.918587+00', 1447, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9664, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.740348+00', 904, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9665, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.846692+00', 1027, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(9666, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.950879+00', 1236, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9667, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.67537+00', 647, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(9668, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.85722+00', 2653, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9669, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.782973+00', 1906, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 30, 3, NULL, 2, NULL), +(9670, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.545241+00', 1147, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 20, 3, NULL, 2, NULL), +(9671, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.658916+00', 1104, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9672, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.908418+00', 948, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(9673, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.415811+00', 1459, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9674, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.415811+00', 1493, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 2, NULL), +(9675, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.871905+00', 1042, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9676, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.347243+00', 1811, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9677, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.540302+00', 1617, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9678, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.194419+00', 2123, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9679, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.7884+00', 2620, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9680, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.831394+00', 2583, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9681, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.7884+00', 2717, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(9682, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.307197+00', 2302, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9683, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.307197+00', 2373, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(9684, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.662192+00', 2545, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 26, 3, NULL, 2, NULL), +(9685, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.698599+00', 3673, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9686, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.554125+00', 146, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9687, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.563228+00', 225, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9688, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.546527+00', 257, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9689, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.516144+00', 449, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9690, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.651893+00', 344, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9691, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.724769+00', 300, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9692, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.921682+00', 340, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9693, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.014699+00', 240, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9694, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.552779+00', 768, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9695, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.130659+00', 351, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9696, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.027856+00', 471, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9697, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.355647+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9698, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.02757+00', 547, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9699, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.236924+00', 473, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9700, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.295379+00', 424, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9701, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.125353+00', 903, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9702, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.251621+00', 806, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9703, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.598025+00', 468, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9704, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.451934+00', 694, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9705, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.66496+00', 521, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9706, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.428261+00', 776, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9707, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.484454+00', 743, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9708, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.568485+00', 667, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9709, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.681681+00', 593, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9710, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.043175+00', 1265, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9711, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:10.975195+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9712, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:10.994353+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9713, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:10.997628+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9714, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:10.97611+00', 165, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9715, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.017922+00', 131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9716, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.016872+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9717, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:10.984143+00', 176, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9718, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.499448+00', 213, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9719, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.668793+00', 204, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9720, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.621215+00', 336, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9721, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.65686+00', 379, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9722, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.682273+00', 362, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9723, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.752988+00', 435, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9724, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.626036+00', 599, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9725, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.084989+00', 168, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9726, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.939778+00', 372, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9727, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.122128+00', 208, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9728, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.158383+00', 272, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9729, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.152153+00', 341, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9730, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.160341+00', 357, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9731, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.020254+00', 572, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9732, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.103127+00', 489, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9733, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.998309+00', 871, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9734, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.759863+00', 69, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9735, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.631302+00', 202, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9736, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.743283+00', 99, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9737, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.706722+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9738, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.710049+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9739, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.754845+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9740, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.759706+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9741, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.7599+00', 101, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9742, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.759879+00', 125, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9743, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.122397+00', 52, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9744, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.030586+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9745, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.081435+00', 160, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9746, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.136964+00', 108, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9747, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.10098+00', 175, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9748, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.204019+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9749, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.12234+00', 165, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9750, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.054082+00', 79, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9751, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.110943+00', 115, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9752, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.084881+00', 162, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9753, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.14807+00', 204, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9754, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.086285+00', 323, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9755, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.084622+00', 339, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9756, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.087368+00', 355, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9757, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.081482+00', 404, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9758, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.162733+00', 425, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9759, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.511032+00', 99, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9760, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.657911+00', 96, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9761, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.739737+00', 135, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9762, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.560764+00', 316, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9763, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.63082+00', 262, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9764, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.638567+00', 256, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9765, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.66062+00', 236, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9766, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.768758+00', 141, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9767, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.714631+00', 263, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9768, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.459454+00', 156, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9769, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.478137+00', 199, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9770, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.515599+00', 190, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9771, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.480546+00', 242, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9772, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.538029+00', 187, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9773, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.61361+00', 120, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9774, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.530858+00', 192, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9775, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.2378+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9776, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.373623+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9777, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.398289+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9778, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.250439+00', 341, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9779, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.326377+00', 269, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9780, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.17785+00', 420, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9781, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.475855+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9782, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.312527+00', 297, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9783, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.372848+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9784, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.811128+00', 39, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9785, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.831519+00', 64, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9786, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.799177+00', 112, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9787, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.747487+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9788, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.799122+00', 140, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9789, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.814074+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9790, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.794276+00', 159, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9791, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.655801+00', 69, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9792, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.691757+00', 66, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9793, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.674658+00', 80, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9794, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.670247+00', 101, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9795, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.712771+00', 78, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9796, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.675057+00', 117, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9797, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.713286+00', 109, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9798, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.579833+00', 115, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9799, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.580086+00', 146, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9800, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.430197+00', 336, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9801, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.54694+00', 244, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9802, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.678328+00', 244, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9803, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.589306+00', 366, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9804, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.641349+00', 318, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9805, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.643289+00', 380, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9806, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.570391+00', 530, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9807, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.853652+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9808, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.788721+00', 202, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9809, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.891526+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9810, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.952349+00', 152, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9811, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.853413+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9812, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.919843+00', 217, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9813, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.772635+00', 386, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9814, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.976939+00', 182, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9815, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.077056+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9816, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.381505+00', 59, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9817, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.407169+00', 49, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9818, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.385385+00', 79, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9819, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.417407+00', 74, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9820, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.419048+00', 81, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9821, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.452882+00', 58, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9822, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.463385+00', 54, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9823, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.626522+00', 109, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9824, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.714252+00', 89, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9825, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.707379+00', 120, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9826, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.675708+00', 205, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9827, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.707678+00', 181, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9828, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.711689+00', 200, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9829, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.685048+00', 231, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9830, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.858113+00', 61, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9831, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.894178+00', 85, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9832, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.919151+00', 75, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9833, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.887441+00', 126, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9834, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.906603+00', 118, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9835, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.894096+00', 153, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9836, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.937596+00', 116, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9837, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.920069+00', 167, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9838, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.931894+00', 202, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9839, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.099497+00', 63, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9840, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.084356+00', 163, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9841, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.118934+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9842, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.087376+00', 185, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9843, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.166864+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9844, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.167052+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9845, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.083809+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9846, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.148743+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9847, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.173243+00', 188, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9848, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.846881+00', 124, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9849, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.898156+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9850, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.908539+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9851, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.865881+00', 172, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9852, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.919481+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9853, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.906085+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9854, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.905675+00', 181, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9855, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:53.887132+00', 55, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9856, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:53.922037+00', 137, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9857, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:53.926911+00', 179, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9858, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.058782+00', 58, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9859, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.054573+00', 98, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9860, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.072553+00', 86, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9861, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.078196+00', 96, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9862, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:18.970114+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(9863, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:18.976138+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(9864, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:18.906839+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(9865, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.022608+00', 186, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(9866, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.112543+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(9867, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:18.964337+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(9868, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:18.970921+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(9869, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:18.992046+00', 293, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(9870, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.107899+00', 196, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(9871, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.617905+00', 142, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9872, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.69475+00', 115, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9873, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.71389+00', 101, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9874, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.714046+00', 133, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9875, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.768405+00', 96, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9876, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.830508+00', 66, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9877, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.753625+00', 149, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9878, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.52987+00', 205, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9879, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.602649+00', 196, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9880, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.490062+00', 478, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9881, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.730498+00', 321, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9882, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.685053+00', 420, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9883, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.618016+00', 537, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9884, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.879207+00', 311, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9885, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.651544+00', 541, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9886, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.81628+00', 454, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9887, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.804974+00', 137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(9888, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.83015+00', 130, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(9889, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.860883+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(9890, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.754758+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(9891, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.876079+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(9892, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.878352+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(9893, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:41.012767+00', 85, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(9894, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.645456+00', 87, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9895, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.579022+00', 183, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9896, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.680306+00', 130, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9897, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.713113+00', 113, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9898, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.681466+00', 187, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9899, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.674856+00', 224, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9900, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.639152+00', 261, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9901, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.871392+00', 99, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9902, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.734098+00', 262, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9903, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.934624+00', 104, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9904, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.016204+00', 100, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9905, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.948269+00', 264, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9906, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.980968+00', 270, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9907, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.953177+00', 307, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9908, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.885217+00', 421, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9909, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.033553+00', 377, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9910, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.661785+00', 100, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9911, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.672732+00', 115, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9912, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.616208+00', 191, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9913, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.661667+00', 148, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9914, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.611803+00', 221, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9915, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.728184+00', 121, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9916, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.696172+00', 164, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9917, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:02.912045+00', 170, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9918, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.04244+00', 146, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9919, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.031325+00', 158, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9920, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:02.863129+00', 357, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9921, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:02.982026+00', 282, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.039268+00', 240, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9923, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.055771+00', 257, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9924, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:02.97578+00', 417, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9925, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:02.955711+00', 616, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9926, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.708257+00', 82, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9927, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.758168+00', 51, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9928, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.731375+00', 94, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9929, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.747165+00', 77, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9930, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.74652+00', 92, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9931, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.763433+00', 80, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9932, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.75777+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9933, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.492867+00', 100, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9934, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.749605+00', 107, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9935, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.634664+00', 227, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9936, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.688492+00', 176, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9937, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.666742+00', 240, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9938, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.583873+00', 418, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9939, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.717947+00', 304, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9940, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.542662+00', 574, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9941, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.748893+00', 393, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9942, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.689061+00', 67, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9943, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.768326+00', 87, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9944, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.673482+00', 204, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9945, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.709064+00', 299, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9946, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.747924+00', 266, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9947, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.750012+00', 285, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9948, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.799299+00', 292, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9949, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.059496+00', 150, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9950, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.08285+00', 275, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9951, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.005887+00', 356, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9952, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.127492+00', 245, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9953, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.084688+00', 309, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9954, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.08299+00', 360, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9955, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.11193+00', 348, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9956, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.080443+00', 398, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9957, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.186976+00', 379, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9958, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:24.916107+00', 144, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9959, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.038407+00', 203, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9960, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.043972+00', 282, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9961, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.035282+00', 312, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9962, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:24.919783+00', 428, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9963, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.022391+00', 382, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9964, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.043936+00', 445, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9965, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.034909+00', 460, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9966, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:24.932174+00', 585, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9967, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.667572+00', 93, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9968, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.640683+00', 130, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9969, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.652751+00', 184, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9970, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.692264+00', 188, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9971, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.647309+00', 244, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9972, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.862116+00', 178, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9973, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.742575+00', 322, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9974, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.321544+00', 76, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9975, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.346593+00', 71, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9976, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.351553+00', 70, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9977, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.341069+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9978, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.358115+00', 86, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9979, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.369407+00', 100, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(9980, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.389187+00', 93, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9981, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.034031+00', 99, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(9982, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:05.926788+00', 246, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(9983, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.082598+00', 145, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9984, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.183589+00', 174, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9985, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.034889+00', 326, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(9986, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.147744+00', 233, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(9987, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.13352+00', 284, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(9988, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.035544+00', 385, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(9989, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.204291+00', 326, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(9990, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.73488+00', 55, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(9991, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.738065+00', 55, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(9992, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.738767+00', 94, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(9993, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.766167+00', 75, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(9994, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.817161+00', 45, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(9995, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.805306+00', 106, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(9996, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.816905+00', 101, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(9997, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.776991+00', 174, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(9998, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.754797+00', 299, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(9999, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.702166+00', 364, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10000, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.939003+00', 276, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10001, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.988902+00', 250, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10002, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.886569+00', 399, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10003, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.981995+00', 333, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10004, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.796992+00', 534, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10005, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.049476+00', 289, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10006, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.740708+00', 146, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(10007, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.720661+00', 174, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(10008, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.79031+00', 139, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(10009, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.756711+00', 203, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(10010, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.703923+00', 266, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(10011, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.779243+00', 201, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(10012, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.753888+00', 245, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(10013, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.792962+00', 61, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10014, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.758793+00', 105, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10015, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.75815+00', 152, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10016, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.801628+00', 109, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10017, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.811494+00', 111, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10018, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.763223+00', 191, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10019, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.726018+00', 226, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10020, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.859874+00', 93, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10021, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.777635+00', 242, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10022, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.750664+00', 77, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(10023, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.779161+00', 91, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(10024, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.742975+00', 147, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(10025, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.815794+00', 111, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(10026, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.828325+00', 103, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(10027, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.812524+00', 127, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(10028, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.827796+00', 113, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(10029, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.657894+00', 56, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(10030, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.664682+00', 74, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(10031, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.706277+00', 107, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(10032, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.701905+00', 142, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(10033, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.708317+00', 138, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(10034, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.728495+00', 192, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(10035, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.694142+00', 230, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(10036, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.628489+00', 285, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10037, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.804083+00', 382, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10038, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.891796+00', 381, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10039, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.160644+00', 163, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10040, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.843844+00', 493, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10041, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.840017+00', 545, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10042, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.144761+00', 316, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10043, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.790803+00', 684, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10044, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.946473+00', 557, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10045, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.549552+00', 114, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(10046, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.578003+00', 141, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(10047, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.598275+00', 107, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(10048, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.609384+00', 116, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(10049, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.645997+00', 136, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(10050, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.635443+00', 180, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(10051, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.623811+00', 220, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(10052, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:30.924414+00', 163, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10053, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:30.903916+00', 195, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10054, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:30.997522+00', 118, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10055, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.010162+00', 145, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10056, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.007738+00', 216, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10057, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:30.925771+00', 314, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10058, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:30.974482+00', 274, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10059, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.051347+00', 217, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10060, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.004642+00', 324, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10061, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.750981+00', 70, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(10062, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.737261+00', 93, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(10063, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.756749+00', 95, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(10064, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.742579+00', 113, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(10065, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.779232+00', 82, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(10066, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.789383+00', 89, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(10067, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.822899+00', 62, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(10068, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.889927+00', 90, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10069, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.97683+00', 92, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10070, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.982099+00', 101, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10071, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.933697+00', 163, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10072, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.999819+00', 109, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10073, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.971525+00', 157, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10074, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.983676+00', 178, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10075, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.974176+00', 208, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10076, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.991568+00', 211, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10077, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.024268+00', 458, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10078, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.025002+00', 618, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10079, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.507426+00', 300, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10080, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.393169+00', 438, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10081, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.42836+00', 570, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10082, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.458821+00', 646, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10083, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.459989+00', 654, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10084, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.53493+00', 645, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10085, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.460496+00', 851, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10086, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.521859+00', 138, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(10087, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.528441+00', 150, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(10088, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.630618+00', 72, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(10089, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.586151+00', 154, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(10090, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.630167+00', 116, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(10091, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.632299+00', 116, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(10092, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.600624+00', 154, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(10093, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.492647+00', 186, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10094, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.491039+00', 239, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10095, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.549939+00', 212, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10096, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.670918+00', 105, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10097, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.596087+00', 237, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10098, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.556201+00', 301, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10099, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.614406+00', 253, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10100, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.667171+00', 250, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10101, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.614609+00', 327, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10102, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:00.945048+00', 215, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10103, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.037813+00', 128, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10104, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:00.950739+00', 268, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10105, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.13539+00', 244, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10106, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.163307+00', 234, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10107, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.163567+00', 404, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10108, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.058365+00', 518, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10109, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.118315+00', 506, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10110, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.232908+00', 586, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10111, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.635141+00', 207, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10112, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.756055+00', 110, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10113, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.682905+00', 198, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10114, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.758466+00', 129, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10115, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.605566+00', 287, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10116, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.755265+00', 142, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10117, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.771618+00', 142, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10118, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.779676+00', 136, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10119, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.768304+00', 206, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10120, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.543713+00', 289, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10121, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.552697+00', 348, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10122, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.645767+00', 307, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10123, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.645685+00', 312, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10124, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.627688+00', 333, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10125, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.760272+00', 237, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10126, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.667806+00', 392, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10127, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.648893+00', 455, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10128, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.650771+00', 481, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10129, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.026094+00', 440, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10130, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.31996+00', 277, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10131, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.234895+00', 378, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10132, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.322764+00', 448, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10133, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.360874+00', 469, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10134, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.165412+00', 701, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10135, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.372659+00', 468, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10136, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.24193+00', 737, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10137, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.016739+00', 1036, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10138, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.77233+00', 553, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10139, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.850752+00', 398, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10140, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.745477+00', 645, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(10141, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.784883+00', 617, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(10142, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.850752+00', 575, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(10143, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.751581+00', 888, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(10144, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.767549+00', 930, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(10145, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.130729+00', 752, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(10146, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.130729+00', 751, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10147, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.115923+00', 1156, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10148, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.115923+00', 1159, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(10149, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:35.935401+00', 1364, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(10150, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.890358+00', 492, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10151, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.143762+00', 1339, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10152, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.143235+00', 1488, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10153, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.402742+00', 589, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(10154, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.723385+00', 1384, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10155, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.350687+00', 1779, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10156, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.350687+00', 1782, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(10157, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.619567+00', 585, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10158, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.260605+00', 969, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10159, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.792564+00', 2031, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10160, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.371329+00', 2468, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10161, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.371329+00', 2508, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(10162, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.655034+00', 2414, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10163, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.655034+00', 2459, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(10164, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.992681+00', 1126, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10165, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.823522+00', 2296, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10166, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.248469+00', 1908, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(10167, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.235699+00', 896, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10168, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.838073+00', 2419, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10169, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.280215+00', 2053, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(10170, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.409347+00', 3006, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10171, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.702669+00', 2842, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10172, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.626839+00', 1931, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10173, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.246655+00', 2654, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10174, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.246655+00', 2687, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(10175, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.154778+00', 1817, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10176, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.236002+00', 2068, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10177, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.236002+00', 2120, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10178, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.415927+00', 88, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10179, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.35501+00', 167, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10180, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.34496+00', 227, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10181, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.447593+00', 170, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10182, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.440232+00', 195, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10183, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.290288+00', 348, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10184, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.492022+00', 187, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10185, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.39129+00', 294, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10186, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.383562+00', 460, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10187, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.840119+00', 462, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10188, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.908749+00', 412, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10189, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.889283+00', 450, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10190, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.839965+00', 527, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10191, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.14585+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10192, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.823012+00', 564, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10193, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.178293+00', 231, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10194, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.989222+00', 435, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10195, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.954166+00', 512, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10196, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.179275+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10197, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.009137+00', 477, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10198, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.308557+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10199, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.158231+00', 481, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10200, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.339072+00', 308, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10201, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:05.956296+00', 699, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10202, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.013154+00', 653, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10203, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.673452+00', 302, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10204, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.750598+00', 319, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10205, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.775042+00', 493, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10206, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.884956+00', 389, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10207, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.953709+00', 337, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10208, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.861387+00', 431, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10209, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.925813+00', 400, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10210, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.082467+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10211, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.95418+00', 447, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10212, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.008559+00', 417, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10213, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.921452+00', 578, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10214, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.924767+00', 598, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10215, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.216987+00', 327, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10216, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.07248+00', 486, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10217, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.95088+00', 631, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10218, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.121697+00', 476, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10219, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:05.946597+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10220, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:05.802488+00', 291, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10221, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:05.95967+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10222, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.007466+00', 226, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10223, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.128905+00', 99, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10224, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:05.835077+00', 426, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10225, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.050336+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10226, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.024551+00', 286, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10227, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.158641+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10228, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.128476+00', 218, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10229, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.027664+00', 324, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10230, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.026453+00', 352, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10231, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.169219+00', 217, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10232, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:05.988167+00', 409, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10233, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.259815+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10234, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:05.976236+00', 469, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10235, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.714173+00', 332, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10236, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.873762+00', 219, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10237, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.740968+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10238, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.727185+00', 470, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10239, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.905206+00', 296, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10240, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.744408+00', 490, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10241, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.875082+00', 372, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10242, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.049033+00', 230, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10243, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.916027+00', 369, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10244, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.931045+00', 367, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10245, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.123057+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10246, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.143984+00', 234, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10247, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.106461+00', 310, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10248, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.195765+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10249, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:35.802601+00', 636, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10250, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.107158+00', 343, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10251, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.725737+00', 112, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10252, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.748569+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10253, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.765157+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10254, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.726263+00', 196, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10255, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.847425+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10256, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.850504+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10257, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.815053+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10258, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.883656+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10259, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.882602+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10260, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.928927+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10261, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.805502+00', 267, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10262, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.934062+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10263, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.87111+00', 219, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10264, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.951474+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10265, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.045681+00', 160, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10266, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.996789+00', 235, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10267, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.689071+00', 231, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10268, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.731054+00', 195, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10269, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.691394+00', 294, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10270, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.679729+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10271, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.724439+00', 320, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10272, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.721547+00', 329, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10273, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.798507+00', 313, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10274, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.935974+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10275, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.936246+00', 252, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10276, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.007342+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10277, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.966512+00', 234, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10278, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.039854+00', 221, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10279, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.935177+00', 327, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10280, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.969478+00', 293, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10281, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.84636+00', 412, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10282, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.039416+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10283, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.848911+00', 119, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10284, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.837142+00', 146, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10285, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.87186+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10286, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.868687+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10287, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.855122+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10288, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.857818+00', 158, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10289, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.861774+00', 174, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10290, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:12.981455+00', 48, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10291, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.058458+00', 68, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10292, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.061227+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10293, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.135374+00', 58, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10294, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.088084+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10295, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:12.972507+00', 312, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10296, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.087124+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10297, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.075101+00', 318, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10298, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.100707+00', 368, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10299, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:47.969172+00', 174, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10300, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.159478+00', 123, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10301, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.193886+00', 200, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10302, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.209137+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10303, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.194323+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10304, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.207509+00', 212, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10305, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.170002+00', 268, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10306, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.800391+00', 96, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10307, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.761284+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10308, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.799059+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10309, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.875178+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10310, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.81829+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10311, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.814275+00', 173, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10312, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.921967+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10313, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.932066+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10314, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.867708+00', 144, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10315, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:31.943777+00', 54, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10316, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.025771+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10317, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:31.951115+00', 147, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10318, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:31.980086+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10319, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.007967+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10320, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.030418+00', 89, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10321, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.021295+00', 106, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10322, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:36.904554+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10323, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:36.904721+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10324, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.031954+00', 158, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10325, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.097031+00', 127, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10326, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:36.958743+00', 274, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10327, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:36.938975+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10328, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:36.939462+00', 320, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10329, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:36.947381+00', 336, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10330, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.143335+00', 152, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10331, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.31816+00', 61, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10332, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.313784+00', 109, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10333, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.267949+00', 157, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10334, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.312805+00', 116, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10335, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.348318+00', 109, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10336, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.350064+00', 120, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10337, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.351414+00', 147, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10338, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.393956+00', 130, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10339, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.414694+00', 175, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10340, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.821387+00', 113, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10341, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.912189+00', 66, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10342, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.783155+00', 211, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10343, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.821712+00', 181, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10344, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.901866+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10345, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.915805+00', 149, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10346, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.905733+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10347, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.059027+00', 115, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10348, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.016811+00', 221, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10349, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.083605+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10350, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.05711+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10351, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.130234+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10352, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.129132+00', 188, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10353, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.166175+00', 162, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10354, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.125411+00', 281, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10355, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.087332+00', 354, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10356, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.602253+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10357, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.83143+00', 51, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10358, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.693383+00', 274, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10359, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.785553+00', 238, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10360, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.913071+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10361, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.77669+00', 260, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10362, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.778845+00', 291, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10363, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.836035+00', 161, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10364, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.905325+00', 110, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10365, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.844757+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10366, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.848942+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10367, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.92915+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10368, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.969376+00', 179, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10369, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.920752+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10370, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.885602+00', 272, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10371, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.880663+00', 287, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10372, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.674118+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10373, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.744174+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10374, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.716493+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10375, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.718078+00', 225, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10376, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.777895+00', 181, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10377, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.749052+00', 218, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10378, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.78245+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10379, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:21.782904+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10380, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:21.938331+00', 330, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10381, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:21.998594+00', 340, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10382, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.003587+00', 331, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10383, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:21.85715+00', 551, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10384, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:21.926262+00', 513, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10385, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:21.949517+00', 492, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10386, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:21.952352+00', 511, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10387, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.056122+00', 554, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10388, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.055777+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10389, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:46.961157+00', 406, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10390, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:46.983357+00', 370, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10391, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.058708+00', 364, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10392, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.056674+00', 405, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10393, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.205228+00', 357, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10394, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.242661+00', 393, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10395, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.071251+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10396, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.097677+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10397, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.14684+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10398, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.144167+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10399, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.130023+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10400, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.126379+00', 179, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10401, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.138398+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10402, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.103835+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10403, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.236435+00', 128, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10404, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.632872+00', 181, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10405, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.641115+00', 176, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10406, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.737699+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10407, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.755376+00', 141, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10408, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.690716+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10409, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.756716+00', 190, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10410, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.780831+00', 167, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10411, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:21.904472+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10412, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:21.903808+00', 214, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10413, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.034343+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10414, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:21.947056+00', 421, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10415, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.016373+00', 396, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10416, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:21.87658+00', 549, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10417, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.367294+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10418, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:21.959216+00', 528, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10419, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.368213+00', 138, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10420, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.687594+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10421, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.713938+00', 222, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10422, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.690561+00', 266, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10423, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.786582+00', 181, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10424, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.712572+00', 267, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10425, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.762669+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10426, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.822346+00', 217, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10427, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.793122+00', 56, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10428, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.827021+00', 67, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10429, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.776073+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10430, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.786046+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10431, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.838363+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10432, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.817964+00', 119, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10433, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.877384+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10434, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.860456+00', 109, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10435, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.782185+00', 206, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10436, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.686197+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10437, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.686785+00', 198, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10438, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.655024+00', 280, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10439, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.701287+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10440, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.791516+00', 155, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10441, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.684147+00', 272, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10442, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.716054+00', 252, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10443, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.823662+00', 53, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10444, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.73308+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10445, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.834232+00', 144, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10446, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.780478+00', 198, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10447, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.918041+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10448, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.928464+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10449, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.832893+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10450, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.885674+00', 169, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10451, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.858663+00', 219, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10452, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.671948+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10453, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.670415+00', 127, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10454, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.689861+00', 116, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10455, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.701687+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10456, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.71232+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10457, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.671918+00', 170, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10458, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.702707+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10459, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:51.812768+00', 191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10460, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:51.917338+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10461, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:51.960725+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10462, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:51.975227+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10463, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:51.961497+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10464, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:51.977603+00', 212, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10465, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:51.976423+00', 226, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10466, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.014157+00', 217, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10467, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.062047+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10468, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.634693+00', 54, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10469, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.649802+00', 154, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10470, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.686342+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10471, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.705996+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10472, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.709976+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10473, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.67749+00', 169, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10474, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.695864+00', 158, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10475, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.677373+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10476, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.762812+00', 115, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10477, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.717928+00', 168, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10478, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.719757+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10479, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.822013+00', 138, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10480, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.72055+00', 258, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10481, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.735319+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10482, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.772964+00', 323, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10483, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.717649+00', 388, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10484, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.872334+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10485, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.863648+00', 99, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10486, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.843782+00', 129, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10487, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.820111+00', 165, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10488, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.873511+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10489, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.839791+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10490, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.813524+00', 186, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10491, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:58.818585+00', 307, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10492, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:58.823646+00', 391, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10493, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:58.885169+00', 331, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10494, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:58.891683+00', 342, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10495, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:58.915188+00', 494, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10496, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.217535+00', 207, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10497, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.092982+00', 340, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10498, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.183145+00', 376, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10499, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:58.924809+00', 724, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10500, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.020321+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10501, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.029857+00', 174, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10502, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.019093+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10503, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.052235+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10504, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:05.963807+00', 366, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10505, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.121959+00', 228, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10506, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.253517+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10507, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.082201+00', 322, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10508, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.206485+00', 203, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10509, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.801088+00', 125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10510, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.846423+00', 178, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10511, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.843283+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10512, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.912701+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10513, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.870134+00', 185, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10514, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.848164+00', 223, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10515, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.813265+00', 281, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10516, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.678718+00', 157, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10517, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.781364+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10518, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.721209+00', 351, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10519, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.811465+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10520, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.761022+00', 351, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10521, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.858411+00', 260, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10522, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.850057+00', 276, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10523, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.768506+00', 359, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10524, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.997061+00', 185, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10525, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:14.887909+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10526, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:14.947297+00', 173, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10527, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:14.975262+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10528, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:14.929515+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10529, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.010347+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10530, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.074536+00', 156, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10531, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.020435+00', 211, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10532, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.027078+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10533, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.018146+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10534, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.01829+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10535, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.12229+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10536, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.008303+00', 430, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10537, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.120608+00', 330, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10538, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.11483+00', 334, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10539, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.07788+00', 426, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10540, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.101632+00', 418, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10541, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:56.839096+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10542, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:56.88336+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10543, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:56.898831+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10544, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:56.875468+00', 264, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10545, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.010967+00', 123, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10546, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:56.938324+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10547, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:56.895152+00', 268, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10548, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.060191+00', 57, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10549, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.025103+00', 93, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10550, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.040102+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10551, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.049135+00', 100, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10552, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.090054+00', 76, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10553, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.074998+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10554, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.071789+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10555, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.056994+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10556, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.040207+00', 155, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10557, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.760614+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10558, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.717657+00', 257, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10559, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.763379+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10560, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.718858+00', 263, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10561, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.764861+00', 239, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10562, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.760508+00', 251, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10563, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.831078+00', 182, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10564, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.757471+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10565, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.819321+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10566, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.816494+00', 89, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10567, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.814578+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10568, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.848215+00', 100, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10569, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.898906+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10570, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.957555+00', 138, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10571, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.875501+00', 222, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10572, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.978223+00', 211, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10573, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.893228+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10574, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.921231+00', 63, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10575, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.912994+00', 88, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10576, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.913305+00', 100, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10577, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.865407+00', 154, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10578, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.925649+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10579, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.969622+00', 63, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10580, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.152011+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10581, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.179812+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10582, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.111555+00', 209, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10583, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.151929+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10584, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.07131+00', 258, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10585, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.193989+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10586, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.188037+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10587, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.114729+00', 259, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10588, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.092153+00', 300, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10589, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.017517+00', 41, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10590, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.149962+00', 69, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10591, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.068692+00', 207, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10592, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.094058+00', 188, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10593, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.091197+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10594, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.257008+00', 60, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10595, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.246311+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10596, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.484203+00', 168, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10597, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.484622+00', 226, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10598, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.502793+00', 217, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10599, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.53549+00', 286, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10600, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.636606+00', 184, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10601, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.674685+00', 192, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10602, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.756861+00', 112, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10603, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.472463+00', 413, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10604, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.644587+00', 422, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10605, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.78203+00', 289, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10606, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.73432+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10607, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.968509+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10608, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.849714+00', 307, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10609, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.73718+00', 445, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10610, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.748826+00', 443, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10611, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.942785+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10612, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:19.916497+00', 328, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10613, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.201755+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10614, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.765097+00', 202, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10615, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.753284+00', 229, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10616, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.758043+00', 240, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10617, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.765224+00', 235, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10618, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.793199+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10619, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.738122+00', 277, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10620, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.74385+00', 280, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10621, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.670116+00', 139, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10622, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.676577+00', 183, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10623, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.745255+00', 189, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10624, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.72621+00', 254, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10625, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.809035+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10626, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.756114+00', 319, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10627, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.894037+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10628, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.959581+00', 141, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10629, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.776814+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10630, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.416528+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10631, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.52668+00', 151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10632, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.483522+00', 200, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10633, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.579078+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10634, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.555675+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10635, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.608474+00', 179, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10636, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.634369+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10637, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.569773+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10638, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.616395+00', 96, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10639, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.590046+00', 130, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10640, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.611332+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10641, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.606361+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10642, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.669238+00', 81, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10643, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.720738+00', 43, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10644, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.695623+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10645, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.678612+00', 114, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10646, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:43.830135+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10647, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:43.831078+00', 111, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10648, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:43.864832+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10649, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:43.884664+00', 163, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10650, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:44.0208+00', 84, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10651, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:43.887283+00', 237, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10652, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:44.020752+00', 135, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10653, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:07.765889+00', 308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10654, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:07.875006+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10655, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:07.843477+00', 296, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10656, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:07.869995+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10657, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.068948+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10658, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:07.881232+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10659, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:07.770433+00', 474, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10660, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:07.903531+00', 354, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10661, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.071304+00', 281, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10662, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.779454+00', 97, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10663, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.761973+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10664, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.802343+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10665, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.807097+00', 114, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10666, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.818003+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10667, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.820472+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10668, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.816518+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10669, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.042065+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10670, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.026772+00', 179, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10671, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.041804+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10672, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.092379+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10673, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.188998+00', 134, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10674, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.041286+00', 288, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10675, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.162562+00', 181, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10676, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.161476+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10677, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.059719+00', 308, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10678, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:03.910578+00', 217, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10679, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:03.986852+00', 178, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10680, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:03.953149+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10681, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:03.983574+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10682, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.004457+00', 238, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10683, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.078769+00', 161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10684, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.116444+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10685, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.777336+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10686, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.813844+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10687, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.790427+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10688, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.824084+00', 113, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10689, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.814525+00', 152, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10690, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.819336+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10691, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.826973+00', 150, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10692, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.926637+00', 51, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10693, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.829004+00', 155, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10694, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:54.84887+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10695, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:54.79838+00', 258, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10696, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:54.835179+00', 241, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10697, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:54.736514+00', 315, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10698, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:54.845898+00', 208, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10699, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:54.971359+00', 137, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10700, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:54.866516+00', 274, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10701, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:10.954436+00', 208, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10702, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.087534+00', 101, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10703, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.109059+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10704, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.090653+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10705, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.031367+00', 216, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10706, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.017962+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10707, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.054243+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10708, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.068721+00', 221, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10709, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.007134+00', 288, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10710, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.856275+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10711, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.835111+00', 127, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10712, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.80927+00', 171, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10713, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.855818+00', 165, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10714, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.878448+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10715, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.866533+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10716, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.839141+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10717, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.481243+00', 84, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10718, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.496391+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10719, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.520954+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10720, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.511101+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10721, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.490279+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10722, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.549458+00', 80, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10723, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.48667+00', 144, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10724, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.583592+00', 65, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10725, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.501901+00', 162, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10726, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.741628+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10727, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.779067+00', 178, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10728, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.806565+00', 198, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10729, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.83983+00', 165, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10730, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.841014+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10731, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.840867+00', 200, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10732, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.870187+00', 183, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10733, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.002135+00', 269, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10734, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.021278+00', 323, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10735, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:34.993152+00', 371, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10736, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.245704+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10737, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.072518+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10738, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.325812+00', 172, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10739, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.074524+00', 455, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10740, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.128896+00', 411, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10741, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.220779+00', 330, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10742, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.794839+00', 158, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10743, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.856565+00', 147, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10744, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.857271+00', 212, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10745, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.950904+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10746, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.949023+00', 153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10747, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.872948+00', 252, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10748, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.951205+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10749, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.357188+00', 140, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10750, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.396802+00', 141, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10751, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.402563+00', 184, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10752, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.375346+00', 224, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10753, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.491763+00', 119, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10754, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.475901+00', 157, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10755, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.381311+00', 257, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10756, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.489896+00', 182, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10757, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.443932+00', 228, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10758, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:58.89869+00', 163, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10759, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:58.851086+00', 326, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10760, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:58.939736+00', 273, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10761, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:58.922026+00', 304, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10762, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:58.942459+00', 323, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10763, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.064744+00', 221, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10764, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:58.954098+00', 341, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10765, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.159352+00', 201, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10766, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.042295+00', 425, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10767, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.569923+00', 247, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10768, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.52543+00', 295, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10769, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.56979+00', 311, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10770, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.646478+00', 284, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10771, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.329327+00', 639, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10772, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.76416+00', 260, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10773, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.65658+00', 378, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10774, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.577712+00', 522, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10775, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.81605+00', 350, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10776, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.604587+00', 157, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10777, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.590192+00', 175, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10778, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.572896+00', 211, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10779, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.705751+00', 193, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10780, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.68628+00', 234, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10781, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.68584+00', 278, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10782, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.809488+00', 194, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10783, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.734068+00', 305, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10784, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.556597+00', 588, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10785, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.477291+00', 113, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10786, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.568747+00', 233, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10787, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.476917+00', 451, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10788, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.563616+00', 376, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10789, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.601457+00', 342, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10790, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.827394+00', 247, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10791, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.666848+00', 425, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10792, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.818212+00', 329, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10793, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.440525+00', 843, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10794, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.497589+00', 111, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10795, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.494646+00', 206, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10796, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.591105+00', 155, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10797, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.630664+00', 201, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10798, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.589969+00', 265, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10799, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.629954+00', 231, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10800, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.648359+00', 225, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10801, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.642335+00', 231, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10802, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.588023+00', 587, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10803, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.383188+00', 165, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10804, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.389898+00', 196, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10805, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.4619+00', 139, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10806, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.49294+00', 139, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10807, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.493017+00', 266, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10808, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.521231+00', 322, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10809, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.525182+00', 346, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10810, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.43476+00', 442, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10811, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.461945+00', 568, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10812, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.374733+00', 208, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10813, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.463722+00', 192, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10814, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.462775+00', 255, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10815, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.582308+00', 136, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10816, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.499756+00', 255, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10817, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.554572+00', 208, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10818, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.564046+00', 194, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10819, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.592774+00', 183, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10820, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.558661+00', 317, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10821, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.267204+00', 105, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10822, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.291808+00', 102, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10823, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.22795+00', 187, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10824, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.145751+00', 336, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10825, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.247506+00', 248, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10826, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.279981+00', 228, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10827, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.137441+00', 383, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10828, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.239313+00', 297, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10829, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.068481+00', 458, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10830, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.154463+00', 152, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(10831, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.145762+00', 219, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(10832, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.320083+00', 71, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(10833, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.334282+00', 91, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(10834, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.147688+00', 301, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(10835, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.366322+00', 83, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(10836, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.368466+00', 189, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(10837, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.360548+00', 208, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(10838, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.316044+00', 287, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(10839, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:56.776485+00', 281, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(10840, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:56.967711+00', 538, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10841, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.110018+00', 603, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(10842, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.033453+00', 702, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(10843, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.187721+00', 587, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(10844, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:56.770795+00', 1071, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(10845, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.642902+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10846, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.528885+00', 377, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10847, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.102794+00', 829, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(10848, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.556277+00', 547, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(10849, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.561571+00', 606, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(10850, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.535572+00', 643, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10851, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.506287+00', 815, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10852, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.461855+00', 875, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(10853, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.291324+00', 1055, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10854, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:56.922374+00', 1450, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10855, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:56.922374+00', 1453, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(10856, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.298318+00', 1119, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10857, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.431073+00', 988, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10858, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.327273+00', 1091, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10859, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.643861+00', 795, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10860, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.643861+00', 810, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(10861, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.65967+00', 874, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10862, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.092355+00', 697, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10863, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.092355+00', 700, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(10864, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.085636+00', 718, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(10865, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.100407+00', 716, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10866, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.088444+00', 804, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10867, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.42425+00', 480, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10868, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.09659+00', 837, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10869, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.218303+00', 1716, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(10870, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.091755+00', 890, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10871, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.091755+00', 905, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(10872, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.237578+00', 1775, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10873, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.656223+00', 1505, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10874, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.298307+00', 979, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10875, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.077623+00', 144, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10876, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.042693+00', 229, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10877, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.068358+00', 208, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10878, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.248007+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10879, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.212567+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10880, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.161639+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10881, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.170241+00', 253, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10882, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.304643+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10883, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.286322+00', 157, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10884, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.308592+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10885, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.308694+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10886, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.32926+00', 150, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10887, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.40692+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10888, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.379578+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10889, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.296602+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10890, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.43111+00', 102, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10891, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.400443+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10892, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.421964+00', 227, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10893, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.640535+00', 238, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10894, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.627849+00', 285, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10895, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.626106+00', 341, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10896, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.656528+00', 309, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10897, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.468356+00', 501, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10898, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.59017+00', 403, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10899, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.582203+00', 454, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10900, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.529471+00', 520, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10901, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.421793+00', 656, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10902, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.676222+00', 433, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10903, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.585655+00', 533, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10904, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.50762+00', 612, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10905, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.579428+00', 559, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10906, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.515102+00', 621, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10907, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.162598+00', 78, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10908, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.207284+00', 73, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10909, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.206988+00', 75, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10910, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.521091+00', 75, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10911, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.53238+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10912, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.601674+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10913, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.673716+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10914, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.721676+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10915, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.695306+00', 222, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10916, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.671788+00', 254, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10917, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.720128+00', 208, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10918, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.794184+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10919, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.729078+00', 307, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10920, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.784812+00', 279, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10921, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.736938+00', 336, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.790916+00', 304, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10923, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.66729+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10924, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.688946+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10925, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.704551+00', 153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10926, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.704563+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10927, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.686211+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10928, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.706028+00', 228, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10929, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.748692+00', 267, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10930, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.972627+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10931, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.151842+00', 290, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10932, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.27998+00', 192, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10933, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.178177+00', 300, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10934, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.993036+00', 551, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10935, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.297428+00', 243, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10936, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.298498+00', 252, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10937, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.295776+00', 266, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10938, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.180253+00', 381, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10939, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.184329+00', 91, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10940, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.203356+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10941, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.211024+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10942, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.209636+00', 253, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10943, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.268838+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10944, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.256209+00', 253, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10945, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.270281+00', 270, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10946, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.46622+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10947, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.531588+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10948, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.405427+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10949, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.475759+00', 242, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10950, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.64007+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10951, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.562309+00', 244, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10952, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.560481+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10953, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.5805+00', 316, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10954, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.682336+00', 260, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10955, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.021371+00', 45, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10956, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.016041+00', 55, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10957, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.039544+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10958, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.184845+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10959, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.244644+00', 119, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10960, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.263718+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10961, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.176841+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10962, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.184681+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(10963, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.309335+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10964, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.318334+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10965, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.328064+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10966, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.250454+00', 245, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10967, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.383826+00', 127, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10968, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.343273+00', 164, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10969, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.408562+00', 111, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10970, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.408778+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10971, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:23.978109+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10972, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:23.969914+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(10973, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.044748+00', 348, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10974, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.059732+00', 360, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10975, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.105029+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10976, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.045793+00', 494, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10977, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.191363+00', 354, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10978, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.424923+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10979, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.471726+00', 197, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10980, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.252939+00', 423, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10981, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.24493+00', 473, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10982, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.489483+00', 249, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(10983, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.195054+00', 545, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10984, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.45066+00', 317, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(10985, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.412307+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(10986, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.448386+00', 332, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10987, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.180875+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(10988, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.204594+00', 223, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(10989, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.180762+00', 304, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(10990, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.477814+00', 109, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(10991, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.394283+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(10992, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.38522+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(10993, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.394448+00', 284, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(10994, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.481209+00', 315, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(10995, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.47413+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(10996, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.318524+00', 509, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(10997, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.442125+00', 383, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(10998, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.331586+00', 526, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(10999, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.597798+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11000, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.506045+00', 420, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11001, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.608896+00', 366, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11002, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.637591+00', 363, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11003, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.196395+00', 163, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11004, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.30361+00', 62, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11005, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.081545+00', 334, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11006, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.391415+00', 215, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11007, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.391417+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11008, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.208904+00', 497, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11009, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.397228+00', 374, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11010, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.594303+00', 301, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11011, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.580665+00', 342, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11012, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.704096+00', 339, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11013, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.646544+00', 398, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11014, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.786176+00', 263, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11015, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.795654+00', 277, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11016, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.806209+00', 274, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11017, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.867868+00', 242, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11018, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.872918+00', 341, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11019, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.272145+00', 283, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11020, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.364613+00', 298, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11021, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.359818+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11022, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.266265+00', 436, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11023, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.484959+00', 246, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11024, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.434002+00', 316, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11025, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.618559+00', 166, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11026, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.316799+00', 116, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11027, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.304979+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11028, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.474058+00', 63, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11029, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.396004+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11030, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.454217+00', 143, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11031, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.506582+00', 168, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11032, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.564329+00', 174, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11033, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.379002+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11034, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.556134+00', 192, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11035, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.252714+00', 351, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11036, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.38989+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11037, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.341398+00', 307, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11038, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.258858+00', 404, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11039, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.449332+00', 311, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11040, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.396043+00', 392, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11041, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.644211+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11042, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.452953+00', 347, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11043, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.417923+00', 441, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11044, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.682782+00', 197, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11045, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.7236+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11046, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.634023+00', 328, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11047, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.719451+00', 251, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11048, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.427001+00', 555, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11049, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.740811+00', 300, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11050, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.766258+00', 283, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11051, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.015831+00', 212, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11052, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.02612+00', 360, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11053, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.126302+00', 255, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11054, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.177349+00', 203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11055, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.224374+00', 230, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11056, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.409798+00', 50, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11057, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.329894+00', 176, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11058, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.027451+00', 486, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11059, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.328007+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11060, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.409614+00', 109, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11061, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.302135+00', 219, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11062, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.253424+00', 289, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11063, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.267606+00', 283, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11064, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.220686+00', 327, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11065, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.333428+00', 217, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11066, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.316837+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11067, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:30.949204+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11068, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:30.933991+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11069, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:30.938171+00', 98, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11070, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:30.940834+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11071, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.210188+00', 120, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11072, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.234112+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11073, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.256848+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11074, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.200089+00', 230, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11075, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.211915+00', 213, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11076, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.377295+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11077, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.467427+00', 63, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11078, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.383298+00', 197, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11079, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.366715+00', 222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11080, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.527561+00', 60, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11081, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.49517+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11082, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.584835+00', 81, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11083, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:56.959519+00', 90, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11084, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:56.908788+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11085, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:56.862882+00', 370, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11086, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.074339+00', 257, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11087, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:56.891797+00', 440, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11088, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:56.942129+00', 411, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11089, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.170909+00', 231, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11090, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.229355+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11091, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.343867+00', 147, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11092, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.15566+00', 429, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11093, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.291061+00', 294, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11094, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.085741+00', 555, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11095, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.249656+00', 416, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11096, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.398206+00', 289, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11097, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.54269+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11098, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.5423+00', 293, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11099, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:29.985198+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11100, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:29.794894+00', 626, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11101, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.292302+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11102, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.10616+00', 387, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11103, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:29.985755+00', 536, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11104, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.067871+00', 455, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11105, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.008411+00', 600, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11106, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.372724+00', 258, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11107, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.359663+00', 270, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11108, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.154167+00', 512, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11109, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.280268+00', 382, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11110, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.450594+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11111, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.497654+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11112, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.533093+00', 218, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11113, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.284216+00', 495, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11114, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.477489+00', 329, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11115, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.695883+00', 240, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11116, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.827821+00', 201, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11117, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.701077+00', 345, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11118, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.894423+00', 150, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11119, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.950675+00', 192, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11120, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.895906+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11121, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.974155+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11122, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.021367+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11123, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.920986+00', 306, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11124, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.165161+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11125, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.011394+00', 342, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11126, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.845146+00', 534, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11127, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.97603+00', 407, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11128, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.985838+00', 427, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11129, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.113579+00', 309, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11130, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.050938+00', 379, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11131, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.644315+00', 172, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11132, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.646831+00', 199, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11133, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.738381+00', 118, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11134, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.695245+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11135, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.704316+00', 171, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11136, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.708871+00', 194, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11137, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.710125+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11138, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:25.96525+00', 269, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11139, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.010954+00', 319, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11140, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:25.984403+00', 360, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11141, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.176439+00', 171, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11142, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.162209+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11143, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.126032+00', 331, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11144, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.177389+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11145, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.176415+00', 293, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11146, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.199241+00', 332, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11147, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.542591+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11148, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.533373+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11149, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.593423+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11150, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.571515+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11151, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.559336+00', 145, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11152, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.57092+00', 144, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11153, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.991932+00', 93, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11154, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.022622+00', 89, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11155, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.995952+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11156, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.970003+00', 155, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11157, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.050006+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11158, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.012417+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11159, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.056949+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11160, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.041176+00', 115, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11161, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.978069+00', 182, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11162, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.089992+00', 89, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11163, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.021237+00', 160, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11164, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.088692+00', 97, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11165, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.106105+00', 123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11166, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.069222+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11167, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.056259+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11168, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.063908+00', 219, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11169, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.066302+00', 223, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11170, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.432589+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11171, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.414725+00', 183, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11172, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.490468+00', 150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11173, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.49109+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11174, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.631827+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11175, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.474973+00', 244, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11176, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.512891+00', 215, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11177, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.818914+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11178, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.903397+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11179, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.989333+00', 113, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11180, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.894137+00', 222, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11181, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.978159+00', 167, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11182, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.935433+00', 249, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11183, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.994999+00', 207, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11184, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.995466+00', 215, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11185, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:03.865511+00', 348, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11186, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:23.996077+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11187, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:23.984365+00', 216, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11188, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:23.986664+00', 211, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11189, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:23.97994+00', 253, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11190, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:23.984394+00', 264, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11191, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:23.983323+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11192, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.044247+00', 268, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11193, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.065049+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11194, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.083901+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11195, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.126285+00', 157, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11196, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.158498+00', 133, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11197, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.155832+00', 136, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11198, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.096275+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11199, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.129266+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11200, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.074655+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11201, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.124989+00', 193, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11202, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.688956+00', 73, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11203, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.670718+00', 95, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11204, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.711496+00', 66, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11205, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.712543+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11206, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.699315+00', 91, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11207, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.722482+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11208, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.742878+00', 61, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11209, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.158053+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11210, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.184617+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11211, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.182228+00', 202, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11212, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.238626+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11213, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.268581+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11214, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.29317+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11215, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.29947+00', 139, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11216, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.237663+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11217, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.259545+00', 200, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11218, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.47033+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11219, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.491695+00', 62, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11220, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.459491+00', 95, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11221, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.495955+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11222, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.462868+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11223, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.506867+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11224, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.489126+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11225, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.206885+00', 105, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11226, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.215318+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11227, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.242135+00', 90, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11228, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.540767+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11229, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.554322+00', 147, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11230, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.515395+00', 192, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11231, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.520804+00', 198, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11232, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.596142+00', 313, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11233, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.669991+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11234, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.970368+00', 79, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11235, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.911313+00', 178, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11236, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.016225+00', 95, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11237, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.973171+00', 148, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11238, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.945501+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11239, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.9725+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11240, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.019594+00', 141, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11241, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:22.171261+00', 87, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11242, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:22.120655+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11243, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:22.181491+00', 150, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11244, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:23.163256+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11245, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:23.179509+00', 135, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11246, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:23.203607+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11247, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:25.117465+00', 137, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11248, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:25.137937+00', 127, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11249, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:25.249899+00', 93, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11250, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.017726+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11251, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.052285+00', 154, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11252, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.08401+00', 153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11253, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.096165+00', 163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11254, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.126459+00', 129, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11255, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.151066+00', 158, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11256, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.119368+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11257, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.796616+00', 134, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11258, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.664507+00', 366, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11259, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.748105+00', 274, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11260, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.816062+00', 280, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11261, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.822137+00', 331, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11262, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.798516+00', 403, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11263, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.858385+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11264, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.975759+00', 294, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11265, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.013211+00', 310, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11266, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:59.911742+00', 57, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11267, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:59.87062+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11268, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:59.905125+00', 347, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11269, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.404744+00', 45, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11270, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.368701+00', 131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11271, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.407039+00', 142, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11272, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.406231+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11273, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.590569+00', 103, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11274, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.555802+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11275, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.575978+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11276, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.587309+00', 147, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11277, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.619556+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11278, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.61208+00', 154, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11279, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.620445+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11280, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:49.568375+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11281, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:49.541322+00', 182, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11282, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:49.559922+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11283, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.596259+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11284, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.662563+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11285, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.750934+00', 123, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11286, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.689093+00', 256, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11287, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.76032+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11288, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.766153+00', 234, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11289, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.089566+00', 242, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11290, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.090211+00', 298, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11291, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.263343+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11292, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.269207+00', 216, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11293, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.292253+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11294, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.280746+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11295, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.335577+00', 155, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11296, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.34645+00', 201, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11297, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.505501+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11298, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.4738+00', 151, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11299, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.497953+00', 127, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11300, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.519364+00', 130, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11301, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.519656+00', 128, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11302, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.326089+00', 336, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11303, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.583272+00', 108, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11304, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.575106+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11305, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.590271+00', 194, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11306, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.586223+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11307, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.575322+00', 320, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11308, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.704119+00', 188, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11309, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.643622+00', 281, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11310, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.781261+00', 149, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11311, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.74036+00', 217, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11312, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.557269+00', 103, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11313, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.533945+00', 166, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11314, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.54577+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11315, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.586594+00', 144, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11316, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.706702+00', 74, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11317, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.615854+00', 179, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11318, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:21.046303+00', 51, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11319, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:21.903977+00', 114, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11320, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:21.945496+00', 312, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11321, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:21.988355+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11322, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.08867+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11323, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:21.948188+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11324, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.035119+00', 270, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11325, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:21.97115+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11326, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.004262+00', 398, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11327, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.323028+00', 205, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11328, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.040371+00', 92, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11329, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.026492+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11330, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.059467+00', 185, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11331, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.061888+00', 226, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11332, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.136822+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11333, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.136658+00', 204, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11334, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.137586+00', 280, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11335, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.498411+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11336, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.448782+00', 302, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11337, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.450414+00', 319, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11338, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.683683+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11339, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.484631+00', 321, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11340, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.474098+00', 357, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11341, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.539297+00', 291, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11342, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.507706+00', 319, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11343, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.673388+00', 163, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11344, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.703123+00', 183, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11345, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.744997+00', 157, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11346, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.675202+00', 248, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11347, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.737543+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11348, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.743752+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11349, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.809273+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11350, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.810447+00', 222, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11351, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.086653+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11352, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.097157+00', 72, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11353, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.108236+00', 98, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11354, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.234451+00', 83, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11355, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.250625+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11356, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.275962+00', 96, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11357, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.291328+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11358, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.264877+00', 175, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11359, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.302304+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11360, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.319505+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11361, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.370161+00', 141, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11362, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.337852+00', 261, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11363, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.330337+00', 305, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11364, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.386013+00', 345, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11365, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.477389+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11366, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.302361+00', 469, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11367, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.007443+00', 112, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11368, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.020945+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11369, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.012568+00', 150, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11370, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.059451+00', 125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11371, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.077258+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11372, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.093054+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11373, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.063737+00', 242, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11374, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.478076+00', 80, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11375, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.57851+00', 155, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11376, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.572255+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11377, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.627393+00', 123, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11378, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.575499+00', 180, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11379, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.593065+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11380, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.512781+00', 260, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11381, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.023164+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11382, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.074811+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11383, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.046292+00', 95, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11384, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.074069+00', 87, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11385, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.055872+00', 117, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11386, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.147593+00', 47, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11387, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.148834+00', 52, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11388, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:43.162431+00', 59, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11389, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:43.183204+00', 103, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11390, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.841681+00', 157, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11391, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.889964+00', 167, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11392, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.862685+00', 201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11393, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.897039+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11394, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.890599+00', 190, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11395, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.868811+00', 242, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11396, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.8946+00', 224, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11397, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.45853+00', 86, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11398, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.464639+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11399, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.463144+00', 86, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11400, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.497104+00', 65, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11401, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.480629+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11402, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.486926+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11403, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.933078+00', 58, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11404, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.968007+00', 62, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11405, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.931285+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11406, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.8882+00', 171, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11407, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.989752+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11408, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.933008+00', 153, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11409, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.974235+00', 139, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11410, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.049665+00', 68, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11411, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.049412+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11412, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.051085+00', 84, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11413, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.533473+00', 77, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11414, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.527473+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11415, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.54199+00', 154, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11416, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.51684+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11417, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.51677+00', 209, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11418, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.583444+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11419, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.518485+00', 217, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11420, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.61255+00', 57, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11421, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.620252+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11422, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.678083+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11423, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.703355+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11424, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.738433+00', 145, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11425, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.726073+00', 227, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11426, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.763351+00', 304, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11427, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.744663+00', 357, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11428, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.785128+00', 325, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11429, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.128865+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11430, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.158098+00', 60, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11431, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.175967+00', 65, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11432, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.173981+00', 74, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11433, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.1864+00', 69, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11434, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.169649+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11435, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.165804+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11436, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.661263+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11437, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.590735+00', 209, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11438, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.672195+00', 147, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11439, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.642497+00', 287, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11440, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.671456+00', 304, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11441, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.768091+00', 242, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11442, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.87813+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11443, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.983889+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11444, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.033091+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11445, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.879587+00', 389, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11446, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.94241+00', 336, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11447, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.703009+00', 601, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11448, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.869373+00', 458, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11449, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.022304+00', 322, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11450, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.045771+00', 317, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11451, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.060452+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11452, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.464165+00', 186, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11453, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.474605+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11454, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.483364+00', 209, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11455, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.464165+00', 267, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11456, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.460479+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11457, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.685593+00', 72, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11458, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.668812+00', 111, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11459, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:43.979195+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11460, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.011845+00', 169, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11461, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:43.9598+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11462, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.058401+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11463, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.023415+00', 227, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11464, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.096823+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11465, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.150693+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11466, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.165206+00', 121, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11467, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.110522+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11468, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.779233+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11469, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.73828+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11470, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.840285+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11471, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.862272+00', 199, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11472, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.858306+00', 208, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11473, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.809145+00', 259, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11474, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.920554+00', 166, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11475, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.429956+00', 81, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11476, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.41917+00', 118, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11477, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.44614+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11478, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.479514+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11479, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.451294+00', 141, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11480, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.464845+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11481, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.460729+00', 163, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11482, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.574782+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11483, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.613433+00', 130, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11484, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.705777+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11485, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.539581+00', 288, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11486, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.730205+00', 179, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11487, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.885498+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11488, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.864778+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11489, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.897122+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11490, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.905905+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11491, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.634594+00', 82, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11492, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.696516+00', 74, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11493, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.660936+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11494, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.648715+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11495, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.623079+00', 195, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11496, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.650169+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11497, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.70372+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11498, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.53257+00', 134, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11499, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.58327+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11500, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.566908+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11501, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.829532+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11502, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.60386+00', 470, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11503, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.531774+00', 539, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11504, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.810147+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11505, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.837037+00', 361, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11506, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.603017+00', 635, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11507, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.997474+00', 296, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11508, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.761462+00', 582, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11509, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.234934+00', 131, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11510, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.215622+00', 194, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11511, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.253646+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11512, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.21724+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11513, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.08052+00', 368, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11514, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.453563+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11515, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.457925+00', 100, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11516, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.463216+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11517, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.540173+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11518, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.584379+00', 68, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11519, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.493507+00', 200, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11520, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.586419+00', 149, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11521, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.790237+00', 101, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11522, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.820181+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11523, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.803372+00', 169, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11524, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.805566+00', 183, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11525, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.834137+00', 159, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11526, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.803005+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11527, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.79871+00', 242, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11528, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.870081+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11529, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.902035+00', 181, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11530, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.165951+00', 73, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11531, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.218942+00', 125, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11532, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.181248+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11533, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.251024+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11534, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.204255+00', 174, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11535, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.160486+00', 223, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11536, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.226734+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11537, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.146625+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11538, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.16777+00', 165, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11539, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.231189+00', 212, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11540, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.201615+00', 266, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11541, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.246365+00', 224, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11542, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.249419+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11543, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.121111+00', 375, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11544, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.090614+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11545, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.152767+00', 66, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11546, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.170439+00', 63, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11547, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.133884+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11548, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.112315+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11549, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.109158+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11550, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.176523+00', 116, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11551, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.149634+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11552, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.116639+00', 204, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11553, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.342023+00', 49, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11554, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.336395+00', 59, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11555, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.362256+00', 44, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11556, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.994062+00', 88, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11557, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.983829+00', 180, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11558, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.996254+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11559, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.017997+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11560, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.178258+00', 142, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11561, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.211806+00', 129, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11562, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.22791+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11563, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.542376+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11564, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.544271+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11565, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.567753+00', 142, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11566, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.589507+00', 141, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11567, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.575771+00', 166, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11568, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.599018+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11569, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.724814+00', 156, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11570, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.594655+00', 313, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11571, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.662017+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11572, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.680449+00', 251, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11573, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.769235+00', 186, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11574, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.648663+00', 317, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11575, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.754744+00', 219, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11576, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:24.973211+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11577, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.084752+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11578, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.01201+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11579, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.088765+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11580, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.072847+00', 149, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11581, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.068899+00', 186, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11582, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.07442+00', 192, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11583, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.849404+00', 186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11584, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.912442+00', 171, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11585, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.871404+00', 230, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11586, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.801697+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11587, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.860138+00', 321, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11588, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.966737+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11589, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.987257+00', 247, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11590, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:55.998274+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11591, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.115654+00', 161, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11592, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.038828+00', 248, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11593, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.135952+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11594, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.072349+00', 266, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11595, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.029659+00', 325, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11596, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.188999+00', 171, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11597, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.046877+00', 330, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11598, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.191413+00', 208, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11599, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:39.963073+00', 62, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11600, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:39.953958+00', 77, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11601, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:39.948906+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11602, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.258622+00', 137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11603, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.290415+00', 184, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11604, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.328238+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11605, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.230205+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11606, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.287789+00', 230, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11607, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.314375+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11608, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.293742+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11609, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.55267+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11610, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.514954+00', 102, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11611, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.517981+00', 127, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11612, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.543487+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11613, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.521475+00', 130, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11614, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.542145+00', 127, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11615, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.071358+00', 42, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11616, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.101959+00', 118, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11617, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.101868+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11618, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.121122+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11619, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.149477+00', 138, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11620, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.080352+00', 216, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11621, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.161435+00', 136, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11622, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:07.945881+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11623, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:07.939421+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11624, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:07.899018+00', 184, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11625, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.151575+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11626, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.044889+00', 274, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11627, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.154199+00', 228, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11628, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.195778+00', 231, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11629, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.05567+00', 391, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11630, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.264384+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11631, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:38.926523+00', 44, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11632, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:38.980034+00', 65, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11633, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:38.986405+00', 69, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11634, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:38.979801+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11635, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:38.976449+00', 88, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11636, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:38.976377+00', 93, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11637, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:39.008105+00', 79, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11638, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.749534+00', 183, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11639, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.965526+00', 93, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11640, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.90979+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11641, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.908035+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11642, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.783298+00', 357, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11643, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.749002+00', 572, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11644, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.95335+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11645, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.928518+00', 474, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11646, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.779599+00', 656, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11647, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.679017+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11648, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.778101+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11649, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.707533+00', 196, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11650, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.674342+00', 251, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11651, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.795081+00', 179, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11652, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.630666+00', 348, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11653, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.791474+00', 223, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11654, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.034131+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11655, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.053751+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11656, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.125938+00', 146, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11657, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.142173+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11658, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.177628+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11659, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.131016+00', 196, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11660, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.149243+00', 202, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11661, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:03.900596+00', 137, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11662, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:03.837766+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11663, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:03.880356+00', 201, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11664, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:03.84685+00', 246, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11665, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:03.89832+00', 228, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11666, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:03.879806+00', 271, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11667, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:03.848758+00', 311, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11668, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.740487+00', 146, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11669, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.81044+00', 91, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11670, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.717906+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11671, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.76344+00', 181, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11672, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.725918+00', 248, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11673, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.779941+00', 215, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11674, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.874804+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11675, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.564252+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11676, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.506816+00', 239, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11677, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.518816+00', 311, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11678, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.583952+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11679, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.593598+00', 285, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11680, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.598882+00', 301, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11681, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.586863+00', 340, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11682, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.697539+00', 251, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11683, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.680787+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11684, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.278403+00', 156, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11685, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.283122+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11686, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.254086+00', 263, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11687, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.432968+00', 119, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11688, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.409205+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11689, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.42246+00', 161, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11690, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.502616+00', 110, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11691, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.269221+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11692, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.264976+00', 197, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11693, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.270013+00', 240, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11694, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.417729+00', 102, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11695, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.371668+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11696, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.427184+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11697, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.715122+00', 124, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11698, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.772411+00', 224, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11699, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.911499+00', 127, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11700, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.943181+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11701, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.802654+00', 244, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11702, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.713959+00', 333, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11703, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.81504+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11704, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.973742+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11705, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.986957+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11706, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.870717+00', 308, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11707, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.48436+00', 64, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11708, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.473628+00', 88, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11709, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.514425+00', 92, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11710, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.509368+00', 124, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11711, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.516136+00', 119, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11712, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.535698+00', 104, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11713, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.539114+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11714, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.425892+00', 67, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11715, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.414026+00', 120, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11716, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.383552+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11717, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.422728+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11718, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.44204+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11719, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.473995+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11720, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.469087+00', 218, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11721, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.467203+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11722, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.55658+00', 186, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11723, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.603678+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11724, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.64548+00', 49, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11725, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.64079+00', 89, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11726, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.684624+00', 54, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11727, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.692927+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11728, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.700708+00', 51, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11729, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.708997+00', 56, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11730, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.417405+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11731, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.432962+00', 207, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11732, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.49035+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11733, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.421079+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11734, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.382741+00', 285, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11735, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.485923+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11736, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.567364+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11737, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.44792+00', 257, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11738, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.488124+00', 222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11739, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.861463+00', 66, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11740, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.895093+00', 88, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11741, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.895007+00', 103, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11742, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.919625+00', 142, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11743, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.977744+00', 88, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11744, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.885813+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11745, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.990441+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11746, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:36.95646+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11747, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:36.953868+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11748, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:36.949022+00', 333, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11749, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.069903+00', 249, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11750, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.039694+00', 293, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11751, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:36.92954+00', 418, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11752, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.045595+00', 466, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11753, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.553188+00', 66, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11754, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.60122+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11755, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.554379+00', 384, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11756, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.683719+00', 305, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11757, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.810146+00', 227, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11758, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.660404+00', 390, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11759, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.655679+00', 481, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11760, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.582628+00', 545, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11761, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.660843+00', 526, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11762, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.639794+00', 62, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11763, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.655601+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11764, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.662255+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11765, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.682533+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11766, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.646785+00', 130, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11767, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.713157+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11768, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.713172+00', 75, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11769, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.660085+00', 141, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11770, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.708913+00', 91, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11771, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.691161+00', 197, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11772, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.797602+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11773, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.825238+00', 142, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11774, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.738608+00', 307, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11775, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.835149+00', 233, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11776, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.738788+00', 332, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11777, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.877725+00', 214, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11778, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.500084+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11779, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.545984+00', 252, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11780, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.559652+00', 251, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11781, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.502558+00', 325, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11782, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.622961+00', 254, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11783, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.611195+00', 305, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11784, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.628034+00', 307, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11785, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.625887+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11786, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.597198+00', 354, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11787, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.793124+00', 88, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11788, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.8383+00', 51, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11789, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.873696+00', 77, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11790, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.927008+00', 85, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11791, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.87101+00', 143, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11792, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.934122+00', 92, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11793, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.942101+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11794, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.044301+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11795, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.259252+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11796, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.275151+00', 81, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11797, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.287075+00', 69, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11798, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.418394+00', 251, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11799, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.470397+00', 214, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11800, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.496492+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11801, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.45976+00', 286, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11802, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.550117+00', 249, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11803, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.568951+00', 245, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11804, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.487184+00', 392, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11805, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.700533+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11806, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.572904+00', 314, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11807, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.688499+00', 233, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11808, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.759974+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11809, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.708617+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11810, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.133+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11811, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.241934+00', 106, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11812, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.21393+00', 159, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11813, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.247526+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11814, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.242572+00', 140, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11815, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.238826+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11816, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.232246+00', 164, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11817, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.216182+00', 194, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11818, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.27161+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11819, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.262188+00', 182, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11820, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.262307+00', 200, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11821, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.299367+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11822, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.313515+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11823, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.380525+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11824, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.399874+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11825, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.366995+00', 128, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11826, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.591591+00', 123, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11827, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.664686+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11828, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.623288+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11829, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.633501+00', 105, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11830, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.650234+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11831, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.645275+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11832, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.606652+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11833, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.597469+00', 175, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11834, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.643148+00', 127, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11835, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.568814+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11836, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.578901+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11837, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.586656+00', 246, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11838, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.712427+00', 129, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11839, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.674156+00', 182, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11840, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.666312+00', 192, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11841, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.63756+00', 222, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11842, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.564012+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11843, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.578685+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11844, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.596156+00', 284, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11845, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.621305+00', 281, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11846, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.60268+00', 303, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11847, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.609786+00', 313, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11848, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.833145+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11849, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.678688+00', 308, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11850, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.803372+00', 264, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11851, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.051211+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11852, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.0737+00', 103, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11853, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.092209+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11854, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.101483+00', 130, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11855, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.090695+00', 157, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11856, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.082224+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11857, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.128043+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11858, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.654172+00', 94, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11859, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.634226+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11860, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.610435+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11861, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.70091+00', 133, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11862, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.708133+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11863, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.756635+00', 95, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11864, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.611271+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11865, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.727498+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11866, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.614729+00', 308, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11867, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.604637+00', 59, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11868, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.623984+00', 55, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11869, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.609705+00', 88, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11870, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.629535+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11871, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.672186+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11872, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.630658+00', 118, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11873, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.645445+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11874, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.770007+00', 72, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11875, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.810298+00', 70, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11876, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.826141+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11877, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.791381+00', 100, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11878, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.797351+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11879, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.83002+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11880, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.823873+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11881, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.869101+00', 81, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11882, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.867621+00', 96, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11883, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.029023+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11884, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:23.936729+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11885, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:23.986217+00', 220, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11886, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.029726+00', 237, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11887, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:23.979482+00', 371, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11888, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.089496+00', 264, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11889, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:23.985509+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11890, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.933079+00', 43, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11891, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.878765+00', 118, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11892, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.898095+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11893, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.93658+00', 116, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11894, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.98574+00', 80, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11895, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.011592+00', 64, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11896, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.969312+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11897, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.986294+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11898, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.978007+00', 118, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11899, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:53.959577+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11900, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:53.924882+00', 182, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11901, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.018011+00', 98, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11902, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.022802+00', 196, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11903, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.075892+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11904, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:53.988995+00', 304, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11905, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.248045+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11906, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.186469+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11907, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.190149+00', 226, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11908, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.330663+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11909, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.309977+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11910, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.273694+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11911, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.285178+00', 170, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11912, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.246635+00', 249, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11913, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.256611+00', 238, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11914, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.253064+00', 251, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11915, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.803478+00', 65, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11916, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.860635+00', 57, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11917, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.847029+00', 120, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11918, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.831763+00', 136, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11919, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.831961+00', 137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11920, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.897435+00', 73, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11921, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.829027+00', 156, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11922, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.812744+00', 76, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11923, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.826757+00', 117, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11924, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.874952+00', 93, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11925, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.906977+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11926, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.990309+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11927, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.938434+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11928, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.993014+00', 198, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11929, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.763094+00', 434, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11930, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.853219+00', 374, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11931, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.441075+00', 39, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11932, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.445264+00', 119, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11933, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.491599+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11934, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.541506+00', 75, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11935, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.540825+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11936, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.545002+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11937, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.536275+00', 169, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11938, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.403614+00', 192, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11939, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.44679+00', 275, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11940, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.432212+00', 310, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11941, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.5315+00', 238, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11942, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.623325+00', 196, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11943, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.488256+00', 369, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11944, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.463814+00', 442, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11945, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.603984+00', 326, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11946, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.478383+00', 487, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11947, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:23.955142+00', 60, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11948, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:23.983279+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11949, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:23.967806+00', 76, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11950, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:23.955091+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11951, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:23.940767+00', 129, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11952, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:23.994141+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11953, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.057911+00', 57, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11954, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.219443+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11955, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.238644+00', 53, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11956, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.219833+00', 73, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11957, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.710428+00', 113, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11958, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.723833+00', 58, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11959, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.750079+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11960, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.742348+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11961, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.753792+00', 174, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11962, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.752711+00', 238, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11963, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.19302+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11964, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.298127+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11965, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.272026+00', 195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11966, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.244163+00', 228, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11967, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.279148+00', 200, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11968, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.326906+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11969, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.340315+00', 212, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11970, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.641603+00', 226, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11971, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.775686+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11972, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.728484+00', 371, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11973, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.880446+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11974, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.83518+00', 279, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11975, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.764182+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11976, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.848167+00', 324, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11977, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.887568+00', 311, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11978, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.867039+00', 417, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11979, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.544626+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11980, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.564572+00', 141, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11981, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.600632+00', 122, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(11982, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.576736+00', 156, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(11983, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.600206+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(11984, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.63665+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11985, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.674482+00', 120, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(11986, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.643015+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(11987, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.654975+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(11988, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.682501+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(11989, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.668291+00', 275, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(11990, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.690208+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(11991, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.68297+00', 297, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(11992, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.659746+00', 336, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(11993, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.698596+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(11994, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.82324+00', 215, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(11995, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.452303+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(11996, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.480474+00', 121, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(11997, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.442195+00', 185, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(11998, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.408964+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(11999, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.551194+00', 99, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12000, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.545463+00', 112, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12001, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.532572+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12002, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.382234+00', 89, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12003, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.409189+00', 252, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12004, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.478031+00', 212, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12005, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.487801+00', 273, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12006, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.510784+00', 270, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12007, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.469633+00', 356, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12008, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.510171+00', 366, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12009, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.515798+00', 368, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12010, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.520033+00', 437, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12011, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.472314+00', 65, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12012, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.538356+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12013, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.538318+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12014, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.547264+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12015, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.556355+00', 95, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12016, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.57779+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12017, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.553604+00', 115, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12018, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.527888+00', 151, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12019, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.545+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12020, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.498313+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12021, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.523057+00', 59, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12022, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.518351+00', 75, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12023, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.533602+00', 67, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12024, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.522827+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12025, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.509883+00', 109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12026, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.502022+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12027, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.746999+00', 238, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12028, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.76688+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12029, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.745548+00', 296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12030, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.838708+00', 367, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12031, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.956416+00', 274, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12032, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.937429+00', 332, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12033, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.750371+00', 525, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12034, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.056836+00', 250, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12035, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.091396+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12036, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.157213+00', 313, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12037, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.179215+00', 438, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12038, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.246943+00', 475, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(12039, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.151458+00', 618, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(12040, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.050182+00', 814, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(12041, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.695231+00', 595, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12042, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.057308+00', 1376, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12043, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.057308+00', 1382, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(12044, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.894682+00', 560, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 19, 3, NULL, 2, NULL), +(12045, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.69821+00', 957, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12046, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.582514+00', 1079, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12047, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.123355+00', 1720, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 27, 3, NULL, 2, NULL), +(12048, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.334659+00', 1587, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12049, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.334659+00', 1668, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 2, NULL), +(12050, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.540481+00', 2053, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12051, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.556803+00', 2081, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12052, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.556803+00', 2189, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 2, NULL), +(12053, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.772603+00', 2032, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12054, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.346084+00', 593, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12055, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.834187+00', 2216, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12056, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.261691+00', 2080, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12057, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.261691+00', 2099, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(12058, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.666139+00', 2740, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12059, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.047882+00', 459, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12060, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.047882+00', 465, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(12061, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.984017+00', 2627, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12062, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.846032+00', 940, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12063, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.003945+00', 857, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12064, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.185307+00', 721, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12065, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.986104+00', 931, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(12066, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.980775+00', 2961, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12067, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.575862+00', 1440, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12068, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.780504+00', 2344, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12069, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.048366+00', 4402, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12070, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.048366+00', 4412, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(12071, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.335558+00', 2305, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 12, 2, NULL, 2, NULL), +(12072, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.335751+00', 2640, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12073, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.747612+00', 2258, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12074, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.78889+00', 1316, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12075, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.706252+00', 1414, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12076, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.477024+00', 1692, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12077, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.778386+00', 1415, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12078, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.203028+00', 2024, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12079, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.203028+00', 2057, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(12080, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.990846+00', 1509, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12081, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.476903+00', 2092, 0, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12082, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.645079+00', 1949, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12083, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.476903+00', 2124, 0, TRUE, 'public-dashboard', 'Closed', 1, 11, 2, NULL, 2, NULL), +(12084, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.645079+00', 1959, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 2, NULL), +(12085, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.497505+00', 1227, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12086, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.258304+00', 4484, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12087, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.335751+00', 3456, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12088, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.335751+00', 3461, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL), +(12089, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.407575+00', 506, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12090, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.459915+00', 1583, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12091, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.09031+00', 2282, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12092, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.335705+00', 4079, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12093, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.046963+00', 428, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12094, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.864491+00', 1650, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12095, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.612003+00', 963, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12096, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.606489+00', 1018, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12097, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.414907+00', 445, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12098, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.439708+00', 616, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12099, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.050798+00', 1284, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12100, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.534028+00', 877, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12101, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.948583+00', 494, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12102, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.678518+00', 1095, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12103, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.854121+00', 1960, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12104, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.803971+00', 1131, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12105, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.562387+00', 494, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12106, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.581178+00', 483, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12107, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.583004+00', 519, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12108, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.514246+00', 625, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12109, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.750907+00', 419, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12110, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.541573+00', 674, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12111, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.423521+00', 883, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12112, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.190867+00', 1130, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12113, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.661385+00', 661, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12114, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.076368+00', 288, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12115, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.390963+00', 204, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12116, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.431375+00', 2271, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12117, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.129791+00', 651, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12118, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:56.068722+00', 726, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12119, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:15.879809+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12120, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:15.929056+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12121, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:15.828087+00', 211, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12122, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:15.955127+00', 129, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12123, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.039236+00', 104, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12124, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:15.993653+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12125, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:15.876836+00', 324, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12126, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.083854+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12127, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.129874+00', 351, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12128, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.727435+00', 64, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12129, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.732422+00', 71, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12130, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.714679+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12131, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.708547+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12132, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.745325+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12133, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.732552+00', 100, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12134, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.756619+00', 89, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12135, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.973525+00', 325, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12136, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.936531+00', 436, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(12137, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.861445+00', 613, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12138, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.697224+00', 777, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(12139, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.660914+00', 813, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(12140, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.522832+00', 1043, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 2, NULL), +(12141, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.522832+00', 1040, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12142, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.743003+00', 1001, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 2, NULL), +(12143, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.033347+00', 713, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(12144, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.786256+00', 975, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12145, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.674598+00', 1129, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(12146, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.674598+00', 1125, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12147, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.368332+00', 438, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12148, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.999932+00', 794, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12149, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.983407+00', 840, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(12150, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.763626+00', 1081, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 2, NULL), +(12151, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.202941+00', 690, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(12152, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.201285+00', 730, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12153, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.782917+00', 1434, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12154, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.355546+00', 865, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12155, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.782917+00', 1454, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(12156, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.666087+00', 1588, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 14, 2, NULL, 2, NULL), +(12157, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.534016+00', 731, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12158, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.219704+00', 1200, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12159, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.863615+00', 1560, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12160, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:38.863615+00', 1575, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(12161, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.945681+00', 536, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12162, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.68265+00', 836, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12163, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.051264+00', 1480, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(12164, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.051264+00', 1477, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12165, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.585565+00', 962, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(12166, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.890215+00', 696, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12167, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.375517+00', 359, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12168, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.73921+00', 1022, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12169, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.382347+00', 869, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12170, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.224981+00', 2116, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 26, 3, NULL, 2, NULL), +(12171, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.214077+00', 2426, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12172, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.695107+00', 39, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12173, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.71179+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12174, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.668933+00', 110, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12175, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.722686+00', 62, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12176, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.690518+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12177, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.694032+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12178, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.730751+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12179, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.920386+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12180, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.917927+00', 324, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12181, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.494344+00', 69, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12182, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.467377+00', 118, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12183, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.467948+00', 140, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12184, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.538461+00', 84, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12185, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.479072+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12186, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.546348+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12187, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.53772+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12188, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.6206+00', 64, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12189, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.618008+00', 141, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12190, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.66712+00', 92, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12191, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.643969+00', 123, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12192, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.656533+00', 116, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12193, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.659787+00', 142, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12194, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.642509+00', 186, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12195, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.810927+00', 166, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12196, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.856462+00', 220, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12197, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.932163+00', 139, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12198, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.814739+00', 308, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12199, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.809978+00', 316, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12200, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.0374+00', 123, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12201, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.843176+00', 359, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12202, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.929565+00', 314, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12203, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.912654+00', 391, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12204, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.336205+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12205, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.381117+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12206, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.351038+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12207, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.386139+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12208, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.392159+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12209, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.407581+00', 115, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12210, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.451245+00', 78, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12211, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.482368+00', 62, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12212, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.487363+00', 94, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12213, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.443924+00', 137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12214, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.460605+00', 153, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12215, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.527406+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12216, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.562965+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12217, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.453334+00', 247, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12218, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.564783+00', 187, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12219, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.636296+00', 114, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12220, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.731698+00', 129, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12221, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.734434+00', 131, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12222, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.7767+00', 184, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12223, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.781108+00', 316, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12224, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.89346+00', 253, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12225, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.819363+00', 363, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12226, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.898056+00', 311, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12227, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.872212+00', 355, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12228, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.724797+00', 552, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12229, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.799178+00', 477, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12230, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.734994+00', 566, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12231, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.91105+00', 442, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12232, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.989778+00', 372, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12233, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.842506+00', 527, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12234, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.925918+00', 442, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12235, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.749423+00', 634, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12236, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.357128+00', 50, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12237, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.412255+00', 68, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12238, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.429319+00', 66, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12239, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.416202+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12240, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.451182+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12241, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.485434+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12242, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.415371+00', 188, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12243, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.011236+00', 208, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12244, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.030591+00', 201, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12245, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.009802+00', 295, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12246, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.092976+00', 252, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12247, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.087887+00', 356, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12248, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.09147+00', 359, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12249, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.070654+00', 381, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12250, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.087965+00', 365, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12251, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.146925+00', 373, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12252, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.12507+00', 400, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12253, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.038937+00', 521, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12254, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.369613+00', 199, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12255, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.150121+00', 428, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12256, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.091407+00', 490, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12257, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.326585+00', 325, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12258, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.262868+00', 445, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12259, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.474755+00', 99, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12260, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.545672+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12261, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.510051+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12262, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.548787+00', 129, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12263, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.607647+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12264, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.482167+00', 216, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12265, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.572447+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12266, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.535053+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12267, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.575612+00', 144, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12268, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.680348+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12269, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.678573+00', 147, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12270, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.708231+00', 121, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12271, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.728291+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12272, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.72723+00', 134, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12273, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.746031+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12274, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.707724+00', 184, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12275, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.241544+00', 258, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(12276, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.215593+00', 286, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(12277, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.3308+00', 221, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(12278, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.247707+00', 354, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(12279, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.262564+00', 384, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(12280, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.349693+00', 438, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12281, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.324174+00', 464, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 2, NULL), +(12282, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.351881+00', 459, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(12283, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.349693+00', 465, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(12284, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.35853+00', 521, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12285, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.35853+00', 532, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(12286, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.398293+00', 526, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(12287, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.282442+00', 804, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(12288, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.603873+00', 500, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(12289, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.283726+00', 914, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(12290, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.291357+00', 1002, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 29, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12291, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.235707+00', 1087, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(12292, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.310635+00', 1160, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(12293, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.310635+00', 1158, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12294, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.60216+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12295, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.704751+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12296, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.636584+00', 245, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12297, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.814949+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12298, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.622147+00', 305, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12299, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.576418+00', 412, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12300, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.764449+00', 271, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12301, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.723123+00', 314, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12302, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.572121+00', 485, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12303, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.489382+00', 147, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12304, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.432619+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12305, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.533486+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12306, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.496278+00', 219, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12307, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.507931+00', 228, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12308, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.566698+00', 175, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12309, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.442248+00', 303, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12310, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.028435+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12311, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.142225+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12312, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.115038+00', 187, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12313, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.178007+00', 172, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12314, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.153369+00', 212, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12315, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.122812+00', 253, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12316, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.166158+00', 250, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12317, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.65702+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12318, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.691485+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12319, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.786047+00', 120, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12320, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.748566+00', 183, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12321, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.848024+00', 100, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12322, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.78391+00', 202, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12323, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.753169+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12324, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.792293+00', 223, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12325, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.866687+00', 160, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12326, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.514876+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12327, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.563224+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12328, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.650037+00', 81, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12329, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.610437+00', 126, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12330, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.625698+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12331, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.679721+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12332, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.68401+00', 106, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12333, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.402798+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12334, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.542073+00', 50, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12335, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.478995+00', 138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12336, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.543375+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12337, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.47508+00', 172, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12338, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.481091+00', 187, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12339, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.520067+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12340, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.597097+00', 70, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12341, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.556549+00', 358, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12342, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.551811+00', 498, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12343, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.782591+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12344, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.85206+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12345, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.718899+00', 378, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12346, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.727793+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12347, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.742764+00', 384, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12348, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.780361+00', 421, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12349, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.478839+00', 74, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12350, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.539684+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12351, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.514112+00', 126, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12352, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.497429+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12353, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.551896+00', 145, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12354, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.513038+00', 194, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12355, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.534539+00', 186, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12356, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.826242+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12357, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.887004+00', 239, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12358, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.823056+00', 339, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12359, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.856697+00', 323, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12360, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.822145+00', 372, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12361, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.813401+00', 397, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12362, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.042263+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12363, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.878288+00', 364, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12364, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.845187+00', 412, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12365, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.392529+00', 157, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12366, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.462029+00', 104, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12367, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.412616+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12368, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.400997+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12369, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.462259+00', 125, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12370, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.467891+00', 126, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12371, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.580294+00', 61, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12372, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.607301+00', 101, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12373, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.590522+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12374, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.640554+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12375, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.608883+00', 148, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12376, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.609992+00', 168, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12377, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.624613+00', 156, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12378, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.635498+00', 165, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12379, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.769516+00', 101, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12380, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.797107+00', 93, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12381, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.72415+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12382, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.83811+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12383, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.756702+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12384, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.880759+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12385, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.743364+00', 270, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12386, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.884564+00', 130, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12387, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.874855+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12388, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.514861+00', 248, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12389, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.547123+00', 308, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12390, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.548015+00', 315, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12391, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.525954+00', 347, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12392, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.626073+00', 282, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12393, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.499806+00', 420, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12394, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.574284+00', 369, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12395, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.667254+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12396, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.634131+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12397, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.660474+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12398, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.68812+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12399, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.744968+00', 92, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12400, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.732921+00', 162, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12401, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.766407+00', 142, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12402, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.544885+00', 77, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12403, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.58153+00', 67, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12404, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.539036+00', 156, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12405, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.570572+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12406, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.587019+00', 129, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12407, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.586196+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12408, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.58908+00', 138, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12409, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.58613+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12410, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.639654+00', 97, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12411, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.613638+00', 59, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12412, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.606285+00', 75, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12413, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.644017+00', 48, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12414, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.638294+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12415, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.661466+00', 61, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12416, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.639277+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12417, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.636097+00', 97, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12418, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.198769+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12419, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.237851+00', 169, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12420, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.171132+00', 249, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12421, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.221378+00', 214, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12422, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.212764+00', 234, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12423, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.279032+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12424, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.183619+00', 267, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12425, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.279758+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12426, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.174876+00', 276, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12427, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.184549+00', 147, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12428, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.174463+00', 207, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12429, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.298624+00', 126, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12430, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.206677+00', 233, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12431, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.217047+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12432, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.169523+00', 287, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12433, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.328019+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12434, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.507288+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12435, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.601276+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12436, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.551056+00', 219, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12437, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.583702+00', 192, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12438, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.516293+00', 309, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12439, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.58109+00', 252, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12440, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.58732+00', 259, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12441, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.454204+00', 387, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12442, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.767303+00', 227, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12443, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.464133+00', 522, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12444, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.473873+00', 512, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12445, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.556127+00', 483, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12446, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.75461+00', 291, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12447, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.819611+00', 271, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12448, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.914569+00', 187, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12449, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.945718+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12450, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.974535+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12451, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.001332+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12452, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.102641+00', 108, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12453, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.047488+00', 172, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12454, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.089198+00', 130, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12455, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.095642+00', 131, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12456, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.07812+00', 214, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12457, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:22.952142+00', 258, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12458, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:22.934752+00', 282, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12459, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:22.95881+00', 282, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12460, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:22.900955+00', 346, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12461, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:22.902032+00', 349, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12462, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.015384+00', 251, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12463, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:22.943745+00', 357, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12464, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.370135+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12465, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.344722+00', 291, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12466, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.720775+00', 112, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12467, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.728207+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12468, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.710982+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12469, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.73411+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12470, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.714469+00', 228, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12471, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.726254+00', 230, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12472, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.745954+00', 223, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12473, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:14.931648+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12474, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:14.880605+00', 334, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12475, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:14.931564+00', 580, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12476, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:14.996452+00', 625, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12477, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.143678+00', 479, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12478, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.255831+00', 385, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12479, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.101944+00', 561, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12480, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.605696+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12481, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.503656+00', 192, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12482, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.255005+00', 459, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12483, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.138253+00', 582, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12484, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.506655+00', 243, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12485, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.504185+00', 284, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12486, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.554288+00', 244, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12487, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.643638+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12488, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.469133+00', 363, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12489, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:38.480265+00', 45, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12490, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:38.483848+00', 49, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12491, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:38.494613+00', 47, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12492, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:39.823973+00', 77, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12493, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:39.837861+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12494, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:39.860371+00', 58, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12495, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:44.852567+00', 39, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12496, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:39:30.625016+00', 42, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12497, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.906158+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12498, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.772234+00', 212, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12499, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.772234+00', 217, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(12500, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.504496+00', 610, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(12501, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.875861+00', 567, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(12502, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.729473+00', 1146, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(12503, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.891252+00', 1528, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 11, 2, NULL, 2, NULL), +(12504, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.834094+00', 1596, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12505, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.086228+00', 1357, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12506, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.086228+00', 1363, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(12507, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.251175+00', 1320, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12508, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.4537+00', 1140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12509, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.251175+00', 1347, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(12510, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.001387+00', 1837, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12511, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.001387+00', 1847, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(12512, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.022317+00', 843, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(12513, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.447129+00', 490, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12514, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.882685+00', 1082, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 2, NULL), +(12515, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.94717+00', 1027, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12516, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.145197+00', 884, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12517, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.965702+00', 1877, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12518, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.648639+00', 2267, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12519, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.917035+00', 2002, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12520, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.474975+00', 1484, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12521, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.474975+00', 1487, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(12522, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.235237+00', 870, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12523, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.067529+00', 1054, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12524, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.006233+00', 1125, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12525, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.116506+00', 1018, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12526, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.269883+00', 871, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12527, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.006233+00', 1171, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12528, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.269883+00', 910, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(12529, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.115757+00', 1066, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12530, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.115757+00', 1077, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(12531, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.198532+00', 2054, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12532, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:23.278018+00', 3016, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(12533, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.198532+00', 2103, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(12534, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.029436+00', 1275, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12535, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.552477+00', 1781, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12536, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.925015+00', 1421, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12537, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.190429+00', 1519, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12538, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:29.360386+00', 35, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12539, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:36.684339+00', 37, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12540, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:36.686555+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12541, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.796173+00', 90, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12542, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.835652+00', 79, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12543, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.831293+00', 95, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12544, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.84599+00', 90, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12545, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.743708+00', 40, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12546, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.755996+00', 39, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12547, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.761909+00', 42, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12548, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.922959+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12549, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.965272+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12550, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.972837+00', 93, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12551, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.010153+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12552, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.997059+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12553, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.961991+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12554, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.948171+00', 207, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12555, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.010195+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12556, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.922194+00', 265, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12557, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:56.980785+00', 53, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12558, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.451402+00', 393, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12559, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.710809+00', 180, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12560, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.468718+00', 445, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12561, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.601006+00', 325, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12562, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.611615+00', 419, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12563, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.689251+00', 383, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12564, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.583349+00', 508, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12565, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.52202+00', 576, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12566, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.438718+00', 667, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12567, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.614018+00', 501, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12568, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.52321+00', 637, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12569, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.500408+00', 666, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12570, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.612516+00', 568, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12571, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.446068+00', 749, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12572, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.779818+00', 452, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12573, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.578243+00', 663, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12574, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.560135+00', 681, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12575, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.141024+00', 42, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12576, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.213393+00', 61, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12577, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.222183+00', 59, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12578, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.499053+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12579, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.513616+00', 93, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12580, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.498193+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12581, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:18.364589+00', 70, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12582, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:18.428984+00', 58, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12583, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.548514+00', 264, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12584, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.539681+00', 450, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12585, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.727063+00', 428, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12586, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.59044+00', 573, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12587, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.58664+00', 601, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12588, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.823675+00', 424, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12589, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.634948+00', 697, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12590, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.898005+00', 445, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12591, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.669542+00', 715, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12592, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.968526+00', 473, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12593, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.046757+00', 407, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12594, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.992857+00', 529, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12595, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.162295+00', 377, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12596, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.897568+00', 669, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12597, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.293343+00', 270, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12598, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.220188+00', 363, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12599, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.557499+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12600, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.593702+00', 54, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12601, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.556935+00', 129, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12602, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.581177+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12603, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.605038+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12604, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.564208+00', 164, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12605, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.568557+00', 170, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12606, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.180335+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12607, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.25081+00', 255, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12608, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.292616+00', 230, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12609, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.302744+00', 229, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12610, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.280198+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12611, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.323717+00', 219, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12612, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.529236+00', 126, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12613, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.437365+00', 51, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12614, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.403123+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12615, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.357954+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12616, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.422245+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12617, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.343982+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12618, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.415324+00', 155, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12619, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.32607+00', 286, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12620, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.391237+00', 297, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12621, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.535083+00', 168, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12622, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.481183+00', 69, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12623, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.50903+00', 105, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12624, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.491999+00', 131, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12625, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.508789+00', 133, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12626, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.513549+00', 129, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12627, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.555272+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12628, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.54703+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12629, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.496691+00', 331, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(12630, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.639651+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12631, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.602518+00', 278, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12632, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.509818+00', 440, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12633, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.785554+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12634, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.614499+00', 357, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12635, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.545218+00', 428, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12636, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.904158+00', 93, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12637, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.541911+00', 509, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12638, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.470567+00', 143, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12639, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.494179+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12640, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.55663+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12641, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.542141+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12642, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.550176+00', 151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12643, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.554033+00', 166, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12644, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.555614+00', 172, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12645, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.626163+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(12646, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.715699+00', 60, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12647, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.652821+00', 138, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(12648, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.70891+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(12649, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.696452+00', 116, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(12650, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.761694+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(12651, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.726229+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(12652, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.729123+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(12653, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.734587+00', 133, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(12654, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.495091+00', 137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(12655, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.565356+00', 135, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(12656, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.599678+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 11, 2, NULL, 2, FALSE), +(12657, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.593711+00', 176, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(12658, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.589618+00', 213, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(12659, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.498218+00', 314, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(12660, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.621178+00', 246, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(12661, X'9305683eaf35822d88ffc9357e7218f576133856841e290d71de49dff63b346c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:23:49.389487+00', 96, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12662, X'0372f37da4911486bd329b219557b18c5704321e77085cd24711d55692cbb2bb', TIMESTAMP WITH TIME ZONE '2022-12-21 06:23:50.233322+00', 131, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12663, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.036467+00', 241, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(12664, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.665194+00', 613, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12665, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.633632+00', 647, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12666, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.665194+00', 615, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(12667, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.628282+00', 692, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(12668, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.255541+00', 112, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12669, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.965998+00', 452, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(12670, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.990458+00', 465, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(12671, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.990458+00', 463, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12672, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.015879+00', 575, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12673, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.065112+00', 568, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 2, NULL), +(12674, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.393804+00', 379, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(12675, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.108353+00', 692, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12676, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.058189+00', 836, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12677, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.006187+00', 888, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12678, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.325102+00', 654, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12679, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.538382+00', 564, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12680, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.538451+00', 569, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(12681, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.222083+00', 1051, 0, TRUE, 'public-dashboard', 'Closed', 1, 11, 2, NULL, 2, NULL), +(12682, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.222083+00', 1048, 0, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12683, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.01635+00', 1291, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(12684, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.01635+00', 1289, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12685, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.542915+00', 631, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12686, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.375189+00', 968, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(12687, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.325444+00', 1078, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12688, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.537653+00', 967, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12689, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.537653+00', 970, 0, TRUE, 'public-dashboard', 'Closed', 1, 19, 3, NULL, 2, NULL), +(12690, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.653534+00', 1865, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12691, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:13.653534+00', 1866, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(12692, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.545765+00', 1010, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12693, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.547361+00', 1017, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12694, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.539673+00', 1083, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12695, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.537649+00', 1201, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12696, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.54303+00', 1254, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12697, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.54303+00', 1262, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 2, NULL), +(12698, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.310745+00', 2009, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12699, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.449218+00', 1974, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12700, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.238697+00', 4230, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12701, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.286154+00', 4218, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12702, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.286154+00', 4311, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(12703, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.645196+00', 1900, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12704, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.930426+00', 890, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12705, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.930426+00', 891, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(12706, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.685682+00', 2144, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(12707, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.685682+00', 2134, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12708, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.819634+00', 1106, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12709, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.013767+00', 962, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(12710, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.102026+00', 884, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12711, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.259581+00', 723, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12712, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.1759+00', 936, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12713, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.941103+00', 1238, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12714, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.821495+00', 1378, 0, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12715, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.941103+00', 1247, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 2, NULL), +(12716, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.821495+00', 1384, 0, TRUE, 'public-dashboard', 'Closed', 1, 11, 2, NULL, 2, NULL), +(12717, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.933843+00', 1539, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12718, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.933843+00', 1555, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 2, NULL), +(12719, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.114032+00', 1778, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12720, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.728287+00', 3191, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12721, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.728287+00', 3211, 0, TRUE, 'public-dashboard', 'Closed', 1, 19, 3, NULL, 2, NULL), +(12722, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.951353+00', 1979, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12723, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.264503+00', 1794, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12724, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.53739+00', 1525, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12725, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.728285+00', 3401, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12726, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.728285+00', 3404, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(12727, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.310258+00', 1856, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12728, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.155733+00', 2021, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 2, NULL), +(12729, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.621348+00', 3568, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12730, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.155733+00', 2020, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12731, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.310258+00', 1858, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(12732, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.621348+00', 3590, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 2, NULL), +(12733, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.347803+00', 1874, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12734, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.608913+00', 3628, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12735, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.608913+00', 3670, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(12736, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.485271+00', 1863, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12737, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.558777+00', 3804, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12738, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.561375+00', 3811, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12739, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:12.558777+00', 3818, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(12740, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.485271+00', 1912, 0, TRUE, 'public-dashboard', 'Closed', 1, 21, 3, NULL, 2, NULL), +(12741, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.579225+00', 1935, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 9, 2, NULL, 2, NULL), +(12742, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.579675+00', 1977, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12743, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.815118+00', 2760, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12744, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.815118+00', 2783, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12745, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.880364+00', 1052, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12746, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.175744+00', 2924, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12747, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:13.839228+00', 3294, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12748, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.673946+00', 2466, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12749, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.164687+00', 312, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12750, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.132608+00', 376, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12751, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.347479+00', 457, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12752, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.186884+00', 668, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12753, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.485291+00', 378, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12754, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.458807+00', 438, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12755, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.327808+00', 592, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12756, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.134032+00', 849, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12757, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.538379+00', 626, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12758, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.337163+00', 826, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12759, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.46038+00', 725, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12760, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.470415+00', 786, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12761, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.454482+00', 799, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12762, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.171002+00', 1141, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12763, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.339746+00', 1003, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12764, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.151984+00', 1475, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12765, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.002366+00', 85, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12766, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.003309+00', 101, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12767, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.083447+00', 68, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12768, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.026258+00', 131, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12769, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.426126+00', 96, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12770, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.346482+00', 178, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12771, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.42039+00', 121, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12772, X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:56.703641+00', 36, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(12773, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.329683+00', 258, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12774, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.157665+00', 691, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12775, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.205923+00', 941, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12776, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.6289+00', 546, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12777, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.522111+00', 651, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12778, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.456375+00', 730, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12779, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.605655+00', 607, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12780, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.593194+00', 595, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12781, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.506798+00', 688, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12782, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.300123+00', 959, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12783, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.528289+00', 735, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12784, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.562002+00', 718, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12785, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.203554+00', 1130, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12786, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.772906+00', 587, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12787, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.375532+00', 1060, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12788, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.208543+00', 1228, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12789, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.109811+00', 95, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12790, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.076756+00', 189, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12791, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.096082+00', 258, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12792, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.130993+00', 358, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12793, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.159049+00', 346, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12794, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.095771+00', 485, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12795, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.470365+00', 154, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12796, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.171643+00', 524, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12797, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.544915+00', 180, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12798, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.537396+00', 229, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12799, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.549876+00', 249, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12800, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.537139+00', 293, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12801, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.546132+00', 284, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12802, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.663119+00', 181, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12803, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.149801+00', 701, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12804, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.172966+00', 679, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12805, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.305396+00', 41, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12806, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.289781+00', 61, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12807, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.293018+00', 72, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12808, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.636199+00', 131, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12809, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.658701+00', 113, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12810, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.645999+00', 167, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12811, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.691033+00', 142, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12812, X'5e75f421df313d1ef0f8af8de57ba54b01fabb2672318ab39673e62c9272955c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:31:32.686046+00', 45, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12813, X'921b95e361a8722ead4a3c8fc72b12eedce1048f3c579255b5211829dfb6730c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:31:43.836064+00', 115, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12814, X'805d0ca083d12c78604153fbd8113c486bab1ae9a5a057ee63233cc5a004c698', TIMESTAMP WITH TIME ZONE '2022-12-21 06:31:51.537089+00', 89, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12815, X'921b95e361a8722ead4a3c8fc72b12eedce1048f3c579255b5211829dfb6730c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:32:14.984032+00', 156, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12816, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.383161+00', 52, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12817, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.824045+00', 108, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12818, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.790182+00', 144, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12819, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.795456+00', 165, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12820, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.726752+00', 239, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12821, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.782219+00', 349, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12822, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.836569+00', 301, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12823, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.81421+00', 324, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12824, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.850895+00', 374, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12825, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:37.408232+00', 248, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12826, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:13.768878+00', 1086, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(12827, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.760423+00', 608, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL), +(12828, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.085155+00', 1296, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12829, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.335447+00', 1315, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(12830, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.707934+00', 1173, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12831, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.872481+00', 1051, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(12832, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:13.754634+00', 2312, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12833, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.290106+00', 2194, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12834, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.332783+00', 2202, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12835, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.333752+00', 2296, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 21, 3, NULL, 2, NULL), +(12836, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.190103+00', 507, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12837, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.190103+00', 508, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 2, NULL), +(12838, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.398215+00', 357, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12839, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.398215+00', 372, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL), +(12840, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.740186+00', 2055, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12841, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.691229+00', 2102, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12842, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.691229+00', 2106, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(12843, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.736188+00', 1113, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12844, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.600823+00', 1269, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12845, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.270021+00', 2631, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12846, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.746216+00', 1262, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12847, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.312658+00', 2716, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12848, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.312658+00', 2756, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(12849, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.861668+00', 1223, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12850, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.395596+00', 1734, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12851, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.334185+00', 2804, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12852, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.395596+00', 1753, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(12853, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.334185+00', 2821, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(12854, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.313017+00', 2063, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 19, 3, NULL, 2, NULL), +(12855, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:14.270161+00', 3133, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12856, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.417873+00', 2067, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12857, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.368184+00', 2279, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12858, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.368184+00', 2284, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 2, NULL), +(12859, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.304925+00', 2506, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12860, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.304925+00', 2518, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 2, NULL), +(12861, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.258362+00', 2809, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12862, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.258362+00', 2820, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(12863, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.243983+00', 1894, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12864, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.413352+00', 1736, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12865, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.398172+00', 1787, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 14, 2, NULL, 2, NULL), +(12866, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:15.40973+00', 2848, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12867, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.206793+00', 132, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12868, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.235317+00', 141, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12869, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.27087+00', 152, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12870, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.207769+00', 308, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12871, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.171543+00', 356, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12872, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.223882+00', 395, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12873, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.519201+00', 157, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12874, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.354665+00', 357, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12875, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.575491+00', 147, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12876, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.292263+00', 435, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12877, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.591881+00', 172, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12878, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.595711+00', 176, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12879, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.574319+00', 207, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12880, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.54173+00', 248, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12881, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.580341+00', 212, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12882, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.19194+00', 614, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12883, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.189432+00', 158, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12884, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.144732+00', 271, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12885, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.160736+00', 305, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12886, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.185655+00', 307, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12887, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.214619+00', 332, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12888, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.412851+00', 162, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12889, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.434642+00', 171, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12890, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.397322+00', 240, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12891, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.708822+00', 149, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12892, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.735209+00', 161, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12893, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.768112+00', 154, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12894, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.169565+00', 785, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12895, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.797145+00', 160, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12896, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.75415+00', 222, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12897, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.801535+00', 181, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12898, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.834319+00', 149, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12899, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:44.834775+00', 891, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(12900, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.697356+00', 577, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12901, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.697356+00', 579, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(12902, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.583268+00', 705, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(12903, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.694454+00', 658, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 11, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12904, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.450714+00', 1083, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(12905, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.450714+00', 1082, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12906, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.887897+00', 660, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12907, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.872485+00', 675, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12908, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.884355+00', 691, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12909, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.884355+00', 786, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(12910, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.246017+00', 542, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12911, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.266144+00', 588, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12912, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.28919+00', 615, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(12913, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.24547+00', 684, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 19, 3, NULL, 2, NULL), +(12914, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.399018+00', 1609, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12915, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.399018+00', 1615, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(12916, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.338809+00', 1846, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12917, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.880883+00', 1513, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12918, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.884382+00', 1539, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 18, 3, NULL, 2, NULL), +(12919, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.490656+00', 958, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12920, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.490656+00', 960, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(12921, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.557402+00', 1521, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(12922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.557402+00', 1410, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12923, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.278294+00', 1732, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12924, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.275178+00', 2085, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12925, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.275178+00', 2095, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(12926, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.251093+00', 2197, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12927, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.251093+00', 2203, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(12928, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.520572+00', 2058, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 1, 2, NULL, 2, NULL), +(12929, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.876008+00', 1757, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12930, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.25125+00', 2406, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12931, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.417923+00', 2402, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12932, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.971552+00', 1997, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12933, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.982176+00', 2012, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12934, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:45.730922+00', 3240, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12935, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.923116+00', 2039, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12936, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:47.267539+00', 2009, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12937, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:47.189996+00', 2105, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12938, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.722584+00', 3185, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12939, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.722584+00', 3221, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(12940, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.677809+00', 58, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12941, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.858569+00', 184, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12942, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.677763+00', 417, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12943, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.870788+00', 237, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12944, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.880385+00', 287, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12945, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.964164+00', 220, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12946, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.051405+00', 140, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12947, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.027271+00', 187, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12948, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.866159+00', 348, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12949, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.025301+00', 198, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12950, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.708416+00', 518, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12951, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.016357+00', 227, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12952, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.046331+00', 214, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12953, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.883195+00', 382, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12954, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.861285+00', 411, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12955, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.03168+00', 249, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12956, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.77688+00', 220, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12957, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.820382+00', 197, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12958, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.738596+00', 354, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12959, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.776733+00', 306, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12960, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.798558+00', 329, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12961, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.746308+00', 394, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12962, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.096087+00', 72, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12963, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.735519+00', 469, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12964, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.853384+00', 608, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12965, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.160315+00', 307, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12966, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.165459+00', 318, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12967, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.139246+00', 463, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12968, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.271081+00', 343, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12969, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.203425+00', 436, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12970, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.355904+00', 287, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12971, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:44.811965+00', 900, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12972, X'ed80c1e77a4ab6524eb2c26f54f2bc2e1366ffb3109df6697b1c58512ea50cc8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:11.63085+00', 96, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12973, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:14.85082+00', 467, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12974, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:14.852471+00', 520, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12975, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.289255+00', 199, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12976, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:14.815664+00', 706, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12977, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.177978+00', 402, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12978, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.438273+00', 291, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(12979, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.290293+00', 440, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(12980, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.207996+00', 555, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12981, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.290519+00', 486, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(12982, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.315813+00', 464, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(12983, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.403765+00', 444, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(12984, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:14.84217+00', 1051, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12985, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.487127+00', 469, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(12986, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.469404+00', 488, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12987, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.469573+00', 492, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(12988, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.370948+00', 599, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(12989, X'ced42aaae260cab5b907e14b8e59d650ebbb24bbc997cabf62faee41368fa4f8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:33.195156+00', 89, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(12990, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.679254+00', 106, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(12991, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.79516+00', 95, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(12992, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.794496+00', 171, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(12993, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.84795+00', 171, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(12994, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.686195+00', 367, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(12995, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.019914+00', 244, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(12996, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.022939+00', 316, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(12997, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.242513+00', 108, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(12998, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.996692+00', 398, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(12999, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.283698+00', 127, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13000, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.313644+00', 169, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13001, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.361644+00', 171, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13002, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.810323+00', 747, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13003, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.465801+00', 112, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13004, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.449449+00', 131, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13005, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.465781+00', 134, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13006, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:14.790419+00', 69, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13007, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:14.745342+00', 502, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13008, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:14.882544+00', 562, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13009, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.327394+00', 266, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13010, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.223478+00', 448, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13011, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.377174+00', 358, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13012, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:14.836759+00', 925, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13013, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.106611+00', 723, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13014, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.081521+00', 773, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13015, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.296853+00', 554, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13016, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:14.815251+00', 1042, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13017, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.349676+00', 556, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13018, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.140115+00', 794, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13019, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.197794+00', 746, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13020, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.373286+00', 604, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13021, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.39391+00', 590, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13022, X'35615d22df10329735db7d3b9a8ab7189a11afb0d3ea2479300175a7665309b2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:17.938477+00', 41, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13023, X'35615d22df10329735db7d3b9a8ab7189a11afb0d3ea2479300175a7665309b2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:20.099034+00', 49, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13024, X'5e471679fa4166329cab1c9f34578bbc318474faaf9bcfc7440f1f08376608db', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:44.235369+00', 96, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13025, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:44.971134+00', 167, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13026, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.037537+00', 298, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13027, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.307718+00', 258, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13028, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.017035+00', 562, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13029, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.064108+00', 590, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13030, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.093229+00', 556, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13031, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.218849+00', 432, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13032, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.219625+00', 474, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13033, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.09824+00', 565, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13034, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.037493+00', 744, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13035, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.247208+00', 554, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13036, X'5e471679fa4166329cab1c9f34578bbc318474faaf9bcfc7440f1f08376608db', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.566857+00', 288, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13037, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.349875+00', 583, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13038, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.247503+00', 729, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13039, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.079051+00', 909, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13040, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.278684+00', 713, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13041, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.359456+00', 790, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13042, X'f14e3cf1c75834baaebfede1adea821894334135d92e124d202e57d3ff1d0b88', TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:50.690711+00', 71, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13043, X'92e82e54aa3bb287f891cbdee35e4bb8dcbe34676b1882c36fc8a14260d9b8e1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:04.616276+00', 38, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13044, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:08.4203+00', 47, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(13045, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:14.776682+00', 413, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13046, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.070165+00', 303, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13047, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.142169+00', 357, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13048, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.232461+00', 337, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13049, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:14.7084+00', 883, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13050, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.045444+00', 567, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13051, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.164062+00', 452, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13052, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.37162+00', 308, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13053, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.202582+00', 523, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13054, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.398955+00', 350, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13055, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.26926+00', 484, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13056, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.064808+00', 704, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13057, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.444347+00', 321, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13058, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.370214+00', 406, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13059, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.516733+00', 268, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13060, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.069979+00', 741, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13061, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.735839+00', 281, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13062, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.783725+00', 284, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13063, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.780533+00', 296, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13064, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.822956+00', 250, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13065, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.77287+00', 334, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13066, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.828975+00', 280, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13067, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.1519+00', 77, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13068, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.846579+00', 435, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13069, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.807738+00', 534, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13070, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.070827+00', 279, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13071, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.189788+00', 169, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13072, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.210942+00', 188, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13073, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.154266+00', 231, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13074, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.118831+00', 341, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13075, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.379021+00', 153, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13076, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:44.739396+00', 801, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13077, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.389485+00', 169, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13078, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.392356+00', 241, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13079, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.441715+00', 295, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13080, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.510349+00', 247, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13081, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.601613+00', 172, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13082, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.673174+00', 206, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13083, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.566374+00', 344, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13084, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.637931+00', 309, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13085, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.574673+00', 379, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13086, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.686717+00', 274, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13087, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.696183+00', 344, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13088, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.802785+00', 248, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13089, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.823526+00', 290, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13090, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.887553+00', 226, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13091, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.766036+00', 350, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13092, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.753141+00', 385, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13093, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.18494+00', 138, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13094, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.171275+00', 178, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13095, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.274145+00', 85, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13096, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.187662+00', 197, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13097, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.230921+00', 186, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13098, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.293699+00', 141, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13099, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.184556+00', 281, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13100, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.24755+00', 231, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13101, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.308167+00', 175, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13102, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.346365+00', 144, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13103, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.282146+00', 224, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13104, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.33564+00', 188, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13105, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.35542+00', 172, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13106, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.307152+00', 231, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13107, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.251532+00', 291, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13108, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.365609+00', 215, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13109, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.090157+00', 279, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13110, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.285222+00', 169, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13111, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.214541+00', 256, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13112, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.257937+00', 262, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13113, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.111284+00', 440, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13114, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.270894+00', 293, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13115, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.372344+00', 193, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13116, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.392374+00', 242, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13117, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.343512+00', 304, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13118, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.483888+00', 179, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13119, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.191001+00', 501, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13120, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.489657+00', 216, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13121, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.452167+00', 300, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13122, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.386141+00', 372, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13123, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.529318+00', 270, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13124, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.411054+00', 406, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13125, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.397118+00', 83, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13126, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.39062+00', 317, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13127, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.437019+00', 295, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13128, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.505452+00', 228, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13129, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.505464+00', 354, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13130, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.506096+00', 358, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13131, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.405526+00', 543, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13132, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.727097+00', 285, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13133, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.38027+00', 633, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13134, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.653958+00', 365, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13135, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.748148+00', 315, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13136, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.491201+00', 579, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13137, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.439332+00', 639, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13138, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.405599+00', 692, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13139, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.325481+00', 869, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13140, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.555851+00', 674, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13141, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.324427+00', 191, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13142, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.302669+00', 281, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13143, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.443808+00', 197, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13144, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.504477+00', 294, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13145, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.69597+00', 151, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13146, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.522173+00', 343, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13147, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.695128+00', 173, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13148, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.543803+00', 364, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13149, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.680093+00', 276, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13150, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.601496+00', 355, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13151, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.745412+00', 215, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13152, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.749694+00', 209, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13153, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.647555+00', 355, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13154, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.722112+00', 300, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13155, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.750202+00', 275, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13156, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.82377+00', 274, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13157, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.298486+00', 91, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13158, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.309951+00', 106, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13159, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.378913+00', 224, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13160, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.424195+00', 256, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13161, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.398523+00', 369, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13162, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.493777+00', 283, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13163, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.398276+00', 426, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13164, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.369024+00', 477, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13165, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.548524+00', 504, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13166, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.611416+00', 515, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13167, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.532397+00', 639, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13168, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.7625+00', 455, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13169, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.759513+00', 464, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13170, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.75894+00', 493, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13171, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.986372+00', 268, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13172, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.764252+00', 577, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13173, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.236651+00', 64, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13174, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.262515+00', 241, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13175, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.28509+00', 244, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13176, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.46294+00', 155, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13177, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.350962+00', 372, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13178, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.31633+00', 418, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13179, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.642466+00', 107, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13180, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.29193+00', 476, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13181, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.530267+00', 456, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13182, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.480131+00', 531, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13183, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.57763+00', 438, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13184, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.686095+00', 328, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13185, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.479837+00', 561, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13186, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.852588+00', 207, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13187, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.810731+00', 281, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13188, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.844228+00', 378, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13189, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.325081+00', 215, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13190, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.290456+00', 325, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13191, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.328937+00', 336, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13192, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.346284+00', 373, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13193, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.386458+00', 344, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13194, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.546124+00', 255, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13195, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.514909+00', 307, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13196, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.40717+00', 473, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13197, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.569087+00', 387, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13198, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.668467+00', 298, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13199, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.625279+00', 366, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13200, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.514091+00', 489, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13201, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.658686+00', 356, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13202, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.692438+00', 360, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13203, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.809906+00', 314, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13204, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.732249+00', 408, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13205, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.280975+00', 303, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13206, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.421641+00', 258, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13207, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.505937+00', 194, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13208, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.304039+00', 435, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13209, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.47461+00', 325, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13210, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.473422+00', 320, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13211, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.576694+00', 271, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13212, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.56063+00', 300, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13213, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.709192+00', 152, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13214, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.605423+00', 287, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13215, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.577929+00', 336, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13216, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.503544+00', 420, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13217, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.575139+00', 362, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13218, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.598938+00', 346, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13219, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.719772+00', 248, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13220, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.73843+00', 455, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13221, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.593998+00', 292, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13222, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.57295+00', 341, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13223, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.596965+00', 386, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13224, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.597945+00', 414, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13225, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.602863+00', 406, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13226, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.67722+00', 351, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13227, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.716287+00', 320, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13228, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.546365+00', 498, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13229, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.771501+00', 343, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13230, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.85113+00', 278, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13231, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.550113+00', 607, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13232, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.852729+00', 318, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13233, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.085981+00', 105, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13234, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.890037+00', 325, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13235, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.459874+00', 761, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13236, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.84214+00', 448, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13237, X'b5c419f8c7a2627acf1f30b4fa7f5965bce80a9493f28b0382f1edaf2951013a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:51:54.962823+00', 36, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13238, X'b5c419f8c7a2627acf1f30b4fa7f5965bce80a9493f28b0382f1edaf2951013a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:51:57.385525+00', 79, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13239, X'fb71a113d57daa79af49598666ed3746e903ba0cbde95d3d226583469140352f', TIMESTAMP WITH TIME ZONE '2022-12-21 06:52:03.509926+00', 50, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13240, X'df3956145c9f1bf9f089d16ec64dcb2af43afb22963595faff42478ceb5371a2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:26.385497+00', 40, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13241, X'df3956145c9f1bf9f089d16ec64dcb2af43afb22963595faff42478ceb5371a2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:27.955068+00', 43, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13242, X'fb71a113d57daa79af49598666ed3746e903ba0cbde95d3d226583469140352f', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:33.238141+00', 81, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13243, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.196956+00', 75, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13244, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.248626+00', 74, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13245, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.245185+00', 134, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13246, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.319684+00', 80, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13247, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.336337+00', 82, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13248, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.218264+00', 200, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13249, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.227281+00', 200, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13250, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.910911+00', 169, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13251, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.895407+00', 226, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13252, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.049096+00', 99, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13253, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.910099+00', 272, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13254, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.068005+00', 171, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13255, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.974839+00', 273, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13256, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.14184+00', 149, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13257, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.092724+00', 222, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13258, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.002596+00', 403, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13259, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.191578+00', 136, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13260, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.215953+00', 138, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13261, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.30173+00', 64, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13262, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.273247+00', 105, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13263, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.18435+00', 200, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13264, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.29649+00', 99, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13265, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.351973+00', 60, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13266, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.942165+00', 110, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13267, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.985574+00', 121, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13268, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.079811+00', 50, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13269, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.937644+00', 195, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13270, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.014074+00', 132, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13271, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.959492+00', 187, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13272, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.932636+00', 264, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13273, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.991327+00', 212, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13274, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.894919+00', 313, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13275, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:45.758776+00', 73, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13276, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.080369+00', 77, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13277, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.153777+00', 69, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13278, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.117124+00', 118, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13279, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.177566+00', 83, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13280, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.183174+00', 121, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13281, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.20848+00', 118, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13282, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.005856+00', 84, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13283, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:50.943355+00', 196, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13284, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:50.967455+00', 210, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13285, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.109815+00', 131, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13286, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.018976+00', 241, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13287, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.05905+00', 226, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13288, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.004573+00', 313, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13289, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.011338+00', 125, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13290, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.02322+00', 149, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13291, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.065667+00', 168, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13292, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.013368+00', 221, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13293, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.093073+00', 154, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13294, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.051275+00', 257, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13295, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.094081+00', 241, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13296, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.058721+00', 286, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13297, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.102376+00', 273, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13298, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.868154+00', 50, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13299, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.85484+00', 103, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13300, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.92773+00', 75, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13301, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.950075+00', 103, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13302, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.920791+00', 153, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13303, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.954052+00', 127, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13304, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.942309+00', 188, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13305, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.783488+00', 314, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13306, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.021785+00', 226, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13307, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.06119+00', 192, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13308, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.065265+00', 195, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13309, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.021716+00', 442, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13310, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.059121+00', 418, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13311, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.981173+00', 542, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13312, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.026085+00', 558, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13313, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.934334+00', 679, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13314, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.056138+00', 69, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13315, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.063985+00', 166, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13316, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.089882+00', 143, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13317, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.091881+00', 149, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13318, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.037298+00', 208, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13319, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.083964+00', 169, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13320, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.070412+00', 212, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13321, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.725415+00', 125, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13322, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.895135+00', 101, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13323, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.842131+00', 270, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13324, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.909148+00', 238, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13325, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.873981+00', 293, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13326, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.882901+00', 301, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13327, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.777952+00', 457, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13328, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.71268+00', 540, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13329, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.964856+00', 288, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13330, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:20.910524+00', 125, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13331, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.049879+00', 53, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13332, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:20.936408+00', 198, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13333, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:20.910308+00', 240, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13334, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:20.935082+00', 231, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13335, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.005419+00', 174, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13336, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.019204+00', 187, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13337, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.996471+00', 118, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13338, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.076841+00', 354, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13339, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.088334+00', 376, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13340, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.999218+00', 543, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13341, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.072156+00', 478, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13342, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.18208+00', 374, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13343, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.062178+00', 515, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13344, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.379558+00', 344, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13345, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.15431+00', 747, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13346, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.863427+00', 105, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13347, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.969521+00', 63, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13348, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.970439+00', 66, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13349, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.863158+00', 193, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13350, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.94565+00', 96, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13351, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.977988+00', 311, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13352, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.937001+00', 459, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13353, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.81604+00', 197, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13354, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.810313+00', 239, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13355, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.815476+00', 244, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13356, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.797056+00', 271, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13357, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.895495+00', 217, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13358, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.973621+00', 161, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13359, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.837183+00', 318, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13360, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.002859+00', 186, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13361, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.906746+00', 542, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13362, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.887223+00', 106, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13363, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.902892+00', 121, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13364, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.934938+00', 140, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13365, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.976752+00', 95, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13366, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.986884+00', 108, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13367, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.980484+00', 129, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13368, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.961143+00', 185, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13369, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.752716+00', 125, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13370, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.827424+00', 145, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13371, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.783731+00', 611, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13372, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.782769+00', 663, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13373, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.782821+00', 622, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13374, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.160515+00', 355, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13375, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.143142+00', 414, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13376, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.118603+00', 475, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13377, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.850849+00', 755, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13378, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:50.972833+00', 117, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13379, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:50.938677+00', 162, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13380, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:50.94998+00', 195, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13381, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:50.997539+00', 138, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13382, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:50.965587+00', 211, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13383, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.03899+00', 246, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13384, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:50.918348+00', 402, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13385, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.921154+00', 178, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13386, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.984224+00', 303, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13387, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.985189+00', 313, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13388, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.054209+00', 250, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13389, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.094171+00', 213, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13390, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.190867+00', 146, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13391, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.073641+00', 293, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13392, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.074195+00', 333, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13393, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.149487+00', 348, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13394, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:20.876948+00', 124, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13395, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:20.909106+00', 135, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13396, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:20.970972+00', 115, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13397, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:20.992252+00', 125, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13398, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.016863+00', 134, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13399, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:20.954331+00', 210, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13400, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:20.950301+00', 261, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13401, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.808024+00', 103, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13402, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.852661+00', 69, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13403, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.823898+00', 109, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13404, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.894565+00', 76, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13405, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.855057+00', 120, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13406, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.866716+00', 139, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13407, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.858236+00', 182, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13408, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.839343+00', 210, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13409, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.937999+00', 133, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13410, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:50.977893+00', 52, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13411, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:50.934783+00', 110, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13412, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:50.936792+00', 112, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13413, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.00578+00', 54, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13414, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.010637+00', 79, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13415, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:50.974027+00', 122, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13416, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.030888+00', 77, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13417, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.80285+00', 93, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13418, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.825336+00', 97, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13419, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.85649+00', 78, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13420, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.883758+00', 63, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13421, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.853985+00', 104, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13422, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.72222+00', 240, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13423, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.722211+00', 276, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13424, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.823862+00', 185, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13425, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.835357+00', 187, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13426, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.843986+00', 97, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13427, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.881917+00', 62, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13428, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.871924+00', 86, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13429, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.858272+00', 109, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13430, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.868572+00', 110, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13431, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.912244+00', 83, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13432, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.91755+00', 83, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13433, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.673134+00', 130, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13434, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.680132+00', 217, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13435, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.684647+00', 222, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13436, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.775009+00', 191, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13437, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.783952+00', 174, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13438, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.688806+00', 292, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13439, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.795453+00', 197, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13440, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.788804+00', 232, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13441, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.713108+00', 315, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13442, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:50.964225+00', 118, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13443, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:50.86863+00', 327, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13444, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:50.965894+00', 252, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13445, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:50.933445+00', 323, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13446, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.113362+00', 185, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13447, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.070095+00', 244, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13448, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.05248+00', 262, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13449, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.813369+00', 76, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13450, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.9061+00', 109, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13451, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.998915+00', 195, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13452, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.938159+00', 300, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13453, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.071471+00', 204, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13454, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.989192+00', 372, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13455, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.095667+00', 309, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13456, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.117924+00', 294, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13457, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.130378+00', 438, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13458, X'acc3971ef094432e77f252ec91c528e664588c28a9585bc77060330e02162970', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:08.924993+00', 62, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13459, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:20.993625+00', 77, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13460, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.015436+00', 97, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13461, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:20.997563+00', 116, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13462, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:20.997491+00', 134, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13463, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.013645+00', 185, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13464, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.028859+00', 176, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13465, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.031275+00', 170, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13466, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.787329+00', 290, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13467, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.934903+00', 195, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13468, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.011285+00', 159, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13469, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.964208+00', 209, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13470, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.925884+00', 267, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13471, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.008899+00', 206, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13472, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.958165+00', 279, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13473, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.938916+00', 334, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13474, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.911763+00', 469, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13475, X'acc3971ef094432e77f252ec91c528e664588c28a9585bc77060330e02162970', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:39.300693+00', 174, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13476, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.851599+00', 84, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13477, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.883363+00', 107, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13478, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.917362+00', 78, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13479, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.886277+00', 113, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13480, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.889857+00', 125, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13481, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.874016+00', 139, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13482, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.910303+00', 101, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13483, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.684852+00', 66, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13484, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.741816+00', 92, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13485, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.755308+00', 99, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13486, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.780309+00', 111, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13487, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.729606+00', 164, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13488, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.791225+00', 121, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13489, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.788377+00', 141, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13490, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.769183+00', 164, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13491, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.758995+00', 217, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13492, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.850281+00', 38, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13493, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.894004+00', 56, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13494, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.903723+00', 55, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13495, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.878432+00', 84, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13496, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.895202+00', 83, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13497, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.865472+00', 128, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13498, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.991806+00', 61, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13499, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.674849+00', 164, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13500, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.780191+00', 94, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13501, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.78018+00', 108, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13502, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.806648+00', 85, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13503, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.691948+00', 213, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13504, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.7743+00', 132, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13505, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.774261+00', 139, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13506, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.7073+00', 238, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13507, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.836894+00', 127, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13508, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:50.894589+00', 199, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13509, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:50.969423+00', 157, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13510, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:50.897719+00', 242, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13511, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:50.985633+00', 191, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13512, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:50.878743+00', 304, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13513, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:50.981892+00', 251, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13514, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.058293+00', 183, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13515, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.876035+00', 255, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13516, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.864078+00', 314, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13517, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.903403+00', 277, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13518, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.871851+00', 314, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13519, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.934665+00', 268, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13520, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.89702+00', 308, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13521, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.940414+00', 295, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13522, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.934015+00', 401, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13523, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.946565+00', 522, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13524, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:20.973499+00', 56, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13525, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:20.927955+00', 138, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13526, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:20.893136+00', 187, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13527, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:20.917317+00', 178, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13528, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:20.973414+00', 198, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13529, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:20.980618+00', 205, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13530, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:20.966333+00', 292, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13531, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.871404+00', 102, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13532, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.912363+00', 127, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13533, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.998531+00', 254, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13534, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.959449+00', 343, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13535, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.839411+00', 468, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13536, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.875265+00', 459, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13537, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.990308+00', 362, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13538, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.779727+00', 605, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13539, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.013525+00', 395, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13540, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.859533+00', 81, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13541, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.878876+00', 78, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13542, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.882101+00', 85, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13543, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.886405+00', 106, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13544, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.882124+00', 116, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13545, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.899834+00', 98, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13546, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.903137+00', 104, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13547, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.66919+00', 337, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13548, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.750038+00', 277, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13549, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.987771+00', 103, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13550, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.903736+00', 190, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13551, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.845156+00', 259, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13552, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.982128+00', 143, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13553, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.966199+00', 173, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13554, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.977724+00', 192, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13555, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.828808+00', 401, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13556, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.23842+00', 94, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13557, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.258637+00', 131, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13558, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.240095+00', 196, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13559, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.24511+00', 186, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13560, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.375675+00', 73, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13561, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.279355+00', 192, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13562, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.404662+00', 85, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13563, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.16233+00', 144, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13564, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.321307+00', 71, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13565, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.299749+00', 139, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13566, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.353674+00', 179, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13567, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.20155+00', 334, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13568, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.350552+00', 250, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13569, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.181504+00', 440, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13570, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.301467+00', 347, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13571, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.297619+00', 431, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13572, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.353713+00', 48, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13573, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.368617+00', 70, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13574, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.375318+00', 80, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13575, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.358962+00', 109, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13576, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.406568+00', 54, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13577, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.340962+00', 157, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13578, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.419385+00', 80, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13579, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.119051+00', 109, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13580, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.091158+00', 146, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13581, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.140552+00', 105, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13582, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.102972+00', 174, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13583, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.135163+00', 146, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13584, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.064746+00', 218, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13585, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.172677+00', 124, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13586, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.102748+00', 205, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13587, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.222158+00', 175, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13588, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.293259+00', 104, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13589, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.262455+00', 176, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13590, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.296898+00', 150, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13591, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.306095+00', 183, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13592, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.303585+00', 196, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13593, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.288789+00', 232, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13594, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.2824+00', 262, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13595, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.090838+00', 53, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13596, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.086502+00', 100, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13597, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.118333+00', 105, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13598, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.119256+00', 105, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13599, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.052209+00', 227, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13600, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.209901+00', 112, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13601, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.235583+00', 103, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13602, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.245063+00', 104, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13603, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.115942+00', 360, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13604, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.291711+00', 86, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13605, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.344231+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13606, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.317563+00', 129, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13607, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.345674+00', 109, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13608, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.403917+00', 74, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13609, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.323497+00', 176, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13610, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.422492+00', 85, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13611, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.231344+00', 124, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13612, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.294025+00', 113, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13613, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.267165+00', 155, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13614, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.213797+00', 222, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13615, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.288108+00', 159, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13616, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.253539+00', 210, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13617, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.343281+00', 131, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13618, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.319547+00', 184, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13619, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.296913+00', 268, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13620, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.417966+00', 129, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13621, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.47664+00', 76, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13622, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.437124+00', 129, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13623, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.442133+00', 113, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13624, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.41816+00', 212, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13625, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.433482+00', 231, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13626, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.476273+00', 195, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13627, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.186628+00', 208, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13628, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.170001+00', 238, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13629, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.339579+00', 107, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13630, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.35326+00', 172, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13631, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.350239+00', 230, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13632, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.302239+00', 317, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13633, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.285099+00', 348, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13634, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.332111+00', 306, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13635, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.348389+00', 291, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13636, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.326404+00', 95, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13637, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.372722+00', 78, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13638, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.423183+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13639, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.361592+00', 155, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13640, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.425604+00', 97, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13641, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.468064+00', 71, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13642, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.426349+00', 127, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13643, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.379584+00', 304, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13644, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.316398+00', 377, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13645, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.28504+00', 423, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13646, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.191128+00', 554, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13647, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.462922+00', 431, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13648, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.47756+00', 506, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13649, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.282939+00', 701, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13650, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.495351+00', 505, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13651, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.359223+00', 736, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13652, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.853966+00', 59, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13653, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.896377+00', 81, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13654, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.902733+00', 79, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13655, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.935127+00', 86, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13656, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.884333+00', 115, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13657, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.927235+00', 118, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13658, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.994296+00', 81, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13659, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.88662+00', 87, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13660, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.918832+00', 144, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13661, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.870744+00', 251, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13662, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.062129+00', 170, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13663, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.914226+00', 321, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13664, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.042062+00', 226, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13665, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.082318+00', 211, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13666, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.060458+00', 251, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13667, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.872423+00', 508, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13668, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:50.97452+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13669, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:50.957473+00', 135, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13670, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:50.953462+00', 163, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13671, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.011975+00', 139, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13672, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.007976+00', 160, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13673, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.049116+00', 129, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13674, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:50.95142+00', 265, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13675, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.743367+00', 71, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13676, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.801737+00', 63, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13677, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.713421+00', 180, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13678, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.865576+00', 180, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13679, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.950133+00', 191, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13680, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.886457+00', 284, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13681, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.867325+00', 318, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13682, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.835147+00', 400, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13683, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.927203+00', 317, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13684, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:20.885492+00', 294, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13685, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:20.911769+00', 264, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13686, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:20.999113+00', 298, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13687, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.049192+00', 241, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13688, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.007911+00', 363, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13689, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.054163+00', 347, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13690, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.041158+00', 406, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13691, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.962807+00', 481, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13692, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.172246+00', 270, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13693, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.178996+00', 374, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13694, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.175041+00', 384, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13695, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.257717+00', 302, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13696, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.128038+00', 512, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13697, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.200122+00', 511, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13698, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.128039+00', 627, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13699, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.25765+00', 754, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13700, X'ffd9622b3387937e60835012c91bac4ac326b08e3598ba9a9c6594ce70d389df', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:37.909915+00', 46, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13701, X'56f8d34a15b37f3ea01838843e886cb8c687b3854ed283e8f8ffe49a8fc19969', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:47.933509+00', 37, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13702, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.007655+00', 88, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13703, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.002514+00', 106, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13704, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:50.928482+00', 234, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13705, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.313129+00', 206, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13706, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.18389+00', 396, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13707, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.239001+00', 361, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13708, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.263149+00', 377, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13709, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.084668+00', 86, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13710, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.134109+00', 140, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13711, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.084553+00', 216, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13712, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.083069+00', 209, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13713, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.06828+00', 250, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13714, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.164519+00', 200, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13715, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.047776+00', 332, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13716, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.15223+00', 235, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13717, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.084592+00', 312, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13718, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.31081+00', 135, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13719, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.316281+00', 149, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13720, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.341026+00', 158, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13721, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.336412+00', 188, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13722, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.325291+00', 220, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13723, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.330833+00', 272, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13724, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.378694+00', 226, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13725, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.017241+00', 176, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13726, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.016399+00', 181, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13727, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.171012+00', 63, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13728, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.161552+00', 85, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13729, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.998233+00', 270, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13730, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.122322+00', 158, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13731, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.171317+00', 129, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13732, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.116065+00', 213, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13733, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.169+00', 225, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13734, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.291116+00', 83, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13735, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.295233+00', 86, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13736, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.273637+00', 128, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13737, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.298272+00', 112, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13738, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.34119+00', 70, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13739, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.358331+00', 74, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13740, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.358329+00', 77, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13741, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.028564+00', 62, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13742, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.029652+00', 116, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13743, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.021563+00', 131, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13744, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.05687+00', 104, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13745, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.026179+00', 168, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13746, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.974798+00', 233, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13747, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.112292+00', 104, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13748, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.062394+00', 173, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13749, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.058185+00', 238, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13750, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.319017+00', 104, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13751, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.34293+00', 92, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13752, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.370496+00', 140, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13753, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.321483+00', 214, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13754, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.313078+00', 232, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13755, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.366729+00', 217, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13756, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.452018+00', 142, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13757, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.268465+00', 228, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13758, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.121483+00', 403, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13759, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.105583+00', 429, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13760, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.127393+00', 439, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13761, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.2364+00', 350, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13762, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.119666+00', 525, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13763, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.381607+00', 280, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13764, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.135417+00', 584, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13765, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.09373+00', 683, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13766, X'b8d759092651056f87f2f1b4b97f5cfebe45c1676ab16a3ec166663cdebd6e68', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:24.105775+00', 72, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13767, X'b8d759092651056f87f2f1b4b97f5cfebe45c1676ab16a3ec166663cdebd6e68', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:27.671341+00', 30, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13768, X'58b95fb980542e04d56c66a9bde707e1e9c0a8d4af62a1eef3e5e380b2bf1563', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:42.538294+00', 11, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''t''.', 1, NULL, NULL, NULL, 2, NULL), +(13769, X'56f8d34a15b37f3ea01838843e886cb8c687b3854ed283e8f8ffe49a8fc19969', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:45.448384+00', 33, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13770, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:51.892156+00', 453, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13771, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.193194+00', 295, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13772, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.269939+00', 315, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13773, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.330903+00', 293, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13774, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.258506+00', 404, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13775, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.345758+00', 323, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13776, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.192861+00', 553, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13777, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.134655+00', 188, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13778, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.118542+00', 220, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13779, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.200497+00', 178, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13780, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.185167+00', 276, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13781, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.301469+00', 198, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13782, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.198477+00', 313, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13783, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.27799+00', 253, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13784, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.352339+00', 239, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13785, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.354352+00', 406, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13786, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.444021+00', 103, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13787, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.484938+00', 121, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13788, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.447027+00', 214, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13789, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.506996+00', 170, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13790, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.452327+00', 238, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13791, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.426122+00', 297, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13792, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.455996+00', 285, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13793, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.156799+00', 142, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13794, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.191759+00', 163, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13795, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.21137+00', 182, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13796, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.223572+00', 221, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13797, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.14642+00', 320, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13798, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.21572+00', 289, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13799, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.289763+00', 244, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13800, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.21529+00', 350, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13801, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.20012+00', 367, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13802, X'7a6bc6e6a4c3d1000cd8561be7bc27e3dc0fb684be4c688dbbfbf1fef8436a7d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:32.150549+00', 39, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13803, X'2fc52eeead3465526ac6631e08b7b98ef348c048bc014747064068ba898ce41d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:40.613161+00', 33, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13804, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.364194+00', 72, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13805, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.378498+00', 68, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13806, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.354331+00', 151, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13807, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.3928+00', 105, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13808, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.466761+00', 75, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13809, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.466716+00', 85, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13810, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.462116+00', 123, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13811, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.18978+00', 106, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13812, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.257507+00', 117, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13813, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.251963+00', 169, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13814, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.171456+00', 250, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13815, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.344147+00', 217, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13816, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.274447+00', 311, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13817, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.352178+00', 294, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13818, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.25545+00', 401, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13819, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.44249+00', 288, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13820, X'0acf3ceb12140c2fa622f5b56cb966f2156e26e0b02856b4d506339a6d1ef8d6', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:54.61881+00', 12, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''c''.', 1, NULL, NULL, NULL, 2, NULL), +(13821, X'56f8d34a15b37f3ea01838843e886cb8c687b3854ed283e8f8ffe49a8fc19969', TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:57.552387+00', 31, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13822, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.103619+00', 80, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13823, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.200263+00', 151, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13824, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.172981+00', 220, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13825, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.150362+00', 257, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13826, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.079031+00', 324, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13827, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.085123+00', 353, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13828, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.045969+00', 436, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13829, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.305449+00', 164, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13830, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.306281+00', 318, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13831, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.40966+00', 219, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13832, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.346727+00', 294, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13833, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.33674+00', 342, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13834, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.488504+00', 187, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13835, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.280397+00', 510, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13836, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.502135+00', 317, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13837, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.297283+00', 586, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13838, X'6a036c6cadc087e7cd13665f96f0f1ad6c13a1fb95d7a638a7c765439b1ae806', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:35.430542+00', 76, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(13839, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.299318+00', 232, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13840, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.376608+00', 227, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13841, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.424563+00', 205, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13842, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.495332+00', 137, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13843, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.464303+00', 192, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13844, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.438064+00', 221, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13845, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.405339+00', 257, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13846, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.261246+00', 165, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13847, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.234542+00', 258, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13848, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.281368+00', 247, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13849, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.272838+00', 302, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13850, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.282541+00', 298, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13851, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.151542+00', 439, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13852, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.198319+00', 399, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13853, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.267913+00', 413, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13854, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.20523+00', 532, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13855, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:08.774549+00', 49, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(13856, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:13.9108+00', 88, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13857, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:14.187031+00', 40, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13858, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:14.18041+00', 57, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13859, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:14.183073+00', 65, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13860, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:15.030753+00', 76, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13861, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:15.036808+00', 94, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13862, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:15.040303+00', 101, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13863, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.380291+00', 117, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13864, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.402237+00', 103, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13865, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.434808+00', 133, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13866, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.449694+00', 142, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13867, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.471506+00', 120, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13868, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.464274+00', 143, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13869, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.426451+00', 219, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13870, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.107281+00', 309, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13871, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.189927+00', 308, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13872, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.194789+00', 324, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13873, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.113986+00', 409, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13874, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.383229+00', 183, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13875, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.237106+00', 363, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13876, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.343755+00', 340, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13877, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.125352+00', 585, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13878, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.27029+00', 463, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13879, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.022246+00', 256, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13880, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.095453+00', 241, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13881, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.205349+00', 145, 4, TRUE, 'public-dashboard', NULL, 1, 11, 2, NULL, 2, FALSE), +(13882, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.205581+00', 165, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13883, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.206717+00', 195, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13884, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.247908+00', 159, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13885, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.295585+00', 154, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13886, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.124858+00', 205, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13887, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.145449+00', 257, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13888, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.152605+00', 274, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13889, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.125283+00', 324, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13890, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.10226+00', 403, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13891, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.164133+00', 403, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13892, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.322961+00', 261, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13893, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.25403+00', 344, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13894, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.418149+00', 372, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13895, X'7aa8ab5a997e5e540197165b39145653843f43d2f07501e201e070bdc79d0d1f', TIMESTAMP WITH TIME ZONE '2022-12-21 07:21:26.294133+00', 68, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(13896, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-21 07:22:06.017778+00', 80, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(13897, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-21 07:22:28.06555+00', 63, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(13898, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-21 07:24:09.115054+00', 70, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(13899, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-21 07:24:51.801791+00', 73, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(13900, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.431599+00', 64, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13901, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.770615+00', 80, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13902, X'0dc75ef2fd793021182d7279fcce16d9c3b97e793311942cc6c8a8c1e70edc4a', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.838161+00', 76, 4, TRUE, 'dashboard', NULL, 1, 11, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13903, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.762574+00', 173, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13904, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.818327+00', 127, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13905, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.861905+00', 106, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13906, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.809361+00', 212, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13907, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:25.706924+00', 35, 4, TRUE, 'question', NULL, 1, 11, 2, NULL, 2, FALSE), +(13908, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:27.562194+00', 48, 4, TRUE, 'question', NULL, 1, 31, 2, NULL, 2, FALSE), +(13909, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-21 07:26:09.112504+00', 72, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(13910, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.063297+00', 88, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13911, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.012134+00', 186, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13912, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.062429+00', 196, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13913, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.037467+00', 223, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13914, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.225784+00', 138, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13915, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.132641+00', 724, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13916, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.182391+00', 717, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13917, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.250429+00', 647, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13918, X'ec4d53584aec1e8e12f61f6ddc9c5d25c7a7759e4a2c56a9ef5d5a5ff498c1f2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.215093+00', 728, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13919, X'f50ebdb67d85546af2627121a1fee046fc101c38309551c61122ff6432218f29', TIMESTAMP WITH TIME ZONE '2022-12-21 07:31:42.309746+00', 74, 5, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13920, X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:08.467998+00', 76, 5, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(13921, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.195177+00', 110, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.196559+00', 157, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13923, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.490674+00', 96, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13924, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.518195+00', 85, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13925, X'c5998baa1cdc417bf59bcc7fbfcfa793aafbda5ac553936c17b650ee19ff3b72', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.55755+00', 97, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13926, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.95866+00', 151, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13927, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.987165+00', 114, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13928, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:17.027094+00', 142, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13929, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:17.04453+00', 218, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13930, X'8b0d3f74dae6756c5f7f33571e8f90bcec096eb9cb8f8c68d346965e27362f4b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:25.855298+00', 112, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13931, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:39.837791+00', 91, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(13932, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.620594+00', 108, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13933, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.602779+00', 175, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13934, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.860774+00', 139, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13935, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.89688+00', 128, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13936, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.859085+00', 166, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13937, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.245402+00', 110, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13938, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.329144+00', 129, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13939, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.286388+00', 206, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13940, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.312945+00', 266, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13941, X'0dcd7befcd416d30043eb461fa6f740bbf762c43ea7479d0ebc112ce2ee0495c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.601406+00', 46, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13942, X'837c7aa77a214ea0fde0f14a83b39d5e78fb5dfd18425103ef90251a80a2586c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.643205+00', 78, 2, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13943, X'89f9854fcc62c27ed4f063cc2ba5ba86657b784b8ac6f37f43e1651a7879990b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.7176+00', 142, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13944, X'4f9246f4d6d32cc4ea5f6ffc12e693082be688bb477c7717fbafff7237d854b7', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.723363+00', 141, 5, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13945, X'5a8109755eb335ad563ce775f77b2f0f6bc1a0b1dd0a382e1103d9a80a706e7d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.640325+00', 229, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13946, X'250d2624ff9b3a6c6eaff31711193c1595ba2ee449e2d544080b0cc487117799', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.680287+00', 190, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13947, X'83393cc8bc813ae1da6ee5b17e3b0596b698cacd6ac26f3ebaf06d7e05c47129', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.717325+00', 156, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13948, X'982acc2aa5723080821f9f2ab0042bca51b12a1f60de85d4062002dc30cb24b9', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.703825+00', 178, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13949, X'b763fb8e405258618129300cdd9e8d32282465445d61583b12eb6ffaa2f89ae5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.742623+00', 269, 5, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13950, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.055387+00', 136, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13951, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:17.973563+00', 223, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13952, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.036136+00', 266, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13953, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.097243+00', 268, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13954, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.156005+00', 223, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13955, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.043113+00', 347, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13956, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.097963+00', 319, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13957, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.164239+00', 257, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13958, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.29528+00', 327, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13959, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.38324+00', 107, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13960, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.431424+00', 96, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13961, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.383062+00', 144, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13962, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.47816+00', 177, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13963, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.469188+00', 197, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13964, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:22.812519+00', 143, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13965, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:22.836662+00', 136, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13966, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:22.828533+00', 207, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(13967, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:22.836742+00', 213, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13968, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:34.56019+00', 60, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13969, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.318925+00', 81, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13970, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.306714+00', 116, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13971, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.327451+00', 104, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13972, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.318901+00', 227, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13973, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.292629+00', 254, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(13974, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.396833+00', 173, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13975, X'd00099f4797e3abcd65a77af7d33d77f9cdaffd07b07ec80ee97876c7e0f81c2', TIMESTAMP WITH TIME ZONE '2022-12-21 07:59:14.187606+00', 92, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(13976, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.177507+00', 93, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13977, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.16594+00', 105, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13978, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.189595+00', 86, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(13979, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.25842+00', 63, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13980, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.446247+00', 106, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(13981, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.463316+00', 87, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13982, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.446434+00', 131, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13983, X'91b83edbfa94d26d2c6060aaef97954494fe48f5e5097c3beabb35de54c4d3c2', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:19.664002+00', 55, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(13984, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.780012+00', 67, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(13985, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.779642+00', 76, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(13986, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.784689+00', 93, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(13987, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.799502+00', 93, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(13988, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:35.063489+00', 69, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(13989, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:35.094998+00', 72, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(13990, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:35.063131+00', 130, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(13991, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.391733+00', 270, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(13992, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.345039+00', 401, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(13993, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.529481+00', 256, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(13994, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.532215+00', 248, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(13995, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.358007+00', 475, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(13996, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.734014+00', 117, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(13997, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.774193+00', 106, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(13998, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.703804+00', 226, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(13999, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.743802+00', 279, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14000, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.632562+00', 103, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14001, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.619662+00', 127, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14002, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.619742+00', 130, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14003, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.709778+00', 51, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14004, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.730419+00', 50, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14005, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:39.67608+00', 40, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14006, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:39.676052+00', 55, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14007, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.674999+00', 107, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14008, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.672982+00', 107, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14009, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.68421+00', 109, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14010, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.673055+00', 124, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14011, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.947434+00', 81, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14012, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.955784+00', 78, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14013, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.956519+00', 148, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14014, X'930dbe94439634cbe185f80def3fde9fafabb7b74d06585b9f23a7e4b7f391e2', TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:32.357493+00', 54, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(14015, X'b9249e34fd65b543964cad484256984abc77b40e6cb0d373824a0009f2123b92', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:31.385895+00', 53, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(14016, X'2d92b456a780fb8aad2c89b80965c456e82cf7414f17db19a2a4a4d1dbf53b4d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:43.268002+00', 43, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(14017, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.750626+00', 147, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14018, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.759867+00', 153, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14019, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.781571+00', 135, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14020, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.754166+00', 326, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14021, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.842131+00', 251, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14022, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.173561+00', 133, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14023, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.191448+00', 142, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14024, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.153091+00', 208, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14025, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.19902+00', 227, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14026, X'ac8f4cd7a6562f7f46effecb856f4ee918f2eaae68ddb717f3bced4b2b950a17', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:30.534934+00', 39, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(14027, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.387793+00', 70, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14028, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.429577+00', 61, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14029, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.429915+00', 138, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14030, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.698047+00', 268, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14031, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.895193+00', 169, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14032, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.736468+00', 330, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14033, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.918791+00', 187, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14034, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.905463+00', 239, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14035, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.899543+00', 306, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14036, X'317ea3ea24c31e3c8f8d992ef299184b13a46d58437e4540f50fa535e47ca150', TIMESTAMP WITH TIME ZONE '2022-12-21 10:09:01.045654+00', 89, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(14037, X'b467388f06560699d699c7e45d86d2bd14c24e854ea6a1ed96db72f60071d5fe', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:01.471116+00', 81, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(14038, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.256412+00', 145, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14039, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.293374+00', 109, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14040, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.325261+00', 103, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14041, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.701776+00', 198, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14042, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.701106+00', 288, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14043, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.702169+00', 297, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14044, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.838885+00', 184, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14045, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.733487+00', 298, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14046, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.869356+00', 198, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14047, X'93af36f968ca8f913647f77c6bb9ee588e95a27159d0eb0b78ed5584b9bc2d35', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:22.518925+00', 135, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(14048, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.508049+00', 65, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14049, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.514545+00', 159, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14050, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.968376+00', 152, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14051, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.993482+00', 245, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14052, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.06397+00', 177, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14053, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.121642+00', 129, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14054, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.10199+00', 198, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14055, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.977859+00', 396, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14056, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.974223+00', 491, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14057, X'4214a9c178449f7891a888c635418897a09f57540bfb0155d57a04ad7465960a', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:27.980427+00', 76, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(14058, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:43.994362+00', 135, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14059, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:43.978309+00', 159, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14060, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.097999+00', 84, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14061, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.480112+00', 249, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14062, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.514532+00', 286, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14063, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.450157+00', 423, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14064, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.488866+00', 384, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14065, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.471643+00', 461, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14066, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.399183+00', 716, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14067, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.649912+00', 63, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14068, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.648942+00', 116, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14069, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.722661+00', 106, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14070, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.743722+00', 111, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14071, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.091079+00', 136, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14072, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.123356+00', 142, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14073, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.126072+00', 172, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14074, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.790495+00', 66, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14075, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.840922+00', 167, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14076, X'592017c3f2f9092fba419ead0344d83a97fc8226c8e0671b54bf1582237e67e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:54.980102+00', 36, 10, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(14077, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.543626+00', 74, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14078, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.54352+00', 98, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14079, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.569151+00', 153, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14080, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.559267+00', 168, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14081, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.732719+00', 117, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14082, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.769764+00', 116, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14083, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.796724+00', 115, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14084, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.752769+00', 205, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14085, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.809289+00', 203, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14086, X'885af516da1f92f38f8e1d8e77c431d20d0143b314f6d44f2ae57c4489debab4', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:18.311392+00', 65, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(14087, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.77784+00', 50, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14088, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.77739+00', 69, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14089, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.781935+00', 68, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14090, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.783375+00', 79, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14091, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.06466+00', 72, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14092, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.068428+00', 84, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14093, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.090361+00', 77, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14094, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.086824+00', 117, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14095, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.085077+00', 182, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14096, X'4214a9c178449f7891a888c635418897a09f57540bfb0155d57a04ad7465960a', TIMESTAMP WITH TIME ZONE '2022-12-21 10:20:04.695024+00', 37, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(14097, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:50.738231+00', 325, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(14098, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.010067+00', 347, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14099, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.041278+00', 671, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(14100, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.045133+00', 934, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(14101, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:50.841273+00', 1258, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(14102, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:50.827456+00', 1429, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14103, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:50.827456+00', 1430, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(14104, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.030332+00', 1269, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14105, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.030332+00', 1304, 0, TRUE, 'public-dashboard', 'Closed', 1, 21, 3, NULL, 2, NULL), +(14106, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:50.694086+00', 1647, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14107, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.091368+00', 1255, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14108, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:50.694086+00', 1657, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(14109, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.086799+00', 1400, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14110, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.086799+00', 1404, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(14111, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.657058+00', 844, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14112, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.781636+00', 727, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14113, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.062433+00', 1456, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14114, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.246665+00', 427, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14115, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.030297+00', 1660, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14116, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.030297+00', 1662, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(14117, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.327407+00', 389, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 31, 2, NULL, 2, NULL), +(14118, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.986747+00', 874, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(14119, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.163136+00', 1875, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14120, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.85251+00', 259, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14121, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.376535+00', 764, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14122, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.056354+00', 2055, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14123, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.160877+00', 1982, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14124, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.376535+00', 769, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(14125, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.497326+00', 650, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14126, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.497326+00', 653, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 2, NULL), +(14127, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.306795+00', 1920, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14128, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.690346+00', 547, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14129, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.712426+00', 534, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14130, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.712426+00', 559, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(14131, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.852457+00', 465, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14132, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.625334+00', 839, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 2, NULL), +(14133, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.221896+00', 1276, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14134, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.716717+00', 801, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14135, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.733907+00', 801, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14136, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.395431+00', 1211, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14137, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.374674+00', 341, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14138, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.563839+00', 215, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14139, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.419478+00', 495, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14140, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.503841+00', 491, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14141, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.515283+00', 530, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14142, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.60258+00', 458, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14143, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.85827+00', 403, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14144, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.483305+00', 797, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14145, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.919752+00', 363, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14146, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.005303+00', 336, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14147, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.960229+00', 389, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14148, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.919867+00', 463, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14149, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.215129+00', 198, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14150, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.587251+00', 845, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14151, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.972043+00', 465, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14152, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.224095+00', 224, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14153, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:35.562464+00', 48, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(14154, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.267868+00', 83, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14155, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.287181+00', 103, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14156, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.29595+00', 159, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14157, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.359912+00', 121, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14158, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.387838+00', 118, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14159, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.571293+00', 124, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14160, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.581134+00', 201, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14161, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:50.748122+00', 279, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14162, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:50.867101+00', 170, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14163, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:50.972083+00', 221, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14164, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:50.923085+00', 370, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14165, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:50.894915+00', 440, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14166, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:50.834289+00', 559, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14167, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.313152+00', 301, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14168, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.017492+00', 729, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14169, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.591256+00', 259, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14170, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.281994+00', 585, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14171, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.519177+00', 353, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14172, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.345333+00', 553, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14173, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:50.944214+00', 1011, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14174, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.486357+00', 491, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14175, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.354805+00', 643, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14176, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.014964+00', 1007, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14177, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.643373+00', 78, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14178, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.635791+00', 135, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14179, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.675303+00', 100, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14180, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.665242+00', 135, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14181, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.676504+00', 162, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14182, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.750866+00', 196, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14183, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.74229+00', 216, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14184, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.720486+00', 268, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14185, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.121114+00', 126, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14186, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.196631+00', 82, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14187, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.198218+00', 126, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14188, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.152953+00', 198, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14189, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.29249+00', 68, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14190, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.295957+00', 89, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14191, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.859058+00', 538, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14192, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.124906+00', 262, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14193, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.842502+00', 187, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14194, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.886095+00', 240, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14195, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.792745+00', 398, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14196, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.882653+00', 323, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14197, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.967145+00', 359, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14198, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.111105+00', 241, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14199, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.84247+00', 548, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14200, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.331485+00', 82, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14201, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.332804+00', 208, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14202, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.32671+00', 268, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14203, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.262943+00', 349, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14204, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.519965+00', 241, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14205, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.466626+00', 355, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14206, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.421216+00', 402, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14207, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.891481+00', 967, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14208, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:50.934359+00', 956, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14209, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.647284+00', 138, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14210, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.795651+00', 164, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14211, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.855064+00', 136, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14212, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.840252+00', 214, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14213, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.794014+00', 329, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14214, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.77468+00', 496, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14215, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.059107+00', 241, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14216, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.086486+00', 477, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14217, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.673006+00', 899, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14218, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.855695+00', 731, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14219, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.19265+00', 402, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14220, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.316769+00', 307, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14221, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.313496+00', 379, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14222, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.856379+00', 847, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14223, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.316664+00', 412, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14224, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.157155+00', 561, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14225, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.669779+00', 122, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14226, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.667251+00', 143, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14227, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.697238+00', 132, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14228, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.683113+00', 158, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14229, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.647871+00', 200, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14230, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.685952+00', 174, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14231, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.640601+00', 223, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14232, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.653783+00', 236, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14233, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.688118+00', 210, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14234, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.009333+00', 55, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14235, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.013877+00', 56, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14236, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.995323+00', 92, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14237, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.031212+00', 78, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14238, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.007906+00', 103, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14239, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.0097+00', 107, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14240, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.042153+00', 80, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14241, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.706866+00', 186, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14242, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.747148+00', 181, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14243, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.725413+00', 235, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14244, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.752427+00', 217, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14245, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.748143+00', 236, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14246, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.770191+00', 396, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14247, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.722492+00', 482, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14248, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.254764+00', 85, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14249, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.083989+00', 297, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14250, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.823576+00', 563, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14251, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.053473+00', 388, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14252, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.234492+00', 221, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14253, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.934827+00', 497, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14254, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.215798+00', 233, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14255, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.210145+00', 275, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14256, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.296929+00', 221, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14257, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.75136+00', 115, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14258, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.869434+00', 156, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14259, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.817533+00', 213, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14260, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.882081+00', 190, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14261, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.797007+00', 319, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14262, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.7298+00', 392, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14263, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.959105+00', 345, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14264, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.942026+00', 439, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14265, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.770789+00', 667, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14266, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.393811+00', 134, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14267, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.401711+00', 189, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14268, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.368348+00', 232, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14269, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.420462+00', 179, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14270, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.416091+00', 226, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14271, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.45752+00', 218, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14272, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.370644+00', 327, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14273, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.69834+00', 181, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14274, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.670497+00', 370, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14275, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.832598+00', 231, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14276, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.794037+00', 284, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14277, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.941869+00', 145, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14278, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.750763+00', 383, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14279, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.857324+00', 372, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14280, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.933091+00', 296, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14281, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.24765+00', 62, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14282, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.226775+00', 101, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14283, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.860945+00', 477, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14284, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.248232+00', 93, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14285, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.223372+00', 124, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14286, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.155347+00', 192, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14287, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.242252+00', 112, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14288, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.231866+00', 127, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14289, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:50.769073+00', 297, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14290, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:50.734192+00', 338, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14291, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:50.966509+00', 193, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14292, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:50.837233+00', 348, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14293, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:50.892608+00', 318, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14294, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.045489+00', 219, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14295, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.060689+00', 280, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14296, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.372024+00', 206, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14297, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.370663+00', 244, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14298, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.462434+00', 167, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14299, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.402106+00', 291, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14300, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.528291+00', 207, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14301, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.421572+00', 330, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14302, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.149756+00', 637, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14303, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.09499+00', 729, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14304, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.634694+00', 218, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14305, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.665694+00', 250, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14306, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.796186+00', 172, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14307, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.610708+00', 371, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14308, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.782865+00', 205, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14309, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.72235+00', 283, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14310, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.686821+00', 318, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14311, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.813553+00', 214, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14312, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.736403+00', 331, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14313, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.734545+00', 362, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14314, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.177102+00', 86, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14315, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.205311+00', 77, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14316, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.150165+00', 144, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14317, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.248872+00', 74, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14318, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.177495+00', 175, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14319, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.251882+00', 105, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14320, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.251489+00', 130, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14321, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.68872+00', 371, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14322, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.725904+00', 354, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14323, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.696715+00', 402, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14324, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.667899+00', 444, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14325, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.699974+00', 507, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14326, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.873534+00', 376, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14327, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.815796+00', 444, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14328, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.936517+00', 388, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14329, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.186447+00', 170, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14330, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.185474+00', 223, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14331, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.161444+00', 263, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14332, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.12759+00', 331, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14333, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.16267+00', 298, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14334, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.164248+00', 325, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14335, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:50.645525+00', 850, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14336, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.283872+00', 223, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14337, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.607925+00', 62, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14338, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.643344+00', 80, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14339, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.625519+00', 144, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14340, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.638542+00', 140, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14341, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.70392+00', 83, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14342, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.683645+00', 110, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14343, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.681757+00', 118, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14344, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.660772+00', 148, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14345, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.659321+00', 230, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14346, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.977856+00', 67, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14347, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.977142+00', 87, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14348, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.016636+00', 60, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14349, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.018093+00', 62, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14350, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.023182+00', 68, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14351, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.038386+00', 59, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14352, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.025655+00', 82, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14353, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.610624+00', 127, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14354, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.703982+00', 97, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14355, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.693097+00', 135, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14356, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.668096+00', 200, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14357, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.788289+00', 88, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14358, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.752913+00', 133, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14359, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.785009+00', 120, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14360, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.725355+00', 219, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14361, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.008095+00', 41, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14362, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.668889+00', 411, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14363, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.058419+00', 58, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14364, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.061522+00', 64, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14365, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.042283+00', 85, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14366, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.025806+00', 105, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14367, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.061542+00', 79, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14368, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.991276+00', 158, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14369, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.63818+00', 106, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14370, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.633613+00', 130, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14371, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.643668+00', 123, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14372, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.698065+00', 81, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14373, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.633144+00', 176, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14374, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.700047+00', 153, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14375, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.808963+00', 72, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14376, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.82629+00', 97, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14377, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.784041+00', 175, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14378, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.140695+00', 146, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14379, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.145662+00', 161, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14380, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.132777+00', 196, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14381, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.138531+00', 258, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14382, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.235302+00', 153, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14383, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.292318+00', 145, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14384, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.15596+00', 292, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14385, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.658674+00', 216, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14386, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.736327+00', 203, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14387, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.796219+00', 146, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14388, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.6546+00', 303, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14389, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.711897+00', 290, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14390, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.651619+00', 362, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14391, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.789273+00', 252, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14392, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.930793+00', 139, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14393, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.734987+00', 403, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14394, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.397438+00', 119, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14395, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.419731+00', 104, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14396, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.42043+00', 155, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14397, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.378541+00', 260, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14398, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.550644+00', 120, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14399, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.359898+00', 365, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14400, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.392712+00', 361, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14401, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.653514+00', 70, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14402, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.68773+00', 137, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14403, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.656523+00', 208, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14404, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.776197+00', 114, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14405, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.706256+00', 184, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14406, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.759221+00', 153, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14407, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.691938+00', 241, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14408, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.707059+00', 231, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14409, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.019839+00', 108, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14410, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.013652+00', 136, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14411, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.025481+00', 134, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14412, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.075658+00', 103, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14413, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.69585+00', 506, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14414, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.034682+00', 186, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14415, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.048768+00', 174, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14416, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.127658+00', 109, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14417, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.774241+00', 285, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14418, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.774534+00', 341, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14419, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.803565+00', 381, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14420, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.81058+00', 394, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14421, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.839277+00', 450, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14422, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.876584+00', 448, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14423, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.807461+00', 526, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14424, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.109697+00', 240, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14425, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.199835+00', 202, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14426, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.250908+00', 173, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14427, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.8581+00', 566, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14428, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.255101+00', 218, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14429, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.249695+00', 239, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14430, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.381404+00', 113, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14431, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.390135+00', 109, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14432, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:50.836241+00', 848, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14433, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.669769+00', 462, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14434, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.626281+00', 511, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14435, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.755934+00', 455, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14436, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.791788+00', 438, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14437, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.82067+00', 415, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14438, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.820499+00', 450, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14439, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.867259+00', 441, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14440, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.167631+00', 151, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14441, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.116914+00', 226, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14442, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.005446+00', 351, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14443, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.200445+00', 215, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14444, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.167327+00', 256, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14445, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.778264+00', 649, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14446, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.102227+00', 330, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14447, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:20.874244+00', 571, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14448, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.154493+00', 304, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14449, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.85906+00', 202, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14450, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.914373+00', 189, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14451, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.776488+00', 365, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14452, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.884055+00', 289, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14453, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.081849+00', 108, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14454, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.856235+00', 359, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14455, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.038266+00', 222, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14456, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.042497+00', 268, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14457, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.841029+00', 493, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14458, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.239895+00', 164, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14459, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.968235+00', 449, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14460, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.279097+00', 160, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14461, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.965079+00', 514, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14462, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.279098+00', 210, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14463, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:50.820546+00', 685, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14464, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.30147+00', 216, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14465, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.706833+00', 115, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14466, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.768704+00', 91, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14467, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.813759+00', 229, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14468, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.827475+00', 217, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14469, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.708064+00', 353, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14470, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.946352+00', 192, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14471, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.731343+00', 448, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14472, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.987085+00', 200, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14473, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.038623+00', 185, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14474, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.09141+00', 197, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14475, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.104578+00', 212, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14476, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.072678+00', 248, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14477, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.079986+00', 259, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14478, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.043883+00', 303, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14479, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.962224+00', 405, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14480, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.958563+00', 457, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14481, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.742144+00', 81, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14482, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.74941+00', 87, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14483, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.786291+00', 76, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14484, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.724897+00', 159, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14485, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.76223+00', 122, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14486, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.746238+00', 146, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14487, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.716971+00', 180, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14488, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.720149+00', 185, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14489, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.720086+00', 381, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14490, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.106703+00', 101, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14491, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.186407+00', 99, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14492, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.074634+00', 218, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14493, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.149685+00', 179, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14494, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.138497+00', 190, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14495, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.149601+00', 200, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14496, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.109381+00', 257, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14497, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.776209+00', 75, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14498, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.810146+00', 95, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14499, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.78116+00', 135, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14500, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.844295+00', 307, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14501, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.060611+00', 161, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14502, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.746917+00', 483, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14503, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.758692+00', 589, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14504, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.054948+00', 337, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14505, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.026583+00', 421, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14506, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.954416+00', 496, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14507, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.08794+00', 380, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14508, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.066096+00', 419, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14509, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.226034+00', 286, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14510, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.10625+00', 431, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14511, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.323036+00', 240, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14512, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.970773+00', 597, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14513, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.734783+00', 242, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14514, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.788064+00', 313, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14515, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.733396+00', 382, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14516, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.846521+00', 273, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14517, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.83032+00', 453, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14518, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.786172+00', 573, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14519, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.171312+00', 266, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14520, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.892045+00', 578, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14521, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.285943+00', 191, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14522, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.21767+00', 280, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14523, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.823821+00', 818, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14524, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.108886+00', 537, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14525, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.217783+00', 453, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14526, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.239445+00', 453, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14527, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.182592+00', 526, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14528, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.754773+00', 1023, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14529, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.700472+00', 244, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14530, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.784622+00', 181, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14531, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.864338+00', 198, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14532, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.824903+00', 283, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14533, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.859644+00', 243, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14534, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.896779+00', 221, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14535, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.794124+00', 407, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14536, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.101691+00', 167, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14537, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.154222+00', 118, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14538, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.104527+00', 222, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14539, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.130579+00', 198, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14540, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.815039+00', 541, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14541, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.914166+00', 478, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14542, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.133657+00', 294, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14543, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.125949+00', 305, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14544, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.10443+00', 339, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14545, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.729927+00', 72, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14546, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.693911+00', 144, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14547, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.757999+00', 230, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14548, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.77525+00', 304, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14549, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.771427+00', 392, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14550, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.744549+00', 494, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14551, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.751003+00', 563, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14552, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.108184+00', 253, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14553, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.211918+00', 199, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14554, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.756181+00', 663, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14555, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.06474+00', 364, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14556, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.073677+00', 373, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14557, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.795814+00', 668, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14558, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.189992+00', 307, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14559, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.134204+00', 376, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14560, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.281434+00', 325, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14561, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.796648+00', 87, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14562, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.850127+00', 184, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14563, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.800113+00', 309, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14564, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.920622+00', 364, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14565, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.744706+00', 571, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14566, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.288973+00', 218, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14567, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.348549+00', 289, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14568, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.383879+00', 252, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14569, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.806241+00', 957, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14570, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.322596+00', 593, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14571, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.378253+00', 565, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14572, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.331422+00', 660, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14573, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.383892+00', 620, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14574, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.022872+00', 1014, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14575, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.440812+00', 632, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14576, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.835774+00', 1253, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14577, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:50.835946+00', 164, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14578, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:50.842135+00', 245, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14579, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:50.993713+00', 449, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14580, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:50.882586+00', 568, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14581, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.04863+00', 463, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14582, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.051569+00', 502, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14583, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.018598+00', 630, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14584, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.424221+00', 417, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14585, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.449711+00', 439, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14586, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.446365+00', 472, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14587, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.474792+00', 479, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14588, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.53691+00', 428, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14589, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.5169+00', 473, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14590, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.379138+00', 631, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14591, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:50.941583+00', 1076, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14592, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.090265+00', 995, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14593, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.647319+00', 121, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14594, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.688892+00', 148, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14595, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.693175+00', 140, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14596, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.636531+00', 242, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14597, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.673984+00', 210, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14598, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.731891+00', 169, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14599, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.776337+00', 171, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14600, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.756521+00', 267, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14601, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.995411+00', 127, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14602, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.993952+00', 129, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14603, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.04166+00', 119, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14604, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.052187+00', 140, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14605, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.009354+00', 178, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14606, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.012782+00', 194, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14607, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.801048+00', 409, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14608, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.052102+00', 166, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14609, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.448209+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14610, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.458102+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14611, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.398141+00', 239, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14612, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.430469+00', 209, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14613, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.451222+00', 203, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14614, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.456853+00', 200, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14615, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.47515+00', 190, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14616, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.731258+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14617, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.694859+00', 286, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14618, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.825444+00', 355, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14619, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.944158+00', 275, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14620, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.100039+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14621, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.945958+00', 366, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(14622, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.967419+00', 485, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(14623, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.877122+00', 618, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(14624, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.072573+00', 658, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(14625, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.194917+00', 561, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14626, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.341949+00', 481, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14627, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.186744+00', 639, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14628, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.360464+00', 483, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14629, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.270282+00', 584, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14630, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.776938+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(14631, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.872393+00', 67, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14632, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.438651+00', 533, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14633, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.184987+00', 796, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14634, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.543293+00', 470, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14635, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.79898+00', 274, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14636, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.782202+00', 301, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14637, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.69627+00', 400, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14638, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.228303+00', 888, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(14639, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.670503+00', 443, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14640, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.880878+00', 250, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14641, X'6a036c6cadc087e7cd13665f96f0f1ad6c13a1fb95d7a638a7c765439b1ae806', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.260878+00', 37, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(14642, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.666328+00', 77, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14643, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.623926+00', 129, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14644, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.63997+00', 114, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14645, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.712585+00', 111, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14646, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.664875+00', 240, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14647, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.717947+00', 229, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14648, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.719414+00', 303, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14649, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.725787+00', 452, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14650, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.99895+00', 177, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14651, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.035958+00', 176, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14652, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.719313+00', 539, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14653, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.052694+00', 251, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14654, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.140874+00', 194, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14655, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.276684+00', 101, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14656, X'fe9e59a36937c29c0e12b2814fc62b2c967e536ae902627a0d9d83be6a86f6d1', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.254281+00', 127, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14657, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.110327+00', 289, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14658, X'3a8a22af4317feb8ec6ce5554a4222ef6511f47f98858b714ccf76ff248aab86', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:09.366739+00', 37, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(14659, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.427233+00', 68, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14660, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.450007+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14661, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.416551+00', 105, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14662, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.451602+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14663, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.462749+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14664, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.436514+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14665, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.629519+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(14666, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.629519+00', 119, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14667, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.645635+00', 136, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14668, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.698034+00', 63, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14669, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.766462+00', 77, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14670, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.714479+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14671, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.86001+00', 86, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14672, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.77646+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14673, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.862321+00', 241, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14674, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:13.011096+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14675, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.369531+00', 90, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14676, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.378663+00', 110, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14677, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.676363+00', 77, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14678, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.678206+00', 91, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14679, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.690126+00', 112, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14680, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:19.572237+00', 61, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14681, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:19.581497+00', 79, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14682, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.799517+00', 168, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14683, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.674109+00', 340, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14684, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.726415+00', 383, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14685, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.186901+00', 88, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14686, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.946651+00', 400, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14687, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.954643+00', 423, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14688, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.798858+00', 603, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14689, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.204213+00', 219, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14690, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.156921+00', 290, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14691, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.958536+00', 482, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14692, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.020745+00', 484, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14693, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.201543+00', 303, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14694, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.302968+00', 216, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14695, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.324344+00', 192, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14696, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.317337+00', 224, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14697, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.049631+00', 505, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14698, X'91b83edbfa94d26d2c6060aaef97954494fe48f5e5097c3beabb35de54c4d3c2', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:34.290456+00', 42, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(14699, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.489003+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14700, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.50501+00', 216, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14701, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.459712+00', 284, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14702, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.522494+00', 271, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14703, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.495302+00', 477, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14704, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.529169+00', 485, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14705, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.527462+00', 481, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14706, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.953444+00', 84, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14707, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.690181+00', 448, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14708, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.981038+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14709, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.124206+00', 75, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14710, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.085548+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14711, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.073649+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14712, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.091918+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14713, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.075821+00', 171, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14714, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.153064+00', 128, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14715, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.671592+00', 100, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14716, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.742454+00', 71, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14717, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.727449+00', 84, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14718, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.688235+00', 173, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14719, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.690135+00', 173, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14720, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.791082+00', 76, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14721, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.759581+00', 121, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14722, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.692331+00', 207, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14723, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.712299+00', 258, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14724, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.054392+00', 107, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14725, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.045917+00', 136, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14726, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.068449+00', 150, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14727, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.052722+00', 173, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14728, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.029967+00', 229, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14729, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.062868+00', 217, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14730, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.062881+00', 230, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14731, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.445284+00', 296, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14732, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.465634+00', 294, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14733, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.420201+00', 395, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14734, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.479296+00', 485, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14735, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.610176+00', 744, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14736, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.493762+00', 905, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14737, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.22979+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14738, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.935379+00', 590, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14739, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.834346+00', 734, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14740, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.46825+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(14741, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.28098+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14742, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.317461+00', 394, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14743, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.009669+00', 723, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14744, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.172684+00', 568, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14745, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.185537+00', 571, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14746, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.477389+00', 364, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14747, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.163981+00', 193, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14748, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.200162+00', 190, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14749, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.252886+00', 144, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14750, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.175234+00', 276, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14751, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.138202+00', 313, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14752, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.199087+00', 267, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14753, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.19053+00', 311, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14754, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.137319+00', 169, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14755, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.259273+00', 262, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14756, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.269487+00', 297, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14757, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.29691+00', 313, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14758, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.259284+00', 432, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14759, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.234434+00', 463, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14760, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.383339+00', 314, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14761, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.32649+00', 381, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14762, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.183105+00', 541, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14763, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.012865+00', 182, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14764, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.154873+00', 182, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14765, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.051422+00', 302, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14766, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.182186+00', 215, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14767, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.199942+00', 222, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14768, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.04443+00', 383, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14769, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.246553+00', 179, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14770, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.238792+00', 223, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14771, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.223287+00', 255, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14772, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.923739+00', 568, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14773, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.272488+00', 237, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14774, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.344449+00', 175, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14775, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.014351+00', 533, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14776, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.299863+00', 254, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14777, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.439803+00', 134, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14778, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.288731+00', 347, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14779, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:39.306893+00', 109, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14780, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.508159+00', 174, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14781, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.556708+00', 171, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14782, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.540144+00', 211, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14783, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.603483+00', 165, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14784, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.524239+00', 268, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14785, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.535289+00', 288, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14786, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.213082+00', 200, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14787, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.267409+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14788, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.325601+00', 184, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14789, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.249344+00', 308, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14790, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.465438+00', 151, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14791, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.328115+00', 293, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14792, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.373383+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14793, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.603075+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14794, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.450713+00', 269, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14795, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.562847+00', 202, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14796, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.529989+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14797, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.508847+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14798, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.73146+00', 134, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14799, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.652994+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(14800, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.804862+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14801, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.590838+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14802, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.747395+00', 68, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14803, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.707782+00', 322, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14804, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.769587+00', 309, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14805, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.845992+00', 281, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14806, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.73394+00', 409, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14807, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.711465+00', 514, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14808, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.005478+00', 233, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14809, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.999774+00', 265, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14810, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.771466+00', 503, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14811, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.11567+00', 158, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14812, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.139411+00', 151, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14813, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.703969+00', 606, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14814, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.200325+00', 149, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14815, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.132968+00', 225, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14816, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.070015+00', 297, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14817, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.123268+00', 242, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14818, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.667127+00', 73, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14819, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.684366+00', 117, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14820, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.713223+00', 195, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14821, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.75891+00', 189, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14822, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.695403+00', 289, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14823, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.703893+00', 303, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14824, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.68422+00', 325, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14825, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.122646+00', 121, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14826, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.145713+00', 167, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14827, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.689041+00', 632, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14828, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.192468+00', 163, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14829, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.206395+00', 180, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14830, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.268291+00', 148, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14831, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.189152+00', 253, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14832, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.275286+00', 181, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14833, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.778302+00', 705, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14834, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.635277+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14835, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.663403+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14836, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.646546+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14837, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.698716+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14838, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.715651+00', 173, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14839, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.664079+00', 227, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14840, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.625388+00', 289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14841, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.626159+00', 261, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14842, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.621333+00', 295, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14843, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.591684+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14844, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.62315+00', 326, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14845, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.665459+00', 342, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14846, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.773139+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14847, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.504915+00', 518, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14848, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.683167+00', 407, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14849, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.631199+00', 472, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14850, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.656338+00', 144, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14851, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.68729+00', 179, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14852, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.695335+00', 239, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14853, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.717793+00', 230, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14854, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.753047+00', 285, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14855, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.762365+00', 290, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14856, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.716764+00', 416, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14857, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.098554+00', 59, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14858, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.772473+00', 446, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14859, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.742182+00', 488, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14860, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.092142+00', 156, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14861, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.118291+00', 173, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14862, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.151436+00', 170, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14863, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.197014+00', 152, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14864, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.207846+00', 156, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14865, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.197166+00', 188, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14866, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.627827+00', 142, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14867, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.648169+00', 187, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14868, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.640347+00', 188, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14869, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.674325+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14870, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.616794+00', 317, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14871, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.675727+00', 257, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14872, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.764934+00', 189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14873, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.637249+00', 115, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14874, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.646955+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14875, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.671238+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14876, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.633216+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14877, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.684753+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(14878, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.636134+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14879, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.683683+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14880, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.683354+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14881, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.774836+00', 117, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14882, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.689246+00', 94, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14883, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.693454+00', 217, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14884, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.738593+00', 187, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14885, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.702921+00', 243, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14886, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.712108+00', 253, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14887, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.794965+00', 172, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14888, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.695275+00', 299, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14889, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.798587+00', 204, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14890, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.715562+00', 331, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14891, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.112948+00', 109, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14892, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.110785+00', 142, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14893, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.120474+00', 134, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14894, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.094577+00', 173, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14895, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.112922+00', 179, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14896, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.173067+00', 141, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14897, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.196337+00', 121, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14898, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.647861+00', 116, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14899, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.712071+00', 64, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14900, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.643717+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14901, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.710391+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14902, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.733521+00', 100, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14903, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.710862+00', 151, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14904, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.800984+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14905, X'3a8a22af4317feb8ec6ce5554a4222ef6511f47f98858b714ccf76ff248aab86', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:38.772218+00', 40, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(14906, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.581945+00', 92, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(14907, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.683868+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14908, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.67508+00', 119, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(14909, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.61431+00', 207, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14910, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.748481+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14911, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.73798+00', 102, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14912, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.665093+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14913, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.695135+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14914, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.720223+00', 141, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14915, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.750806+00', 97, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14916, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.785946+00', 111, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14917, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.813242+00', 113, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14918, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.807018+00', 170, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14919, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.753006+00', 229, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14920, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.782425+00', 366, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14921, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.762079+00', 515, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14922, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.207022+00', 116, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14923, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.100213+00', 260, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14924, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.850537+00', 533, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14925, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.092101+00', 322, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14926, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.238018+00', 245, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14927, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.24615+00', 257, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14928, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.348192+00', 157, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14929, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.772042+00', 783, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14930, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.366696+00', 273, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14931, X'080071f65d9e6a4e617d2d6b845217b46b18a91ddb3bd571bbdc2b7f46447e49', TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:55.611477+00', 91, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(14932, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.48982+00', 66, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14933, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.46149+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14934, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.497889+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14935, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.533466+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14936, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.477384+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14937, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.445141+00', 244, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14938, X'080071f65d9e6a4e617d2d6b845217b46b18a91ddb3bd571bbdc2b7f46447e49', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.474991+00', 242, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(14939, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.524608+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14940, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:13.540795+00', 94, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14941, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:13.873927+00', 59, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14942, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:13.846834+00', 157, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14943, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:13.888517+00', 138, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14944, X'77b6c08a3304570425045addc68c940888ff8be07bbd9d7e65067845d47ff24d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:15.995166+00', 44, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14945, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:16.000321+00', 51, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14946, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:15.992794+00', 72, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14947, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.714921+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14948, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.682285+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(14949, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.743149+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(14950, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.77932+00', 280, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(14951, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.779213+00', 285, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(14952, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.878729+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(14953, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.704968+00', 386, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(14954, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.801617+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(14955, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.81692+00', 373, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(14956, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:20.977057+00', 396, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14957, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:20.976474+00', 462, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14958, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.167416+00', 302, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14959, X'77b6c08a3304570425045addc68c940888ff8be07bbd9d7e65067845d47ff24d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:20.978636+00', 513, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14960, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.310707+00', 291, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14961, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.295132+00', 363, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14962, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.119515+00', 578, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14963, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.494027+00', 243, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14964, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.323477+00', 441, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14965, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.117398+00', 686, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14966, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.536387+00', 291, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14967, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.323662+00', 550, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14968, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.548955+00', 366, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(14969, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.428252+00', 517, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14970, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.452604+00', 518, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14971, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.690249+00', 397, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14972, X'baf5ce9aaa35a3029368332fc6b330d631f2bf81aa4a554f89d341a19316e16a', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:24.650338+00', 62, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(14973, X'8baa36892c0c0b9430f525bf317f6309dbe7a2d51c6592c2fac2ad755f387044', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:40.960077+00', 71, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(14974, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:41.688634+00', 131, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(14975, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:41.824835+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(14976, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:41.837029+00', 241, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(14977, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:41.826908+00', 280, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(14978, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:42.009368+00', 101, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(14979, X'77b6c08a3304570425045addc68c940888ff8be07bbd9d7e65067845d47ff24d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:41.804396+00', 302, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(14980, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:41.904652+00', 216, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(14981, X'8baa36892c0c0b9430f525bf317f6309dbe7a2d51c6592c2fac2ad755f387044', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:48.647409+00', 39, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(14982, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.805847+00', 156, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(14983, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.860581+00', 208, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(14984, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.896848+00', 198, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(14985, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.924193+00', 224, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(14986, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.815157+00', 429, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(14987, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.889434+00', 368, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(14988, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.771822+00', 505, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(14989, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.761364+00', 571, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(14990, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.205781+00', 175, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(14991, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.209089+00', 217, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(14992, X'77b6c08a3304570425045addc68c940888ff8be07bbd9d7e65067845d47ff24d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.221758+00', 282, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(14993, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.133816+00', 377, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(14994, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.295589+00', 248, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(14995, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.125106+00', 426, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(14996, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.303043+00', 254, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14997, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.165603+00', 410, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(14998, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:57.725619+00', 92, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(14999, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.169816+00', 123, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15000, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.207268+00', 88, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15001, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.155397+00', 153, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15002, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.722779+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15003, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.664723+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15004, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.731254+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15005, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.807224+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15006, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.779801+00', 174, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15007, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.838906+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15008, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.643365+00', 350, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15009, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.855578+00', 184, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15010, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.894234+00', 209, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15011, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:01.05501+00', 70, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15012, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:01.051227+00', 77, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15013, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:01.061958+00', 130, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15014, X'3a8a22af4317feb8ec6ce5554a4222ef6511f47f98858b714ccf76ff248aab86', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:10.045818+00', 75, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(15015, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.488755+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15016, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.51411+00', 136, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15017, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.497002+00', 161, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15018, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.509057+00', 185, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15019, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.532277+00', 184, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15020, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.575976+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15021, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.614791+00', 150, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15022, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.731688+00', 76, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15023, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.705615+00', 150, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15024, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.695365+00', 163, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15025, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.700554+00', 161, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15026, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.743806+00', 167, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15027, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.702409+00', 214, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15028, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.759297+00', 188, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15029, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.688981+00', 308, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15030, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.777936+00', 264, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15031, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.962086+00', 83, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15032, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.951315+00', 120, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15033, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.006502+00', 72, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15034, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.966136+00', 125, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15035, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.978814+00', 116, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15036, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.008535+00', 86, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15037, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.002992+00', 110, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15038, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.54153+00', 247, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15039, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.622566+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15040, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.670017+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15041, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.664123+00', 206, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15042, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.711186+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15043, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.811734+00', 134, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15044, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.831884+00', 124, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15045, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.834253+00', 156, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15046, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.921276+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15047, X'a10304b2b53d9ed42c0b70d33ba0a20e7aefebba1a51ca976a0ca5d93e9f9555', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.504682+00', 146, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15048, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.728691+00', 94, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15049, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.778374+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15050, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.693749+00', 230, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15051, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.818589+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15052, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.677275+00', 296, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15053, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.749953+00', 233, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15054, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.744967+00', 240, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15055, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.8247+00', 148, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15056, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.8607+00', 118, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15057, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.858872+00', 124, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15058, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.848081+00', 172, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15059, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.980979+00', 74, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15060, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.708251+00', 694, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15061, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.93409+00', 490, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15062, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.92691+00', 572, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15063, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.239768+00', 347, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15064, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.202524+00', 394, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15065, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.274976+00', 322, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15066, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.425992+00', 182, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15067, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.302045+00', 321, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15068, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.321128+00', 332, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15069, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.923499+00', 790, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15070, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.446156+00', 300, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15071, X'a5ba85c2643821118c3fcec77bc69faa419d77e71706e6a93ab764e0bae227fb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:04.004088+00', 115, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15072, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:12.86041+00', 271, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15073, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.066043+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15074, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:12.787895+00', 437, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15075, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:12.79782+00', 474, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15076, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.154908+00', 273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15077, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:12.832471+00', 608, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15078, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:12.843159+00', 627, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15079, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.020296+00', 473, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15080, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.182566+00', 341, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15081, X'4dccdec81bc9944aaee0ccc5a1ad7df6d16cb859508d1760e71619c4cfbd56e6', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.074223+00', 41, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15082, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.645995+00', 81, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15083, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.707319+00', 118, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15084, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.791159+00', 97, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15085, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.689463+00', 207, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15086, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.780847+00', 154, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15087, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.790913+00', 295, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15088, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.986523+00', 98, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15089, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.715231+00', 375, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15090, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.897919+00', 247, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15091, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.053374+00', 149, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15092, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.106245+00', 121, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15093, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.106777+00', 130, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15094, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.098659+00', 158, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15095, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.792953+00', 491, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15096, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.133883+00', 152, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15097, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.127099+00', 151, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15098, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.625704+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15099, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.721016+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15100, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.68779+00', 208, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15101, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.74601+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15102, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.743661+00', 206, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15103, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.760925+00', 194, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15104, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.842538+00', 128, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15105, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.722421+00', 68, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15106, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.942478+00', 87, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15107, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.854259+00', 171, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15108, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.934319+00', 151, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15109, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.700302+00', 400, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15110, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.826368+00', 351, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15111, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.829275+00', 374, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15112, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.921157+00', 314, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15113, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.138204+00', 216, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15114, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.171637+00', 199, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15115, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.934253+00', 442, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15116, X'7e16adc9495f5ead80f325b282011644330e8d51580f460ddd995c2861388089', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.163145+00', 224, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15117, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.19667+00', 239, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15118, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.201942+00', 235, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15119, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.141158+00', 315, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15120, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.258206+00', 257, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15121, X'ee50a769604432e19a847f2e695a26dd72b7c7518cd6e087182c49625ad99247', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:00.294937+00', 3, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(15122, X'f56aa392bc904f4391b6fc9c76807d22d9401cee195d9787487cf3b4348d1d42', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:03.583317+00', 110, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15123, X'f732919b406da4f9ffa1a24fadd876076acf6c8a5a569e958dfd5840be1d29d3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:06.201415+00', 83, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15124, X'a68c13b13d321dc5e552c03f0a08f3471b7698fd624345168e840e60085c18e2', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:12.745575+00', 86, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15125, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.702342+00', 130, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15126, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.658484+00', 170, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15127, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.706153+00', 170, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15128, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.639814+00', 231, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15129, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.660825+00', 223, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15130, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.651545+00', 297, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15131, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.743142+00', 235, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15132, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.691839+00', 330, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15133, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.719998+00', 441, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15134, X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.353022+00', 164, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15135, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.330077+00', 218, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15136, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.322829+00', 225, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15137, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.276404+00', 292, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15138, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.421196+00', 180, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15139, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.212807+00', 468, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15140, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.553215+00', 189, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15141, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:25.978766+00', 897, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15142, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.020456+00', 931, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15143, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.121624+00', 1028, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15144, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.186191+00', 1558, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15145, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.312508+00', 1516, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15146, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.206169+00', 1721, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15147, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.315015+00', 1962, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15148, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.124253+00', 2312, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15149, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:28.500159+00', 1072, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15150, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.450037+00', 3137, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15151, X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.397358+00', 265, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15152, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.418833+00', 257, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15153, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.41509+00', 276, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15154, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.42123+00', 292, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15155, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.418824+00', 300, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15156, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.426078+00', 306, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15157, X'718b1da4dba4115a868027f6df3517e2dff278bc829f1fadb18e82375a21d9d3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:32.777154+00', 8, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 1, NULL, NULL, 2, NULL), +(15158, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.4726+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15159, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.472389+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15160, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.474649+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15161, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.45947+00', 103, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15162, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.471349+00', 97, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15163, X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.471855+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15164, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.503177+00', 80, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15165, X'0b6695c5e8a073e3787e09a3053b9fa91ed799cd3121d075df61ced61cb8e784', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:36.490739+00', 19, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(15166, X'7d7acfb39a904abe56b566f7712ab786dae3fd27713f04ffd9d1f47ec19b64ca', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:45.080846+00', 60, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(15167, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.326948+00', 384, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15168, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.364178+00', 388, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15169, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.38264+00', 541, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15170, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.348914+00', 657, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15171, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.308655+00', 748, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15172, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.64518+00', 471, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15173, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.587077+00', 567, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15174, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.820986+00', 481, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15175, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.941205+00', 385, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15176, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.617579+00', 744, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15177, X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.906838+00', 567, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15178, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.866184+00', 701, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15179, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.363677+00', 1216, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15180, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.808906+00', 778, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15181, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.370911+00', 1228, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15182, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.371654+00', 1252, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15183, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.040076+00', 345, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15184, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.219275+00', 347, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15185, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.172001+00', 438, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15186, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.219441+00', 416, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15187, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.148285+00', 500, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15188, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.132659+00', 532, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15189, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.048105+00', 620, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15190, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.813241+00', 845, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15191, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.98653+00', 761, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15192, X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.597678+00', 44, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15193, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.61215+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15194, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.655452+00', 121, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15195, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.602594+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15196, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.677149+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15197, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.635828+00', 181, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15198, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.572565+00', 254, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15199, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.789373+00', 84, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15200, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.827672+00', 83, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15201, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.854241+00', 72, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15202, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.828048+00', 124, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15203, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.894539+00', 83, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15204, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.831476+00', 171, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15205, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.824086+00', 234, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15206, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.028727+00', 56, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15207, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.028623+00', 96, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15208, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.041211+00', 116, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15209, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.094297+00', 92, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15210, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.856627+00', 349, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15211, X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.09945+00', 144, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15212, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.102457+00', 149, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15213, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.1004+00', 152, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15214, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.900544+00', 357, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15215, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.008622+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15216, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:22.95382+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15217, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:22.985295+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15218, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.005208+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15219, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.027249+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15220, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:22.989327+00', 327, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15221, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.011047+00', 323, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15222, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.026089+00', 319, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15223, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:22.99411+00', 359, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15224, X'ec192a494cd30b341ca05a276eb6d5a05ce080b57a026095d4af2d412f10454e', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:25.346627+00', 37, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15225, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.546633+00', 75, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15226, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.545972+00', 116, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15227, X'16e4a27bb9c9ca16a787ffb0d851eab04e68df78caf00e6f0c50616b7ecfe718', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.595321+00', 109, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15228, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.596634+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15229, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.587739+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15230, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.502101+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15231, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.552583+00', 207, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15232, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.004381+00', 93, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15233, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.011198+00', 128, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15234, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.392725+00', 51, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15235, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.398509+00', 57, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15236, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.388608+00', 75, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15237, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.412746+00', 72, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15238, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.404545+00', 83, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15239, X'a2d5a685344d3525472676635e768422fce2b3be0a00b527b93a1369f3c30ba7', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:45.901486+00', 7, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 1, NULL, NULL, 2, NULL), +(15240, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:50.925279+00', 387, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15241, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:50.914705+00', 562, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15242, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.146518+00', 363, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15243, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.019674+00', 539, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15244, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.022518+00', 568, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15245, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.296672+00', 308, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15246, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:50.958584+00', 654, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15247, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.470006+00', 155, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15248, X'a2d5a685344d3525472676635e768422fce2b3be0a00b527b93a1369f3c30ba7', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.579006+00', 70, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 1, NULL, NULL, 2, NULL), +(15249, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.442053+00', 214, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15250, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.09364+00', 585, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15251, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.457729+00', 311, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15252, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.100942+00', 668, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15253, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.433414+00', 366, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15254, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.447628+00', 364, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15255, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.509543+00', 306, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15256, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:50.956891+00', 917, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15257, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.719062+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15258, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.728806+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15259, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.765469+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15260, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.734503+00', 221, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15261, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.716459+00', 252, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15262, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.744108+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15263, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.760116+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15264, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.701926+00', 315, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15265, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.833339+00', 191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15266, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.644172+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15267, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.662501+00', 135, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15268, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.72355+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15269, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.661407+00', 164, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15270, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.681903+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15271, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.716125+00', 139, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15272, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.723314+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15273, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.822208+00', 75, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15274, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.844361+00', 78, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15275, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.869063+00', 101, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15276, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.799367+00', 183, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15277, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.863107+00', 125, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15278, X'a2d5a685344d3525472676635e768422fce2b3be0a00b527b93a1369f3c30ba7', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.997266+00', 8, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 1, NULL, NULL, 2, NULL), +(15279, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.902485+00', 108, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15280, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.886432+00', 135, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15281, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.926779+00', 101, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15282, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.833208+00', 273, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15283, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.185104+00', 150, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15284, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.272249+00', 83, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15285, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.286839+00', 99, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15286, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.286375+00', 128, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15287, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.286375+00', 237, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15288, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.287068+00', 287, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15289, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.196688+00', 388, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15290, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.800105+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15291, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.811336+00', 194, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15292, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.688507+00', 324, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15293, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.709399+00', 322, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15294, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.817989+00', 246, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15295, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.993341+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15296, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.950256+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15297, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.711725+00', 417, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15298, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.81139+00', 351, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15299, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.390971+00', 143, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15300, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.47774+00', 59, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15301, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.371251+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15302, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.472305+00', 128, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15303, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.575474+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15304, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.523769+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15305, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.622242+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15306, X'0b6695c5e8a073e3787e09a3053b9fa91ed799cd3121d075df61ced61cb8e784', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:41.618392+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15307, X'0b6695c5e8a073e3787e09a3053b9fa91ed799cd3121d075df61ced61cb8e784', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:48.696009+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(15308, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.733545+00', 198, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15309, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.745327+00', 291, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15310, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.990663+00', 108, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15311, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.692214+00', 436, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15312, X'0b6695c5e8a073e3787e09a3053b9fa91ed799cd3121d075df61ced61cb8e784', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.045349+00', 105, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(15313, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.768462+00', 436, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15314, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.97727+00', 311, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15315, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.063227+00', 180, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15316, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.342434+00', 146, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15317, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.438045+00', 114, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15318, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.441444+00', 134, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15319, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.080928+00', 539, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15320, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.327669+00', 301, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15321, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.402139+00', 249, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15322, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.885538+00', 773, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15323, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.449922+00', 231, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15324, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.458946+00', 221, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15325, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.7366+00', 106, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15326, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.71947+00', 189, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15327, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.798397+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15328, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.794166+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15329, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.805629+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15330, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.86848+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15331, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.754297+00', 326, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15332, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.713443+00', 373, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15333, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.829714+00', 340, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15334, X'eb49b18c6e2e0e0e91e9629ac46a941e457d2b7a4dbb4f5402778a05b03e9222', TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:59.099878+00', 43, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(15335, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.481061+00', 75, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15336, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.510949+00', 52, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15337, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.446456+00', 116, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15338, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.523729+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15339, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.507898+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15340, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.53123+00', 71, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15341, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.504654+00', 107, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15342, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.675947+00', 55, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15343, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.681184+00', 98, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15344, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:06.007413+00', 52, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15345, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.97045+00', 105, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15346, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.975963+00', 107, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15347, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.990931+00', 111, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15348, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:06.008291+00', 121, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15349, X'a2d5a685344d3525472676635e768422fce2b3be0a00b527b93a1369f3c30ba7', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:18.398643+00', 10, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 1, NULL, NULL, 2, NULL), +(15350, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.29026+00', 326, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15351, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.380323+00', 434, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15352, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.381504+00', 447, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15353, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.52016+00', 375, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15354, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.450366+00', 548, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15355, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.439317+00', 569, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15356, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.810271+00', 354, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15357, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.448172+00', 731, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15358, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.481223+00', 840, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15359, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.639037+00', 693, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15360, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.062021+00', 268, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15361, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.431175+00', 943, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15362, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.685251+00', 707, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15363, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.987518+00', 409, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15364, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.863897+00', 599, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15365, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.982448+00', 631, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15366, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.598026+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15367, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.749009+00', 147, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15368, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.70333+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15369, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.748046+00', 239, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15370, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.59037+00', 432, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15371, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.736266+00', 284, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15372, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.754164+00', 293, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15373, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.740617+00', 321, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15374, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.665294+00', 434, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15375, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.390093+00', 210, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15376, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.387356+00', 229, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15377, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.381761+00', 237, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15378, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.427619+00', 202, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15379, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:35.047581+00', 46, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15380, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:35.044288+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15381, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:35.046379+00', 69, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15382, X'07ca708bf461469de6128d5672321b9feb866f099ebe65d4593d5ba3f087aab5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:37.66165+00', 25, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(15383, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.259688+00', 291, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15384, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.218134+00', 454, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15385, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.498545+00', 307, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15386, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.489888+00', 429, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15387, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.249287+00', 724, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15388, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.318626+00', 660, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15389, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.43511+00', 606, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15390, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.390074+00', 651, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15391, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.389067+00', 664, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15392, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.658227+00', 438, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15393, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.384844+00', 739, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15394, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.297558+00', 847, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15395, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.429205+00', 800, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15396, X'cf14022e8b56bf23f36705932ff432246c7fd192f46d53ffadfd28146ad49fe5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.028489+00', 223, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(15397, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.61386+00', 654, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15398, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.344344+00', 959, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15399, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.387899+00', 918, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15400, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.525562+00', 135, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15401, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.562148+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15402, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.661843+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15403, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.690808+00', 117, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15404, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.728202+00', 100, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15405, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.679963+00', 162, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15406, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.719902+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15407, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.88309+00', 67, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15408, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.83907+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15409, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.569353+00', 70, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15410, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.558208+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15411, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.532162+00', 200, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15412, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.571876+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15413, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.597054+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15414, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.596209+00', 195, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15415, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.646227+00', 196, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15416, X'dc0fdae6794ac43d83329cc2e5e873db502e85c70946381e055da6884d26fd19', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:10.852606+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(15417, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.264328+00', 166, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15418, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.380144+00', 216, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15419, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.259439+00', 379, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15420, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.346866+00', 362, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15421, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.380291+00', 326, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15422, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.515086+00', 213, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15423, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.518057+00', 255, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15424, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.658351+00', 151, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15425, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.254744+00', 610, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15426, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.442834+00', 454, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15427, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.598786+00', 340, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15428, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.72019+00', 256, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15429, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.443244+00', 570, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15430, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.464224+00', 549, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15431, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.556775+00', 460, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15432, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.71211+00', 310, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15433, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.076442+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15434, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.029381+00', 146, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15435, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.046481+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15436, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.054647+00', 254, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15437, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.14444+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15438, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.079849+00', 285, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15439, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.237651+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15440, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.226285+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15441, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.317784+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15442, X'1d3fada79ef9fff5dbc38b3881fd0cb3199de04d3aad1e56d7d871d8bda60db2', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:28.809571+00', 35, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(15443, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.714247+00', 70, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15444, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.723588+00', 131, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15445, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.72719+00', 138, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15446, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.733689+00', 153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15447, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.72409+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15448, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.695113+00', 242, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15449, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.724044+00', 216, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15450, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.642539+00', 281, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15451, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.365921+00', 602, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15452, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.642284+00', 338, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15453, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.574045+00', 443, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15454, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.571599+00', 471, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15455, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.71923+00', 341, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15456, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.50772+00', 584, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15457, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.815226+00', 287, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15458, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.585418+00', 538, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15459, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.646091+00', 530, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15460, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.562395+00', 629, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15461, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.570732+00', 621, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15462, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.544478+00', 712, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15463, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.665543+00', 617, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15464, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.758489+00', 551, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15465, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.502249+00', 896, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15466, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:56.761256+00', 281, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15467, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:56.926371+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15468, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:56.922291+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15469, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.010546+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15470, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.031127+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15471, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:56.956156+00', 243, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15472, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:56.956931+00', 246, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15473, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:56.912601+00', 258, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15474, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:56.910171+00', 324, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15475, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.339533+00', 171, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15476, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.384218+00', 159, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15477, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.405545+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15478, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.368307+00', 245, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15479, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.453912+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15480, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.43562+00', 316, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15481, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.495743+00', 265, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15482, X'1d3fada79ef9fff5dbc38b3881fd0cb3199de04d3aad1e56d7d871d8bda60db2', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:11.538875+00', 24, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15483, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.346906+00', 124, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15484, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.366288+00', 123, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15485, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.365616+00', 177, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15486, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.269183+00', 282, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15487, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.300593+00', 262, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15488, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.408967+00', 211, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15489, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.499909+00', 161, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15490, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.126452+00', 346, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15491, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.15484+00', 368, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15492, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.292802+00', 246, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15493, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.112819+00', 470, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15494, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.314596+00', 268, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15495, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.31472+00', 273, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15496, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.313941+00', 309, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15497, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.361467+00', 321, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15498, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.364101+00', 433, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15499, X'4870482517e52c90a387cd19ec4e22210b7e3b71c93a622a838b0cd9b8f34c72', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:30.912155+00', 249, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15500, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:30.900633+00', 338, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15501, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:30.900048+00', 326, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15502, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:30.901501+00', 361, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15503, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.009582+00', 278, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15504, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.027267+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15505, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.04229+00', 408, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15506, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.057457+00', 426, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15507, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.052961+00', 476, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15508, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.058234+00', 514, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15509, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.501134+00', 111, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15510, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.450018+00', 183, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15511, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.600225+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15512, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.540295+00', 191, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15513, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.600989+00', 144, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15514, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.598978+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15515, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.499099+00', 264, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15516, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.300481+00', 109, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15517, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.310554+00', 116, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15518, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.314942+00', 134, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15519, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.304567+00', 162, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15520, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.277787+00', 205, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15521, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.302068+00', 192, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15522, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.317429+00', 201, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15523, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.170257+00', 442, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15524, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.483524+00', 198, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15525, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.640651+00', 506, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15526, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.486389+00', 680, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15527, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.652331+00', 513, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15528, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.684036+00', 569, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15529, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.639114+00', 658, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15530, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.51498+00', 847, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15531, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.755979+00', 763, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15532, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.109359+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15533, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.165981+00', 218, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15534, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.133097+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15535, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.155363+00', 292, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15536, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.182145+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15537, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.176643+00', 302, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15538, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.191017+00', 309, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15539, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.19076+00', 343, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15540, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.190595+00', 351, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15541, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.422017+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15542, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.415201+00', 116, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15543, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.396964+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15544, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.410252+00', 161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15545, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.39493+00', 207, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15546, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.417622+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15547, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.413563+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15548, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.409296+00', 61, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15549, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.404537+00', 149, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15550, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.349634+00', 237, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15551, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.420017+00', 236, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15552, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.423414+00', 227, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15553, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.438426+00', 227, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15554, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.56477+00', 121, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15555, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.192863+00', 206, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15556, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.290434+00', 140, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15557, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.160148+00', 426, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15558, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.429553+00', 229, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15559, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.43007+00', 230, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15560, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.235779+00', 503, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15561, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.427104+00', 353, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15562, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.208733+00', 635, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15563, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.454606+00', 490, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15564, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.58965+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15565, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.678166+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15566, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.513596+00', 423, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15567, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.743346+00', 237, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15568, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.686043+00', 292, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15569, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.69025+00', 321, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15570, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.744294+00', 304, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15571, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.669447+00', 440, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15572, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.672278+00', 480, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15573, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.469733+00', 80, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15574, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.457576+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15575, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.461989+00', 151, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15576, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.508492+00', 130, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15577, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.565546+00', 103, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15578, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.590268+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15579, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.573239+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15580, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.508529+00', 124, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15581, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.432315+00', 234, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15582, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.450214+00', 279, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15583, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.494145+00', 243, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15584, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.47627+00', 270, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15585, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.450945+00', 315, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15586, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.506324+00', 316, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15587, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.383544+00', 410, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15588, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.434822+00', 435, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15589, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.460645+00', 498, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15590, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.59894+00', 427, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15591, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.425483+00', 605, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15592, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.661232+00', 388, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15593, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.676281+00', 383, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15594, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.643733+00', 442, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15595, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.668257+00', 624, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15596, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.58495+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15597, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.606165+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15598, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.624669+00', 127, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15599, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.524827+00', 273, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15600, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.740751+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15601, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.726654+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15602, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.739347+00', 253, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15603, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.61993+00', 396, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15604, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.892803+00', 152, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15605, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.500991+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15606, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.538927+00', 159, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15607, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.553004+00', 171, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15608, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.553075+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15609, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.679958+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15610, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.554129+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15611, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.610394+00', 214, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15612, X'e143af89123686f73ffc8d93d33da6079040dcfdaaee94351249cc295f74e4bd', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.339905+00', 79, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15613, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.322452+00', 213, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15614, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.321412+00', 283, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15615, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.529959+00', 88, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15616, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.376272+00', 252, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15617, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.449882+00', 182, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15618, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.300896+00', 338, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15619, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.102282+00', 65, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15620, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.07689+00', 124, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15621, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.104886+00', 124, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15622, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.101544+00', 135, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15623, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.110108+00', 131, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15624, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.112035+00', 167, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15625, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.13732+00', 153, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15626, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.11252+00', 187, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15627, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.14952+00', 207, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15628, X'89d2a95c9022ccd8f916ad13fc6a8376343277e41e61cad03476aa82f5852306', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:26.140119+00', 62, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(15629, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.520492+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15630, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.633805+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15631, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.526572+00', 284, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15632, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.572087+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15633, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.602431+00', 336, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15634, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.603272+00', 342, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15635, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.712228+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15636, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.621942+00', 341, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15637, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.550981+00', 430, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15638, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:47.943862+00', 76, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15639, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:47.973459+00', 59, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15640, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:47.961529+00', 103, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15641, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:47.970257+00', 95, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15642, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:47.977771+00', 96, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15643, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:47.987404+00', 90, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15644, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.006048+00', 79, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15645, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.05613+00', 119, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15646, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.063209+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15647, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.048978+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15648, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.136611+00', 153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15649, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.096378+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15650, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.090371+00', 230, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15651, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.080656+00', 246, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15652, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.268711+00', 97, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15653, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.347517+00', 59, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15654, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.318436+00', 130, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15655, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.344757+00', 124, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15656, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.43059+00', 67, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15657, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.426848+00', 74, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15658, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.403377+00', 126, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15659, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.123125+00', 134, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15660, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.208849+00', 94, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15661, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.088183+00', 219, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15662, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.119144+00', 261, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15663, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.262139+00', 132, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15664, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.178584+00', 221, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15665, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.197925+00', 225, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(15666, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.270779+00', 209, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15667, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.206655+00', 299, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15668, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.775999+00', 148, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15669, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.814166+00', 254, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15670, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.868519+00', 230, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15671, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.789258+00', 330, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15672, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.713377+00', 535, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15673, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.897219+00', 391, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15674, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.952201+00', 336, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15675, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.900809+00', 391, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15676, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.896222+00', 420, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15677, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.392426+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15678, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.409735+00', 71, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15679, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.394403+00', 90, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15680, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.401297+00', 86, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15681, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.383864+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15682, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.418798+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15683, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.397323+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15684, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.732668+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15685, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.774171+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15686, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.789036+00', 161, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15687, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.830156+00', 182, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15688, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.897387+00', 137, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15689, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.827315+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15690, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.924558+00', 134, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15691, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.813485+00', 271, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15692, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.862565+00', 236, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15693, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.702298+00', 118, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15694, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.709849+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15695, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.755316+00', 119, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15696, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.700327+00', 180, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15697, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.661719+00', 260, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15698, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.661263+00', 274, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15699, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.680464+00', 280, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15700, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.614684+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15701, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.643586+00', 130, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15702, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.672191+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15703, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.758946+00', 55, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15704, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.59298+00', 245, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15705, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.699425+00', 146, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15706, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.796065+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15707, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.77884+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15708, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.810127+00', 191, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15709, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.779336+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15710, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.729278+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15711, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.674356+00', 277, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15712, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.77913+00', 229, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15713, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.826911+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15714, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.88128+00', 171, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15715, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.779321+00', 290, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15716, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.773293+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15717, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.811004+00', 358, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15718, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.835061+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15719, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.732301+00', 487, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15720, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.839232+00', 410, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15721, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.902056+00', 432, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15722, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.806585+00', 549, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15723, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:01.845899+00', 517, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15724, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.203273+00', 181, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15725, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.51773+00', 65, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15726, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.524313+00', 89, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15727, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.55311+00', 65, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15728, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.562174+00', 62, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15729, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.550287+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15730, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.547646+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15731, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.561898+00', 107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15732, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.173777+00', 69, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(15733, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.185914+00', 57, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(15734, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.19767+00', 76, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(15735, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.213295+00', 65, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(15736, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.227371+00', 72, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(15737, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.200826+00', 106, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(15738, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.22404+00', 112, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(15739, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.715615+00', 107, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15740, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.695165+00', 146, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15741, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.753239+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15742, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.664399+00', 213, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15743, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.722318+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15744, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.833609+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15745, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.7394+00', 185, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15746, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.815857+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15747, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.799527+00', 128, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15748, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.572382+00', 89, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15749, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.502254+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15750, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.549539+00', 164, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15751, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.559808+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15752, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.601519+00', 172, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15753, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.677622+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15754, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.469943+00', 315, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15755, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.672557+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15756, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.581726+00', 295, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15757, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.571053+00', 327, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15758, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.671847+00', 256, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15759, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.669537+00', 321, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15760, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.650374+00', 363, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15761, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.692964+00', 352, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15762, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.809141+00', 242, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15763, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.671886+00', 402, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15764, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.554718+00', 305, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(15765, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.704779+00', 806, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(15766, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.704779+00', 797, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15767, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.689418+00', 846, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(15768, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.688524+00', 958, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(15769, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.634067+00', 1054, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15770, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.651003+00', 1043, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15771, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.663475+00', 1031, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15772, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.634067+00', 1068, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(15773, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.663475+00', 1040, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(15774, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.651003+00', 1052, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(15775, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.242263+00', 472, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15776, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.242263+00', 485, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(15777, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.729708+00', 1023, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(15778, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.663567+00', 1104, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15779, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:09.663567+00', 1125, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(15780, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.26868+00', 755, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(15781, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.262436+00', 864, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15782, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.267868+00', 965, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15783, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.267868+00', 1034, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(15784, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.268729+00', 1315, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15785, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.643603+00', 969, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15786, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.250853+00', 1427, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15787, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.267744+00', 1512, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15788, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.267659+00', 1561, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15789, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.362187+00', 2096, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 30, 3, NULL, 2, NULL), +(15790, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.509287+00', 2015, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15791, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.25078+00', 2332, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15792, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.25078+00', 2343, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(15793, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.21622+00', 1470, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15794, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.269032+00', 2571, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15795, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.269032+00', 2660, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(15796, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.347337+00', 2644, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15797, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.500267+00', 2588, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15798, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.245337+00', 2862, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15799, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.245337+00', 2863, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(15800, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.740869+00', 2825, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15801, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.885366+00', 2710, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15802, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.036104+00', 1654, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15803, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.910694+00', 2814, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15804, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.05372+00', 1926, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15805, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.061756+00', 2010, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15806, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.867374+00', 377, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15807, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.87507+00', 433, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15808, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.874636+00', 644, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15809, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.145867+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15810, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.399713+00', 333, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15811, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.146226+00', 592, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15812, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.138754+00', 786, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15813, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.41759+00', 94, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(15814, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.420885+00', 241, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(15815, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.501995+00', 236, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(15816, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.571721+00', 206, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(15817, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.634277+00', 213, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(15818, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.478377+00', 390, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(15819, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.646411+00', 222, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(15820, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.717083+00', 321, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15821, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.547322+00', 507, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(15822, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.844829+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15823, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.956734+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15824, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.920902+00', 168, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15825, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.916296+00', 185, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15826, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.983767+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15827, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.996992+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15828, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.917423+00', 258, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15829, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.018562+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15830, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:31.908436+00', 278, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15831, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.165348+00', 326, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15832, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.21255+00', 323, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15833, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.199767+00', 529, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15834, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.224917+00', 524, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15835, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.497903+00', 263, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15836, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.406143+00', 369, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15837, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.506131+00', 279, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15838, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.272506+00', 554, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15839, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.491879+00', 350, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15840, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.438366+00', 416, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15841, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.305972+00', 557, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15842, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.361348+00', 526, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15843, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.501698+00', 389, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15844, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.808014+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15845, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.539386+00', 436, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15846, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.878673+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15847, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.429034+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15848, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.403144+00', 288, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15849, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.52284+00', 197, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15850, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.53505+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15851, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.494123+00', 260, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15852, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.490326+00', 283, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15853, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.462685+00', 321, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15854, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.478787+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15855, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.472029+00', 118, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15856, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.51232+00', 93, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15857, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.547546+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15858, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.558204+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15859, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.580411+00', 101, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15860, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.566037+00', 139, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15861, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.623541+00', 89, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15862, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.593997+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15863, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.19805+00', 225, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15864, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.277736+00', 183, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15865, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.329665+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15866, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.254271+00', 247, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15867, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.388035+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15868, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.254166+00', 294, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15869, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.370293+00', 352, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15870, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.344673+00', 380, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15871, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.434125+00', 356, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15872, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.327644+00', 483, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15873, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.360959+00', 461, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15874, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.405365+00', 521, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15875, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.361156+00', 558, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15876, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.361125+00', 595, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15877, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.422139+00', 582, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15878, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.51542+00', 491, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15879, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.442834+00', 165, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15880, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.443009+00', 205, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15881, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.500817+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15882, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.45204+00', 269, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15883, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.436204+00', 294, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15884, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.452715+00', 311, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15885, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.402531+00', 408, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15886, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.763642+00', 56, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15887, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.771792+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15888, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.762378+00', 111, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15889, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.810479+00', 73, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15890, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.830568+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15891, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.812225+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15892, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.787699+00', 141, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15893, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.851734+00', 102, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15894, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.822165+00', 129, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15895, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.082692+00', 109, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15896, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.039037+00', 222, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15897, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.056124+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15898, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.052963+00', 240, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15899, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.090955+00', 217, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15900, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.050522+00', 265, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15901, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.187928+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15902, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.085918+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15903, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.130901+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15904, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.225567+00', 159, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15905, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.293618+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15906, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.345484+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15907, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.270884+00', 210, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15908, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.343171+00', 138, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15909, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.36247+00', 160, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15910, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.336203+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15911, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.395641+00', 114, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15912, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.436925+00', 77, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15913, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.45811+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15914, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.405759+00', 151, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15915, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.473969+00', 99, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15916, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.455211+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15917, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.473975+00', 120, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15918, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.673206+00', 79, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15919, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.614985+00', 150, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15920, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.669905+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15921, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.614979+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15922, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.681471+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15923, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.681499+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15924, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.640838+00', 151, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15925, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.689687+00', 120, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15926, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.638459+00', 184, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15927, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.426271+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15928, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.492235+00', 130, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15929, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.498087+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15930, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.483232+00', 196, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15931, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.448016+00', 234, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15932, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.612051+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15933, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.587922+00', 180, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15934, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.437392+00', 334, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15935, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.495193+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15936, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.704488+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15937, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.711392+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15938, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.770412+00', 81, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15939, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.719371+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15940, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.645148+00', 209, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15941, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.633206+00', 212, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15942, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.761492+00', 101, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15943, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.453661+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15944, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.470029+00', 167, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15945, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.546316+00', 109, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15946, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.49742+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15947, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.579608+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15948, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.534165+00', 189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15949, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.482179+00', 248, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15950, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.527543+00', 58, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15951, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.559069+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15952, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.620371+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15953, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.567065+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15954, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.614329+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15955, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.60504+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15956, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.60504+00', 272, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15957, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.735925+00', 162, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15958, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.673506+00', 246, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15959, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.001411+00', 275, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15960, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.010452+00', 278, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15961, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.233558+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15962, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.256002+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15963, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.133576+00', 313, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15964, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.147479+00', 330, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15965, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.300954+00', 188, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15966, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.310727+00', 160, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15967, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.20327+00', 389, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15968, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.197251+00', 398, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15969, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.260614+00', 327, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15970, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.21614+00', 411, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15971, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.454535+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15972, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.445209+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15973, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.544969+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15974, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.533606+00', 248, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15975, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.538223+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15976, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.59483+00', 138, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15977, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.533279+00', 256, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15978, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.601217+00', 180, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(15979, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.640525+00', 169, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15980, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.718271+00', 141, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(15981, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.698158+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(15982, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.432652+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(15983, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.569373+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(15984, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.626475+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(15985, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.653438+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15986, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.542454+00', 338, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15987, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.626241+00', 262, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(15988, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.724821+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15989, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.66621+00', 250, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(15990, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.594871+00', 329, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(15991, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.143305+00', 177, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(15992, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.170741+00', 288, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(15993, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.288889+00', 257, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(15994, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.266014+00', 322, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(15995, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.505305+00', 118, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(15996, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.407309+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(15997, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.214903+00', 424, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(15998, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.314687+00', 369, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(15999, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.368505+00', 315, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16000, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.2392+00', 463, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16001, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.360203+00', 373, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16002, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.465928+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16003, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.439241+00', 339, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16004, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.608579+00', 170, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16005, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.594446+00', 196, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16006, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.658595+00', 151, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16007, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.376536+00', 100, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16008, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.440347+00', 81, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16009, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.400492+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16010, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.448017+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16011, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.419437+00', 141, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16012, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.409015+00', 170, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16013, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.420539+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16014, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.576979+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16015, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.544775+00', 160, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16016, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.619173+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16017, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.672071+00', 99, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16018, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.666586+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16019, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.619306+00', 162, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16020, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.61896+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16021, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.670406+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16022, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.682874+00', 194, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16023, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.267348+00', 261, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16024, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.297066+00', 261, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16025, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.421331+00', 220, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16026, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.391048+00', 273, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16027, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.297128+00', 385, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16028, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.20659+00', 495, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16029, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.26549+00', 428, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16030, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.368275+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16031, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.612215+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16032, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.535038+00', 218, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16033, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.428629+00', 331, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16034, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.541933+00', 263, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16035, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.735272+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16036, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.297695+00', 540, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16037, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.411644+00', 440, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16038, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.7434+00', 121, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16039, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.376933+00', 78, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16040, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.391455+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16041, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.42564+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16042, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.39379+00', 139, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16043, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.415252+00', 133, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16044, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.392064+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16045, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.407562+00', 153, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16046, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.591215+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16047, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.5264+00', 237, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16048, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.551936+00', 179, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16049, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.604509+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16050, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.623211+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16051, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.62669+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16052, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.64929+00', 151, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16053, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.63112+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16054, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.592784+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16055, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.027742+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16056, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.053604+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16057, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.042116+00', 232, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16058, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.050286+00', 253, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16059, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.136967+00', 196, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16060, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.064078+00', 276, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16061, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.205137+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16062, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.122402+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16063, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.126048+00', 290, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16064, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.246219+00', 263, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16065, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.16521+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16066, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.336535+00', 210, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16067, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.191986+00', 395, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16068, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.335386+00', 253, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16069, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.2486+00', 346, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16070, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.335009+00', 255, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16071, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.317235+00', 81, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16072, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.335383+00', 115, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16073, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.346677+00', 111, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16074, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.322528+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16075, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.38758+00', 95, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16076, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.375148+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16077, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.396443+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16078, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.543847+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16079, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.490724+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16080, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.584455+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16081, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.547133+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16082, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.538039+00', 217, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16083, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.677276+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16084, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.693528+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16085, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.746016+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16086, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.712514+00', 175, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16087, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:40.90895+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16088, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:40.940361+00', 160, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16089, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:40.945591+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16090, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:40.95792+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16091, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:40.978009+00', 210, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16092, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:40.972131+00', 230, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16093, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:40.943289+00', 260, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16094, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.06592+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16095, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.148783+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16096, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.108475+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16097, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.175242+00', 124, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16098, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.121365+00', 221, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16099, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.214296+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16100, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.215481+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16101, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.164249+00', 196, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16102, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.198198+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16103, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.545135+00', 61, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16104, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.468376+00', 169, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16105, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.499383+00', 178, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16106, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.499408+00', 182, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16107, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.545222+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16108, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.524567+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16109, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.503347+00', 224, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16110, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.590123+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16111, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.695585+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16112, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.611629+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16113, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.695585+00', 117, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16114, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.550265+00', 266, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16115, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.643795+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16116, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.643795+00', 242, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16117, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.71878+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16118, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.758932+00', 211, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16119, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:10.934035+00', 230, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16120, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:10.918513+00', 453, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16121, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.054733+00', 376, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16122, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:10.976587+00', 459, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16123, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.046183+00', 397, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16124, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.14389+00', 304, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16125, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:10.996862+00', 477, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16126, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:10.975918+00', 512, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16127, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:10.974998+00', 538, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16128, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.083625+00', 438, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16129, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.397922+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16130, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.138561+00', 494, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16131, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.219961+00', 431, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16132, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.346258+00', 395, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16133, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.21566+00', 526, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16134, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.46733+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16135, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.565065+00', 159, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16136, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.52679+00', 207, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16137, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.468483+00', 276, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16138, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.631154+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16139, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.499314+00', 270, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16140, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.511554+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16141, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.598208+00', 232, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16142, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.542218+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16143, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.593346+00', 153, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16144, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.633187+00', 167, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16145, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.689196+00', 180, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16146, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.593298+00', 286, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16147, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.759759+00', 132, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16148, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.552137+00', 333, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16149, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.669743+00', 229, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16150, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.632251+00', 273, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16151, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.032049+00', 45, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16152, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.037056+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16153, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.046937+00', 226, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16154, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.163957+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16155, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.048093+00', 265, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16156, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.186308+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16157, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.125702+00', 196, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16158, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.257276+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16159, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.106961+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16160, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.152082+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16161, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.06425+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16162, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.195226+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16163, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.255304+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16164, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.153242+00', 235, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16165, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.214797+00', 175, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16166, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.213018+00', 180, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16167, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.396794+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16168, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.359478+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16169, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.43374+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16170, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.394633+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16171, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.420789+00', 173, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16172, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.429469+00', 168, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16173, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.447776+00', 236, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16174, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.611492+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16175, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.650328+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16176, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.675433+00', 133, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16177, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.782756+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16178, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.639446+00', 257, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16179, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.764921+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16180, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.651294+00', 297, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16181, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.764998+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16182, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.764977+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16183, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.276887+00', 273, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16184, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.292424+00', 271, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16185, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.333839+00', 296, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16186, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.328766+00', 343, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16187, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.509228+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16188, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.603916+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16189, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.569068+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16190, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.244397+00', 513, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16191, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.496747+00', 266, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16192, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.330197+00', 486, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16193, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.515482+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16194, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.480616+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16195, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.498789+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16196, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.64347+00', 264, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16197, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.643452+00', 301, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16198, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.599484+00', 362, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16199, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.32635+00', 138, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16200, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.496897+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16201, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.589371+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16202, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.530184+00', 236, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16203, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.557559+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16204, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.474186+00', 331, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16205, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.49623+00', 340, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16206, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.687604+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16207, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.754853+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16208, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.701436+00', 242, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16209, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.687599+00', 275, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16210, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.844584+00', 120, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16211, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.82926+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16212, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.758164+00', 275, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16213, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.864478+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16214, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.863714+00', 206, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16215, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.252234+00', 324, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16216, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.30916+00', 285, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16217, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.437074+00', 286, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16218, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.348684+00', 383, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16219, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.460297+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16220, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.522432+00', 315, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16221, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.521424+00', 387, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16222, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.506804+00', 402, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16223, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.640676+00', 282, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16224, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.66743+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16225, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.734891+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16226, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.634283+00', 359, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16227, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.815903+00', 156, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16228, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.886018+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16229, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.856549+00', 162, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16230, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.757437+00', 303, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16231, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.402148+00', 46, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16232, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.460252+00', 74, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16233, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.509296+00', 83, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16234, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.50227+00', 116, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16235, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.501718+00', 147, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16236, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.546566+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16237, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.577038+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16238, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.684525+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16239, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.835736+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16240, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.812354+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16241, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.887248+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16242, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.733375+00', 328, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16243, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.832426+00', 236, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16244, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.73883+00', 348, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16245, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.99085+00', 105, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16246, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.802328+00', 326, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16247, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.080661+00', 131, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16248, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.108179+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16249, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.141631+00', 99, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16250, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.146634+00', 145, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16251, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.155539+00', 146, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16252, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.134041+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16253, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.122111+00', 203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16254, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.263408+00', 72, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16255, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.167323+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16256, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.182124+00', 202, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16257, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.220514+00', 170, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16258, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.277414+00', 115, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16259, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.272108+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16260, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.25507+00', 149, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16261, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.228853+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16262, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.283393+00', 137, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16263, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.360865+00', 44, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16264, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.357765+00', 51, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16265, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.335148+00', 84, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16266, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.337154+00', 94, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16267, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.400816+00', 74, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16268, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.361744+00', 117, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16269, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.37637+00', 101, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16270, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.537491+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16271, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.579435+00', 103, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16272, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.579848+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16273, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.604375+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16274, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.647879+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16275, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.646859+00', 111, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16276, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.606957+00', 154, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16277, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.602936+00', 161, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16278, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.651066+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16279, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.416311+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16280, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.504448+00', 126, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16281, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.514971+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16282, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.476846+00', 162, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16283, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.443313+00', 211, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16284, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.56783+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16285, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.509283+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16286, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.511644+00', 184, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16287, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.533459+00', 178, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16288, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.587507+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16289, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.51563+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16290, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.555439+00', 214, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16291, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.622127+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16292, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.654346+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16293, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.564512+00', 228, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16294, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.651915+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16295, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.497666+00', 122, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16296, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.477244+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16297, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.461106+00', 262, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16298, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.44119+00', 327, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16299, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.543006+00', 275, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16300, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.534313+00', 331, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16301, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.544905+00', 329, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16302, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.584057+00', 64, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16303, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.684138+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16304, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.69164+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16305, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.684051+00', 195, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16306, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.798281+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16307, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.856014+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16308, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.910205+00', 80, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16309, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.71069+00', 309, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16310, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.754667+00', 273, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16311, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.492766+00', 127, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16312, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.61507+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16313, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.513418+00', 239, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16314, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.584544+00', 172, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16315, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.545757+00', 225, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16316, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.612207+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16317, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.760706+00', 79, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16318, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.59973+00', 100, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16319, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.632425+00', 225, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16320, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.701991+00', 189, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16321, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.636373+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16322, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.704462+00', 283, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16323, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.797006+00', 238, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16324, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.964715+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16325, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.965128+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16326, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.827896+00', 302, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16327, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.40151+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16328, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.428951+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16329, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.452306+00', 64, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16330, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.421263+00', 99, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16331, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.440182+00', 103, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16332, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.428916+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16333, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.466129+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16334, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.664355+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16335, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.685964+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16336, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.684048+00', 175, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16337, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.801456+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16338, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.79571+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16339, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.732035+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16340, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.81806+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16341, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.825261+00', 85, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16342, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.798539+00', 127, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16343, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.590478+00', 52, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16344, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.579722+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16345, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.580253+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16346, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.594663+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16347, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.586405+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16348, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.586143+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16349, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.598171+00', 134, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16350, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.426866+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16351, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.475127+00', 65, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16352, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.475926+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16353, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.49875+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16354, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.487599+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16355, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.482673+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16356, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.494371+00', 119, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16357, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.495505+00', 142, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16358, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.562804+00', 79, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16359, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.409815+00', 71, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16360, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.435503+00', 61, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16361, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.430459+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16362, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.423762+00', 106, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16363, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.47706+00', 55, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16364, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.435355+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16365, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.454739+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16366, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.652895+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16367, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.636966+00', 258, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16368, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.70203+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16369, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.717+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16370, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.696719+00', 318, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16371, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.763326+00', 247, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16372, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.693715+00', 338, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16373, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.72271+00', 332, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16374, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.687012+00', 369, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16375, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.108178+00', 89, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16376, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.173772+00', 58, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16377, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.113424+00', 130, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16378, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.655997+00', 58, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16379, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.666346+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16380, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.679936+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16381, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.660572+00', 150, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16382, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.315895+00', 110, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16383, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.336272+00', 285, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16384, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.498415+00', 148, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16385, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.435454+00', 210, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16386, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.308842+00', 369, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16387, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.403999+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16388, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.538963+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16389, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.537197+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16390, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.538788+00', 247, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16391, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.398111+00', 138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16392, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.419679+00', 126, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16393, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.413814+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16394, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.425061+00', 189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16395, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.453271+00', 175, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16396, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.434043+00', 242, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16397, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.463512+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16398, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.413652+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16399, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.409314+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16400, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.53934+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16401, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.533414+00', 153, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16402, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.533612+00', 158, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16403, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.537601+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16404, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.512444+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16405, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.495767+00', 242, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16406, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.596108+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16407, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.351224+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16408, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.394555+00', 170, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16409, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.406652+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16410, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.438104+00', 219, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16411, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.50634+00', 157, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16412, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.568877+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16413, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.475575+00', 196, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16414, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.550904+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16415, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.574935+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16416, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.552928+00', 249, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16417, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.604513+00', 200, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16418, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.602168+00', 213, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16419, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.529161+00', 331, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16420, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.690417+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16421, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.562991+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16422, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.560968+00', 382, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16423, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.265038+00', 88, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16424, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.276311+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16425, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.3436+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16426, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.325984+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16427, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.244528+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16428, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.438164+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16429, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.415764+00', 202, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16430, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:35.926175+00', 411, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16431, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.040965+00', 315, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16432, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.270314+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16433, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.083185+00', 354, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16434, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.230332+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16435, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.13806+00', 364, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16436, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.141599+00', 374, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16437, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.150102+00', 386, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16438, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.230333+00', 380, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16439, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.352783+00', 413, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16440, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.358381+00', 401, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16441, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.483865+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16442, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.446208+00', 466, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16443, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.342503+00', 604, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16444, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.468064+00', 498, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16445, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.851301+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16446, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.607948+00', 580, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16447, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.976028+00', 277, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16448, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.037228+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16449, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.130201+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16450, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.032398+00', 303, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16451, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.145982+00', 191, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16452, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.851549+00', 475, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16453, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.016717+00', 351, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16454, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.103905+00', 277, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16455, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.268075+00', 200, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16456, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.294204+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16457, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.291548+00', 216, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16458, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.257772+00', 283, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16459, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.249857+00', 310, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16460, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.449746+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16461, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.450873+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16462, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.628726+00', 76, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16463, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.607777+00', 244, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16464, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.711863+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16465, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.626021+00', 244, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16466, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.672466+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16467, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.615346+00', 318, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16468, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.778194+00', 166, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16469, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.727868+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16470, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.675554+00', 394, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16471, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.29035+00', 216, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16472, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.270194+00', 258, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16473, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.418073+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16474, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.366524+00', 222, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16475, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.372457+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16476, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.303652+00', 352, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16477, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.303361+00', 366, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16478, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.548681+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16479, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.632798+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16480, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.654424+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16481, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.547114+00', 221, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16482, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.654425+00', 165, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16483, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.682156+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16484, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.58985+00', 265, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16485, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.678126+00', 195, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16486, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.792256+00', 91, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16487, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.474301+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16488, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.462208+00', 83, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16489, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.488121+00', 64, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16490, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.507745+00', 61, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16491, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.521248+00', 60, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16492, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.505028+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16493, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.513003+00', 77, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16494, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.246755+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16495, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.285331+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16496, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.318052+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16497, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.316056+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16498, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.294985+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16499, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.369711+00', 77, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16500, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.341108+00', 129, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16501, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.372332+00', 102, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16502, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.333807+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16503, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.526221+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16504, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.55579+00', 104, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16505, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.525782+00', 141, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16506, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.580954+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16507, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.625667+00', 93, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16508, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.634059+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16509, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.670659+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16510, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.399816+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16511, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.438731+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16512, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.446371+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16513, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.411071+00', 279, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16514, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.45586+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16515, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.514789+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16516, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.425576+00', 343, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16517, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.426862+00', 356, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16518, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.42859+00', 380, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16519, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.189332+00', 58, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16520, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.202972+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16521, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.182611+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16522, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.189272+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16523, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.212886+00', 84, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16524, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.22722+00', 77, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16525, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.206961+00', 92, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16526, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.533449+00', 247, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16527, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.63733+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16528, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.640746+00', 185, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16529, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.590166+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16530, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.596237+00', 380, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16531, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.63228+00', 382, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16532, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.63796+00', 411, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16533, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.492546+00', 559, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16534, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.638336+00', 424, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16535, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.271586+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16536, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.271928+00', 409, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16537, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.366341+00', 351, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16538, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.404286+00', 335, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16539, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.274198+00', 589, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16540, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.347844+00', 518, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16541, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.350738+00', 544, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16542, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.376464+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16543, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.414294+00', 110, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16544, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.450446+00', 78, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16545, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.484887+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16546, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.45762+00', 125, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16547, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.502687+00', 133, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16548, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.56112+00', 78, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16549, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.494241+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16550, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.546456+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16551, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.248371+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16552, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.269641+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16553, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.501933+00', 60, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16554, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.394013+00', 188, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16555, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.243628+00', 392, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16556, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.405108+00', 253, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16557, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.428731+00', 261, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16558, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.539802+00', 62, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16559, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.542457+00', 190, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16560, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.594893+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16561, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.601102+00', 145, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16562, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.509041+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16563, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.492986+00', 298, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16564, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.568656+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16565, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.646819+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16566, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.560472+00', 251, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16567, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.430306+00', 111, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16568, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.522881+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16569, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.555239+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16570, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.648267+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.521722+00', 243, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16572, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.521898+00', 263, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16573, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.588282+00', 199, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16574, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.408921+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16575, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.440409+00', 158, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16576, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.43431+00', 218, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16577, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.492169+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16578, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.435066+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16579, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.480934+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16580, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.542314+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16581, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.489+00', 308, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16582, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.490006+00', 314, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16583, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.227508+00', 180, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16584, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.224225+00', 214, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16585, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.225742+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16586, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.27463+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16587, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.339708+00', 133, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16588, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.246764+00', 244, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16589, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.407864+00', 93, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16590, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.432593+00', 72, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16591, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.521526+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16592, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.511565+00', 79, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16593, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.51899+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16594, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.521083+00', 106, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16595, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.524332+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16596, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.44163+00', 217, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16597, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.49907+00', 158, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16598, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.556436+00', 120, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16599, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.291738+00', 271, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16600, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.347561+00', 227, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16601, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.502971+00', 108, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16602, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.374621+00', 263, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16603, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.367565+00', 283, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16604, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.351119+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16605, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.504291+00', 170, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16606, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.447658+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16607, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.346739+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16608, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.483544+00', 185, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16609, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.471799+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16610, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.447367+00', 284, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16611, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.54626+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16612, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.460726+00', 332, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16613, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.564385+00', 256, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16614, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.615524+00', 231, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16615, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.364764+00', 140, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16616, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.366123+00', 140, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16617, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.382937+00', 116, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16618, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.455086+00', 95, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16619, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.446236+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16620, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.422012+00', 169, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16621, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.401555+00', 205, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16622, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.429791+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16623, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.355406+00', 179, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16624, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.412563+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16625, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.461597+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16626, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.422308+00', 239, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16627, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.555157+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16628, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.592193+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16629, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.58191+00', 157, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16630, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.495439+00', 248, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16631, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.202347+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16632, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.211239+00', 179, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16633, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.21116+00', 226, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16634, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.252188+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16635, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.29025+00', 170, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16636, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.252572+00', 209, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16637, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.291262+00', 197, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16638, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.020552+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16639, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.060447+00', 245, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16640, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.01695+00', 321, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16641, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.085019+00', 283, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16642, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.115612+00', 357, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16643, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.167766+00', 363, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16644, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.373215+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16645, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.307307+00', 291, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16646, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.313242+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16647, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.519715+00', 70, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16648, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.5464+00', 50, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16649, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.546115+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16650, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.530793+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16651, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.560424+00', 70, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16652, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.547456+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16653, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.547369+00', 88, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16654, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.488694+00', 146, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16655, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.491883+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16656, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.557977+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16657, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.583746+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16658, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.510639+00', 167, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16659, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.557741+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16660, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.563664+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16661, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.561621+00', 133, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16662, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.568251+00', 132, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16663, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.542798+00', 82, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16664, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.564067+00', 133, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16665, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.578593+00', 134, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16666, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.54609+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16667, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.550023+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16668, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.547069+00', 202, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16669, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.626555+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16670, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.747289+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16671, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.782376+00', 221, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16672, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.789168+00', 315, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16673, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.784943+00', 527, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16674, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.823172+00', 508, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16675, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.855668+00', 501, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16676, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.947797+00', 420, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16677, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.821875+00', 554, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16678, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.894961+00', 558, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16679, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.586171+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16680, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.623778+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16681, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.637815+00', 104, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16682, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.593209+00', 145, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16683, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.566545+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16684, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.67719+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16685, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.640551+00', 148, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16686, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.42159+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16687, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.347728+00', 315, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16688, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.546207+00', 349, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16689, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.639766+00', 258, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16690, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.611699+00', 316, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16691, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.645153+00', 322, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16692, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.347702+00', 633, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16693, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.707194+00', 356, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16694, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.572423+00', 596, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16695, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.350774+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16696, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.364114+00', 96, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16697, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.394683+00', 92, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16698, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.338969+00', 140, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16699, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.383105+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16700, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.335318+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16701, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.394806+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16702, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.238194+00', 185, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16703, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.317976+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16704, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.447134+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16705, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.413727+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16706, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.384546+00', 199, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16707, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.535218+00', 85, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16708, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.495797+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16709, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.396316+00', 245, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16710, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.521074+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16711, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.355613+00', 167, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16712, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.421577+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16713, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.324252+00', 223, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16714, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.355987+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16715, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.369683+00', 203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16716, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.422638+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16717, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.424798+00', 199, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16718, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.502259+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16719, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.532242+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16720, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.490719+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16721, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.535279+00', 209, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16722, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.548628+00', 208, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16723, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.497156+00', 287, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16724, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.639509+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16725, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.662185+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16726, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.489345+00', 336, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16727, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.318256+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16728, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.257806+00', 181, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16729, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.268999+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16730, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.360819+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16731, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.348202+00', 187, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16732, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.394765+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16733, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.346283+00', 231, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16734, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.720461+00', 102, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16735, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.594427+00', 314, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16736, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.75735+00', 163, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16737, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.720622+00', 261, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16738, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.712331+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16739, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.846462+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16740, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.758187+00', 274, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16741, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.8961+00', 175, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16742, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.839662+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16743, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.663123+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16744, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.693032+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16745, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.681903+00', 95, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16746, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.673774+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16747, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.693761+00', 101, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16748, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.738467+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16749, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.688664+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16750, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.463161+00', 342, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16751, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.614469+00', 406, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16752, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.723261+00', 382, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16753, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.686354+00', 581, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16754, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.765443+00', 506, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16755, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.577777+00', 754, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16756, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.278035+00', 501, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16757, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.771409+00', 74, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16758, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.6669+00', 1223, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16759, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.669779+00', 49, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16760, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.685306+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16761, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.728763+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16762, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.681253+00', 354, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16763, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.688926+00', 356, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16764, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:11.627576+00', 1436, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16765, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.693663+00', 363, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16766, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.453811+00', 338, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16767, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.299936+00', 527, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16768, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.453521+00', 375, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16769, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.673091+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16770, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.465843+00', 443, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16771, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.362026+00', 539, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16772, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.497522+00', 403, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16773, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.702748+00', 251, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16774, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.729626+00', 244, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16775, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.318775+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16776, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.34558+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16777, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.357198+00', 65, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16778, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.336835+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16779, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.360018+00', 74, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16780, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.375286+00', 89, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16781, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.385593+00', 92, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16782, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.518765+00', 65, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16783, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.482119+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16784, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.444035+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16785, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.503849+00', 115, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16786, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.530332+00', 104, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16787, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.546562+00', 97, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16788, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.589489+00', 61, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16789, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.526237+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16790, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.617854+00', 63, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16791, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.248952+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16792, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.272212+00', 156, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16793, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.340514+00', 137, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16794, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.389813+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16795, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.288527+00', 255, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16796, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.247262+00', 341, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16797, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.314058+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16798, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.71767+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16799, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.718009+00', 51, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16800, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.731744+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16801, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.825637+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16802, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.814556+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16803, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.871699+00', 73, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16804, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.846886+00', 118, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16805, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.893275+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16806, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.899864+00', 80, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16807, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.257136+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16808, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.319849+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16809, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.350004+00', 148, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16810, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.32748+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16811, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.332774+00', 180, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16812, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.305023+00', 223, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16813, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.33034+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16814, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:11.867323+00', 143, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16815, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:11.90926+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16816, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:11.856765+00', 208, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16817, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:11.922305+00', 172, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16818, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:11.883909+00', 248, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16819, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:11.860699+00', 273, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16820, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:11.909979+00', 227, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16821, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.412195+00', 176, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16822, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.470654+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16823, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.446807+00', 175, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16824, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.546422+00', 137, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16825, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.552203+00', 133, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16826, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.48713+00', 201, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16827, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.601592+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16828, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.602837+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16829, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.633058+00', 136, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16830, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.423865+00', 75, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16831, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.449708+00', 108, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16832, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.436688+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16833, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.492232+00', 101, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16834, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.511007+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16835, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.558863+00', 85, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16836, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.526812+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16837, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.726254+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16838, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.763413+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16839, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.7189+00', 135, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16840, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.787259+00', 92, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16841, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.779742+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16842, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.748482+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16843, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.775302+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16844, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.80033+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16845, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.785942+00', 130, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16846, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.754092+00', 140, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16847, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.791817+00', 190, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16848, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.762823+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16849, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.779208+00', 251, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16850, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.80414+00', 228, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16851, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.8181+00', 232, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16852, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.8799+00', 197, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16853, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.777621+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16854, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.786572+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16855, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.698805+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16856, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.756453+00', 280, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16857, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.80268+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16858, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.82846+00', 334, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16859, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.046675+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16860, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.824356+00', 357, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16861, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.089079+00', 143, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16862, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.342691+00', 108, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16863, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.394023+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16864, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.416909+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16865, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.302236+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16866, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.364552+00', 201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16867, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.417463+00', 159, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16868, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.387339+00', 205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16869, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.473009+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16870, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.526757+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16871, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.572825+00', 82, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16872, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.575698+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16873, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.522525+00', 141, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16874, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.581563+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16875, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.56537+00', 118, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16876, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.619504+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16877, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.552794+00', 145, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16878, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.393608+00', 155, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16879, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.456042+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16880, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.456684+00', 210, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16881, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.405759+00', 298, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16882, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.482624+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16883, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.434797+00', 301, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16884, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.506133+00', 244, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16885, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.758528+00', 66, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16886, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.806427+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16887, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.852273+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16888, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.837898+00', 296, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16889, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.801597+00', 468, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16890, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.908047+00', 367, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16891, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.861262+00', 417, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16892, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.870022+00', 410, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16893, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.913539+00', 406, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16894, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.428588+00', 72, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16895, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.425017+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16896, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.447256+00', 78, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16897, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.433621+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16898, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.482053+00', 57, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16899, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.477576+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16900, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.47219+00', 94, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16901, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:18.807024+00', 319, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16902, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:18.914282+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16903, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.002897+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16904, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.093282+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16905, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:18.969691+00', 310, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16906, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.135409+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16907, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.189462+00', 134, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16908, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:18.986182+00', 343, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16909, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.094321+00', 253, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16910, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.561019+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16911, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.638626+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16912, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.648328+00', 185, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16913, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.690622+00', 192, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16914, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.590004+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16915, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.615184+00', 277, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16916, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.730632+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16917, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.525402+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16918, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.543614+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16919, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.494296+00', 168, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16920, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.591148+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16921, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.575444+00', 137, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16922, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.566962+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16923, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.576743+00', 172, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16924, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.57391+00', 205, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16925, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.695517+00', 101, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16926, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.599662+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16927, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.613424+00', 195, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16928, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.729671+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16929, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.730275+00', 207, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16930, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.729618+00', 251, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16931, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.702002+00', 349, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16932, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.76624+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16933, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.63183+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16934, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.644622+00', 101, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16935, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.698127+00', 67, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16936, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.741478+00', 72, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16937, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.755851+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16938, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.728483+00', 127, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16939, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.774576+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16940, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.663005+00', 225, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16941, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.78707+00', 151, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16942, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.483305+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16943, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.576365+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16944, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.64558+00', 133, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16945, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.645949+00', 174, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16946, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.646665+00', 200, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16947, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.538536+00', 309, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16948, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.719969+00', 153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16949, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.903086+00', 51, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16950, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.960908+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16951, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.91525+00', 224, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16952, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.953755+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16953, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.970455+00', 210, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16954, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.976925+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16955, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.981135+00', 221, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16956, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.053686+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16957, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.990477+00', 245, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16958, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.369702+00', 63, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16959, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.404254+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16960, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.412924+00', 62, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16961, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.406918+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16962, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.420594+00', 77, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16963, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.412287+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16964, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.408251+00', 94, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16965, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.628533+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16966, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.624292+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16967, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.623067+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16968, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.725119+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16969, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.654271+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16970, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.720074+00', 115, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16971, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.696575+00', 163, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16972, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.657079+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16973, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.715345+00', 214, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16974, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.55124+00', 78, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16975, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.435301+00', 270, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16976, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.500551+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16977, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.483942+00', 298, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16978, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.567057+00', 251, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16979, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.455044+00', 379, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16980, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.587802+00', 267, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(16981, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.494064+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(16982, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.52781+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(16983, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.59342+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(16984, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.63726+00', 77, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(16985, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.610997+00', 141, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16986, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.536808+00', 254, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16987, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.671252+00', 136, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(16988, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.638118+00', 182, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(16989, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.679395+00', 195, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(16990, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.339182+00', 78, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(16991, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.375093+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(16992, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.418115+00', 58, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(16993, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.387387+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(16994, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.426093+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(16995, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.383272+00', 109, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(16996, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.405938+00', 88, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(16997, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.544968+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(16998, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.52906+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(16999, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.594271+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17000, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.580983+00', 195, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17001, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.614652+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17002, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.646832+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17003, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.611536+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17004, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.608998+00', 213, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17005, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.623066+00', 215, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17006, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.454643+00', 56, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17007, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.459061+00', 96, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17008, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.499914+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17009, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.480144+00', 271, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17010, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.513339+00', 280, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17011, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.612731+00', 194, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17012, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.492+00', 339, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17013, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.521499+00', 257, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17014, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.582745+00', 250, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17015, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.710383+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17016, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.674863+00', 267, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17017, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.576358+00', 379, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17018, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.749342+00', 270, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17019, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.70873+00', 317, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17020, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.731605+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17021, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.786469+00', 282, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17022, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.482696+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17023, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.498948+00', 68, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17024, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.505085+00', 66, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17025, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.535502+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17026, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.507633+00', 110, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17027, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.514081+00', 113, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17028, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.547622+00', 92, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17029, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.499043+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17030, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.545315+00', 84, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17031, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.570329+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17032, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.598027+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17033, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.648266+00', 146, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17034, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.688517+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17035, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.593342+00', 253, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17036, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.587485+00', 295, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17037, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.702184+00', 223, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17038, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.428047+00', 79, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17039, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.388532+00', 128, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17040, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.411626+00', 161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17041, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.378899+00', 240, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17042, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.39325+00', 228, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17043, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.401627+00', 236, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17044, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.433705+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17045, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.812877+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17046, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.8116+00', 218, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17047, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.939804+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17048, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.780485+00', 302, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17049, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.88577+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17050, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.885557+00', 217, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17051, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.882739+00', 243, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17052, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.736086+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17053, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.014014+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17054, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.38265+00', 104, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17055, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.394847+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17056, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.414016+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17057, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.398476+00', 135, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17058, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.425306+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17059, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.413408+00', 146, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17060, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.418538+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17061, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.695045+00', 221, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17062, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.712755+00', 224, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17063, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.729566+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17064, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.857201+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17065, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.87237+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17066, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.850057+00', 196, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17067, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.85645+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17068, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.856135+00', 267, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17069, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.856689+00', 291, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17070, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.394529+00', 95, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17071, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.429589+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17072, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.461916+00', 76, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17073, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.514032+00', 117, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17074, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.573252+00', 50, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17075, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.436738+00', 261, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17076, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.599778+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17077, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.646517+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17078, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.643195+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17079, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.73916+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17080, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.770915+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17081, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.553303+00', 500, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17082, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.67434+00', 392, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17083, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.686244+00', 400, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17084, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.732757+00', 444, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17085, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.677722+00', 586, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17086, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.515547+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17087, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.494153+00', 100, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17088, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.519696+00', 73, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17089, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.527539+00', 69, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17090, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.516573+00', 88, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17091, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.504434+00', 103, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17092, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.52776+00', 86, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17093, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.638342+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17094, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.62572+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17095, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.737312+00', 78, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17096, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.607675+00', 248, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17097, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.60107+00', 259, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17098, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.541423+00', 336, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17099, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.766309+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17100, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.571305+00', 355, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17101, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.686674+00', 249, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17102, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:47.660316+00', 160, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17103, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:47.666084+00', 524, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17104, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:47.818071+00', 383, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17105, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:47.799004+00', 453, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17106, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.090276+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17107, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:47.881528+00', 511, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17108, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.02704+00', 406, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17109, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.583229+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17110, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.529966+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17111, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.518579+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17112, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.640141+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17113, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.643468+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17114, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.692252+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17115, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.56781+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17116, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.602718+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17117, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.748002+00', 78, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17118, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.372983+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17119, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.407675+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17120, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.406922+00', 131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17121, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.41583+00', 132, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17122, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.466152+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17123, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.422092+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17124, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.423818+00', 154, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17125, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.798063+00', 72, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17126, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.686698+00', 237, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17127, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.69973+00', 225, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17128, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.824945+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17129, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.749431+00', 257, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17130, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.877112+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17131, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.934307+00', 89, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17132, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.925778+00', 152, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17133, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.915438+00', 164, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17134, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.425641+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17135, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.452235+00', 115, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17136, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.466966+00', 155, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17137, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.459229+00', 167, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17138, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.520455+00', 117, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17139, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.522379+00', 123, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17140, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.522715+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17141, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.620082+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17142, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.582873+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17143, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.648407+00', 196, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17144, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.591967+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17145, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.630736+00', 307, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17146, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.64674+00', 324, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17147, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.607811+00', 377, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17148, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.694244+00', 296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17149, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.599209+00', 420, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17150, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.401909+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17151, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.39236+00', 162, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17152, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.401655+00', 181, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17153, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.402785+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17154, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.518146+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17155, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.38158+00', 273, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17156, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.388181+00', 270, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17157, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.57152+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17158, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.55548+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17159, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.62357+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17160, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.590796+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17161, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.530212+00', 370, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17162, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.730637+00', 231, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17163, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.789104+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17164, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.82302+00', 186, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17165, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.750017+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17166, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.438814+00', 39, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17167, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.379571+00', 123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17168, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.390304+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17169, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.403616+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17170, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.435659+00', 137, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17171, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.390143+00', 191, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17172, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.423568+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17173, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.496665+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17174, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.52831+00', 169, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17175, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.614084+00', 118, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17176, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.602022+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17177, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.641241+00', 110, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17178, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.71231+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17179, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.662169+00', 144, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17180, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.67563+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17181, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.747435+00', 148, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17182, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.420281+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17183, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.381448+00', 134, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17184, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.477366+00', 89, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17185, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.436804+00', 136, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17186, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.472264+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17187, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.553816+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17188, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.397798+00', 306, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17189, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.492193+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17190, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.583056+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17191, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.603716+00', 88, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17192, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.587626+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17193, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.679878+00', 68, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17194, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.630364+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17195, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.523358+00', 239, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17196, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.581779+00', 208, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17197, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.625128+00', 219, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17198, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.3868+00', 129, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17199, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.471842+00', 76, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17200, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.436113+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17201, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.419854+00', 233, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17202, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.4587+00', 204, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17203, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.486106+00', 186, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17204, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.45708+00', 223, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17205, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.537639+00', 172, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17206, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.554429+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17207, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.692107+00', 65, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17208, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.736427+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17209, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.579938+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17210, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.553601+00', 282, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17211, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.687157+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17212, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.645442+00', 214, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17213, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.800138+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17214, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.378425+00', 178, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17215, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.416951+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17216, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.479964+00', 99, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17217, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.378925+00', 247, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17218, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.416043+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17219, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.446878+00', 192, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17220, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.511837+00', 156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17221, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.590017+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17222, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.624105+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17223, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.641326+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17224, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.647418+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17225, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.630177+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17226, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.690059+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17227, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.633781+00', 222, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17228, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.626779+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17229, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.658862+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17230, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.442301+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17231, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.42731+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17232, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.45011+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17233, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.468853+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17234, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.460186+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17235, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.538198+00', 86, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17236, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.426491+00', 226, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17237, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.660161+00', 88, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17238, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.643699+00', 266, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17239, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.708477+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17240, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.656109+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17241, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.685449+00', 307, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17242, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.625207+00', 375, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17243, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.861089+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17244, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.869497+00', 213, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17245, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.577894+00', 551, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17246, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.472666+00', 115, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17247, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.541767+00', 74, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17248, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.534457+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17249, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.490478+00', 184, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17250, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.543441+00', 131, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17251, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.55866+00', 121, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17252, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.541968+00', 140, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17253, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.523236+00', 82, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17254, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.53699+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17255, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.543197+00', 121, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17256, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.548614+00', 118, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17257, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.621741+00', 55, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17258, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.593776+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17259, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.556885+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17260, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.623797+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17261, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.626416+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17262, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.419038+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17263, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.541019+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17264, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.46709+00', 194, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17265, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.56527+00', 106, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17266, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.50451+00', 190, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17267, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.619456+00', 96, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17268, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.498342+00', 235, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17269, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.593329+00', 101, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17270, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.729416+00', 80, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17271, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.67604+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17272, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.806788+00', 123, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17273, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.815583+00', 115, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17274, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.774813+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17275, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.785009+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17276, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.842185+00', 175, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17277, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.831352+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17278, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.4951+00', 79, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17279, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.495056+00', 130, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17280, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.512846+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17281, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.517736+00', 114, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17282, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.525534+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17283, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.560904+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17284, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.60597+00', 148, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17285, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.573538+00', 61, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17286, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.60176+00', 53, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17287, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.591323+00', 85, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17288, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.541965+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17289, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.654455+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17290, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.664468+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17291, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.644092+00', 100, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17292, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.640492+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17293, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.698146+00', 79, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17294, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.424933+00', 51, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17295, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.443002+00', 65, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17296, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.456398+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17297, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.482365+00', 135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17298, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.462887+00', 152, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17299, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.444007+00', 195, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17300, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.598198+00', 51, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17301, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.756959+00', 100, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17302, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.814663+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17303, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.731839+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17304, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.713096+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17305, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.875379+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17306, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.888617+00', 176, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17307, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.870722+00', 217, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17308, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.878203+00', 222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17309, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.956653+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17310, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.443307+00', 69, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17311, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.443662+00', 78, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17312, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.458544+00', 72, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17313, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.456638+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17314, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.502783+00', 57, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17315, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.541888+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17316, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.533371+00', 61, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17317, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.803671+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17318, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.782118+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17319, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.804494+00', 264, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17320, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.885024+00', 206, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17321, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.805978+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17322, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.84813+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17323, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.883021+00', 313, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17324, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.810697+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17325, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.987179+00', 241, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17326, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.340202+00', 144, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17327, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.435515+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17328, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.456325+00', 93, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17329, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.500703+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17330, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.51598+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17331, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.520992+00', 94, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17332, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.486507+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17333, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.541506+00', 287, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17334, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.623298+00', 219, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17335, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.592624+00', 256, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17336, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.539655+00', 337, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17337, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.70606+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17338, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.632155+00', 319, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17339, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.686796+00', 292, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17340, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.675288+00', 315, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17341, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.784791+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17342, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.348804+00', 72, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17343, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.367745+00', 54, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17344, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.344719+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17345, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.370137+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17346, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.372877+00', 82, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17347, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.358777+00', 98, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17348, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.382322+00', 74, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17349, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.620645+00', 116, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17350, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.552398+00', 199, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17351, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.567954+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17352, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.642484+00', 178, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17353, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.639935+00', 189, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17354, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.62073+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17355, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.683151+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17356, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.685684+00', 200, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17357, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.758019+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17358, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.283926+00', 71, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(17359, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.272016+00', 87, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(17360, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.297238+00', 69, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17361, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.319317+00', 63, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(17362, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.27326+00', 115, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(17363, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.2967+00', 93, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(17364, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.311914+00', 81, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(17365, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.485922+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17366, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.566655+00', 75, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17367, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.509977+00', 192, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17368, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.527076+00', 179, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17369, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.510239+00', 233, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17370, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.537491+00', 252, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17371, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.590431+00', 209, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17372, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.519611+00', 64, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17373, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.491265+00', 96, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17374, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.561672+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17375, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.525468+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17376, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.596544+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17377, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.570996+00', 107, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17378, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.551103+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17379, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.569736+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17380, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.629275+00', 75, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17381, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.408227+00', 55, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17382, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.432724+00', 42, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17383, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.436778+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17384, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.450259+00', 66, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17385, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.46922+00', 49, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17386, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.435418+00', 92, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17387, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.427416+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17388, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.588072+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17389, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.55659+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17390, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.561952+00', 240, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17391, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.701873+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17392, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.720904+00', 139, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17393, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.724448+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17394, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.774262+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17395, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.819244+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17396, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.841286+00', 161, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17397, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.499021+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17398, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.492507+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17399, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.521616+00', 83, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17400, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.482102+00', 158, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17401, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.534549+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17402, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.574599+00', 90, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17403, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.566327+00', 104, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17404, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.412212+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17405, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.386898+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17406, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.347135+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17407, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.385342+00', 237, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17408, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.398576+00', 240, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17409, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.440482+00', 209, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17410, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.431385+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17411, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.373217+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17412, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.394656+00', 321, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17413, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.486163+00', 58, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17414, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.490102+00', 95, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17415, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.561482+00', 67, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17416, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.555756+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17417, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.553032+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17418, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.55079+00', 153, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17419, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.620052+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17420, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:36.804252+00', 487, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17421, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.05059+00', 813, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17422, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.054093+00', 843, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17423, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.040763+00', 939, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17424, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:36.896763+00', 1119, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17425, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.067808+00', 969, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17426, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.452344+00', 602, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17427, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.039518+00', 1037, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17428, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.258116+00', 828, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17429, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.400817+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17430, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.455068+00', 74, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17431, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.452477+00', 91, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17432, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.488468+00', 59, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17433, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.474939+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17434, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.455002+00', 97, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17435, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.497728+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17436, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.73405+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17437, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.792351+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17438, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.885978+00', 133, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17439, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.828694+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17440, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.836544+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17441, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.85427+00', 265, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17442, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.993307+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17443, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.816328+00', 351, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17444, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.999715+00', 193, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17445, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.397078+00', 59, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17446, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.365621+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17447, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.400618+00', 66, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17448, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.347804+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17449, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.364455+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17450, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.399052+00', 74, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17451, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.350401+00', 133, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17452, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.772229+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17453, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.773208+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17454, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.756181+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17455, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.90896+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17456, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.709057+00', 286, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17457, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.74521+00', 268, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17458, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.886414+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17459, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.909013+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17460, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.931064+00', 282, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17461, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.488135+00', 40, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17462, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.526006+00', 57, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17463, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.541582+00', 48, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17464, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.511542+00', 82, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17465, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.49627+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17466, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.523321+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17467, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.54168+00', 68, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17468, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:05.774285+00', 766, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17469, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:05.898102+00', 696, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17470, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:05.778074+00', 945, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17471, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.626753+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17472, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.1705+00', 578, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17473, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.156516+00', 615, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17474, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.395257+00', 381, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17475, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:05.777768+00', 1050, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17476, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.459265+00', 412, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17477, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.459811+00', 61, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17478, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.422075+00', 98, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17479, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.448982+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17480, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.455051+00', 79, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17481, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.467715+00', 77, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17482, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.484521+00', 66, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17483, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.462885+00', 93, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17484, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.577096+00', 128, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17485, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.617457+00', 93, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17486, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.668621+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17487, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.535108+00', 251, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17488, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.598146+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17489, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.704757+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17490, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.743079+00', 93, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17491, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.66441+00', 176, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17492, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.709382+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17493, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.355393+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17494, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.338456+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17495, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.336397+00', 96, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17496, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.358171+00', 81, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17497, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.376234+00', 84, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17498, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.381299+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17499, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.371745+00', 96, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17500, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.595417+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17501, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.594227+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17502, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.584573+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17503, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.645615+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17504, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.629601+00', 122, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17505, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.694376+00', 59, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17506, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.639271+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17507, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.642516+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17508, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.615601+00', 172, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17509, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.430963+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17510, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.454768+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17511, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.430541+00', 151, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17512, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.450321+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17513, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.495874+00', 108, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17514, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.444059+00', 188, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17515, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.493057+00', 162, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17516, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.626254+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17517, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.650767+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17518, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.626254+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17519, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.753941+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17520, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.712146+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17521, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.633661+00', 248, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17522, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.8431+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17523, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.882255+00', 119, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17524, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.658236+00', 345, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17525, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.511674+00', 99, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17526, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.552056+00', 65, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17527, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.56967+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17528, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.576749+00', 93, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17529, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.562122+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17530, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.54455+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17531, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.574389+00', 115, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17532, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.573996+00', 169, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17533, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.536277+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17534, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.657675+00', 171, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17535, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.747727+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17536, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.660758+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17537, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.81243+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17538, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.573857+00', 339, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17539, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.572826+00', 342, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17540, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.693007+00', 233, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17541, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.473801+00', 54, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17542, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.455013+00', 97, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17543, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.455761+00', 109, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17544, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.46683+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17545, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.438012+00', 159, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17546, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.587533+00', 44, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17547, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.587239+00', 89, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17548, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.442309+00', 42, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17549, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.442194+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17550, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.510191+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17551, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.61022+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17552, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.580163+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17553, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.549169+00', 239, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17554, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.576193+00', 222, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17555, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.560108+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17556, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.523575+00', 277, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17557, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.487581+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17558, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.465856+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17559, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.581671+00', 123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17560, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.480987+00', 295, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17561, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.547221+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17562, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.537154+00', 245, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17563, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.607952+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17564, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.614406+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17565, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.651036+00', 276, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17566, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.692299+00', 257, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17567, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.803861+00', 172, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17568, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.673148+00', 317, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17569, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.632633+00', 371, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17570, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.620582+00', 421, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17571, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.629076+00', 413, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17572, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.799541+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17573, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.54109+00', 89, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17574, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.521048+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17575, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.518858+00', 158, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17576, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.491196+00', 183, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17577, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.59014+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17578, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.59194+00', 130, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17579, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.617201+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17580, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.510168+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17581, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.472996+00', 151, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17582, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.540463+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17583, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.530395+00', 113, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17584, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.555593+00', 112, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17585, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.529668+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17586, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.568877+00', 105, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17587, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.586844+00', 89, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17588, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.547994+00', 134, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17589, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.382204+00', 58, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17590, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.361657+00', 86, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17591, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.392107+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17592, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.429918+00', 76, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17593, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.44281+00', 88, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17594, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.482927+00', 64, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17595, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.413644+00', 161, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17596, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.674092+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17597, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.706025+00', 268, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17598, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.878077+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17599, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.869638+00', 164, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17600, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.808119+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17601, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.701077+00', 341, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17602, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.88474+00', 168, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17603, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.894798+00', 161, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17604, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.882311+00', 188, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17605, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.321788+00', 62, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17606, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.315311+00', 107, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17607, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.365554+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17608, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.335999+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17609, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.354152+00', 101, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17610, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.360237+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17611, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.358163+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17612, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.504855+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17613, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.570093+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17614, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.664205+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17615, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.57263+00', 255, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17616, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.687496+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17617, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.553971+00', 297, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17618, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.601373+00', 314, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17619, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.619874+00', 303, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17620, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.544138+00', 428, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17621, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.355888+00', 51, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17622, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.354816+00', 110, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17623, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.348984+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17624, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.39547+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17625, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.39372+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17626, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.373048+00', 157, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17627, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.369396+00', 166, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17628, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.6669+00', 215, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17629, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.636643+00', 248, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17630, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.724373+00', 278, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17631, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.688358+00', 372, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17632, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.677672+00', 453, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17633, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.771987+00', 373, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17634, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.851221+00', 289, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17635, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.809264+00', 334, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17636, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.802155+00', 361, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17637, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.454238+00', 57, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17638, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.460794+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17639, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.438476+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17640, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.446434+00', 115, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17641, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.469993+00', 103, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17642, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.515436+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17643, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.489654+00', 108, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17644, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.696509+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17645, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.669642+00', 209, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17646, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.705592+00', 207, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17647, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.723049+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17648, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.661819+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17649, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.718234+00', 227, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17650, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.733168+00', 208, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17651, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.795568+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17652, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.668955+00', 324, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17653, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.574079+00', 84, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17654, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.56606+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17655, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.590104+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17656, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.577312+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17657, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.512687+00', 248, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17658, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.57622+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17659, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.584473+00', 216, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17660, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.516359+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17661, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.50543+00', 128, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17662, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.503036+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17663, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.428711+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17664, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.507372+00', 174, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17665, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.583513+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17666, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.598778+00', 109, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17667, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.520038+00', 210, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17668, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.516078+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17669, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.506527+00', 54, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17670, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.525555+00', 46, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17671, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.52548+00', 147, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17672, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.657527+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17673, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.603576+00', 196, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17674, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.603392+00', 228, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17675, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.694686+00', 139, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17676, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.499449+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17677, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.567703+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17678, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.627255+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17679, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.640744+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17680, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.625608+00', 224, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17681, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.667394+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17682, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.624531+00', 242, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17683, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.646733+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17684, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.638307+00', 301, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17685, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.459205+00', 176, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17686, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.534386+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17687, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.504688+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17688, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.491976+00', 189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17689, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.527992+00', 157, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17690, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.540111+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17691, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.506121+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17692, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.463116+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17693, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.515529+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17694, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.562573+00', 104, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17695, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.538749+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17696, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.504334+00', 191, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17697, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.534558+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17698, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.694017+00', 51, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17699, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.454294+00', 291, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17700, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.674832+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17701, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.354285+00', 60, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17702, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.354283+00', 126, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17703, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.429882+00', 74, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17704, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.362337+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17705, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.341069+00', 172, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17706, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.447125+00', 98, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17707, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.4475+00', 105, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17708, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.68682+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17709, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.679591+00', 220, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17710, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.68571+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17711, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.64169+00', 322, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17712, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.675846+00', 307, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17713, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.741127+00', 247, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17714, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.686032+00', 300, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17715, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.686767+00', 358, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17716, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.811783+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17717, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.555757+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17718, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.568125+00', 112, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17719, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.487737+00', 215, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17720, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.486572+00', 233, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17721, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.547033+00', 185, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17722, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.457902+00', 278, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17723, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.633164+00', 129, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17724, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.831312+00', 143, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(17725, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.900868+00', 84, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17726, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.830188+00', 177, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(17727, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.816823+00', 149, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17728, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.809904+00', 237, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(17729, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.819738+00', 215, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17730, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.819738+00', 232, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(17731, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.835439+00', 216, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(17732, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.816823+00', 250, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(17733, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.928476+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17734, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.991138+00', 423, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(17735, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.182072+00', 512, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17736, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.140528+00', 562, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17737, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.421337+00', 311, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(17738, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.112768+00', 676, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(17739, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:50.940649+00', 969, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17740, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.216877+00', 733, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(17741, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.027211+00', 930, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17742, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.473171+00', 491, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17743, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.519951+00', 450, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(17744, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.558195+00', 449, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(17745, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.385612+00', 627, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17746, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.565061+00', 449, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(17747, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.270013+00', 762, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17748, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.366072+00', 779, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17749, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.676359+00', 482, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17750, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.384906+00', 907, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(17751, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.674572+00', 576, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17752, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.480061+00', 851, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17753, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.480061+00', 862, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(17754, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.606454+00', 748, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17755, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.451812+00', 914, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17756, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.646179+00', 821, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17757, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.672199+00', 919, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17758, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.68217+00', 958, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17759, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.501717+00', 114, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17760, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.558058+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17761, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.591091+00', 60, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17762, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.561005+00', 109, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17763, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.60493+00', 88, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17764, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.530174+00', 162, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17765, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.58187+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17766, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.554435+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17767, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.643526+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17768, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.438099+00', 65, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17769, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.444773+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17770, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.475002+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17771, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.471273+00', 123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17772, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.478+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17773, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.464258+00', 161, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17774, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.453576+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17775, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:20.856292+00', 157, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17776, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:20.981615+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17777, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:20.868218+00', 247, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17778, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.031702+00', 155, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17779, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:20.981219+00', 209, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17780, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:20.945875+00', 281, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17781, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.035568+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17782, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.120264+00', 180, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17783, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.102388+00', 230, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17784, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.091116+00', 289, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17785, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.23491+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17786, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:20.981908+00', 425, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17787, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.181293+00', 234, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17788, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.127672+00', 291, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17789, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.062423+00', 363, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17790, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.238848+00', 248, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17791, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.448796+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17792, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.465849+00', 219, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17793, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.624068+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17794, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.495496+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17795, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.639963+00', 92, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17796, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.643673+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17797, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.646276+00', 101, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17798, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.644899+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17799, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.670879+00', 85, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17800, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.393481+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17801, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.448626+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17802, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.411211+00', 177, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17803, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.428351+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17804, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.488051+00', 141, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17805, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.507746+00', 129, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17806, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.503319+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17807, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:50.972567+00', 358, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17808, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.15621+00', 246, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17809, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:50.963692+00', 484, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17810, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.029276+00', 448, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17811, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:50.955058+00', 627, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17812, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.202853+00', 384, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17813, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.32602+00', 281, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17814, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.350373+00', 341, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17815, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.299227+00', 462, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17816, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.233719+00', 536, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17817, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.484296+00', 387, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17818, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.306053+00', 553, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17819, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.268886+00', 637, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17820, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.217609+00', 745, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17821, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.264312+00', 690, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17822, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.176882+00', 800, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17823, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.686751+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17824, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.677604+00', 102, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17825, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.729552+00', 76, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17826, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.716488+00', 115, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17827, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.677785+00', 173, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17828, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.687271+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17829, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.686198+00', 159, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17830, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.734436+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17831, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.711943+00', 174, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17832, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.391644+00', 100, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17833, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.415369+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17834, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.426207+00', 99, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17835, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.420072+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17836, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.407245+00', 168, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17837, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.432867+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17838, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.485438+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17839, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:20.815657+00', 146, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17840, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:20.811782+00', 327, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17841, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:20.765364+00', 390, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17842, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:20.796166+00', 382, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17843, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:20.780968+00', 556, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17844, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:20.979217+00', 362, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17845, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.012957+00', 387, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17846, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.166715+00', 264, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17847, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.08722+00', 363, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17848, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.056279+00', 424, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17849, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.164334+00', 321, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17850, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.123713+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17851, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.182681+00', 317, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17852, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.193505+00', 315, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17853, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.190269+00', 326, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17854, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.186774+00', 337, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17855, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:28.993702+00', 67, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17856, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.050281+00', 61, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17857, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.075534+00', 55, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17858, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.078294+00', 91, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17859, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.094997+00', 75, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17860, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.019814+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17861, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.136853+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17862, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.029306+00', 238, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17863, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.053164+00', 265, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17864, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.592085+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17865, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.579094+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17866, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.539092+00', 299, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17867, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.5668+00', 272, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17868, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.601027+00', 242, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17869, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.676654+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17870, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.684135+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17871, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.672356+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17872, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.711661+00', 188, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17873, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.314136+00', 45, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17874, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.357211+00', 69, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17875, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.333129+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17876, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.346522+00', 111, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17877, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.335579+00', 116, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17878, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.35746+00', 104, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17879, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.340958+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17880, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:50.888173+00', 316, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17881, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.090145+00', 209, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17882, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:50.998826+00', 324, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17883, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.047768+00', 313, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17884, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:50.964568+00', 401, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17885, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.005031+00', 387, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17886, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.235438+00', 222, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17887, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.367209+00', 133, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17888, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.235577+00', 295, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17889, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.235262+00', 313, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17890, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.16936+00', 388, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17891, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.312868+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17892, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.254085+00', 420, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17893, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.150385+00', 530, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17894, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.256121+00', 436, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17895, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.463597+00', 315, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17896, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.445251+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17897, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.501727+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17898, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.518112+00', 213, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17899, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.545732+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17900, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.562272+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17901, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.604005+00', 174, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17902, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.609418+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17903, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.539595+00', 263, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17904, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.639453+00', 165, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17905, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.376729+00', 95, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17906, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.349923+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17907, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.382205+00', 179, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17908, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.399311+00', 176, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17909, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.396868+00', 189, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17910, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.450731+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17911, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.484091+00', 120, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17912, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:20.982737+00', 250, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17913, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.106411+00', 131, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17914, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.00356+00', 331, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17915, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.008131+00', 483, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17916, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.253137+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17917, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.075201+00', 461, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17918, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.180435+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17919, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.381614+00', 180, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17920, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.098032+00', 461, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17921, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.448388+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17922, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.306246+00', 348, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17923, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.445526+00', 251, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17924, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.222176+00', 553, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17925, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.552561+00', 234, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17926, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.349325+00', 458, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17927, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.586203+00', 254, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17928, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.440466+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17929, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.443052+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17930, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.481252+00', 107, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17931, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.499892+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17932, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.496763+00', 117, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17933, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.540105+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17934, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.551965+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17935, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.50795+00', 156, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17936, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.536752+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17937, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.365812+00', 57, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17938, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.439133+00', 95, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17939, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.400704+00', 170, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17940, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.403137+00', 184, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17941, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.465687+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17942, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.388+00', 215, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17943, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.350028+00', 253, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17944, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.214329+00', 101, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17945, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.194144+00', 138, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17946, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.249819+00', 94, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17947, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.293071+00', 364, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17948, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.254112+00', 404, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17949, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.291109+00', 402, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17950, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.287984+00', 453, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17951, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.640712+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17952, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.404972+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17953, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.68468+00', 172, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17954, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.64084+00', 276, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17955, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.442512+00', 481, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17956, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.58878+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17957, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.654413+00', 297, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17958, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.577099+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17959, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.81935+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17960, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.469875+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17961, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.501522+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17962, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.535956+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17963, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.511039+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17964, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.54113+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17965, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.536634+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17966, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.557125+00', 173, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17967, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.553794+00', 179, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17968, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.571424+00', 182, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17969, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.459932+00', 120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17970, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.517162+00', 55, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(17971, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.498681+00', 138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17972, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.517421+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17973, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.580171+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17974, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.573954+00', 112, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17975, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.612074+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17976, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.372359+00', 310, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(17977, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.46727+00', 329, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(17978, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.594383+00', 210, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17979, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.486343+00', 408, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(17980, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.548204+00', 383, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(17981, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.50499+00', 468, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17982, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.643086+00', 416, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(17983, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.749256+00', 275, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(17984, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.688265+00', 394, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17985, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.820381+00', 368, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17986, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.859233+00', 359, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(17987, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.677339+00', 577, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17988, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.91822+00', 334, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(17989, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.623813+00', 638, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(17990, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.462091+00', 803, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17991, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.911111+00', 439, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17992, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.469285+00', 79, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(17993, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.492016+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(17994, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.538491+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(17995, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.520251+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(17996, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.516964+00', 158, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(17997, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.580091+00', 94, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(17998, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.575663+00', 96, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(17999, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.59376+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18000, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.564421+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18001, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.431768+00', 40, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18002, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.380792+00', 143, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18003, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.416991+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18004, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.449308+00', 89, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18005, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.407324+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18006, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.449288+00', 136, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18007, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.429098+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18008, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.161184+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18009, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.105958+00', 230, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18010, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.208673+00', 146, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18011, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.383388+00', 70, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18012, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.360564+00', 135, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18013, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.261004+00', 293, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18014, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.126149+00', 428, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18015, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.22888+00', 399, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18016, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.305565+00', 327, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18017, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.238416+00', 416, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18018, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.434332+00', 280, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18019, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.515767+00', 201, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18020, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.430546+00', 305, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18021, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.377516+00', 365, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18022, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.620737+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18023, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.594784+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18024, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.601336+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18025, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.574978+00', 194, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18026, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.585937+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18027, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.701699+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18028, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.650312+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18029, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.701938+00', 223, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18030, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.55714+00', 372, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18031, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.730483+00', 205, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18032, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.651079+00', 303, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18033, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.460914+00', 323, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18034, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.466105+00', 332, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18035, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.497188+00', 344, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18036, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.547799+00', 344, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18037, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.590213+00', 324, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18038, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.528135+00', 416, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18039, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.475778+00', 484, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18040, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.60931+00', 343, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18041, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.552098+00', 437, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18042, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.517149+00', 483, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18043, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.253224+00', 750, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18044, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.557341+00', 479, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18045, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.815346+00', 224, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18046, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.538768+00', 553, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18047, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.814076+00', 282, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18048, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.006093+00', 105, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18049, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.210865+00', 204, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18050, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.113245+00', 385, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18051, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.165957+00', 333, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18052, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.202242+00', 330, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18053, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.278603+00', 292, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18054, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.523346+00', 103, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18055, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.245198+00', 416, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18056, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.203664+00', 462, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18057, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.263706+00', 436, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18058, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.420058+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18059, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.260656+00', 490, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18060, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.468971+00', 292, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18061, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.371185+00', 405, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18062, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.464098+00', 366, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18063, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.273697+00', 567, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18064, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.40946+00', 438, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18065, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.144875+00', 38, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18066, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.15037+00', 48, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18067, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.149088+00', 49, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18068, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.160652+00', 47, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18069, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.036816+00', 51, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18070, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.028312+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18071, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.034271+00', 70, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18072, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.067178+00', 48, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18073, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.074889+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18074, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.133945+00', 42, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18075, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.158213+00', 75, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18076, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.215371+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18077, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.22111+00', 96, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18078, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.218895+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18079, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.238175+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18080, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.215345+00', 119, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18081, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:50.887119+00', 276, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18082, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.078121+00', 156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18083, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:50.908179+00', 416, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18084, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:50.881799+00', 482, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18085, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.14508+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18086, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.017244+00', 432, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18087, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.254447+00', 255, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18088, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.053504+00', 457, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18089, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.200358+00', 419, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18090, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.105705+00', 515, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18091, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.393744+00', 250, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18092, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.225025+00', 482, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18093, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.113522+00', 571, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18094, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.411703+00', 284, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18095, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.227977+00', 517, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18096, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.323372+00', 469, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18097, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:20.834377+00', 333, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18098, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:20.886462+00', 331, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18099, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.078489+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18100, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:20.971288+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18101, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:20.900644+00', 454, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18102, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:20.958653+00', 414, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18103, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.032764+00', 350, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18104, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.111577+00', 286, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18105, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.178148+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18106, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.133875+00', 391, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18107, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.303407+00', 256, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18108, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.334612+00', 272, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18109, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:20.97023+00', 644, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18110, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.191236+00', 425, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18111, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.189609+00', 435, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18112, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.267848+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18113, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.096867+00', 70, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18114, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.129503+00', 137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18115, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.146446+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18116, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.162086+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18117, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.163712+00', 223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18118, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.113677+00', 379, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18119, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.221617+00', 308, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18120, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.238298+00', 308, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18121, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.330684+00', 234, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18122, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.378313+00', 202, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18123, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.338658+00', 284, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18124, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.401326+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18125, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.409155+00', 257, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18126, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.338565+00', 332, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18127, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.556923+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18128, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.319641+00', 365, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18129, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.307987+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18130, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.223603+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18131, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.307982+00', 321, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18132, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.404556+00', 249, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18133, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.375411+00', 318, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18134, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.400884+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18135, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.385799+00', 325, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18136, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.550954+00', 278, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18137, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.371978+00', 463, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18138, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.715042+00', 134, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18139, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.424194+00', 446, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18140, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.493888+00', 402, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18141, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.651106+00', 257, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18142, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.585798+00', 325, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18143, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.758692+00', 181, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18144, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.704401+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18145, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.212033+00', 441, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18146, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.308081+00', 302, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18147, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.192059+00', 475, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18148, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.293358+00', 376, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18149, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.326652+00', 347, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18150, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.241479+00', 447, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18151, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.288472+00', 408, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18152, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.529435+00', 298, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18153, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.351211+00', 499, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18154, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.535936+00', 324, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18155, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.526128+00', 384, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18156, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.725814+00', 246, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18157, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.744514+00', 284, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18158, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.696595+00', 337, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18159, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.650078+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18160, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.694185+00', 418, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18161, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.245651+00', 127, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18162, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.249209+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18163, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.259366+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18164, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.363907+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18165, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.339321+00', 137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18166, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.42266+00', 111, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18167, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.476538+00', 90, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18168, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.358354+00', 218, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18169, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.42913+00', 154, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18170, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.46308+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18171, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.388671+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18172, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.482674+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18173, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.538541+00', 107, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18174, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.442286+00', 209, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18175, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.476322+00', 189, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18176, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.360805+00', 308, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18177, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.284793+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18178, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.305434+00', 145, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18179, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.341947+00', 120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18180, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.383438+00', 146, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18181, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.334869+00', 194, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18182, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.345255+00', 224, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18183, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.383391+00', 181, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18184, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.424802+00', 150, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18185, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.399495+00', 180, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18186, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.427273+00', 163, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18187, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.44533+00', 165, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18188, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.473023+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18189, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.440665+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18190, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.527843+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18191, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.455773+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18192, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.510618+00', 151, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18193, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.14036+00', 205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18194, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.140372+00', 389, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18195, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.176284+00', 361, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18196, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.104968+00', 432, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18197, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.117862+00', 507, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18198, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.489788+00', 160, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18199, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.167162+00', 541, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18200, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.162327+00', 553, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18201, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.494804+00', 240, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18202, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.425847+00', 350, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18203, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.640598+00', 178, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18204, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.252855+00', 588, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18205, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.424757+00', 445, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18206, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.430325+00', 456, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18207, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.59652+00', 299, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18208, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.507162+00', 406, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18209, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.271441+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18210, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.304318+00', 207, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18211, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.320885+00', 390, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18212, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.358219+00', 416, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18213, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.461283+00', 329, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18214, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.452373+00', 377, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18215, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.526384+00', 320, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18216, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.490066+00', 354, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18217, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.524155+00', 340, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18218, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.446378+00', 415, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18219, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.311948+00', 549, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18220, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.715536+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18221, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.700693+00', 236, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18222, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.72123+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18223, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.7644+00', 201, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18224, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.674654+00', 314, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18225, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.269944+00', 206, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18226, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.265709+00', 246, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18227, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.268619+00', 391, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18228, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.382037+00', 364, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18229, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.471191+00', 309, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18230, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.527982+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18231, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.350339+00', 470, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18232, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.540837+00', 299, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18233, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.548965+00', 305, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18234, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.252882+00', 615, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18235, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.633001+00', 260, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18236, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.570327+00', 343, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18237, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.705305+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18238, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.72696+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18239, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.734141+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18240, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.821556+00', 175, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18241, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.231493+00', 127, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18242, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.302386+00', 134, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18243, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.335509+00', 109, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18244, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.331514+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18245, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.301727+00', 181, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18246, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.336614+00', 152, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18247, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.381331+00', 139, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18248, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.415623+00', 117, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18249, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.407568+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18250, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.375393+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18251, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.506029+00', 77, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18252, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.521486+00', 65, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18253, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.475581+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18254, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.471707+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18255, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.502614+00', 154, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18256, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.544564+00', 141, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18257, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.19884+00', 67, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18258, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.270015+00', 83, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18259, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.245588+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18260, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.323522+00', 140, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18261, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.2502+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18262, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.275117+00', 197, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18263, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.243792+00', 238, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18264, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.239011+00', 252, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18265, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.353484+00', 176, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18266, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.377072+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18267, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.374994+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18268, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.412414+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18269, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.429394+00', 158, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18270, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.412792+00', 228, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18271, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.518285+00', 126, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18272, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.55113+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18273, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.027197+00', 34, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18274, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.146813+00', 125, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18275, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.182826+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18276, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.092657+00', 225, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18277, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.216806+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18278, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.245446+00', 116, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18279, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.263278+00', 108, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18280, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.28859+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18281, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.256268+00', 171, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18282, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.356974+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18283, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.291552+00', 190, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18284, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.294974+00', 190, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18285, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.25586+00', 228, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18286, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.273249+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18287, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.250019+00', 258, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18288, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.21223+00', 312, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18289, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:26.966548+00', 92, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18290, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:26.978144+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18291, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:26.968483+00', 239, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18292, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.09859+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18293, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.135284+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18294, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.030372+00', 258, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18295, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.203819+00', 113, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18296, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.108609+00', 218, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18297, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.084136+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18298, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.830235+00', 76, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18299, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.841463+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18300, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.846101+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18301, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.869173+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18302, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.827981+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18303, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.857192+00', 172, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18304, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.869038+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18305, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.656648+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18306, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.730522+00', 63, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18307, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.741009+00', 194, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18308, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.626867+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18309, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.700505+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18310, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.726568+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18311, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.861725+00', 165, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18312, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.701397+00', 328, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18313, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.855436+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18314, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:58.982232+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18315, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.197801+00', 345, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18316, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.006056+00', 577, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18317, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:58.988012+00', 601, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18318, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:58.974293+00', 622, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18319, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.449985+00', 230, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18320, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:58.98305+00', 715, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18321, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.586086+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18322, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.338404+00', 436, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18323, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.217971+00', 574, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18324, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.691796+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18325, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.615466+00', 355, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18326, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.885806+00', 106, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18327, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.639843+00', 351, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18328, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.809199+00', 257, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18329, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.811267+00', 278, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18330, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:28.9111+00', 123, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18331, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:28.96988+00', 218, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18332, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:28.979037+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18333, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.039182+00', 238, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18334, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.018021+00', 269, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18335, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.010126+00', 317, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18336, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:28.967938+00', 399, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18337, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.064726+00', 297, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18338, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.091314+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18339, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.210881+00', 227, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18340, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.270553+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18341, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.168227+00', 265, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18342, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.166204+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18343, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.296235+00', 167, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18344, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.218448+00', 245, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18345, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.253946+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18346, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:58.88237+00', 116, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18347, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:58.903912+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18348, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.016453+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18349, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:58.990677+00', 159, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18350, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:58.882691+00', 277, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18351, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:58.994326+00', 181, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18352, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.126221+00', 83, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18353, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.04155+00', 170, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18354, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.018112+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18355, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.135885+00', 94, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18356, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.119783+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18357, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.055103+00', 198, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18358, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.100016+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18359, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.119816+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18360, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.094314+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18361, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.069992+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18362, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.091357+00', 74, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18363, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.101127+00', 81, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18364, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.105483+00', 80, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18365, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.123812+00', 78, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18366, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.134329+00', 69, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18367, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.121411+00', 86, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18368, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.133986+00', 88, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18369, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.821884+00', 76, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18370, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.937931+00', 229, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18371, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.874715+00', 309, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18372, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.99218+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18373, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.067292+00', 137, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18374, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.993296+00', 229, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18375, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.024515+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18376, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.8832+00', 351, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18377, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.936+00', 301, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18378, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.013203+00', 233, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18379, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.068334+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18380, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.033242+00', 256, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18381, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.069172+00', 247, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18382, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.118748+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18383, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.046589+00', 282, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18384, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.229647+00', 148, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18385, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.909719+00', 65, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18386, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.927541+00', 73, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18387, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.946721+00', 184, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18388, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.162067+00', 53, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18389, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.947958+00', 285, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18390, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.944133+00', 323, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18391, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.945133+00', 328, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18392, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.940422+00', 346, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18393, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.21905+00', 75, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18394, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.173757+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18395, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.217906+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18396, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.104122+00', 215, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18397, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.04664+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18398, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.118494+00', 218, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18399, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.199267+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18400, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.204868+00', 149, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18401, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.165322+00', 66, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18402, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.170116+00', 94, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18403, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.188932+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18404, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.222596+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18405, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.146085+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18406, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.247106+00', 96, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18407, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.27757+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18408, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.741344+00', 74, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18409, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.710043+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18410, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.760925+00', 70, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18411, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.736874+00', 114, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18412, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.792+00', 68, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18413, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.79405+00', 77, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18414, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.765783+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18415, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.557544+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18416, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.536059+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18417, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.555266+00', 218, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18418, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.458533+00', 345, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18419, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.598876+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18420, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.596978+00', 227, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18421, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.642165+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18422, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.623559+00', 234, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18423, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.685268+00', 427, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18424, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.086933+00', 98, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18425, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.930137+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18426, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.268962+00', 179, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18427, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.195826+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18428, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.195645+00', 339, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18429, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.377341+00', 210, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18430, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.232284+00', 424, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18431, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.22745+00', 469, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18432, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.4484+00', 320, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18433, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.058719+00', 413, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18434, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.198538+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18435, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.368165+00', 326, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18436, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.350508+00', 402, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18437, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.404462+00', 442, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18438, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.462554+00', 463, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18439, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.634496+00', 358, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18440, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.493313+00', 597, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18441, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.652593+00', 453, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18442, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.46945+00', 642, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18443, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.609507+00', 517, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18444, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.494861+00', 657, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18445, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.521803+00', 631, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18446, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.887119+00', 282, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18447, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.830517+00', 362, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18448, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.521746+00', 683, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18449, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.341804+00', 57, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18450, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.406893+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18451, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.391972+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18452, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.396842+00', 170, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18453, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.446767+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18454, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.502004+00', 100, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18455, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.442362+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18456, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.436859+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18457, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.399568+00', 238, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18458, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.396293+00', 251, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18459, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.446307+00', 205, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18460, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.493675+00', 173, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18461, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.484694+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18462, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.441081+00', 238, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18463, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.353815+00', 328, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18464, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.520463+00', 169, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18465, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.274673+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18466, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.405794+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18467, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.502173+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18468, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.448162+00', 247, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18469, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.384418+00', 328, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18470, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.434035+00', 319, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18471, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.631286+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18472, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.415956+00', 437, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18473, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.457589+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18474, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.52317+00', 181, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18475, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.590077+00', 116, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18476, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.534082+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18477, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.564729+00', 238, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18478, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.639364+00', 188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18479, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.641788+00', 207, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18480, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.677031+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18481, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.264109+00', 126, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18482, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.302412+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18483, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.275622+00', 218, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18484, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.31819+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18485, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.416085+00', 106, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18486, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.28701+00', 253, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18487, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.432409+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18488, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.452412+00', 180, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18489, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.43433+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18490, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.426254+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18491, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.530802+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18492, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.530261+00', 177, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18493, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.355318+00', 364, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18494, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.407092+00', 314, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18495, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.532832+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18496, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.566912+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18497, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.108176+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18498, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.078978+00', 147, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18499, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.072066+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18500, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.148705+00', 137, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18501, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.173416+00', 226, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18502, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.188571+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18503, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.206356+00', 222, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18504, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.169842+00', 277, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18505, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.20423+00', 242, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18506, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.71651+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18507, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.789333+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18508, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.777795+00', 136, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18509, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.792172+00', 138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18510, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.829536+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18511, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.817588+00', 135, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18512, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.779491+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18513, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.298841+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18514, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.322098+00', 108, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18515, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.336117+00', 227, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18516, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.332202+00', 314, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18517, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.472983+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18518, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.355306+00', 325, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18519, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.382163+00', 318, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18520, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.492835+00', 228, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18521, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.506059+00', 235, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18522, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.309525+00', 435, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18523, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.524478+00', 262, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18524, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.424116+00', 386, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18525, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.41995+00', 426, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18526, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.663186+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18527, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.525262+00', 328, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18528, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.759469+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18529, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.33413+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18530, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.333916+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18531, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.37514+00', 268, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18532, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.287826+00', 1442, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18533, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.495266+00', 1352, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18534, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.498085+00', 1347, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18535, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.561365+00', 1284, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18536, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.503922+00', 1345, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18537, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.516002+00', 1385, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18538, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.100657+00', 236, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18539, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.113016+00', 280, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18540, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.099205+00', 321, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18541, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.16228+00', 267, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18542, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.321073+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18543, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.356761+00', 168, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18544, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.379346+00', 145, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18545, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.439602+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18546, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.434619+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18547, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.467969+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18548, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.378115+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18549, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.420725+00', 210, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18550, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.46078+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18551, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.370888+00', 285, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18552, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.509603+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18553, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.521219+00', 172, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18554, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.267168+00', 261, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18555, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.506239+00', 95, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18556, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.52141+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18557, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.363468+00', 268, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18558, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.536199+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18559, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.336587+00', 342, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18560, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.538932+00', 177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18561, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:58.943224+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18562, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:58.960023+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18563, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:58.930465+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18564, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:58.959731+00', 193, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18565, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:58.982716+00', 192, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18566, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:58.991467+00', 184, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18567, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.054991+00', 141, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18568, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.043647+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18569, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.057343+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18570, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.133214+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18571, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.113605+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18572, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.162263+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18573, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.120071+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18574, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.166019+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18575, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.187904+00', 104, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18576, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.162259+00', 137, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18577, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.388431+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18578, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.41819+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18579, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.440813+00', 78, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18580, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.402243+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18581, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.403116+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18582, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.43669+00', 110, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18583, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.444808+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18584, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.446688+00', 121, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18585, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.456813+00', 119, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18586, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.23095+00', 124, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18587, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.16296+00', 218, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18588, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.254595+00', 217, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18589, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.224348+00', 279, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18590, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.324257+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18591, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.300402+00', 223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18592, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.302615+00', 239, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18593, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:28.962481+00', 202, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18594, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:28.969533+00', 354, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18595, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.087589+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18596, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.027239+00', 321, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18597, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.057413+00', 315, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18598, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:28.871659+00', 507, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18599, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.263952+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18600, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.012734+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18601, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.105961+00', 343, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18602, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.066436+00', 365, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18603, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.050142+00', 419, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18604, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.359988+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18605, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.104785+00', 397, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18606, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.070547+00', 443, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18607, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.1774+00', 337, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18608, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.38634+00', 160, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18609, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.511648+00', 293, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18610, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.564121+00', 272, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18611, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.634587+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18612, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.596032+00', 256, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18613, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.578595+00', 387, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18614, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.490633+00', 475, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18615, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.821251+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18616, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.694824+00', 385, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18617, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.524897+00', 568, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18618, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.576918+00', 539, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18619, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.743486+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18620, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.81181+00', 358, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18621, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.857983+00', 380, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18622, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.784581+00', 456, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18623, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.985288+00', 291, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18624, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.018941+00', 276, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18625, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.333602+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18626, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.452489+00', 188, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18627, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.25232+00', 413, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18628, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.437085+00', 240, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18629, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.45202+00', 233, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18630, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.575962+00', 163, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18631, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.465134+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18632, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.422194+00', 407, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18633, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.743364+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18634, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.601436+00', 282, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18635, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.931633+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18636, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.95682+00', 69, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18637, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.970512+00', 68, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18638, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.974725+00', 75, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18639, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.01149+00', 55, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18640, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.392136+00', 72, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18641, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.355628+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18642, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.396571+00', 133, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18643, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.334139+00', 235, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18644, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.431466+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18645, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.539767+00', 177, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18646, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.420864+00', 321, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18647, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.431126+00', 349, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18648, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.609814+00', 263, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18649, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.792713+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18650, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.782973+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18651, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.797192+00', 124, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18652, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.797699+00', 140, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18653, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.575013+00', 394, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18654, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.815686+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18655, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.914659+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18656, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.932286+00', 94, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18657, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.678194+00', 297, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18658, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.490862+00', 537, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18659, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.751628+00', 290, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18660, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.892483+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18661, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.796919+00', 346, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18662, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.69377+00', 466, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18663, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.615697+00', 561, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18664, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.828855+00', 432, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18665, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.70707+00', 543, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18666, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.647577+00', 633, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18667, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.989598+00', 310, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18668, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.824695+00', 504, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18669, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.955239+00', 420, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18670, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.092952+00', 332, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18671, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.272439+00', 252, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18672, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.27129+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18673, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.685409+00', 204, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18674, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.627325+00', 281, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18675, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.709382+00', 204, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18676, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.785976+00', 174, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18677, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.720746+00', 255, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18678, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.884443+00', 119, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18679, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.865691+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18680, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.720189+00', 352, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18681, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.820205+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18682, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.738396+00', 420, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18683, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.882731+00', 278, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18684, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.837949+00', 349, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18685, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.917196+00', 270, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18686, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.929592+00', 262, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18687, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.779053+00', 433, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18688, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.708527+00', 519, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18689, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.279648+00', 202, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18690, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.06869+00', 530, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18691, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.220287+00', 378, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18692, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.372339+00', 290, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18693, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.486215+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18694, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.463845+00', 267, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18695, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.445165+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18696, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.207299+00', 539, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18697, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.30409+00', 450, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18698, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.495718+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18699, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.481473+00', 340, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18700, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.339189+00', 552, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18701, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.489413+00', 423, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18702, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.576391+00', 357, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18703, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.32894+00', 628, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18704, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.842239+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18705, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.148967+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18706, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.177927+00', 147, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18707, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.218997+00', 178, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18708, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.217518+00', 200, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18709, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.250241+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18710, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.191405+00', 249, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18711, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.27843+00', 181, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18712, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.177777+00', 283, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18713, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.354879+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18714, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.358029+00', 108, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18715, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.321349+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18716, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.354863+00', 140, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18717, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.315613+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18718, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.383906+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18719, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.284157+00', 237, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18720, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.346003+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18721, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.152776+00', 202, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18722, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.169562+00', 250, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18723, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.202781+00', 238, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18724, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.221366+00', 229, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18725, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.258151+00', 250, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18726, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.269074+00', 287, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18727, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.361481+00', 253, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18728, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.390857+00', 224, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18729, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.335967+00', 305, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18730, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.503476+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18731, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.408169+00', 289, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18732, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.334591+00', 393, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18733, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.351114+00', 399, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18734, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.310747+00', 449, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18735, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.57504+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18736, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.36891+00', 430, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18737, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.805035+00', 273, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18738, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.942188+00', 157, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18739, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.796555+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18740, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.786958+00', 366, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18741, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.075527+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18742, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.849751+00', 421, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18743, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.81426+00', 456, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18744, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.166747+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18745, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.98103+00', 338, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18746, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.21341+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18747, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.285326+00', 113, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18748, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.06425+00', 339, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18749, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.271204+00', 154, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18750, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.214404+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18751, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:59.960448+00', 559, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18752, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.268317+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18753, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.188099+00', 124, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18754, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.207909+00', 178, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18755, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.207589+00', 185, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18756, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.235071+00', 223, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18757, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.208004+00', 259, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18758, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.345614+00', 164, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18759, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.298158+00', 228, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18760, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.343608+00', 221, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18761, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.376666+00', 209, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18762, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.395096+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18763, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.431205+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18764, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.490028+00', 203, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18765, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.344203+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18766, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.474069+00', 232, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18767, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.514578+00', 199, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18768, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.406511+00', 328, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18769, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.698153+00', 112, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18770, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.714324+00', 184, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18771, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.779248+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18772, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.807806+00', 235, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18773, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.783802+00', 264, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18774, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.882487+00', 209, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18775, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.647012+00', 479, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18776, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.70041+00', 475, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18777, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.686902+00', 529, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18778, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.992227+00', 241, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18779, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.881311+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18780, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.00788+00', 246, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18781, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.969288+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18782, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.980445+00', 286, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18783, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.11368+00', 160, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18784, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.11457+00', 174, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18785, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.273988+00', 116, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18786, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.246911+00', 377, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18787, X'ab71bf7ea6bf1356e239ec67422b13d94eb3243f9c736481f59fe1aa95f78342', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.186484+00', 486, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18788, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.362178+00', 353, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18789, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.292072+00', 458, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18790, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.329777+00', 427, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18791, X'416256e99e691e0253750b1e10337a37de4a1db6475d678366232f508f996043', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.449747+00', 437, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18792, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.711777+00', 254, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18793, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.366033+00', 614, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18794, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.428974+00', 557, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18795, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.539994+00', 474, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18796, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.507115+00', 507, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18797, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.692133+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18798, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.526785+00', 590, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18799, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.774456+00', 350, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18800, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.774158+00', 360, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18801, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.200355+00', 114, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(18802, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.172707+00', 175, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(18803, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.265604+00', 94, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(18804, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.172578+00', 191, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(18805, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.229148+00', 150, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(18806, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.497535+00', 87, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(18807, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.486053+00', 134, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(18808, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.167001+00', 60, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(18809, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.113736+00', 128, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(18810, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.10303+00', 154, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(18811, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.224266+00', 85, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(18812, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.142248+00', 182, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(18813, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.50266+00', 211, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(18814, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.501699+00', 309, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(18815, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.514702+00', 371, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(18816, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.577922+00', 365, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(18817, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.435964+00', 83, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(18818, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.432134+00', 107, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18819, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.482038+00', 87, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(18820, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.502587+00', 103, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(18821, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.579401+00', 49, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(18822, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.750968+00', 60, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(18823, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.732123+00', 79, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(18824, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.316279+00', 88, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18825, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.371589+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18826, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.416536+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18827, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.351328+00', 158, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18828, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.342866+00', 186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18829, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.363213+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18830, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.362122+00', 187, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18831, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:55.816373+00', 228, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18832, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:55.83683+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18833, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.045689+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18834, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:55.829791+00', 378, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18835, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:55.981758+00', 239, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18836, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.018407+00', 216, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18837, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:55.980719+00', 261, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18838, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:55.993011+00', 265, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18839, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.050347+00', 217, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18840, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.112444+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18841, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.100426+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18842, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.11262+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18843, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.276029+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18844, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.201128+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18845, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.08009+00', 316, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18846, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.117586+00', 292, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18847, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.348228+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18848, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.449213+00', 328, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18849, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.554101+00', 306, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18850, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.489173+00', 418, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18851, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.723617+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18852, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.622848+00', 450, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18853, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.469183+00', 602, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18854, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.64741+00', 430, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18855, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.53717+00', 545, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18856, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.498327+00', 604, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18857, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.81228+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18858, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.718238+00', 413, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18859, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.010761+00', 131, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18860, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.708508+00', 437, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18861, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.41205+00', 767, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18862, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.571135+00', 629, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18863, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.420886+00', 63, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18864, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.369054+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18865, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.460317+00', 50, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18866, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.440422+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18867, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.450004+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18868, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.473909+00', 71, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18869, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.47363+00', 71, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18870, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.605894+00', 76, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18871, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.605757+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18872, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.612106+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18873, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.655996+00', 70, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18874, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.691695+00', 56, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18875, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.702131+00', 55, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18876, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.665444+00', 87, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18877, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.368183+00', 101, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18878, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.376333+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18879, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.397109+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18880, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.432895+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18881, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.426858+00', 119, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18882, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.417238+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18883, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.406012+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18884, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.455649+00', 117, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18885, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.450609+00', 127, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18886, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.709633+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18887, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.741227+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18888, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.76443+00', 90, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18889, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.780329+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18890, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.807378+00', 87, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18891, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.764482+00', 130, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18892, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.814341+00', 103, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18893, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.790745+00', 128, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18894, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.7866+00', 134, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18895, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.561461+00', 62, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(18896, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.569371+00', 60, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(18897, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.566785+00', 84, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(18898, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.581109+00', 71, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18899, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.577852+00', 88, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(18900, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.867058+00', 47, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(18901, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.867007+00', 69, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(18902, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.871739+00', 91, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(18903, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.871784+00', 148, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(18904, X'4214a9c178449f7891a888c635418897a09f57540bfb0155d57a04ad7465960a', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:54.804986+00', 68, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(18905, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:55.984455+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18906, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.022423+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18907, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.082379+00', 197, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18908, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.073354+00', 273, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18909, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.155387+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18910, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.145408+00', 248, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18911, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.247424+00', 295, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18912, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.204088+00', 345, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18913, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.293868+00', 333, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18914, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.271919+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18915, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.478121+00', 487, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18916, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.405054+00', 568, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18917, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.517257+00', 458, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18918, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.463978+00', 523, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18919, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.485762+00', 507, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18920, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.511158+00', 519, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18921, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.379036+00', 129, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(18922, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.391067+00', 161, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(18923, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.399724+00', 289, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(18924, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.44179+00', 301, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(18925, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.41388+00', 344, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(18926, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.758927+00', 83, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(18927, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.758249+00', 142, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(18928, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.301367+00', 92, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(18929, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.323098+00', 124, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(18930, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.282975+00', 215, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(18931, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.344091+00', 227, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(18932, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.39665+00', 258, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(18933, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.628819+00', 145, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(18934, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.733782+00', 150, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(18935, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.732606+00', 150, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(18936, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.738209+00', 244, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(18937, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.655514+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18938, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.702278+00', 200, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18939, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.932009+00', 161, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18940, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.344458+00', 804, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18941, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.690297+00', 563, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18942, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.704715+00', 661, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18943, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.654865+00', 733, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18944, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.945395+00', 627, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18945, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.096898+00', 510, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18946, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.08859+00', 577, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18947, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.21327+00', 495, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18948, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.134951+00', 603, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18949, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.261222+00', 607, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18950, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.395984+00', 493, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18951, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.563192+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18952, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.408404+00', 586, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18953, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.060553+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18954, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.04005+00', 162, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18955, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.081876+00', 127, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18956, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.172816+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18957, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.173444+00', 153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18958, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.102111+00', 225, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18959, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.139091+00', 289, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18960, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.373536+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18961, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.355+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18962, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.502729+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18963, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.471091+00', 176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18964, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.464136+00', 191, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18965, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.546743+00', 155, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18966, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.538399+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18967, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.020954+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18968, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.056075+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18969, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.119263+00', 63, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18970, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.131109+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18971, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.166046+00', 93, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18972, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.047703+00', 243, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18973, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.02996+00', 388, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18974, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.313764+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18975, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.411667+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(18976, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.425386+00', 92, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18977, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.306792+00', 212, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18978, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.458168+00', 135, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18979, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.398176+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(18980, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.304342+00', 299, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18981, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.534836+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(18982, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.562326+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18983, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.705644+00', 111, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18984, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.752847+00', 83, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18985, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.785392+00', 183, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(18986, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.762332+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(18987, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.493361+00', 572, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(18988, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.857804+00', 266, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(18989, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.778381+00', 396, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(18990, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.781868+00', 395, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(18991, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.904658+00', 385, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(18992, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.775488+00', 617, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(18993, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.908025+00', 523, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(18994, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.163505+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(18995, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.978299+00', 539, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(18996, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.16394+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(18997, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.267445+00', 292, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(18998, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.021382+00', 569, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(18999, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.101601+00', 514, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19000, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.271352+00', 386, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19001, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.423554+00', 120, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19002, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.35361+00', 249, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19003, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.463312+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19004, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.433504+00', 316, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19005, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.468306+00', 294, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19006, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.584393+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19007, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.649274+00', 186, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19008, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.648409+00', 204, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19009, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.651565+00', 261, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19010, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.885111+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19011, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.986125+00', 160, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19012, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.908614+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19013, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.119329+00', 215, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19014, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.157648+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19015, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.157919+00', 231, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19016, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.194043+00', 268, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19017, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.466482+00', 166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19018, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.226303+00', 425, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19019, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.433416+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19020, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.525655+00', 182, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19021, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.519919+00', 189, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19022, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.519228+00', 206, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19023, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.514196+00', 283, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19024, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.303523+00', 516, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19025, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.632177+00', 197, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19026, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.797035+00', 182, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19027, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.920853+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19028, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.878628+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19029, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.956733+00', 158, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19030, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.951323+00', 178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19031, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.93822+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19032, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:25.012927+00', 209, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19033, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.181763+00', 62, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19034, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.175824+00', 156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19035, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.163041+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19036, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.152881+00', 212, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19037, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.155194+00', 249, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19038, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.18328+00', 319, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19039, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.201339+00', 319, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19040, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.468576+00', 63, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19041, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.612117+00', 81, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19042, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.439154+00', 407, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19043, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.706161+00', 170, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19044, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.673862+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19045, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.682132+00', 233, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19046, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.705112+00', 332, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19047, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.689788+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19048, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.742574+00', 366, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19049, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.435194+00', 329, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19050, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.468615+00', 422, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19051, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.830898+00', 115, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19052, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.694949+00', 517, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19053, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.588375+00', 645, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19054, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.521418+00', 726, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19055, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.708152+00', 554, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19056, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.623534+00', 643, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19057, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.516407+00', 853, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19058, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.877992+00', 519, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19059, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.13355+00', 318, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19060, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.457974+00', 1013, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19061, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.878267+00', 625, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19062, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.539766+00', 953, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19063, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.839813+00', 684, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19064, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.651197+00', 892, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19065, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:04.994836+00', 103, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19066, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.001753+00', 101, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19067, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.033623+00', 101, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19068, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.007175+00', 138, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19069, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.044183+00', 108, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19070, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.03817+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19071, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.038937+00', 146, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19072, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.215427+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19073, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.232427+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19074, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.319112+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19075, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.363871+00', 126, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19076, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.317685+00', 300, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19077, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.327039+00', 282, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19078, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.32914+00', 273, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19079, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.188647+00', 269, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19080, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.08616+00', 754, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19081, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.161252+00', 778, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19082, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.682484+00', 278, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19083, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.743654+00', 239, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19084, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.078711+00', 934, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19085, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.857388+00', 305, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19086, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.78264+00', 473, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19087, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.800868+00', 608, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19088, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.230295+00', 392, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19089, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.405086+00', 414, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19090, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.404516+00', 487, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19091, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.315844+00', 628, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19092, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.020524+00', 987, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19093, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.894111+00', 214, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19094, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.813717+00', 428, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19095, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.628849+00', 618, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19096, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.948359+00', 367, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19097, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.362338+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19098, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.346175+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19099, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.35052+00', 229, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19100, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.357051+00', 242, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19101, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.319394+00', 343, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19102, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.343511+00', 323, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19103, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.505999+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19104, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.512435+00', 213, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19105, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.537979+00', 189, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19106, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.350843+00', 383, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19107, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.487002+00', 259, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19108, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.507065+00', 266, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19109, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.543343+00', 234, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19110, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.534393+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19111, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.411573+00', 380, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19112, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.470181+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19113, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.134187+00', 90, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19114, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.121035+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19115, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.113248+00', 165, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19116, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.192183+00', 124, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19117, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.205127+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19118, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.185286+00', 158, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19119, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.200348+00', 252, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19120, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.717349+00', 165, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19121, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.747203+00', 160, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19122, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.80138+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19123, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.776935+00', 163, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19124, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.809892+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19125, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.847973+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19126, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.837719+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19127, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.825261+00', 177, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19128, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.808215+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19129, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.187548+00', 69, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19130, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.188529+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19131, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.211511+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19132, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.221762+00', 221, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19133, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.174564+00', 274, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19134, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.324821+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19135, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.348831+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19136, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.214265+00', 267, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19137, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.220568+00', 269, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19138, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.313535+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19139, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.377756+00', 162, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19140, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.484466+00', 61, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19141, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.433776+00', 128, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19142, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.425336+00', 151, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19143, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.522015+00', 54, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19144, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.461816+00', 127, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19145, X'268b22844eb5842ffac9ec840bbfeef7ab67c78deabe535f414867561331ccd9', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:15.638416+00', 41, 2, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 2, FALSE), +(19146, X'e7429abd93b9f1f27fbb4525b21fc747baa00eaac6922340c797871f41ec718f', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:15.648322+00', 49, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 2, FALSE), +(19147, X'ba1dcd4f31302a3d232b0f00e8f4c5b9b5841961566bc647c8e789a4b64d9637', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:15.639501+00', 58, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 2, FALSE), +(19148, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.332218+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19149, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.352997+00', 122, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19150, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.332292+00', 201, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19151, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.313718+00', 245, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19152, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.352963+00', 239, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19153, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.455366+00', 180, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19154, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.472001+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19155, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.414106+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19156, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.487342+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19157, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.447795+00', 285, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19158, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.432488+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19159, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.578089+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19160, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.54648+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19161, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.539945+00', 224, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19162, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.532198+00', 239, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19163, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.462736+00', 317, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19164, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.046957+00', 49, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19165, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.068383+00', 62, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19166, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.060368+00', 105, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19167, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.126733+00', 54, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19168, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.117628+00', 66, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19169, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.108885+00', 81, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19170, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.113027+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19171, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.862055+00', 73, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19172, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.84636+00', 113, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19173, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.871046+00', 93, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19174, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.848582+00', 119, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19175, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.905649+00', 74, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19176, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.25642+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19177, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.290919+00', 118, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19178, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.339515+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19179, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.363608+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19180, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.338154+00', 190, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19181, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.350238+00', 220, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19182, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.365292+00', 212, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19183, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.435779+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19184, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.323861+00', 287, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19185, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.488344+00', 136, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19186, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.41953+00', 215, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19187, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.810795+00', 133, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19188, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.808259+00', 140, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19189, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.814346+00', 149, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19190, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.829813+00', 206, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19191, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.768193+00', 280, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19192, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.052673+00', 166, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19193, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.202645+00', 158, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19194, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.198896+00', 304, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19195, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.115736+00', 492, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19196, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.201248+00', 183, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19197, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.265905+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19198, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.222493+00', 336, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19199, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.26411+00', 307, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19200, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.433795+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19201, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.44204+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19202, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.372554+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19203, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.521473+00', 171, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19204, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.520803+00', 194, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19205, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.325156+00', 421, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19206, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.514017+00', 286, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19207, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.479507+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19208, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.590619+00', 289, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19209, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.491601+00', 382, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19210, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.563143+00', 364, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19211, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.523662+00', 453, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19212, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.590904+00', 71, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19213, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.583343+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19214, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.608177+00', 85, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19215, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.655955+00', 75, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19216, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.622425+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19217, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.638073+00', 107, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19218, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.637759+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19219, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.652287+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19220, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.639655+00', 128, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19221, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:15.904441+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19222, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:15.876839+00', 199, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19223, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:15.928417+00', 151, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19224, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:15.867918+00', 249, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19225, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:15.900456+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19226, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:15.965967+00', 188, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19227, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:15.999977+00', 163, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19228, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.320493+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19229, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.30991+00', 527, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19230, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.387529+00', 499, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19231, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.411006+00', 521, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19232, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.49688+00', 472, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19233, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.422703+00', 551, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19234, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.565138+00', 444, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19235, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.480642+00', 531, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19236, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.633559+00', 381, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19237, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.915846+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19238, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.061962+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19239, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.276856+00', 196, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19240, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.339437+00', 243, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19241, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.342073+00', 237, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19242, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.361893+00', 245, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19243, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.418391+00', 221, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19244, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.455668+00', 256, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19245, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.378122+00', 348, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19246, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.340333+00', 394, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19247, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.60543+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19248, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.613503+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19249, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.500965+00', 340, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19250, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.603589+00', 311, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19251, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.494377+00', 428, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19252, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.599008+00', 338, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19253, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.882371+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19254, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.033672+00', 228, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19255, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.135562+00', 125, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19256, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.996326+00', 323, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19257, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.186965+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19258, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.125494+00', 273, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19259, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.231835+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19260, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.571042+00', 459, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19261, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.632354+00', 405, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19262, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.535523+00', 542, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19263, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.788966+00', 312, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19264, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.534922+00', 647, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19265, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.771621+00', 454, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19266, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.783847+00', 518, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19267, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.850094+00', 492, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19268, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.264294+00', 321, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19269, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:21.818128+00', 707, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19270, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.462095+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19271, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.387735+00', 323, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19272, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.549174+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19273, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.462759+00', 319, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19274, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.538337+00', 244, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19275, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.603535+00', 187, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19276, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.519948+00', 462, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19277, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.644596+00', 349, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19278, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.566027+00', 466, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19279, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.671169+00', 358, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19280, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.573714+00', 454, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19281, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.566489+00', 458, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19282, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.698427+00', 356, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19283, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.567875+00', 519, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19284, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.80621+00', 284, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19285, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.287333+00', 56, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19286, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.315606+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19287, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.66866+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19288, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.581242+00', 271, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19289, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.605583+00', 255, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19290, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.65172+00', 231, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19291, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.832169+00', 184, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19292, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.877147+00', 159, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19293, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.510216+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19294, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.544948+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19295, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.575401+00', 197, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19296, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.480953+00', 312, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19297, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.650491+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19298, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.777957+00', 78, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19299, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.684599+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19300, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.696315+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19301, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.762817+00', 118, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19302, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.760636+00', 146, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19303, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.790029+00', 151, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19304, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.747643+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19305, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.756935+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19306, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.756978+00', 235, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19307, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.76577+00', 242, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19308, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.748249+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19309, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.898739+00', 60, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19310, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.883301+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19311, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.883782+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19312, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.835646+00', 210, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19313, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.89551+00', 156, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19314, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.886161+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19315, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.944409+00', 134, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19316, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.928403+00', 166, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19317, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.938495+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19318, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.27182+00', 60, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19319, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.298565+00', 100, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19320, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.272562+00', 152, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19321, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.278017+00', 169, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19322, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.359088+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19323, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.311912+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19324, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.312062+00', 214, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19325, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.504804+00', 151, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19326, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.53029+00', 127, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19327, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.527442+00', 134, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19328, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.862887+00', 100, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19329, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:59.027357+00', 114, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19330, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.891439+00', 269, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19331, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.898169+00', 313, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19332, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.26964+00', 89, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19333, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.366335+00', 130, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19334, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.441151+00', 256, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19335, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.664273+00', 175, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19336, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.722265+00', 136, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19337, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.469058+00', 416, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19338, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.76953+00', 135, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19339, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.68741+00', 254, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19340, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.763334+00', 306, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19341, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.09227+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19342, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.112171+00', 339, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19343, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.122473+00', 338, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19344, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.102183+00', 390, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19345, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.112171+00', 391, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19346, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.103969+00', 435, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19347, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.132601+00', 503, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19348, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.099561+00', 536, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19349, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.138276+00', 500, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19350, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:29.929132+00', 129, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19351, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:29.960843+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19352, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:29.951175+00', 162, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19353, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.000235+00', 166, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19354, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.038631+00', 143, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19355, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:29.996876+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19356, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:29.962399+00', 258, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19357, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.678657+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19358, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.678411+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19359, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.752388+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19360, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.734285+00', 183, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19361, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.762443+00', 171, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19362, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.818739+00', 121, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19363, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.739626+00', 210, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19364, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.658528+00', 322, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19365, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.768626+00', 265, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19366, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.412652+00', 50, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19367, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.428481+00', 65, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19368, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.432803+00', 73, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19369, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.406163+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19370, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.459144+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19371, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.471992+00', 75, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19372, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.425142+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19373, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.367323+00', 105, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19374, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.307924+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19375, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.33177+00', 177, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19376, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.342624+00', 210, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19377, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.501104+00', 79, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19378, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.47216+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19379, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.515835+00', 91, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19380, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.663348+00', 70, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19381, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.817149+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19382, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.884124+00', 195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19383, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.09888+00', 103, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19384, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.993958+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19385, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.103171+00', 249, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19386, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.977414+00', 465, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19387, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.43737+00', 542, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19388, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.780101+00', 360, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19389, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.770189+00', 379, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19390, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.749137+00', 480, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19391, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.765859+00', 516, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19392, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.020036+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19393, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.833755+00', 469, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19394, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.901911+00', 393, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19395, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.774173+00', 550, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19396, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.502644+00', 318, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19397, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.492433+00', 347, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19398, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.648589+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19399, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.678429+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19400, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.53828+00', 348, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19401, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.694963+00', 228, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19402, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.489988+00', 414, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19403, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.467891+00', 464, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19404, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.873157+00', 100, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19405, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.720745+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19406, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.816037+00', 126, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19407, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.763805+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19408, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.831018+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19409, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.763525+00', 207, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19410, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.804196+00', 182, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19411, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.817465+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19412, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.558544+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19413, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.541172+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19414, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.522839+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19415, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.666798+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19416, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.680115+00', 108, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19417, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.691781+00', 102, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19418, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.547507+00', 274, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19419, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.661347+00', 187, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19420, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.740072+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19421, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.839348+00', 42, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19422, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.831701+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19423, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.879239+00', 42, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19424, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.877183+00', 64, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19425, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.877216+00', 71, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19426, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.846266+00', 106, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19427, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.886376+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19428, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.982801+00', 37, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19429, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.981337+00', 39, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19430, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.133131+00', 40, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19431, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.136174+00', 46, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19432, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.132938+00', 63, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19433, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.151123+00', 68, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19434, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.227419+00', 46, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19435, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.479968+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19436, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.499076+00', 192, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19437, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.611055+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19438, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.537924+00', 435, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19439, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.615554+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19440, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.718076+00', 337, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19441, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.890422+00', 257, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19442, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.026532+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19443, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.777993+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19444, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.012299+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19445, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.949296+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19446, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.823834+00', 353, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19447, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.693683+00', 143, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19448, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.735149+00', 108, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19449, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.705685+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19450, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.766908+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19451, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.725985+00', 182, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19452, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.799034+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19453, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:07.992251+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19454, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.058822+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19455, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.097182+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19456, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.032054+00', 145, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19457, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.110337+00', 81, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19458, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.052611+00', 148, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19459, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.083191+00', 125, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19460, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.134161+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19461, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.116635+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19462, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.282559+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19463, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.45873+00', 151, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19464, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.426193+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19465, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.491274+00', 201, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19466, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.446176+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19467, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.427154+00', 282, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19468, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.624251+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19469, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.572374+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19470, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.578241+00', 207, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19471, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.935829+00', 54, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19472, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.927587+00', 119, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19473, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.974437+00', 69, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19474, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.908553+00', 164, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19475, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.001421+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19476, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.974334+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19477, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.025613+00', 96, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19478, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.141494+00', 70, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19479, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.234302+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19480, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.295504+00', 123, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19481, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.27878+00', 156, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19482, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.301801+00', 165, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19483, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.280891+00', 217, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19484, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.290313+00', 212, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19485, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.430271+00', 339, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19486, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.647835+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19487, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.533347+00', 484, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19488, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.66214+00', 595, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(19489, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.66214+00', 583, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19490, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.758395+00', 550, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(19491, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.635968+00', 735, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19492, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.508266+00', 866, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(19493, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.635968+00', 748, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(19494, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:02.756754+00', 957, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19495, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:02.099912+00', 1742, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19496, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:02.509282+00', 1348, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19497, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.805531+00', 232, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19498, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.653495+00', 708, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19499, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.9241+00', 597, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19500, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:02.699514+00', 1994, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19501, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.592835+00', 1240, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19502, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.093804+00', 775, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19503, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.899806+00', 1020, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19504, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.412314+00', 532, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19505, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.90068+00', 1073, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19506, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.125307+00', 937, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19507, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.187175+00', 908, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19508, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.446874+00', 744, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19509, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.881384+00', 334, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19510, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.030128+00', 347, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19511, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.958815+00', 1467, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19512, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.043258+00', 465, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19513, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.357145+00', 251, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19514, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.432938+00', 208, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19515, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.299741+00', 360, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19516, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.168788+00', 706, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19517, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.439981+00', 534, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19518, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.940736+00', 146, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19519, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.318231+00', 134, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19520, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.097664+00', 547, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19521, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.380558+00', 291, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19522, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.352325+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19523, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.458784+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19524, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.477554+00', 274, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19525, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.357955+00', 478, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19526, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.424299+00', 426, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19527, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.468062+00', 476, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19528, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.875844+00', 180, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19529, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.995068+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19530, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.104812+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19531, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.075794+00', 264, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19532, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.161132+00', 265, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19533, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.138553+00', 293, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19534, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.31284+00', 169, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19535, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.16989+00', 319, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19536, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.144286+00', 389, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19537, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.368816+00', 182, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19538, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.411805+00', 156, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19539, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.423452+00', 168, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19540, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.226506+00', 367, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19541, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.279706+00', 333, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19542, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.374897+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19543, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.391635+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19544, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.674066+00', 43, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19545, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.662106+00', 88, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19546, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.638245+00', 135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19547, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.7068+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19548, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.728633+00', 63, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19549, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.762487+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19550, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.848051+00', 36, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19551, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:29.90993+00', 67, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19552, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:29.93115+00', 79, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19553, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:29.935903+00', 185, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19554, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.280517+00', 162, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19555, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.292399+00', 226, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19556, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.280566+00', 278, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19557, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.25633+00', 365, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19558, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.422269+00', 224, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19559, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.389186+00', 315, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19560, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:30.479994+00', 382, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(19561, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.071656+00', 230, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19562, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.084496+00', 481, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(19563, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:30.798156+00', 812, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(19564, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.390728+00', 246, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19565, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.315671+00', 377, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19566, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:30.807102+00', 1090, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(19567, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.306053+00', 622, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 31, 2, NULL, 2, NULL), +(19568, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.317112+00', 675, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19569, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.230538+00', 770, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19570, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.42648+00', 581, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19571, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.451837+00', 563, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(19572, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.307342+00', 884, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19573, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.942708+00', 254, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19574, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.509024+00', 716, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 2, NULL), +(19575, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.881103+00', 366, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19576, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.487207+00', 771, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19577, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.333587+00', 930, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(19578, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.452833+00', 813, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19579, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.846818+00', 416, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(19580, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.487207+00', 776, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 2, NULL), +(19581, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:30.817369+00', 1453, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 26, 3, NULL, 2, NULL), +(19582, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.396554+00', 1195, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19583, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.803431+00', 815, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19584, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.396554+00', 1268, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL), +(19585, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.246482+00', 1477, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19586, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.246482+00', 1489, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 2, NULL), +(19587, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.653139+00', 1216, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(19588, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.820986+00', 1057, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19589, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:30.920606+00', 1996, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19590, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.851212+00', 1075, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19591, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.078446+00', 879, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19592, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:30.920606+00', 2029, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(19593, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.546701+00', 1445, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 2, NULL), +(19594, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.486269+00', 1739, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19595, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.910008+00', 1634, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19596, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.179583+00', 42, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19597, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.192725+00', 98, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19598, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.239968+00', 126, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19599, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.088225+00', 301, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19600, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.282579+00', 140, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19601, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.341984+00', 91, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19602, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.336129+00', 135, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19603, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.297182+00', 236, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19604, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.325933+00', 233, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19605, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.239073+00', 306, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19606, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.307521+00', 259, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19607, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.326275+00', 259, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19608, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.281868+00', 310, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19609, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.35452+00', 239, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19610, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.30083+00', 297, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19611, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.295517+00', 373, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19612, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.299715+00', 72, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19613, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.285641+00', 144, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19614, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.316803+00', 115, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19615, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.279322+00', 160, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19616, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.305199+00', 160, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19617, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.359436+00', 121, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19618, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.302258+00', 189, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19619, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.351117+00', 154, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19620, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.274466+00', 293, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19621, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.381252+00', 63, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19622, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.461989+00', 43, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19623, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.440856+00', 74, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19624, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.410424+00', 146, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19625, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.499341+00', 69, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19626, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.531103+00', 70, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19627, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.435917+00', 185, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19628, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.501866+00', 381, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19629, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.69404+00', 258, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19630, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.81813+00', 160, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19631, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.579724+00', 424, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19632, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.651753+00', 367, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19633, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.580351+00', 515, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19634, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.806805+00', 342, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19635, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.823752+00', 516, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19636, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.647485+00', 720, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19637, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.259141+00', 72, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19638, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.253743+00', 79, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19639, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.213136+00', 133, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19640, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.302214+00', 108, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19641, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.292749+00', 138, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19642, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.298475+00', 181, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19643, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.379379+00', 164, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19644, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.544364+00', 98, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19645, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.565337+00', 76, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19646, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.506883+00', 203, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19647, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.601618+00', 115, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19648, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.629898+00', 110, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19649, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.630667+00', 122, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19650, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.558445+00', 209, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19651, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.592491+00', 181, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19652, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.578739+00', 193, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19653, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.4582+00', 125, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19654, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.52403+00', 109, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19655, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.439756+00', 213, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19656, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.47969+00', 192, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19657, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.470257+00', 203, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19658, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.445974+00', 242, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19659, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.485758+00', 233, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19660, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.437923+00', 288, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19661, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.525232+00', 204, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19662, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.608833+00', 135, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19663, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.642373+00', 116, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19664, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.667566+00', 99, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19665, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.624673+00', 152, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19666, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.69442+00', 82, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19667, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.60613+00', 186, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19668, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.649651+00', 151, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19669, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.172272+00', 109, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19670, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.16964+00', 201, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19671, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.18964+00', 183, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19672, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.160324+00', 217, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19673, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.258537+00', 169, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19674, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.20487+00', 295, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19675, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.243606+00', 394, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19676, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.236256+00', 426, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19677, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.310233+00', 487, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19678, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.258215+00', 194, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19679, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.259942+00', 288, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19680, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.346126+00', 282, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19681, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.440054+00', 243, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19682, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.440516+00', 268, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19683, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.394071+00', 323, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19684, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.441994+00', 296, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19685, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.226865+00', 116, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19686, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.252916+00', 244, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19687, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.224261+00', 319, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19688, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.22368+00', 354, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19689, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.267842+00', 384, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19690, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.252868+00', 417, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19691, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.238991+00', 459, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19692, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.291077+00', 414, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19693, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.273129+00', 505, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19694, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.230952+00', 125, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19695, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.241621+00', 134, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19696, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.230092+00', 166, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19697, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.254013+00', 163, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19698, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.287442+00', 172, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19699, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.247664+00', 230, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19700, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.273545+00', 231, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19701, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.1538+00', 118, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19702, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.142317+00', 210, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19703, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.143853+00', 220, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19704, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.209425+00', 251, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19705, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.242072+00', 354, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19706, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.305796+00', 373, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19707, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.209784+00', 480, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19708, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.42457+00', 286, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19709, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.313225+00', 465, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19710, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.213967+00', 87, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19711, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.198958+00', 107, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19712, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.315872+00', 59, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19713, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.323702+00', 72, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19714, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.303155+00', 114, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19715, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.28473+00', 141, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19716, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.309934+00', 145, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19717, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.107525+00', 76, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19718, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.068621+00', 168, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19719, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.199554+00', 66, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19720, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.099681+00', 207, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19721, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.177043+00', 161, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19722, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.120137+00', 213, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19723, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.269312+00', 105, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19724, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.146354+00', 273, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19725, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.27678+00', 201, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19726, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.259682+00', 44, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19727, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.295596+00', 104, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19728, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.293616+00', 120, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19729, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.293517+00', 157, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19730, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.293298+00', 214, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19731, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.293665+00', 292, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19732, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.293187+00', 300, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19733, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.125058+00', 72, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19734, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.159962+00', 222, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19735, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.288436+00', 147, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19736, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.266596+00', 176, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19737, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.177438+00', 307, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19738, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.391461+00', 195, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19739, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.236644+00', 350, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19740, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.293095+00', 300, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19741, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.250414+00', 379, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19742, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.260797+00', 49, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19743, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.282397+00', 53, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19744, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.30606+00', 104, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19745, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.344977+00', 130, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19746, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.339521+00', 143, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19747, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.347067+00', 139, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19748, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.357507+00', 146, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19749, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.125191+00', 118, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19750, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.226562+00', 98, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19751, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.153976+00', 179, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19752, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.139816+00', 201, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19753, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.212759+00', 162, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19754, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.258289+00', 114, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19755, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.290541+00', 261, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19756, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.198218+00', 367, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19757, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.241792+00', 411, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19758, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.381541+00', 459, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19759, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.474116+00', 368, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19760, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.417497+00', 429, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19761, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.467556+00', 387, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19762, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.450477+00', 403, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19763, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.456584+00', 429, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19764, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.457053+00', 469, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19765, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.462171+00', 316, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19766, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.457933+00', 406, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19767, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.722092+00', 177, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19768, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.639696+00', 270, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19769, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.624621+00', 306, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19770, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.627109+00', 295, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19771, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.599082+00', 364, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19772, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.792513+00', 177, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19773, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.616601+00', 416, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19774, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.375764+00', 89, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19775, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.364254+00', 134, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19776, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.398254+00', 105, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19777, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.413136+00', 93, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19778, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.387231+00', 106, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19779, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.394212+00', 133, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19780, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.41189+00', 134, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19781, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.737687+00', 213, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19782, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.723431+00', 244, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19783, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.861163+00', 177, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19784, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.681607+00', 363, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19785, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.736613+00', 335, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19786, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.85355+00', 300, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19787, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.978946+00', 190, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19788, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.911551+00', 303, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19789, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.796163+00', 534, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19790, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.309348+00', 79, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19791, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.312256+00', 80, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19792, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.346941+00', 80, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19793, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.350459+00', 78, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19794, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.342016+00', 93, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19795, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.376676+00', 61, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19796, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.346241+00', 97, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19797, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.676022+00', 172, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19798, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.633532+00', 234, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19799, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.647526+00', 265, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19800, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.738581+00', 340, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19801, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.770921+00', 310, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19802, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.792287+00', 329, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19803, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.722312+00', 404, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19804, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.697499+00', 451, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19805, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.75912+00', 433, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19806, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.349543+00', 87, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19807, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.368396+00', 84, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19808, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.403663+00', 57, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19809, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.379195+00', 87, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19810, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.383785+00', 97, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19811, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.389185+00', 96, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19812, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.469575+00', 56, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19813, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.51273+00', 165, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19814, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.50518+00', 186, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19815, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.654287+00', 230, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19816, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.676208+00', 258, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19817, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.723615+00', 227, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19818, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.62358+00', 358, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19819, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.518162+00', 466, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19820, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.646422+00', 365, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19821, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.607419+00', 414, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19822, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.476056+00', 111, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19823, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.571938+00', 167, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19824, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.573213+00', 307, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19825, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.731689+00', 169, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19826, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.765256+00', 146, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19827, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.614921+00', 304, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19828, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.650617+00', 308, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19829, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.475319+00', 525, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19830, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.573313+00', 511, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19831, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.196501+00', 72, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19832, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.207057+00', 74, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19833, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.182042+00', 113, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19834, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.169113+00', 128, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19835, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.172536+00', 125, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19836, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.219161+00', 101, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19837, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.291143+00', 105, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19838, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.342142+00', 158, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19839, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.507881+00', 137, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19840, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.485816+00', 209, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19841, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.486478+00', 208, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19842, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.463999+00', 282, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19843, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.499399+00', 280, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19844, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.665126+00', 201, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19845, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.678417+00', 190, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19846, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.680768+00', 240, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19847, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.415486+00', 74, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19848, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.404841+00', 90, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19849, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.395024+00', 146, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19850, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.413361+00', 135, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19851, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.391601+00', 172, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19852, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.435935+00', 151, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19853, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.448904+00', 160, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19854, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.40869+00', 62, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19855, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.425079+00', 193, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19856, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.369351+00', 327, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19857, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.592494+00', 144, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19858, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.527325+00', 380, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19859, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.620789+00', 313, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19860, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.521813+00', 428, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19861, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.763777+00', 218, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19862, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.784362+00', 217, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19863, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.533758+00', 73, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19864, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.510003+00', 123, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19865, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.382733+00', 237, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19866, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.429524+00', 246, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19867, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.556284+00', 144, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19868, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.36929+00', 372, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19869, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.356197+00', 396, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19870, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.506205+00', 183, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19871, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.641333+00', 154, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19872, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.543981+00', 332, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19873, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.526668+00', 365, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19874, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.699563+00', 242, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19875, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.613088+00', 363, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19876, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.590555+00', 415, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19877, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.502895+00', 524, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19878, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.514756+00', 605, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19879, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.387292+00', 267, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19880, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.434166+00', 258, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19881, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.464091+00', 216, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19882, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.468163+00', 242, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19883, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.386362+00', 337, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19884, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.492721+00', 236, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19885, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.505705+00', 235, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19886, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.450997+00', 170, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19887, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.386918+00', 293, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(19888, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.53942+00', 307, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19889, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.593713+00', 271, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19890, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.560678+00', 307, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19891, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.514642+00', 384, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19892, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.294117+00', 640, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19893, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.501139+00', 447, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19894, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.535748+00', 436, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19895, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.577773+00', 239, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19896, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.66671+00', 248, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(19897, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.721157+00', 240, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(19898, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.641398+00', 330, 10, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(19899, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.562788+00', 434, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(19900, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.677045+00', 401, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(19901, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.688683+00', 411, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(19902, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.653526+00', 444, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(19903, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.582346+00', 580, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(19904, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.164403+00', 65, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(19905, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.171812+00', 58, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(19906, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.183739+00', 62, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(19907, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.143567+00', 109, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(19908, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.183525+00', 77, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(19909, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.170433+00', 101, 9, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(19910, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.212084+00', 68, 6, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(19911, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.446698+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19912, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.482222+00', 90, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19913, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.465425+00', 123, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19914, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.525079+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19915, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.527329+00', 88, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19916, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.584817+00', 62, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19917, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.552835+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19918, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.599289+00', 70, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19919, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.584672+00', 109, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19920, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.717173+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19921, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.738888+00', 65, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.736296+00', 83, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19923, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.023969+00', 65, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19924, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.029344+00', 100, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19925, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.06559+00', 86, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19926, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.052693+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19927, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.053895+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19928, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.048833+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19929, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.761494+00', 73, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19930, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.724535+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19931, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.796841+00', 173, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19932, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.867699+00', 130, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19933, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.783347+00', 214, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19934, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.747705+00', 312, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19935, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.917449+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19936, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.024411+00', 97, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19937, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.022852+00', 127, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19938, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.502364+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19939, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.493006+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19940, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.502163+00', 98, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19941, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.739574+00', 50, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19942, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.756344+00', 64, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19943, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.342148+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19944, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.408896+00', 266, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19945, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.273573+00', 435, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19946, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.554324+00', 238, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19947, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.389178+00', 459, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19948, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.618057+00', 262, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19949, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.352839+00', 539, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19950, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.668063+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19951, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.708232+00', 209, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19952, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.613146+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19953, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.587493+00', 159, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19954, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.663531+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19955, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.559+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19956, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.691166+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19957, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.687623+00', 127, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19958, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.690414+00', 137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19959, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.630732+00', 119, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19960, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.763338+00', 99, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19961, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.75655+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19962, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.638528+00', 323, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19963, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.7369+00', 281, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19964, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.879211+00', 159, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19965, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.783693+00', 280, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19966, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.788977+00', 56, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19967, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.789074+00', 105, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19968, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.689339+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19969, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.795209+00', 139, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19970, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.794987+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19971, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.78098+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19972, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.922481+00', 63, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19973, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.883803+00', 120, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19974, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.794263+00', 236, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19975, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.146636+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19976, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.215902+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19977, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.199231+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19978, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.201975+00', 185, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19979, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.342975+00', 65, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(19980, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.226704+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19981, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.243029+00', 189, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19982, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.318504+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19983, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.313785+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(19984, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.534376+00', 142, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(19985, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.537003+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(19986, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.582919+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(19987, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.570213+00', 178, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(19988, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.584743+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(19989, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.618052+00', 151, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(19990, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.559865+00', 238, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(19991, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.809291+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(19992, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.835117+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(19993, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.855801+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(19994, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.823968+00', 142, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(19995, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.851215+00', 118, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(19996, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.864907+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(19997, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.882617+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(19998, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.85582+00', 157, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(19999, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.910367+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20000, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.841004+00', 36, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20001, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.81184+00', 77, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20002, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.845204+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20003, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.828923+00', 81, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20004, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.831745+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20005, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:00.102614+00', 36, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20006, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:00.102522+00', 43, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20007, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.838108+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20008, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.879024+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20009, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.774738+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20010, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.915635+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20011, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.866197+00', 265, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20012, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.920763+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20013, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.962196+00', 262, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20014, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.983268+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20015, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.007839+00', 237, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20016, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.660698+00', 73, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20017, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.666478+00', 90, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20018, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.663726+00', 100, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20019, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.695836+00', 69, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20020, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.695783+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20021, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.723199+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20022, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.7082+00', 79, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20023, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.856792+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20024, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.835946+00', 75, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20025, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.836054+00', 98, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20026, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.88747+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20027, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.933124+00', 53, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20028, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.92431+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20029, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.905657+00', 98, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20030, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:07.017971+00', 47, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20031, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:07.019805+00', 67, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20032, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.716938+00', 54, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20033, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.710234+00', 151, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20034, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.792421+00', 79, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20035, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.744319+00', 132, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20036, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.751864+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20037, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.79809+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20038, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.822301+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20039, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.255814+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20040, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.420627+00', 273, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20041, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.358091+00', 413, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20042, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.436707+00', 363, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20043, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.429056+00', 365, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20044, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.424228+00', 417, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20045, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.544027+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20046, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.380477+00', 471, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20047, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.704613+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20048, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.640736+00', 57, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20049, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.62485+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20050, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.66394+00', 64, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20051, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.663982+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20052, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.674808+00', 72, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20053, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.674862+00', 81, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20054, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.672572+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20055, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.447384+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20056, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.537734+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20057, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.48971+00', 229, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20058, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.40266+00', 390, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20059, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.731992+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20060, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.648342+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20061, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.515972+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20062, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.620122+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20063, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.538832+00', 316, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20064, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.777672+00', 75, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20065, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.823151+00', 49, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20066, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.796429+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20067, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.794624+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20068, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.804599+00', 90, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20069, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.785346+00', 109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20070, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.821465+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20071, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.04242+00', 355, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20072, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.096322+00', 325, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20073, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.098451+00', 332, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20074, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.078963+00', 357, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20075, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.049302+00', 408, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20076, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.097071+00', 360, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20077, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:59.977389+00', 520, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20078, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.385479+00', 186, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20079, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.370263+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20080, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.265796+00', 280, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20081, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.233769+00', 345, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20082, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.199111+00', 409, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20083, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.265018+00', 370, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20084, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.233128+00', 465, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20085, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.407415+00', 310, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20086, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.42091+00', 316, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20087, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.870869+00', 78, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20088, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.872215+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20089, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.91244+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20090, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.913535+00', 151, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20091, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.893968+00', 188, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20092, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.892029+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20093, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.907054+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20094, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:45.996417+00', 66, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20095, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:45.867104+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20096, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.073863+00', 70, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20097, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.062809+00', 78, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20098, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.005573+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20099, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.007262+00', 193, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20100, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.019949+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20101, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.063492+00', 155, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20102, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.01282+00', 235, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20103, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.049655+00', 215, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20104, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:56.949562+00', 388, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20105, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.054179+00', 295, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20106, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.078956+00', 284, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20107, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.079968+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20108, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.05429+00', 381, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20109, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.029261+00', 425, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20110, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:58.84355+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20111, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:58.878167+00', 294, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20112, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.023312+00', 149, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20113, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.00611+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20114, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.029015+00', 260, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20115, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.053572+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20116, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:58.991369+00', 381, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20117, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:58.992587+00', 412, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20118, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.005432+00', 438, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20119, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.705364+00', 44, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20120, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.730027+00', 119, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20121, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.71628+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20122, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.792636+00', 97, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20123, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.83028+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20124, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.795652+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20125, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.803834+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20126, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.898403+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20127, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.86095+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20128, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.885767+00', 130, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20129, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.976599+00', 61, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20130, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.989551+00', 85, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20131, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.02799+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20132, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.073191+00', 100, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20133, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.056412+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20134, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.093585+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20135, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.161507+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20136, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.15802+00', 128, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20137, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.262829+00', 103, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20138, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.281591+00', 80, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20139, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.281892+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20140, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.267768+00', 130, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20141, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.31395+00', 155, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20142, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.320989+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20143, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.362445+00', 192, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20144, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.566061+00', 75, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20145, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.820789+00', 73, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20146, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.854975+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20147, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.8139+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20148, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.83987+00', 112, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20149, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.827066+00', 150, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20150, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.830418+00', 169, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20151, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.056557+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20152, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.069155+00', 109, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20153, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:44.990238+00', 226, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20154, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.106259+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20155, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.106944+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20156, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.100233+00', 130, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20157, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.127738+00', 157, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20158, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.194212+00', 101, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20159, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.194279+00', 117, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20160, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.461885+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20161, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.437478+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20162, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.520116+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20163, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.476967+00', 204, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20164, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.602193+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20165, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.598219+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20166, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.603964+00', 151, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20167, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.60374+00', 172, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20168, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.658743+00', 186, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20169, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.962819+00', 114, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20170, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.975035+00', 118, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20171, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.006078+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20172, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.986828+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20173, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.035348+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20174, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.065422+00', 95, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20175, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.053618+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20176, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.270311+00', 50, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20177, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.284067+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20178, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.287857+00', 159, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20179, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.343779+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20180, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.341013+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20181, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.279358+00', 181, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20182, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.382627+00', 95, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20183, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.139281+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20184, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.387046+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20185, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.304832+00', 287, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20186, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.365483+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20187, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.352093+00', 318, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20188, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.33464+00', 421, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20189, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.393975+00', 363, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20190, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.607544+00', 147, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20191, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.346424+00', 444, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20192, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.564829+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20193, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.946864+00', 196, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20194, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.042267+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20195, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.993345+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20196, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.89196+00', 398, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20197, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.092371+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20198, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.162734+00', 240, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20199, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.312949+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20200, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.1792+00', 250, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20201, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.138601+00', 319, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20202, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.263085+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20203, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.252798+00', 224, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20204, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.282218+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20205, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.230957+00', 351, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20206, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.111731+00', 472, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20207, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.289461+00', 376, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20208, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.602697+00', 138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20209, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.664616+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20210, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.604205+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20211, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.651606+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20212, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.662104+00', 159, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20213, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.7886+00', 56, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20214, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.759953+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20215, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:39.5267+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20216, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:00.811846+00', 62, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20217, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:00.777838+00', 247, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20218, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:00.828499+00', 221, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20219, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:00.921928+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20220, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.042366+00', 89, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20221, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.015481+00', 155, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(20222, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.071654+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20223, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.027362+00', 272, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(20224, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:00.846567+00', 452, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(20225, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.114938+00', 233, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(20226, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.03589+00', 384, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(20227, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.11591+00', 316, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(20228, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.129997+00', 298, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(20229, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.208343+00', 255, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(20230, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.100678+00', 379, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(20231, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.211835+00', 451, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20232, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.345718+00', 453, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20233, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.159881+00', 709, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20234, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.159881+00', 725, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(20235, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.700114+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20236, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.650798+00', 352, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20237, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.365545+00', 706, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20238, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.681264+00', 448, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20239, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.620935+00', 509, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20240, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.498368+00', 647, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20241, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.575502+00', 695, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20242, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.666983+00', 768, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20243, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.531567+00', 806, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20244, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.558077+00', 888, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20245, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.59535+00', 913, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20246, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.569183+00', 955, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20247, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.705616+00', 916, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20248, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.511633+00', 1135, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20249, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.072393+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20250, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.082009+00', 114, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20251, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.12674+00', 82, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20252, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.102367+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20253, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.181112+00', 50, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20254, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.124242+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20255, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.140747+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20256, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.172336+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20257, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.198012+00', 114, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20258, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.381796+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20259, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.383617+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20260, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.400076+00', 64, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20261, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.417335+00', 52, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20262, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.409191+00', 68, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20263, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.434083+00', 64, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20264, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.44853+00', 51, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20265, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.192026+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20266, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.259751+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20267, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.243061+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20268, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.283285+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20269, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.299279+00', 65, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20270, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.282982+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20271, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.259663+00', 159, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20272, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.317102+00', 140, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20273, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.313358+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20274, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.529609+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20275, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.549279+00', 64, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20276, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.560741+00', 77, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20277, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.590033+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20278, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.534447+00', 153, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20279, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.499682+00', 197, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20280, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.590067+00', 116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20281, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.240712+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20282, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.237134+00', 278, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20283, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.292816+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20284, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.240396+00', 384, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20285, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.338218+00', 291, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20286, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.310643+00', 335, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20287, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.298033+00', 359, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20288, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.479349+00', 220, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20289, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.355678+00', 377, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20290, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.312208+00', 445, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20291, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.555198+00', 213, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20292, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.559035+00', 260, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20293, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.704979+00', 130, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20294, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.631315+00', 212, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20295, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.656373+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20296, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.705075+00', 254, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20297, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.179617+00', 330, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20298, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.194944+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20299, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.259988+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20300, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.203337+00', 482, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20301, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.214533+00', 529, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20302, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.222902+00', 598, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20303, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.403602+00', 435, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20304, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.227595+00', 634, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20305, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.754206+00', 159, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20306, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.292253+00', 682, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20307, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.611753+00', 381, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20308, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.697835+00', 380, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20309, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.406406+00', 688, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20310, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.666109+00', 448, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20311, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.348604+00', 824, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20312, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.788827+00', 390, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20313, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.260113+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20314, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.328032+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20315, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.209018+00', 419, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20316, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.226172+00', 411, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20317, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.318072+00', 336, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20318, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.129696+00', 561, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20319, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.417487+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20320, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.261397+00', 509, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20321, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.319674+00', 562, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20322, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.617525+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20323, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.260112+00', 636, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20324, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.787294+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20325, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.496338+00', 431, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20326, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.67063+00', 255, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20327, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.420223+00', 499, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20328, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.593553+00', 357, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20329, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.551337+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20330, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.537386+00', 122, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20331, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.537128+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20332, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.58294+00', 114, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20333, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.566048+00', 132, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20334, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.611829+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20335, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.616368+00', 119, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20336, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.798106+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20337, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.876501+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20338, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.88887+00', 112, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20339, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.951152+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20340, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.864585+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20341, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.937041+00', 119, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20342, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.96172+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20343, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.968457+00', 105, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20344, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.020432+00', 78, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20345, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.375198+00', 149, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20346, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.375214+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20347, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.389878+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20348, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.407045+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20349, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.429076+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20350, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.375198+00', 310, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20351, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.535967+00', 149, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20352, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.448201+00', 257, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20353, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.548721+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20354, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:42.82631+00', 215, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20355, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:42.843687+00', 225, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20356, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:42.940723+00', 273, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20357, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:42.902921+00', 343, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20358, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.011241+00', 239, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20359, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.041283+00', 236, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20360, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:42.898921+00', 388, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20361, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.359389+00', 560, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20362, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.382523+00', 562, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20363, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.354397+00', 731, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20364, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.667594+00', 513, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20365, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.435545+00', 774, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20366, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.666095+00', 613, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20367, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.868747+00', 417, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20368, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.648819+00', 677, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20369, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.340846+00', 996, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20370, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.662077+00', 727, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20371, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.949379+00', 664, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20372, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.012885+00', 608, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20373, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.100969+00', 529, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20374, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.864938+00', 740, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20375, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.931833+00', 700, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20376, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.007827+00', 643, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20377, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.179521+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20378, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.146819+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20379, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.148557+00', 158, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20380, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.193748+00', 149, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20381, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.196926+00', 283, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20382, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.320656+00', 182, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20383, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.254079+00', 280, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20384, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.183598+00', 377, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20385, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.491005+00', 96, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20386, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.438845+00', 188, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20387, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.265218+00', 355, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20388, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.234488+00', 411, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20389, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.430253+00', 223, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20390, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.404371+00', 262, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20391, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.492212+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20392, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.480461+00', 213, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20393, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.586015+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20394, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.618634+00', 70, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20395, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.643889+00', 47, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20396, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.640286+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20397, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.67256+00', 81, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20398, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.646459+00', 164, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20399, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.6205+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20400, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.139906+00', 349, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(20401, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.050371+00', 512, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(20402, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.395388+00', 241, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20403, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.142715+00', 631, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20404, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.293491+00', 568, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20405, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.296487+00', 669, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20406, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.25748+00', 721, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(20407, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.395388+00', 599, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20408, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.39593+00', 646, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(20409, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.312769+00', 792, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(20410, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.732962+00', 374, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20411, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.775117+00', 393, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20412, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.663028+00', 538, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20413, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.57233+00', 652, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20414, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.137324+00', 1103, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(20415, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.775516+00', 547, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20416, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.639486+00', 692, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20417, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.658966+00', 687, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(20418, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.919346+00', 518, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20419, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.926202+00', 612, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20420, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.144683+00', 480, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20421, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.953922+00', 674, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20422, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.136166+00', 527, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20423, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.926202+00', 733, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(20424, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.15304+00', 510, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20425, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.842011+00', 828, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20426, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.953922+00', 706, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(20427, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.308142+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20428, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.345758+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20429, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.296987+00', 138, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20430, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.333698+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20431, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.329475+00', 115, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20432, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.322174+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20433, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.3182+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20434, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.225959+00', 242, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(20435, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.383737+00', 107, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(20436, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.551611+00', 175, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20437, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.67181+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20438, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.625495+00', 150, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20439, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.580294+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20440, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.652209+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20441, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.604995+00', 242, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20442, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.750026+00', 122, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(20443, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.685413+00', 226, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20444, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.688319+00', 255, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20445, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.653228+00', 317, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(20446, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.746122+00', 225, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(20447, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.889455+00', 105, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20448, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.755074+00', 264, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20449, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.755074+00', 267, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(20450, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.7806+00', 275, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20451, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.876186+00', 213, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20452, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.702504+00', 410, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20453, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.690031+00', 421, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20454, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.849533+00', 295, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20455, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.898213+00', 279, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20456, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.949601+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20457, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.91581+00', 330, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20458, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.854749+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20459, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.937023+00', 347, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20460, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.294762+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20461, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.475523+00', 87, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20462, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.472841+00', 105, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20463, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.462592+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20464, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.448385+00', 164, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20465, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.478097+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20466, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.547718+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20467, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.607699+00', 294, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20468, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.785663+00', 194, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20469, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.736705+00', 285, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20470, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.839941+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20471, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.897331+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20472, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.927586+00', 157, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20473, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.949704+00', 146, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20474, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.802632+00', 308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20475, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.992507+00', 175, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20476, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.294913+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20477, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.321419+00', 105, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20478, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.333242+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20479, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.355667+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20480, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.257202+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20481, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.314044+00', 270, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20482, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.325169+00', 269, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20483, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.310395+00', 292, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20484, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.401017+00', 248, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20485, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.541563+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20486, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.574106+00', 128, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20487, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.598011+00', 174, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20488, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.649113+00', 129, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20489, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.679312+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20490, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.686531+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20491, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.669597+00', 136, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20492, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.190294+00', 119, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20493, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.28658+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20494, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.292345+00', 76, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20495, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.256306+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20496, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.260996+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20497, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.299261+00', 116, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20498, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.28684+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20499, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.268304+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20500, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.291933+00', 151, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20501, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.045663+00', 173, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20502, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.108787+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20503, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.0468+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20504, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.108611+00', 139, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20505, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.067787+00', 208, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20506, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.085212+00', 190, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20507, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.173919+00', 139, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20508, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.585783+00', 126, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20509, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.603511+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20510, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.651625+00', 78, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20511, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.62635+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20512, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.67162+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20513, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.628525+00', 142, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20514, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.650664+00', 153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20515, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.864588+00', 64, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20516, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.87244+00', 164, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20517, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.915879+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20518, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.998857+00', 292, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(20519, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.054519+00', 268, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(20520, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.962224+00', 384, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(20521, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.098642+00', 293, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(20522, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.163005+00', 229, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20523, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.106836+00', 315, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20524, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.343596+00', 220, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20525, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.285684+00', 486, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20526, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.274899+00', 501, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20527, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.550564+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20528, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.139229+00', 705, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(20529, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.2748+00', 603, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20530, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.052078+00', 863, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(20531, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.451448+00', 469, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20532, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.31986+00', 701, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20533, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.517744+00', 506, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20534, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.38115+00', 655, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20535, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.503973+00', 625, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20536, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.610589+00', 519, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20537, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.950491+00', 313, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20538, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.929193+00', 337, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20539, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.895522+00', 478, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20540, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.170829+00', 57, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20541, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.18965+00', 63, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20542, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.206161+00', 62, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20543, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.201195+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20544, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.199396+00', 82, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20545, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.203997+00', 81, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20546, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.206463+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20547, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.457009+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20548, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.45649+00', 89, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20549, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.504247+00', 75, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20550, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.470681+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20551, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.507375+00', 119, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20552, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.514738+00', 128, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20553, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.555089+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20554, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.552145+00', 112, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20555, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.55208+00', 115, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20556, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.410882+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20557, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.434795+00', 230, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20558, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.52276+00', 188, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20559, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.574257+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20560, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.577934+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20561, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.494845+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20562, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.620409+00', 192, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20563, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.752533+00', 133, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20564, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.715812+00', 197, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20565, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.172646+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20566, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.260327+00', 105, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20567, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.230061+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20568, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.226186+00', 250, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20569, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.302908+00', 180, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20570, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.223998+00', 272, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20571, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.388731+00', 112, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20572, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.484298+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20573, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.45391+00', 332, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20574, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.596619+00', 299, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20575, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.452566+00', 453, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20576, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.507228+00', 408, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20577, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.496944+00', 452, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20578, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.502805+00', 471, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20579, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.639275+00', 369, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20580, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.785497+00', 257, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20581, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.614653+00', 235, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20582, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.641224+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20583, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.569903+00', 308, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20584, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.652669+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20585, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.789073+00', 159, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20586, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.647453+00', 297, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20587, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.664879+00', 308, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20588, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.437683+00', 54, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20589, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.437683+00', 142, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20590, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.477188+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20591, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.507772+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20592, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.497226+00', 334, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(20593, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.756024+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20594, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.717131+00', 142, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20595, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.460447+00', 414, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(20596, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.530858+00', 356, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(20597, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.749506+00', 157, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20598, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.821867+00', 149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20599, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.774121+00', 231, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20600, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.921701+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20601, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.869532+00', 223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20602, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.523656+00', 317, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20603, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.58792+00', 320, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20604, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.607104+00', 431, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20605, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.766207+00', 312, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20606, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.717491+00', 384, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20607, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.596572+00', 555, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20608, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.893293+00', 273, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20609, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.876691+00', 386, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(20610, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.849846+00', 476, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(20611, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.313495+00', 426, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20612, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.551715+00', 195, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20613, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.354757+00', 420, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20614, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.700225+00', 216, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20615, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.734045+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20616, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.703408+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20617, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.718235+00', 266, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20618, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.793469+00', 257, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20619, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.800126+00', 269, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20620, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.296751+00', 113, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20621, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.299324+00', 130, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20622, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.334515+00', 113, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20623, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.362477+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20624, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.384048+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20625, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.290451+00', 234, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20626, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.547381+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20627, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.317811+00', 498, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(20628, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.530857+00', 378, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(20629, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.563003+00', 443, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(20630, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.802387+00', 345, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(20631, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.62741+00', 566, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(20632, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.614713+00', 587, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(20633, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.774583+00', 489, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20634, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.208779+00', 165, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20635, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.920214+00', 476, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(20636, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.150456+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20637, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.136181+00', 364, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20638, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.955747+00', 586, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20639, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.166155+00', 417, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20640, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.936519+00', 674, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(20641, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.01719+00', 599, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20642, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.14143+00', 596, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20643, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.315727+00', 677, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20644, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.240064+00', 768, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20645, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.471857+00', 545, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20646, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.227722+00', 807, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20647, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.590311+00', 437, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20648, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.277695+00', 753, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20649, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.510501+00', 522, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20650, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.240064+00', 815, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(20651, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.400173+00', 668, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20652, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.253691+00', 849, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20653, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.328272+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20654, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.339199+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20655, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.362379+00', 186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20656, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.368714+00', 259, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20657, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.391082+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20658, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.454206+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20659, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.643595+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20660, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.368196+00', 405, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20661, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.667615+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20662, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.527774+00', 261, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20663, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.620506+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20664, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.602955+00', 217, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20665, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.620969+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20666, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.550409+00', 277, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20667, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.651685+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20668, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.742897+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20669, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.762973+00', 230, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20670, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.762973+00', 238, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(20671, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.754395+00', 344, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(20672, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.758327+00', 447, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(20673, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.08128+00', 309, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20674, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.794945+00', 678, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(20675, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.058818+00', 528, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20676, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.906125+00', 688, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20677, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.906125+00', 695, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(20678, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.086549+00', 547, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20679, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.109702+00', 533, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20680, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.103659+00', 649, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20681, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.950343+00', 798, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(20682, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.939148+00', 840, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(20683, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.313403+00', 577, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20684, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.247721+00', 886, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20685, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.64455+00', 528, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(20686, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.946984+00', 274, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20687, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.868711+00', 505, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20688, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.612526+00', 858, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20689, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.486865+00', 1066, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(20690, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.486865+00', 1059, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20691, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.760015+00', 797, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20692, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.760015+00', 846, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(20693, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.685779+00', 964, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20694, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.277284+00', 366, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(20695, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.718785+00', 1057, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20696, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.207225+00', 597, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20697, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.926522+00', 972, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(20698, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.709175+00', 1312, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(20699, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.117571+00', 976, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20700, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.117571+00', 997, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(20701, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.296552+00', 929, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20702, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.352787+00', 889, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20703, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.144063+00', 1199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20704, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.010477+00', 1445, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(20705, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.010477+00', 1434, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20706, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.143919+00', 1359, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20707, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.143919+00', 1393, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(20708, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.394468+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20709, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.416161+00', 573, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20710, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.523995+00', 555, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20711, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.590318+00', 703, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20712, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.476229+00', 1842, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20713, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.922983+00', 1406, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20714, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.466175+00', 1879, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20715, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:44.047444+00', 1310, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20716, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.811917+00', 1603, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20717, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.761961+00', 1687, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20718, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.904612+00', 1547, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20719, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.2759+00', 184, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20720, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.619501+00', 1856, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20721, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.332044+00', 180, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20722, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.276293+00', 242, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20723, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:44.074202+00', 1449, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20724, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.146838+00', 277, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20725, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.204885+00', 275, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20726, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.363342+00', 192, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20727, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.36134+00', 197, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20728, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.50555+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20729, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.431312+00', 376, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20730, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.462944+00', 371, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20731, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.498361+00', 339, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20732, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.449936+00', 382, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20733, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.261433+00', 588, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20734, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.432497+00', 444, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20735, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.39085+00', 519, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20736, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.541898+00', 374, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20737, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.450466+00', 476, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20738, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.494205+00', 449, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20739, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.525607+00', 422, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20740, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.380941+00', 245, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20741, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.443417+00', 338, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20742, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.536305+00', 301, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20743, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.424206+00', 454, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20744, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.445149+00', 498, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20745, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.426457+00', 568, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20746, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.380942+00', 636, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20747, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.505848+00', 553, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20748, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.714349+00', 345, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20749, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.70136+00', 375, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20750, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.936627+00', 182, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20751, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.714295+00', 434, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20752, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.677684+00', 493, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20753, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.762383+00', 422, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20754, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.848448+00', 348, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20755, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.547619+00', 688, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20756, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.070425+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20757, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.070283+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20758, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.123253+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20759, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.10114+00', 163, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20760, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.123672+00', 152, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20761, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.136962+00', 149, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20762, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.200654+00', 99, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20763, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.645105+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20764, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.697293+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20765, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.706511+00', 141, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20766, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.632196+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20767, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.706333+00', 162, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20768, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.768934+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20769, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.766636+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20770, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.707829+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20771, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.819667+00', 99, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20772, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.683053+00', 227, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20773, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.684653+00', 250, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20774, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.689744+00', 297, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20775, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.655926+00', 505, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20776, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.949101+00', 261, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20777, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.000359+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20778, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.950408+00', 284, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20779, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.925969+00', 331, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20780, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.993268+00', 379, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20781, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.210544+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20782, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.107099+00', 353, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20783, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.251886+00', 216, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20784, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.253565+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20785, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.267836+00', 247, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20786, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.315618+00', 213, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20787, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.408967+00', 132, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20788, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.165379+00', 409, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20789, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.228856+00', 411, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20790, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.455299+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20791, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.44118+00', 302, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20792, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.489992+00', 266, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20793, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.668256+00', 106, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20794, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.252253+00', 550, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20795, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.471897+00', 387, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20796, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.662962+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20797, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.757734+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20798, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.625432+00', 326, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20799, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.714209+00', 259, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20800, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.631802+00', 344, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20801, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.822807+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20802, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.902838+00', 169, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20803, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.912234+00', 179, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20804, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.211016+00', 318, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20805, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.418256+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20806, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.508358+00', 194, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20807, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.573391+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20808, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.560272+00', 308, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20809, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.659978+00', 255, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20810, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.463304+00', 463, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20811, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.258097+00', 675, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20812, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.56214+00', 414, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20813, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.703327+00', 357, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20814, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.559879+00', 509, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20815, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.782241+00', 290, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20816, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.793443+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20817, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.78574+00', 323, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20818, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.769902+00', 340, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20819, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.982644+00', 153, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20820, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.271022+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20821, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.309943+00', 278, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20822, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.412322+00', 265, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20823, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.312721+00', 451, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20824, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.439079+00', 330, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20825, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.40198+00', 382, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20826, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.514333+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20827, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.591726+00', 246, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20828, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.604691+00', 353, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20829, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.494409+00', 506, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20830, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.704288+00', 320, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20831, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.704292+00', 358, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20832, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.554004+00', 507, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20833, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.868892+00', 218, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20834, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.756184+00', 356, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20835, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.76295+00', 371, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20836, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.28543+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20837, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.321296+00', 295, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20838, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.308792+00', 461, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20839, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.286303+00', 503, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20840, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.301787+00', 516, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20841, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.34602+00', 481, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20842, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.345712+00', 516, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20843, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.870546+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20844, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.630527+00', 457, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20845, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.893573+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20846, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.632051+00', 491, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20847, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.893573+00', 263, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20848, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.856938+00', 314, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20849, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.910509+00', 295, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20850, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.784066+00', 465, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20851, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.894367+00', 369, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20852, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.321263+00', 85, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20853, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.287769+00', 117, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20854, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.286628+00', 205, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20855, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.325443+00', 217, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20856, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.325969+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20857, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.335942+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20858, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.440758+00', 159, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20859, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.559459+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20860, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.600042+00', 228, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20861, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.541165+00', 373, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20862, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.744356+00', 183, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20863, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.78968+00', 262, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20864, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.55693+00', 524, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20865, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.580468+00', 503, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20866, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.580718+00', 513, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20867, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.715505+00', 440, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20868, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.297766+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20869, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.340558+00', 62, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20870, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.344627+00', 64, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20871, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.332851+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20872, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.323845+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20873, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.358456+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20874, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.348178+00', 91, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20875, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.614224+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20876, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.656143+00', 124, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20877, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.640422+00', 139, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20878, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.682425+00', 116, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20879, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.705897+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20880, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.714176+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20881, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.716912+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20882, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.728693+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20883, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.722734+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20884, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.841337+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20885, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.923295+00', 110, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20886, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.829969+00', 207, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20887, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.921532+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20888, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.965791+00', 99, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20889, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.981374+00', 227, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20890, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.985269+00', 376, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(20891, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.161156+00', 215, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(20892, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.237223+00', 283, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(20893, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.142291+00', 448, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(20894, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.113683+00', 587, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(20895, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.44275+00', 335, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20896, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.419198+00', 426, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20897, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.463793+00', 458, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(20898, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.333981+00', 617, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(20899, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.811051+00', 594, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20900, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.564588+00', 854, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20901, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.532355+00', 898, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20902, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.532355+00', 906, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(20903, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.843785+00', 602, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20904, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.457719+00', 1109, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20905, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.457719+00', 1124, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(20906, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.773878+00', 808, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20907, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.587023+00', 999, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20908, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.650403+00', 940, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20909, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.864121+00', 747, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20910, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.755369+00', 877, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20911, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.946431+00', 735, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20912, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.927669+00', 752, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20913, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.483247+00', 1212, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20914, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.483247+00', 1218, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(20915, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.690626+00', 1025, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20916, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.975392+00', 794, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20917, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.906613+00', 917, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20918, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.398304+00', 462, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20919, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.618123+00', 342, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20920, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.525626+00', 457, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(20921, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.533065+00', 566, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(20922, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.693251+00', 470, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(20923, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.881438+00', 322, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(20924, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.730661+00', 543, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(20925, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.594509+00', 795, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(20926, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.866246+00', 534, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20927, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.061572+00', 559, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20928, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.645996+00', 1087, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20929, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:57.645996+00', 1100, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(20930, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.05877+00', 758, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20931, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.146111+00', 750, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20932, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.009481+00', 928, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(20933, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.09968+00', 827, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20934, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.335096+00', 608, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20935, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.146111+00', 769, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(20936, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.353703+00', 806, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20937, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.790617+00', 392, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20938, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.742973+00', 446, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20939, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.189853+00', 1243, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20940, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.059565+00', 449, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20941, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.95997+00', 652, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20942, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.007532+00', 606, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(20943, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.578715+00', 1056, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20944, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.952128+00', 721, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(20945, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.984588+00', 788, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20946, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.999558+00', 848, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(20947, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.983235+00', 866, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20948, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.269544+00', 634, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20949, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.98533+00', 922, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(20950, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.199068+00', 711, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(20951, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.128952+00', 795, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20952, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.128952+00', 806, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(20953, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.882181+00', 1074, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20954, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.219734+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20955, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.262396+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20956, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.319155+00', 147, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20957, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.301801+00', 176, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20958, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.31889+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20959, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.319532+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20960, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.214226+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20961, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.376419+00', 162, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20962, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.574094+00', 90, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20963, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.749914+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20964, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.670232+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20965, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.636598+00', 213, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20966, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.765063+00', 125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20967, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.800216+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20968, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.750227+00', 178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20969, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.757343+00', 201, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20970, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.166134+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20971, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.34105+00', 202, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20972, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.338433+00', 301, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20973, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.377293+00', 290, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20974, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.312401+00', 348, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20975, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.34+00', 320, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20976, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.339633+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20977, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.420649+00', 325, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20978, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.406512+00', 381, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20979, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.375612+00', 205, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20980, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.494302+00', 205, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20981, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.509259+00', 226, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20982, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.44452+00', 345, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(20983, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.488649+00', 343, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(20984, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.510453+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(20985, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.528033+00', 340, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(20986, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.622769+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(20987, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.609603+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(20988, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.729232+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(20989, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.845349+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(20990, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.70732+00', 258, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(20991, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.757288+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(20992, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.763929+00', 269, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(20993, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.743142+00', 292, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(20994, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.722214+00', 327, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(20995, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.350368+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(20996, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.469093+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(20997, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.452865+00', 154, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(20998, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.560902+00', 124, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(20999, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.489274+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21000, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.45667+00', 260, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21001, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.457236+00', 280, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21002, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.021371+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21003, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.05971+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21004, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.074171+00', 178, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21005, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.166412+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21006, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.023282+00', 387, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21007, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.064533+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21008, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.155354+00', 292, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21009, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.145987+00', 393, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21010, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.168082+00', 411, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21011, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.271488+00', 38, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21012, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.331894+00', 88, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21013, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.363875+00', 63, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21014, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.329696+00', 103, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21015, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.334161+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21016, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.360529+00', 104, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21017, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.347376+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21018, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.174384+00', 274, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21019, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.187844+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21020, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.246736+00', 210, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21021, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.165911+00', 323, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21022, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.213051+00', 286, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21023, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.186035+00', 396, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21024, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.239109+00', 372, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21025, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.301599+00', 380, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21026, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.237588+00', 466, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21027, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:07.890138+00', 138, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21028, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:07.963199+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21029, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.007137+00', 142, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21030, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:07.976058+00', 179, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21031, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:07.982377+00', 204, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21032, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:07.968837+00', 233, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21033, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:07.973672+00', 252, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21034, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.979237+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21035, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.801304+00', 215, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21036, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.862155+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21037, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.976182+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21038, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.843629+00', 295, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21039, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.991515+00', 165, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21040, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.964098+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21041, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.98127+00', 237, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21042, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:32.986485+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21043, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.209717+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21044, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.243577+00', 190, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21045, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.2709+00', 202, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21046, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.256578+00', 235, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21047, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.258071+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21048, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.281625+00', 271, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21049, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.2709+00', 295, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21050, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:10.951146+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21051, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:10.889521+00', 205, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21052, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:10.997986+00', 119, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21053, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:10.888917+00', 312, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(21054, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:10.973034+00', 303, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(21055, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.058048+00', 221, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21056, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:10.954733+00', 339, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(21057, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:10.971658+00', 333, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(21058, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.300904+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21059, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.347629+00', 288, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21060, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.023587+00', 653, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(21061, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.523115+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21062, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.567931+00', 306, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21063, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.456851+00', 433, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21064, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.479815+00', 424, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21065, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.318763+00', 697, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21066, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.867246+00', 194, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(21067, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.625793+00', 496, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21068, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.693242+00', 447, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21069, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.901949+00', 413, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(21070, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.955506+00', 412, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(21071, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.955506+00', 406, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21072, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.94819+00', 474, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21073, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.94819+00', 482, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(21074, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.15998+00', 402, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21075, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.042628+00', 641, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(21076, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.950922+00', 757, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(21077, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.148928+00', 696, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(21078, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.330056+00', 660, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21079, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.361722+00', 717, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21080, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.546425+00', 630, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21081, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.713013+00', 475, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21082, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.755823+00', 513, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21083, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.661492+00', 669, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21084, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.265575+00', 273, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21085, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.213638+00', 339, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21086, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.440891+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21087, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.371297+00', 292, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21088, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.44707+00', 340, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21089, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.400468+00', 386, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21090, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.354636+00', 433, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21091, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.434083+00', 372, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21092, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.451561+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21093, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.826258+00', 65, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21094, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.829889+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21095, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.873455+00', 100, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21096, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.843199+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21097, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.819326+00', 194, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21098, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.914951+00', 111, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21099, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.909567+00', 133, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21100, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.005313+00', 66, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21101, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.014596+00', 81, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21102, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.033795+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21103, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:15.985004+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21104, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.079238+00', 71, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21105, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.056996+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21106, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.124498+00', 51, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21107, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.145746+00', 55, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21108, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.131138+00', 81, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21109, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.068827+00', 107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21110, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.092575+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21111, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.088777+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21112, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.143227+00', 84, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21113, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.083349+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21114, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.116122+00', 144, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21115, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.140023+00', 132, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21116, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.848012+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21117, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.885436+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21118, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.897201+00', 72, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21119, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.92008+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21120, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.926156+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21121, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.939017+00', 91, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21122, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.945881+00', 86, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21123, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.946438+00', 93, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21124, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.942714+00', 103, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21125, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.899729+00', 59, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21126, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.924363+00', 40, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21127, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.885217+00', 92, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21128, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.896595+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21129, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.921087+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21130, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.916982+00', 84, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21131, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.903292+00', 99, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21132, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.534465+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21133, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.673381+00', 100, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21134, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.658978+00', 191, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21135, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.790518+00', 176, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(21136, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.632519+00', 416, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(21137, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.718041+00', 355, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(21138, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.910647+00', 298, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(21139, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.145922+00', 284, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21140, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.17063+00', 443, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21141, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.867179+00', 826, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(21142, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.969131+00', 793, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(21143, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.170138+00', 865, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21144, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.392963+00', 785, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21145, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.363591+00', 849, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21146, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.468079+00', 773, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21147, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.760472+00', 490, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(21148, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.731709+00', 655, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(21149, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.762474+00', 738, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(21150, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.710719+00', 896, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21151, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.589848+00', 1160, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21152, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.230488+00', 1546, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21153, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.212027+00', 596, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21154, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.261959+00', 586, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21155, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.254599+00', 632, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21156, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.441008+00', 505, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21157, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.441008+00', 507, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(21158, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.244188+00', 728, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21159, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.269569+00', 732, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 2, NULL), +(21160, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.269964+00', 757, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21161, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.224613+00', 826, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21162, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.208633+00', 890, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21163, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.582996+00', 525, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21164, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.582996+00', 531, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(21165, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.479545+00', 716, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 2, NULL), +(21166, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:45.96042+00', 576, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(21167, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.023075+00', 676, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(21168, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:45.952315+00', 881, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(21169, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.089787+00', 834, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(21170, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.525365+00', 510, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21171, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.525365+00', 517, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(21172, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.198864+00', 837, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(21173, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.11886+00', 1206, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(21174, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.2811+00', 1230, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21175, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.554121+00', 964, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21176, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.554121+00', 1006, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(21177, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.2811+00', 1277, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(21178, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.921398+00', 640, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21179, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.033167+00', 650, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21180, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.033167+00', 687, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(21181, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.010126+00', 776, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21182, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.92535+00', 1156, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21183, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.915458+00', 1166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21184, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.744263+00', 1406, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(21185, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.744263+00', 1399, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21186, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.857436+00', 1314, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(21187, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.295125+00', 1184, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21188, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.27093+00', 1278, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21189, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.045206+00', 1550, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21190, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.541473+00', 2096, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21191, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.218151+00', 1532, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21192, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.980175+00', 842, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21193, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.055319+00', 1823, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21194, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.055319+00', 1843, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(21195, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.261476+00', 1647, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21196, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.988362+00', 960, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 14, 2, NULL, 2, NULL), +(21197, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.988153+00', 1025, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21198, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.981537+00', 1252, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21199, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.981864+00', 1312, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21200, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.993155+00', 1398, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21201, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.794543+00', 2601, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21202, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.980586+00', 1431, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21203, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:46.794543+00', 2636, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(21204, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.980586+00', 1473, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(21205, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.075323+00', 486, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21206, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.015289+00', 109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21207, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:17.984515+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21208, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:17.937951+00', 274, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21209, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.017409+00', 261, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21210, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.058256+00', 246, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21211, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.152703+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21212, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.113111+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21213, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.444845+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21214, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.389027+00', 289, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21215, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.509661+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21216, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.501534+00', 242, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21217, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.440961+00', 319, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21218, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.409871+00', 359, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21219, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.506436+00', 273, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21220, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.501776+00', 282, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21221, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.526912+00', 262, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21222, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.630635+00', 53, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21223, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.630386+00', 103, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21224, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.642775+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21225, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.65313+00', 92, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21226, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.613464+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21227, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.665986+00', 97, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21228, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.718731+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21229, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.087492+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21230, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.157632+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21231, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.099958+00', 287, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21232, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:49.999399+00', 390, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21233, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.068898+00', 445, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21234, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.082046+00', 424, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21235, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.098238+00', 424, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21236, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:49.998406+00', 568, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21237, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.120723+00', 479, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21238, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:28.885694+00', 179, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21239, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:28.97926+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21240, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:28.998098+00', 122, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21241, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.071499+00', 89, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21242, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.030399+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21243, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.041296+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21244, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.099894+00', 119, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21245, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:28.970855+00', 268, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21246, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.073222+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21247, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.789411+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21248, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.741485+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21249, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.791861+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21250, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.790346+00', 159, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21251, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.819599+00', 152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21252, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.850407+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21253, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.790086+00', 187, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21254, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.110907+00', 155, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21255, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.182903+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21256, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.169748+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21257, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.109976+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21258, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.157424+00', 249, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21259, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.27873+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21260, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.192089+00', 257, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21261, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.230923+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21262, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.136211+00', 338, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21263, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.879928+00', 89, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21264, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.904923+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21265, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.851559+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21266, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.884411+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21267, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.894353+00', 254, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21268, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.925942+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21269, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.9236+00', 241, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21270, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.657522+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21271, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.680226+00', 203, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21272, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.880326+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21273, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.799121+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21274, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.837277+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21275, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.82352+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21276, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.784259+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21277, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.82698+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21278, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.824449+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21279, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.533361+00', 89, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21280, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.528468+00', 100, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21281, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.541444+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21282, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.484391+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21283, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.55255+00', 155, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21284, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.56577+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21285, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.544729+00', 206, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21286, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.156345+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21287, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.158953+00', 109, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21288, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.123431+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21289, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.196651+00', 178, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21290, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.279217+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21291, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.309879+00', 152, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21292, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.261007+00', 224, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21293, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.256312+00', 239, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21294, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.350289+00', 157, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21295, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.969488+00', 86, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21296, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.988038+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21297, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.034236+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21298, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.082463+00', 137, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21299, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.079541+00', 162, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21300, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.96613+00', 311, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21301, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.121943+00', 207, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21302, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.101115+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21303, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.141046+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21304, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.140989+00', 172, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21305, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.214381+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21306, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.16769+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21307, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.195546+00', 154, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21308, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.255534+00', 100, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21309, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.156339+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21310, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.321172+00', 61, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21311, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.031801+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21312, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.002052+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21313, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.995523+00', 122, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21314, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.034043+00', 161, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21315, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.035077+00', 188, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21316, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.122116+00', 116, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21317, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.146107+00', 109, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21318, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.238517+00', 66, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21319, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.315838+00', 55, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21320, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.249368+00', 154, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21321, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.27407+00', 132, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21322, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.353141+00', 91, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21323, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.392023+00', 83, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21324, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.429551+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21325, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.430562+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21326, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.514165+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21327, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.467313+00', 186, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21328, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.573686+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21329, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.546382+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21330, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.583654+00', 154, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21331, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.528878+00', 215, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21332, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.583221+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21333, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.572318+00', 199, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21334, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.491829+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21335, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.466307+00', 155, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21336, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.48225+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21337, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.553608+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21338, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.554107+00', 141, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21339, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.627637+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21340, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.468686+00', 310, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21341, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.632156+00', 139, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21342, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.598658+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21343, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.359883+00', 64, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21344, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.344665+00', 89, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21345, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.36888+00', 76, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21346, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.37932+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21347, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.351393+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21348, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.370859+00', 93, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21349, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.356202+00', 108, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21350, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.855544+00', 60, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(21351, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.822479+00', 426, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(21352, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.959092+00', 291, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(21353, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.839566+00', 436, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(21354, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.759028+00', 606, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(21355, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.793677+00', 609, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(21356, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.854576+00', 553, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(21357, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.933578+00', 483, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(21358, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.888831+00', 551, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(21359, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.192277+00', 137, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21360, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.207757+00', 170, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21361, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.276715+00', 115, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21362, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.315601+00', 98, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21363, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.276923+00', 158, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21364, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.365524+00', 101, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21365, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.311787+00', 160, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21366, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.01534+00', 92, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(21367, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:40.924653+00', 216, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(21368, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.025577+00', 140, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21369, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:40.987918+00', 198, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(21370, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:40.949806+00', 328, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(21371, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.223889+00', 108, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(21372, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.208739+00', 170, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(21373, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.275928+00', 111, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(21374, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.237944+00', 232, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(21375, X'4214a9c178449f7891a888c635418897a09f57540bfb0155d57a04ad7465960a', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:02.114543+00', 56, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(21376, X'883c4e92009cc1098209b4f4531f43d3e79fe7977200be8bad4b6f4a4607ab32', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:10.893024+00', 53, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21377, X'5217a19a6cf2a7882c672bfe5cfd5b768bddfd2b0446b6d0addb2eec1b81e5b0', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:19.282276+00', 56, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21378, X'5df678165d2c3d4d525b1c29571aaeffe5728936f467947ec54e1034183dfe62', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:24.790426+00', 50, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(21379, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.401301+00', 113, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21380, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.41328+00', 117, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21381, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.402104+00', 139, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21382, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.435019+00', 120, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21383, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.39453+00', 251, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21384, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.703656+00', 114, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21385, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.627417+00', 258, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21386, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.414183+00', 172, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21387, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.346584+00', 246, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21388, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.431591+00', 206, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21389, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.467272+00', 184, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21390, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.447094+00', 211, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21391, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.374452+00', 290, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21392, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.524422+00', 181, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21393, X'91b83edbfa94d26d2c6060aaef97954494fe48f5e5097c3beabb35de54c4d3c2', TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:54.688029+00', 38, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(21394, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.224203+00', 167, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21395, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.274762+00', 124, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21396, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.089816+00', 322, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21397, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.23437+00', 171, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21398, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.100077+00', 413, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21399, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.350518+00', 200, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21400, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.316012+00', 238, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21401, X'89f79e687e69b08b638f844549fdd00f899a5e7b1e881179e5d9919c32ae541b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:18:08.344789+00', 57, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(21402, X'89f79e687e69b08b638f844549fdd00f899a5e7b1e881179e5d9919c32ae541b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:23:13.290719+00', 38, 6, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(21403, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.206638+00', 422, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21404, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.206638+00', 467, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(21405, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.172969+00', 505, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(21406, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.35829+00', 476, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(21407, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.762402+00', 400, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21408, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.638452+00', 844, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21409, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.809084+00', 813, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21410, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.386502+00', 1392, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21411, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.762161+00', 1012, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(21412, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.379983+00', 1395, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(21413, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.466122+00', 1309, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21414, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.386502+00', 1396, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(21415, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.471432+00', 1347, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(21416, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.032647+00', 1147, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21417, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.924443+00', 263, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21418, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.873177+00', 339, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(21419, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.087599+00', 1133, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21420, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.694958+00', 581, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21421, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.041042+00', 1238, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21422, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.041042+00', 1244, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(21423, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.043122+00', 1402, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21424, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.043122+00', 1407, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(21425, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.083989+00', 1419, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21426, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.083989+00', 1427, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(21427, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.084096+00', 1575, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21428, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.202816+00', 481, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21429, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.084096+00', 1614, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(21430, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.67635+00', 1654, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21431, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.67635+00', 1666, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(21432, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.278476+00', 2104, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21433, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.043032+00', 2383, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21434, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.313407+00', 1255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21435, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.576715+00', 1106, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21436, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.20782+00', 1507, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21437, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.576715+00', 1189, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(21438, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.540565+00', 1242, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21439, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.576862+00', 1416, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 20, 3, NULL, 2, NULL), +(21440, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.724245+00', 1308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21441, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.48687+00', 2226, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21442, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.48687+00', 2232, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(21443, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.503754+00', 2299, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21444, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.153056+00', 53, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21445, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.115008+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21446, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.161637+00', 86, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21447, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.161532+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21448, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.217929+00', 58, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21449, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.193452+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21450, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.452409+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21451, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.470136+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21452, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.483497+00', 114, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21453, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.523883+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21454, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.516699+00', 99, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21455, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.539958+00', 85, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21456, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.541985+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21457, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.52247+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21458, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.504386+00', 147, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21459, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.546368+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21460, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.186385+00', 65, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21461, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.186039+00', 67, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21462, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.2325+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21463, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.229133+00', 98, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21464, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.260504+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21465, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.271477+00', 94, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21466, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.260367+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21467, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.535659+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21468, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.572917+00', 48, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21469, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.523113+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21470, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.227778+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21471, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.27061+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21472, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.263297+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21473, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.32032+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21474, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.275943+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21475, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.306687+00', 164, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21476, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:05.687847+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21477, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:05.91409+00', 65, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21478, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:05.90811+00', 99, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21479, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:05.940285+00', 88, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21480, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.626149+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21481, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.629758+00', 71, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21482, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.635932+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21483, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.882593+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21484, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.888203+00', 71, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21485, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.893728+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21486, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.330022+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21487, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.370429+00', 57, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21488, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.331378+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21489, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.375027+00', 74, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21490, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.35751+00', 103, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21491, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.376785+00', 98, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21492, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.395995+00', 57, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21493, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.387197+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21494, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.446922+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21495, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.545201+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21496, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.524194+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21497, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.737296+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21498, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.725319+00', 93, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21499, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.78382+00', 91, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21500, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.773177+00', 168, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21501, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.507635+00', 90, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21502, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.4565+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21503, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.454669+00', 201, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21504, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.543239+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21505, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.542479+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21506, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.581535+00', 126, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21507, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.501322+00', 223, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21508, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.463827+00', 277, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21509, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.445899+00', 324, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21510, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.455003+00', 414, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21511, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.445285+00', 434, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21512, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.485473+00', 419, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21513, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.442865+00', 472, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21514, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.652354+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21515, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.438922+00', 480, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21516, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.628197+00', 313, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21517, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.102015+00', 71, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21518, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.079422+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21519, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.05639+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21520, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.120033+00', 82, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21521, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.056973+00', 158, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21522, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.104971+00', 117, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21523, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.094749+00', 123, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21524, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.198013+00', 126, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21525, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.210412+00', 180, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21526, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.237413+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21527, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.28637+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21528, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.197532+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21529, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.243081+00', 244, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21530, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.21198+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21531, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.342416+00', 224, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21532, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.3699+00', 272, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21533, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.446589+00', 48, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21534, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.446612+00', 139, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21535, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.44852+00', 142, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21536, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.424275+00', 182, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21537, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.472462+00', 138, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21538, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.528051+00', 111, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21539, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.524302+00', 128, 9, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21540, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.45534+00', 143, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21541, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.529275+00', 98, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21542, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.515831+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21543, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.586276+00', 133, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21544, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.536782+00', 190, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21545, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.536641+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21546, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.537962+00', 216, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21547, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.206588+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21548, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.20662+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21549, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.255828+00', 58, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21550, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.250617+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21551, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.235926+00', 89, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21552, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.257836+00', 73, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21553, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.832991+00', 49, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21554, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.839457+00', 73, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21555, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.849513+00', 83, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21556, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.880691+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21557, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.925701+00', 54, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21558, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.911245+00', 73, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21559, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.926474+00', 94, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21560, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.939582+00', 82, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21561, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.880704+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21562, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.921034+00', 116, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21563, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.324994+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21564, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.443672+00', 200, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21565, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.408396+00', 300, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21566, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.454637+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21567, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.455861+00', 286, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21568, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.559503+00', 236, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21569, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.453715+00', 356, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21570, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.443584+00', 381, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21571, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.610307+00', 273, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21572, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:06.942641+00', 100, 9, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21573, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:06.982313+00', 122, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21574, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:06.983898+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21575, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:06.987673+00', 165, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21576, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:06.98242+00', 174, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21577, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.056367+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21578, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:06.988248+00', 199, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21579, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.065754+00', 67, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21580, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.102713+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21581, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.136234+00', 140, 10, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21582, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.188664+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21583, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.194456+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21584, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.175458+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21585, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.356809+00', 85, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21586, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.446455+00', 71, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21587, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.448055+00', 118, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21588, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.649872+00', 98, 6, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21589, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.684228+00', 96, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21590, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.691901+00', 132, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21591, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.653694+00', 227, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21592, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.847966+00', 104, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21593, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.709906+00', 246, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21594, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.642116+00', 319, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21595, X'f08fac32444c03615abd994c45ba3cd0f2125ef19411bd8c17c9f2a42f00e10e', TIMESTAMP WITH TIME ZONE '2022-12-22 08:53:26.359989+00', 64, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21596, X'd523feacdf6a908ce8d0f1234a37826af361a8ec25da81978cc24a8b127e9051', TIMESTAMP WITH TIME ZONE '2022-12-22 08:53:43.384243+00', 80, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21597, X'a301463a8b07a347721a476608e709dda27bde457afc0e34b975ea25d094ce5a', TIMESTAMP WITH TIME ZONE '2022-12-22 08:54:01.588596+00', 159, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21598, X'a301463a8b07a347721a476608e709dda27bde457afc0e34b975ea25d094ce5a', TIMESTAMP WITH TIME ZONE '2022-12-22 08:54:31.129154+00', 51, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21599, X'c252d49aeeca1a34ff3f2f89d27b7fe81d0372c24d0f16087769c3b41aca94d8', TIMESTAMP WITH TIME ZONE '2022-12-22 08:55:09.274125+00', 68, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21600, X'2fe11c4891b266bbb7aa1ad582265955c8eb73cb89897638c6fa7aa794c021ce', TIMESTAMP WITH TIME ZONE '2022-12-22 08:55:46.150319+00', 57, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21601, X'23345e252694eec9ce7c30bb2c152594b16d3f9c2298c2427c41eccd9155372c', TIMESTAMP WITH TIME ZONE '2022-12-22 09:03:25.616333+00', 73, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21602, X'1297e6baf2917e1d261e80ca54e4f3085f977d8d84baf2b29d8b3ce493598185', TIMESTAMP WITH TIME ZONE '2022-12-22 09:03:36.819919+00', 80, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21603, X'1297e6baf2917e1d261e80ca54e4f3085f977d8d84baf2b29d8b3ce493598185', TIMESTAMP WITH TIME ZONE '2022-12-22 09:04:37.863126+00', 137, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21604, X'55bc1f3783b5a05aaa7ebbda6d80920e895ab9056f1c87f6f416bd6aae59814a', TIMESTAMP WITH TIME ZONE '2022-12-22 09:05:04.408296+00', 78, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21605, X'53969a603e6b87b38c3afe9df101c0d91096da952276557a2c6f497dc5551993', TIMESTAMP WITH TIME ZONE '2022-12-22 09:05:15.681815+00', 40, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21606, X'389882cb63f3fc10141b38c95e7ced70ca1b77a48f30bc773fc5beedb7999f94', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:32.035647+00', 9, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(21607, X'389882cb63f3fc10141b38c95e7ced70ca1b77a48f30bc773fc5beedb7999f94', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:33.809607+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21608, X'389882cb63f3fc10141b38c95e7ced70ca1b77a48f30bc773fc5beedb7999f94', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:34.955151+00', 97, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(21609, X'55bc1f3783b5a05aaa7ebbda6d80920e895ab9056f1c87f6f416bd6aae59814a', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:36.305904+00', 352, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21610, X'55bc1f3783b5a05aaa7ebbda6d80920e895ab9056f1c87f6f416bd6aae59814a', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:38.248254+00', 361, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21611, X'55bc1f3783b5a05aaa7ebbda6d80920e895ab9056f1c87f6f416bd6aae59814a', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:39.593128+00', 303, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21612, X'55bc1f3783b5a05aaa7ebbda6d80920e895ab9056f1c87f6f416bd6aae59814a', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:40.933477+00', 423, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21613, X'abc67cae9fc72260949efccb22b90a1d2370426335211ce4826e4ad80fdd9b4a', TIMESTAMP WITH TIME ZONE '2022-12-22 09:34:48.406258+00', 403, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21614, X'b5cf237985d6daaa92f96afd48da608f6c96f38ca0030c2d4c154f1d727b88d6', TIMESTAMP WITH TIME ZONE '2022-12-22 09:59:13.421317+00', 25, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(21615, X'55bc1f3783b5a05aaa7ebbda6d80920e895ab9056f1c87f6f416bd6aae59814a', TIMESTAMP WITH TIME ZONE '2022-12-22 09:59:16.276493+00', 384, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21616, X'f72f26eafd5ff8b088a52f9eb5987bc700ffbdda78a58722926fddb9a3b7ab46', TIMESTAMP WITH TIME ZONE '2022-12-22 09:59:24.827737+00', 548, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21617, X'1077509df60d419364488bf16850fa247551575c306f7c4fe665f43962ee2089', TIMESTAMP WITH TIME ZONE '2022-12-22 09:59:32.697559+00', 427, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21618, X'55f9bd6c26b23f47bec28727b50095fccb4f4bafb062ba3247ba0312b17cc06c', TIMESTAMP WITH TIME ZONE '2022-12-22 10:15:16.672032+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(21619, X'29024728c009bbe872dc9bbe1093edbabb1541225576a096527a94a044dd4114', TIMESTAMP WITH TIME ZONE '2022-12-22 10:15:18.461482+00', 597, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21620, X'29024728c009bbe872dc9bbe1093edbabb1541225576a096527a94a044dd4114', TIMESTAMP WITH TIME ZONE '2022-12-22 10:15:22.322044+00', 440, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21621, X'90fc9691d4cf17feac60d8a02d9ac7b492d22d655de6e6c6cc2924b1d9de51cb', TIMESTAMP WITH TIME ZONE '2022-12-22 10:15:39.899941+00', 437, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21622, X'90fc9691d4cf17feac60d8a02d9ac7b492d22d655de6e6c6cc2924b1d9de51cb', TIMESTAMP WITH TIME ZONE '2022-12-22 10:16:33.644641+00', 349, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21623, X'a706bebaafb810cd70a3e58f4e50f1882f6236ba27ea2351ecc15654ecc63e7f', TIMESTAMP WITH TIME ZONE '2022-12-22 10:16:51.442169+00', 467, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21624, X'dcbc0864324145e03ed7ef9ae5e84fc06e303a41bea3954c53e8011d8a3240bc', TIMESTAMP WITH TIME ZONE '2022-12-22 10:17:18.483191+00', 442, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21625, X'dcbc0864324145e03ed7ef9ae5e84fc06e303a41bea3954c53e8011d8a3240bc', TIMESTAMP WITH TIME ZONE '2022-12-22 10:17:45.557478+00', 475, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21626, X'9df1b7a3e91103e41a9278cedb0a25e836c66f5b1aed3f2ed7dec2fed6a34d3e', TIMESTAMP WITH TIME ZONE '2022-12-22 10:17:53.281745+00', 531, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21627, X'9df1b7a3e91103e41a9278cedb0a25e836c66f5b1aed3f2ed7dec2fed6a34d3e', TIMESTAMP WITH TIME ZONE '2022-12-22 10:18:06.260049+00', 382, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21628, X'90fc9691d4cf17feac60d8a02d9ac7b492d22d655de6e6c6cc2924b1d9de51cb', TIMESTAMP WITH TIME ZONE '2022-12-22 10:20:02.851404+00', 500, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21629, X'90fc9691d4cf17feac60d8a02d9ac7b492d22d655de6e6c6cc2924b1d9de51cb', TIMESTAMP WITH TIME ZONE '2022-12-22 10:20:19.602548+00', 516, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21630, X'a706bebaafb810cd70a3e58f4e50f1882f6236ba27ea2351ecc15654ecc63e7f', TIMESTAMP WITH TIME ZONE '2022-12-22 10:21:27.732847+00', 371, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21631, X'f2a43e5f2826503802541bdf1c6ea1b710e0d84d617085b43a6c9e11710deefa', TIMESTAMP WITH TIME ZONE '2022-12-22 10:21:53.227134+00', 415, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21632, X'ce6c180da18619cd99d29e00d861fdfb0796c9e39af1a0ad6d4f7a2bac7060db', TIMESTAMP WITH TIME ZONE '2022-12-22 10:25:28.262808+00', 381, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21633, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:17.666192+00', 303, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21634, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:17.646484+00', 439, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21635, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:17.965156+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21636, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:17.997711+00', 176, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21637, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.097669+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21638, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.064152+00', 90, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21639, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:17.973138+00', 295, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21640, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:17.945161+00', 337, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21641, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.116764+00', 217, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21642, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.211591+00', 133, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21643, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.436057+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21644, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.313323+00', 272, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21645, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.515262+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21646, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.404415+00', 338, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21647, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.634661+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21648, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.394499+00', 537, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21649, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.656751+00', 388, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21650, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.559554+00', 560, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21651, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.977077+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21652, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.830296+00', 518, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21653, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.73885+00', 625, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(21654, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.830296+00', 533, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(21655, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.945648+00', 433, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(21656, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.503965+00', 1001, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21657, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.136606+00', 441, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21658, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.52446+00', 64, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21659, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.96741+00', 654, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(21660, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.604705+00', 1073, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(21661, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.604705+00', 1071, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21662, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.655948+00', 216, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21663, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.494503+00', 422, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21664, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.559427+00', 533, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21665, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.650162+00', 517, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21666, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.611285+00', 1317, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21667, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.792674+00', 140, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21668, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.477117+00', 459, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21669, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.818322+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21670, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.772681+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21671, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.847338+00', 683, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21672, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.840645+00', 757, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21673, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.761059+00', 876, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21674, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.470667+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21675, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.460431+00', 260, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21676, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.826204+00', 1013, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21677, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.642299+00', 210, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21678, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.644723+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21679, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.014419+00', 1047, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21680, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.014419+00', 1162, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(21681, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.505444+00', 955, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(21682, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.505879+00', 988, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(21683, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.845981+00', 849, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21684, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.396551+00', 1418, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21685, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.641274+00', 1223, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 14, 2, NULL, 2, NULL), +(21686, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.47505+00', 1592, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21687, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.47505+00', 1600, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(21688, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.934005+00', 1322, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21689, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.934213+00', 1325, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21690, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.206649+00', 1076, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(21691, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.206649+00', 1075, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21692, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.174262+00', 1560, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21693, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.979113+00', 905, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21694, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.811709+00', 1187, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21695, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.519561+00', 603, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21696, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.625591+00', 1780, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21697, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.90125+00', 1685, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21698, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.517356+00', 1196, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21699, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.15827+00', 1800, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21700, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.166427+00', 1921, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21701, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.770256+00', 3724, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21702, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:36.927794+00', 166, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21703, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:36.885379+00', 213, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21704, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:36.925441+00', 184, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21705, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:36.98673+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21706, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:36.980498+00', 148, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21707, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.019436+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21708, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:36.971799+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21709, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.038693+00', 172, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21710, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:36.961856+00', 281, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21711, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.507895+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21712, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.526736+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21713, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.529076+00', 151, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21714, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.563205+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21715, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.577929+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21716, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.563077+00', 372, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21717, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.574263+00', 410, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21718, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.862746+00', 114, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21719, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.921271+00', 221, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21720, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.948724+00', 201, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21721, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.967349+00', 210, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21722, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.861657+00', 374, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21723, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.889392+00', 670, 2000, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21724, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.987888+00', 684, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21725, X'f08fac32444c03615abd994c45ba3cd0f2125ef19411bd8c17c9f2a42f00e10e', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:20.199073+00', 544, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21726, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.431746+00', 76, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21727, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.455765+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21728, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.471011+00', 67, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21729, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.471544+00', 78, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21730, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.474979+00', 77, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21731, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.462687+00', 293, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21732, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.462474+00', 307, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21733, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.653143+00', 185, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21734, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.754752+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21735, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.817324+00', 139, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21736, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.782535+00', 180, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21737, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.71409+00', 261, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21738, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.748423+00', 235, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21739, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.722541+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21740, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.921171+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21741, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.764412+00', 291, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21742, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.680731+00', 240, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21743, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.822608+00', 117, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21744, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.815253+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21745, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.924985+00', 167, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21746, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.977419+00', 125, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21747, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.799823+00', 513, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21748, X'0ba977848cea229dc51a2245be95f3091b9212074db7e040aa9a7344ea9b2cd8', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.796535+00', 557, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21749, X'9016fe9e6d7778dd7ae3bbb59c24c477105752b53cf6deb855ca913714622d0f', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:19.107605+00', 35, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21750, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.56155+00', 124, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21751, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.594303+00', 124, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21752, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.584098+00', 152, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21753, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.586772+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21754, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.587132+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21755, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.678162+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21756, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.618329+00', 272, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21757, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.616825+00', 292, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21758, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.718738+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21759, X'a7cca1f91dc4a21770fc0a0323438371ab0963acc06c770400a97868d1710313', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:21.829153+00', 57, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21760, X'f980e7e97e68dd0ecc318da31d167ac5c9013543ddce29553d54726d6acc8710', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:42.008416+00', 34, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21761, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.423937+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21762, X'7202961ea564d54e471ec7535f33d2c590763b92f21263d91d812f160879b07b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.442113+00', 83, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21763, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.461609+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21764, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.450374+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21765, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.459337+00', 89, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21766, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.467125+00', 84, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21767, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.42548+00', 445, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21768, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:03.875042+00', 202, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21769, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.045463+00', 265, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21770, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.047858+00', 297, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21771, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.065031+00', 318, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21772, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:03.940945+00', 445, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21773, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:03.994402+00', 449, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21774, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.170713+00', 283, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21775, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.17002+00', 298, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21776, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.153632+00', 338, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21777, X'18e7cdc92b9caa5f66097d66d7502e5c9af5cd614a16a64b13606eb73e571745', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:05.411188+00', 37, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21778, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.572322+00', 82, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21779, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.573377+00', 133, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21780, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.542716+00', 168, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21781, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.602234+00', 119, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21782, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.661372+00', 85, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21783, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.601118+00', 171, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21784, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.625438+00', 342, 2000, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21785, X'358172363b88def9ed5b71c91d8db73f0a70ca8467f3c84c557df210625d851c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:39.253613+00', 38, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21786, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.625094+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21787, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.586868+00', 165, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21788, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.598863+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21789, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.597562+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21790, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.68004+00', 151, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21791, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.720823+00', 146, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21792, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.693857+00', 398, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21793, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:54.973386+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21794, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.117177+00', 214, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21795, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.045891+00', 351, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21796, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.001966+00', 402, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21797, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:54.998525+00', 405, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21798, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:54.974064+00', 456, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21799, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.368743+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21800, X'a33ba39e62823ca307d50b9c177cce315cea6c13f33ee396ae9822cdfd8acb23', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.465231+00', 45, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21801, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.275646+00', 249, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21802, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.42815+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21803, X'3170e80802c15a541aad29284b8f79ff89e0fe9ff6e2afd62df19362935a2f38', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:23.989767+00', 45, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21804, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.212226+00', 159, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21805, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.188821+00', 285, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21806, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.185165+00', 317, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21807, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.451583+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21808, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.332081+00', 242, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21809, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.296565+00', 306, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21810, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.535406+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21811, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.172657+00', 654, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21812, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.680664+00', 77, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21813, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.716088+00', 166, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21814, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.715553+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21815, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.651169+00', 259, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21816, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.756362+00', 182, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21817, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.175577+00', 132, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21818, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.288197+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21819, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.158634+00', 260, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21820, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.382022+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21821, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.112807+00', 476, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21822, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.232583+00', 392, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21823, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.270941+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21824, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.375403+00', 399, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21825, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.405023+00', 393, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21826, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.69693+00', 243, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21827, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.771817+00', 266, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21828, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.036553+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21829, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.804477+00', 546, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21830, X'aed6953aedb01a980e65e436f6bddce23c7265b2224bd66a4b317639008d153f', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.08638+00', 312, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21831, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.027123+00', 381, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21832, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.915026+00', 517, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21833, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.041174+00', 447, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21834, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.984451+00', 1516, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21835, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.061953+00', 453, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21836, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.133671+00', 406, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21837, X'4267dab015ba43afd5ef56766d302d5aacd958459c3c87ba3c7de76010733831', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:28.872328+00', 87, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21838, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.42584+00', 107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21839, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.438478+00', 221, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21840, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.40784+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21841, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.521994+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21842, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.558045+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21843, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.545126+00', 215, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21844, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.427448+00', 512, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21845, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:36.951439+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21846, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:36.88122+00', 214, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21847, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:36.915802+00', 250, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21848, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.008028+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21849, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.062288+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21850, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.11674+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21851, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.035773+00', 300, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21852, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.073431+00', 280, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21853, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.077194+00', 322, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21854, X'e9dc399961c6ce3552f4e130d4ab97dc6141ace834954c53ddef79bb96b18f57', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:38.192771+00', 38, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21855, X'f7936510d9835996fc126c1bcb5f13dda80f686edf2af6d1ab04bf49aed99480', TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:46.303956+00', 47, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21856, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.424165+00', 44, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21857, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.440205+00', 50, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21858, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.404695+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21859, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.427582+00', 66, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21860, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.434094+00', 74, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21861, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.417417+00', 95, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21862, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.431011+00', 276, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21863, X'eee3f658366c823d1797b986e211ae96a845d69d435d4c83648e0df937644496', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:12.139177+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found '':''.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21864, X'3ebe5be324f12680a55613b3abf9715df3ae0011331caaa9caf101111a842057', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:17.825789+00', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found '':''.', 1, NULL, NULL, NULL, 2, NULL), +(21865, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.685597+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21866, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.714408+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21867, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.669686+00', 127, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21868, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.750618+00', 58, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21869, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.686784+00', 134, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21870, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.707387+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21871, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.726724+00', 113, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21872, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.734023+00', 113, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21873, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.781969+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21874, X'3ce9cdc0acdab0ae094e42f4dc6f29d63d861a07d318b33ca824c182bab65490', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:23.685691+00', 27, 0, TRUE, 'ad-hoc', 'End of file in JSON string.', 1, NULL, NULL, NULL, 2, NULL), +(21875, X'8d02dd347d138c55fd3637a55aa2dc9d8cde64af37b28906cc670beda4c132be', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:25.701857+00', 57, 26, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(21876, X'e75a84bb944a228c1690de7b80a642ad199b2b4193c1b14fe67c458b4e0b2730', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:48.249411+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(21877, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.450281+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21878, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.486462+00', 238, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21879, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.450249+00', 246, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21880, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.533489+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21881, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.535804+00', 218, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21882, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.695839+00', 109, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21883, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.525962+00', 513, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21884, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.068928+00', 65, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21885, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.072791+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21886, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.148958+00', 235, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21887, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.145807+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21888, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.070525+00', 471, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21889, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.044161+00', 499, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21890, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.192349+00', 390, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21891, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.011169+00', 580, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21892, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.210298+00', 426, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21893, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.421722+00', 211, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21894, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.478879+00', 157, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21895, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.441429+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21896, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.374406+00', 292, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21897, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.489493+00', 188, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21898, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.437842+00', 285, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21899, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.846077+00', 108, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21900, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.861063+00', 223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21901, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.879066+00', 232, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21902, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.910301+00', 254, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21903, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.908924+00', 366, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21904, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.934053+00', 429, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21905, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.40128+00', 1076, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21906, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.377452+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21907, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.479152+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21908, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.462157+00', 374, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21909, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.441817+00', 443, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21910, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.601404+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21911, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.504015+00', 628, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21912, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.508863+00', 698, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21913, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.658371+00', 569, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21914, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.571559+00', 725, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21915, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.28287+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21916, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.209056+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21917, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.402385+00', 222, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21918, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.408659+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21919, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.250829+00', 426, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21920, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.371771+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21921, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.599742+00', 200, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.614348+00', 204, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21923, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.706563+00', 1212, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21924, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.608058+00', 329, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21925, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.846698+00', 283, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(21926, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.820251+00', 355, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(21927, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.753846+00', 424, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(21928, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.802897+00', 391, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(21929, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.795687+00', 403, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(21930, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.904147+00', 300, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(21931, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.923996+00', 312, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(21932, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.911528+00', 382, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(21933, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.819253+00', 494, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(21934, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.815797+00', 234, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(21935, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.936714+00', 160, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21936, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.903316+00', 202, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21937, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.892181+00', 253, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21938, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.802081+00', 381, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21939, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.969988+00', 250, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21940, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.806063+00', 645, 2000, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21941, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.730987+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21942, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.733933+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21943, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.780225+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21944, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.758865+00', 189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21945, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.843198+00', 248, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21946, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.839597+00', 260, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21947, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.7838+00', 523, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21948, X'358172363b88def9ed5b71c91d8db73f0a70ca8467f3c84c557df210625d851c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:36.27391+00', 59, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21949, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:43.952713+00', 248, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21950, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.093067+00', 138, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21951, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.06244+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21952, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.137999+00', 194, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21953, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.070064+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21954, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.167186+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21955, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.139107+00', 300, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21956, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.168015+00', 279, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21957, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.176068+00', 308, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21958, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.090412+00', 61, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(21959, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.068871+00', 100, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(21960, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.115108+00', 124, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(21961, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.128144+00', 154, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(21962, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.136362+00', 154, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21963, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.113319+00', 196, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(21964, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.09816+00', 315, 2000, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(21965, X'358172363b88def9ed5b71c91d8db73f0a70ca8467f3c84c557df210625d851c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:59.194955+00', 48, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21966, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:02.977027+00', 168, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21967, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.108832+00', 110, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21968, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.04478+00', 251, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21969, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.17018+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21970, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.056379+00', 389, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21971, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.03871+00', 418, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21972, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.120207+00', 560, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21973, X'1cda669e34925acb72ef713d621988d2fe1d1a1b496e4cdf36684c617db1c40e', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:04.603759+00', 48, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(21974, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.957238+00', 53, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21975, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.956955+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21976, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.923553+00', 110, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21977, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.941335+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21978, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.919532+00', 135, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21979, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.909888+00', 148, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21980, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.979605+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21981, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.930654+00', 147, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21982, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:06.962348+00', 139, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(21983, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.713276+00', 46, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(21984, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.80848+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(21985, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.784083+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(21986, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.822692+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(21987, X'c3af869fdbea5fcef955f623045d77ccaa8a3f523d5d91dc63162039957c53e9', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.811345+00', 109, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(21988, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.831516+00', 132, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(21989, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.75517+00', 414, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(21990, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.815006+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(21991, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.851549+00', 296, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(21992, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.881651+00', 273, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(21993, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.790087+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(21994, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.898332+00', 269, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(21995, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.786123+00', 393, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(21996, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.80742+00', 386, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(21997, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.969212+00', 243, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(21998, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:29.884042+00', 331, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(21999, X'a653b1c2b48e439c4380595a266ff2c316fd08e6105dcd65da02c4aaf0e55567', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:34.470643+00', 55, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(22000, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.616301+00', 71, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(22001, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.615159+00', 167, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(22002, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.606546+00', 217, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22003, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.659225+00', 205, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(22004, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.57333+00', 302, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(22005, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.632131+00', 244, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(22006, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.715686+00', 443, 2000, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(22007, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.84934+00', 48, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22008, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.921985+00', 71, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22009, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.949557+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22010, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.95647+00', 183, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22011, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.977012+00', 239, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22012, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.133944+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22013, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.984169+00', 297, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22014, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.874106+00', 500, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22015, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.154531+00', 353, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22016, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.224341+00', 324, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22017, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.334198+00', 225, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22018, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.353405+00', 223, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22019, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.591296+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22020, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.340659+00', 493, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(22021, X'00f75ece63ad2874a1e0559c9ec78d9c7aa84adcc732daafa7390af5ee1e708c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.336455+00', 587, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(22022, X'ec5414935f0cb901d10e61df8bdd099f7f6f05d16b28ea365129f395bc711f6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.258493+00', 700, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22023, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.674473+00', 419, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22024, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.557045+00', 1572, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22025, X'22195ff56272a0c145017f07275a65abda7234a09b4cffe9695f14d5544c512a', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.796974+00', 400, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(22026, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.352576+00', 933, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(22027, X'87410c7851ad3cb271dab2ce745905aef80d0a74ed7796e97e1d2c7708c1cb3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.203248+00', 1156, 2000, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(22028, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.013401+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22029, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.010971+00', 385, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22030, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.686908+00', 711, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22031, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.691144+00', 754, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22032, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.934124+00', 706, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22033, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.871102+00', 784, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22034, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.828362+00', 876, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(22035, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.096432+00', 689, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22036, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.93439+00', 906, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22037, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.486871+00', 354, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22038, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.738348+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22039, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.722954+00', 238, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22040, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.922469+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22041, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.97753+00', 91, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22042, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.945118+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22043, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.932093+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22044, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.102375+00', 97, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22045, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.124718+00', 108, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22046, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.281734+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22047, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.278262+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22048, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.269637+00', 125, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22049, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.261965+00', 147, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22050, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.326493+00', 119, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22051, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.325077+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22052, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.238234+00', 377, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22053, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.250097+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22054, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.313235+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22055, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.358006+00', 126, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22056, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.355589+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22057, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.317504+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22058, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.449715+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22059, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.501639+00', 187, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22060, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.450565+00', 241, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22061, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.375238+00', 391, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22062, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.770999+00', 52, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22063, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.802096+00', 51, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22064, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.814318+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22065, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.84514+00', 71, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22066, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.910566+00', 70, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22067, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.900732+00', 88, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22068, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.884843+00', 283, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22069, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.305031+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22070, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.418231+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22071, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.436078+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22072, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.488712+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22073, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.435318+00', 192, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22074, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.398669+00', 242, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22075, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.407829+00', 226, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22076, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.488307+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22077, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.489534+00', 173, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22078, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.824448+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22079, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.823454+00', 164, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22080, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.892487+00', 122, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22081, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.898965+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22082, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.898043+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22083, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.869464+00', 216, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22084, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.858975+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22085, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.886685+00', 208, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22086, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.978924+00', 125, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22087, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.176904+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22088, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.210874+00', 309, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22089, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.246271+00', 284, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22090, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.256568+00', 275, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22091, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.238968+00', 315, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22092, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.251442+00', 310, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22093, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.218456+00', 643, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22094, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.484937+00', 421, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(22095, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.44238+00', 497, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(22096, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.611735+00', 780, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(22097, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.968416+00', 436, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(22098, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.598356+00', 830, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(22099, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.753673+00', 697, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(22100, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.828854+00', 696, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22101, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.828854+00', 742, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22102, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.707919+00', 864, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(22103, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.951745+00', 704, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22104, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.829769+00', 946, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22105, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.952055+00', 854, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(22106, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.952055+00', 851, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22107, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.864798+00', 1142, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(22108, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.886479+00', 1197, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22109, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.886479+00', 1202, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(22110, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.115664+00', 977, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22111, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:30.956277+00', 1168, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(22112, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.435042+00', 882, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22113, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.117981+00', 1268, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22114, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.114202+00', 1707, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22115, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.114202+00', 1710, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(22116, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.146539+00', 729, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22117, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.614508+00', 1281, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22118, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.900427+00', 999, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22119, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.129904+00', 1991, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22120, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.634872+00', 1538, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22121, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.694684+00', 1615, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22122, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.694684+00', 1652, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(22123, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.247021+00', 1105, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22124, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.247021+00', 1111, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(22125, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.700222+00', 1690, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22126, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.700222+00', 1699, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(22127, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.01813+00', 1382, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22128, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.769974+00', 1679, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22129, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.550766+00', 1971, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22130, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.269503+00', 1308, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22131, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.137697+00', 2441, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22132, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.548263+00', 1312, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22133, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.587698+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22134, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.565417+00', 224, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22135, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.700832+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22136, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.717255+00', 90, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22137, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.718585+00', 89, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22138, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.742482+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22139, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.718495+00', 137, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22140, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.717157+00', 151, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22141, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.623486+00', 274, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22142, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.763389+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22143, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.709781+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22144, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.612028+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22145, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.640768+00', 278, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22146, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.640858+00', 290, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22147, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.779756+00', 157, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22148, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.72204+00', 366, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22149, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.65693+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22150, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.644764+00', 182, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22151, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.611938+00', 221, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22152, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.71376+00', 148, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22153, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.686653+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22154, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.774173+00', 123, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22155, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.716306+00', 191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22156, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.780051+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22157, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.723687+00', 218, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22158, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.749246+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22159, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.749202+00', 198, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22160, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.833801+00', 124, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22161, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.854252+00', 124, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22162, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.788255+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22163, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.899694+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22164, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.825925+00', 353, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22165, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.614017+00', 311, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22166, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.636602+00', 434, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22167, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.675927+00', 426, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22168, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.776753+00', 328, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22169, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.769775+00', 344, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22170, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.018963+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22171, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.770216+00', 472, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22172, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.886223+00', 534, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22173, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.932982+00', 583, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22174, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.883543+00', 652, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22175, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.860149+00', 689, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22176, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.159641+00', 395, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22177, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.945872+00', 621, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22178, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.970499+00', 622, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22179, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.056342+00', 594, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22180, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.717257+00', 1238, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22181, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.414232+00', 554, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22182, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.561869+00', 566, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22183, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.755493+00', 402, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22184, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.974313+00', 185, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22185, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.652206+00', 549, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22186, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.038302+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22187, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.618647+00', 645, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22188, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.62414+00', 636, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22189, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.814177+00', 446, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22190, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.969362+00', 317, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22191, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.108835+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22192, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.090397+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22193, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.099005+00', 271, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22194, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.642697+00', 762, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22195, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.106589+00', 310, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22196, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.023945+00', 574, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22197, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.179078+00', 83, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22198, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.293876+00', 154, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22199, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.302909+00', 156, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22200, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.329232+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22201, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.210691+00', 317, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22202, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.310917+00', 250, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22203, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.415024+00', 180, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22204, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.385613+00', 234, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22205, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.515419+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22206, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.537119+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22207, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.531146+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22208, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.344955+00', 423, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22209, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.658161+00', 98, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22210, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.540106+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22211, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.619411+00', 173, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22212, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.170231+00', 914, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22213, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.499881+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22214, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.520556+00', 244, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22215, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.529507+00', 281, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22216, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.64888+00', 206, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22217, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.619593+00', 265, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22218, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.671057+00', 221, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22219, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.717252+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22220, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.675705+00', 248, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22221, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.69401+00', 271, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22222, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.636482+00', 378, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22223, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.605969+00', 411, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22224, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.676402+00', 333, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22225, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.737472+00', 318, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22226, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.759557+00', 312, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22227, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.734817+00', 372, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22228, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.500705+00', 621, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22229, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.098644+00', 78, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22230, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.112363+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22231, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.132097+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22232, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.237929+00', 149, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22233, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.207021+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22234, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.125732+00', 316, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22235, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.095394+00', 347, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22236, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.241746+00', 261, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22237, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.20607+00', 303, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22238, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.226766+00', 362, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22239, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.247916+00', 361, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22240, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.343575+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22241, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.361161+00', 272, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22242, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.477422+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22243, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.120664+00', 525, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22244, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.133198+00', 669, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22245, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.359604+00', 478, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22246, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.662047+00', 236, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22247, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.68118+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22248, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.633915+00', 362, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22249, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.814035+00', 190, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22250, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.701924+00', 311, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22251, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.701952+00', 333, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22252, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.744526+00', 304, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22253, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.869515+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22254, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.693019+00', 384, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22255, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.772432+00', 368, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22256, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.737348+00', 413, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22257, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.718207+00', 437, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22258, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.905134+00', 260, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22259, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.056379+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22260, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.750101+00', 758, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22261, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.070638+00', 69, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22262, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.077093+00', 78, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22263, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.130296+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22264, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.10135+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22265, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.336144+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22266, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.137308+00', 325, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22267, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.338242+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22268, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.434149+00', 102, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22269, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.198317+00', 366, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22270, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.37696+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22271, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.512495+00', 159, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22272, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.501341+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22273, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.546884+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22274, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.409331+00', 301, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22275, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.571285+00', 194, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22276, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.076962+00', 782, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22277, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.692559+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22278, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.75568+00', 149, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22279, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.786029+00', 133, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22280, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.831925+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22281, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.967544+00', 97, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22282, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.822348+00', 250, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22283, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.94995+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22284, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.707084+00', 386, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22285, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.79196+00', 328, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22286, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.988212+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22287, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.754963+00', 401, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22288, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.990059+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22289, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.990724+00', 199, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22290, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.810147+00', 373, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22291, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.978128+00', 228, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22292, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.967977+00', 443, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22293, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.375761+00', 418, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22294, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.385696+00', 422, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22295, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.358054+00', 507, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22296, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.799305+00', 87, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22297, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.657079+00', 297, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22298, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.467958+00', 568, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22299, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.867626+00', 270, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22300, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.85054+00', 343, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22301, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.930255+00', 286, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22302, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.041491+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22303, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.988152+00', 312, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22304, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.846947+00', 507, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22305, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.870952+00', 486, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22306, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.933517+00', 418, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22307, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.970486+00', 455, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22308, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.706655+00', 763, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22309, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.289044+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22310, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.177114+00', 274, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22311, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.330759+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22312, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.300276+00', 226, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22313, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.191394+00', 351, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22314, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.366672+00', 197, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22315, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.412895+00', 200, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22316, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.25991+00', 546, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22317, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.481713+00', 325, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22318, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.370042+00', 445, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22319, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.301621+00', 569, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22320, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.561324+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22321, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.466164+00', 412, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22322, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.549301+00', 351, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22323, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.528759+00', 402, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22324, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.350468+00', 791, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22325, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.307554+00', 243, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22326, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.356105+00', 256, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22327, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.181351+00', 430, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22328, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.375512+00', 231, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22329, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.383238+00', 235, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22330, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.438582+00', 261, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22331, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.269151+00', 430, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22332, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.419191+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22333, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.422308+00', 342, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22334, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.446484+00', 395, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22335, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.75051+00', 139, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22336, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.494721+00', 450, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22337, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.562653+00', 413, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22338, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.407012+00', 569, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22339, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.453501+00', 528, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22340, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.490273+00', 848, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22341, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.384748+00', 117, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22342, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.36909+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22343, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.4867+00', 344, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22344, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.78966+00', 146, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22345, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.746386+00', 197, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22346, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.461707+00', 482, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22347, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.722953+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22348, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.708637+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22349, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.584767+00', 452, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22350, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.547556+00', 592, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22351, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.545567+00', 600, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22352, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.74618+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22353, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.746052+00', 452, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22354, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.802287+00', 410, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22355, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.698649+00', 536, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22356, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.486542+00', 1092, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22357, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.26123+00', 153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22358, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.202992+00', 272, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22359, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.262171+00', 233, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22360, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.390123+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22361, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.376582+00', 172, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22362, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.394084+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22363, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.493484+00', 160, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22364, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.470154+00', 194, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22365, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.422553+00', 245, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22366, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.474239+00', 194, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22367, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.370096+00', 311, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22368, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.48817+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22369, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.39691+00', 299, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22370, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.316973+00', 390, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22371, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.237764+00', 475, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22372, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.476271+00', 237, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22373, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.248403+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22374, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.292558+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22375, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.291902+00', 405, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22376, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.722263+00', 138, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22377, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.33415+00', 556, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22378, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.40282+00', 562, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22379, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.392876+00', 557, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22380, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.772041+00', 251, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22381, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.695602+00', 365, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22382, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.825682+00', 361, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22383, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.74667+00', 455, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22384, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.893369+00', 321, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22385, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.937467+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22386, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.705073+00', 536, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22387, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.954122+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22388, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.394417+00', 1048, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22389, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.365498+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22390, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.411146+00', 96, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22391, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.469976+00', 131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22392, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.480054+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22393, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.501336+00', 220, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22394, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.528136+00', 214, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22395, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.523034+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22396, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.441499+00', 341, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22397, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.601003+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22398, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.623047+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22399, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.466534+00', 365, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22400, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.44644+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22401, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.573506+00', 314, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22402, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.638201+00', 260, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22403, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.7544+00', 206, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22404, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.531109+00', 554, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22405, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.377606+00', 364, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22406, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.419292+00', 352, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22407, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.394432+00', 433, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22408, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.273763+00', 559, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22409, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.618324+00', 334, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22410, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.338054+00', 661, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22411, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.618074+00', 431, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22412, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.447069+00', 749, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22413, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.645317+00', 612, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22414, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.768624+00', 570, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22415, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.541972+00', 871, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22416, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.87505+00', 532, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22417, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.550159+00', 878, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22418, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.618459+00', 857, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22419, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.340667+00', 1166, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22420, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.93987+00', 571, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22421, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.137106+00', 125, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22422, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.156919+00', 346, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22423, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.1534+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22424, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.339328+00', 209, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22425, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.353532+00', 416, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22426, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.369928+00', 402, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22427, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.68825+00', 123, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22428, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.523042+00', 331, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22429, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.56657+00', 297, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22430, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.610725+00', 271, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22431, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.689971+00', 289, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22432, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.670056+00', 309, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22433, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.702144+00', 280, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22434, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.812427+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22435, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.680592+00', 362, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22436, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.210086+00', 997, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22437, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.110783+00', 404, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22438, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.402054+00', 294, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22439, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.517242+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22440, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.397418+00', 353, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22441, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.373215+00', 385, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22442, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.50012+00', 345, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22443, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.466853+00', 422, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22444, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.465966+00', 493, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22445, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.597411+00', 511, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22446, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.651374+00', 470, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22447, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.635791+00', 495, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22448, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.640962+00', 521, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22449, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.552705+00', 598, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22450, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.868367+00', 342, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22451, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.562143+00', 658, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22452, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.420428+00', 831, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22453, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:05.748962+00', 184, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22454, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:05.821937+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22455, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:05.791454+00', 313, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22456, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:05.954424+00', 334, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22457, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.096864+00', 225, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22458, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.149298+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22459, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.070416+00', 279, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22460, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.090675+00', 317, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22461, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.131958+00', 283, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22462, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.136108+00', 295, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22463, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.004336+00', 445, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22464, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.022588+00', 455, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22465, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.089383+00', 402, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22466, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.294778+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22467, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.246164+00', 312, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22468, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:05.81064+00', 1031, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22469, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.533523+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22470, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.578204+00', 204, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22471, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.542113+00', 360, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22472, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.753591+00', 152, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22473, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.831249+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22474, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.774962+00', 339, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22475, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.853055+00', 303, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22476, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.792232+00', 359, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22477, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.709382+00', 508, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22478, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.867522+00', 400, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22479, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.792562+00', 484, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22480, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.966729+00', 319, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22481, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.006355+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22482, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.918177+00', 442, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22483, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.737805+00', 728, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22484, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.132506+00', 346, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22485, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.85036+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22486, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.88742+00', 195, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22487, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.879933+00', 228, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22488, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.751905+00', 357, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22489, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.832801+00', 294, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22490, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.974774+00', 387, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(22491, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.891001+00', 488, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22492, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.93499+00', 523, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(22493, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.854119+00', 644, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(22494, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.065967+00', 506, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(22495, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.043364+00', 541, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(22496, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.211823+00', 553, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(22497, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.086691+00', 853, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(22498, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.257201+00', 738, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22499, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.702555+00', 322, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22500, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.656652+00', 367, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22501, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.742168+00', 324, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22502, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.895631+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22503, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.670367+00', 442, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22504, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.832461+00', 403, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22505, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.388563+00', 1086, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22506, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.388563+00', 1105, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(22507, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.924085+00', 586, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22508, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.399942+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22509, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.086821+00', 674, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22510, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.080678+00', 705, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22511, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.283097+00', 518, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22512, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.283404+00', 583, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22513, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.261145+00', 640, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22514, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.675725+00', 1232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22515, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.262539+00', 667, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22516, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.046718+00', 1531, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22517, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:26.818162+00', 310, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22518, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:26.90007+00', 285, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22519, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.045175+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22520, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.018214+00', 243, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22521, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.078652+00', 292, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22522, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:26.876188+00', 512, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22523, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.093695+00', 299, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22524, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:26.885113+00', 518, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22525, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.156841+00', 329, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22526, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.099726+00', 423, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22527, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:26.932174+00', 631, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22528, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.024407+00', 558, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22529, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.10447+00', 485, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22530, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.217602+00', 375, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22531, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.198259+00', 417, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22532, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.145407+00', 653, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22533, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.909521+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22534, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.887144+00', 300, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22535, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.563921+00', 708, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22536, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.623835+00', 699, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22537, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.897158+00', 435, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22538, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.055809+00', 435, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22539, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.171781+00', 364, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22540, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.944448+00', 599, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22541, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.880883+00', 690, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22542, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.089862+00', 517, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22543, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.157689+00', 536, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22544, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.436439+00', 294, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22545, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.090258+00', 676, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22546, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.880602+00', 910, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22547, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.065445+00', 731, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22548, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:56.891438+00', 1281, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22549, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.49658+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22550, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.525895+00', 72, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22551, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.519826+00', 95, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22552, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.538438+00', 120, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22553, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.538103+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22554, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.545637+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22555, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.552891+00', 394, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22556, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.849448+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22557, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.77772+00', 296, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22558, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.752765+00', 325, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22559, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.944326+00', 161, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22560, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.987864+00', 202, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22561, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.939996+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22562, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.839136+00', 364, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22563, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.896859+00', 312, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22564, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:28.769411+00', 448, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22565, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:56.517007+00', 632, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22566, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:56.860388+00', 293, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22567, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:56.879596+00', 290, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22568, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:56.73446+00', 548, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22569, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:56.909743+00', 467, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22570, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.320238+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22571, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.259608+00', 223, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22572, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.255541+00', 240, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22573, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.103031+00', 413, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22574, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.132069+00', 408, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22575, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.518817+00', 104, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22576, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.212316+00', 422, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22577, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.130663+00', 515, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22578, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.119194+00', 528, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22579, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.301443+00', 378, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22580, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:56.829406+00', 1057, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22581, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.479979+00', 503, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22582, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.637579+00', 355, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22583, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.597229+00', 413, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22584, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.732043+00', 333, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22585, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.793917+00', 305, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22586, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.052848+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22587, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.949672+00', 291, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22588, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.947483+00', 303, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22589, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.999688+00', 292, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22590, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.053672+00', 329, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22591, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.970067+00', 436, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22592, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.952382+00', 465, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22593, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.989288+00', 436, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22594, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.507364+00', 940, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22595, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.04092+00', 411, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22596, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.993413+00', 459, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22597, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.607408+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22598, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.718076+00', 148, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22599, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.709554+00', 239, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22600, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.735377+00', 229, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22601, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.819501+00', 192, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22602, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.734453+00', 283, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22603, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.905416+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22604, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.855828+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22605, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.873342+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22606, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.833155+00', 230, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22607, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.833539+00', 235, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22608, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.919997+00', 171, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22609, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.916602+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22610, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.936734+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22611, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.918591+00', 199, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22612, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.617788+00', 706, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22613, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.47933+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22614, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.491361+00', 59, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22615, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.503872+00', 85, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22616, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.653439+00', 118, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22617, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.519085+00', 280, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22618, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.637502+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22619, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.69714+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22620, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.778087+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22621, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.556322+00', 345, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22622, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.782761+00', 134, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22623, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.737589+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22624, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.76853+00', 161, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22625, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.742722+00', 202, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22626, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.902253+00', 82, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22627, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.874714+00', 122, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22628, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.498395+00', 578, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22629, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.324073+00', 214, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22630, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.396293+00', 250, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22631, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.516931+00', 202, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22632, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.505359+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22633, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.322994+00', 426, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22634, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.515358+00', 278, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22635, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.448607+00', 358, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22636, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.625604+00', 239, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22637, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.515024+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22638, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.424025+00', 481, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22639, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.683001+00', 263, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22640, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.915709+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22641, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.820764+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22642, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.891171+00', 137, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22643, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.856953+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22644, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.537126+00', 626, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22645, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.226139+00', 364, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22646, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.458597+00', 177, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22647, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.592397+00', 78, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22648, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.42764+00', 286, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22649, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.42764+00', 297, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22650, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.485289+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22651, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.450323+00', 311, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22652, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.427703+00', 373, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22653, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.461078+00', 343, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22654, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.429308+00', 384, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22655, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.638602+00', 199, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22656, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.630349+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22657, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.646223+00', 244, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22658, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.429087+00', 517, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22659, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.658653+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22660, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.539112+00', 551, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22661, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.367829+00', 411, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22662, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.335043+00', 555, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22663, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.366158+00', 545, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22664, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.731248+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22665, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.626871+00', 349, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22666, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.784856+00', 225, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22667, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.630054+00', 442, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22668, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.826101+00', 282, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22669, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.752567+00', 386, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22670, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.747381+00', 427, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22671, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.570386+00', 614, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22672, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.625798+00', 554, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22673, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.758092+00', 506, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22674, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.731242+00', 534, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22675, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.775754+00', 533, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22676, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.694183+00', 777, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22677, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.318217+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22678, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.391796+00', 338, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22679, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.386806+00', 404, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22680, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.378122+00', 590, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22681, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.665136+00', 331, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22682, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.790753+00', 221, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22683, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.820304+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22684, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.806878+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22685, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.891565+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22686, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.799183+00', 290, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22687, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.688627+00', 425, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22688, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.338122+00', 781, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22689, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.738388+00', 391, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22690, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.814184+00', 381, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22691, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.820388+00', 378, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22692, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.765242+00', 866, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22693, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.672312+00', 162, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22694, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.416401+00', 493, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22695, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.442838+00', 585, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22696, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.40286+00', 696, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22697, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.745789+00', 421, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22698, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.535664+00', 639, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22699, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.800413+00', 374, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22700, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.885567+00', 318, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22701, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.996872+00', 360, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22702, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.006285+00', 397, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22703, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.999427+00', 399, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22704, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.031445+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22705, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.136019+00', 290, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22706, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.97534+00', 459, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22707, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.562262+00', 913, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22708, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.394586+00', 1156, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22709, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.226032+00', 366, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22710, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.434205+00', 405, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22711, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.479202+00', 463, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22712, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.870487+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22713, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.300864+00', 722, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22714, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.351906+00', 678, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22715, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.478221+00', 587, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22716, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.797211+00', 278, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22717, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.797474+00', 325, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22718, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.519031+00', 613, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22719, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.478364+00', 669, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22720, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.819541+00', 336, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22721, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.976909+00', 183, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22722, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.04315+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22723, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.798395+00', 404, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22724, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.419514+00', 1057, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22725, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.439892+00', 144, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22726, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.290767+00', 334, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22727, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.434115+00', 303, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22728, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.490998+00', 267, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22729, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.210649+00', 549, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22730, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.215071+00', 569, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22731, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.495046+00', 377, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22732, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.62809+00', 347, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22733, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.662637+00', 418, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22734, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.804242+00', 299, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22735, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.547395+00', 594, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22736, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.767553+00', 372, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22737, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.731864+00', 425, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22738, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.708977+00', 526, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22739, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.762594+00', 489, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22740, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.440033+00', 968, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22741, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.478022+00', 461, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22742, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.303573+00', 660, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22743, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.647359+00', 399, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22744, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.620602+00', 428, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22745, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.5246+00', 554, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22746, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.676929+00', 432, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22747, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.655211+00', 467, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22748, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.86111+00', 275, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22749, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.982302+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22750, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.992099+00', 307, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22751, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.957559+00', 356, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22752, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.004395+00', 281, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22753, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.894531+00', 464, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22754, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.034042+00', 328, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22755, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.970272+00', 402, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22756, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.61995+00', 810, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22757, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.425082+00', 186, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22758, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.203829+00', 407, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22759, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.273074+00', 392, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22760, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.546088+00', 185, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22761, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.539071+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22762, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.478039+00', 345, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22763, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.608279+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22764, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.456477+00', 513, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22765, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.640796+00', 345, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22766, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.869004+00', 154, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22767, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.707707+00', 324, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22768, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.779823+00', 266, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22769, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.952674+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22770, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.798797+00', 294, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22771, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.598815+00', 515, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22772, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.551213+00', 850, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22773, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.481267+00', 209, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22774, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.570404+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22775, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.354074+00', 369, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22776, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.473354+00', 268, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22777, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.428917+00', 312, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22778, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.463322+00', 302, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22779, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.464041+00', 317, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22780, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.522418+00', 307, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22781, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.627058+00', 234, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22782, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.520527+00', 367, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22783, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.58239+00', 336, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22784, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.596857+00', 358, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22785, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.438373+00', 525, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22786, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.818704+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22787, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.813785+00', 210, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22788, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.502545+00', 602, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22789, X'1c94333724449ab83581dd4bbc65b9ab4e3816cca73a2d9c0d884a52b3cb5f29', TIMESTAMP WITH TIME ZONE '2022-12-22 13:21:30.961882+00', 469, 2000, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(22790, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:24.94211+00', 54, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(22791, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.078856+00', 34, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(22792, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.227533+00', 72, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(22793, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.262983+00', 69, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(22794, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.233173+00', 113, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(22795, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:24.950622+00', 419, 2000, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(22796, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.207291+00', 183, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(22797, X'19082e30288b0fe16c03d5bab3c3a9b3927cabd1872c8561e0ad12e6e3035cb9', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:35.739578+00', 37, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22798, X'a653b1c2b48e439c4380595a266ff2c316fd08e6105dcd65da02c4aaf0e55567', TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:44.215852+00', 83, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(22799, X'453f4dc9b4318774abbbd5d0dcb73747c0ef9e1ab9888b87e8fb9042c11bbc8f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:25:20.985002+00', 48, 26, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22800, X'ae22b9910716a75660fd0cc1f59199f93e22b6a9586a52d2a0fdbda538b15d6f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:26:04.243323+00', 57, 26, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22801, X'3743817337d0f2d526439c217bdf74a832d664e1964bc3e87db8e8b7611028ab', TIMESTAMP WITH TIME ZONE '2022-12-22 13:26:39.791518+00', 65, 26, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22802, X'06b19b02c8795ad3714c9a611e186321c94c4fa16e4cc3b328d86394b02a74f9', TIMESTAMP WITH TIME ZONE '2022-12-22 13:28:04.367857+00', 65, 26, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22803, X'fbb0b237deff980c37ed62abed42ed240caa5403370fdfc96a9f72d36a250078', TIMESTAMP WITH TIME ZONE '2022-12-22 13:28:18.609285+00', 279, 0, TRUE, 'ad-hoc', 'Command failed with error 241 (ConversionFailure): ''$dateFromString requires that ''dateString'' be a string, found: date with value 2020-02-02T00:00:00.000Z'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671715695, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$dateFromString requires that ''dateString'' be a string, found: date with value 2020-02-02T00:00:00.000Z", "code" : 241, "codeName" : "ConversionFailure", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671715695, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "+wSuLnWFXDy4WyvG/4BbQMWPDuQ=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(22804, X'fbb0b237deff980c37ed62abed42ed240caa5403370fdfc96a9f72d36a250078', TIMESTAMP WITH TIME ZONE '2022-12-22 13:28:23.064285+00', 213, 0, TRUE, 'ad-hoc', 'Command failed with error 241 (ConversionFailure): ''$dateFromString requires that ''dateString'' be a string, found: date with value 2020-02-02T00:00:00.000Z'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671715695, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$dateFromString requires that ''dateString'' be a string, found: date with value 2020-02-02T00:00:00.000Z", "code" : 241, "codeName" : "ConversionFailure", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671715695, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "+wSuLnWFXDy4WyvG/4BbQMWPDuQ=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(22805, X'83caf2d10780b4c3b4647774853291c0b8cee2bea0fe0b21b16a557cdc247154', TIMESTAMP WITH TIME ZONE '2022-12-22 13:28:46.377573+00', 1369, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22806, X'ca4121624fced32d5e9e603eae04534a7c3f460461a44fbe018542746d4d2688', TIMESTAMP WITH TIME ZONE '2022-12-22 13:29:01.814294+00', 336, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22807, X'299850568c8ca6e2e620dc89b71debb495c2ce44b86f67adeb718cb250b635cb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:29:17.98208+00', 61, 0, TRUE, 'ad-hoc', 'Command failed with error 17390 (Location17390): ''$group does not support inclusion-style expressions'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671715755, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$group does not support inclusion-style expressions", "code" : 17390, "codeName" : "Location17390", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671715755, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "cULVO8HGTYnFTVeSxAIPQqd1BN0=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(22808, X'd91551b5eea8e4bbd908934b41f295b4219de9a9902338a2b51e589ab38741a5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:30:07.276946+00', 1580, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22809, X'c5cb7ad37199404e02b9d5461de20f292075e7f6d7cc5c7bfaa075c7b9ca9ec3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:04.352751+00', 1359, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(22810, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.498928+00', 312, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22811, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.498928+00', 335, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(22812, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.611564+00', 539, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22813, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.642204+00', 522, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(22814, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.611564+00', 566, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(22815, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.799249+00', 541, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(22816, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.731617+00', 773, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(22817, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.793473+00', 738, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22818, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.140322+00', 487, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22819, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.802622+00', 839, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(22820, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.596563+00', 1335, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22821, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.14233+00', 783, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22822, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.596563+00', 1338, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(22823, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.452737+00', 608, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22824, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.399607+00', 728, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(22825, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.323191+00', 802, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22826, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.323191+00', 812, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(22827, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.443457+00', 771, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22828, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.854323+00', 373, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22829, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.518401+00', 742, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 21, 3, NULL, 2, NULL), +(22830, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.513817+00', 785, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22831, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.566061+00', 919, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22832, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.670666+00', 869, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22833, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.90968+00', 754, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(22834, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.085311+00', 640, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22835, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.958764+00', 793, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22836, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.314988+00', 517, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(22837, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.351786+00', 498, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22838, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.291156+00', 664, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22839, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.357867+00', 797, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(22840, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.44228+00', 884, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22841, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.44228+00', 910, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(22842, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.500855+00', 878, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22843, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.473788+00', 895, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22844, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.007706+00', 2883, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22845, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.197594+00', 317, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22846, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.381728+00', 450, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22847, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.555222+00', 318, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22848, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.227613+00', 647, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22849, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.588675+00', 317, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22850, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.409091+00', 499, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22851, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.293741+00', 698, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22852, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.670856+00', 346, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22853, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.452436+00', 628, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22854, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.919831+00', 285, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22855, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.555428+00', 668, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22856, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.916297+00', 338, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22857, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.907508+00', 381, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22858, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.815454+00', 524, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22859, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.945998+00', 456, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22860, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.280527+00', 1252, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22861, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.248604+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22862, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.248548+00', 149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22863, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.239089+00', 198, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22864, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.257723+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22865, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.272675+00', 232, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22866, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.272204+00', 444, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22867, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.6342+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22868, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.492616+00', 293, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22869, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.627864+00', 279, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22870, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.79073+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22871, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.789849+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22872, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.832693+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22873, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.76531+00', 809, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22874, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.791302+00', 870, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22875, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.843025+00', 819, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22876, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.236077+00', 1522, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22877, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.041528+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22878, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.115849+00', 168, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22879, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.230288+00', 202, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22880, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.067545+00', 384, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22881, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.350063+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22882, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.045271+00', 481, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22883, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.232694+00', 343, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22884, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.466509+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22885, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.399483+00', 258, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22886, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.485526+00', 222, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22887, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.470516+00', 289, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22888, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.534425+00', 269, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22889, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.582367+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22890, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.457362+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22891, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.54023+00', 282, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22892, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.134288+00', 835, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22893, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.457483+00', 370, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22894, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.589121+00', 303, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22895, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.564699+00', 405, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22896, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.443427+00', 569, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22897, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.556783+00', 469, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22898, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.783126+00', 282, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22899, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.470522+00', 613, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22900, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.958336+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22901, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.824587+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22902, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.889379+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22903, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.986143+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22904, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.956748+00', 236, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22905, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.048861+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22906, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.103124+00', 143, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22907, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.451788+00', 815, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22908, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.031201+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22909, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.686759+00', 91, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22910, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.66496+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22911, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.706845+00', 152, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22912, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.669373+00', 186, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22913, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.72991+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22914, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.747788+00', 157, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22915, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.805457+00', 158, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22916, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.196658+00', 74, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22917, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.196231+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22918, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.17093+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22919, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.274835+00', 223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22920, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.189755+00', 346, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22921, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.386835+00', 151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22922, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.435238+00', 114, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22923, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.214763+00', 361, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22924, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.374009+00', 455, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22925, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.064896+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22926, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.023943+00', 186, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22927, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.064824+00', 361, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22928, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.377547+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22929, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.098748+00', 384, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22930, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.098615+00', 410, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22931, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.459316+00', 320, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22932, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.380202+00', 413, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22933, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.385484+00', 411, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22934, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.443456+00', 464, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22935, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.597492+00', 343, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22936, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.317093+00', 610, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22937, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.532136+00', 430, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22938, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.635977+00', 325, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22939, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.578868+00', 413, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22940, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.016604+00', 979, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22941, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.772353+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22942, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.665373+00', 274, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22943, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.648215+00', 270, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22944, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.63716+00', 289, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22945, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.667308+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22946, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.736571+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22947, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.75997+00', 304, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22948, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.754119+00', 333, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22949, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.832724+00', 291, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22950, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.894798+00', 249, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22951, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.950062+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22952, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.968184+00', 244, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22953, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.980369+00', 236, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22954, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.021594+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22955, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.992697+00', 250, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22956, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.708767+00', 608, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22957, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.762809+00', 231, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22958, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.687019+00', 450, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22959, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.860898+00', 340, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22960, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.954258+00', 438, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22961, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.966679+00', 458, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22962, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.151444+00', 289, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22963, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.087363+00', 373, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22964, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.102087+00', 401, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22965, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.818559+00', 698, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22966, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.076735+00', 530, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22967, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.337853+00', 299, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22968, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.953707+00', 679, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22969, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.4325+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22970, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.117631+00', 572, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(22971, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.488211+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22972, X'be606b0197b55149af0e9c7d5d546e9ca1d62e95a242e76fe36843c046da1b50', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.872642+00', 980, 2000, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22973, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.678069+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22974, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.656012+00', 277, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22975, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.749903+00', 312, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22976, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.858622+00', 261, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(22977, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.767268+00', 365, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22978, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.997165+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22979, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.825153+00', 343, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22980, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.817265+00', 422, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(22981, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.84959+00', 518, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22982, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.980913+00', 402, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(22983, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.107652+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(22984, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.987384+00', 456, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(22985, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.955344+00', 487, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22986, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.92576+00', 525, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(22987, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.860576+00', 595, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22988, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.811609+00', 650, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22989, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.842261+00', 81, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(22990, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.906943+00', 229, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(22991, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.8934+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(22992, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.876501+00', 377, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(22993, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.888689+00', 442, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(22994, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.848035+00', 512, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(22995, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.958675+00', 424, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(22996, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.894876+00', 560, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(22997, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.958967+00', 536, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(22998, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.26521+00', 226, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(22999, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.236083+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23000, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.947874+00', 711, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23001, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.926441+00', 749, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23002, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.858704+00', 820, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23003, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.843977+00', 836, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23004, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.350652+00', 347, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23005, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.041571+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23006, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.11916+00', 307, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23007, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.1671+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23008, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.17353+00', 445, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23009, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.187765+00', 434, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23010, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.077545+00', 548, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23011, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.349285+00', 349, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23012, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.337703+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23013, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.269537+00', 478, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23014, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.130133+00', 628, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23015, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.604189+00', 238, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23016, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.468391+00', 397, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23017, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.397145+00', 474, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23018, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.194085+00', 717, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23019, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.268921+00', 657, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23020, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.718437+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23021, X'e14c9148f0c62d58288580e41612657712178954e114f2dbe15ac87f60436b08', TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:46.616126+00', 2394, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23022, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.451715+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23023, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.43814+00', 275, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23024, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.369477+00', 538, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23025, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.392663+00', 606, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23026, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.456277+00', 563, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23027, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.442651+00', 620, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23028, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.656738+00', 431, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23029, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.840396+00', 263, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23030, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.986814+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23031, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.432041+00', 740, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23032, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.768052+00', 502, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23033, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.872581+00', 401, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23034, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.811743+00', 480, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23035, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.766763+00', 527, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23036, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.815407+00', 479, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23037, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.972631+00', 335, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23038, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:49.72249+00', 324, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23039, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.011269+00', 251, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23040, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:49.963118+00', 259, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23041, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.038072+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23042, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.056193+00', 325, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23043, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.007592+00', 373, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23044, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.194561+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23045, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:49.96738+00', 433, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23046, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.13006+00', 285, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23047, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.125361+00', 305, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23048, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.055532+00', 380, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23049, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.268559+00', 231, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23050, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.145631+00', 363, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23051, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.134268+00', 402, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23052, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.287699+00', 316, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23053, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.140718+00', 466, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23054, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.573204+00', 205, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23055, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.627858+00', 190, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23056, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.549765+00', 334, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23057, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.528812+00', 368, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23058, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.593011+00', 403, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23059, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.56953+00', 464, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23060, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.849129+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23061, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.949587+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23062, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.780836+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23063, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.064576+00', 88, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23064, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.807077+00', 379, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23065, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.878145+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23066, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.928907+00', 321, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23067, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.091788+00', 160, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23068, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.078566+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23069, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.993776+00', 311, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23070, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.431395+00', 124, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23071, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.665783+00', 335, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23072, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.570033+00', 550, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23073, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.710541+00', 521, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23074, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.857855+00', 439, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23075, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.519524+00', 776, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23076, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.854539+00', 445, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23077, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.733457+00', 584, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23078, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.823982+00', 547, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23079, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.946036+00', 439, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23080, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.992257+00', 469, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23081, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.089265+00', 373, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23082, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.956386+00', 535, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23083, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.111397+00', 447, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23084, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.980965+00', 641, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23085, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.029653+00', 606, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23086, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.251064+00', 49, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23087, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.255714+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23088, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.239847+00', 132, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23089, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.31017+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23090, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.256389+00', 200, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23091, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.264055+00', 228, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23092, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.274438+00', 247, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23093, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.584616+00', 47, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23094, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.507735+00', 137, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23095, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.580756+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23096, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.617168+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23097, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.677483+00', 113, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23098, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.686452+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23099, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.709756+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23100, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.655431+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23101, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.723177+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23102, X'b50555d6bf708144e0d86e32784e2ab51bc5ae087dbd06b1c5b782022a015fc7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:20.184917+00', 1777, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23103, X'659e801f7f0ef2035c54ba361fd4314a84a96a275df6fbd19f4ba097381da407', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:38.222122+00', 1641, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23104, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.747122+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23105, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.724104+00', 343, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23106, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.864994+00', 225, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23107, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.991614+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23108, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.897033+00', 241, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23109, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.969149+00', 181, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23110, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.969288+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23111, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.018308+00', 161, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23112, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.974085+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23113, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.994854+00', 213, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23114, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.899007+00', 330, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23115, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.065229+00', 170, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23116, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.980188+00', 258, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23117, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.152011+00', 91, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23118, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.015365+00', 236, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23119, X'006a001bc45a399a030f8262a4bf258c14f46a02665242e61da84f78ceac56b7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:49.982803+00', 294, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23120, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.227144+00', 342, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23121, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.25975+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23122, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.261439+00', 395, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23123, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.242663+00', 435, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23124, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.402285+00', 258, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23125, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.23422+00', 477, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23126, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.309361+00', 408, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23127, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.506344+00', 251, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23128, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.600569+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23129, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.538066+00', 300, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23130, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.247924+00', 599, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23131, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.536882+00', 327, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23132, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.586437+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23133, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.593357+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23134, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.68477+00', 234, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23135, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.692563+00', 230, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23136, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.147175+00', 215, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23137, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.226458+00', 271, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23138, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.177223+00', 327, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23139, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.214458+00', 339, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23140, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.169269+00', 402, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23141, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.40412+00', 222, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23142, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.383905+00', 291, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23143, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.222136+00', 460, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23144, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.570241+00', 185, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23145, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.604329+00', 134, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23146, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.563627+00', 225, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23147, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.640545+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23148, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.621762+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23149, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.534966+00', 328, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23150, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.474606+00', 397, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23151, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.596955+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23152, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.48996+00', 208, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23153, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.557914+00', 276, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23154, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.611617+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23155, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.683057+00', 274, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23156, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.5299+00', 470, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23157, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.786683+00', 288, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23158, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.802785+00', 308, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23159, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.033228+00', 177, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23160, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.955671+00', 258, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23161, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.068986+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23162, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.660668+00', 574, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23163, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.043585+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23164, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.969127+00', 284, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23165, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.051539+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23166, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.903869+00', 378, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23167, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.968454+00', 322, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23168, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:42.930618+00', 291, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(23169, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:42.965096+00', 244, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(23170, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:42.811797+00', 416, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(23171, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:42.984452+00', 268, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(23172, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.025516+00', 331, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(23173, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.023638+00', 444, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(23174, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.489573+00', 144, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(23175, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.557938+00', 158, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(23176, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.527354+00', 429, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(23177, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.420367+00', 230, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23178, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.450546+00', 273, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23179, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.426058+00', 314, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23180, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.444909+00', 316, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23181, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.551772+00', 245, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23182, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.445773+00', 354, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23183, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.038445+00', 91, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23184, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.630072+00', 221, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23185, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.570486+00', 325, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23186, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.565981+00', 339, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23187, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.760696+00', 152, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23188, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.590051+00', 388, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23189, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.542329+00', 438, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23190, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.514217+00', 466, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23191, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.588383+00', 453, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23192, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.551963+00', 495, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23193, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.477934+00', 589, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23194, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.592797+00', 467, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23195, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.717866+00', 377, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23196, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.760729+00', 332, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23197, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.635592+00', 468, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23198, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.049235+00', 89, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23199, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.028438+00', 146, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23200, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.857016+00', 68, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23201, X'00f75ece63ad2874a1e0559c9ec78d9c7aa84adcc732daafa7390af5ee1e708c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.869551+00', 80, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23202, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.905499+00', 49, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23203, X'ec5414935f0cb901d10e61df8bdd099f7f6f05d16b28ea365129f395bc711f6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.89678+00', 85, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23204, X'22195ff56272a0c145017f07275a65abda7234a09b4cffe9695f14d5544c512a', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.911864+00', 129, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23205, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.915734+00', 132, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23206, X'bb0059f5aa601a17d36d5df6ff2472f74bbac8784d3ff0d99900b20a8e2899e4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.898254+00', 1580, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23207, X'c1517b8af3d77ec1b328517e9a8972abef5950b1be669636d77fd063b2d37ea4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:02.795248+00', 234, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23208, X'e700db1f9f312efd042a7b0e7cb4fc95e681c96e2ee89d56ba22c98e9d7dea0e', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:02.958663+00', 94, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23209, X'8cb2d526ebb40748b745529bf95654b5ea345d81066171d60be693c1bd40e299', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:02.95627+00', 142, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23210, X'773b8fd01aad63423e53f035678c1dc07ce5f54bf7545519db0c8dd3bc04ef56', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:02.962269+00', 157, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23211, X'188494a6b0e3f5c5a92cc36ac0a57f47f51b116c5d163269d7bd1ee41684412e', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.023082+00', 126, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23212, X'142af1e37439732f116f3acd22b2fef36535c27aed1225693317dd19e369ef01', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:02.963573+00', 188, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23213, X'cf8b406797575a5b504c12280ed50661aa6d474fcb81e95eb15254a075522948', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.090192+00', 93, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23214, X'2405c3fc069e8019fbfbc66c76391429ad7eb6a7ee332167d1d3bc3515388810', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.009117+00', 205, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23215, X'139b5daef338b5441cbac04893fe856eeccbb673c39c1af3411688ae75db2be5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.000612+00', 242, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23216, X'00d44c7360d177cb9dc43b206205daa887517e70b76a33bfd947a08b87c80815', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.102694+00', 140, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23217, X'87fb6475edf47bbc6f5726c3eb2d1628d5a92fda502d58e67731102f1cf8a55e', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.104852+00', 194, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23218, X'5575c148091b28ab9cddf71a8a8644ca3fb43e27e506815347df615b6fa6e019', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.133021+00', 222, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23219, X'a9a4361330fcd8e85a7723e1005b4e3ceaeef2ee6b07b6210e47f19384549716', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.072244+00', 300, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23220, X'91f5ed072e7035e6b7f4ba9381db042bfb3d44f96e260b1e11afa597cf34de96', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.350075+00', 113, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23221, X'63332bd9638547e5377728d5376d175afc52c36be0482d276b8c83412553b680', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:15.545576+00', 182, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(23222, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.566076+00', 193, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23223, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.600275+00', 179, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23224, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.698006+00', 164, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23225, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.611909+00', 255, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23226, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.647872+00', 212, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23227, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.621508+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23228, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.620503+00', 279, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23229, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.832607+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23230, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.718402+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23231, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.780793+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23232, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.848457+00', 143, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23233, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.774053+00', 217, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23234, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.759187+00', 262, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23235, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.835543+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23236, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.836412+00', 226, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23237, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.789949+00', 280, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23238, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.71349+00', 207, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23239, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.785599+00', 185, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23240, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.78887+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23241, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.720833+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23242, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.69329+00', 413, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23243, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.937573+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23244, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.990858+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23245, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.640612+00', 499, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23246, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.76791+00', 386, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23247, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.945248+00', 248, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23248, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.941018+00', 282, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23249, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.037174+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23250, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.971807+00', 314, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23251, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.03648+00', 250, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23252, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.042416+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23253, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.04523+00', 264, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23254, X'aa5a77e0d67d6f0fa04127c1d348436d5c5f45a9d038258762d1b28888d1fe63', TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:51.779816+00', 136, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23255, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.806535+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23256, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.723123+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23257, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.769428+00', 203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23258, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.757768+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23259, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.704959+00', 287, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23260, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.730452+00', 283, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23261, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.677919+00', 380, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23262, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.547448+00', 586, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23263, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.859153+00', 315, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23264, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.87491+00', 314, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23265, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.506138+00', 695, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23266, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.859287+00', 353, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23267, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.713322+00', 509, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23268, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.000497+00', 254, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23269, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.893764+00', 358, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23270, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.95443+00', 312, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23271, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.319161+00', 388, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23272, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.267524+00', 527, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23273, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.409238+00', 392, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23274, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.662897+00', 188, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23275, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.404366+00', 429, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23276, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.658251+00', 266, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23277, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.494156+00', 453, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23278, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.860119+00', 123, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23279, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.895752+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23280, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.982324+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23281, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.829563+00', 317, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23282, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.985327+00', 268, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23283, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.982324+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23284, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.948142+00', 330, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23285, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.046891+00', 257, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23286, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.947494+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23287, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.034619+00', 107, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23288, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:18.979327+00', 294, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23289, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.062814+00', 336, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23290, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.048737+00', 384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23291, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.074031+00', 364, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23292, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:18.991856+00', 461, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23293, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:18.995862+00', 469, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23294, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:18.998028+00', 490, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23295, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.320189+00', 170, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23296, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.41413+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23297, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.496461+00', 74, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23298, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.122276+00', 443, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23299, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.390552+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23300, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.471539+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23301, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.352385+00', 268, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23302, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.398048+00', 229, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23303, X'ec566a4f8c40f2f8bb49716f576a3b1b2b4990d40116386a9fcf1cc7a19f0b34', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:26.192384+00', 76, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23304, X'aa5a77e0d67d6f0fa04127c1d348436d5c5f45a9d038258762d1b28888d1fe63', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:30.936339+00', 118, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23305, X'6e6f9ac8c7b9385dc2e9507a948cb2c4fe0310fb061169b4dc0863de7ee823b2', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:38.250204+00', 195, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23306, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.434185+00', 194, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23307, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.457358+00', 229, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23308, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.431597+00', 317, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23309, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.440638+00', 321, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23310, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.495958+00', 336, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23311, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.542453+00', 300, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23312, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.292089+00', 558, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23313, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.457505+00', 414, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23314, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.638536+00', 254, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23315, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.662246+00', 249, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23316, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.641076+00', 272, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23317, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.510783+00', 421, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23318, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.467773+00', 464, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23319, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.498918+00', 444, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23320, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.383725+00', 559, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23321, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.702067+00', 257, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23322, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.576253+00', 197, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23323, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.655367+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23324, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.670469+00', 118, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23325, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.552231+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23326, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.668226+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23327, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.706063+00', 119, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23328, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.712653+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23329, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.739061+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23330, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.697547+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23331, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.673063+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23332, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.762503+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23333, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.712653+00', 180, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23334, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.702242+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23335, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.708741+00', 213, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23336, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.693427+00', 231, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23337, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.684749+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23338, X'81d99571e6776a36e172400309580f91bfe3eaabdba5a8bab5be298ae76b5861', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:22.015817+00', 1779, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23339, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.116436+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23340, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.221664+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23341, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.244285+00', 380, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23342, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.243989+00', 396, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23343, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.254007+00', 342, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23344, X'c8bf52c96455f22fc42be93df1791f17486193e412254aaaeb98024ca4771c53', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.267127+00', 393, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23345, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.211751+00', 564, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23346, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.262653+00', 526, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23347, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.262814+00', 528, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23348, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.24369+00', 572, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23349, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.361392+00', 475, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23350, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.357672+00', 743, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23351, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.207592+00', 950, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23352, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.265982+00', 965, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23353, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.29199+00', 948, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23354, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.381002+00', 902, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23355, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:58.621397+00', 119, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23356, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:58.919207+00', 114, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23357, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:58.838748+00', 209, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23358, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:58.997469+00', 79, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23359, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:59.050227+00', 94, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23360, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:59.05318+00', 157, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23361, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:58.628824+00', 1620, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23362, X'f234d62e57b43fb0c749b26b997362067121544b564af6dae21bd779fd6f27f4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:03.880409+00', 9, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 9, NULL, NULL, 2, NULL), +(23363, X'3e9e22a83985d681b77523fe75a82834fe75f5c4aceb97428a7e23a662ee0b35', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:15.166399+00', 8, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 9, NULL, NULL, 2, NULL), +(23364, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.221169+00', 89, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23365, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.334828+00', 601, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23366, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.534262+00', 441, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23367, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.527618+00', 502, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23368, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.363335+00', 684, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23369, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.514275+00', 688, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23370, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.897155+00', 589, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23371, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.956838+00', 547, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23372, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.699175+00', 992, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23373, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.590697+00', 1114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23374, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.950336+00', 758, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23375, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.124498+00', 605, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23376, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.911769+00', 839, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23377, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.186251+00', 591, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23378, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.157168+00', 717, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23379, X'5aeb6b28ca18765ae452dedc3917a9b6634ce9ff298e17155e52a0948f93b460', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:18.497537+00', 2567, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(23380, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.602472+00', 2742, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23381, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.422595+00', 194, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23382, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.51346+00', 167, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23383, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.583927+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23384, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.586932+00', 274, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23385, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.650129+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23386, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.496157+00', 454, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23387, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.514151+00', 468, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23388, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.653683+00', 367, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23389, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.583927+00', 506, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23390, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.77131+00', 327, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23391, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.499659+00', 622, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23392, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.650132+00', 494, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23393, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.779302+00', 372, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23394, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.505794+00', 649, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23395, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.590087+00', 567, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23396, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.571031+00', 2428, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23397, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.764294+00', 77, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23398, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.779233+00', 69, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23399, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.791327+00', 69, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23400, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.787475+00', 86, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23401, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.77309+00', 109, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23402, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.783498+00', 98, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23403, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.79365+00', 1426, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23404, X'f234d62e57b43fb0c749b26b997362067121544b564af6dae21bd779fd6f27f4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:02.279923+00', 7, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 9, NULL, NULL, 2, NULL), +(23405, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.422061+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23406, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.445147+00', 214, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23407, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.441461+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23408, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.553953+00', 208, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23409, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.633065+00', 146, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23410, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.482713+00', 317, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23411, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.63665+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23412, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.609622+00', 214, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23413, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.744051+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23414, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.622142+00', 266, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23415, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.695673+00', 213, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23416, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.569333+00', 436, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23417, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.517602+00', 493, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23418, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.583943+00', 447, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23419, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.661896+00', 382, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23420, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.633167+00', 1754, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23421, X'00cd4983c832fcde3597af9c0bff83695e460cb3d2df889dd20f7ff531311d1e', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:24.133215+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(23422, X'909f9410392cbb046eca091ae8a6873684032be7b4e9ac3b20edb71f31012c57', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:40.15986+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(23423, X'5d9a9a94b3faf6c2dd75edf0d24c20145f1f12960fdddc1804531aa969c6ec32', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:43.358169+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(23424, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.48176+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23425, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.501916+00', 562, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23426, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.675259+00', 479, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23427, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.682009+00', 496, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23428, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.926184+00', 266, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23429, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.90034+00', 339, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23430, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.828053+00', 475, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23431, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.970047+00', 386, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23432, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.069529+00', 287, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23433, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.96565+00', 424, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23434, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.96818+00', 438, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23435, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.858586+00', 634, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23436, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.89273+00', 614, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23437, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.254658+00', 262, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23438, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.231729+00', 294, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23439, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.493335+00', 2265, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23440, X'5d9a9a94b3faf6c2dd75edf0d24c20145f1f12960fdddc1804531aa969c6ec32', TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:56.798874+00', 71, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(23441, X'109f1be0fb2a3c930f1ee190c4a94d69837104662cc49b33728b163ea682f20e', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:15.710668+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(23442, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.652977+00', 185, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23443, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.758257+00', 192, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23444, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.699106+00', 269, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23445, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.659565+00', 354, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23446, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.76607+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23447, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.709877+00', 390, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23448, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.904137+00', 216, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23449, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.90006+00', 223, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23450, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.894637+00', 226, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23451, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.774609+00', 351, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23452, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.694289+00', 439, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23453, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.902125+00', 242, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23454, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.887562+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23455, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.888595+00', 266, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23456, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.752268+00', 414, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23457, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.707739+00', 1529, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23458, X'5d9a9a94b3faf6c2dd75edf0d24c20145f1f12960fdddc1804531aa969c6ec32', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:39.557321+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(23459, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.140393+00', 234, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23460, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.050387+00', 346, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23461, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.152734+00', 247, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23462, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.229083+00', 268, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23463, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.099449+00', 452, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23464, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.236783+00', 445, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23465, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.431517+00', 258, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23466, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.242048+00', 523, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23467, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.526801+00', 357, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23468, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.510326+00', 388, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23469, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.571586+00', 332, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23470, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.333537+00', 637, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23471, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.379534+00', 629, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23472, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.802626+00', 272, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23473, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.530941+00', 592, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23474, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.127078+00', 2500, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23475, X'04027dd5cdea8320f60ad632cbd7c500aed24af379e947c1898dae8798cbf091', TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:53.981484+00', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 2, NULL), +(23476, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.09736+00', 76, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23477, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.076105+00', 133, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23478, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.088412+00', 192, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23479, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.176292+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23480, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.254134+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23481, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.280351+00', 123, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23482, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.108988+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23483, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.102432+00', 329, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23484, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.195459+00', 235, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23485, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.287251+00', 159, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23486, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.347808+00', 98, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23487, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.262444+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23488, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.292016+00', 189, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23489, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.336664+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23490, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.382364+00', 137, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23491, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.095354+00', 1513, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23492, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.416375+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23493, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.337995+00', 146, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23494, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.359489+00', 210, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23495, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.472723+00', 141, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23496, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.491405+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23497, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.479048+00', 149, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23498, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.552501+00', 116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23499, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.464115+00', 227, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23500, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.545753+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23501, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.49946+00', 219, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23502, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.642068+00', 100, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23503, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.533718+00', 214, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23504, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.648955+00', 106, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23505, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.55332+00', 217, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23506, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.642204+00', 134, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23507, X'e7d6385a561692af40dca5fb90223777f6161f8a565102cca46ef845b414abc4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.36397+00', 1460, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23508, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:18.99625+00', 220, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23509, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.120637+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23510, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.111252+00', 327, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23511, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.324098+00', 166, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23512, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.033783+00', 462, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23513, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.040066+00', 491, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23514, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:18.998831+00', 545, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23515, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.430248+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23516, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.328577+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23517, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.319374+00', 274, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23518, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.282847+00', 374, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23519, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.326927+00', 342, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23520, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.386024+00', 302, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23521, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.386024+00', 308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23522, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.122587+00', 592, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23523, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.320955+00', 423, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23524, X'4405c9ec2192b9acd3b8620e522df0df65eacb011f13b5d3e2f38567561b24bf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.677327+00', 1316, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(23525, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.28781+00', 82, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23526, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.309917+00', 60, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23527, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.297258+00', 81, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23528, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.284322+00', 119, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23529, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.281989+00', 128, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23530, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.313335+00', 132, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23531, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.319213+00', 238, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23532, X'00f75ece63ad2874a1e0559c9ec78d9c7aa84adcc732daafa7390af5ee1e708c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.469781+00', 131, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23533, X'22195ff56272a0c145017f07275a65abda7234a09b4cffe9695f14d5544c512a', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.489763+00', 121, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23534, X'ec5414935f0cb901d10e61df8bdd099f7f6f05d16b28ea365129f395bc711f6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.474143+00', 156, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23535, X'e6552311093167a108d0d2dd1d58ae2c76a0d22fe043c19db988702728dac9e7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.467886+00', 212, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23536, X'847c8ce43dce72a9984e1ddb2c28b386f8120b6a129716b52483d096d382b7ee', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.472846+00', 250, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23537, X'c26156fd2393d38efc47a559f8abe526de5c028342228acfc203d6a905ee5c57', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.46895+00', 261, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23538, X'70c43c04d3b99013d2925fea0aec25d89e2af1d17ba33dcdde5aabcf0be3685f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.509712+00', 1870, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23539, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.437853+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23540, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.433092+00', 187, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23541, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.432842+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23542, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.437803+00', 253, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23543, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.434142+00', 301, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23544, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.469617+00', 274, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23545, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.45584+00', 343, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23546, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.665869+00', 183, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23547, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.64848+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23548, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.741556+00', 140, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23549, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.673934+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23550, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.665703+00', 258, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23551, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.685503+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23552, X'00d44c7360d177cb9dc43b206205daa887517e70b76a33bfd947a08b87c80815', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.828662+00', 134, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23553, X'a9a4361330fcd8e85a7723e1005b4e3ceaeef2ee6b07b6210e47f19384549716', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.810212+00', 152, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23554, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.743606+00', 235, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23555, X'91f5ed072e7035e6b7f4ba9381db042bfb3d44f96e260b1e11afa597cf34de96', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.871927+00', 119, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23556, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.768508+00', 261, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23557, X'5575c148091b28ab9cddf71a8a8644ca3fb43e27e506815347df615b6fa6e019', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.865758+00', 182, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23558, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.825476+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23559, X'87fb6475edf47bbc6f5726c3eb2d1628d5a92fda502d58e67731102f1cf8a55e', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.890645+00', 176, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23560, X'2405c3fc069e8019fbfbc66c76391429ad7eb6a7ee332167d1d3bc3515388810', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.895201+00', 173, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23561, X'412a4085f875151255b14caf51c88c0ed2f05f2a386c22634fd60f51301e801e', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.858281+00', 278, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23562, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.112361+00', 92, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23563, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.113523+00', 153, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23564, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.138083+00', 177, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23565, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.143094+00', 166, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23566, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.137565+00', 189, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23567, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.170193+00', 183, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23568, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.139515+00', 329, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23569, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.364171+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23570, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.420361+00', 383, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23571, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.397351+00', 437, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23572, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.398044+00', 470, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23573, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.455029+00', 405, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23574, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.735986+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23575, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.543445+00', 411, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23576, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.763256+00', 276, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23577, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.730307+00', 369, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23578, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.79245+00', 328, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23579, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.749326+00', 386, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23580, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.745727+00', 397, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23581, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.823441+00', 380, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23582, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.768064+00', 451, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23583, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.876621+00', 345, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23584, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.608376+00', 642, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23585, X'86f8d28781137892a90754f93dd3ce646f7a4c5bf1b119b3b36de4e916be28f0', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:27.578521+00', 235, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(23586, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.340154+00', 384, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23587, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.464754+00', 315, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23588, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.382216+00', 429, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23589, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.606213+00', 264, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23590, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.482142+00', 501, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23591, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.606149+00', 382, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23592, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.447493+00', 532, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23593, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.729412+00', 355, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23594, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.586761+00', 515, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23595, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.606224+00', 498, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23596, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.48208+00', 644, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23597, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.730014+00', 430, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23598, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.856909+00', 304, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23599, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.455489+00', 835, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23600, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.86917+00', 464, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23601, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.697917+00', 643, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23602, X'69d73d93e610c087b1bf260a684e155549ee6850ddaa1af2e34bb45dfa688e85', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:02.29289+00', 183, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23603, X'7d9dbd3cc860f512235cc584930fea51111f7f3485f72ede6243086741510e4b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:12.854923+00', 181, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(23604, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.673458+00', 346, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23605, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.729493+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23606, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.731839+00', 344, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23607, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.911011+00', 169, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23608, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.699557+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23609, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.953649+00', 178, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23610, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.990459+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23611, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.966712+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23612, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.913386+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23613, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.905977+00', 251, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23614, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.920817+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23615, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.94134+00', 241, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23616, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.037672+00', 151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23617, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.06113+00', 133, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23618, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:18.93841+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23619, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.001744+00', 285, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23620, X'3fc46b294cd19166725e556a3bf3a1c795498acc5a1fd1e7b652e708c3d6be6d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:20.683703+00', 180, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(23621, X'2e72f1f3aa0112dcd3b07ecd8076c9f18c19c5e698557d60519df13ddac28308', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:26.123488+00', 143, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23622, X'92b341f61374c2692879460e4b0cd21634fdf7265394dff87eb5e63688e9e18f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:37.501931+00', 16, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23623, X'92b341f61374c2692879460e4b0cd21634fdf7265394dff87eb5e63688e9e18f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:40.761618+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(23624, X'285e1aac76ba44da27a403a78a1cfefc8f33347890b1eafb38ab245fabee7eb7', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:42.693331+00', 235, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23625, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.636523+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23626, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.568023+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23627, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.624178+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23628, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.636422+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23629, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.695627+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23630, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.607272+00', 177, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23631, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.666436+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23632, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.60241+00', 190, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23633, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.674897+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23634, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.68559+00', 150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23635, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.684593+00', 154, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23636, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.664044+00', 186, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23637, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.657435+00', 205, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23638, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.765522+00', 104, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23639, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.70869+00', 164, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23640, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.668105+00', 325, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23641, X'3079d0b2650de366bae224a4488945d1f7436b1a6bb0af578418cb77b8323d23', TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:57.352575+00', 251, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23642, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.593642+00', 370, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23643, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.574521+00', 485, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23644, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.934349+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23645, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.726993+00', 424, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23646, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.709432+00', 481, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23647, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.921536+00', 271, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23648, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.846849+00', 394, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23649, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.74844+00', 496, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23650, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.727851+00', 512, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23651, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.795677+00', 545, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23652, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.750686+00', 631, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23653, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.820298+00', 572, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23654, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.037447+00', 360, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23655, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.66685+00', 724, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23656, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.779432+00', 640, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23657, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.712558+00', 717, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23658, X'de3fa94887a7287b8566393ebd31ddeaf756e15f6d380a65ea20fa720032cfbe', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:24.404353+00', 256, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23659, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.066401+00', 202, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23660, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.350648+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23661, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.239496+00', 226, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23662, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.287307+00', 222, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23663, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.255839+00', 285, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23664, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.287264+00', 265, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23665, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.265177+00', 308, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23666, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.361994+00', 241, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23667, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.40513+00', 188, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23668, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.326299+00', 294, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23669, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.298151+00', 357, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23670, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.250121+00', 421, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23671, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.338526+00', 359, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23672, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.324644+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23673, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.329493+00', 413, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23674, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.245739+00', 505, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23675, X'c6be86cd5924ea1545aed5c351c6b56bb89ca792dca1fcf225d57aa34544ed09', TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:50.979025+00', 198, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23676, X'14619ebabaa10d23d7c0c4f6eedfafd99456e4613965067f10d2e59fabed2ff2', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:00.846852+00', 148, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23677, X'334b2e59e33b1bdf10082fe8a93a52dcef14d5bf4d9e45c8134dfae9be26a93f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:13.155243+00', 206, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23678, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.776802+00', 228, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23679, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.826113+00', 236, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23680, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.601942+00', 495, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23681, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.874034+00', 286, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23682, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.846067+00', 326, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23683, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.81466+00', 466, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23684, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.806777+00', 516, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23685, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.777339+00', 583, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23686, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.917196+00', 470, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23687, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.860078+00', 526, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23688, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.868907+00', 522, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23689, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.916484+00', 497, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23690, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.896645+00', 520, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23691, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.861871+00', 564, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23692, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.837335+00', 577, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23693, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:18.864857+00', 596, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23694, X'85830da00ddf6b7e55e304426c197a3d49a662f7999580f43095f447851497af', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:47.497611+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(23695, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.228427+00', 350, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23696, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.22638+00', 554, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23697, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.629392+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23698, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.58026+00', 317, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23699, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.46203+00', 459, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23700, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.614426+00', 302, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23701, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.399348+00', 530, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23702, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.409246+00', 525, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23703, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.581278+00', 357, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23704, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.650487+00', 314, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23705, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.690541+00', 305, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23706, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.39558+00', 628, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23707, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.745396+00', 285, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23708, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.543334+00', 512, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23709, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.618182+00', 441, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23710, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.71202+00', 352, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23711, X'6e6f9ac8c7b9385dc2e9507a948cb2c4fe0310fb061169b4dc0863de7ee823b2', TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:52.177328+00', 415, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23712, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.005008+00', 95, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23713, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:10.982722+00', 179, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23714, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.001532+00', 190, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23715, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.00158+00', 350, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23716, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.133489+00', 259, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23717, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.124886+00', 271, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23718, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.112212+00', 289, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23719, X'86f8d28781137892a90754f93dd3ce646f7a4c5bf1b119b3b36de4e916be28f0', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:15.952708+00', 207, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(23720, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.153314+00', 62, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23721, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.175049+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23722, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.17159+00', 144, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23723, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.214285+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23724, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.1689+00', 196, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23725, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.161928+00', 217, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23726, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.24099+00', 164, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23727, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.302026+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23728, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.341414+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23729, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.14241+00', 332, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23730, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.356006+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23731, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.373143+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23732, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.392116+00', 117, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23733, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.368748+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23734, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.38378+00', 144, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23735, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.432773+00', 96, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23736, X'96d4605b5a932a009c38c2ca4461dd221f4ca04f12b8bca726b666e595fbc4d4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:25.915046+00', 167, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23737, X'df18fd98a2cfe5a739910e6812759cd999a7ca0782c39d2094ceeed36b24ae52', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:45.5298+00', 259, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23738, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.354724+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23739, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.445925+00', 86, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23740, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.332234+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23741, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.434862+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23742, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.457401+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23743, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.510184+00', 87, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23744, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.430736+00', 174, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23745, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.460353+00', 152, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23746, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.475263+00', 144, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23747, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.485983+00', 157, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23748, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.469235+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23749, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.482402+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23750, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.435684+00', 250, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23751, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.364876+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23752, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.486023+00', 205, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23753, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.470121+00', 285, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23754, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.379783+00', 165, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23755, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.405018+00', 318, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23756, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.392653+00', 412, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23757, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.425771+00', 464, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23758, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.446815+00', 420, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23759, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.387399+00', 661, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23760, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.422271+00', 764, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23761, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.025099+00', 234, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23762, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.872755+00', 474, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23763, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.068651+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23764, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.968068+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23765, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.024719+00', 351, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23766, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.968764+00', 563, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23767, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.942754+00', 594, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23768, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.943351+00', 617, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23769, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.958769+00', 600, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23770, X'f2780daa1b37a60d2020072c8776f9d1ba3e09afdc58d15b1a69f27d61707db4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:45.798799+00', 191, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23771, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.255013+00', 315, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23772, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.469382+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23773, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.392874+00', 267, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23774, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.428772+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23775, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.32371+00', 412, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23776, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.392375+00', 353, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23777, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.318569+00', 431, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23778, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.293085+00', 469, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23779, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.355543+00', 408, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23780, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.48644+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23781, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.33505+00', 441, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23782, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.391087+00', 412, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23783, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.493179+00', 312, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23784, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.670715+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23785, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.28541+00', 545, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23786, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.43906+00', 525, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23787, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.302683+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23788, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.320413+00', 154, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23789, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.323043+00', 301, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23790, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.361384+00', 397, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23791, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.363194+00', 426, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23792, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.450808+00', 370, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23793, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.42372+00', 411, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23794, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.400246+00', 483, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23795, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.671824+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23796, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.426612+00', 500, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23797, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.368699+00', 577, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23798, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.419278+00', 530, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23799, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.474068+00', 494, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23800, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.349208+00', 637, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23801, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.415413+00', 573, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23802, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.454985+00', 539, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23803, X'4c6d6f89cbc74c2279ae11eb522046faca8fa776844b95b6a3d596ee474effd6', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:44.494837+00', 153, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23804, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.480123+00', 237, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23805, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.569942+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23806, X'576f92db4cff146f87c932b319e61e8ec480b79473f0caa259f026c1dc4fb869', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.5545+00', 320, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23807, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.566858+00', 345, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23808, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.647838+00', 373, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23809, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.583693+00', 452, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23810, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.74756+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23811, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.757117+00', 307, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23812, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.613658+00', 455, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23813, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.690594+00', 401, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23814, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.68716+00', 410, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23815, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.758694+00', 341, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23816, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.931851+00', 153, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23817, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.672413+00', 440, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23818, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.600248+00', 522, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23819, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.810145+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23820, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.564594+00', 995, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23821, X'c74a8a22815228222bb72fa0781a019f412be1bbf6c680b846ed358f6b21a34a', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:51.902615+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''_id''.', 1, NULL, NULL, NULL, 2, NULL), +(23822, X'b234c6de298bfae846482c8a9dafd61f09efa84f2ab363474f06bc8749c30e4b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:59.582114+00', 1115, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23823, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.130164+00', 265, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23824, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.254229+00', 248, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23825, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.26162+00', 256, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23826, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.118495+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23827, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.331951+00', 302, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23828, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.245631+00', 390, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23829, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.212021+00', 452, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23830, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.241296+00', 428, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23831, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.243518+00', 454, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23832, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.33708+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23833, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.363527+00', 357, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23834, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.411903+00', 309, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23835, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.273781+00', 441, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23836, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.257584+00', 505, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23837, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.37202+00', 390, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23838, X'b861111ca698da5c4b9f28242b0e97e6ed9d91092a69565abf1227edb5814a1f', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.236304+00', 699, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23839, X'eb7cae8e01d2f17f948cf91b259fee02a4e421e137839033b46fe2e4117f77e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:23.842495+00', 1268, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23840, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.211412+00', 77, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23841, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.22152+00', 150, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23842, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.20667+00', 199, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23843, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.211222+00', 187, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23844, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.327006+00', 88, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23845, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.276924+00', 166, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23846, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.230737+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23847, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.398942+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23848, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.384602+00', 110, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23849, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.407509+00', 121, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23850, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.439609+00', 93, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23851, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.43887+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23852, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.425724+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23853, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.37808+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23854, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.421845+00', 155, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23855, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.4682+00', 125, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23856, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:55.897641+00', 131, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23857, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:55.863379+00', 225, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23858, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:55.929298+00', 225, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23859, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:55.784564+00', 385, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23860, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.004999+00', 198, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23861, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:55.958593+00', 402, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23862, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.211814+00', 160, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23863, X'19082e30288b0fe16c03d5bab3c3a9b3927cabd1872c8561e0ad12e6e3035cb9', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:03.91328+00', 69, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(23864, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.230211+00', 127, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23865, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.213962+00', 217, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23866, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.239479+00', 263, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23867, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.241434+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23868, X'295e0516c8fbb3b2b7666f5d264c8d5a06a04a9359ec56c336655ef91a5a1ec4', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.23948+00', 302, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23869, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.233962+00', 348, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23870, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.37674+00', 215, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23871, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.322104+00', 274, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23872, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.356679+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23873, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.342963+00', 295, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23874, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.470048+00', 177, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23875, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.468939+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23876, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.430692+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23877, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.412674+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23878, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.469365+00', 209, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23879, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.520064+00', 191, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23880, X'67e5003c0de3dfbb4b014ce241f70ee4209ba0b1f23d07ff5e68d8c0739fe997', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:27.734777+00', 208, 0, TRUE, 'ad-hoc', 'Command failed with error 241 (ConversionFailure): ''$dateFromString requires that ''dateString'' be a string, found: date with value 2020-02-02T00:00:00.000Z'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671717565, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$dateFromString requires that ''dateString'' be a string, found: date with value 2020-02-02T00:00:00.000Z", "code" : 241, "codeName" : "ConversionFailure", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671717565, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "t+uxJTr2CQR4qNiW9qVWE2Dng5o=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(23881, X'de99288da3f1aa785cf6f48e878f3b0b97562139bc9bf3b882c5b6ca62c93414', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:53.574455+00', 216, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23882, X'5c60c30b9d13a8ec31dbe0b5b9b5bf645d2d60bd8e61d4c9324d050b45ad8a4c', TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:59.029745+00', 178, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23883, X'b67b55aa7acaecfc9515d07cc4dc68ae92a9ab81b853abbe0241323c8702f5f3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:01:26.98987+00', 196, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23884, X'1289461890982027da333d2efc32ae338c062a838f17173cd4c10384b5abdd87', TIMESTAMP WITH TIME ZONE '2022-12-22 14:01:48.280666+00', 452, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23885, X'8947798d97fef3fddcadb2aab273d27ee1164f527e951067c9327a0176943f86', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:11.135249+00', 4, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(23886, X'a64b6031d59125d15c98987d5a522d7ed000fd8dc09c93d976c9c7e8976c77ed', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:14.927347+00', 1421, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23887, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.674+00', 305, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(23888, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.820003+00', 332, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(23889, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.768135+00', 426, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(23890, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.774163+00', 473, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(23891, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.601261+00', 677, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(23892, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.670917+00', 614, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(23893, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.817236+00', 548, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(23894, X'e97df1aa0bb19d467b43ff64771af69489c1302dda853419baab41ddb9414611', TIMESTAMP WITH TIME ZONE '2022-12-22 14:03:01.222385+00', 163, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(23895, X'1e0c4f9acf846dc0fca59fbea9bf98dfe81d354519f73ecbd03f60f10a34b67f', TIMESTAMP WITH TIME ZONE '2022-12-22 14:03:16.097806+00', 260, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23896, X'e5ada8ece79cec6c7e8158ba757159e4b36fd28ed0e8e5395127296cddbfa913', TIMESTAMP WITH TIME ZONE '2022-12-22 14:03:36.296234+00', 1718, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23897, X'add9e738612213cc7f98a299d6deb0b97627482b178ab79437e1943332fb0800', TIMESTAMP WITH TIME ZONE '2022-12-22 14:03:54.192892+00', 1653, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23898, X'6cff4d036328cc04f51af98f02a58d36565dd5d15bf648c15cc70cf71e21c436', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:05.589464+00', 450, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(23899, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.148021+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23900, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.166509+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23901, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.189748+00', 209, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23902, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:07.891724+00', 536, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23903, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.111696+00', 324, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23904, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.223268+00', 283, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23905, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.398256+00', 135, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23906, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.1005+00', 449, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23907, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.24859+00', 331, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23908, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.402851+00', 218, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23909, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.346722+00', 297, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23910, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.371095+00', 277, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23911, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.393333+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23912, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.428773+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23913, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.443919+00', 236, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23914, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.317345+00', 354, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23915, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.917797+00', 183, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23916, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.883179+00', 251, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23917, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.788859+00', 360, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23918, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.76562+00', 404, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23919, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.643286+00', 632, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23920, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.629916+00', 685, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23921, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.95797+00', 356, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23922, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.806698+00', 529, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23923, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.833473+00', 576, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23924, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.996256+00', 454, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23925, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.844809+00', 620, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23926, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.04252+00', 463, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23927, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:37.914522+00', 596, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23928, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.187371+00', 347, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23929, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.180339+00', 368, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23930, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.090135+00', 496, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23931, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.014954+00', 203, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23932, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:07.953105+00', 278, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23933, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.126615+00', 264, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23934, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.234526+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23935, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.210017+00', 194, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23936, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.254317+00', 185, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23937, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.14629+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23938, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.308834+00', 167, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23939, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.379739+00', 98, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23940, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.144037+00', 353, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23941, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.136329+00', 364, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23942, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.155507+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23943, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.221325+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23944, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.242947+00', 330, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23945, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.244305+00', 353, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23946, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.254478+00', 378, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23947, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.74327+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23948, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.85999+00', 58, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23949, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.960322+00', 185, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23950, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.94724+00', 249, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23951, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.947523+00', 318, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23952, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.811248+00', 495, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23953, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.682142+00', 630, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23954, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.047639+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23955, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.008343+00', 323, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23956, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.992875+00', 342, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23957, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.023601+00', 324, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23958, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.045298+00', 311, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23959, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.02968+00', 339, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23960, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.048212+00', 325, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23961, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.774512+00', 608, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23962, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.934791+00', 473, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23963, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.696298+00', 55, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23964, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.574975+00', 183, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23965, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.609605+00', 500, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23966, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.527236+00', 585, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23967, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.63694+00', 562, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23968, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.348777+00', 897, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23969, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.688158+00', 558, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23970, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.644029+00', 626, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23971, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.815276+00', 508, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23972, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.816869+00', 514, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23973, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.661792+00', 682, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23974, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.570151+00', 776, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23975, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.98961+00', 394, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23976, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.12531+00', 296, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23977, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.922184+00', 508, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23978, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.134062+00', 366, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23979, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.308131+00', 103, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(23980, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.279859+00', 221, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(23981, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.347026+00', 164, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(23982, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.350029+00', 619, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23983, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.399955+00', 581, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23984, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.463015+00', 546, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(23985, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.475649+00', 581, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(23986, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.480201+00', 623, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(23987, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.32371+00', 794, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23988, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.444405+00', 697, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(23989, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.475111+00', 677, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(23990, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.909207+00', 270, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(23991, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.4444+00', 746, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(23992, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.923342+00', 271, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(23993, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.522189+00', 693, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(23994, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.413909+00', 889, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(23995, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.121117+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(23996, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.084939+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(23997, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.112734+00', 89, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(23998, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.113889+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(23999, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.134253+00', 79, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24000, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.106812+00', 158, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24001, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.086014+00', 214, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24002, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.855682+00', 57, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24003, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.854597+00', 71, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24004, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.86646+00', 79, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24005, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.620674+00', 65, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24006, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.6387+00', 72, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24007, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.651357+00', 76, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24008, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.66305+00', 70, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24009, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:10.351758+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24010, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:10.395284+00', 98, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24011, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.159663+00', 185, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24012, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.145788+00', 207, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24013, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.175201+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24014, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.183376+00', 185, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24015, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.294226+00', 159, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24016, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.15509+00', 308, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24017, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.232488+00', 259, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24018, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.28847+00', 215, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24019, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.338855+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24020, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.391926+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24021, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.168288+00', 383, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24022, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.417704+00', 137, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24023, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.429214+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24024, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.455061+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24025, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.372146+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24026, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.485974+00', 105, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24027, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.667484+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24028, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.680273+00', 183, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24029, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.75228+00', 113, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24030, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.712101+00', 164, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24031, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.797201+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24032, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.773989+00', 223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24033, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.824049+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24034, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.643934+00', 375, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24035, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.748827+00', 279, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24036, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.898791+00', 137, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24037, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.850176+00', 201, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24038, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.768595+00', 289, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24039, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.694307+00', 373, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24040, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.892588+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24041, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.781269+00', 291, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24042, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.893092+00', 301, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24043, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.795605+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24044, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.88449+00', 253, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24045, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.00935+00', 148, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24046, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.785588+00', 401, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24047, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.721252+00', 533, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24048, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.884412+00', 386, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24049, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.876239+00', 395, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24050, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.120141+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24051, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.744355+00', 657, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24052, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.207319+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24053, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:37.950567+00', 540, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24054, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.177153+00', 314, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24055, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.267265+00', 248, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24056, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.105813+00', 444, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24057, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.197057+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24058, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.122677+00', 507, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24059, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.637921+00', 253, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24060, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.783874+00', 207, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24061, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.89194+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24062, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.76229+00', 290, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24063, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.816361+00', 282, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24064, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.887525+00', 349, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24065, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.952501+00', 277, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24066, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.807666+00', 470, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24067, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.043236+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24068, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.837956+00', 486, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24069, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.090476+00', 237, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24070, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.943491+00', 402, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24071, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.728437+00', 628, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24072, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.117634+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24073, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.891811+00', 484, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24074, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.849196+00', 534, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24075, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.724946+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24076, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.982817+00', 177, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24077, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.80625+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24078, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.878939+00', 294, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24079, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.852802+00', 363, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24080, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.830165+00', 385, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24081, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.943405+00', 280, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24082, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.950553+00', 287, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24083, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.074846+00', 234, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24084, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.979512+00', 334, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24085, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.950263+00', 399, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24086, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.850576+00', 510, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24087, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.060892+00', 341, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24088, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.261276+00', 161, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24089, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.924241+00', 595, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24090, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.894923+00', 689, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24091, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.742533+00', 295, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24092, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.758574+00', 318, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24093, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.738263+00', 428, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24094, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.826799+00', 370, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24095, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.894178+00', 356, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24096, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.058109+00', 268, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24097, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.124299+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24098, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.132166+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24099, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.730653+00', 686, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24100, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.103582+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24101, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.176843+00', 314, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24102, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.052448+00', 455, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24103, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.983935+00', 545, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24104, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.888567+00', 644, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24105, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:07.877635+00', 757, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24106, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.013726+00', 636, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24107, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.313855+00', 134, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24108, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.317469+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24109, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.325198+00', 204, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24110, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.352883+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24111, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.312623+00', 235, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24112, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.464696+00', 237, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24113, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.483528+00', 263, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24114, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.400017+00', 354, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24115, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.50209+00', 291, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24116, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.48706+00', 311, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24117, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.541363+00', 268, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24118, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.491339+00', 328, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24119, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.594292+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24120, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.531796+00', 314, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24121, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.303574+00', 547, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24122, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.339981+00', 520, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24123, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.549798+00', 198, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24124, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.527613+00', 283, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24125, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.521247+00', 302, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24126, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.551471+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24127, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.695986+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24128, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.621587+00', 282, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24129, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.513732+00', 622, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24130, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.542021+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24131, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.760605+00', 446, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24132, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.874195+00', 410, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24133, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.142487+00', 154, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24134, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.887448+00', 434, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24135, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.824999+00', 527, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24136, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.915637+00', 450, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24137, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.912949+00', 471, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24138, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.917769+00', 471, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24139, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.315994+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24140, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.282039+00', 157, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24141, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.26435+00', 382, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24142, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.376926+00', 275, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24143, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.464244+00', 219, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24144, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.364081+00', 443, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24145, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.672327+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24146, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.479234+00', 365, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24147, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.296915+00', 605, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24148, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.445384+00', 453, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24149, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.41781+00', 474, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24150, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.592034+00', 331, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24151, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.621034+00', 304, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24152, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.310111+00', 649, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24153, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.691126+00', 279, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24154, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.728288+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24155, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.660878+00', 178, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24156, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.661332+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24157, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.698368+00', 274, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24158, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.730229+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24159, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.734659+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24160, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.744436+00', 288, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24161, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.773523+00', 281, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24162, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.823309+00', 394, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24163, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.886046+00', 339, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24164, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.877922+00', 360, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24165, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.847877+00', 399, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24166, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.822157+00', 517, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24167, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.858983+00', 491, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24168, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.875867+00', 475, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24169, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.923794+00', 542, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24170, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.811083+00', 695, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24171, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.727257+00', 128, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24172, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.676192+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24173, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.707034+00', 253, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24174, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.834411+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24175, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.666868+00', 445, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24176, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.795341+00', 344, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24177, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.795019+00', 397, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24178, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.029758+00', 170, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24179, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.910281+00', 327, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24180, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.943521+00', 301, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24181, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.026316+00', 250, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24182, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.03917+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24183, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.982389+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24184, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.090577+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24185, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.049249+00', 264, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24186, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.796288+00', 530, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24187, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.661759+00', 153, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24188, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.733027+00', 133, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24189, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.683797+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24190, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.804644+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24191, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.732288+00', 258, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24192, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.762448+00', 238, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24193, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.795653+00', 209, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24194, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.843352+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24195, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.880762+00', 176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24196, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.782879+00', 279, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24197, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.967896+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24198, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.822776+00', 284, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24199, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.695392+00', 415, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24200, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.9064+00', 225, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24201, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.751486+00', 384, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24202, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.856161+00', 422, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24203, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.608721+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24204, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.669892+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24205, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.662011+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24206, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.689672+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24207, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.666184+00', 291, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24208, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.654046+00', 311, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24209, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.813803+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24210, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.802031+00', 178, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24211, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.785627+00', 224, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24212, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.95366+00', 92, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24213, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.630647+00', 420, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24214, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.851907+00', 235, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24215, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.862904+00', 225, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24216, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.853107+00', 250, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24217, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.842409+00', 300, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24218, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.843583+00', 310, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24219, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.540921+00', 304, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24220, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.591062+00', 342, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24221, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.586218+00', 401, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24222, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.591451+00', 407, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24223, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.911694+00', 137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24224, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.89295+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24225, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.622686+00', 449, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24226, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.860533+00', 283, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24227, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.918542+00', 278, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24228, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.015368+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24229, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.012042+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24230, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.908123+00', 386, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24231, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.943988+00', 374, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24232, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.146984+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24233, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.039681+00', 327, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24234, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.04311+00', 335, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24235, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.13568+00', 163, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24236, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.23251+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24237, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.193712+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24238, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.253247+00', 202, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24239, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.346905+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24240, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.230142+00', 248, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24241, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.306309+00', 177, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24242, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.136083+00', 361, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24243, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.262857+00', 246, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24244, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.213386+00', 324, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24245, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.280541+00', 271, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24246, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.329998+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24247, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.371714+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24248, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.34956+00', 294, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24249, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.238347+00', 413, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24250, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.238089+00', 425, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24251, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.619908+00', 160, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24252, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.763756+00', 215, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24253, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.642081+00', 375, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24254, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.894744+00', 201, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24255, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.869059+00', 238, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24256, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.966124+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24257, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.718523+00', 466, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24258, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.965084+00', 220, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24259, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.963249+00', 239, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24260, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.97166+00', 246, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24261, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.926728+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24262, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.925626+00', 325, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24263, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.891469+00', 366, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24264, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.991535+00', 280, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24265, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.870629+00', 496, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24266, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.869442+00', 552, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24267, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.517121+00', 362, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24268, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.621631+00', 414, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24269, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.563311+00', 493, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24270, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.548463+00', 501, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24271, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.546683+00', 565, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24272, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.560591+00', 542, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24273, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.891574+00', 283, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24274, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.745016+00', 499, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24275, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.517338+00', 729, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24276, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.147183+00', 194, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24277, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.16231+00', 198, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24278, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.163212+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24279, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.795124+00', 615, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24280, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.54938+00', 865, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24281, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.747841+00', 656, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24282, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.283717+00', 159, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24283, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.191354+00', 636, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24284, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.391148+00', 446, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24285, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.438155+00', 427, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24286, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.58874+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24287, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.448621+00', 452, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24288, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.177357+00', 727, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24289, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.531774+00', 490, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24290, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.470417+00', 565, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24291, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.229742+00', 823, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24292, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.17576+00', 915, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24293, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.430911+00', 677, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24294, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.178036+00', 970, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24295, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.536999+00', 620, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24296, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.534113+00', 675, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24297, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.38566+00', 857, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24298, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.900784+00', 375, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24299, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.773619+00', 233, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24300, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.852577+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24301, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.902948+00', 268, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24302, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.982198+00', 387, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24303, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.8404+00', 563, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24304, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.785084+00', 625, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24305, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.835622+00', 671, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24306, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.829327+00', 664, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24307, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.892181+00', 612, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24308, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.755608+00', 780, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24309, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.857237+00', 681, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24310, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.042255+00', 544, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24311, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.833918+00', 771, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24312, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.868402+00', 755, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24313, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:37.850727+00', 775, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24314, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.023108+00', 664, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24315, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.871043+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24316, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.861976+00', 154, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24317, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.975247+00', 47, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24318, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.946595+00', 212, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24319, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.899757+00', 278, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24320, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.954182+00', 225, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24321, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.015351+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24322, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.062728+00', 147, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24323, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.879052+00', 355, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24324, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.089114+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24325, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.020557+00', 238, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24326, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.063626+00', 204, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24327, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.957955+00', 325, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24328, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.910269+00', 380, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24329, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.107558+00', 183, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24330, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.089887+00', 206, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24331, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.367952+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24332, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.408399+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24333, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.44145+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24334, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.523201+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24335, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.548483+00', 246, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24336, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.544192+00', 253, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24337, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.479496+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24338, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.474685+00', 336, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24339, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.320557+00', 597, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24340, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.329538+00', 606, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24341, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.637499+00', 321, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24342, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.619553+00', 394, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24343, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.644536+00', 381, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24344, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.681117+00', 369, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24345, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.669204+00', 408, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24346, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.666782+00', 408, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24347, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.731981+00', 240, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24348, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.613739+00', 404, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24349, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.837451+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24350, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.807742+00', 279, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24351, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.78966+00', 300, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24352, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.68268+00', 409, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24353, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.779017+00', 340, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24354, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.813436+00', 363, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24355, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.640247+00', 559, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24356, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.688943+00', 529, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24357, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.847489+00', 373, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24358, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.620702+00', 604, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24359, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.92269+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24360, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.077695+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24361, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.599631+00', 761, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24362, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.110051+00', 285, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24363, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.493358+00', 144, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24364, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.520301+00', 152, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24365, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.625932+00', 87, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24366, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.535032+00', 180, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24367, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.573925+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24368, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.654035+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24369, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.607329+00', 222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24370, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.632141+00', 211, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24371, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.582673+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24372, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.682354+00', 221, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24373, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.507453+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24374, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.757304+00', 178, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24375, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.623592+00', 354, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24376, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.742324+00', 302, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24377, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.763317+00', 356, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24378, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.569511+00', 589, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24379, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.723146+00', 363, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24380, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.924524+00', 233, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24381, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.943745+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24382, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.731004+00', 484, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24383, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.103883+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24384, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.890449+00', 384, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24385, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.022044+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24386, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.029083+00', 326, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24387, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.974442+00', 393, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24388, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.767953+00', 646, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24389, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.798561+00', 621, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24390, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.132965+00', 311, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24391, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.171722+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24392, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.162364+00', 316, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24393, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:08.938627+00', 592, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24394, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.130246+00', 412, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24395, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.411373+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24396, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.37701+00', 214, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24397, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.358392+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24398, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.377869+00', 264, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24399, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.4202+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24400, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.370175+00', 333, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24401, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.347613+00', 353, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24402, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.481986+00', 233, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24403, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.428659+00', 332, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24404, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.564749+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24405, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.398806+00', 433, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24406, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.470773+00', 426, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24407, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.69749+00', 227, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24408, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.467147+00', 468, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24409, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.723746+00', 336, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24410, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.691954+00', 435, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24411, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.218122+00', 120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24412, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.191716+00', 166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24413, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.194669+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24414, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.184514+00', 189, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24415, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.52892+00', 172, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24416, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.612171+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24417, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.527105+00', 241, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24418, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.519091+00', 261, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24419, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.562481+00', 295, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24420, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.548144+00', 313, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24421, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.175918+00', 696, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24422, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.696342+00', 251, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24423, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.520088+00', 440, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24424, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.730899+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24425, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.678714+00', 299, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24426, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.585213+00', 514, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24427, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.207027+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24428, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.199281+00', 193, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24429, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.170017+00', 325, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24430, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.206031+00', 299, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24431, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.202926+00', 307, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24432, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.219282+00', 369, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24433, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.528285+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24434, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.523968+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24435, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.603648+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24436, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.603753+00', 194, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24437, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.466254+00', 347, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24438, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.662316+00', 171, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24439, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.662316+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24440, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.629469+00', 238, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24441, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.726793+00', 149, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24442, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.214131+00', 675, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24443, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:07.920537+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24444, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:07.886026+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24445, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:07.856453+00', 266, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24446, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.131546+00', 121, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24447, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.070622+00', 238, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24448, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.013391+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24449, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.135082+00', 201, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24450, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.061861+00', 337, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24451, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.004996+00', 441, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24452, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:07.874029+00', 573, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24453, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.005753+00', 441, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24454, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.001365+00', 438, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24455, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.161148+00', 324, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24456, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.28623+00', 240, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24457, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.002554+00', 652, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24458, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.226867+00', 523, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24459, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.549301+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24460, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.566197+00', 303, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24461, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.598041+00', 386, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24462, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.579281+00', 405, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24463, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.594062+00', 398, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24464, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.598171+00', 409, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24465, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.917639+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24466, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.854038+00', 197, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24467, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.902442+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24468, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.884842+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24469, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.864037+00', 239, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24470, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.553738+00', 587, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24471, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.834578+00', 309, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24472, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.874671+00', 276, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24473, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.954328+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24474, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.045534+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24475, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:10.70901+00', 427, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24476, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:10.875835+00', 283, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24477, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.114621+00', 164, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24478, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:10.934411+00', 398, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24479, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.057173+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24480, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.055707+00', 301, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24481, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:10.681366+00', 695, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24482, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.206615+00', 249, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24483, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.095449+00', 395, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24484, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.157518+00', 341, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24485, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.117993+00', 522, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24486, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.174177+00', 466, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24487, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.084447+00', 579, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24488, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.152085+00', 508, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24489, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.143473+00', 535, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24490, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:10.917126+00', 857, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24491, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:39.795577+00', 307, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24492, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:39.887557+00', 237, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24493, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.009515+00', 205, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24494, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:39.857184+00', 419, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24495, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:39.938075+00', 373, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24496, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.126325+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24497, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:39.891632+00', 443, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24498, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.125058+00', 250, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24499, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.089293+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24500, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.027834+00', 429, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24501, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.027809+00', 441, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24502, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.057973+00', 477, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24503, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.062285+00', 478, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24504, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:39.865436+00', 704, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24505, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.15542+00', 417, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24506, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.20419+00', 379, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24507, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.668004+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24508, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.654557+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24509, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.679522+00', 195, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24510, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.674225+00', 204, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24511, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.683662+00', 225, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24512, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.653978+00', 296, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24513, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.957503+00', 61, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24514, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.937815+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24515, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.908206+00', 143, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24516, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.902664+00', 150, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24517, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.670434+00', 407, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24518, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.925172+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24519, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.927907+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24520, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.91903+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24521, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.965163+00', 167, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24522, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.066565+00', 128, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24523, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.569708+00', 60, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24524, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.530852+00', 125, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24525, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.567857+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24526, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.573217+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24527, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.56232+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24528, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.53051+00', 199, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24529, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.545176+00', 261, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24530, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.774357+00', 100, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24531, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.778042+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24532, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.81119+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24533, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.821219+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24534, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.754904+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24535, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.828928+00', 124, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24536, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.894036+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24537, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.962277+00', 57, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24538, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.974937+00', 137, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24539, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.293939+00', 323, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24540, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.422131+00', 277, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24541, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.293594+00', 478, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24542, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.680753+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24543, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.670814+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24544, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.434207+00', 490, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24545, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.345964+00', 592, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24546, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.556134+00', 412, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24547, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.562771+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24548, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.663263+00', 341, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24549, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.651897+00', 359, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24550, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.681046+00', 342, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24551, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.39837+00', 637, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24552, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.347576+00', 691, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24553, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.646372+00', 396, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24554, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.710612+00', 343, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24555, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.543902+00', 241, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24556, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.513802+00', 485, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24557, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.745327+00', 279, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24558, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.656926+00', 410, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24559, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.645652+00', 498, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24560, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.958574+00', 246, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24561, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.909311+00', 350, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24562, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.891844+00', 379, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24563, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.995507+00', 288, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24564, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.757481+00', 540, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24565, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.892001+00', 426, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24566, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.089426+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24567, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.012408+00', 345, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24568, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.228604+00', 151, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24569, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.146502+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24570, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.988377+00', 499, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.258486+00', 398, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24572, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.797883+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24573, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.351121+00', 777, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24574, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.27709+00', 906, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24575, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.143349+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24576, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.009577+00', 328, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24577, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.753053+00', 592, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24578, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.941172+00', 411, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24579, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.636295+00', 723, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24580, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.338032+00', 1033, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24581, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.880664+00', 493, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24582, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.592824+00', 807, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24583, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.843667+00', 589, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24584, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.12152+00', 313, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24585, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.289483+00', 208, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24586, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.274363+00', 228, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24587, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.112+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24588, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.121225+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24589, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.124233+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24590, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.087866+00', 243, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24591, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.083791+00', 276, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24592, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.25793+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24593, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.179347+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24594, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.147966+00', 252, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24595, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.104726+00', 303, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24596, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.220572+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24597, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.381896+00', 68, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24598, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.223557+00', 235, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24599, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.347742+00', 146, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24600, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.370643+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24601, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.350181+00', 166, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24602, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.412552+00', 130, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24603, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.491378+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24604, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.575188+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24605, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.504545+00', 195, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24606, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.58077+00', 129, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24607, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.542563+00', 178, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24608, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.590741+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24609, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.587485+00', 176, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24610, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.618261+00', 151, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24611, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.659715+00', 122, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24612, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.620941+00', 168, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24613, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.637959+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24614, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.663302+00', 158, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24615, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.666316+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24616, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.648559+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24617, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.612629+00', 265, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24618, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.670375+00', 302, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24619, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.566088+00', 207, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24620, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.665342+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24621, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.591088+00', 257, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24622, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.674775+00', 194, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24623, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.66755+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24624, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.577061+00', 329, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24625, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.805098+00', 119, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24626, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.702752+00', 236, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24627, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.639443+00', 301, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24628, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.778782+00', 174, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24629, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.566106+00', 402, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24630, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.779225+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24631, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.71701+00', 279, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24632, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.720536+00', 318, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24633, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.577373+00', 447, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24634, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.7545+00', 322, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24635, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.549012+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24636, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.598258+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24637, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.593999+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24638, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.660615+00', 139, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24639, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.623408+00', 214, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24640, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.68721+00', 159, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24641, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.579059+00', 273, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24642, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.697424+00', 174, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24643, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.671082+00', 218, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24644, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.687631+00', 220, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24645, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.723787+00', 204, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24646, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.744464+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24647, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.742622+00', 228, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24648, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.706149+00', 289, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24649, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.693262+00', 436, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24650, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.700826+00', 439, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24651, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.587962+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24652, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.73293+00', 142, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24653, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.794951+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24654, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.672027+00', 300, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24655, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.668163+00', 308, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24656, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.7934+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24657, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.748998+00', 288, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24658, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.605611+00', 433, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24659, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.753243+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24660, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.602785+00', 457, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24661, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.666023+00', 405, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24662, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.697986+00', 396, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24663, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.700811+00', 405, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24664, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.885328+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24665, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.919537+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24666, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.816415+00', 390, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24667, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.079344+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24668, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:09.997546+00', 331, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24669, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.267317+00', 164, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24670, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.270225+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24671, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:09.819712+00', 661, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24672, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:09.81034+00', 730, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24673, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.043187+00', 516, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24674, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.06159+00', 676, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24675, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.071164+00', 681, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24676, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.209354+00', 553, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24677, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.062281+00', 709, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24678, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:09.963584+00', 829, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24679, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.336184+00', 474, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24680, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.239509+00', 578, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24681, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.272729+00', 552, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24682, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.18603+00', 645, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24683, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.701719+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24684, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.730594+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24685, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.814497+00', 151, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24686, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.704447+00', 273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24687, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.671354+00', 334, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24688, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.83115+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24689, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.658739+00', 444, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24690, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.646071+00', 468, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24691, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.903531+00', 289, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24692, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.858925+00', 395, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24693, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.669431+00', 622, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24694, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.818901+00', 526, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24695, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.971666+00', 416, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24696, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.928428+00', 471, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24697, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.803948+00', 733, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24698, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.928294+00', 677, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24699, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.704113+00', 319, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24700, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.742478+00', 392, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24701, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.838066+00', 382, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24702, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.743582+00', 484, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24703, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.756966+00', 507, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24704, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.82947+00', 516, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24705, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.79944+00', 681, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24706, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.727472+00', 757, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24707, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.766676+00', 726, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24708, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.724729+00', 812, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24709, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.814107+00', 739, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24710, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.827099+00', 812, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24711, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.102986+00', 549, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24712, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.722761+00', 928, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24713, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.839802+00', 827, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24714, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:09.845696+00', 998, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24715, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.390259+00', 217, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24716, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.603701+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24717, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.677962+00', 253, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24718, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.234843+00', 714, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24719, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.586213+00', 386, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24720, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.875412+00', 152, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24721, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.913921+00', 218, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24722, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.889656+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24723, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.822667+00', 329, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24724, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.606413+00', 597, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24725, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.596084+00', 639, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24726, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.645944+00', 609, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24727, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.928549+00', 354, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24728, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.577106+00', 800, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24729, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.652327+00', 760, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24730, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.822236+00', 648, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24731, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:09.892051+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24732, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:09.92099+00', 285, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24733, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.120392+00', 251, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24734, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:09.963066+00', 473, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24735, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.145106+00', 343, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24736, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.093307+00', 419, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24737, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:09.906724+00', 642, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24738, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.181511+00', 422, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24739, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.232409+00', 380, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24740, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.285688+00', 364, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24741, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.234828+00', 438, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24742, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.286552+00', 407, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24743, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.211762+00', 522, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24744, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.286167+00', 450, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24745, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.072866+00', 693, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24746, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:09.937131+00', 856, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24747, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.63909+00', 191, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24748, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.582511+00', 365, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24749, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.508664+00', 491, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24750, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.532892+00', 483, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24751, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.65689+00', 383, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24752, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.705519+00', 352, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24753, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.458052+00', 626, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24754, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.708324+00', 392, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24755, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.72349+00', 383, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24756, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.565463+00', 555, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24757, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.698791+00', 436, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24758, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.579833+00', 549, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24759, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.938877+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24760, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.009967+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24761, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.516576+00', 791, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24762, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.444123+00', 874, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24763, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.610244+00', 121, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24764, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.60951+00', 118, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24765, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.433977+00', 322, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24766, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.66992+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24767, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.59572+00', 270, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24768, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.646466+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24769, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.48995+00', 393, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24770, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.669503+00', 249, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24771, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.368264+00', 581, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24772, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.788953+00', 169, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24773, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.696501+00', 323, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24774, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.818336+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24775, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.846539+00', 196, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24776, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.866889+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24777, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.448809+00', 634, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24778, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.676863+00', 466, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24779, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.483319+00', 408, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24780, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.386558+00', 531, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24781, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.358325+00', 672, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24782, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.494547+00', 580, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24783, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.462959+00', 648, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24784, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.957169+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24785, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.952711+00', 221, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24786, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.000487+00', 212, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24787, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.92971+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24788, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.014398+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24789, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.925161+00', 366, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24790, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.912574+00', 416, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24791, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.039879+00', 373, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24792, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.12023+00', 325, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24793, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.975446+00', 469, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24794, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.837274+00', 684, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24795, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:09.998923+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24796, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:09.993052+00', 314, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24797, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.102902+00', 206, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24798, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.183053+00', 235, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24799, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.048928+00', 420, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24800, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.323371+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24801, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.346251+00', 191, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24802, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.341309+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24803, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.35718+00', 225, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24804, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.342074+00', 282, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24805, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.218047+00', 433, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24806, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.362096+00', 285, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24807, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.336723+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24808, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.174186+00', 536, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24809, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.272897+00', 440, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24810, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.242801+00', 603, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24811, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:39.998582+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24812, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.028616+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24813, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.053398+00', 247, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24814, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.239415+00', 150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24815, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.136953+00', 302, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24816, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.280735+00', 241, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24817, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.203193+00', 330, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24818, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.299809+00', 286, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24819, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.167077+00', 438, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24820, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.208883+00', 393, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24821, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.022983+00', 747, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24822, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.219804+00', 561, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24823, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.52528+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24824, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.75782+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24825, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.774716+00', 158, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24826, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.538054+00', 495, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24827, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.534238+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24828, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.440482+00', 361, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24829, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.536848+00', 408, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24830, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.692916+00', 409, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24831, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.494401+00', 633, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24832, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.814181+00', 351, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24833, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.605608+00', 564, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24834, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.620522+00', 583, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24835, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.900852+00', 319, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24836, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.754657+00', 495, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24837, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.720356+00', 544, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24838, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.709462+00', 617, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24839, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.614564+00', 727, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24840, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.883654+00', 467, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24841, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.728147+00', 631, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24842, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.880543+00', 485, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24843, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.278789+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24844, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.217278+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24845, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.301086+00', 158, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24846, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.351127+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24847, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.375766+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24848, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.360917+00', 166, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24849, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.431221+00', 132, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24850, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.403313+00', 206, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24851, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.349566+00', 261, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24852, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.354249+00', 269, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24853, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.363902+00', 285, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24854, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.359859+00', 290, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24855, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.433361+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24856, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.359266+00', 303, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24857, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.356096+00', 357, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24858, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.381807+00', 349, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24859, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.49778+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24860, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.456163+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24861, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.342952+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24862, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.446072+00', 208, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24863, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.460094+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24864, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.487307+00', 186, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24865, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.4783+00', 216, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24866, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.434803+00', 268, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24867, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.432917+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24868, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.58108+00', 188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24869, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.662233+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24870, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.543304+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24871, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.522896+00', 288, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24872, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.465365+00', 354, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24873, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.485937+00', 338, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24874, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.459259+00', 377, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24875, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.020179+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24876, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.074076+00', 275, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24877, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.010191+00', 406, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24878, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:01.99595+00', 489, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24879, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.287112+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24880, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.251609+00', 330, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24881, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.355901+00', 295, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24882, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.460221+00', 259, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24883, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.500868+00', 278, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24884, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.467186+00', 397, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24885, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.465787+00', 411, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24886, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.49371+00', 427, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24887, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.604932+00', 378, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24888, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.56665+00', 434, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24889, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.306235+00', 800, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24890, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.475828+00', 742, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24891, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:14.894032+00', 206, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(24892, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:14.880939+00', 401, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(24893, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:14.998813+00', 405, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(24894, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:14.991823+00', 429, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24895, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.056294+00', 457, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(24896, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.03796+00', 486, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(24897, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.206293+00', 684, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24898, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.075749+00', 844, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(24899, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.330661+00', 598, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(24900, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.029431+00', 909, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24901, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.147775+00', 814, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(24902, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.029431+00', 951, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(24903, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:14.932286+00', 1102, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24904, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:14.932286+00', 1107, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(24905, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.515346+00', 526, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24906, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.292611+00', 790, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(24907, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.510108+00', 585, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24908, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.651392+00', 496, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24909, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.251616+00', 912, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(24910, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.674999+00', 521, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24911, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.314746+00', 909, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24912, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.366638+00', 938, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24913, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.68212+00', 695, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24914, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.669603+00', 817, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24915, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.499984+00', 988, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(24916, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.669603+00', 830, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(24917, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.688066+00', 866, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24918, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.675739+00', 878, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24919, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.675739+00', 880, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(24920, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.674355+00', 928, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24921, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.648085+00', 957, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24922, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.682984+00', 1126, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24923, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.69231+00', 1341, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24924, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.668953+00', 1519, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24925, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.689261+00', 1510, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24926, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.551275+00', 1703, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24927, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.142023+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24928, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.054405+00', 289, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24929, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.201673+00', 200, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24930, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.281889+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24931, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.061134+00', 401, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24932, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.310694+00', 150, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24933, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.235253+00', 249, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24934, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.517115+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24935, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.076035+00', 499, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24936, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.119259+00', 469, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24937, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.554268+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24938, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.554135+00', 97, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24939, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.455429+00', 238, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24940, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.595227+00', 112, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24941, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.595551+00', 169, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24942, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.589684+00', 189, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24943, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.336551+00', 530, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24944, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.503922+00', 423, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24945, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.369641+00', 638, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24946, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.510459+00', 518, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24947, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.39723+00', 625, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24948, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.55145+00', 512, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24949, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.626111+00', 474, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24950, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.651517+00', 501, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24951, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.434933+00', 759, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24952, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.796775+00', 410, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24953, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.653819+00', 578, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24954, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.078133+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24955, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.793472+00', 508, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24956, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.759678+00', 547, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24957, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.08016+00', 234, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24958, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.859104+00', 467, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24959, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.25975+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24960, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.203943+00', 167, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24961, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.265347+00', 125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24962, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.20995+00', 183, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24963, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.208052+00', 195, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24964, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.208435+00', 260, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24965, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.220983+00', 391, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24966, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.250682+00', 93, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24967, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.26525+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24968, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.324676+00', 87, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24969, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.331452+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24970, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.313419+00', 133, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24971, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.341808+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24972, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.396012+00', 74, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24973, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.349512+00', 127, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24974, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.415992+00', 65, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24975, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.221031+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24976, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.254442+00', 93, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24977, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.292661+00', 117, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24978, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.235965+00', 213, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24979, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.293671+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(24980, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.227168+00', 254, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24981, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.258761+00', 249, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24982, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.29897+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(24983, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.406194+00', 137, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(24984, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.34366+00', 213, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(24985, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.345311+00', 215, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(24986, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.379097+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24987, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.302163+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(24988, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.449118+00', 160, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(24989, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.499307+00', 168, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(24990, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.355064+00', 296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(24991, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.345353+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(24992, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.27121+00', 247, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(24993, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.344273+00', 189, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(24994, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.386156+00', 158, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(24995, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.353213+00', 208, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(24996, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.381389+00', 266, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(24997, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.402913+00', 282, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(24998, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.462731+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(24999, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.48297+00', 101, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25000, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.493817+00', 95, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25001, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.522607+00', 73, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25002, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.432471+00', 167, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25003, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.494926+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25004, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.55217+00', 79, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25005, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.550315+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25006, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.557462+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25007, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.294631+00', 70, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25008, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.330361+00', 60, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25009, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.352929+00', 65, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25010, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.350149+00', 107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25011, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.410136+00', 51, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25012, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.298357+00', 204, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25013, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.421495+00', 190, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25014, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.188444+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25015, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.214543+00', 111, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25016, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.245763+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25017, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.246283+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25018, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.307209+00', 64, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25019, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.236053+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25020, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.279974+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25021, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.390209+00', 88, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25022, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.391213+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25023, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.53683+00', 252, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25024, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.535234+00', 256, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25025, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.546067+00', 356, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25026, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.553222+00', 478, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25027, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.55013+00', 542, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25028, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.87058+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25029, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.584801+00', 584, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25030, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.006838+00', 78, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25031, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.0424+00', 69, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25032, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.004792+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25033, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.03053+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25034, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.075372+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25035, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.093744+00', 89, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25036, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.08201+00', 101, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25037, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.13037+00', 58, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25038, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.138816+00', 94, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25039, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.088138+00', 215, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25040, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.110128+00', 229, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25041, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.150114+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25042, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.152249+00', 214, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25043, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.14337+00', 235, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25044, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.086475+00', 402, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25045, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.110152+00', 473, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25046, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.425802+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25047, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.344013+00', 203, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25048, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.347525+00', 296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25049, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.444767+00', 272, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25050, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.517888+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25051, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.570728+00', 207, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25052, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.599253+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25053, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.403319+00', 425, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25054, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.527971+00', 325, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25055, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.188302+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25056, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.21206+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25057, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.251827+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25058, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.305707+00', 213, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25059, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.333416+00', 198, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25060, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.244811+00', 409, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25061, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.345383+00', 383, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25062, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.392228+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25063, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.472927+00', 71, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25064, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.483896+00', 159, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25065, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.369494+00', 273, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25066, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.466958+00', 190, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25067, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.430741+00', 257, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25068, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.473801+00', 234, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25069, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.551465+00', 197, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25070, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.651236+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25071, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:45.966373+00', 347, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25072, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.325473+00', 82, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25073, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.230087+00', 270, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25074, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:45.972593+00', 548, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25075, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.089109+00', 462, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25076, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.296634+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25077, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:45.97392+00', 629, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25078, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.087358+00', 549, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25079, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.252308+00', 402, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25080, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.242011+00', 436, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25081, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:45.958552+00', 725, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25082, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.231921+00', 460, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25083, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.030847+00', 702, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25084, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.309295+00', 429, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25085, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.652076+00', 100, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25086, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.58519+00', 222, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25087, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.24591+00', 241, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25088, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.295328+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25089, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.385857+00', 264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25090, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.339626+00', 329, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25091, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.440847+00', 248, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25092, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.293971+00', 457, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25093, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.433104+00', 430, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25094, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.273972+00', 87, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25095, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.266292+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25096, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.294291+00', 81, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25097, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.276844+00', 98, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25098, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.273154+00', 118, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25099, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.308239+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25100, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.265473+00', 148, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25101, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.318269+00', 107, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25102, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.324926+00', 106, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25103, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.284862+00', 189, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25104, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.301249+00', 226, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25105, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.374028+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25106, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.435977+00', 211, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25107, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.317494+00', 375, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25108, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.28833+00', 530, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25109, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.312907+00', 541, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25110, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.515706+00', 203, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25111, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.468316+00', 311, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25112, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.46498+00', 353, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25113, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.622595+00', 252, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25114, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.590146+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25115, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.62817+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25116, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.590707+00', 336, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25117, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.726702+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25118, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.54811+00', 436, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25119, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:27.960983+00', 58, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25120, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:27.979914+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25121, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:27.927759+00', 127, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25122, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:27.940815+00', 123, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25123, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:27.986312+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25124, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:27.985318+00', 156, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25125, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:27.974084+00', 193, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25126, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.33814+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25127, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.18286+00', 263, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25128, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.23268+00', 255, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25129, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.313147+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25130, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.31109+00', 206, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25131, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.372137+00', 201, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25132, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.42714+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25133, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.371726+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25134, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.334639+00', 365, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25135, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.069415+00', 77, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25136, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.126239+00', 177, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25137, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.152932+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25138, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.232041+00', 148, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25139, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.230093+00', 159, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25140, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.225279+00', 351, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25141, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.21546+00', 434, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25142, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.068529+00', 266, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25143, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.125148+00', 215, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25144, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.099633+00', 280, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25145, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.169696+00', 238, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25146, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.057213+00', 361, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25147, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.266271+00', 159, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25148, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.270089+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25149, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.24612+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25150, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.275157+00', 197, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25151, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.170829+00', 65, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25152, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.179317+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25153, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.195318+00', 97, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25154, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.203366+00', 88, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25155, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.196351+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25156, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.183239+00', 169, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25157, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.208888+00', 216, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25158, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.099541+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25159, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.194149+00', 145, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25160, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.165896+00', 195, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25161, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.16702+00', 229, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25162, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.184619+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25163, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.226438+00', 254, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25164, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.369868+00', 113, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25165, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.242682+00', 248, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25166, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.406949+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25167, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:57.970289+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25168, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:57.974145+00', 144, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25169, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.060339+00', 99, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25170, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:57.988007+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25171, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.043584+00', 133, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25172, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.032874+00', 352, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25173, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.038153+00', 550, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25174, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:00.968328+00', 265, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25175, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.141246+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25176, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.116785+00', 170, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25177, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.018679+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25178, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.121935+00', 197, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25179, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.175603+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25180, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.148354+00', 192, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25181, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.143125+00', 208, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25182, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.209818+00', 165, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25183, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:27.991485+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25184, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:27.991283+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25185, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.005376+00', 150, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25186, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.041921+00', 138, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25187, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.044146+00', 145, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25188, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.044156+00', 271, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25189, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:27.962883+00', 376, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25190, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.023426+00', 113, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25191, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.051379+00', 92, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25192, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.050917+00', 96, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25193, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.062083+00', 84, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25194, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.051058+00', 121, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25195, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.113512+00', 85, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25196, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.056002+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25197, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.078401+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25198, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.125225+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25199, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.094987+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25200, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.096582+00', 92, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25201, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.111639+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25202, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.109735+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25203, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.158336+00', 54, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25204, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.153333+00', 182, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25205, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.1471+00', 199, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25206, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.03553+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25207, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.199909+00', 181, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(25208, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.05976+00', 335, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25209, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.05976+00', 342, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(25210, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.202821+00', 238, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25211, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.085686+00', 363, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(25212, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.224086+00', 260, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(25213, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.242433+00', 263, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(25214, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.100158+00', 413, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(25215, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.19577+00', 341, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(25216, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.247434+00', 63, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25217, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.295676+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25218, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.273939+00', 82, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25219, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.262068+00', 93, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25220, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.291396+00', 82, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25221, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.274002+00', 215, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25222, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.316957+00', 186, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25223, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.266885+00', 69, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25224, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.251711+00', 143, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25225, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.304874+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25226, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.264626+00', 142, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25227, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.318033+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25228, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.295991+00', 134, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25229, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.379087+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25230, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.303891+00', 143, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25231, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.329571+00', 127, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25232, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:57.961444+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25233, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:57.954826+00', 130, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25234, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.05503+00', 40, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25235, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:57.968126+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25236, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:57.99007+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25237, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.043288+00', 156, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25238, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.054926+00', 180, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25239, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.096454+00', 66, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25240, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.110156+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25241, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.110519+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25242, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.046821+00', 285, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25243, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.090349+00', 249, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25244, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.209224+00', 179, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25245, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.193191+00', 216, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25246, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.19006+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25247, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.1851+00', 250, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25248, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:27.978152+00', 61, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25249, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:27.953774+00', 149, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25250, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.012866+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25251, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:27.981867+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25252, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.018077+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25253, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:27.95401+00', 222, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25254, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:27.988332+00', 265, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25255, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.029147+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25256, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.099405+00', 200, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25257, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.129089+00', 232, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25258, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.140338+00', 302, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25259, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.028092+00', 439, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25260, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.174892+00', 310, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25261, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.231518+00', 274, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25262, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.103696+00', 445, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25263, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.163356+00', 389, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25264, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:57.984926+00', 59, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25265, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:57.921018+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25266, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:57.971623+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25267, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:57.982396+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25268, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:57.971939+00', 166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25269, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:57.967731+00', 235, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25270, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:57.937244+00', 368, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25271, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:00.976789+00', 124, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25272, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:00.974525+00', 156, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25273, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.022026+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25274, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.022026+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25275, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.034469+00', 177, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25276, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.112748+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25277, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.117283+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25278, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.08615+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25279, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.229198+00', 89, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25280, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:27.923643+00', 186, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25281, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.015605+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25282, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.006542+00', 161, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25283, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.00808+00', 177, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25284, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.055741+00', 150, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25285, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.036575+00', 301, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25286, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.028398+00', 350, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25287, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.205554+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25288, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.221905+00', 311, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25289, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.27445+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25290, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.244595+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25291, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.206599+00', 363, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25292, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.262328+00', 317, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25293, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.158857+00', 427, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25294, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.285764+00', 351, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25295, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.390794+00', 256, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25296, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:57.940226+00', 104, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25297, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:57.920341+00', 141, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25298, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.023549+00', 124, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25299, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:57.953969+00', 228, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25300, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:57.943353+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25301, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:57.937239+00', 517, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25302, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:57.982652+00', 477, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25303, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:00.993454+00', 133, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25304, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.045389+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25305, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.059049+00', 210, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25306, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.149024+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25307, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.127487+00', 218, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25308, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.231758+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25309, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.069192+00', 301, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25310, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.145648+00', 233, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25311, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.148951+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25312, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.052433+00', 92, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25313, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.074795+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25314, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.128191+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25315, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.056334+00', 239, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25316, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.120352+00', 232, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25317, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.15588+00', 265, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25318, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.052246+00', 409, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25319, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.044482+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25320, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.053057+00', 150, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25321, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.101857+00', 119, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25322, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.105809+00', 133, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25323, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.052258+00', 189, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25324, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.129515+00', 126, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25325, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.135939+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25326, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.181891+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25327, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.104741+00', 172, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25328, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.101318+00', 46, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25329, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.129762+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25330, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.136624+00', 78, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25331, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.141335+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25332, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.159242+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25333, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.105862+00', 168, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25334, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.126892+00', 231, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25335, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.166286+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25336, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.166202+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25337, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.238525+00', 206, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25338, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.253093+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25339, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.293788+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25340, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.176656+00', 301, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25341, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.351834+00', 133, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25342, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.391943+00', 133, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25343, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.372642+00', 156, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25344, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.160806+00', 60, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25345, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.182746+00', 70, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25346, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.174644+00', 87, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25347, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.174002+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25348, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.191407+00', 93, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25349, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.186394+00', 203, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25350, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.189209+00', 223, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25351, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.0761+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25352, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.11022+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25353, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.211058+00', 122, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25354, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.068491+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25355, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.132978+00', 274, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25356, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.110136+00', 307, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25357, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.111912+00', 312, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25358, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.331248+00', 112, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25359, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.341226+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25360, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.30385+00', 92, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25361, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.238555+00', 186, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25362, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.237331+00', 195, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25363, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.298795+00', 172, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25364, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.306329+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25365, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.23287+00', 311, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25366, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.344958+00', 273, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25367, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.161182+00', 204, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25368, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.28526+00', 118, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25369, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.259616+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25370, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.131136+00', 311, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25371, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.304275+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25372, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.32896+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25373, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.338072+00', 207, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25374, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.222936+00', 343, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25375, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.410341+00', 215, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25376, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.224644+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25377, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.29731+00', 129, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25378, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.348176+00', 149, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25379, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.221612+00', 293, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25380, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.358438+00', 176, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25381, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.359573+00', 188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25382, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.285362+00', 390, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25383, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.088103+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25384, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.108495+00', 160, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25385, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.130773+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25386, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.141018+00', 170, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25387, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.106961+00', 239, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25388, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.271229+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25389, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.317039+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25390, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.314377+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25391, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.348514+00', 117, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25392, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.084253+00', 219, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25393, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.102106+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25394, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.11117+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25395, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.106215+00', 311, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25396, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.053109+00', 365, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25397, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.037172+00', 426, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25398, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.165327+00', 408, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25399, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:01.833656+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25400, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:01.803919+00', 108, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25401, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:01.810242+00', 125, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25402, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.212601+00', 232, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25403, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.127873+00', 330, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25404, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.174677+00', 291, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25405, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.328051+00', 175, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25406, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.323786+00', 214, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25407, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.192958+00', 356, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25408, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.640334+00', 120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25409, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.624184+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25410, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.63402+00', 136, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25411, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.65298+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25412, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.642801+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25413, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.648467+00', 412, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25414, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.64038+00', 459, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25415, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.262634+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25416, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.330602+00', 83, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25417, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.314288+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25418, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.275166+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25419, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.302626+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25420, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.331664+00', 140, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25421, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.303407+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25422, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.357851+00', 137, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25423, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.346528+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25424, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.111661+00', 61, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25425, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.110846+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25426, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.129982+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25427, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.123399+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25428, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.13363+00', 94, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25429, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.094164+00', 191, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25430, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.156263+00', 175, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25431, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.121125+00', 94, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25432, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.177227+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25433, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.193018+00', 136, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25434, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.223895+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25435, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.335064+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25436, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.287774+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25437, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.235166+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25438, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.311412+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25439, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.351273+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25440, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.144895+00', 64, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25441, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.138257+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25442, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.14354+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25443, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.147539+00', 128, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25444, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.169976+00', 117, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25445, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.147322+00', 301, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25446, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.185164+00', 285, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25447, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.048368+00', 193, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25448, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.226731+00', 101, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25449, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.207659+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25450, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.135642+00', 265, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25451, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.160016+00', 251, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25452, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.174013+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25453, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.154185+00', 293, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25454, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.208713+00', 280, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25455, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.219417+00', 285, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25456, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.038338+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25457, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.122642+00', 117, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25458, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.045042+00', 230, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25459, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.171523+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25460, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.167528+00', 130, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25461, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.138299+00', 312, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25462, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.148926+00', 363, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25463, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.041749+00', 106, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25464, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.099021+00', 66, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25465, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.102485+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25466, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.108935+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25467, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.141744+00', 143, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25468, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.068522+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25469, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.071124+00', 228, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25470, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.126916+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25471, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.095838+00', 219, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25472, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:31.954311+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25473, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:31.92897+00', 233, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25474, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:31.953305+00', 236, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25475, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.043551+00', 153, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25476, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:31.992537+00', 212, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25477, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:31.901563+00', 376, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25478, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:31.927118+00', 412, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25479, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.05989+00', 190, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25480, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.0111+00', 272, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25481, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.030087+00', 280, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25482, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.027908+00', 332, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25483, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.148476+00', 220, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25484, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.068562+00', 309, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25485, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.251628+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25486, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.227294+00', 217, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25487, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.103445+00', 341, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25488, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:02.966942+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25489, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:02.948484+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25490, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:02.93032+00', 156, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25491, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.034201+00', 73, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25492, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.058462+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25493, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:02.940145+00', 245, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25494, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.022037+00', 370, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25495, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.029078+00', 291, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25496, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.104264+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25497, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.083484+00', 258, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25498, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.084558+00', 262, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25499, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.110129+00', 343, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25500, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.220288+00', 253, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25501, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.309667+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25502, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.31412+00', 254, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25503, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.400459+00', 220, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25504, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:33.916103+00', 169, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25505, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:33.979285+00', 201, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25506, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.028391+00', 166, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25507, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.028343+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25508, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.054515+00', 159, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25509, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:33.996776+00', 370, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25510, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.05086+00', 343, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25511, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.15001+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25512, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.040326+00', 227, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25513, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.075456+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25514, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.044151+00', 295, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25515, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.146519+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25516, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.116328+00', 293, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25517, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.146803+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25518, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.194785+00', 232, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25519, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.131223+00', 357, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25520, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:05.965428+00', 108, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25521, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:05.990841+00', 183, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25522, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:05.976941+00', 250, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25523, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:05.976996+00', 258, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25524, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.019696+00', 238, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25525, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.047816+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25526, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.04788+00', 467, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25527, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.21679+00', 149, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25528, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.081917+00', 301, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25529, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.159827+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25530, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.205669+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25531, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.080415+00', 350, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25532, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.356424+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25533, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.356332+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25534, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.283857+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25535, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.176126+00', 376, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25536, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:36.951199+00', 225, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25537, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:36.958364+00', 211, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25538, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.00916+00', 199, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25539, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:36.983861+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25540, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.022155+00', 230, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25541, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:36.946218+00', 354, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25542, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:36.962771+00', 459, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25543, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.107467+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25544, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.042305+00', 226, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25545, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.121391+00', 200, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25546, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.250856+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25547, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.240675+00', 139, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25548, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.110497+00', 275, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25549, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.298127+00', 88, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25550, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.107456+00', 292, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25551, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.193225+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25552, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.590992+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25553, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.67719+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25554, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.640271+00', 151, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25555, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.66557+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25556, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.714267+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25557, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.622155+00', 341, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25558, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.646201+00', 389, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25559, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.124796+00', 179, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25560, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.204711+00', 116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25561, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.168801+00', 173, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25562, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.204894+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25563, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.238837+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25564, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.319319+00', 127, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25565, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.240091+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25566, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.241295+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25567, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.325422+00', 177, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25568, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:40.92433+00', 117, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25569, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:40.967194+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25570, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:40.9285+00', 150, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25571, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:40.978338+00', 108, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25572, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:40.979121+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25573, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:40.949029+00', 341, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25574, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:40.978855+00', 326, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25575, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.987817+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25576, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.001206+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25577, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.070315+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25578, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.04197+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25579, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.103968+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25580, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.065107+00', 190, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25581, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.09776+00', 165, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25582, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.129953+00', 146, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25583, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.129382+00', 186, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25584, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.077949+00', 139, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25585, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.078141+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25586, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.090768+00', 242, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25587, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.199985+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25588, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.1504+00', 234, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25589, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.123112+00', 333, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25590, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.173917+00', 323, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25591, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.936805+00', 63, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25592, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.98623+00', 76, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25593, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.972715+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25594, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.021451+00', 157, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25595, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.023287+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25596, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.023345+00', 210, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25597, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.986691+00', 264, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25598, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.040448+00', 244, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25599, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.074469+00', 255, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25600, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.101109+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25601, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.130699+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25602, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.154717+00', 103, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25603, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.145233+00', 148, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25604, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.130921+00', 217, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25605, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.164903+00', 354, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25606, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.094031+00', 470, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25607, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.992908+00', 358, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25608, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.116429+00', 456, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25609, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.37648+00', 248, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25610, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.483814+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25611, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.07679+00', 576, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25612, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.450611+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25613, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.440565+00', 277, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25614, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.395296+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25615, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.541753+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25616, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.016504+00', 59, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25617, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.000855+00', 103, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25618, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.008234+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25619, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.089773+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25620, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.046251+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25621, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.027158+00', 265, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25622, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.047637+00', 331, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25623, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.101364+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25624, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.007543+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25625, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.030564+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25626, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.100474+00', 233, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25627, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.043211+00', 412, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25628, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.985118+00', 477, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25629, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.44726+00', 102, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25630, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.307065+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25631, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.318945+00', 315, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25632, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.47252+00', 188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25633, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.562454+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25634, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.514665+00', 292, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25635, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.501659+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25636, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.535591+00', 308, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25637, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.466449+00', 520, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25638, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.539886+00', 599, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25639, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.740882+00', 61, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25640, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.730557+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25641, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.745032+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25642, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.802599+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25643, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.845684+00', 127, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25644, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.862005+00', 134, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25645, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.907068+00', 91, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25646, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.826471+00', 202, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25647, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.911744+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25648, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:13.9385+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25649, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:13.967654+00', 78, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25650, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:13.965368+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25651, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.007592+00', 95, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25652, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:13.965317+00', 176, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25653, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:13.9385+00', 351, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25654, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:13.950422+00', 439, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25655, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.979527+00', 107, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25656, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.999119+00', 130, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25657, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.95689+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25658, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.983436+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25659, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.982125+00', 307, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25660, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.044988+00', 258, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25661, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.951199+00', 362, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25662, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.127636+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25663, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.159921+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25664, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.050787+00', 144, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25665, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.102065+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25666, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.061595+00', 254, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25667, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.10138+00', 287, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25668, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.101434+00', 307, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25669, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.102189+00', 348, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25670, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.102126+00', 394, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25671, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.291319+00', 307, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25672, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.408737+00', 262, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25673, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.362171+00', 321, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25674, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.590011+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25675, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.390362+00', 382, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25676, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.396+00', 389, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25677, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.365566+00', 448, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25678, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.321207+00', 495, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25679, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.402461+00', 446, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25680, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:14.959127+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25681, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.009766+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25682, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:14.994693+00', 158, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25683, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:14.99064+00', 159, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25684, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.026863+00', 148, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25685, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.134072+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25686, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:14.971365+00', 265, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25687, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.189969+00', 57, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25688, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.165548+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25689, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.165534+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25690, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.215836+00', 70, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25691, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.219715+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25692, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.265128+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25693, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.265134+00', 77, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25694, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.244543+00', 122, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25695, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.093563+00', 329, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25696, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:44.950983+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25697, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:44.901193+00', 231, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25698, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.035951+00', 116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25699, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:44.984617+00', 290, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25700, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:44.959174+00', 329, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25701, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.028174+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25702, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:44.928822+00', 412, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25703, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.165799+00', 195, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25704, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.036725+00', 363, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25705, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.153769+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25706, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.242687+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25707, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.191647+00', 225, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25708, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:44.99327+00', 440, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25709, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.170489+00', 281, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25710, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.346296+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25711, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.331847+00', 169, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25712, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:15.947848+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25713, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:15.98907+00', 76, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25714, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:15.978211+00', 104, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25715, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.001453+00', 82, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25716, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.040506+00', 66, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25717, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:15.987356+00', 124, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25718, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.064654+00', 63, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25719, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.028194+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25720, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.042763+00', 88, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25721, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.091694+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25722, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.173471+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25723, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.172347+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25724, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.14972+00', 187, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25725, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.177074+00', 170, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25726, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.096835+00', 253, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25727, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.258302+00', 272, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25728, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:46.994154+00', 416, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25729, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.085965+00', 372, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25730, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.176614+00', 290, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25731, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.209536+00', 416, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25732, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.317299+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25733, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.358171+00', 284, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25734, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.340204+00', 319, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25735, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.214454+00', 452, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25736, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.43154+00', 263, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25737, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.137214+00', 77, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25738, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.164694+00', 114, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25739, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.138558+00', 137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25740, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.157473+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25741, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.11021+00', 331, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25742, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.146014+00', 399, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25743, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.15261+00', 436, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25744, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:18.94369+00', 76, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25745, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:18.981628+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25746, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.060577+00', 56, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25747, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:18.981301+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25748, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:18.999818+00', 161, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25749, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.065255+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25750, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.068709+00', 122, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25751, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.048677+00', 139, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25752, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.025021+00', 183, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25753, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.091105+00', 78, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25754, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.112063+00', 110, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25755, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.161238+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25756, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.13406+00', 164, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25757, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.105742+00', 199, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25758, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.064683+00', 295, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25759, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.091994+00', 320, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25760, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.088185+00', 260, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25761, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.230007+00', 211, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25762, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.194075+00', 306, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25763, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.189989+00', 336, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25764, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.159431+00', 386, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25765, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.109104+00', 450, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25766, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.406797+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25767, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.179956+00', 476, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25768, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.409149+00', 250, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25769, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.182403+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25770, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.140419+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25771, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.195602+00', 114, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25772, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.124434+00', 201, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25773, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.18102+00', 166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25774, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.142252+00', 393, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25775, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.186604+00', 356, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25776, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.19829+00', 213, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25777, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.318405+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25778, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.057752+00', 517, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25779, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.191146+00', 466, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25780, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.313532+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25781, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.266127+00', 395, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25782, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.315321+00', 333, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25783, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.501479+00', 223, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25784, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.271248+00', 522, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25785, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.835457+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25786, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.888176+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25787, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.872951+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25788, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.888343+00', 183, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25789, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.97977+00', 131, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25790, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.856385+00', 311, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25791, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.914491+00', 327, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25792, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:49.906407+00', 144, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25793, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:49.957546+00', 215, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25794, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:49.973113+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25795, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.008927+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25796, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:49.958143+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25797, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:49.979614+00', 265, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25798, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.034381+00', 238, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25799, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:49.992292+00', 280, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25800, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:49.990007+00', 299, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25801, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:52.888763+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25802, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:52.939059+00', 64, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25803, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.012593+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25804, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:52.975923+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25805, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:52.971948+00', 152, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25806, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:52.977255+00', 236, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25807, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.040619+00', 205, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25808, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.882647+00', 106, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25809, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.912214+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25810, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.978146+00', 56, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25811, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.945498+00', 142, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25812, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.998573+00', 111, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25813, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.954618+00', 158, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25814, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.960296+00', 151, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25815, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.99462+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25816, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.978043+00', 222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25817, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:23.939064+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25818, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:23.943724+00', 188, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25819, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:23.929914+00', 222, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25820, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:23.965128+00', 215, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25821, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:23.982276+00', 200, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25822, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:23.864525+00', 375, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25823, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:23.983486+00', 397, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25824, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.057948+00', 111, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25825, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.057249+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25826, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.052591+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25827, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.120261+00', 154, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25828, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.090423+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25829, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.101394+00', 262, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25830, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.08116+00', 300, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25831, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.106289+00', 303, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25832, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.09108+00', 347, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25833, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:54.954629+00', 139, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25834, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:54.98943+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25835, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.058208+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25836, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.005281+00', 160, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25837, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.018651+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25838, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:54.954368+00', 261, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25839, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:54.99345+00', 317, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25840, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.440405+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25841, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.44446+00', 91, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25842, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.462062+00', 78, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25843, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.465241+00', 78, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25844, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.423302+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25845, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.481923+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25846, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.475113+00', 113, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25847, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.612352+00', 49, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25848, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.614134+00', 66, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25849, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:25.92092+00', 112, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25850, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:25.935517+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25851, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:25.929462+00', 243, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25852, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:25.960876+00', 212, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25853, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:25.880678+00', 317, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25854, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:25.943358+00', 342, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25855, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:25.926622+00', 446, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25856, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.148763+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25857, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.199706+00', 218, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25858, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.204701+00', 225, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25859, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.093544+00', 341, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25860, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.246068+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25861, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.093709+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25862, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.425052+00', 112, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25863, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.227156+00', 319, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25864, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.238954+00', 316, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25865, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.882636+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25866, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.910429+00', 131, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25867, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.901189+00', 159, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25868, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.937273+00', 160, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25869, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.942321+00', 166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25870, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.901188+00', 269, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25871, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.976239+00', 564, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25872, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.352349+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25873, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.514665+00', 198, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25874, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.36207+00', 363, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25875, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.553186+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25876, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.614326+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25877, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.407907+00', 372, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25878, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.568834+00', 235, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25879, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.358091+00', 453, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25880, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.713757+00', 109, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25881, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.867088+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25882, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.901556+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25883, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.912615+00', 184, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25884, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.958257+00', 151, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25885, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.926898+00', 188, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25886, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.939604+00', 248, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25887, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.938222+00', 330, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25888, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:52.930839+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25889, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:52.979973+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25890, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:52.983275+00', 111, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25891, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.0177+00', 115, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25892, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:52.967294+00', 171, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25893, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.020425+00', 138, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25894, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.034273+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25895, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.081126+00', 98, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25896, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.011225+00', 182, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25897, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:58.958138+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25898, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.066141+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25899, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.062879+00', 176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25900, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.132997+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25901, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.132622+00', 189, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25902, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.063372+00', 447, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25903, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.021697+00', 526, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25904, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.107329+00', 104, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25905, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.10853+00', 160, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25906, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.017503+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25907, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.123082+00', 189, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25908, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.115897+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25909, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.208019+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25910, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.040732+00', 375, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25911, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.322015+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25912, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.284597+00', 167, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25913, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.827077+00', 113, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25914, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.860802+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25915, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.897819+00', 63, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25916, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.897819+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25917, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.89237+00', 87, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25918, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.829452+00', 175, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25919, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.92172+00', 181, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25920, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:53.986012+00', 255, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25921, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.033817+00', 217, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25922, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.065678+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25923, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.128517+00', 183, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25924, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.160287+00', 188, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25925, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.254142+00', 102, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25926, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.139051+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25927, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.152482+00', 261, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25928, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.312958+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25929, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.927674+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25930, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.969854+00', 88, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25931, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.923744+00', 143, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25932, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.00234+00', 64, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25933, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.924183+00', 213, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25934, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.002104+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25935, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:00.904959+00', 287, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25936, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.04875+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25937, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.0625+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25938, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.187765+00', 111, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25939, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.049745+00', 281, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25940, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.078641+00', 286, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25941, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.215009+00', 164, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25942, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.120716+00', 277, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25943, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.164334+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25944, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.156987+00', 296, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25945, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.018229+00', 250, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25946, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.027155+00', 347, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25947, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.201407+00', 241, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25948, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.189292+00', 269, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25949, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.146935+00', 313, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25950, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.024149+00', 484, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25951, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.020516+00', 579, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25952, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.091361+00', 46, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25953, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.1107+00', 68, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25954, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.106153+00', 97, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25955, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.085228+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25956, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.083456+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25957, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.085532+00', 131, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25958, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.130248+00', 94, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25959, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.130088+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25960, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.149619+00', 85, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25961, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.366128+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25962, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.260247+00', 267, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25963, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.272332+00', 283, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25964, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.190307+00', 370, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25965, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.245307+00', 365, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25966, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.219008+00', 479, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25967, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.568458+00', 247, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25968, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.163651+00', 63, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25969, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.114782+00', 135, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25970, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.069784+00', 264, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25971, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.16703+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25972, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.163574+00', 183, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25973, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.222707+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25974, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.166229+00', 254, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25975, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.152802+00', 274, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25976, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.097+00', 367, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(25977, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.907767+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25978, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.925046+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25979, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.928622+00', 68, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25980, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.933765+00', 101, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25981, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.919651+00', 131, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25982, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.927034+00', 221, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(25983, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.911319+00', 313, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25984, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.037262+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(25985, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.104612+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(25986, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.09524+00', 202, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(25987, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.063144+00', 223, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(25988, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.029071+00', 315, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(25989, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.103239+00', 295, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(25990, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.039436+00', 364, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(25991, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.143036+00', 263, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(25992, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.123107+00', 296, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(25993, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.019495+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(25994, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.004793+00', 150, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(25995, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:04.996095+00', 171, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(25996, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.027255+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(25997, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:04.993257+00', 194, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(25998, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.002158+00', 312, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(25999, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.0365+00', 289, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26000, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.021643+00', 262, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26001, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.100074+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26002, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.083091+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26003, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.126156+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26004, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.033108+00', 312, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26005, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.086236+00', 299, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26006, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.215083+00', 382, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26007, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.309993+00', 333, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26008, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.21408+00', 445, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26009, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.870321+00', 49, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26010, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.836636+00', 81, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26011, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.858362+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26012, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.867861+00', 80, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26013, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.873997+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26014, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.885196+00', 161, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26015, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.836665+00', 226, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26016, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.172276+00', 87, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26017, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.142484+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26018, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.193299+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26019, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.203824+00', 92, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26020, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.218911+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26021, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.213318+00', 106, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26022, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.219661+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26023, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.174442+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26024, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.196232+00', 141, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26025, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:06.928675+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26026, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:06.900959+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26027, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:06.934044+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26028, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:06.978105+00', 197, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26029, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.030948+00', 180, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26030, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:06.939356+00', 366, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26031, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:06.93526+00', 412, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26032, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.043896+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26033, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:31.990132+00', 229, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26034, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.038138+00', 182, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26035, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.048184+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26036, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.046822+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26037, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.076548+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26038, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.023635+00', 251, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26039, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.032622+00', 248, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26040, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.048364+00', 280, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26041, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:37.963156+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26042, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:37.926784+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26043, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:37.933839+00', 248, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26044, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.008807+00', 175, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26045, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:37.951457+00', 255, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26046, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:37.901462+00', 401, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26047, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.00364+00', 383, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26048, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.275007+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26049, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.264615+00', 206, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26050, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.362063+00', 131, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26051, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.351608+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26052, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.312442+00', 368, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26053, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.530237+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26054, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.540475+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26055, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.558664+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26056, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.517703+00', 222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26057, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.899808+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26058, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.892026+00', 85, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26059, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.927803+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26060, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.907451+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26061, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.957873+00', 168, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26062, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.866153+00', 310, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26063, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.872171+00', 391, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26064, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.01761+00', 167, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26065, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.09037+00', 186, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26066, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.1228+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26067, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.10339+00', 189, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26068, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.072945+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26069, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.080247+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26070, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.306936+00', 124, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26071, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.246213+00', 197, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26072, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.16716+00', 285, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26073, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.118661+00', 55, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26074, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.117155+00', 74, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26075, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.084514+00', 116, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26076, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.110592+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26077, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.130695+00', 128, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26078, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.14932+00', 219, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26079, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.121107+00', 362, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26080, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:04.988876+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26081, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.070323+00', 76, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26082, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.035326+00', 127, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26083, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.065568+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26084, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.06566+00', 167, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26085, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.177041+00', 65, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26086, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.091943+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26087, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.049768+00', 221, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26088, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.176504+00', 110, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26089, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:12.960131+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26090, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:12.990775+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26091, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:12.983675+00', 218, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26092, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:12.979151+00', 243, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26093, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.024496+00', 206, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26094, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.02439+00', 261, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26095, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.078173+00', 342, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26096, X'16437f7aa4940b0ea20392c35337a6feb489dd536749e01c959cbbe5ec95b2a3', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:22.440585+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(26097, X'e5ada8ece79cec6c7e8158ba757159e4b36fd28ed0e8e5395127296cddbfa913', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:26.038223+00', 1679, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26098, X'6cff4d036328cc04f51af98f02a58d36565dd5d15bf648c15cc70cf71e21c436', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:36.226368+00', 486, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26099, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.028108+00', 283, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26100, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.114985+00', 247, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26101, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.110909+00', 251, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26102, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.120741+00', 262, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26103, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.165299+00', 233, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26104, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.025524+00', 418, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26105, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.051611+00', 427, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26106, X'16437f7aa4940b0ea20392c35337a6feb489dd536749e01c959cbbe5ec95b2a3', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:11.013712+00', 5, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(26107, X'e5ada8ece79cec6c7e8158ba757159e4b36fd28ed0e8e5395127296cddbfa913', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:14.688393+00', 1175, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26108, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.131526+00', 156, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26109, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.16521+00', 147, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26110, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.162287+00', 154, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26111, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.151844+00', 215, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26112, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.200623+00', 210, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26113, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.110456+00', 338, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26114, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.123164+00', 400, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26115, X'e97df1aa0bb19d467b43ff64771af69489c1302dda853419baab41ddb9414611', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:43.354888+00', 273, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26116, X'e97df1aa0bb19d467b43ff64771af69489c1302dda853419baab41ddb9414611', TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:58.674637+00', 170, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26117, X'e97df1aa0bb19d467b43ff64771af69489c1302dda853419baab41ddb9414611', TIMESTAMP WITH TIME ZONE '2022-12-22 17:30:39.403203+00', 279, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26118, X'76ba1b914435c433734e1738ab5f77e60f5119cbe9244bcca8a7bd0950ed5d5e', TIMESTAMP WITH TIME ZONE '2022-12-22 17:31:04.055393+00', 1172, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26119, X'e642eec1f72a68c44e8ea90b5cab6e8bb5f0394a666ed81d03ff338de788b9a7', TIMESTAMP WITH TIME ZONE '2022-12-22 17:31:39.811566+00', 1815, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26120, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.763918+00', 160, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26121, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.77984+00', 279, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26122, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.78472+00', 307, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26123, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.890461+00', 202, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26124, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.967629+00', 146, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26125, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.872488+00', 371, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26126, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.820711+00', 529, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26127, X'e97df1aa0bb19d467b43ff64771af69489c1302dda853419baab41ddb9414611', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:49.733869+00', 157, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26128, X'2f11cb7e524e5cf4b21499d21dc328768a927a2768eefa36080991a9f6d74278', TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:57.92527+00', 208, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26129, X'c3fb66e472bb6c077c939218b83b266d2575c9cec975a5e65d20970e15612a22', TIMESTAMP WITH TIME ZONE '2022-12-22 17:33:03.305325+00', 1457, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26130, X'4b83b8b155eab3b9d4aa3f9f0629eea666dd5c4d4540321ef4348f1a27b80546', TIMESTAMP WITH TIME ZONE '2022-12-22 17:34:35.587823+00', 1407, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26131, X'718cb17e85f712a56655bc164ea5901b88e58c41af67e4c1a832dfb8a335dd81', TIMESTAMP WITH TIME ZONE '2022-12-22 17:36:09.063552+00', 391, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26132, X'c3fb66e472bb6c077c939218b83b266d2575c9cec975a5e65d20970e15612a22', TIMESTAMP WITH TIME ZONE '2022-12-22 17:36:55.799641+00', 1477, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26133, X'6583d5096182d6d7f43ee42e906311e872f47aa77fee9911b92596cbcbe80264', TIMESTAMP WITH TIME ZONE '2022-12-22 17:37:21.372359+00', 185, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26134, X'718cb17e85f712a56655bc164ea5901b88e58c41af67e4c1a832dfb8a335dd81', TIMESTAMP WITH TIME ZONE '2022-12-22 17:37:24.213235+00', 602, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26135, X'8fe9ca5cb6bdc733eec93107bfd0044e1f642274981f6f766401d12448dc04b4', TIMESTAMP WITH TIME ZONE '2022-12-22 17:38:21.196607+00', 419, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26136, X'449b4f1f9587da1684432f9678a2d25cb595d457b77922c020326b4dc6a62541', TIMESTAMP WITH TIME ZONE '2022-12-22 17:38:32.345536+00', 270, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26137, X'0767787422d9ff708667b99554b766ab8653b06306350c528aa7f0680b4d6027', TIMESTAMP WITH TIME ZONE '2022-12-22 17:38:37.013132+00', 240, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26138, X'449b4f1f9587da1684432f9678a2d25cb595d457b77922c020326b4dc6a62541', TIMESTAMP WITH TIME ZONE '2022-12-22 17:38:39.565429+00', 418, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26139, X'f2482af3c1338e6f8cac902544b3fee02e05798d0aff7eb671b3823f9d0a4242', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:04.408385+00', 155, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26140, X'8e51d800d0e9c2155ebaeccb84509bd9debbcd95f4cfffb863fdc133bcf7d448', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:07.938107+00', 146, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$and/$or/$nor must be a nonempty array'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671730746, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$and/$or/$nor must be a nonempty array", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671730746, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "wolkMVqnUkqDbP5UHZLH1qzH4Z0=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(26141, X'b7bc24d8269d2f3ceb3e0746172016671a441f62c1086a97b310e955f6163805', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:15.508226+00', 141, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26142, X'b7bc24d8269d2f3ceb3e0746172016671a441f62c1086a97b310e955f6163805', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:17.241356+00', 178, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26143, X'052cc8c975a4fa4ad1563b5060c4b685fa636fd666246fdeec797aeda03fad61', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:19.162954+00', 318, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26144, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.350909+00', 128, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26145, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.35403+00', 205, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26146, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.320676+00', 230, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26147, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.35974+00', 230, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26148, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.400878+00', 251, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26149, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.403371+00', 285, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26150, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.267929+00', 431, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26151, X'bd012686b50d9378419875787b2970440bd2a743b25a4c982103f24fa8730925', TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:55.825156+00', 132, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(26152, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.436321+00', 62, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26153, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.356528+00', 212, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26154, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.428703+00', 161, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26155, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.505279+00', 164, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26156, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.505786+00', 219, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26157, X'63db668ce79896108f76629db830788058ae8cb95d1f91ff43876e86b6d1b6fa', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.510068+00', 368, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26158, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.483892+00', 406, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26159, X'e97df1aa0bb19d467b43ff64771af69489c1302dda853419baab41ddb9414611', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:13.390284+00', 160, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26160, X'd8a5bb9e401f512a576e5a54049fd905e0540b4d444d3822b1f3068072ea9760', TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:37.210175+00', 776, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26161, X'1abf4346e4596d567ebaaa77fff8b2a24f156d3de5bc697199e1c2ebd20faf2b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:10.013536+00', 81, 0, TRUE, 'ad-hoc', 'JSON reader expected token type ''COLON'' but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(26162, X'e3d57c014a135b2350762979cc59c73fb44c9b699629dd4f96086cea54d7c6f2', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:12.758219+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader expected token type ''COLON'' but found ''}''.', 1, NULL, NULL, NULL, 2, NULL), +(26163, X'7523d7b9adf1c4ba56b35111eba8a8db452c5ede263d00482ec833ddb9530406', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:25.565459+00', 16, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(26164, X'c1dd0a6d8659dd4c738d462b614ec2d640f8bc4fe83886ec16db28e2eb28688c', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:27.726138+00', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(26165, X'e4ac0831cda2f7993df8d71cdbb7b03e337def3de915676b52580a9228419318', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:30.087597+00', 868, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26166, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.448082+00', 80, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26167, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.453427+00', 88, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26168, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.477762+00', 127, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26169, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.533457+00', 106, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26170, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.531907+00', 158, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26171, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.458207+00', 230, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26172, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.531853+00', 1059, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26173, X'773b8fd01aad63423e53f035678c1dc07ce5f54bf7545519db0c8dd3bc04ef56', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:23.971315+00', 56, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26174, X'c1517b8af3d77ec1b328517e9a8972abef5950b1be669636d77fd063b2d37ea4', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:23.967111+00', 67, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26175, X'e700db1f9f312efd042a7b0e7cb4fc95e681c96e2ee89d56ba22c98e9d7dea0e', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.017558+00', 46, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26176, X'188494a6b0e3f5c5a92cc36ac0a57f47f51b116c5d163269d7bd1ee41684412e', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:23.995325+00', 70, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26177, X'cf8b406797575a5b504c12280ed50661aa6d474fcb81e95eb15254a075522948', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:23.986157+00', 113, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26178, X'37c365038a59c73dbe38650932e8a0930d04566ae85104f26171e6aece4c94ab', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.024996+00', 105, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26179, X'03cefc1ec2e90c46416acdaccca48e42016b3ccdd9037edecbcf4069e03f0942', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.025013+00', 191, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26180, X'943e23a00f50d1db1c29deed029ef32b7c3ac48441269f1715d96f2d318dfac3', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.524757+00', 103, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26181, X'fdf25174dd76bf49788dd170804065a6692dd102d810cb6eaf8a16d9b314a9ed', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.508979+00', 183, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26182, X'5d7471c6e8bdc5d310e3679b40efa74f6be475fbaf5a5e4db344f30fb95d4741', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.530172+00', 189, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26183, X'0c043cdf3302cfccb55ba5ec14449b7d55bd287cf8608a140fa29c732655dab6', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.537124+00', 208, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26184, X'22c09c1f037db977115c230a2efda81a4f751492038fe9f15f237eb29a5b5729', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.524955+00', 226, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26185, X'317c40240c300e25f74abf4d8464d1a1706f0f0815ccb231db84ba14556f40b4', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.528748+00', 298, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26186, X'bcd443b264c51d84503c356a9762ab18360fa0e0274f887cbb9f8b09757e23ed', TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.535803+00', 426, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26187, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.01601+00', 227, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(26188, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:14.939492+00', 333, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(26189, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:14.98591+00', 350, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(26190, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.011926+00', 375, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(26191, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.194246+00', 192, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(26192, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.058639+00', 347, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(26193, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.21315+00', 225, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(26194, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.163901+00', 301, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(26195, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.132987+00', 344, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(26196, X'317ea3ea24c31e3c8f8d992ef299184b13a46d58437e4540f50fa535e47ca150', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:49.688838+00', 63, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(26197, X'93af36f968ca8f913647f77c6bb9ee588e95a27159d0eb0b78ed5584b9bc2d35', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:50.605953+00', 142, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26198, X'4214a9c178449f7891a888c635418897a09f57540bfb0155d57a04ad7465960a', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:51.662257+00', 38, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(26199, X'592017c3f2f9092fba419ead0344d83a97fc8226c8e0671b54bf1582237e67e3', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:52.597334+00', 67, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(26200, X'885af516da1f92f38f8e1d8e77c431d20d0143b314f6d44f2ae57c4489debab4', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:53.654442+00', 101, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26201, X'ac8f4cd7a6562f7f46effecb856f4ee918f2eaae68ddb717f3bced4b2b950a17', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:54.791097+00', 48, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(26202, X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:56.227081+00', 75, 5, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(26203, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:56.995477+00', 326, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26204, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:58.188492+00', 105, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(26205, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:53.929526+00', 125, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(26206, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.052918+00', 62, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26207, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.060249+00', 198, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(26208, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.050082+00', 237, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(26209, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:53.989407+00', 308, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(26210, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.119476+00', 196, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(26211, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.136314+00', 192, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(26212, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.042262+00', 312, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(26213, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.01867+00', 386, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(26214, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.192471+00', 143, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26215, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.203187+00', 238, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26216, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.214295+00', 286, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26217, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.333953+00', 277, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26218, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.315601+00', 303, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26219, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.205932+00', 423, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26220, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.285678+00', 1251, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26221, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.338993+00', 90, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(26222, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.356805+00', 154, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(26223, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.332303+00', 187, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(26224, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.239863+00', 301, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(26225, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.348907+00', 223, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(26226, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.443333+00', 219, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(26227, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.400345+00', 267, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26228, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.552018+00', 127, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(26229, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.419965+00', 331, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(26230, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-22 18:05:37.028089+00', 84, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(26231, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.003708+00', 138, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(26232, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.03114+00', 254, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(26233, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.216554+00', 90, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(26234, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.216534+00', 160, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(26235, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.2036+00', 181, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(26236, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:20.999732+00', 392, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(26237, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.082056+00', 323, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(26238, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.220763+00', 311, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(26239, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.239456+00', 369, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(26240, X'0e68d3dcdd948c160ca6b03c46a9e9b47e8a8d7b6f045f18d073b192bb2ac768', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.53242+00', 174, 3, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(26241, X'd628c99b06ac6828f2d69899748fa37cdbbdf3fab85edcdf4bce0e588526c505', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.549286+00', 196, 2, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(26242, X'0b0edc9ba83efb0efc6aab918cac0202e0581773782f3d8dd7357ecfc3b35319', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.540172+00', 226, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(26243, X'4677b9ecc89d89f05664fdab54c34201265023d2021e7db35a25fcead4696864', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.712241+00', 194, 3, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(26244, X'0f780b33a18f5b26ce9c3e617ee9eef6207c5504c20377e8a2face58f3a4da9c', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.806467+00', 143, 2, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(26245, X'ad68469d2cdc9034ac3215347dc87a1d6681774acad5ac7159e880460ca57ad5', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.735178+00', 228, 3, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(26246, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.731529+00', 287, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(26247, X'fa361798544ef4bf04cc5dd15dd34753a6d76d4fec0a8cf084c7d1b62168bb79', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.845259+00', 211, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(26248, X'601272030dbe4907d3d5c93404283756601aa7f81b947cca7da2c310928ed9b2', TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.788543+00', 279, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26249, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.48225+00', 578, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(26250, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.48225+00', 548, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26251, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.506707+00', 554, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(26252, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.767369+00', 369, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(26253, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.578107+00', 554, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(26254, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.494206+00', 665, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(26255, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.473117+00', 587, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(26256, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.92737+00', 712, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26257, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.967834+00', 682, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(26258, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.838593+00', 816, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(26259, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.634223+00', 1115, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26260, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.634223+00', 1155, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(26261, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.04992+00', 933, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26262, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.012466+00', 979, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(26263, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.04992+00', 945, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(26264, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.050831+00', 1023, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26265, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.020303+00', 1219, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26266, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.019101+00', 1246, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26267, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.019101+00', 1254, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(26268, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.050856+00', 1278, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 21, 3, NULL, 2, NULL), +(26269, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.111899+00', 1238, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26270, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.045452+00', 1308, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26271, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.007032+00', 474, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26272, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.478868+00', 2073, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26273, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:34.478868+00', 2076, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(26274, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.024631+00', 788, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26275, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.320642+00', 1565, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26276, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.60653+00', 1286, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26277, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.595592+00', 1327, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26278, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.595588+00', 1398, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(26279, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.595588+00', 1397, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26280, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.684014+00', 374, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26281, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.389576+00', 1670, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26282, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.773954+00', 1612, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26283, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.521376+00', 880, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26284, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.521376+00', 908, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(26285, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.520675+00', 1245, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26286, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.686204+00', 1218, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26287, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.628053+00', 2881, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26288, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.544966+00', 147, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26289, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.529202+00', 163, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26290, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.525284+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26291, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.654215+00', 89, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26292, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.508492+00', 551, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26293, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.688333+00', 412, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26294, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.729663+00', 451, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26295, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.829342+00', 465, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26296, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.801445+00', 547, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26297, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.031631+00', 360, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26298, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.090841+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26299, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.137748+00', 308, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26300, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.123997+00', 357, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26301, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.13898+00', 350, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26302, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.122757+00', 407, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26303, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.670053+00', 1392, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26304, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.565015+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26305, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.678124+00', 295, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26306, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.85805+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26307, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.772985+00', 257, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26308, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.710172+00', 367, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26309, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.880318+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26310, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.06145+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26311, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.884907+00', 352, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26312, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.826107+00', 412, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26313, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.43987+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26314, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.516166+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26315, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.472438+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26316, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.469963+00', 164, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26317, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.504383+00', 152, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26318, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.499061+00', 251, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26319, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.466566+00', 960, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26320, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.587318+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26321, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.623035+00', 271, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26322, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.964914+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26323, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.714451+00', 403, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26324, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.900554+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26325, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.710147+00', 427, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26326, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.891064+00', 324, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26327, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.025604+00', 254, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26328, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.979384+00', 310, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26329, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.27018+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26330, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.270323+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26331, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.285401+00', 88, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26332, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.283688+00', 162, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26333, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.279635+00', 174, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26334, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.248123+00', 209, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26335, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.276012+00', 939, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26336, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.416899+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26337, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.414144+00', 115, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26338, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.467147+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26339, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.486059+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26340, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.498028+00', 97, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26341, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.502157+00', 102, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26342, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.541557+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26343, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.494644+00', 117, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26344, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.550488+00', 68, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26345, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.508562+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26346, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.547839+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26347, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.508562+00', 199, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26348, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.551101+00', 171, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26349, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.51582+00', 241, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26350, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.2693+00', 560, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26351, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.513733+00', 1084, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26352, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.216661+00', 54, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26353, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.234154+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26354, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.21443+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26355, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.26767+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26356, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.248252+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26357, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.270873+00', 166, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26358, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.22158+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26359, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.382048+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26360, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.218071+00', 262, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26361, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.448964+00', 209, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26362, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.616273+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26363, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.48012+00', 290, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26364, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.606663+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26365, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.627342+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26366, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.432164+00', 417, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26367, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.483943+00', 1174, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26368, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.818352+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26369, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.719216+00', 269, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26370, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.81852+00', 183, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26371, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.875341+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26372, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.874297+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26373, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.903774+00', 158, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26374, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.898611+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26375, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.916475+00', 222, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26376, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.996239+00', 165, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26377, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.406592+00', 53, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26378, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.357506+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26379, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.410356+00', 134, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26380, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.402556+00', 150, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26381, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.41166+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26382, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.380275+00', 281, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26383, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.36573+00', 840, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26384, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:36.722571+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26385, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:36.880497+00', 255, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26386, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:36.748792+00', 425, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26387, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:36.979847+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26388, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.024172+00', 172, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26389, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.078292+00', 255, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26390, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.047086+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26391, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.041581+00', 456, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26392, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.088609+00', 430, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26393, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:46.997315+00', 167, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26394, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.008634+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26395, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.076648+00', 120, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26396, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.099153+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26397, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.11073+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26398, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.051797+00', 355, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26399, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.049439+00', 942, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26400, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:16.870809+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26401, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.093253+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26402, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.043276+00', 278, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26403, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.156632+00', 184, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26404, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.050632+00', 308, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26405, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.080703+00', 299, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26406, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:16.971473+00', 426, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26407, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.083069+00', 324, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26408, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.222187+00', 205, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26409, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.590893+00', 56, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26410, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.640065+00', 43, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26411, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.573217+00', 114, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26412, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.612863+00', 88, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26413, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.66835+00', 47, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26414, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.604729+00', 185, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26415, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.582444+00', 742, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26416, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:39.958493+00', 158, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26417, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:39.988416+00', 293, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26418, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.133672+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26419, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.033325+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26420, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.122479+00', 239, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26421, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.259585+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26422, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.199491+00', 183, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26423, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.252234+00', 135, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26424, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.294469+00', 255, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26425, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.549559+00', 100, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26426, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.567644+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26427, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.660791+00', 117, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26428, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.624502+00', 155, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26429, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.668031+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26430, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.562228+00', 288, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26431, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.547713+00', 924, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26432, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.739274+00', 171, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26433, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.712104+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26434, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.674006+00', 255, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26435, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.706099+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26436, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.516781+00', 460, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26437, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.770261+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26438, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.689691+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26439, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.758245+00', 260, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26440, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.747023+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26441, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.686371+00', 81, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26442, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.745751+00', 126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26443, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.740263+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26444, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.722127+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26445, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.722323+00', 197, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26446, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.731128+00', 295, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26447, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.714376+00', 1055, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26448, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.384207+00', 130, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26449, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.399913+00', 126, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26450, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.345475+00', 184, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26451, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.35833+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26452, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.418587+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26453, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.461075+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26454, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.469798+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26455, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.455614+00', 198, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26456, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.5222+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26457, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.551197+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26458, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.598426+00', 78, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26459, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.622281+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26460, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.660623+00', 74, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26461, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.679593+00', 62, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26462, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.682004+00', 175, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26463, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.578526+00', 947, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26464, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.4222+00', 371, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26465, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.642911+00', 227, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26466, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.75422+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26467, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.361453+00', 524, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26468, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.602862+00', 300, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26469, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.864993+00', 82, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26470, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.878701+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26471, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.623396+00', 431, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26472, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.480452+00', 599, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26473, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.193463+00', 73, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26474, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.218553+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26475, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.213002+00', 84, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26476, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.254313+00', 68, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26477, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.211593+00', 122, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26478, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.210152+00', 176, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26479, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.220135+00', 736, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26480, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.613779+00', 199, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26481, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.717973+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26482, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.725755+00', 156, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26483, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.626067+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26484, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.770714+00', 159, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26485, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.828069+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26486, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.705749+00', 278, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26487, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.751416+00', 232, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26488, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.790084+00', 206, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26489, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:14.931095+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26490, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.004363+00', 196, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26491, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.054102+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26492, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:14.922198+00', 313, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26493, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:14.937432+00', 333, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26494, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:14.926096+00', 349, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26495, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:14.937551+00', 1026, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26496, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.571901+00', 53, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26497, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.622566+00', 61, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26498, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.604876+00', 113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26499, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.620403+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26500, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.593201+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26501, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.640371+00', 88, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26502, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.596168+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26503, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.573868+00', 169, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26504, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.667221+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26505, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.710035+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26506, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.721663+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26507, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.740507+00', 82, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26508, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.732182+00', 92, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26509, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.752447+00', 79, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26510, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.75882+00', 162, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26511, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.736302+00', 757, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26512, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.681144+00', 94, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26513, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.736945+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26514, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.760603+00', 222, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26515, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.947522+00', 135, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26516, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.956254+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26517, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.75646+00', 378, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26518, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:13.027843+00', 118, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26519, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.876375+00', 296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26520, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.861758+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26521, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.517553+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26522, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.638344+00', 117, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26523, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.613649+00', 142, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26524, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.675956+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26525, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.596016+00', 196, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26526, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.673803+00', 276, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26527, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.52737+00', 964, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26528, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.564941+00', 113, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26529, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.597815+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26530, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.594973+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26531, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.623621+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26532, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.646817+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26533, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.645748+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26534, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.634007+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26535, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.670092+00', 88, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26536, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.695587+00', 72, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26537, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.267707+00', 62, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26538, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.14149+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26539, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.25801+00', 115, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26540, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.308677+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26541, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.283525+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26542, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.177079+00', 291, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26543, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.304407+00', 740, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26544, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.410381+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26545, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.489816+00', 126, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26546, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.462896+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26547, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.460462+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26548, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.539361+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26549, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.465234+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26550, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.582042+00', 150, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26551, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.470933+00', 256, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26552, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.514791+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26553, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.58629+00', 337, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26554, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.636142+00', 311, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26555, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.666309+00', 453, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26556, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.640833+00', 500, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26557, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.677479+00', 500, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26558, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.556276+00', 664, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26559, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.657986+00', 1466, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26560, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.801019+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26561, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.830183+00', 154, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26562, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.837073+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26563, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.778401+00', 270, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26564, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.842046+00', 215, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26565, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.86633+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26566, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.890329+00', 250, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26567, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.830061+00', 317, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26568, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.010188+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26569, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.512206+00', 154, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26570, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.578471+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.62193+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26572, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.598574+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26573, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.578475+00', 275, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26574, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.562093+00', 388, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26575, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.559681+00', 1144, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26576, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.741726+00', 63, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26577, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.690067+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26578, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.676233+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26579, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.757932+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26580, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.688866+00', 278, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26581, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.784453+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26582, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.862106+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26583, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.733898+00', 283, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26584, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.853515+00', 166, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26585, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.629283+00', 237, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26586, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.543072+00', 400, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26587, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.830181+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26588, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.82684+00', 221, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26589, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.667353+00', 425, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26590, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.549747+00', 626, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26591, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.539332+00', 1375, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26592, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.733727+00', 264, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26593, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.774627+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26594, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.832065+00', 226, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26595, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.838287+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26596, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.931223+00', 219, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26597, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.932066+00', 268, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26598, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.828309+00', 426, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26599, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.69376+00', 570, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26600, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:06.842803+00', 500, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26601, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.57411+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26602, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.634872+00', 109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26603, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.652689+00', 136, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26604, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.657681+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26605, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.627151+00', 236, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26606, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.610243+00', 340, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26607, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.604126+00', 950, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26608, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.436972+00', 127, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26609, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.470525+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26610, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.47654+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26611, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.558371+00', 124, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26612, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.522473+00', 214, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26613, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.574847+00', 167, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26614, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.51131+00', 246, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26615, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.557646+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26616, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.527088+00', 255, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26617, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.145013+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26618, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.151759+00', 94, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26619, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.171224+00', 121, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26620, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.152816+00', 218, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26621, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.160632+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26622, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.201466+00', 240, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26623, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.268549+00', 953, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26624, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.720339+00', 79, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26625, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.697881+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26626, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.716105+00', 190, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26627, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.817533+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26628, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.768457+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26629, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.818901+00', 175, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26630, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.894151+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26631, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.889038+00', 114, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26632, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.902461+00', 198, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26633, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.627705+00', 233, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26634, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.728243+00', 159, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26635, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.709991+00', 204, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26636, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.801277+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26637, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.792594+00', 216, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26638, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.679742+00', 483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26639, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.762524+00', 1138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26640, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.448434+00', 85, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26641, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.434048+00', 142, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26642, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.470091+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26643, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.375495+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26644, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.520758+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26645, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.562979+00', 90, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26646, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.486177+00', 182, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26647, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.565316+00', 116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26648, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.588467+00', 133, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26649, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.578639+00', 185, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26650, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.54278+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26651, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.759007+00', 81, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26652, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.715335+00', 195, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26653, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.782343+00', 143, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26654, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.830174+00', 264, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26655, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.77908+00', 924, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26656, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.817082+00', 168, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26657, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.816766+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26658, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.909731+00', 82, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26659, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.832934+00', 159, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26660, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.846383+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26661, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.825688+00', 194, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26662, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.833395+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26663, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.878103+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26664, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.863206+00', 197, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26665, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.725012+00', 100, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26666, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.787174+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26667, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.852214+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26668, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.904328+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26669, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.899358+00', 192, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26670, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.722825+00', 383, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26671, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.78782+00', 982, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26672, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.533906+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26673, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.606388+00', 53, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26674, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.585702+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26675, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.631481+00', 70, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26676, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.623291+00', 88, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26677, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.609964+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26678, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.625174+00', 155, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26679, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.732897+00', 88, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26680, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.696456+00', 150, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26681, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.548287+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26682, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.520825+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26683, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.623678+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26684, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.627297+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26685, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.60346+00', 181, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26686, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.666377+00', 262, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26687, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.584279+00', 1045, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26688, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.638099+00', 136, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26689, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.774319+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26690, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.635786+00', 366, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26691, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.70431+00', 383, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26692, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.760497+00', 351, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26693, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.82507+00', 319, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26694, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.856331+00', 319, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26695, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.014193+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26696, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.046198+00', 238, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26697, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.563539+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26698, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.555968+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26699, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.583638+00', 60, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26700, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.570802+00', 97, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26701, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.593041+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26702, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.549275+00', 185, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26703, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.571847+00', 818, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26704, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.58954+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26705, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.570568+00', 107, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26706, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.597849+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26707, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.635807+00', 106, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26708, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.669494+00', 77, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26709, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.667982+00', 91, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26710, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.631099+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26711, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.705358+00', 66, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26712, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.693964+00', 114, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26713, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.695393+00', 84, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26714, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.740438+00', 61, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26715, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.760151+00', 77, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26716, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.754017+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26717, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.739178+00', 108, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26718, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.708108+00', 187, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26719, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.708115+00', 774, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26720, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.670145+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26721, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.673744+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26722, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.738139+00', 362, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26723, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.970639+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26724, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.022059+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26725, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.637253+00', 548, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26726, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.964989+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26727, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.956373+00', 272, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26728, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.950865+00', 278, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26729, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.53703+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26730, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.552375+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26731, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.620399+00', 166, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26732, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.568304+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26733, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.650514+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26734, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.540659+00', 290, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26735, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.631943+00', 895, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26736, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.625484+00', 100, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26737, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.711756+00', 79, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26738, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.666713+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26739, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.710061+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26740, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.701663+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26741, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.740309+00', 95, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26742, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.740906+00', 99, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26743, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.735143+00', 105, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26744, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.754139+00', 110, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26745, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.310146+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26746, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.335276+00', 182, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26747, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.418335+00', 149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26748, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.381342+00', 206, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26749, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.371994+00', 240, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26750, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.401579+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26751, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.405178+00', 1113, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26752, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.302216+00', 80, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26753, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.330617+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26754, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.353399+00', 89, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26755, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.3525+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26756, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.358922+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26757, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.378103+00', 88, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26758, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.417971+00', 71, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26759, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.405336+00', 91, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26760, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.392098+00', 107, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26761, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.558063+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26762, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.650221+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26763, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.647253+00', 137, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26764, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.684754+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26765, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.813477+00', 102, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26766, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.563553+00', 491, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26767, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.677643+00', 1269, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26768, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.604298+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26769, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.584661+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26770, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.636191+00', 165, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26771, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.731516+00', 86, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26772, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.646287+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26773, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.614256+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26774, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.606689+00', 240, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26775, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.68723+00', 191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26776, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.723833+00', 167, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26777, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.571792+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26778, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.577097+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26779, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.563208+00', 171, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26780, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.60636+00', 140, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26781, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.636071+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26782, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.534565+00', 353, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26783, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.667251+00', 1218, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26784, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.612231+00', 274, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26785, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.655792+00', 292, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26786, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.729499+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26787, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.747926+00', 310, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26788, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.630231+00', 455, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26789, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.757801+00', 352, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26790, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.658893+00', 480, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26791, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.608492+00', 554, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26792, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.651607+00', 556, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26793, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.254624+00', 68, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26794, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.286761+00', 96, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26795, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.322673+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26796, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.325126+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26797, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.350049+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26798, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.33395+00', 216, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26799, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.347157+00', 1040, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26800, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.107168+00', 152, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26801, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.156926+00', 218, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26802, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.210126+00', 199, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26803, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.124549+00', 290, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26804, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.298229+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26805, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.246567+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26806, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.328929+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26807, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.311242+00', 263, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26808, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.389779+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26809, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.547799+00', 52, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26810, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.537235+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26811, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.534164+00', 94, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26812, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.552531+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26813, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.567906+00', 79, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26814, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.559172+00', 196, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26815, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.522883+00', 780, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26816, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.753612+00', 278, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26817, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.823575+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26818, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.88293+00', 309, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26819, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.75539+00', 442, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26820, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.797764+00', 411, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26821, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.880003+00', 363, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26822, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.881289+00', 371, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26823, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.974296+00', 382, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26824, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:33.922024+00', 485, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26825, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.646084+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26826, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.728514+00', 288, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26827, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.543235+00', 485, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26828, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.642558+00', 407, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26829, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.689424+00', 374, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26830, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.534185+00', 571, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26831, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.569996+00', 1479, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26832, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.609718+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26833, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.702279+00', 57, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26834, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.658085+00', 116, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26835, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.726241+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26836, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.728958+00', 123, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26837, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.645305+00', 213, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26838, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.754662+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26839, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.731612+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26840, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.732139+00', 181, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26841, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.588917+00', 288, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26842, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.561598+00', 335, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26843, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.602202+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26844, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.758297+00', 195, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26845, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.599801+00', 401, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26846, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.680838+00', 385, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26847, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.573269+00', 1184, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26848, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.411374+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26849, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.465363+00', 96, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26850, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.497108+00', 99, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26851, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.469531+00', 142, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26852, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.517318+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26853, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.535503+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26854, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.533922+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26855, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.473411+00', 187, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26856, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.562258+00', 125, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26857, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.432227+00', 62, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26858, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.476834+00', 167, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26859, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.578197+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26860, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.554142+00', 173, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26861, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.573605+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26862, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.551919+00', 347, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26863, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.577543+00', 1222, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26864, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.754231+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26865, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.788639+00', 149, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26866, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.894763+00', 58, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26867, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.8592+00', 102, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26868, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.818083+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26869, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.876531+00', 110, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26870, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.902088+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26871, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.860382+00', 137, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26872, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.835812+00', 182, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26873, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.609081+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26874, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.659775+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26875, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.684907+00', 106, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26876, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.620433+00', 175, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26877, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.686958+00', 122, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26878, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.679367+00', 298, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26879, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.715622+00', 1016, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26880, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.729941+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26881, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.756643+00', 104, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26882, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.80181+00', 78, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26883, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.807169+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26884, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.792081+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26885, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.777492+00', 134, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26886, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.866427+00', 56, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26887, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.81173+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26888, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.850123+00', 95, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26889, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.568872+00', 84, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26890, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.530095+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26891, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.578231+00', 111, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26892, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.57849+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26893, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.555991+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26894, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.513773+00', 269, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26895, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.564355+00', 883, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26896, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:37.807869+00', 248, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26897, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.075183+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26898, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.045915+00', 190, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26899, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.209312+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26900, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.139934+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26901, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.230861+00', 167, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26902, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.187837+00', 257, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26903, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.330999+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26904, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.310144+00', 205, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26905, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.777528+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26906, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.740319+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26907, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.863036+00', 207, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26908, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.87831+00', 209, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26909, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.968949+00', 128, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26910, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.774262+00', 336, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26911, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.840336+00', 879, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26912, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.647839+00', 75, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26913, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.738919+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26914, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.818205+00', 103, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26915, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.773338+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26916, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.700383+00', 236, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26917, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.784415+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26918, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.853953+00', 128, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26919, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.786386+00', 213, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26920, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.887631+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26921, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.709405+00', 66, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26922, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.694092+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26923, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.717188+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(26924, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.742691+00', 71, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(26925, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.72945+00', 86, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26926, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.689618+00', 189, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26927, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.72893+00', 804, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26928, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.753877+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(26929, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.751833+00', 143, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(26930, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.813167+00', 88, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(26931, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.813253+00', 93, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(26932, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.862489+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(26933, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.858309+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26934, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.820994+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(26935, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.831584+00', 117, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(26936, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.822898+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(26937, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.361621+00', 190, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26938, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.233143+00', 312, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26939, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.274614+00', 294, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26940, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.316969+00', 264, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26941, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.281405+00', 301, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26942, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.271916+00', 435, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26943, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.250623+00', 1123, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26944, X'afb6f48f83ca47743c1a4584e9da8f4bd86ec302a0d53d90e888437dfd47a020', TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:48.085197+00', 688, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26945, X'baab165aadfa90cbcc938255a3f49cfdb2f2f189b0b71d1f800f6c8cfc416282', TIMESTAMP WITH TIME ZONE '2022-12-23 07:38:04.486948+00', 878, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26946, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.736572+00', 89, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26947, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.682885+00', 170, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26948, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.758507+00', 152, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26949, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.726418+00', 211, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26950, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.775229+00', 217, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26951, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.660208+00', 361, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26952, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.736681+00', 942, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26953, X'afb6f48f83ca47743c1a4584e9da8f4bd86ec302a0d53d90e888437dfd47a020', TIMESTAMP WITH TIME ZONE '2022-12-23 07:42:00.636563+00', 864, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26954, X'9d41b72505acdde022d67c4dc9758746db632b89fe96e3bc4a80bfdf64cfb21f', TIMESTAMP WITH TIME ZONE '2022-12-23 07:42:49.172825+00', 932, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26955, X'7da53c830b2acce90bbd06a33134baaf3079f5d9d39c542a811c54298033a6ad', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:10.945764+00', 543, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(26956, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.608617+00', 165, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26957, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.579413+00', 208, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26958, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.693293+00', 258, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26959, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.626525+00', 379, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26960, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.721547+00', 304, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26961, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.58057+00', 459, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26962, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.722677+00', 1024, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26963, X'a09f5867ff540a01e7a77bda1fda810f73b0d0481c74bf1e114987b2ce8fbfe6', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.078076+00', 167, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26964, X'1d77f3601204641e9906aab578d9fca496f62c2c8a95c89591a985302b6ebd7c', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.153092+00', 139, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26965, X'a23c697c530d0807d1b5f6d6907768562ff63d6bcb6edc7d851e7b20e905163d', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.096163+00', 214, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26966, X'537639098fd5c4d510ad7c9d588cd072da2b4b0d43c3c10f1b51ca337663387f', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.055814+00', 281, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26967, X'f8585eced85349f221d1ad80223034a510d1944fa3f6859da1f1bc2663e6875c', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.026812+00', 330, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26968, X'5613b62f5d014259de6026843f88d385ffb0c29c2f62e2b783f715b4762a7e58', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.179063+00', 165, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26969, X'529930ea546bc050238a1fb6dbf6c6c03ba6d9de1ae977165dfca7219605097b', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.049449+00', 329, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26970, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.422872+00', 126, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26971, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.470486+00', 90, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26972, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.446804+00', 131, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26973, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.441784+00', 153, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26974, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.472862+00', 135, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26975, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.410401+00', 247, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26976, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.443107+00', 959, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26977, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.279748+00', 347, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(26978, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.325812+00', 421, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(26979, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.366842+00', 441, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(26980, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.414132+00', 394, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(26981, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.411654+00', 423, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(26982, X'2a64f234f79247d639f5c122b79d121777f13b42ac4f7332504a6a6b17aab13d', TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.325984+00', 596, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(26983, X'ff60ea9454df04fc7211d60dd99df55be3e2723bf76a55c6928e3f3cdceb0b97', TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.411776+00', 529, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(26984, X'5da2c92d90ddbdb618ba1f1651553eacec5adf0774cdaed554d888101b9b531e', TIMESTAMP WITH TIME ZONE '2022-12-23 07:51:43.586454+00', 104, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(26985, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.183762+00', 58, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(26986, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.214131+00', 112, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(26987, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.214452+00', 160, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(26988, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.22611+00', 173, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(26989, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.174378+00', 256, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(26990, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.217044+00', 289, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(26991, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.576738+00', 404, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(26992, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.55396+00', 445, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(26993, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.609955+00', 699, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(26994, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.574907+00', 785, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(26995, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.55738+00', 1055, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(26996, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.016231+00', 622, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(26997, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.217048+00', 1666, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(26998, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.217048+00', 1669, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(26999, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.302559+00', 1595, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27000, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.034066+00', 919, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(27001, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.40931+00', 609, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(27002, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.980714+00', 1067, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(27003, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.634403+00', 1410, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27004, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.045994+00', 1011, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27005, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.217283+00', 866, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27006, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.215692+00', 968, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27007, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.215692+00', 978, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(27008, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.209484+00', 1112, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27009, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.222823+00', 1335, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27010, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.588833+00', 1275, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27011, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.853657+00', 1026, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27012, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.560343+00', 2385, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27013, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.006129+00', 2000, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(27014, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.006129+00', 1976, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27015, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.50059+00', 1538, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27016, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.50059+00', 1555, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(27017, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.517587+00', 1547, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27018, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.81811+00', 1291, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27019, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.81811+00', 1292, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(27020, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.216801+00', 1906, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27021, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.636955+00', 1610, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27022, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:12.5882+00', 387, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27023, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:12.826793+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27024, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:12.901081+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27025, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.10871+00', 183, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27026, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.077119+00', 417, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27027, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:12.826778+00', 685, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27028, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.310282+00', 226, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27029, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.161324+00', 401, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27030, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.144941+00', 415, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27031, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.080896+00', 492, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27032, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.037039+00', 550, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27033, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.287499+00', 331, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27034, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.373772+00', 283, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27035, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.148738+00', 517, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27036, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.040524+00', 632, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27037, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:12.917806+00', 1227, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27038, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.152488+00', 165, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27039, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.257614+00', 287, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27040, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.326229+00', 293, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27041, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.391063+00', 420, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27042, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.33615+00', 521, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27043, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.466895+00', 410, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27044, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.568108+00', 356, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27045, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.691936+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27046, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.62313+00', 309, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27047, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.564468+00', 386, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27048, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.435847+00', 514, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27049, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.635129+00', 329, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27050, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.62664+00', 351, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27051, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.617989+00', 357, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27052, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.71058+00', 313, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27053, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.22742+00', 1692, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27054, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.584376+00', 358, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27055, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.894263+00', 374, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27056, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.722498+00', 549, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27057, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.729336+00', 541, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27058, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.81828+00', 451, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27059, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.732591+00', 589, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27060, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.846269+00', 504, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27061, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.890751+00', 468, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27062, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.006228+00', 377, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27063, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.921196+00', 482, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27064, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.211817+00', 290, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27065, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.914371+00', 614, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27066, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.162256+00', 404, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27067, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.636647+00', 976, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27068, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.371133+00', 254, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27069, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.706602+00', 1650, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27070, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.376022+00', 153, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27071, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.44543+00', 182, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27072, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.400964+00', 250, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27073, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.441958+00', 283, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27074, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.466203+00', 414, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27075, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.419765+00', 449, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27076, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.630969+00', 282, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27077, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.618441+00', 306, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27078, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.696545+00', 315, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27079, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.8693+00', 153, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27080, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.91342+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27081, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.954745+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27082, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.585543+00', 516, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27083, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.91481+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27084, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.864547+00', 321, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27085, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.496181+00', 1260, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27086, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:12.795605+00', 328, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27087, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:12.866977+00', 302, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27088, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.187519+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27089, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:12.869739+00', 457, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27090, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:12.915342+00', 465, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27091, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.025605+00', 377, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27092, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.040277+00', 378, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27093, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.237762+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27094, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:12.96487+00', 561, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27095, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.111718+00', 443, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27096, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.211421+00', 390, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27097, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.135255+00', 484, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27098, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.138809+00', 484, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27099, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.112727+00', 546, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27100, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.041764+00', 668, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27101, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.023212+00', 1512, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27102, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:42.634271+00', 645, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27103, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:42.871861+00', 668, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27104, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:42.62009+00', 924, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27105, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:42.638508+00', 1022, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27106, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:42.814901+00', 866, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27107, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.387523+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27108, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.462648+00', 262, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27109, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.40067+00', 352, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27110, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:42.863655+00', 891, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27111, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.387438+00', 426, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27112, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.368435+00', 468, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27113, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.507804+00', 359, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27114, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.393954+00', 479, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27115, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.237528+00', 695, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27116, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.769625+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27117, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:42.854763+00', 1669, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27118, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.711135+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27119, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.606213+00', 409, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27120, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.774066+00', 261, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27121, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.771922+00', 283, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27122, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.923875+00', 156, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27123, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.853523+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27124, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.713232+00', 420, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27125, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.563486+00', 664, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27126, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.750938+00', 502, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27127, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.811533+00', 480, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27128, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.711364+00', 590, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27129, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.691812+00', 633, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27130, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.12157+00', 238, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27131, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.158511+00', 285, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27132, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.811661+00', 695, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27133, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.81951+00', 1413, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27134, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.518221+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27135, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.501133+00', 415, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27136, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.569541+00', 431, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27137, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.521788+00', 533, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27138, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.78845+00', 352, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27139, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.777486+00', 370, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27140, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.961974+00', 251, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27141, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.613659+00', 643, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27142, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.723536+00', 555, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27143, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.934543+00', 400, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27144, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.987854+00', 347, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27145, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.007875+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27146, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.804883+00', 596, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27147, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.917448+00', 497, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27148, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.940237+00', 511, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27149, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.614103+00', 1590, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27150, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.657559+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27151, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.401364+00', 385, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27152, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.599638+00', 274, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27153, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.798392+00', 287, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27154, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.881138+00', 269, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27155, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.884906+00', 265, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27156, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.120602+00', 295, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27157, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.110785+00', 330, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27158, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.9783+00', 488, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27159, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.578274+00', 1047, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27160, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.112596+00', 540, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27161, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.273694+00', 414, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27162, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.760885+00', 960, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27163, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.165939+00', 569, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27164, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.271125+00', 477, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27165, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.599774+00', 1957, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27166, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.202259+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27167, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.300066+00', 130, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27168, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.046941+00', 382, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27169, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.120672+00', 334, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27170, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:42.985516+00', 486, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27171, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.202226+00', 281, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27172, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.069651+00', 428, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27173, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.094337+00', 406, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27174, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.178324+00', 338, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27175, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.132236+00', 390, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27176, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.089229+00', 427, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27177, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.133418+00', 392, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27178, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.127467+00', 409, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27179, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.205115+00', 374, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27180, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.106336+00', 527, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27181, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.106914+00', 1367, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27182, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.561265+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27183, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.576011+00', 445, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27184, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.957735+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27185, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.736632+00', 453, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27186, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.720902+00', 474, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27187, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.911014+00', 369, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27188, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.882898+00', 415, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27189, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.057519+00', 305, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27190, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.146471+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27191, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.078024+00', 321, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27192, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.125495+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27193, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.701988+00', 791, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27194, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.141003+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27195, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.192013+00', 315, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27196, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.280494+00', 304, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27197, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.696895+00', 1467, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27198, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.255536+00', 218, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27199, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.287923+00', 303, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27200, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.367275+00', 259, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27201, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.451736+00', 217, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27202, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.438879+00', 251, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27203, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.299906+00', 397, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27204, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.431746+00', 294, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27205, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.290684+00', 523, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27206, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.444095+00', 387, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27207, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.286549+00', 559, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27208, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.442026+00', 442, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27209, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.463399+00', 441, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27210, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.490739+00', 418, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27211, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.462677+00', 449, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27212, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.478317+00', 509, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27213, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.296774+00', 1217, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27214, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.263759+00', 157, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27215, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.274582+00', 544, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27216, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.430898+00', 540, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27217, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.399455+00', 582, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27218, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.730214+00', 255, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27219, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.323386+00', 788, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27220, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.356768+00', 792, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27221, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.822923+00', 425, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27222, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.886975+00', 363, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27223, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.866581+00', 472, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27224, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.016428+00', 356, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27225, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.852012+00', 576, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27226, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.185373+00', 290, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27227, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.827772+00', 747, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27228, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.315686+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27229, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.39947+00', 1473, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27230, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.684622+00', 259, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27231, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.816311+00', 196, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27232, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.857368+00', 344, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27233, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.10215+00', 115, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27234, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.039986+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27235, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.809378+00', 495, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27236, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.010147+00', 346, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27237, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.911267+00', 445, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27238, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.857357+00', 506, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27239, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.121993+00', 288, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27240, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.212299+00', 229, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27241, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.296806+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27242, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.07156+00', 407, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27243, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.032398+00', 459, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27244, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.296567+00', 209, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27245, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.8385+00', 1309, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27246, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.505482+00', 320, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27247, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.4893+00', 376, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27248, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.732733+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27249, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.514092+00', 406, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27250, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.525709+00', 403, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27251, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.53768+00', 427, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27252, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.680246+00', 288, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27253, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.583059+00', 448, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27254, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.760423+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27255, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.926562+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27256, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.677258+00', 416, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27257, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.973772+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27258, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.830509+00', 309, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27259, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.891905+00', 257, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27260, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.933071+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27261, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.538505+00', 1228, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27262, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.461781+00', 346, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27263, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.510176+00', 301, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27264, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.508905+00', 304, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27265, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.450772+00', 388, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27266, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.619842+00', 334, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27267, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.841771+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27268, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.869657+00', 146, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27269, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.965006+00', 348, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27270, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.02125+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27271, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.944183+00', 389, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27272, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.680641+00', 779, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27273, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.654993+00', 872, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27274, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.991797+00', 545, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27275, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.282597+00', 361, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27276, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.03287+00', 637, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27277, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.84831+00', 1407, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27278, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.52115+00', 344, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27279, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.624403+00', 263, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27280, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.516239+00', 432, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27281, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.655086+00', 305, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27282, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.864707+00', 159, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27283, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.888787+00', 149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27284, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.848997+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27285, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.52355+00', 626, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27286, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.04402+00', 172, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27287, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.188779+00', 90, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27288, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.09716+00', 221, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27289, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.163872+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27290, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.019603+00', 378, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27291, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.134202+00', 316, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27292, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.675383+00', 798, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27293, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.640025+00', 1495, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27294, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.621356+00', 515, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27295, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.775284+00', 647, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27296, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.649426+00', 799, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27297, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.010783+00', 483, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27298, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.797487+00', 770, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27299, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.963774+00', 626, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27300, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.960563+00', 655, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27301, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.818153+00', 831, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27302, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.201725+00', 559, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27303, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.507161+00', 269, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27304, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.527358+00', 319, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27305, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.562246+00', 322, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27306, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.505347+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27307, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.6393+00', 299, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27308, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.596179+00', 363, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27309, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:42.64638+00', 1961, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27310, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.19102+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27311, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.278119+00', 254, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27312, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.428278+00', 228, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27313, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.459251+00', 204, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27314, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.31087+00', 374, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27315, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.372421+00', 326, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27316, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.337903+00', 467, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27317, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.375105+00', 427, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27318, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.420598+00', 384, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27319, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.310207+00', 523, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27320, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.559348+00', 298, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27321, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.503283+00', 355, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27322, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.727132+00', 150, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27323, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.597788+00', 281, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27324, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.578229+00', 474, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27325, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.24237+00', 1301, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27326, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.442918+00', 326, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27327, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.659587+00', 276, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27328, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.70588+00', 291, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27329, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.497786+00', 569, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27330, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.684869+00', 415, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27331, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.693539+00', 438, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27332, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.765687+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27333, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.890041+00', 268, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27334, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.009345+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27335, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.738786+00', 500, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27336, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.708356+00', 585, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27337, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.764536+00', 546, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27338, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.712227+00', 622, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27339, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.104669+00', 254, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27340, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.04179+00', 365, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27341, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.442407+00', 1648, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27342, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.570511+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27343, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.550582+00', 338, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27344, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.654864+00', 417, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27345, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.694811+00', 398, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27346, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.695541+00', 424, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27347, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.757359+00', 386, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27348, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.747427+00', 460, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27349, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.862032+00', 478, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27350, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.870872+00', 551, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27351, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.920345+00', 507, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27352, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.813572+00', 628, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27353, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.687036+00', 760, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27354, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.224986+00', 269, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27355, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.902634+00', 645, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27356, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.832537+00', 727, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27357, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.665297+00', 1669, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27358, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:42.834207+00', 442, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27359, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.008566+00', 331, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27360, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:42.9344+00', 507, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27361, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:42.79794+00', 663, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27362, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.008455+00', 497, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27363, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.051601+00', 469, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27364, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.095562+00', 450, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27365, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.27313+00', 383, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27366, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:42.92962+00', 731, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27367, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.146505+00', 520, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27368, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.046625+00', 655, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27369, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.142089+00', 571, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27370, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.359622+00', 385, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27371, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:42.928847+00', 834, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27372, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.439592+00', 336, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27373, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.284394+00', 1283, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27374, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.486396+00', 230, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27375, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.507858+00', 269, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27376, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.625457+00', 209, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27377, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.571867+00', 346, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27378, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.617789+00', 342, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27379, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.629111+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27380, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.573638+00', 391, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27381, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.520413+00', 611, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27382, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.619775+00', 523, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27383, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.550211+00', 640, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27384, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.780471+00', 474, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27385, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.786212+00', 481, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27386, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.713906+00', 562, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27387, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.614524+00', 670, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27388, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.707379+00', 615, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27389, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.502026+00', 1513, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27390, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.006398+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27391, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:42.844134+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27392, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:42.986298+00', 235, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27393, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:42.84959+00', 373, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27394, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.055177+00', 231, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27395, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.11087+00', 258, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27396, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:42.903905+00', 475, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27397, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.171159+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27398, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.244432+00', 259, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27399, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.250224+00', 259, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27400, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.148475+00', 371, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27401, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.172772+00', 355, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27402, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.157651+00', 388, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27403, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.263614+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27404, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.227881+00', 336, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27405, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.044473+00', 1287, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27406, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:38.999194+00', 188, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27407, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:38.983485+00', 212, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27408, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:38.919145+00', 286, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27409, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.090827+00', 144, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27410, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.09796+00', 192, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27411, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:38.971971+00', 436, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27412, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:38.976119+00', 1136, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27413, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:46.849219+00', 264, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(27414, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:46.959841+00', 179, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(27415, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:46.961687+00', 342, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(27416, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:46.887945+00', 432, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(27417, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.090239+00', 264, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(27418, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.130503+00', 307, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(27419, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.241268+00', 197, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(27420, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:46.981637+00', 496, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(27421, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:46.922672+00', 598, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(27422, X'41691fec7d6aa991b42fb707629dae6c2769443344f89d102b8d4f3eb87a14fa', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.731763+00', 185, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27423, X'72eac65d5c83650e979986e1d592fb9f813315b24b0fff1c2763ac542ec634b1', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.523248+00', 419, 3, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(27424, X'd9b5371250e2261a11ddf078d15148a84c8edc9910c670d83d53a5594da78a40', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.742056+00', 277, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(27425, X'9e2f9bfc850d92356e5c0e33ba2fe756e77f32466993de80911288a13f931665', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.954082+00', 196, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(27426, X'46252812d8bb6d1a328f08dfba7f30411bf4177c00eeba6d91bb69320141ad6e', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.980943+00', 177, 3, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(27427, X'c473a2e94bc5da65a05d490d9fbd78f2a8e44f670726c93eaa4c3fc1e8bedac7', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.950111+00', 207, 3, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(27428, X'b138df4b24948f12da03fb13754a3801b39acb723126bd5ec11927dc89556cb2', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.496732+00', 686, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(27429, X'955276acbc493fa59fee221b9f16e7bb0e3045b6add47fdc8b77bba8f478c394', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.95228+00', 302, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(27430, X'2b8a79d368b1ad2104d89088f13c251262b824b4f2504c13fc8980735448d025', TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.939355+00', 409, 4, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(27431, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.291072+00', 76, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27432, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.302779+00', 95, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27433, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.304104+00', 102, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27434, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.303731+00', 125, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27435, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.301943+00', 132, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27436, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.284124+00', 185, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27437, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.292106+00', 796, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27438, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.485596+00', 70, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27439, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.412687+00', 150, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27440, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.387092+00', 185, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27441, X'ff60ea9454df04fc7211d60dd99df55be3e2723bf76a55c6928e3f3cdceb0b97', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.403027+00', 181, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27442, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.407477+00', 198, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27443, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.487608+00', 132, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27444, X'2a64f234f79247d639f5c122b79d121777f13b42ac4f7332504a6a6b17aab13d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.470671+00', 206, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27445, X'5da2c92d90ddbdb618ba1f1651553eacec5adf0774cdaed554d888101b9b531e', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:13.486573+00', 112, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(27446, X'40b934d0c8a940c2c3b03e911a97d8075a301c37d92b10370d089ec56ac02d4f', TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:37.898776+00', 175, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(27447, X'9606415ed481bbfd57f3301db2a5f62b8cbf925d1319c47c6aaec601dee5ea99', TIMESTAMP WITH TIME ZONE '2022-12-23 09:02:06.814398+00', 202, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27448, X'8612a0597fd4808b23afa60e0b16e8b1b31f4566967dd60d45853ff8f7403930', TIMESTAMP WITH TIME ZONE '2022-12-23 09:03:08.953004+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found '' {"stateName":"Nasarawa"} ''.', 1, NULL, NULL, NULL, 2, NULL), +(27449, X'bf81d4dbe7aaf42b39b066d7283cb651e33365b9ad040747815010a0c69210c9', TIMESTAMP WITH TIME ZONE '2022-12-23 09:03:19.421793+00', 109, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27450, X'7d84361c4f9a61a5f4ec7fe725df9fb8f97bbbb8c5473b0665cbdb63f79590b1', TIMESTAMP WITH TIME ZONE '2022-12-23 09:03:20.918864+00', 5, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 2, NULL), +(27451, X'0942a2e09ba5afe58e5566fd6fef838b23d5fa54d714bcd9b86a1de53b696d2b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:03:32.69319+00', 107, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27452, X'80478b6e1151979a1971a16949678c8f4b4b021494eb83abb518a4f1a36de45b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:03:36.415098+00', 422, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27453, X'9f73bd09286f5df5612236350c924b5105536f015d1bd5f66807c8d67df61207', TIMESTAMP WITH TIME ZONE '2022-12-23 09:04:05.80956+00', 313, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27454, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.252641+00', 118, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27455, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.308462+00', 122, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27456, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.339301+00', 128, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27457, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.308399+00', 173, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27458, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.402374+00', 103, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27459, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.348052+00', 268, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27460, X'e6caf2ccd8b05dc3b69ffc84cf6a687d7330a08e94ebaa5d56a14f6c91bc456d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.359179+00', 850, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27461, X'afb6f48f83ca47743c1a4584e9da8f4bd86ec302a0d53d90e888437dfd47a020', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:06.827864+00', 810, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(27462, X'4bd2faa6c1e587c057c026d82fa62ef4f4cde2b13453d9f1b34771ae63a90677', TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:34.556339+00', 869, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(27463, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.117783+00', 231, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27464, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.212962+00', 174, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27465, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.132962+00', 266, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27466, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.092515+00', 339, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27467, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.219454+00', 229, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27468, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.091656+00', 548, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27469, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.247337+00', 1094, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27470, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:07.994311+00', 106, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27471, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.026614+00', 107, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27472, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.027147+00', 129, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27473, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.061492+00', 143, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27474, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.046835+00', 207, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27475, X'ff60ea9454df04fc7211d60dd99df55be3e2723bf76a55c6928e3f3cdceb0b97', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.006814+00', 275, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27476, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.128193+00', 176, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27477, X'853ffdfd82f1853d0f606e31d5d6c8b27b7f4ecb3830a5403260351ab3c68fc1', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:16.884527+00', 219, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(27478, X'b2905b868e5a7e54f5b4d929c08b79030b31e70d6ec5c28e1b87cff81636fb4b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:29.245693+00', 128, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27479, X'ff71d281c5d975ddec72738ce2b9c7a503811eb67d79cede224c7878961871cd', TIMESTAMP WITH TIME ZONE '2022-12-23 09:07:47.210962+00', 285, 365, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27480, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.20591+00', 112, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27481, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.168858+00', 154, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27482, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.226255+00', 124, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27483, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.24875+00', 123, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27484, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.211528+00', 161, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27485, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.182233+00', 250, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27486, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.185161+00', 781, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27487, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.782542+00', 71, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27488, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.776729+00', 84, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27489, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.743851+00', 134, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27490, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.802579+00', 85, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27491, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.773495+00', 118, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27492, X'ff60ea9454df04fc7211d60dd99df55be3e2723bf76a55c6928e3f3cdceb0b97', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.760623+00', 135, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27493, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.758922+00', 141, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27494, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.45646+00', 224, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27495, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.490623+00', 222, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27496, X'ff60ea9454df04fc7211d60dd99df55be3e2723bf76a55c6928e3f3cdceb0b97', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.445588+00', 308, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27497, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.595866+00', 161, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27498, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.441278+00', 325, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27499, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.524172+00', 330, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27500, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.526249+00', 372, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27501, X'963adeb65b2496619a7c93425813e9236cc09bb0407dfb4a0a689988643e3fd2', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:18.357361+00', 96, 1, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(27502, X'6e0151ec7840407fd902cc6fd96b5a2d4bdc53e27cc8d2557aff0d3dc6a1ce26', TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:30.3997+00', 116, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27503, X'2d160401f03ba321881443ad5ef7de9838e8e6c293d1e6188c0eb935a15a10b7', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:00.923748+00', 111, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27504, X'1ec9d1df160ad467c8f46a14f8bcf71454f44f81b75efa87c66e06eb07f0ef32', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:17.176038+00', 146, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27505, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.01275+00', 97, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27506, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:50.971853+00', 177, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27507, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.022954+00', 128, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27508, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.024874+00', 138, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27509, X'4dd8e5f2bbd9d39ba7a24e4b7a893c5ea4f193bc5d1d378ce825c6e03a021252', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.000339+00', 208, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27510, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.03827+00', 272, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27511, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:50.981551+00', 921, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27512, X'4bd2faa6c1e587c057c026d82fa62ef4f4cde2b13453d9f1b34771ae63a90677', TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:52.347481+00', 864, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(27513, X'dd379125776364d81ceb6f0ba0eaed431c3b2136810557fc6ad77715c060570d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:22:00.967416+00', 96, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27514, X'0bbc22c1ded957c96cd78cb5aa4a725a6dfd57dba60288b61343ab6116420c1f', TIMESTAMP WITH TIME ZONE '2022-12-23 09:22:38.916072+00', 170, 365, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27515, X'bca4827d0bb134fa34370484d32c391a7514de4cc4c18dd86f3aa248cfb660d4', TIMESTAMP WITH TIME ZONE '2022-12-23 09:23:04.084306+00', 332, 0, TRUE, 'ad-hoc', 'Command failed with error 241 (ConversionFailure): ''$dateFromString requires that ''dateString'' be a string, found: object with value {format: "%Y-%m-%d", date: 2022-12-09T18:59:54.403Z}'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671787378, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$dateFromString requires that ''dateString'' be a string, found: object with value {format: \"%Y-%m-%d\", date: 2022-12-09T18:59:54.403Z}", "code" : 241, "codeName" : "ConversionFailure", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671787378, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "JMh/8d9jdeVyKP5af/acjGMgA3Y=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(27516, X'6c5edc7cf51add7cf021c36ff69f04e8d829a28b9274539dd23589d34d695dc5', TIMESTAMP WITH TIME ZONE '2022-12-23 09:23:44.937405+00', 321, 365, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27517, X'25c33cb75b01edae36c068ad9483e669bff6b7c15ebc42aba81df192d627d530', TIMESTAMP WITH TIME ZONE '2022-12-23 09:24:01.684362+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is STRING.', 1, NULL, NULL, NULL, 2, NULL), +(27518, X'feae8b25d51d011754dd7e5cf10845101a509f272657d7a0f3553f6bfd739b03', TIMESTAMP WITH TIME ZONE '2022-12-23 09:24:03.862663+00', 1336, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27519, X'ef8cfe7032f3a5f6b889aad0461a69d4832a6606a8daf3731386be0af14f875d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:24:13.822891+00', 55, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671787448, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671787448, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "SHrlE5a2CIhNXT1R68fcqRgv5OE=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27520, X'3c3cf12c5a258d1055abaf0664825c783b4191342984f3ae804f4ddd1c9e6e97', TIMESTAMP WITH TIME ZONE '2022-12-23 09:24:23.775909+00', 1552, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(27521, X'35b54aa116df30ef169e7f1c3c6efc2707b392cc763eb2c9697e7a1fd48b71fd', TIMESTAMP WITH TIME ZONE '2022-12-23 09:25:43.021549+00', 202, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27522, X'dd8d39fe40850179491762b8799ca4cb8db908569ca80fb6fdd073c139f8f72d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:26:05.372458+00', 41, 0, TRUE, 'ad-hoc', 'Command failed with error 40324 (Location40324): ''Unrecognized pipeline stage name: ''addFields'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671787558, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Unrecognized pipeline stage name: ''addFields''", "code" : 40324, "codeName" : "Location40324", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671787558, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "zARZJkpM+57626IV3KDD7FMg+7k=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(27523, X'dd8d39fe40850179491762b8799ca4cb8db908569ca80fb6fdd073c139f8f72d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:26:07.385358+00', 40, 0, TRUE, 'ad-hoc', 'Command failed with error 40324 (Location40324): ''Unrecognized pipeline stage name: ''addFields'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1671787558, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Unrecognized pipeline stage name: ''addFields''", "code" : 40324, "codeName" : "Location40324", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1671787558, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "zARZJkpM+57626IV3KDD7FMg+7k=", "$type" : "00" }, "keyId" : { "$numberLong" : "7129757303200284678" } } } }', 1, NULL, NULL, NULL, 2, NULL), +(27524, X'3a290c9cd19225aee15c598aae1cfce71a3a549e578c36470fde4af8d61c4fb1', TIMESTAMP WITH TIME ZONE '2022-12-23 09:26:09.717398+00', 175, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27525, X'9876397326184890575374a6da54b9dbf2097336beae96ce684e592095d7525d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:26:21.135826+00', 124, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27526, X'108c0a27b039595d51f2f47155458f4da99006435d94052bd9e1ab18d096ef48', TIMESTAMP WITH TIME ZONE '2022-12-23 09:27:32.84407+00', 106, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27527, X'ef25392cb730d02cbeb0ccfc1ad49e5733f91c2cff3f5b878198349f4c5f6b22', TIMESTAMP WITH TIME ZONE '2022-12-23 09:27:34.579872+00', 3, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL), +(27528, X'3a290c9cd19225aee15c598aae1cfce71a3a549e578c36470fde4af8d61c4fb1', TIMESTAMP WITH TIME ZONE '2022-12-23 09:27:37.234344+00', 127, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27529, X'e63b5dd1db8dd4645ec16a033d27c2b0ed3b0fa21d5ec82c5cc93adfdd771453', TIMESTAMP WITH TIME ZONE '2022-12-23 09:29:01.600111+00', 188, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27530, X'e3610f4a04df087eac6df430fe416e33b0dca5889e8418b474a248103fce1de3', TIMESTAMP WITH TIME ZONE '2022-12-23 09:29:03.950039+00', 140, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27531, X'3e1ec597e51fc10771d8104df3fdb95fa2ff4dba8343f7eb486b1643cfa23e93', TIMESTAMP WITH TIME ZONE '2022-12-23 09:29:34.484213+00', 239, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27532, X'9080af1807e0a197dac4bd59e90456e00f5e9c3cd079e6e067d4b857763c8df3', TIMESTAMP WITH TIME ZONE '2022-12-23 09:29:49.864668+00', 402, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27533, X'3c3cf12c5a258d1055abaf0664825c783b4191342984f3ae804f4ddd1c9e6e97', TIMESTAMP WITH TIME ZONE '2022-12-23 09:30:23.638238+00', 1346, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27534, X'e3a5f777a43ea067ac275dfbec20f41030e450a5f6eb01de1df3f901dd49ddd8', TIMESTAMP WITH TIME ZONE '2022-12-23 09:30:37.159726+00', 1722, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27535, X'e99e1b7d8ab8f14969ad82e1438afb5841519d8996793983ec0cd6fc71efb566', TIMESTAMP WITH TIME ZONE '2022-12-23 09:30:49.21479+00', 1534, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27536, X'1feefc833e9cd47e9ff66bc249233c03f14bc3f0ab15bec5744c8f4e33b44800', TIMESTAMP WITH TIME ZONE '2022-12-23 09:31:02.826362+00', 1465, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27537, X'3fd476d5635dc4d6f579ccab5babe64cdbd560cbbc9484e5048dcc9a31622660', TIMESTAMP WITH TIME ZONE '2022-12-23 09:31:12.484995+00', 694, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27538, X'f6f3ca869ceb41954d51e7f07e144f4b4bcc65e062a527dc3ef0a8ba0d9aa5d8', TIMESTAMP WITH TIME ZONE '2022-12-23 09:31:34.272234+00', 184, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27539, X'88118744432df87a28941209696a5e57728c6e0c2e5c13acec577aecdb176113', TIMESTAMP WITH TIME ZONE '2022-12-23 09:33:47.015437+00', 194, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27540, X'1f141caa8d666db14002a5f5747a985ffa2da4d7a8fce9c9248db0e4e1a94b64', TIMESTAMP WITH TIME ZONE '2022-12-23 09:34:00.244208+00', 617, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27541, X'1f141caa8d666db14002a5f5747a985ffa2da4d7a8fce9c9248db0e4e1a94b64', TIMESTAMP WITH TIME ZONE '2022-12-23 09:34:13.39663+00', 285, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27542, X'26e6ff6993c9d152179346ffffc9a625768cf24e7ce9a4fcae3d9f56b839a831', TIMESTAMP WITH TIME ZONE '2022-12-23 09:36:16.264636+00', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '']''.', 1, NULL, NULL, NULL, 2, NULL), +(27543, X'26e6ff6993c9d152179346ffffc9a625768cf24e7ce9a4fcae3d9f56b839a831', TIMESTAMP WITH TIME ZONE '2022-12-23 09:36:19.766095+00', 13, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '']''.', 1, NULL, NULL, NULL, 2, NULL), +(27544, X'558641bcb83188c7ed5e5fdc47bbca5a79da50fc4959ea5de9e9d0dcba83bcef', TIMESTAMP WITH TIME ZONE '2022-12-23 09:36:25.232104+00', 265, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27545, X'b6c33d2f6cc8173c06cdfebec87cb19943f3d27333517d3a2ade9002247c446b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:36:50.618316+00', 177, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27546, X'1f141caa8d666db14002a5f5747a985ffa2da4d7a8fce9c9248db0e4e1a94b64', TIMESTAMP WITH TIME ZONE '2022-12-23 09:36:59.992379+00', 375, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27547, X'4bbaf1b6850c3db348a0310b06d995018b1cdbfdd717aa99d77f43b7ddb96b42', TIMESTAMP WITH TIME ZONE '2022-12-23 09:37:03.644992+00', 274, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27548, X'bad00690a8885f3a7084e4211373fbeccd88838197bfdaefc7257cdf87d4ea70', TIMESTAMP WITH TIME ZONE '2022-12-23 09:37:37.130207+00', 261, 731, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27549, X'3c3cf12c5a258d1055abaf0664825c783b4191342984f3ae804f4ddd1c9e6e97', TIMESTAMP WITH TIME ZONE '2022-12-23 09:38:02.762382+00', 1160, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(27550, X'8c2812209a32f8de9a4dc35bea8bdac3d765a4a63fc833e9f19eaef1533d2d54', TIMESTAMP WITH TIME ZONE '2022-12-23 09:38:46.272378+00', 9, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(27551, X'8c2812209a32f8de9a4dc35bea8bdac3d765a4a63fc833e9f19eaef1533d2d54', TIMESTAMP WITH TIME ZONE '2022-12-23 09:38:52.286369+00', 4, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 2, NULL), +(27552, X'6da5ccf717aef182045560de371934f99f12ede4423148ce70f742898f972e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:38:54.597333+00', 2, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27553, X'7c3afce2233e4df06bdcb3747cbec7970a2b1367e88f3538331ebdcf67ff347d', TIMESTAMP WITH TIME ZONE '2022-12-23 09:38:55.76469+00', 1823, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27554, X'c6fe3cfc554377e4b91b262b7811437ddcc1fc4a348114c2d46d74854f794484', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:21.835202+00', 1428, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(27555, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.818399+00', 104, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(27556, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.849356+00', 97, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(27557, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.855231+00', 98, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(27558, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.82484+00', 135, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(27559, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.856207+00', 118, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(27560, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.823406+00', 1183, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(27561, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.804774+00', 1284, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(27562, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.852126+00', 210, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(27563, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.746326+00', 359, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27564, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.746326+00', 376, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(27565, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.873178+00', 285, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27566, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.883552+00', 499, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(27567, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.806742+00', 590, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(27568, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.297257+00', 791, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27569, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.183675+00', 942, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(27570, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.39915+00', 770, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27571, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.37756+00', 1059, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27572, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.02282+00', 1442, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27573, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.666416+00', 860, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(27574, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.02282+00', 1493, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(27575, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.311097+00', 1356, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27576, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.000299+00', 850, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(27577, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.959904+00', 968, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(27578, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.078036+00', 848, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(27579, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.99159+00', 956, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27580, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.731322+00', 2411, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27581, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.731322+00', 2419, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(27582, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.225747+00', 1156, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27583, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.638724+00', 828, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27584, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.184801+00', 1298, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27585, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.130035+00', 1391, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 21, 3, NULL, 2, NULL), +(27586, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.747708+00', 2850, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(27587, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.747708+00', 2841, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27588, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.505986+00', 1174, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(27589, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:43.904332+00', 3025, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27590, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.856934+00', 1086, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27591, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.740817+00', 1294, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(27592, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.367085+00', 659, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27593, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.054894+00', 1027, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27594, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.403451+00', 687, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27595, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.359915+00', 2839, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27596, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.401599+00', 1098, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27597, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:15.954617+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27598, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:15.961183+00', 49, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27599, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.309137+00', 44, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27600, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.309074+00', 50, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27601, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.517394+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27602, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.54592+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27603, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.527983+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27604, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.552546+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27605, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.538806+00', 208, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27606, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.549869+00', 225, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27607, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.535984+00', 801, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27608, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.44829+00', 52, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27609, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.468163+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27610, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.448295+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27611, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.502931+00', 58, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27612, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.400603+00', 832, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27613, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.067788+00', 168, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27614, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.132719+00', 183, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27615, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.101009+00', 270, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27616, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.154199+00', 252, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27617, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.219874+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27618, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.219768+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27619, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.223672+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27620, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.232149+00', 263, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27621, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.381279+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27622, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.910295+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27623, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.886279+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27624, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.895681+00', 141, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27625, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.90092+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27626, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.960161+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27627, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.902276+00', 1219, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27628, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.954777+00', 1486, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27629, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.076948+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27630, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.097579+00', 85, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27631, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.127098+00', 93, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27632, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.095163+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27633, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.181059+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27634, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.184471+00', 117, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27635, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.14626+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27636, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.175189+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27637, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.19494+00', 147, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27638, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.7925+00', 206, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27639, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.796562+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27640, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.876738+00', 186, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27641, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.915641+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27642, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.931289+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27643, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.765255+00', 1178, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27644, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.887201+00', 1359, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27645, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.258671+00', 210, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27646, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.416752+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27647, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.333326+00', 231, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27648, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.482603+00', 137, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27649, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.561313+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27650, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.559462+00', 150, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27651, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.606553+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27652, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.607632+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27653, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.609644+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27654, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.374878+00', 197, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27655, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.445668+00', 216, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27656, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.384887+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27657, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.555585+00', 246, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27658, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.500091+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27659, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.504145+00', 1782, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27660, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.522477+00', 1927, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27661, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.373843+00', 213, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27662, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.509101+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27663, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.545153+00', 146, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27664, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.597618+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27665, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.500101+00', 223, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27666, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.610593+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27667, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.52674+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27668, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.536915+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27669, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.525187+00', 223, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27670, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.058915+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27671, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.132433+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27672, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.107387+00', 129, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27673, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.107396+00', 150, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27674, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.163352+00', 127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27675, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.110168+00', 1035, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27676, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.120008+00', 1060, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27677, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.079962+00', 176, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27678, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.122035+00', 319, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27679, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.161674+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27680, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.146538+00', 385, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27681, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.116127+00', 416, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27682, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.222734+00', 311, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27683, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.079528+00', 504, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27684, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.306036+00', 317, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27685, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.457972+00', 250, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27686, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.120936+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27687, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.140473+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27688, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.094327+00', 241, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27689, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.157962+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27690, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.147573+00', 267, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27691, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.087455+00', 1465, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27692, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.155184+00', 1437, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27693, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.201506+00', 383, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27694, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.230693+00', 349, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27695, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.477847+00', 194, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27696, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.370424+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27697, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.494704+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27698, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.242547+00', 505, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27699, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.516647+00', 241, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27700, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.300417+00', 469, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27701, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.46677+00', 316, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27702, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.073059+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27703, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.066215+00', 271, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27704, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.066362+00', 277, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27705, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.133471+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27706, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.14216+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27707, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.110729+00', 1675, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27708, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.077989+00', 1778, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27709, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.287163+00', 364, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27710, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.325231+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27711, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.432348+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27712, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.285331+00', 447, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27713, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.534838+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27714, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.347935+00', 466, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27715, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.578035+00', 245, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27716, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.472249+00', 367, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27717, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.495015+00', 396, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27718, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.009254+00', 78, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27719, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.020296+00', 76, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27720, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.038809+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27721, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.048505+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27722, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.039526+00', 98, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27723, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.042816+00', 738, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27724, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.053474+00', 772, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27725, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.256329+00', 245, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27726, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.271562+00', 296, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27727, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.309918+00', 277, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27728, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.369791+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27729, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.223382+00', 380, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27730, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.273923+00', 357, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27731, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.432107+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27732, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.315565+00', 372, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27733, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.499366+00', 208, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27734, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.070045+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27735, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.105758+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27736, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.107454+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27737, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.080717+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27738, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.096955+00', 167, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27739, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.121519+00', 823, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27740, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.07381+00', 948, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27741, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.184346+00', 178, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27742, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.11838+00', 292, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27743, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.226054+00', 231, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27744, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.232521+00', 251, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27745, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.27103+00', 212, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27746, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.210145+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27747, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.386876+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27748, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.215314+00', 300, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27749, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.476469+00', 75, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27750, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.315238+00', 230, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27751, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.31531+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27752, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.147527+00', 437, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27753, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.183353+00', 597, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27754, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.386385+00', 447, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27755, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.190071+00', 1493, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27756, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.307497+00', 1483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27757, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.558427+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27758, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.725735+00', 57, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27759, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.626618+00', 180, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27760, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.662614+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27761, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.70524+00', 150, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27762, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.669506+00', 226, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27763, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.63144+00', 271, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27764, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.677699+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27765, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.815808+00', 146, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27766, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.184622+00', 282, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27767, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.228902+00', 243, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27768, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.185818+00', 281, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27769, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.249443+00', 326, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27770, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.255611+00', 324, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27771, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.429201+00', 1160, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27772, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.166302+00', 1649, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27773, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.746052+00', 66, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27774, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.736953+00', 135, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27775, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.766765+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27776, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.735878+00', 164, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27777, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.746036+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27778, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.815033+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27779, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.839742+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27780, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.750131+00', 201, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27781, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.841243+00', 112, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27782, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.110008+00', 58, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27783, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.103049+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27784, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.093953+00', 94, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27785, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.106256+00', 100, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27786, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.09989+00', 112, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27787, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.079086+00', 765, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27788, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.098832+00', 761, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27789, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:13.922558+00', 78, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27790, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:13.898645+00', 206, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27791, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:13.939763+00', 207, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27792, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.003196+00', 183, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27793, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:13.966829+00', 222, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27794, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:13.946693+00', 252, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27795, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.021487+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27796, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:13.970501+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27797, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.030085+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27798, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:34.984284+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27799, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.006859+00', 372, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27800, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:34.953728+00', 424, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27801, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.063739+00', 345, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27802, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:34.968986+00', 592, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27803, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.010007+00', 1862, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27804, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.077679+00', 2301, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27805, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.448028+00', 326, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27806, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.525143+00', 289, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27807, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.511601+00', 325, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27808, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.535347+00', 316, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27809, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.560405+00', 296, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27810, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.622204+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27811, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.683973+00', 264, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27812, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.705+00', 261, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27813, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.820106+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27814, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:07.954313+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27815, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:07.955008+00', 214, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27816, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.009364+00', 172, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27817, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.050528+00', 160, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27818, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.14242+00', 105, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27819, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.058834+00', 1007, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27820, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.102991+00', 1113, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27821, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.24249+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27822, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.150301+00', 275, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27823, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.233629+00', 209, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27824, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.262803+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27825, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.344692+00', 136, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27826, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.268697+00', 220, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27827, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.24888+00', 266, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27828, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.427542+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27829, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.413461+00', 127, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27830, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.031139+00', 83, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27831, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:38.971404+00', 182, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27832, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.118689+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27833, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:38.997739+00', 205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27834, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.032227+00', 182, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27835, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.005427+00', 1135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27836, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.021265+00', 1128, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27837, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.163861+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27838, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.092212+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27839, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.215934+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27840, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.166602+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27841, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.153693+00', 311, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27842, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.211454+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27843, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.218687+00', 253, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27844, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.210864+00', 274, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27845, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.317327+00', 237, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27846, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.050784+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27847, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:10.998872+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27848, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.058009+00', 76, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27849, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.055547+00', 83, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27850, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.032435+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27851, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:10.970853+00', 896, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27852, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.007178+00', 862, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27853, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:13.888847+00', 130, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27854, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:13.905748+00', 244, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27855, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:13.965531+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27856, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:13.940629+00', 260, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27857, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:13.970183+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27858, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:13.964829+00', 269, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27859, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.021257+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27860, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.061007+00', 178, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27861, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.079669+00', 181, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27862, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.233467+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27863, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.323078+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27864, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.26802+00', 178, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27865, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.319629+00', 133, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27866, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.236729+00', 241, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27867, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.370935+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27868, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.39009+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27869, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.344314+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27870, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.373566+00', 147, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27871, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.730092+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27872, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.743219+00', 196, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27873, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.730092+00', 209, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27874, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.749317+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27875, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.748612+00', 235, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27876, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.780033+00', 1393, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27877, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.747498+00', 1478, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27878, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:13.98979+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27879, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.094961+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27880, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.155605+00', 124, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27881, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.021045+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27882, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.080745+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27883, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.018118+00', 282, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27884, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.188642+00', 258, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27885, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.141256+00', 328, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27886, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.333936+00', 199, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27887, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.023815+00', 68, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27888, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.006113+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27889, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.020545+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27890, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.00292+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27891, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.023341+00', 219, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27892, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.049462+00', 1373, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27893, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.009676+00', 1604, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27894, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.886734+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27895, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.915833+00', 90, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27896, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.954294+00', 77, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27897, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.972782+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27898, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.920261+00', 134, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27899, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.97117+00', 93, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27900, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.945318+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27901, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.935807+00', 134, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27902, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.008801+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27903, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.176514+00', 118, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27904, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.132106+00', 151, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27905, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.184152+00', 180, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27906, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.243013+00', 220, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27907, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.234136+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27908, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.182012+00', 1312, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27909, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.218163+00', 1457, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27910, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.709937+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27911, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.66616+00', 197, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27912, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.578857+00', 303, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27913, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.653748+00', 266, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27914, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.618585+00', 329, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27915, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.868912+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27916, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.801642+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27917, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.779791+00', 271, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27918, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.787714+00', 280, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27919, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.598413+00', 232, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27920, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.633864+00', 271, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27921, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.708379+00', 613, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27922, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.655005+00', 681, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27923, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.534995+00', 890, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(27924, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.883783+00', 621, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27925, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.226377+00', 523, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27926, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.622293+00', 1135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27927, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.279942+00', 500, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(27928, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.331526+00', 1479, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27929, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.226377+00', 610, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(27930, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.333682+00', 1554, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(27931, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.204338+00', 1415, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27932, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.237579+00', 1357, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(27933, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.321042+00', 2502, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(27934, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.047942+00', 1779, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27935, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.140562+00', 1690, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27936, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.140562+00', 1762, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(27937, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.203841+00', 1520, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27938, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.321042+00', 2402, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27939, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.203841+00', 1713, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(27940, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.752076+00', 225, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27941, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.036115+00', 2065, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27942, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.031632+00', 2088, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27943, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.049488+00', 2213, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27944, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.049488+00', 2230, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(27945, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.031427+00', 2890, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27946, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.031427+00', 2902, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(27947, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.761255+00', 1315, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27948, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.142856+00', 2944, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27949, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.142856+00', 2976, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(27950, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.846129+00', 1319, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27951, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.805956+00', 1395, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27952, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.935352+00', 3627, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27953, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:30.2237+00', 1390, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27954, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:30.2237+00', 1412, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(27955, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.890401+00', 1761, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27956, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.890401+00', 1768, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(27957, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.061228+00', 4668, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27958, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.963305+00', 4166, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27959, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:28.963305+00', 4171, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(27960, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.970029+00', 3488, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27961, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.970029+00', 3489, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(27962, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.779443+00', 46, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27963, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.781795+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27964, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.850925+00', 66, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27965, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.85528+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27966, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.854139+00', 95, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27967, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.859778+00', 1184, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27968, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:58.961913+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27969, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.87841+00', 1237, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27970, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:58.919304+00', 242, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27971, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:58.872752+00', 296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27972, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.086943+00', 101, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(27973, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:58.960253+00', 246, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27974, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.077405+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27975, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.071205+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27976, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.06233+00', 171, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27977, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.06472+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27978, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.061612+00', 186, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27979, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.098394+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27980, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.130335+00', 157, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27981, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.080624+00', 211, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27982, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.082257+00', 240, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27983, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.099391+00', 1425, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(27984, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.115924+00', 1413, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(27985, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.042812+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(27986, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.038683+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(27987, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.080363+00', 114, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(27988, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.12999+00', 84, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(27989, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.126112+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(27990, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.134085+00', 92, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(27991, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.073647+00', 158, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(27992, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.161929+00', 103, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(27993, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.116166+00', 154, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(27994, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.052659+00', 195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(27995, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:57.994048+00', 273, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(27996, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:57.996282+00', 331, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(27997, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.112857+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(27998, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.092058+00', 281, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(27999, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.122142+00', 929, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28000, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:57.988895+00', 1312, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28001, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:00.942561+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28002, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:00.926183+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28003, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:00.999624+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28004, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.023513+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28005, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.039218+00', 147, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28006, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.026419+00', 165, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28007, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:00.944681+00', 256, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28008, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.022807+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28009, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:00.992908+00', 243, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28010, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.465576+00', 203, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(28011, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.674133+00', 482, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(28012, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.582044+00', 761, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28013, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.582044+00', 780, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(28014, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.604507+00', 753, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(28015, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.554133+00', 823, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(28016, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.540177+00', 949, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(28017, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.22257+00', 477, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28018, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.984011+00', 894, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28019, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.984011+00', 919, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(28020, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.723673+00', 1286, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28021, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.39554+00', 833, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28022, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.614414+00', 631, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28023, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.587466+00', 664, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(28024, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.960537+00', 1374, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28025, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.960537+00', 1382, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28026, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.433418+00', 910, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28027, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.307672+00', 1142, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28028, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.265442+00', 1220, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28029, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.10172+00', 1565, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28030, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.462565+00', 2279, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28031, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.462565+00', 2284, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(28032, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.477053+00', 2434, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28033, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.477053+00', 2438, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(28034, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.673041+00', 1274, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28035, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.673041+00', 1277, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(28036, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.474416+00', 1613, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28037, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.695558+00', 1394, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28038, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.695558+00', 1403, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(28039, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.474416+00', 1640, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(28040, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.365921+00', 1751, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28041, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.64033+00', 481, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28042, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.420655+00', 725, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28043, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.764359+00', 1409, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 18, 3, NULL, 2, NULL), +(28044, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.180706+00', 1994, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28045, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.840241+00', 1421, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28046, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.646788+00', 1644, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(28047, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.368212+00', 949, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28048, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:07.546122+00', 3227, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28049, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.037679+00', 2919, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28050, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.45401+00', 55, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28051, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.475162+00', 63, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28052, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.476505+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28053, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.489881+00', 74, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28054, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.476386+00', 100, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28055, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.490689+00', 999, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28056, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.483086+00', 1108, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28057, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.307132+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28058, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.280192+00', 122, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28059, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.186718+00', 259, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28060, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.263243+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28061, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.279301+00', 237, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28062, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.35848+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28063, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.295216+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28064, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.28705+00', 344, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28065, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.282642+00', 359, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28066, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.888403+00', 300, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28067, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.984453+00', 228, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28068, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.083545+00', 141, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28069, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.982253+00', 360, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28070, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.123492+00', 271, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28071, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.158914+00', 247, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28072, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.249791+00', 174, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28073, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.878144+00', 585, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28074, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.91288+00', 608, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28075, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.975411+00', 555, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28076, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.415136+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28077, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.486361+00', 157, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28078, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.467223+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28079, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.514872+00', 159, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28080, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.774249+00', 1467, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28081, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:37.969867+00', 1382, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28082, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.376892+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28083, X'0e68d3dcdd948c160ca6b03c46a9e9b47e8a8d7b6f045f18d073b192bb2ac768', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.269495+00', 265, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28084, X'd628c99b06ac6828f2d69899748fa37cdbbdf3fab85edcdf4bce0e588526c505', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.332693+00', 244, 2, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28085, X'4677b9ecc89d89f05664fdab54c34201265023d2021e7db35a25fcead4696864', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.378219+00', 232, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28086, X'0b0edc9ba83efb0efc6aab918cac0202e0581773782f3d8dd7357ecfc3b35319', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.357815+00', 266, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28087, X'fa361798544ef4bf04cc5dd15dd34753a6d76d4fec0a8cf084c7d1b62168bb79', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.370575+00', 271, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28088, X'0f780b33a18f5b26ce9c3e617ee9eef6207c5504c20377e8a2face58f3a4da9c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.333345+00', 324, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28089, X'601272030dbe4907d3d5c93404283756601aa7f81b947cca7da2c310928ed9b2', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.333492+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28090, X'ad68469d2cdc9034ac3215347dc87a1d6681774acad5ac7159e880460ca57ad5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.540862+00', 155, 3, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28091, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.803202+00', 73, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28092, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.726361+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28093, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.811975+00', 108, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28094, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.810571+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28095, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.828316+00', 105, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28096, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.815545+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28097, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.812317+00', 131, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28098, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.879735+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28099, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.898894+00', 108, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28100, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.917501+00', 71, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28101, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.936168+00', 60, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28102, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.903069+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28103, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.952178+00', 67, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28104, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.966004+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28105, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.893224+00', 762, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28106, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.91099+00', 794, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28107, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.17827+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28108, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.199759+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28109, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.265222+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28110, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.276268+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28111, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.210743+00', 244, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28112, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.244426+00', 217, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28113, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.221152+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28114, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.366915+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28115, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.343142+00', 171, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28116, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.463647+00', 164, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28117, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.563182+00', 209, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28118, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.518055+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28119, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.43703+00', 351, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28120, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.58367+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28121, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.608639+00', 264, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28122, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.720805+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28123, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.678218+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28124, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.577224+00', 319, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28125, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.524354+00', 397, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28126, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.721474+00', 206, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28127, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.813978+00', 124, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28128, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.737906+00', 203, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28129, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.720917+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28130, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.460926+00', 1014, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28131, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.463812+00', 1068, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28132, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.466679+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28133, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.48694+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28134, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.501027+00', 67, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28135, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.523656+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28136, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.489321+00', 176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28137, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.500607+00', 934, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28138, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.542951+00', 1006, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28139, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.144357+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28140, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.195784+00', 228, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28141, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.247618+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28142, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.276965+00', 214, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28143, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.148787+00', 330, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28144, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.248358+00', 258, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28145, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.358507+00', 233, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28146, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.45574+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28147, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.520238+00', 133, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28148, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:37.946188+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28149, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:37.932795+00', 193, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28150, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:37.994598+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28151, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:37.945397+00', 228, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28152, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:37.957096+00', 273, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28153, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.165363+00', 76, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28154, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.13296+00', 174, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28155, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.157644+00', 190, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28156, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.066219+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28157, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.139649+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28158, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.090194+00', 269, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28159, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.063388+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28160, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.196541+00', 173, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28161, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.133232+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28162, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:37.965953+00', 991, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28163, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.014013+00', 1015, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28164, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.510717+00', 41, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28165, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.485009+00', 89, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28166, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.496909+00', 82, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28167, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.497875+00', 90, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28168, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.527912+00', 75, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28169, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.508798+00', 766, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28170, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.542003+00', 781, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28171, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:05.963555+00', 234, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28172, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.062515+00', 186, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28173, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.121218+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28174, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.102115+00', 170, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28175, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.120436+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28176, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.125467+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28177, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.102134+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28178, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.149599+00', 198, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28179, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.133503+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28180, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.564119+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28181, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.594116+00', 422, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28182, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.73675+00', 327, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28183, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.974102+00', 172, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28184, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.663888+00', 496, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28185, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.667147+00', 519, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28186, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.727079+00', 469, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28187, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.984684+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28188, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.702549+00', 515, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28189, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.789969+00', 438, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28190, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.0249+00', 238, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28191, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.774416+00', 500, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28192, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.10056+00', 247, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28193, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.110031+00', 328, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28194, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.588555+00', 1583, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28195, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.676883+00', 1562, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28196, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.682329+00', 93, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28197, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.719867+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28198, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.786938+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28199, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.799544+00', 108, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28200, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.733693+00', 205, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28201, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.720826+00', 932, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28202, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.684084+00', 1157, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28203, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.02001+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28204, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.119312+00', 164, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28205, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.224125+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28206, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.363804+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28207, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.17763+00', 347, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28208, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.157377+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28209, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.327039+00', 218, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28210, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.023006+00', 529, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28211, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.02104+00', 550, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28212, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.201433+00', 374, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28213, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.294362+00', 302, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28214, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.292881+00', 351, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28215, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.439914+00', 277, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28216, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.479204+00', 248, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28217, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:37.988809+00', 1611, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28218, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:37.983205+00', 1678, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28219, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.492515+00', 152, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28220, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.502967+00', 239, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28221, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.586696+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28222, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.474533+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28223, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.570671+00', 291, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28224, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.584329+00', 278, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28225, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.59756+00', 277, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28226, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.630336+00', 269, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28227, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.605666+00', 306, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28228, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.477467+00', 72, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28229, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.521931+00', 46, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28230, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.495235+00', 83, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28231, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.503304+00', 95, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28232, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.503574+00', 105, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28233, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.515209+00', 1069, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28234, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.484567+00', 1349, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28235, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.177996+00', 88, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28236, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.214145+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28237, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.214214+00', 139, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28238, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.201161+00', 179, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28239, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.31915+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28240, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.322801+00', 146, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28241, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.298005+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28242, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.382861+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28243, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.400498+00', 137, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28244, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.344236+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28245, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.311407+00', 247, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28246, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.36637+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28247, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.405054+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28248, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.407695+00', 168, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28249, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.200332+00', 898, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28250, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.206616+00', 1009, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28251, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.160689+00', 141, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28252, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.22841+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28253, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.195421+00', 213, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28254, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.332271+00', 98, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28255, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.29564+00', 275, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28256, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.324978+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28257, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.323603+00', 286, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28258, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.322655+00', 304, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28259, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.342302+00', 338, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28260, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.691759+00', 73, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28261, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.713421+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28262, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.737355+00', 125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28263, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.735235+00', 130, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28264, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.768723+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28265, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.706121+00', 961, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28266, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.689676+00', 1251, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28267, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:38.56753+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28268, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:38.910018+00', 277, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28269, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:38.894486+00', 296, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28270, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.168836+00', 264, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28271, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.1151+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28272, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.066833+00', 465, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28273, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.018014+00', 562, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28274, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.145099+00', 437, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28275, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.290876+00', 324, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28276, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.445369+00', 202, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28277, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.391714+00', 289, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28278, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.393224+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28279, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:38.560414+00', 1172, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28280, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.250356+00', 496, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28281, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.406285+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28282, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.135275+00', 1312, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28283, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.385117+00', 156, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28284, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.366953+00', 293, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28285, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.399553+00', 558, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28286, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.386667+00', 580, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28287, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.385167+00', 750, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28288, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.554413+00', 661, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28289, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.688664+00', 718, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28290, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.688678+00', 825, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28291, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.793249+00', 806, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28292, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.074758+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28293, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.149055+00', 106, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28294, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.122615+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28295, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.078053+00', 187, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28296, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.150242+00', 167, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28297, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.0725+00', 1402, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28298, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.103799+00', 1731, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28299, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.422117+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28300, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.368455+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28301, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.368804+00', 302, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28302, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.461392+00', 261, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28303, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.453526+00', 295, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28304, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.396376+00', 368, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28305, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.415325+00', 448, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28306, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.377059+00', 507, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28307, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.385685+00', 519, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28308, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.431094+00', 491, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28309, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.68027+00', 263, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28310, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.733708+00', 260, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28311, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.670191+00', 346, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28312, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.619188+00', 405, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28313, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.374911+00', 1646, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28314, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.406762+00', 1640, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28315, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:14.930998+00', 93, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28316, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:14.972661+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28317, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:14.994757+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28318, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.010983+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28319, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.018724+00', 83, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28320, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.017583+00', 100, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28321, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:14.975731+00', 148, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28322, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.042223+00', 96, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28323, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.047021+00', 112, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28324, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:27.956767+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28325, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:27.998507+00', 100, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28326, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:28.017362+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28327, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:27.972884+00', 162, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28328, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:27.997497+00', 143, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28329, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:27.985144+00', 1196, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28330, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:27.948893+00', 1390, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28331, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:37.877239+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28332, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:37.955116+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28333, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.073197+00', 177, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28334, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.096989+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28335, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:37.962706+00', 363, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28336, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.093359+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28337, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.078846+00', 410, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28338, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.146238+00', 380, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28339, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.166285+00', 403, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28340, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.094215+00', 484, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28341, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.172531+00', 418, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28342, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.031599+00', 568, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28343, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.109433+00', 504, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28344, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.311473+00', 326, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28345, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:37.945391+00', 1294, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28346, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.124432+00', 1515, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28347, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.362475+00', 222, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28348, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.462176+00', 220, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28349, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.399353+00', 311, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28350, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.566361+00', 174, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28351, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.383919+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28352, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.484962+00', 274, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28353, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.452605+00', 325, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28354, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.497422+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28355, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.610211+00', 224, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28356, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.500096+00', 49, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28357, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.579899+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28358, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.544821+00', 135, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28359, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.574006+00', 106, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28360, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.566903+00', 164, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28361, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.478324+00', 970, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28362, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.581239+00', 1025, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28363, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.207508+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28364, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:07.986465+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28365, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.274141+00', 154, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28366, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.18621+00', 281, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28367, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.238129+00', 262, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28368, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.351083+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28369, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.200938+00', 424, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28370, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.454072+00', 178, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28371, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.269409+00', 373, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28372, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.197862+00', 458, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28373, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.291908+00', 425, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28374, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.194951+00', 530, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28375, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.329212+00', 422, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28376, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.503297+00', 309, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28377, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.177606+00', 1449, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28378, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.198033+00', 1509, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28379, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.241779+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28380, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.243754+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28381, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.296101+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28382, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.304881+00', 127, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28383, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.280806+00', 197, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28384, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.354802+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28385, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.320479+00', 172, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28386, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.310432+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28387, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.362048+00', 224, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28388, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.886965+00', 70, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28389, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.913445+00', 84, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28390, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.882845+00', 137, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28391, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.88853+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28392, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.910196+00', 147, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28393, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.880478+00', 1171, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28394, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.895385+00', 1353, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28395, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.421625+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28396, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.365361+00', 273, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28397, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.106345+00', 535, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28398, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.220368+00', 522, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28399, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.387498+00', 356, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28400, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.251682+00', 528, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28401, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.542646+00', 269, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28402, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.303915+00', 527, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28403, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.147354+00', 750, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28404, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.645501+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28405, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.442073+00', 485, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28406, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.455835+00', 475, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28407, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.44269+00', 527, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28408, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.528948+00', 477, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28409, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.094964+00', 1699, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28410, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.210844+00', 1644, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28411, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.150056+00', 258, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28412, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.262845+00', 293, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28413, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.307624+00', 299, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28414, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.35432+00', 332, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28415, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.337872+00', 358, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28416, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.383786+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28417, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.372337+00', 337, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28418, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.388002+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28419, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.373696+00', 362, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28420, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.807349+00', 111, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28421, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.775143+00', 195, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28422, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.807246+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28423, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.826135+00', 191, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28424, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.808857+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28425, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.806613+00', 1232, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28426, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.874408+00', 1456, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28427, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.240742+00', 192, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28428, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.322963+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28429, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.271041+00', 233, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28430, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.23129+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28431, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.206212+00', 334, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28432, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.288099+00', 333, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28433, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.478407+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28434, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.262149+00', 373, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28435, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.481658+00', 170, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28436, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.442249+00', 262, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28437, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.382938+00', 344, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28438, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.418655+00', 323, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28439, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.479477+00', 263, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28440, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.400762+00', 352, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28441, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.200349+00', 1561, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28442, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.291735+00', 1556, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28443, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.301683+00', 273, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28444, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.375334+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28445, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.425281+00', 203, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28446, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.188436+00', 452, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28447, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.3856+00', 340, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28448, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.547207+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28449, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.411687+00', 353, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28450, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.666199+00', 163, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28451, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.742378+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28452, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.03968+00', 110, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28453, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.08877+00', 143, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28454, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.027909+00', 208, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28455, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.075445+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28456, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.078097+00', 169, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28457, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.05462+00', 1110, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28458, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.01404+00', 1201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28459, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.809902+00', 149, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28460, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.874097+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28461, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.918575+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28462, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.913067+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28463, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.901405+00', 270, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28464, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.962986+00', 231, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28465, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.040959+00', 178, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28466, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.900295+00', 348, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28467, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.033907+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28468, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.039311+00', 302, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28469, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.033743+00', 355, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28470, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.059144+00', 405, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28471, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.041539+00', 419, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28472, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.071622+00', 434, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28473, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.028965+00', 1647, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28474, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.014224+00', 1689, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28475, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.054525+00', 243, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28476, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.153372+00', 211, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28477, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.051173+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28478, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.207588+00', 257, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28479, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.126426+00', 337, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28480, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.221577+00', 254, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28481, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.143524+00', 335, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28482, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.211736+00', 279, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28483, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.186385+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28484, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.080148+00', 173, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28485, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.116053+00', 150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28486, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.189868+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28487, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.194973+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28488, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.208632+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28489, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.15653+00', 1261, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28490, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.227022+00', 1217, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28491, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.13546+00', 557, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28492, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.16565+00', 657, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28493, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.279055+00', 614, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28494, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.475175+00', 499, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28495, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.481451+00', 496, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28496, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.437762+00', 563, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28497, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.19599+00', 838, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28498, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.739675+00', 317, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28499, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.466507+00', 611, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28500, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.707222+00', 376, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28501, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.448971+00', 662, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28502, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.819776+00', 333, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28503, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.456452+00', 695, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28504, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.735828+00', 495, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28505, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.109341+00', 1990, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28506, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.2022+00', 2048, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28507, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.17392+00', 210, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28508, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.146434+00', 308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28509, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.163634+00', 304, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28510, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.262159+00', 361, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28511, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.309635+00', 318, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28512, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.366734+00', 272, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28513, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.401397+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28514, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.296114+00', 359, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28515, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.326893+00', 409, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28516, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.084442+00', 109, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28517, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.143598+00', 70, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28518, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.113442+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28519, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.14203+00', 160, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28520, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.160443+00', 179, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28521, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.162158+00', 946, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28522, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.091288+00', 1168, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28523, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.00926+00', 502, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28524, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.044859+00', 537, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28525, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.250187+00', 405, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28526, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.374862+00', 504, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28527, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.30989+00', 584, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28528, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.473247+00', 439, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28529, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.497584+00', 431, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28530, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.25103+00', 820, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28531, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.749877+00', 359, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28532, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.681921+00', 436, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28533, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.343764+00', 779, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28534, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.749093+00', 381, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28535, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.669155+00', 476, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28536, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.246815+00', 906, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28537, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.087803+00', 2115, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28538, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.232403+00', 2398, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28539, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.016982+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28540, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.100253+00', 154, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28541, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.080185+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28542, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.198091+00', 117, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28543, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.157544+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28544, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.159334+00', 230, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28545, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.167411+00', 237, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28546, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.180612+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28547, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.162146+00', 327, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28548, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.123146+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28549, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.146061+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28550, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.022192+00', 289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28551, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.165122+00', 178, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28552, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.135139+00', 243, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28553, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.022938+00', 1353, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28554, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.156729+00', 1603, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28555, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:07.972865+00', 307, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28556, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:07.935298+00', 425, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28557, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:07.948632+00', 477, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28558, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:07.972865+00', 491, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28559, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.337718+00', 275, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28560, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:07.958378+00', 672, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28561, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.401958+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28562, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.476125+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28563, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.454122+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28564, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.572674+00', 206, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28565, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.522381+00', 269, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28566, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.530141+00', 408, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28567, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.389743+00', 570, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28568, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.541333+00', 425, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28569, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:07.981718+00', 1545, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28570, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:07.992441+00', 1756, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.045555+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28572, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.014953+00', 362, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28573, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.04545+00', 371, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28574, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.069047+00', 349, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28575, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.155063+00', 271, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28576, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.053225+00', 1652, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28577, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.045482+00', 1723, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28578, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.098228+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28579, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.308687+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28580, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.145254+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28581, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.278996+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28582, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.047617+00', 376, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28583, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.116643+00', 339, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28584, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.281773+00', 222, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28585, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.200613+00', 302, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28586, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.329631+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28587, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.024544+00', 217, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28588, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:37.910246+00', 393, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28589, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.043495+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28590, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:37.967079+00', 419, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28591, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.159254+00', 251, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28592, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.137884+00', 301, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28593, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.1727+00', 278, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28594, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.316686+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28595, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.077615+00', 422, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28596, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.266002+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28597, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.217527+00', 306, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28598, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.170814+00', 373, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28599, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.157795+00', 411, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28600, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.288905+00', 289, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28601, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:37.937813+00', 1552, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28602, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.136578+00', 1425, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28603, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.458462+00', 77, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28604, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.449263+00', 105, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28605, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.455845+00', 121, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28606, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.496444+00', 86, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28607, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.489898+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28608, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.433576+00', 1369, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28609, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.485953+00', 1440, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28610, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:02.947484+00', 816, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28611, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.306201+00', 492, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28612, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:02.708169+00', 1121, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28613, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:02.869321+00', 990, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28614, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.529804+00', 360, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28615, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.107438+00', 790, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28616, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.642525+00', 264, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28617, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.164228+00', 810, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28618, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:02.886248+00', 1089, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28619, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.772461+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28620, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.756336+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28621, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.825349+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28622, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.871535+00', 220, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28623, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.852575+00', 255, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28624, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.992655+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28625, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.948352+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28626, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.978738+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28627, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.934922+00', 237, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28628, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.883111+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28629, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.084679+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28630, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.064945+00', 168, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28631, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.042187+00', 191, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28632, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.883528+00', 353, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28633, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.746905+00', 960, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28634, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.824389+00', 1019, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28635, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.904808+00', 54, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28636, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.904311+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28637, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.912694+00', 159, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28638, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.976785+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28639, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.972048+00', 118, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28640, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.890132+00', 1816, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28641, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.90058+00', 1969, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28642, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:32.828818+00', 43, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28643, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:32.92531+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28644, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.001747+00', 70, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28645, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:32.79282+00', 312, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28646, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:32.759356+00', 368, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28647, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.047755+00', 144, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28648, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:32.890151+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28649, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:32.985502+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28650, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.03708+00', 271, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28651, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.119661+00', 419, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28652, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.265105+00', 294, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28653, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.171064+00', 612, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28654, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.255746+00', 536, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28655, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.458769+00', 379, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28656, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.214331+00', 654, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28657, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.479407+00', 421, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28658, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.436794+00', 479, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28659, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.129467+00', 791, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28660, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.20844+00', 718, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28661, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.692569+00', 245, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28662, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.563024+00', 408, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28663, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.681416+00', 281, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28664, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.291856+00', 690, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28665, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.226454+00', 1483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28666, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.150866+00', 1725, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28667, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.712557+00', 275, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28668, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.596946+00', 446, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28669, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.659261+00', 393, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28670, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.86609+00', 285, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28671, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.932744+00', 237, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28672, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.759476+00', 1870, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28673, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.623087+00', 2026, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28674, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.22243+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28675, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.28275+00', 97, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28676, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.274503+00', 111, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28677, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.276869+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28678, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.243156+00', 194, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28679, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.231653+00', 187, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28680, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.276521+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28681, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.18062+00', 275, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28682, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.30515+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28683, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:27.821308+00', 189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28684, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:27.758996+00', 286, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28685, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:27.687377+00', 397, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28686, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:27.913789+00', 223, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28687, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:27.897499+00', 271, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28688, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:27.922417+00', 1780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28689, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:27.905089+00', 2132, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28690, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:32.976214+00', 265, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28691, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.022047+00', 220, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28692, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:32.952613+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28693, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:32.913029+00', 372, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28694, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.009848+00', 315, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28695, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.282905+00', 71, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28696, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.017394+00', 367, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28697, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:32.965237+00', 418, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28698, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.16614+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28699, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:57.990017+00', 69, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28700, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.039463+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28701, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:57.989071+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28702, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.006426+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28703, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.014189+00', 137, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28704, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:57.99808+00', 1065, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28705, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.042238+00', 1021, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28706, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:02.910495+00', 173, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28707, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:02.963639+00', 227, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28708, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:02.933048+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28709, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.072291+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28710, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.181237+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28711, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.040051+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28712, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:02.985715+00', 363, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28713, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.027398+00', 406, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28714, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.03811+00', 432, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28715, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.691763+00', 90, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28716, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.680076+00', 180, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28717, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.807498+00', 170, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28718, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.7489+00', 282, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28719, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.680194+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28720, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.717685+00', 1457, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28721, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.656923+00', 1589, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28722, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.460527+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28723, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.487399+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28724, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.459938+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28725, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.596363+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28726, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.586464+00', 240, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28727, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.565914+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28728, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.566169+00', 301, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28729, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.531283+00', 352, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28730, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.687279+00', 286, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28731, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.783789+00', 99, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28732, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.638093+00', 236, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28733, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.752157+00', 140, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28734, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.665358+00', 262, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28735, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.663184+00', 272, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28736, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.66637+00', 844, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28737, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.715343+00', 1073, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28738, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.278523+00', 106, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28739, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.354205+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28740, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.355084+00', 152, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28741, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.359181+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28742, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.467488+00', 185, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28743, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.422574+00', 251, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28744, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.585755+00', 105, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28745, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.56913+00', 122, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28746, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.562328+00', 144, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28747, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.543544+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28748, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.564228+00', 119, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28749, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.574323+00', 128, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28750, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.538139+00', 165, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28751, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.594732+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28752, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.55444+00', 1303, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28753, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.624149+00', 1358, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28754, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.21766+00', 139, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28755, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.191556+00', 182, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28756, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.260118+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28757, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.206251+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28758, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.271149+00', 168, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28759, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.277048+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28760, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.204876+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28761, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.305915+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28762, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.333451+00', 136, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28763, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.570032+00', 74, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28764, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.58612+00', 71, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28765, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.581883+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28766, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.583158+00', 83, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28767, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.622865+00', 91, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28768, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.575379+00', 801, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28769, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.542989+00', 862, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28770, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.092371+00', 73, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28771, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.075961+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28772, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.101497+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28773, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.343156+00', 147, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28774, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.400719+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28775, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.401359+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28776, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.342293+00', 205, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28777, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.468921+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28778, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.486158+00', 209, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28779, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:27.998165+00', 61, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28780, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.015531+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28781, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.010594+00', 79, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28782, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:27.99005+00', 110, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28783, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.027126+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28784, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.050627+00', 709, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28785, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.030185+00', 807, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28786, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:33.92068+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28787, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.035223+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28788, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:33.997284+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28789, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.029337+00', 156, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28790, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.153088+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28791, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:33.99669+00', 266, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28792, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.079564+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28793, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.10681+00', 200, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28794, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.160445+00', 159, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28795, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.112991+00', 66, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28796, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.084582+00', 230, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28797, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.201161+00', 320, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28798, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.068992+00', 458, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28799, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.268416+00', 359, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28800, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.068744+00', 2163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28801, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.076739+00', 2325, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28802, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.043801+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28803, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.065889+00', 190, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28804, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.190631+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28805, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.06077+00', 281, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28806, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.253023+00', 121, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28807, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.250983+00', 142, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28808, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.335431+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28809, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.296454+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28810, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.204983+00', 296, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28811, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.264153+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28812, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.264153+00', 305, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28813, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.165035+00', 431, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28814, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.150107+00', 448, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28815, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.215386+00', 402, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28816, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.302749+00', 527, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28817, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.589586+00', 248, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28818, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.563642+00', 309, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28819, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.514323+00', 404, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28820, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.533098+00', 380, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28821, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.497252+00', 443, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28822, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.794495+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28823, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.485036+00', 508, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28824, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.835007+00', 210, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28825, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.2842+00', 1669, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28826, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.192+00', 1779, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28827, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.253025+00', 282, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28828, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.36712+00', 264, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28829, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.435862+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28830, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.367204+00', 329, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28831, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.433261+00', 273, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28832, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.090969+00', 1545, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28833, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.266674+00', 1377, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28834, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:36.959054+00', 280, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28835, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.040924+00', 263, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28836, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:36.943271+00', 449, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28837, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.09837+00', 299, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28838, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.160729+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28839, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:36.971616+00', 441, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28840, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.09537+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28841, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.129125+00', 302, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28842, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.010244+00', 450, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28843, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:57.987894+00', 225, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28844, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.074349+00', 185, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28845, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:57.996723+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28846, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:57.993926+00', 305, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28847, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.14423+00', 169, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28848, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.01923+00', 865, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28849, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:57.994349+00', 1195, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28850, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.378244+00', 119, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28851, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.424325+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28852, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.514649+00', 75, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28853, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.487889+00', 115, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28854, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.398627+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28855, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.382506+00', 266, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28856, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.452879+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28857, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.38947+00', 281, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28858, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.446584+00', 227, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28859, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.558499+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28860, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.516117+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28861, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.557092+00', 261, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28862, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.637956+00', 248, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28863, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.639781+00', 251, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28864, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.639892+00', 1333, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28865, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.651909+00', 1494, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28866, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.383407+00', 181, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28867, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.583246+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28868, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.655746+00', 181, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28869, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.629251+00', 276, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28870, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.628454+00', 283, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28871, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.786445+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28872, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.823712+00', 153, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28873, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.844765+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28874, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.748139+00', 280, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28875, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.645263+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28876, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.691492+00', 212, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28877, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.599318+00', 338, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28878, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.665122+00', 318, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28879, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.803032+00', 214, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28880, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.624242+00', 1653, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28881, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.623955+00', 1699, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28882, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.364149+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28883, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.396503+00', 86, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28884, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.443158+00', 115, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28885, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.386266+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28886, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.480817+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28887, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.38261+00', 323, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28888, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.48877+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28889, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.591088+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28890, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.462002+00', 300, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28891, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.286196+00', 214, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(28892, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.30375+00', 227, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(28893, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.371645+00', 197, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(28894, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.322936+00', 262, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(28895, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.41169+00', 457, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(28896, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.574403+00', 315, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(28897, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.563748+00', 449, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(28898, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.586172+00', 640, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28899, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.404496+00', 861, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(28900, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.491354+00', 941, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(28901, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.708358+00', 880, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28902, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.102439+00', 499, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28903, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.092078+00', 569, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28904, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.115918+00', 546, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28905, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.210383+00', 577, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28906, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.046337+00', 812, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28907, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.85926+00', 1059, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28908, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.85926+00', 1080, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(28909, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.9057+00', 1129, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28910, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.86935+00', 1181, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28911, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.86935+00', 1183, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(28912, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.981662+00', 1078, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28913, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.994871+00', 1110, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28914, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.91116+00', 1274, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28915, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.894994+00', 1324, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28916, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:20.894994+00', 1326, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(28917, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.064698+00', 1336, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28918, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.125155+00', 1295, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28919, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.125155+00', 1314, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(28920, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.077247+00', 1408, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28921, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.298633+00', 1264, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28922, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.286635+00', 1396, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28923, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.305289+00', 1721, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28924, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.305289+00', 1725, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(28925, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.238018+00', 1948, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28926, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.087176+00', 2612, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28927, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.289982+00', 2839, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28928, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.289982+00', 2889, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(28929, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.602437+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28930, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.725546+00', 187, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28931, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.741444+00', 265, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28932, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.82531+00', 243, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28933, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.79014+00', 345, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28934, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.743032+00', 1618, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28935, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.650549+00', 1727, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28936, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.292975+00', 137, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28937, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.271078+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28938, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.286055+00', 186, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28939, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.397533+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28940, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.397264+00', 118, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28941, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.336745+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28942, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.379575+00', 147, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28943, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.396317+00', 178, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28944, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.271842+00', 332, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28945, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:57.792096+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28946, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:57.837333+00', 218, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28947, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:57.853213+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28948, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:57.834235+00', 260, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28949, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:57.858345+00', 257, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28950, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:57.754013+00', 1021, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28951, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:57.752366+00', 1027, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28952, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.574297+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28953, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.599567+00', 80, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28954, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.642118+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28955, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.530364+00', 256, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28956, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.561366+00', 264, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28957, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.306467+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28958, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.379402+00', 704, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28959, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.869336+00', 311, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28960, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.645068+00', 600, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28961, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.414531+00', 847, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28962, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.972269+00', 313, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28963, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.962174+00', 387, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28964, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.021202+00', 352, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28965, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.120425+00', 374, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28966, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.487914+00', 2405, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28967, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.528975+00', 2479, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28968, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:07.902491+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28969, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:07.937034+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28970, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:07.967078+00', 337, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28971, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.055543+00', 267, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28972, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.064124+00', 260, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28973, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.001159+00', 340, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28974, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.101771+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28975, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.236055+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28976, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.230349+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28977, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.725303+00', 100, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28978, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.768599+00', 221, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28979, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.797488+00', 311, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(28980, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.87572+00', 280, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28981, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.994936+00', 257, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(28982, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.058356+00', 368, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(28983, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.13169+00', 396, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(28984, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.11915+00', 443, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(28985, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.058282+00', 507, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(28986, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.048108+00', 546, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28987, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.203209+00', 406, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(28988, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.171489+00', 603, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(28989, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.171395+00', 605, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(28990, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.172984+00', 605, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(28991, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.75054+00', 2034, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28992, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.001441+00', 1853, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(28993, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.003277+00', 114, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(28994, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.019324+00', 103, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(28995, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.030303+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(28996, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.024429+00', 119, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(28997, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.058364+00', 130, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(28998, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.066675+00', 1095, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(28999, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.056654+00', 1191, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29000, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.258912+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29001, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.280837+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29002, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.313413+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29003, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.207429+00', 261, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29004, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.295211+00', 226, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29005, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.405641+00', 134, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29006, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.309392+00', 231, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29007, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.329545+00', 216, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29008, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.312174+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29009, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.48938+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29010, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.475416+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29011, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.520175+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29012, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.503254+00', 126, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29013, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.514647+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29014, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.729421+00', 163, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29015, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.720066+00', 183, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29016, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.807025+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29017, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.80215+00', 172, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29018, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.802882+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29019, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.836256+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29020, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.841222+00', 198, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29021, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.806902+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29022, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.865741+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29023, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.494076+00', 1194, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29024, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.529511+00', 1243, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29025, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.421562+00', 415, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(29026, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.244555+00', 638, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29027, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.244555+00', 654, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(29028, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.264743+00', 762, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(29029, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.278632+00', 801, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(29030, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.587958+00', 986, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29031, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.577413+00', 1045, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29032, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.697549+00', 940, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29033, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.251087+00', 1594, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29034, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.251087+00', 1601, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(29035, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.399343+00', 621, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29036, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.448734+00', 575, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(29037, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.344141+00', 1718, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(29038, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.344141+00', 1690, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29039, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.062575+00', 1043, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29040, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.062575+00', 1049, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(29041, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.478891+00', 1705, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29042, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.331823+00', 867, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 21, 3, NULL, 2, NULL), +(29043, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.496547+00', 702, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29044, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.496547+00', 730, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(29045, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.346986+00', 983, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29046, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.241259+00', 2101, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29047, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.241259+00', 2103, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(29048, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.135628+00', 1287, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29049, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.110747+00', 1316, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29050, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.401116+00', 1040, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29051, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.110747+00', 1338, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(29052, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.135628+00', 1322, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(29053, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.401116+00', 1067, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(29054, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.331728+00', 1144, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29055, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.082291+00', 1423, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29056, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.082291+00', 1442, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(29057, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.559019+00', 1333, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29058, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.886184+00', 1007, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29059, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.6519+00', 1397, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29060, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.07482+00', 1050, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29061, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.403555+00', 1830, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29062, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.403555+00', 1834, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(29063, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.647065+00', 1682, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29064, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.446442+00', 1977, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29065, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.634571+00', 2138, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29066, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.610536+00', 3394, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29067, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.606223+00', 3569, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29068, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.892949+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29069, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.900304+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29070, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.96154+00', 341, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29071, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.973611+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29072, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.981731+00', 431, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29073, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.950398+00', 484, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29074, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.045158+00', 435, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29075, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.964558+00', 616, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29076, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.228653+00', 410, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29077, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.52005+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29078, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.364301+00', 307, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29079, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:22.978722+00', 693, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29080, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.524083+00', 185, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29081, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.533779+00', 214, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29082, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.098194+00', 1488, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29083, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.236964+00', 1420, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29084, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.36751+00', 248, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29085, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.537514+00', 82, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29086, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.365516+00', 264, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29087, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.358438+00', 331, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29088, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.533341+00', 174, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29089, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.474854+00', 247, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29090, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.577071+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29091, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.56825+00', 176, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29092, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.361957+00', 395, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29093, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.446322+00', 330, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29094, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.558272+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29095, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.351791+00', 444, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29096, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.565647+00', 246, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29097, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.574313+00', 245, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29098, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.333414+00', 922, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29099, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.362015+00', 962, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29100, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.508308+00', 75, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29101, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.498311+00', 191, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29102, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.50319+00', 197, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29103, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.503345+00', 223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29104, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.493052+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29105, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.519084+00', 1123, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29106, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.452637+00', 345, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29107, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.414196+00', 373, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29108, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.520877+00', 1335, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29109, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.461985+00', 444, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29110, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.482366+00', 426, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29111, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.501091+00', 410, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29112, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.486011+00', 433, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29113, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.558143+00', 382, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29114, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.574913+00', 372, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29115, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.564167+00', 403, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29116, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.756787+00', 171, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29117, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.652244+00', 343, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29118, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.69586+00', 331, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29119, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.59049+00', 482, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29120, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.692341+00', 404, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29121, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.571821+00', 548, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29122, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.569768+00', 590, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29123, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.551408+00', 677, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29124, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.858135+00', 500, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29125, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.700129+00', 692, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29126, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.81276+00', 639, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29127, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.787688+00', 718, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29128, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.84283+00', 706, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29129, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.959369+00', 618, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29130, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.622047+00', 1894, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29131, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.652301+00', 2260, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29132, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.851721+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29133, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.704505+00', 283, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29134, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.706981+00', 320, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29135, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.843991+00', 195, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29136, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.825788+00', 215, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29137, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.845572+00', 1202, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29138, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.836535+00', 1260, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29139, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.717639+00', 92, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29140, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.733023+00', 100, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29141, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.754649+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29142, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.838783+00', 52, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29143, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.835943+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29144, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.843324+00', 91, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29145, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.821344+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29146, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.799535+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29147, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.869003+00', 103, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29148, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:35.946814+00', 66, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29149, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:35.956367+00', 127, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29150, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.080892+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29151, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.252585+00', 74, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29152, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.190794+00', 274, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29153, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.165444+00', 341, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29154, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.266237+00', 259, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29155, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.248539+00', 278, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29156, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.33258+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29157, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.227553+00', 389, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29158, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.150295+00', 469, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29159, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.442914+00', 174, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29160, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.318009+00', 325, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29161, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.347101+00', 451, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29162, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:35.94059+00', 1572, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29163, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:35.979393+00', 1753, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29164, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.14572+00', 43, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29165, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.288669+00', 64, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29166, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.263643+00', 83, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29167, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.27812+00', 67, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29168, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.281954+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29169, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.152262+00', 783, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29170, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.152814+00', 797, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29171, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.477092+00', 48, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29172, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.492376+00', 90, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29173, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.525009+00', 72, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29174, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.4916+00', 146, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29175, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.520669+00', 117, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29176, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.512426+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29177, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.537939+00', 114, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29178, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.556199+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29179, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.533991+00', 138, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29180, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.106888+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29181, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.070798+00', 194, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29182, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.147111+00', 192, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29183, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.244711+00', 152, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29184, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.157416+00', 271, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29185, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.294644+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29186, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.190726+00', 282, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29187, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.313341+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29188, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.317536+00', 166, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29189, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.375834+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29190, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.206052+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29191, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.309435+00', 210, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29192, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.383532+00', 154, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29193, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.250494+00', 293, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29194, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.080772+00', 948, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29195, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.081981+00', 995, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29196, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.477156+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29197, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.526902+00', 78, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29198, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.544967+00', 70, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29199, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.516307+00', 114, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29200, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.528399+00', 113, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29201, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.467201+00', 805, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29202, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.552287+00', 749, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29203, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.35226+00', 191, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29204, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.40893+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29205, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.440837+00', 187, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29206, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.384058+00', 280, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29207, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.406542+00', 267, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29208, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.446256+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29209, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.456933+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29210, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.586241+00', 117, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29211, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.645549+00', 126, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29212, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:34.958469+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29213, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:34.979679+00', 90, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29214, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:34.97916+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29215, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:34.990483+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29216, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:34.98803+00', 257, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29217, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.186888+00', 239, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29218, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.2753+00', 185, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29219, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.23818+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29220, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.201178+00', 317, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29221, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.239185+00', 368, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29222, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.305718+00', 346, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29223, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.251427+00', 442, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29224, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.32933+00', 367, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29225, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.280509+00', 481, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29226, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:34.999568+00', 1461, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29227, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:34.982903+00', 1477, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29228, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.556163+00', 259, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29229, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.511735+00', 323, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29230, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.548583+00', 313, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29231, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.731893+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29232, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.573837+00', 308, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29233, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.572727+00', 1149, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29234, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.57437+00', 1355, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29235, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.512153+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29236, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.653257+00', 262, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29237, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.690777+00', 231, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29238, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.736519+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29239, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.738764+00', 242, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29240, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.69699+00', 297, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29241, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.764538+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29242, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.756551+00', 251, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29243, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.702026+00', 320, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29244, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.161692+00', 133, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29245, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.123274+00', 195, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29246, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.228019+00', 164, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29247, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.192797+00', 238, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29248, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.199277+00', 229, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29249, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.198388+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29250, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.32168+00', 221, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29251, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.351409+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29252, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.188628+00', 369, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29253, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.310329+00', 259, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29254, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.465202+00', 127, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29255, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.370037+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29256, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.467933+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29257, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.465718+00', 177, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29258, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.332777+00', 1223, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29259, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.32362+00', 1344, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29260, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.733915+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29261, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.73025+00', 249, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29262, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.774656+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29263, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.756932+00', 305, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29264, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.752982+00', 316, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29265, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.734912+00', 1150, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29266, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.773956+00', 1162, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29267, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.527499+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29268, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.693134+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29269, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.587835+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29270, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.794976+00', 160, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29271, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.85875+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29272, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.827136+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29273, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.815063+00', 227, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29274, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.692882+00', 387, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29275, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.835097+00', 283, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29276, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.069053+00', 207, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29277, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:34.972755+00', 364, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29278, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.087367+00', 289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29279, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.094087+00', 308, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29280, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.18668+00', 259, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29281, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.173341+00', 340, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29282, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.216281+00', 326, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29283, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.138557+00', 463, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29284, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.209495+00', 414, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29285, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.357257+00', 308, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29286, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.262277+00', 404, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29287, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.443266+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29288, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.304988+00', 380, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29289, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.352347+00', 357, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29290, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.091128+00', 1415, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29291, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.120339+00', 1496, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29292, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.605494+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29293, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.600551+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29294, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.66241+00', 105, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29295, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.61523+00', 161, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29296, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.665302+00', 151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29297, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.592891+00', 1268, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29298, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.586923+00', 1389, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29299, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.600783+00', 235, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29300, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.78001+00', 157, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29301, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.883013+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29302, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.692767+00', 419, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29303, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.880921+00', 290, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29304, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.935013+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29305, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.039426+00', 164, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29306, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.000026+00', 221, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29307, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.817096+00', 434, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29308, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.170161+00', 302, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29309, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.418364+00', 60, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29310, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.393292+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29311, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.171993+00', 377, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29312, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.42895+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29313, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.196402+00', 374, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29314, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.422181+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29315, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.521549+00', 178, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29316, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.397229+00', 328, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29317, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.548513+00', 254, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29318, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.486259+00', 309, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29319, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.593331+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29320, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.547355+00', 337, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29321, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.47689+00', 443, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29322, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.526555+00', 1153, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29323, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.363775+00', 1416, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29324, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.55287+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29325, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.586514+00', 105, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29326, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.589885+00', 199, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29327, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.596493+00', 211, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29328, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.530061+00', 311, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29329, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.622073+00', 1530, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29330, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.5742+00', 1799, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29331, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.364059+00', 143, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29332, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.445877+00', 186, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29333, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.449397+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29334, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.3858+00', 251, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29335, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.514511+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29336, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.491867+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29337, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.508282+00', 191, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29338, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.508544+00', 233, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29339, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.558568+00', 200, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29340, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:34.936386+00', 140, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29341, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:34.924355+00', 156, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29342, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:34.941185+00', 240, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29343, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.096962+00', 185, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29344, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.099594+00', 256, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29345, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:34.942374+00', 535, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29346, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.218278+00', 322, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29347, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.23899+00', 304, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29348, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.150034+00', 417, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29349, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:34.979458+00', 601, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29350, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.393638+00', 256, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29351, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.514062+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29352, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.522234+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29353, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.522117+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29354, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:34.960205+00', 1167, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29355, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:34.924889+00', 1378, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29356, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.633266+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29357, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.590162+00', 151, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29358, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.587285+00', 167, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29359, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.620491+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29360, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.710715+00', 73, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29361, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.587376+00', 1217, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29362, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.580057+00', 1266, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29363, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.223618+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29364, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.236664+00', 121, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29365, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.240902+00', 133, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29366, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.320907+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29367, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.230176+00', 252, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29368, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.307523+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29369, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.250319+00', 256, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29370, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.372575+00', 136, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29371, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.372848+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29372, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.211928+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29373, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.218089+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29374, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.24328+00', 212, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29375, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.23947+00', 239, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29376, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.278635+00', 208, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29377, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.307594+00', 205, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29378, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.401035+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29379, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.38207+00', 157, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29380, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.409987+00', 157, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29381, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.452722+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29382, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.435298+00', 166, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29383, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.417073+00', 202, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29384, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.538639+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29385, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.368638+00', 282, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29386, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.196799+00', 836, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29387, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.237358+00', 1062, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29388, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.314164+00', 47, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29389, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.313622+00', 56, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29390, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.333877+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29391, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.319519+00', 89, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29392, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.343074+00', 80, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29393, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.345973+00', 694, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29394, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.332164+00', 740, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29395, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.376779+00', 105, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29396, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.367183+00', 175, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29397, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.406555+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29398, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.445897+00', 116, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29399, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.361547+00', 213, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29400, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.458721+00', 142, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29401, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.439965+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29402, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.418502+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29403, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.414523+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29404, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.282452+00', 181, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29405, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.353538+00', 116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29406, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.337168+00', 191, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29407, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.40052+00', 156, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29408, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.415345+00', 152, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29409, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.384864+00', 205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29410, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.445557+00', 176, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29411, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.371126+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29412, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.414908+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29413, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.475306+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29414, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.447828+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29415, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.309212+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29416, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.453199+00', 237, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29417, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.434717+00', 264, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29418, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.33057+00', 1220, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29419, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.375142+00', 1301, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29420, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.389162+00', 47, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29421, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.414127+00', 62, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29422, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.43751+00', 61, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29423, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.427186+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29424, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.411291+00', 170, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29425, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.442206+00', 907, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29426, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.412514+00', 1037, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29427, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.425029+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29428, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.365371+00', 224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29429, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.430084+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29430, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.45747+00', 175, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29431, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.453386+00', 195, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29432, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.429462+00', 225, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29433, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.470254+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29434, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.43633+00', 236, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29435, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.503282+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29436, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.513948+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29437, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.491057+00', 363, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29438, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.556864+00', 327, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29439, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.506057+00', 389, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29440, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.665056+00', 273, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29441, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.75531+00', 248, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29442, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.689176+00', 331, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29443, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.840135+00', 215, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29444, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.630249+00', 544, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29445, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.776842+00', 421, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29446, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.633321+00', 592, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29447, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.68626+00', 558, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29448, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.68644+00', 569, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29449, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.924273+00', 374, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29450, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.575121+00', 1435, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29451, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.510225+00', 1607, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29452, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.747766+00', 155, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29453, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.758217+00', 261, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29454, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.749737+00', 272, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29455, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.866823+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29456, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.865315+00', 195, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29457, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.811109+00', 1107, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29458, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.841812+00', 1354, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29459, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.440467+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29460, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.442703+00', 196, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29461, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.406648+00', 257, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29462, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.635382+00', 51, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29463, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.720718+00', 53, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29464, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.685452+00', 108, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29465, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.678305+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29466, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.720821+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29467, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.723966+00', 135, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29468, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.443421+00', 216, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29469, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.439282+00', 269, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29470, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.516284+00', 300, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29471, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.422335+00', 449, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29472, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.492956+00', 405, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29473, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.550234+00', 360, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29474, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.366232+00', 557, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29475, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.632578+00', 352, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29476, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.38631+00', 616, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29477, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.550192+00', 470, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29478, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.546195+00', 478, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29479, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.426352+00', 592, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29480, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.409626+00', 669, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29481, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.634282+00', 483, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29482, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.364161+00', 1445, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29483, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.341025+00', 1551, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29484, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.4571+00', 39, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29485, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.436039+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29486, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.541491+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29487, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.452263+00', 150, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29488, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.492529+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29489, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.436244+00', 1264, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29490, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.472406+00', 1343, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29491, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.110342+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29492, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.086425+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29493, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.150654+00', 173, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29494, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.097633+00', 228, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29495, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.254936+00', 79, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29496, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.203861+00', 180, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29497, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.253937+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29498, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.24314+00', 173, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29499, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.273986+00', 209, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29500, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.611599+00', 466, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29501, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.774631+00', 328, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29502, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.863515+00', 265, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29503, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.026955+00', 210, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29504, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.943269+00', 385, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29505, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.86446+00', 537, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29506, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.036498+00', 429, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29507, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.992553+00', 518, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29508, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.94322+00', 589, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29509, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.018483+00', 541, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29510, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.860362+00', 701, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29511, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.852531+00', 783, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29512, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.015724+00', 637, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29513, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.013619+00', 648, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29514, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.828993+00', 1905, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29515, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:04.853134+00', 1943, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29516, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.353252+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29517, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.394328+00', 81, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29518, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.381742+00', 99, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29519, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.394905+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29520, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.415066+00', 110, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29521, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.418257+00', 1061, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29522, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.351603+00', 1159, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29523, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.505364+00', 109, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29524, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.525171+00', 94, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29525, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.52919+00', 94, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29526, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.522643+00', 130, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29527, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.533968+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29528, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.493421+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29529, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.533487+00', 134, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29530, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.527606+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29531, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.538144+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29532, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.30065+00', 359, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29533, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.406173+00', 319, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29534, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.402848+00', 353, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29535, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.327208+00', 461, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29536, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.507424+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29537, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.458212+00', 349, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29538, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.5434+00', 374, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29539, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.622738+00', 309, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29540, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.626053+00', 309, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29541, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.604623+00', 423, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29542, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.793682+00', 256, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29543, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.768882+00', 279, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29544, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.591016+00', 469, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29545, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.690411+00', 377, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29546, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.42691+00', 1266, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29547, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.304164+00', 1577, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29548, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:53.992183+00', 58, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29549, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:53.998299+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29550, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:53.978142+00', 79, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29551, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:53.978633+00', 93, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29552, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:53.98473+00', 100, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29553, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:53.986177+00', 725, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29554, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:53.997096+00', 775, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29555, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.838636+00', 77, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29556, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.855135+00', 69, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29557, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.873198+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29558, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.821609+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29559, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.818207+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29560, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.840065+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29561, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.88069+00', 153, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29562, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.846785+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29563, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.832551+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29564, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.270685+00', 111, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29565, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.271337+00', 114, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29566, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.275767+00', 120, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29567, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.271587+00', 128, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29568, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.320393+00', 133, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29569, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.10568+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29570, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.27342+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29571, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.014174+00', 502, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29572, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.132618+00', 473, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29573, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.216226+00', 434, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29574, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.0947+00', 559, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29575, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.170699+00', 479, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29576, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.051619+00', 635, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29577, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.224707+00', 464, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29578, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.32523+00', 1567, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29579, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.287703+00', 1620, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29580, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.751219+00', 40, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29581, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.785651+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29582, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.771644+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29583, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.79889+00', 74, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29584, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.797586+00', 94, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29585, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.803527+00', 957, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29586, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.784602+00', 1089, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29587, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:26.969332+00', 101, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29588, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.011123+00', 121, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29589, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.041551+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29590, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.098176+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29591, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.021385+00', 234, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29592, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.086261+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29593, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.129525+00', 139, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29594, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.019587+00', 256, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29595, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.084422+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29596, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.74665+00', 110, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29597, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.754435+00', 116, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29598, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.733932+00', 134, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29599, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.763509+00', 120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29600, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.774805+00', 157, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29601, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.762187+00', 1018, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29602, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.74004+00', 1061, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29603, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.207067+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29604, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.263633+00', 195, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29605, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.378587+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29606, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.372475+00', 176, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29607, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.373694+00', 206, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29608, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.346891+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29609, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.333216+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29610, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.394649+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29611, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.347801+00', 285, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29612, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.717601+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29613, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.741473+00', 163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29614, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.85816+00', 117, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29615, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.858981+00', 196, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29616, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.855419+00', 221, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29617, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.794869+00', 1172, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29618, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.785613+00', 1418, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29619, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.962955+00', 107, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29620, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.883516+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29621, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.809075+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29622, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.937265+00', 342, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29623, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.915269+00', 374, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29624, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.934139+00', 458, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29625, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.872844+00', 553, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29626, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.993279+00', 436, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29627, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.991898+00', 439, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29628, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:54.875117+00', 193, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29629, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:54.866675+00', 199, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29630, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:54.892187+00', 195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29631, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:54.995234+00', 126, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29632, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:55.020259+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29633, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:54.895771+00', 1090, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29634, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:54.894072+00', 1168, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29635, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.729511+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29636, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.732791+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29637, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.806647+00', 302, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29638, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.806591+00', 308, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29639, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.809208+00', 316, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29640, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.861371+00', 308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29641, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.739204+00', 436, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29642, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.947805+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29643, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.010147+00', 268, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29644, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.646592+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29645, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.576563+00', 176, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29646, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.56068+00', 283, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29647, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.603501+00', 243, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29648, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.575536+00', 283, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29649, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.631764+00', 924, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29650, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.555804+00', 1098, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29651, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.660973+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29652, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.84952+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29653, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.766518+00', 354, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29654, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.976237+00', 187, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29655, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.850799+00', 320, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29656, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.991825+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29657, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.851996+00', 352, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29658, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.078832+00', 153, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29659, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.090652+00', 144, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29660, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.01805+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29661, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.041977+00', 200, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29662, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.037492+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29663, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.00639+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29664, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.00872+00', 312, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29665, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:54.993028+00', 1031, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29666, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.04251+00', 1039, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29667, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:56.983804+00', 104, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29668, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:56.985402+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29669, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:56.972697+00', 398, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29670, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.180069+00', 209, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29671, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.001442+00', 454, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29672, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.033327+00', 424, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29673, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:56.988614+00', 505, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29674, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.164057+00', 340, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29675, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.11931+00', 444, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29676, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.863287+00', 87, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29677, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.836009+00', 179, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29678, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.874654+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29679, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.87754+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29680, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.811046+00', 269, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29681, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.815145+00', 1220, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29682, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.87295+00', 1425, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29683, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.530182+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29684, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.646046+00', 163, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29685, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.62657+00', 232, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29686, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.619445+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29687, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.628432+00', 318, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29688, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.822146+00', 129, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29689, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.679908+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29690, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.702384+00', 272, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29691, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.848491+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29692, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:54.88656+00', 193, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29693, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:54.935444+00', 208, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29694, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:54.904495+00', 247, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29695, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:54.998202+00', 217, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29696, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.023397+00', 227, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29697, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.024485+00', 1487, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29698, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.025554+00', 1641, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29699, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.798312+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29700, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.798317+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29701, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.854056+00', 204, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29702, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.794655+00', 273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29703, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.977293+00', 119, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29704, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.842167+00', 253, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29705, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.836713+00', 277, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29706, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.879103+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29707, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.008835+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29708, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:24.850002+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29709, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:24.857956+00', 197, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29710, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:24.80067+00', 305, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29711, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:24.852418+00', 271, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29712, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:24.988968+00', 136, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29713, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:24.8521+00', 1171, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29714, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:24.80067+00', 1294, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29715, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:27.713993+00', 424, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29716, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.026231+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29717, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.109142+00', 314, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29718, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:27.954118+00', 479, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29719, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.142952+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29720, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:27.92642+00', 550, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29721, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.204798+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29722, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.069705+00', 438, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29723, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.196954+00', 335, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29724, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.49608+00', 307, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29725, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.662219+00', 229, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29726, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.746568+00', 214, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29727, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.9067+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29728, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.698051+00', 376, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29729, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.914694+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29730, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.923095+00', 264, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29731, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.783844+00', 420, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29732, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.026113+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29733, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.950256+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29734, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.08339+00', 248, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29735, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.040176+00', 292, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29736, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.988122+00', 348, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29737, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.110898+00', 249, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29738, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.857189+00', 1085, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29739, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.850756+00', 1316, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29740, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:14.99799+00', 99, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29741, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.030634+00', 249, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29742, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:14.998104+00', 284, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29743, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.037483+00', 283, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29744, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.258223+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29745, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.029211+00', 366, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29746, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.316822+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29747, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.321757+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29748, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.387787+00', 97, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29749, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.37774+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29750, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.372879+00', 170, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29751, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.402443+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29752, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.47413+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29753, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.382204+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29754, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:14.980796+00', 900, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29755, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:14.980533+00', 1056, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29756, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:45.875081+00', 317, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29757, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:45.833458+00', 383, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29758, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:45.969213+00', 312, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29759, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:45.904498+00', 487, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29760, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:45.833859+00', 708, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29761, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.24831+00', 369, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29762, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.324292+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29763, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.375758+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29764, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.54346+00', 149, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29765, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.31499+00', 397, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29766, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.471075+00', 323, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29767, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.444781+00', 370, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29768, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.474365+00', 412, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29769, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.501317+00', 415, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29770, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:45.811389+00', 1804, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29771, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.03613+00', 1931, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29772, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:25.788998+00', 844, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(29773, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:25.788998+00', 787, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29774, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.138827+00', 657, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29775, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:25.892552+00', 939, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29776, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.027389+00', 1337, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29777, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.294081+00', 1095, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29778, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.267375+00', 1182, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(29779, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.267375+00', 1181, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29780, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.06507+00', 810, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(29781, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.61728+00', 1358, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29782, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.61728+00', 1418, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(29783, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.904877+00', 1337, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29784, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.974715+00', 1397, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(29785, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.490653+00', 903, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29786, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.410116+00', 2003, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29787, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.97768+00', 1465, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29788, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.410116+00', 2008, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(29789, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.415093+00', 2036, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29790, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.075724+00', 1380, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29791, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.181811+00', 1331, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29792, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.181811+00', 1341, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(29793, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.175558+00', 1372, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29794, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.879214+00', 676, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29795, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.378235+00', 1229, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29796, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.87271+00', 839, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29797, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.87271+00', 861, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(29798, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.868761+00', 906, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29799, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.868761+00', 917, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(29800, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.874033+00', 915, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29801, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.874033+00', 924, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(29802, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.182874+00', 725, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29803, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.467507+00', 1456, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29804, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.467507+00', 1504, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(29805, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.86198+00', 2131, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29806, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.86198+00', 2171, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(29807, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.12727+00', 2912, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29808, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.12727+00', 2924, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(29809, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.517073+00', 1733, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29810, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.875643+00', 1720, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29811, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.089571+00', 1705, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29812, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.089571+00', 1722, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(29813, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.060393+00', 4140, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29814, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.484915+00', 5407, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29815, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.936103+00', 5234, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29816, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.936103+00', 5235, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(29817, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.669647+00', 266, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29818, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.674073+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29819, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.70526+00', 322, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29820, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.988381+00', 118, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29821, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.809933+00', 299, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29822, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.805461+00', 393, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29823, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.988381+00', 248, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29824, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.037236+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29825, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.981764+00', 342, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29826, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.093054+00', 250, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29827, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.074223+00', 340, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29828, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.101058+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29829, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.012232+00', 457, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29830, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.136805+00', 344, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29831, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.66359+00', 1652, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29832, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.710032+00', 1974, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29833, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.112706+00', 302, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29834, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.161028+00', 248, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29835, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.185633+00', 221, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29836, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.13628+00', 304, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29837, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.203343+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29838, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.160831+00', 379, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29839, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.089584+00', 465, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29840, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.354547+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29841, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.284346+00', 306, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29842, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.411137+00', 272, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29843, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:25.99926+00', 697, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29844, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.264566+00', 444, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29845, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.033125+00', 661, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29846, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.594434+00', 131, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29847, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:25.994336+00', 1304, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29848, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:25.994342+00', 1594, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29849, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.214062+00', 279, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29850, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.374259+00', 328, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29851, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.245725+00', 498, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29852, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.421207+00', 340, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29853, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.289815+00', 545, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29854, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.363931+00', 513, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29855, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.6068+00', 292, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29856, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.500922+00', 425, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29857, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.507007+00', 443, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29858, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.494605+00', 473, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29859, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.584193+00', 399, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29860, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.747306+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29861, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.613783+00', 440, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29862, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.77586+00', 356, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29863, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.364727+00', 1739, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29864, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.433539+00', 1701, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29865, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.569233+00', 394, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29866, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.758733+00', 245, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29867, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.852488+00', 462, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29868, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.91566+00', 460, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29869, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.050629+00', 363, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29870, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.843952+00', 642, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29871, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.920497+00', 567, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29872, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.985481+00', 670, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29873, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.127303+00', 536, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29874, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.912788+00', 757, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29875, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.993939+00', 767, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29876, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.154024+00', 656, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29877, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.485007+00', 398, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29878, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.125075+00', 824, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29879, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.858592+00', 2101, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29880, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.928743+00', 2214, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29881, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.048809+00', 100, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29882, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.071055+00', 242, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29883, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.089669+00', 383, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29884, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.201992+00', 311, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29885, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.130018+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29886, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.241224+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29887, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.321529+00', 298, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29888, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.190302+00', 483, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29889, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.331396+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29890, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.416427+00', 386, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29891, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.456659+00', 388, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29892, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.299794+00', 560, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29893, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.308333+00', 556, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29894, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.438864+00', 440, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29895, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.07339+00', 1747, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29896, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.166024+00', 1772, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29897, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.04755+00', 144, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29898, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.104866+00', 470, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29899, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.103196+00', 622, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29900, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.201274+00', 638, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29901, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.505422+00', 349, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29902, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.176565+00', 723, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29903, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.515538+00', 498, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29904, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.251707+00', 798, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29905, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.553345+00', 499, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29906, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.284668+00', 825, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29907, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.501573+00', 608, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29908, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.586176+00', 624, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29909, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.894591+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29910, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.846099+00', 571, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29911, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.047602+00', 2036, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29912, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.123312+00', 2304, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29913, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.345077+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29914, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.339523+00', 252, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29915, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.440404+00', 326, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29916, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.79305+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29917, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.682203+00', 240, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29918, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.603606+00', 325, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29919, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.446968+00', 523, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29920, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.446222+00', 594, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29921, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.603175+00', 492, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29922, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.446167+00', 648, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29923, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.67405+00', 474, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29924, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.671688+00', 479, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29925, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.504834+00', 698, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29926, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.373009+00', 846, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29927, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.585203+00', 1840, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29928, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.586073+00', 2278, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29929, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:00.926113+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29930, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.026004+00', 70, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29931, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:00.908055+00', 224, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29932, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:00.954509+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29933, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:00.900791+00', 242, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29934, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:00.898971+00', 814, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29935, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:00.862934+00', 1022, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29936, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:26.939303+00', 172, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29937, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:26.939333+00', 174, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29938, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:26.966539+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29939, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.05298+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29940, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.0038+00', 213, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29941, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.887175+00', 389, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29942, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.813315+00', 512, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29943, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.836101+00', 520, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29944, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.919818+00', 488, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29945, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.939612+00', 470, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29946, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.004974+00', 420, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29947, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.817598+00', 709, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29948, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.198609+00', 332, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29949, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.192174+00', 347, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29950, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:26.993972+00', 1676, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29951, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:26.897352+00', 1806, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29952, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.022854+00', 474, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(29953, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:58.85952+00', 650, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29954, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.043346+00', 481, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29955, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.137249+00', 406, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(29956, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.043346+00', 502, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(29957, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.070044+00', 484, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29958, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.098926+00', 573, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(29959, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.1031+00', 801, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(29960, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.147775+00', 828, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(29961, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.406506+00', 600, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(29962, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.476622+00', 548, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(29963, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.407135+00', 790, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(29964, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.123492+00', 1126, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29965, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:58.760066+00', 1516, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(29966, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.123492+00', 1159, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(29967, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.409674+00', 1024, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29968, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.409674+00', 1038, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(29969, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.962762+00', 572, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(29970, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.831824+00', 930, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(29971, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.718017+00', 1175, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29972, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.66542+00', 1317, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29973, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.102533+00', 1957, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(29974, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.03537+00', 1276, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29975, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.573349+00', 1849, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29976, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.510678+00', 2038, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(29977, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.654113+00', 2100, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(29978, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.076332+00', 1688, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29979, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.076332+00', 1740, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(29980, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.773288+00', 2060, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29981, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.004609+00', 2008, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29982, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.828606+00', 2190, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29983, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.063205+00', 2053, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(29984, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.531045+00', 3833, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29985, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.531045+00', 3857, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(29986, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.463827+00', 4047, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(29987, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.977152+00', 5089, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29988, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.908246+00', 5239, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(29989, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.908246+00', 5238, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(29990, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.513211+00', 47, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(29991, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.611408+00', 356, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(29992, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.652289+00', 370, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(29993, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.771734+00', 313, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(29994, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.878588+00', 275, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(29995, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.11438+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(29996, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.024784+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(29997, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.046921+00', 178, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(29998, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.931352+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(29999, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.035454+00', 263, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30000, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.843047+00', 463, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30001, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.890838+00', 434, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30002, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.878579+00', 467, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30003, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.115732+00', 239, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30004, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.513971+00', 1469, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30005, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.524891+00', 1843, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30006, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.396736+00', 282, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30007, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.43052+00', 519, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(30008, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.304211+00', 649, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30009, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.304211+00', 732, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(30010, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.211868+00', 845, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30011, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.696667+00', 1044, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(30012, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.521096+00', 1277, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(30013, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.2044+00', 1744, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30014, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.538557+00', 1424, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(30015, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.538557+00', 1413, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30016, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.122284+00', 1862, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30017, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.212059+00', 1775, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(30018, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.122284+00', 1888, 0, FALSE, 'public-dashboard', '', NULL, 26, 3, NULL, 2, NULL), +(30019, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.224757+00', 1980, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30020, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.647001+00', 791, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30021, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.250272+00', 1236, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30022, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.098411+00', 1451, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30023, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.160955+00', 2452, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30024, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.094114+00', 1552, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30025, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.160955+00', 2494, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(30026, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.094268+00', 1631, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(30027, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.111985+00', 1633, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30028, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.111985+00', 1679, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(30029, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.215359+00', 1582, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30030, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.215359+00', 1581, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30031, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.177517+00', 1986, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30032, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.177517+00', 1992, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(30033, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.242088+00', 2088, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30034, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.21199+00', 2141, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30035, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.15521+00', 2553, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30036, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.216038+00', 2505, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 20, 3, NULL, 2, NULL), +(30037, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.15521+00', 2563, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(30038, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.218071+00', 2592, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30039, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.264769+00', 2630, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30040, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.180212+00', 2763, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30041, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.177803+00', 2927, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30042, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:14.123672+00', 5605, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30043, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.108062+00', 5121, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30044, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.108062+00', 5123, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30045, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.561858+00', 5111, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30046, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.561858+00', 5167, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30047, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.177631+00', 4830, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30048, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.670155+00', 209, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30049, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.570263+00', 478, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(30050, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.595837+00', 566, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(30051, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.59891+00', 592, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(30052, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.900178+00', 304, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30053, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.092835+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30054, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.090041+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30055, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.210795+00', 289, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30056, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.690048+00', 811, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(30057, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.094683+00', 423, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30058, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.961053+00', 628, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30059, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.918104+00', 697, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30060, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.000088+00', 715, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30061, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.906856+00', 821, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30062, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.962783+00', 800, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30063, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.936697+00', 850, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(30064, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.907092+00', 878, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(30065, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.828044+00', 975, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(30066, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.01679+00', 878, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30067, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.726158+00', 1168, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30068, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.124042+00', 737, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(30069, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.07813+00', 844, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30070, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.965243+00', 890, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30071, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.80293+00', 998, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30072, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.701098+00', 1262, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30073, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.701098+00', 1269, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(30074, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.171859+00', 812, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(30075, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.726158+00', 1171, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(30076, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:55.833198+00', 1061, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30077, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.169342+00', 823, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30078, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.169342+00', 833, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(30079, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.153698+00', 3485, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30080, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.153698+00', 3497, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30081, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.098678+00', 4333, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30082, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.023434+00', 4382, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30083, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.098678+00', 4387, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30084, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.023434+00', 4483, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30085, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.103289+00', 4700, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30086, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.103289+00', 4703, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30087, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.228116+00', 617, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(30088, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.522753+00', 355, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(30089, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.238601+00', 679, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(30090, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.476573+00', 472, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30091, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.459531+00', 510, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30092, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.810889+00', 430, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(30093, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.828809+00', 442, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30094, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.314458+00', 958, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(30095, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.471392+00', 886, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(30096, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.541216+00', 896, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30097, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.828372+00', 702, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30098, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.934148+00', 724, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30099, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.941399+00', 746, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30100, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.721671+00', 1054, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30101, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.721671+00', 1072, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(30102, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.883953+00', 920, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30103, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.567497+00', 240, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30104, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.859414+00', 1008, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30105, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.825062+00', 1119, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30106, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.389111+00', 553, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30107, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.82528+00', 1132, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30108, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.82528+00', 1139, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(30109, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.415025+00', 583, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30110, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.26225+00', 803, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30111, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.221152+00', 926, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(30112, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.298245+00', 932, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30113, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.779948+00', 567, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30114, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.779948+00', 576, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(30115, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.600786+00', 851, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(30116, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.594718+00', 876, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(30117, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.559815+00', 1001, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(30118, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.299444+00', 2883, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30119, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.299444+00', 2894, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30120, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.532214+00', 3106, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30121, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.532214+00', 3136, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30122, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.263873+00', 3928, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30123, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.302842+00', 3932, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30124, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.687155+00', 128, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30125, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.697975+00', 120, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30126, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.651097+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30127, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.563589+00', 278, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30128, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.774661+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30129, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.659184+00', 209, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30130, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.6726+00', 214, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30131, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.84332+00', 56, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30132, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.704448+00', 208, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30133, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.277488+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30134, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.347018+00', 64, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30135, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.362244+00', 102, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30136, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.346453+00', 161, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30137, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.380512+00', 127, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30138, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.412361+00', 107, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30139, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.361778+00', 172, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30140, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.376019+00', 159, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30141, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.412546+00', 125, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30142, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.62508+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30143, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.667486+00', 57, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30144, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.661548+00', 78, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30145, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.647487+00', 95, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30146, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.632627+00', 117, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30147, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.651655+00', 1044, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30148, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.686423+00', 1017, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30149, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.759023+00', 478, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30150, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.759023+00', 481, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(30151, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.978927+00', 426, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(30152, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.168182+00', 285, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30153, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.915865+00', 540, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(30154, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.269342+00', 692, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30155, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.384485+00', 644, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30156, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.416164+00', 723, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30157, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.46842+00', 722, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(30158, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.583575+00', 739, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30159, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.18101+00', 490, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(30160, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.812968+00', 873, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30161, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.812968+00', 875, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(30162, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.154235+00', 569, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30163, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.054322+00', 694, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(30164, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.036068+00', 790, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(30165, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.205874+00', 743, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(30166, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.037561+00', 949, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30167, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.979094+00', 1019, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(30168, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.228967+00', 842, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(30169, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.050476+00', 1175, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(30170, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.698882+00', 634, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30171, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.72358+00', 1620, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30172, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.153098+00', 1368, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(30173, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.118238+00', 1451, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30174, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.694993+00', 1004, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30175, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.696125+00', 1013, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30176, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.142689+00', 1590, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30177, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.142689+00', 1604, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(30178, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.956133+00', 2791, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30179, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.702892+00', 1053, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30180, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.701184+00', 1106, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30181, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.956133+00', 2805, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30182, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.863366+00', 3026, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30183, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:17.863366+00', 3027, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30184, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.323909+00', 2793, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30185, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.681283+00', 2449, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30186, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.746239+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30187, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.746238+00', 203, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30188, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.720222+00', 305, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30189, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.728199+00', 326, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30190, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.819287+00', 249, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30191, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.329218+00', 142, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30192, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.389746+00', 204, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30193, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.367103+00', 487, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30194, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.30053+00', 570, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30195, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.415259+00', 486, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30196, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.498336+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30197, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.424119+00', 546, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30198, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.788984+00', 216, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30199, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.795095+00', 305, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30200, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.782468+00', 1632, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30201, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.822464+00', 1871, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30202, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.828425+00', 57, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30203, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.812738+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30204, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.840376+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30205, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.867376+00', 74, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30206, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.88155+00', 58, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30207, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.245945+00', 99, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30208, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.078399+00', 282, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30209, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.281197+00', 160, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30210, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.305983+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30211, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.236064+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30212, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.337219+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30213, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.390237+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30214, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.292774+00', 204, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30215, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.390797+00', 112, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30216, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.839896+00', 867, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30217, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.882682+00', 983, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30218, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.072761+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30219, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.072761+00', 113, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30220, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.084538+00', 312, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(30221, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.575197+00', 448, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30222, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.454004+00', 1052, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(30223, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.081013+00', 1439, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30224, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.718457+00', 544, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30225, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.081013+00', 1446, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(30226, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.742144+00', 882, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30227, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.756131+00', 925, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30228, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.569543+00', 1307, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30229, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.027905+00', 845, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30230, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.027905+00', 852, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(30231, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.521931+00', 482, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30232, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.231176+00', 880, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(30233, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.851502+00', 619, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(30234, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.712313+00', 1096, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(30235, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.025666+00', 868, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30236, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.946857+00', 1076, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(30237, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.06289+00', 934, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30238, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.361416+00', 1684, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30239, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.361416+00', 1706, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(30240, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.960675+00', 1557, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30241, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.960675+00', 1600, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(30242, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.896569+00', 1593, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30243, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.947078+00', 1700, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 19, 3, NULL, 2, NULL), +(30244, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.972936+00', 1941, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30245, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.832572+00', 2636, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30246, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.832572+00', 2637, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(30247, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.397455+00', 2275, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30248, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.397455+00', 2298, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(30249, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.355268+00', 4372, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30250, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.204591+00', 2588, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30251, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.974111+00', 2887, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30252, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.089473+00', 1861, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30253, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.972328+00', 2020, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30254, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.398403+00', 4807, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30255, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.089215+00', 5331, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30256, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.089215+00', 5342, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30257, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.68836+00', 4901, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30258, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.68836+00', 4910, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30259, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:26.995847+00', 73, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30260, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:26.959511+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30261, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:26.978267+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30262, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:26.972422+00', 117, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30263, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:26.969618+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30264, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.472803+00', 106, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30265, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.500248+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30266, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.500248+00', 252, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30267, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.511338+00', 255, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30268, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.55402+00', 215, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30269, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.529679+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30270, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.547597+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30271, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.614048+00', 220, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30272, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.614074+00', 260, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30273, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:26.984631+00', 895, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30274, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:26.958682+00', 935, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30275, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.027279+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30276, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.050711+00', 62, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30277, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.035393+00', 84, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30278, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.029977+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30279, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.016394+00', 132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30280, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.48704+00', 168, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30281, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.61267+00', 120, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30282, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.60277+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30283, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.652493+00', 182, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30284, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.542156+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30285, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.654236+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30286, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.631978+00', 244, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30287, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.575331+00', 311, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30288, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.756245+00', 176, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30289, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.022248+00', 916, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30290, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:56.995151+00', 1028, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30291, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.081409+00', 103, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30292, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.112023+00', 191, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30293, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.110055+00', 231, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30294, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.073253+00', 279, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30295, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.143497+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30296, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.70124+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30297, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.81202+00', 230, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30298, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.703788+00', 350, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30299, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.691874+00', 370, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30300, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.702651+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30301, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.836845+00', 232, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30302, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.675583+00', 449, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30303, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.692709+00', 475, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30304, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.940019+00', 262, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30305, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.100856+00', 1689, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30306, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.162617+00', 1678, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30307, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.046206+00', 233, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30308, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.077883+00', 208, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30309, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.043009+00', 246, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30310, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.103276+00', 258, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30311, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.245618+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30312, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.453966+00', 209, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30313, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.484055+00', 261, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30314, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.683978+00', 119, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30315, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.583136+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30316, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.641106+00', 183, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30317, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.642151+00', 198, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30318, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.661337+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30319, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.695375+00', 200, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30320, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.608004+00', 322, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30321, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.025385+00', 1343, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30322, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.10744+00', 1369, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30323, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.013785+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30324, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.051027+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30325, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.073684+00', 85, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30326, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.069219+00', 98, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30327, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.085289+00', 96, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30328, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.388786+00', 73, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30329, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.424576+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30330, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.466944+00', 86, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30331, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.428554+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30332, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.441579+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30333, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.446016+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30334, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.551147+00', 107, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30335, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.557102+00', 113, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30336, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.543174+00', 151, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30337, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.027962+00', 1041, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30338, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.036234+00', 1077, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30339, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.244232+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30340, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.15927+00', 446, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30341, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.446941+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30342, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.202681+00', 449, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30343, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.447656+00', 237, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30344, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.426641+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30345, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.583092+00', 177, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30346, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.388127+00', 344, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30347, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.63436+00', 136, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30348, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.246349+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30349, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.404594+00', 172, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30350, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.458021+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30351, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.404383+00', 292, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30352, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.447779+00', 288, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30353, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.438836+00', 1439, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30354, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.455003+00', 1548, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30355, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.227431+00', 121, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30356, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.275305+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30357, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.223529+00', 237, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30358, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.266013+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30359, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.238815+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30360, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.298278+00', 203, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30361, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.31085+00', 195, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30362, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.357337+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30363, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.474213+00', 101, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30364, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.19461+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30365, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.228014+00', 98, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30366, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.296405+00', 70, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30367, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.294387+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30368, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.293595+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30369, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.200784+00', 1182, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30370, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.191511+00', 1290, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30371, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.579641+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30372, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.635174+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30373, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.593233+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30374, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.667562+00', 98, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30375, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.690162+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30376, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.692057+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30377, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.718884+00', 71, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30378, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.652403+00', 145, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30379, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.671856+00', 139, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30380, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.076589+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30381, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.088159+00', 117, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30382, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.095549+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30383, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.142558+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30384, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.146341+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30385, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.065662+00', 972, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30386, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.078323+00', 1259, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30387, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.414865+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30388, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.426469+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30389, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.542773+00', 189, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30390, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.512324+00', 241, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30391, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.684533+00', 79, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30392, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.458336+00', 321, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30393, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.64488+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30394, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.516268+00', 267, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30395, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.684146+00', 133, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30396, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.455832+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30397, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.416997+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30398, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.476343+00', 221, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30399, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.534603+00', 201, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30400, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.485121+00', 266, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30401, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.472456+00', 1067, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30402, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.442515+00', 1140, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30403, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.301762+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30404, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.292721+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30405, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.284758+00', 233, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30406, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.322787+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30407, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.378831+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30408, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.421214+00', 138, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30409, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.328421+00', 253, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30410, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.474179+00', 127, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30411, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.469092+00', 143, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30412, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:30.936902+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30413, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:30.912212+00', 243, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30414, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:30.979242+00', 236, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30415, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.088794+00', 138, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30416, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:30.934154+00', 335, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30417, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.118092+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30418, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.187547+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30419, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.11828+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30420, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.106959+00', 184, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30421, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.047077+00', 72, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30422, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:37.998095+00', 159, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30423, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.144635+00', 46, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30424, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.120019+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30425, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.090254+00', 126, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30426, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.156492+00', 1034, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30427, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.162316+00', 1196, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30428, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.627463+00', 70, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30429, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.548535+00', 208, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30430, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.620254+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30431, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.629836+00', 181, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30432, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.554302+00', 279, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30433, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.637353+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30434, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.686553+00', 186, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30435, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.725408+00', 153, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30436, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.612474+00', 279, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30437, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.086343+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30438, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.285019+00', 138, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30439, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.266013+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30440, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.274465+00', 179, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30441, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.309206+00', 150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30442, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.241957+00', 1065, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30443, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.298206+00', 1023, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30444, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.198894+00', 172, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30445, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.264148+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30446, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.264097+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30447, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.159583+00', 261, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30448, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.2092+00', 307, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30449, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.430377+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30450, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.334544+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30451, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.309387+00', 281, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30452, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.328584+00', 277, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30453, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.316526+00', 92, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30454, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.250435+00', 229, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30455, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.276514+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30456, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.29969+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30457, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.282434+00', 243, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30458, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.258032+00', 1171, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30459, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.27709+00', 1163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30460, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:07.933342+00', 169, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30461, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:07.994078+00', 149, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30462, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:07.998733+00', 232, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30463, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.045745+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30464, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.002175+00', 226, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30465, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.063765+00', 201, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30466, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.047835+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30467, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.047823+00', 268, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30468, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.152226+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30469, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.107335+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30470, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.136506+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30471, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.191587+00', 249, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30472, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.114176+00', 356, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30473, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.174196+00', 308, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30474, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.238201+00', 314, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30475, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.197061+00', 374, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30476, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.098114+00', 464, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30477, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.117879+00', 460, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30478, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.036897+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30479, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.051522+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30480, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.078114+00', 73, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30481, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.074241+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30482, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.064771+00', 108, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30483, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.059766+00', 1030, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30484, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.089404+00', 1161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30485, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.258878+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30486, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.413591+00', 1425, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30487, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.366137+00', 1459, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30488, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.325581+00', 1536, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30489, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.425005+00', 1439, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30490, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.397575+00', 1547, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30491, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.432085+00', 1513, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30492, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.406775+00', 1544, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30493, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.385098+00', 1566, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30494, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.21167+00', 260, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30495, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.236972+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30496, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.177164+00', 314, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30497, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.311458+00', 198, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30498, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.262658+00', 293, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30499, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.198498+00', 1249, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30500, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.184716+00', 1377, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30501, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.357681+00', 54, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30502, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.344508+00', 75, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30503, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.344157+00', 79, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30504, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.308256+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30505, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.369152+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30506, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.37327+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30507, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.35406+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30508, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.382838+00', 126, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30509, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.459574+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30510, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.083868+00', 170, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30511, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.137394+00', 298, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30512, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.184449+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30513, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.216225+00', 296, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30514, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.172081+00', 430, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30515, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.12922+00', 1367, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30516, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.203269+00', 1335, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30517, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.295522+00', 235, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30518, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.379417+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30519, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.370586+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30520, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.366244+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30521, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.388511+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30522, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.390572+00', 219, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30523, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.433549+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30524, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.502544+00', 135, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30525, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.49862+00', 154, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30526, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.192511+00', 280, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30527, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.357923+00', 224, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30528, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.302814+00', 379, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30529, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.386558+00', 377, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30530, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.53261+00', 319, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30531, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.494132+00', 374, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30532, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.360926+00', 533, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30533, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.823885+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30534, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.664821+00', 256, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30535, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.723089+00', 238, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30536, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.594484+00', 369, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30537, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.48515+00', 484, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30538, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.69272+00', 280, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30539, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.699793+00', 289, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30540, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.299403+00', 1246, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30541, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.29056+00', 1364, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30542, X'8e84480c95b595cc17631f1e277d187945958714cb797cb8f79bb4f1b19f63d5', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.232719+00', 64, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30543, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.336053+00', 123, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30544, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.332172+00', 143, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30545, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.346257+00', 180, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30546, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.308863+00', 253, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30547, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.415879+00', 206, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30548, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.387679+00', 250, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30549, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.421781+00', 307, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30550, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.404472+00', 365, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30551, X'317ea3ea24c31e3c8f8d992ef299184b13a46d58437e4540f50fa535e47ca150', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:58.152892+00', 63, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(30552, X'93af36f968ca8f913647f77c6bb9ee588e95a27159d0eb0b78ed5584b9bc2d35', TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:59.171046+00', 136, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30553, X'4214a9c178449f7891a888c635418897a09f57540bfb0155d57a04ad7465960a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:00.026358+00', 45, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(30554, X'592017c3f2f9092fba419ead0344d83a97fc8226c8e0671b54bf1582237e67e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:00.751118+00', 50, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(30555, X'885af516da1f92f38f8e1d8e77c431d20d0143b314f6d44f2ae57c4489debab4', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:01.609324+00', 86, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30556, X'ac8f4cd7a6562f7f46effecb856f4ee918f2eaae68ddb717f3bced4b2b950a17', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:02.357921+00', 48, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(30557, X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:03.833059+00', 94, 5, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30558, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:04.740846+00', 152, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30559, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:05.618617+00', 51, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(30560, X'c011fe651f0dc6a3a187fdc6279ddbe274d5458e57cd98c5fe5f1d2a6e7de83b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:39.636938+00', 67, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(30561, X'c129001428dc95db73d743aa31b50cd3b48c1d9a6e32ef6cbccce0f7b2730429', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.154778+00', 142, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30562, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.187953+00', 146, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30563, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.362685+00', 100, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30564, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.308302+00', 205, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30565, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.191441+00', 335, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30566, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.218708+00', 381, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30567, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.449334+00', 154, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30568, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.418073+00', 240, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30569, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.234171+00', 460, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30570, X'22447f34fdc39c403e7ff5f44bed7922ac4c8c156ccfd3d05688b668f7dac84c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:10.92206+00', 96, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30571, X'c129001428dc95db73d743aa31b50cd3b48c1d9a6e32ef6cbccce0f7b2730429', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:10.921209+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30572, X'41f9f48b0d9b43b8cd3ce430e6a17380a72c94b0e00e5b630a79b69568e0621b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:10.954195+00', 93, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30573, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:10.942695+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30574, X'6603bb68d218018750d0e2dfb333238f3470a08032fc6225fbbfb28647f75634', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.001021+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30575, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:10.957281+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30576, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:10.988352+00', 119, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30577, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:10.963887+00', 153, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30578, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.028936+00', 92, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30579, X'c39ea25ecc00d282391782c13cd6cce723427ec4f7f26d89329a041ea2ef49cc', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:18.758685+00', 68, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(30580, X'3e2eb87634f54149f59a689db22caca1b11f9ab926d1c9fa5a161edc7cac371a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:37.998174+00', 78, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(30581, X'd462798382c6310c4ef183539856edb94bf6f3f0c7e70755555a8bd40bbea3f0', TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:54.740133+00', 38, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(30582, X'c129001428dc95db73d743aa31b50cd3b48c1d9a6e32ef6cbccce0f7b2730429', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.612956+00', 296, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30583, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.758793+00', 198, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30584, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.735674+00', 230, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30585, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.713246+00', 282, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30586, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.85592+00', 204, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30587, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.659285+00', 452, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30588, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.769583+00', 372, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30589, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.736002+00', 415, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30590, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.985337+00', 286, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30591, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.588459+00', 75, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30592, X'c129001428dc95db73d743aa31b50cd3b48c1d9a6e32ef6cbccce0f7b2730429', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.61752+00', 82, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30593, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.566266+00', 139, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30594, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.652149+00', 78, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30595, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.609649+00', 135, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30596, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.607492+00', 170, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30597, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.654003+00', 143, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30598, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.651695+00', 184, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30599, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.654203+00', 236, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30600, X'c011fe651f0dc6a3a187fdc6279ddbe274d5458e57cd98c5fe5f1d2a6e7de83b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:54.821547+00', 37, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(30601, X'93af36f968ca8f913647f77c6bb9ee588e95a27159d0eb0b78ed5584b9bc2d35', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:55.216598+00', 112, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30602, X'c39ea25ecc00d282391782c13cd6cce723427ec4f7f26d89329a041ea2ef49cc', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:55.757143+00', 75, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(30603, X'3e2eb87634f54149f59a689db22caca1b11f9ab926d1c9fa5a161edc7cac371a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:56.799953+00', 76, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(30604, X'885af516da1f92f38f8e1d8e77c431d20d0143b314f6d44f2ae57c4489debab4', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:57.132072+00', 175, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30605, X'd462798382c6310c4ef183539856edb94bf6f3f0c7e70755555a8bd40bbea3f0', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:57.974427+00', 63, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(30606, X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:59.786641+00', 86, 5, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(30607, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:01.17566+00', 65, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(30608, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.277936+00', 205, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30609, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.388908+00', 116, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30610, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.348379+00', 215, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30611, X'c129001428dc95db73d743aa31b50cd3b48c1d9a6e32ef6cbccce0f7b2730429', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.278351+00', 305, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30612, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.258266+00', 353, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30613, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.309803+00', 317, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30614, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.509978+00', 172, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30615, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.520988+00', 204, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30616, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.395784+00', 411, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30617, X'c011fe651f0dc6a3a187fdc6279ddbe274d5458e57cd98c5fe5f1d2a6e7de83b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:36:46.949461+00', 76, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30618, X'93af36f968ca8f913647f77c6bb9ee588e95a27159d0eb0b78ed5584b9bc2d35', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:18.522034+00', 97, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30619, X'c39ea25ecc00d282391782c13cd6cce723427ec4f7f26d89329a041ea2ef49cc', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:19.572179+00', 84, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(30620, X'3e2eb87634f54149f59a689db22caca1b11f9ab926d1c9fa5a161edc7cac371a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:20.969012+00', 44, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(30621, X'885af516da1f92f38f8e1d8e77c431d20d0143b314f6d44f2ae57c4489debab4', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:22.100232+00', 120, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30622, X'd462798382c6310c4ef183539856edb94bf6f3f0c7e70755555a8bd40bbea3f0', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:23.409859+00', 38, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(30623, X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:25.832552+00', 124, 5, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(30624, X'2a5c0547563ac714967e7f5e1d943207fe9529cd76e4751419b789d593e8a5a0', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:27.013306+00', 227, 11, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(30625, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:28.211004+00', 50, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(30626, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.485782+00', 93, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30627, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.507328+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30628, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.501377+00', 143, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30629, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.509641+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30630, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.60205+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30631, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.472499+00', 822, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30632, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.534276+00', 818, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30633, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.747916+00', 184, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30634, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.862835+00', 106, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30635, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.876639+00', 114, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30636, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.794014+00', 213, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30637, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.747207+00', 271, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30638, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.917849+00', 105, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30639, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.936812+00', 92, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30640, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.903115+00', 132, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30641, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.975367+00', 163, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30642, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.188926+00', 146, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(30643, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.100613+00', 279, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(30644, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.220913+00', 160, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(30645, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.186009+00', 201, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(30646, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.258456+00', 139, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(30647, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.100361+00', 1462, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(30648, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.137745+00', 1582, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(30649, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.397165+00', 65, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30650, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.443079+00', 164, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30651, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.437142+00', 213, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30652, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.639318+00', 92, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30653, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.692936+00', 76, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30654, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.686139+00', 129, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30655, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.667451+00', 164, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30656, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.749806+00', 134, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30657, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.7302+00', 201, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30658, X'8c8315ad293486831d97ac3e6efd946c0c43cdbcca1418634e87e12dc72da812', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:20.931314+00', 38, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30659, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.55662+00', 48, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30660, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.638431+00', 84, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30661, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.615782+00', 116, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30662, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.588548+00', 128, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30663, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.612057+00', 159, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30664, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.635151+00', 181, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30665, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.77705+00', 73, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30666, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.791289+00', 115, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30667, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.799866+00', 178, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30668, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.188556+00', 497, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(30669, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.089754+00', 749, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30670, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.089754+00', 759, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(30671, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.280483+00', 828, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30672, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.750445+00', 487, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30673, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.624638+00', 722, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(30674, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.292378+00', 251, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30675, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.414258+00', 1146, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30676, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.3626+00', 295, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30677, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.3626+00', 311, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(30678, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.127449+00', 1716, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30679, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.127449+00', 1721, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(30680, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.090218+00', 827, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30681, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.286933+00', 688, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30682, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.731719+00', 1432, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30683, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.731719+00', 1455, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(30684, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.152998+00', 1131, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30685, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.968097+00', 1315, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30686, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.925746+00', 518, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30687, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.967729+00', 1884, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30688, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.863843+00', 1988, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30689, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.798011+00', 1033, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30690, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.292184+00', 1546, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30691, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.823585+00', 2079, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30692, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.967729+00', 1968, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(30693, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.863843+00', 2100, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(30694, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.313802+00', 1663, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30695, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.313802+00', 1694, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(30696, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.823585+00', 2224, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(30697, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.352786+00', 1698, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30698, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.352786+00', 1711, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(30699, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.359254+00', 1726, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30700, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.359254+00', 1731, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(30701, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.512128+00', 1640, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30702, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.512128+00', 1661, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(30703, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.440134+00', 2734, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30704, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.440134+00', 2752, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30705, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.385593+00', 1825, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30706, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.385593+00', 1850, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(30707, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.457073+00', 1977, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30708, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.329903+00', 1142, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30709, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.164+00', 1442, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30710, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.426177+00', 3839, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30711, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.13622+00', 3178, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30712, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.011284+00', 3023, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30713, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.011284+00', 3027, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30714, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.196539+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30715, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.35414+00', 281, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30716, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.419298+00', 235, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30717, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.421487+00', 293, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30718, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.405791+00', 311, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30719, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.421888+00', 302, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30720, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.370529+00', 359, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30721, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.447418+00', 298, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30722, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.402846+00', 356, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30723, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.451414+00', 342, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30724, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.383148+00', 427, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30725, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.371758+00', 411, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30726, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.483808+00', 354, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30727, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.469999+00', 403, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30728, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.454457+00', 1157, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30729, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.343629+00', 1337, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30730, X'e89f87cf1d45de7290200df5db76fbea0794d053af3ed1a22c30b71168e4dcd4', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.286945+00', 95, 2, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30731, X'c36eb96ebc8f34534a2a208359654b15c8bf2b32a4c8b25e71451edc1f0657db', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.248943+00', 148, 4, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30732, X'd5cc1b5f7201c50bee395b3953c6da65afee2063a01421553a908cdc286c21fe', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.318197+00', 106, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30733, X'2799aff13a5fee9ed906a3634f69f51d633c8d2dd80369d60b41bfdbf03bff58', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.359133+00', 99, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30734, X'7359039404eea12af11b7327cce0c315061aeffbeb7b3395247b4fed51715e44', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.319345+00', 175, 2, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30735, X'8a1b1f4599f71724bffc13bb7a225d125b7de416046c7bf72102df3387caab9d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.306599+00', 200, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30736, X'e126fce6895947ff67aa737b0bf1a1fc2040b292cf0c2091aae19f569dc4d372', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.329031+00', 189, 1, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30737, X'd4c882d72b0a8ba7575101d7e741cb57847fa75a26f37f6c055aa679c32f5af6', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.343615+00', 213, 2, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30738, X'fd2165db23c7fe7d8ea12cf0a4f63c654f593ca08de9395ef0d8f9378b74bb99', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.309199+00', 261, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30739, X'e52429a2ff96d65c996b5034f2facbda1a70cd7098ac648bd319d136bdaecc94', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.311866+00', 209, 3, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(30740, X'5b7785c9a7f319452797488bec5f4c8ba3feb153d67422c10f190eee3d9bcd16', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.351228+00', 243, 3, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(30741, X'85134b1d27ae7168f4e87c0b24362a074ecdd9cf4056bf2c2abf509033a5aa82', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.364723+00', 249, 3, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(30742, X'd3524dc61bc67f614c7caead24e5024265b0af2c83aeb4f9f74ec0e73a0cc10c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.489986+00', 169, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(30743, X'5a48b3153456001c26bb46906cd3f60d8fbf80670ae59415bf2f42f22e6ba8cd', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.452647+00', 232, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(30744, X'6ab5fd0fcc83b5ad0341a17598dbc14f4aade861a38de7724faa57b88df9c1c2', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.483042+00', 268, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(30745, X'51aee73f311a9c208b482a703d6fcefba18b14f045689740c23ce20b0eb5e180', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.422934+00', 331, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(30746, X'2f3d257717def86d8a7c07dc0c1265ec4aaab336d0df7e2ce6ad13b5a6f94e56', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.414232+00', 369, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(30747, X'd506bf9ae9e3f535aec7c74460e60533007742080312593f91a2d64f8e9871e0', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.356416+00', 561, 4, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(30748, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.514153+00', 63, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30749, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.501385+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30750, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.515415+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30751, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.523259+00', 88, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30752, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.515062+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30753, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.486151+00', 789, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30754, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.48266+00', 822, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30755, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:58.913227+00', 167, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30756, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:58.997731+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30757, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.001147+00', 201, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30758, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.031473+00', 180, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30759, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:58.994728+00', 235, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30760, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.042487+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30761, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.035791+00', 257, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30762, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.043475+00', 272, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30763, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:58.971983+00', 356, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30764, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.482825+00', 500, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30765, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.645816+00', 345, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(30766, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.546369+00', 465, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30767, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.482825+00', 554, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(30768, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.602194+00', 627, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30769, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.618321+00', 857, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30770, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.044655+00', 696, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(30771, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.893484+00', 1039, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(30772, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.997547+00', 955, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(30773, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.057734+00', 896, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30774, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.070001+00', 995, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(30775, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.933297+00', 1028, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30776, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.560991+00', 593, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(30777, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.415344+00', 755, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(30778, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.387452+00', 846, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(30779, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.349221+00', 895, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30780, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.481324+00', 1788, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30781, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.481324+00', 1797, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30782, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.642126+00', 723, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30783, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.908611+00', 461, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30784, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.054902+00', 1334, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30785, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.313817+00', 1076, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30786, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.552044+00', 834, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30787, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.48243+00', 939, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(30788, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.507673+00', 1075, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(30789, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.27856+00', 1401, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 20, 3, NULL, 2, NULL), +(30790, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.388758+00', 1415, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30791, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.388758+00', 1450, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(30792, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.913271+00', 1116, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(30793, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.906736+00', 1161, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30794, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.906736+00', 1186, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30795, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.484177+00', 2621, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30796, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.484177+00', 2627, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30797, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.505306+00', 1626, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(30798, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.909408+00', 1286, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(30799, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.789109+00', 2665, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30800, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.789109+00', 2668, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30801, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.95604+00', 2738, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 2, NULL), +(30802, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.463733+00', 755, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(30803, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.198302+00', 1188, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30804, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.801612+00', 897, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30805, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.463758+00', 1282, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(30806, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.463758+00', 1280, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30807, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.429731+00', 1307, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30808, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.802568+00', 1050, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30809, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.229555+00', 718, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30810, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.744047+00', 1246, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30811, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.558664+00', 466, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30812, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.459868+00', 590, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(30813, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.482509+00', 663, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30814, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.60207+00', 1798, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30815, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.60207+00', 1799, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(30816, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.244786+00', 1191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30817, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.795909+00', 634, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30818, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.498597+00', 963, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30819, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.514342+00', 982, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(30820, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.668627+00', 868, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(30821, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.569648+00', 1099, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30822, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.186766+00', 1537, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 2, NULL), +(30823, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.184411+00', 1580, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30824, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.004729+00', 762, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30825, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.96177+00', 837, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30826, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.384674+00', 1465, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30827, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.300273+00', 1547, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30828, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.384674+00', 1495, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(30829, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.284223+00', 1614, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 18, 3, NULL, 2, NULL), +(30830, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.300273+00', 1623, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(30831, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.188897+00', 1760, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30832, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.460371+00', 1506, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30833, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.460371+00', 1515, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(30834, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.316336+00', 1721, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30835, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.188897+00', 1862, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(30836, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.316336+00', 1745, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(30837, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.393886+00', 2902, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30838, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.393886+00', 2912, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(30839, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.008389+00', 3761, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30840, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:21.463514+00', 4399, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30841, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.187574+00', 3837, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30842, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.187574+00', 3839, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(30843, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.03583+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30844, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:38.876298+00', 356, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30845, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.193104+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30846, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.163169+00', 139, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30847, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:38.818182+00', 497, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30848, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:38.724559+00', 627, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30849, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.276345+00', 140, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30850, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.19334+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30851, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.194453+00', 249, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30852, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.626149+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30853, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.637551+00', 97, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30854, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.670831+00', 190, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30855, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.618343+00', 273, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30856, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.744798+00', 189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30857, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.711314+00', 1266, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30858, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.813032+00', 1705, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30859, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.713416+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30860, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.730587+00', 306, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30861, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.84451+00', 302, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30862, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.705966+00', 530, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30863, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.989939+00', 336, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30864, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.946261+00', 464, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30865, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.011179+00', 405, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30866, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.009998+00', 403, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30867, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.921242+00', 526, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30868, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:50.746325+00', 257, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30869, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:50.883461+00', 252, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30870, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.092677+00', 101, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30871, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:50.900105+00', 350, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30872, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.072272+00', 189, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30873, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:50.911356+00', 379, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30874, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.18811+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30875, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.028666+00', 283, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30876, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:50.939211+00', 376, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30877, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.099408+00', 258, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30878, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.126085+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30879, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.122426+00', 245, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30880, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:50.87041+00', 550, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30881, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.196263+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30882, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:50.911372+00', 1296, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30883, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.1291+00', 1249, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30884, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.855572+00', 77, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30885, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.853857+00', 76, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30886, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.860535+00', 136, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30887, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.901693+00', 164, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30888, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.893084+00', 230, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30889, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.044574+00', 287, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30890, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.23228+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30891, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.081436+00', 274, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30892, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.125738+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30893, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.257777+00', 152, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30894, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.070003+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30895, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.232217+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30896, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.215796+00', 234, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30897, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.234264+00', 344, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30898, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.497059+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30899, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.46541+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30900, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.543511+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30901, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.563863+00', 183, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30902, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.618478+00', 152, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30903, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.468167+00', 331, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30904, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.698+00', 112, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30905, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.677287+00', 166, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30906, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.668851+00', 179, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30907, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.900278+00', 1051, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30908, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.871315+00', 1124, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30909, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.061641+00', 124, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30910, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.080981+00', 114, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30911, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.108531+00', 116, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30912, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.129761+00', 113, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30913, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.11638+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30914, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.080755+00', 1212, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30915, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.110812+00', 1329, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30916, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.263224+00', 103, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30917, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.26392+00', 129, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30918, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.442656+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30919, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.264026+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30920, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.263642+00', 292, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30921, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.264869+00', 323, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30922, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.506966+00', 334, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30923, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.570117+00', 308, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30924, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.569861+00', 311, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30925, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.650757+00', 257, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30926, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.444169+00', 466, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30927, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.450103+00', 479, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30928, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.67411+00', 262, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30929, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.565772+00', 380, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30930, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.235632+00', 1154, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30931, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.250866+00', 1271, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30932, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.263+00', 163, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30933, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.382594+00', 146, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30934, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.35458+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30935, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.418029+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30936, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.44131+00', 122, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30937, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.369909+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30938, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.416395+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30939, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.393619+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30940, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.464448+00', 176, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30941, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.734028+00', 74, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30942, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.755364+00', 72, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30943, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.744418+00', 109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30944, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.769374+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30945, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.81203+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30946, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.714665+00', 736, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30947, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.763314+00', 804, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30948, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:31.816888+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30949, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:31.927245+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30950, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.006203+00', 158, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30951, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:31.992258+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30952, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.146752+00', 139, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30953, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.016453+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30954, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.149119+00', 212, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30955, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:31.982119+00', 391, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30956, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.184167+00', 207, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30957, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.127628+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30958, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.269522+00', 189, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30959, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.290611+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30960, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.120503+00', 377, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30961, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.285246+00', 233, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30962, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.128424+00', 1367, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30963, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.382562+00', 146, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30964, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.168378+00', 1413, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30965, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.399177+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30966, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.460972+00', 170, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30967, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.357899+00', 306, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30968, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.497705+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30969, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.35353+00', 344, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30970, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.690694+00', 106, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30971, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.704041+00', 106, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30972, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.701052+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30973, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.36649+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30974, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.398138+00', 210, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30975, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.391921+00', 256, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30976, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.440356+00', 255, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30977, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.368285+00', 340, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(30978, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.330949+00', 1243, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30979, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.346742+00', 1311, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30980, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:51.142499+00', 1554, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(30981, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.50973+00', 277, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30982, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:51.064624+00', 1748, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(30983, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.508244+00', 314, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(30984, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.543604+00', 289, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(30985, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.669113+00', 351, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(30986, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.520999+00', 596, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(30987, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.644547+00', 467, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30988, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.561993+00', 570, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30989, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.668963+00', 486, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(30990, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.635309+00', 518, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(30991, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.731347+00', 449, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(30992, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.805891+00', 389, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(30993, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.743399+00', 474, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(30994, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.493715+00', 1642, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(30995, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.559625+00', 1689, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(30996, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.024351+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(30997, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.023177+00', 317, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(30998, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.250704+00', 141, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(30999, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.145302+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31000, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.166788+00', 317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31001, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.259565+00', 267, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31002, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.181498+00', 373, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31003, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.25089+00', 305, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31004, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.180632+00', 403, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31005, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.104075+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31006, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.113133+00', 170, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31007, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.133301+00', 205, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31008, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.157094+00', 213, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31009, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.170768+00', 226, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31010, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.129472+00', 987, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31011, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.167774+00', 1234, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31012, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.487079+00', 63, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31013, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.501534+00', 92, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31014, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.504659+00', 90, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31015, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.687336+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31016, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.791077+00', 123, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31017, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.8537+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31018, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.682337+00', 297, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31019, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.833491+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31020, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.954448+00', 105, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31021, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.774428+00', 283, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31022, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.877934+00', 209, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31023, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.901726+00', 217, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31024, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.782439+00', 369, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31025, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.999512+00', 160, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31026, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.957559+00', 918, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31027, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.990542+00', 952, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31028, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.231258+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31029, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.399353+00', 288, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31030, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.330027+00', 362, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31031, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.602264+00', 147, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31032, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.667029+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31033, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.717114+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31034, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.782908+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31035, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.530166+00', 403, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31036, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.720907+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31037, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.025903+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31038, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:50.953759+00', 217, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31039, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.091267+00', 89, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31040, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:50.943052+00', 246, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31041, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.081955+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31042, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.407494+00', 367, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31043, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.396578+00', 399, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31044, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.516734+00', 629, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31045, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.101258+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31046, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.762416+00', 452, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31047, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.810251+00', 418, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31048, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.462606+00', 773, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31049, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.126463+00', 184, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31050, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.600078+00', 730, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31051, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.148244+00', 189, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31052, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.002622+00', 375, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31053, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.260323+00', 168, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31054, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.810134+00', 645, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31055, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.198451+00', 306, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31056, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.033348+00', 1986, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31057, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.03079+00', 2179, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31058, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.423341+00', 2622, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31059, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.483187+00', 2563, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31060, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.30868+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31061, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.378941+00', 103, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31062, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.452472+00', 47, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31063, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.468855+00', 71, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31064, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.458882+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31065, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.455557+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31066, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.476257+00', 84, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31067, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.466025+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31068, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.473224+00', 132, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31069, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.342109+00', 325, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31070, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.402363+00', 318, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31071, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.418238+00', 587, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31072, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.43543+00', 683, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31073, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.481212+00', 689, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31074, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.858061+00', 464, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31075, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.958997+00', 374, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31076, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.764221+00', 567, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31077, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.861172+00', 483, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31078, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.132939+00', 278, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31079, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.866118+00', 561, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31080, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.758225+00', 690, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31081, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.214267+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31082, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.096105+00', 444, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31083, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.408515+00', 2251, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31084, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.365494+00', 2378, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31085, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:24.980194+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31086, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:24.89601+00', 243, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31087, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:25.034092+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31088, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:25.03831+00', 124, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31089, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:24.982039+00', 198, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31090, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:24.98445+00', 1215, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31091, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:24.881017+00', 1406, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31092, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.399257+00', 329, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31093, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.491818+00', 261, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31094, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.399648+00', 389, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31095, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.390087+00', 446, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31096, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.472076+00', 420, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31097, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.724438+00', 398, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31098, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.882998+00', 309, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31099, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.922889+00', 323, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31100, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.810676+00', 457, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31101, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.952891+00', 322, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31102, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.658541+00', 625, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31103, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.871299+00', 414, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31104, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.87037+00', 440, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31105, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.138398+00', 273, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31106, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.392431+00', 1998, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31107, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.458292+00', 2047, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31108, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.418361+00', 181, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31109, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.521507+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31110, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.436694+00', 253, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31111, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.418555+00', 284, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31112, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.542758+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31113, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.43024+00', 290, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31114, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.538452+00', 182, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31115, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.578068+00', 167, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31116, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.61136+00', 164, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31117, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.199144+00', 51, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31118, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.185346+00', 77, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31119, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.22591+00', 67, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31120, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.216524+00', 93, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31121, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.225989+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31122, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.196871+00', 964, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31123, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.220963+00', 1068, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31124, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.708585+00', 363, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31125, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.70298+00', 488, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31126, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.726751+00', 550, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31127, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.897523+00', 387, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31128, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.10069+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31129, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.067436+00', 303, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31130, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.093994+00', 340, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31131, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.082258+00', 364, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31132, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.997365+00', 473, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31133, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.068287+00', 437, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31134, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.975597+00', 585, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31135, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.389164+00', 226, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31136, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.339641+00', 313, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31137, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.338944+00', 340, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31138, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.909933+00', 1899, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31139, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:21.877182+00', 1988, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31140, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.756272+00', 101, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31141, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.817443+00', 78, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31142, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.801865+00', 93, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31143, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.84365+00', 96, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31144, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.81332+00', 129, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31145, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.775965+00', 216, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31146, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.912867+00', 82, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31147, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.907486+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31148, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.912979+00', 135, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31149, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.446088+00', 53, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31150, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.481242+00', 82, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31151, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.476229+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31152, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.443732+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31153, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.464252+00', 119, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31154, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.482013+00', 735, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31155, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.469846+00', 802, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31156, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.786393+00', 124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31157, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.81034+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31158, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.790368+00', 363, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31159, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.740438+00', 435, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31160, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.805985+00', 441, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31161, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.006045+00', 266, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31162, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.196575+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31163, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.230428+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31164, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.070084+00', 343, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31165, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.16385+00', 273, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31166, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.337214+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31167, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.297093+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31168, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.30196+00', 241, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31169, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.323522+00', 250, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31170, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.730709+00', 1752, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31171, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.797701+00', 1721, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31172, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.852902+00', 146, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31173, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.751018+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31174, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.751018+00', 279, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31175, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.933643+00', 168, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31176, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.956153+00', 229, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31177, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.927983+00', 287, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31178, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.930471+00', 286, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31179, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.064765+00', 193, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31180, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.925598+00', 417, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31181, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.065331+00', 282, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31182, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.174248+00', 229, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31183, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.939603+00', 2715, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31184, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.939603+00', 2717, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31185, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:44.965272+00', 2739, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31186, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.167427+00', 2669, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31187, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.079635+00', 2823, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31188, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.079635+00', 2826, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31189, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.538835+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31190, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.617492+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31191, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.605165+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31192, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.608764+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31193, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.692025+00', 174, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31194, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.671173+00', 213, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31195, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.612091+00', 297, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31196, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.705817+00', 235, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31197, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.858632+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31198, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:56.815252+00', 238, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31199, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:56.797079+00', 308, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31200, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:56.869499+00', 329, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31201, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:56.825259+00', 423, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31202, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:56.825259+00', 429, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31203, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.18677+00', 514, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31204, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.234526+00', 524, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31205, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.122361+00', 650, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31206, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.156331+00', 693, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31207, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.042961+00', 829, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31208, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.126244+00', 746, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31209, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:56.755494+00', 2691, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31210, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:56.755494+00', 2693, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31211, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.008274+00', 2461, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31212, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.04106+00', 2538, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31213, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.04106+00', 2539, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31214, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.11522+00', 2767, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31215, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.083373+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31216, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.185692+00', 76, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31217, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.221177+00', 157, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31218, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.17762+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31219, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.234202+00', 166, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31220, X'7edbf3f2c534e35e075a36a6c7124b6ae02d399d15185ec42921e3e9274ceb6a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.528899+00', 85, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31221, X'8e4d61578a8efd984c099a4726ece7f3d6c622c24ed86f945ce280e1d9a56d2e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.486237+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31222, X'a7629d4e0acbf764929190f87eafb2da8b80be7b3f909da96ebe413614fa990f', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.77769+00', 350, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31223, X'b11653cea6a65f6fe158818e214dd34eb100df67fcd220ab4bfeb7caf5824e12', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.72762+00', 462, 5, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31224, X'032fd74554f3fc6ecf401b6c1bfa70199eaf554b83dac79f832c442fb27dda75', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.788927+00', 424, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31225, X'a30f4394edf7d12639e4bd788c4e87191fa92fa24677b6de7e7f496eb0fe7842', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.82975+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31226, X'0644b382c2fce58385836155ce25df395924fe323459bad9ef2c568bb76ef7bb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.79187+00', 438, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31227, X'c274384541f76ebe38d879c515514b4038c880effca01f737dd54e65748ce248', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.173547+00', 144, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31228, X'8cc089b5c94bb6585869f073f5dba059d46cfe22cf6ff6d8a49252758b0e164e', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.158253+00', 185, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31229, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.110601+00', 1245, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31230, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.17793+00', 1369, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31231, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.298137+00', 240, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31232, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.298435+00', 264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31233, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.379995+00', 246, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31234, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.28284+00', 392, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31235, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.581158+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31236, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.408869+00', 1524, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31237, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.469044+00', 1545, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31238, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:56.728875+00', 706, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(31239, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:56.66049+00', 776, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(31240, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:56.971372+00', 602, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(31241, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:56.966106+00', 620, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(31242, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:56.954205+00', 649, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(31243, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:56.672975+00', 947, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(31244, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.442753+00', 283, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31245, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.53659+00', 294, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31246, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:56.822324+00', 1034, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(31247, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.222652+00', 638, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31248, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.613981+00', 441, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31249, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.372891+00', 778, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31250, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.276711+00', 874, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31251, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.268126+00', 890, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31252, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.192242+00', 968, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31253, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.268126+00', 903, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(31254, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.042898+00', 185, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31255, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.044815+00', 334, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31256, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.537229+00', 857, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 31, 2, NULL, 2, NULL), +(31257, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.985978+00', 409, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31258, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.646365+00', 794, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31259, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.665052+00', 868, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31260, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.65945+00', 879, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31261, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.984553+00', 719, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31262, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.984553+00', 731, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(31263, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.468147+00', 1260, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31264, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.750129+00', 1151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31265, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.641796+00', 1477, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31266, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.528835+00', 1625, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31267, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.338203+00', 821, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31268, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.296213+00', 1955, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31269, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.296213+00', 1960, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31270, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.634746+00', 2189, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31271, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.634746+00', 2196, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31272, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.936737+00', 2208, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31273, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.468342+00', 44, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31274, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.534152+00', 70, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31275, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.54569+00', 223, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31276, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.551574+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31277, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.605952+00', 240, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31278, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.578231+00', 268, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31279, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.707327+00', 234, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31280, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.574503+00', 404, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31281, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.685179+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31282, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.748323+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31283, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.766192+00', 255, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31284, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.94822+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31285, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.937693+00', 231, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31286, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.865334+00', 319, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31287, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.494552+00', 1117, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31288, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.461506+00', 1457, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31289, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.209222+00', 306, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31290, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.240032+00', 306, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31291, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.374479+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31292, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.406542+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31293, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.350034+00', 275, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31294, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.558296+00', 175, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31295, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.542109+00', 220, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31296, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.476733+00', 323, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31297, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.51487+00', 333, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31298, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.400095+00', 466, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31299, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.520413+00', 385, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31300, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.586408+00', 397, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31301, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.479547+00', 509, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31302, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.637091+00', 388, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31303, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.497998+00', 1245, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31304, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.553427+00', 1250, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31305, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.373007+00', 82, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31306, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.375405+00', 76, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31307, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.417722+00', 237, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31308, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.50917+00', 170, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31309, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.454904+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31310, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.483371+00', 251, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31311, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.559344+00', 180, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31312, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.480697+00', 298, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31313, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.655352+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31314, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:41.946517+00', 44, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31315, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.031156+00', 57, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31316, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.034015+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31317, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.027329+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31318, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.038092+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31319, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:41.946585+00', 812, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31320, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.034479+00', 780, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31321, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.377018+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31322, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.469026+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31323, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.378072+00', 255, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31324, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.501485+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31325, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.510766+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31326, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.502063+00', 245, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31327, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.634579+00', 123, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31328, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.636218+00', 143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31329, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.520189+00', 301, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31330, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:20.922433+00', 114, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31331, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:20.942911+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31332, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:20.927505+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31333, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:20.942669+00', 137, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31334, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:20.852566+00', 294, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31335, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:20.910336+00', 1472, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31336, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:20.910336+00', 1581, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31337, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.66229+00', 76, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31338, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.877482+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31339, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.822507+00', 209, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31340, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.889742+00', 209, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31341, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.910104+00', 282, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31342, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.133949+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31343, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.153731+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31344, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.207225+00', 296, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31345, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.218123+00', 311, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31346, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.118414+00', 422, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31347, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.216141+00', 334, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31348, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.174371+00', 402, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31349, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.283857+00', 311, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31350, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.30922+00', 317, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31351, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.672564+00', 1296, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31352, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.663783+00', 1390, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31353, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.115408+00', 295, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31354, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.222315+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31355, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.252518+00', 250, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31356, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.246584+00', 382, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31357, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.341085+00', 298, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31358, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.322279+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31359, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.219776+00', 444, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31360, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.457092+00', 305, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31361, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.457092+00', 309, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31362, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.541904+00', 348, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31363, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.520077+00', 404, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31364, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.144574+00', 2331, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31365, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.144574+00', 2338, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31366, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.339639+00', 2716, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(31367, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.522078+00', 2553, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31368, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.522078+00', 2560, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 2, NULL), +(31369, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.368168+00', 2761, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31370, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.368168+00', 2767, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31371, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.677546+00', 191, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31372, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.750293+00', 244, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31373, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.721517+00', 431, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31374, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.721517+00', 439, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31375, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.721526+00', 525, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31376, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.777081+00', 486, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31377, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.748853+00', 535, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31378, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.977377+00', 386, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31379, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.891025+00', 538, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31380, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.849654+00', 588, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31381, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.876754+00', 599, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31382, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.750248+00', 1662, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31383, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.750248+00', 1669, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31384, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.369642+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31385, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.791284+00', 1765, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31386, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.306174+00', 264, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31387, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.398548+00', 208, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31388, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.342441+00', 364, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31389, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.535491+00', 174, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31390, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.330188+00', 459, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31391, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.334817+00', 465, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31392, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.515159+00', 312, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31393, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.755157+00', 2105, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31394, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.755157+00', 2121, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31395, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.546114+00', 377, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31396, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:25.022224+00', 1985, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31397, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.096339+00', 86, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31398, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.097094+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31399, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.193152+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31400, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.226574+00', 205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31401, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.275059+00', 237, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31402, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.198318+00', 1155, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31403, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.228009+00', 1206, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31404, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.239971+00', 289, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31405, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.299584+00', 414, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31406, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.299584+00', 408, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31407, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.353195+00', 454, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31408, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.377086+00', 472, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31409, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.358684+00', 598, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31410, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.476611+00', 543, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31411, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.463002+00', 558, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31412, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.239244+00', 807, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31413, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.44809+00', 640, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31414, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.691077+00', 420, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31415, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.201248+00', 2106, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31416, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.201248+00', 2109, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31417, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.456397+00', 2079, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31418, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.191751+00', 2364, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31419, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.191751+00', 2364, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31420, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.469923+00', 2212, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31421, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.4717+00', 196, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31422, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.525771+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31423, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.621344+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31424, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.670966+00', 236, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31425, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.667869+00', 338, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31426, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.848354+00', 187, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31427, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.638319+00', 418, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31428, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.724485+00', 354, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31429, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:03.020521+00', 114, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31430, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:08.919105+00', 106, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31431, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:08.980423+00', 68, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31432, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:08.973944+00', 111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31433, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:08.953996+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31434, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:08.945033+00', 231, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31435, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:08.909515+00', 1074, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31436, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:08.911633+00', 1244, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31437, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.235434+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31438, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.278517+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31439, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.319255+00', 76, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31440, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.324365+00', 100, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31441, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.365673+00', 84, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31442, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.356404+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31443, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.357662+00', 102, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31444, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.348219+00', 115, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31445, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.386674+00', 89, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31446, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.180736+00', 39, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31447, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.390404+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31448, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.391294+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31449, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.405802+00', 71, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31450, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.406348+00', 93, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31451, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.264206+00', 884, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31452, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.291969+00', 968, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31453, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.620057+00', 75, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31454, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.582099+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31455, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.633389+00', 139, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31456, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.647025+00', 172, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31457, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.646155+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31458, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.778047+00', 87, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31459, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.645504+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31460, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.774191+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31461, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.643445+00', 264, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31462, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.238301+00', 261, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31463, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.280398+00', 419, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31464, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.217282+00', 538, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31465, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.217282+00', 549, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31466, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.422286+00', 371, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31467, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.347839+00', 628, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31468, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.568362+00', 424, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31469, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.529872+00', 510, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31470, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.817764+00', 413, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31471, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.749874+00', 598, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31472, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.789698+00', 618, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31473, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.209053+00', 2994, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31474, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.209053+00', 2992, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31475, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.226699+00', 3085, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31476, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.226699+00', 3102, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31477, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.81542+00', 2730, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31478, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.58147+00', 3122, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31479, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.318904+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31480, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.377332+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31481, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.363399+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31482, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.43768+00', 118, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31483, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.30789+00', 261, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31484, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.44466+00', 1182, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31485, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.444694+00', 1545, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31486, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:49.979219+00', 188, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31487, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.060377+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31488, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:49.999575+00', 209, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31489, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.062626+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31490, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.03195+00', 248, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31491, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.109422+00', 188, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31492, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.163445+00', 177, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31493, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.114752+00', 250, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31494, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.080124+00', 345, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31495, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.016864+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31496, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:56.978533+00', 280, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31497, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:56.999454+00', 291, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31498, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.09278+00', 207, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31499, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.12422+00', 242, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31500, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:56.982993+00', 1892, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31501, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:56.992029+00', 2138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31502, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.247118+00', 52, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31503, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.25707+00', 48, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31504, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.262103+00', 83, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31505, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.287045+00', 118, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31506, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.326554+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31507, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.384439+00', 59, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31508, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.380776+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31509, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.363364+00', 130, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31510, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.416142+00', 98, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31511, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:32.963036+00', 69, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31512, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.009682+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31513, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.009682+00', 73, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31514, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:32.990885+00', 146, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31515, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.035565+00', 113, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31516, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:32.986054+00', 808, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31517, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.01997+00', 780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31518, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.195177+00', 342, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31519, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.286248+00', 265, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31520, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.243347+00', 345, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31521, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.535977+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31522, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.357667+00', 288, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31523, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.279208+00', 370, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31524, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.57164+00', 92, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31525, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.373133+00', 300, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31526, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.29017+00', 399, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31527, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.425893+00', 249, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31528, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.501281+00', 275, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31529, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.429098+00', 347, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31530, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.428201+00', 381, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31531, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.503859+00', 318, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31532, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.43566+00', 1346, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31533, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.598163+00', 1529, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31534, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.607966+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31535, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.595085+00', 123, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31536, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.578318+00', 178, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31537, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.976577+00', 185, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31538, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.973667+00', 200, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31539, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.976642+00', 227, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31540, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.9181+00', 282, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31541, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.964366+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31542, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:43.011654+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31543, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.483769+00', 51, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31544, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.473378+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31545, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.623723+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31546, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.647538+00', 89, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31547, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.742163+00', 126, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31548, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.500833+00', 1238, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31549, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.51939+00', 1327, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31550, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.090174+00', 117, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31551, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.034158+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31552, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.087302+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31553, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.139756+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31554, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.157514+00', 210, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31555, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.256709+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31556, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.301412+00', 116, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31557, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.240989+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31558, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.251646+00', 220, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31559, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.095916+00', 80, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31560, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.10683+00', 76, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31561, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.106143+00', 88, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31562, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.130975+00', 77, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31563, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.136918+00', 89, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31564, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.09758+00', 750, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31565, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.110066+00', 776, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31566, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:49.965373+00', 101, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31567, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:49.977953+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31568, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.035949+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31569, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.083782+00', 113, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31570, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.134069+00', 115, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31571, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.123696+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31572, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.100138+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31573, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.146807+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31574, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.206765+00', 101, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31575, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:55.958824+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31576, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.004897+00', 195, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31577, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.072756+00', 139, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31578, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.049961+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31579, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.088499+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31580, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.03726+00', 1010, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31581, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.052236+00', 1201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31582, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.734637+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31583, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.772219+00', 82, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31584, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.76022+00', 119, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31585, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.784623+00', 214, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31586, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.765886+00', 266, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31587, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.019408+00', 88, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31588, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.129718+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31589, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.048053+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31590, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.113286+00', 220, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31591, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.06852+00', 408, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31592, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.743765+00', 2043, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31593, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.743765+00', 2048, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31594, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.76347+00', 2087, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31595, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.76347+00', 2087, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31596, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.082654+00', 2073, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31597, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.10323+00', 2122, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31598, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:20.951704+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31599, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.039626+00', 42, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31600, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.042401+00', 43, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31601, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.121331+00', 48, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31602, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.063693+00', 130, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31603, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.153895+00', 63, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31604, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.124055+00', 95, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31605, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.203736+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31606, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.192363+00', 86, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31607, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:26.96202+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31608, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:26.991795+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31609, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.102122+00', 141, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31610, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.186428+00', 139, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31611, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.19457+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31612, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:26.989683+00', 1333, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31613, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:26.989281+00', 1402, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31614, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:51.988158+00', 162, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31615, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.014256+00', 255, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31616, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.081451+00', 318, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31617, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.147872+00', 259, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31618, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.158939+00', 259, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31619, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.148909+00', 278, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31620, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.247126+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31621, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.385641+00', 110, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31622, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.301693+00', 218, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31623, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:57.942957+00', 174, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31624, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.009516+00', 160, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31625, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.060574+00', 151, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31626, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.131416+00', 141, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31627, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.130291+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31628, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:57.98018+00', 1348, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31629, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.127782+00', 1261, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31630, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.643198+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31631, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.856252+00', 86, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31632, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.888245+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31633, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.909245+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31634, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.991521+00', 146, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31635, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.003805+00', 159, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31636, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.055899+00', 147, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31637, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.090292+00', 174, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31638, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.061562+00', 312, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31639, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:27.995454+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31640, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:27.942512+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31641, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:27.999029+00', 79, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31642, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.079962+00', 50, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31643, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.04424+00', 121, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31644, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:27.983302+00', 1262, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31645, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.024513+00', 1344, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31646, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.661915+00', 176, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31647, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.673943+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31648, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.627771+00', 310, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31649, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.755027+00', 214, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31650, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.630804+00', 337, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31651, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.853758+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31652, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.834697+00', 224, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31653, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.751919+00', 339, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31654, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.927309+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31655, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.134315+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31656, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.121546+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31657, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.248381+00', 184, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31658, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:02.945515+00', 524, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31659, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.001291+00', 508, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31660, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:02.967294+00', 1589, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31661, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:02.934497+00', 1855, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31662, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.252743+00', 216, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31663, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.359259+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31664, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.299874+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31665, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.302975+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31666, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.364021+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31667, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.341995+00', 186, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31668, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.29186+00', 240, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31669, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.340766+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31670, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.357894+00', 222, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31671, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.109463+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31672, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.15769+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31673, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.157339+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31674, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.302236+00', 114, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31675, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.325294+00', 161, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31676, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.183119+00', 847, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31677, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.102647+00', 1078, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31678, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.633658+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31679, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.736249+00', 107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31680, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.729568+00', 159, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31681, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.822682+00', 81, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31682, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.736415+00', 182, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31683, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.864398+00', 77, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31684, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.840118+00', 154, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31685, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.867676+00', 131, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31686, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.93126+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31687, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.190473+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31688, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.234041+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31689, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.295759+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31690, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.295663+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31691, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.301264+00', 206, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31692, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.265846+00', 1122, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31693, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.298095+00', 1120, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31694, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.336479+00', 172, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31695, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.34757+00', 167, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31696, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.477518+00', 156, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31697, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.326387+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31698, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.420925+00', 221, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31699, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.437998+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31700, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.408611+00', 287, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31701, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.334716+00', 380, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31702, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.470879+00', 250, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31703, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:54.981609+00', 98, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31704, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.066831+00', 101, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31705, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.086236+00', 99, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31706, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.068723+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31707, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.060463+00', 176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31708, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:54.990015+00', 1037, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31709, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.016085+00', 1034, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31710, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.374545+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31711, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.315529+00', 337, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31712, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.498114+00', 183, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31713, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.398362+00', 317, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31714, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.525847+00', 192, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31715, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.506046+00', 225, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31716, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.50967+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31717, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.525997+00', 230, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31718, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.418+00', 341, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31719, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.218187+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31720, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.285189+00', 152, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31721, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.320836+00', 153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31722, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.215454+00', 279, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31723, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.231708+00', 290, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31724, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.13244+00', 1072, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31725, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.141536+00', 1098, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31726, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.136544+00', 53, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31727, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.163605+00', 52, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31728, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.167714+00', 68, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31729, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.159187+00', 105, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31730, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.168264+00', 129, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31731, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.225285+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31732, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.248566+00', 71, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31733, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.260697+00', 65, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31734, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.247873+00', 87, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31735, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.100797+00', 151, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31736, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.142776+00', 200, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31737, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.144684+00', 214, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31738, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.224785+00', 175, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31739, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.167757+00', 268, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31740, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.140028+00', 1232, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31741, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.142854+00', 1362, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31742, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.241158+00', 139, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31743, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.200753+00', 196, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31744, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.339505+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31745, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.335608+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31746, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.376245+00', 142, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31747, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.236934+00', 298, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31748, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.27578+00', 272, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31749, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.454939+00', 114, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31750, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.326887+00', 322, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31751, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.336025+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31752, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.378461+00', 134, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31753, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.378461+00', 176, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31754, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.391782+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31755, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.379771+00', 214, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31756, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.310521+00', 1285, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31757, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.432098+00', 1384, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31758, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.744978+00', 316, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(31759, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.831684+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31760, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.822192+00', 292, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31761, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.841725+00', 311, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31762, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.90615+00', 289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31763, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.902255+00', 320, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31764, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.980281+00', 318, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31765, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.980281+00', 333, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31766, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.10363+00', 372, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31767, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.018278+00', 459, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31768, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.982938+00', 523, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31769, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.845736+00', 2570, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31770, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.845736+00', 2573, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31771, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.928517+00', 2490, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31772, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.072357+00', 2558, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31773, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.73327+00', 2917, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31774, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:50.73327+00', 2917, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31775, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.426896+00', 346, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(31776, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.473335+00', 322, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31777, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.517655+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31778, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.496794+00', 359, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31779, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.517655+00', 348, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31780, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.431712+00', 532, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(31781, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.691192+00', 330, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31782, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.639924+00', 436, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31783, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.674051+00', 485, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31784, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.698474+00', 537, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(31785, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.622417+00', 679, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31786, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.611579+00', 2640, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31787, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.611579+00', 2642, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31788, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.426364+00', 3209, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31789, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.426364+00', 3216, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31790, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.692321+00', 2970, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31791, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.678483+00', 3082, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31792, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.157683+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31793, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.292642+00', 153, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31794, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.333596+00', 124, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31795, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.409597+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31796, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.388493+00', 137, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31797, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.425327+00', 116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31798, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.369797+00', 202, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31799, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.334328+00', 262, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31800, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.430059+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31801, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.176222+00', 81, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31802, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.380072+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31803, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.427848+00', 192, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31804, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.368946+00', 278, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31805, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.359461+00', 315, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31806, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.326925+00', 1106, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31807, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.363446+00', 1310, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31808, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.275467+00', 59, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31809, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.28523+00', 106, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31810, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.275707+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31811, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.275707+00', 129, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(31812, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.316512+00', 169, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31813, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.322243+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31814, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.404094+00', 99, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31815, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.661721+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31816, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.688534+00', 249, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31817, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.652894+00', 303, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31818, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.646759+00', 317, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31819, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.308558+00', 1825, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31820, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.308558+00', 1834, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(31821, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.318125+00', 1943, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31822, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.318125+00', 1948, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31823, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.60036+00', 1989, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31824, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.655072+00', 2026, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31825, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.145077+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31826, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.286916+00', 80, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31827, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.2874+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31828, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.360379+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31829, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.442723+00', 90, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31830, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.399185+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31831, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.408179+00', 136, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31832, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.428353+00', 138, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31833, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.310216+00', 260, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31834, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.192161+00', 64, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31835, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.253063+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31836, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.292597+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31837, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.286376+00', 124, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31838, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.326926+00', 102, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31839, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.21445+00', 1149, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31840, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.195904+00', 1377, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31841, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.019365+00', 301, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31842, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.149555+00', 452, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31843, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.438214+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31844, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.299216+00', 347, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31845, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.202369+00', 499, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31846, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.408771+00', 436, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31847, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.436735+00', 410, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31848, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.402271+00', 455, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31849, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.38089+00', 550, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31850, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.239614+00', 94, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31851, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.504186+00', 301, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31852, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.536908+00', 279, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31853, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.552863+00', 273, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31854, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.542643+00', 298, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31855, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.384983+00', 2586, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31856, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.498123+00', 2538, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31857, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.258121+00', 80, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31858, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.30405+00', 89, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31859, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.308325+00', 186, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31860, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.289378+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31861, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.336418+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31862, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.32992+00', 200, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31863, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.380866+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31864, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:14.10685+00', 69, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31865, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:14.161205+00', 152, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31866, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.539078+00', 37, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31867, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.751799+00', 88, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31868, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.745752+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31869, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.971511+00', 91, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31870, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.972248+00', 115, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31871, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.592397+00', 861, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31872, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.739146+00', 1053, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31873, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.286156+00', 144, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31874, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.233815+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31875, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.364088+00', 177, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31876, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.547391+00', 89, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31877, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.472578+00', 250, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31878, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.622844+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31879, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.663818+00', 182, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31880, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.732658+00', 124, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31881, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.663667+00', 276, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31882, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.184228+00', 47, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31883, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.329177+00', 40, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31884, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.285817+00', 97, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31885, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.427553+00', 47, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31886, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.426474+00', 69, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31887, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.213227+00', 701, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31888, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.251556+00', 844, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31889, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.489688+00', 317, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31890, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.647035+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31891, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.646135+00', 212, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31892, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.583654+00', 295, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31893, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.584026+00', 361, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31894, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.847248+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31895, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.89724+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31896, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.821745+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31897, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.889343+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31898, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:38.871339+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31899, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:38.980629+00', 225, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31900, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:38.922062+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31901, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:39.100804+00', 173, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31902, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:39.063285+00', 269, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31903, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:38.901536+00', 1632, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31904, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:38.980586+00', 1803, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31905, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.319612+00', 143, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31906, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.385541+00', 178, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31907, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.48263+00', 137, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31908, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.560471+00', 104, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31909, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.470714+00', 214, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31910, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.557614+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31911, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.504952+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31912, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.582633+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31913, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.630058+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31914, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.457313+00', 67, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31915, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.637258+00', 144, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31916, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.688744+00', 125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31917, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.697753+00', 124, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31918, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.657807+00', 200, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31919, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.451927+00', 1007, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31920, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.458998+00', 1265, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31921, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.479998+00', 362, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31922, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.406022+00', 459, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31923, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.502054+00', 415, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31924, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.7378+00', 184, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31925, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.483314+00', 429, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31926, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.460348+00', 472, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31927, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.472524+00', 522, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31928, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.46605+00', 529, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31929, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.800935+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31930, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.171871+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31931, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.210639+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31932, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.304551+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31933, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.319688+00', 130, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31934, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.349242+00', 109, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31935, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.173022+00', 751, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31936, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.183285+00', 862, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31937, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.33613+00', 88, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31938, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.325371+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31939, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.506882+00', 79, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31940, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.448763+00', 141, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31941, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.458719+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31942, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.424481+00', 194, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31943, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.566787+00', 81, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31944, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.548559+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31945, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.525599+00', 173, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31946, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.206918+00', 98, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31947, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.243272+00', 90, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31948, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.254723+00', 123, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31949, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.339705+00', 149, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31950, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.355706+00', 177, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31951, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.551698+00', 66, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31952, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.572394+00', 62, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31953, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.143227+00', 349, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31954, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.376729+00', 324, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(31955, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.275433+00', 541, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(31956, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.131229+00', 693, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31957, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.488605+00', 407, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31958, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.254751+00', 1716, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31959, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.187659+00', 806, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31960, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.39374+00', 601, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31961, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.754449+00', 269, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31962, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.663126+00', 477, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31963, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.485015+00', 800, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(31964, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.242603+00', 2059, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31965, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.242603+00', 2061, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(31966, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.585705+00', 835, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(31967, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.913642+00', 528, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(31968, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.85079+00', 602, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(31969, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.753963+00', 867, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31970, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.753963+00', 886, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(31971, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.752237+00', 894, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(31972, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.734318+00', 953, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31973, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.209872+00', 801, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31974, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.589031+00', 428, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31975, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.914845+00', 1118, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(31976, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.485073+00', 719, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31977, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.730819+00', 508, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31978, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.401171+00', 1109, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31979, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.70072+00', 858, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31980, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.752854+00', 850, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31981, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.626143+00', 1065, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31982, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.229336+00', 545, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31983, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.754357+00', 3053, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31984, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.139491+00', 3131, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31985, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.011822+00', 3413, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(31986, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.146664+00', 3331, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(31987, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.569279+00', 153, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(31988, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.564683+00', 347, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(31989, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.664427+00', 238, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(31990, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.772907+00', 202, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(31991, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.751824+00', 260, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(31992, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.888383+00', 174, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(31993, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.87928+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(31994, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.806927+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(31995, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.842255+00', 320, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(31996, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.402736+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(31997, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.693362+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(31998, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.680853+00', 154, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(31999, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.510189+00', 357, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32000, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.745456+00', 138, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32001, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.272258+00', 199, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32002, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.370806+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32003, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.487499+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32004, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.462119+00', 233, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32005, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.510703+00', 190, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32006, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.389391+00', 1473, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32007, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.393988+00', 1825, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32008, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.345621+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32009, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.365873+00', 358, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32010, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.550104+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32011, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.423215+00', 322, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32012, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.52443+00', 312, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32013, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.34136+00', 1506, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32014, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.526016+00', 411, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32015, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.551275+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32016, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.6609+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32017, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.48449+00', 1522, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32018, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.525595+00', 520, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32019, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.210103+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32020, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.355009+00', 106, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32021, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.294037+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32022, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.598326+00', 83, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32023, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.372004+00', 333, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32024, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.314366+00', 419, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32025, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.371411+00', 379, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32026, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.310203+00', 453, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32027, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.375769+00', 391, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32028, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.672269+00', 94, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32029, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.671155+00', 121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32030, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.711976+00', 90, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32031, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.709791+00', 124, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32032, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.739446+00', 196, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32033, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.712857+00', 1304, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32034, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.725544+00', 1526, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32035, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.898813+00', 185, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32036, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.928343+00', 241, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32037, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.944668+00', 253, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32038, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.999688+00', 302, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32039, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.945757+00', 375, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32040, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.983113+00', 337, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32041, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.978688+00', 358, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32042, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.907887+00', 436, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32043, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:20.939959+00', 426, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32044, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.601097+00', 219, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32045, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.569073+00', 272, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32046, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.56407+00', 287, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32047, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.558853+00', 312, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32048, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.643075+00', 240, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32049, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.574195+00', 1203, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32050, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.57799+00', 1393, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32051, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.282037+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32052, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.206866+00', 232, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32053, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.36482+00', 82, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32054, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.302596+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32055, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.419488+00', 64, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32056, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.378128+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32057, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.414082+00', 113, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32058, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.464099+00', 93, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32059, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.364754+00', 227, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32060, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.179242+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32061, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.139034+00', 199, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32062, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.139302+00', 245, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32063, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.284602+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32064, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.363332+00', 97, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32065, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.153478+00', 364, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32066, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.351222+00', 177, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32067, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.366148+00', 185, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32068, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.388571+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32069, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.758193+00', 102, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32070, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.790311+00', 78, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32071, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.808472+00', 155, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32072, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.763669+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32073, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.803108+00', 187, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32074, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.791032+00', 1078, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32075, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.789481+00', 1316, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32076, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.303466+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32077, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.430782+00', 603, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(32078, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.433537+00', 664, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(32079, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.541976+00', 596, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(32080, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.628699+00', 586, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(32081, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.075011+00', 687, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(32082, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.071744+00', 692, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(32083, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.939433+00', 901, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32084, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.939433+00', 907, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(32085, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.722093+00', 163, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(32086, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.503274+00', 1468, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 19, 3, NULL, 2, NULL), +(32087, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.002197+00', 1122, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(32088, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.930466+00', 212, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32089, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.9006+00', 354, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32090, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.880734+00', 544, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32091, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.572987+00', 939, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32092, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.29943+00', 2219, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32093, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.29943+00', 2220, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(32094, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.680336+00', 879, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32095, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.67097+00', 932, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32096, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.67097+00', 949, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(32097, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.948712+00', 964, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32098, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.890296+00', 1058, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32099, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.948712+00', 1015, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(32100, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.080253+00', 2008, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32101, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.080253+00', 2013, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(32102, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.48516+00', 624, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32103, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.363123+00', 801, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32104, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.208297+00', 968, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32105, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.094984+00', 1222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32106, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.342511+00', 1172, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32107, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.662629+00', 3396, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32108, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.207777+00', 2862, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32109, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.228463+00', 3859, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32110, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.415822+00', 4691, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32111, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.415822+00', 4694, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(32112, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.450618+00', 2682, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32113, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.425039+00', 2697, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32114, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.352608+00', 153, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32115, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.413811+00', 101, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32116, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.399109+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32117, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.399312+00', 277, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32118, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.594629+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32119, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.578177+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32120, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.597531+00', 312, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32121, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.76142+00', 236, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32122, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.686838+00', 322, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32123, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.432284+00', 575, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32124, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.673748+00', 367, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32125, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.658172+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32126, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.679176+00', 380, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32127, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.694801+00', 404, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32128, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.646778+00', 1137, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32129, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.59849+00', 1264, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32130, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:33.734264+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32131, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:33.735318+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32132, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:33.823971+00', 199, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32133, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.17019+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32134, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.14964+00', 79, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32135, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.153901+00', 120, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32136, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.168953+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32137, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.22217+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32138, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.200845+00', 111, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32139, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.190357+00', 66, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32140, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.18467+00', 159, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32141, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.298677+00', 64, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32142, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.249868+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32143, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.340919+00', 129, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32144, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.19849+00', 1349, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32145, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.212454+00', 1388, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32146, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.666706+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32147, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.670826+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32148, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.868497+00', 133, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32149, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.87689+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32150, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.83869+00', 200, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32151, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.846986+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32152, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.861395+00', 196, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32153, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:05.467861+00', 85, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32154, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:05.497172+00', 162, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32155, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.608004+00', 38, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32156, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.735388+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32157, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.75144+00', 55, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32158, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.82252+00', 63, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32159, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.815645+00', 79, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32160, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.606116+00', 771, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32161, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.698859+00', 810, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32162, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.364022+00', 61, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32163, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.451941+00', 73, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32164, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.54288+00', 69, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32165, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.47069+00', 176, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32166, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.639495+00', 99, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32167, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.732132+00', 75, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32168, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.732384+00', 143, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32169, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.757204+00', 144, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32170, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.739054+00', 176, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32171, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.197919+00', 193, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32172, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.105389+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32173, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.235327+00', 169, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32174, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.274685+00', 169, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32175, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.365125+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32176, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.098585+00', 1250, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32177, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.321962+00', 1176, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32178, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.637851+00', 54, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32179, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.641477+00', 89, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32180, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.636057+00', 116, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32181, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.789588+00', 122, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32182, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.744015+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32183, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.830474+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32184, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.768447+00', 187, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32185, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.800783+00', 190, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32186, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.798509+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32187, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.153365+00', 76, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32188, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.064594+00', 218, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32189, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.13597+00', 153, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32190, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.153328+00', 149, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32191, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.302185+00', 66, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32192, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.94922+00', 91, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32193, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.994888+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32194, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.898277+00', 332, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32195, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.991938+00', 269, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32196, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.118216+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32197, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.126599+00', 174, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32198, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.003377+00', 315, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32199, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.050189+00', 287, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32200, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.081027+00', 257, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32201, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.134617+00', 1221, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32202, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.120612+00', 1315, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32203, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.235238+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32204, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.270805+00', 125, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32205, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.157539+00', 247, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32206, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.284188+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32207, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.217205+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32208, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.274131+00', 223, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32209, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.344222+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32210, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.359229+00', 161, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32211, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.371444+00', 216, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32212, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.6908+00', 238, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32213, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.785888+00', 440, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32214, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.785888+00', 456, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(32215, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.88329+00', 383, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(32216, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.995075+00', 294, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32217, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.897654+00', 415, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32218, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.854147+00', 416, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(32219, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.836134+00', 485, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(32220, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.150717+00', 330, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32221, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.109284+00', 417, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32222, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.290648+00', 364, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32223, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.775977+00', 2590, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32224, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.775977+00', 2599, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(32225, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.25532+00', 2188, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32226, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.687123+00', 2792, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32227, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:11.687123+00', 2793, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(32228, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.258066+00', 2380, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32229, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.214586+00', 66, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32230, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.294696+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32231, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.366271+00', 67, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32232, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.379786+00', 68, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32233, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.389918+00', 64, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32234, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.260061+00', 783, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32235, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.452431+00', 711, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32236, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.827676+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32237, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.875186+00', 90, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32238, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.920397+00', 63, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32239, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.886912+00', 109, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32240, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.926016+00', 99, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32241, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.990155+00', 98, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32242, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.012748+00', 86, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32243, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.012748+00', 91, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32244, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.055202+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32245, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.081026+00', 40, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32246, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.100294+00', 49, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32247, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.110026+00', 59, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32248, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.208902+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32249, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.207395+00', 59, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32250, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.234706+00', 60, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32251, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.239537+00', 73, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32252, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.267237+00', 63, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32253, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.230978+00', 116, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32254, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.06841+00', 90, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32255, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:07.991476+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32256, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.073392+00', 215, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32257, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.104317+00', 202, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32258, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.204759+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32259, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:07.986757+00', 1058, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32260, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.215915+00', 918, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32261, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.002617+00', 114, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32262, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.050672+00', 147, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32263, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:32.97689+00', 270, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32264, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.101893+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32265, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.038833+00', 245, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32266, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.195567+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32267, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.204403+00', 112, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32268, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.299374+00', 84, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32269, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.327639+00', 111, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32270, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.229643+00', 51, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32271, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.216504+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32272, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.253328+00', 86, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32273, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.302127+00', 71, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32274, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.31082+00', 111, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32275, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.358023+00', 865, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32276, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.278757+00', 994, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32277, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.237062+00', 106, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32278, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.229721+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32279, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.261752+00', 97, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32280, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.264099+00', 107, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32281, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.295601+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32282, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.328209+00', 89, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32283, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.303351+00', 114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32284, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.382278+00', 78, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32285, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.359738+00', 120, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32286, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.135437+00', 37, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32287, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.2084+00', 37, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32288, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.202663+00', 49, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32289, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.318346+00', 66, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32290, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.322648+00', 84, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32291, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.375549+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32292, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.3645+00', 108, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32293, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.352627+00', 134, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32294, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.394731+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32295, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.677704+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32296, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.676074+00', 107, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32297, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.710317+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32298, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.730705+00', 120, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(32299, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.730705+00', 119, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32300, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.730696+00', 123, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32301, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.949073+00', 302, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32302, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.025044+00', 293, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32303, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.042953+00', 323, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32304, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.032568+00', 371, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32305, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.200432+00', 246, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32306, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.707213+00', 1590, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32307, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.707213+00', 1599, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(32308, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.659987+00', 1725, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32309, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.659987+00', 1731, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(32310, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.197505+00', 1731, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32311, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.200548+00', 1837, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32312, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.176435+00', 53, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32313, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.264038+00', 46, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32314, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.260839+00', 104, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32315, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.314033+00', 83, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32316, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.352135+00', 94, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32317, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.27268+00', 1152, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32318, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.212783+00', 1252, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32319, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.294569+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32320, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.354764+00', 96, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32321, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.332199+00', 178, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32322, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.468163+00', 51, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32323, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.333094+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32324, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.478121+00', 126, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32325, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.537325+00', 88, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32326, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.569754+00', 79, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32327, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.55904+00', 107, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32328, X'56ade9f256893acb505aabdef2bb80922dea53c1d80a197ce120b0be341b8d1f', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.882492+00', 41, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(32329, X'1f444b9550c0e8ff5b0ef5eb28dcbf2708c90d21fa499737628952704f7aa09b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.920212+00', 71, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(32330, X'b56736747f5b61d2c5d5d15cb6ff1ecf48a97dea528ed30a14a892b975637dde', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.882815+00', 109, 0, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32331, X'fd315791514b735b2e44488766bf705f8542f9b1391c97f5cac96012430c16da', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.914538+00', 97, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(32332, X'681020fddc8df5236eeef585b2fe42a939b6dd8e955d7b6f271939050e1c0604', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.91549+00', 165, 0, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(32333, X'd4b72a28801c96cd3a3413c64895a56894ebd50b5bbc6c78a31a47ef589d836d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.169265+00', 52, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(32334, X'e014becc29a542ab65f8a350aaaace9e1c6d6e29c086700f0ef075ff96f4a868', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.159137+00', 100, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(32335, X'27e960c47acb8912331f189d062dc9b570408472f72b0665cb20e33ebeae8435', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.184906+00', 112, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(32336, X'eed4fcb8b486b98392ef64cdeda38e33c8064f84a03de6bd50ecdf9fbdfe1628', TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.176749+00', 203, 0, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(32337, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:14.966514+00', 81, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32338, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:14.832371+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32339, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:14.930542+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32340, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:14.989986+00', 240, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32341, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:15.063218+00', 246, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32342, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:14.830831+00', 1451, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32343, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:14.985255+00', 1566, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32344, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.551743+00', 123, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32345, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.49568+00', 286, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32346, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.549009+00', 260, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32347, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.701478+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32348, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.666613+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32349, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.604762+00', 258, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32350, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.558083+00', 308, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32351, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.793088+00', 96, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32352, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.681202+00', 213, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32353, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.022734+00', 37, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32354, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.116084+00', 75, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32355, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.126055+00', 67, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32356, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.135054+00', 60, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32357, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.139556+00', 61, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32358, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.090412+00', 701, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32359, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.106935+00', 746, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32360, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.382461+00', 234, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32361, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.334467+00', 316, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32362, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.375674+00', 355, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32363, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.508772+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32364, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.434276+00', 318, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32365, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.648034+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32366, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.544933+00', 275, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32367, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.650973+00', 166, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32368, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.625772+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32369, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.458397+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32370, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.435758+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32371, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.410534+00', 211, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32372, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.471853+00', 168, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32373, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.450019+00', 219, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32374, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.382515+00', 1479, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32375, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.400259+00', 1561, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32376, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.526019+00', 293, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32377, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.511964+00', 359, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32378, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.604523+00', 276, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32379, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.577961+00', 303, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32380, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.549076+00', 386, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32381, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.445464+00', 492, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32382, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.59333+00', 349, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32383, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.743283+00', 296, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32384, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.556729+00', 484, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32385, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.87114+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32386, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.911123+00', 129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32387, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.916109+00', 183, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32388, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.945232+00', 176, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32389, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.942874+00', 248, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32390, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.942712+00', 1167, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32391, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.872949+00', 1295, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32392, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:53.393744+00', 45, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32393, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:53.40967+00', 63, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32394, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:53.478804+00', 39, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32395, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.330718+00', 57, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32396, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.334049+00', 64, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32397, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.331251+00', 98, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32398, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.346475+00', 92, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32399, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.395836+00', 59, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32400, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.423973+00', 82, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32401, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.117982+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32402, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.224665+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32403, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.225354+00', 138, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32404, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.262121+00', 135, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32405, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.27983+00', 126, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32406, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.142861+00', 919, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32407, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.177454+00', 1075, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32408, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.328601+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32409, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.307315+00', 333, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32410, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.339613+00', 313, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32411, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.380277+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32412, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.328583+00', 324, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32413, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.391609+00', 345, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32414, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.463264+00', 308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32415, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.550762+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32416, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.683277+00', 180, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32417, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.11815+00', 71, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32418, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.348125+00', 90, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32419, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.275624+00', 173, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32420, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.35651+00', 107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32421, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.360593+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32422, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.134415+00', 844, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32423, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.154637+00', 1130, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32424, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.420691+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32425, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.424982+00', 91, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32426, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.538022+00', 140, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32427, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.626643+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32428, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.481352+00', 272, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32429, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.708997+00', 133, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32430, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.780003+00', 103, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32431, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:52.022799+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32432, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:52.012801+00', 195, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32433, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.196031+00', 184, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32434, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.191582+00', 252, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32435, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.244339+00', 286, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32436, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.133922+00', 404, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32437, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.179017+00', 364, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32438, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.134243+00', 1483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32439, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.189502+00', 1461, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32440, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.560893+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32441, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.618679+00', 173, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32442, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.647254+00', 195, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32443, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.746975+00', 117, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32444, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.715487+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32445, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.560369+00', 359, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32446, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.71929+00', 248, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32447, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.687602+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32448, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.783437+00', 290, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32449, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.242584+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32450, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.222334+00', 91, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32451, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.236574+00', 104, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32452, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.208725+00', 156, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32453, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.187827+00', 187, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32454, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.245548+00', 1067, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32455, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.237563+00', 1145, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32456, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.417116+00', 173, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32457, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.448541+00', 201, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32458, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.454134+00', 324, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32459, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.645556+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32460, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.579247+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32461, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.519055+00', 275, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32462, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.671736+00', 140, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32463, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.571595+00', 257, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32464, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.606723+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32465, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.810303+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32466, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.775502+00', 234, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32467, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.829725+00', 181, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32468, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.888568+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32469, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.890044+00', 126, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32470, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.332851+00', 104, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32471, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.362838+00', 118, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32472, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.31989+00', 192, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32473, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.305079+00', 211, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32474, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.359072+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32475, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.758951+00', 240, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32476, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.848029+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32477, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.824951+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32478, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.818055+00', 273, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32479, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.770501+00', 1362, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32480, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.815294+00', 323, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32481, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.798443+00', 357, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32482, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.956674+00', 211, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32483, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.804229+00', 368, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32484, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.862163+00', 318, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32485, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.796286+00', 1419, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32486, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.515742+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32487, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.446996+00', 248, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32488, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.538076+00', 239, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32489, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.56358+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32490, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.594805+00', 322, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32491, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.600048+00', 327, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32492, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.656966+00', 279, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32493, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.724593+00', 264, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32494, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.77776+00', 235, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32495, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.400576+00', 1972, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32496, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.584812+00', 1868, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32497, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.191336+00', 113, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32498, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.307341+00', 105, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32499, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.319998+00', 122, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32500, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.254026+00', 258, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32501, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.383875+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32502, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.22614+00', 1143, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32503, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.347467+00', 1196, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32504, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.607242+00', 256, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32505, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.633991+00', 339, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32506, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.758735+00', 249, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32507, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.702837+00', 320, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32508, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.647821+00', 403, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32509, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.799652+00', 252, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32510, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.722975+00', 340, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32511, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.871549+00', 234, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32512, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.679357+00', 443, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32513, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.552568+00', 79, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32514, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.57227+00', 109, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32515, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.584695+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32516, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.64745+00', 74, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32517, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.647356+00', 87, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32518, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.561723+00', 1379, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32519, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.593476+00', 1389, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32520, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.236959+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32521, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.270873+00', 98, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32522, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.206092+00', 223, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32523, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.368433+00', 87, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32524, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.308933+00', 149, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32525, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.295745+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32526, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.2767+00', 238, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32527, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.429796+00', 97, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32528, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.401987+00', 190, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32529, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.398029+00', 261, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32530, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.34618+00', 354, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32531, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.546285+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32532, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.401663+00', 316, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32533, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.64801+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32534, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.391598+00', 480, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32535, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.761951+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32536, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.664327+00', 240, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32537, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.90667+00', 60, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32538, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.09056+00', 58, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32539, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.246246+00', 165, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32540, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.277726+00', 213, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32541, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.27793+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32542, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.210679+00', 390, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32543, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.094227+00', 1304, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32544, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.092631+00', 1594, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32545, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.368922+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32546, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.351084+00', 472, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32547, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.610283+00', 255, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32548, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.394599+00', 494, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32549, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.425612+00', 485, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32550, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.482136+00', 518, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32551, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.70397+00', 338, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32552, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.661654+00', 379, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32553, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.632344+00', 478, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32554, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.489139+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32555, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.43424+00', 211, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32556, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.556466+00', 186, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32557, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.644351+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32558, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.579287+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32559, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.548154+00', 242, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32560, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.622481+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32561, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.711048+00', 128, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32562, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.757886+00', 90, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32563, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:33.93394+00', 208, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32564, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.068505+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32565, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.090192+00', 135, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32566, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.082153+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32567, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.106317+00', 241, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32568, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:33.932587+00', 1616, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32569, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.06436+00', 1667, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32570, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.377421+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.417723+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32572, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.422543+00', 141, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32573, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.582891+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32574, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.560129+00', 199, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32575, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.401788+00', 1190, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32576, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.39251+00', 1271, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32577, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.201984+00', 162, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32578, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.262135+00', 134, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32579, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.287121+00', 139, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32580, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.355098+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32581, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.274896+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32582, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.43187+00', 182, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32583, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.45217+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32584, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.478132+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32585, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.583101+00', 196, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32586, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.813126+00', 115, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32587, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.73795+00', 267, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32588, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.809136+00', 264, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32589, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.006718+00', 88, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32590, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.855919+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32591, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.807032+00', 372, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32592, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.787225+00', 408, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32593, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.862909+00', 414, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32594, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.130214+00', 164, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32595, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:24.951981+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32596, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:24.990697+00', 114, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32597, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.050003+00', 120, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32598, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.048413+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32599, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.081961+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32600, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:24.912501+00', 923, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32601, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:24.957486+00', 925, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32602, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.710686+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32603, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.71048+00', 221, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32604, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.690002+00', 266, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32605, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.806215+00', 203, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32606, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.771536+00', 254, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32607, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.858242+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32608, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.854427+00', 190, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32609, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.93121+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32610, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.931432+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32611, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.169579+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32612, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.154202+00', 158, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32613, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.168807+00', 163, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32614, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.218872+00', 177, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32615, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.240581+00', 171, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32616, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.143259+00', 1201, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32617, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.214337+00', 1460, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32618, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.388866+00', 223, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32619, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.435072+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32620, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.467058+00', 302, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32621, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.498691+00', 288, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32622, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.630807+00', 169, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32623, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.506178+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32624, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.6184+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32625, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.465161+00', 360, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32626, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.568651+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32627, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.347577+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32628, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.270659+00', 179, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32629, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.36558+00', 108, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32630, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.129037+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32631, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.076789+00', 417, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32632, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.40077+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32633, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.374054+00', 170, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32634, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.494639+00', 82, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32635, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.319886+00', 270, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32636, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.023706+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32637, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.074393+00', 64, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32638, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.105387+00', 72, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32639, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.116068+00', 92, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32640, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.178135+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32641, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.047256+00', 1109, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32642, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.140642+00', 1098, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32643, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.404599+00', 125, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32644, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.406185+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32645, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.414538+00', 224, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32646, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.494372+00', 156, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32647, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.590005+00', 108, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32648, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.473376+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32649, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.640788+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32650, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.638262+00', 143, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32651, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.535986+00', 247, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32652, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.266161+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32653, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.348056+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32654, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.318204+00', 147, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32655, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.352176+00', 134, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32656, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.358447+00', 175, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32657, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.297421+00', 1358, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32658, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.244486+00', 1553, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32659, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.03603+00', 84, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32660, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:52.961794+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32661, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:52.990012+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32662, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:52.992621+00', 156, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32663, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.062047+00', 95, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32664, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.103635+00', 74, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32665, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.130628+00', 67, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32666, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.084113+00', 127, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32667, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.167809+00', 68, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32668, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.85305+00', 133, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(32669, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.876979+00', 166, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32670, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.836919+00', 222, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(32671, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.917667+00', 203, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32672, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.054468+00', 154, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32673, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.054468+00', 158, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(32674, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.015547+00', 269, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(32675, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.015262+00', 350, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32676, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.007623+00', 446, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32677, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.139915+00', 307, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32678, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.200057+00', 589, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32679, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.735704+00', 735, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(32680, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.82651+00', 2749, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32681, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.82651+00', 2750, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(32682, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.735542+00', 1003, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(32683, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.907652+00', 840, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(32684, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.818171+00', 970, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(32685, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.712001+00', 1186, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(32686, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.712001+00', 1156, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32687, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.88107+00', 3105, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32688, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:20.88107+00', 3122, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32689, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.063814+00', 3294, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32690, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.824255+00', 1608, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(32691, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.394379+00', 1167, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32692, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.051736+00', 3538, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32693, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.879674+00', 1766, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(32694, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.896528+00', 2050, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32695, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.896528+00', 2178, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(32696, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.756308+00', 1392, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32697, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.62065+00', 1562, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32698, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.652277+00', 1614, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32699, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.869282+00', 1735, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32700, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.716643+00', 1887, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32701, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:24.12728+00', 1536, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32702, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:24.041819+00', 1689, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32703, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.989389+00', 2839, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32704, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:22.989389+00', 2843, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(32705, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.65635+00', 520, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32706, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.751157+00', 466, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32707, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.638826+00', 584, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32708, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.659694+00', 597, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32709, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.897778+00', 567, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32710, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.022865+00', 1474, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32711, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.245262+00', 1264, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32712, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.742339+00', 812, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32713, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.382343+00', 1201, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32714, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.863792+00', 815, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32715, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.005985+00', 254, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(32716, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.052694+00', 339, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(32717, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:21.852558+00', 704, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(32718, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:21.996543+00', 660, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(32719, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:21.853252+00', 811, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(32720, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.228434+00', 449, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(32721, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.149583+00', 566, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(32722, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.084893+00', 692, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(32723, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:21.740195+00', 1078, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(32724, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:21.740195+00', 1075, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(32725, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.379199+00', 500, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(32726, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.56814+00', 348, 11, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32727, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:21.981568+00', 907, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(32728, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.294147+00', 661, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(32729, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.444186+00', 570, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(32730, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.113258+00', 1243, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 27, 3, NULL, 2, NULL), +(32731, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.103955+00', 1498, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(32732, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.191416+00', 1868, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 26, 3, NULL, 2, NULL), +(32733, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.44242+00', 1847, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(32734, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.43266+00', 65, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(32735, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.422409+00', 223, 11, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(32736, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.525067+00', 128, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(32737, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.498873+00', 226, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 3, NULL, 2, NULL), +(32738, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.399222+00', 463, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 2, NULL), +(32739, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.606309+00', 281, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 2, NULL), +(32740, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.467923+00', 456, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 29, 3, NULL, 2, NULL), +(32741, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.629089+00', 329, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(32742, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.58813+00', 376, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(32743, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.644181+00', 325, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 2, NULL), +(32744, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.396683+00', 608, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32745, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.61279+00', 406, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(32746, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.462253+00', 557, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 28, 3, NULL, 2, NULL), +(32747, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.709556+00', 357, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(32748, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.784305+00', 285, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(32749, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.687584+00', 463, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(32750, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.817928+00', 340, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(32751, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.694573+00', 710, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 26, 3, NULL, 2, NULL), +(32752, X'e27ed3a62f97780bf9f3f1bba0560451d81d76fd68600c325ca550b2b4c22f2a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:21.927466+00', 146, 2, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(32753, X'd0f0f309a897def76be0b0728dc515cafccc761d4b8969a97c86159e5c54b7e8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:21.941044+00', 251, 2, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(32754, X'7aeb02891a2fcee6d09c4080bf0d72f52ac9b1d99b9e2570d734ee11100a09d2', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.031642+00', 198, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(32755, X'722710f02f89e0e3d62bdceb4c51041e6dd635ec428546dee2b00201bac6558c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:21.923276+00', 320, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(32756, X'5a1375deddf8a339c1e63b526517ec2d14a95babaddf187fc17b861cb70c08b5', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.051552+00', 195, 1, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(32757, X'54872164ca9dc86666920f8576399c58337184603a030e68c61c1da38e3cec9d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:21.894834+00', 371, 1, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(32758, X'9207cc1a6fac570490a8d7f31487cd68c3523947fb47f0e3ffa36782bbf8ecca', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:21.834327+00', 439, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(32759, X'5051df207fdaebcc11e68eb47ae42b51e440fc5cfa75324801c4a4d1686da53a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:21.941372+00', 337, 3, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(32760, X'998d111c0c6bc66219bd17d4f6867725bff632ef627d49fb5ffc514bd54418c6', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.110889+00', 236, 2, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(32761, X'a974925e528c80f12eb609b3f4af0ffea03ce104f515f351f66400139f556d81', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.226975+00', 213, 1, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(32762, X'3adb7d8e6e35479e91e2e0999b3351a71cb80553929de40044971902b66f1fd2', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.339453+00', 251, 2, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(32763, X'df5c48f7917722dce1bfadfc566801c7374b50866548a964d77ba3a56c6c75fc', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.433779+00', 168, 3, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(32764, X'de13f10f5af9a4e5091fcfdfae8698e7c85dac200939a3fd4fe7bef82d8735b4', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.357316+00', 240, 2, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32765, X'8b4ec932edebe2f8efa8ab8273f3e33d68b0ec6bdf54bf5c39153ea2ddafd4f2', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.196615+00', 469, 1, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(32766, X'28db55636b085667e0fbeedc83c3e617ed187b18ba325f601b1449740c432636', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.339362+00', 337, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(32767, X'ccc3bfdb4b15cd356f678f270aa6abfb8cc480574b6e45f58d87c682cc50ea95', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.286499+00', 397, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(32768, X'bd8e88c8b99a94182dec1d94f119c90d708bdde72ff1618f04ae752d711249b0', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.350608+00', 344, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(32769, X'1f0e1f1997e7c81647469dfd0017704bad2487bf5f44f5b4edbe0d402afc6782', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.428109+00', 388, 2, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(32770, X'185d0d479604a8bbd32ec15439fdf3f99152b93f897386ba6441921b52304e55', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.604206+00', 83, 2, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(32771, X'78eb09521694954ed102a114c839668a61fe6feb49e665709992c8bc506ec474', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.639954+00', 95, 2, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(32772, X'cc30f5309fa43450fe766e4da60b0317319e39bfd6064c212ef82d47ef2b3605', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.512057+00', 237, 1, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(32773, X'32c8c07aa8882e2b461f054639454e5c4b5d3e045e1d4b37e2705e1400d75094', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.718497+00', 51, 3, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(32774, X'b1306c0351b2e238011a8e2906745303198ddb546ee58226896f2de0a39f07d8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.618666+00', 153, 1, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(32775, X'955be4c4ca53f449db618de70dbdb90135c4e0e005928b74b648cd3f287c3860', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.618974+00', 221, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(32776, X'b0db00ea7e7908e9f7079ca2a73a92f2ce6be2959b74a2aac26670b44ffee907', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.65364+00', 189, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(32777, X'8ae6c0638dff0cee8954ae18ae440b3685d35db50decafea75ea7c1c9b4c6b2a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.721039+00', 157, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(32778, X'b26cd065dc3d0119cc7e73831239cc796277f5280f4302a832a153f322157191', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.76413+00', 200, 2, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(32779, X'bb75eb6f79cfcc37502469f3afbfdb2a8d1bf562575adb64a354aa9aa024e1da', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.365119+00', 151, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(32780, X'7564fdff6d22de948f3821c61aa412abd94855594d78c9fd611ab170b068b927', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.423066+00', 144, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(32781, X'56678a7b0fabf391160b5c4067247b1695637e4b69ef83498f8820851f814bfa', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.473748+00', 191, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(32782, X'cd10c85fe6a65f605c060ce579ec69855cfe453f351d131e076a2835cd9dec71', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.38749+00', 275, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(32783, X'120ad432cc1f37a01cbe4dcb0c7ba46e2c10cda2140d3c6b702b560611118995', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.413252+00', 294, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(32784, X'e64e01b41a743a76d181aa36135ef8640ff15c5a1df6db466ff2b817272e2d83', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.365686+00', 359, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32785, X'394ae4c71febedbac7e22a92d2eed75f6691e76d93a1a57a3fb12fd5b09e74f3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.445734+00', 282, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(32786, X'3a03fd8917d0937ab896a57559b679798fcbd29c50949b2bd8cf4568225de465', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.446012+00', 317, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(32787, X'24738664cd08424fe57dd08446edab150d1c42814479b6651fd3ad6698f705f7', TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.459396+00', 371, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(32788, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:04.948503+00', 94, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32789, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:04.995161+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32790, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.04761+00', 98, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32791, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.017683+00', 152, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32792, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.081797+00', 114, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32793, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.052018+00', 1041, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32794, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:04.986655+00', 1180, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32795, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.372594+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32796, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.556733+00', 97, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32797, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.483531+00', 180, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32798, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.550812+00', 122, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32799, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.570782+00', 108, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32800, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.533397+00', 155, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32801, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.572792+00', 121, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32802, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.582248+00', 115, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32803, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.571094+00', 128, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32804, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.019904+00', 48, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32805, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.059378+00', 47, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32806, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.036107+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32807, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.06407+00', 71, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32808, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.133376+00', 54, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32809, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.069195+00', 723, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32810, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.029209+00', 785, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32811, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.145621+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32812, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.136274+00', 133, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32813, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.190445+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32814, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.157099+00', 147, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32815, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.234593+00', 91, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32816, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.236149+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32817, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.221077+00', 119, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32818, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.230617+00', 118, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32819, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.224355+00', 137, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32820, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.221179+00', 446, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32821, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.461418+00', 222, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32822, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.221179+00', 475, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(32823, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.447337+00', 299, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32824, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.60135+00', 175, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32825, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.440622+00', 378, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(32826, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.504518+00', 309, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(32827, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.575557+00', 346, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32828, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.694765+00', 291, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32829, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.312632+00', 689, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(32830, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.829979+00', 331, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32831, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.242193+00', 2094, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32832, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.242193+00', 2100, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(32833, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.211032+00', 493, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32834, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.160369+00', 550, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(32835, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.211032+00', 494, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(32836, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.160369+00', 547, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32837, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.19192+00', 554, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32838, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.19192+00', 561, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(32839, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.676653+00', 2161, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(32840, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.676653+00', 2161, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32841, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.397315+00', 498, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32842, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.48003+00', 2670, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32843, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.406174+00', 857, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32844, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.675983+00', 2652, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32845, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.406174+00', 914, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(32846, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.43207+00', 905, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32847, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.43207+00', 912, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 30, 3, NULL, 2, NULL), +(32848, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.475676+00', 910, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32849, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.475676+00', 915, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(32850, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.048755+00', 1328, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32851, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.048755+00', 1360, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(32852, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.323417+00', 1130, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32853, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.323417+00', 1154, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(32854, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.578079+00', 976, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32855, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.932436+00', 638, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32856, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.046426+00', 561, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32857, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.656439+00', 1005, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32858, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.830713+00', 877, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32859, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.900723+00', 911, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32860, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.007641+00', 946, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32861, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.265129+00', 1755, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32862, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.998713+00', 1348, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32863, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.449919+00', 69, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32864, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.438062+00', 84, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32865, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.39507+00', 146, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32866, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.452203+00', 94, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32867, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.432558+00', 122, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32868, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.710289+00', 108, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32869, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.638202+00', 234, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32870, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.74183+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32871, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.662697+00', 219, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32872, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.728112+00', 177, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32873, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.709201+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32874, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.79666+00', 130, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32875, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.747483+00', 192, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32876, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.800721+00', 143, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32877, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.429796+00', 869, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32878, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.3849+00', 1007, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32879, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.783431+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32880, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.783431+00', 139, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(32881, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.938428+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32882, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.808675+00', 250, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(32883, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.783515+00', 290, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(32884, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.79482+00', 286, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(32885, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.820864+00', 275, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(32886, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.957132+00', 164, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32887, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.914381+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32888, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.975926+00', 461, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32889, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.037978+00', 573, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32890, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.756262+00', 957, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(32891, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.516626+00', 578, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(32892, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.559196+00', 546, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(32893, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.512647+00', 613, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(32894, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.466043+00', 690, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(32895, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.561728+00', 644, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(32896, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.522361+00', 885, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32897, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.016974+00', 1527, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32898, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.690913+00', 877, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32899, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.782511+00', 1821, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32900, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.782511+00', 1825, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(32901, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.635801+00', 991, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32902, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.554174+00', 1095, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32903, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.724979+00', 937, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32904, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.666964+00', 987, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(32905, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.803064+00', 879, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32906, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.720644+00', 979, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32907, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.67351+00', 1064, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32908, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.67351+00', 1073, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(32909, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.673899+00', 1099, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(32910, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.734884+00', 1076, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32911, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.763052+00', 1105, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32912, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.763052+00', 1111, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(32913, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.086072+00', 825, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32914, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.998098+00', 2241, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32915, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.020628+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32916, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.090933+00', 52, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32917, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.05228+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32918, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.070276+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32919, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.168198+00', 55, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32920, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.122571+00', 107, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32921, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.167416+00', 73, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32922, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.179285+00', 63, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32923, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.187988+00', 84, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32924, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.328425+00', 95, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32925, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.35077+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32926, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.380153+00', 87, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32927, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.362088+00', 123, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32928, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.374016+00', 160, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32929, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.298515+00', 1029, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32930, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.322139+00', 1144, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32931, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:38.814374+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32932, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:38.878002+00', 276, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32933, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:38.976523+00', 202, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32934, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:38.882822+00', 329, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32935, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:38.741933+00', 476, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32936, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:38.830915+00', 390, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32937, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:38.830146+00', 415, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32938, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.226953+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32939, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.258672+00', 143, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32940, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:00.995354+00', 136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32941, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:00.955245+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32942, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.019583+00', 184, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32943, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.135578+00', 84, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32944, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.135741+00', 167, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32945, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:00.958163+00', 1136, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32946, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.095946+00', 1065, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32947, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.300497+00', 147, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32948, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.343036+00', 124, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32949, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.528704+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32950, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.386832+00', 401, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32951, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.584032+00', 208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32952, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.236924+00', 557, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32953, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.570158+00', 260, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32954, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.64834+00', 198, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32955, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.162878+00', 722, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32956, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.832079+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32957, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.831891+00', 54, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32958, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.875753+00', 54, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32959, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.886546+00', 48, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32960, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.845919+00', 95, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32961, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.866801+00', 707, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32962, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.852354+00', 766, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32963, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:37.935354+00', 57, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32964, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.020238+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32965, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.085619+00', 126, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32966, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.113583+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32967, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.038771+00', 228, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32968, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.052574+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32969, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.086295+00', 230, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32970, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.153413+00', 183, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32971, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.114271+00', 250, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32972, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.337648+00', 121, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32973, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.341551+00', 112, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32974, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.346158+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32975, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.50695+00', 83, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32976, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.374115+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32977, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.423636+00', 192, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32978, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.426859+00', 188, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32979, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.447784+00', 189, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32980, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.426313+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32981, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.451798+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(32982, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.45837+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32983, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.484376+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(32984, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.537083+00', 136, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(32985, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.568516+00', 108, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(32986, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.441818+00', 1311, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(32987, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.536617+00', 1237, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(32988, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:38.932844+00', 115, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(32989, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:38.977422+00', 167, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(32990, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.087775+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(32991, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.019014+00', 197, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(32992, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.162826+00', 77, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(32993, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:38.987377+00', 260, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(32994, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.038643+00', 225, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(32995, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.110141+00', 162, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(32996, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.165234+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(32997, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.239725+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(32998, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.246147+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(32999, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.167338+00', 324, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33000, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.185208+00', 309, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33001, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.200662+00', 323, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33002, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.214667+00', 1337, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33003, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.274295+00', 1290, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33004, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.033465+00', 101, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33005, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.110931+00', 105, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33006, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.099349+00', 130, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33007, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.107901+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33008, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.057711+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33009, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.099296+00', 160, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33010, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.068879+00', 191, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33011, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.106858+00', 171, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33012, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.112026+00', 214, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33013, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:04.426113+00', 542, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(33014, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:04.484494+00', 650, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(33015, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:04.646785+00', 757, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(33016, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:04.468824+00', 953, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(33017, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.189784+00', 269, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33018, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.148263+00', 330, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33019, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.134714+00', 449, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33020, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.137137+00', 511, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33021, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:04.523496+00', 1150, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(33022, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.034232+00', 683, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(33023, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.276689+00', 591, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(33024, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.216155+00', 804, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33025, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:04.422142+00', 1644, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33026, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:04.422142+00', 1648, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(33027, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.13737+00', 1116, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33028, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.664024+00', 952, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(33029, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.444774+00', 1503, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33030, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.495466+00', 1507, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33031, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.117089+00', 955, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33032, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.846377+00', 1236, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33033, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.668101+00', 1417, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33034, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.668101+00', 1426, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(33035, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.117089+00', 981, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(33036, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.489718+00', 1710, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33037, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.489718+00', 1753, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(33038, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.833438+00', 1478, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33039, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.978731+00', 1375, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33040, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.10273+00', 1269, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33041, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.10273+00', 1282, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(33042, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.677269+00', 1726, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33043, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.677269+00', 1765, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(33044, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.460282+00', 1016, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33045, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.450267+00', 1134, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33046, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.641476+00', 1033, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33047, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.716182+00', 3141, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33048, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.716182+00', 3146, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(33049, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.662899+00', 3430, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33050, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.662899+00', 3433, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(33051, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.998378+00', 3105, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33052, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.994211+00', 3257, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33053, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.095002+00', 78, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33054, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.096509+00', 127, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33055, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.057573+00', 262, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33056, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.144538+00', 200, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33057, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.156968+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33058, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.182328+00', 198, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33059, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.241026+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33060, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.246948+00', 231, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33061, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.248117+00', 265, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33062, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.740616+00', 68, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33063, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.782835+00', 59, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33064, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.764254+00', 86, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33065, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.76822+00', 95, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33066, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.758179+00', 110, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33067, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.767385+00', 794, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33068, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.757279+00', 839, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33069, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.063307+00', 133, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(33070, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.081262+00', 191, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(33071, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.118038+00', 174, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(33072, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.178641+00', 156, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(33073, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.180166+00', 215, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(33074, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.163197+00', 567, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33075, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.216304+00', 626, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(33076, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.162811+00', 689, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(33077, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:36:11.289129+00', 632, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(33078, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:36.997266+00', 548, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33079, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:36.997266+00', 550, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(33080, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:36.829339+00', 722, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(33081, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.373953+00', 623, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(33082, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.394178+00', 653, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33083, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.583698+00', 602, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33084, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.393995+00', 861, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33085, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.028756+00', 1403, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(33086, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.391042+00', 1216, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33087, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.013077+00', 955, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(33088, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.102183+00', 2122, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33089, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.102183+00', 2140, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(33090, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.370214+00', 1004, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33091, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.370214+00', 1016, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(33092, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.260394+00', 1192, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 19, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33093, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.260945+00', 1246, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(33094, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.260945+00', 1244, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33095, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.898655+00', 1026, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(33096, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.662282+00', 288, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33097, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.441218+00', 1608, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(33098, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.679402+00', 406, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33099, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.044991+00', 2224, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 30, 3, NULL, 2, NULL), +(33100, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.066701+00', 1298, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33101, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.958222+00', 1408, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33102, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.958222+00', 1439, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(33103, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.168699+00', 2237, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33104, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.753+00', 628, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33105, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.032148+00', 2448, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33106, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.032148+00', 2458, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(33107, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.706023+00', 845, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33108, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.841083+00', 810, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33109, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:36.878205+00', 3801, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33110, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:36.878205+00', 3817, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(33111, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.817034+00', 931, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33112, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.515973+00', 3254, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33113, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.661227+00', 1426, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33114, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.799376+00', 1339, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33115, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.337118+00', 4130, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33116, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.337118+00', 4138, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(33117, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.225564+00', 3826, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33118, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.388575+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33119, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.393443+00', 134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33120, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.459124+00', 113, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33121, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.439384+00', 142, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33122, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.477496+00', 113, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33123, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.367125+00', 396, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33124, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.334007+00', 446, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33125, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.306582+00', 514, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33126, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.492484+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33127, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.440484+00', 1450, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33128, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.445167+00', 515, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33129, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.599492+00', 392, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33130, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.529457+00', 473, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33131, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.618284+00', 391, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33132, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.753717+00', 305, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33133, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.436702+00', 1699, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33134, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.095983+00', 411, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33135, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.001802+00', 576, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(33136, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.15098+00', 423, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33137, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.197112+00', 440, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33138, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.53986+00', 115, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33139, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.092073+00', 573, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(33140, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.227692+00', 507, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(33141, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.193069+00', 544, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(33142, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.188634+00', 619, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33143, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.389365+00', 679, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(33144, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.013315+00', 1210, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33145, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.013315+00', 1231, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(33146, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.431468+00', 882, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33147, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.430477+00', 1075, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33148, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.371239+00', 1123, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33149, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.371239+00', 1133, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33150, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.420652+00', 1146, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33151, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.390726+00', 1218, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 31, 2, NULL, 2, NULL), +(33152, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.330975+00', 1486, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33153, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.330975+00', 1513, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(33154, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.345048+00', 1624, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(33155, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.440645+00', 1550, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33156, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.440645+00', 1553, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(33157, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.453776+00', 1551, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33158, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.453776+00', 1553, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(33159, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:15.813147+00', 2251, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33160, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.394378+00', 1822, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(33161, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.371186+00', 1880, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33162, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.649947+00', 1631, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33163, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.512476+00', 1807, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33164, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.649947+00', 1657, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(33165, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.509737+00', 1795, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33166, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.19419+00', 2272, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33167, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.543038+00', 1940, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33168, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.670251+00', 3281, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33169, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.36762+00', 3919, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33170, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.36762+00', 3935, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(33171, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.553264+00', 3893, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33172, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.255994+00', 135, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33173, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.316939+00', 94, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33174, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.290621+00', 116, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33175, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.347079+00', 95, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33176, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.303256+00', 152, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33177, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.342439+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33178, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.342699+00', 121, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33179, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.319292+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33180, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.339091+00', 163, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33181, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.52083+00', 96, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33182, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.552523+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33183, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.538379+00', 173, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33184, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.589865+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33185, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.589986+00', 162, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33186, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.535777+00', 1072, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33187, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.593068+00', 1170, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33188, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.199206+00', 90, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33189, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.271874+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33190, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.249409+00', 98, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33191, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.294102+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33192, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.294386+00', 75, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33193, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.308572+00', 87, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33194, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.306783+00', 94, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33195, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.326431+00', 142, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33196, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.343332+00', 139, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33197, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.442175+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33198, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.461581+00', 112, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33199, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.486849+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33200, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.486179+00', 102, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33201, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.497953+00', 99, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33202, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.435241+00', 778, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33203, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.458093+00', 794, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33204, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.232912+00', 71, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33205, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.114148+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33206, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.266668+00', 250, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33207, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.348407+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33208, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.305767+00', 251, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33209, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.343376+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33210, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.440231+00', 186, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33211, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.422874+00', 233, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33212, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.318011+00', 400, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33213, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.594866+00', 135, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33214, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.645559+00', 119, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33215, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.601737+00', 169, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33216, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.601674+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33217, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.687545+00', 103, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33218, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.577591+00', 1132, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33219, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.585527+00', 1401, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33220, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.397421+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33221, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.535567+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33222, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.519629+00', 212, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33223, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.476588+00', 268, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33224, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.552764+00', 216, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33225, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.510169+00', 313, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33226, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.514526+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33227, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.58743+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33228, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.605352+00', 288, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33229, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.992425+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33230, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.967418+00', 183, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33231, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.966959+00', 202, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33232, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.992473+00', 213, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33233, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.031041+00', 225, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33234, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.031156+00', 1153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33235, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.019533+00', 1259, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33236, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.234345+00', 112, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33237, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.305742+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33238, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.279571+00', 357, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33239, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.379097+00', 314, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33240, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.29998+00', 407, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33241, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.325854+00', 425, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33242, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.416227+00', 384, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33243, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.743951+00', 139, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33244, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.398429+00', 481, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33245, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.802234+00', 94, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33246, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.328476+00', 591, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33247, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.751716+00', 224, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33248, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.805401+00', 186, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33249, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.83335+00', 162, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33250, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.627703+00', 1198, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33251, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.755019+00', 1244, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33252, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.342115+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33253, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.211903+00', 255, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33254, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.419515+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33255, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.305588+00', 281, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33256, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.387068+00', 266, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33257, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.383286+00', 302, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33258, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.385965+00', 308, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33259, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.383904+00', 385, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33260, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.389097+00', 384, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33261, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.683014+00', 166, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33262, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.636636+00', 340, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33263, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.711217+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33264, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.72855+00', 296, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33265, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.7476+00', 289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33266, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.739749+00', 1053, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33267, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.603667+00', 1418, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33268, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.348294+00', 283, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33269, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.51026+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33270, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.493251+00', 255, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33271, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.54093+00', 264, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33272, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.665723+00', 191, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33273, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.531513+00', 338, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33274, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.519063+00', 383, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33275, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.618035+00', 318, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33276, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.496378+00', 480, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33277, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.568915+00', 426, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33278, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.802089+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33279, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.458907+00', 593, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33280, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.640809+00', 421, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33281, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.645396+00', 473, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33282, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.529069+00', 1617, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33283, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.456957+00', 1707, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33284, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.302759+00', 408, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33285, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.881467+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33286, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.066297+00', 116, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33287, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.581779+00', 658, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33288, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.80509+00', 436, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33289, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.952791+00', 466, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33290, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.748315+00', 676, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33291, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.033644+00', 380, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33292, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.156979+00', 363, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33293, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.318997+00', 199, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33294, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.906563+00', 691, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33295, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.254955+00', 404, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33296, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.157995+00', 513, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33297, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.084938+00', 600, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33298, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.884662+00', 1839, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33299, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.157467+00', 1895, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33300, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.27617+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33301, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.404864+00', 158, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33302, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.450154+00', 156, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33303, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.457587+00', 161, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33304, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.373066+00', 258, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33305, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.394505+00', 278, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33306, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.440689+00', 281, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33307, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.45336+00', 269, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33308, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.527702+00', 254, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33309, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.73559+00', 176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33310, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.813598+00', 150, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33311, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.771702+00', 214, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33312, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.787798+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33313, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.838302+00', 223, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33314, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.760336+00', 1757, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33315, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.751261+00', 1806, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33316, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.210869+00', 350, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33317, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.541268+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33318, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.542177+00', 406, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33319, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.643458+00', 311, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33320, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.524414+00', 443, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33321, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.525562+00', 468, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33322, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.639335+00', 391, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33323, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.756799+00', 307, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33324, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.022519+00', 69, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33325, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.543538+00', 575, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33326, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.011369+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33327, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.004122+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33328, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.006156+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33329, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.95691+00', 272, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33330, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.98205+00', 895, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33331, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.966336+00', 1099, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33332, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.369375+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33333, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.352346+00', 142, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33334, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.404817+00', 176, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33335, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.458499+00', 174, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33336, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.486366+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33337, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.402623+00', 296, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33338, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.371045+00', 349, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33339, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.527329+00', 217, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33340, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.525759+00', 280, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33341, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.959193+00', 111, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33342, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.041063+00', 70, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33343, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.035098+00', 157, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33344, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.075395+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33345, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.186463+00', 79, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33346, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.115593+00', 802, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33347, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.170293+00', 810, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33348, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.274947+00', 237, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33349, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.342728+00', 378, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33350, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.509959+00', 306, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33351, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.510209+00', 297, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33352, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.510702+00', 513, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33353, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.648919+00', 411, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33354, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.839969+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33355, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.920719+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33356, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.834632+00', 415, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33357, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.872434+00', 446, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33358, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.854046+00', 485, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33359, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.970555+00', 388, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33360, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.838222+00', 553, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33361, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.111438+00', 289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33362, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.970428+00', 1687, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33363, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.100998+00', 1569, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33364, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.294358+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33365, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.231288+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33366, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.377678+00', 108, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33367, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.371125+00', 149, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33368, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.298151+00', 241, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33369, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.403489+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33370, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.339944+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33371, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.378002+00', 219, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33372, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.339467+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33373, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.986414+00', 98, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33374, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.023995+00', 72, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33375, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.99843+00', 120, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33376, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.024219+00', 108, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33377, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.061169+00', 94, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33378, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.010055+00', 1111, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33379, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.067348+00', 1061, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33380, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.464225+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33381, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.50237+00', 155, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33382, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.404755+00', 264, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33383, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.500146+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33384, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.552645+00', 192, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33385, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.480274+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33386, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.405273+00', 463, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33387, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.592515+00', 514, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33388, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.755558+00', 348, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33389, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.500471+00', 631, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33390, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.790521+00', 364, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33391, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.709431+00', 445, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33392, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.841299+00', 328, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33393, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.835169+00', 345, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33394, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.783173+00', 1293, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33395, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.719246+00', 1390, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33396, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.213261+00', 90, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33397, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.231802+00', 109, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33398, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.235903+00', 106, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33399, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.307322+00', 56, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33400, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.276393+00', 119, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33401, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.326468+00', 76, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33402, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.269874+00', 140, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33403, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.374655+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33404, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.367436+00', 101, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33405, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.465527+00', 60, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33406, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.517346+00', 73, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33407, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.533899+00', 77, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33408, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.525332+00', 88, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33409, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.539711+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33410, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.484257+00', 785, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33411, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.490595+00', 821, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33412, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:16.944785+00', 262, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33413, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:16.978908+00', 285, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33414, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:16.981569+00', 284, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33415, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:16.993052+00', 336, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33416, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:16.929709+00', 441, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33417, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.159146+00', 229, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33418, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.018573+00', 407, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33419, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:16.962497+00', 503, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33420, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.3468+00', 127, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33421, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.112183+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33422, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.225769+00', 280, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33423, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.013473+00', 540, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33424, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.40453+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33425, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.023233+00', 547, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33426, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:16.932539+00', 1435, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33427, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.164813+00', 1311, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33428, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.56693+00', 174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33429, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.590539+00', 166, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33430, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.432421+00', 326, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33431, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.776382+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33432, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.789703+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33433, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.558373+00', 378, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33434, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.850981+00', 115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33435, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.790647+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33436, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.864902+00', 197, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33437, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.944615+00', 147, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33438, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.920295+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33439, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.956681+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33440, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.72791+00', 422, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33441, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.611421+00', 525, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33442, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.918158+00', 1277, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33443, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.918+00', 1314, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33444, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.227292+00', 84, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33445, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.310844+00', 101, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33446, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.29298+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33447, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.35159+00', 174, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33448, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.298295+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33449, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.295985+00', 359, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33450, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.335044+00', 367, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33451, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.526916+00', 194, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33452, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.371857+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33453, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.494122+00', 288, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33454, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.641011+00', 161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33455, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.354575+00', 450, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33456, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.637218+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33457, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.631327+00', 199, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33458, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.648698+00', 1049, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33459, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.503294+00', 1219, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33460, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.263533+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33461, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.245013+00', 123, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33462, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.293615+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33463, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.245188+00', 135, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33464, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.358849+00', 56, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33465, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.334126+00', 84, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33466, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.331456+00', 97, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33467, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.375703+00', 72, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33468, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.315118+00', 137, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33469, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:47.950425+00', 80, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33470, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:47.991563+00', 117, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33471, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.018423+00', 124, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33472, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.055385+00', 181, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33473, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.060704+00', 180, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33474, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.032483+00', 1256, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33475, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.009281+00', 1354, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33476, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.324817+00', 176, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33477, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.358149+00', 418, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33478, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.610268+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33479, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.435741+00', 437, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33480, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.570207+00', 309, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33481, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.663865+00', 255, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33482, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.883863+00', 65, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33483, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.662506+00', 304, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33484, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.665571+00', 318, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33485, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.784322+00', 230, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33486, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.662507+00', 389, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33487, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.936704+00', 174, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33488, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.853307+00', 297, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33489, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.989136+00', 199, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33490, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.94338+00', 1471, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33491, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.81142+00', 1736, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33492, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.708719+00', 68, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33493, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.758137+00', 49, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33494, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.901538+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33495, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.885134+00', 175, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33496, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.871455+00', 222, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33497, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.961968+00', 151, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33498, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.902391+00', 221, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33499, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.963599+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33500, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.049431+00', 164, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33501, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.102857+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33502, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.992194+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33503, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.973296+00', 321, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33504, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.942024+00', 354, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33505, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.080209+00', 236, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33506, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.728846+00', 952, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33507, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.758137+00', 1105, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33508, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.559562+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33509, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.52937+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33510, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.569351+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33511, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.641742+00', 133, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33512, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.648416+00', 211, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33513, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.612013+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33514, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.634409+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33515, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.58993+00', 289, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33516, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.667301+00', 213, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33517, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.477989+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33518, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.46627+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33519, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.505423+00', 174, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33520, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.4841+00', 218, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33521, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.644568+00', 92, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33522, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.517539+00', 1300, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33523, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.419081+00', 1473, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33524, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.793769+00', 69, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33525, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.872509+00', 57, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33526, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.870768+00', 85, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33527, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.8548+00', 155, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33528, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.907688+00', 120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33529, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.839377+00', 1191, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33530, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.806328+00', 1411, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33531, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.207903+00', 59, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33532, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.196477+00', 157, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33533, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.124225+00', 275, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33534, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.31428+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33535, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.222591+00', 242, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33536, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.26226+00', 255, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33537, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.304108+00', 221, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33538, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.258828+00', 263, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33539, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.302899+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33540, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.601136+00', 306, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33541, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.674515+00', 245, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33542, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.746451+00', 185, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33543, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.772154+00', 208, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33544, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.380358+00', 278, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33545, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.458201+00', 258, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33546, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.355544+00', 388, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33547, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.589978+00', 193, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33548, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.380661+00', 410, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33549, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.913861+00', 120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33550, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.141636+00', 141, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33551, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.130632+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33552, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.169143+00', 219, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33553, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.169726+00', 220, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33554, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.839127+00', 1203, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33555, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.158074+00', 1068, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33556, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.319258+00', 65, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33557, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.720096+00', 133, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33558, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.744404+00', 171, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33559, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.760466+00', 165, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33560, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.881338+00', 80, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33561, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.314998+00', 957, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33562, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.379735+00', 1014, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33563, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.824413+00', 46, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33564, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.823804+00', 129, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33565, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.762503+00', 195, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33566, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.839423+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33567, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.862292+00', 117, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33568, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.91467+00', 73, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33569, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.92366+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33570, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.94244+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33571, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.89525+00', 129, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33572, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.263684+00', 88, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33573, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.408839+00', 95, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33574, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.3035+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33575, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.23092+00', 416, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33576, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.528228+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33577, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.412634+00', 287, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33578, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.409851+00', 312, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33579, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.408117+00', 338, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33580, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.572165+00', 201, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33581, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.461212+00', 322, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33582, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.571592+00', 266, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33583, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.711587+00', 145, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33584, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.53531+00', 340, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33585, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.433567+00', 450, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33586, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.656035+00', 2056, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33587, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.669152+00', 2128, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33588, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.597103+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33589, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.616788+00', 85, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33590, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.629254+00', 75, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33591, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.667861+00', 65, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33592, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.67132+00', 65, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33593, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.633446+00', 759, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33594, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.654562+00', 792, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33595, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.728022+00', 106, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33596, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.79362+00', 85, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33597, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.863336+00', 67, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33598, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.809103+00', 123, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33599, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.838574+00', 106, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33600, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.772544+00', 174, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33601, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.807222+00', 162, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33602, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.859611+00', 135, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33603, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.888255+00', 122, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33604, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.34017+00', 47, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33605, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.389202+00', 57, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33606, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.353107+00', 101, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33607, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.335058+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33608, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.35707+00', 110, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33609, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.362071+00', 756, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33610, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.359582+00', 822, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33611, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.134203+00', 151, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33612, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.012464+00', 290, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33613, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.216962+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33614, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.241689+00', 180, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33615, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.269129+00', 165, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33616, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.153752+00', 310, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33617, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.289547+00', 181, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33618, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.177594+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33619, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.130137+00', 365, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33620, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.544308+00', 71, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33621, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.574014+00', 51, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33622, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.562972+00', 87, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33623, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.554071+00', 97, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33624, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.56738+00', 91, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33625, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.576695+00', 935, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33626, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.588032+00', 1010, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33627, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.304681+00', 309, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33628, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.401353+00', 217, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33629, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.454111+00', 214, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33630, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.478111+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33631, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.408556+00', 309, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33632, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.627433+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33633, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.401648+00', 365, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33634, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.548472+00', 220, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33635, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.548357+00', 272, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33636, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.546289+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33637, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.508146+00', 366, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33638, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.497644+00', 394, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33639, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.504113+00', 390, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33640, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.484154+00', 430, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33641, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.831017+00', 105, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33642, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.504585+00', 3030, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33643, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.523388+00', 3068, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33644, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.774422+00', 1845, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33645, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.973758+00', 1645, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33646, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.883655+00', 1779, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33647, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.788835+00', 1893, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33648, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.787449+00', 1993, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33649, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.540166+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33650, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.653399+00', 163, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33651, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.780571+00', 2058, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33652, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.082886+00', 95, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33653, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.093212+00', 96, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33654, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.079503+00', 117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33655, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.09166+00', 107, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33656, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.111239+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33657, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.047934+00', 1105, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33658, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.116626+00', 1061, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33659, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.599898+00', 166, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33660, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.711263+00', 122, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33661, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.706922+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33662, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.640445+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33663, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.758315+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33664, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.739404+00', 225, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33665, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.735888+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33666, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.67644+00', 362, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33667, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.765339+00', 315, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33668, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.469329+00', 73, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33669, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.508056+00', 145, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33670, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.52776+00', 138, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33671, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.560092+00', 134, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33672, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.649085+00', 81, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33673, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.51749+00', 182, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33674, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.56997+00', 204, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33675, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.576351+00', 1267, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33676, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.728574+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33677, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.530798+00', 353, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33678, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.524158+00', 360, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33679, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.743168+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33680, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.471026+00', 438, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33681, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.550423+00', 359, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33682, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.633204+00', 283, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33683, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.558604+00', 1380, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33684, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.566284+00', 115, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33685, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.521476+00', 186, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33686, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.53149+00', 188, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33687, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.548151+00', 244, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33688, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.687375+00', 111, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33689, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:33.940411+00', 403, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33690, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.646248+00', 1727, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33691, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.143009+00', 316, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33692, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.194074+00', 276, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33693, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.206329+00', 390, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33694, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.137816+00', 462, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33695, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.126198+00', 469, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33696, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.144251+00', 497, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33697, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.061766+00', 591, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33698, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.250318+00', 426, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33699, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.638021+00', 2178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33700, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.461727+00', 61, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33701, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.491918+00', 67, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33702, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.530402+00', 64, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33703, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.552206+00', 74, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33704, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.512888+00', 135, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33705, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.481347+00', 831, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33706, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.459504+00', 1110, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33707, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.677619+00', 132, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33708, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.716938+00', 174, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33709, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.692401+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33710, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.731234+00', 182, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33711, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.745557+00', 198, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33712, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.70108+00', 253, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33713, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.715919+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33714, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.806117+00', 189, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33715, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.736144+00', 280, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33716, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:05.618477+00', 48, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33717, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.041115+00', 141, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(33718, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.042329+00', 156, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33719, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.161543+00', 476, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33720, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.129159+00', 633, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(33721, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.166282+00', 622, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(33722, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:05.638964+00', 1318, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33723, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:05.638964+00', 1322, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(33724, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.683764+00', 368, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33725, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.808428+00', 327, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33726, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.667886+00', 475, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33727, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:05.855202+00', 2284, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33728, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:05.855202+00', 2303, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(33729, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.161956+00', 2566, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33730, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.128748+00', 2872, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33731, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.516733+00', 152, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(33732, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.350295+00', 370, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33733, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.400236+00', 357, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(33734, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.47686+00', 443, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(33735, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.524788+00', 432, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(33736, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.668055+00', 410, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(33737, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.506222+00', 574, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(33738, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.540318+00', 542, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(33739, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.761946+00', 316, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(33740, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.633249+00', 518, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33741, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.991723+00', 320, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33742, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.920729+00', 395, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33743, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.747114+00', 587, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33744, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.928031+00', 503, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33745, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.759957+00', 694, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33746, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.036871+00', 603, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33747, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.994289+00', 671, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33748, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.110733+00', 578, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33749, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.722079+00', 1122, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(33750, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.699653+00', 195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33751, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.877998+00', 505, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33752, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.760306+00', 729, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33753, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.427105+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33754, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.705234+00', 1030, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33755, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.695363+00', 1072, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33756, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.44619+00', 451, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33757, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.568787+00', 321, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33758, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.5697+00', 334, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33759, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.780359+00', 266, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33760, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.744419+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33761, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.525978+00', 583, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33762, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.821297+00', 581, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33763, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.570018+00', 839, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33764, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.768231+00', 649, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33765, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.981212+00', 453, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33766, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.815134+00', 644, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33767, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.117367+00', 388, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33768, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.076675+00', 458, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33769, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.883741+00', 435, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33770, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.082114+00', 459, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33771, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.08155+00', 541, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33772, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.090147+00', 537, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33773, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.911858+00', 736, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33774, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.246638+00', 446, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33775, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.324242+00', 463, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33776, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.415616+00', 390, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33777, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.324186+00', 548, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33778, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.939933+00', 3332, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33779, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.469383+00', 2969, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33780, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.926137+00', 3653, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33781, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.50478+00', 3271, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33782, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.595488+00', 86, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33783, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.653959+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33784, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.549921+00', 282, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33785, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.746192+00', 116, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33786, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.574065+00', 299, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33787, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.815374+00', 1666, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33788, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.74588+00', 1867, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33789, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.621806+00', 262, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33790, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.834057+00', 71, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33791, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.740046+00', 202, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33792, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.885289+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33793, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.728539+00', 255, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33794, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.652612+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33795, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.791011+00', 264, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33796, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.676835+00', 444, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33797, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.97474+00', 154, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33798, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:13.682949+00', 100, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33799, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.148183+00', 69, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33800, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.180306+00', 121, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33801, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.243745+00', 127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33802, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.343573+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33803, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.305586+00', 212, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33804, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.285045+00', 242, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33805, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:13.674113+00', 1441, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(33806, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:13.674113+00', 1440, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33807, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.608327+00', 528, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(33808, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:13.710905+00', 1533, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33809, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.596029+00', 625, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(33810, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:13.710905+00', 1549, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(33811, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.609941+00', 728, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(33812, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.070244+00', 457, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33813, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.019121+00', 751, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(33814, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.221692+00', 828, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33815, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.272476+00', 840, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33816, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.637296+00', 756, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33817, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.188764+00', 1241, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33818, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.237813+00', 1206, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33819, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.705589+00', 742, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33820, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.670991+00', 790, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(33821, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.188449+00', 1307, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33822, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.546872+00', 975, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(33823, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.76813+00', 761, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33824, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.734543+00', 923, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33825, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.650074+00', 1138, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33826, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.909484+00', 881, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33827, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.708226+00', 1109, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33828, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.708226+00', 1118, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(33829, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.71935+00', 1160, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33830, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.618879+00', 1300, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33831, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.147107+00', 2141, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33832, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.880368+00', 2459, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33833, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.688044+00', 87, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33834, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.660602+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33835, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.689574+00', 459, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33836, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.736034+00', 885, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33837, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.550741+00', 856, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(33838, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.206222+00', 1345, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33839, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.206222+00', 1354, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(33840, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.591951+00', 1990, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33841, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.50716+00', 1200, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(33842, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.45056+00', 1269, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33843, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.083361+00', 659, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33844, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.540392+00', 2269, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33845, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.382585+00', 1447, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 19, 3, NULL, 2, NULL), +(33846, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.498383+00', 467, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33847, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.483599+00', 608, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33848, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.385122+00', 823, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(33849, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.75305+00', 1607, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33850, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.75305+00', 1609, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 2, NULL), +(33851, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.397981+00', 995, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33852, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.164365+00', 1274, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33853, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.841986+00', 645, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33854, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.814897+00', 832, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33855, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.386848+00', 1276, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33856, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.386848+00', 1285, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(33857, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.506271+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33858, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.476926+00', 1389, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(33859, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.476926+00', 1388, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33860, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.631662+00', 1293, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33861, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.194833+00', 776, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33862, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.001336+00', 1052, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33863, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.196533+00', 916, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33864, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.767211+00', 1388, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33865, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.609616+00', 647, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33866, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.609616+00', 648, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(33867, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.109801+00', 1192, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33868, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.502264+00', 903, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33869, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.763742+00', 662, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33870, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.370399+00', 2054, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33871, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.427457+00', 1988, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33872, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.018718+00', 2574, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33873, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.573059+00', 392, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33874, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.614134+00', 392, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33875, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.584822+00', 578, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33876, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.551352+00', 643, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33877, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.622775+00', 621, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33878, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.648223+00', 598, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33879, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.656969+00', 606, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33880, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.936995+00', 393, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33881, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.150349+00', 202, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33882, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.980039+00', 402, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33883, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.718576+00', 673, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33884, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.715679+00', 683, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33885, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.96541+00', 435, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33886, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.058076+00', 386, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33887, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.558107+00', 1237, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33888, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.627871+00', 1437, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33889, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.743938+00', 159, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33890, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.728295+00', 228, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33891, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.658073+00', 320, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33892, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.773587+00', 287, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33893, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.659232+00', 460, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33894, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.882549+00', 308, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33895, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.878824+00', 412, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33896, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.882099+00', 527, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33897, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.916808+00', 518, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33898, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.924491+00', 531, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33899, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.927721+00', 550, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33900, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.878598+00', 605, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33901, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.072404+00', 430, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33902, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.97716+00', 562, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33903, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.520035+00', 1628, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33904, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.724038+00', 1749, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33905, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.484495+00', 185, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33906, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.655793+00', 52, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33907, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.504012+00', 255, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33908, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.500441+00', 395, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33909, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.71781+00', 182, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33910, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.504242+00', 423, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33911, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.511308+00', 386, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33912, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.739036+00', 334, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33913, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.75834+00', 407, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33914, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.98343+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33915, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.850108+00', 393, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33916, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.850105+00', 506, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33917, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.951268+00', 408, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33918, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.982633+00', 380, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33919, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.491058+00', 1602, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33920, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.500365+00', 1674, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33921, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.547485+00', 288, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33922, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.676714+00', 242, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33923, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.526519+00', 406, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33924, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.691199+00', 268, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33925, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.698995+00', 279, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33926, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.616797+00', 390, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33927, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.616099+00', 434, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33928, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.499349+00', 566, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33929, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.822217+00', 256, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33930, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.694602+00', 441, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33931, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.866168+00', 301, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33932, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.093938+00', 114, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33933, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.865173+00', 362, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33934, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.770952+00', 487, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33935, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.526673+00', 1232, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33936, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.48087+00', 1384, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33937, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.548672+00', 419, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33938, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.665747+00', 457, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33939, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.850754+00', 297, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33940, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.633806+00', 513, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33941, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.082844+00', 257, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33942, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.869181+00', 481, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33943, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.990206+00', 370, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33944, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.055401+00', 310, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33945, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.850704+00', 519, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33946, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.991131+00', 422, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33947, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.158324+00', 284, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33948, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.228794+00', 226, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33949, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.080314+00', 378, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33950, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.262267+00', 305, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33951, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.585157+00', 1465, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33952, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.679843+00', 1695, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33953, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.690275+00', 216, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33954, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.903049+00', 231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33955, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.665393+00', 536, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33956, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.779432+00', 526, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33957, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.999743+00', 291, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33958, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.800218+00', 506, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33959, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.871245+00', 420, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33960, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.691024+00', 644, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33961, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.736616+00', 616, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33962, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.949317+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33963, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.901236+00', 486, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33964, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.122048+00', 373, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33965, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.350957+00', 241, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33966, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.32613+00', 374, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33967, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.526416+00', 1755, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33968, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.820725+00', 1613, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33969, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.442825+00', 146, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33970, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.618311+00', 117, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33971, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.493319+00', 269, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33972, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.489411+00', 297, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33973, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.510393+00', 289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33974, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.532638+00', 304, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33975, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.527903+00', 301, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33976, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.66762+00', 194, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33977, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.589679+00', 280, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33978, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.754645+00', 163, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33979, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.700852+00', 222, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33980, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.702003+00', 235, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(33981, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.710408+00', 336, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33982, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.820604+00', 228, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33983, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.498926+00', 1357, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(33984, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.506892+00', 1483, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(33985, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.7426+00', 198, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(33986, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.650102+00', 359, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(33987, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.654666+00', 421, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(33988, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.65648+00', 437, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(33989, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.708174+00', 392, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(33990, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.11151+00', 158, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(33991, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.096232+00', 256, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(33992, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.148013+00', 284, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(33993, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.06303+00', 381, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(33994, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.14415+00', 323, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(33995, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.178153+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(33996, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.896858+00', 610, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(33997, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.164966+00', 348, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(33998, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.17281+00', 355, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(33999, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.694323+00', 1631, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34000, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.543208+00', 1976, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34001, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.614072+00', 437, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34002, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.704414+00', 459, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34003, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.742039+00', 445, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34004, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.879944+00', 407, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34005, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.867942+00', 557, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34006, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.96187+00', 470, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34007, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.059002+00', 402, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34008, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.877773+00', 588, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34009, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.03428+00', 499, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34010, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.094869+00', 438, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34011, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.231938+00', 370, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34012, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.224296+00', 377, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34013, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.960801+00', 675, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34014, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.170761+00', 485, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34015, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.523993+00', 2072, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34016, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:42.722197+00', 2126, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34017, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.475337+00', 174, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34018, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.489927+00', 228, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34019, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.502728+00', 305, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34020, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.508781+00', 352, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34021, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.645464+00', 251, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34022, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.50781+00', 407, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34023, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.815926+00', 96, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34024, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.681695+00', 276, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34025, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.784482+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34026, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.799319+00', 190, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34027, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.765762+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34028, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.915838+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34029, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.929625+00', 146, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34030, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.969993+00', 141, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34031, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.504423+00', 1055, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34032, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.529809+00', 1046, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34033, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.223729+00', 174, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34034, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.227471+00', 172, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34035, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.244833+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34036, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.270747+00', 201, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34037, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.255027+00', 253, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34038, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.256024+00', 261, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34039, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.261869+00', 317, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34040, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.540656+00', 83, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34041, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.506193+00', 151, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34042, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.482205+00', 279, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34043, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.517372+00', 260, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34044, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.663578+00', 249, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34045, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.570111+00', 355, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34046, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.710391+00', 227, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34047, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.784012+00', 154, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34048, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.803134+00', 146, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34049, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.754644+00', 205, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34050, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.674825+00', 294, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34051, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.773749+00', 219, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34052, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.858278+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34053, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.885974+00', 127, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34054, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.853972+00', 167, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34055, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.902141+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34056, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.580517+00', 54, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34057, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.618627+00', 234, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34058, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.79949+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34059, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.659196+00', 258, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34060, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.707284+00', 218, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34061, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.610996+00', 321, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34062, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.610986+00', 325, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34063, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.831738+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34064, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.79364+00', 208, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34065, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.621662+00', 382, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34066, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.637066+00', 389, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34067, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.850693+00', 268, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34068, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.842358+00', 293, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34069, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.936788+00', 249, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34070, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.861352+00', 342, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34071, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.928511+00', 286, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34072, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.514925+00', 230, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34073, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.567355+00', 235, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34074, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.576936+00', 229, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34075, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.579091+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34076, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.591362+00', 257, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34077, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.68431+00', 180, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34078, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.631579+00', 381, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34079, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.102402+00', 271, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34080, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.0679+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34081, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.346035+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34082, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.381185+00', 140, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34083, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.149095+00', 391, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34084, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.345731+00', 231, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34085, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.297483+00', 285, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34086, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.254657+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34087, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.343346+00', 328, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34088, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.641978+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34089, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.498766+00', 350, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34090, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.546179+00', 417, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34091, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.874482+00', 110, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34092, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.627334+00', 387, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34093, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.784002+00', 262, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34094, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.83429+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34095, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.658874+00', 434, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34096, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.924971+00', 172, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34097, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.90788+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34098, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.742607+00', 394, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34099, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.976002+00', 176, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34100, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.010219+00', 164, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34101, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.916725+00', 272, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34102, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.967844+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34103, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.628808+00', 620, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34104, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.909271+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34105, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.968843+00', 406, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34106, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.942172+00', 514, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34107, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.057597+00', 449, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34108, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.167074+00', 374, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34109, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.866472+00', 678, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34110, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.937512+00', 645, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34111, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.948167+00', 697, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34112, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.010341+00', 667, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34113, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.101272+00', 579, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34114, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.31052+00', 366, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34115, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.923804+00', 772, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34116, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.162262+00', 557, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34117, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.377333+00', 351, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34118, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:42.882914+00', 854, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34119, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.417554+00', 349, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34120, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.683123+00', 695, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34121, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.834426+00', 567, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34122, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.609563+00', 812, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34123, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.238256+00', 300, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34124, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.187492+00', 424, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34125, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.670525+00', 979, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34126, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.417341+00', 245, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34127, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.888173+00', 784, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34128, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.518095+00', 159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34129, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.862063+00', 839, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34130, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.448811+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34131, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.947606+00', 773, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34132, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:12.850303+00', 888, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34133, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.344485+00', 503, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34134, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.239967+00', 615, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34135, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.684815+00', 191, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34136, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.5585+00', 221, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34137, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.648863+00', 212, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34138, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.561665+00', 320, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34139, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.632869+00', 263, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34140, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.649041+00', 359, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34141, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.84627+00', 197, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34142, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.837247+00', 212, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34143, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.727125+00', 329, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34144, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.79033+00', 274, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34145, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.724367+00', 356, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34146, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.870758+00', 263, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34147, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.830712+00', 350, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34148, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.79814+00', 393, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34149, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.924193+00', 286, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34150, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.949702+00', 285, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34151, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.83263+00', 431, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34152, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.558746+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34153, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.511305+00', 293, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34154, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.543569+00', 264, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34155, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.684718+00', 229, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34156, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.659606+00', 298, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34157, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.568089+00', 465, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34158, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.633691+00', 435, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34159, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.697304+00', 399, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34160, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.843909+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34161, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.842258+00', 297, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34162, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.031327+00', 143, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34163, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.921652+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34164, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.98223+00', 241, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34165, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.659936+00', 582, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34166, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.938355+00', 309, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34167, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.118201+00', 221, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34168, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.648132+00', 357, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34169, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.557134+00', 473, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34170, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.549987+00', 524, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34171, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.86655+00', 258, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34172, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.865877+00', 237, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34173, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.884773+00', 391, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34174, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.980577+00', 356, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34175, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:42.738699+00', 629, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34176, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.023896+00', 358, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34177, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.086261+00', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34178, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.026629+00', 510, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34179, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.084754+00', 498, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34180, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.132871+00', 474, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34181, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.16332+00', 556, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34182, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.146233+00', 579, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34183, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.184466+00', 593, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34184, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.198707+00', 233, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34185, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.232789+00', 209, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34186, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.200289+00', 264, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34187, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.197633+00', 276, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34188, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.291093+00', 234, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34189, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.446375+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34190, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.286139+00', 264, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34191, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.414669+00', 133, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34192, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.394183+00', 160, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34193, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.352794+00', 209, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34194, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.273173+00', 315, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34195, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.453895+00', 145, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34196, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.485933+00', 120, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34197, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.408339+00', 218, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34198, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.495144+00', 128, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34199, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.486076+00', 146, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34200, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.532214+00', 105, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34201, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.660401+00', 128, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34202, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.704372+00', 165, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34203, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.579906+00', 302, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34204, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.864569+00', 163, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34205, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.727831+00', 341, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34206, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.916602+00', 220, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34207, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.771978+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34208, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.933004+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34209, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.719287+00', 431, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34210, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.01679+00', 177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34211, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.73113+00', 477, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34212, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.674244+00', 544, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34213, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.045172+00', 184, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34214, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.100629+00', 132, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34215, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.1183+00', 149, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34216, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.588511+00', 328, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34217, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.609533+00', 308, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34218, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.875637+00', 159, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34219, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.776805+00', 307, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34220, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.936146+00', 181, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34221, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.879487+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34222, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.786277+00', 379, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34223, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.812227+00', 381, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34224, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.798849+00', 437, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34225, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.821738+00', 419, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34226, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.863116+00', 376, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34227, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.947999+00', 297, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34228, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.925728+00', 332, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34229, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.971588+00', 289, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34230, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.943299+00', 336, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34231, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.03185+00', 273, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34232, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.5544+00', 350, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34233, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.897989+00', 177, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34234, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.933796+00', 200, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34235, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.981597+00', 155, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34236, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.873283+00', 274, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34237, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.974832+00', 180, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34238, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.070995+00', 128, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34239, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.014836+00', 198, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34240, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.87796+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34241, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.894339+00', 311, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34242, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.058393+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34243, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.058393+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34244, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.117744+00', 132, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34245, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.087855+00', 174, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34246, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.145374+00', 151, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34247, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.162402+00', 142, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34248, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.566498+00', 291, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34249, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.558051+00', 341, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34250, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.511114+00', 396, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34251, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.704392+00', 263, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34252, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.625212+00', 362, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34253, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.755149+00', 318, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34254, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.855957+00', 260, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34255, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.706763+00', 410, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34256, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.590454+00', 536, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34257, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.835246+00', 307, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34258, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.669542+00', 454, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34259, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.784682+00', 372, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34260, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.978299+00', 201, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34261, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.829245+00', 369, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34262, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.909652+00', 294, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34263, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.869589+00', 345, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34264, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.505039+00', 253, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34265, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.574145+00', 311, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34266, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.47615+00', 428, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34267, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.50245+00', 423, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34268, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.700733+00', 252, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34269, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.68165+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34270, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.604333+00', 435, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34271, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.788465+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34272, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.923837+00', 158, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34273, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.651654+00', 452, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34274, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.901818+00', 209, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34275, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.004585+00', 161, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34276, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.788064+00', 380, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34277, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.084955+00', 101, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34278, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.791144+00', 414, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34279, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.010996+00', 195, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34280, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.50818+00', 265, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34281, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.56709+00', 274, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34282, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.746761+00', 288, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34283, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.605598+00', 458, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34284, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.804861+00', 270, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34285, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.741772+00', 353, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34286, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.502295+00', 599, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34287, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.755569+00', 425, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34288, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.778024+00', 428, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34289, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.092357+00', 148, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34290, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.773228+00', 467, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34291, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.653119+00', 595, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34292, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.670987+00', 595, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34293, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.981171+00', 305, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34294, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.594266+00', 720, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34295, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.178663+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34296, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.532183+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34297, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.696055+00', 203, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34298, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.729572+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34299, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.729489+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34300, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.695983+00', 265, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34301, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.621214+00', 348, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34302, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.674033+00', 428, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34303, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.879162+00', 222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34304, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.754266+00', 427, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34305, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.793496+00', 407, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34306, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.856033+00', 355, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34307, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.923722+00', 297, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34308, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.836288+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34309, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.82076+00', 415, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34310, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.776509+00', 475, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34311, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.059189+00', 207, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34312, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.52518+00', 239, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34313, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.53755+00', 248, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34314, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.54291+00', 296, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34315, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.777128+00', 68, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34316, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.537519+00', 366, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34317, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.729474+00', 218, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34318, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.694544+00', 253, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34319, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.705664+00', 246, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34320, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.852037+00', 114, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34321, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.854965+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34322, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.852497+00', 145, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34323, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.893742+00', 144, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34324, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.847721+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34325, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.850046+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34326, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.915369+00', 144, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34327, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.883955+00', 191, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34328, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.174704+00', 282, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34329, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.335989+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34330, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.314939+00', 354, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34331, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.417969+00', 292, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34332, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.417705+00', 320, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34333, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.160889+00', 601, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34334, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.675071+00', 183, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34335, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.380298+00', 495, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34336, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.26363+00', 626, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34337, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.299198+00', 591, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34338, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.504795+00', 445, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34339, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.424869+00', 555, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34340, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.504794+00', 471, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34341, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.78021+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34342, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.741406+00', 283, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34343, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.82434+00', 219, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34344, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.315463+00', 630, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34345, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.318862+00', 631, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34346, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.562764+00', 420, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34347, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.242334+00', 805, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34348, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.458451+00', 648, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34349, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.37119+00', 828, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34350, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.481315+00', 763, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34351, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.650384+00', 611, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34352, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.764914+00', 526, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34353, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.805062+00', 577, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34354, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.951058+00', 432, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34355, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.94335+00', 457, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34356, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.187557+00', 229, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34357, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.968785+00', 450, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34358, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.83375+00', 585, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34359, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.848547+00', 584, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34360, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.11155+00', 288, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34361, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.168371+00', 442, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34362, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:42.993246+00', 706, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34363, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.252369+00', 532, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34364, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:42.977042+00', 845, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34365, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.111209+00', 719, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34366, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:42.980467+00', 925, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34367, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.307361+00', 600, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34368, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.70761+00', 250, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34369, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.76374+00', 195, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34370, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.31416+00', 668, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34371, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.655832+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34372, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.718568+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34373, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.686612+00', 348, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34374, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.744924+00', 296, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34375, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.703002+00', 338, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34376, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.478962+00', 328, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34377, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.417335+00', 420, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34378, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.527188+00', 333, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34379, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.417994+00', 554, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34380, X'72c60e9786e7795e02d35ab26a634f434951ce23d0045ecd0ab1acf7aaf19ac7', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.74218+00', 292, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34381, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.888632+00', 179, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34382, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.780599+00', 331, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34383, X'd16c7b0a672b3b0c4169b2effba339b1c462fe85370c0d1d9d727143735bb1f4', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.62036+00', 498, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34384, X'1319fc5d4fdcbe6a7b4e8b26344cce63b24ef6f8e60941e68ee4a0483cf1b089', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.704492+00', 416, 1, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34385, X'c737afe3efc9aff1014ef7a227dc9194afa91734a0e76b1a99d426858869a256', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.651832+00', 469, 2, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34386, X'64481875a26adf07fe123cde8e810afb0a4c8983141f979f08fa5870e333f281', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.748368+00', 407, 2, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34387, X'fddbdcfa7d9f1bd79287911b7e1fa2ee7d0d906a4e7af2a99bbddafea7eb572f', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.653186+00', 503, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34388, X'dc3bcbd4e5dd2f21ceea7f7ae5063c5a5997ae6b613fcf4e7e9cc3cc5b1eae27', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.76532+00', 404, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34389, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.560887+00', 630, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34390, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.81895+00', 391, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34391, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.888835+00', 342, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34392, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.001788+00', 57, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34393, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.161661+00', 652, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(34394, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.34518+00', 480, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(34395, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.044526+00', 982, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(34396, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.172708+00', 974, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(34397, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.404142+00', 964, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL), +(34398, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.336126+00', 1095, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(34399, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.814846+00', 738, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34400, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.978578+00', 622, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(34401, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.824676+00', 911, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(34402, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.506578+00', 1242, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(34403, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.662272+00', 1095, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(34404, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.448916+00', 1338, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34405, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.945453+00', 1069, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34406, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.135189+00', 954, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34407, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.003589+00', 1167, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(34408, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.264014+00', 978, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34409, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.078897+00', 2211, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(34410, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.078897+00', 2209, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34411, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.278721+00', 1012, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34412, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.910645+00', 1418, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34413, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.88611+00', 1483, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34414, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.037071+00', 2373, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34415, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.037071+00', 2377, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(34416, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.970164+00', 1460, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 18, 3, NULL, 2, NULL), +(34417, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.26497+00', 1267, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34418, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.448916+00', 2092, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 30, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34419, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.99779+00', 568, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34420, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.670385+00', 933, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34421, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.863954+00', 2278, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34422, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.611471+00', 1575, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34423, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.126035+00', 1100, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34424, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.530585+00', 842, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34425, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.270356+00', 2538, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34426, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.271128+00', 2690, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34427, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.394562+00', 381, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34428, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.472693+00', 344, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34429, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.663815+00', 203, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34430, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.733646+00', 165, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34431, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.642874+00', 268, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34432, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.513967+00', 449, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34433, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.800291+00', 166, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34434, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.863773+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34435, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.639118+00', 383, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34436, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.562508+00', 464, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34437, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.950144+00', 116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34438, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.589802+00', 505, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34439, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.108455+00', 104, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34440, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.142309+00', 170, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34441, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.058867+00', 1160, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34442, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.80638+00', 1503, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34443, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.539242+00', 150, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34444, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.565784+00', 322, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34445, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.564387+00', 336, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34446, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.633065+00', 339, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34447, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.633623+00', 361, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34448, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.613946+00', 459, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34449, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.71833+00', 381, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34450, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.875635+00', 297, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34451, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.715033+00', 483, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34452, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.888375+00', 322, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34453, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.931878+00', 281, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34454, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.138203+00', 246, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34455, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.926208+00', 461, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34456, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.055883+00', 415, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34457, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.645039+00', 1851, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34458, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.665659+00', 1835, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34459, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.689376+00', 41, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34460, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.722888+00', 121, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34461, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.782586+00', 94, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34462, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.804387+00', 94, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34463, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.824088+00', 89, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34464, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.76367+00', 725, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34465, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.712286+00', 805, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34466, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.938271+00', 39, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34467, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.938991+00', 80, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34468, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.9794+00', 96, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34469, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.991296+00', 91, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34470, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.9777+00', 178, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34471, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.032122+00', 121, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34472, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.966818+00', 204, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34473, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.977033+00', 202, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34474, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.927818+00', 281, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34475, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:57.874969+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34476, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:57.721496+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34477, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.027603+00', 150, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34478, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:57.9171+00', 399, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34479, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:57.955218+00', 373, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34480, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.079878+00', 316, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34481, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:57.952924+00', 468, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34482, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.086131+00', 422, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34483, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.286503+00', 299, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34484, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.160906+00', 473, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34485, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.099157+00', 552, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34486, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.183664+00', 508, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34487, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.320848+00', 406, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34488, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.486146+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34489, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:57.705947+00', 1680, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34490, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:57.872941+00', 1612, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34491, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.233945+00', 323, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34492, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.244608+00', 313, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34493, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.315983+00', 305, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34494, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.298088+00', 419, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34495, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.369913+00', 366, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34496, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.463553+00', 313, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34497, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.511773+00', 339, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34498, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.387558+00', 466, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34499, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.511469+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34500, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.523739+00', 362, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34501, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.421366+00', 470, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34502, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.591632+00', 307, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34503, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.67338+00', 230, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34504, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.730683+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34505, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.34155+00', 1313, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34506, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.206257+00', 1511, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34507, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.289355+00', 457, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34508, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.41684+00', 355, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34509, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.481701+00', 383, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34510, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.322882+00', 576, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34511, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.532627+00', 386, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34512, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.475945+00', 463, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34513, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.583541+00', 364, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34514, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.519841+00', 443, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34515, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.544408+00', 593, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34516, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.734221+00', 428, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34517, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.481746+00', 685, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34518, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.541892+00', 640, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34519, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.9376+00', 415, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34520, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.958576+00', 436, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34521, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.432382+00', 1757, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34522, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.716419+00', 1525, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34523, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.015662+00', 82, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34524, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.07802+00', 178, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34525, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.299217+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34526, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.381772+00', 369, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34527, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.433309+00', 353, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34528, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.465515+00', 388, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34529, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.464489+00', 454, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34530, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.493146+00', 436, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34531, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.442116+00', 496, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34532, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.385376+00', 549, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34533, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.587857+00', 397, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34534, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.612318+00', 394, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34535, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.383823+00', 650, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34536, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.567983+00', 482, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34537, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.035946+00', 1499, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34538, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.042909+00', 1665, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34539, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.241971+00', 268, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34540, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.316048+00', 280, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34541, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.296876+00', 329, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34542, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.387126+00', 328, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34543, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.60438+00', 177, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34544, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.619976+00', 224, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34545, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.688957+00', 238, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34546, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.499301+00', 453, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34547, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.437893+00', 568, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34548, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.573507+00', 459, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34549, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.490784+00', 545, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34550, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.695116+00', 346, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34551, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.750826+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34552, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.515387+00', 528, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34553, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.198486+00', 1317, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34554, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.270938+00', 1341, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34555, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.102785+00', 180, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34556, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.175973+00', 293, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34557, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.226214+00', 253, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34558, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.147353+00', 344, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34559, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.145233+00', 340, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34560, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.165303+00', 367, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34561, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.345165+00', 199, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34562, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.322802+00', 240, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34563, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.473694+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34564, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.453132+00', 146, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34565, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.318808+00', 289, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34566, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.422449+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34567, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.453082+00', 193, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34568, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.529661+00', 123, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34569, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.110525+00', 1184, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34570, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.11615+00', 1263, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34571, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.189541+00', 98, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34572, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.23718+00', 91, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34573, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.213045+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34574, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.226449+00', 133, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34575, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.294091+00', 103, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34576, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.304193+00', 150, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34577, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.346116+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34578, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.413021+00', 123, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34579, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.435373+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34580, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.464854+00', 110, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34581, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.512172+00', 84, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34582, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.489986+00', 111, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34583, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.489968+00', 136, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34584, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.388126+00', 247, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34585, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.182797+00', 876, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34586, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.196647+00', 898, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34587, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.28542+00', 480, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34588, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.519538+00', 321, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34589, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.382372+00', 465, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34590, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.380491+00', 566, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34591, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.373246+00', 652, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34592, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.5561+00', 645, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34593, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.926729+00', 288, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34594, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.930252+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34595, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.598623+00', 689, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34596, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.993548+00', 399, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34597, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.782228+00', 613, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34598, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.88853+00', 513, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34599, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.964606+00', 444, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34600, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.952443+00', 477, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34601, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.515774+00', 1745, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34602, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.51564+00', 1987, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34603, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.248002+00', 161, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34604, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.336949+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34605, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.246778+00', 258, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34606, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.373756+00', 140, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34607, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.295285+00', 205, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34608, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.373906+00', 150, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34609, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.458432+00', 79, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34610, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.548973+00', 100, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34611, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.533605+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34612, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.209119+00', 65, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34613, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.222321+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34614, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.205944+00', 168, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34615, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.247222+00', 156, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34616, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.295983+00', 102, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34617, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.22204+00', 916, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34618, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.18856+00', 1023, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34619, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.224107+00', 201, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34620, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.420954+00', 103, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34621, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.278483+00', 286, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34622, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.394957+00', 172, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34623, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.240295+00', 365, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34624, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.187046+00', 429, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34625, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.445284+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34626, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.373189+00', 282, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34627, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.438529+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34628, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.134021+00', 130, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34629, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.137099+00', 156, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34630, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.140074+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34631, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.161702+00', 264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34632, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.174989+00', 294, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34633, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.166056+00', 1749, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34634, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.184477+00', 1754, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34635, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.272251+00', 154, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34636, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.329452+00', 113, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34637, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.269596+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34638, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.319498+00', 133, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34639, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.351817+00', 102, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34640, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.273883+00', 193, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34641, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.350013+00', 123, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34642, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.34576+00', 145, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34643, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.367572+00', 128, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34644, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.138303+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34645, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.149544+00', 107, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34646, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.161174+00', 103, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34647, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.163681+00', 112, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34648, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.17224+00', 127, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34649, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.115479+00', 866, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34650, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.148313+00', 1026, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34651, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.328365+00', 189, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34652, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.359167+00', 175, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34653, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.458711+00', 156, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34654, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.32263+00', 360, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34655, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.465455+00', 226, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34656, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.32459+00', 376, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34657, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.46014+00', 244, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34658, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.557162+00', 187, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34659, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.392641+00', 380, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34660, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.228941+00', 139, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34661, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.329404+00', 167, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34662, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.480864+00', 92, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34663, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.266879+00', 340, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34664, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.425993+00', 256, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34665, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.193141+00', 1247, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34666, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.31016+00', 1379, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34667, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.163782+00', 80, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34668, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.240075+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34669, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.263347+00', 154, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34670, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.262825+00', 157, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34671, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.258657+00', 180, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34672, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.213153+00', 997, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34673, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.332155+00', 902, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34674, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.541949+00', 172, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34675, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.628029+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34676, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.782544+00', 63, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34677, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.652718+00', 219, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34678, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.528827+00', 347, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34679, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.629042+00', 251, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34680, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.71235+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34681, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.863279+00', 84, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34682, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.886033+00', 99, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34683, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.144764+00', 239, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34684, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.168995+00', 246, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34685, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.174099+00', 243, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34686, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.247381+00', 198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34687, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.214795+00', 267, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34688, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.136064+00', 1284, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34689, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:44.968706+00', 1731, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34690, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.37685+00', 190, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34691, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.475003+00', 121, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34692, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.494664+00', 233, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34693, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.574445+00', 169, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34694, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.570246+00', 156, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34695, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.574861+00', 193, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34696, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.483173+00', 312, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34697, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.713615+00', 118, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34698, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.547484+00', 329, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34699, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.111397+00', 154, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34700, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.13743+00', 142, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34701, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.121168+00', 167, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34702, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.117351+00', 193, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34703, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.176426+00', 137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34704, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.151468+00', 947, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34705, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.198156+00', 1192, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34706, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.35444+00', 103, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34707, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.437101+00', 71, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34708, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.470047+00', 49, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34709, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.369989+00', 161, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34710, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.378623+00', 154, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34711, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.522174+00', 42, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34712, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.471781+00', 128, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34713, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.544788+00', 60, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34714, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.55319+00', 58, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34715, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.175938+00', 104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34716, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.325114+00', 152, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34717, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.38783+00', 138, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34718, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.328068+00', 219, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34719, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.449043+00', 139, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34720, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.172301+00', 1100, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34721, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.19324+00', 1283, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34722, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.195752+00', 144, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34723, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.233296+00', 132, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34724, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.278747+00', 100, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34725, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.278208+00', 126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34726, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.204402+00', 236, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34727, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.23674+00', 211, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34728, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.37411+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34729, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.344495+00', 167, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34730, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.391829+00', 175, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34731, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.273223+00', 189, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34732, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.289819+00', 203, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34733, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.378143+00', 177, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34734, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.3772+00', 245, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34735, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.376419+00', 265, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34736, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.271053+00', 1139, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34737, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.273355+00', 1465, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34738, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.486309+00', 137, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34739, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.377284+00', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34740, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.476351+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34741, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.466281+00', 323, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34742, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.42173+00', 398, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34743, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.476359+00', 339, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34744, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.418178+00', 409, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34745, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.47635+00', 361, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34746, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.662731+00', 202, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34747, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.545965+00', 77, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34748, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.613799+00', 75, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34749, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.630687+00', 113, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34750, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.642091+00', 145, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34751, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.64574+00', 201, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34752, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.539797+00', 1079, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34753, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.557907+00', 1132, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34754, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.340206+00', 98, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34755, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.362239+00', 108, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34756, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.308939+00', 191, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34757, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.299765+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34758, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.35795+00', 175, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34759, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.386714+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34760, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.394975+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34761, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.421787+00', 177, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34762, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.45657+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34763, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.17837+00', 58, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34764, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.156558+00', 82, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34765, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.156682+00', 95, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34766, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.179255+00', 108, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34767, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.26164+00', 50, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34768, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.185506+00', 1224, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34769, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.182747+00', 1260, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34770, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.07806+00', 96, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34771, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.044098+00', 166, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34772, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.103072+00', 118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34773, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.126972+00', 168, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34774, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.129891+00', 174, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34775, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.050966+00', 1001, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34776, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.102939+00', 1116, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34777, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.28166+00', 138, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34778, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.279188+00', 144, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34779, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.445849+00', 66, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34780, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.403667+00', 116, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34781, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.463362+00', 79, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34782, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.45949+00', 92, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34783, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.419734+00', 144, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34784, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.451334+00', 116, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34785, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.458332+00', 126, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34786, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.106549+00', 72, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34787, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.044448+00', 155, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34788, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.087664+00', 108, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34789, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.086108+00', 140, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34790, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.102471+00', 131, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34791, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.055654+00', 997, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34792, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.041938+00', 1034, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34793, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.514365+00', 324, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34794, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.670855+00', 210, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34795, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.773441+00', 198, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34796, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.642207+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34797, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.667639+00', 424, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34798, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.642288+00', 462, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34799, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.827697+00', 303, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34800, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.642477+00', 484, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34801, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.854375+00', 300, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34802, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.687867+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34803, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.77204+00', 151, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34804, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.828646+00', 99, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34805, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.754299+00', 243, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34806, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.873704+00', 144, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34807, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.736173+00', 1282, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34808, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.742935+00', 1425, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34809, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.6651+00', 212, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34810, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.746098+00', 148, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34811, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.733614+00', 209, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34812, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.652129+00', 295, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34813, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.774095+00', 197, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34814, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.868041+00', 192, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34815, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.942367+00', 140, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34816, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.858235+00', 233, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34817, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.754296+00', 349, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34818, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.615574+00', 107, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34819, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.725952+00', 89, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34820, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.742744+00', 115, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34821, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.739699+00', 122, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34822, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.718785+00', 144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34823, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.687207+00', 730, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34824, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.694368+00', 747, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34825, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.743605+00', 120, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34826, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.723685+00', 187, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34827, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.774894+00', 167, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34828, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.769043+00', 180, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34829, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.720906+00', 325, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34830, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.868743+00', 184, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34831, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.786503+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34832, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.872013+00', 206, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34833, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.910862+00', 274, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34834, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.095847+00', 165, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34835, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.142087+00', 146, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34836, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.272343+00', 63, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34837, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.356049+00', 78, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34838, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.178668+00', 259, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34839, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.092849+00', 1816, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34840, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.525709+00', 566, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34841, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.544441+00', 579, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34842, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.786012+00', 379, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34843, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.782689+00', 442, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34844, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.755931+00', 515, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34845, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.835669+00', 546, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34846, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.937117+00', 451, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34847, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.198707+00', 2224, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34848, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.209564+00', 288, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34849, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.182162+00', 320, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34850, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.499361+00', 126, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34851, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.569208+00', 79, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34852, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.593969+00', 75, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34853, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.548251+00', 125, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34854, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.540302+00', 142, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34855, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.517284+00', 715, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34856, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.505115+00', 812, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34857, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.395421+00', 106, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34858, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.429277+00', 252, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34859, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.410016+00', 313, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34860, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.579111+00', 223, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34861, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.451314+00', 352, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34862, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.451223+00', 373, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34863, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.753533+00', 88, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34864, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.598112+00', 274, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34865, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.770575+00', 157, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34866, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.639392+00', 1024, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(34867, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.888859+00', 1022, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34868, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.888859+00', 1026, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(34869, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.799124+00', 1134, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34870, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.799124+00', 1138, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(34871, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.500405+00', 639, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(34872, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.71339+00', 459, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34873, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.968705+00', 1238, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34874, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.968705+00', 1260, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(34875, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.202803+00', 1223, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34876, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.118687+00', 1326, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34877, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.118687+00', 1327, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34878, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.816201+00', 1185, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(34879, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.816201+00', 1184, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34880, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.591928+00', 1871, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34881, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.601288+00', 1858, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34882, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.609015+00', 1835, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34883, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.572662+00', 1903, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34884, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.753508+00', 1726, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34885, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.707732+00', 1782, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34886, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.603645+00', 1871, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34887, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.609015+00', 1878, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(34888, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.603645+00', 1877, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(34889, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.601288+00', 1885, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(34890, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.600601+00', 1912, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34891, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.591928+00', 1941, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(34892, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.959539+00', 1628, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34893, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.71404+00', 1815, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34894, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.678796+00', 2086, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34895, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.704811+00', 2101, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34896, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.595738+00', 2214, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34897, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.600399+00', 2214, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34898, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.595738+00', 2228, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(34899, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.770507+00', 2057, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34900, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.552598+00', 2275, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34901, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:09.189465+00', 1649, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34902, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:09.189465+00', 1670, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(34903, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.850041+00', 2012, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34904, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:09.276635+00', 1587, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34905, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.552598+00', 2337, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(34906, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.811946+00', 6475, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34907, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.670814+00', 7648, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34908, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.289524+00', 7047, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34909, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.670814+00', 7669, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(34910, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.908136+00', 7677, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34911, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:07.908136+00', 7682, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(34912, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.976658+00', 193, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34913, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.92659+00', 255, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(34914, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.976658+00', 208, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(34915, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.949235+00', 421, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34916, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.972713+00', 438, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(34917, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.945035+00', 482, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34918, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.153258+00', 384, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34919, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.155593+00', 512, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34920, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.126443+00', 620, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(34921, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.938451+00', 1105, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34922, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.119211+00', 988, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34923, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.119211+00', 1042, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 2, NULL), +(34924, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.939969+00', 800, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(34925, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.994172+00', 1134, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(34926, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.928757+00', 1297, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(34927, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.548408+00', 1066, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34928, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.871037+00', 2822, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34929, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.548408+00', 1147, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(34930, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.882046+00', 2857, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34931, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.493676+00', 1261, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 19, 3, NULL, 2, NULL), +(34932, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.871037+00', 3082, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(34933, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.882046+00', 2997, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(34934, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.251114+00', 2864, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34935, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.973933+00', 3193, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34936, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.251114+00', 2928, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(34937, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:44.973933+00', 3218, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(34938, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.457615+00', 1837, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 30, 3, NULL, 2, NULL), +(34939, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.963733+00', 1482, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34940, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.945968+00', 1549, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34941, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.963733+00', 1529, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(34942, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.945968+00', 1554, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(34943, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.947889+00', 1576, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34944, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.58214+00', 1954, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(34945, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.947889+00', 1614, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(34946, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.589502+00', 1028, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34947, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.589502+00', 1036, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(34948, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.254078+00', 398, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(34949, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.523914+00', 2124, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34950, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.186432+00', 1472, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34951, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.523914+00', 2146, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(34952, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.186432+00', 1544, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(34953, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.254078+00', 486, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34954, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.32055+00', 790, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(34955, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.526784+00', 1614, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(34956, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.944742+00', 2223, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34957, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.944742+00', 2241, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(34958, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.076915+00', 2155, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34959, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.076915+00', 2159, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(34960, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.206493+00', 341, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(34961, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.098031+00', 456, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(34962, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.213811+00', 381, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(34963, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.254675+00', 440, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34964, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.190602+00', 853, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(34965, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.188585+00', 1241, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(34966, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.188585+00', 1251, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(34967, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:04.961396+00', 1828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(34968, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:04.961396+00', 1817, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34969, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.52219+00', 1548, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(34970, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.506131+00', 1899, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(34971, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.67314+00', 1888, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(34972, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:06.512857+00', 1134, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34973, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:06.512857+00', 1192, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(34974, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.538289+00', 2158, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(34975, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:06.923303+00', 1086, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34976, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.415539+00', 613, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(34977, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:06.923303+00', 1153, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(34978, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.357075+00', 823, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(34979, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.292173+00', 889, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(34980, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.384806+00', 809, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(34981, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.54111+00', 668, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(34982, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.259986+00', 3081, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34983, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.259986+00', 3098, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(34984, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.535855+00', 896, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34985, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.807187+00', 801, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 28, 3, NULL, 2, NULL), +(34986, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.642593+00', 1159, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(34987, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.427399+00', 1372, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(34988, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.440893+00', 3349, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(34989, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.697997+00', 1116, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(34990, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.4219+00', 1412, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(34991, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.87925+00', 1079, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(34992, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.696674+00', 1274, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34993, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.858177+00', 1297, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(34994, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.741777+00', 1422, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(34995, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.858177+00', 1312, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(34996, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.260643+00', 2036, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(34997, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.260643+00', 2042, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(34998, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.430702+00', 3894, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(34999, X'f82ce782ee04e6e5ba7c7b2e8ffb4dba39061ae1b79aef45040a2784b86fe218', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.294088+00', 578, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(35000, X'c7207eb8d1e522031aa9ea259a1adb0352f99db00254179f508b977fadef9b40', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.371859+00', 685, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(35001, X'e9a56657033991fe2ffee2905a8c596de3dab3c745f4bcfa9a260ac4be12336a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.281542+00', 910, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(35002, X'32716e14b7b7611f0c49729a3bdbbbcf3c2d0b115ff15467c12c3916da6d2f00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.530902+00', 799, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(35003, X'29be2f00c12df4687e8124e61475f893b10a07cd0fa52bc08b12929b04fb6935', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.415059+00', 929, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(35004, X'2efcb15b65a8465d70bc06c0b9a7e1482d9340e29d8bf69e923b5a25a750806f', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.551237+00', 810, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(35005, X'32716e14b7b7611f0c49729a3bdbbbcf3c2d0b115ff15467c12c3916da6d2f00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.911468+00', 634, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35006, X'f82ce782ee04e6e5ba7c7b2e8ffb4dba39061ae1b79aef45040a2784b86fe218', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.033582+00', 524, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35007, X'efb27e4aaa9e8843464b8057b02ae65f467accb6734c4bfcfd08a2ba6485acc1', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.597669+00', 1075, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35008, X'efb27e4aaa9e8843464b8057b02ae65f467accb6734c4bfcfd08a2ba6485acc1', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.597669+00', 1083, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(35009, X'2efcb15b65a8465d70bc06c0b9a7e1482d9340e29d8bf69e923b5a25a750806f', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.219217+00', 629, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35010, X'e9a56657033991fe2ffee2905a8c596de3dab3c745f4bcfa9a260ac4be12336a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.183554+00', 737, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35011, X'c7207eb8d1e522031aa9ea259a1adb0352f99db00254179f508b977fadef9b40', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.211169+00', 715, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35012, X'13c84007abc41f59affd9471936999211a734d4c5578039073de16a5498c9972', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.8469+00', 1108, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(35013, X'9708c8e831ed1752807e4c802dd8c308f9590070b9efe6ecb84ae7fcf881df99', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.906575+00', 1147, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(35014, X'29be2f00c12df4687e8124e61475f893b10a07cd0fa52bc08b12929b04fb6935', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:26.906656+00', 1150, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35015, X'efb27e4aaa9e8843464b8057b02ae65f467accb6734c4bfcfd08a2ba6485acc1', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.17711+00', 949, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35016, X'13c84007abc41f59affd9471936999211a734d4c5578039073de16a5498c9972', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.211149+00', 917, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35017, X'9708c8e831ed1752807e4c802dd8c308f9590070b9efe6ecb84ae7fcf881df99', TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.178625+00', 1122, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35018, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.080423+00', 107, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35019, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.128865+00', 112, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35020, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.270018+00', 186, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35021, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.271605+00', 234, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35022, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.22486+00', 329, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35023, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.282899+00', 327, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35024, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.262693+00', 364, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35025, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.262693+00', 370, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35026, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.284028+00', 351, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35027, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.353438+00', 297, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35028, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.510985+00', 176, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35029, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.157288+00', 1230, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35030, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.157288+00', 1237, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35031, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.302628+00', 1545, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35032, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.12085+00', 1753, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35033, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.303802+00', 1620, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35034, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.303802+00', 1640, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35035, X'2efcb15b65a8465d70bc06c0b9a7e1482d9340e29d8bf69e923b5a25a750806f', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.705631+00', 402, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35036, X'c7207eb8d1e522031aa9ea259a1adb0352f99db00254179f508b977fadef9b40', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.919064+00', 263, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(35037, X'e9a56657033991fe2ffee2905a8c596de3dab3c745f4bcfa9a260ac4be12336a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.790033+00', 428, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 2, NULL), +(35038, X'32716e14b7b7611f0c49729a3bdbbbcf3c2d0b115ff15467c12c3916da6d2f00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.024587+00', 372, 3, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35039, X'2efcb15b65a8465d70bc06c0b9a7e1482d9340e29d8bf69e923b5a25a750806f', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.085794+00', 320, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 2, NULL), +(35040, X'e9a56657033991fe2ffee2905a8c596de3dab3c745f4bcfa9a260ac4be12336a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.73115+00', 669, 3, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35041, X'f82ce782ee04e6e5ba7c7b2e8ffb4dba39061ae1b79aef45040a2784b86fe218', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.032823+00', 406, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 2, NULL), +(35042, X'29be2f00c12df4687e8124e61475f893b10a07cd0fa52bc08b12929b04fb6935', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.917083+00', 731, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 2, NULL), +(35043, X'efb27e4aaa9e8843464b8057b02ae65f467accb6734c4bfcfd08a2ba6485acc1', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.235778+00', 578, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35044, X'efb27e4aaa9e8843464b8057b02ae65f467accb6734c4bfcfd08a2ba6485acc1', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.235778+00', 579, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(35045, X'13c84007abc41f59affd9471936999211a734d4c5578039073de16a5498c9972', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.701306+00', 1160, 4, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35046, X'29be2f00c12df4687e8124e61475f893b10a07cd0fa52bc08b12929b04fb6935', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.212018+00', 652, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35047, X'c7207eb8d1e522031aa9ea259a1adb0352f99db00254179f508b977fadef9b40', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.246476+00', 634, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35048, X'13c84007abc41f59affd9471936999211a734d4c5578039073de16a5498c9972', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.994319+00', 935, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35049, X'32716e14b7b7611f0c49729a3bdbbbcf3c2d0b115ff15467c12c3916da6d2f00', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.427774+00', 642, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 2, NULL), +(35050, X'efb27e4aaa9e8843464b8057b02ae65f467accb6734c4bfcfd08a2ba6485acc1', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.987599+00', 1105, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35051, X'9708c8e831ed1752807e4c802dd8c308f9590070b9efe6ecb84ae7fcf881df99', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.344333+00', 797, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35052, X'9708c8e831ed1752807e4c802dd8c308f9590070b9efe6ecb84ae7fcf881df99', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.113611+00', 1078, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35053, X'9708c8e831ed1752807e4c802dd8c308f9590070b9efe6ecb84ae7fcf881df99', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.113611+00', 1140, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(35054, X'f82ce782ee04e6e5ba7c7b2e8ffb4dba39061ae1b79aef45040a2784b86fe218', TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.468023+00', 810, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35055, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.296336+00', 236, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35056, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.350814+00', 241, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35057, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.669078+00', 535, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35058, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.470052+00', 924, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35059, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.527633+00', 950, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35060, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.33377+00', 1721, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35061, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.264067+00', 1834, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35062, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.343682+00', 1306, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35063, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.372258+00', 1288, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35064, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.424472+00', 1687, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35065, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.264067+00', 1849, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35066, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.33377+00', 1778, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35067, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.664929+00', 1761, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35068, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.408927+00', 1022, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 2, NULL), +(35069, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.314761+00', 1143, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35070, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.314761+00', 1149, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 2, NULL), +(35071, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.066465+00', 521, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 2, NULL), +(35072, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.361756+00', 1252, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35073, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.487453+00', 495, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35074, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.301386+00', 1878, 4, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35075, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.339077+00', 2887, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35076, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.339077+00', 2889, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35077, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.577487+00', 767, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35078, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.577487+00', 777, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(35079, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.492477+00', 892, 2, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35080, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.155287+00', 1252, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35081, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.433882+00', 975, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(35082, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.155287+00', 1293, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35083, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.404272+00', 1198, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35084, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.888421+00', 761, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 18, 3, NULL, 2, NULL), +(35085, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.989138+00', 1745, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL), +(35086, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.994344+00', 1748, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35087, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.717902+00', 3122, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35088, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.994344+00', 1852, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(35089, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.991348+00', 1928, 5, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35090, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.990337+00', 1958, 4, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35091, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.841984+00', 1113, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35092, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.552921+00', 1418, 11, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35093, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:36.669546+00', 3605, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35094, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.778127+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35095, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.681929+00', 245, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35096, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.687409+00', 266, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35097, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.766345+00', 191, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35098, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.871292+00', 112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35099, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.773604+00', 214, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35100, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.762019+00', 936, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35101, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.762019+00', 949, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 2, NULL), +(35102, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.77361+00', 941, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35103, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.798508+00', 926, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35104, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.872986+00', 1262, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35105, X'4682ccaaf25041e735dcb93b5f974ba90223ea649fbcd4abfe7f4bfe4906e404', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.33087+00', 831, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35106, X'4682ccaaf25041e735dcb93b5f974ba90223ea649fbcd4abfe7f4bfe4906e404', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.33087+00', 832, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(35107, X'c12b84a038237919ee09c864bdfe81866e807add628d1877783b183e79ade4c2', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.581763+00', 631, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35108, X'977b0bc2ee38dff074f7b448efefe6be1ee164713befd0e019f63d8e68d94c1c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.485389+00', 796, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35109, X'c12b84a038237919ee09c864bdfe81866e807add628d1877783b183e79ade4c2', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.808551+00', 706, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35110, X'c12b84a038237919ee09c864bdfe81866e807add628d1877783b183e79ade4c2', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.808551+00', 721, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35111, X'f9d873f49ac2b96281cb49c187cf12998dd5e6f507656d8c58c9ac527d77e4e5', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.808394+00', 732, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35112, X'f9d873f49ac2b96281cb49c187cf12998dd5e6f507656d8c58c9ac527d77e4e5', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.808394+00', 740, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35113, X'219ab60390e98446b75d82b130526c2b71e2189de0df4e7845f2bba7865211b8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.202964+00', 1381, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35114, X'219ab60390e98446b75d82b130526c2b71e2189de0df4e7845f2bba7865211b8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.202964+00', 1532, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35115, X'977b0bc2ee38dff074f7b448efefe6be1ee164713befd0e019f63d8e68d94c1c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.460361+00', 435, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35116, X'977b0bc2ee38dff074f7b448efefe6be1ee164713befd0e019f63d8e68d94c1c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.460361+00', 440, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(35117, X'1e2d144f3eab8757466962c88c8dbf0cbe2043aed52c0122db867d41ce949c92', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.611391+00', 1385, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35118, X'4b918ed83f668aa9aae308c141766e3443a4cca949b8416abe056d561393d361', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.237369+00', 797, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35119, X'19778a635d98c1fc26d426656b27307ce463c0e304507c32aadd0f1063e0b593', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.446548+00', 1592, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35120, X'19778a635d98c1fc26d426656b27307ce463c0e304507c32aadd0f1063e0b593', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.446548+00', 1598, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(35121, X'3ec47d74bb3c8650989753f99419ccbec6aec2ab1f8f069980257b0b43a8dd97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.147887+00', 913, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35122, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.555737+00', 2546, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35123, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.555737+00', 2555, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35124, X'219ab60390e98446b75d82b130526c2b71e2189de0df4e7845f2bba7865211b8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.198367+00', 952, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35125, X'f9d873f49ac2b96281cb49c187cf12998dd5e6f507656d8c58c9ac527d77e4e5', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.302564+00', 879, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35126, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.708918+00', 2477, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35127, X'19778a635d98c1fc26d426656b27307ce463c0e304507c32aadd0f1063e0b593', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.176001+00', 1020, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35128, X'4b918ed83f668aa9aae308c141766e3443a4cca949b8416abe056d561393d361', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.414395+00', 787, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35129, X'4b918ed83f668aa9aae308c141766e3443a4cca949b8416abe056d561393d361', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.414395+00', 792, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(35130, X'3ec47d74bb3c8650989753f99419ccbec6aec2ab1f8f069980257b0b43a8dd97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.281547+00', 957, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35131, X'3ec47d74bb3c8650989753f99419ccbec6aec2ab1f8f069980257b0b43a8dd97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.281547+00', 961, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(35132, X'4682ccaaf25041e735dcb93b5f974ba90223ea649fbcd4abfe7f4bfe4906e404', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.370051+00', 892, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35133, X'1e2d144f3eab8757466962c88c8dbf0cbe2043aed52c0122db867d41ce949c92', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.078259+00', 370, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35134, X'1e2d144f3eab8757466962c88c8dbf0cbe2043aed52c0122db867d41ce949c92', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.078259+00', 372, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(35135, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.572429+00', 2986, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35136, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.572429+00', 2981, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35137, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.766212+00', 2900, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35138, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.948734+00', 153, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35139, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.689334+00', 520, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35140, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.689334+00', 539, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35141, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.938117+00', 393, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35142, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.966643+00', 370, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35143, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.974568+00', 412, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35144, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.910139+00', 542, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35145, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.976513+00', 1009, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35146, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.100179+00', 1121, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35147, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.100179+00', 1166, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(35148, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.029484+00', 1365, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35149, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.038599+00', 1413, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35150, X'c12b84a038237919ee09c864bdfe81866e807add628d1877783b183e79ade4c2', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.840388+00', 891, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35151, X'c12b84a038237919ee09c864bdfe81866e807add628d1877783b183e79ade4c2', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.840388+00', 934, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35152, X'4682ccaaf25041e735dcb93b5f974ba90223ea649fbcd4abfe7f4bfe4906e404', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.087137+00', 1334, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35153, X'4682ccaaf25041e735dcb93b5f974ba90223ea649fbcd4abfe7f4bfe4906e404', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.087137+00', 1339, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(35154, X'1e2d144f3eab8757466962c88c8dbf0cbe2043aed52c0122db867d41ce949c92', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.513219+00', 956, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35155, X'f9d873f49ac2b96281cb49c187cf12998dd5e6f507656d8c58c9ac527d77e4e5', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.071593+00', 559, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35156, X'977b0bc2ee38dff074f7b448efefe6be1ee164713befd0e019f63d8e68d94c1c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.886261+00', 788, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35157, X'219ab60390e98446b75d82b130526c2b71e2189de0df4e7845f2bba7865211b8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.312291+00', 1371, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35158, X'977b0bc2ee38dff074f7b448efefe6be1ee164713befd0e019f63d8e68d94c1c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.886261+00', 808, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(35159, X'f9d873f49ac2b96281cb49c187cf12998dd5e6f507656d8c58c9ac527d77e4e5', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.964981+00', 796, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35160, X'f9d873f49ac2b96281cb49c187cf12998dd5e6f507656d8c58c9ac527d77e4e5', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.964981+00', 810, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35161, X'19778a635d98c1fc26d426656b27307ce463c0e304507c32aadd0f1063e0b593', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.633345+00', 1153, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35162, X'19778a635d98c1fc26d426656b27307ce463c0e304507c32aadd0f1063e0b593', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.633345+00', 1182, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 27, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35163, X'4b918ed83f668aa9aae308c141766e3443a4cca949b8416abe056d561393d361', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.926653+00', 900, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35164, X'977b0bc2ee38dff074f7b448efefe6be1ee164713befd0e019f63d8e68d94c1c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.177861+00', 741, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35165, X'219ab60390e98446b75d82b130526c2b71e2189de0df4e7845f2bba7865211b8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.118182+00', 1813, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35166, X'219ab60390e98446b75d82b130526c2b71e2189de0df4e7845f2bba7865211b8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.118182+00', 1815, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35167, X'c12b84a038237919ee09c864bdfe81866e807add628d1877783b183e79ade4c2', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.440574+00', 1466, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35168, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.046221+00', 3022, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35169, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.046221+00', 3026, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35170, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.958101+00', 3318, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35171, X'19778a635d98c1fc26d426656b27307ce463c0e304507c32aadd0f1063e0b593', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.858302+00', 1429, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35172, X'4b918ed83f668aa9aae308c141766e3443a4cca949b8416abe056d561393d361', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.913191+00', 1459, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35173, X'4b918ed83f668aa9aae308c141766e3443a4cca949b8416abe056d561393d361', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.913191+00', 1474, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(35174, X'1e2d144f3eab8757466962c88c8dbf0cbe2043aed52c0122db867d41ce949c92', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.555853+00', 1838, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35175, X'1e2d144f3eab8757466962c88c8dbf0cbe2043aed52c0122db867d41ce949c92', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.555853+00', 1854, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(35176, X'3ec47d74bb3c8650989753f99419ccbec6aec2ab1f8f069980257b0b43a8dd97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.604405+00', 1832, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35177, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.962744+00', 3469, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35178, X'3ec47d74bb3c8650989753f99419ccbec6aec2ab1f8f069980257b0b43a8dd97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.604405+00', 1861, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(35179, X'3ec47d74bb3c8650989753f99419ccbec6aec2ab1f8f069980257b0b43a8dd97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.079667+00', 1481, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35180, X'4682ccaaf25041e735dcb93b5f974ba90223ea649fbcd4abfe7f4bfe4906e404', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.051565+00', 1556, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35181, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.967802+00', 3872, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35182, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:07.967802+00', 3898, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35183, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.100615+00', 396, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35184, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.08162+00', 451, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35185, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.100615+00', 409, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(35186, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.08162+00', 457, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35187, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.552382+00', 531, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35188, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.552382+00', 535, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35189, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.338738+00', 888, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 2, NULL), +(35190, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.338738+00', 886, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35191, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.122069+00', 148, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35192, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.759957+00', 741, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35193, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.994455+00', 769, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35194, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.793267+00', 967, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35195, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.976601+00', 796, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35196, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.971186+00', 797, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35197, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.965238+00', 814, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35198, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.97604+00', 814, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35199, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.965238+00', 827, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(35200, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.965902+00', 834, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35201, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.030971+00', 776, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35202, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.970628+00', 847, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35203, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.970628+00', 854, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(35204, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.760269+00', 1070, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35205, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.129565+00', 703, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35206, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.129565+00', 709, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35207, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.593786+00', 249, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35208, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.960602+00', 906, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35209, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.960602+00', 924, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 27, 3, NULL, 2, NULL), +(35210, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.9665+00', 934, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35211, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.159983+00', 802, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35212, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.168749+00', 802, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35213, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.97567+00', 1003, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35214, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.159983+00', 830, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35215, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.387791+00', 704, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35216, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.38444+00', 976, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35217, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.011093+00', 1571, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35218, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.383737+00', 1219, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35219, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.702421+00', 2157, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35220, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.966533+00', 2513, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35221, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.966533+00', 2524, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35222, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.969217+00', 2763, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35223, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.969217+00', 2770, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35224, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.97001+00', 3403, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35225, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.439312+00', 3009, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35226, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.304951+00', 464, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35227, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.304951+00', 462, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35228, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.4176+00', 393, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35229, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.320742+00', 506, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35230, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.418656+00', 426, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35231, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.58554+00', 336, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35232, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.555465+00', 418, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35233, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.485698+00', 595, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35234, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.56918+00', 511, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35235, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.906506+00', 503, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35236, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.796828+00', 1163, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35237, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.653392+00', 640, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35238, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.653392+00', 656, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35239, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.699603+00', 725, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35240, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.619097+00', 811, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(35241, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.619097+00', 808, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35242, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.699603+00', 738, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(35243, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.172115+00', 2397, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35244, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.172115+00', 2403, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35245, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.702463+00', 924, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35246, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.665601+00', 1100, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35247, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.665601+00', 1117, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35248, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.703352+00', 1193, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35249, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.703352+00', 1207, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(35250, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.09815+00', 887, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35251, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.09815+00', 909, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(35252, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.278216+00', 762, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35253, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.171443+00', 890, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35254, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.099314+00', 979, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35255, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.171443+00', 911, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(35256, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.099314+00', 999, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(35257, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.454291+00', 802, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35258, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.77021+00', 528, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35259, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.653645+00', 687, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35260, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.196345+00', 3288, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35261, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.196345+00', 3288, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35262, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.306811+00', 1206, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35263, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.252761+00', 1259, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 2, NULL), +(35264, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.539031+00', 2996, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35265, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.375665+00', 3242, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35266, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.882563+00', 672, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35267, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.558219+00', 1201, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35268, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.526943+00', 1422, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35269, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.393218+00', 321, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35270, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.393218+00', 322, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(35271, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.401671+00', 354, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35272, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.401671+00', 356, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 2, NULL), +(35273, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.579486+00', 397, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35274, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.579486+00', 400, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 30, 3, NULL, 2, NULL), +(35275, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.611318+00', 398, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35276, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.576037+00', 549, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35277, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.576037+00', 555, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35278, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.584501+00', 680, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35279, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.748135+00', 561, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35280, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.735017+00', 853, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35281, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.735017+00', 684, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35282, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.675899+00', 1284, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(35283, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.827796+00', 1135, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35284, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.854602+00', 875, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35285, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.874479+00', 860, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35286, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.7927+00', 1188, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35287, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.675899+00', 943, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35288, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.7927+00', 1190, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(35289, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.805152+00', 1219, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35290, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.761011+00', 1401, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35291, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.77987+00', 1644, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35292, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.77987+00', 1686, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(35293, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.000606+00', 1536, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35294, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.000606+00', 1541, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(35295, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.472085+00', 260, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35296, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.311222+00', 1431, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35297, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.622495+00', 284, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35298, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.558778+00', 637, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35299, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.558778+00', 730, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35300, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.562127+00', 972, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35301, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.837226+00', 758, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35302, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.56216+00', 1184, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35303, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.630138+00', 1131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35304, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.56216+00', 1209, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 2, NULL), +(35305, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.575185+00', 1228, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35306, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.56335+00', 1424, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35307, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:28.152075+00', 919, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35308, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.470189+00', 2964, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35309, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.486293+00', 3097, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35310, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.486293+00', 3102, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35311, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.564784+00', 3366, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35312, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.564784+00', 3368, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35313, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.849571+00', 3114, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35314, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.155491+00', 192, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35315, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.270163+00', 246, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35316, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.270163+00', 253, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35317, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.25629+00', 343, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35318, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.27227+00', 347, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35319, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.237286+00', 393, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35320, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.425943+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35321, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.553761+00', 221, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35322, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.419456+00', 400, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35323, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.66311+00', 248, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35324, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.667532+00', 281, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35325, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.128935+00', 1381, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35326, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.128935+00', 1390, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35327, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.538814+00', 1929, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35328, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.271664+00', 2560, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35329, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.271664+00', 2588, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35330, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.614679+00', 2310, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35331, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.817106+00', 215, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35332, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.817106+00', 226, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35333, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.808674+00', 557, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35334, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.808674+00', 539, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35335, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.821303+00', 915, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35336, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.821303+00', 918, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 30, 3, NULL, 2, NULL), +(35337, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.000263+00', 988, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35338, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.816036+00', 1177, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35339, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.816036+00', 1180, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(35340, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.978047+00', 1082, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35341, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.005171+00', 1082, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 2, NULL), +(35342, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.558736+00', 534, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35343, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.5752+00', 549, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35344, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.534359+00', 788, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35345, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.958906+00', 1403, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35346, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.958906+00', 1407, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(35347, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.538063+00', 872, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(35348, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.538063+00', 871, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35349, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.542491+00', 948, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 18, 3, NULL, 2, NULL), +(35350, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.546121+00', 981, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35351, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.570117+00', 980, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35352, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.513625+00', 1042, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35353, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.513625+00', 1047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(35354, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.7147+00', 880, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35355, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.529542+00', 1101, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35356, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.575704+00', 118, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35357, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.598642+00', 111, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35358, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.633015+00', 118, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35359, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.615223+00', 157, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35360, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.595881+00', 198, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35361, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.622571+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35362, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.622571+00', 192, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35363, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.642276+00', 342, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35364, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.584199+00', 407, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35365, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.598595+00', 491, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35366, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.67608+00', 486, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35367, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.54851+00', 1296, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35368, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.54851+00', 1303, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35369, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.47334+00', 447, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35370, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.47334+00', 450, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35371, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.507321+00', 419, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35372, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.567444+00', 369, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35373, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.567444+00', 385, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(35374, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.518128+00', 481, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35375, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.518128+00', 484, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(35376, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.409226+00', 633, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35377, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.651526+00', 1394, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35378, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.550149+00', 536, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35379, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.458478+00', 698, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35380, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.47806+00', 685, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35381, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.507393+00', 669, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(35382, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.507393+00', 668, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35383, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.47806+00', 700, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 30, 3, NULL, 2, NULL), +(35384, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.438318+00', 754, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35385, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.438318+00', 760, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35386, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.787563+00', 497, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35387, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.398868+00', 936, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35388, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.398868+00', 970, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 2, NULL), +(35389, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.886427+00', 492, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35390, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.630127+00', 1825, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35391, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.630127+00', 1828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35392, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.591572+00', 939, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35393, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.55306+00', 982, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35394, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.591572+00', 958, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 26, 3, NULL, 2, NULL), +(35395, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.879238+00', 679, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35396, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.61361+00', 985, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35397, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.61361+00', 993, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 27, 3, NULL, 2, NULL), +(35398, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.671331+00', 1990, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35399, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.090305+00', 892, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35400, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.379518+00', 166, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35401, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.558187+00', 715, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 2, NULL), +(35402, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.558187+00', 713, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35403, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.85146+00', 457, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35404, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.85146+00', 459, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 30, 3, NULL, 2, NULL), +(35405, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.695844+00', 640, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35406, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.695844+00', 645, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35407, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.601575+00', 755, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35408, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.601575+00', 760, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35409, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.067247+00', 380, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35410, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.067247+00', 387, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(35411, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.127606+00', 358, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35412, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.127606+00', 390, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 26, 3, NULL, 2, NULL), +(35413, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.149744+00', 409, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35414, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.149227+00', 546, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35415, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.128825+00', 654, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35416, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.382225+00', 399, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35417, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.386606+00', 421, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35418, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.378603+00', 653, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35419, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.1822+00', 846, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(35420, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.1822+00', 845, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35421, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.463627+00', 660, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35422, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.494833+00', 908, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35423, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.358856+00', 1237, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35424, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.38116+00', 1268, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 2, NULL), +(35425, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.291043+00', 429, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35426, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.095871+00', 703, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35427, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.12804+00', 757, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35428, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.266624+00', 665, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35429, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.152402+00', 841, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35430, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.552487+00', 545, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35431, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.549227+00', 558, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35432, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.549227+00', 562, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35433, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.19489+00', 1140, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35434, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.19489+00', 1172, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(35435, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.78412+00', 907, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35436, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.796429+00', 1090, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35437, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.85219+00', 3140, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35438, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.72007+00', 3443, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35439, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.72007+00', 3446, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35440, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.741647+00', 3888, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35441, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.741647+00', 3880, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35442, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.874821+00', 3872, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35443, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:20.991596+00', 59, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35444, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:20.991596+00', 57, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35445, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.028209+00', 130, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35446, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.006809+00', 198, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 2, NULL), +(35447, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.039065+00', 187, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35448, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.082033+00', 228, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35449, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.143374+00', 263, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35450, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.233908+00', 208, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35451, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.451461+00', 410, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35452, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.451461+00', 423, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35453, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.201236+00', 689, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35454, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.414455+00', 526, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35455, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.511592+00', 450, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35456, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.511592+00', 453, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(35457, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.466319+00', 890, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35458, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.238687+00', 142, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35459, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.466319+00', 899, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 2, NULL), +(35460, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.734285+00', 674, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35461, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.734285+00', 682, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 2, NULL), +(35462, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.269115+00', 1175, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35463, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.524625+00', 1024, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35464, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.524625+00', 1040, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(35465, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.230279+00', 641, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35466, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.240456+00', 633, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35467, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.856333+00', 1076, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35468, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.463314+00', 1477, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 2, NULL), +(35469, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.023361+00', 920, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35470, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.601818+00', 1354, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35471, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.601818+00', 1358, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(35472, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.463314+00', 1475, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35473, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.856333+00', 1118, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 2, NULL), +(35474, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.158341+00', 876, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35475, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.0057+00', 2063, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35476, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.0057+00', 2066, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35477, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.972214+00', 1199, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35478, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.734313+00', 1503, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35479, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.084806+00', 1223, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35480, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.084806+00', 1243, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35481, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:20.978482+00', 2456, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35482, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:20.978482+00', 2461, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35483, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.179817+00', 1319, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35484, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.462522+00', 1074, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35485, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.111046+00', 2583, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35486, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.215371+00', 2750, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35487, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:10.882695+00', 56, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35488, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:10.876964+00', 77, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35489, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.153253+00', 433, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35490, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.289455+00', 679, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35491, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.289455+00', 693, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 2, NULL), +(35492, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:10.888677+00', 1252, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 2, NULL), +(35493, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.369574+00', 806, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35494, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.609284+00', 681, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35495, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.815995+00', 478, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35496, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.815995+00', 483, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 2, NULL), +(35497, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.396365+00', 923, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35498, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.182563+00', 472, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35499, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:10.902412+00', 1790, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35500, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:10.902412+00', 1794, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35501, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.568712+00', 195, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35502, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.192594+00', 604, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35503, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.192594+00', 653, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 27, 3, NULL, 2, NULL), +(35504, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.189946+00', 664, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35505, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.569108+00', 284, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35506, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.305459+00', 559, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35507, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.906799+00', 962, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35508, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.906799+00', 967, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35509, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.646218+00', 1234, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35510, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.646218+00', 1247, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(35511, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.621296+00', 278, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35512, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.621296+00', 295, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 2, NULL), +(35513, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.512172+00', 1430, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35514, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.427806+00', 519, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 26, 3, NULL, 2, NULL), +(35515, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.427806+00', 512, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35516, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.970567+00', 1057, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35517, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.447508+00', 581, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35518, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.970567+00', 1071, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35519, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.272474+00', 788, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35520, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.943233+00', 1133, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35521, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.943233+00', 1146, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(35522, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.61143+00', 658, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35523, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.612754+00', 1217, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35524, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.401972+00', 2477, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35525, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.595844+00', 2520, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35526, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.055597+00', 281, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 2, NULL), +(35527, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.104019+00', 358, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 2, NULL), +(35528, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.29766+00', 525, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 2, FALSE), +(35529, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.186004+00', 689, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 2, NULL), +(35530, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.430204+00', 527, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 2, FALSE), +(35531, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.092148+00', 894, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 2, NULL), +(35532, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.092148+00', 891, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35533, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.193178+00', 1342, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 2, FALSE), +(35534, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.40924+00', 1131, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 2, FALSE), +(35535, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.430523+00', 1118, 10, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35536, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.184392+00', 1403, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 2, FALSE), +(35537, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.184392+00', 1491, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 2, NULL), +(35538, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.306851+00', 1318, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 2, NULL), +(35539, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.306851+00', 1241, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35540, X'47636f0343f7ca61df6527bdcc511ed84d3b0c142ba53d3d8191187a5483af97', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.769462+00', 1131, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 2, FALSE), +(35541, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.854294+00', 1111, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 2, NULL), +(35542, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.854294+00', 1105, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35543, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.243909+00', 704, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 2, NULL), +(35544, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.243909+00', 699, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35545, X'7df860b1afb6b92e1a09f48d14dd9ff7bf45ce75b98eb0e949d6539f97043620', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.346752+00', 864, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 2, FALSE), +(35546, X'43d8a19b84ebc5708df485af72b3b5543f4ca06379ad792b054d4eae0c6a41a9', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.493489+00', 820, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 2, FALSE), +(35547, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.927667+00', 1416, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35548, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.44123+00', 943, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 27, 3, NULL, 2, NULL), +(35549, X'050827a86114ff090b98eb53b8048b86f9b7c4eb336944aebb35f34c106c45db', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.44123+00', 941, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 2, FALSE), +(35550, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.11471+00', 1400, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 2, FALSE), +(35551, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.447785+00', 1285, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35552, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.157942+00', 1578, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35553, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.731173+00', 1071, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35554, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.286725+00', 1498, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 2, FALSE), +(35555, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.914673+00', 1900, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 2, FALSE), +(35556, X'34e60d48273b65153fd309603e5bc011b137e20016dcb1ef89edad629de1997b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.286725+00', 1535, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 2, NULL), +(35557, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.731173+00', 1118, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 2, NULL), +(35558, X'337ae763b25beecf0b84f127c9a161bc9c6817a814fba0c2cd04a9e8b36d2c28', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.914673+00', 1961, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 2, NULL), +(35559, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.046931+00', 3958, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35560, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.046931+00', 3968, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 2, NULL), +(35561, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.403938+00', 1687, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35562, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.403938+00', 1696, 0, FALSE, 'public-dashboard', 'Closed', NULL, 26, 3, NULL, 2, NULL), +(35563, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.074698+00', 4157, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 2, FALSE), +(35564, X'5c7c3c532fd84128b900100b1cb56429b3e5568a20bf39eb2de4e583d0f03703', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.546511+00', 1725, 0, FALSE, 'public-dashboard', NULL, NULL, 26, 3, NULL, 2, FALSE), +(35565, X'e536e21b5867256df2c566cf43e8fa2fb94a7e3b0ea58efb2a18390cdd330d8c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.134115+00', 1142, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 2, FALSE), +(35566, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.317119+00', 4095, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35567, X'1f03af32491b2d14291444c18f17e4e2aedd474445e3e47d6eeaaad2c5dbc6f8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.145379+00', 1307, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 21, 3, NULL, 2, NULL), +(35568, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.295427+00', 4346, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 2, FALSE), +(35569, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.295427+00', 4353, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 2, NULL), +(35570, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.264963+00', 80, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35571, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.291955+00', 120, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(35572, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.23005+00', 190, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 12, 2, NULL, 2, NULL), +(35573, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.241857+00', 176, 10, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35574, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.241857+00', 230, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 2, NULL), +(35575, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.212331+00', 324, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 2, NULL), +(35576, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.686952+00', 669, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35577, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.688517+00', 789, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 2, NULL), +(35578, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.87647+00', 855, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(35579, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.273558+00', 1650, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(35580, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.273558+00', 1659, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35581, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.833402+00', 1220, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(35582, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.834138+00', 1227, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(35583, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.365898+00', 1045, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(35584, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.563474+00', 936, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(35585, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.563474+00', 948, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 2, NULL), +(35586, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.181636+00', 2360, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(35587, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.181636+00', 2369, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 2, NULL), +(35588, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.323379+00', 1381, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(35589, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.323379+00', 1427, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 2, NULL), +(35590, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.349369+00', 1425, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(35591, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.348275+00', 1459, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(35592, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.348275+00', 1457, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(35593, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.543429+00', 1283, 11, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(35594, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.496953+00', 1328, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(35595, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.620423+00', 1202, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(35596, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.402277+00', 1423, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(35597, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.374227+00', 1467, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(35598, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.402277+00', 1428, 0, TRUE, 'public-dashboard', 'Closed', 1, 19, 3, NULL, 2, NULL), +(35599, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.302971+00', 826, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(35600, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.266055+00', 915, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35601, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.539671+00', 1645, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(35602, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.539671+00', 1656, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(35603, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.266055+00', 935, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(35604, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.806322+00', 1542, 10, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35605, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.266063+00', 1233, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(35606, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.268304+00', 1308, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(35607, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.268304+00', 1320, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 2, NULL), +(35608, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.270854+00', 1674, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35609, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.71576+00', 2394, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 26, 3, NULL, 2, NULL), +(35610, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.216648+00', 3158, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(35611, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.692334+00', 2686, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(35612, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.010177+00', 212, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35613, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.005933+00', 351, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(35614, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.018331+00', 426, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(35615, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:14.987074+00', 467, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(35616, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.447102+00', 219, 11, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(35617, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.018566+00', 662, 10, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35618, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.33497+00', 404, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(35619, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.588949+00', 320, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(35620, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.588088+00', 320, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35621, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.546755+00', 409, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(35622, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.637448+00', 403, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(35623, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.5934+00', 476, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(35624, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.583265+00', 541, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(35625, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.594643+00', 678, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35626, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:14.99984+00', 1372, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(35627, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.102044+00', 1624, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(35628, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.447261+00', 997, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35629, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.091808+00', 1385, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35630, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.091808+00', 1451, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 2, NULL), +(35631, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.444009+00', 1144, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(35632, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.444009+00', 1212, 0, TRUE, 'public-dashboard', 'Closed', 1, 31, 2, NULL, 2, NULL), +(35633, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.647944+00', 1273, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(35634, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.647944+00', 1293, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 2, NULL), +(35635, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.576419+00', 1413, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(35636, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.442211+00', 2410, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35637, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.442211+00', 2427, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 2, NULL), +(35638, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.796152+00', 2138, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(35639, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.414538+00', 1527, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(35640, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.14223+00', 1887, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35641, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.262942+00', 1796, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(35642, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.262942+00', 1798, 0, TRUE, 'public-dashboard', 'Closed', 1, 21, 3, NULL, 2, NULL), +(35643, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.051277+00', 2032, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(35644, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.14223+00', 1974, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 2, NULL), +(35645, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.051277+00', 2097, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 2, NULL), +(35646, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.293986+00', 1865, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(35647, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.966608+00', 2212, 10, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35648, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.255976+00', 995, 11, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(35649, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.737806+00', 1522, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(35650, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.737806+00', 1629, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 2, NULL), +(35651, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.195194+00', 1377, 4, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(35652, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.167613+00', 1431, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(35653, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.176359+00', 1414, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(35654, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.176359+00', 1453, 0, TRUE, 'public-dashboard', 'Closed', 1, 19, 3, NULL, 2, NULL), +(35655, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.589167+00', 2043, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(35656, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.589167+00', 2053, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 2, NULL), +(35657, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.737863+00', 1955, 4, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(35658, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.257568+00', 2463, 11, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35659, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.212951+00', 1519, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(35660, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.217005+00', 1521, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35661, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.217005+00', 1532, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 2, NULL), +(35662, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.944862+00', 897, 2, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(35663, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.567112+00', 3335, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(35664, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.567112+00', 3337, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 2, NULL), +(35665, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.850201+00', 2108, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 28, 3, NULL, 2, NULL), +(35666, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.493637+00', 1646, 0, FALSE, 'public-dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35667, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.493637+00', 1660, 0, FALSE, 'public-dashboard', 'Closed', 1, 26, 3, NULL, 2, NULL), +(35668, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.856404+00', 1423, 5, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(35669, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.845923+00', 1629, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(35670, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.845923+00', 1639, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 2, NULL), +(35671, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.55879+00', 3936, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(35672, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.55879+00', 3938, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 2, NULL), +(35673, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.501253+00', 4115, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(35674, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:41.800252+00', 4390, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(35675, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.08545+00', 445, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(35676, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.058808+00', 493, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(35677, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.099774+00', 501, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35678, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.116537+00', 501, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(35679, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.11707+00', 596, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35680, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.104617+00', 7277, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35681, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.085439+00', 7443, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(35682, X'ce85a894599d67ca96db5ccc055476892b69e07206b8c3f383abc9f56d0275e3', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.069512+00', 169, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 2, FALSE), +(35683, X'2cbd055de1921a7e0af3d3aa659fe83924f8ae852ca0411d14aaf9776bc6cb14', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.072247+00', 180, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 2, FALSE), +(35684, X'93ecaf4ebf1b2ebae106db174f21f16adbe517f7231ac38b7107cdc768ed2acf', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.089705+00', 170, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 2, FALSE), +(35685, X'd02b87b7931d96fc278ff0177e0d41b39b3f8930c843cb69bbb1770321e83864', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.166901+00', 145, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 2, FALSE), +(35686, X'35158e3062fde36723918db146cd4b59da0d1e6e9d553b0a0d028892d598d69a', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.163938+00', 204, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 2, FALSE), +(35687, X'9028086b63e4edb6c3f918d4e56ad537e266b795c702721362a9d01d61bafd3c', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.163961+00', 206, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 2, FALSE), +(35688, X'1ccd832d4eec59ef764428bc5fe3eef9de96fdc1fe2a56857b732ec4db244fe8', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.179917+00', 203, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 2, FALSE), +(35689, X'da7b6809b634af58e90973b3518f79888573fb2560286ac7b2976ce91a239472', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.175633+00', 275, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 2, FALSE), +(35690, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.256211+00', 256, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35691, X'713f625d753c30aee9d865f164e7035df4bb67034d16c27dc2250a13e79e3dcb', TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:52.866363+00', 701, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 2, FALSE), +(35692, X'126c8b0968f3af197b7ca2fa4815deaafb12a61a7f8ceab80ae121391c764e6b', TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:52.955811+00', 631, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 2, FALSE), +(35693, X'c2969b01e8a55423c39b9deb478c318c0a593b368fcba1de1d5a15e971e39565', TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:52.866704+00', 717, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 2, FALSE), +(35694, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:52.865165+00', 1005, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35695, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:52.866562+00', 1087, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35696, X'b65fbeb928803cff6967fdb12338397f3cc5ca4a013dfa99aba4e209722b9c15', TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:52.934196+00', 1673, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 2, FALSE), +(35697, X'ff29e77cb84f6f5fe8f60493176bf957b69c951832233f076e549080e690a5df', TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:52.86517+00', 1840, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 2, FALSE), +(35698, X'8e9f9570792c12d65d7bd2f3c826cd92ce2ec482b0ca7d1edd26d3ad7141fc08', TIMESTAMP WITH TIME ZONE '2022-12-28 21:16:06.703405+00', 806, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(35699, X'cd8809cd51e8a827bcd8a7e9ea9c75bfbab30fe79c64a477e0e5b38e541e04dd', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:28.834621+00', 359, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 2, FALSE), +(35700, X'08eb9cb5d058cebe247d92a0238f641ff61a02219c93629db965ef08226e221f', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:31.019548+00', 1463, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35701, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:32.871167+00', 113, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(35702, X'8ddb484682ba740f5d117c52716925460be130e6117b4516fdb95170c091efe5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:35.386612+00', 149, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(35703, X'464a3a192d97f771ae11a89faddc54a1c9731f611a9de7cdfc91855d336f0213', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:37.28261+00', 258, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(35704, X'ff257b36a897ea82d47c56ffe47fb113249e9352768740c4173de4ebda6c3c57', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:39.068896+00', 95, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(35705, X'712f5cdad6213d7978c923664feccad038b625c10c08b5779a2965e7c27605ce', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:40.593085+00', 99, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(35706, X'4b0da880787466db72b2c9b525001ad1f3a94f66c01abc5db1d19bd10235b7a5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:42.566921+00', 1238, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(35707, X'f9f978fc100eb3c151ded06ae10ffcab22aa1443900ef1b537908da3b76f11ea', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:44.066731+00', 125, 4, FALSE, 'question', NULL, 1, 29, NULL, NULL, 2, FALSE), +(35708, X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:46.885349+00', 77, 2, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(35709, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:47.646586+00', 65, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(35710, X'b9249e34fd65b543964cad484256984abc77b40e6cb0d373824a0009f2123b92', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:48.41541+00', 135, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(35711, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:48.98833+00', 125, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(35712, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:49.945409+00', 400, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(35713, X'ae24c03c95053e9f9681162f1296c489078b46b9a92a98ff7bd4e35306e085c4', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:50.635332+00', 140, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(35714, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:51.149994+00', 78, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(35715, X'ffe3cf67711cf53f7e5603b466c3c90adcb64d8ac63c26ecfd109967783f2b82', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:53.182381+00', 44, 2, TRUE, 'question', NULL, 1, 8, NULL, NULL, 2, FALSE), +(35716, X'd511901935e9fef97fd81eb846106d9217603d02544eed98e4ca9e869699c319', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:53.482941+00', 59, 2, TRUE, 'question', NULL, 1, 7, NULL, NULL, 2, FALSE), +(35717, X'5e202e14107f2a56d078995072467ddd714c42babc3f57ddbeb335acc8cd9902', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:54.377787+00', 155, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 2, FALSE), +(35718, X'54b4a476eefc65c95ba90941846a409fa9a6d57257ac5d51c31290e3362cd006', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:54.902462+00', 153, 2, TRUE, 'question', NULL, 1, 6, NULL, NULL, 2, FALSE), +(35719, X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:56.634746+00', 144, 5, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(35720, X'3402ca982bf43e05e9d83725ca4708c09afef44e8802f75dad49af885dd37aaf', TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:04.686511+00', 80, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35721, X'3d51ae98c5a208ef485cda2ca65f37d82f5532f722fd9b7564242cc89613ecab', TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:07.546732+00', 59, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(35722, X'3d51ae98c5a208ef485cda2ca65f37d82f5532f722fd9b7564242cc89613ecab', TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:26.811363+00', 80, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 2, FALSE), +(35723, X'cd8809cd51e8a827bcd8a7e9ea9c75bfbab30fe79c64a477e0e5b38e541e04dd', TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:40.244918+00', 150, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 2, FALSE), +(35724, X'cd8809cd51e8a827bcd8a7e9ea9c75bfbab30fe79c64a477e0e5b38e541e04dd', TIMESTAMP WITH TIME ZONE '2022-12-29 10:11:15.151883+00', 86, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 2, FALSE), +(35725, X'8d08dec52893e4aaa3ae0670db1032903cc72bd1ef77636ad1884de726c6d0b3', TIMESTAMP WITH TIME ZONE '2022-12-29 10:11:58.460517+00', 100, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35726, X'08eb9cb5d058cebe247d92a0238f641ff61a02219c93629db965ef08226e221f', TIMESTAMP WITH TIME ZONE '2022-12-29 10:14:04.408008+00', 1774, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 2, FALSE), +(35727, X'c1d2c98dc9c40b9f68f2da3d39eb6f1cb56106e1511e0480c350660d7dd2f919', TIMESTAMP WITH TIME ZONE '2022-12-29 10:14:19.288089+00', 50, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(35728, X'4a90990bd00333a4e790e6a9f343cfafd5e0d94ac178adaf836277dfd9bd8b01', TIMESTAMP WITH TIME ZONE '2022-12-29 10:15:08.501955+00', 123, 2, FALSE, 'question', NULL, 1, 28, NULL, NULL, 2, FALSE), +(35729, X'a070542269902bc10bc0dd166ff1ca5b4632435b6d3b78f36009c6f671ae4899', TIMESTAMP WITH TIME ZONE '2022-12-29 10:15:52.294542+00', 194, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35730, X'680f1f849de4ccfcac185f5d69eabd5b10d1b28e6750275c04143318b3f1e7e5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:16:10.828516+00', 61, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35731, X'a070542269902bc10bc0dd166ff1ca5b4632435b6d3b78f36009c6f671ae4899', TIMESTAMP WITH TIME ZONE '2022-12-29 10:16:32.442822+00', 92, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35732, X'8ddb484682ba740f5d117c52716925460be130e6117b4516fdb95170c091efe5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:17:04.602837+00', 78, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 2, FALSE), +(35733, X'07e1d913ca2958aa4b0b81b51c21bdad6f5ee654ddf93cd51b86a4e4488bfb64', TIMESTAMP WITH TIME ZONE '2022-12-29 10:18:39.541353+00', 87, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35734, X'464a3a192d97f771ae11a89faddc54a1c9731f611a9de7cdfc91855d336f0213', TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.755487+00', 249, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 2, FALSE), +(35735, X'49dc76afbc9fff26be8d972199e7ffb932ac8005bed2296413aa065852fddc91', TIMESTAMP WITH TIME ZONE '2022-12-29 10:20:04.578522+00', 101, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35736, X'ff257b36a897ea82d47c56ffe47fb113249e9352768740c4173de4ebda6c3c57', TIMESTAMP WITH TIME ZONE '2022-12-29 10:20:18.186614+00', 89, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 2, FALSE), +(35737, X'46256951dc30f216cbeb647922e741a70db8a680fec5134327cfcfefdb78b4c6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:20:31.509762+00', 4, 0, TRUE, 'ad-hoc', 'Error determining value for parameter "filterGender": Failed to fetch Field 336: Field does not exist, or belongs to a different Database.', 1, NULL, NULL, NULL, 3, NULL), +(35738, X'f46420116379a92e7b417634d78ee6b6c547c774cded69c8df1fc11cc7f9a12f', TIMESTAMP WITH TIME ZONE '2022-12-29 10:21:22.339278+00', 121, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35739, X'712f5cdad6213d7978c923664feccad038b625c10c08b5779a2965e7c27605ce', TIMESTAMP WITH TIME ZONE '2022-12-29 10:21:51.402722+00', 90, 4, TRUE, 'question', NULL, 1, 19, NULL, NULL, 2, FALSE), +(35740, X'7f87fa569e54fbaf7e11bfb63ab02129c75a1fd4ebb7c03ec3129bd99e0dbac4', TIMESTAMP WITH TIME ZONE '2022-12-29 10:22:55.034318+00', 93, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35741, X'4b0da880787466db72b2c9b525001ad1f3a94f66c01abc5db1d19bd10235b7a5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:23:07.033453+00', 1323, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 2, FALSE), +(35742, X'68dad245000e82734faef368454541aed4f0bb29107a5bb60c931a1bbe913056', TIMESTAMP WITH TIME ZONE '2022-12-29 10:23:54.290959+00', 1437, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35743, X'e2b8637c16fc89994a0a71dfa4e9765a7ab627018788b601ac2ce1ed1ddfeaf2', TIMESTAMP WITH TIME ZONE '2022-12-29 10:24:15.494729+00', 1399, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35744, X'f9f978fc100eb3c151ded06ae10ffcab22aa1443900ef1b537908da3b76f11ea', TIMESTAMP WITH TIME ZONE '2022-12-29 10:24:32.534804+00', 160, 4, FALSE, 'question', NULL, 1, 29, NULL, NULL, 2, FALSE), +(35745, X'ba289e3ee6ddf115a7aa9ac09a26360b2c4b9acd009bb304ecf76f2981e3e806', TIMESTAMP WITH TIME ZONE '2022-12-29 10:25:15.679014+00', 78, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35746, X'1e3ed767ddf877975e58d58d7a431c5487f9a4e8d13335b46c1f61b04496891c', TIMESTAMP WITH TIME ZONE '2022-12-29 10:25:32.011269+00', 96, 2, TRUE, 'question', NULL, 1, 2, NULL, NULL, 2, FALSE), +(35747, X'9451b9d2280dd6c2e8f8b42bf81badfc30ba6d0a1a527891da73e08ddc1c30b4', TIMESTAMP WITH TIME ZONE '2022-12-29 10:26:23.306702+00', 45, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35748, X'd1825b81d2445242b6b11de2d77130117bd202428f55c60961c5e9f121127231', TIMESTAMP WITH TIME ZONE '2022-12-29 10:26:34.517403+00', 45, 2, TRUE, 'question', NULL, 1, 4, NULL, NULL, 2, FALSE), +(35749, X'c31b4e00a221756adb915247c880e3c1f78ef960474aaf490f40882f4d67e195', TIMESTAMP WITH TIME ZONE '2022-12-29 10:27:34.914832+00', 51, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35750, X'b9249e34fd65b543964cad484256984abc77b40e6cb0d373824a0009f2123b92', TIMESTAMP WITH TIME ZONE '2022-12-29 10:27:47.934379+00', 90, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 2, FALSE), +(35751, X'f011c0a9df1fd3563830ff4695645cfe012b3c53263c541190d97fa297eb6ea3', TIMESTAMP WITH TIME ZONE '2022-12-29 10:29:00.792882+00', 134, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35752, X'4a0b4159c9883f75e7d1443716b2194b8e5781f122764d0d37e96d7f54e70791', TIMESTAMP WITH TIME ZONE '2022-12-29 10:29:11.636891+00', 95, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 2, FALSE), +(35753, X'0a6b06aa8eae66056920195f3c985f2c5e096f981bb4df676864be4e5a4d6f7b', TIMESTAMP WITH TIME ZONE '2022-12-29 10:30:01.646572+00', 51, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35754, X'7dff145ad4b2610338b3cb4b85e452da3157bcb1c0dd6be9e0420c5d6f1b3040', TIMESTAMP WITH TIME ZONE '2022-12-29 10:30:09.300745+00', 140, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 2, FALSE), +(35755, X'649bcd48f5525c11139a7011412aa80c391439beab5b03ee1480a0b50da37a60', TIMESTAMP WITH TIME ZONE '2022-12-29 10:30:59.198112+00', 49, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35756, X'ae24c03c95053e9f9681162f1296c489078b46b9a92a98ff7bd4e35306e085c4', TIMESTAMP WITH TIME ZONE '2022-12-29 10:31:13.010309+00', 105, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 2, FALSE), +(35757, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2022-12-29 10:31:54.748906+00', 41, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(35758, X'56349dbc111593eb99c38180080b38e610736553af6ec13005b144d4a15f76b8', TIMESTAMP WITH TIME ZONE '2022-12-29 10:32:02.953812+00', 41, 1, TRUE, 'question', NULL, 1, 10, NULL, NULL, 2, FALSE), +(35759, X'29b2920d20e70f98fd7d379c49822b239f8aff0166dab6adb1d6a05d7f8eb17d', TIMESTAMP WITH TIME ZONE '2022-12-29 10:32:33.7619+00', 43, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35760, X'bf375fc8c11d464eedda8fe92083b8978a064449a985cb6f72894ac614405512', TIMESTAMP WITH TIME ZONE '2022-12-29 10:33:11.80562+00', 47, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35761, X'0a64735d3624d2b5fff485449ee5b1db4544b6d387133fa11c4df5b6c26c680f', TIMESTAMP WITH TIME ZONE '2022-12-29 10:33:46.351542+00', 51, 2, TRUE, 'question', NULL, 1, 7, NULL, NULL, 3, FALSE), +(35762, X'3d8b0c9910c4b6d5deca6e775a76e6b291ee396c2b78d74e4037e119260cce83', TIMESTAMP WITH TIME ZONE '2022-12-29 10:34:21.25512+00', 133, 2, TRUE, 'question', NULL, 1, 5, NULL, NULL, 3, FALSE), +(35763, X'6119a9408c96c2a2a9a8e783ea128bf0cda82b2e1ca7be6cd7a2ccb5584c907d', TIMESTAMP WITH TIME ZONE '2022-12-29 10:34:49.190909+00', 46, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35764, X'9754e95820fdad278ee832e446e0cb006bdceda5c7c45a5666346a2ee2239dcd', TIMESTAMP WITH TIME ZONE '2022-12-29 10:35:00.070519+00', 193, 5, FALSE, 'question', NULL, 1, 27, NULL, NULL, 2, FALSE), +(35765, X'b99a02df8791dfdb6e44141411b6ea9d5015dddbcd0ca2b69e61e64e5483f409', TIMESTAMP WITH TIME ZONE '2022-12-29 10:35:47.330867+00', 99, 5, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35766, X'75ff26af08a15c7d04ecf3d9578031cd09175968fbb05d6cf60fee111f444eb3', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.50885+00', 290, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35767, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.393732+00', 426, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35768, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.457061+00', 396, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35769, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.468234+00', 458, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35770, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.516276+00', 410, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35771, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.602857+00', 349, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35772, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.456114+00', 1425, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35773, X'bdbb39fe9581771a5b73ef262fb9ea69d4d8d8985f5db46d27729817622241b0', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:15.93377+00', 114, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 29, 3, NULL, 3, NULL), +(35774, X'6e0f7675f6f97bf2072528ca03c22ef7681f0dcd09ebd1c2caa503e6768e33b6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.063259+00', 20, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 30, 3, NULL, 3, NULL), +(35775, X'df74b939ec243323b2c40af097a20b441e3069e318fcc473d6b7b88537783e75', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.090795+00', 75, 0, FALSE, 'dashboard', 'Failed to fetch Field 640: Field does not exist, or belongs to a different Database.', 1, 28, 3, NULL, 3, NULL), +(35776, X'058436f69ac3f888813babb8e9fe105e23ead58a07ea366b98c633465407adf5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.071225+00', 101, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 27, 3, NULL, 3, NULL), +(35777, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.011595+00', 309, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(35778, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.053025+00', 358, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(35779, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.06642+00', 466, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35780, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.120874+00', 454, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(35781, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:15.98916+00', 867, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35782, X'8c0ca856d9f90e1a7e42a3766f196358e63deaca42e410a7631bf0fd7ced4b1e', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:23.405574+00', 159, 4, FALSE, 'question', NULL, 1, 29, NULL, NULL, 3, FALSE), +(35783, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.400846+00', 106, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(35784, X'6e0f7675f6f97bf2072528ca03c22ef7681f0dcd09ebd1c2caa503e6768e33b6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.551563+00', 65, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 30, 3, NULL, 3, NULL), +(35785, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.432123+00', 208, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(35786, X'bdbb39fe9581771a5b73ef262fb9ea69d4d8d8985f5db46d27729817622241b0', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.61574+00', 45, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 29, 3, NULL, 3, NULL), +(35787, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.402189+00', 344, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(35788, X'df74b939ec243323b2c40af097a20b441e3069e318fcc473d6b7b88537783e75', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.736142+00', 21, 0, FALSE, 'dashboard', 'Failed to fetch Field 640: Field does not exist, or belongs to a different Database.', 1, 28, 3, NULL, 3, NULL), +(35789, X'058436f69ac3f888813babb8e9fe105e23ead58a07ea366b98c633465407adf5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.762186+00', 43, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 27, 3, NULL, 3, NULL), +(35790, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.762231+00', 285, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(35791, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.577878+00', 530, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35792, X'058436f69ac3f888813babb8e9fe105e23ead58a07ea366b98c633465407adf5', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.751532+00', 60, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 27, 3, NULL, 3, NULL), +(35793, X'6e0f7675f6f97bf2072528ca03c22ef7681f0dcd09ebd1c2caa503e6768e33b6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.901044+00', 15, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 30, 3, NULL, 3, NULL), +(35794, X'df74b939ec243323b2c40af097a20b441e3069e318fcc473d6b7b88537783e75', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:03.041591+00', 42, 0, FALSE, 'dashboard', 'Failed to fetch Field 640: Field does not exist, or belongs to a different Database.', 1, 28, 3, NULL, 3, NULL), +(35795, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.825536+00', 342, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(35796, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.846532+00', 468, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(35797, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.901526+00', 435, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35798, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.848012+00', 1087, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(35799, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.901328+00', 1452, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(35800, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.830065+00', 4373, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35801, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.287899+00', 374, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(35802, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.526002+00', 421, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(35803, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.523947+00', 453, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(35804, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.560004+00', 531, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(35805, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.350987+00', 861, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(35806, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.588609+00', 730, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(35807, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.890439+00', 483, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(35808, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.847247+00', 527, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(35809, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.535454+00', 999, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35810, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.620872+00', 301, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35811, X'75ff26af08a15c7d04ecf3d9578031cd09175968fbb05d6cf60fee111f444eb3', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.717144+00', 269, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35812, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.672205+00', 312, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35813, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.854433+00', 136, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35814, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.805564+00', 301, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35815, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.848331+00', 284, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35816, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.818321+00', 1270, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35817, X'670348114222f718a6a7fc1efbec8275c9126da4f0824194054b23f52f05690d', TIMESTAMP WITH TIME ZONE '2022-12-29 11:11:36.727672+00', 812, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35818, X'edd7e6f588ff78c556c01806fb79ea506b12d64e141c61e78fd6cbb051ffeb0a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:07.740367+00', 69, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(35819, X'd6c1a7c9de4e8ab1f59e029be24415a6a0d6c684d5f280a9f3fb4bbf3c0fd5cc', TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:14.75281+00', 41, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(35820, X'edd7e6f588ff78c556c01806fb79ea506b12d64e141c61e78fd6cbb051ffeb0a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:20.156365+00', 91, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(35821, X'f9f7381688aea4af844024bea6f357bf127346b0ae275c9bd89f5c5d867c9da7', TIMESTAMP WITH TIME ZONE '2022-12-29 11:13:15.80925+00', 624, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35822, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.418283+00', 184, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(35823, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.385052+00', 461, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(35824, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.615371+00', 396, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(35825, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.482091+00', 553, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(35826, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.71015+00', 401, 5, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(35827, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.706459+00', 411, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(35828, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.659519+00', 500, 2, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(35829, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.672031+00', 554, 4, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(35830, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.706459+00', 597, 11, FALSE, 'dashboard', NULL, 1, 26, 3, NULL, 2, FALSE), +(35831, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.541521+00', 337, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35832, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.40465+00', 483, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35833, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.523695+00', 372, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35834, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.518897+00', 385, 10, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 2, FALSE), +(35835, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.412051+00', 509, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 2, FALSE), +(35836, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.364505+00', 1520, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35837, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.363249+00', 1533, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35851, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:10.507203+00', 1608, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "74xhwlvDl2qLvSLa5iJJqb6c67g=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } } }', 1, 14, 2, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35852, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:10.509886+00', 1612, 0, TRUE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "74xhwlvDl2qLvSLa5iJJqb6c67g=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } } }', 1, 31, 2, NULL, 3, NULL), +(35853, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:10.507587+00', 1623, 0, TRUE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "74xhwlvDl2qLvSLa5iJJqb6c67g=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } } }', 1, 9, 2, NULL, 3, NULL), +(35854, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:10.507244+00', 1625, 0, TRUE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "74xhwlvDl2qLvSLa5iJJqb6c67g=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } } }', 1, 13, 2, NULL, 3, NULL), +(35855, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:10.506522+00', 1622, 0, TRUE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "74xhwlvDl2qLvSLa5iJJqb6c67g=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } } }', 1, 1, 2, NULL, 3, NULL), +(35856, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:10.507203+00', 1643, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "74xhwlvDl2qLvSLa5iJJqb6c67g=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } } }', 1, 16, 2, NULL, 2, NULL), +(35857, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:10.507962+00', 1608, 0, TRUE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "74xhwlvDl2qLvSLa5iJJqb6c67g=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313347, "i" : 1 } } }', 1, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35858, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.364599+00', 400, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313417, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "gvCj/6plajFHHM2ikWYOuatYkDA=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313417, "i" : 1 } } }', 1, 16, 2, NULL, 2, NULL), +(35859, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.336541+00', 425, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313417, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "gvCj/6plajFHHM2ikWYOuatYkDA=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313417, "i" : 1 } } }', 1, 14, 2, NULL, 2, NULL), +(35860, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.286934+00', 1693, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35861, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.398194+00', 1682, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35862, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.320369+00', 1814, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35863, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.263425+00', 2529, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35864, X'2fb39c9ab8cd502186fbfc4c9d211f34a2e809081dcdd523e7fdfc5621477a76', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:31.87342+00', 359, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313427, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "lIy9wWdjik1fDpmnKdFVvwJu6VU=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313427, "i" : 1 } } }', 1, 16, 2, NULL, 2, NULL), +(35865, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:32.007508+00', 465, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313427, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "lIy9wWdjik1fDpmnKdFVvwJu6VU=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313427, "i" : 1 } } }', 1, 14, 2, NULL, 2, NULL), +(35866, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:31.872347+00', 1055, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35867, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:31.888354+00', 1116, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35868, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:31.913364+00', 1133, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35869, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:31.850439+00', 1895, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35870, X'2b71ec88f46d33e8f248c84a6d20008f2aa151b41b6931a0d1b3ae9937862f85', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:50.311287+00', 101, 0, FALSE, 'ad-hoc', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313447, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "XgfHG8cdILSFCaT05XFzq/dzRts=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313447, "i" : 1 } } }', 1, NULL, NULL, NULL, 2, NULL), +(35871, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.356765+00', 200921, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(35872, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.356765+00', 200914, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35873, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:31.901945+00', 194850, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35874, X'a5b2858dd192a2e4a9a9e3cc9c77c1dabacea43255af52d07bbaddd1e139de73', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:24.767308+00', 424, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35875, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:35.188877+00', 43, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35876, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:35.201256+00', 236, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313667, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "dXE8whoGr6OvTnZn3+h+4c62Vr4=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313667, "i" : 1 } } }', 1, 14, 2, NULL, 2, NULL), +(35877, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:35.158892+00', 932, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35878, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:35.211214+00', 917, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35879, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:35.192659+00', 1001, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35880, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:35.073595+00', 1808, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35881, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:35.225359+00', 189181, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35882, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.412394+00', 24, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35883, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.48392+00', 709, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313928, "i" : 10 } }, "signature" : { "hash" : { "$binary" : "Rsshm+wjcqSDvTW3uy1rV1gmIWc=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313928, "i" : 10 } } }', 1, 14, 2, NULL, 2, NULL), +(35884, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.473187+00', 1687, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35885, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.446912+00', 1809, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35886, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.52924+00', 1796, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35887, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.454565+00', 2629, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35888, X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:21.861696+00', 2083, 1, FALSE, 'question', NULL, 1, 16, NULL, NULL, 3, FALSE), +(35889, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.413736+00', 74, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35890, X'6eb386006882707a8f067c27707619213486e66b483193bb4780e76ec71f5713', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.395481+00', 319, 0, FALSE, 'dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313967, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "SUQBOusr3ZGDYOoVFbZXcqxgKAg=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313967, "i" : 1 } } }', 1, 14, 2, NULL, 2, NULL), +(35891, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.451026+00', 861, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35892, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.37524+00', 945, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35893, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.421378+00', 999, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35894, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.356644+00', 1751, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35895, X'd00099f4797e3abcd65a77af7d33d77f9cdaffd07b07ec80ee97876c7e0f81c2', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:36.611768+00', 134, 0, FALSE, 'ad-hoc', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672313976, "i" : 18 } }, "signature" : { "hash" : { "$binary" : "8KBAc62tHO+gQ15ABfAAkOKPE3c=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672313976, "i" : 18 } } }', 1, NULL, NULL, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35896, X'5d101b3748639c5dd88c53fde28e7cf0ec662d8c136f4b856c7fcd89c9924d6d', TIMESTAMP WITH TIME ZONE '2022-12-29 11:40:41.224443+00', 902, 361, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(35897, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:30.19414+00', 83, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35898, X'950e44c1ba6c7179bb97faee9403d3dacddac6b32de699cd2bd137c77d08815c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:30.117374+00', 148, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 14, 2, NULL, 3, NULL), +(35899, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:30.104795+00', 1018, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35900, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:30.166001+00', 1088, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35901, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:30.233302+00', 1138, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35902, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:30.311607+00', 2028, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35903, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.306104+00', 18, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35904, X'950e44c1ba6c7179bb97faee9403d3dacddac6b32de699cd2bd137c77d08815c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.312682+00', 22, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 14, 2, NULL, 3, NULL), +(35905, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.288249+00', 649, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35906, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.208923+00', 815, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35907, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.519558+00', 964, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35908, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.422398+00', 1518, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35909, X'9ecdbc3505fd19a3b66ea5a60eabf1863e78b78b53b1290936556e84d9b21463', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:47.09116+00', 824, 361, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(35910, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.715667+00', 21, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35911, X'950e44c1ba6c7179bb97faee9403d3dacddac6b32de699cd2bd137c77d08815c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.588757+00', 152, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 14, 2, NULL, 3, NULL), +(35912, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.715777+00', 1041, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35913, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.746252+00', 1254, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35914, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.633502+00', 1455, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35915, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.59042+00', 3308, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35916, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.139566+00', 19, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35917, X'950e44c1ba6c7179bb97faee9403d3dacddac6b32de699cd2bd137c77d08815c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.159937+00', 44, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 14, 2, NULL, 3, NULL), +(35918, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.088998+00', 1039, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35919, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.17051+00', 996, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35920, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.167728+00', 1047, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35921, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.18877+00', 2600, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35922, X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:50.10191+00', 203, 1, FALSE, 'question', NULL, 1, 16, NULL, NULL, 3, FALSE), +(35923, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.459033+00', 227250, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35924, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.459033+00', 227256, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(35925, X'950e44c1ba6c7179bb97faee9403d3dacddac6b32de699cd2bd137c77d08815c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.190928+00', 67, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 14, 2, NULL, 3, NULL), +(35926, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.243398+00', 22, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35927, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.229276+00', 911, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35928, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.407717+00', 843, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35929, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.272445+00', 1060, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35930, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.262406+00', 2521, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35931, X'adfafabbc8c1c2e1053d81be3bdaf9b837991db2e6b20c7e71b222b96fbd10cd', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:59.611467+00', 24, 0, FALSE, 'dashboard', 'Failed to fetch Field 538: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35932, X'7e1d50e28205989f59133b30af65baef4cf69644e413c7c6e6bdaccb7a11df39', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:59.794292+00', 56, 0, FALSE, 'dashboard', 'Failed to fetch Field 538: Field does not exist, or belongs to a different Database.', 1, 14, 2, NULL, 3, NULL), +(35933, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:59.597506+00', 1361, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35934, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:00.076029+00', 1039, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35935, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:00.109541+00', 1202, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35936, X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.415758+00', 478, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(35937, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.393377+00', 1037, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35938, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.540036+00', 966, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35939, X'b20f350e3d646db73cee46e48e0df28edcfc061cec0bec2a6e61618256061a12', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.352629+00', 1284, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35940, X'9ecdbc3505fd19a3b66ea5a60eabf1863e78b78b53b1290936556e84d9b21463', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.503135+00', 1786, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(35941, X'46224c5b9b54875eca8277622d8c0c3da4e3ad7a7664f6cc9ed2e03284027b36', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:59.61255+00', 7128, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(35942, X'46224c5b9b54875eca8277622d8c0c3da4e3ad7a7664f6cc9ed2e03284027b36', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:59.61255+00', 7125, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35943, X'1bb875d392fed44948422736667427c41c6d7cf24799fcf61a509544a2901c96', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.175621+00', 6106, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35944, X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.641101+00', 458, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(35945, X'b20f350e3d646db73cee46e48e0df28edcfc061cec0bec2a6e61618256061a12', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.538817+00', 710, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35946, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.605574+00', 733, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35947, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.588555+00', 1150, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35948, X'9ecdbc3505fd19a3b66ea5a60eabf1863e78b78b53b1290936556e84d9b21463', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.551997+00', 1776, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(35949, X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.783255+00', 780, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(35950, X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:14.746195+00', 577, 1, FALSE, 'question', NULL, 1, 16, NULL, NULL, 3, FALSE), +(35951, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.991903+00', 2187, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35952, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.901023+00', 2382, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35953, X'b20f350e3d646db73cee46e48e0df28edcfc061cec0bec2a6e61618256061a12', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.90501+00', 2527, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35954, X'9ecdbc3505fd19a3b66ea5a60eabf1863e78b78b53b1290936556e84d9b21463', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.92023+00', 2902, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(35955, X'1bb875d392fed44948422736667427c41c6d7cf24799fcf61a509544a2901c96', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.546925+00', 11273, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35956, X'1bb875d392fed44948422736667427c41c6d7cf24799fcf61a509544a2901c96', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.546925+00', 11330, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(35957, X'1bb875d392fed44948422736667427c41c6d7cf24799fcf61a509544a2901c96', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.830137+00', 10613, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35958, X'950e44c1ba6c7179bb97faee9403d3dacddac6b32de699cd2bd137c77d08815c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:32.861732+00', 90, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 14, 2, NULL, 3, NULL), +(35959, X'4c896865ad4ab44af0fb05e2ad8bb3a53321507111f05f00fdb540857dc11df5', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:33.036698+00', 125, 0, FALSE, 'dashboard', 'Failed to fetch Field 354: Field does not exist, or belongs to a different Database.', 1, 16, 2, NULL, 3, NULL), +(35960, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:32.769155+00', 2462, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35961, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:33.069539+00', 2299, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35962, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:33.016812+00', 2365, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35963, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:32.621372+00', 5280, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35964, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:09.971041+00', 855, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(35965, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.159096+00', 1588, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35966, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.191517+00', 1740, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35967, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.041819+00', 2020, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35968, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.08084+00', 2305, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(35969, X'fb5b6b65a3a04b856032c4ca0f21bf7c32fd0bfa8497bbc90c20818a0bcb1276', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.129104+00', 5041, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35970, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.426833+00', 289781, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35971, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.426833+00', 289784, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35972, X'bac9177c3b5b97efaedf6dad42bd805ce5a7158ac08330b0dcb0f84fd5bd77a9', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:32.508805+00', 3254, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(35973, X'4b6457038796425365a70a41fcf3986c8c1fc4814fd1680da7c7b803c0287953', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:42.123097+00', 4660, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(35974, X'1bb875d392fed44948422736667427c41c6d7cf24799fcf61a509544a2901c96', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:53.704045+00', 5632, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(35975, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.498096+00', 925, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(35976, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.54677+00', 1658, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35977, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.235071+00', 2153, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35978, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.53796+00', 2129, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35979, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.477083+00', 2249, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(35980, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:20.021017+00', 1070, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(35981, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:20.196195+00', 1699, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(35982, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:19.993167+00', 2004, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(35983, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:19.976898+00', 2093, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(35984, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:20.062669+00', 2375, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(35985, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:30.252404+00', 728632, 0, TRUE, 'dashboard', 'Cursor has been closed', 1, 9, 2, NULL, 3, NULL), +(35986, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.422398+00', 742425, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35987, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.422398+00', 742435, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(35988, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.581267+00', 797309, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35989, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.581267+00', 797318, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(35990, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.097145+00', 923355, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35991, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:37.097145+00', 923391, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(35992, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:33.02751+00', 894695, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35993, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:33.02751+00', 894706, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(35994, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.289039+00', 950231, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35995, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:56.289039+00', 950235, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(35996, X'f1923139ef66319aa0e4e21b680182a78927c2ecd16655b0f8742c96a9b6b356', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.158527+00', 815448, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(35997, X'f1923139ef66319aa0e4e21b680182a78927c2ecd16655b0f8742c96a9b6b356', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.158527+00', 815459, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(35998, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.136207+00', 957368, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(35999, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.136207+00', 957376, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(36000, X'f1923139ef66319aa0e4e21b680182a78927c2ecd16655b0f8742c96a9b6b356', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:20.257946+00', 807596, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36001, X'f1923139ef66319aa0e4e21b680182a78927c2ecd16655b0f8742c96a9b6b356', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:20.257946+00', 807599, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(36002, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.477204+00', 909643, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36003, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:54.477204+00', 909719, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(36004, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:19.988715+00', 887025, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36005, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:19.988715+00', 887033, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(36006, X'b0b5a956d4437ed3a6ace0ad29916a3062c56337418055bfe053f170e7f5cf92', TIMESTAMP WITH TIME ZONE '2022-12-29 11:52:03.733262+00', 652896, 0, TRUE, 'question', 'Closed', 1, 13, NULL, NULL, 3, NULL), +(36007, X'a23c82e358d3c996d49d31ebb1e001ae10094a40daf1844fc5c39032280e7e87', TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:59.680558+00', 1200677, 0, TRUE, 'dashboard', 'operation exceeded time limit', 1, 9, 2, NULL, 3, NULL), +(36008, X'414c9063c2ca63b5afb603772346ddd02930e797ee7da4c2d7200dc7201ad848', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.441613+00', 1200654, 0, TRUE, 'dashboard', 'operation exceeded time limit', 1, 9, 2, NULL, 3, NULL), +(36009, X'414c9063c2ca63b5afb603772346ddd02930e797ee7da4c2d7200dc7201ad848', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:10.568873+00', 1200654, 0, TRUE, 'dashboard', 'operation exceeded time limit', 1, 9, 2, NULL, 3, NULL), +(36010, X'414c9063c2ca63b5afb603772346ddd02930e797ee7da4c2d7200dc7201ad848', TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.816521+00', 1201409, 0, TRUE, 'dashboard', 'operation exceeded time limit', 1, 9, 2, NULL, 3, NULL), +(36011, X'508c447ce84eb52e312a3eed3e18e93c73fcaf54dae919d60cc8784722a8ec5a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:16.315088+00', 1141183, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36012, X'508c447ce84eb52e312a3eed3e18e93c73fcaf54dae919d60cc8784722a8ec5a', TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:16.315088+00', 1141193, 0, TRUE, 'question', 'Closed', 1, 13, NULL, NULL, 3, NULL), +(36013, X'c7e6123cd2848b70420f314a8e7df33a1f8693264e86eab70aea1fa136d4ef60', TIMESTAMP WITH TIME ZONE '2022-12-29 12:10:44.020252+00', 70, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 3, NULL), +(36014, X'ee9f2f5ab36b1ab46a0252b7c3dfd897508173f3c0f6bcb8ee0bca1865f54001', TIMESTAMP WITH TIME ZONE '2022-12-29 12:10:59.808674+00', 340177, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36015, X'ee9f2f5ab36b1ab46a0252b7c3dfd897508173f3c0f6bcb8ee0bca1865f54001', TIMESTAMP WITH TIME ZONE '2022-12-29 12:10:59.808674+00', 340219, 0, TRUE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(36016, X'b7df71cf435d3601b86345156b96efcb519823544d62666ce610c59d78a9fab2', TIMESTAMP WITH TIME ZONE '2022-12-29 12:12:39.292324+00', 334423, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36017, X'5bfd12318055cf19da0a82afadd49b0adf79005e47ca3d26f6c2e9a0717e1312', TIMESTAMP WITH TIME ZONE '2022-12-29 12:20:28.151406+00', 94, 0, TRUE, 'ad-hoc', 'Command failed with error 16020 (Location16020): ''Expression $gte takes exactly 2 arguments. 1 were passed in.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1672316418, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Expression $gte takes exactly 2 arguments. 1 were passed in.", "code" : 16020, "codeName" : "Location16020", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672316418, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "vZ6ZgWv7GRjl8rs6SGtr6ZpuA7U=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(36018, X'5bfd12318055cf19da0a82afadd49b0adf79005e47ca3d26f6c2e9a0717e1312', TIMESTAMP WITH TIME ZONE '2022-12-29 12:20:51.182756+00', 61, 0, TRUE, 'ad-hoc', 'Command failed with error 16020 (Location16020): ''Expression $gte takes exactly 2 arguments. 1 were passed in.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1672316448, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Expression $gte takes exactly 2 arguments. 1 were passed in.", "code" : 16020, "codeName" : "Location16020", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672316448, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "LHuey4bX7eXm5FcH4BGlflzIMuA=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(36019, X'2d53d002a394bc6922178ab1c2b2a5bd4d7b0b6f66f9c21d2867411efed84969', TIMESTAMP WITH TIME ZONE '2022-12-29 12:22:12.528471+00', 88, 0, TRUE, 'ad-hoc', 'Command failed with error 16020 (Location16020): ''Expression $gte takes exactly 2 arguments. 1 were passed in.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1672316528, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Expression $gte takes exactly 2 arguments. 1 were passed in.", "code" : 16020, "codeName" : "Location16020", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672316528, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "AQdCMYi97RDDdBHQa93Rc6DWj5o=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(36020, X'9f1db7a56fc97e55be5f7914ea7f075dfc0e47f1e7343239b21475920eaadfdb', TIMESTAMP WITH TIME ZONE '2022-12-29 12:22:17.592458+00', 58, 0, TRUE, 'ad-hoc', 'Command failed with error 16020 (Location16020): ''Expression $gte takes exactly 2 arguments. 1 were passed in.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1672316528, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Expression $gte takes exactly 2 arguments. 1 were passed in.", "code" : 16020, "codeName" : "Location16020", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672316528, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "AQdCMYi97RDDdBHQa93Rc6DWj5o=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36021, X'8f9a4a71ca30e55f196d165fa70b9797a4ebfb1819b3d99bab07827bd7707da6', TIMESTAMP WITH TIME ZONE '2022-12-29 12:22:20.460111+00', 15, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 3, NULL), +(36022, X'933718e3e67d81683acde31a278ae7cfed5ee9d55d944487941e8030e9750564', TIMESTAMP WITH TIME ZONE '2022-12-29 12:23:18.840984+00', 241350, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36023, X'933718e3e67d81683acde31a278ae7cfed5ee9d55d944487941e8030e9750564', TIMESTAMP WITH TIME ZONE '2022-12-29 12:23:18.840984+00', 241366, 0, TRUE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(36024, X'b7df71cf435d3601b86345156b96efcb519823544d62666ce610c59d78a9fab2', TIMESTAMP WITH TIME ZONE '2022-12-29 12:22:23.342722+00', 326608, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36025, X'b7df71cf435d3601b86345156b96efcb519823544d62666ce610c59d78a9fab2', TIMESTAMP WITH TIME ZONE '2022-12-29 12:22:23.342722+00', 326617, 0, TRUE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(36026, X'20948c0d0ee978edb24ddf3c80f3910adafdb6375660eb47c710f7acae38e4b5', TIMESTAMP WITH TIME ZONE '2022-12-29 12:27:20.112991+00', 227040, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36027, X'56eeaddd9ba5086db2af82247b59feb488a61be285ebf4224ad420d271357cf3', TIMESTAMP WITH TIME ZONE '2022-12-29 12:33:53.568618+00', 162661, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36028, X'56eeaddd9ba5086db2af82247b59feb488a61be285ebf4224ad420d271357cf3', TIMESTAMP WITH TIME ZONE '2022-12-29 12:36:55.034065+00', 44688, 0, TRUE, 'ad-hoc', 'Command failed with error 175 (QueryPlanKilled): ''collection dropped. UUID a10c4ad4-2627-41e6-9498-0d3eb544f9a5'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1672317459, "i" : 8124 } }, "ok" : 0.0, "errmsg" : "collection dropped. UUID a10c4ad4-2627-41e6-9498-0d3eb544f9a5", "code" : 175, "codeName" : "QueryPlanKilled", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672317459, "i" : 8124 } }, "signature" : { "hash" : { "$binary" : "E/4KFrrmvm6ATgFCnzIwEzQDqi0=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(36029, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.855173+00', 623, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36030, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.819742+00', 1031, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36031, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.806968+00', 1149, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36032, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.837379+00', 1438, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36033, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.926968+00', 1941, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36034, X'4267e6444b86628c04da99b170b9105b9edbd15053808e4c38e0892311a1f214', TIMESTAMP WITH TIME ZONE '2022-12-29 12:39:36.728062+00', 58784, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36035, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.916661+00', 209995, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36036, X'97a3f4e6c47f3e963231ae1cb944f4e9c4c7ac2788ebd1d0d2e9212ec7ec78cc', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.808798+00', 349309, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36037, X'ecb99e24c2a6f25bd6c55b2a83685fa429a1af3d0fbb7e8f5cb4e6ce4b1dac50', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:48.71334+00', 331016, 0, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36038, X'ecb99e24c2a6f25bd6c55b2a83685fa429a1af3d0fbb7e8f5cb4e6ce4b1dac50', TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:48.71334+00', 331018, 0, TRUE, 'question', 'Closed', 1, 13, NULL, NULL, 3, NULL), +(36039, X'a709e3d3491f0a31f41e23a15cda62efbc413c207aa63bcfbcc612141d6881d3', TIMESTAMP WITH TIME ZONE '2022-12-29 12:52:51.535839+00', 296068, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36040, X'e78f416e3867cbf1363abab8b4fa677704d0df8059fc15f691f08e9b39b25c55', TIMESTAMP WITH TIME ZONE '2022-12-29 13:34:50.628661+00', 740, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36041, X'd2b80d68041313f2e6e89defa502a1aa2db0ec51d671a36b81534ad1a0607a20', TIMESTAMP WITH TIME ZONE '2022-12-29 13:34:59.533793+00', 394, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36042, X'6bd0d88cc71d27773a80d1cc83e6e68731943b92e7d137ee4e4c9d7576502e06', TIMESTAMP WITH TIME ZONE '2022-12-29 13:35:01.692687+00', 26, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 3, NULL), +(36043, X'403f99ec306d2509e0cc183a1e01e178c5b51a0c5d268da27facc72c2e762a4c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:35:04.677917+00', 135, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$and/$or/$nor must be a nonempty array'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1672320898, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$and/$or/$nor must be a nonempty array", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672320898, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "97V2KSjHafYCEvEl4tn/A1ksadc=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(36044, X'91fad3d140caa88a8f79e97fd264a2666bd86b3d571fed53a327493209e99ee3', TIMESTAMP WITH TIME ZONE '2022-12-29 13:35:08.781443+00', 53, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$and/$or/$nor must be a nonempty array'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1672320908, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$and/$or/$nor must be a nonempty array", "code" : 2, "codeName" : "BadValue", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672320908, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "U+JDrjr3iz0GA+2OagDi/2AKLZA=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(36045, X'ae75a6a67096a47e69de5f6021102a7ecb0eaf3f24cce6e53862436e499dc3c1', TIMESTAMP WITH TIME ZONE '2022-12-29 13:35:34.341127+00', 467, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36046, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.141238+00', 370, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36047, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.148683+00', 1011, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36048, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.184748+00', 1200, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36049, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.198741+00', 1311, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36050, X'2214bea26db26486f8f4acc38ef2469a9beb236dc7087fa15d9ff390fa861e82', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.212099+00', 1501, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36051, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.148835+00', 1735, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36052, X'c43561e7bf701bfee0c5d22dc8bbe3a930cf9016cd5c1b2574f68ccf0b4b057d', TIMESTAMP WITH TIME ZONE '2022-12-29 13:37:46.936257+00', 836, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36053, X'7e382eea92179c5e62e14b4d1c1b5a7ae92903352db2e7da24216a2592d50c8a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:38:35.536254+00', 497, 38, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36054, X'16a946244dda1771ac5362b7f73c3865d16c8c312a4998180f5db6d88b67769c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:39:08.573373+00', 443, 38, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36055, X'4af8cd509647571d3f6f0270186a12eb9671d435293382e2bc4dbf96efb03028', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.293008+00', 192856, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36056, X'670348114222f718a6a7fc1efbec8275c9126da4f0824194054b23f52f05690d', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:15.097818+00', 188410, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36057, X'670348114222f718a6a7fc1efbec8275c9126da4f0824194054b23f52f05690d', TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:15.097818+00', 188417, 0, TRUE, 'question', 'Closed', 1, 9, NULL, NULL, 3, NULL), +(36058, X'375691beab0d0f40e2fcee142199a148338c3654b6dc5d2179b5aa3a23aea191', TIMESTAMP WITH TIME ZONE '2022-12-29 13:39:40.518397+00', 12, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is END_OF_DOCUMENT.', 1, NULL, NULL, NULL, 3, NULL), +(36059, X'5e9889bf88119dbf6b92966de7718b37afbf7e9ff2b53c4022e090e361ad773f', TIMESTAMP WITH TIME ZONE '2022-12-29 13:39:48.051412+00', 523, 38, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36060, X'05f29d7a41ee1ddf78cbafe9d1d8f47a86049c5fd88bfeb1d6569398e6d6c73b', TIMESTAMP WITH TIME ZONE '2022-12-29 13:39:59.667662+00', 420, 38, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36061, X'd47d866253104d5fd1a24273164bfd3d3d319bf8a4fd20d3e006f0e0ad5f97bb', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:05.073329+00', 418, 38, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36062, X'7ca6fe17002dc2b431201fbe3791633634c139c7eef61c3e3c1574c21517f63b', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:08.692698+00', 7, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 3, NULL), +(36063, X'5e9889bf88119dbf6b92966de7718b37afbf7e9ff2b53c4022e090e361ad773f', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:16.36637+00', 405, 38, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36064, X'75bb9544889c17865c44b92ce50bda1643a90df2c6ed2d9e1cf162399d4659e6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:39.960023+00', 506, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36065, X'd88a4b3f371d47b4c44db478779d37fd5187683c752883cd7b903313842a9167', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:50.337469+00', 482, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36066, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.678689+00', 364, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36067, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.68012+00', 375, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36068, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.781712+00', 455, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36069, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.809796+00', 486, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36070, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.755857+00', 620, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36071, X'56ca1b5251b5ff7dfdfb2bf68fa3abdd3402a3358164815379fd00cb6d82e020', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.672122+00', 713, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36072, X'2214bea26db26486f8f4acc38ef2469a9beb236dc7087fa15d9ff390fa861e82', TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.777048+00', 795, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36073, X'e21d31d866861f122f86902aa5e3101ce5d9af6078c2d66d79fa43531519ec9e', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.08143+00', 895, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36074, X'062e17c3a01a5c76eb654d9f9ad3636f5b0cee3f47b6e2bb88cd618894f6643a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.169292+00', 828, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36075, X'844648d2e75bba28794fa6bb13618d842408258b0b8876455ef117ba241320ac', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.093671+00', 900, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36076, X'7201efc3e28b71c0e5ea6a869da603fca97e47585e1e9453d2a48958d807a1ca', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.145095+00', 882, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36077, X'fd9afcf308a8f67e647e038328ad08ea241b1c0fbbe93c4110fa2570af4bff5f', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.211399+00', 1217, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36078, X'd147f7343999d99b3148b10d7d7d6489154ca0315c120f4f8b16b126ea236bb6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.172344+00', 1280, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36079, X'5a18d1938591fa249d78177022a404c51059cd374f62f46e1ff1f2ea2ceffe74', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.180172+00', 1380, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36080, X'face3825450560c33ab88b86e1c8c580e97b065512e8523d28ca8b94f89c1ffe', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:33.811506+00', 440, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36081, X'face3825450560c33ab88b86e1c8c580e97b065512e8523d28ca8b94f89c1ffe', TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:50.626226+00', 426, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36082, X'5178ea7376cdf971e9b7114f356ccc9ffbb1ad0a1d2b1c4919ad4b0b4d60cfef', TIMESTAMP WITH TIME ZONE '2022-12-29 13:44:04.377353+00', 626, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36083, X'69e74560b25a0406ab7cb40fce0cb95dd7a022c489aff1aff952e54fd9a83871', TIMESTAMP WITH TIME ZONE '2022-12-29 13:44:17.375488+00', 896, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36084, X'69e74560b25a0406ab7cb40fce0cb95dd7a022c489aff1aff952e54fd9a83871', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:12.705633+00', 1069, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36085, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.823224+00', 376, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36086, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.818179+00', 429, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36087, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.786608+00', 544, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36088, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.878887+00', 534, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36089, X'56ca1b5251b5ff7dfdfb2bf68fa3abdd3402a3358164815379fd00cb6d82e020', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.803409+00', 726, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36090, X'2214bea26db26486f8f4acc38ef2469a9beb236dc7087fa15d9ff390fa861e82', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.806805+00', 764, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36091, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.801073+00', 784, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36092, X'face3825450560c33ab88b86e1c8c580e97b065512e8523d28ca8b94f89c1ffe', TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:38.466851+00', 476, 0, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36093, X'd4c4a6bc8597da75228c7aa475a2144a27f6323510071bc8d12f31322e914724', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:22.201531+00', 495, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36094, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.327371+00', 374, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36095, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.346329+00', 377, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36096, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.410601+00', 431, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36097, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.423548+00', 487, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36098, X'2214bea26db26486f8f4acc38ef2469a9beb236dc7087fa15d9ff390fa861e82', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.389631+00', 561, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36099, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.387893+00', 645, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36100, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.417965+00', 818, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36101, X'24b79b800880fb8235de74845350918ff94699db63555a06b8ffa680920ce5a0', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:43.493585+00', 471, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36102, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.41286+00', 392, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36103, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.35338+00', 480, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36104, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.397672+00', 519, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36105, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.3804+00', 553, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36106, X'2214bea26db26486f8f4acc38ef2469a9beb236dc7087fa15d9ff390fa861e82', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.364766+00', 725, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36107, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.382312+00', 768, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36108, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.418223+00', 847, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36109, X'24b79b800880fb8235de74845350918ff94699db63555a06b8ffa680920ce5a0', TIMESTAMP WITH TIME ZONE '2022-12-29 13:48:37.86942+00', 521, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36110, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:12.990891+00', 325, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36111, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.009073+00', 548, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36112, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.036619+00', 548, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36113, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.037341+00', 579, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36114, X'2214bea26db26486f8f4acc38ef2469a9beb236dc7087fa15d9ff390fa861e82', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:12.990896+00', 796, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36115, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.035356+00', 802, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36116, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.029794+00', 973, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36117, X'71c0b106eb58a3e35ad6cf4732258fd136b3c443b9b0948cba763b857abf4e4c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:14.870004+00', 22, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 13, NULL, NULL, 3, NULL), +(36118, X'873e1145488d56df9105371c1ac8504fe1eecfecf32bc6ab05f2323192745bca', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:28.84834+00', 10, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 3, NULL), +(36119, X'd05ca19f6c4e2cf191acb35943919caa510d556de6c29b0a4c11919a32c51260', TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:59.131007+00', 490, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36120, X'a28ccacdcb70651a0097c178d6d2e1626e0bd95b52e5d83fbd9ff6f0a2811aac', TIMESTAMP WITH TIME ZONE '2022-12-29 13:51:05.526567+00', 503, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36121, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.304729+00', 329, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36122, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.334209+00', 393, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36123, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.25994+00', 491, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36124, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.423572+00', 422, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36125, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.347046+00', 626, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36126, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.32105+00', 784, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36127, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.28585+00', 970, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36128, X'24b79b800880fb8235de74845350918ff94699db63555a06b8ffa680920ce5a0', TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:15.212759+00', 536, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(36129, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.126561+00', 329, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36130, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.099433+00', 379, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36131, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.11881+00', 437, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36132, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.122379+00', 512, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36133, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.043843+00', 792, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36134, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.134689+00', 703, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36135, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.147464+00', 764, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36136, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.989156+00', 2920, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36137, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.989156+00', 2995, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(36138, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.587579+00', 4709, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36139, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.587579+00', 4728, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(36140, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.715626+00', 3842, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36141, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.715626+00', 3862, 0, TRUE, 'public-dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(36142, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.933257+00', 4970, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36143, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.933257+00', 4999, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(36144, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.570758+00', 6103, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36145, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:32.570758+00', 6256, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(36146, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.990908+00', 4869, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36147, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.687511+00', 5417, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36148, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:35.432653+00', 3743, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36149, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.67843+00', 5675, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36150, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.687511+00', 5726, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36151, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.182854+00', 5637, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36152, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:36.621015+00', 3351, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 3, NULL, 3, NULL), +(36153, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:36.621015+00', 3202, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36154, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:35.109525+00', 6125, 0, FALSE, 'public-dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672322378, "i" : 8 } }, "signature" : { "hash" : { "$binary" : "btTrcK9tS/yqr2wrJtqp7QAxsFo=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672322378, "i" : 8 } } }', 1, 26, 3, NULL, 2, NULL), +(36155, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.89798+00', 8659, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 3, NULL), +(36156, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.042215+00', 8754, 0, FALSE, 'public-dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672322378, "i" : 8 } }, "signature" : { "hash" : { "$binary" : "btTrcK9tS/yqr2wrJtqp7QAxsFo=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672322378, "i" : 8 } } }', 1, 26, 3, NULL, 2, NULL), +(36157, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.89798+00', 7841, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36158, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.109241+00', 8784, 6, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36159, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.269487+00', 9085, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36160, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:35.688851+00', 8063, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36161, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.959171+00', 9954, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36162, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.1436+00', 9668, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36163, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.026272+00', 9896, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36164, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.985618+00', 9949, 0, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36165, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.870957+00', 10152, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36166, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.985618+00', 10095, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 3, NULL, 3, NULL), +(36167, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.656313+00', 9468, 2, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36168, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.125606+00', 10123, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36169, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.013217+00', 10013, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36170, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.959171+00', 9995, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 3, NULL), +(36171, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.033769+00', 10301, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36172, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:33.870957+00', 10433, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(36173, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.32785+00', 10031, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 19, 3, NULL, 3, NULL), +(36174, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.026272+00', 10310, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 3, NULL), +(36175, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.187709+00', 10234, 6, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36176, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.013217+00', 10567, 0, TRUE, 'public-dashboard', 'Closed', 1, 21, 3, NULL, 3, NULL), +(36177, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.221716+00', 10327, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36178, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.221716+00', 10802, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 3, NULL), +(36179, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.614385+00', 10463, 4, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36180, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:36.112077+00', 9041, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36181, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:34.578168+00', 12351, 361, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36182, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.807689+00', 2447, 0, FALSE, 'public-dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672322668, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "zFIGVFKJ3F6xYNW+jdyw0A+bk/8=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672322668, "i" : 1 } } }', 1, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36183, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.72279+00', 2164, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36184, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.536347+00', 4494, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36185, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.742073+00', 4388, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36186, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.694262+00', 4501, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36187, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.746902+00', 4496, 2, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36188, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.570304+00', 4946, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36189, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.694116+00', 4822, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36190, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.745764+00', 4812, 6, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36191, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.702547+00', 4899, 6, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36192, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.541579+00', 5109, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36193, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.818308+00', 4953, 4, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36194, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.684599+00', 5184, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36195, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.626063+00', 5480, 361, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36196, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.523981+00', 5979, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36197, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:33.558838+00', 6048, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36198, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.509252+00', 555, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36199, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.41325+00', 1270, 0, FALSE, 'public-dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672322968, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "anTcbAtSDVTvA+6XW18gVf8dpgI=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672322968, "i" : 1 } } }', 1, 26, 3, NULL, 2, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36200, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.192899+00', 2519, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36201, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.285332+00', 2491, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36202, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.394104+00', 2459, 2, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36203, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.259877+00', 2658, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36204, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.282848+00', 2725, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36205, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.512834+00', 2562, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36206, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.168363+00', 2917, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36207, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.423922+00', 2683, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36208, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.372912+00', 2793, 6, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36209, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.210254+00', 2989, 6, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36210, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.459346+00', 2846, 4, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36211, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.51079+00', 2811, 361, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36212, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.224198+00', 3464, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36213, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:33.313455+00', 3392, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36214, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.790211+00', 330, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36215, X'c61d8bc91b6d0b7f8ce137af0b3787b8e1838a143197bd06356ef5def6e3aa3d', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.816948+00', 514, 0, FALSE, 'public-dashboard', 'Command failed with error 18 (AuthenticationFailed): ''Authentication failed.'' on server mongo1:27017. The full response is { "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1672323298, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "sCxLoFSKHTBn37C7Gogtwf1c8TE=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } }, "operationTime" : { "$timestamp" : { "t" : 1672323298, "i" : 1 } } }', 1, 26, 3, NULL, 2, NULL), +(36216, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.844867+00', 1289, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36217, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.828587+00', 1402, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36218, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.793091+00', 1436, 2, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36219, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.911925+00', 1438, 6, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36220, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.830171+00', 1595, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36221, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.876846+00', 1597, 6, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36222, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:02.917865+00', 1592, 4, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36223, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.242357+00', 530, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36224, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.346156+00', 537, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36225, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.440869+00', 632, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36226, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.243634+00', 905, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36227, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.244937+00', 980, 361, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36228, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.222274+00', 2824, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36229, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.330479+00', 2764, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36230, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.754635+00', 463, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36231, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.776512+00', 625, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36232, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.697655+00', 740, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36233, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.853334+00', 662, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36234, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.704184+00', 825, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36235, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.704478+00', 911, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36236, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.715672+00', 937, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36237, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.749178+00', 944, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36238, X'efe4bc37686033a4df972a22f20d9cd0cccf3cc4b982aedf5d6c5cf280e9f106', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:25.864981+00', 157, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(36239, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.184458+00', 249, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36240, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.221777+00', 542, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36241, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.22993+00', 588, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36242, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.248577+00', 650, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36243, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.236964+00', 691, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36244, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.167202+00', 845, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36245, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.352706+00', 684, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36246, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.208713+00', 930, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36247, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.195318+00', 268, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36248, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.260923+00', 388, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36249, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.170006+00', 527, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36250, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.225385+00', 501, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36251, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.24115+00', 516, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36252, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.13646+00', 638, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36253, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.247502+00', 535, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36254, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.291475+00', 546, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36255, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.632273+00', 222, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36256, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.623595+00', 391, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36257, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.683163+00', 412, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36258, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.74932+00', 391, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36259, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.678593+00', 675, 361, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36260, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.699425+00', 760, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36261, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.731308+00', 785, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36262, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.86127+00', 2738, 0, FALSE, 'public-dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36263, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.865561+00', 3729, 2, FALSE, 'public-dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36264, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.866269+00', 3749, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36265, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.86611+00', 3729, 2, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36266, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.88466+00', 3894, 6, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36267, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.858444+00', 4050, 6, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36268, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.858349+00', 3996, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36269, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:17.931331+00', 3994, 4, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36270, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:45.933499+00', 1958, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36271, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:45.930587+00', 1928, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36272, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:45.930121+00', 2157, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36273, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:45.931417+00', 2165, 10, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36274, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:45.931816+00', 2563, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36275, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:45.930109+00', 2677, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36276, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:45.930113+00', 4048, 361, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36277, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:14.233434+00', 6446, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36278, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:14.236559+00', 6267, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36279, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:14.234172+00', 6727, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36280, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:14.236594+00', 6855, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36281, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:14.236577+00', 7787, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36282, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:14.236495+00', 8727, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36283, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:14.233186+00', 8933, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36284, X'a197ca935c75bd52a644b6529c0f18cdd380e648cf9f3480ba4398a276027a8e', TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:36.257761+00', 984, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(36285, X'a197ca935c75bd52a644b6529c0f18cdd380e648cf9f3480ba4398a276027a8e', TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:04.975586+00', 9053, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(36286, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:26.520826+00', 1485, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36287, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:26.518485+00', 1423, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36288, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:26.518894+00', 1322, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36289, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:26.51954+00', 1448, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36290, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:26.520301+00', 1484, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(36291, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:26.518435+00', 2136, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36292, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:26.539283+00', 2123, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36293, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:30.673041+00', 381, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(36294, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:30.753318+00', 555, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(36295, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:30.8215+00', 577, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(36296, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:30.771293+00', 838, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(36297, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:30.805386+00', 1015, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36298, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:30.786095+00', 1271, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(36299, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:30.793947+00', 1298, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(36300, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:30.377939+00', 401, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36301, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:30.060455+00', 1566, 0, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36302, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:30.061194+00', 1565, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36303, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:30.221327+00', 1414, 0, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36304, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:29.957062+00', 1987, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36305, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:30.011733+00', 1976, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36306, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:29.997239+00', 2012, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36307, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:30.021612+00', 1999, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36308, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.716827+00', 293, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(36309, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.344817+00', 773, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(36310, X'd2c662db25639cd341c04bf0520463ba79345ec80723d9a62ed010ad16828a09', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.568787+00', 632, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(36311, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.512827+00', 702, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(36312, X'f290968b0655a6852e4b6b249c8045123982caea85dadd73266d51d87bf09c6a', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.347808+00', 914, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(36313, X'e349b69c5b6b497eb24720017fa3cbeac1b8f26c822585e4ebe8df5b87269c6c', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.333641+00', 1083, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(36314, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.80958+00', 723, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(36315, X'410f7fc32dbdddd01f32d42c6961b7b43a3685d2eed61499665c0d63641b9f54', TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:34.787358+00', 781, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(36316, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.525895+00', 2314, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36317, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.676618+00', 2192, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36318, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.676618+00', 2162, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36319, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.435107+00', 7147, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36320, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.680866+00', 6901, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36321, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.539709+00', 7041, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36322, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.435245+00', 7261, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36323, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.434617+00', 7147, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36324, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.435107+00', 7244, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(36325, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.539709+00', 7327, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36326, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.556149+00', 7142, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36327, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.434751+00', 7261, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36328, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.691459+00', 7983, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(36329, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.716396+00', 8002, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36330, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.701375+00', 7001, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36331, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.676476+00', 8321, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36332, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.691459+00', 7948, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36333, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.676725+00', 8320, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36334, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.434751+00', 7612, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36335, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.676476+00', 8419, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36336, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.722686+00', 8392, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36337, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.680866+00', 7326, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(36338, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.555716+00', 8537, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36339, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.687877+00', 8503, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36340, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.687877+00', 8696, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(36341, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.685447+00', 8721, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36342, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.675561+00', 8865, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36343, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.435145+00', 9104, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36344, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.502146+00', 9047, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36345, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.680111+00', 8881, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36346, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.685169+00', 8854, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36347, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.518932+00', 9028, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36348, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.675561+00', 8928, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(36349, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.51159+00', 9035, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36350, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.680111+00', 8938, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36351, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.685169+00', 8883, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(36352, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.691459+00', 8935, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 20, 3, NULL, 3, NULL), +(36353, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.502146+00', 9139, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36354, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.676103+00', 11776, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36355, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.676103+00', 11809, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36356, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.6809+00', 11905, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36357, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.675286+00', 11798, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36358, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.6809+00', 11917, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36359, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:24.434766+00', 12173, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36360, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.529289+00', 6526, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36361, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.918582+00', 8278, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36362, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.67824+00', 8518, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36363, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.454459+00', 8739, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36364, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.454459+00', 8735, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36365, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.452641+00', 8796, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36366, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.454647+00', 9135, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36367, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.60806+00', 10091, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36368, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:30.033664+00', 9678, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36369, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.686872+00', 10033, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36370, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.935805+00', 9784, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36371, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.901689+00', 9830, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36372, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.456394+00', 10296, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36373, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.838155+00', 12947, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36374, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:29.842578+00', 12945, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36375, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.988662+00', 835, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36376, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:20.054894+00', 2251, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36377, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.873068+00', 2418, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36378, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.894062+00', 2414, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36379, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:20.069177+00', 2245, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36380, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:20.077028+00', 2227, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36381, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:20.045065+00', 2404, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36382, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:20.121404+00', 3219, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36383, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.959288+00', 3461, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36384, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.940344+00', 3494, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36385, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.912919+00', 3509, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36386, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.865408+00', 3587, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36387, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.968617+00', 3490, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36388, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.979765+00', 4797, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36389, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:19.927761+00', 4853, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36390, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.582195+00', 885, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36391, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.67858+00', 1643, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36392, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.533316+00', 1801, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36393, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.622432+00', 1719, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36394, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.714811+00', 1626, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36395, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.484283+00', 1898, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36396, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.520754+00', 1904, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36397, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.484079+00', 2533, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36398, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.550116+00', 2497, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36399, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.483729+00', 2571, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36400, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.634888+00', 2418, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36401, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.569131+00', 2488, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36402, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.512854+00', 2558, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36403, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.568958+00', 3276, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36404, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:20.483309+00', 3382, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36405, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:36.10583+00', 1328, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36406, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.955116+00', 2478, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36407, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.955116+00', 2595, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36408, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.97421+00', 2597, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36409, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:36.4064+00', 1165, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36410, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:36.092976+00', 1489, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36411, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.973592+00', 2609, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36412, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.973592+00', 2710, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36413, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.97421+00', 2609, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36414, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.962987+00', 3021, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36415, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:36.419484+00', 1381, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36416, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.955124+00', 3012, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36417, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.955124+00', 3029, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36418, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:36.406161+00', 1377, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36419, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.962987+00', 3060, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36420, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.955124+00', 6750, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 3, NULL), +(36421, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.955164+00', 7063, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36422, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:34.955164+00', 7111, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36423, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:36.118065+00', 6029, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36424, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:36.109687+00', 6059, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36425, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:43.819101+00', 2155, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36426, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:43.773088+00', 2201, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36427, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:43.789638+00', 2175, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36428, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:43.819726+00', 2792, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36429, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:43.821853+00', 2807, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36430, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:43.787456+00', 3831, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36431, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:43.773091+00', 3856, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36432, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:45.269116+00', 1146, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36433, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:45.198509+00', 1219, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36434, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:45.230125+00', 1169, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36435, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:45.250064+00', 1759, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36436, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:45.238009+00', 1806, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36437, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:45.196501+00', 2619, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36438, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:45.195037+00', 2633, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36439, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.012701+00', 1728, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36440, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.988327+00', 1784, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36441, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.987934+00', 1811, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36442, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.046323+00', 1752, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36443, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.046323+00', 1694, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36444, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.992459+00', 1743, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36445, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.987934+00', 1782, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36446, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.992459+00', 1806, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36447, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.02653+00', 1709, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36448, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.09174+00', 2261, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36449, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.987417+00', 2336, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36450, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.01994+00', 2354, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36451, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.988405+00', 2378, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 3, NULL), +(36452, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.01994+00', 2375, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36453, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.07599+00', 4066, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36454, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.988383+00', 4153, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36455, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.988383+00', 4181, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36456, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:46.07599+00', 4109, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36457, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.988395+00', 4223, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36458, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:45.988492+00', 4259, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36459, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.463711+00', 2116, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36460, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.395574+00', 2201, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36461, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.068956+00', 2526, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36462, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.362512+00', 2953, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36463, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.474221+00', 2852, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36464, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.478929+00', 4377, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36465, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.20246+00', 4651, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36466, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.20246+00', 4662, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36467, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:49.478929+00', 4387, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36468, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:32.170753+00', 877, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36469, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.507269+00', 3223, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36470, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.917918+00', 2815, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36471, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.222592+00', 3549, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36472, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.915542+00', 2877, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36473, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.927242+00', 2864, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36474, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.24171+00', 3549, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36475, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:32.19832+00', 2596, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36476, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.818136+00', 2970, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36477, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.24171+00', 3563, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36478, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.222592+00', 3571, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36479, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.507269+00', 3383, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36480, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.556778+00', 3383, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36481, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.671173+00', 4215, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36482, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.788995+00', 4319, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36483, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.902871+00', 4205, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36484, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.919299+00', 4190, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36485, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.251983+00', 4936, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36486, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.824728+00', 4200, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36487, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.96976+00', 4292, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36488, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.893004+00', 4297, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36489, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.788995+00', 4382, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36490, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.251983+00', 4997, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36491, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.783251+00', 6208, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36492, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.891559+00', 6156, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36493, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.891559+00', 6199, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36494, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.300726+00', 6801, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36495, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:31.300726+00', 6807, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36496, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:32.171108+00', 5977, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36497, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.489244+00', 6799, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(36498, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.297397+00', 6856, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36499, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.489244+00', 6658, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36500, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.802468+00', 8147, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36501, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.812033+00', 8130, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36502, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.85771+00', 8087, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36503, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.805231+00', 8210, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(36504, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.868291+00', 8087, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36505, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.298539+00', 8689, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36506, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.805231+00', 8130, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36507, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.817206+00', 8171, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36508, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.832677+00', 8110, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36509, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.817206+00', 8269, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(36510, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.514832+00', 8570, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36511, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.868291+00', 8254, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36512, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.470916+00', 8569, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36513, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.804979+00', 8508, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36514, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.832677+00', 8358, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(36515, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.83265+00', 8480, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36516, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.804979+00', 8525, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36517, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.514832+00', 8609, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36518, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.804975+00', 9958, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36519, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.804975+00', 10076, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(36520, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.812221+00', 10040, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36521, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.81504+00', 9961, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36522, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.800864+00', 10223, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36523, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.297446+00', 10811, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36524, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.856023+00', 10259, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36525, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.298104+00', 10655, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36526, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.800864+00', 10307, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36527, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.298104+00', 10714, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36528, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.808621+00', 10492, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36529, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.835488+00', 10449, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36530, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.835488+00', 10452, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(36531, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.297446+00', 10820, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(36532, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.800864+00', 10150, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36533, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.554478+00', 10769, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36534, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.554478+00', 10821, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36535, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.815303+00', 10509, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36536, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.798194+00', 13426, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36537, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.798194+00', 13408, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36538, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.807585+00', 13416, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36539, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.801089+00', 13574, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36540, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.829694+00', 13570, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36541, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:24.801089+00', 13597, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36542, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:50.817779+00', 3258, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36543, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:50.799858+00', 3171, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36544, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:50.823752+00', 3228, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36545, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:50.729592+00', 4060, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36546, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:50.862569+00', 3915, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36547, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:50.67793+00', 5326, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36548, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:50.67793+00', 5382, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36549, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.698082+00', 2923, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36550, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.725186+00', 3177, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36551, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.717832+00', 3186, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36552, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.701064+00', 3686, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36553, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.746127+00', 3601, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36554, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.641372+00', 3888, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36555, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.696653+00', 3918, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36556, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.805093+00', 3949, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36557, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.78893+00', 4100, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36558, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.69659+00', 4470, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36559, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.724707+00', 4487, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36560, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.770193+00', 4452, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36561, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.741041+00', 4506, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36562, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.533269+00', 5163, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36563, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:33.699812+00', 5161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36564, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.603087+00', 710, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36565, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.527662+00', 1743, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36566, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.57301+00', 1934, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36567, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.585543+00', 1919, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36568, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.603244+00', 1907, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36569, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.618762+00', 1897, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36570, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.706959+00', 1798, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36571, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.562764+00', 3273, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36572, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.701346+00', 3182, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36573, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.695695+00', 3196, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36574, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.490184+00', 3402, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36575, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.630245+00', 3309, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36576, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.622719+00', 3315, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36577, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.550479+00', 4556, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36578, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:20.490105+00', 4761, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36579, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:32.131349+00', 481, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36580, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.630094+00', 1646, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36581, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.773184+00', 1519, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36582, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.644698+00', 1661, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36583, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:32.048816+00', 1256, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36584, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:32.176198+00', 1102, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36585, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:32.169083+00', 1165, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36586, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.773992+00', 2153, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36587, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.919392+00', 2019, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36588, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.718797+00', 2238, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36589, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.862255+00', 2085, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36590, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.86194+00', 2114, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36591, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.987901+00', 2005, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36592, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.601033+00', 2835, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36593, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:31.590997+00', 2852, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36594, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.355636+00', 1138, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36595, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.488102+00', 1002, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36596, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.355636+00', 1238, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36597, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.171961+00', 1318, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36598, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.304385+00', 1188, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36599, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.304385+00', 1233, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36600, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.343359+00', 1347, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36601, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.195149+00', 1500, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36602, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.195149+00', 1522, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36603, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.192483+00', 1690, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36604, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.301401+00', 2077, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36605, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.666158+00', 2713, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36606, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.301401+00', 2165, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36607, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.45554+00', 2267, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36608, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.45554+00', 2266, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36609, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.491845+00', 3239, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36610, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.491845+00', 3244, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36611, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.48713+00', 3648, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36612, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.300815+00', 2849, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36613, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:33.48713+00', 3681, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36614, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.194472+00', 3148, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36615, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.143929+00', 1469, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36616, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.235277+00', 1435, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36617, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.143929+00', 1609, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(36618, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.283011+00', 2006, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36619, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.330895+00', 1998, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36620, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.302689+00', 3025, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36621, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.141563+00', 3203, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36622, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.143859+00', 3187, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36623, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.166769+00', 3145, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36624, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.459497+00', 1939, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36625, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.141563+00', 3177, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36626, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.228697+00', 3091, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36627, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.146458+00', 3267, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36628, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.459497+00', 1955, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36629, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.330895+00', 2123, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36630, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.166769+00', 3295, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(36631, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.302689+00', 3253, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(36632, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.974841+00', 1781, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36633, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.393854+00', 2392, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36634, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.925278+00', 1880, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36635, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.393854+00', 2404, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36636, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.143167+00', 6135, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36637, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.143167+00', 6190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(36638, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.184544+00', 6670, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36639, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.157041+00', 6738, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36640, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.283465+00', 5768, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36641, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.157041+00', 6780, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(36642, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.938168+00', 6263, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36643, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.283465+00', 5890, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36644, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.184769+00', 7055, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36645, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.938168+00', 6287, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(36646, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.890618+00', 5547, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36647, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.142843+00', 7285, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36648, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.268594+00', 7157, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36649, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.210172+00', 6995, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36650, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.63608+00', 6137, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36651, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:18.142843+00', 7375, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(36652, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.787035+00', 5958, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36653, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.63608+00', 6143, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36654, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.838433+00', 8474, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36655, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.838433+00', 8480, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36656, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.550281+00', 8845, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36657, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.550281+00', 8849, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36658, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.87732+00', 8619, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36659, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.875983+00', 8657, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36660, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.863967+00', 1744, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36661, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:34.868117+00', 3788, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36662, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.553428+00', 3141, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36663, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.929182+00', 2768, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36664, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.582331+00', 3071, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36665, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.840333+00', 2997, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36666, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.613805+00', 3255, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36667, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.893244+00', 4296, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36668, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.871222+00', 4381, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36669, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.894652+00', 4390, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36670, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.724634+00', 4575, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36671, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.863507+00', 4462, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36672, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:35.614007+00', 4699, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36673, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:34.86815+00', 7005, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36674, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:34.86811+00', 7021, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36675, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.445041+00', 2639, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36676, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.474082+00', 3401, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36677, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.443914+00', 3343, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36678, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.458889+00', 3327, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36679, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.444179+00', 3326, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36680, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.495671+00', 3274, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36681, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.47624+00', 3603, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36682, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.490528+00', 4879, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36683, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.444163+00', 4961, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36684, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.444235+00', 4999, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36685, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.506266+00', 4973, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36686, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.444282+00', 5082, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36687, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.444138+00', 5090, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36688, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.491757+00', 6957, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36689, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:24.451763+00', 7082, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36690, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.381619+00', 2190, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36691, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.358196+00', 3318, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36692, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.436487+00', 3239, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36693, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.229107+00', 3462, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36694, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.295304+00', 3432, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36695, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.394179+00', 3328, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36696, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.094264+00', 3785, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36697, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.135449+00', 5077, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36698, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.030879+00', 5213, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36699, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.345894+00', 4898, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36700, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.414435+00', 4846, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36701, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.076324+00', 5243, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36702, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.030843+00', 5288, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36703, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.261147+00', 6413, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36704, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:21.308793+00', 6378, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36705, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.556934+00', 1311, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36706, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.504746+00', 10055, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36707, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.520759+00', 10038, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36708, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.366663+00', 10188, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36709, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.371348+00', 10182, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36710, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.246783+00', 10311, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36711, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.385386+00', 10397, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36712, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.341192+00', 10219, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36713, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.380753+00', 10174, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36714, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.246233+00', 10537, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36715, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.402301+00', 10395, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36716, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.336332+00', 10452, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36717, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.25562+00', 10553, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36718, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.412825+00', 10413, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36719, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:21.456121+00', 10361, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36720, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.467385+00', 1748, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(36721, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.329504+00', 2430, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36722, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.291861+00', 2485, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36723, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.291914+00', 2464, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36724, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.466927+00', 2294, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36725, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.438338+00', 2424, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36726, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.359219+00', 2635, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36727, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.310691+00', 3335, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36728, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.475011+00', 3183, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36729, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.416096+00', 3261, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36730, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.408962+00', 3266, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36731, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.291867+00', 3426, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36732, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.410088+00', 3321, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36733, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.291833+00', 4368, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36734, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:48.430761+00', 4233, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36735, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.735333+00', 1042, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36736, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.606907+00', 1793, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(36737, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.57445+00', 1831, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(36738, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.529464+00', 1880, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36739, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.515929+00', 1896, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(36740, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.444704+00', 1975, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36741, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.466446+00', 2035, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36742, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.484773+00', 7856, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(36743, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.709495+00', 7627, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36744, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.663276+00', 7670, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36745, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.607557+00', 7728, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(36746, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.504636+00', 8314, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36747, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.744492+00', 7589, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(36748, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.699052+00', 7635, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(36749, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:46.44464+00', 8380, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36750, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.817051+00', 4280, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36751, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.682592+00', 4408, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36752, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.603483+00', 4487, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36753, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.602751+00', 4489, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36754, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.825286+00', 4266, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36755, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.492033+00', 4600, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36756, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.602751+00', 4570, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36757, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.492033+00', 4711, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36758, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.682592+00', 4490, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36759, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.621363+00', 7254, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36760, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.640243+00', 7285, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36761, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.621353+00', 7321, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36762, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.813881+00', 7100, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36763, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.640243+00', 7373, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36764, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.813881+00', 7226, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36765, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.581188+00', 12161, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36766, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.581188+00', 12175, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36767, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.500757+00', 12288, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36768, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.500757+00', 12319, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36769, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.819546+00', 11990, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36770, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:23.664945+00', 12368, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36771, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.635836+00', 2124, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36772, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.752845+00', 2007, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36773, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.635836+00', 2170, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36774, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.647884+00', 2114, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36775, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.647884+00', 2142, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36776, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.909866+00', 1963, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36777, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.800874+00', 2047, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36778, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.738229+00', 2196, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36779, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.738229+00', 2201, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36780, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:10.370979+00', 2219, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36781, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.641163+00', 2875, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 12, 2, NULL, 3, NULL), +(36782, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.737542+00', 2937, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36783, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.913056+00', 2817, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36784, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.737542+00', 3009, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36785, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.663828+00', 4486, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36786, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.663828+00', 4526, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36787, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.689531+00', 4630, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36788, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.689531+00', 4641, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36789, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.897219+00', 4522, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36790, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:09.783096+00', 4642, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36791, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.0576+00', 3822, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36792, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.12749+00', 3752, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36793, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.944715+00', 3934, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36794, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.916311+00', 3962, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36795, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.969431+00', 3899, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36796, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.165758+00', 3702, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36797, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.0576+00', 3975, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36798, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.916311+00', 4115, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36799, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.165758+00', 3866, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36800, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.239961+00', 5194, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36801, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.928162+00', 5538, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36802, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.192067+00', 5272, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36803, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.074334+00', 5379, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36804, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.074334+00', 5386, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36805, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.239961+00', 5266, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36806, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.92596+00', 8535, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36807, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.933061+00', 8569, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36808, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.917278+00', 8602, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36809, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.933061+00', 8591, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36810, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:03.917278+00', 8614, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36811, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:04.104235+00', 8458, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36812, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.28163+00', 302, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36813, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.387963+00', 304, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36814, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.404137+00', 296, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36815, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.431622+00', 619, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36816, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.376452+00', 688, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36817, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.758361+00', 325, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36818, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.930297+00', 240, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36819, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.940463+00', 488, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36820, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.290655+00', 1543, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36821, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.290655+00', 1551, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36822, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.501019+00', 713, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36823, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.287256+00', 2057, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36824, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.590826+00', 763, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36825, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.287256+00', 2068, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36826, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.485528+00', 1186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36827, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.590404+00', 1503, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36828, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.637518+00', 818, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36829, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.289011+00', 1187, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 14, 2, NULL, 3, NULL), +(36830, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.637518+00', 1043, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36831, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.601358+00', 1140, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36832, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.601303+00', 1189, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36833, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.678517+00', 1215, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36834, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.599111+00', 1696, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36835, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.643012+00', 1998, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36836, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.651776+00', 1994, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36837, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.651776+00', 2034, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36838, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.705533+00', 2036, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36839, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.705533+00', 2033, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36840, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.42879+00', 2524, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36841, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.288748+00', 2806, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36842, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.288748+00', 2828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36843, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:14.608769+00', 3012, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36844, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.789096+00', 1047, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36845, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.601979+00', 1256, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36846, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.72073+00', 1148, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36847, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.103489+00', 766, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36848, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.601979+00', 1296, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36849, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.72073+00', 1189, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36850, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.595943+00', 1326, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36851, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.913093+00', 1028, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36852, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.595943+00', 1439, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36853, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.509002+00', 1792, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36854, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.509002+00', 1798, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36855, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.90516+00', 1448, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36856, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.65733+00', 1855, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36857, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.65733+00', 1888, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36858, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.860866+00', 1737, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36859, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.631165+00', 2398, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36860, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.631165+00', 2406, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36861, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.50963+00', 2832, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36862, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.50963+00', 2847, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36863, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.038929+00', 2534, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36864, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:46.884528+00', 2980, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36865, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.577245+00', 2370, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36866, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.540812+00', 2419, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36867, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.273879+00', 2692, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36868, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.27073+00', 2703, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36869, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.473771+00', 2506, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36870, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.273879+00', 2742, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36871, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.27073+00', 2747, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36872, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.473771+00', 2563, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36873, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.488696+00', 2622, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36874, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.801653+00', 3433, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36875, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.534612+00', 3811, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36876, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.277956+00', 4098, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36877, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.277956+00', 4102, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36878, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.533385+00', 3979, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36879, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.533385+00', 3992, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36880, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.743213+00', 5610, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36881, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.242531+00', 6274, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36882, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.242531+00', 6277, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36883, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.243454+00', 6291, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36884, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.243454+00', 6308, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36885, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:14.634663+00', 5979, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36886, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:41.717121+00', 1600, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36887, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.406577+00', 943, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36888, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:41.717121+00', 1629, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36889, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.406577+00', 986, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 31, 2, NULL, 3, NULL), +(36890, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.415785+00', 1060, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36891, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.415785+00', 1083, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36892, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.708748+00', 935, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36893, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.733072+00', 948, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36894, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.939493+00', 963, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36895, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.167578+00', 2918, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36896, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.167578+00', 2937, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36897, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.829623+00', 2356, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36898, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.425693+00', 2762, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36899, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.829623+00', 2365, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36900, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.540556+00', 2715, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36901, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.944629+00', 3243, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36902, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.700632+00', 3500, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36903, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.700632+00', 3506, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36904, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.713366+00', 3504, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36905, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.430763+00', 3799, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36906, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:42.430763+00', 3804, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36907, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.047676+00', 643, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36908, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.658729+00', 1166, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36909, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.658729+00', 1164, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36910, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.811618+00', 1021, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36911, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.811618+00', 1040, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 31, 2, NULL, 3, NULL), +(36912, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.65928+00', 1290, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36913, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.65928+00', 1305, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36914, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.829153+00', 1300, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36915, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.085321+00', 1097, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36916, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.804918+00', 1459, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36917, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.071893+00', 1259, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36918, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.071893+00', 1300, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(36919, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.0822+00', 1288, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36920, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.669685+00', 1930, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36921, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.669685+00', 1942, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36922, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.085896+00', 2461, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36923, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.085896+00', 2506, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(36924, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.964911+00', 2582, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36925, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.964911+00', 2596, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36926, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.960798+00', 2598, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36927, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:09.967471+00', 2662, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36928, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:51.421854+00', 1746, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36929, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:51.490114+00', 1677, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36930, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:51.392927+00', 1775, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36931, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:51.462134+00', 2395, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36932, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:51.445474+00', 2410, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36933, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:51.392824+00', 3524, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36934, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:51.441339+00', 3512, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36935, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:36.557072+00', 2636, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36936, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:36.539872+00', 2281, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36937, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:36.554322+00', 2656, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36938, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:36.562366+00', 3188, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36939, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:36.576338+00', 3229, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36940, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:36.535515+00', 4087, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36941, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:36.535515+00', 4175, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36942, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:58.817501+00', 339, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36943, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:58.853834+00', 872, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36944, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:59.036876+00', 711, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36945, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:58.891371+00', 1295, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36946, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:58.914718+00', 1372, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36947, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:58.817712+00', 1924, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36948, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:58.840876+00', 1955, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36949, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:05.834284+00', 2095, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36950, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:05.794698+00', 2253, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36951, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:05.789406+00', 2174, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36952, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:05.788367+00', 2840, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36953, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:05.809039+00', 2851, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36954, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:05.788367+00', 4430, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36955, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:05.839969+00', 4378, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36956, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.401509+00', 2660, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36957, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.401509+00', 2696, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36958, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.397752+00', 2657, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36959, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.447544+00', 2655, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36960, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.426375+00', 2634, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36961, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.397752+00', 2570, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36962, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.419694+00', 2547, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36963, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.400302+00', 2733, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36964, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.400302+00', 2701, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36965, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.397678+00', 3051, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(36966, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.397678+00', 3043, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36967, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.41363+00', 3032, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(36968, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.41363+00', 3024, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36969, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.399374+00', 3445, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36970, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.413575+00', 3432, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36971, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.423125+00', 4305, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 3, NULL), +(36972, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.441143+00', 4407, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36973, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.408691+00', 4503, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36974, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.397747+00', 4553, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36975, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:32.397747+00', 4562, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(36976, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:35.186243+00', 4104, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36977, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:35.135654+00', 4236, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36978, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:35.149237+00', 4238, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36979, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:35.174924+00', 5158, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36980, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:35.174924+00', 5171, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36981, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:35.188885+00', 9458, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36982, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:35.135716+00', 9518, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(36983, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:30.997672+00', 2824, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36984, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:31.062391+00', 2762, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36985, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:31.044088+00', 2800, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36986, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:31.044718+00', 3092, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36987, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:31.007856+00', 3227, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36988, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:30.951572+00', 4272, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36989, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:30.975046+00', 4283, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36990, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:31.914973+00', 1941, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(36991, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:31.943644+00', 1941, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(36992, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:31.679056+00', 2281, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(36993, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:31.839321+00', 3170, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(36994, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:31.65319+00', 3355, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(36995, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:31.153327+00', 5788, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(36996, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:31.910019+00', 5034, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(36997, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.326627+00', 4174, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(36998, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.399146+00', 4092, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(36999, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.326627+00', 4065, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37000, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.384232+00', 3865, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37001, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.370337+00', 4021, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37002, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.399146+00', 3850, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37003, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.411715+00', 4109, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37004, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.249282+00', 4277, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37005, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.353193+00', 4722, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37006, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.249282+00', 4321, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37007, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.259061+00', 5106, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37008, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.261575+00', 4827, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37009, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.261575+00', 4892, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37010, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.353193+00', 4795, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37011, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.285763+00', 4803, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37012, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.249507+00', 7021, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37013, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.249336+00', 7023, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37014, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.249336+00', 7071, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37015, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.361544+00', 6942, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37016, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.249507+00', 7068, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37017, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:16.399146+00', 7117, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37018, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:15.535368+00', 3438, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37019, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:15.530236+00', 3346, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37020, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:15.524497+00', 3420, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37021, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:15.524379+00', 4165, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37022, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:15.528741+00', 4164, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37023, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:15.524803+00', 5969, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37024, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:15.524448+00', 5954, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37025, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:12.913447+00', 1489, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37026, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:12.918656+00', 1480, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37027, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:12.878488+00', 1541, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37028, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:12.928174+00', 2281, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37029, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:12.957403+00', 2327, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37030, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:12.820712+00', 3231, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37031, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:12.836804+00', 3215, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37032, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:18.180496+00', 4656, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37033, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:18.190106+00', 4969, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37034, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:18.198367+00', 4585, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37035, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:18.189712+00', 4656, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37036, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:18.180516+00', 4988, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37037, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:18.186392+00', 6500, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37038, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:18.180497+00', 6521, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37039, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.938761+00', 5782, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37040, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.896527+00', 5914, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37041, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.892833+00', 5927, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37042, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.977069+00', 5743, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37043, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:27.009337+00', 5811, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37044, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.985687+00', 5834, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37045, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.954292+00', 6523, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37046, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.896527+00', 6317, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37047, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.977069+00', 6231, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37048, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.960454+00', 6507, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37049, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.892833+00', 6314, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37050, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.991627+00', 6595, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37051, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.947221+00', 6620, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37052, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.991627+00', 6638, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37053, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.954292+00', 6611, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37054, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.908391+00', 9958, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 3, NULL), +(37055, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:27.01084+00', 9914, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37056, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.945479+00', 10122, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37057, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:27.01084+00', 9900, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37058, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:26.926886+00', 10155, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37059, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:27.335543+00', 2528, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37060, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:27.324879+00', 2650, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37061, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:27.349745+00', 2578, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37062, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:27.327685+00', 4480, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37063, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:27.325433+00', 4490, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37064, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:27.353288+00', 6866, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37065, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:27.324831+00', 7000, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37066, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:25.879446+00', 3948, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37067, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:25.359414+00', 4442, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37068, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:25.358618+00', 4308, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37069, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:25.363023+00', 4695, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37070, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:25.358601+00', 4747, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37071, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:25.454096+00', 5888, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37072, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:25.374503+00', 5970, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37073, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.503407+00', 3900, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37074, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.588492+00', 3805, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37075, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.439905+00', 3982, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 3, NULL), +(37076, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.588064+00', 3792, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37077, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:28.75589+00', 6648, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37078, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.649625+00', 3755, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37079, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.649625+00', 3835, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37080, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.588064+00', 3840, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37081, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:28.516401+00', 8238, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37082, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:28.516401+00', 8260, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37083, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.550457+00', 5246, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37084, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.602476+00', 5257, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37085, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.658316+00', 5211, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37086, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.658316+00', 5221, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37087, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:28.55687+00', 11438, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37088, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:28.55687+00', 11455, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37089, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.592882+00', 8566, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37090, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.498131+00', 8719, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37091, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.498131+00', 8739, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37092, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:31.503212+00', 9104, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37093, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.391524+00', 4796, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37094, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.385731+00', 4923, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37095, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.317105+00', 5094, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37096, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.474178+00', 4925, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37097, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.456812+00', 4729, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37098, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.391524+00', 5030, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37099, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.456812+00', 4964, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37100, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.242672+00', 5067, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37101, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.317105+00', 5122, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37102, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.242672+00', 5180, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37103, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.293609+00', 5186, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37104, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.474178+00', 4949, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37105, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.293609+00', 5118, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37106, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.385731+00', 5037, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37107, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.509972+00', 4972, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37108, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.338326+00', 5249, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37109, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.509972+00', 5034, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37110, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.24267+00', 5249, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37111, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.24267+00', 5300, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37112, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.338326+00', 5203, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37113, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.427668+00', 8219, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37114, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.304792+00', 8343, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37115, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.378416+00', 8565, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37116, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.304792+00', 8430, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37117, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.427668+00', 8391, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37118, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.352625+00', 8643, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37119, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.378416+00', 8395, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37120, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:04.352625+00', 8687, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37121, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.639828+00', 1286, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37122, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.956232+00', 1344, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37123, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.762931+00', 1523, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37124, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.762931+00', 1605, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37125, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.934083+00', 1810, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37126, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.05859+00', 1780, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37127, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.408872+00', 2429, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37128, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.483286+00', 1550, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37129, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.483438+00', 1691, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37130, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.637799+00', 2612, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37131, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.933582+00', 2326, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37132, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.637799+00', 2537, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37133, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.120012+00', 2109, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37134, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.933582+00', 2458, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37135, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.758856+00', 2903, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37136, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.483438+00', 1788, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37137, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.120012+00', 2517, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37138, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.485157+00', 2270, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37139, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.485157+00', 2392, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37140, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.988891+00', 2937, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37141, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:14.988891+00', 2960, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37142, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:19.603644+00', 2722, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37143, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:19.607492+00', 2653, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37144, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:19.609039+00', 2608, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37145, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:19.603554+00', 3035, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37146, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:19.603707+00', 3063, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37147, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:19.603647+00', 4785, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37148, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:19.607182+00', 4762, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37149, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.79116+00', 2325, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37150, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.870947+00', 2246, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37151, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.813055+00', 2360, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37152, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.862231+00', 2312, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37153, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.833559+00', 2550, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37154, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.833559+00', 2391, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37155, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.862231+00', 2452, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37156, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.814869+00', 2411, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37157, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.79116+00', 2431, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37158, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.809172+00', 3335, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37159, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.784962+00', 3370, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37160, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.809172+00', 3347, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37161, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.844937+00', 3456, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37162, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.79921+00', 3488, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37163, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.79921+00', 3559, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37164, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.816196+00', 6587, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37165, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.800899+00', 6607, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37166, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.806649+00', 6613, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37167, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.816196+00', 6607, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37168, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.785128+00', 6643, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37169, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:03.806649+00', 6629, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37170, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826925+00', 2317, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37171, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.82691+00', 2503, 0, FALSE, 'dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(37172, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.82692+00', 2503, 0, FALSE, 'dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(37173, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.82691+00', 2355, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37174, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.82692+00', 2328, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37175, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:31.32111+00', 860, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37176, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:31.335852+00', 1056, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37177, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826925+00', 2503, 0, TRUE, 'dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(37178, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:31.313878+00', 1581, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37179, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:31.284936+00', 1653, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37180, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826898+00', 3130, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37181, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.828705+00', 3142, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37182, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.828705+00', 3149, 0, TRUE, 'dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(37183, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826898+00', 3150, 0, TRUE, 'dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(37184, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:31.151712+00', 1965, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37185, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:31.382136+00', 2869, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37186, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826897+00', 4488, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37187, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826922+00', 4490, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(37188, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826922+00', 4481, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37189, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:29.826897+00', 4510, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(37190, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:31.284669+00', 3057, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37191, X'578b760f7fe8f1966bc3c43a4ba59b2457777f7337f963f8b1331a21c4fae60e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.388721+00', 1968, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37192, X'ea781114ef92b7f725436fcc8be4a0c93b7b138f1a562061c4ccd737ef32fdaf', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.348889+00', 2036, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37193, X'f04bca8adae714c9e9e6084e7ba9b0294a10c4a55225747d8760f366bd48e257', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.287921+00', 2162, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37194, X'5084ffb598cfa5baf6a799808d75101f11b5df6b62f6ff2816d7fc98b054ea30', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.352761+00', 3141, 0, TRUE, 'dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(37195, X'e390919d16fc73d15eec9c2232c142bd36f01961f2e8cc3365b02e26e13a0084', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.387534+00', 3107, 0, TRUE, 'dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', 1, 12, 2, NULL, 3, NULL), +(37196, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.195835+00', 703, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37197, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.508782+00', 844, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37198, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.210674+00', 2301, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37199, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.475392+00', 2111, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37200, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.231214+00', 2465, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37201, X'2e143b01cc768d49c18fe18e363badef3d45e2e729b5a54f53c81b302221c239', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.34411+00', 5620, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37202, X'c6b8f10b6128255c0ee364d1a2eb6c04d16b3b524b91acb8fdfc730edb3070a9', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.379195+00', 5714, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(37203, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.408039+00', 4281, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37204, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.321537+00', 4372, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37205, X'2e143b01cc768d49c18fe18e363badef3d45e2e729b5a54f53c81b302221c239', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.34411+00', 5664, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(37206, X'c6b8f10b6128255c0ee364d1a2eb6c04d16b3b524b91acb8fdfc730edb3070a9', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:19.379195+00', 5650, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37207, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.739228+00', 865, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37208, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.863901+00', 746, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37209, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.708509+00', 1019, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37210, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.815126+00', 987, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37211, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.917477+00', 923, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37212, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.917261+00', 1458, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37213, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.792944+00', 1706, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37214, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:07.973002+00', 1878, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37215, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:07.988963+00', 1885, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37216, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:07.734679+00', 2992, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37217, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:07.707804+00', 3053, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37218, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:08.010099+00', 2893, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37219, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:07.710211+00', 4576, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37220, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:07.756317+00', 4549, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37221, X'30ff5b00baa7671e429f0723ed15c9c2ad90e3bc7aa5529592f7d1ac2e559de4', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:12.991958+00', 293, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(37222, X'e83e0a8202979ea3dfb1fb89ef85155eaca01a4aeda5f334a89dc8e721d7a953', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:12.989994+00', 483, 3, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(37223, X'c08b9b39f8a40fd20818d1a3736fc53f629e903d96b00bac67b1719b6a33cd19', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:12.995935+00', 521, 3, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(37224, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.332179+00', 299, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37225, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.368448+00', 393, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37226, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.516821+00', 366, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37227, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.522443+00', 411, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37228, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.522443+00', 433, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37229, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.347377+00', 2992, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37230, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.328835+00', 3017, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37231, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.186347+00', 785, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37232, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.293256+00', 681, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37233, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.275312+00', 810, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37234, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.277865+00', 834, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37235, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.25493+00', 868, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37236, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.159689+00', 1299, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37237, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.277621+00', 1206, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37238, X'f04bca8adae714c9e9e6084e7ba9b0294a10c4a55225747d8760f366bd48e257', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:30.635813+00', 441, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37239, X'ea781114ef92b7f725436fcc8be4a0c93b7b138f1a562061c4ccd737ef32fdaf', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:30.7195+00', 408, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37240, X'e390919d16fc73d15eec9c2232c142bd36f01961f2e8cc3365b02e26e13a0084', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:30.63858+00', 578, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37241, X'578b760f7fe8f1966bc3c43a4ba59b2457777f7337f963f8b1331a21c4fae60e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:30.70571+00', 524, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37242, X'5084ffb598cfa5baf6a799808d75101f11b5df6b62f6ff2816d7fc98b054ea30', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:30.787975+00', 607, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37243, X'c6b8f10b6128255c0ee364d1a2eb6c04d16b3b524b91acb8fdfc730edb3070a9', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:30.734119+00', 877, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37244, X'2e143b01cc768d49c18fe18e363badef3d45e2e729b5a54f53c81b302221c239', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:30.793209+00', 822, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37245, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:34.901896+00', 783, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37246, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:34.500324+00', 1212, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37247, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:35.158541+00', 873, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37248, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:34.78672+00', 1282, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37249, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:34.901433+00', 1244, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37250, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:35.195305+00', 965, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37251, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:34.97967+00', 1323, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37252, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.132683+00', 3665, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37253, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:33.706111+00', 2089, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37254, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.133757+00', 3576, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37255, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.133757+00', 3608, 0, FALSE, 'dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37256, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.124813+00', 3404, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37257, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.124813+00', 3556, 0, TRUE, 'dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(37258, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.132683+00', 3697, 0, FALSE, 'dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(37259, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:33.086317+00', 2794, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37260, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:33.742187+00', 3059, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37261, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:33.557499+00', 3243, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37262, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.133778+00', 4786, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37263, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.129788+00', 4793, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37264, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.133778+00', 4798, 0, TRUE, 'dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(37265, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.129788+00', 4810, 0, TRUE, 'dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(37266, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:33.308848+00', 4067, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37267, X'9378578f5c02a273d9a563403cf68c830c53c287020c9e6937e80d37e5a8d2db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.255536+00', 570, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37268, X'f7472b67afd091480ff5178d635c551cd1a4dd285db2857140da002a835f1e27', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.238322+00', 664, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37269, X'e87eb2a4bd7227bac797098c0dbe0a140ebca06f1b543fe0e1259d610a89a29c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.388821+00', 593, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37270, X'18b44b2c47fe25c9e60aabc5471394dcec4df093b61f720d7c175d237288587a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.481779+00', 584, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37271, X'1b6e2a009dbb6c91caa9f1a3691e64796ae7246b7e93a21030203fd3bec1bd45', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.384336+00', 840, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37272, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:33.725532+00', 5906, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37273, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.128467+00', 7537, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37274, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.128467+00', 7539, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(37275, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.32878+00', 2339, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37276, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:33.489223+00', 6214, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37277, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.134707+00', 7600, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37278, X'b7558bfad849ba2e697fcaedd457ff632c2910e2d0f1e70e774fc3cc59ec6a70', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:32.134707+00', 7603, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(37279, X'39692adec914d377e324d4a2b5e7090667e46beb91af16417f94748fd217a611', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.220629+00', 2545, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37280, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:44.495154+00', 503, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37281, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:44.402757+00', 614, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37282, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:44.38084+00', 730, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37283, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:44.390273+00', 864, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37284, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:44.430394+00', 928, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37285, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:44.380603+00', 1245, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37286, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:44.375519+00', 1472, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37287, X'97fda941ea4685ab61a9edcd9d73b2cce0907c933b03d188d762ce8b39af5cba', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.135446+00', 482, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37288, X'fab1147fb3c8ece94b9a5218cfb18c275e4ed3bbd240651462b676d64bba6e73', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.084639+00', 616, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37289, X'c36a6469726a2881b0f82b26a8d621b6e7139c6364b4e894eb5c476c13904d9c', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.083751+00', 667, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37290, X'a7296ef6b82ee5f23451a0d82791d7b12a82e0ea5489c4805d4b468363632eb2', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.147308+00', 599, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37291, X'6cd4a344bb80d682f2913caa10ac9a4b6e828510f9547fbc86cd9322fa35181a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.099307+00', 679, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37292, X'0fc8730a675db40d36b4f680f4691f478bb30dfcc86090e0d8bfb1ec7572733d', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.0242+00', 1130, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37293, X'0dd24f4ac98901744aab9a4aa0a8a0650a83906f87df2eabf171407d49dd1fba', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.077199+00', 1201, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37294, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.587311+00', 216, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37295, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.621469+00', 262, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37296, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.611008+00', 299, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37297, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.629556+00', 328, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37298, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.604897+00', 375, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37299, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.609147+00', 758, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37300, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.600766+00', 801, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37301, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:35.150704+00', 2089, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37302, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:35.072635+00', 2155, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37303, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:35.180176+00', 2729, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37304, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:35.070995+00', 2867, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37305, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:35.171381+00', 2876, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37306, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:35.140758+00', 4544, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37307, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:35.176197+00', 4600, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37308, X'4fcee9c510d7ee565338bcfd2c8b42ccfdd02a6cddd30e6898b637bb5a6e29f0', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.037133+00', 516, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(37309, X'25352d9d7a638d97741765786e5e4b76bad99c2aa0e9bf47011ad118d90da8e3', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.018681+00', 583, 0, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(37310, X'83b698202cc4dd84ba39f6ed26248c99185a92d2e8018d7af54d5a09fb45e3ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.00751+00', 688, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(37311, X'd9e71a9f7ffc96305108a7b146c8b1c1227d7fe85ee7acc28519366f7b5d60a6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.026218+00', 686, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(37312, X'ff708c8c58693340bed865b820455dbaf99940e30c031c8f2bf6eb9369f56ad6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.071697+00', 679, 0, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(37313, X'deb81cb76f5260f80ea4b16f0ba9ef4639b0e2a21b3bcc9dc19d906218661f06', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.050928+00', 696, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(37314, X'9154fcb27ec2a3e0eba4b6fad57ef3af026127bae65f5a4857cad2f4b5716386', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.043618+00', 740, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(37315, X'1b6f44fc3833a61bc9e92a9a8d86077abd8573162131093339175a70f8566ded', TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.020466+00', 837, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(37316, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.681011+00', 9015, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37317, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.649117+00', 10285, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(37318, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.595596+00', 10668, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(37319, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.617254+00', 10664, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(37320, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.659717+00', 10680, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(37321, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:14.404025+00', 1992, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(37322, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.62472+00', 10880, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(37323, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.600707+00', 10936, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(37324, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.84019+00', 222, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37325, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.789942+00', 459, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37326, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.865549+00', 397, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37327, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.838813+00', 667, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37328, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.837007+00', 804, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37329, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.837365+00', 2381, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37330, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.763027+00', 2461, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37331, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.220495+00', 756, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37332, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.109828+00', 875, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37333, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.236124+00', 1102, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37334, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.240806+00', 1103, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37335, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.130598+00', 1542, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37336, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.236153+00', 1904, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37337, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.241917+00', 1968, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37338, X'7454ac8a9c902697eeb9e57eea84bdf0ed40e8e809d02433ba0d9c47be3a3c3e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.149292+00', 358, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37339, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.26169+00', 421, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37340, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.305907+00', 428, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37341, X'bc9facfc77279e626d36a258121a519f74208a7722ef89d4144962a61ecdc99f', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.263673+00', 480, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37342, X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.310579+00', 476, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37343, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.145668+00', 913, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37344, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.275047+00', 919, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37345, X'389162e6fdce814f4e768356a400750eb121c18956bce65a12160c3bfa989ead', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:17.051013+00', 246, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37346, X'409b6d2b6267a9fe44252e3a407243c19605b9a297e597845fc63c6b0f425daf', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:23.551565+00', 517, 16, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37347, X'389162e6fdce814f4e768356a400750eb121c18956bce65a12160c3bfa989ead', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:31.213563+00', 162, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37348, X'bc9facfc77279e626d36a258121a519f74208a7722ef89d4144962a61ecdc99f', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:37.174693+00', 1050, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37349, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:37.202446+00', 1027, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37350, X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:37.741845+00', 1001, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37351, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:37.20474+00', 2988, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37352, X'7454ac8a9c902697eeb9e57eea84bdf0ed40e8e809d02433ba0d9c47be3a3c3e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:37.201077+00', 3041, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37353, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:37.204573+00', 4553, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37354, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:37.713368+00', 4072, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37355, X'389162e6fdce814f4e768356a400750eb121c18956bce65a12160c3bfa989ead', TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:43.449577+00', 156, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37356, X'324b3811d75cde4798f822eb223a51d46544690b2fbcffc22fbe4726be155eb7', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:01.689932+00', 721, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37357, X'994f225fe83b0e494861f1d0f87bd28632716a1c1a79fe6e572fbfa94896bcdf', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:09.188131+00', 573, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37358, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.409244+00', 569, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37359, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.337642+00', 662, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37360, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.371899+00', 1902, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37361, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.395468+00', 1916, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37362, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.367313+00', 2041, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37363, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.363543+00', 2793, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37364, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.47272+00', 2675, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37365, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:35.793947+00', 385, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37366, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:35.825109+00', 471, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37367, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:35.988918+00', 356, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37368, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:35.875915+00', 649, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37369, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:35.952582+00', 654, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37370, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:35.878789+00', 893, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37371, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:35.976492+00', 980, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37372, X'c02a8fa16b8f28a6e5754b3f760f1d404cc57f015f7f23913bb4a2b7c9c5d335', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:44.271475+00', 227, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(37373, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.41404+00', 573, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37374, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.455098+00', 672, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37375, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.407239+00', 780, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37376, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.46603+00', 875, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37377, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.423748+00', 915, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37378, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.438321+00', 1056, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37379, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.425202+00', 1193, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37380, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.813983+00', 350, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(37381, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.742937+00', 473, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(37382, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.681178+00', 961, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(37383, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.726065+00', 1034, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(37384, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.727141+00', 1048, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(37385, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.577072+00', 1232, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(37386, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.784437+00', 1084, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(37387, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.729419+00', 1136, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(37388, X'efe4bc37686033a4df972a22f20d9cd0cccf3cc4b982aedf5d6c5cf280e9f106', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:51.384861+00', 82, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37389, X'c48f3ac43425d5792c114e6e15e11a77075be12a943d345a7a6f5e8f88a05826', TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:55.707092+00', 21, 0, FALSE, 'ad-hoc', 'No fields found for table "corrections".', 1, NULL, NULL, NULL, 3, NULL), +(37390, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-12 08:34:16.935703+00', 531, 0, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(37391, X'bd869c6a2aa99b840b15ca1f080e38dd8ffb33c209278d3da51388721089b071', TIMESTAMP WITH TIME ZONE '2023-01-12 08:34:40.464604+00', 55, 0, FALSE, 'ad-hoc', 'No fields found for table "corrections".', 1, NULL, NULL, NULL, 3, NULL), +(37392, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.52832+00', 2418, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37393, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:44.173485+00', 1772, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37394, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.52832+00', 2445, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37395, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.597689+00', 2385, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37396, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.597689+00', 2402, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37397, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:44.064735+00', 1941, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37398, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:44.156221+00', 2774, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37399, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.596058+00', 3401, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37400, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.596058+00', 3429, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37401, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:44.137546+00', 2939, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37402, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.454219+00', 3660, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37403, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.454219+00', 3716, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37404, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.92196+00', 3633, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37405, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.275518+00', 4442, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37406, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.275518+00', 4467, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37407, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.434265+00', 6220, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37408, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.434265+00', 6225, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37409, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.467756+00', 6360, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37410, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:44.1188+00', 5765, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37411, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.467756+00', 6417, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37412, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:43.850355+00', 6071, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37413, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:49.378395+00', 1339, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37414, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:49.432302+00', 1308, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37415, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:49.319406+00', 1538, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37416, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:49.17768+00', 1768, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37417, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:49.116112+00', 1905, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37418, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:49.176953+00', 2532, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37419, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:49.154882+00', 2605, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37420, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:58.890432+00', 681, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(37421, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:58.982811+00', 808, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(37422, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.144158+00', 679, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(37423, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.374803+00', 479, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(37424, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:58.972782+00', 1052, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(37425, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:58.906342+00', 1158, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(37426, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.20555+00', 865, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(37427, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.146777+00', 1016, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(37428, X'bbaf3333f14ddee561326dc2391f2849278a173f82b590dfae34cc2aff43b331', TIMESTAMP WITH TIME ZONE '2023-01-12 08:37:06.300734+00', 233, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37429, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:29.707438+00', 5375, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37430, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:29.707109+00', 5385, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37431, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:29.707133+00', 5376, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37432, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:29.707128+00', 5374, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37433, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:29.707147+00', 5568, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37434, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:29.707156+00', 5374, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37435, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:29.707148+00', 5376, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37436, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:48.411428+00', 1039, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37437, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:48.0325+00', 1452, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37438, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:48.493208+00', 1447, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37439, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:48.409132+00', 1634, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37440, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:48.512365+00', 1587, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37441, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:48.535289+00', 2227, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37442, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:48.44468+00', 2392, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37443, X'c48f3ac43425d5792c114e6e15e11a77075be12a943d345a7a6f5e8f88a05826', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:28.4011+00', 56, 0, FALSE, 'ad-hoc', 'No fields found for table "corrections".', 1, NULL, NULL, NULL, 3, NULL), +(37444, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.314528+00', 491, 0, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(37445, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.327808+00', 2504, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(37446, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.179805+00', 2710, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(37447, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.154878+00', 2790, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(37448, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.171952+00', 2915, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(37449, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.21789+00', 2912, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(37450, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.15697+00', 2974, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(37451, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.345802+00', 2802, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(37452, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.969135+00', 2671, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37453, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.969135+00', 2762, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37454, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.950983+00', 2690, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37455, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.962562+00', 2654, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37456, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.962562+00', 2766, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37457, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.950994+00', 2666, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37458, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.950965+00', 3496, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37459, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.983821+00', 3573, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37460, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.993059+00', 3453, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37461, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.950965+00', 3507, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37462, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.983821+00', 3565, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37463, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.96773+00', 3596, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37464, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.96241+00', 3689, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37465, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.977338+00', 3662, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37466, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.977338+00', 3628, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37467, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.992342+00', 4747, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37468, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.992342+00', 4770, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37469, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.950962+00', 4807, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37470, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.950965+00', 4843, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37471, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.951014+00', 4843, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37472, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:27.951014+00', 4851, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37473, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:45.442682+00', 1253, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37474, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:45.029499+00', 1666, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37475, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:45.177598+00', 2020, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37476, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:45.025955+00', 2241, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37477, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:45.472569+00', 1889, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37478, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:45.421328+00', 2801, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37479, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:45.407427+00', 2835, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37480, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:54.04135+00', 616, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37481, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.725138+00', 558, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37482, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.862765+00', 427, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37483, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.872248+00', 622, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37484, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.725981+00', 813, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37485, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.808365+00', 775, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37486, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.780666+00', 1226, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37487, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.852642+00', 1174, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37488, X'7182c4047d01b979439aa897137c0b2b07be3336ce6a1b30458b091fdf61c8ba', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:35.678708+00', 242, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(37489, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.150928+00', 604, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37490, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.111403+00', 703, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37491, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.17237+00', 723, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37492, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.169201+00', 898, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37493, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.308637+00', 839, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37494, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.117294+00', 1263, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37495, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.110353+00', 1445, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37496, X'968cf073e236a221396630059895f8382f2ec1669cabf44b1d05b02535f833ee', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:40.759358+00', 312, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(37497, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.843295+00', 309, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37498, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.802265+00', 439, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37499, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.839639+00', 481, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37500, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.906733+00', 562, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37501, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.960771+00', 546, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37502, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.953812+00', 951, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37503, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.989058+00', 1187, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37504, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:51.559113+00', 614, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(37505, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.535936+00', 238, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37506, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.564677+00', 447, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(37507, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.561385+00', 648, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37508, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.735377+00', 545, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37509, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.714349+00', 669, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37510, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.704482+00', 716, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37511, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.563639+00', 1059, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37512, X'9cd010d7cb6c316525e4c53329699bb2497eae81592c50ca063396df76a0fccf', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:07.975728+00', 150, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37513, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:14.023389+00', 734, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37514, X'9ecdbc3505fd19a3b66ea5a60eabf1863e78b78b53b1290936556e84d9b21463', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:22.32909+00', 184, 0, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(37515, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:27.730729+00', 701, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37516, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:27.917154+00', 655, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(37517, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:27.720203+00', 1787, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(37518, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:28.054731+00', 1679, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(37519, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:28.005708+00', 1913, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(37520, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:28.040954+00', 2730, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(37521, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:27.699765+00', 3078, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(37522, X'9cd010d7cb6c316525e4c53329699bb2497eae81592c50ca063396df76a0fccf', TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:34.307673+00', 139, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(37523, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:26.684687+00', 337, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37524, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:26.630564+00', 444, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37525, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:26.731063+00', 2267, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37526, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:26.691425+00', 2294, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37527, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:26.720395+00', 2277, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37528, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:26.648986+00', 3483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37529, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:26.690508+00', 3463, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37530, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.722713+00', 1201, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37531, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.796499+00', 1167, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37532, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.722713+00', 1282, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37533, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.941164+00', 1419, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37534, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.941164+00', 1317, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37535, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:09.092606+00', 1128, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37536, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.694352+00', 4285, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37537, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.772247+00', 4229, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37538, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.694352+00', 4313, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37539, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:09.158104+00', 4179, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37540, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:09.158104+00', 4163, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37541, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.811638+00', 4528, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37542, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.793798+00', 4649, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37543, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.793798+00', 4647, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37544, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:09.12259+00', 4374, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37545, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.822616+00', 5790, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37546, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.575785+00', 6300, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37547, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.575785+00', 6310, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37548, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.743696+00', 6152, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37549, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:08.743696+00', 6155, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37550, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:09.09554+00', 5829, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37551, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:43.593452+00', 495, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37552, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:43.6948+00', 579, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37553, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:43.69473+00', 731, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37554, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:43.857082+00', 641, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37555, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:43.860734+00', 705, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37556, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:43.685145+00', 1173, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37557, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:43.70884+00', 1156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37558, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:29.105819+00', 1591, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37559, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:29.081952+00', 1615, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37560, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:29.108178+00', 2116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37561, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:29.099883+00', 2135, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37562, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:29.083677+00', 2205, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37563, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:29.040752+00', 3048, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37564, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:29.044584+00', 3119, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37565, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:08.638436+00', 521, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37566, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:08.603053+00', 620, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37567, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:08.621446+00', 683, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37568, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:08.600808+00', 717, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37569, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:08.601132+00', 865, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37570, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:08.314004+00', 1382, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37571, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:08.666565+00', 1291, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37572, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:44.039072+00', 1321, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37573, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:44.138596+00', 1224, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37574, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:44.148347+00', 1588, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37575, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:44.106922+00', 1690, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37576, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:44.106551+00', 1727, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37577, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:44.1225+00', 2416, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37578, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:44.132941+00', 2430, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37579, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:12.264925+00', 4514, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37580, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:12.324637+00', 4453, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37581, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:12.324737+00', 4613, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37582, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:12.264431+00', 4781, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37583, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:12.255156+00', 5038, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37584, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:12.264487+00', 6141, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37585, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:12.29765+00', 6128, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37586, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:43.899987+00', 578, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37587, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:43.915081+00', 589, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37588, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:43.961633+00', 640, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37589, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:43.909967+00', 760, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37590, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:43.921096+00', 890, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37591, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:43.922456+00', 1151, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37592, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:43.951182+00', 1199, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37593, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:05.499854+00', 1314, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37594, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:05.518114+00', 1295, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37595, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:05.580206+00', 1678, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37596, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:05.407788+00', 2071, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37597, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:05.534221+00', 1960, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37598, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:05.519676+00', 2703, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37599, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:05.573596+00', 2652, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37600, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:44.713921+00', 1340, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37601, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:44.748806+00', 1312, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37602, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:44.693964+00', 1707, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37603, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:44.78654+00', 1658, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37604, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:44.728567+00', 1718, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37605, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:44.635681+00', 2999, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37606, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:44.614963+00', 3163, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37607, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.103344+00', 290, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37608, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.146553+00', 340, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37609, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.124603+00', 368, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37610, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.116627+00', 490, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37611, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.116023+00', 496, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37612, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.081649+00', 880, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37613, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.115874+00', 866, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37614, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:08.78704+00', 6108, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37615, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:08.701066+00', 6194, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37616, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:08.82308+00', 6554, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37617, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:08.818617+00', 6563, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37618, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:08.781068+00', 6684, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37619, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:08.767049+00', 9027, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37620, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:08.692758+00', 9157, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37621, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:44.285232+00', 892, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37622, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:44.203834+00', 978, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37623, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:44.274788+00', 1646, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37624, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:44.242244+00', 1734, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37625, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:44.292039+00', 1711, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37626, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:44.121573+00', 2341, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37627, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:44.113983+00', 2420, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37628, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:01.521071+00', 1126, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37629, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:01.815875+00', 898, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37630, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:01.586575+00', 1124, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37631, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:01.593049+00', 1487, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37632, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:01.546613+00', 1536, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37633, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:01.789256+00', 1386, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37634, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:01.479166+00', 1819, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37635, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:50.304805+00', 4008, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37636, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:50.289854+00', 4170, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37637, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:50.389809+00', 4041, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37638, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:50.289942+00', 4023, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37639, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:50.200133+00', 4285, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37640, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:50.198136+00', 5317, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37641, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:50.261446+00', 5281, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37642, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:57.859578+00', 292, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37643, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:57.587673+00', 595, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37644, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:57.854056+00', 330, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37645, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:57.839719+00', 368, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37646, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:57.869009+00', 521, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37647, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:57.839478+00', 806, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37648, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:57.877619+00', 864, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37649, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:47.130206+00', 5166, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37650, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:47.119819+00', 5177, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37651, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:47.111256+00', 5313, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37652, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:47.106088+00', 5320, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37653, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:47.126869+00', 5337, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37654, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:47.10571+00', 6185, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37655, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:47.105693+00', 6226, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37656, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:27.819972+00', 361, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37657, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:27.810952+00', 407, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37658, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:27.269678+00', 1013, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37659, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:27.854044+00', 479, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37660, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:27.853605+00', 501, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37661, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:27.81548+00', 767, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37662, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:27.815442+00', 807, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37663, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:43.624829+00', 880, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37664, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:43.628826+00', 886, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37665, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:43.619573+00', 1328, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37666, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:43.417637+00', 1556, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37667, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:43.633692+00', 1378, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37668, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:43.644293+00', 1766, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37669, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:43.375644+00', 2059, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37670, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:27.292521+00', 1140, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37671, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:27.316813+00', 1121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37672, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:27.343814+00', 1519, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37673, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:27.291228+00', 1568, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37674, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:27.455881+00', 1528, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37675, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:27.476004+00', 2300, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37676, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:27.304722+00', 2505, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37677, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.401507+00', 1440, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37678, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.401507+00', 1512, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37679, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.716933+00', 1509, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37680, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.716933+00', 1525, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37681, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.308545+00', 1206, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37682, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.624728+00', 2097, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37683, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.624728+00', 2161, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37684, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.366942+00', 1479, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37685, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.719557+00', 2322, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37686, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.695708+00', 3072, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37687, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.185068+00', 2638, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37688, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.185068+00', 2675, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37689, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.695708+00', 3173, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37690, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.274302+00', 2690, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37691, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.40695+00', 2680, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37692, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.706975+00', 4029, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37693, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.706975+00', 4094, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37694, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.42249+00', 4819, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37695, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:55.42249+00', 4866, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37696, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.191439+00', 4107, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37697, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.216705+00', 4084, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37698, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:33.212067+00', 3445, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37699, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:33.194561+00', 3465, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37700, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:33.194552+00', 4094, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37701, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:33.219439+00', 4125, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37702, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:33.196462+00', 4199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37703, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:33.195139+00', 5197, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37704, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:33.194552+00', 5279, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37705, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:54.801953+00', 499, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37706, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:54.731404+00', 568, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37707, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:54.763916+00', 600, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37708, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:54.730398+00', 791, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37709, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:55.264943+00', 365, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37710, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:54.705552+00', 1243, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37711, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:54.792761+00', 1232, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37712, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:31.904817+00', 5149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37713, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:31.850245+00', 5221, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37714, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:31.88317+00', 5170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37715, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:31.850192+00', 5222, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37716, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:31.852528+00', 5201, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37717, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:31.90266+00', 6012, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37718, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:31.907511+00', 6038, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37719, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:55.519037+00', 2285, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37720, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:55.472731+00', 2363, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37721, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:55.916225+00', 3152, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37722, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:55.870838+00', 3422, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37723, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:55.48732+00', 3921, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37724, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:55.931833+00', 4123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37725, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:55.481373+00', 4601, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37726, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.816311+00', 1857, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37727, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.816311+00', 2995, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37728, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.873591+00', 2980, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37729, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.908663+00', 2967, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37730, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.873591+00', 3033, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37731, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.908663+00', 3036, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37732, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:09.576359+00', 2675, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37733, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:09.576359+00', 2690, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37734, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:10.753684+00', 1731, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37735, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.433011+00', 4308, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37736, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.433011+00', 4328, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37737, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:09.572736+00', 3615, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37738, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.902404+00', 4286, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37739, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:08.902404+00', 4305, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37740, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:12.191689+00', 1028, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37741, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:09.572736+00', 3639, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37742, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:11.85684+00', 1734, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37743, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:11.812057+00', 1663, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37744, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:12.244576+00', 1402, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37745, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:11.763521+00', 1962, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37746, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:11.830234+00', 1895, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37747, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.89307+00', 937, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37748, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.117881+00', 715, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37749, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.798302+00', 1061, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37750, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.798302+00', 1107, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37751, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.095559+00', 879, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37752, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.89307+00', 1109, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 14, 2, NULL, 3, NULL), +(37753, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.848328+00', 1981, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37754, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.848328+00', 1987, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37755, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.093088+00', 1930, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37756, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.81449+00', 2506, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37757, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.81449+00', 2508, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37758, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.106843+00', 2221, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37759, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.816615+00', 2510, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37760, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.06008+00', 2313, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37761, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.816615+00', 2569, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37762, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.846532+00', 4038, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37763, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.846532+00', 4056, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37764, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.121122+00', 3904, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37765, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.849526+00', 4259, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37766, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:55.849526+00', 4303, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37767, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.085024+00', 4080, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37768, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.154165+00', 352, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37769, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.037206+00', 475, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37770, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.088741+00', 1026, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37771, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.049659+00', 1275, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37772, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.035012+00', 1341, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37773, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.070295+00', 1657, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37774, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.038205+00', 1705, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37775, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:08.959668+00', 4713, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37776, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:08.955818+00', 4742, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37777, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:10.233073+00', 5536, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37778, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:10.258243+00', 5657, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37779, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:10.299029+00', 5885, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37780, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:10.238339+00', 9430, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37781, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:10.250378+00', 9472, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37782, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:05.24104+00', 8477, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37783, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:05.340368+00', 8336, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37784, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:05.267708+00', 8744, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37785, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:05.389124+00', 8622, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37786, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:05.240935+00', 8851, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37787, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:05.250408+00', 9886, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37788, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:05.414678+00', 9815, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37789, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:47.710387+00', 989, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37790, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:47.69488+00', 1005, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37791, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:47.696661+00', 1481, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37792, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:47.723311+00', 1507, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37793, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:47.708445+00', 1627, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37794, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:47.694783+00', 2230, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37795, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:47.696644+00', 2270, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37796, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:08.395071+00', 586, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37797, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:08.409514+00', 720, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37798, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:08.685774+00', 494, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37799, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:08.657415+00', 601, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37800, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:08.69041+00', 587, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37801, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:08.727217+00', 772, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37802, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:08.43705+00', 1261, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37803, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:56.551828+00', 527, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37804, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:56.561305+00', 517, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37805, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:56.475108+00', 1693, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37806, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:56.534208+00', 1659, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37807, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:56.526439+00', 1709, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37808, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:56.473845+00', 2472, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37809, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:56.584226+00', 2377, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37810, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:46.806788+00', 1266, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37811, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:46.837274+00', 1246, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37812, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:46.8453+00', 1666, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37813, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:46.866134+00', 1689, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37814, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:46.806791+00', 1783, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37815, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:46.853416+00', 2601, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37816, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:46.86694+00', 2592, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37817, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.241802+00', 283, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37818, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.445014+00', 208, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37819, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.47214+00', 356, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37820, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.417229+00', 427, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37821, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.432165+00', 421, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37822, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.244398+00', 789, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37823, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.325003+00', 803, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37824, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.010866+00', 603, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37825, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.361287+00', 354, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37826, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.239584+00', 775, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37827, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.225218+00', 810, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37828, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.319802+00', 795, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37829, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.215268+00', 1135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37830, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.010939+00', 1357, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37831, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:50.50477+00', 1366, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37832, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:50.496374+00', 1374, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37833, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:50.5128+00', 2132, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37834, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:50.508495+00', 2139, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37835, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:50.506769+00', 2139, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37836, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:50.485046+00', 3197, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37837, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:50.485045+00', 3228, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37838, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.62285+00', 206, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37839, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.607733+00', 384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37840, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.611825+00', 380, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37841, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.578797+00', 496, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37842, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.586963+00', 530, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37843, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.68992+00', 971, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37844, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.615844+00', 1088, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37845, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:56.151631+00', 882, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37846, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:56.102842+00', 954, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37847, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:56.56711+00', 815, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37848, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:56.028288+00', 1396, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37849, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:56.131081+00', 1299, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37850, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:56.185075+00', 1796, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37851, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:56.4801+00', 1544, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37852, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:52.143367+00', 1924, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37853, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:51.243819+00', 2824, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37854, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:52.143628+00', 2358, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37855, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:51.245517+00', 3255, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37856, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:52.183455+00', 2399, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37857, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:52.170414+00', 3129, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37858, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:52.154947+00', 3173, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37859, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.470957+00', 263, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37860, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.515248+00', 351, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37861, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.490477+00', 466, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37862, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.446751+00', 541, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37863, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.484729+00', 518, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37864, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.47698+00', 849, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37865, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.480734+00', 902, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37866, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:56.387664+00', 664, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37867, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:56.676078+00', 442, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37868, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:56.54551+00', 1032, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37869, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:56.38645+00', 1212, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37870, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:56.65486+00', 1045, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37871, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:56.539412+00', 1694, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37872, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:56.487516+00', 1756, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37873, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:49.631083+00', 1499, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37874, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:49.681247+00', 1467, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37875, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:49.685428+00', 2163, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37876, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:49.685382+00', 2304, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37877, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:49.63617+00', 2379, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37878, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:49.642724+00', 3550, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37879, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:49.627846+00', 3571, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37880, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:08.826047+00', 347, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37881, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:08.796625+00', 407, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37882, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:08.833651+00', 380, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37883, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:08.814334+00', 470, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37884, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:08.804203+00', 551, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37885, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:08.808855+00', 918, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37886, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:08.851233+00', 879, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37887, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:56.709405+00', 419, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37888, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:56.727305+00', 441, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37889, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:56.60485+00', 824, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37890, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:56.617344+00', 1018, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37891, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:56.769293+00', 889, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37892, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:56.688583+00', 1482, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37893, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:56.757034+00', 1447, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37894, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:51.382094+00', 2094, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37895, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:51.354732+00', 2122, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37896, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:51.377357+00', 2441, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37897, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:51.346761+00', 2473, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37898, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:51.377513+00', 2470, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37899, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:51.346761+00', 3412, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37900, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:51.394051+00', 3351, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37901, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.351711+00', 598, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37902, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.359193+00', 608, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37903, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.335907+00', 1085, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37904, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.405079+00', 1081, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37905, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.359778+00', 1562, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37906, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.419403+00', 1653, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37907, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.325495+00', 1854, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37908, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.206815+00', 577, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37909, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.2299+00', 616, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37910, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.257425+00', 696, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37911, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.258879+00', 841, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37912, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.306817+00', 847, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37913, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.214142+00', 1214, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37914, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.500621+00', 934, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37915, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:49.722912+00', 1764, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37916, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:49.688662+00', 1817, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37917, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:49.707887+00', 2312, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37918, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:49.716975+00', 2323, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37919, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:49.694103+00', 2376, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37920, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:49.716876+00', 3478, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37921, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:49.724535+00', 3472, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37922, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:56.887315+00', 651, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37923, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:56.895987+00', 678, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37924, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:56.878866+00', 861, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37925, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:56.878866+00', 872, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37926, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:56.893257+00', 915, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37927, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:56.886038+00', 1263, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37928, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:56.893318+00', 1306, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37929, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:52.237512+00', 2019, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37930, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:52.238678+00', 2017, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37931, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:52.237503+00', 2279, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37932, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:52.238055+00', 2278, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37933, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:52.23752+00', 2359, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37934, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:52.237441+00', 3175, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37935, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:52.237496+00', 3211, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37936, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.698039+00', 271, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37937, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.577906+00', 488, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37938, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.504077+00', 698, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37939, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.696927+00', 572, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37940, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.554215+00', 827, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37941, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.651648+00', 931, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37942, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.604738+00', 1057, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37943, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:49.496562+00', 1111, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37944, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:49.523244+00', 1136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37945, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:49.570934+00', 1668, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37946, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:49.562274+00', 1733, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37947, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:49.572957+00', 1819, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37948, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:49.555391+00', 2629, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37949, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:49.50014+00', 2711, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37950, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.306593+00', 408, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37951, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.816787+00', 919, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37952, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.121913+00', 618, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37953, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.805093+00', 1384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37954, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.805093+00', 1525, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 16, 2, NULL, 3, NULL), +(37955, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.816787+00', 1583, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(37956, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.253681+00', 2040, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37957, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.253681+00', 2036, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37958, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.166697+00', 2164, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37959, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.193823+00', 2177, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37960, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.166697+00', 2217, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37961, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.312789+00', 2084, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37962, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.813825+00', 2648, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37963, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.271674+00', 2195, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37964, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.813825+00', 2680, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37965, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.969831+00', 3035, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37966, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.969831+00', 3047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37967, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.305036+00', 2894, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37968, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.794982+00', 3519, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37969, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.249534+00', 3070, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37970, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:17.794982+00', 3539, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37971, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:22.776989+00', 3585, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37972, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:22.776577+00', 3590, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37973, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:22.78331+00', 4780, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37974, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:22.776573+00', 4788, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37975, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:22.780455+00', 4878, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37976, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:22.77657+00', 6498, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37977, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:22.776594+00', 6597, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37978, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.960779+00', 3255, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37979, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.677316+00', 2537, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(37980, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.543815+00', 2701, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37981, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.899973+00', 3334, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(37982, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.899973+00', 3389, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(37983, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.960779+00', 3327, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(37984, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:22.577528+00', 2518, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(37985, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.970546+00', 4154, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(37986, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.970546+00', 4165, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(37987, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.701103+00', 3507, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37988, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.909065+00', 4392, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(37989, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.909065+00', 4420, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(37990, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.362344+00', 3964, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37991, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.362344+00', 4149, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(37992, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.518586+00', 4100, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(37993, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.417907+00', 4311, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37994, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.417907+00', 4325, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(37995, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.961071+00', 4794, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37996, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:20.961071+00', 4798, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(37997, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.582821+00', 4284, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(37998, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:21.484983+00', 4550, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(37999, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:23.097567+00', 3953, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38000, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:23.106389+00', 5044, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38001, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:23.097557+00', 5005, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38002, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:23.10531+00', 4996, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38003, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:23.103821+00', 5042, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38004, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:23.105272+00', 6544, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38005, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:23.10433+00', 6583, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38006, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:25.071535+00', 6291, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38007, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:25.069102+00', 6522, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38008, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:25.069103+00', 6118, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38009, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:25.069131+00', 6109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38010, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:25.074088+00', 6103, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38011, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:25.069125+00', 7399, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38012, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:25.073303+00', 7424, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38013, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:19.934347+00', 1977, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38014, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:19.90313+00', 1999, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38015, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:19.938584+00', 2295, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38016, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:19.921554+00', 2402, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38017, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:19.918105+00', 2467, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38018, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:19.901798+00', 3374, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38019, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:19.940009+00', 3346, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38020, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:24.133391+00', 4968, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38021, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:24.150622+00', 4932, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38022, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:24.161723+00', 5114, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38023, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:24.127027+00', 5181, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38024, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:24.151597+00', 5202, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38025, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:23.554791+00', 7576, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38026, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:23.554817+00', 7687, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38027, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:14.634452+00', 5130, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38028, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:14.655872+00', 5105, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38029, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:14.634449+00', 5127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38030, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:14.642793+00', 5121, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38031, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:14.641445+00', 5119, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38032, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:14.648+00', 6556, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38033, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:14.651017+00', 6594, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38034, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:20.971038+00', 1190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38035, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:21.205635+00', 1050, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38036, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:20.940766+00', 1457, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38037, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:20.9087+00', 1590, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38038, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:21.457433+00', 1051, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38039, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:20.976711+00', 1799, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38040, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:20.937605+00', 1879, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38041, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:28.815558+00', 10313, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38042, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:28.825627+00', 10061, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38043, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:28.82064+00', 10066, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38044, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:28.838406+00', 10117, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38045, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:28.814336+00', 10073, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38046, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:28.837208+00', 12767, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38047, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:28.814332+00', 12796, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38048, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:24.028109+00', 3146, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38049, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:24.042678+00', 3131, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38050, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:24.149511+00', 3024, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38051, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:24.124738+00', 3138, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38052, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:24.028016+00', 3146, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38053, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:24.146413+00', 4361, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38054, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:24.12895+00', 4415, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38055, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:21.328758+00', 881, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38056, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:19.860342+00', 2477, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38057, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:21.146423+00', 1475, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38058, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:21.240289+00', 1471, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38059, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:21.115014+00', 1631, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38060, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:21.27393+00', 2040, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38061, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:21.164539+00', 2195, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38062, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.678049+00', 1687, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38063, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.592702+00', 1933, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38064, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.678049+00', 1887, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38065, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.592702+00', 1975, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38066, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:16.761448+00', 1236, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38067, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:16.934872+00', 1332, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38068, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.628283+00', 3135, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38069, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.628283+00', 3183, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38070, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:17.113538+00', 2189, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38071, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:16.946217+00', 2488, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38072, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:17.110534+00', 2444, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38073, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:16.84823+00', 2665, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38074, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:16.84823+00', 2737, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38075, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.954804+00', 3765, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38076, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.954804+00', 3882, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38077, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.68918+00', 4478, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38078, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.68918+00', 4494, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38079, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.4502+00', 5189, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38080, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:15.4502+00', 5287, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38081, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:17.081128+00', 3685, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38082, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:17.000759+00', 3794, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38083, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:20.476274+00', 1308, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38084, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:20.476313+00', 1308, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38085, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:20.477662+00', 1826, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38086, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:20.490045+00', 1819, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38087, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:20.47629+00', 1904, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38088, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:20.491857+00', 3386, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38089, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:20.490364+00', 3405, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38090, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.825201+00', 3016, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38091, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.835685+00', 2946, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38092, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.888651+00', 2995, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38093, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.835685+00', 3048, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38094, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.888651+00', 2898, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38095, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.882881+00', 2904, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38096, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.816037+00', 3750, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38097, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.890232+00', 3677, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38098, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.827174+00', 3738, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38099, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.813072+00', 3753, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38100, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.827174+00', 3751, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38101, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.81307+00', 3793, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38102, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.877817+00', 3707, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38103, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.813072+00', 3771, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38104, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.877817+00', 3688, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38105, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.838299+00', 5158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38106, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.838299+00', 5155, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38107, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.832626+00', 5215, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38108, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.880963+00', 5224, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38109, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.880963+00', 5229, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38110, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:23.830629+00', 5323, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38111, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:15.701411+00', 1721, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38112, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:15.744936+00', 1669, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38113, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:15.754201+00', 2724, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38114, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:15.716138+00', 2793, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38115, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:15.737301+00', 2779, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38116, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:15.752273+00', 4256, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38117, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:15.750051+00', 4333, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38118, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:19.934516+00', 921, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38119, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:19.941807+00', 931, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38120, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:19.931203+00', 1245, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38121, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:19.944842+00', 1259, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38122, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:19.862475+00', 1386, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38123, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:19.932982+00', 2027, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38124, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:19.904836+00', 2075, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38125, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:31.626063+00', 1501, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38126, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:31.60122+00', 1544, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38127, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:31.610563+00', 1906, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38128, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:31.546413+00', 2024, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38129, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:31.634199+00', 2042, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38130, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:31.596785+00', 3427, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38131, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:31.472236+00', 3577, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38132, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.321985+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38133, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.364757+00', 221, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38134, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.363553+00', 394, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38135, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.326316+00', 485, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38136, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.416768+00', 434, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38137, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.431972+00', 719, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38138, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.321934+00', 878, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38139, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:20.294239+00', 1065, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38140, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:20.307678+00', 1104, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38141, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:20.247703+00', 1467, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38142, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:20.374642+00', 1440, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38143, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:20.236766+00', 1650, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38144, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:20.368232+00', 2153, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38145, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:20.343414+00', 2287, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38146, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.632143+00', 3284, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 3, NULL), +(38147, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.632238+00', 3839, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38148, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.704894+00', 3767, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38149, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.779395+00', 3692, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38150, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.632238+00', 3897, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38151, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.736956+00', 4359, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38152, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.688296+00', 4381, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38153, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.688296+00', 4345, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38154, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.651495+00', 4656, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38155, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.651495+00', 4582, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38156, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.7211+00', 4479, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38157, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.752853+00', 4609, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38158, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.632223+00', 4874, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38159, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.632223+00', 4889, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38160, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.635532+00', 7142, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38161, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.635532+00', 7153, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38162, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.651979+00', 7186, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38163, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.674818+00', 7180, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38164, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.651979+00', 7212, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38165, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:44.793032+00', 7100, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38166, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:33.462274+00', 1581, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38167, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:33.5104+00', 1552, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38168, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:33.493017+00', 2103, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38169, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:33.460403+00', 2208, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38170, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:33.469473+00', 2360, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38171, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:33.467408+00', 2765, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38172, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:33.35836+00', 3067, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38173, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:22.297981+00', 1978, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38174, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:22.392772+00', 1883, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38175, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:22.268969+00', 2287, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38176, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:22.421808+00', 2149, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38177, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:22.268799+00', 2337, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38178, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:22.401664+00', 3772, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38179, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:22.297587+00', 3868, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38180, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:06.965664+00', 5047, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63af1973b764fb86aced04ce" }, "counter" : { "$numberLong" : "17" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 16, 2, NULL, 3, NULL), +(38181, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:06.893951+00', 5120, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63af1973b764fb86aced04ce" }, "counter" : { "$numberLong" : "17" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 13, 2, NULL, 3, NULL), +(38182, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:06.977213+00', 5035, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63af1973b764fb86aced04ce" }, "counter" : { "$numberLong" : "17" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 1, 2, NULL, 3, NULL), +(38183, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:06.893914+00', 5120, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63af1973b764fb86aced04ce" }, "counter" : { "$numberLong" : "17" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 31, 2, NULL, 3, NULL), +(38184, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:06.907101+00', 5105, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63af1973b764fb86aced04ce" }, "counter" : { "$numberLong" : "17" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 14, 2, NULL, 3, NULL), +(38185, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:06.894039+00', 5120, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63af1973b764fb86aced04ce" }, "counter" : { "$numberLong" : "17" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38186, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:06.907721+00', 5106, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63af1973b764fb86aced04ce" }, "counter" : { "$numberLong" : "17" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 9, 2, NULL, 3, NULL), +(38187, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:33.332132+00', 1887, 0, FALSE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 16, 2, NULL, 3, NULL), +(38188, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:33.455004+00', 1770, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 31, 2, NULL, 3, NULL), +(38189, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:33.50234+00', 1717, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 13, 2, NULL, 3, NULL), +(38190, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:33.590181+00', 1631, 0, FALSE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 14, 2, NULL, 3, NULL), +(38191, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:33.506492+00', 1720, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 1, 2, NULL, 3, NULL), +(38192, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:33.199784+00', 2020, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 12, 2, NULL, 3, NULL), +(38193, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:31:33.50288+00', 1718, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 9, 2, NULL, 3, NULL), +(38194, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.109658+00', 6006, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38195, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.109658+00', 5768, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38196, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.768207+00', 5130, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38197, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.842323+00', 5035, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38198, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.020229+00', 6095, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38199, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.020229+00', 5864, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38200, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.033862+00', 9187, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38201, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.052081+00', 9191, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38202, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.033862+00', 9227, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38203, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.709875+00', 8555, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38204, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.653789+00', 8660, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38205, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.052081+00', 9283, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38206, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.357981+00', 9588, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38207, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.093897+00', 9830, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38208, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.093897+00', 9864, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38209, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.129063+00', 15541, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38210, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:05.955955+00', 15740, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38211, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.129063+00', 15557, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38212, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:05.955955+00', 15773, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38213, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.564397+00', 15265, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38214, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:06.63634+00', 15193, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38215, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.113072+00', 7760, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38216, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.087853+00', 7831, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38217, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.085864+00', 7795, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38218, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.085864+00', 7582, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38219, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.085805+00', 7755, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38220, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.087853+00', 7756, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38221, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.122835+00', 13510, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38222, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.117978+00', 13600, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38223, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.08588+00', 13548, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38224, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.087987+00', 13673, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38225, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.08588+00', 13692, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38226, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.122835+00', 13604, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38227, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.085846+00', 14216, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38228, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.085846+00', 14240, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38229, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.113843+00', 14419, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38230, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.099288+00', 18885, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38231, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.087901+00', 18900, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38232, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.099288+00', 19594, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38233, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.140866+00', 19555, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38234, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.087901+00', 19607, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38235, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:36.1286+00', 19596, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38236, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:25.629011+00', 4774, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38237, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:25.629005+00', 4774, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38238, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:25.629011+00', 5849, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38239, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:25.628986+00', 5847, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38240, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:25.629025+00', 6052, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38241, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:25.628992+00', 8799, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38242, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:25.628986+00', 8901, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38243, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:39.269681+00', 4546, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38244, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:39.270202+00', 4544, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38245, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:39.270091+00', 5393, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38246, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:39.344839+00', 5396, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38247, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:39.269636+00', 5647, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38248, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:39.318224+00', 8212, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38249, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:39.318605+00', 8209, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38250, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:21.668791+00', 1676, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38251, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:21.287866+00', 2130, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38252, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:21.938107+00', 2155, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38253, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:21.662488+00', 2542, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38254, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:21.948116+00', 2279, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38255, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:21.6636+00', 3254, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38256, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:21.659203+00', 3287, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38257, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:22.586328+00', 2198, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38258, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:22.601392+00', 2180, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38259, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:22.617272+00', 2366, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38260, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:22.586228+00', 2399, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38261, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:22.612324+00', 2413, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38262, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:22.61455+00', 3675, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38263, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:22.617537+00', 3680, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38264, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:55.706631+00', 862, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(38265, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.906795+00', 1733, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 3, NULL), +(38266, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.747109+00', 3476, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38267, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.899794+00', 2383, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38268, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.15912+00', 3147, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38269, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.904663+00', 2542, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(38270, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.90979+00', 2328, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38271, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:55.406882+00', 1827, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(38272, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.747109+00', 3646, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38273, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.15912+00', 3237, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38274, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.904663+00', 2589, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(38275, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.901664+00', 4935, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(38276, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.901664+00', 5055, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(38277, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:55.870564+00', 4046, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(38278, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.89931+00', 5117, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38279, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.89931+00', 5139, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(38280, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.415821+00', 5684, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(38281, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.360876+00', 6673, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(38282, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.913116+00', 6118, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(38283, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.169174+00', 6905, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(38284, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.902382+00', 6173, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(38285, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.622086+00', 7410, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38286, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.913116+00', 6335, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(38287, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.750142+00', 7287, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38288, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.622086+00', 7451, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38289, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.460482+00', 6790, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38290, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.907701+00', 6352, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38291, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.754702+00', 7495, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38292, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:55.618452+00', 5639, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(38293, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.360876+00', 6899, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(38294, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.902382+00', 6547, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(38295, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.750142+00', 7714, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38296, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.169174+00', 7312, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(38297, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:55.844126+00', 5603, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38298, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:55.658699+00', 6149, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(38299, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.754702+00', 7549, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38300, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:55.859986+00', 5949, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(38301, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.897911+00', 6380, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38302, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.909595+00', 11614, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38303, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:54.264567+00', 12430, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38304, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.608666+00', 13125, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38305, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.608666+00', 13128, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38306, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.721979+00', 13029, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38307, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:53.721979+00', 13038, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38308, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:02.092358+00', 6608, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38309, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:02.265083+00', 6396, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38310, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:02.174576+00', 9868, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38311, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:02.466335+00', 9606, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38312, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:02.274894+00', 10058, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38313, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:02.338321+00', 12201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38314, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:02.283851+00', 12304, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38315, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.9437+00', 3312, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38316, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.941699+00', 3314, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38317, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.783942+00', 3517, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38318, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.941699+00', 3452, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38319, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.942027+00', 3451, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38320, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.942027+00', 3313, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38321, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.778151+00', 3930, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38322, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.781653+00', 3879, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38323, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.778151+00', 3883, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38324, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.941288+00', 3719, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38325, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.781653+00', 3966, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38326, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.779822+00', 3886, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38327, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.946025+00', 4043, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38328, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.946025+00', 4080, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38329, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.94146+00', 4149, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38330, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.945743+00', 6278, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38331, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.945743+00', 6312, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38332, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.950534+00', 6352, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38333, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.778133+00', 6758, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38334, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.778133+00', 6784, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38335, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:37.945877+00', 7079, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38336, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:54.364923+00', 657, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38337, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.562105+00', 1483, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38338, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.562105+00', 1462, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38339, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:54.254429+00', 780, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38340, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.697428+00', 1348, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38341, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.697428+00', 1324, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38342, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.717+00', 2606, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38343, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.717+00', 2643, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38344, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:54.332901+00', 2039, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38345, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.605483+00', 2822, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38346, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.605483+00', 2828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38347, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:54.344894+00', 2152, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38348, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.606438+00', 2967, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38349, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.606438+00', 2979, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38350, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:54.301412+00', 2610, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38351, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.583192+00', 4618, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 3, NULL), +(38352, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.524542+00', 4794, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38353, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:53.524542+00', 4796, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38354, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:54.146551+00', 4202, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38355, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:54.264732+00', 4167, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38356, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.123466+00', 5966, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(38357, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.014629+00', 6809, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(38358, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.014629+00', 6075, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(38359, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.961714+00', 11006, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38360, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.075602+00', 10902, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(38361, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.041502+00', 10925, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(38362, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.041502+00', 11056, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(38363, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.961714+00', 11127, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38364, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.925931+00', 11716, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38365, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.101751+00', 11540, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38366, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.917999+00', 11741, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38367, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.925931+00', 11749, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38368, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.993085+00', 12976, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(38369, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.993085+00', 12998, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(38370, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.060378+00', 13093, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(38371, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.113809+00', 13144, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(38372, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.113809+00', 13250, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(38373, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.099689+00', 13344, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38374, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.966314+00', 14603, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38375, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.020984+00', 14557, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38376, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.946001+00', 14636, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(38377, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.110681+00', 14472, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(38378, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.017087+00', 14629, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(38379, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.03377+00', 14595, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(38380, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.017087+00', 14550, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(38381, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.966314+00', 14742, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38382, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.978071+00', 14589, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(38383, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.996828+00', 14906, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38384, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.03377+00', 14706, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(38385, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.088537+00', 14784, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(38386, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.978071+00', 14653, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(38387, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.041045+00', 14896, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(38388, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.088537+00', 14828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(38389, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.996828+00', 14958, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38390, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.971322+00', 14986, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38391, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.076131+00', 14666, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(38392, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.957212+00', 15160, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38393, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.957212+00', 15185, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38394, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.97677+00', 15227, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38395, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.964377+00', 19964, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38396, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.017536+00', 19928, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38397, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.939099+00', 20030, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38398, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:55.964377+00', 19979, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38399, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.019545+00', 20015, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38400, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:02:56.017536+00', 20061, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38401, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.284675+00', 2948, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(38402, X'40cd85b4f31701a3c98b4002c6867b3180127b048847cbd6572eac48d55bce9a', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.331069+00', 5312, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(38403, X'18f40d8159b4e5e38b0abd39bf4c58892e1c7c578c3ad9323008536d03428435', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.284608+00', 5359, 1, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(38404, X'6f71f28ac124c5f33cf0a98478bcf45e564ae57f069753a597cec3576f1efdfd', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.392532+00', 5261, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(38405, X'4805f72331d46115a346f4dc6269aee11e0c596a9e894b46bae1e8085bd1264d', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.284608+00', 8185, 2, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(38406, X'9abdc1ea45f15053b941b98440b3dbebc5628f9fdbdcfb200d05535224dbf2d2', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.284608+00', 8184, 2, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(38407, X'b60b5299bb6edc46749a3f2e55865df9f9c73cc2b49131472e09599e63de3183', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.390819+00', 8079, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(38408, X'324973c3cdb2be58cbee65315189fb7f5f40805b36004b2739a174022ff50129', TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:48.284685+00', 8184, 4, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(38409, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.438317+00', 1119, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(38410, X'0085dd9d6313d8314fc2b4d9f01adced044e4b9463bd90d2736ecf800cef682d', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.480661+00', 1294, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(38411, X'f65931acb836606eb2a7718de09033639cd2d968ca102e291fe1567006e2d1c5', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.44243+00', 1967, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38412, X'90709578191039815d366bae19f31bddff8bb9ea99cef925d5d2e735dd5dfd98', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.403722+00', 2071, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(38413, X'955cef53858f24cdb3c80c145207950121c24ebcb95ab4bd221efe1f7f309d0c', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.430363+00', 2054, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(38414, X'61a1381fa9d01b2addaacbf9e86add4d52a76837079a7cbd577dbc300f9eee69', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.410083+00', 2129, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(38415, X'a63b058aa20668d4f0c6f83873f5382170aaa8e7d1b1d2a4374160762eee63c3', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.40891+00', 2153, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(38416, X'b25b2302594bfe9d8b112e2ecfbaf660f6b6e1f179b821d419cd3ca35db1cb76', TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:28.441335+00', 2163, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(38417, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.822425+00', 514, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(38418, X'0085dd9d6313d8314fc2b4d9f01adced044e4b9463bd90d2736ecf800cef682d', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.884549+00', 2914, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(38419, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.607727+00', 3203, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38420, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.587569+00', 3330, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38421, X'b25b2302594bfe9d8b112e2ecfbaf660f6b6e1f179b821d419cd3ca35db1cb76', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.824875+00', 3951, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(38422, X'f65931acb836606eb2a7718de09033639cd2d968ca102e291fe1567006e2d1c5', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.896893+00', 3978, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(38423, X'a63b058aa20668d4f0c6f83873f5382170aaa8e7d1b1d2a4374160762eee63c3', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.906487+00', 4073, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(38424, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.597995+00', 4397, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38425, X'90709578191039815d366bae19f31bddff8bb9ea99cef925d5d2e735dd5dfd98', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.672639+00', 4443, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(38426, X'61a1381fa9d01b2addaacbf9e86add4d52a76837079a7cbd577dbc300f9eee69', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.824089+00', 4474, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(38427, X'955cef53858f24cdb3c80c145207950121c24ebcb95ab4bd221efe1f7f309d0c', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:49.060867+00', 4336, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(38428, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.698506+00', 4842, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38429, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.653155+00', 4895, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38430, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.59247+00', 7584, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38431, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:48.598369+00', 7649, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38432, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:43.184367+00', 3732, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38433, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.515975+00', 4422, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38434, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.466244+00', 4451, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38435, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:43.166149+00', 3751, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38436, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:43.166149+00', 3873, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38437, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:43.184367+00', 3854, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38438, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.457533+00', 5793, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38439, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.498454+00', 5749, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38440, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:43.181205+00', 5067, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38441, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.498454+00', 5862, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38442, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.456058+00', 5919, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38443, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.457533+00', 5929, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38444, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.561127+00', 5912, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38445, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.561127+00', 5950, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38446, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.485173+00', 6140, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38447, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.498439+00', 9257, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38448, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.498439+00', 9251, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38449, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.473734+00', 9297, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38450, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.458377+00', 9385, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38451, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:42.458377+00', 9380, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38452, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:43.164359+00', 8711, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38453, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:53.30672+00', 4778, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38454, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:53.084374+00', 5000, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38455, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:53.041359+00', 5535, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38456, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:53.080535+00', 5540, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38457, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:53.097078+00', 5594, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38458, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:53.114567+00', 7241, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38459, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:53.041309+00', 7366, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38460, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.155269+00', 1245, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38461, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.158151+00', 1242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38462, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.16133+00', 1784, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38463, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.16133+00', 2006, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 1, 2, NULL, 3, NULL), +(38464, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.150963+00', 2021, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(38465, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.157134+00', 2014, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(38466, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.150982+00', 2661, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38467, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.150982+00', 2673, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38468, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.159947+00', 2683, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38469, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:46.159947+00', 2699, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38470, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.640823+00', 778, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38471, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.737776+00', 686, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38472, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.640823+00', 873, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(38473, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.736949+00', 990, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38474, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.736949+00', 1031, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38475, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.587108+00', 1240, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38476, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.664789+00', 1195, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38477, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.587108+00', 1278, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38478, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.664789+00', 1265, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38479, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.642255+00', 1589, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38480, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.642255+00', 1602, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38481, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.548679+00', 2010, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38482, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:05.650566+00', 913, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38483, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:04.548679+00', 2074, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38484, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.531512+00', 1412, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38485, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:07.305253+00', 629, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38486, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.675666+00', 1363, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38487, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.688986+00', 1433, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38488, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.71324+00', 1861, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38489, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.75693+00', 1966, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38490, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:09.416239+00', 4705, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38491, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:09.406989+00', 4717, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38492, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:09.414839+00', 5575, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38493, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:09.480106+00', 5509, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38494, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:09.46449+00', 5932, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38495, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:09.515932+00', 7808, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38496, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:09.407016+00', 7960, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38497, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.748891+00', 1553, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38498, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.691125+00', 1610, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38499, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.194954+00', 1129, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38500, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.691125+00', 1773, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38501, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.748891+00', 1692, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38502, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.608149+00', 1061, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38503, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.093876+00', 3440, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38504, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.839175+00', 3694, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38505, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.726256+00', 3807, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38506, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.839175+00', 3731, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38507, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.093876+00', 3495, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38508, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.628172+00', 3134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38509, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.726256+00', 4092, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38510, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.133322+00', 3621, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38511, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.197637+00', 3547, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38512, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.239378+00', 4065, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38513, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.238794+00', 5098, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38514, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.761215+00', 4575, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38515, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.761215+00', 4611, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38516, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:30.892559+00', 3483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38517, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:29.238794+00', 5190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38518, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.445658+00', 8560, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38519, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.710423+00', 8606, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38520, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.710423+00', 8295, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38521, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.445658+00', 8893, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38522, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.524067+00', 8481, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38523, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.484626+00', 8628, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38524, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.437335+00', 9171, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38525, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.572826+00', 9038, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38526, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.518966+00', 9092, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38527, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.452966+00', 9161, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38528, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.518966+00', 9129, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38529, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.572826+00', 9093, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38530, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.467853+00', 9511, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38531, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.467853+00', 9523, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38532, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.436396+00', 9876, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38533, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.520667+00', 13972, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38534, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.520667+00', 13989, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38535, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.436365+00', 14125, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38536, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.436349+00', 14197, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38537, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.436407+00', 14305, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38538, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:00:56.436407+00', 14339, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38539, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.09026+00', 4663, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38540, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.076322+00', 4653, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38541, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.107732+00', 4622, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38542, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.107884+00', 4759, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38543, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.120587+00', 4609, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38544, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.127472+00', 4826, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38545, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.127472+00', 4739, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38546, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.107732+00', 4846, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38547, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.076693+00', 5042, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38548, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.127008+00', 4787, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38549, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.074591+00', 4796, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38550, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.120587+00', 4833, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38551, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.127008+00', 4828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38552, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.080115+00', 5192, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38553, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.080115+00', 5219, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38554, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.084176+00', 8105, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38555, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.074572+00', 8128, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38556, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.084176+00', 8150, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38557, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.093517+00', 8096, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38558, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.092694+00', 8528, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38559, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:14.093517+00', 8116, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38560, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:53.087947+00', 1050, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38561, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:53.130915+00', 1016, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38562, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:53.121486+00', 1684, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38563, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:53.119618+00', 1762, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38564, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:53.15496+00', 1837, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38565, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:53.109558+00', 2999, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38566, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:53.11664+00', 3016, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38567, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:04.629446+00', 6424, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38568, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.041209+00', 6012, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38569, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:04.629446+00', 6104, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38570, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.138744+00', 5595, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38571, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.05219+00', 5681, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38572, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.041209+00', 5687, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38573, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.043282+00', 6196, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38574, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.035314+00', 6200, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38575, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.035314+00', 6187, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38576, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.104098+00', 6213, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38577, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:10.191759+00', 1191, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38578, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.002505+00', 6395, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38579, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:10.46641+00', 1844, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38580, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:10.523237+00', 1804, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38581, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:04.618508+00', 7701, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38582, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.0968+00', 7226, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38583, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:04.618508+00', 7743, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38584, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:10.377428+00', 2003, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38585, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:10.372649+00', 2019, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38586, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.002505+00', 6425, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38587, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:10.45056+00', 3728, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38588, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.045494+00', 9445, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38589, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.089031+00', 9394, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38590, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.045494+00', 9438, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38591, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:05.137317+00', 9393, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38592, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:09.925621+00', 4702, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38593, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:04.621605+00', 9969, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38594, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:04.621605+00', 9984, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38595, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:54.175132+00', 3033, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38596, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:54.18406+00', 3557, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38597, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:54.166147+00', 3619, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38598, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:54.184742+00', 3023, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38599, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:54.177202+00', 3652, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38600, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:54.166002+00', 4970, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38601, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:54.233528+00', 4936, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38602, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:11.171064+00', 6554, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38603, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:11.167357+00', 6558, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38604, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:11.163833+00', 7433, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38605, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:11.161331+00', 7442, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38606, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:11.166254+00', 7431, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38607, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.248342+00', 670, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38608, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.308829+00', 652, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38609, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.200304+00', 842, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38610, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.260589+00', 868, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38611, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.310793+00', 1060, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38612, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.201019+00', 2283, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38613, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:11.161317+00', 9452, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38614, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:11.161271+00', 9614, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38615, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.363262+00', 2472, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38616, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:56.316799+00', 2941, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38617, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:56.314016+00', 2944, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38618, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:56.314003+00', 3302, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38619, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:56.324312+00', 3290, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38620, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:56.314157+00', 3474, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38621, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:56.422924+00', 4307, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38622, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:56.313922+00', 4438, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38623, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:07.747681+00', 2627, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38624, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:07.735298+00', 2669, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38625, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:07.689114+00', 3522, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38626, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:07.734151+00', 3572, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38627, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:07.795451+00', 3696, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38628, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:07.683071+00', 6374, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38629, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:07.764962+00', 6311, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38630, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.108193+00', 497, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38631, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.299505+00', 402, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38632, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.139717+00', 593, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38633, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.137059+00', 633, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38634, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.290003+00', 549, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38635, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.144027+00', 1001, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38636, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.172848+00', 1070, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38637, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:53.175216+00', 924, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38638, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:52.778851+00', 1330, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38639, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:52.75316+00', 1863, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38640, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:53.210532+00', 1451, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38641, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:53.126018+00', 1569, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38642, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:52.720148+00', 2606, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38643, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:52.51991+00', 2850, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38644, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:12.155477+00', 1921, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38645, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:12.133418+00', 1939, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38646, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:12.134332+00', 2250, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38647, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:12.133472+00', 2346, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38648, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:12.18712+00', 2357, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38649, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:12.176896+00', 3356, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38650, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:12.183228+00', 3385, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38651, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.211378+00', 3186, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38652, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.208378+00', 3189, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38653, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.273286+00', 3128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38654, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.261173+00', 3136, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38655, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.211378+00', 3297, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38656, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.208378+00', 3300, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38657, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.236712+00', 3884, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38658, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.214426+00', 3910, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38659, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.196298+00', 3932, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38660, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.267213+00', 3861, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38661, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.236712+00', 3912, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38662, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.214426+00', 3940, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38663, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.230538+00', 4308, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38664, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.230538+00', 4315, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38665, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.253978+00', 4305, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38666, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.279744+00', 5502, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38667, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.23079+00', 5635, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38668, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.23079+00', 5638, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38669, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.201742+00', 5707, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38670, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.201742+00', 5723, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38671, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:13.196379+00', 5732, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38672, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.688172+00', 1701, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38673, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.938015+00', 1454, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38674, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.768448+00', 1630, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38675, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.711183+00', 1687, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38676, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.688172+00', 1712, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38677, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.711183+00', 1700, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38678, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.953657+00', 4656, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38679, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.802736+00', 4811, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38680, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.953657+00', 4674, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38681, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.702954+00', 4956, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38682, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.702954+00', 4940, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38683, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.792282+00', 4915, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38684, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.78637+00', 5310, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38685, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.78637+00', 5312, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38686, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.980171+00', 5118, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38687, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.799275+00', 7777, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38688, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.758589+00', 7982, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 3, NULL), +(38689, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.799268+00', 7965, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38690, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.779497+00', 7987, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38691, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:57.779497+00', 7993, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38692, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:12.221936+00', 2426, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38693, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:12.211745+00', 2436, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38694, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:12.124033+00', 2843, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38695, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:12.075143+00', 2920, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38696, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:12.162183+00', 2859, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38697, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:12.075144+00', 4155, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38698, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:12.147861+00', 4131, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38699, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.265259+00', 406, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38700, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.179039+00', 505, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38701, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.191175+00', 975, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38702, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.281847+00', 941, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38703, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.265435+00', 958, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38704, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.12844+00', 1311, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38705, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.138193+00', 1350, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38706, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:13.14854+00', 2536, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38707, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:13.192563+00', 2581, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38708, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:13.062642+00', 3220, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38709, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:13.061464+00', 3327, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38710, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:13.21943+00', 3185, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38711, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:13.080216+00', 4530, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38712, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:13.216842+00', 4434, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38713, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.34209+00', 517, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38714, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.30756+00', 587, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38715, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.385935+00', 755, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38716, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.294305+00', 1001, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38717, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.216245+00', 1135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38718, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.408667+00', 947, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38719, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.214334+00', 1324, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38720, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:10.940684+00', 3651, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38721, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:10.889726+00', 3767, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38722, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:10.889726+00', 4019, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38723, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:11.191363+00', 3767, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38724, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:10.977303+00', 4139, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38725, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:11.197973+00', 5091, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38726, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:10.96305+00', 5383, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38727, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:16.728222+00', 1746, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38728, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:16.705678+00', 1767, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38729, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:16.693476+00', 1848, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38730, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:16.711093+00', 1847, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38731, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:16.709147+00', 1924, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38732, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:16.72928+00', 3120, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38733, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:16.703249+00', 3156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38734, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:43.555541+00', 1058, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38735, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:43.531212+00', 1085, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38736, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:43.524645+00', 1455, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38737, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:43.54456+00', 1448, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38738, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:43.589725+00', 1443, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38739, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:43.556275+00', 2230, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38740, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:43.561093+00', 2239, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38741, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:41.286402+00', 3817, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38742, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:41.286343+00', 3823, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38743, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:41.286344+00', 3820, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38744, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:41.286365+00', 3823, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38745, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:41.289958+00', 3815, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38746, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:41.319306+00', 5443, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38747, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:41.286279+00', 5528, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38748, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:01.498735+00', 632, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38749, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:01.452335+00', 705, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38750, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:01.501406+00', 956, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38751, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:01.493948+00', 976, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38752, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:01.511697+00', 1240, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:01.471925+00', 1671, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38754, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:01.573519+00', 1588, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38755, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.354825+00', 1434, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38756, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.387233+00', 1399, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38757, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.886704+00', 928, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38758, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.101713+00', 713, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38759, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.387233+00', 1440, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38760, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.354825+00', 1472, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38761, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.340714+00', 2380, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38762, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.340714+00', 2385, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38763, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.078076+00', 1701, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38764, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.413502+00', 2595, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38765, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.413502+00', 2603, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38766, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.125484+00', 1929, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38767, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.342911+00', 2781, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38768, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.342911+00', 2786, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38769, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.114283+00', 2039, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38770, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.332745+00', 3924, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38771, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.332745+00', 3933, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38772, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.919219+00', 3494, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38773, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.389325+00', 4031, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38774, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.389325+00', 4041, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38775, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:30.924095+00', 3509, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38776, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:35.783077+00', 1191, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38777, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:35.780902+00', 1204, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38778, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:35.764585+00', 1795, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38779, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:35.808523+00', 1781, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38780, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:35.736617+00', 1907, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38781, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:35.810218+00', 2582, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38782, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:35.774105+00', 2660, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38783, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.990323+00', 3479, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38784, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.797646+00', 3822, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38785, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.903892+00', 3716, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38786, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:55.010907+00', 3454, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38787, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.903892+00', 3561, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38788, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.797646+00', 3667, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38789, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:55.019204+00', 3713, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38790, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.839378+00', 3927, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38791, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.785262+00', 4002, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38792, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.839378+00', 3893, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38793, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.926995+00', 3811, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38794, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.785262+00', 3948, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38795, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:55.002058+00', 3892, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38796, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.838189+00', 4067, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38797, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.838189+00', 4049, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38798, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.784979+00', 6835, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38799, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.784979+00', 6882, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38800, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.841844+00', 6878, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38801, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.841844+00', 6898, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38802, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.974296+00', 6780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38803, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:54.991264+00', 6829, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38804, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.796681+00', 668, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38805, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.778592+00', 693, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38806, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.778592+00', 714, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(38807, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.796681+00', 697, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(38808, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.350473+00', 389, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38809, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.779332+00', 518, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38810, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.807299+00', 1629, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38811, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.807299+00', 1632, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38812, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.764869+00', 1827, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38813, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.764869+00', 1844, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38814, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.812697+00', 2075, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38815, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.812697+00', 2081, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38816, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.57443+00', 1317, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38817, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.792393+00', 1265, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38818, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.835652+00', 1238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38819, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.769732+00', 2704, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38820, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.397685+00', 2199, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38821, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.769732+00', 2832, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38822, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.773765+00', 2850, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38823, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:24.773765+00', 2840, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38824, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.336749+00', 2310, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38825, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.783042+00', 157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38826, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.788218+00', 179, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38827, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.803009+00', 374, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38828, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.791179+00', 411, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38829, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.830976+00', 421, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38830, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.782273+00', 641, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38831, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.824562+00', 783, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38832, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.228578+00', 3586, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38833, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.228578+00', 3808, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38834, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.404724+00', 3645, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38835, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:02.471228+00', 1342, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38836, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.289973+00', 3749, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38837, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.289973+00', 3524, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38838, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.241526+00', 4807, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38839, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.241526+00', 4821, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38840, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.246814+00', 4805, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38841, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.246814+00', 4835, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38842, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.269481+00', 4847, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38843, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.269481+00', 4865, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38844, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:02.34184+00', 3183, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38845, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:02.681539+00', 2874, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38846, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:02.761785+00', 3013, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38847, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:03.334035+00', 3272, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38848, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.229701+00', 6533, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38849, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.229701+00', 6568, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38850, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:02.781191+00', 4027, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38851, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.2427+00', 6593, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38852, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:00.2427+00', 6609, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38853, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.415615+00', 1564, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38854, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.67927+00', 1336, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38855, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.798583+00', 1181, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38856, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.034853+00', 1947, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38857, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.034853+00', 1985, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38858, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.415615+00', 1605, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38859, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.679346+00', 2611, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38860, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.398213+00', 3059, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38861, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.826824+00', 2642, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38862, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.389499+00', 3094, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38863, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.389499+00', 3075, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38864, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.398213+00', 3089, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38865, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.757914+00', 2886, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38866, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.377706+00', 3337, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38867, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.377706+00', 3334, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38868, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.02541+00', 5590, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38869, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.02541+00', 5609, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38870, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.756332+00', 4916, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38871, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.668546+00', 5024, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38872, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.223839+00', 5512, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38873, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:33.223839+00', 5543, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38874, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.058342+00', 4593, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38875, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.28567+00', 4387, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38876, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.081071+00', 4570, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38877, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.253515+00', 4398, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38878, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.081071+00', 4674, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38879, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.058342+00', 4697, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38880, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:01.482626+00', 3767, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38881, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:01.482626+00', 3800, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38882, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.072259+00', 5173, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38883, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.072259+00', 5198, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38884, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.109189+00', 5135, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38885, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.298207+00', 5029, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38886, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.006912+00', 5362, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38887, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.006912+00', 5370, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38888, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.279405+00', 5124, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38889, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.209257+00', 6783, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38890, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.209257+00', 6794, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38891, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:01.457123+00', 5623, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38892, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.206591+00', 6959, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38893, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.012606+00', 7163, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38894, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:00.012606+00', 7208, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38895, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:27.778353+00', 819, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38896, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.480986+00', 474, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38897, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.490237+00', 391, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38898, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.335346+00', 562, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38899, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.453859+00', 2395, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38900, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.453859+00', 2409, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38901, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.478665+00', 2623, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38902, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.478665+00', 2683, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38903, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.400232+00', 1892, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38904, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.388553+00', 1987, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38905, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.303041+00', 2160, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38906, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.440969+00', 3051, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38907, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.440969+00', 3061, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38908, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:27.849551+00', 4651, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38909, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:27.849551+00', 4653, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38910, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:27.772767+00', 4906, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38911, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:27.772767+00', 4927, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38912, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.386601+00', 3608, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38913, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.352639+00', 3654, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38914, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.338772+00', 490, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38915, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.338772+00', 511, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(38916, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.20867+00', 654, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38917, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.20867+00', 660, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(38918, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.366065+00', 1231, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38919, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.366065+00', 1299, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38920, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:24.312708+00', 366, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38921, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.317781+00', 1478, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38922, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.317781+00', 1483, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38923, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.329051+00', 1530, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38924, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.329051+00', 1553, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38925, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.984827+00', 964, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38926, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.96772+00', 1292, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38927, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:24.279056+00', 1274, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38928, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.95391+00', 1600, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38929, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.252835+00', 3333, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38930, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.252835+00', 3337, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38931, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.323411+00', 3323, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38932, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.323411+00', 3329, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38933, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.949495+00', 2738, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38934, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.988791+00', 2719, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38935, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.2067+00', 287, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38936, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.210578+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38937, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.219552+00', 572, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(38938, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.264038+00', 693, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(38939, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.214203+00', 1063, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(38940, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.173193+00', 1576, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38941, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.173193+00', 1584, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38942, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.90071+00', 1037, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38943, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.186137+00', 2077, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38944, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.186137+00', 2092, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38945, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:08.441595+00', 884, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38946, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.868739+00', 1818, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38947, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:08.301717+00', 1390, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38948, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:08.346488+00', 1361, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38949, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.786457+00', 2186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38950, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.800769+00', 2360, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38951, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.249454+00', 3554, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38952, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:17.017898+00', 2786, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38953, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.992853+00', 2814, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38954, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.293426+00', 3594, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38955, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.293426+00', 3510, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38956, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.249454+00', 3638, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38957, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:17.055464+00', 3232, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38958, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.979121+00', 3307, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38959, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.252651+00', 4050, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38960, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.252651+00', 4034, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38961, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.249456+00', 4065, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38962, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.249456+00', 4036, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38963, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:17.102563+00', 3496, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38964, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.269668+00', 4335, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38965, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.269668+00', 4324, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38966, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.286672+00', 5788, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38967, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.286672+00', 5780, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38968, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.957865+00', 5134, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38969, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.262634+00', 5921, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38970, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.262634+00', 5934, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(38971, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:16.94524+00', 5261, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38972, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:32.043288+00', 2028, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38973, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:32.095817+00', 1977, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38974, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:32.040794+00', 2217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38975, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:32.077461+00', 2237, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38976, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:32.078961+00', 2328, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38977, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:32.062132+00', 3147, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38978, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:32.040769+00', 3184, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38979, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.736587+00', 1363, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(38980, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.848747+00', 1317, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(38981, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.736587+00', 1429, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(38982, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.848747+00', 1251, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38983, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:05.298334+00', 903, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(38984, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:05.755082+00', 482, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(38985, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.75042+00', 1595, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(38986, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.75042+00', 1587, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38987, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.81301+00', 1551, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38988, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.81301+00', 1578, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(38989, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.74668+00', 1862, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38990, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.74668+00', 2054, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(38991, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:05.833995+00', 1002, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(38992, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:05.761281+00', 1080, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(38993, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:05.815229+00', 1206, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(38994, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.724265+00', 2719, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38995, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.724265+00', 2740, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(38996, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:05.33745+00', 2132, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(38997, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.716875+00', 2928, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38998, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:05.319567+00', 2341, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(38999, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:04.716875+00', 2945, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39000, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.448812+00', 3821, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39001, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.448812+00', 3744, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39002, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.777056+00', 3415, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39003, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.766745+00', 3437, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39004, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409394+00', 3865, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39005, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409394+00', 3788, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39006, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.448326+00', 5089, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39007, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.882372+00', 4656, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39008, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.448326+00', 5125, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39009, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409475+00', 5343, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39010, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.902069+00', 4846, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39011, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409475+00', 5386, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39012, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409793+00', 5990, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39013, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409793+00', 5995, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39014, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.915896+00', 5573, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39015, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.484526+00', 8893, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39016, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.484526+00', 8905, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39017, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:05.102275+00', 8321, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39018, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409434+00', 9124, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39019, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.409434+00', 9129, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39020, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:04.704118+00', 8892, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39021, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.528954+00', 324, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39022, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.023744+00', 826, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39023, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.474358+00', 538, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39024, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.125765+00', 975, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39025, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:31.998949+00', 1151, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39026, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.131796+00', 1356, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39027, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.53774+00', 986, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39028, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.301878+00', 459, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39029, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.409551+00', 368, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39030, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.301878+00', 515, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(39031, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.276406+00', 932, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39032, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.429518+00', 788, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39033, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.411704+00', 877, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(39034, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.839409+00', 502, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39035, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.504865+00', 946, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39036, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.477428+00', 1198, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39037, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.548939+00', 1284, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39038, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.429494+00', 1426, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39039, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.269562+00', 2809, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39040, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.269562+00', 2806, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39041, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.436711+00', 2648, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39042, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.436711+00', 2652, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39043, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.382787+00', 1803, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39044, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.39254+00', 1952, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39045, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.728613+00', 629, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(39046, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.728613+00', 619, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39047, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:28.222603+00', 308, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39048, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.750326+00', 876, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39049, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.692372+00', 1060, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39050, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.692372+00', 1097, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39051, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.817337+00', 1045, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39052, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.744846+00', 1172, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39053, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.745506+00', 1369, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39054, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:27.745506+00', 1380, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39055, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.208951+00', 634, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39056, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.355253+00', 511, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39057, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.422884+00', 647, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39058, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.302948+00', 953, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39059, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.498108+00', 842, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39060, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.293583+00', 1326, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39061, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.120972+00', 1551, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39062, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.585996+00', 2706, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39063, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:18.251451+00', 2040, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39064, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.628767+00', 2663, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39065, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.585996+00', 2748, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39066, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:18.198135+00', 2101, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39067, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.628767+00', 2709, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39068, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.614266+00', 3561, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39069, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:18.341872+00', 2854, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39070, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.614266+00', 3647, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39071, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.585968+00', 3731, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 3, NULL), +(39072, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:18.356932+00', 2962, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39073, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:18.337412+00', 3170, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39074, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.991593+00', 3622, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39075, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.991593+00', 3630, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39076, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.609784+00', 6410, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39077, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.609784+00', 6399, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39078, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:18.251201+00', 5890, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39079, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.601827+00', 6538, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39080, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:17.601827+00', 6553, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39081, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:18.177029+00', 6030, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39082, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:20.389011+00', 1274, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39083, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:20.40215+00', 1260, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39084, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:20.391371+00', 1492, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39085, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:20.381184+00', 1508, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39086, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:20.391862+00', 1573, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39087, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:20.387803+00', 2546, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39088, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:20.381184+00', 2575, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39089, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:35.011067+00', 2758, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39090, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:34.986849+00', 2783, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39091, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:35.029575+00', 3051, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39092, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:34.980437+00', 3160, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39093, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:34.994171+00', 3179, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39094, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:35.00909+00', 4120, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39095, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:34.976042+00', 4166, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39096, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.652286+00', 5997, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39097, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.728775+00', 5767, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39098, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.670356+00', 5825, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39099, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.633521+00', 5862, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39100, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.703826+00', 5938, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39101, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.721343+00', 5930, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39102, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.698481+00', 5952, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39103, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.633521+00', 6254, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39104, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.652286+00', 6236, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39105, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.673309+00', 6513, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39106, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.698481+00', 6190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39107, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.664889+00', 5987, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39108, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.728775+00', 6160, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39109, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.673309+00', 6541, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39110, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.689722+00', 6701, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39111, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.633491+00', 9852, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39112, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.709217+00', 9949, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39113, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.709217+00', 9959, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39114, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.648937+00', 10072, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39115, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.648937+00', 10090, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39116, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:06.736732+00', 10003, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39117, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.65028+00', 2477, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39118, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.032744+00', 2092, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39119, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.347016+00', 1795, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39120, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.65028+00', 2508, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39121, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.742849+00', 2425, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39122, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.742849+00', 2459, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39123, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.137936+00', 4360, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39124, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.971575+00', 4536, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39125, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.751228+00', 4758, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39126, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.971575+00', 4551, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39127, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.052879+00', 4480, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39128, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.751228+00', 4786, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39129, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.342207+00', 4354, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39130, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.648805+00', 5073, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39131, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:39.648805+00', 5071, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39132, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.114089+00', 5691, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39133, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.114089+00', 5693, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39134, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.031571+00', 6057, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39135, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.327016+00', 5780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39136, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.195306+00', 5906, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39137, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:40.031571+00', 6091, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39138, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:48.832044+00', 7924, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39139, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:48.85468+00', 7900, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39140, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:48.832017+00', 8364, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39141, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:48.832082+00', 8422, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39142, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:48.832021+00', 8500, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39143, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:48.858536+00', 10675, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39144, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:48.847725+00', 10882, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39145, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:49.186223+00', 4892, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39146, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:49.186223+00', 4892, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39147, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:49.189491+00', 4887, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39148, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:49.243255+00', 4833, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39149, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:49.227065+00', 4849, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39150, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:49.208179+00', 6949, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39151, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:49.229581+00', 7396, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39152, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:43.042061+00', 2730, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39153, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:43.034617+00', 2851, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39154, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:43.035129+00', 3060, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39155, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:43.034592+00', 3060, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39156, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:43.044012+00', 3073, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39157, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:43.037256+00', 5140, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39158, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:43.041909+00', 5159, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39159, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:46.8892+00', 4289, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39160, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:46.896367+00', 4282, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39161, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:46.884817+00', 4295, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39162, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:46.914952+00', 4264, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39163, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:46.884787+00', 4296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39164, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:46.912645+00', 5166, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39165, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:46.885129+00', 5201, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39166, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.883088+00', 695, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39167, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.889294+00', 630, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39168, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.883088+00', 1309, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 16, 2, NULL, 3, NULL), +(39169, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.889294+00', 1303, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(39170, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:50.152168+00', 1023, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39171, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:50.813083+00', 868, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39172, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.89656+00', 3365, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39173, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.860793+00', 3401, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39174, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.860793+00', 3444, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39175, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.89656+00', 3406, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39176, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.918354+00', 3501, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39177, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.918354+00', 3525, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39178, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:49.832819+00', 2611, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39179, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:49.895591+00', 2548, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39180, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:50.083961+00', 2506, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39181, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.918578+00', 4995, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39182, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.918578+00', 4989, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39183, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.847027+00', 5126, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39184, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:48.847027+00', 5137, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39185, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:49.848982+00', 4195, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39186, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:49.770804+00', 4279, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39187, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:41.224733+00', 5518, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39188, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.964287+00', 8778, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39189, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.946159+00', 8670, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39190, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.9817+00', 8635, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39191, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:41.250363+00', 5863, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39192, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.942775+00', 9173, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39193, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:41.265028+00', 5351, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39194, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.954395+00', 8661, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39195, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.899821+00', 9231, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39196, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:41.147582+00', 5976, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39197, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.97044+00', 9144, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39198, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.946159+00', 9157, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39199, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.954395+00', 9149, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39200, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.942775+00', 9236, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39201, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:41.14271+00', 6472, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39202, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.983759+00', 9156, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39203, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.899869+00', 10279, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39204, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.899821+00', 9321, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39205, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.899869+00', 10295, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39206, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.974643+00', 10245, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39207, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:41.330153+00', 10551, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39208, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:41.325041+00', 10567, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39209, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.95797+00', 14072, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39210, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.95797+00', 14077, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39211, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.966231+00', 14089, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39212, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.972613+00', 14091, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39213, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.960467+00', 14146, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39214, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:37.960467+00', 14150, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39215, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.776042+00', 4209, 0, FALSE, 'public-dashboard', 'Iterator has been closed', NULL, 16, 2, NULL, 3, NULL), +(39216, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.651733+00', 4591, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39217, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.742776+00', 4500, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39218, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.651897+00', 4591, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39219, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.742776+00', 4592, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39220, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.74821+00', 5059, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39221, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.660894+00', 5145, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39222, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.788651+00', 5101, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39223, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.788651+00', 5116, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39224, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.782692+00', 5175, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39225, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.782692+00', 5241, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39226, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.65663+00', 5565, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39227, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.66992+00', 5605, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39228, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.66992+00', 5612, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39229, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.754076+00', 9257, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39230, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.754076+00', 9274, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39231, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.662126+00', 9397, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39232, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.736983+00', 9393, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39233, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.736983+00', 9396, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39234, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:07.758841+00', 9445, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39235, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.612757+00', 279, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39236, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.329128+00', 587, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39237, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.571683+00', 925, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(39238, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.109691+00', 628, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39239, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.628539+00', 1139, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39240, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.628539+00', 1145, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39241, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.277044+00', 553, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39242, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.452843+00', 1505, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39243, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.452843+00', 1507, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39244, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.583466+00', 823, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39245, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.621738+00', 789, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39246, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.48337+00', 964, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39247, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:36.143553+00', 486, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39248, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.408646+00', 1607, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39249, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.462083+00', 2572, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39250, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.558343+00', 2511, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39251, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.558343+00', 2523, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39252, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.588881+00', 1630, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39253, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:35.821119+00', 3742, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39254, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:35.731319+00', 3832, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39255, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:35.864764+00', 4051, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39256, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:35.819549+00', 4110, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39257, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:35.81856+00', 5126, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39258, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:35.750501+00', 7752, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39259, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:35.860872+00', 7689, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39260, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.525999+00', 2325, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39261, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.525999+00', 2522, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(39262, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.462421+00', 2488, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39263, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.291354+00', 4715, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39264, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.412529+00', 4601, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39265, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.492278+00', 4593, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39266, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.291354+00', 4738, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(39267, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.492278+00', 4669, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39268, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.26102+00', 4901, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39269, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.274475+00', 5208, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39270, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.307913+00', 5176, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39271, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.307913+00', 5291, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39272, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.407556+00', 5631, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39273, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.407556+00', 5635, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(39274, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.479191+00', 5818, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39275, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.26102+00', 6032, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39276, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.395524+00', 6790, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39277, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.335785+00', 6846, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39278, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.399628+00', 6781, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39279, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.517292+00', 6665, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39280, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.475249+00', 6708, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39281, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.509122+00', 6671, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39282, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.349681+00', 7017, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39283, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.395524+00', 6997, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39284, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.605447+00', 6586, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39285, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.335785+00', 6993, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39286, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.509122+00', 6708, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(39287, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.475249+00', 6905, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39288, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.481799+00', 6946, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39289, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.316203+00', 7526, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39290, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.426769+00', 7343, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39291, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.37594+00', 7555, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39292, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.426769+00', 7365, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(39293, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.37594+00', 7639, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39294, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.367972+00', 7460, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39295, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.533266+00', 7454, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39296, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.316203+00', 7589, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(39297, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.519192+00', 10654, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39298, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.357221+00', 10855, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39299, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.357221+00', 10865, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39300, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.62806+00', 10606, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39301, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.374339+00', 10872, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39302, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:39.374339+00', 10881, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39303, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.018032+00', 3512, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39304, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.075929+00', 3494, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39305, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.018032+00', 3557, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39306, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.031892+00', 3493, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39307, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.075929+00', 3449, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39308, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.275198+00', 3249, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39309, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.01331+00', 3654, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39310, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.01331+00', 3675, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39311, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.031292+00', 3676, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39312, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.031292+00', 3683, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39313, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.073037+00', 3668, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39314, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.090553+00', 3652, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39315, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.274795+00', 3478, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39316, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.056626+00', 3880, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39317, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.056626+00', 3885, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39318, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.013338+00', 5690, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39319, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.017814+00', 5713, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39320, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.017814+00', 5718, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39321, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.073925+00', 5688, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39322, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.013466+00', 5794, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39323, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:15.013466+00', 5802, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39324, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.495656+00', 554, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39325, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.525966+00', 683, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39326, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:34.812243+00', 1401, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39327, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.495115+00', 968, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39328, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.429192+00', 1803, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39329, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.54005+00', 1690, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39330, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.545651+00', 1987, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39331, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:34.832776+00', 2701, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39332, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:34.988742+00', 2554, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39333, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:34.985682+00', 2643, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39334, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.441946+00', 2207, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39335, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.49384+00', 2220, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39336, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.517292+00', 2231, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39337, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.601318+00', 2797, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39338, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:35.475185+00', 3022, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39339, X'69622b8e334af358a735daa267c4d0268b39006e30dcbc8da3d2a11ac07cc1a7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:01.624236+00', 1740, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39340, X'8f62243336be07e17a12efadb45d666c719750e5a99c1c454618a52664fc5cd1', TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:01.635568+00', 1739, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39341, X'04a4d235fefb78b41b64255042442d555311f2a5e8dd7b2e72b603b98922c7cf', TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:01.632647+00', 1788, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39342, X'a62df3018bb984b291beb070846386368d90c49a712821e12dedfe6a363c5300', TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:01.627456+00', 2642, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39343, X'c47d48214e050edc4d15964706ea29fb167e33225cd47104d1faa82e420faa5b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:01.637002+00', 2735, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39344, X'7a3143bc387da3a62140eb548d72ca4923d483d485c20a58964696bfc00eadc8', TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:01.640887+00', 4198, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39345, X'27e58af60a95a5b823841b07eeb8665e93951a43721834ba60f8b256d8d4a919', TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:01.624246+00', 4253, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39346, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:11.198447+00', 2475, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39347, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:11.227331+00', 2432, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39348, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:11.217839+00', 3347, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39349, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:11.327694+00', 3256, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39350, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:11.271086+00', 3406, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39351, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:11.19362+00', 6035, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39352, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:11.293115+00', 5989, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39353, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.726735+00', 335, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39354, X'8f62243336be07e17a12efadb45d666c719750e5a99c1c454618a52664fc5cd1', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.590559+00', 660, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39355, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.752485+00', 517, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39356, X'69622b8e334af358a735daa267c4d0268b39006e30dcbc8da3d2a11ac07cc1a7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.548936+00', 744, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39357, X'04a4d235fefb78b41b64255042442d555311f2a5e8dd7b2e72b603b98922c7cf', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.433199+00', 1080, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39358, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.606575+00', 1213, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39359, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.348918+00', 1503, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39360, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.598669+00', 1273, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39361, X'c47d48214e050edc4d15964706ea29fb167e33225cd47104d1faa82e420faa5b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.61161+00', 1308, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39362, X'a62df3018bb984b291beb070846386368d90c49a712821e12dedfe6a363c5300', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.813445+00', 1147, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39363, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.715084+00', 1264, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39364, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.582756+00', 1457, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39365, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.721397+00', 1334, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39366, X'27e58af60a95a5b823841b07eeb8665e93951a43721834ba60f8b256d8d4a919', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.570823+00', 1771, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39367, X'7a3143bc387da3a62140eb548d72ca4923d483d485c20a58964696bfc00eadc8', TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:34.358456+00', 2009, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39368, X'240b1ee43748d745561d7301a13a14d651b5fc566b97f4f6d14a2b927b5f7b76', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.580748+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39369, X'bd8da8ed2626123a11338b73dddb312ff777d5d06f194ea4317aace777544bde', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.619285+00', 816, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39370, X'a8b4a910417477f27cc04265204fa5bc2ffd666bedf791e7b7a53ed96cfa6390', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.290562+00', 1172, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39371, X'e0544c0269b0eb92f1173c7bb78156fd5fc82e04b0fca20b7d5b86af3c0b6efa', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.600795+00', 853, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39372, X'cb46a8c30fddc31168e77eff4c1bb2160902b93a6b6151aace4e6907a2adc4c8', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.477535+00', 2612, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39373, X'46686939291982b5c4fefa9a2f18caa96b83ad39c7eec884249387a7fdf5ef7d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.446667+00', 2650, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39374, X'fd9a347b0b6c873a7443b8ac9484c2557cd433eb2bc8ae501df0c749ccce20a4', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.629298+00', 2451, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39375, X'fdfe8ad82ba0af7178bb1569fd2d761f3423b5e0af36dfced2d65c498e878888', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.609717+00', 2471, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39376, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.46768+00', 172, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39377, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.440781+00', 332, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39378, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.524447+00', 415, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39379, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.445748+00', 596, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39380, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.515975+00', 540, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39381, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.422328+00', 677, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39382, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.435865+00', 636, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39383, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.525315+00', 637, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39384, X'72d5719a30c34bc64f7ea48403e8977ca74119adcecc8a87668216d3699356fd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.538058+00', 448, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39385, X'15d813fac7f40ca48405a0019811a4e1404de4d987dba2b625c4c6fdee48430b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.579455+00', 497, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39386, X'55ce7d96f5b33e0c8cee1478451a917b7a9ee0c739d559a05c2cd4c52e944e5f', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.435285+00', 725, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39387, X'5cfe234009739f054cf161e9035a02189b0921762f2e14ada6a85a9f75572077', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.434716+00', 751, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39388, X'64685a27bce081461da53b2bcde19045a2f8792b9a210e0b06b401f23843e954', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.439217+00', 789, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39389, X'cfffa6f735473e5b2a1a69d0f31120de0c69a8bd582632379661b0f6d4c17154', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.460835+00', 791, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39390, X'0b3417edaecf6622fd1087eafd2051f358bcfa4fd0101600d37c464a03aa8d9e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.434624+00', 871, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39391, X'10097d4f7b3fb913233f6ee6c2c5ac629e5d0b89fa217f1bb99f52b8301b816b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.552788+00', 831, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39392, X'db1af4fcbb2f6e85fbb05fda3311f148b5e5458dd1e672fb024c94d9c68d12cd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.321773+00', 348, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39393, X'c9cb2a76400f7629ed7c430b59d19c82cbcd15cb4e996929d266fba9da8b3674', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.245615+00', 711, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39394, X'45e32b06304d9c1a21742affe61b857f5fbf86577088551e1ecddd16cdac809d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.294581+00', 672, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39395, X'ee26bcfa1e67ba6f714826f88910ef388c5fbc1f1f7aa55568c25dc36f9aa7f6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.245615+00', 718, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39396, X'329298694b8fc91f73d7383719a55d3dd80b26c2ce08717e13159dbb2450934d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.25345+00', 1161, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39397, X'413633e1a9637a54bff82e6911cf5779879324ae6b6afab5b326ab77c21ae9a2', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.289421+00', 1194, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39398, X'48901990fb5763c7a543e8869636203f2d4c80340800e9a327c0df3148cdec86', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.294615+00', 1267, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39399, X'5c8b0090d1d98d0630a8acb665650e9fc28c4a0837984ac2fbb472fd67dd19bb', TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.321145+00', 1239, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39400, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:15.280827+00', 1658, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39401, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:15.270394+00', 1668, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39402, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:15.265275+00', 2121, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39403, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:15.288625+00', 2098, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39404, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:15.259225+00', 2245, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39405, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:15.23837+00', 3777, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39406, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:15.2409+00', 3832, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39407, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.204598+00', 712, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39408, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.699131+00', 1390, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39409, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.923806+00', 1182, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39410, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.700032+00', 1499, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39411, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.923806+00', 1275, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(39412, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.700032+00', 1559, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(39413, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.771142+00', 1564, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39414, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.771142+00', 1594, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39415, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.753026+00', 1651, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39416, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.753026+00', 1667, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39417, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.495178+00', 1057, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39418, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.488712+00', 1730, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39419, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.212565+00', 3567, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39420, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.044261+00', 3984, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39421, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.044261+00', 4065, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(39422, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.12867+00', 4097, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39423, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.12867+00', 4108, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(39424, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.424468+00', 3948, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39425, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.073068+00', 4311, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(39426, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.424468+00', 3967, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(39427, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.073068+00', 4302, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39428, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.892535+00', 4537, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39429, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.698959+00', 4842, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39430, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.976285+00', 4801, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39431, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.684303+00', 5453, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39432, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.538611+00', 4813, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39433, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.538611+00', 4802, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39434, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.702907+00', 5681, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39435, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.704753+00', 5639, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39436, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.495859+00', 4899, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39437, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.701136+00', 5709, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39438, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.704753+00', 5672, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(39439, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.702907+00', 5733, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(39440, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.956146+00', 5513, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39441, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.704191+00', 5719, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39442, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.956146+00', 5539, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39443, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.497034+00', 5138, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39444, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.190603+00', 5607, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39445, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.190603+00', 5603, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39446, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.393251+00', 7066, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39447, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.393251+00', 7143, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39448, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.951232+00', 7090, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39449, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.897969+00', 7206, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39450, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.897969+00', 7218, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39451, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:26.512936+00', 6707, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39452, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:17.497013+00', 3405, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39453, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:17.497061+00', 3412, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39454, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:17.533795+00', 3622, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39455, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:17.508556+00', 3672, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39456, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:17.517638+00', 3645, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39457, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:17.509462+00', 4551, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39458, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:17.82253+00', 4270, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39459, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:26.947764+00', 1019, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39460, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.00002+00', 1057, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39461, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:26.988705+00', 1093, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39462, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.164859+00', 979, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39463, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:26.949046+00', 1623, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39464, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:26.995753+00', 2126, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39465, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.591757+00', 1557, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39466, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.366939+00', 1783, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39467, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.048024+00', 2325, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39468, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:26.989562+00', 2421, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39469, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.080322+00', 2412, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39470, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.59388+00', 1942, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39471, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.203614+00', 2435, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39472, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.044535+00', 2664, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39473, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:26.963841+00', 2878, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39474, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:23.104927+00', 6679, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39475, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:23.122244+00', 6661, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39476, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:23.124997+00', 6793, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39477, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:23.092876+00', 6917, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39478, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:23.092845+00', 6690, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39479, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:23.10013+00', 6857, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39480, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:27.610566+00', 3714, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39481, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.7231+00', 2002, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39482, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.782582+00', 1979, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39483, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:23.127887+00', 7585, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39484, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.508864+00', 2520, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39485, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.620754+00', 1213, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39486, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.79193+00', 2273, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39487, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.403143+00', 2286, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39488, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.663659+00', 2529, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39489, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.361834+00', 2330, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39490, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:27.50219+00', 4794, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39491, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.580953+00', 2700, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39492, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.456745+00', 2189, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39493, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.890133+00', 2173, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39494, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:27.487685+00', 4712, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39495, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:29.530395+00', 2820, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39496, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.818179+00', 2580, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39497, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.894067+00', 2524, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39498, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.868843+00', 2751, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39499, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.810045+00', 2812, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39500, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.894067+00', 2535, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39501, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.810045+00', 2858, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39502, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.75932+00', 5117, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39503, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.811844+00', 5063, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39504, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.847154+00', 5044, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39505, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.818121+00', 5075, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39506, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.811844+00', 5115, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39507, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.75932+00', 5221, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39508, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.960171+00', 5283, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39509, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.960171+00', 5305, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39510, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.789432+00', 5593, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39511, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.857206+00', 8060, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39512, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.831551+00', 8087, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39513, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.763333+00', 8191, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39514, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.973284+00', 8025, 0, TRUE, 'public-dashboard', 'Iterator has been closed', NULL, 13, 2, NULL, 3, NULL), +(39515, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:25.763333+00', 8217, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39516, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:30.276572+00', 3096, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39517, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:30.18893+00', 3185, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39518, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:30.259453+00', 3113, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39519, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:30.188897+00', 3186, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39520, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:30.220642+00', 3288, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39521, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:30.243104+00', 4907, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39522, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:30.202354+00', 5113, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39523, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:54.315911+00', 2470, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39524, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:54.341228+00', 2416, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39525, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:54.272467+00', 2654, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39526, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:54.294929+00', 2633, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39527, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:54.335017+00', 2622, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39528, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:54.320045+00', 4626, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39529, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:54.26984+00', 4704, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39530, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:14.397682+00', 4127, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39531, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:15.288118+00', 3240, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39532, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:14.400475+00', 4124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39533, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:14.788611+00', 3741, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39534, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:15.21733+00', 3307, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39535, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:14.420622+00', 5533, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39536, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:15.173056+00', 4983, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39537, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.792907+00', 3156, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39538, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.769068+00', 3312, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39539, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.792907+00', 3289, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39540, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.769068+00', 3179, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39541, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.781665+00', 3266, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39542, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.778978+00', 3170, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39543, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.777328+00', 3544, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39544, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.805191+00', 3518, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39545, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.8031+00', 3543, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39546, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.8031+00', 3516, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39547, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.792045+00', 3563, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39548, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.792045+00', 3577, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39549, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.774164+00', 4099, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39550, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.877114+00', 4063, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39551, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.877114+00', 4071, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39552, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.793294+00', 6548, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39553, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.793294+00', 6558, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39554, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.851521+00', 6575, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39555, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.80392+00', 6621, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39556, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.80392+00', 6628, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39557, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:34.76908+00', 6691, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39558, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:38.598956+00', 4841, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39559, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:38.612985+00', 4827, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39560, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:38.612506+00', 5373, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39561, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:38.602524+00', 5435, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39562, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:38.597677+00', 5491, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39563, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:38.597725+00', 6853, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39564, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:38.615372+00', 6870, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39565, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:45.790477+00', 1339, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39566, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:45.792983+00', 1345, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39567, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:45.787523+00', 1694, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39568, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:45.794569+00', 1938, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39569, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:45.78744+00', 1723, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39570, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:45.787531+00', 3012, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39571, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:45.788749+00', 3117, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39572, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:47.957049+00', 3320, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39573, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:47.962842+00', 3317, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39574, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:47.955813+00', 3330, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39575, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:47.955779+00', 3323, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39576, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:47.965415+00', 3322, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39577, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:47.966376+00', 4331, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39578, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:47.955789+00', 4354, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39579, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:50.04083+00', 2436, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39580, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:50.041229+00', 2437, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39581, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:50.056096+00', 2491, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39582, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:50.058176+00', 2566, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39583, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:50.060487+00', 2593, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39584, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:50.041213+00', 3416, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39585, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:50.041144+00', 3434, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39586, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:47.640826+00', 2537, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39587, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:47.629917+00', 2647, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39588, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:47.818609+00', 2359, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39589, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:47.631203+00', 2497, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39590, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:47.632316+00', 2583, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39591, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:47.304455+00', 3829, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39592, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:47.641227+00', 3501, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39593, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:12.15341+00', 2997, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39594, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:12.154642+00', 3172, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39595, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:12.161027+00', 2986, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39596, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:12.157714+00', 2990, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39597, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:12.158053+00', 2989, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39598, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:12.174403+00', 4163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39599, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:12.154569+00', 4211, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39600, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:10.040168+00', 3325, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39601, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:10.016929+00', 3349, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39602, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:09.986777+00', 3659, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39603, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:10.043094+00', 3700, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39604, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:09.986848+00', 3811, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39605, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:09.997993+00', 4995, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39606, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:10.027628+00', 5306, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39607, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:11.840543+00', 3915, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39608, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:11.836476+00', 3921, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39609, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:11.840387+00', 4237, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39610, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:11.836069+00', 4293, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39611, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:11.845198+00', 4357, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39612, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:11.843485+00', 6332, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39613, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:11.89662+00', 6298, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39614, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:16.193307+00', 2699, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39615, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:16.1901+00', 2703, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39616, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:16.212194+00', 2757, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39617, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:16.194117+00', 2925, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39618, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:16.190274+00', 2968, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39619, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:16.190345+00', 4325, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39620, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:16.207708+00', 4308, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39621, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.528654+00', 5769, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39622, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.347146+00', 2983, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(39623, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.347146+00', 2930, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39624, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.437376+00', 4990, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39625, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.352623+00', 5161, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39626, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.437376+00', 5015, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(39627, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.352623+00', 5211, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39628, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.426591+00', 8048, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39629, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.962881+00', 7572, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39630, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.32036+00', 8332, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39631, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.436055+00', 5197, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39632, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.32036+00', 8351, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39633, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.340158+00', 9323, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39634, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.340158+00', 9345, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(39635, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.320449+00', 9649, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39636, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.226086+00', 8842, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39637, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.54897+00', 9543, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39638, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.54897+00', 9580, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(39639, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.714514+00', 8532, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39640, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.613588+00', 9652, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39641, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.605159+00', 8806, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39642, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.605159+00', 8818, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39643, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.346617+00', 7101, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39644, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.346617+00', 7110, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(39645, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.880326+00', 8660, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39646, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.880326+00', 8677, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(39647, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.320407+00', 10241, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39648, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.32044+00', 10267, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39649, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.211445+00', 9339, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39650, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.320407+00', 10269, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39651, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.319703+00', 10296, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39652, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.948721+00', 8662, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39653, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.319703+00', 10313, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(39654, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.752545+00', 6891, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39655, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.752545+00', 6897, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(39656, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.694701+00', 8965, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39657, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:12.320433+00', 10389, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39658, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.429881+00', 9287, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39659, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.429881+00', 9293, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39660, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.348664+00', 9219, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39661, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.606289+00', 10987, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39662, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:15.348664+00', 9247, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39663, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.627682+00', 11059, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39664, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.716862+00', 10987, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39665, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:13.627682+00', 11079, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39666, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:11.492237+00', 2908, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39667, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:11.504901+00', 2893, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39668, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:11.506945+00', 4079, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39669, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:11.579069+00', 4066, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39670, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:11.47739+00', 4469, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39671, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:11.844902+00', 6609, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39672, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:11.441251+00', 7013, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39673, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.342302+00', 2111, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39674, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.377071+00', 2870, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39675, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.410762+00', 2907, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39676, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.342307+00', 3075, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39677, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.423449+00', 3284, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39678, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.342354+00', 3382, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39679, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.432928+00', 3457, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39680, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.449785+00', 3686, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39681, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.455745+00', 3682, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39682, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.492965+00', 3647, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39683, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.401702+00', 3803, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39684, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.342817+00', 3894, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39685, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.49726+00', 3751, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39686, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.342443+00', 4901, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39687, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:16.460583+00', 4867, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39688, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:15.882472+00', 842, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39689, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:15.882489+00', 836, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39690, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:15.885895+00', 4402, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39691, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:15.88811+00', 4512, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39692, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:15.885693+00', 4735, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39693, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:15.882405+00', 6548, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39694, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:15.882822+00', 6587, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39695, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.203333+00', 2283, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39696, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.208118+00', 2394, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(39697, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.208118+00', 2256, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39698, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.060138+00', 9296, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39699, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.022391+00', 9334, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39700, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.109303+00', 9509, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39701, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.095497+00', 9691, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(39702, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.095497+00', 9659, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39703, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.060138+00', 9702, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(39704, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.02324+00', 9886, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39705, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.022391+00', 9468, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39706, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.035043+00', 10300, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39707, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.035043+00', 10361, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39708, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.03875+00', 10416, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39709, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.078132+00', 10379, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39710, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.050421+00', 10689, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39711, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.076553+00', 10664, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39712, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.085342+00', 10656, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39713, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.113454+00', 10672, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39714, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.086471+00', 10651, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39715, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.085821+00', 10958, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39716, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.113454+00', 10624, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39717, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.068452+00', 11041, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39718, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.076553+00', 10854, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(39719, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.118897+00', 11187, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39720, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.049959+00', 11301, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(39721, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.049959+00', 11295, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39722, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.02237+00', 11286, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39723, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.060341+00', 11441, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 20, 3, NULL, 3, NULL), +(39724, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.20347+00', 11347, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39725, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.20347+00', 11354, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(39726, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.035611+00', 12063, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39727, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.104225+00', 12050, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39728, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.035611+00', 12150, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39729, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.041681+00', 14804, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39730, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.078666+00', 14865, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39731, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.078666+00', 14859, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39732, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.121454+00', 14871, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39733, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.069457+00', 14937, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39734, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:52.069457+00', 14946, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39735, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:11.847776+00', 6184, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39736, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:11.900833+00', 6003, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39737, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:11.892582+00', 6074, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39738, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:11.844095+00', 6125, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39739, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:11.848503+00', 6055, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39740, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:11.886777+00', 7773, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39741, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:12.032229+00', 7731, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39742, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.764339+00', 443, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39743, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.694658+00', 547, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39744, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.766609+00', 527, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39745, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.728163+00', 695, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39746, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.81635+00', 655, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39747, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.701807+00', 795, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39748, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.734431+00', 800, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39749, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:30.792442+00', 749, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39750, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:34.340548+00', 2515, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39751, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:34.325369+00', 2510, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39752, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:34.335341+00', 3004, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39753, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:34.345019+00', 3050, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39754, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:34.374939+00', 3050, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39755, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:34.338474+00', 4291, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39756, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:34.355235+00', 4281, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39757, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.103438+00', 494, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39758, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.346173+00', 377, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39759, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.095943+00', 1248, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39760, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.100902+00', 1242, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39761, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.112553+00', 1239, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39762, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.247783+00', 1133, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39763, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.102495+00', 1313, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39764, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.137854+00', 1312, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39765, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:30.564003+00', 3028, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39766, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:31.782841+00', 1804, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39767, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:31.709268+00', 1999, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39768, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:30.567545+00', 3141, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39769, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:30.564001+00', 3337, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39770, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:31.014076+00', 3861, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39771, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:31.680949+00', 3204, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39772, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.104888+00', 1257, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39773, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.107718+00', 1817, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39774, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.117594+00', 1892, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39775, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.104849+00', 1952, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39776, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.123835+00', 2078, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39777, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.109608+00', 2136, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39778, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.115179+00', 2197, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39779, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:30.117908+00', 2197, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39780, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.865244+00', 469, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39781, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.817696+00', 1882, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39782, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.330673+00', 2440, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39783, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.79393+00', 1985, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39784, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.614482+00', 2494, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39785, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.33063+00', 2742, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39786, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.928188+00', 2166, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39787, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:14.833457+00', 2274, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39788, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:50.63806+00', 1976, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39789, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:50.632918+00', 1982, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39790, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:50.636678+00', 1978, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39791, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:50.58965+00', 2037, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39792, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:50.629661+00', 2054, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39793, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:50.606995+00', 3095, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39794, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:50.589616+00', 3121, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39795, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.309401+00', 1372, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39796, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.314298+00', 1887, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39797, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.328005+00', 1993, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39798, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.309474+00', 2014, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39799, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.312229+00', 2241, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39800, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.325567+00', 2229, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39801, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.309155+00', 2335, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39802, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:37.309425+00', 2353, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39803, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.86792+00', 1659, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39804, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.88528+00', 2472, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39805, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.867754+00', 2553, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39806, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.904235+00', 2515, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39807, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.892811+00', 2602, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39808, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.872955+00', 2645, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39809, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.868364+00', 2665, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39810, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:05.900832+00', 2682, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39811, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.377807+00', 2846, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 3, NULL), +(39812, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.369538+00', 3088, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39813, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.386438+00', 3071, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39814, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.362737+00', 3095, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39815, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.386438+00', 3223, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39816, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.360177+00', 3891, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39817, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.36581+00', 3899, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39818, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.361902+00', 4047, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39819, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.36581+00', 3889, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39820, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.373685+00', 4031, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39821, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.373685+00', 4092, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39822, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.385528+00', 4144, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39823, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.369476+00', 4215, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39824, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.369476+00', 4248, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39825, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.380594+00', 6113, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39826, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.380594+00', 6130, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39827, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.360251+00', 6174, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39828, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.377975+00', 6320, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39829, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.360266+00', 6340, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39830, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:39.360266+00', 6355, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39831, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.664405+00', 4559, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39832, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.639327+00', 4584, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39833, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.605195+00', 4618, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39834, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.664405+00', 4643, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39835, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.605195+00', 4702, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39836, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.602408+00', 4631, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39837, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.610154+00', 4845, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39838, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.628208+00', 4827, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39839, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.610154+00', 4849, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39840, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.651732+00', 4885, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39841, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.66216+00', 4942, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39842, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.651732+00', 4895, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39843, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.652985+00', 5663, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39844, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.617785+00', 5781, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39845, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.652985+00', 5747, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39846, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.641773+00', 8477, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39847, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.641773+00', 8466, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39848, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.666209+00', 8464, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39849, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.666209+00', 8491, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39850, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.602429+00', 8701, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39851, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:00.632242+00', 9168, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39852, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:05.242016+00', 5027, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39853, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:05.238277+00', 5032, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39854, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:05.2393+00', 5385, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39855, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:05.240644+00', 5581, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39856, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:05.238321+00', 5674, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39857, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:05.24495+00', 6990, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39858, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:05.254805+00', 7054, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39859, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.174594+00', 1723, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39860, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.076878+00', 1877, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39861, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.045445+00', 1908, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39862, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.421322+00', 1502, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39863, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.045445+00', 1851, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39864, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.076878+00', 1820, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39865, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.085646+00', 2456, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39866, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.085646+00', 2460, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39867, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.396849+00', 2196, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39868, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.086886+00', 2592, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39869, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.263783+00', 2424, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39870, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.086886+00', 2608, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39871, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.301696+00', 2533, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39872, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.28955+00', 2565, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39873, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.28955+00', 2627, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39874, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.051068+00', 5435, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39875, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.09415+00', 5412, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39876, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.399512+00', 5130, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39877, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.329027+00', 5257, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39878, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.051068+00', 5537, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39879, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:24.09415+00', 5528, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39880, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:46.718132+00', 2413, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39881, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:46.728733+00', 2407, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39882, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:46.71817+00', 3142, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39883, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:46.72869+00', 3217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39884, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:46.761495+00', 3374, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39885, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:46.727148+00', 5335, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39886, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:46.717931+00', 5374, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39887, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:56.924892+00', 2425, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(39888, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:56.924594+00', 2470, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(39889, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:56.924918+00', 2641, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(39890, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:56.9248+00', 2638, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(39891, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:56.924784+00', 2636, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(39892, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:56.92486+00', 3339, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(39893, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:56.926307+00', 3383, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(39894, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.460519+00', 2789, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(39895, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.538018+00', 2870, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(39896, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.475734+00', 3164, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(39897, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.460942+00', 3178, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(39898, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.563319+00', 3163, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39899, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.475084+00', 3320, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(39900, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.461852+00', 3382, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(39901, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:13.650313+00', 3298, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(39902, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.998492+00', 4331, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39903, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.024817+00', 4251, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39904, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.024817+00', 4441, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(39905, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.906013+00', 7578, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39906, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.169578+00', 7335, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39907, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.133601+00', 7523, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39908, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.208926+00', 7602, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(39909, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.208926+00', 7577, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39910, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.169578+00', 7584, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(39911, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.096226+00', 7727, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39912, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.916647+00', 7904, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39913, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.905823+00', 8997, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39914, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.096226+00', 8084, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(39915, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.975704+00', 8667, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(39916, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.097254+00', 8066, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39917, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.097254+00', 8513, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39918, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.975704+00', 8188, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39919, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.17145+00', 9238, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39920, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.14992+00', 9380, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39921, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.167855+00', 9361, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39922, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.173915+00', 9357, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39923, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.122881+00', 9407, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39924, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.14992+00', 9523, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(39925, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.904786+00', 9626, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39926, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.122881+00', 9556, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(39927, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.167855+00', 9512, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(39928, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.903212+00', 9627, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39929, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.173915+00', 9428, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(39930, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.960921+00', 9731, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39931, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.904786+00', 9709, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(39932, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.984574+00', 9705, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39933, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.204169+00', 9498, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39934, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.903133+00', 9799, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39935, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.903212+00', 9812, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(39936, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.903198+00', 9844, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39937, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.075836+00', 9607, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39938, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.903171+00', 10159, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(39939, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.903171+00', 10151, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39940, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.935009+00', 10269, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39941, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.040186+00', 12369, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39942, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.224818+00', 12240, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39943, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:46.916183+00', 12551, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39944, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.224818+00', 12256, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(39945, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.150024+00', 12347, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39946, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:47.040186+00', 12644, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(39947, X'eb76e6d1fe76f4d6b4d144957417fc505eeea74121e29ff686f784ddd0c861e5', TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:55.064926+00', 2710, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39948, X'aefbc665baacb94810be1c1798df6bdee5252b86a8636f7e034f15d83f1219f0', TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:54.796635+00', 2888, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39949, X'37782f518cbea5fe9b45cdaf2015e5080b56e28990bdd56d6fb1b2d553d86186', TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:55.062396+00', 2591, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39950, X'34296c0277eced3b431899c17b016f119d0a76e1e655b3b2d5c5960b726c38db', TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:55.031121+00', 4747, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39951, X'907a00b9ffd90cc5b0a2873dac4e4cb45bf4c8ee653a0f5881c8d9f95f2e8006', TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:55.01815+00', 4904, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39952, X'08f2356c1573e489948d9c1d799e3b1f487e8d17d23a82328eccecc7091cd202', TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:55.069456+00', 8364, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39953, X'ed4a74ef92dd99e1334ce47e96919e41f434b23c04d22081e1bb0a227fe5453b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:55.014489+00', 8481, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39954, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.065003+00', 742, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39955, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.521751+00', 720, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39956, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.438477+00', 1256, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39957, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.434578+00', 1367, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39958, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.700935+00', 1179, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39959, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.065147+00', 1889, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39960, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.6727+00', 1613, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39961, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.559096+00', 4618, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39962, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.594697+00', 6376, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39963, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:43.757918+00', 5279, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39964, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:43.768297+00', 5377, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39965, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.557439+00', 7868, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39966, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.570214+00', 7915, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39967, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:43.768297+00', 6856, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39968, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.557363+00', 8211, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39969, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.613201+00', 8173, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39970, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.592882+00', 8241, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39971, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:43.778511+00', 7116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39972, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:42.559096+00', 8338, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39973, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:43.78194+00', 7192, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39974, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:43.755852+00', 8917, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39975, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:43.776918+00', 8953, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39976, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:40.971826+00', 2506, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39977, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:40.971591+00', 4511, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39978, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:40.992774+00', 4643, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(39979, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:40.985233+00', 4788, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39980, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:40.971616+00', 4876, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39981, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:41.013897+00', 4827, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39982, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:40.995813+00', 4849, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39983, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:40.971629+00', 4909, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39984, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.156558+00', 523, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(39985, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.16761+00', 513, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(39986, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.162066+00', 682, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(39987, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.178921+00', 822, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(39988, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.176866+00', 855, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(39989, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.167575+00', 2182, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(39990, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.137315+00', 2289, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(39991, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:39.06144+00', 722, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(39992, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:38.827491+00', 2905, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(39993, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:39.333708+00', 3073, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(39994, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:38.814082+00', 3609, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(39995, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:38.780231+00', 3687, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(39996, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:39.073847+00', 3448, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(39997, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:39.096824+00', 3451, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(39998, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:38.780217+00', 3745, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(39999, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:08.930225+00', 595, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40000, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:08.945406+00', 610, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40001, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:08.924515+00', 766, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40002, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:08.930993+00', 952, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40003, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:08.948532+00', 953, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40004, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:08.958638+00', 1674, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40005, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:08.932993+00', 1767, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40006, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.122484+00', 398, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40007, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.253439+00', 2402, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40008, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.207067+00', 2641, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40009, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.177771+00', 2689, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40010, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.236127+00', 2695, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40011, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.124093+00', 2916, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40012, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.239018+00', 2807, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40013, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.153157+00', 2944, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40014, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:25.991753+00', 707, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40015, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:25.984507+00', 731, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40016, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:25.982338+00', 1333, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40017, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:25.992032+00', 1387, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40018, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:25.961267+00', 1415, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40019, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:25.998163+00', 3388, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40020, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:25.982688+00', 3435, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40021, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.615554+00', 1975, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40022, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.613085+00', 2865, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40023, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.680869+00', 2916, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40024, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.66675+00', 2938, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40025, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.575446+00', 3200, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40026, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.669112+00', 3137, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40027, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.655775+00', 3200, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40028, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:10.575446+00', 3319, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40029, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:07.020846+00', 443, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40030, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:06.997301+00', 478, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40031, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:06.996943+00', 1093, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40032, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:06.929699+00', 1236, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40033, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:07.015127+00', 1196, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40034, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:06.943262+00', 2432, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40035, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:07.019715+00', 2383, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40036, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.35772+00', 538, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40037, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.345566+00', 2146, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40038, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.381755+00', 2220, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40039, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.37959+00', 2278, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40040, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.312784+00', 2527, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40041, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.386911+00', 2471, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40042, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.345682+00', 2632, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40043, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.305157+00', 2672, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40044, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:33.653355+00', 1406, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40045, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:33.359661+00', 1704, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40046, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:33.295637+00', 2634, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40047, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:33.254795+00', 2702, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40048, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:33.088493+00', 2870, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40049, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:33.603313+00', 3457, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40050, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:33.388149+00', 3690, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40051, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.738999+00', 892, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40052, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.724793+00', 2387, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40053, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.744596+00', 2730, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40054, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.748823+00', 2774, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40055, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.739133+00', 2899, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40056, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.720016+00', 2945, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40057, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.749951+00', 3017, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40058, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:24.726293+00', 3059, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40059, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.333945+00', 607, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40060, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.272186+00', 839, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40061, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.341259+00', 851, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40062, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.380969+00', 899, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40063, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.302903+00', 1043, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40064, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.345872+00', 2120, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40065, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.375627+00', 2153, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40066, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.518734+00', 881, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40067, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.574094+00', 1722, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40068, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.547826+00', 1893, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40069, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.547799+00', 1904, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40070, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.552609+00', 1975, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40071, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.518349+00', 2056, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40072, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.525424+00', 2071, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40073, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:24.534821+00', 2114, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40074, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.585699+00', 325, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40075, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.666244+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40076, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.689444+00', 464, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40077, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.624909+00', 606, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40078, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.681699+00', 604, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40079, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.647434+00', 1408, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40080, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.653777+00', 1433, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40081, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.692982+00', 519, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40082, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.469064+00', 1635, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40083, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.476813+00', 2055, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40084, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.271395+00', 2259, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40085, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.385577+00', 2258, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40086, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.341032+00', 2331, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40087, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.693626+00', 2041, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40088, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:25.271279+00', 2505, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40089, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.193694+00', 634, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40090, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.17854+00', 707, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40091, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.221115+00', 915, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40092, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.222752+00', 994, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40093, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.126399+00', 1112, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40094, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.184222+00', 2017, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40095, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.180514+00', 2028, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40096, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:27.064182+00', 1968, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40097, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:26.942828+00', 3477, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40098, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:26.942828+00', 3511, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40099, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:27.092213+00', 3365, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40100, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:27.033223+00', 3754, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40101, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:27.037154+00', 3752, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40102, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:26.943025+00', 3844, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40103, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:26.957425+00', 3830, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40104, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:06.673472+00', 453, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40105, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:06.365558+00', 793, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40106, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:06.604177+00', 815, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40107, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:06.617013+00', 886, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40108, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:06.365559+00', 1161, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40109, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:06.610257+00', 2260, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40110, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:06.587391+00', 2349, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40111, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.962962+00', 1863, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40112, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.963964+00', 2631, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40113, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.97846+00', 2771, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40114, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.962984+00', 2816, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40115, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.963153+00', 3165, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40116, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.972339+00', 3153, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40117, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.962987+00', 3186, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40118, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:34.962966+00', 3219, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40119, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:17.630307+00', 533, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40120, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:17.595151+00', 678, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40121, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:17.661276+00', 742, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40122, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:17.683301+00', 843, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40123, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:17.657095+00', 932, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40124, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:17.65805+00', 2324, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40125, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:17.607111+00', 2543, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40126, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.169876+00', 1903, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40127, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.162208+00', 2643, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40128, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.15655+00', 2739, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40129, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.157655+00', 2738, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40130, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.156848+00', 2880, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40131, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.171496+00', 2866, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40132, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.156243+00', 3024, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40133, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:34.156273+00', 3026, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40134, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:26.529634+00', 1525, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40135, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:26.536061+00', 1518, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40136, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:26.536128+00', 1853, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40137, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:26.549187+00', 1868, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40138, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:26.531174+00', 1902, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40139, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:26.535172+00', 2751, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40140, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:26.529503+00', 2777, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40141, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.670224+00', 3066, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40142, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.678436+00', 4352, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40143, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.582488+00', 4518, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40144, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.649553+00', 4474, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40145, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.628309+00', 4776, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40146, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.659552+00', 4744, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40147, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.651636+00', 4752, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40148, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:30.639193+00', 4863, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40149, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:39.547564+00', 1912, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40150, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:39.554577+00', 1905, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40151, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:39.556629+00', 2176, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40152, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:39.545098+00', 2199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40153, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:39.556547+00', 2259, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40154, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:39.548242+00', 3305, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40155, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:39.54508+00', 3309, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40156, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.239827+00', 1022, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40157, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.221755+00', 2466, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40158, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.192157+00', 2513, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40159, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.222337+00', 2507, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40160, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.179435+00', 2674, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40161, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.22328+00', 2669, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40162, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.208062+00', 2755, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40163, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:51.207166+00', 2774, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40164, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:06.939112+00', 456, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40165, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:06.937486+00', 486, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40166, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:06.911754+00', 852, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40167, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:06.946568+00', 860, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40168, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:06.962745+00', 858, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40169, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:06.900913+00', 2712, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40170, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:06.900322+00', 2719, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40171, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.067508+00', 315, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40172, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.074841+00', 1203, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40173, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.106361+00', 1212, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40174, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.106169+00', 1234, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40175, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.14767+00', 1362, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40176, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:33.925721+00', 1600, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40177, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.044702+00', 1537, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40178, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.085455+00', 1525, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40179, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.369461+00', 3093, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40180, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.348692+00', 4194, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40181, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.387171+00', 4169, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40182, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.455311+00', 3007, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40183, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.281982+00', 4252, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40184, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.369461+00', 3348, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40185, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.281982+00', 4299, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40186, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.387171+00', 4323, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40187, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.282279+00', 4276, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40188, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.372614+00', 4185, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40189, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.282279+00', 4395, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40190, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.319801+00', 4513, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40191, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.372614+00', 4295, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40192, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.433808+00', 4347, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40193, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.433808+00', 4411, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40194, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.394796+00', 4531, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40195, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.320011+00', 4603, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40196, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.335144+00', 4590, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40197, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.4051+00', 4848, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40198, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.33812+00', 4897, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40199, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.33812+00', 4913, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40200, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.449378+00', 5270, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40201, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.334593+00', 5362, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40202, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.295735+00', 5440, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40203, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.459093+00', 5237, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40204, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.295735+00', 5387, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40205, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.4191+00', 5294, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40206, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.393819+00', 5349, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40207, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.378178+00', 5302, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40208, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.334593+00', 5458, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40209, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.281765+00', 5616, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40210, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.344402+00', 5639, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40211, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.459093+00', 5311, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40212, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.470055+00', 5265, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40213, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.281949+00', 5706, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40214, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.28194+00', 5641, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40215, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.28194+00', 5572, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40216, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.378178+00', 5415, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40217, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.344402+00', 5841, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40218, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.294053+00', 8848, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40219, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.284141+00', 8905, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40220, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.284141+00', 8957, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40221, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.40983+00', 8829, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40222, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.282005+00', 9021, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40223, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:46.40983+00', 8890, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40224, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.029052+00', 2943, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40225, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.029052+00', 3216, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40226, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.126942+00', 2846, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40227, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.911372+00', 5773, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40228, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.13281+00', 5603, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40229, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.033127+00', 5796, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40230, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.033127+00', 5702, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40231, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.065199+00', 5617, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40232, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.13281+00', 5645, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40233, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.075625+00', 5609, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40234, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.911372+00', 5966, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40235, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.075625+00', 5803, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40236, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.916551+00', 6121, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40237, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.13722+00', 5900, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40238, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.916551+00', 6324, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40239, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.062914+00', 6370, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40240, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.125311+00', 6335, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40241, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.06282+00', 6521, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40242, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.078091+00', 9244, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40243, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.101838+00', 9217, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40244, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.101838+00', 9241, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40245, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.078091+00', 9274, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40246, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.148198+00', 9622, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40247, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.099182+00', 9712, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40248, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.898969+00', 9952, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40249, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.099182+00', 9818, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40250, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.088893+00', 9872, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40251, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.906703+00', 10075, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40252, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.151817+00', 9807, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40253, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.941671+00', 10077, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40254, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.913864+00', 10086, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40255, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.941671+00', 10015, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40256, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.110682+00', 9940, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40257, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.906703+00', 10188, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40258, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.003927+00', 10170, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40259, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.913864+00', 10261, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40260, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.975445+00', 10454, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40261, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.975445+00', 10471, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40262, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.898962+00', 10685, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40263, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.898994+00', 13055, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40264, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.934072+00', 13119, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40265, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:14.934072+00', 13125, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40266, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.094574+00', 12996, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40267, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.094574+00', 13006, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40268, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:15.078477+00', 13137, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40269, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.202616+00', 3144, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40270, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.340973+00', 3839, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40271, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.294233+00', 4044, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40272, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.357693+00', 3983, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40273, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.349351+00', 4003, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40274, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.218969+00', 4121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40275, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.302052+00', 5506, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40276, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.249099+00', 5569, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40277, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.319228+00', 5569, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40278, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.345606+00', 5698, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40279, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.364617+00', 5726, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40280, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.364442+00', 5742, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40281, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.202569+00', 6066, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40282, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.268068+00', 7766, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40283, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:12.288183+00', 7956, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40284, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.698883+00', 921, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40285, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.267105+00', 1557, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40286, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.632084+00', 1399, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40287, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.677642+00', 1363, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40288, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.554025+00', 1480, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40289, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.546572+00', 1614, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40290, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.714912+00', 4628, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40291, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.541238+00', 4907, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40292, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.65597+00', 4826, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40293, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.267104+00', 5230, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40294, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.273583+00', 5288, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40295, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.307274+00', 5252, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40296, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.632391+00', 4927, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40297, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.589118+00', 6256, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40298, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:10.59211+00', 6322, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40299, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.528602+00', 1957, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40300, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.595548+00', 3040, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40301, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.532191+00', 3152, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40302, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.49539+00', 3205, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40303, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.509259+00', 3186, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40304, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.495481+00', 3195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40305, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.695809+00', 3691, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40306, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.571637+00', 3833, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40307, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.495351+00', 3914, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40308, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.495472+00', 3957, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40309, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.551827+00', 3935, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40310, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.515999+00', 3995, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40311, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.573324+00', 3954, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40312, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.495466+00', 5370, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40313, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:13.49542+00', 5424, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40314, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.860127+00', 2824, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40315, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.371399+00', 3313, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40316, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.377084+00', 1311, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40317, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.90622+00', 1778, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40318, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.595967+00', 3089, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40319, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.801142+00', 1883, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40320, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.509987+00', 2179, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40321, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.412346+00', 1438, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40322, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.773578+00', 2925, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40323, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.412346+00', 1599, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40324, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.440357+00', 1459, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40325, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.90622+00', 2111, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40326, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.606396+00', 1404, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40327, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.509987+00', 2503, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40328, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.801142+00', 2216, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40329, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.595967+00', 3422, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40330, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.371399+00', 3678, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40331, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.076952+00', 2571, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40332, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.444462+00', 6950, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40333, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.444462+00', 7009, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40334, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.602491+00', 6767, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40335, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.602491+00', 6832, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40336, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.639491+00', 6864, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40337, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.846417+00', 6657, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40338, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.802189+00', 5923, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40339, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.797571+00', 5766, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40340, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.797571+00', 5913, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40341, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.942062+00', 5942, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40342, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.383082+00', 5518, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40343, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.099322+00', 5792, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40344, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.802189+00', 6123, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40345, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:57.942062+00', 6047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40346, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.029902+00', 5964, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40347, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.093385+00', 5908, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40348, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.029902+00', 6017, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40349, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:58.385052+00', 5765, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40350, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.607308+00', 7610, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40351, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.607308+00', 7604, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40352, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.669444+00', 7569, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40353, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.425762+00', 10483, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40354, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.564193+00', 10359, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40355, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.564193+00', 10388, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40356, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.425762+00', 10548, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40357, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.822631+00', 10161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40358, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 16:57:56.38726+00', 10641, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40359, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:59.033254+00', 2046, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40360, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.902492+00', 3834, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40361, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:59.056458+00', 3826, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40362, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.904644+00', 3966, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40363, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.942296+00', 3939, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40364, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.966478+00', 4054, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40365, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.902532+00', 5745, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40366, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.981149+00', 5749, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40367, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.931531+00', 5857, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40368, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.929636+00', 5755, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40369, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.958833+00', 5833, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40370, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.939985+00', 5853, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40371, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:59.034612+00', 6020, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40372, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.902489+00', 8196, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40373, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:02:58.958833+00', 8263, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40374, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.142534+00', 1408, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40375, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:58.996519+00', 2988, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40376, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.090399+00', 3033, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40377, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.055287+00', 3102, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40378, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.023164+00', 3136, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40379, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.114164+00', 3044, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40380, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.055363+00', 3960, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40381, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.017783+00', 3998, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40382, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.099426+00', 3976, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40383, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:58.993233+00', 4119, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40384, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.006023+00', 4224, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40385, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.038324+00', 4217, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40386, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.080543+00', 4209, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40387, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.085084+00', 5684, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40388, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:07:59.042818+00', 5736, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40389, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.828981+00', 719, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40390, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.360503+00', 1449, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40391, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.942918+00', 872, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40392, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.35584+00', 1462, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40393, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.837136+00', 1011, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40394, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.90734+00', 919, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40395, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.370263+00', 2130, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40396, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.372469+00', 2155, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40397, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.790405+00', 1797, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40398, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.86263+00', 1788, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40399, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.800446+00', 1850, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40400, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.353128+00', 2340, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40401, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.808693+00', 1883, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40402, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.36217+00', 3878, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40403, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:56.37412+00', 3877, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40404, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.068926+00', 2621, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40405, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.068926+00', 2412, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40406, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.2518+00', 2229, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40407, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.195407+00', 4405, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40408, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.068233+00', 4539, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40409, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.067632+00', 4536, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40410, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.32079+00', 4359, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40411, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.067897+00', 4650, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40412, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.067632+00', 4677, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40413, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.195407+00', 4854, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40414, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.067897+00', 4539, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40415, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.32079+00', 4763, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40416, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.19236+00', 5059, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40417, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.677531+00', 4586, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40418, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.182743+00', 5121, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40419, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.657959+00', 4881, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40420, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.759481+00', 4776, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40421, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.657959+00', 4949, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40422, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.340539+00', 7997, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40423, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.340539+00', 8017, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40424, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.188343+00', 8150, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40425, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.737309+00', 7869, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40426, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.737309+00', 7875, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40427, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.738402+00', 7889, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40428, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.724279+00', 7954, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40429, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.194288+00', 8491, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40430, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.21911+00', 8447, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40431, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.194288+00', 8576, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40432, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.222067+00', 8508, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40433, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.172242+00', 8823, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40434, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.068855+00', 8985, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40435, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.172242+00', 8863, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40436, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.067632+00', 9048, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40437, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.067632+00', 9040, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40438, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.235169+00', 9044, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40439, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.068855+00', 8938, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40440, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.691323+00', 8656, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40441, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.691323+00', 8678, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40442, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.731162+00', 8719, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40443, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.304242+00', 11064, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40444, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.168933+00', 11222, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40445, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.724021+00', 10666, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40446, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.304242+00', 11085, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40447, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.168933+00', 11235, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40448, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:36.73152+00', 10694, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40449, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.849774+00', 1153, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40450, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.857838+00', 2496, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40451, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.900566+00', 2492, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40452, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.862583+00', 2533, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40453, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.842639+00', 2562, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40454, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.899409+00', 2548, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40455, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.842501+00', 3485, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40456, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.868077+00', 3481, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40457, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.939411+00', 3400, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40458, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.855253+00', 3509, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40459, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.95992+00', 3433, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40460, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.873536+00', 3540, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40461, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.916579+00', 3571, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40462, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.826707+00', 4581, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40463, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:56.826917+00', 4597, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40464, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.033896+00', 3945, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40465, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.89898+00', 4270, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40466, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.89898+00', 4080, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40467, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.164741+00', 5511, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40468, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.848293+00', 5816, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40469, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.819118+00', 5854, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40470, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.848293+00', 6062, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40471, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.828233+00', 5860, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40472, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.771132+00', 5935, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40473, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.819118+00', 5924, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40474, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.164741+00', 5633, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40475, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.771132+00', 5979, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40476, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.71742+00', 6409, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40477, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.720666+00', 6249, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40478, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.72071+00', 6248, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40479, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.774927+00', 6209, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40480, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.771132+00', 6390, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40481, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.771132+00', 6357, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40482, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.095617+00', 8802, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40483, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.121579+00', 8949, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40484, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.121579+00', 8961, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40485, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.828644+00', 9290, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40486, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.828644+00', 9313, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40487, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.152984+00', 8995, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40488, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.064625+00', 9107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40489, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.072299+00', 9098, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40490, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.094767+00', 9099, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40491, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.152984+00', 9057, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40492, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.979284+00', 9344, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40493, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.720691+00', 9622, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40494, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.720704+00', 9624, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40495, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.085314+00', 9297, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40496, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.843727+00', 9510, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40497, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.720691+00', 9638, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40498, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.163263+00', 9226, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40499, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.085314+00', 9278, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40500, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.843727+00', 9549, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40501, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.065686+00', 9307, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40502, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.163263+00', 9197, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40503, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.720843+00', 12026, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40504, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.925732+00', 11827, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40505, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:19.094476+00', 11671, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40506, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.720843+00', 12098, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40507, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.979213+00', 11831, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40508, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:18.925732+00', 11889, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40509, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.508394+00', 4057, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40510, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.503244+00', 4062, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40511, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.508394+00', 4233, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40512, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.452591+00', 7560, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40513, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.451542+00', 8818, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40514, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.507184+00', 9356, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40515, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.580611+00', 9305, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40516, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.451542+00', 9340, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40517, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.451499+00', 9756, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40518, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.580611+00', 9504, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40519, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.451499+00', 9823, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40520, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.507184+00', 9463, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40521, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.594468+00', 9795, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40522, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.482569+00', 9906, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40523, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.482569+00', 9961, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40524, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.484635+00', 10389, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40525, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.594882+00', 10278, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40526, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.51792+00', 10605, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40527, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.458823+00', 14027, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40528, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.451517+00', 14038, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40529, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.451517+00', 14114, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40530, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.583449+00', 14023, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40531, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.46219+00', 14153, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40532, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.45153+00', 14211, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40533, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.545533+00', 14227, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40534, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.545533+00', 14271, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40535, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.602147+00', 14268, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40536, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.49977+00', 14477, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40537, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.445639+00', 14551, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40538, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.49977+00', 14553, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40539, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.555867+00', 14399, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40540, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.555867+00', 14533, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40541, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.463166+00', 14663, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40542, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.525697+00', 14597, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40543, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.525697+00', 14613, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40544, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.463166+00', 14710, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40545, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.451463+00', 15279, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40546, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.484143+00', 15243, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40547, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.484143+00', 15295, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40548, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.604304+00', 18180, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40549, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.538294+00', 18282, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40550, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.538294+00', 18288, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40551, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.445949+00', 18393, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40552, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.602213+00', 18272, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40553, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:35:57.602213+00', 18290, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40554, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.04991+00', 1644, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40555, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.04991+00', 1575, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40556, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.033119+00', 1591, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40557, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.232647+00', 3194, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40558, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.146954+00', 3458, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40559, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.146954+00', 3547, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40560, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.990044+00', 3636, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40561, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.990044+00', 3871, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40562, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.146657+00', 3741, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40563, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.707403+00', 3920, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40564, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.165954+00', 3754, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40565, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.989798+00', 3930, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40566, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.707362+00', 3919, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40567, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.707362+00', 4158, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40568, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.707403+00', 4162, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40569, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.7483+00', 4272, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40570, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.165954+00', 3888, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40571, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.086183+00', 3801, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40572, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.707362+00', 7209, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40573, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.769417+00', 7150, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40574, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.769417+00', 7170, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40575, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.707362+00', 7246, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40576, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.707407+00', 7248, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40577, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.800501+00', 7287, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40578, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.021314+00', 7083, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40579, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.990159+00', 7129, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40580, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.990159+00', 7155, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40581, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.991905+00', 7188, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40582, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.042579+00', 7294, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40583, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.042579+00', 7278, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40584, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.078902+00', 7314, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40585, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.13433+00', 7223, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40586, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.13433+00', 7258, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40587, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.078902+00', 7374, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40588, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.129892+00', 7398, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40589, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.151958+00', 7394, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40590, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.102008+00', 7766, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40591, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.102008+00', 7776, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40592, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.984563+00', 7941, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40593, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.171768+00', 10285, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40594, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.783021+00', 10777, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40595, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:10.783021+00', 10786, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40596, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.128919+00', 10562, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40597, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.128919+00', 10560, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40598, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:11.019591+00', 10724, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40599, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.494379+00', 5662, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40600, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.494379+00', 5425, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40601, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.539167+00', 5380, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40602, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.539167+00', 5612, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40603, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.568312+00', 7398, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40604, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.568312+00', 7448, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40605, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.522742+00', 7511, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40606, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.47005+00', 7566, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40607, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470038+00', 7567, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40608, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.472481+00', 7562, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40609, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.565387+00', 7562, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40610, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.571986+00', 7467, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40611, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.565387+00', 7474, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40612, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.509464+00', 7561, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40613, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.522742+00', 7688, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40614, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.472481+00', 7739, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40615, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.571986+00', 7646, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40616, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470044+00', 7923, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40617, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.47005+00', 7741, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40618, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470038+00', 7583, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40619, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.554491+00', 7840, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40620, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470044+00', 7956, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40621, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.509464+00', 7530, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40622, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.554491+00', 7885, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40623, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.535737+00', 11700, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40624, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.509464+00', 11726, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40625, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.509464+00', 11744, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40626, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.535737+00', 11716, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40627, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.49769+00', 11866, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40628, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.575586+00', 11808, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40629, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.49769+00', 11911, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40630, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.575586+00', 11869, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40631, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.55747+00', 11908, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40632, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.55747+00', 11960, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40633, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470014+00', 12086, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40634, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.5656+00', 12085, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40635, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.471188+00', 12362, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 18, 3, NULL, 3, NULL), +(40636, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.541933+00', 12318, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40637, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.5656+00', 12263, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40638, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470014+00', 12145, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40639, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.549198+00', 12314, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40640, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.481476+00', 12414, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40641, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.506814+00', 12358, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40642, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470035+00', 12399, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40643, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.541933+00', 12335, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40644, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.496928+00', 12410, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40645, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.549198+00', 12348, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40646, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.506814+00', 12402, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40647, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.470035+00', 12439, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40648, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.481476+00', 12384, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40649, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.496928+00', 12426, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40650, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.486426+00', 14959, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40651, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.497082+00', 14967, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40652, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.486426+00', 14962, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40653, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.516493+00', 14930, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40654, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.497082+00', 14996, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40655, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.516493+00', 14946, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40656, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.484719+00', 15065, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40657, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:20.484719+00', 15048, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40658, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.331837+00', 3235, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40659, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.331837+00', 3346, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40660, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.927088+00', 1638, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40661, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.304969+00', 4528, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40662, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.28575+00', 4682, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40663, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.304969+00', 4628, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40664, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.28575+00', 4581, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40665, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.76529+00', 3038, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40666, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.969143+00', 4462, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40667, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.371832+00', 3839, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40668, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.59705+00', 3639, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40669, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.48277+00', 5090, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40670, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:39.784915+00', 5782, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40671, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:39.784841+00', 5759, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40672, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:39.784841+00', 5710, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40673, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.172693+00', 5435, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40674, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:39.784915+00', 5844, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40675, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.172693+00', 5461, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40676, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.575535+00', 7884, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40677, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.129363+00', 7344, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40678, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.575535+00', 7917, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40679, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.48162+00', 6989, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40680, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:39.784936+00', 8768, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40681, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:39.784936+00', 8781, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40682, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.645041+00', 6954, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40683, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.211138+00', 8440, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40684, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.413348+00', 8236, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40685, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.541915+00', 7072, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40686, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.413348+00', 8254, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40687, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.596927+00', 7032, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40688, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.66754+00', 8056, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40689, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.211138+00', 8457, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40690, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.355578+00', 8398, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40691, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.264274+00', 8392, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40692, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.355578+00', 8410, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40693, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.264274+00', 8460, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40694, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.367938+00', 8414, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40695, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.020483+00', 7784, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40696, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.020483+00', 7805, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40697, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.045554+00', 10594, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40698, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.421145+00', 10218, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40699, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.045554+00', 10602, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40700, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:40.421145+00', 10229, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40701, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.363541+00', 9315, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40702, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:41.111495+00', 9588, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40703, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:51.056347+00', 3231, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40704, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:51.068673+00', 3118, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40705, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:51.056347+00', 3130, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40706, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.657079+00', 6031, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40707, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.770947+00', 5913, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40708, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.472647+00', 7231, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40709, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.472647+00', 7266, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40710, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:51.056603+00', 5669, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40711, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.590664+00', 6125, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40712, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.657079+00', 6074, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40713, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.590664+00', 6164, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40714, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:51.056603+00', 5702, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40715, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.44353+00', 6516, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40716, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.695804+00', 7264, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40717, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.120653+00', 6857, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40718, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.695804+00', 7288, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40719, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.981401+00', 7009, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40720, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.911204+00', 6072, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40721, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.822434+00', 12364, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40722, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.903544+00', 12327, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40723, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.472797+00', 13828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40724, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.562368+00', 12609, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40725, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.882275+00', 12396, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40726, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.822434+00', 12476, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40727, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.472797+00', 13708, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40728, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.242243+00', 13141, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40729, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.610282+00', 13778, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40730, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.645023+00', 12651, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40731, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.835841+00', 12568, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40732, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.610282+00', 13816, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40733, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.23653+00', 15714, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40734, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.375908+00', 13073, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40735, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.274878+00', 16148, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40736, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.242243+00', 15777, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40737, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.765377+00', 16465, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40738, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.274878+00', 16168, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40739, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.583185+00', 16853, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40740, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.583185+00', 16872, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40741, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.882275+00', 12478, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40742, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.47289+00', 17299, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 3, NULL), +(40743, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:50.132201+00', 16723, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40744, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.47269+00', 17448, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40745, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.47269+00', 17456, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40746, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:49.736475+00', 17494, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40747, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.633945+00', 2277, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40748, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.643401+00', 3806, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40749, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.385975+00', 4386, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40750, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.426249+00', 4355, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40751, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.493772+00', 4324, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40752, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.63689+00', 4233, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40753, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.455436+00', 6894, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40754, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.440618+00', 6972, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40755, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.417963+00', 7092, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40756, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.447209+00', 7099, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40757, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.485282+00', 7100, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40758, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.636141+00', 6968, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40759, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.390373+00', 7233, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40760, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.474137+00', 8558, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40761, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:41.390528+00', 8721, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40762, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.181181+00', 8015, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40763, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.176904+00', 8020, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40764, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.176904+00', 8268, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40765, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.101125+00', 11202, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40766, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.25884+00', 11082, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40767, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.101125+00', 11191, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40768, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.100624+00', 11194, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40769, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.109073+00', 11241, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40770, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.234344+00', 11106, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40771, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.25884+00', 11102, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40772, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.234344+00', 11164, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40773, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.109073+00', 11329, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40774, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.318101+00', 11695, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40775, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.10066+00', 11950, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40776, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.318101+00', 11732, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40777, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.102288+00', 11945, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40778, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.258434+00', 11913, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40779, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.28677+00', 10733, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40780, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.340002+00', 12938, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40781, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.933342+00', 13374, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40782, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.233589+00', 14044, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40783, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.17698+00', 14095, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40784, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.014465+00', 13243, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40785, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.340002+00', 13093, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40786, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.113989+00', 14179, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40787, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.164076+00', 14685, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40788, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.114147+00', 14654, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40789, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.17698+00', 14171, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40790, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.233589+00', 14094, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40791, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.113989+00', 14237, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40792, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.114147+00', 14642, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40793, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.153521+00', 13736, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40794, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.220122+00', 14671, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40795, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.220122+00', 14894, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40796, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.153521+00', 13771, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40797, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.211378+00', 15008, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40798, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.332669+00', 13948, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40799, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.129621+00', 15077, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40800, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.099159+00', 15122, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40801, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.116865+00', 17110, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40802, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.201935+00', 17025, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40803, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.116865+00', 17136, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40804, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:01.201935+00', 17033, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40805, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.302801+00', 15970, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40806, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:02.018245+00', 16266, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40807, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.956181+00', 829, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40808, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.688409+00', 2245, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40809, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:52.016098+00', 1935, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40810, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.864324+00', 2087, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40811, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.994094+00', 1974, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40812, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.915295+00', 2074, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40813, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.943147+00', 3669, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40814, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.933489+00', 3759, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40815, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:52.04853+00', 3697, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40816, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.956048+00', 3796, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40817, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:52.081285+00', 3672, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40818, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.691367+00', 4089, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40819, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.949061+00', 3840, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40820, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:51.906409+00', 4892, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40821, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:52.094544+00', 4715, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40822, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.930303+00', 2582, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40823, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.955368+00', 3136, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40824, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.910945+00', 3303, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40825, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.944497+00', 3270, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40826, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.912732+00', 3322, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40827, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.923011+00', 3329, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40828, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.952588+00', 6420, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40829, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.910872+00', 6465, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40830, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.946968+00', 6434, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40831, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.959783+00', 6412, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40832, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.936638+00', 6434, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40833, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.910956+00', 6545, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40834, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.933573+00', 6541, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40835, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.926656+00', 8878, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40836, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:18.939695+00', 9258, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40837, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.785007+00', 6100, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40838, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.265596+00', 6906, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(40839, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.265596+00', 6649, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40840, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.354509+00', 9349, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40841, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.269002+00', 9813, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40842, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.077865+00', 9318, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(40843, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.354509+00', 9412, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(40844, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.748872+00', 9331, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40845, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.782822+00', 9553, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(40846, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.077865+00', 9064, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40847, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.782822+00', 9005, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40848, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.269002+00', 10208, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(40849, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.093534+00', 9656, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40850, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.096386+00', 9653, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40851, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.443769+00', 10293, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40852, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.268936+00', 10514, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40853, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.27953+00', 10452, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40854, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.950637+00', 10872, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40855, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.865664+00', 10087, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40856, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.554925+00', 11260, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40857, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.096386+00', 9663, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(40858, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.32884+00', 11532, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(40859, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.501363+00', 10476, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(40860, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.554925+00', 11295, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(40861, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.08495+00', 11022, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40862, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.877156+00', 10968, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40863, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.501363+00', 10452, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40864, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.30965+00', 12109, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40865, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.712068+00', 11353, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40866, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.268142+00', 12671, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40867, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.32884+00', 11510, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40868, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:13.567809+00', 3398, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40869, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.974297+00', 11482, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40870, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.974297+00', 11583, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(40871, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.950637+00', 11240, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(40872, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.914191+00', 11964, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40873, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.131326+00', 11913, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(40874, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.268142+00', 12738, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(40875, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.131326+00', 11811, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40876, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.778711+00', 12356, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40877, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.613754+00', 4288, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40878, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.914762+00', 14004, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40879, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.609727+00', 4284, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40880, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.598831+00', 3217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40881, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.081291+00', 13840, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40882, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.66154+00', 4300, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40883, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:04.914762+00', 14018, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(40884, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.081291+00', 13852, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(40885, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.10921+00', 13822, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40886, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:05.025212+00', 13921, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40887, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.507581+00', 5222, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40888, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.367588+00', 5500, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40889, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.80477+00', 5085, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40890, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:16.057978+00', 3809, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40891, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.162561+00', 4809, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40892, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.949044+00', 4932, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40893, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:16.109152+00', 4513, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40894, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:16.898433+00', 3758, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40895, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.685764+00', 6430, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40896, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.843678+00', 6278, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40897, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.076002+00', 6196, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40898, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.205592+00', 7372, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40899, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.198978+00', 7627, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40900, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.097988+00', 7691, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40901, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.187502+00', 7602, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40902, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.075546+00', 7720, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40903, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.095576+00', 7988, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40904, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.075313+00', 8148, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40905, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.136896+00', 8108, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40906, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.217149+00', 8049, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40907, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.180912+00', 8086, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40908, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.093361+00', 8185, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40909, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.231121+00', 8112, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40910, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.195359+00', 9436, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40911, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:03.148157+00', 9787, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40912, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.029282+00', 384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40913, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.055313+00', 587, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40914, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.09234+00', 724, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40915, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.114207+00', 1048, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40916, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.176812+00', 1054, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40917, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.054526+00', 1871, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40918, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.117223+00', 1928, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40919, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.036456+00', 1188, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40920, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.268795+00', 970, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40921, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.560005+00', 765, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40922, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.054273+00', 1334, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40923, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.037448+00', 1400, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40924, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.560894+00', 896, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40925, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.650677+00', 894, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40926, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.597343+00', 1013, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40927, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.95891+00', 3716, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40928, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.95897+00', 4629, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40929, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:04.009655+00', 4794, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40930, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.95891+00', 4891, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40931, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.98268+00', 4909, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40932, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.986712+00', 4862, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40933, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:04.002492+00', 5134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40934, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.998156+00', 5137, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40935, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.958954+00', 5259, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40936, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:04.013227+00', 5225, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40937, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.962174+00', 5335, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40938, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:04.060837+00', 5266, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40939, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:04.043578+00', 5768, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40940, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:03.958924+00', 6839, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40941, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:04.05036+00', 6782, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40942, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:12.313164+00', 726, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40943, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:12.486806+00', 727, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40944, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:12.576755+00', 883, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40945, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:12.317349+00', 1194, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40946, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:12.579139+00', 1315, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40947, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:12.600688+00', 1463, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40948, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:12.563332+00', 1839, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40949, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:13.989788+00', 668, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40950, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.02652+00', 654, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40951, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.035636+00', 812, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40952, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.098381+00', 840, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40953, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.050618+00', 930, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40954, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.101235+00', 1030, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40955, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.035364+00', 1099, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40956, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.029172+00', 1156, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40957, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.525081+00', 5474, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40958, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.78854+00', 6388, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40959, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.329449+00', 6741, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40960, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.318783+00', 6735, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40961, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.39629+00', 6891, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40962, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.583845+00', 6777, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40963, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.922925+00', 6876, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(40964, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.318765+00', 7504, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40965, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.31873+00', 7571, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40966, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.741402+00', 7145, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40967, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.425+00', 7530, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40968, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.925202+00', 7043, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40969, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.707293+00', 7418, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(40970, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.479325+00', 11947, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(40971, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:03.332999+00', 12157, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(40972, X'8ad6b766635b4d61eec42dd7c41432e5e5917cdc92b310b3b569ccf2def33b2a', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.72917+00', 1165, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40973, X'fb809b1c7e161d6712a41494a728a29b7affc9d932515ef74833e95faa6a8a83', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.708779+00', 1242, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40974, X'92dff361aa238a72db71f87b88f8f0ded8c3ca89e10bcf8e41783cee38e67c29', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.866393+00', 1159, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40975, X'87bbd861e26fac44627af695cd9891e6e402b5d3ebc7e681272b001a489ad6a7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.697923+00', 1358, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40976, X'c49eb00f7b3e5a6de46ef46d127ec2d0fc04fc1ed4d80bcd7afcd54b1a2a701c', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.825983+00', 1382, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40977, X'1a9d98e656ed3c51eef5f10a2e0af287422e1e14147d3f20f70b37fae4c3e29d', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.708646+00', 1670, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40978, X'57bac4466e80408bac8a6cb84dce63d47c93b27ce4656826d1c2d83081daf126', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.775433+00', 1594, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40979, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:36.683975+00', 1744, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40980, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.334039+00', 391, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40981, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.416713+00', 407, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40982, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.151899+00', 1427, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40983, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.395499+00', 1238, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(40984, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.451242+00', 1208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40985, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.290705+00', 1431, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40986, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.341321+00', 1499, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40987, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.167557+00', 1716, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40988, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.818757+00', 1398, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(40989, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:58.385703+00', 2772, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(40990, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.86392+00', 3309, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(40991, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:58.387505+00', 2883, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(40992, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.743352+00', 4081, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(40993, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.712439+00', 4276, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(40994, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:58.442085+00', 4146, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(40995, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.712526+00', 4880, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(40996, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:58.390566+00', 4209, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(40997, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.712364+00', 4886, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(40998, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.712309+00', 4887, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(40999, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:58.433409+00', 4201, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41000, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:58.417812+00', 4273, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41001, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:58.394435+00', 8881, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41002, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:57.894268+00', 9492, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41003, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.703919+00', 2213, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41004, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.758263+00', 3370, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41005, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.703891+00', 3408, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41006, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.745802+00', 3501, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41007, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.77162+00', 4184, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41008, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.703908+00', 4428, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41009, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.724588+00', 5226, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41010, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.741011+00', 5318, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41011, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.765069+00', 5345, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41012, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.72437+00', 5438, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41013, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.703759+00', 5469, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41014, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.703921+00', 5520, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41015, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.705224+00', 6008, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41016, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.730832+00', 8870, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41017, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 18:54:59.778816+00', 8840, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41018, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.484243+00', 4273, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41019, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:02.38298+00', 4341, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41020, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.499074+00', 5243, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41021, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.49318+00', 5372, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41022, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.51987+00', 5402, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41023, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.483582+00', 5465, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41024, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:02.384611+00', 4892, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41025, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.551401+00', 5769, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41026, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.485034+00', 6036, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41027, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:02.43918+00', 5113, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41028, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:02.374008+00', 5238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41029, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:02.449298+00', 5172, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41030, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.54242+00', 6985, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41031, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.484965+00', 12104, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41032, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:01.520622+00', 12094, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41033, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.07867+00', 2658, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41034, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.006813+00', 4141, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41035, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.005075+00', 4154, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41036, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.016995+00', 4234, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41037, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.00527+00', 4354, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41038, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.016077+00', 4342, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41039, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.072901+00', 4866, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41040, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.005276+00', 4931, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41041, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.040566+00', 5065, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41042, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.005252+00', 5116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41043, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.079952+00', 5041, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41044, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.030723+00', 5192, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41045, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.049063+00', 5522, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41046, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.040084+00', 6891, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41047, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:13.013347+00', 6920, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41048, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.503892+00', 2509, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41049, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.481182+00', 3876, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41050, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.515617+00', 3858, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41051, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.474185+00', 4051, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41052, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.502606+00', 4071, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41053, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.518053+00', 4110, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41054, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.475445+00', 4373, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41055, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.47416+00', 4516, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41056, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.490992+00', 4608, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41057, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.474189+00', 4708, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41058, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.487259+00', 4712, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41059, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.508756+00', 4814, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41060, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.474202+00', 4878, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41061, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.474208+00', 6238, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41062, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:14.513126+00', 6237, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41063, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.859237+00', 2443, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41064, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.776907+00', 3549, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41065, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.776907+00', 3506, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41066, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.538208+00', 4724, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41067, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.538208+00', 4779, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41068, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.848238+00', 4464, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41069, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.665181+00', 4640, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41070, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.682699+00', 4608, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41071, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.628978+00', 4633, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41072, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.848238+00', 4553, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41073, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.880279+00', 3542, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41074, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.628978+00', 4755, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41075, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.836103+00', 4701, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41076, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.827131+00', 4555, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41077, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.836103+00', 4715, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41078, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.682699+00', 4653, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41079, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.972518+00', 3410, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41080, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.958838+00', 3579, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41081, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.673158+00', 5723, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41082, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.774061+00', 5618, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41083, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.636834+00', 5757, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41084, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.959711+00', 4437, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41085, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.636834+00', 5838, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41086, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.664764+00', 5802, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41087, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.740019+00', 5726, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41088, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.538206+00', 5891, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(41089, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.538206+00', 5847, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41090, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.664764+00', 6325, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41091, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.880247+00', 4515, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41092, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.673158+00', 5817, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41093, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.863201+00', 5050, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41094, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.880247+00', 4597, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41095, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.851805+00', 5640, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41096, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.690146+00', 6620, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41097, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.690146+00', 6450, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41098, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.851805+00', 5662, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41099, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.837856+00', 6785, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41100, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.97822+00', 5565, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41101, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.83014+00', 6670, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41102, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.853764+00', 9151, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41103, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.987214+00', 8057, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41104, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.853764+00', 9303, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(41105, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.628978+00', 9530, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41106, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:17.628978+00', 9439, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41107, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:18.989042+00', 8173, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41108, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:23.0113+00', 4637, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41109, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.974067+00', 5504, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41110, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:23.016981+00', 5513, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41111, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.969139+00', 5542, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41112, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.996858+00', 5589, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41113, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:23.000947+00', 5752, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41114, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.983456+00', 6043, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41115, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.969161+00', 6162, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41116, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:23.031245+00', 6100, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41117, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.969139+00', 6254, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41118, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.969172+00', 6319, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41119, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.969167+00', 6422, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41120, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:23.02029+00', 6404, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41121, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:22.982079+00', 7886, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41122, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:23.02729+00', 7853, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41123, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.092089+00', 2884, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41124, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.170377+00', 2846, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41125, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.092089+00', 2828, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41126, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.053301+00', 4993, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41127, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.091298+00', 4956, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41128, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:50.993105+00', 5134, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41129, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.826969+00', 4222, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41130, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.091298+00', 5072, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41131, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.053301+00', 5137, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41132, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.803286+00', 4424, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41133, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.074285+00', 5166, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41134, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:50.993105+00', 5053, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41135, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.074285+00', 5223, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41136, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.120103+00', 5158, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41137, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:50.994883+00', 5357, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41138, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.070612+00', 5635, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41139, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.775801+00', 4930, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41140, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.070612+00', 5765, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41141, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.012449+00', 6508, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41142, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.020226+00', 6541, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(41143, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.020226+00', 6500, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41144, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.788659+00', 5734, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41145, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:50.998698+00', 6532, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41146, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:50.998698+00', 6625, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41147, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.069558+00', 6958, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41148, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.069558+00', 6997, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41149, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.07765+00', 7093, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41150, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.07765+00', 7158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41151, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.058297+00', 7154, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41152, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.851719+00', 6345, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41153, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.058297+00', 7114, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41154, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:50.994537+00', 7276, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41155, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:50.994537+00', 7295, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41156, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.817109+00', 6502, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41157, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.797374+00', 6588, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41158, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.786087+00', 6587, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41159, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.095177+00', 7310, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41160, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.040607+00', 7480, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41161, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.040607+00', 7468, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41162, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.030766+00', 10851, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41163, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.8587+00', 10025, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41164, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.030766+00', 10866, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(41165, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.062743+00', 10873, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41166, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.023548+00', 10941, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41167, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:51.023548+00', 10949, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41168, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.257136+00', 4152, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41169, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.257136+00', 3928, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41170, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.28173+00', 4059, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41171, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.318735+00', 5847, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41172, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.318735+00', 5869, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(41173, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:09.97412+00', 6192, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41174, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.058771+00', 6156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41175, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.208571+00', 6011, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41176, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.208571+00', 5973, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41177, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.311705+00', 6294, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41178, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.311705+00', 6305, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41179, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.478094+00', 6125, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41180, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.192402+00', 8399, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41181, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.214764+00', 8342, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41182, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.214764+00', 8351, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41183, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.370162+00', 8457, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41184, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.192402+00', 8658, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41185, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.304809+00', 8565, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41186, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.205495+00', 9014, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41187, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.173839+00', 9015, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41188, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.38407+00', 9060, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41189, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.205495+00', 8973, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41190, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.173839+00', 9004, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41191, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:09.970874+00', 9535, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41192, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:09.970874+00', 9640, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41193, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.359126+00', 9284, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41194, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:09.942669+00', 9910, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41195, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.209561+00', 9640, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41196, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.508438+00', 9311, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41197, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.32985+00', 9581, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41198, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.32985+00', 9603, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41199, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.368139+00', 9662, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41200, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.368139+00', 9737, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41201, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.097768+00', 10112, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41202, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.20473+00', 10021, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41203, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.20473+00', 10017, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41204, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.156279+00', 10093, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41205, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.156279+00', 10091, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41206, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.555673+00', 9739, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41207, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.385361+00', 12378, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41208, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.385361+00', 12390, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41209, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.165522+00', 12641, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41210, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.165522+00', 12661, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(41211, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:10.214873+00', 12660, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41212, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:09.942625+00', 12940, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41213, X'477d835aac6f1434d8a3383c746cf9316869eb92bd032ab7ab2c77f38c9c4e78', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:30.768968+00', 966, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41214, X'287060adbf9d58e40cae6164937073ec6e9477cdedadc747ce3de84160cd54ba', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:30.771335+00', 971, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41215, X'e0698c34d0f8caeafaf0bfc8007245793aabb041b914e5696413ffdc85ab7658', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:30.793096+00', 1015, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41216, X'4dc312256c770c0c48ed34594ecfd1ba8c3bfb7d21b4eab013a90da2c79aee2b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:30.685361+00', 1301, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41217, X'ae8018013a389533f6b4b06dfc78260ee2d155fccba96e95559a7e930b308f3d', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:30.790069+00', 1290, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41218, X'4467d42d82200b72df5759e39845000fb768033cfde7d655e16c4d96446faa97', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:30.769043+00', 1789, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41219, X'5369ad9297a1b98712fa4fc170075ff4602855069ed7447bf42ce75add3907e7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:30.750153+00', 1741, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41220, X'477d835aac6f1434d8a3383c746cf9316869eb92bd032ab7ab2c77f38c9c4e78', TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:14.23318+00', 3379, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41221, X'e0698c34d0f8caeafaf0bfc8007245793aabb041b914e5696413ffdc85ab7658', TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:14.237275+00', 3371, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41222, X'287060adbf9d58e40cae6164937073ec6e9477cdedadc747ce3de84160cd54ba', TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:14.23321+00', 3379, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41223, X'ae8018013a389533f6b4b06dfc78260ee2d155fccba96e95559a7e930b308f3d', TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:14.242952+00', 3990, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41224, X'4dc312256c770c0c48ed34594ecfd1ba8c3bfb7d21b4eab013a90da2c79aee2b', TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:14.243407+00', 4038, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41225, X'5369ad9297a1b98712fa4fc170075ff4602855069ed7447bf42ce75add3907e7', TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:14.235157+00', 5132, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41226, X'4467d42d82200b72df5759e39845000fb768033cfde7d655e16c4d96446faa97', TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:14.239273+00', 5153, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41227, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:55.49669+00', 2602, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41228, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:55.496973+00', 2599, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41229, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:55.49669+00', 2843, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41230, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:55.497167+00', 2841, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41231, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:55.496718+00', 2923, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41232, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:55.496714+00', 4290, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41233, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:55.497776+00', 4320, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41234, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-01-23 06:55:44.06264+00', 2075, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(41235, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:39.737694+00', 539, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41236, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:39.72892+00', 645, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41237, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:39.538824+00', 1578, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41238, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:39.87402+00', 1438, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41239, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:39.970245+00', 1376, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41240, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:39.763973+00', 1569, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41241, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:39.893326+00', 1690, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41242, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.161429+00', 281, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41243, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.269297+00', 474, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41244, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.294169+00', 551, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41245, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.288163+00', 700, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41246, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.27331+00', 759, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41247, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.244788+00', 1198, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41248, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.295134+00', 1222, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41249, X'bc9facfc77279e626d36a258121a519f74208a7722ef89d4144962a61ecdc99f', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.311984+00', 436, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41250, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.696783+00', 455, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41251, X'7454ac8a9c902697eeb9e57eea84bdf0ed40e8e809d02433ba0d9c47be3a3c3e', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.692392+00', 403, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41252, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.298046+00', 851, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41253, X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.696396+00', 454, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41254, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.692392+00', 1221, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41255, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.697884+00', 959, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41256, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.081426+00', 175, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41257, X'50d7227eb4eb1997998ed650fdede6f402610b950a681eebc390b4d2e13cc6db', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.095147+00', 350, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41258, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.127164+00', 352, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41259, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.131413+00', 397, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41260, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.115577+00', 428, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41261, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.098855+00', 761, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41262, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.217705+00', 737, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41263, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:14.828924+00', 1533, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41264, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:14.796562+00', 1648, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41265, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:14.840586+00', 1809, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41266, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:14.840895+00', 2010, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41267, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:14.774077+00', 2088, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41268, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:14.824765+00', 2195, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41269, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:14.826811+00', 2461, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41270, X'e52817af119b8c7dba9d03e36ea300da401da5141468e14628dcf4290fa532b6', TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:46.242693+00', 2658, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41271, X'e9aa78318991fb36efdbbbd82ae7c1beb20a62d599edf57a5d50f25ed0279e31', TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:46.256659+00', 2644, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41272, X'52be33ffed84bb96075a6a27be139145a5d7f2a06c5fbfee203dea2f66f842f7', TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:46.242978+00', 2658, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41273, X'945487bb9b8136f6d80ba0aade2a9f526013121981471a3e44527f4963fbf52a', TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:46.24698+00', 2776, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41274, X'28a83145ccbd7fefc86c8f0b6ca2d0db7d3e5b90de31bb35ed483f7f2b2d86df', TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:46.243704+00', 2782, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41275, X'4c58e76fe5ee7920139f9e4b5ccf2e8ecb09bf65584128ced119da14a92650a8', TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:46.25547+00', 3854, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41276, X'308de4c4c4ed344f17a777c0c7f38cccf96efdfed34c568eba3cca1bbbc2fff5', TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:46.242942+00', 3906, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41277, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.679031+00', 969, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(41278, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.780843+00', 2098, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(41279, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.846922+00', 2251, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(41280, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.677169+00', 2566, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(41281, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.159742+00', 3110, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(41282, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.683735+00', 2586, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(41283, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.856955+00', 2456, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(41284, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:08.741298+00', 2660, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(41285, X'3636b229dc657a9570cb2532b562454ccdc150998d0b29e243d5b0680576aaec', TIMESTAMP WITH TIME ZONE '2023-01-23 07:33:24.177333+00', 325, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(41286, X'0be9ffc78938403e85b176b0bcfc4e59d95eb862fc517262107172cf5b6f7014', TIMESTAMP WITH TIME ZONE '2023-01-23 07:33:29.878854+00', 274, 5, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(41287, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.638911+00', 2987, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41288, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.638911+00', 3046, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41289, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.628386+00', 3009, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41290, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.652815+00', 5722, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41291, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.639273+00', 5797, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41292, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.549297+00', 5965, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41293, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.729373+00', 5683, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41294, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.639273+00', 5771, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41295, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.652815+00', 5729, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(41296, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.64715+00', 6563, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41297, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.793182+00', 6388, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41298, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.64715+00', 6534, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41299, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418725+00', 7656, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41300, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418708+00', 7722, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41301, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418708+00', 7704, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41302, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418725+00', 7652, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41303, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.721272+00', 7455, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41304, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418733+00', 7837, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41305, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.56994+00', 8376, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41306, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.57944+00', 8372, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41307, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.638781+00', 8238, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41308, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.744069+00', 8132, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41309, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.566909+00', 8310, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41310, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.566909+00', 8336, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41311, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418709+00', 8810, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41312, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.57944+00', 8753, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41313, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.638781+00', 8277, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(41314, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.706594+00', 8684, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41315, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.729783+00', 8541, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41316, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.690187+00', 8671, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41317, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418709+00', 9002, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41318, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418708+00', 9258, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41319, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.724784+00', 8554, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41320, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.724784+00', 8956, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41321, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:12.834898+00', 7846, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41322, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418708+00', 9327, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41323, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.678273+00', 9074, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41324, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.729783+00', 8950, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41325, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.418732+00', 9324, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41326, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.694709+00', 10470, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41327, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.638403+00', 10829, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41328, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.594793+00', 10897, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 3, NULL), +(41329, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.638403+00', 10855, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41330, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:11.66581+00', 10841, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41331, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.136267+00', 3176, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41332, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.137254+00', 4136, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41333, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.168036+00', 4119, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41334, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.152526+00', 4354, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41335, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.152395+00', 5229, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41336, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.16841+00', 5253, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41337, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.135232+00', 5513, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41338, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.135216+00', 5511, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41339, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.157156+00', 5562, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41340, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.158324+00', 5581, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41341, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.165403+00', 5614, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41342, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.140553+00', 5702, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41343, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.135163+00', 6202, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41344, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.143492+00', 10857, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41345, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:01.149037+00', 10872, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41346, X'e4b61e48266d37f552b4c7a29eac08f5d6fd2d93d5520a97cb12863724cd8a51', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:38.800106+00', 1910, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41347, X'219927674e95400ecf801b92ed2a5501a996087d27735ab998cf18e25442eb55', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:38.788523+00', 1922, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41348, X'e5979327c2b6c3356c42e98ffb9865c44ecf2976eb9cd29da2ccb6782ede039a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:38.811236+00', 1899, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41349, X'6e1b913308c9db893acda0c9deffa5f6d5511d655e66e2dac7f6dde12c6937ca', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:38.81162+00', 3016, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41350, X'216b28df6ce785480a8e076a6806ce9e03c8a3fb88d734e25989e81b98fad83d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:39.056627+00', 2777, 6, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41351, X'3fa949ec153f0dba5d939e12faa54a5dfc7998ce866e68695446c4d7fe41a04c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:39.058089+00', 3882, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41352, X'f95a973195dadc58876cec126312aeda332f5f613438144301123e72d449e24a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:38.787611+00', 4155, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41353, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:54.28361+00', 692, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41354, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:54.771113+00', 418, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41355, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:54.345893+00', 1060, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41356, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:54.356022+00', 1139, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41357, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:54.855654+00', 698, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41358, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:54.34868+00', 1250, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41359, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:54.759073+00', 904, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41360, X'69622b8e334af358a735daa267c4d0268b39006e30dcbc8da3d2a11ac07cc1a7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.392653+00', 513, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41361, X'8f62243336be07e17a12efadb45d666c719750e5a99c1c454618a52664fc5cd1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.31926+00', 580, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41362, X'a62df3018bb984b291beb070846386368d90c49a712821e12dedfe6a363c5300', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.396849+00', 541, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41363, X'04a4d235fefb78b41b64255042442d555311f2a5e8dd7b2e72b603b98922c7cf', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.411472+00', 674, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41364, X'c47d48214e050edc4d15964706ea29fb167e33225cd47104d1faa82e420faa5b', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.404741+00', 981, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41365, X'7a3143bc387da3a62140eb548d72ca4923d483d485c20a58964696bfc00eadc8', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.320723+00', 1137, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41366, X'27e58af60a95a5b823841b07eeb8665e93951a43721834ba60f8b256d8d4a919', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.306989+00', 1194, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41367, X'375152b6454cb750cb07412e413fea182a4dacffff70934d5b341e748606b98c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:17.444307+00', 777, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41368, X'1ff217f2b2a1b7e40d20a025d357a837d2c56c4443693f81d7c19ac79f982453', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:17.427954+00', 845, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41369, X'77c929fb19132523d5c31b778a2059f2febb7c3b4b6d502f080748d8a3f8ef4e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:17.381645+00', 892, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41370, X'fa1c40bf0f09056112f579f0572c09098232acac431433dfa55732e431b10b64', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:17.476659+00', 818, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41371, X'cdfb6203b02176075bbbd9c057f5e738450db90c2b65916152af10b8b6eef8c1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:17.375879+00', 1047, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41372, X'81eb85ad0ed3d0177c26f9cfdae384db793bc7b26ab272aa89d4a2fbfda4f451', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:17.498703+00', 1183, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41373, X'4915596b080fe0d9f7ce778d6e17a127181b8507517d34eb64e869c335b90275', TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:17.343865+00', 1507, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41374, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:35.331247+00', 1868, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41375, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:35.331183+00', 1882, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41376, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:35.331183+00', 2671, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41377, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:35.389032+00', 2636, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41378, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:35.331281+00', 2792, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41379, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:35.331268+00', 4025, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41380, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:35.331267+00', 4090, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41381, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.138752+00', 631, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41382, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.143569+00', 1119, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41383, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.134523+00', 1269, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41384, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.175882+00', 1322, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41385, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.133012+00', 1350, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41386, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.657734+00', 928, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41387, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.853908+00', 853, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41388, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.184917+00', 1852, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41389, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.52966+00', 1577, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41390, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.580798+00', 1549, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41391, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.17846+00', 2030, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41392, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.680924+00', 1561, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41393, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.60804+00', 1651, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41394, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.684613+00', 1670, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41395, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.707335+00', 1703, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41396, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:05:10.009124+00', 987, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41397, X'e9131ccc80e934a2a3d69d69fc3be8f8c56e61cb3206e2babcabc77880b15e5d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:05:39.30935+00', 4440, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41398, X'9111da91b0ebbe7064d9b9dfc0b0c782f6c4dea98c4f33966da454bf4ea5964d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:06:00.407227+00', 681, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41399, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.567694+00', 618, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41400, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.550033+00', 1862, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41401, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.459591+00', 1958, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41402, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.529812+00', 1928, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41403, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.575612+00', 2612, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41404, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.528854+00', 2730, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41405, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.487628+00', 2912, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41406, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.49604+00', 3033, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41407, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.515676+00', 3153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41408, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.554571+00', 3153, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41409, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.610493+00', 3184, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41410, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.512476+00', 3328, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41411, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.496175+00', 3478, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41412, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.459586+00', 4678, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41413, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:07.491873+00', 4766, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41414, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.686062+00', 2803, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41415, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.662594+00', 3609, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41416, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.669315+00', 3626, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41417, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.655945+00', 3872, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41418, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.690964+00', 4434, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41419, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.694552+00', 4436, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41420, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.692472+00', 4793, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41421, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.686272+00', 4799, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41422, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.656042+00', 4902, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41423, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.697432+00', 4884, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41424, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.656099+00', 4961, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41425, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.685993+00', 4938, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41426, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.662035+00', 4968, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41427, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.672833+00', 6810, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41428, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:06.686824+00', 6845, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41429, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.471646+00', 1260, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41430, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.496686+00', 2085, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41431, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.471676+00', 2222, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41432, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.488014+00', 2246, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41433, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.472205+00', 2796, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41434, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.471636+00', 2961, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41435, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.487838+00', 3104, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41436, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.495487+00', 3192, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41437, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.492263+00', 3361, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41438, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.474973+00', 3417, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41439, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.473809+00', 3481, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41440, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.471667+00', 3518, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41441, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.471683+00', 3570, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41442, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.471638+00', 4444, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41443, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:41.480869+00', 4477, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41444, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.101928+00', 1342, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41445, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.159045+00', 2457, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41446, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.146181+00', 2485, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41447, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.152267+00', 2535, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41448, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.089487+00', 3253, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41449, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.141173+00', 3202, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41450, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.138049+00', 3358, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41451, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.114745+00', 3424, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41452, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.175304+00', 3444, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41453, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.089487+00', 3548, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41454, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.127122+00', 3568, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41455, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.133256+00', 3613, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41456, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.157587+00', 3666, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41457, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.161569+00', 4732, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41458, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:01.127623+00', 4809, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41459, X'216cdb219e3341daafb7cba5674a4d0a08f89940b7fd9ea4d5cd480e4fa1756a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:35:58.200459+00', 434, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41460, X'c48f3ac43425d5792c114e6e15e11a77075be12a943d345a7a6f5e8f88a05826', TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:09.413278+00', 630, 5, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41461, X'cc427a7164dfbc63bab90c03b12b1df49ab3c88b38817d22bd8463cfb88400bd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:14.248775+00', 3737, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41462, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:22.013454+00', 2575, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41463, X'8dccacdeb63362e80778dfe5272526080a96d9334329b88105795b053d3f1070', TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:38.31826+00', 2665, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41464, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.354841+00', 1151, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41465, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.724771+00', 1338, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41466, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.612659+00', 1460, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41467, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.354901+00', 1767, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41468, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.800825+00', 3107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41469, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.353549+00', 3574, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41470, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.79348+00', 3497, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41471, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.854428+00', 3437, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41472, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.777359+00', 3552, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41473, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.761103+00', 3597, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41474, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.860397+00', 3489, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41475, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.672804+00', 3727, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41476, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.703099+00', 3764, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41477, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.678588+00', 5035, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41478, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:00.3542+00', 5357, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41479, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.624444+00', 1321, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41480, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.604171+00', 2945, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41481, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.616659+00', 2946, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41482, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.656882+00', 2963, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41483, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.662951+00', 3893, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41484, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.624947+00', 4022, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41485, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.672331+00', 4150, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41486, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.646076+00', 4243, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41487, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.674389+00', 4283, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41488, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.604308+00', 4393, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41489, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.639463+00', 4369, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41490, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.667519+00', 4378, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41491, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.604204+00', 4469, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41492, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.604295+00', 5213, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41493, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:43:59.634887+00', 5225, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41494, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.828278+00', 2592, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41495, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.040663+00', 4249, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41496, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:04.998714+00', 4314, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41497, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:04.998722+00', 4530, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41498, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:04.998729+00', 6179, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41499, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.013134+00', 6166, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41500, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:04.998655+00', 6241, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41501, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.876738+00', 5362, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41502, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.841026+00', 5401, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41503, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:04.998682+00', 6240, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41504, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.032969+00', 6214, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41505, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.825539+00', 5423, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41506, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.825117+00', 5423, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41507, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:05.044368+00', 6458, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41508, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:04.998655+00', 6546, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41509, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.146312+00', 1479, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41510, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.024698+00', 2482, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41511, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.149254+00', 2395, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41512, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.15298+00', 2427, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41513, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.149909+00', 2767, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41514, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.17539+00', 2902, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41515, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.164181+00', 3136, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41516, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.018655+00', 3358, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41517, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.01844+00', 3451, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41518, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.146414+00', 3343, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41519, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.164541+00', 3350, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41520, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.150327+00', 3375, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41521, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.169876+00', 3452, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41522, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.018414+00', 5050, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41523, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:01.018268+00', 5097, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41524, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.77507+00', 2145, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41525, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.734161+00', 3501, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41526, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.806155+00', 3410, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41527, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.662684+00', 3550, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41528, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.758061+00', 4097, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41529, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.765366+00', 4093, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41530, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.717465+00', 4475, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41531, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.662694+00', 4580, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41532, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.769117+00', 4512, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41533, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.662694+00', 4621, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41534, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.67985+00', 4619, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41535, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.810946+00', 4636, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41536, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.750113+00', 4719, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41537, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.662634+00', 5965, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41538, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:00.696803+00', 5958, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41539, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.86194+00', 2580, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41540, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.850811+00', 4429, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41541, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.85006+00', 4470, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41542, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.775066+00', 4747, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41543, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.818712+00', 6040, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41544, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.868796+00', 5990, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41545, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.859429+00', 6396, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41546, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.868961+00', 6394, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41547, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.873909+00', 6419, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41548, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.855596+00', 6468, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41549, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.765092+00', 6579, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41550, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.773862+00', 6570, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41551, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.849972+00', 6545, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41552, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.871547+00', 8503, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41553, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:05.763605+00', 8685, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41554, X'77c929fb19132523d5c31b778a2059f2febb7c3b4b6d502f080748d8a3f8ef4e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:52.398535+00', 3060, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41555, X'fa1c40bf0f09056112f579f0572c09098232acac431433dfa55732e431b10b64', TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:52.398576+00', 3054, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41556, X'375152b6454cb750cb07412e413fea182a4dacffff70934d5b341e748606b98c', TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:52.398535+00', 3051, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41557, X'1ff217f2b2a1b7e40d20a025d357a837d2c56c4443693f81d7c19ac79f982453', TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:52.398573+00', 3623, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41558, X'cdfb6203b02176075bbbd9c057f5e738450db90c2b65916152af10b8b6eef8c1', TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:52.398586+00', 3758, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41559, X'4915596b080fe0d9f7ce778d6e17a127181b8507517d34eb64e869c335b90275', TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:52.398586+00', 5266, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41560, X'81eb85ad0ed3d0177c26f9cfdae384db793bc7b26ab272aa89d4a2fbfda4f451', TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:52.398535+00', 5349, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41561, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:03.770664+00', 258, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41562, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:03.813015+00', 237, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41563, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:03.787423+00', 405, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41564, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:03.804129+00', 721, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41565, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:03.813121+00', 731, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41566, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:03.825294+00', 949, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41567, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:03.819412+00', 1084, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41568, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:07.045832+00', 1079, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41569, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:07.296489+00', 926, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41570, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:07.052628+00', 1217, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41571, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:07.048398+00', 1257, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41572, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:06.996848+00', 1315, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41573, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:07.33603+00', 1021, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41574, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:07.440513+00', 1177, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41575, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:07.837941+00', 825, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41576, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:09.694305+00', 365, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41577, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:09.688805+00', 555, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41578, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:09.757762+00', 635, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41579, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:09.720845+00', 744, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41580, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:09.729021+00', 795, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41581, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:09.69034+00', 1086, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41582, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:09.686718+00', 1185, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41583, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.56097+00', 4400, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41584, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.582748+00', 6660, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41585, X'f4c419caea0c8a3c9108f8699f061acf81b20f6d58156d29604151baa1916fb6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.549325+00', 6751, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41586, X'c1edd247edb1ae9e48f7beb378692a17c081061363b02d8f7dbbad7fa6591aa5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.612922+00', 7600, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41587, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.591356+00', 8948, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41588, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.514784+00', 9076, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41589, X'680b468b845b74359f3d6100a79fd35d3f522e6feee956d7d7b91b60cf2a3f3c', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.559004+00', 9467, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41590, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.526087+00', 9566, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41591, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.617531+00', 9615, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41592, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.605849+00', 9631, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41593, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.516528+00', 9710, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41594, X'b6403d98f9b26bcaaf07e44d9eba750f337cb26d01b1193c812ebca7fac695f1', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.552891+00', 9670, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41595, X'11bb396e28525ecb5e25b0ff4219d006037fd59c5d5df80220cd2795a5adcf71', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.535182+00', 9815, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41596, X'3caa1c9d1409a6247268e588a6c5d78f4cfa5f52d9b28d7219f61b9fe2e1ad45', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.537376+00', 11166, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41597, X'bbb289d1e0b8a83a6ffd06d12776e64d218560ff0f04feaf35cad66b00046db5', TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:11.515013+00', 11219, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41598, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.077476+00', 3390, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41599, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.027071+00', 3370, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41600, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.077476+00', 3232, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41601, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.96288+00', 4908, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41602, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.119087+00', 4777, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41603, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.196213+00', 4673, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41604, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.806599+00', 6076, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41605, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.119087+00', 4743, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41606, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.196213+00', 4737, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(41607, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.81249+00', 6518, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41608, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.95165+00', 5289, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41609, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.81249+00', 6556, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41610, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.981679+00', 7258, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41611, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.961534+00', 7387, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41612, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.193866+00', 7158, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41613, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.952787+00', 8419, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41614, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.952787+00', 8445, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41615, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.961534+00', 7446, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41616, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.092689+00', 9165, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41617, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.997316+00', 8240, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41618, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.092689+00', 9141, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41619, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.135261+00', 8102, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41620, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.82045+00', 9437, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41621, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.997316+00', 8316, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41622, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.135261+00', 8182, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(41623, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.861784+00', 9710, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41624, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.861784+00', 9740, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41625, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.928697+00', 9637, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41626, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.884883+00', 9779, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41627, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.95273+00', 8621, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41628, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.010899+00', 8698, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41629, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:57.108797+00', 8604, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41630, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.928697+00', 9840, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41631, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.115688+00', 9961, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41632, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.806599+00', 10255, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41633, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.115688+00', 9909, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41634, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.983178+00', 9046, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41635, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.806619+00', 10296, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41636, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:55.806619+00', 10290, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41637, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.994148+00', 10667, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41638, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.994148+00', 10700, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41639, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.064666+00', 11604, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41640, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.961602+00', 10743, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41641, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.064666+00', 11642, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41642, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 09:32:56.96033+00', 10775, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41643, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.212298+00', 1912, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41644, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.214287+00', 2853, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41645, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.20744+00', 2878, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41646, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.270311+00', 2914, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41647, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.298908+00', 3712, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41648, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.2075+00', 3816, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41649, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.241472+00', 4173, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41650, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.274226+00', 4150, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41651, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.210633+00', 4219, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41652, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.237641+00', 4215, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41653, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.275449+00', 4213, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41654, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.207461+00', 4319, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41655, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.292199+00', 4284, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41656, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.207439+00', 5596, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41657, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:55.287164+00', 5554, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41658, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.013403+00', 932, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41659, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.997792+00', 2067, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41660, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.033786+00', 2040, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41661, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.202926+00', 2925, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41662, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.201224+00', 3455, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41663, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.013894+00', 2662, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41664, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.223262+00', 3821, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41665, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.01402+00', 3157, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41666, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.006251+00', 3246, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41667, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.071889+00', 3296, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41668, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.997792+00', 3391, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41669, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.228368+00', 4273, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41670, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.001712+00', 3529, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41671, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.17638+00', 5547, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41672, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:54.175106+00', 5584, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41673, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.479974+00', 3607, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41674, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.284078+00', 5496, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41675, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.473584+00', 5401, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41676, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.525855+00', 5572, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41677, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.508694+00', 7664, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41678, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.382919+00', 7791, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41679, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.511792+00', 8128, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41680, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.584178+00', 8055, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41681, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.284049+00', 8614, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41682, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.471201+00', 8430, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41683, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.436614+00', 8471, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41684, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.58732+00', 8419, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41685, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.280546+00', 8812, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41686, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.356525+00', 10480, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41687, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 09:47:56.30893+00', 10616, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41688, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.782474+00', 2759, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41689, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.773295+00', 2711, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41690, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.773295+00', 2804, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41691, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.618958+00', 4851, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41692, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.792763+00', 4668, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41693, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.512554+00', 5212, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41694, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.618958+00', 5119, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(41695, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.631536+00', 5026, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41696, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.512554+00', 4967, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41697, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.512511+00', 6222, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41698, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.724595+00', 6010, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41699, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.512511+00', 6249, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41700, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.652013+00', 9225, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41701, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.758297+00', 9488, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41702, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.777147+00', 9500, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41703, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.777147+00', 9520, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41704, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.581928+00', 9767, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41705, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.581928+00', 9759, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41706, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.512514+00', 9874, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41707, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.512514+00', 9896, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(41708, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.570162+00', 10025, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41709, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.570162+00', 9977, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41710, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.696156+00', 10039, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41711, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.696156+00', 9995, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41712, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.75363+00', 9985, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41713, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.593427+00', 10147, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41714, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.79141+00', 10073, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41715, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.593676+00', 10411, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41716, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.603297+00', 10409, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41717, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.593676+00', 10434, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41718, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.754944+00', 10288, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41719, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.664057+00', 10429, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41720, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.664057+00', 10421, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41721, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.823456+00', 10278, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41722, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.823456+00', 10270, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41723, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.698704+00', 10468, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41724, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.672533+00', 10476, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41725, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.698704+00', 10461, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41726, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.610724+00', 10557, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41727, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.672533+00', 13985, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41728, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.672533+00', 14047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41729, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.512605+00', 14243, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41730, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.657594+00', 14143, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(41731, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.657594+00', 14140, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41732, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:45.698102+00', 14120, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41733, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:44.578996+00', 6723, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41734, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:44.590128+00', 6701, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41735, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:44.576985+00', 7262, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41736, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:44.596784+00', 7331, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41737, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:44.611444+00', 7363, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41738, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:44.79843+00', 9046, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41739, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:44.596647+00', 9418, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41740, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.728451+00', 451, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41741, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.620364+00', 590, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41742, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.625892+00', 581, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41743, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.762626+00', 640, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41744, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.730837+00', 710, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41745, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.700592+00', 766, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41746, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.689812+00', 795, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41747, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:05.727624+00', 794, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41748, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:19.289447+00', 1311, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41749, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:19.33348+00', 1252, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41750, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:19.305123+00', 1759, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41751, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:19.333975+00', 1900, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41752, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:19.326313+00', 1985, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:19.284775+00', 2799, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41754, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:19.327113+00', 2771, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41755, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.691458+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41756, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.703436+00', 568, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41757, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.558627+00', 1246, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41758, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.550557+00', 1268, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41759, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.537347+00', 1330, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41760, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.550304+00', 1386, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41761, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.560823+00', 1426, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41762, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.767682+00', 1251, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41763, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:34.957395+00', 2417, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41764, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:34.975198+00', 2399, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41765, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:34.995658+00', 2888, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41766, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:34.979446+00', 3026, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41767, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:34.986025+00', 3085, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41768, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:34.957396+00', 4605, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41769, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:34.995214+00', 4584, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41770, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.824242+00', 736, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41771, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.806972+00', 782, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41772, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.861554+00', 1057, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41773, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.857062+00', 1191, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41774, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.898335+00', 1177, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41775, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.94136+00', 1165, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41776, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.843822+00', 1298, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41777, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:23.863043+00', 1276, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41778, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:17.766514+00', 1986, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41779, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:17.770064+00', 1979, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41780, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:17.764092+00', 2989, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41781, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:17.763842+00', 3136, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41782, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:17.763828+00', 3234, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41783, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:17.769609+00', 4656, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41784, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:17.763777+00', 4687, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41785, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:32.972303+00', 488, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41786, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:32.791253+00', 862, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41787, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:32.927124+00', 855, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41788, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:32.78155+00', 1086, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41789, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:32.768111+00', 1168, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41790, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:32.765518+00', 1175, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41791, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:32.931768+00', 1010, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41792, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.159843+00', 843, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41793, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.992904+00', 2702, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41794, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.992904+00', 2750, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41795, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.104487+00', 2590, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41796, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.034943+00', 5861, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41797, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.104487+00', 5857, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41798, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.075327+00', 5818, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41799, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.123503+00', 5787, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41800, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.123503+00', 5909, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41801, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.034943+00', 6002, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(41802, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.037255+00', 6184, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41803, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.047154+00', 7657, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41804, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.047154+00', 7661, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41805, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.966696+00', 7771, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41806, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.133801+00', 7613, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41807, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.063685+00', 7790, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41808, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.063685+00', 7818, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41809, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.126973+00', 7878, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41810, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.011324+00', 8803, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41811, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.918565+00', 8918, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41812, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.911688+00', 8902, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41813, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.971399+00', 8872, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41814, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.998912+00', 8823, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41815, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.998912+00', 8846, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41816, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.918565+00', 8900, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41817, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.971399+00', 8894, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41818, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.117757+00', 8757, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41819, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.011324+00', 8863, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41820, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.911688+00', 8973, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41821, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.057811+00', 8834, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41822, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.927013+00', 9003, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41823, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.083331+00', 8955, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41824, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.932894+00', 8994, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41825, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.079341+00', 8851, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41826, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.029013+00', 9071, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41827, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.029013+00', 9103, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41828, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.012797+00', 11738, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41829, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:42.091538+00', 11707, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41830, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.937498+00', 11924, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41831, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.937498+00', 11928, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41832, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.935856+00', 11964, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41833, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:41.935856+00', 11970, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(41834, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:53.928267+00', 3463, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41835, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:53.928286+00', 3463, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41836, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:53.928458+00', 3844, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41837, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:53.930432+00', 3971, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41838, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:53.928289+00', 4024, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41839, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:53.928266+00', 5006, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41840, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:53.928269+00', 5086, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41841, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.030934+00', 399, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41842, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.091764+00', 397, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41843, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.162858+00', 701, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41844, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.087183+00', 877, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41845, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.045306+00', 982, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41846, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.00551+00', 1022, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41847, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.028479+00', 1047, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41848, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.038259+00', 1137, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41849, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:07.389321+00', 3282, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41850, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:07.389294+00', 3282, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41851, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:07.389288+00', 3876, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41852, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:07.389329+00', 3880, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41853, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:07.389301+00', 4032, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41854, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:07.389333+00', 5272, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41855, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:07.38932+00', 5292, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41856, X'9cd010d7cb6c316525e4c53329699bb2497eae81592c50ca063396df76a0fccf', TIMESTAMP WITH TIME ZONE '2023-01-23 12:15:40.674704+00', 3506, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41857, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:26.235738+00', 5941, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(41858, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:43.283302+00', 2457, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41859, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:43.448575+00', 2474, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41860, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:43.180692+00', 3178, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41861, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:43.356504+00', 3738, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41862, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:43.207724+00', 3885, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41863, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:43.292684+00', 4158, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41864, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:43.200965+00', 4296, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41865, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:36.989408+00', 2211, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41866, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.768949+00', 3398, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41867, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.768949+00', 3465, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41868, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.755664+00', 5231, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41869, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.739231+00', 5312, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41870, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.755664+00', 5257, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41871, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.757333+00', 5229, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41872, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.591947+00', 5436, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41873, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.591947+00', 5501, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41874, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.757333+00', 5271, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(41875, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:36.935082+00', 4037, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41876, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.739231+00', 5360, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41877, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.951751+00', 5188, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41878, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.907703+00', 5742, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41879, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:36.994203+00', 4145, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41880, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.69975+00', 6268, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41881, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:37.104395+00', 4786, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41882, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.69975+00', 6328, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41883, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:36.002319+00', 9252, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41884, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.866713+00', 9380, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41885, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:36.935541+00', 8317, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41886, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.806314+00', 9510, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41887, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.806314+00', 9419, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41888, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.59197+00', 9665, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41889, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.861567+00', 9481, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41890, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.59197+00', 9820, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41891, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.861567+00', 9499, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41892, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.866713+00', 9428, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(41893, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.663464+00', 9706, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41894, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:36.972678+00', 8984, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41895, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.592792+00', 9866, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41896, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.938651+00', 9537, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41897, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.592792+00', 9879, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41898, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.592761+00', 10588, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41899, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.814191+00', 10023, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 12, 2, NULL, 3, NULL), +(41900, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.679683+00', 10503, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41901, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.592761+00', 10610, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41902, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.645796+00', 10559, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41903, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.713315+00', 11654, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41904, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.713315+00', 11606, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41905, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.800449+00', 12049, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41906, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:36.942993+00', 10919, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41907, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.800449+00', 12069, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(41908, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:35.887665+00', 12021, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41909, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.068128+00', 3988, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41910, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.068128+00', 4199, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(41911, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.00784+00', 4147, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(41912, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.042026+00', 5745, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41913, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.979975+00', 5831, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(41914, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.918831+00', 5891, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41915, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.967602+00', 5944, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(41916, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.967962+00', 5980, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41917, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.984166+00', 5816, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41918, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.967962+00', 6009, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(41919, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.918831+00', 6003, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(41920, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.979975+00', 5938, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(41921, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.007599+00', 5956, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(41922, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.031332+00', 5934, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(41923, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.984166+00', 5974, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(41924, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.954935+00', 6351, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(41925, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.967481+00', 6342, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41926, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.967481+00', 6361, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(41927, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.992624+00', 9526, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41928, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.918756+00', 9598, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(41929, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.918756+00', 9606, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(41930, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.060568+00', 9533, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41931, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.060568+00', 9558, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(41932, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.016553+00', 9689, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41933, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.95096+00', 9964, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(41934, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.016034+00', 9909, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41935, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.016034+00', 9951, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(41936, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.95096+00', 10030, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(41937, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.020751+00', 10210, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(41938, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.063634+00', 9964, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(41939, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.921042+00', 10356, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41940, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.933072+00', 10339, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(41941, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.933072+00', 10305, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41942, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.020751+00', 10214, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(41943, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.053378+00', 10237, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(41944, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.010154+00', 10279, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41945, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.951984+00', 10347, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(41946, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.921042+00', 10403, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(41947, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.977747+00', 10340, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(41948, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.940447+00', 12503, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41949, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.947182+00', 12509, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(41950, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.947182+00', 12519, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(41951, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:15.996132+00', 12482, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41952, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.092047+00', 12426, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(41953, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:16.092047+00', 12429, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(41954, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.356496+00', 2284, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(41955, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.355808+00', 3341, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(41956, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.360386+00', 4136, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(41957, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.354801+00', 4181, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(41958, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.354868+00', 4753, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(41959, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.355369+00', 4757, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(41960, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.35652+00', 4754, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(41961, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:20.360124+00', 4798, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(41962, X'bbaf3333f14ddee561326dc2391f2849278a173f82b590dfae34cc2aff43b331', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:28.060499+00', 256, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41963, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:29.878053+00', 377, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41964, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.050028+00', 604, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41965, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.016067+00', 744, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(41966, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.043479+00', 845, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(41967, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:41.984647+00', 982, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(41968, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.023471+00', 966, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(41969, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:41.944678+00', 1076, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(41970, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:41.944849+00', 1104, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(41971, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.042982+00', 1041, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(41972, X'c8381264b9783072cb62fb647208d5fd47e9c72780875e6298863b912ec92c2a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:54.760733+00', 503, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(41973, X'23dadd7124e6d9740b1ec21c0921a13f480ff625d2f8ac9883032605c145b8f5', TIMESTAMP WITH TIME ZONE '2023-01-23 13:27:53.942422+00', 3830, 7, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41974, X'17ab0203adc94d8bb3aabd38013334be3a49699c8118582a76e2083df3f1907d', TIMESTAMP WITH TIME ZONE '2023-01-23 13:28:06.854846+00', 2257, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(41975, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.715453+00', 1046, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(41976, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.707152+00', 2516, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(41977, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.706417+00', 2590, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(41978, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.729242+00', 2642, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(41979, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.722194+00', 2957, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(41980, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.717159+00', 3265, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(41981, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.709939+00', 3168, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(41982, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:08.713312+00', 3315, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(41983, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:14.905517+00', 404, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41984, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.079632+00', 578, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(41985, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.036721+00', 698, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(41986, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.104207+00', 755, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41987, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.063922+00', 955, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(41988, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:14.998765+00', 2430, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(41989, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.058801+00', 2392, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(41990, X'7182c4047d01b979439aa897137c0b2b07be3336ce6a1b30458b091fdf61c8ba', TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:27.859082+00', 394, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(41991, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:22.239492+00', 1030, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41992, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:22.290757+00', 952, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41993, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.551664+00', 2690, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(41994, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.552371+00', 2690, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(41995, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.552371+00', 2835, 0, FALSE, 'dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(41996, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.551664+00', 2833, 0, FALSE, 'dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(41997, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.572122+00', 4257, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(41998, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.572122+00', 4262, 0, TRUE, 'dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(41999, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.55993+00', 4438, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(42000, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.55993+00', 4451, 0, TRUE, 'dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(42001, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:22.044819+00', 3091, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(42002, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.569701+00', 4626, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(42003, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.569701+00', 4687, 0, TRUE, 'dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(42004, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:22.264969+00', 3003, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42005, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:22.320121+00', 3143, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(42006, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.575375+00', 9169, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(42007, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.575375+00', 9202, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(42008, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:22.295431+00', 7483, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(42009, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.572299+00', 9228, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(42010, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:22.26508+00', 7564, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(42011, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:20.572299+00', 9238, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(42012, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.728595+00', 1396, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(42013, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.732976+00', 2134, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(42014, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.728627+00', 2817, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(42015, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.73663+00', 2820, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(42016, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.722688+00', 3006, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(42017, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.725171+00', 3002, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(42018, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.723621+00', 3068, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(42019, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.735027+00', 3074, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(42020, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-23 13:33:29.827682+00', 3195, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(42021, X'8c0ca856d9f90e1a7e42a3766f196358e63deaca42e410a7631bf0fd7ced4b1e', TIMESTAMP WITH TIME ZONE '2023-01-23 13:34:39.329134+00', 364, 3, FALSE, 'question', NULL, 1, 29, NULL, NULL, 3, FALSE), +(42022, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.375613+00', 745, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(42023, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.167248+00', 1112, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(42024, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.317027+00', 3453, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42025, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.175786+00', 3642, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(42026, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.345465+00', 3621, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(42027, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.386405+00', 3600, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(42028, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.354937+00', 3635, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(42029, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:00.314736+00', 3785, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(42030, X'4d521f7538ca91557a0fb8d9a69ecb1d7f165387543b4897bfe2318bcce3c7f1', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:09.762831+00', 4403, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(42031, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.85656+00', 761, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(42032, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.884373+00', 1079, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(42033, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.876552+00', 1178, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(42034, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.886092+00', 1175, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(42035, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.893961+00', 1381, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(42036, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.880069+00', 1446, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(42037, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.880223+00', 1462, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(42038, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:25.866425+00', 1475, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(42039, X'3636b229dc657a9570cb2532b562454ccdc150998d0b29e243d5b0680576aaec', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:35.494019+00', 268, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(42040, X'1be9ec06935aef0e95f3f3691a42e92f3aa52287c7658ccdea0b0e2aabff0c3a', TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:53.149689+00', 75, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found '',''.', 1, NULL, NULL, NULL, 3, NULL), +(42041, X'acc3fc733101b6f6eb78bd23ccf078b8f1f8b1284ffb3d36f2d96dc2766669ac', TIMESTAMP WITH TIME ZONE '2023-01-23 13:43:04.376009+00', 1219, 5, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(42042, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.074208+00', 3647, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42043, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.307337+00', 4455, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42044, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.307337+00', 4370, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42045, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.78161+00', 7366, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42046, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.324564+00', 7961, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42047, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.78161+00', 7504, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42048, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.947228+00', 7322, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42049, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.324564+00', 7880, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42050, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.945904+00', 7254, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42051, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.146587+00', 8704, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42052, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.308063+00', 9543, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42053, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.308063+00', 9564, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42054, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.307329+00', 12234, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42055, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.880519+00', 11988, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42056, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.796565+00', 12298, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42057, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.880519+00', 12156, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42058, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.79251+00', 12452, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42059, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.035253+00', 11733, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42060, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.796565+00', 12071, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42061, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.307329+00', 12196, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42062, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.79251+00', 12374, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42063, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.792488+00', 12572, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42064, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.879894+00', 12582, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42065, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.158764+00', 12601, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42066, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.146497+00', 12301, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42067, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.792488+00', 12542, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42068, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.879894+00', 12552, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42069, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.100929+00', 12360, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42070, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.969018+00', 12487, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42071, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.12743+00', 12833, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42072, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.053132+00', 12958, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42073, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.79631+00', 13273, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42074, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.79631+00', 13240, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42075, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.958499+00', 13401, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42076, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.866909+00', 13148, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42077, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.977821+00', 13368, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42078, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.866909+00', 13163, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42079, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.307292+00', 14173, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42080, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.307292+00', 14190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42081, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.782102+00', 16722, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42082, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.782102+00', 16711, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42083, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.352194+00', 17330, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42084, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.352194+00', 17402, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42085, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:28.200495+00', 16862, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42086, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:27.941136+00', 17145, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42087, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.919703+00', 3794, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42088, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.878752+00', 5634, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42089, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.88235+00', 5640, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42090, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.88059+00', 5894, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42091, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.909105+00', 8087, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42092, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.878573+00', 8255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42093, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.924339+00', 8605, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42094, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.932556+00', 8612, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42095, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.912712+00', 8633, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42096, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.878711+00', 8787, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42097, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.920832+00', 8813, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42098, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.882523+00', 8878, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42099, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.886551+00', 9009, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42100, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.911418+00', 10973, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42101, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:29.886202+00', 11014, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42102, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.597887+00', 6267, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42103, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.884653+00', 7224, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42104, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.359568+00', 5749, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42105, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.276754+00', 5862, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42106, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.276754+00', 5588, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42107, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.597887+00', 6541, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42108, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.736102+00', 8575, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42109, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.565773+00', 7672, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42110, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.376717+00', 9068, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42111, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.604123+00', 9705, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42112, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.29093+00', 8082, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42113, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.39289+00', 8417, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42114, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.376717+00', 9430, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42115, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.377035+00', 10270, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42116, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.568335+00', 8833, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42117, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.56544+00', 8502, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42118, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.5683+00', 9076, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42119, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.377035+00', 10364, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42120, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.39289+00', 8537, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42121, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.605346+00', 11128, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42122, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.721745+00', 10179, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42123, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.151909+00', 9790, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42124, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.261553+00', 9681, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42125, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.605346+00', 11043, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42126, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.721745+00', 10137, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42127, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.977574+00', 10284, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42128, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.181235+00', 9471, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42129, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.616359+00', 11366, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42130, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.616359+00', 11325, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42131, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.151909+00', 9871, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42132, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.5683+00', 9141, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42133, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.977574+00', 10328, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42134, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.387146+00', 10875, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42135, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.721959+00', 10541, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42136, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.608706+00', 10653, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42137, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.387146+00', 10906, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42138, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.16513+00', 13609, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42139, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.175925+00', 14843, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42140, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.391067+00', 14616, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42141, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.569352+00', 13462, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42142, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.391067+00', 14736, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42143, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.880638+00', 15369, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42144, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.880638+00', 15333, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42145, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.356533+00', 13986, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42146, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.771747+00', 14663, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42147, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.411184+00', 15045, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42148, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.411184+00', 15095, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42149, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.573142+00', 13924, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42150, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.771747+00', 14707, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42151, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.721918+00', 14885, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42152, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.722744+00', 14898, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42153, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.721918+00', 14905, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42154, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.380755+00', 15288, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42155, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.722744+00', 14978, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42156, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.368048+00', 14514, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42157, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.737599+00', 15151, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42158, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.605104+00', 15306, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42159, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.566387+00', 14355, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42160, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.384943+00', 15541, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42161, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.881115+00', 16211, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42162, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.260385+00', 14826, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42163, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.368048+00', 14721, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42164, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.388164+00', 14712, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42165, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.737599+00', 15401, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42166, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.879575+00', 16280, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42167, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.348925+00', 14819, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42168, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.487769+00', 16734, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42169, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.260385+00', 14941, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42170, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.881115+00', 16360, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42171, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.388164+00', 14897, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42172, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.141362+00', 15158, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42173, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.348925+00', 14990, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42174, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.61395+00', 16723, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42175, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.570272+00', 14868, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42176, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.357308+00', 15088, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42177, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.141362+00', 15312, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42178, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.61395+00', 16860, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42179, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.242738+00', 15420, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42180, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.487768+00', 21151, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42181, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:19.487768+00', 21187, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42182, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.736111+00', 19953, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42183, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.613122+00', 19145, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42184, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.095933+00', 19664, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42185, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.397636+00', 20431, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42186, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.397636+00', 20448, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42187, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.684871+00', 20177, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42188, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.684871+00', 20163, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42189, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:21.571084+00', 19297, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42190, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.722204+00', 20145, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42191, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:20.722204+00', 20167, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42192, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.169921+00', 2344, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42193, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.209627+00', 3304, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42194, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.203703+00', 4365, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42195, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.54531+00', 3102, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42196, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.178566+00', 4435, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42197, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.336757+00', 3244, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42198, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.178229+00', 4587, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42199, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.490271+00', 3124, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42200, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.178582+00', 4468, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42201, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.186212+00', 4482, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42202, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.336992+00', 3428, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42203, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.545753+00', 3115, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42204, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.536369+00', 5977, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42205, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.182546+00', 7326, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42206, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.336821+00', 6171, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42207, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.178605+00', 7390, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42208, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.186163+00', 7397, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42209, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.214497+00', 7367, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42210, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.188356+00', 7491, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42211, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.18885+00', 6522, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42212, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.36004+00', 6357, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42213, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.181625+00', 7533, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42214, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.531525+00', 6192, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42215, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.336032+00', 6388, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42216, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.527766+00', 6452, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42217, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.202627+00', 7855, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42218, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.178475+00', 10170, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42219, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:19.178906+00', 10244, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42220, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.530809+00', 8920, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42221, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:20.513495+00', 9113, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42222, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.321297+00', 2731, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42223, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:23.301576+00', 1751, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42224, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:23.319303+00', 3202, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42225, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.217197+00', 4332, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42226, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.180923+00', 4323, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42227, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.212625+00', 4464, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42228, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.180928+00', 4549, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42229, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.315831+00', 4512, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42230, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.50747+00', 4374, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42231, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:23.337598+00', 3499, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42232, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.321405+00', 4661, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42233, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.24525+00', 4736, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42234, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.281625+00', 9771, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42235, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.331453+00', 9716, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42236, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:23.156966+00', 9067, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42237, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.182264+00', 10023, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42238, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.186559+00', 9978, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42239, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.292517+00', 9872, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42240, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.323734+00', 9931, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42241, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:23.141206+00', 9140, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42242, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.180669+00', 10182, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42243, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.327322+00', 9971, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42244, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:23.278254+00', 9124, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42245, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:23.278299+00', 9234, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42246, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.180895+00', 10408, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42247, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.244927+00', 10375, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42248, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.323405+00', 13112, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42249, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.288233+00', 13376, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42250, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.270885+00', 13408, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42251, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:22.292213+00', 13409, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42252, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.683819+00', 2431, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42253, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.679693+00', 4050, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42254, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.689962+00', 4139, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42255, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.688253+00', 4220, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42256, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.65273+00', 4201, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42257, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:19.302744+00', 3740, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42258, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:19.266527+00', 3661, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42259, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.666655+00', 4376, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42260, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.901904+00', 1252, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42261, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.952133+00', 1816, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42262, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.973705+00', 1859, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42263, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:23.963664+00', 914, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42264, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.835664+00', 9093, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42265, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.656892+00', 9273, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42266, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.64913+00', 9360, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42267, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.709294+00', 9350, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42268, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.65083+00', 9440, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42269, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.80665+00', 9351, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42270, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.823124+00', 5430, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42271, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.696333+00', 9560, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42272, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.872856+00', 5454, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42273, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:23.674224+00', 4671, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42274, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.673823+00', 9742, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42275, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:23.12946+00', 5365, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42276, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.649116+00', 10025, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42277, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:19.284349+00', 9422, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42278, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:19.21091+00', 12479, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42279, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.713881+00', 13138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42280, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.655377+00', 13205, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42281, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:18.853589+00', 13052, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42282, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.102481+00', 708, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42283, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.117758+00', 2021, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42284, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.135961+00', 2039, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42285, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.125951+00', 2021, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42286, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.134168+00', 2064, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42287, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.126205+00', 2112, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42288, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.117689+00', 3397, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42289, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.100792+00', 3473, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42290, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.175597+00', 3423, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42291, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.16427+00', 3437, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42292, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.185389+00', 3443, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42293, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.129534+00', 3521, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42294, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.102645+00', 3547, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42295, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.102799+00', 4602, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42296, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.162023+00', 4603, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42297, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:38.86573+00', 1778, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42298, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:38.845585+00', 1809, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42299, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:38.845873+00', 2458, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42300, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:38.969207+00', 2355, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42301, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:38.896577+00', 2565, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42302, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:38.944596+00', 3056, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42303, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:38.889128+00', 3342, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42304, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.582027+00', 204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42305, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.649296+00', 478, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42306, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.676671+00', 480, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42307, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.818607+00', 348, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42308, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.606713+00', 591, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42309, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.61498+00', 594, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42310, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.64835+00', 647, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42311, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.741847+00', 592, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42312, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224273+00', 1327, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42313, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224273+00', 1370, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42314, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.718406+00', 994, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42315, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.624207+00', 2492, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42316, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.254833+00', 2973, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42317, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.581377+00', 2534, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42318, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.254833+00', 2871, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42319, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.582435+00', 2702, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42320, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.614376+00', 2614, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42321, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.614376+00', 2706, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42322, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.475349+00', 2849, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42323, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.718203+00', 2402, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42324, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.441766+00', 2929, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42325, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.59358+00', 2724, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42326, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.624207+00', 2612, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42327, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.581377+00', 2652, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42328, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.406684+00', 2904, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42329, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.475349+00', 3318, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42330, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.428159+00', 6436, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42331, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.599536+00', 6251, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42332, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.626003+00', 6279, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42333, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.428159+00', 6419, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42334, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.626003+00', 6287, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42335, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.522456+00', 6444, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42336, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.51882+00', 6449, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42337, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.718489+00', 6256, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42338, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.525275+00', 6594, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42339, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.722573+00', 6377, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42340, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.598512+00', 6537, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42341, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.50031+00', 6639, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42342, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.525275+00', 6646, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42343, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.598512+00', 6579, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42344, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.722573+00', 6487, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42345, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.323989+00', 6885, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42346, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.52639+00', 6696, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42347, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.50031+00', 6727, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42348, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224235+00', 7002, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42349, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224265+00', 7074, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42350, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224265+00', 7096, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42351, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.580778+00', 8947, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42352, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.236302+00', 9341, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42353, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224235+00', 9376, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42354, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224235+00', 9383, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42355, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224235+00', 9399, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42356, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:46.224235+00', 9402, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42357, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:15.124185+00', 724, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42358, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:15.126707+00', 1559, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42359, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:15.123216+00', 1571, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42360, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.977397+00', 1723, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42361, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.741053+00', 1960, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42362, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.978696+00', 1727, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42363, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.747652+00', 2436, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42364, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:15.052692+00', 2193, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42365, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.723641+00', 2567, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42366, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.978519+00', 2366, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42367, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.719645+00', 2685, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42368, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:15.085904+00', 2341, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42369, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.760893+00', 2751, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42370, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.740652+00', 3472, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42371, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:14.664658+00', 3583, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42372, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:05.019393+00', 3349, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42373, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:04.924082+00', 3445, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42374, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:04.924064+00', 5262, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42375, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:04.967211+00', 5212, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42376, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:04.981783+00', 5229, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42377, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.229015+00', 912, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42378, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.096663+00', 1057, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42379, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.34726+00', 950, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42380, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.159216+00', 1191, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42381, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.357671+00', 1107, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42382, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.192603+00', 1378, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42383, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.394065+00', 1191, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42384, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:04.976911+00', 6657, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42385, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.777728+00', 911, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42386, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:04.977602+00', 6728, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42387, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.919957+00', 456, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42388, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.026624+00', 553, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42389, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.927598+00', 744, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42390, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.919957+00', 792, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 27, 3, NULL, 3, NULL), +(42391, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.026624+00', 685, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(42392, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.927598+00', 785, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 3, NULL, 3, NULL), +(42393, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.828849+00', 911, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 3, NULL, 3, NULL), +(42394, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.92064+00', 886, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(42395, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.660902+00', 1180, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42396, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.612807+00', 1235, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42397, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.660902+00', 1195, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42398, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.90752+00', 961, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42399, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.90752+00', 1016, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42400, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.612807+00', 1285, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42401, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.123409+00', 869, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42402, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.926361+00', 1112, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42403, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.123409+00', 922, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42404, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.919872+00', 1146, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42405, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.926361+00', 1162, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42406, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.919872+00', 1242, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42407, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.035961+00', 1319, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42408, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.644811+00', 1710, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42409, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:14.644811+00', 1725, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42410, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.044785+00', 1326, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42411, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.07191+00', 1313, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42412, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.035961+00', 1355, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42413, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.07191+00', 1341, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42414, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.044785+00', 1369, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42415, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.867182+00', 467, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42416, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.677281+00', 1410, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42417, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.854655+00', 1238, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42418, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.677766+00', 1435, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42419, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.59913+00', 1507, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42420, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.702741+00', 1479, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42421, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.599409+00', 5274, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42422, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.807981+00', 5038, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42423, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.7424+00', 5076, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42424, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.7693+00', 5181, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42425, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.707706+00', 5099, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42426, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.820833+00', 5061, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42427, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.71977+00', 5555, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42428, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.679549+00', 7882, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42429, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:38.596019+00', 7970, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42430, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:50:59.661885+00', 1545, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42431, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:50:59.607866+00', 1599, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42432, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:50:59.701262+00', 2792, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42433, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:50:59.822131+00', 2717, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42434, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:50:59.668549+00', 2918, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42435, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:50:59.567992+00', 4979, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42436, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:50:59.592213+00', 5054, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42437, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.035637+00', 602, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42438, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:05.962273+00', 711, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42439, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:05.999768+00', 814, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42440, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.023927+00', 840, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42441, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.108374+00', 744, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42442, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.045367+00', 862, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42443, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.087365+00', 759, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42444, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.304576+00', 550, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42445, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.274084+00', 1310, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42446, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.261112+00', 2076, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42447, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.243507+00', 2104, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42448, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.244809+00', 2115, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42449, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.24281+00', 2150, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42450, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.263249+00', 2149, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42451, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.258922+00', 3126, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42452, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.253007+00', 3160, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42453, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.244995+00', 3275, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42454, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.252919+00', 3262, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42455, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.243536+00', 3305, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42456, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.273521+00', 3309, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42457, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.253207+00', 3326, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42458, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.265743+00', 4185, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42459, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:11.258922+00', 4204, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42460, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.766788+00', 8196, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42461, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.194367+00', 3842, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42462, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.766788+00', 8410, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42463, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.093903+00', 9376, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42464, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.812679+00', 9683, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42465, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.952581+00', 9535, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42466, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.064713+00', 5419, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42467, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.093903+00', 9389, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42468, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.037819+00', 5467, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42469, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.876922+00', 9612, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42470, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.259743+00', 9819, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42471, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.350245+00', 5148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42472, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.952581+00', 9608, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42473, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.876922+00', 9664, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42474, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.812679+00', 9719, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42475, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.331473+00', 6576, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42476, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.381553+00', 6527, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42477, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.381553+00', 6534, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42478, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.776495+00', 12996, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42479, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.666282+00', 8130, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42480, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.776495+00', 13007, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42481, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:05.927968+00', 9081, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42482, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.086704+00', 12925, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42483, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.861085+00', 8134, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42484, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.766801+00', 13244, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42485, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.310179+00', 8884, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42486, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.766801+00', 13286, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42487, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.086704+00', 12976, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42488, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.76676+00', 13524, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42489, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.766795+00', 13578, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42490, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.320072+00', 8877, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42491, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.766795+00', 13477, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42492, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.875226+00', 8459, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42493, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.951488+00', 13292, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42494, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.76676+00', 13710, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42495, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.951488+00', 13384, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42496, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.192582+00', 9341, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42497, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.300914+00', 13372, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42498, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.300914+00', 13398, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42499, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.604106+00', 12246, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42500, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.974703+00', 16934, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42501, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:01.974703+00', 16943, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42502, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:06.532867+00', 12415, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42503, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.06546+00', 16898, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42504, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:02.06546+00', 16894, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42505, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.429156+00', 3204, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42506, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.319823+00', 4161, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42507, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.666919+00', 3898, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42508, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.316903+00', 4261, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42509, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.31689+00', 4298, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42510, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.356689+00', 4338, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42511, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.319809+00', 6702, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42512, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.316897+00', 6700, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42513, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.669118+00', 6343, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42514, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.44856+00', 6682, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42515, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.471312+00', 6664, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42516, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.464997+00', 6720, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42517, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.316847+00', 7022, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42518, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.384766+00', 8880, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42519, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:09.319763+00', 8971, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42520, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.090875+00', 2456, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42521, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.011902+00', 3299, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42522, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.00572+00', 3335, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42523, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.053278+00', 3287, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42524, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.032055+00', 3347, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42525, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:12.98622+00', 3472, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42526, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.01866+00', 4254, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42527, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.053393+00', 4287, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42528, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:12.980867+00', 4381, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42529, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.025347+00', 4356, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42530, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.029986+00', 4358, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42531, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.046383+00', 4353, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42532, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.049211+00', 4356, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42533, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:12.988429+00', 5314, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42534, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:13.080179+00', 5235, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42535, X'8ad6b766635b4d61eec42dd7c41432e5e5917cdc92b310b3b569ccf2def33b2a', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.511711+00', 4174, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42536, X'8ad6b766635b4d61eec42dd7c41432e5e5917cdc92b310b3b569ccf2def33b2a', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.511711+00', 4266, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42537, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.643022+00', 2115, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42538, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.78518+00', 2738, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42539, X'fb809b1c7e161d6712a41494a728a29b7affc9d932515ef74833e95faa6a8a83', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510817+00', 5028, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42540, X'87bbd861e26fac44627af695cd9891e6e402b5d3ebc7e681272b001a489ad6a7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510876+00', 5041, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42541, X'fb809b1c7e161d6712a41494a728a29b7affc9d932515ef74833e95faa6a8a83', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510817+00', 5045, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42542, X'87bbd861e26fac44627af695cd9891e6e402b5d3ebc7e681272b001a489ad6a7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510876+00', 5060, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42543, X'92dff361aa238a72db71f87b88f8f0ded8c3ca89e10bcf8e41783cee38e67c29', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510863+00', 5115, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42544, X'92dff361aa238a72db71f87b88f8f0ded8c3ca89e10bcf8e41783cee38e67c29', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510863+00', 5128, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42545, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.73993+00', 4050, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42546, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.656128+00', 4134, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42547, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.669209+00', 4860, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42548, X'57bac4466e80408bac8a6cb84dce63d47c93b27ce4656826d1c2d83081daf126', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510827+00', 7032, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42549, X'1a9d98e656ed3c51eef5f10a2e0af287422e1e14147d3f20f70b37fae4c3e29d', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510869+00', 7025, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42550, X'c49eb00f7b3e5a6de46ef46d127ec2d0fc04fc1ed4d80bcd7afcd54b1a2a701c', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510851+00', 7031, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42551, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.652787+00', 4878, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42552, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510813+00', 7041, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42553, X'57bac4466e80408bac8a6cb84dce63d47c93b27ce4656826d1c2d83081daf126', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510827+00', 7053, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42554, X'c49eb00f7b3e5a6de46ef46d127ec2d0fc04fc1ed4d80bcd7afcd54b1a2a701c', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510851+00', 7059, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42555, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510813+00', 7026, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42556, X'1a9d98e656ed3c51eef5f10a2e0af287422e1e14147d3f20f70b37fae4c3e29d', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:36.510869+00', 7045, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42557, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.110974+00', 5444, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42558, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:38.613094+00', 4935, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42559, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.316681+00', 394, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42560, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.382162+00', 1511, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42561, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.783481+00', 530, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42562, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.889077+00', 587, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42563, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.344475+00', 2550, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42564, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.339211+00', 2597, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42565, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.342266+00', 2936, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42566, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.336727+00', 3248, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42567, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.316681+00', 3275, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42568, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.978095+00', 1678, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42569, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.756078+00', 2009, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42570, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.393502+00', 3388, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42571, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.766272+00', 2100, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42572, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.846623+00', 3835, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42573, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.97732+00', 3739, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42574, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.622555+00', 2612, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42575, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:12.782021+00', 2731, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42576, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.522744+00', 3993, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42577, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:12.64264+00', 2966, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42578, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.557976+00', 4840, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42579, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.585563+00', 4816, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42580, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:12.557749+00', 4007, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42581, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:12.441093+00', 4123, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42582, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.577357+00', 5030, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42583, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.54225+00', 5188, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42584, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.606325+00', 5149, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42585, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:11.868978+00', 4868, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42586, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:12.734762+00', 4049, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42587, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:12.484086+00', 5312, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42588, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:12.790611+00', 5059, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42589, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.208718+00', 1541, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42590, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.1976+00', 2909, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42591, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.280101+00', 2825, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42592, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.273188+00', 3041, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42593, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.229124+00', 4434, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42594, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.213764+00', 4477, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42595, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.251843+00', 4732, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42596, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.289402+00', 4692, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42597, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.183355+00', 4838, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42598, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.262079+00', 4794, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42599, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.183327+00', 4898, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42600, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.223605+00', 4876, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42601, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.203814+00', 4909, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42602, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.273125+00', 5964, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42603, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:12.29697+00', 5962, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42604, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.821378+00', 1872, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42605, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.818206+00', 3030, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42606, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.953906+00', 935, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42607, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.931629+00', 999, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42608, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.792771+00', 3833, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42609, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.807156+00', 3851, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42610, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.810163+00', 4074, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42611, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.836782+00', 4095, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42612, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.965345+00', 2045, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42613, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.966939+00', 2105, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42614, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.730605+00', 4364, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42615, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.95324+00', 2195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42616, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:33.800141+00', 4341, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42617, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.857176+00', 3832, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42618, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.91272+00', 3771, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42619, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.37444+00', 4395, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42620, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.374493+00', 5850, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42621, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.639477+00', 5599, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42622, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.484831+00', 5996, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42623, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.412889+00', 7461, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42624, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.374512+00', 7578, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42625, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.590891+00', 7580, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42626, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.400618+00', 7798, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42627, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.667041+00', 7503, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42628, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.374506+00', 8012, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42629, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.449042+00', 8007, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42630, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.645555+00', 7900, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42631, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.3745+00', 8237, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42632, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.730912+00', 8935, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42633, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:39.689595+00', 9050, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42634, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.667514+00', 2541, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42635, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.670131+00', 3594, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42636, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:42.89758+00', 2409, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42637, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:42.676669+00', 2872, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42638, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.675343+00', 4244, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42639, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.667267+00', 4335, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42640, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:42.672809+00', 3692, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42641, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.668636+00', 4827, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42642, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.682165+00', 4791, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42643, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:42.862667+00', 3649, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42644, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:42.741772+00', 3772, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42645, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.674128+00', 4857, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42646, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:41.685008+00', 4910, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42647, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:42.839542+00', 4684, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42648, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:42.889004+00', 4648, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42649, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.787405+00', 2024, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42650, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.787676+00', 3148, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42651, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:42.270327+00', 2688, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42652, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:42.325551+00', 2766, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42653, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.787341+00', 3740, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42654, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.793692+00', 3734, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42655, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:42.333891+00', 3758, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42656, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.809564+00', 4308, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42657, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.79218+00', 4298, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42658, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:42.341102+00', 3747, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42659, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.80888+00', 4329, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42660, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:41.809888+00', 4285, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42661, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:42.322139+00', 3933, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42662, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:42.398157+00', 4668, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42663, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:42.292534+00', 4843, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42664, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.640074+00', 2008, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42665, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.642112+00', 2556, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42666, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:42.669467+00', 1588, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42667, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:42.662124+00', 1651, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42668, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.640087+00', 3222, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42669, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.773296+00', 3108, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42670, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.653174+00', 3401, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42671, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.656217+00', 3417, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42672, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:42.662424+00', 2575, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42673, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:42.355238+00', 2887, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42674, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.640042+00', 3584, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42675, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:41.640039+00', 3663, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42676, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:42.677704+00', 2627, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42677, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:42.658241+00', 3522, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42678, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:42.252295+00', 3951, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42679, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.605338+00', 892, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42680, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.584468+00', 2209, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42681, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.584402+00', 2493, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42682, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.586774+00', 2489, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42683, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.588838+00', 2702, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42684, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.584515+00', 2754, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42685, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.605608+00', 2759, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42686, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:23.584453+00', 2807, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42687, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.388012+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42688, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.365261+00', 383, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42689, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.27307+00', 553, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42690, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.315822+00', 535, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42691, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.293551+00', 592, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42692, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.36696+00', 1367, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42693, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.289428+00', 1523, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42694, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.402924+00', 1546, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42695, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.399283+00', 2570, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42696, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.399168+00', 3120, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42697, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.404285+00', 3247, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42698, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.399253+00', 3325, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42699, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.399222+00', 3326, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42700, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.439843+00', 3284, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42701, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:22.43749+00', 3307, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42702, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.890581+00', 350, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42703, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.080108+00', 463, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42704, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.060154+00', 529, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42705, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.064951+00', 544, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42706, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.072833+00', 700, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42707, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.878896+00', 1780, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42708, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.058855+00', 1619, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42709, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.260582+00', 2083, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42710, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.267769+00', 2125, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42711, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.267769+00', 2047, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42712, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.290567+00', 3213, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42713, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.37048+00', 3135, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42714, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.290567+00', 3246, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42715, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.302837+00', 3202, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42716, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.370281+00', 3218, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42717, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.614843+00', 3855, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42718, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.357865+00', 3408, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42719, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.37048+00', 3257, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42720, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.370281+00', 3099, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42721, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.305326+00', 3409, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42722, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.376847+00', 3386, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42723, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.614843+00', 4060, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42724, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.292767+00', 3659, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42725, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.294271+00', 3658, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42726, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.294271+00', 3668, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42727, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.616527+00', 5437, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42728, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.616527+00', 5427, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42729, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.349702+00', 4694, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42730, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.213687+00', 4906, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42731, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.349702+00', 4715, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42732, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.213687+00', 4924, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42733, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.304497+00', 4875, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42734, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.304497+00', 4849, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42735, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.629295+00', 5578, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42736, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.155668+00', 5047, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42737, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.173331+00', 5139, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42738, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.245824+00', 5092, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42739, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.245824+00', 5101, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42740, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.213687+00', 5152, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42741, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.326339+00', 4882, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42742, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.266476+00', 5076, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42743, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.213687+00', 5126, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42744, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.266476+00', 5065, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42745, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.614738+00', 5772, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42746, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.343509+00', 5010, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42747, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.33377+00', 5047, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42748, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.310766+00', 7770, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42749, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.310766+00', 7795, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42750, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.32391+00', 7781, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42751, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.614768+00', 8517, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42752, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:46.32391+00', 7756, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:45.614767+00', 8661, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42754, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:06.68464+00', 2654, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42755, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:06.69666+00', 2642, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42756, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:06.69036+00', 3080, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42757, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:06.759043+00', 3618, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42758, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:06.676436+00', 3681, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42759, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:06.685138+00', 4454, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42760, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:06.676373+00', 4483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42761, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:16.60887+00', 832, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42762, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:16.675081+00', 797, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42763, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:16.645853+00', 895, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42764, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:16.986278+00', 621, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42765, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:16.966002+00', 644, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42766, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:16.657571+00', 990, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42767, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.065689+00', 583, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42768, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:16.654903+00', 999, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42769, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.272224+00', 1989, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42770, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.756694+00', 4657, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42771, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.756694+00', 4470, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42772, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.543717+00', 5668, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42773, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.753019+00', 6401, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42774, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.688718+00', 6389, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42775, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.173492+00', 4037, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42776, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.154777+00', 6109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42777, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.685327+00', 6458, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42778, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.285016+00', 5839, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42779, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.753019+00', 6465, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42780, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.685327+00', 6599, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42781, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.285016+00', 6022, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42782, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.688718+00', 6590, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42783, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.123081+00', 4277, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42784, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.924644+00', 7119, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42785, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.17272+00', 4871, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42786, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.924644+00', 7135, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42787, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.67566+00', 8776, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42788, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.083457+00', 6400, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42789, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.28834+00', 8221, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42790, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.28834+00', 8225, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42791, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.058967+00', 6509, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42792, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.747124+00', 8852, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42793, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.747124+00', 8892, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42794, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.672811+00', 8982, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42795, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.672811+00', 9011, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42796, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.161102+00', 8542, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42797, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.161102+00', 8547, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42798, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.752444+00', 8998, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42799, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.633144+00', 8442, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42800, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:24.752444+00', 9009, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42801, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.218575+00', 6536, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42802, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.088452+00', 9033, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42803, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.633144+00', 8458, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42804, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.159246+00', 9011, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42805, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.340004+00', 6847, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42806, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.159246+00', 9078, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42807, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.237255+00', 7049, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42808, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.10153+00', 11237, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42809, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:27.426529+00', 8923, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42810, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.10153+00', 11250, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42811, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.661362+00', 10702, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42812, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.145015+00', 11329, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42813, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:25.145015+00', 11358, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42814, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:59.649952+00', 3242, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42815, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:53.585377+00', 9312, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42816, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:53.585363+00', 9308, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42817, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:53.616343+00', 9276, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42818, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:53.647502+00', 9245, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42819, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:53.878157+00', 9013, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42820, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:00.127258+00', 3706, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42821, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:59.845059+00', 3824, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42822, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:59.954059+00', 3498, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42823, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:59.878526+00', 4072, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42824, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:59.599094+00', 4284, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42825, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:59.877487+00', 3763, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42826, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:59.885788+00', 4218, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42827, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:53.588228+00', 11991, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42828, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:26:53.585357+00', 12037, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42829, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:50.198633+00', 3935, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42830, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:50.333252+00', 3800, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42831, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:50.198636+00', 4628, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42832, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:50.213943+00', 4628, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42833, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:50.19866+00', 4631, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42834, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:53.77655+00', 1391, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42835, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:53.880989+00', 1336, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42836, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:53.844675+00', 1411, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42837, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:53.76568+00', 1434, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42838, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:54.049473+00', 1111, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42839, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:53.953105+00', 1325, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42840, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:53.955284+00', 1345, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42841, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:53.94324+00', 1395, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42842, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:50.209632+00', 6042, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42843, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:50.198655+00', 6043, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42844, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.109479+00', 3631, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42845, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.152878+00', 5208, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42846, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.13149+00', 5229, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42847, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.109029+00', 5277, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42848, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.110874+00', 5377, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42849, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.152878+00', 5381, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42850, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.110874+00', 5424, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42851, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.127067+00', 6043, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42852, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.26471+00', 6218, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42853, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.26471+00', 6250, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42854, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.146223+00', 6375, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42855, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.146223+00', 6394, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42856, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.237962+00', 6369, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42857, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.264702+00', 6353, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42858, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.202771+00', 7327, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42859, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.11588+00', 7419, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42860, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.149146+00', 7436, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42861, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.162849+00', 7476, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42862, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.149146+00', 7486, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42863, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.229298+00', 7595, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42864, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.166241+00', 7699, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42865, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.166241+00', 7670, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42866, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.157185+00', 7723, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 19, 3, NULL, 3, NULL), +(42867, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.1177+00', 8461, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42868, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.229298+00', 7614, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42869, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.160099+00', 7827, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42870, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.142542+00', 7861, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42871, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.163925+00', 8418, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42872, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.163925+00', 8485, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42873, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.109386+00', 8464, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42874, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.136387+00', 8539, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42875, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.1177+00', 8507, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42876, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.121099+00', 10909, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42877, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.109463+00', 10972, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42878, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.227833+00', 10900, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42879, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.109463+00', 11015, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42880, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.134171+00', 11156, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42881, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:18.134171+00', 11158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42882, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:05.324125+00', 11844, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42883, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:05.32412+00', 11845, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42884, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:05.400597+00', 12994, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42885, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:05.343167+00', 13049, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42886, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:06.087857+00', 12641, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42887, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:05.378546+00', 15840, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42888, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:05.373685+00', 15682, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42889, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:20.332775+00', 1159, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42890, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:20.25788+00', 1265, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42891, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.041302+00', 986, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42892, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.352066+00', 762, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42893, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.220558+00', 935, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42894, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.018849+00', 1223, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42895, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.236052+00', 1093, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42896, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:20.32082+00', 2007, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42897, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.063949+00', 2370, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42898, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.190893+00', 2209, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42899, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.190893+00', 2297, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42900, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.155427+00', 4515, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42901, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.964742+00', 4737, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42902, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.164785+00', 4529, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42903, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.155427+00', 4541, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42904, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.102956+00', 4629, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42905, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.964742+00', 4767, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42906, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.967785+00', 4894, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42907, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.969794+00', 4894, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42908, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.967785+00', 4915, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42909, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.190861+00', 7211, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42910, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.169579+00', 7273, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42911, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.190861+00', 7229, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42912, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.048858+00', 7620, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42913, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.132771+00', 7585, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42914, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.048858+00', 7674, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42915, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.176509+00', 8081, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42916, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.964781+00', 8293, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42917, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.130273+00', 8127, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42918, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.049842+00', 8217, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42919, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.967821+00', 8300, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42920, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.130273+00', 8176, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42921, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.114844+00', 8276, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42922, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.114844+00', 8241, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42923, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.176509+00', 8230, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42924, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.151078+00', 8345, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42925, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.09812+00', 8388, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42926, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.967839+00', 8879, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42927, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.967939+00', 8875, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42928, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.093042+00', 8776, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42929, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.158408+00', 8740, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42930, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.967839+00', 8893, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42931, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.148836+00', 8750, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42932, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.189951+00', 8686, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42933, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.189951+00', 8668, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42934, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.158408+00', 8747, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42935, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.148836+00', 8757, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42936, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.112549+00', 12502, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42937, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.965763+00', 12648, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42938, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.112549+00', 12520, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42939, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.964798+00', 12661, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42940, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:12.965763+00', 12664, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42941, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:13.0351+00', 12615, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42942, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.016904+00', 8711, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42943, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.729213+00', 9040, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42944, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.016904+00', 8800, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42945, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.760575+00', 10700, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42946, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.475284+00', 10981, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42947, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.46984+00', 10974, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42948, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.041475+00', 10418, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42949, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.46984+00', 11003, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(42950, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.510324+00', 11001, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42951, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.760575+00', 10725, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42952, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.475284+00', 10964, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42953, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.469761+00', 11153, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42954, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.707735+00', 10831, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(42955, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.469761+00', 11204, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(42956, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.893781+00', 10788, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42957, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.738147+00', 11207, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42958, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.178229+00', 10767, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42959, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.738147+00', 11218, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(42960, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.289417+00', 15185, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42961, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.289417+00', 15198, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(42962, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.629021+00', 15927, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(42963, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.111962+00', 15623, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42964, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.039457+00', 15698, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42965, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.569764+00', 16261, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42966, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.737856+00', 16275, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(42967, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.737856+00', 16226, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(42968, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.551917+00', 16410, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(42969, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.551917+00', 16416, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(42970, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.033823+00', 16042, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42971, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.033823+00', 16190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(42972, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.021696+00', 16321, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(42973, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.04766+00', 16312, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42974, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.680725+00', 16743, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(42975, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.077934+00', 16326, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(42976, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.077934+00', 16359, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(42977, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.680725+00', 16841, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(42978, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.469818+00', 17166, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(42979, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.487923+00', 17394, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42980, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.487923+00', 17415, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(42981, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.851143+00', 19747, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42982, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.851143+00', 19777, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(42983, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.609068+00', 20218, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(42984, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.609068+00', 20212, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42985, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:58.506168+00', 19399, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(42986, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:47:57.469824+00', 20450, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(42987, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.66541+00', 2613, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42988, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.607755+00', 2801, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(42989, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.607755+00', 2569, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(42990, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.606857+00', 4033, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42991, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.445136+00', 4186, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(42992, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.752929+00', 3924, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(42993, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.606857+00', 4072, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(42994, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.688447+00', 4180, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(42995, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.471148+00', 4476, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42996, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.471148+00', 4514, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(42997, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.607872+00', 4450, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(42998, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.747305+00', 4348, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(42999, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.747305+00', 4404, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(43000, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.664902+00', 4487, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43001, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.650936+00', 4963, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43002, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.642235+00', 4970, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43003, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.681252+00', 5192, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43004, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.681252+00', 5212, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(43005, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.445209+00', 5523, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43006, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.445209+00', 5550, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(43007, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.675196+00', 5367, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43008, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.652211+00', 5386, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43009, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.745774+00', 5469, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43010, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.695471+00', 5521, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43011, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.745774+00', 5529, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(43012, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.695471+00', 5582, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(43013, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.623585+00', 5672, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43014, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.771829+00', 5525, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43015, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.843305+00', 5503, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(43016, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.843305+00', 5493, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43017, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.650769+00', 5759, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43018, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.701928+00', 6725, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43019, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:41.675035+00', 6793, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43020, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:39.598389+00', 1483, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43021, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:39.381563+00', 1700, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43022, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:39.619621+00', 1868, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43023, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:39.383858+00', 2108, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43024, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:39.388685+00', 2131, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43025, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:39.381417+00', 3899, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43026, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:39.523152+00', 3788, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43027, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:22.385088+00', 592, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43028, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:21.747143+00', 1548, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43029, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:21.892242+00', 2606, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43030, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:22.384245+00', 2116, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43031, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:21.910441+00', 2769, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43032, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:21.901083+00', 2797, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43033, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:22.397362+00', 2339, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43034, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:21.935679+00', 2857, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43035, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.821505+00', 3489, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43036, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.821505+00', 3749, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43037, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.747143+00', 3732, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43038, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.403029+00', 4763, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43039, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.401252+00', 4765, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43040, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.401252+00', 4811, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(43041, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.403015+00', 4735, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43042, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.42751+00', 4948, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43043, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.747258+00', 5420, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43044, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.764899+00', 5568, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43045, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.403008+00', 4971, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43046, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.764899+00', 5632, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(43047, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.403015+00', 4839, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(43048, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.747258+00', 5537, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(43049, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.724678+00', 5708, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43050, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.797273+00', 5798, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43051, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.401139+00', 5200, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(43052, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.401139+00', 5194, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43053, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.400289+00', 7761, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43054, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.835946+00', 8324, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43055, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.423833+00', 7734, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43056, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.803456+00', 8357, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43057, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.426626+00', 7741, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43058, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.816648+00', 8343, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43059, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.74848+00', 8417, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43060, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.402239+00', 7773, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43061, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.803456+00', 8387, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(43062, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.786456+00', 8461, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43063, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.401976+00', 7831, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43064, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.426626+00', 7805, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(43065, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.423928+00', 7833, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43066, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.74848+00', 8507, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(43067, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.400289+00', 7845, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(43068, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.835946+00', 8457, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(43069, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.826678+00', 8967, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43070, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.423833+00', 8200, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(43071, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.430238+00', 8333, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43072, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.816902+00', 9014, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43073, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.816902+00', 9026, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(43074, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.728678+00', 11778, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43075, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.728678+00', 11784, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(43076, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.76453+00', 11873, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43077, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.76453+00', 11878, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(43078, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:08.793518+00', 11941, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43079, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:09.424649+00', 11382, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43080, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:06.742542+00', 2679, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43081, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:06.741617+00', 2680, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43082, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:06.740989+00', 2930, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43083, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:06.728819+00', 2945, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43084, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:06.757953+00', 3157, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43085, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:06.749376+00', 4567, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43086, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:06.728821+00', 4603, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43087, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:26.877529+00', 294, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43088, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:26.892154+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43089, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:26.892351+00', 395, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43090, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:26.48404+00', 821, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43091, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:26.484473+00', 884, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43092, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:26.87021+00', 520, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43093, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.032924+00', 447, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43094, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:26.905778+00', 672, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43095, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:35.147498+00', 3274, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43096, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:35.16104+00', 3260, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43097, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:35.154233+00', 3448, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43098, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:35.158474+00', 3445, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43099, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:35.14772+00', 3566, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43100, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:35.148942+00', 4420, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43101, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:35.147311+00', 4498, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43102, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.321092+00', 725, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43103, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.243529+00', 1197, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43104, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.270337+00', 1183, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43105, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.445456+00', 1011, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43106, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.256368+00', 2447, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43107, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.252282+00', 2480, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43108, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.242046+00', 2509, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43109, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:01.341715+00', 2415, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43110, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.001122+00', 2308, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(43111, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.001122+00', 2210, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43112, X'b63ecc8ad0d4396fc92901d779e8695d22018bb6aa892e27f41c391a5e5a7595', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.041598+00', 2204, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43113, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.127365+00', 3026, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43114, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.100454+00', 3074, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43115, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.127365+00', 3068, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(43116, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.048905+00', 3236, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43117, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.05276+00', 3233, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43118, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.082607+00', 3094, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(43119, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.100454+00', 3196, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(43120, X'864ea4c080d823638ca90062e906ac5d96e51646d6cf3391732f902d55c5cae9', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.986335+00', 3174, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43121, X'c6b1bbe88e59a81983717864ea3427bbc4e65a529c277b44f1ec2fcca3ba8fda', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.082607+00', 3078, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43122, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.008522+00', 3357, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43123, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.008522+00', 3441, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(43124, X'2111e47da56d4e6810b66086d6deb5f5e64d853f40536118442834c09b2fa71f', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.108135+00', 3198, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43125, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.003886+00', 3590, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43126, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.723913+00', 3891, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(43127, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.723913+00', 3870, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43128, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.129715+00', 5652, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43129, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.117227+00', 5664, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43130, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.986596+00', 5835, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(43131, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.986596+00', 5795, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43132, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.020664+00', 5904, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43133, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.020664+00', 5921, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(43134, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.120751+00', 5938, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43135, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.116198+00', 5936, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43136, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.062438+00', 5976, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43137, X'eedc3c50c22db3efc62671770196fe07e05db4cb071ac30fa4323ef9f7958fa4', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.062438+00', 6038, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(43138, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.102646+00', 6021, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43139, X'291858c2c9f3dc895094f0cdeb0a011d388c3ca45f172881bf093248d6d12232', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.102646+00', 6032, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(43140, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.133546+00', 6030, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43141, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.988854+00', 6237, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43142, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.03511+00', 6191, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43143, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.988854+00', 6243, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(43144, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.133546+00', 6106, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(43145, X'4add44cfe85666aa0168e29575256c68a7d013a1098f7b41d4c9aefdde2af639', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.003368+00', 6239, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43146, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:15.723909+00', 6666, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43147, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.038518+00', 6435, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43148, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.038518+00', 6446, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(43149, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.068326+00', 9684, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43150, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.053365+00', 9679, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43151, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.068326+00', 9762, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(43152, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.025197+00', 9839, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43153, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.059911+00', 9791, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43154, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:16.053365+00', 9769, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(43155, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:49.595719+00', 3917, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43156, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:49.592292+00', 3920, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43157, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:49.602748+00', 4535, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43158, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:49.607296+00', 4551, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43159, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:49.597629+00', 4792, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43160, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:49.600769+00', 6417, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43161, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:49.592305+00', 6505, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43162, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:22.012939+00', 2969, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43163, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:22.012939+00', 3229, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(43164, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:22.140101+00', 3078, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43165, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.8929+00', 4855, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43166, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.925957+00', 5002, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43167, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.85316+00', 4905, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43168, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.573369+00', 7312, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(43169, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.85316+00', 4956, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43170, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.573369+00', 7237, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43171, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.8451+00', 5210, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(43172, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.789898+00', 5179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43173, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.89356+00', 5193, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(43174, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.8451+00', 5132, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43175, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.780922+00', 7297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43176, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.89356+00', 5085, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43177, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.732864+00', 8004, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43178, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.732864+00', 8044, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(43179, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.7536+00', 7992, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43180, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.885425+00', 11975, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43181, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.885425+00', 11989, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(43182, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.569709+00', 12325, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43183, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:22.025065+00', 10108, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43184, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.786459+00', 10561, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43185, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.786459+00', 10613, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(43186, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.774799+00', 12630, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43187, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.774799+00', 12672, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(43188, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.965375+00', 10526, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43189, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.716648+00', 12827, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43190, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.965375+00', 10572, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(43191, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.905635+00', 10589, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43192, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.816888+00', 10737, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43193, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:22.094014+00', 10487, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43194, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:22.013017+00', 10526, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43195, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.811345+00', 12771, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43196, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.816888+00', 10789, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(43197, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.568258+00', 11123, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43198, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:21.568258+00', 11158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(43199, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.847891+00', 13070, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43200, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.847891+00', 13328, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(43201, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.572622+00', 17160, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43202, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.766694+00', 17060, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43203, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.881215+00', 16968, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(43204, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.881215+00', 16916, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43205, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.573036+00', 17553, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43206, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:19.573036+00', 17567, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(43207, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.321518+00', 4122, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43208, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.316884+00', 5123, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43209, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.537008+00', 4962, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43210, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.289334+00', 5317, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43211, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.508541+00', 5144, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43212, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.267764+00', 5588, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43213, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.404979+00', 5749, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43214, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.373663+00', 5943, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43215, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.520489+00', 5793, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43216, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.348839+00', 6022, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43217, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.370702+00', 6007, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43218, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.528475+00', 5872, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43219, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.261062+00', 6180, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43220, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.352516+00', 7560, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43221, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:16.42402+00', 7518, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43222, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.656346+00', 4881, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43223, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.546888+00', 4991, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43224, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.479098+00', 5063, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43225, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.713703+00', 4824, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43226, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.655988+00', 4882, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43227, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.682852+00', 4855, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43228, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.690826+00', 4851, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43229, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.695905+00', 4845, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43230, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.706004+00', 4909, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43231, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.479061+00', 5065, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43232, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.937282+00', 4693, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43233, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.666425+00', 4970, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43234, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.479049+00', 5199, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43235, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.535489+00', 5846, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43236, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:12.479026+00', 6036, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43237, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.526436+00', 3004, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43238, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:10.747986+00', 4832, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43239, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.464022+00', 4132, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43240, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.482493+00', 4131, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43241, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:13.850169+00', 1784, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43242, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.454017+00', 4212, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43243, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:13.775307+00', 2034, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43244, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:10.748007+00', 5062, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43245, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:13.769452+00', 6778, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43246, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.516663+00', 9035, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43247, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:13.753104+00', 6799, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43248, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:13.791323+00', 6759, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43249, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:10.748001+00', 9798, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43250, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.480525+00', 9170, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43251, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:10.760716+00', 9792, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43252, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:10.747966+00', 9806, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43253, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.464952+00', 9101, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43254, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:11.434331+00', 9216, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43255, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:10.750916+00', 10510, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43256, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:13.739285+00', 7539, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43257, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:13.854039+00', 7503, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43258, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:10.754409+00', 10625, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43259, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.388436+00', 2202, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43260, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.388251+00', 2930, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43261, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.018878+00', 3339, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43262, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.440296+00', 2912, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43263, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.392038+00', 2961, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43264, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.005277+00', 3483, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43265, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.42487+00', 4940, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43266, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.388973+00', 4981, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43267, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.388403+00', 5095, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43268, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.405036+00', 5093, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43269, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.40333+00', 5113, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43270, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.44884+00', 5089, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43271, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.004049+00', 5608, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43272, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.008537+00', 6912, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43273, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:13.390655+00', 6584, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43274, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:22.395089+00', 3599, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43275, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:22.394786+00', 3600, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43276, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:22.428116+00', 5375, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43277, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:22.496003+00', 5309, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43278, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:22.394709+00', 5411, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43279, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.270711+00', 729, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43280, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.217012+00', 929, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43281, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.260764+00', 1034, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43282, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.790365+00', 677, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43283, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.895751+00', 701, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43284, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.758966+00', 919, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43285, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.806276+00', 891, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43286, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.878346+00', 817, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43287, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:22.394707+00', 6901, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43288, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:22.394753+00', 6935, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43289, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.743893+00', 865, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43290, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.606794+00', 2354, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43291, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.532477+00', 2437, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43292, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.570776+00', 2399, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43293, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.60194+00', 2376, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43294, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.51187+00', 2521, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43295, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.533175+00', 4115, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43296, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.480529+00', 4210, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43297, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.583966+00', 4197, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43298, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.519401+00', 4279, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43299, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.607105+00', 4287, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43300, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.511374+00', 4399, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43301, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.653556+00', 4235, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43302, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.58067+00', 5517, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43303, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:11.519217+00', 5610, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43304, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:48.488715+00', 2025, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43305, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:48.490408+00', 2023, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43306, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:48.488715+00', 2578, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43307, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:48.488666+00', 2611, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43308, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:48.49042+00', 2668, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43309, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:48.488714+00', 4378, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43310, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:48.488955+00', 4387, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43311, X'9cd010d7cb6c316525e4c53329699bb2497eae81592c50ca063396df76a0fccf', TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:53.421046+00', 207, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43312, X'ea70a6a69e823455b8ee0082d6e5fec61e343db37f2eed81e3325e9bfffb5255', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:03.888266+00', 713, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43313, X'ade08a49effcc429b19b5016f3cb7238cce770b35bb1d9844580a3694a26375b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:22.924659+00', 418, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43314, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:22.924586+00', 570, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43315, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:22.900813+00', 744, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43316, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:22.976219+00', 701, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43317, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:23.043212+00', 722, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43318, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:22.945013+00', 1132, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43319, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:22.9741+00', 1113, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43320, X'9cd010d7cb6c316525e4c53329699bb2497eae81592c50ca063396df76a0fccf', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:29.252386+00', 136, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43321, X'ea70a6a69e823455b8ee0082d6e5fec61e343db37f2eed81e3325e9bfffb5255', TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:48.042693+00', 492, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43322, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:01.757634+00', 486, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43323, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:01.780391+00', 654, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43324, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:01.798133+00', 795, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43325, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:01.855532+00', 921, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43326, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:01.821365+00', 987, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43327, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:01.809571+00', 1213, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43328, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:01.853081+00', 1355, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43329, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:15.146495+00', 594, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43330, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.024735+00', 453, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43331, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:17.988988+00', 843, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43332, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.053692+00', 825, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43333, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.046645+00', 871, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43334, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.024826+00', 1284, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43335, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:17.988331+00', 1389, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43336, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:17.990447+00', 1439, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43337, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:25.534825+00', 690, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43338, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:34.864834+00', 1166, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43339, X'8c8171596edcc6c910cb0b06c21859ad1550a3d2421a26246f366961296a21a0', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:33.916231+00', 2200, 365, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(43340, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:35.388861+00', 1623, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43341, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:35.749527+00', 1559, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43342, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:35.770092+00', 1586, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43343, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:35.715934+00', 1631, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43344, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:35.139111+00', 3084, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43345, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:35.802567+00', 2487, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43346, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:37.063639+00', 2917, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43347, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:37.50073+00', 2861, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43348, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:37.502402+00', 2849, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43349, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:37.569256+00', 2884, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43350, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:37.569602+00', 2918, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43351, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:37.063647+00', 4423, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43352, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:37.535954+00', 3973, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43353, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:07.641906+00', 1083, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43354, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:07.649106+00', 825, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43355, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:07.631345+00', 1657, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43356, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:07.711202+00', 1673, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43357, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:08.874664+00', 588, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43358, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:08.877245+00', 676, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43359, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:08.792669+00', 1071, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43360, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:27.367107+00', 579, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43361, X'cc63790079de853a1b402097d320517f293418a4cca207e175a61ad04e5dc3a1', TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:39.62013+00', 5036, 53, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43362, X'015cd3d01d8a31e4620f7e001da65a6dd6f2226bfc040350020a4076a9dafac5', TIMESTAMP WITH TIME ZONE '2023-01-24 10:12:01.103056+00', 7378, 10000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43363, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-24 10:12:15.01869+00', 718, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43364, X'8c8171596edcc6c910cb0b06c21859ad1550a3d2421a26246f366961296a21a0', TIMESTAMP WITH TIME ZONE '2023-01-24 10:12:50.38932+00', 578, 365, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(43365, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.183852+00', 221, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43366, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.184519+00', 1369, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43367, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.170729+00', 1410, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43368, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.266434+00', 1505, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43369, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.196604+00', 1688, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43370, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.293523+00', 2620, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43371, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.253626+00', 2688, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43372, X'8c8171596edcc6c910cb0b06c21859ad1550a3d2421a26246f366961296a21a0', TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:48.893953+00', 399, 365, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(43373, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:00.062827+00', 1866, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43374, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:00.025116+00', 3114, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43375, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:00.072542+00', 3065, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43376, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:00.059833+00', 3261, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43377, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:15:59.99906+00', 3416, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43378, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:00.051891+00', 4392, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43379, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:00.053294+00', 4480, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43380, X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:07.968843+00', 321, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43381, X'7454ac8a9c902697eeb9e57eea84bdf0ed40e8e809d02433ba0d9c47be3a3c3e', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:07.919347+00', 396, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43382, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:07.976943+00', 339, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43383, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:07.914247+00', 437, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43384, X'674350c63171f782f84b143b1926411cfd121b491352ba0e4c78bc57e1e4c84a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:07.94357+00', 439, 7, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43385, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:07.935814+00', 845, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43386, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:07.983575+00', 858, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43387, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.44469+00', 751, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43388, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.415719+00', 1322, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43389, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.402437+00', 1439, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43390, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.468477+00', 1557, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43391, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.467267+00', 1577, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43392, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.448189+00', 2639, 0, TRUE, 'dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(43393, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.427232+00', 2730, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43394, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:26.427232+00', 2738, 0, TRUE, 'dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(43395, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.881231+00', 581, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43396, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.851669+00', 1007, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43397, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.93216+00', 954, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43398, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.896696+00', 990, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43399, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.946489+00', 1182, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43400, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.874108+00', 1546, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43401, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.879343+00', 1810, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43402, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.106058+00', 3924, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43403, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.41702+00', 3383, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43404, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.41702+00', 3682, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(43405, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.15876+00', 8603, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43406, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.447466+00', 8080, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43407, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.447466+00', 8314, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(43408, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.168572+00', 8596, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43409, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.376277+00', 8263, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43410, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.155625+00', 8628, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43411, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.15876+00', 8665, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(43412, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.159822+00', 8759, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43413, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.175775+00', 8686, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43414, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.155625+00', 8733, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(43415, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.138865+00', 8738, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43416, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.138865+00', 8849, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(43417, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.134817+00', 15805, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43418, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.059356+00', 15545, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43419, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.379793+00', 15225, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43420, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.093616+00', 15936, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43421, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.093616+00', 15973, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(43422, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.134817+00', 15850, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(43423, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.059356+00', 15635, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(43424, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.058557+00', 16013, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43425, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.379604+00', 15691, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43426, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.379793+00', 15314, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(43427, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.044529+00', 16164, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(43428, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.044529+00', 16056, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43429, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.022249+00', 16388, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(43430, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.022249+00', 16280, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43431, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.01975+00', 16076, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43432, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.01975+00', 16293, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(43433, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.416517+00', 16181, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43434, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.386315+00', 16208, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43435, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.670658+00', 15925, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43436, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.4524+00', 16143, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43437, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:22.700737+00', 15334, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43438, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:22.700737+00', 15384, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(43439, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.646373+00', 16467, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43440, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.375858+00', 18561, 0, FALSE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 14, 2, NULL, 3, NULL), +(43441, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.375885+00', 20531, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43442, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.375885+00', 20542, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(43443, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.017919+00', 21157, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43444, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.402755+00', 20850, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43445, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.017919+00', 21237, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(43446, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.03826+00', 21279, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43447, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.03826+00', 21300, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(43448, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:21.402755+00', 20950, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(43449, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.960855+00', 1214, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43450, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.960855+00', 1266, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(43451, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:06.138011+00', 1761, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43452, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.794916+00', 4058, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43453, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.842758+00', 4011, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43454, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.166494+00', 4732, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(43455, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.842758+00', 4127, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(43456, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.794916+00', 4193, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(43457, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.166494+00', 4684, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43458, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.978076+00', 3876, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43459, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:06.014669+00', 3839, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43460, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.839658+00', 4137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43461, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.978076+00', 4015, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(43462, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:06.015636+00', 4299, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43463, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.931141+00', 4297, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43464, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.08185+00', 8068, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43465, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.871547+00', 7279, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43466, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.928247+00', 7236, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43467, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.871547+00', 7391, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(43468, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.928247+00', 7315, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(43469, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.962251+00', 7260, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43470, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.08185+00', 8160, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(43471, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.841954+00', 7502, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43472, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:06.089522+00', 7320, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43473, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.900606+00', 7568, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43474, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:06.022124+00', 7476, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43475, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.897923+00', 7654, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43476, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.364808+00', 8215, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43477, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.364808+00', 8230, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(43478, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.897923+00', 7732, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(43479, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.903773+00', 7742, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43480, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.912776+00', 7768, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43481, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.903773+00', 7787, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(43482, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.962128+00', 7759, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43483, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.912776+00', 7814, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(43484, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.063859+00', 8771, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43485, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.063859+00', 8792, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(43486, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.92829+00', 8069, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43487, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.858762+00', 11843, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43488, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.610213+00', 12191, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43489, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.610213+00', 12245, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(43490, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.898605+00', 11953, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43491, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.793944+00', 12067, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43492, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.793944+00', 12082, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(43493, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:05.840708+00', 12082, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43494, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.338212+00', 1634, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43495, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.348044+00', 2012, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43496, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.334749+00', 2030, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43497, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.334751+00', 2101, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43498, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.338061+00', 2537, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43499, X'd7111a7dcb876c4472361c5732f03acc776903595e8863a8e1765992b49fb31f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.24942+00', 384, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43500, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.334792+00', 3390, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43501, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.334792+00', 3400, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(43502, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.337792+00', 3458, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43503, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:44.337792+00', 3461, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(43504, X'bfbfd4d62fbfbe3a69f2eb4f1e34f81bbbd9c30e0158f00cb907ada6ecfc1f9b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.289262+00', 521, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43505, X'8b55dd6dc0fc33658ea2cae1ab333878164ae5679ebc845e1fd3692772c21a6a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.247473+00', 617, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43506, X'6163f77be825f0aca809960253306e6552201de332e4cc030657901a692f60d4', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.288529+00', 628, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43507, X'4d6a4fa43a1018192b2bb84e91b1897c2d2589955eb3b82c643b9a45db604f7d', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.269415+00', 650, 89, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43508, X'77eb49a4990cb1a278ca008feffc2081a4773c7970a7a23bdaffa41c5dd15309', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.2526+00', 1146, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43509, X'f142d0d3875976f13d7a435793e9daea752ef1d16438b9e7eba97c22da29936c', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.24171+00', 1151, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43510, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:57.950132+00', 143, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43511, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:57.957289+00', 271, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43512, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:57.948989+00', 338, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43513, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.017448+00', 401, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43514, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.023703+00', 600, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43515, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.002735+00', 774, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43516, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.020941+00', 848, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43517, X'69622b8e334af358a735daa267c4d0268b39006e30dcbc8da3d2a11ac07cc1a7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:02.808599+00', 313, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43518, X'ef4ecafc3859302a819622a481fefc29b93606c82ebeecbc18d56e9c599f4dc0', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:02.777971+00', 360, 28, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43519, X'04a4d235fefb78b41b64255042442d555311f2a5e8dd7b2e72b603b98922c7cf', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:02.819333+00', 370, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43520, X'c47d48214e050edc4d15964706ea29fb167e33225cd47104d1faa82e420faa5b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:02.760853+00', 512, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43521, X'a62df3018bb984b291beb070846386368d90c49a712821e12dedfe6a363c5300', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:02.797862+00', 548, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43522, X'7a3143bc387da3a62140eb548d72ca4923d483d485c20a58964696bfc00eadc8', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:02.827251+00', 846, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43523, X'27e58af60a95a5b823841b07eeb8665e93951a43721834ba60f8b256d8d4a919', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:02.776797+00', 901, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43524, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.043603+00', 266, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43525, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.100724+00', 511, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43526, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.126062+00', 499, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43527, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.135033+00', 529, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43528, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.134064+00', 693, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43529, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.10347+00', 941, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43530, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.14066+00', 936, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43531, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.163182+00', 402, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43532, X'674350c63171f782f84b143b1926411cfd121b491352ba0e4c78bc57e1e4c84a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.162802+00', 641, 7, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43533, X'7454ac8a9c902697eeb9e57eea84bdf0ed40e8e809d02433ba0d9c47be3a3c3e', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.220472+00', 584, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43534, X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.232022+00', 675, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43535, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.242725+00', 813, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43536, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.226465+00', 848, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43537, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.222772+00', 1061, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43538, X'ff9059537eb2d0174e3769251d93da0da8324519e2aa2c8876daac9a14c8838f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.238736+00', 199, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43539, X'20bb3d88c500d71321ce5c6140587e6c5df86fcafd338e5baca3d03e26663a5b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.275682+00', 330, 107, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43540, X'854ffdf41b5b1aa7524ce7b41be24fe6af3bc3b0f081f5962ebbe08ba94451a7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.28078+00', 384, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43541, X'8edb8972978b27b02bff37287e7b9c33c7cd8b6d9d5c69e99e45ee129d835e99', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.296713+00', 394, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43542, X'c5c34525424a6fdbeb5f867533d4f112de9ac3ae2a31b9bb85332bbfd3f37caf', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.313553+00', 383, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43543, X'23213429c4c11ea3b1a1dce782aabeaf3a36bb2c7b811fc2e15c247ab2167991', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.281963+00', 699, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43544, X'17df06564dd3d7778171f72bb8ad99c2e50672f69a5e14e3c09c8cd1fcee240e', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.285286+00', 803, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43545, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.442357+00', 343, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43546, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.452742+00', 582, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43547, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.444088+00', 599, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43548, X'05c70b2d71a1f86820246b06b4840ee6897e6d7611b64e23eed3bf434c1efc68', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.4487+00', 596, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43549, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.442908+00', 955, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43550, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.449125+00', 977, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43551, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.442811+00', 1090, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43552, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.745538+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43553, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.745538+00', 308, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(43554, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.005397+00', 1540, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43555, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:05.814542+00', 1739, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(43556, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.005397+00', 1561, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(43557, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:05.814542+00', 1729, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43558, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.071718+00', 1673, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43559, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.533926+00', 1223, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(43560, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.071718+00', 1678, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(43561, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.533926+00', 1214, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43562, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.783085+00', 1124, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(43563, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.783085+00', 1121, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43564, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.19183+00', 1201, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43565, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.701034+00', 1881, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43566, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.765201+00', 1924, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43567, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.765201+00', 1936, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(43568, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.721276+00', 2052, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43569, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.025114+00', 2072, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43570, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.533115+00', 2610, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43571, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.533115+00', 2623, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 3, NULL, 3, NULL), +(43572, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.650969+00', 2933, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43573, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.533594+00', 3900, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43574, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.515877+00', 4091, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43575, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.670581+00', 4258, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 12, 2, NULL, 3, NULL), +(43576, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.667793+00', 4384, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43577, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.791672+00', 4255, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43578, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.791672+00', 4267, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(43579, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.631167+00', 4916, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43580, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.631167+00', 4917, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(43581, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.146872+00', 4408, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43582, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.117902+00', 4560, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(43583, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.117902+00', 4552, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43584, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.953319+00', 4756, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43585, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.88465+00', 5022, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43586, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.876173+00', 5047, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43587, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.876173+00', 5072, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(43588, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.118435+00', 4845, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43589, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.073003+00', 4911, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43590, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.059795+00', 5236, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43591, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.059795+00', 5258, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(43592, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.159628+00', 5182, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43593, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.629434+00', 5815, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43594, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:06.629434+00', 5875, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(43595, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.182229+00', 5965, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43596, X'ea70a6a69e823455b8ee0082d6e5fec61e343db37f2eed81e3325e9bfffb5255', TIMESTAMP WITH TIME ZONE '2023-01-24 10:23:06.117244+00', 3640, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43597, X'c02a8fa16b8f28a6e5754b3f760f1d404cc57f015f7f23913bb4a2b7c9c5d335', TIMESTAMP WITH TIME ZONE '2023-01-24 10:23:54.330458+00', 1480, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(43598, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:57.128024+00', 3440, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43599, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:57.136816+00', 3817, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43600, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:57.172145+00', 3901, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43601, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:57.214781+00', 4281, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43602, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:57.207194+00', 5422, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43603, X'7182c4047d01b979439aa897137c0b2b07be3336ce6a1b30458b091fdf61c8ba', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:02.378216+00', 460, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43604, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:57.220012+00', 7960, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43605, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:57.22814+00', 8009, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43606, X'b20f350e3d646db73cee46e48e0df28edcfc061cec0bec2a6e61618256061a12', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:21.683132+00', 218, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(43607, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.615726+00', 392, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43608, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.88018+00', 846, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43609, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.856914+00', 948, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43610, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.876781+00', 936, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43611, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.815075+00', 1222, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43612, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.860317+00', 1184, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43613, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.834716+00', 1242, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43614, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:07.438838+00', 632, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43615, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:07.406481+00', 765, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(43616, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:07.452746+00', 855, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43617, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:07.401314+00', 926, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43618, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:07.401321+00', 927, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43619, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:07.447857+00', 1232, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43620, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.640137+00', 380, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43621, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.646498+00', 562, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43622, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.652164+00', 577, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43623, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.649228+00', 560, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43624, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:07.433279+00', 1854, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43625, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.733419+00', 596, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43626, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.647459+00', 713, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43627, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.765768+00', 662, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43628, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.829478+00', 630, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43629, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:58.738395+00', 4313, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43630, X'7b49665b3c0f605749a57a058dd59657fdaba16ddda5d3e0fea5c4dff9012492', TIMESTAMP WITH TIME ZONE '2023-01-24 10:28:57.053601+00', 998, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43631, X'36f10b85fbf13da5d80630450fd6443cef7927a8f6682dfc811a6da557b57504', TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:04.210726+00', 427, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43632, X'6906b2cf06dc587247d8b89eab3dcc8f2cb55bbda43075094e97fdad27e8c6b6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:09.384768+00', 1139, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43633, X'6906b2cf06dc587247d8b89eab3dcc8f2cb55bbda43075094e97fdad27e8c6b6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:18.195385+00', 361, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43634, X'6906b2cf06dc587247d8b89eab3dcc8f2cb55bbda43075094e97fdad27e8c6b6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:21.314503+00', 267, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43635, X'9201d78f1e0fe7c3593d1c4c18198855909dff640838c3d681124af6269d065b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:30:31.205818+00', 408, 10, FALSE, 'question', NULL, 1, 32, NULL, NULL, 3, FALSE), +(43636, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.334281+00', 699, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(43637, X'63e56b52ce6a71e589d74f52a60b0c591c258184be5aadf04e7037fa9599a3e9', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.535298+00', 1658, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(43638, X'b4b797f862f916a5f12e9aabe61e3d19a226fefc50a101134a41931ea78cdb55', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.53796+00', 1706, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 3, NULL, 3, FALSE), +(43639, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.572767+00', 1709, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(43640, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.467569+00', 1779, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(43641, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.197088+00', 2491, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(43642, X'd941a77f040991642afa236db768c07b94994fb6c68378256e649f2559f96a39', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.474972+00', 2354, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(43643, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.464697+00', 2412, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43644, X'cbeff3e34cf1c2e021262ce81055ecf2a242cd348534e4441c6986960420858f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.319794+00', 2743, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(43645, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.183407+00', 2882, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(43646, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.24595+00', 2896, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(43647, X'6ae5ecfef6349dfe0f8a632c571be5541cbb41114f6e263b4d9154caa01d4cfc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.617045+00', 2584, 1, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(43648, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.213351+00', 3065, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(43649, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.533327+00', 3972, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(43650, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:10.545608+00', 4020, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(43651, X'9201d78f1e0fe7c3593d1c4c18198855909dff640838c3d681124af6269d065b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:53.579468+00', 1505, 10, FALSE, 'question', NULL, 1, 32, NULL, NULL, 3, FALSE), +(43652, X'9201d78f1e0fe7c3593d1c4c18198855909dff640838c3d681124af6269d065b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:09.800007+00', 4250, 10, FALSE, 'question', NULL, 1, 32, NULL, NULL, 3, FALSE), +(43653, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.083553+00', 548, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43654, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.099677+00', 1659, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43655, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.136796+00', 1708, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43656, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.107764+00', 1795, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43657, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.061566+00', 1981, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43658, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.101975+00', 2402, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43659, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.126146+00', 2444, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43660, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:50.113529+00', 1807, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(43661, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:39.653171+00', 1345, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43662, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:39.764969+00', 1753, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43663, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:39.753928+00', 1784, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43664, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:39.662015+00', 2080, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43665, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:39.720619+00', 2088, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43666, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:39.618395+00', 3497, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43667, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:39.658019+00', 3522, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43668, X'7182c4047d01b979439aa897137c0b2b07be3336ce6a1b30458b091fdf61c8ba', TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:50.175955+00', 762, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(43669, X'10dec3b3fdcaa59ebc57ac2413b6bec284419f53c8a59bfe7c7c729a6b49c6d1', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:08.904505+00', 2997, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43670, X'b13f78f3c6c95d2d969d008f5912cb909f8ac86ac87759d6fc5c6a23285b1f66', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:22.917403+00', 573, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43671, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:42.369146+00', 947, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43672, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:39.107298+00', 4222, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43673, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:42.36898+00', 1868, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43674, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:42.32026+00', 2228, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43675, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:42.318206+00', 2298, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43676, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:40.858497+00', 4272, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43677, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:42.627395+00', 2714, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43678, X'bab37f87f167a02e24f8a6a3dc8cae9c4eabdaafc8173a57960312aaaf97d483', TIMESTAMP WITH TIME ZONE '2023-01-24 10:38:43.46144+00', 55, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 1529. Character: ''+''.', 1, NULL, NULL, NULL, 3, NULL), +(43679, X'4ce90d949d05bab7546f4b83254796617420e0ab992f1dc8a5b8a8df91d5bc77', TIMESTAMP WITH TIME ZONE '2023-01-24 10:38:49.248732+00', 34, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found ''}''.', 1, NULL, NULL, NULL, 3, NULL), +(43680, X'4542178d6aaee30d60f858e89741a583c40e93f9646ca9722bf040ccb5386e0f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:38:57.590921+00', 23, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 1529. Character: ''%''.', 1, NULL, NULL, NULL, 3, NULL), +(43681, X'c6df9062308b052e1305336945d76157dabc7524f1c5048aaedd3514492131b4', TIMESTAMP WITH TIME ZONE '2023-01-24 10:39:20.975645+00', 14, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 1479. Character: ''`''.', 1, NULL, NULL, NULL, 3, NULL), +(43682, X'1eb39a507ea7ad1ae084d4aaf19a17e362a7b5728e5666d6976406efba57bf00', TIMESTAMP WITH TIME ZONE '2023-01-24 10:39:25.877327+00', 29, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43683, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-01-24 10:39:29.94124+00', 3953, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(43684, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:01.752137+00', 724, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43685, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:02.015057+00', 1572, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43686, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:01.9006+00', 1692, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43687, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:01.926858+00', 1730, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43688, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:01.87862+00', 1909, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43689, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:01.904687+00', 2431, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43690, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:01.892814+00', 2448, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43691, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:19.674721+00', 853, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43692, X'40898ab539eeb8d7539c51475194559ec423ce1128de2e2ea972203815c69090', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:34.880473+00', 398, 703, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43693, X'c5977b676443d268de6316f167fbf1655f3a1b6c19f41d3bff16f828f5f6eb8b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:40.277457+00', 176, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43694, X'a5b2858dd192a2e4a9a9e3cc9c77c1dabacea43255af52d07bbaddd1e139de73', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:44.409615+00', 82, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43695, X'cc427a7164dfbc63bab90c03b12b1df49ab3c88b38817d22bd8463cfb88400bd', TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:47.694487+00', 689, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43696, X'dec1195a4b7aed64f67a50a14803a360d965276ea45dc8432e23b611d8ef8fad', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:28.661109+00', 236, 731, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43697, X'b3fda51ec43dce2cc62b1b586c0beb37140340172af65ea917241383bd02f61c', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:32.021955+00', 85, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43698, X'3fa7c770426e100595fdc339acc0cd385d7531aae0f72059107af742e5c0a2bc', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:35.345485+00', 88, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43699, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.502413+00', 644, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43700, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.547255+00', 1093, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43701, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.495342+00', 1234, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43702, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.514088+00', 1327, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43703, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.51617+00', 1457, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43704, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.534485+00', 1706, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43705, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.526215+00', 1776, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43706, X'968cf073e236a221396630059895f8382f2ec1669cabf44b1d05b02535f833ee', TIMESTAMP WITH TIME ZONE '2023-01-24 10:43:15.457262+00', 462, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(43707, X'fd53d64c344788258484c9b24ea0718abcc526b9ed6c81537a34e558024fe2f3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:44:07.634126+00', 315, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43708, X'fd53d64c344788258484c9b24ea0718abcc526b9ed6c81537a34e558024fe2f3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:44:34.091385+00', 812, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43709, X'd52c96dae39c6dc80d20c582ca16f6b8ca2276f317cf148614e4e2225602ed5f', TIMESTAMP WITH TIME ZONE '2023-01-24 10:45:20.570063+00', 477, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43710, X'fd53d64c344788258484c9b24ea0718abcc526b9ed6c81537a34e558024fe2f3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:45:27.589449+00', 264, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43711, X'7393be8a17692879afa1d12c8a1bc9b5cf7250c149c848fead5b7d2129cf74ac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:55:53.512539+00', 1258, 0, TRUE, 'ad-hoc', 'Invalid JSON input. Position: 696. Character: ''<''.', 1, NULL, NULL, NULL, 3, NULL), +(43712, X'e6a943dd397f5fdb0d33958f6ef6c4b1e799d0e34acb052138b579b8486c4b9c', TIMESTAMP WITH TIME ZONE '2023-01-24 10:56:24.38678+00', 22, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 3, NULL), +(43713, X'e6a943dd397f5fdb0d33958f6ef6c4b1e799d0e34acb052138b579b8486c4b9c', TIMESTAMP WITH TIME ZONE '2023-01-24 10:56:29.316514+00', 17, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is INT32.', 1, NULL, NULL, NULL, 3, NULL), +(43714, X'e110a1cab810bb674ebf97a87ecc96268b7b34521faf7f15965ab963515f4fc3', TIMESTAMP WITH TIME ZONE '2023-01-24 10:56:32.49198+00', 3938, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43715, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:39.859117+00', 814, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(43716, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:54.11389+00', 180, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(43717, X'e7fd43846a14313063adf175753e94906da725c994f46de8222de81d1067bfda', TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:57.665743+00', 194, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 3, FALSE), +(43718, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:10.806599+00', 1047, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43719, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:10.832794+00', 1759, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43720, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:10.804902+00', 1931, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43721, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:10.813818+00', 1960, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43722, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:10.931975+00', 1976, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43723, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:10.801508+00', 3112, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43724, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:10.806122+00', 3125, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43725, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.264691+00', 808, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43726, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.148715+00', 2093, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43727, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.52351+00', 1906, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43728, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.238136+00', 2226, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43729, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.601638+00', 2040, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43730, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.268702+00', 2373, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43731, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.244808+00', 2537, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43732, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:32.265148+00', 2622, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43733, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:38.575301+00', 205, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43734, X'7693e2a76bf1af65b9d45aceb93a65ceb394708d8c292c48ba080252c9bd8f8a', TIMESTAMP WITH TIME ZONE '2023-01-24 11:01:57.557258+00', 9953, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43735, X'43fbf21adfb4efdca6decbdcb250a7e12ec1db6be810e4ca8c3f38c64e78ff82', TIMESTAMP WITH TIME ZONE '2023-01-24 11:02:36.917175+00', 4941, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43736, X'7203c31401a0297ecca9290b712f144ebe61a5ff6281a068cf5d82c6663f6b7a', TIMESTAMP WITH TIME ZONE '2023-01-24 11:03:15.672781+00', 295, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43737, X'e0d0c18d0ee91d1c56f876beca1253dde5ab2ea982181d1c832567d627bf6f78', TIMESTAMP WITH TIME ZONE '2023-01-24 11:03:32.88645+00', 292, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43738, X'90649d94ad65dff58354f34a6138c5c50e2b84555c899b0132abd8a226b226ef', TIMESTAMP WITH TIME ZONE '2023-01-24 11:06:42.559825+00', 6525, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43739, X'90649d94ad65dff58354f34a6138c5c50e2b84555c899b0132abd8a226b226ef', TIMESTAMP WITH TIME ZONE '2023-01-24 11:06:56.869737+00', 1114, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43740, X'cba62465aca408e0ce8d4be207dac9bce8b1de5094417c9afa843dc5b6b02557', TIMESTAMP WITH TIME ZONE '2023-01-24 11:07:44.470542+00', 1104, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43741, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:51.812279+00', 706, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43742, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:51.864567+00', 1372, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43743, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:51.865845+00', 1371, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43744, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:51.855314+00', 1488, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43745, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:51.857414+00', 1735, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43746, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:51.819799+00', 2511, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43747, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:51.86825+00', 2486, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43748, X'7182c4047d01b979439aa897137c0b2b07be3336ce6a1b30458b091fdf61c8ba', TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:57.43916+00', 304, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(43749, X'd4b8a821d580a6e72389b32751467bc1fc9f24ee20f689318c5e160b5f5c3d83', TIMESTAMP WITH TIME ZONE '2023-01-24 11:19:25.560571+00', 260, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43750, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:10.702751+00', 1131, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43751, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:10.694902+00', 1151, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43752, X'ad8014e3fe9e4dce0e2ddfdd08f24e5b5f899bb227f75ed5e56c35646ab84bac', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:10.629269+00', 1319, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43753, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:11.069219+00', 946, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43754, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:10.698882+00', 1883, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43755, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:10.630059+00', 1968, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43756, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:10.62927+00', 2111, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43757, X'7182c4047d01b979439aa897137c0b2b07be3336ce6a1b30458b091fdf61c8ba', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:16.333289+00', 256, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(43758, X'1db75e50d35774f826cee87d1aeec7843c86774f610f698d42cca0a161da2d9f', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:42.53152+00', 355, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(43759, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.409002+00', 486, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43760, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.409579+00', 1805, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43761, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.338859+00', 2012, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43762, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.403962+00', 2076, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43763, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.357231+00', 2338, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43764, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.367281+00', 3423, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43765, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.411931+00', 3590, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43766, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.308713+00', 116, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43767, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.280805+00', 518, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43768, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.302343+00', 567, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43769, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.409263+00', 575, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43770, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.227792+00', 1253, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43771, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.304618+00', 1299, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43772, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.309109+00', 1351, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43773, X'43c656debd9ac421c60a9df8a8d5a129aa2db1aa5ffbefb34315e11940d3337b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:07.711552+00', 364, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43774, X'13e083d7388166cafcdf07640b7d3f7b99253512e3abeb93f8d5143ecef73bcf', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:07.71417+00', 567, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43775, X'1f9c9764efc73c1d3547fc8d24c05327a9400b9881ca256814fcb5f9592b6106', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:07.897864+00', 506, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43776, X'6c75d41979376886e7c6f8dd3614cf9c6b252085bb8db77e57986e316965f002', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:07.833989+00', 650, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43777, X'f9b618b1f7822c41748453be055d4242ea4fac96b1e2fbb6fdbeaac3c3b9b786', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:07.770047+00', 835, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43778, X'0aa405d8f9872a40215c8dc0ecefcb9f074811092464caa8ea16f8c127c9dfae', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:07.880813+00', 996, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43779, X'd67be39fe12f68c829a9ba48eb3af95d98548e60624d207b69846e58dde67112', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:07.900177+00', 1012, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43780, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.185114+00', 277, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43781, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.170626+00', 464, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43782, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.166594+00', 812, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43783, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.267201+00', 861, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43784, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.148825+00', 1305, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43785, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.151746+00', 1546, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43786, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.216116+00', 1506, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43787, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.201079+00', 573, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43788, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.35903+00', 470, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43789, X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.274201+00', 567, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43790, X'674350c63171f782f84b143b1926411cfd121b491352ba0e4c78bc57e1e4c84a', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.247233+00', 608, 7, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43791, X'856f0b1cdea96a18d4da66d1d02ccc21e70bbe9159b98813ba8c49849f8ce52e', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.221277+00', 720, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43792, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.18544+00', 1089, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43793, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.198598+00', 1161, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43794, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.739815+00', 1169, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43795, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.724033+00', 1812, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43796, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.805624+00', 1809, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43797, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.781363+00', 1907, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43798, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.810328+00', 2032, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43799, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.819624+00', 2524, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43800, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.807767+00', 2549, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43801, X'9201d78f1e0fe7c3593d1c4c18198855909dff640838c3d681124af6269d065b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:38.17738+00', 2567, 10, FALSE, 'question', NULL, 1, 32, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43802, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.696789+00', 270, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43803, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.709277+00', 1135, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43804, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.657359+00', 1203, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43805, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.720269+00', 1154, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43806, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.702372+00', 1956, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43807, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.649662+00', 2290, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43808, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.72757+00', 2336, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43809, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.708035+00', 282, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43810, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.797756+00', 943, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43811, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.736+00', 1050, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43812, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.777179+00', 1191, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43813, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.838399+00', 1317, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43814, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.841538+00', 1696, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43815, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.883597+00', 1707, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43816, X'1204be76258d5e823b284ac8617e30d1acbcf2a528b3008b7043c1ba5e92f33b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:13.326176+00', 283, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(43817, X'8719635bddb3bf0b6451902a0553369aba2cdd75fb1028c4ac3b50cbc8697542', TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:25.807461+00', 891, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43818, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:23.766151+00', 1953, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43819, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:23.764828+00', 2013, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43820, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:23.764885+00', 2013, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43821, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:23.765768+00', 2061, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43822, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:23.764858+00', 2485, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43823, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:23.811966+00', 3309, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43824, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:23.764828+00', 3479, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43825, X'75e256fc500c9433d8f39bbdccd6a657e20f84ebabb052d7c857075f14fcd2f1', TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:08.179996+00', 3630, 10, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43826, X'0abbdb29215482cee97f239e05c764708a28b350f115a20907e35a9ff7a7a1d3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:48.833747+00', 212, 10, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(43827, X'9201d78f1e0fe7c3593d1c4c18198855909dff640838c3d681124af6269d065b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:54.551335+00', 273, 10, FALSE, 'question', NULL, 1, 32, NULL, NULL, 3, FALSE), +(43828, X'0abbdb29215482cee97f239e05c764708a28b350f115a20907e35a9ff7a7a1d3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:32:05.5057+00', 277, 10, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(43829, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 11:33:37.321176+00', 211, 10, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(43830, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.360375+00', 410, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43831, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.264125+00', 592, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43832, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.25154+00', 1567, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43833, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.347009+00', 1489, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43834, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.307457+00', 1540, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43835, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.3426+00', 1538, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43836, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.275676+00', 1644, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43837, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.235085+00', 1737, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43838, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:20.791251+00', 324, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43839, X'c80d36101179dfbe91d5ef960efe54a8857077fca1c1523c5b68ded5ae5aa94b', TIMESTAMP WITH TIME ZONE '2023-01-24 11:40:18.515729+00', 2572, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43840, X'8c0ca856d9f90e1a7e42a3766f196358e63deaca42e410a7631bf0fd7ced4b1e', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:18.656543+00', 3154, 0, FALSE, 'question', 'Closed', 1, 29, NULL, NULL, 3, NULL), +(43841, X'8c0ca856d9f90e1a7e42a3766f196358e63deaca42e410a7631bf0fd7ced4b1e', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:18.656543+00', 3105, 0, FALSE, 'question', NULL, 1, 29, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43842, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.131369+00', 2148, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43843, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.42222+00', 1863, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43844, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.396851+00', 2638, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43845, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.372734+00', 3681, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43846, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.41229+00', 3795, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43847, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.347802+00', 3907, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43848, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.368473+00', 3935, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43849, X'64434980c739f7ccbc8a8b02a2db51ca02540fced238ebe2edc9cecf40cd022e', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:24.403887+00', 3901, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43850, X'4d521f7538ca91557a0fb8d9a69ecb1d7f165387543b4897bfe2318bcce3c7f1', TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:49.493027+00', 604, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(43851, X'8861f2928673f4cbf4b89d0002682126bf618e97e0cb764ace6c42f9ad60a047', TIMESTAMP WITH TIME ZONE '2023-01-24 11:52:33.095634+00', 474, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43852, X'1abd7b6bc07a4806a990f136ed8680947feaaf419a88c7f99e1cc58c4eac7fcc', TIMESTAMP WITH TIME ZONE '2023-01-24 11:52:47.243063+00', 284, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43853, X'6e4ef387e071b7994cfa14c5195d3bbe9206e4407e3c84c567b2f047262dd0eb', TIMESTAMP WITH TIME ZONE '2023-01-24 11:53:03.383422+00', 345, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43854, X'd902408e6d8b6451f28ee5a109ca8dde6186d3c2b68d389639f2fc82ded3d27f', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:03.23813+00', 367, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43855, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.540685+00', 544, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43856, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.723041+00', 448, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43857, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.514109+00', 750, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43858, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.560857+00', 1114, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43859, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.614709+00', 1119, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43860, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.551561+00', 1293, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43861, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.648849+00', 1276, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43862, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:25.660464+00', 1333, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43863, X'273dab855268f8e13cf516ad9103568922e366f0c31869effeb0b92cffe513c3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:55:46.230399+00', 4219, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(43864, X'9454a3c00bd4fe60417ad4c1a19390ae661a67aa3736522fd433334dc94e863e', TIMESTAMP WITH TIME ZONE '2023-01-24 11:56:12.152969+00', 484, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43865, X'c11918e81e84e93274356a9f28643dd8338f7b44873d6866ca93b29c0dc264a3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:56:45.6225+00', 402, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43866, X'764edf097bad29d4fcdb44b10e3ebd0a5f22c6af5a097895e5a60e7ae3666ab3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:57:25.637003+00', 549, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43867, X'c11918e81e84e93274356a9f28643dd8338f7b44873d6866ca93b29c0dc264a3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:57:41.484944+00', 1153, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43868, X'c11918e81e84e93274356a9f28643dd8338f7b44873d6866ca93b29c0dc264a3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:57:46.480638+00', 373, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43869, X'c11918e81e84e93274356a9f28643dd8338f7b44873d6866ca93b29c0dc264a3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:57:47.9735+00', 223, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43870, X'c11918e81e84e93274356a9f28643dd8338f7b44873d6866ca93b29c0dc264a3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:57:49.971019+00', 243, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43871, X'c11918e81e84e93274356a9f28643dd8338f7b44873d6866ca93b29c0dc264a3', TIMESTAMP WITH TIME ZONE '2023-01-24 11:57:51.356637+00', 949, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43872, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:41.394379+00', 447, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43873, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:43.551247+00', 300, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43874, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:44.831789+00', 299, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43875, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:46.213343+00', 213, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43876, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:47.65932+00', 204, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43877, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:48.757508+00', 192, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43878, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:49.78998+00', 192, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43879, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:50.846574+00', 239, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43880, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:56.597981+00', 184, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43881, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:57.849259+00', 210, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43882, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:58:58.93167+00', 200, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43883, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:00.029897+00', 213, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43884, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:01.148738+00', 218, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43885, X'a6fa24016ca9df560b491fb3874a0cc06ab2ad76834e70db364709a6c68d8f8c', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:02.215636+00', 231, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43886, X'289ec1dc5e84eb85e978f7195996260456daf82a00e060d97248746d106a7dd0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:11.412194+00', 275, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43887, X'289ec1dc5e84eb85e978f7195996260456daf82a00e060d97248746d106a7dd0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:12.754827+00', 199, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43888, X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:17.330665+00', 251, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43889, X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:18.645028+00', 223, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43890, X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:19.797826+00', 196, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43891, X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:21.294982+00', 206, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43892, X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:22.455903+00', 222, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43893, X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:23.533026+00', 191, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43894, X'a5a0eda212ab22fb709e21886aa812ac6ca2af9b24fc97690d1627b0bb2297a0', TIMESTAMP WITH TIME ZONE '2023-01-24 11:59:24.629016+00', 200, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43895, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:11.307851+00', 194, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43896, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:12.738696+00', 183, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43897, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:13.91276+00', 626, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43898, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:15.536952+00', 280, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43899, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:16.732351+00', 266, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43900, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:18.186276+00', 233, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43901, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:19.393589+00', 291, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43902, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:20.583501+00', 240, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43903, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:21.673743+00', 211, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43904, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:22.850961+00', 273, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43905, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:31.267617+00', 4361, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43906, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:31.267617+00', 4395, 0, TRUE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(43907, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:00:33.792567+00', 1980, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43908, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:06:43.092818+00', 7206, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43909, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:06:57.752364+00', 763, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43910, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:01.259375+00', 651, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43911, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:03.241009+00', 518, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43912, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:17.121061+00', 2523, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43913, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:33.612479+00', 426, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43914, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:33.588798+00', 2190, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43915, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:33.548881+00', 2384, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43916, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:33.585044+00', 2456, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43917, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:33.635573+00', 2554, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43918, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:33.627788+00', 4316, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43919, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:33.614207+00', 4760, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43920, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:43.284963+00', 960, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43921, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:42.949929+00', 1500, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43922, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:42.91355+00', 1583, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43923, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:43.393055+00', 1106, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43924, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:42.908652+00', 1697, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43925, X'6dbbaf33ea9fee509c692d9341cf4ebd4a2cd66fea258f110b78d9d18c48e7dd', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:43.481977+00', 1150, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43926, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:43.177031+00', 1568, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43927, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:42.908504+00', 1887, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43928, X'273dab855268f8e13cf516ad9103568922e366f0c31869effeb0b92cffe513c3', TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:33.980635+00', 3158, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(43929, X'273dab855268f8e13cf516ad9103568922e366f0c31869effeb0b92cffe513c3', TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:47.84114+00', 426, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(43930, X'273dab855268f8e13cf516ad9103568922e366f0c31869effeb0b92cffe513c3', TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:58.123748+00', 271, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(43931, X'273dab855268f8e13cf516ad9103568922e366f0c31869effeb0b92cffe513c3', TIMESTAMP WITH TIME ZONE '2023-01-24 12:10:04.087414+00', 366, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(43932, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:10:19.656614+00', 233, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43933, X'4f3d567d916ff12105f114888696e33c4725c3ae225a3545bed4923d9131a836', TIMESTAMP WITH TIME ZONE '2023-01-24 12:10:22.735726+00', 231, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43934, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.498754+00', 1646, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43935, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.557381+00', 1677, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43936, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.471373+00', 3150, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43937, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.437892+00', 3369, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43938, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.577143+00', 3206, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43939, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.423464+00', 3619, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43940, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.669817+00', 3384, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43941, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:21.409964+00', 3876, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43942, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:43.649579+00', 360, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43943, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:43.464767+00', 1397, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43944, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:43.464875+00', 1987, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43945, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:43.580167+00', 1982, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43946, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:43.583682+00', 2151, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43947, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:43.416828+00', 4162, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43948, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:43.545388+00', 4041, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43949, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:59.750112+00', 243, 10, TRUE, 'question', NULL, 1, 33, 2, NULL, 3, FALSE), +(43950, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 12:12:21.154291+00', 314, 2, FALSE, 'question', NULL, 1, 30, 2, NULL, 3, FALSE), +(43951, X'e03a561d96a2c0fa6c4b212e1622dec08632e6cd17df5a1820ea62bd7e426342', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:06.752487+00', 3808, 10, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(43952, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:36.629234+00', 1280, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(43953, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:36.859205+00', 1575, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43954, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:37.09335+00', 1553, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43955, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:37.159026+00', 1541, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(43956, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:36.948937+00', 1957, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43957, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:37.033977+00', 2025, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43958, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:37.106567+00', 2274, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43959, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:36.983035+00', 3225, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43960, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:36.629853+00', 3634, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43961, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:54.759336+00', 2442, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43962, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.583718+00', 417, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43963, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.562978+00', 2104, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(43964, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.579528+00', 2565, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43965, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.626367+00', 2560, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(43966, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.559443+00', 2640, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43967, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.634101+00', 2843, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43968, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.593462+00', 3042, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43969, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.525534+00', 3861, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43970, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.548014+00', 3859, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43971, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.762725+00', 838, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43972, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.823692+00', 800, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43973, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.837794+00', 1398, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43974, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.931393+00', 1379, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43975, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.987594+00', 1747, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43976, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.870092+00', 1593, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43977, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.470034+00', 1766, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43978, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:55.985325+00', 2420, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43979, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.088874+00', 399, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(43980, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.127692+00', 927, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(43981, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.08855+00', 1066, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(43982, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.087027+00', 1128, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(43983, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.095475+00', 1154, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(43984, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.116793+00', 1231, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(43985, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.144394+00', 1373, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(43986, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.130054+00', 2154, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(43987, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.087029+00', 2255, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(43988, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.590499+00', 709, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43989, X'38b54762d2a5820de98246820233165613700b486bd3476c6cf73693c8876d25', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.4463+00', 2334, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(43990, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.636804+00', 2218, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(43991, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.4463+00', 2531, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(43992, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.640683+00', 2735, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(43993, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.59591+00', 2834, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(43994, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.591751+00', 2889, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(43995, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:53.645511+00', 2871, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(43996, X'bbaf3333f14ddee561326dc2391f2849278a173f82b590dfae34cc2aff43b331', TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:57.613221+00', 173, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43997, X'5b382317a1535fe463209b3f2855282d371916f0e33d59fce31636987d20043e', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:04.446314+00', 323, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(43998, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.858675+00', 291, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(43999, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.757241+00', 826, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44000, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.774518+00', 872, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44001, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.76066+00', 964, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44002, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.882083+00', 850, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44003, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.871672+00', 866, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44004, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.761516+00', 1040, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44005, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.834514+00', 1033, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44006, X'3636b229dc657a9570cb2532b562454ccdc150998d0b29e243d5b0680576aaec', TIMESTAMP WITH TIME ZONE '2023-01-24 13:28:16.03549+00', 2213, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44007, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:09.988592+00', 1582, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44008, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:10.166792+00', 2062, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44009, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:09.952848+00', 2608, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44010, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:09.984644+00', 2714, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44011, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:09.982536+00', 2791, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44012, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:09.937852+00', 2914, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44013, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:09.796015+00', 3146, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44014, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:09.950979+00', 4215, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44015, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:10.057143+00', 4204, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44016, X'd11499bc7473a73e06294b4d61414cde895256ac7de660e3a04a34a60916b89f', TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:26.40529+00', 240, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(44017, X'c23c2fce7656a14c412a592bb8ef0246af83540216ba0e99824b8310eda6434f', TIMESTAMP WITH TIME ZONE '2023-01-24 13:31:00.945044+00', 1260, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44018, X'f164f24711f52cb0562f7cec63791c8242da90c78465fbe315687428d8cbe864', TIMESTAMP WITH TIME ZONE '2023-01-24 13:31:22.751815+00', 324, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44019, X'acc3fc733101b6f6eb78bd23ccf078b8f1f8b1284ffb3d36f2d96dc2766669ac', TIMESTAMP WITH TIME ZONE '2023-01-24 13:31:35.410729+00', 446, 5, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44020, X'6624eb80569e9732dbdc2d033ca81fa483927e4f8947cefd0979a4e4f73720b7', TIMESTAMP WITH TIME ZONE '2023-01-24 13:34:16.958982+00', 3708, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44021, X'1a22223da4d3723d56ff5f510beace9b13b154ff3daebae2404e7cfab76e90c2', TIMESTAMP WITH TIME ZONE '2023-01-24 13:35:13.992477+00', 300, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44022, X'028e3b13ee7034174dfed5501d64527d5da30de58f1108247d3256230847f1f6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:37:24.977522+00', 386, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44023, X'acc3fc733101b6f6eb78bd23ccf078b8f1f8b1284ffb3d36f2d96dc2766669ac', TIMESTAMP WITH TIME ZONE '2023-01-24 13:37:39.400768+00', 396, 5, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44024, X'3b8932a7e377950fbed82db4496bd3c22b44c6d3aa55b0e9e1ae22a2f264578c', TIMESTAMP WITH TIME ZONE '2023-01-24 13:38:49.389259+00', 395, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44025, X'54d824a83dafb7751039119ba6cd32b235bbe4d535c5ab582fbde3e2f665f68f', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:19.798496+00', 344, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44026, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.311291+00', 1146, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44027, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.329295+00', 1232, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44028, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.314349+00', 1543, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44029, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.326439+00', 1613, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44030, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.338697+00', 1603, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44031, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.323563+00', 1637, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44032, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.310104+00', 1675, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44033, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:38.329329+00', 1695, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44034, X'060f5673961331a4f9057d0a34f520e9e0904205161a927fe5bff7858a8a345d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:53.699435+00', 230, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(44035, X'060f5673961331a4f9057d0a34f520e9e0904205161a927fe5bff7858a8a345d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:03.557192+00', 541, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(44036, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.992389+00', 314, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44037, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.755641+00', 1050, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44038, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.742768+00', 1203, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44039, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.837535+00', 1160, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44040, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.744906+00', 1351, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44041, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.796126+00', 1370, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44042, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.837585+00', 1672, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44043, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.775872+00', 2587, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44044, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:17.778136+00', 2607, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44045, X'7a32b53e3e31952caa8f7941fd36149450d0f659c148a925ff628ecaacd2aaf7', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.846205+00', 681, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44046, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.777361+00', 1228, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44047, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.880065+00', 1202, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44048, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.929959+00', 1425, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44049, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.794032+00', 1598, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44050, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.814807+00', 1637, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44051, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.927095+00', 1671, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44052, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:22.879417+00', 1793, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44053, X'3636b229dc657a9570cb2532b562454ccdc150998d0b29e243d5b0680576aaec', TIMESTAMP WITH TIME ZONE '2023-01-24 13:41:53.053928+00', 2783, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44054, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:01.606712+00', 1129, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44055, X'a3cb18069bb4e79425ec17cea17dfa0e029b0113a9c3e3a0f6d9dd542c742a48', TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:27.492489+00', 249, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44056, X'4d667d0bc380100d953d1c3e544b78f458e883779e6176c46a7547ed9ad76b3c', TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:35.16275+00', 146, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44057, X'5cff5288adf0820153eb82329772aeb4bf00369d44c0bfeecd4ee1c94bd73639', TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:45.061671+00', 228, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44058, X'5cff5288adf0820153eb82329772aeb4bf00369d44c0bfeecd4ee1c94bd73639', TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:48.0997+00', 167, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44059, X'a564c6cd8bb6ce6af682565aabfd980b46b6c831135e99503417e553b2470c9e', TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:53.039554+00', 129, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44060, X'b47bef2a3d34377b6c7d74168ed96c7ac9847b57b8fc8b4a05c65809699ad7ac', TIMESTAMP WITH TIME ZONE '2023-01-24 13:43:38.781451+00', 186, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44061, X'643b4017a50fae53e49e7c39b8e7f0982aa67bdbe09371a153a0dbdb1028139c', TIMESTAMP WITH TIME ZONE '2023-01-24 13:44:20.01883+00', 145, 9, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44062, X'4ff42af6a57f414f36643daa405d1277b7f4123b1a6bc6ca9f86f25d6ba35887', TIMESTAMP WITH TIME ZONE '2023-01-24 13:44:40.902781+00', 170, 14, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44063, X'af7f8576a1e8c0c4bff6a43b77e5833db8abba3be6dc16574152204041ad8494', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:18.33023+00', 129, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44064, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.632293+00', 563, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44065, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.613479+00', 1392, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44066, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.614711+00', 1492, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44067, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.626032+00', 1638, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44068, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.589031+00', 1694, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44069, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.64452+00', 1647, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44070, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.536765+00', 1827, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44071, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.562258+00', 2920, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44072, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:49.589045+00', 2916, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44073, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.13719+00', 656, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44074, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:53.919627+00', 969, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44075, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.052828+00', 1016, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44076, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.036617+00', 1121, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44077, X'a507d6770f98fa2b0788e5847d0b630039ef69b414f6b30ec59790bc30d3cfa4', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.182952+00', 1003, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44078, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:53.982155+00', 1246, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44079, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.048382+00', 1212, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44080, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.142804+00', 1125, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44081, X'7b3372ae7b2e4eb9883e1f866f6a6ecc1da65f5cd86316cd81b7754bf2fed015', TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:09.096286+00', 224, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44082, X'84644db8c1ecab8f71ded22a36a8eb9b07eb34892fca2cb58c70ab098241df00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:26.01838+00', 206, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44083, X'84644db8c1ecab8f71ded22a36a8eb9b07eb34892fca2cb58c70ab098241df00', TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:34.1957+00', 212, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44084, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:44.234893+00', 2422, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44085, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:49.198813+00', 181, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44086, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:51.216339+00', 180, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44087, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:52.510153+00', 266, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44088, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:54.112901+00', 181, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44089, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:55.212237+00', 189, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44090, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:56.288623+00', 165, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44091, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:57.318455+00', 261, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44092, X'4377048bf4449a1c7d45baf2a6bcfe0d2c3488d207e67a81c6ee76ce597ece56', TIMESTAMP WITH TIME ZONE '2023-01-24 13:47:58.376587+00', 247, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44093, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.716487+00', 1146, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44094, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.56922+00', 1358, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44095, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.681902+00', 2107, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44096, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.682163+00', 2215, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44097, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.772505+00', 2129, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44098, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.576685+00', 2351, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44099, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.651241+00', 2311, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44100, X'436f73708869ba3f5ec1e0a9d85fedb92c03bccd818ad2cf6e31b985b6b014a2', TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:50.636812+00', 2375, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44101, X'26f15b0c0dd570be3daf79658f1b4c436924c6fb7334178c5ad4fa07e5df8277', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:23.175665+00', 2439, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44102, X'5298db39e52692b5564e1ddd0a4956a796ae299755c95922156264c46f294712', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:42.559773+00', 262, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44103, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.260702+00', 355, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44104, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.180937+00', 942, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44105, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.183786+00', 1652, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44106, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.178913+00', 1753, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44107, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.323965+00', 1608, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44108, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.167637+00', 1791, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44109, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.322982+00', 1682, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44110, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.14522+00', 1909, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44111, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:57.996137+00', 227, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44112, X'500d5000cca215622a573ffff9f41f32dd86db4a41fdd91f55b6e1b2daf339c9', TIMESTAMP WITH TIME ZONE '2023-01-24 13:50:03.327412+00', 175, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44113, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-24 13:50:09.767006+00', 270, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44114, X'500d5000cca215622a573ffff9f41f32dd86db4a41fdd91f55b6e1b2daf339c9', TIMESTAMP WITH TIME ZONE '2023-01-24 13:50:15.226661+00', 168, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44115, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.25243+00', 3155, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44116, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.261832+00', 3149, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44117, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.254118+00', 3157, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44118, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.256768+00', 3301, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44119, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.25207+00', 3304, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44120, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.252015+00', 3448, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44121, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.263501+00', 3685, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44122, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.252091+00', 4954, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44123, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:22.252015+00', 4971, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44124, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.649879+00', 823, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44125, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.496008+00', 3494, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44126, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.862053+00', 3205, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44127, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.409985+00', 3668, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44128, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.547291+00', 3705, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44129, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.337486+00', 3951, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44130, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.306981+00', 3981, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44131, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:44.695213+00', 3598, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44132, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.445156+00', 349, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44133, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.452851+00', 492, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44134, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.470698+00', 499, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44135, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.456616+00', 568, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44136, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.480781+00', 580, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44137, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.47466+00', 703, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44138, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.546683+00', 793, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44139, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.47631+00', 895, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44140, X'2a9ddb6cb6ceffb5b75de45d35b73a3e32055492f6573cad277e857be5ba2b21', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:17.830561+00', 544, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44141, X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:17.912665+00', 612, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44142, X'25aa76fcaf173971c6613006007b91f835d3b63c9916cea488b98462fda13f55', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:17.891584+00', 689, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44143, X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:17.877595+00', 703, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44144, X'e619c2c27e276f29d3cf25f39f1bd4dc282bfdc6d625b694287f8d7e6ea321c7', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:17.983601+00', 687, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44145, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.021866+00', 693, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44146, X'ca0d8287d7e0f8223c6f735dc0db1033ad49a50bd74d1cec20fe652d2b89ff3b', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:17.946985+00', 765, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44147, X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:17.954055+00', 756, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44148, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.382992+00', 1231, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44149, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.395459+00', 1792, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44150, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.333434+00', 2707, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44151, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.372163+00', 2734, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44152, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.338393+00', 2865, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44153, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.435452+00', 2904, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44154, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.754707+00', 2870, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44155, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.337365+00', 5083, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44156, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:33.341045+00', 5161, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44157, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.795194+00', 2550, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44158, X'62462821b96fddd66cc499aaba9117a56d997848d80a2daf08cb520c3d0e54df', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.777156+00', 3047, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44159, X'00a5db861c377ac1520c6c81739fa36126f21cab1503423df547b7c7dfa675f6', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.81634+00', 3126, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44160, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.821146+00', 3185, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44161, X'bf5c1b872026ae30ce07ef6bfbf8b34a2fa734d84cce04b3db68b9a40236828d', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.713685+00', 3328, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44162, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.811211+00', 3266, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44163, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.817692+00', 3596, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44164, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.735875+00', 4131, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44165, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:29.810981+00', 4069, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44166, X'856f0b1cdea96a18d4da66d1d02ccc21e70bbe9159b98813ba8c49849f8ce52e', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.41099+00', 297, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44167, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.421221+00', 299, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44168, X'674350c63171f782f84b143b1926411cfd121b491352ba0e4c78bc57e1e4c84a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.377355+00', 436, 7, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44169, X'02be1e802e7b9770b64b8ffb46e3fce9735628ca5eefefaf570b1a8403484cbc', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.417077+00', 447, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44170, X'fe734e2ae9e9b7e2f51602674f68b81b47d409f1b77470591678b80f43e25e47', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.417068+00', 502, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44171, X'288d9c04b83c3503ec8df6fc8587e3cd00d8e4b19be7b47cb1c7b685c3e4fa14', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.464647+00', 457, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44172, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.495342+00', 535, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44173, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.227912+00', 975, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44174, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.246338+00', 966, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44175, X'fe9b611222e91c0ad89f11936022323028cd68e0708cd51ab8db7f34f967dfdd', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.69466+00', 467, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44176, X'53bbe7dcecc5ac968a003d0d662c0a94a9e3614205f03471be6fae80d5b4273d', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.645999+00', 518, 7, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44177, X'c70945606e7d8f1384344cfd34e39a6484edc625b2c2f28336134e140939f493', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.563986+00', 704, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44178, X'264373257055d61325042782082f2842ffb65dadfef51b52767a877f375609c7', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.635204+00', 662, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44179, X'94a9df876f95db512f9fb3675b95d5d2fe6d2c30049fa9fd30804d3fb73db961', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.66202+00', 631, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44180, X'b56a9bd37b1a80e722506ad1bad21df477481557562b70d66c646c026166ec7a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.641873+00', 848, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44181, X'b56a9bd37b1a80e722506ad1bad21df477481557562b70d66c646c026166ec7a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.641873+00', 1072, 0, TRUE, 'dashboard', 'Broken pipe', 1, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44182, X'b2361cfc8128d9cd687b5eca611fd86540e3fafe5fcd2766c7ef43911f715976', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.60523+00', 1225, 0, TRUE, 'dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', 1, 1, 2, NULL, 3, NULL), +(44183, X'e4be35391a595ec229451d97f1e2cd239f69de0b5640dcb76caa806509b6dd4b', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.564556+00', 1507, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44184, X'e4be35391a595ec229451d97f1e2cd239f69de0b5640dcb76caa806509b6dd4b', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.564556+00', 1615, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(44185, X'10b226cbfd7e723a1f400d94518fc74385e4446881fe23b93b083b523618a6db', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.652453+00', 1611, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44186, X'd284aa98188a476e8a248d8b315f926e71da1f36d7115738ad1e4b45a5a83526', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.588049+00', 789, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44187, X'10b226cbfd7e723a1f400d94518fc74385e4446881fe23b93b083b523618a6db', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:02.652453+00', 1731, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(44188, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:04.046843+00', 1067, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44189, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.72878+00', 1364, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44190, X'b7852f13d304c345a15a033268bc05e9bdc86ac7a086e3883497e13856328148', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.801364+00', 1411, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44191, X'ff178efb916c3c4a3bcc0ccfd673a214046c6d8284f14cc60469e77fbdadd933', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.795349+00', 1315, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44192, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:04.034418+00', 1328, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44193, X'a54d9189036f108be8b4567615f55a279e3b10a6fef5dc4c87ca6d8b86c88495', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:04.033268+00', 1996, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44194, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.776498+00', 2264, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44195, X'8c8171596edcc6c910cb0b06c21859ad1550a3d2421a26246f366961296a21a0', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.885659+00', 4804, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44196, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.330856+00', 850, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44197, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.333977+00', 1673, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44198, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.287961+00', 1718, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44199, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.505179+00', 1756, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44200, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.396154+00', 1903, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(44201, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.502889+00', 1824, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44202, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.335779+00', 2013, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44203, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.480825+00', 1950, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44204, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.462838+00', 1636, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44205, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.349257+00', 1810, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44206, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.462205+00', 1637, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44207, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.52354+00', 1790, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44208, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.477778+00', 1907, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44209, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.471407+00', 2025, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44210, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.48605+00', 2436, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44211, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.491906+00', 3054, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44212, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:35.473342+00', 3178, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44213, X'60cd80dfd993811e75785bca6e865f603a331675183e2344739bd076ac0bab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.327917+00', 2910, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44214, X'84e9dad59f3b5e10e8802d655cbe7e789de487c5521d8106a9c8cd6ddd346531', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.635158+00', 3811, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44215, X'5023b374c0c9fd76981e58612017e1c5d54862009c81bcda31db6e421880ca01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.710509+00', 2969, 13, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44216, X'd7495a03fe019ba69457663674a9755dcf167cb5e4534c798223913300ac258e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.705944+00', 3004, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44217, X'3105f6ebb0c035616117e2a1c9d6334809b33c42f3557b4be83a1b9602f3d0eb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.634752+00', 4044, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44218, X'cedd9b796190cedccb9fcd5c082a43c935cbe407a688d68b1d40a675405a5d96', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.642382+00', 4378, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44219, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.171177+00', 3622, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44220, X'92a8d44b85c2c2e681574e7361841a1f223bb8668d9446a0200622011f18c818', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.329281+00', 3703, 32, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44221, X'd988ebd842599dabbbdff261942fd958477c0ef55723fcd8cbd86e7bd6ce277d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.281356+00', 3756, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44222, X'a63a5726e9cb6a5b21f4b237a8d8eed00e76d66b335a413bd81f93de45e26fd8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.836327+00', 3872, 8, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44223, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.707007+00', 3325, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44224, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.700139+00', 3046, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44225, X'de0186606c908a3ecb1088258fc2c14761e5277e71ed7d2586a98d5881c7d5dc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.674181+00', 3388, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44226, X'da6142e4ee9d1bf0136db760a0a0d92e7ef450281e36aab6606e52d546c9b47a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.701041+00', 4089, 5, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44227, X'3c1614ad7f59fb11b57bd3d63c9d344f89736652233e84d0e6ef0ce7c162076b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.842498+00', 4740, 13, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44228, X'bbc37d8fb196b946c618e7fcf8f9b52b6323ce1c1fe94c1b372651b14b1512e4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.733396+00', 3465, 556, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44229, X'212f9d7e6aae846af0c8faa25ca0ee05fc3b29737c627847c116e90d97c9eb1d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.327228+00', 3463, 31, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44230, X'c3fc15c9b7876ff53902af0a95fb3b73b218232fd60d0c5a3f8e7b4c98b94c8d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.138482+00', 3673, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44231, X'4b30cb07f443992feb36e60d93dc968328629189bd61d0a58305f239362e27d9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.837409+00', 4975, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44232, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.706121+00', 4108, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44233, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.138886+00', 3672, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44234, X'f09a1631c6147dc2f4106813d6202e6fcd94fbecb51ca5875f45ca64d6e31a6a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.490635+00', 3331, 28, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44235, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.194399+00', 3852, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44236, X'bdfc639809d5e17029d982525e56520be6a081b76b8fec4d5a0648dc67b2d553', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.692034+00', 4352, 15, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44237, X'680c6bdc769726057395ab45de92b419fd3c61916fc17aeaf36e2f96259d7a99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.478899+00', 3567, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44238, X'80b81fae0a5a6135b17e390b711bdf86fbda150289ec699e4f0d5d8e4a6818d3', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.497+00', 3622, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44239, X'b15fd376c4611a565ef8814399d2a4857c1fbe9375b9d815a16e61235bca64e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.359472+00', 3849, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44240, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.498848+00', 3742, 17, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44241, X'ccd08a2ee3d8a765e1e240c34f7ab3db01168999011b440faa65249fb57d63d2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.645698+00', 5598, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44242, X'6f607350a694f8dfad9de0ec18198ab8d89375eb57ac7d86cafc9331020b226d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.384315+00', 3764, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44243, X'8f28965e343d77c113ce9ba2f22ef8e8ac0dc0e99a45aa3764380732d83fbed1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.492544+00', 3785, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44244, X'37f4fb1444c141a27a9bd019c0e1488b199ce33b9d52e246652718149566228f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.349569+00', 3951, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44245, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.469406+00', 3880, 24, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44246, X'c6d2a0d6a1b9f34cfa7f3b3a604110c609e19d2ff521c79d0a50f802f7019d9d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.717093+00', 3299, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44247, X'5ad12d3c6f5b3a01bcdef494bf0a6b7240b44c51a1b6c5c386cb9bf451c2e831', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.495949+00', 3545, 19, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44248, X'9ad4eb7f33a173db5878b3e5782d5f12baa4416b5979be2d709a0ff1e5401624', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.489032+00', 3874, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44249, X'ccf03d1778b5d4ec1417e3e5e49e67ac71f3af60ea61f140ce194f8098958f18', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.714513+00', 3841, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44250, X'3eb5d3c0c1bf77da3b7d81f53c92642b3691b15b056a0cf3d629b8fc862677e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.279284+00', 2276, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44251, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.495395+00', 3870, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44252, X'2c8a706e7ee7301fc9bff437c9f362e51a22ebbf811347ca3091eaa65bac7a2b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.485198+00', 4028, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44253, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.703177+00', 5108, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44254, X'c6f444ebe5607b72ca97176981359c1d681cbccfb4b32127edcdad230dfb3bb2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.470974+00', 2126, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44255, X'1c08a9001715cb54a5f32128feb33d32d41a8c8d7ff5de54bde8539c27c2b5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.700987+00', 4662, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44256, X'3aceab9955f0503c6952b8f489fc85021e2b64e1da93cb0c374e3eeb5643e88f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.759605+00', 4892, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44257, X'f04bcddc57dcbb249bbd9cb1a150f2482bc37099706aff6b23c146fd0782e8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.90334+00', 4674, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44258, X'63ff490b06bc3586093b13326e3aa8142366b60289cdca64fdf3ac194facacda', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.49514+00', 4183, 16, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44259, X'dfc4c8add09a4b15d1a1aafef44c1b1722b7188e1e047a6e996387f7a17a19a6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.119817+00', 1954, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44260, X'946508b8daf0cc7a810f768aecc367e036faff0250165d20f703d94c408aedcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.423036+00', 4882, 547, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44261, X'a0785f68168ca3a0f7ca8f0c0f323dadd66fd7153ecc91685c0fa1737f964e99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.710544+00', 2773, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44262, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.210734+00', 1357, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44263, X'9aa818ed08b9ca736feb1a23498c5e9d22e3bcafb61c7a0de45522561c61ab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.698841+00', 5911, 26, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44264, X'00328835a9975115b9b42ab78510d33bb8ad6551da8c037391c4cfff0434847f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.498644+00', 5126, 33, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44265, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.894567+00', 5785, 729, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44266, X'3e844858ca92e5288c794a8ffb3b62782ed3befd821d9d316940f7c32247b507', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.861992+00', 1896, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44267, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.693603+00', 1134, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44268, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.823143+00', 7035, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44269, X'964075f646237b2a4937c2714a8e763fceb7afbf874b17de53e48c5ac033c477', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.160495+00', 2027, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44270, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.502303+00', 2734, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44271, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.877406+00', 3442, 368, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44272, X'55e8efc5881d5b75041098356695f45335c481a64785d65567781ef1322c8b00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.870058+00', 3623, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44273, X'2346a25361b88a163f99639bd729c1fb5429827a3eaada969f0d353ce5581c56', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.657534+00', 1885, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44274, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.82203+00', 2727, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44275, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.850392+00', 2761, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44276, X'8ca664995b329105780b6ea0b6ac9c796a94bb978785d82d056c27f23f9633b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.141733+00', 3478, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44277, X'6ea5334e5d1ed6305f0f7b413d96de8b941e69a8e2d7ce59f2f53fa43be3ab40', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.456658+00', 3177, 7, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44278, X'b47b84bb7b7dbb1721852cdbd6306b4ce9477133b66373266ce744bb62fc1399', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.207151+00', 2664, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44279, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.120063+00', 3893, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44280, X'8bc868c5d121ed454dde6e763d4754de866710a9cd8f8a90755f976e32ea6545', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.042853+00', 2833, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44281, X'345c24a9167280ced4013a254c846b700571b446ad58e28343e14f0ce364d7a7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.580909+00', 2470, 13, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44282, X'283c77fce65fca38495281e0a779acd9d41dfa423337e70cacb948238b8355f5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.349947+00', 2721, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44283, X'4bb0ffa03075ebd17232de7ea2f8bbc659d9db6104db636aae966b392ca4f469', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.209997+00', 2885, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44284, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.835299+00', 3349, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44285, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.242313+00', 3000, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44286, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.208454+00', 3039, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44287, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.078451+00', 4197, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44288, X'890be5a8c6086f1d5b81b327299efbbef8f1283f8f8c3fb5fbe7cfefef5154c6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.905072+00', 4375, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44289, X'37b1c2f163378fe861a61bc7e1fb8cd537611183c00f2344adc3c38ac4a526c7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.542759+00', 2770, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44290, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.540865+00', 2904, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44291, X'0d7df2380b62c1ff587dcff6c5eea5ca05cded8b21c99ced205cec927d4b6eed', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.446364+00', 4375, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44292, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.126443+00', 2693, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44293, X'0e53c9e1fe8480faf26c6d7d95e0122c483f541709f7f7a990a47bcba90b54bf', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.121043+00', 5221, 373, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44294, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.818164+00', 3564, 366, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44295, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.567213+00', 3782, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44296, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.759875+00', 2658, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44297, X'f3051e63ef4ba1e8b20ec0a2b5280e6b1bb89bdfd7acbe8c014eba0de00e80f9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.873076+00', 1632, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44298, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.91524+00', 2675, 24, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44299, X'85faea5575296e17d5da30714f175015268c8cb2f45aad240efdaab61d30e218', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.372738+00', 1266, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44300, X'44f2921dea1ea7a6217c1421e4e98e4a4acc1ac0f6657b0d00bd89476eb01e09', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.536159+00', 4111, 31, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44301, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.701294+00', 4389, 369, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44302, X'9980e8e88984fe6c185b8fe86f1d7e971aadb022ac1dd9a04e31c5aa59c529db', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.516335+00', 4624, 16, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44303, X'fd0a2389a464d7d5b69700246a99290a51b09bc5f3a54cd4fe4c4cee89abfc20', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.325154+00', 1881, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44304, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.734366+00', 4552, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44305, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.93552+00', 6381, 366, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44306, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.762342+00', 3601, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44307, X'f8d4e21283f01aef1a7854195fc2c3dfde0d9f404f03bc8988bbc5840138ce28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.923744+00', 6459, 372, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44308, X'a5b3d95e7a7ded7fbff49922c96c46587b9fbb520fc18dc098d120990ecc3d61', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.311725+00', 4272, 79, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44309, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.110586+00', 2622, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44310, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.35454+00', 5399, 531, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44311, X'a08ac374647d64945bb7c8d8b79f00a45692e2c49bfe2ca1b6d4edd5a12765a0', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.844831+00', 2008, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44312, X'50de3c7f70e849ac47e12470755890dd1d66b557cbd76b20d7d565cd6bcd6502', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.545722+00', 5516, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44313, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.562908+00', 5658, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44314, X'51dbaed004f09b92348e3f381067d7950def7f034d03e66705ea8aea7c34c45e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.544959+00', 6150, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44315, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.810426+00', 4959, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44316, X'ae7578ebf5304a5d28e61a6eaaa63e162383a2246e8f43579bee847925751226', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.758479+00', 5032, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44317, X'86646c342100be4d3e5a23e9fff74789196f14616d48d6ebf08731fc11cc31be', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.412467+00', 3441, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44318, X'3d1fabcc3a2642e49bf162975bc52f6690bfd559534da3068dbcf961dbacf876', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.627169+00', 4353, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44319, X'd4981558d67ad571c4ecced9c15ea3b9b759a8fde64c6179a6019bc919efd289', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.312836+00', 3636, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44320, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.300362+00', 3909, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44321, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.857373+00', 3351, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44322, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.37931+00', 3865, 17, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44323, X'a9b33e58fb041f70e0df877723c1dcd4bd760ae6641d0dd724560eaac17f95a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.625279+00', 4807, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44324, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.506396+00', 3777, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44325, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.405961+00', 3854, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44326, X'a895699d968a3899bd8abd88029e721999cc6f256ee4bea514b911bc01a41f3e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:44.610829+00', 2971, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44327, X'1a49cd7741b62d07dd8c80c7771da2173b090a5080c67e1160318bb2c8350cfc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.878284+00', 4894, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44328, X'4345a797141896b72ba3041b22337248b69b3ce01d0806e8956fa64583f6241d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.985101+00', 5797, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44329, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.352278+00', 4541, 748, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44330, X'273cdb762ca7dbcd80b111285339bf8a5945d24567122d76a3f0f9352307eeea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.628704+00', 8323, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44331, X'd456c769b4aa9011d8a081cc76ddf61af2a2da5eba5f28c4e68bcd5b45d8f783', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:44.610435+00', 3376, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44332, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:44.633824+00', 3405, 6, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44333, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:41.573369+00', 6468, 368, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44334, X'ab282fc10baf8cc47eb958d190be8949a35588c45350c24b76a82c5ae689149e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:44.633536+00', 3508, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44335, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.871283+00', 5636, 531, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44336, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.372885+00', 5295, 732, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44337, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.053225+00', 6615, 748, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44338, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.326897+00', 5395, 732, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44339, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:44.618099+00', 4191, 369, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44340, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:43.315868+00', 5507, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44341, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:44.585228+00', 4311, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44342, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.876669+00', 6187, 729, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44343, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.361401+00', 7622, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44344, X'fb43c163cf8941cb9ff6a62d2c1d7db47301fd7d9663be59e17119e58fcdd330', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.298219+00', 8012, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44345, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.852512+00', 17759, 2172, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44346, X'3e9b6fbb2e8f8867cba27ad177639daac1902d9d454ec51e78979c8b3c46b7ba', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.850109+00', 17959, 10000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44347, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:42.620913+00', 16007, 2172, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44348, X'3e5d26981092edffe0976d1876357036c0ceee1fa54c5eee8fa4a17c8e5dd8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.639829+00', 29383, 10000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44349, X'c00ae5509e99becc6d41e4c90095965162688464ebda17a820f2d37e0a3997d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:30.955572+00', 2849, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(44350, X'c00ae5509e99becc6d41e4c90095965162688464ebda17a820f2d37e0a3997d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:38.941052+00', 471, 729, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44351, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.878242+00', 1901, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(44352, X'84e9dad59f3b5e10e8802d655cbe7e789de487c5521d8106a9c8cd6ddd346531', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.722106+00', 2199, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44353, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.742544+00', 2139, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44354, X'84e9dad59f3b5e10e8802d655cbe7e789de487c5521d8106a9c8cd6ddd346531', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.722106+00', 2161, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44355, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.748453+00', 1916, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(44356, X'4b30cb07f443992feb36e60d93dc968328629189bd61d0a58305f239362e27d9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.742218+00', 2194, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44357, X'ccd08a2ee3d8a765e1e240c34f7ab3db01168999011b440faa65249fb57d63d2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.746603+00', 2201, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44358, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.74898+00', 2201, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44359, X'3eb5d3c0c1bf77da3b7d81f53c92642b3691b15b056a0cf3d629b8fc862677e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.751962+00', 2217, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44360, X'cedd9b796190cedccb9fcd5c082a43c935cbe407a688d68b1d40a675405a5d96', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.713246+00', 2248, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44361, X'3105f6ebb0c035616117e2a1c9d6334809b33c42f3557b4be83a1b9602f3d0eb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.824651+00', 2258, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44362, X'3105f6ebb0c035616117e2a1c9d6334809b33c42f3557b4be83a1b9602f3d0eb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.824651+00', 2251, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44363, X'3eb5d3c0c1bf77da3b7d81f53c92642b3691b15b056a0cf3d629b8fc862677e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.751962+00', 2365, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44364, X'4b30cb07f443992feb36e60d93dc968328629189bd61d0a58305f239362e27d9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.742218+00', 2020, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44365, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.742544+00', 3172, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44366, X'cedd9b796190cedccb9fcd5c082a43c935cbe407a688d68b1d40a675405a5d96', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.713246+00', 3175, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44367, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.74898+00', 3217, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44368, X'b15fd376c4611a565ef8814399d2a4857c1fbe9375b9d815a16e61235bca64e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.901318+00', 3192, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44369, X'ccd08a2ee3d8a765e1e240c34f7ab3db01168999011b440faa65249fb57d63d2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.746603+00', 3255, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44370, X'b15fd376c4611a565ef8814399d2a4857c1fbe9375b9d815a16e61235bca64e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.901318+00', 3335, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44371, X'3c1614ad7f59fb11b57bd3d63c9d344f89736652233e84d0e6ef0ce7c162076b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.717593+00', 4646, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44372, X'3c1614ad7f59fb11b57bd3d63c9d344f89736652233e84d0e6ef0ce7c162076b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.717593+00', 4709, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44373, X'680c6bdc769726057395ab45de92b419fd3c61916fc17aeaf36e2f96259d7a99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.856087+00', 4650, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44374, X'a63a5726e9cb6a5b21f4b237a8d8eed00e76d66b335a413bd81f93de45e26fd8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.817436+00', 4706, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44375, X'8f28965e343d77c113ce9ba2f22ef8e8ac0dc0e99a45aa3764380732d83fbed1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.248456+00', 4742, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44376, X'212f9d7e6aae846af0c8faa25ca0ee05fc3b29737c627847c116e90d97c9eb1d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.15636+00', 4836, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44377, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.750802+00', 4706, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44378, X'345c24a9167280ced4013a254c846b700571b446ad58e28343e14f0ce364d7a7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.387782+00', 4143, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44379, X'92a8d44b85c2c2e681574e7361841a1f223bb8668d9446a0200622011f18c818', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.75001+00', 5095, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44380, X'9980e8e88984fe6c185b8fe86f1d7e971aadb022ac1dd9a04e31c5aa59c529db', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.384078+00', 4571, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44381, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.750802+00', 5434, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44382, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.756689+00', 5536, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44383, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.756689+00', 5463, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44384, X'212f9d7e6aae846af0c8faa25ca0ee05fc3b29737c627847c116e90d97c9eb1d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.15636+00', 4989, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44385, X'80b81fae0a5a6135b17e390b711bdf86fbda150289ec699e4f0d5d8e4a6818d3', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.257412+00', 4926, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44386, X'80b81fae0a5a6135b17e390b711bdf86fbda150289ec699e4f0d5d8e4a6818d3', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.257412+00', 5024, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44387, X'5023b374c0c9fd76981e58612017e1c5d54862009c81bcda31db6e421880ca01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.19274+00', 5110, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44388, X'bbc37d8fb196b946c618e7fcf8f9b52b6323ce1c1fe94c1b372651b14b1512e4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.380921+00', 4975, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44389, X'd988ebd842599dabbbdff261942fd958477c0ef55723fcd8cbd86e7bd6ce277d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.25721+00', 5100, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44390, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.74973+00', 4639, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44391, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.74973+00', 4870, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44392, X'd988ebd842599dabbbdff261942fd958477c0ef55723fcd8cbd86e7bd6ce277d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.25721+00', 5365, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44393, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.156869+00', 5494, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44394, X'680c6bdc769726057395ab45de92b419fd3c61916fc17aeaf36e2f96259d7a99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.856087+00', 5480, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44395, X'8f28965e343d77c113ce9ba2f22ef8e8ac0dc0e99a45aa3764380732d83fbed1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.248456+00', 5387, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44396, X'9980e8e88984fe6c185b8fe86f1d7e971aadb022ac1dd9a04e31c5aa59c529db', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.384078+00', 5345, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44397, X'5023b374c0c9fd76981e58612017e1c5d54862009c81bcda31db6e421880ca01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.19274+00', 5161, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44398, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.156869+00', 5203, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44399, X'92a8d44b85c2c2e681574e7361841a1f223bb8668d9446a0200622011f18c818', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.75001+00', 6174, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44400, X'c6d2a0d6a1b9f34cfa7f3b3a604110c609e19d2ff521c79d0a50f802f7019d9d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.191858+00', 6088, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44401, X'c3fc15c9b7876ff53902af0a95fb3b73b218232fd60d0c5a3f8e7b4c98b94c8d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.246929+00', 6080, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44402, X'bbc37d8fb196b946c618e7fcf8f9b52b6323ce1c1fe94c1b372651b14b1512e4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.380921+00', 5333, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44403, X'f04bcddc57dcbb249bbd9cb1a150f2482bc37099706aff6b23c146fd0782e8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.106694+00', 6282, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44404, X'345c24a9167280ced4013a254c846b700571b446ad58e28343e14f0ce364d7a7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.387782+00', 5392, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44405, X'60cd80dfd993811e75785bca6e865f603a331675183e2344739bd076ac0bab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.249874+00', 6153, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44406, X'f04bcddc57dcbb249bbd9cb1a150f2482bc37099706aff6b23c146fd0782e8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.106694+00', 6118, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44407, X'5ad12d3c6f5b3a01bcdef494bf0a6b7240b44c51a1b6c5c386cb9bf451c2e831', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.386591+00', 6069, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44408, X'1c08a9001715cb54a5f32128feb33d32d41a8c8d7ff5de54bde8539c27c2b5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.388263+00', 6000, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44409, X'a63a5726e9cb6a5b21f4b237a8d8eed00e76d66b335a413bd81f93de45e26fd8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.817436+00', 5987, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44410, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.195015+00', 6300, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44411, X'9ad4eb7f33a173db5878b3e5782d5f12baa4416b5979be2d709a0ff1e5401624', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.373286+00', 6164, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44412, X'9aa818ed08b9ca736feb1a23498c5e9d22e3bcafb61c7a0de45522561c61ab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.25351+00', 6296, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44413, X'd7495a03fe019ba69457663674a9755dcf167cb5e4534c798223913300ac258e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.383736+00', 6035, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44414, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.748891+00', 5742, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44415, X'ccf03d1778b5d4ec1417e3e5e49e67ac71f3af60ea61f140ce194f8098958f18', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.241899+00', 6262, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44416, X'c6d2a0d6a1b9f34cfa7f3b3a604110c609e19d2ff521c79d0a50f802f7019d9d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.191858+00', 6453, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44417, X'890be5a8c6086f1d5b81b327299efbbef8f1283f8f8c3fb5fbe7cfefef5154c6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.74425+00', 5865, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44418, X'946508b8daf0cc7a810f768aecc367e036faff0250165d20f703d94c408aedcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.38386+00', 6115, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44419, X'3aceab9955f0503c6952b8f489fc85021e2b64e1da93cb0c374e3eeb5643e88f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.797527+00', 5991, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44420, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.748891+00', 6038, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44421, X'3e5d26981092edffe0976d1876357036c0ceee1fa54c5eee8fa4a17c8e5dd8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.752917+00', 7010, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44422, X'f09a1631c6147dc2f4106813d6202e6fcd94fbecb51ca5875f45ca64d6e31a6a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.383483+00', 6430, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44423, X'5ad12d3c6f5b3a01bcdef494bf0a6b7240b44c51a1b6c5c386cb9bf451c2e831', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.386591+00', 6426, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44424, X'946508b8daf0cc7a810f768aecc367e036faff0250165d20f703d94c408aedcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.38386+00', 6445, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44425, X'ccf03d1778b5d4ec1417e3e5e49e67ac71f3af60ea61f140ce194f8098958f18', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.241899+00', 6569, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44426, X'9ad4eb7f33a173db5878b3e5782d5f12baa4416b5979be2d709a0ff1e5401624', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.373286+00', 6479, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44427, X'9aa818ed08b9ca736feb1a23498c5e9d22e3bcafb61c7a0de45522561c61ab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.25351+00', 6568, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44428, X'3aceab9955f0503c6952b8f489fc85021e2b64e1da93cb0c374e3eeb5643e88f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.797527+00', 5805, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44429, X'c3fc15c9b7876ff53902af0a95fb3b73b218232fd60d0c5a3f8e7b4c98b94c8d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.246929+00', 6516, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44430, X'a5b3d95e7a7ded7fbff49922c96c46587b9fbb520fc18dc098d120990ecc3d61', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.732242+00', 6190, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44431, X'00328835a9975115b9b42ab78510d33bb8ad6551da8c037391c4cfff0434847f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.851075+00', 5982, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44432, X'a5b3d95e7a7ded7fbff49922c96c46587b9fbb520fc18dc098d120990ecc3d61', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.732242+00', 6157, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44433, X'd7495a03fe019ba69457663674a9755dcf167cb5e4534c798223913300ac258e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.383736+00', 6541, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44434, X'00328835a9975115b9b42ab78510d33bb8ad6551da8c037391c4cfff0434847f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.851075+00', 6077, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44435, X'1c08a9001715cb54a5f32128feb33d32d41a8c8d7ff5de54bde8539c27c2b5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.388263+00', 6437, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44436, X'60cd80dfd993811e75785bca6e865f603a331675183e2344739bd076ac0bab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.249874+00', 6777, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44437, X'3e5d26981092edffe0976d1876357036c0ceee1fa54c5eee8fa4a17c8e5dd8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.752917+00', 7269, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44438, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.828237+00', 6271, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44439, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.828237+00', 6319, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44440, X'44f2921dea1ea7a6217c1421e4e98e4a4acc1ac0f6657b0d00bd89476eb01e09', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.798834+00', 6427, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44441, X'890be5a8c6086f1d5b81b327299efbbef8f1283f8f8c3fb5fbe7cfefef5154c6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.74425+00', 6181, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44442, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.195015+00', 6990, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44443, X'f09a1631c6147dc2f4106813d6202e6fcd94fbecb51ca5875f45ca64d6e31a6a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.383483+00', 6547, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44444, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.851461+00', 6427, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44445, X'44f2921dea1ea7a6217c1421e4e98e4a4acc1ac0f6657b0d00bd89476eb01e09', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.798834+00', 6257, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44446, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.386172+00', 7035, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44447, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.851461+00', 6479, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44448, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.386172+00', 7049, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44449, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.913206+00', 2980, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44450, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:29.940864+00', 6953, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44451, X'dfc4c8add09a4b15d1a1aafef44c1b1722b7188e1e047a6e996387f7a17a19a6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.382675+00', 2511, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44452, X'86646c342100be4d3e5a23e9fff74789196f14616d48d6ebf08731fc11cc31be', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:30.134122+00', 6759, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44453, X'55e8efc5881d5b75041098356695f45335c481a64785d65567781ef1322c8b00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:29.420917+00', 7473, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44454, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.111203+00', 3782, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44455, X'2c8a706e7ee7301fc9bff437c9f362e51a22ebbf811347ca3091eaa65bac7a2b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.07363+00', 4820, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44456, X'964075f646237b2a4937c2714a8e763fceb7afbf874b17de53e48c5ac033c477', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:30.315772+00', 6579, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44457, X'f3051e63ef4ba1e8b20ec0a2b5280e6b1bb89bdfd7acbe8c014eba0de00e80f9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.297398+00', 4596, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44458, X'6f607350a694f8dfad9de0ec18198ab8d89375eb57ac7d86cafc9331020b226d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.986136+00', 3907, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44459, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.116131+00', 4777, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44460, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.067018+00', 3826, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44461, X'2346a25361b88a163f99639bd729c1fb5429827a3eaada969f0d353ce5581c56', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.324983+00', 4569, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44462, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.388567+00', 2505, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44463, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.243095+00', 2988, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44464, X'0d7df2380b62c1ff587dcff6c5eea5ca05cded8b21c99ced205cec927d4b6eed', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.451954+00', 3442, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44465, X'50de3c7f70e849ac47e12470755890dd1d66b557cbd76b20d7d565cd6bcd6502', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.770709+00', 2667, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44466, X'f3051e63ef4ba1e8b20ec0a2b5280e6b1bb89bdfd7acbe8c014eba0de00e80f9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.297398+00', 5215, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44467, X'4345a797141896b72ba3041b22337248b69b3ce01d0806e8956fa64583f6241d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.710021+00', 2737, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44468, X'3d1fabcc3a2642e49bf162975bc52f6690bfd559534da3068dbcf961dbacf876', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.068901+00', 3867, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44469, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.580827+00', 5313, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44470, X'0d7df2380b62c1ff587dcff6c5eea5ca05cded8b21c99ced205cec927d4b6eed', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.451954+00', 4069, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44471, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:35.139487+00', 2309, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44472, X'3d1fabcc3a2642e49bf162975bc52f6690bfd559534da3068dbcf961dbacf876', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.068901+00', 4452, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44473, X'2346a25361b88a163f99639bd729c1fb5429827a3eaada969f0d353ce5581c56', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.324983+00', 5196, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44474, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.580827+00', 5941, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44475, X'55e8efc5881d5b75041098356695f45335c481a64785d65567781ef1322c8b00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:29.420917+00', 8107, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44476, X'2c8a706e7ee7301fc9bff437c9f362e51a22ebbf811347ca3091eaa65bac7a2b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.07363+00', 5440, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44477, X'dfc4c8add09a4b15d1a1aafef44c1b1722b7188e1e047a6e996387f7a17a19a6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.382675+00', 3145, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44478, X'50de3c7f70e849ac47e12470755890dd1d66b557cbd76b20d7d565cd6bcd6502', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.770709+00', 2758, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44479, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.111203+00', 4424, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44480, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.913206+00', 3603, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44481, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.388567+00', 3155, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44482, X'964075f646237b2a4937c2714a8e763fceb7afbf874b17de53e48c5ac033c477', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:30.315772+00', 7197, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44483, X'86646c342100be4d3e5a23e9fff74789196f14616d48d6ebf08731fc11cc31be', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:30.134122+00', 7404, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44484, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:29.940864+00', 7597, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44485, X'6f607350a694f8dfad9de0ec18198ab8d89375eb57ac7d86cafc9331020b226d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.986136+00', 4619, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44486, X'51dbaed004f09b92348e3f381067d7950def7f034d03e66705ea8aea7c34c45e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.962314+00', 2661, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44487, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.116131+00', 5419, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44488, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.067018+00', 4461, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44489, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:35.139487+00', 2410, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44490, X'4345a797141896b72ba3041b22337248b69b3ce01d0806e8956fa64583f6241d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.710021+00', 3019, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44491, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.92626+00', 2804, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44492, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.92626+00', 2748, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44493, X'51dbaed004f09b92348e3f381067d7950def7f034d03e66705ea8aea7c34c45e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.962314+00', 2964, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44494, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.235762+00', 1996, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44495, X'cedd9b796190cedccb9fcd5c082a43c935cbe407a688d68b1d40a675405a5d96', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.111008+00', 4716, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44496, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.046805+00', 2439, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44497, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.235762+00', 2277, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44498, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.046805+00', 2803, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44499, X'a08ac374647d64945bb7c8d8b79f00a45692e2c49bfe2ca1b6d4edd5a12765a0', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.309724+00', 2646, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44500, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.452218+00', 7799, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44501, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.452218+00', 8045, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44502, X'8ca664995b329105780b6ea0b6ac9c796a94bb978785d82d056c27f23f9633b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:35.891309+00', 3362, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44503, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:29.658734+00', 9716, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44504, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:37.505477+00', 1830, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44505, X'a08ac374647d64945bb7c8d8b79f00a45692e2c49bfe2ca1b6d4edd5a12765a0', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.309724+00', 2792, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44506, X'3e844858ca92e5288c794a8ffb3b62782ed3befd821d9d316940f7c32247b507', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.533105+00', 5842, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44507, X'd4981558d67ad571c4ecced9c15ea3b9b759a8fde64c6179a6019bc919efd289', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.451667+00', 6858, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44508, X'8ca664995b329105780b6ea0b6ac9c796a94bb978785d82d056c27f23f9633b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:35.891309+00', 4360, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44509, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:37.505477+00', 2958, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44510, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:29.658734+00', 10780, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44511, X'da6142e4ee9d1bf0136db760a0a0d92e7ef450281e36aab6606e52d546c9b47a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.755489+00', 7727, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44512, X'85faea5575296e17d5da30714f175015268c8cb2f45aad240efdaab61d30e218', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:35.942697+00', 4680, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44513, X'da6142e4ee9d1bf0136db760a0a0d92e7ef450281e36aab6606e52d546c9b47a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.755489+00', 7886, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44514, X'de0186606c908a3ecb1088258fc2c14761e5277e71ed7d2586a98d5881c7d5dc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.067263+00', 7559, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44515, X'd456c769b4aa9011d8a081cc76ddf61af2a2da5eba5f28c4e68bcd5b45d8f783', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.447878+00', 6259, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44516, X'37f4fb1444c141a27a9bd019c0e1488b199ce33b9d52e246652718149566228f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.067974+00', 7555, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44517, X'd4981558d67ad571c4ecced9c15ea3b9b759a8fde64c6179a6019bc919efd289', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.451667+00', 7323, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44518, X'3e844858ca92e5288c794a8ffb3b62782ed3befd821d9d316940f7c32247b507', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.533105+00', 6097, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44519, X'de0186606c908a3ecb1088258fc2c14761e5277e71ed7d2586a98d5881c7d5dc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.067263+00', 7815, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44520, X'd456c769b4aa9011d8a081cc76ddf61af2a2da5eba5f28c4e68bcd5b45d8f783', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.447878+00', 6447, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44521, X'85faea5575296e17d5da30714f175015268c8cb2f45aad240efdaab61d30e218', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:35.942697+00', 4870, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44522, X'a895699d968a3899bd8abd88029e721999cc6f256ee4bea514b911bc01a41f3e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.493214+00', 7621, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44523, X'37f4fb1444c141a27a9bd019c0e1488b199ce33b9d52e246652718149566228f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.067974+00', 7880, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44524, X'63ff490b06bc3586093b13326e3aa8142366b60289cdca64fdf3ac194facacda', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.271668+00', 8740, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44525, X'bdfc639809d5e17029d982525e56520be6a081b76b8fec4d5a0648dc67b2d553', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.736001+00', 8568, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44526, X'63ff490b06bc3586093b13326e3aa8142366b60289cdca64fdf3ac194facacda', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.271668+00', 8935, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44527, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.850068+00', 9394, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44528, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.983151+00', 9459, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44529, X'bdfc639809d5e17029d982525e56520be6a081b76b8fec4d5a0648dc67b2d553', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:32.736001+00', 8708, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44530, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.014589+00', 7308, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44531, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.983151+00', 9328, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44532, X'a895699d968a3899bd8abd88029e721999cc6f256ee4bea514b911bc01a41f3e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:33.493214+00', 7511, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44533, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:31.850068+00', 9481, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44534, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.820285+00', 6752, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44535, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.713581+00', 6796, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44536, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.30153+00', 5330, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44537, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.820285+00', 6627, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44538, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.68291+00', 5119, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44539, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.68291+00', 5354, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44540, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:37.905444+00', 7573, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44541, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.501872+00', 5170, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44542, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.014589+00', 7500, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44543, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.30153+00', 5482, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44544, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:38.842667+00', 6862, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44545, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:34.713581+00', 6987, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44546, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:36.501872+00', 5392, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44547, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:37.905444+00', 7686, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44548, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:38.842667+00', 6857, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44549, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:55.167837+00', 2571, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44550, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:55.167837+00', 2591, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44551, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:58.082528+00', 1740, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44552, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:58.082528+00', 2109, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44553, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:59.335571+00', 1255, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44554, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:59.335571+00', 1346, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44555, X'a0785f68168ca3a0f7ca8f0c0f323dadd66fd7153ecc91685c0fa1737f964e99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.072601+00', 2289, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44556, X'a0785f68168ca3a0f7ca8f0c0f323dadd66fd7153ecc91685c0fa1737f964e99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.072601+00', 2451, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44557, X'8bc868c5d121ed454dde6e763d4754de866710a9cd8f8a90755f976e32ea6545', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:59.337682+00', 3309, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44558, X'8bc868c5d121ed454dde6e763d4754de866710a9cd8f8a90755f976e32ea6545', TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:59.337682+00', 3517, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44559, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.363458+00', 2760, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44560, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.363458+00', 2788, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44561, X'37b1c2f163378fe861a61bc7e1fb8cd537611183c00f2344adc3c38ac4a526c7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.727769+00', 3660, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44562, X'1a49cd7741b62d07dd8c80c7771da2173b090a5080c67e1160318bb2c8350cfc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.91258+00', 3463, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44563, X'1a49cd7741b62d07dd8c80c7771da2173b090a5080c67e1160318bb2c8350cfc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.91258+00', 3568, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44564, X'37b1c2f163378fe861a61bc7e1fb8cd537611183c00f2344adc3c38ac4a526c7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.727769+00', 3873, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44565, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.137745+00', 5110, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44566, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:01.479271+00', 5549, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44567, X'f8d4e21283f01aef1a7854195fc2c3dfde0d9f404f03bc8988bbc5840138ce28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:02.764069+00', 4268, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44568, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:01.189785+00', 5906, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44569, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:01.479271+00', 6554, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44570, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:01.189785+00', 6841, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44571, X'f8d4e21283f01aef1a7854195fc2c3dfde0d9f404f03bc8988bbc5840138ce28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:02.764069+00', 5508, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44572, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:00.137745+00', 10468, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44573, X'fd0a2389a464d7d5b69700246a99290a51b09bc5f3a54cd4fe4c4cee89abfc20', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.746466+00', 8262, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44574, X'b47b84bb7b7dbb1721852cdbd6306b4ce9477133b66373266ce744bb62fc1399', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.447808+00', 7782, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44575, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.742632+00', 9569, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44576, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.443786+00', 9867, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44577, X'ae7578ebf5304a5d28e61a6eaaa63e162383a2246e8f43579bee847925751226', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.989097+00', 9323, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44578, X'ae7578ebf5304a5d28e61a6eaaa63e162383a2246e8f43579bee847925751226', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.989097+00', 9351, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44579, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.742632+00', 9597, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44580, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.443786+00', 9900, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44581, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.993254+00', 10602, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44582, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.607486+00', 6938, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44583, X'b47b84bb7b7dbb1721852cdbd6306b4ce9477133b66373266ce744bb62fc1399', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.447808+00', 8986, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44584, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.993254+00', 10380, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44585, X'fd0a2389a464d7d5b69700246a99290a51b09bc5f3a54cd4fe4c4cee89abfc20', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.746466+00', 10596, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44586, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.607486+00', 6767, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44587, X'fb43c163cf8941cb9ff6a62d2c1d7db47301fd7d9663be59e17119e58fcdd330', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.531763+00', 7397, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44588, X'6ea5334e5d1ed6305f0f7b413d96de8b941e69a8e2d7ce59f2f53fa43be3ab40', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.029393+00', 8946, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44589, X'55e8efc5881d5b75041098356695f45335c481a64785d65567781ef1322c8b00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.69047+00', 7704, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44590, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.234861+00', 8180, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44591, X'fb43c163cf8941cb9ff6a62d2c1d7db47301fd7d9663be59e17119e58fcdd330', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.531763+00', 7931, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44592, X'55e8efc5881d5b75041098356695f45335c481a64785d65567781ef1322c8b00', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.69047+00', 7911, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44593, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.234861+00', 7806, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44594, X'6ea5334e5d1ed6305f0f7b413d96de8b941e69a8e2d7ce59f2f53fa43be3ab40', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.029393+00', 10235, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44595, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.174948+00', 10233, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44596, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.545793+00', 10599, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44597, X'ab282fc10baf8cc47eb958d190be8949a35588c45350c24b76a82c5ae689149e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.992373+00', 13489, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44598, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.740955+00', 12591, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44599, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.740798+00', 12751, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44600, X'4b30cb07f443992feb36e60d93dc968328629189bd61d0a58305f239362e27d9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.058046+00', 12200, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44601, X'3d1fabcc3a2642e49bf162975bc52f6690bfd559534da3068dbcf961dbacf876', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.81943+00', 12542, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44602, X'ab282fc10baf8cc47eb958d190be8949a35588c45350c24b76a82c5ae689149e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:04.992373+00', 14788, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44603, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.740955+00', 14044, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44604, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.740798+00', 14084, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44605, X'a9b33e58fb041f70e0df877723c1dcd4bd760ae6641d0dd724560eaac17f95a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.119016+00', 14125, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44606, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.268763+00', 13711, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44607, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.545793+00', 12383, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44608, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.174948+00', 11611, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44609, X'4b30cb07f443992feb36e60d93dc968328629189bd61d0a58305f239362e27d9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.058046+00', 14722, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44610, X'c6f444ebe5607b72ca97176981359c1d681cbccfb4b32127edcdad230dfb3bb2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.740565+00', 14260, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44611, X'3d1fabcc3a2642e49bf162975bc52f6690bfd559534da3068dbcf961dbacf876', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.81943+00', 14941, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44612, X'5ad12d3c6f5b3a01bcdef494bf0a6b7240b44c51a1b6c5c386cb9bf451c2e831', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.57789+00', 14311, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44613, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.268763+00', 15368, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44614, X'a9b33e58fb041f70e0df877723c1dcd4bd760ae6641d0dd724560eaac17f95a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.119016+00', 17418, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44615, X'5ad12d3c6f5b3a01bcdef494bf0a6b7240b44c51a1b6c5c386cb9bf451c2e831', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.57789+00', 17726, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44616, X'9ad4eb7f33a173db5878b3e5782d5f12baa4416b5979be2d709a0ff1e5401624', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:09.491897+00', 15813, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44617, X'9ad4eb7f33a173db5878b3e5782d5f12baa4416b5979be2d709a0ff1e5401624', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:09.491897+00', 13155, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44618, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.732188+00', 20111, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44619, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.240603+00', 17656, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44620, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.459538+00', 19435, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44621, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.586921+00', 18698, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44622, X'c6f444ebe5607b72ca97176981359c1d681cbccfb4b32127edcdad230dfb3bb2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.740565+00', 20513, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44623, X'92a8d44b85c2c2e681574e7361841a1f223bb8668d9446a0200622011f18c818', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.718228+00', 19867, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44624, X'6ea5334e5d1ed6305f0f7b413d96de8b941e69a8e2d7ce59f2f53fa43be3ab40', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.74087+00', 21935, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44625, X'37b1c2f163378fe861a61bc7e1fb8cd537611183c00f2344adc3c38ac4a526c7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:09.49125+00', 17674, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44626, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.459538+00', 21133, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44627, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.240603+00', 19364, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44628, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.732188+00', 21860, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44629, X'4bb0ffa03075ebd17232de7ea2f8bbc659d9db6104db636aae966b392ca4f469', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.459451+00', 21205, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44630, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.694398+00', 20039, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44631, X'3c1614ad7f59fb11b57bd3d63c9d344f89736652233e84d0e6ef0ce7c162076b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.180487+00', 22033, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44632, X'0e53c9e1fe8480faf26c6d7d95e0122c483f541709f7f7a990a47bcba90b54bf', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.744569+00', 21992, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44633, X'd456c769b4aa9011d8a081cc76ddf61af2a2da5eba5f28c4e68bcd5b45d8f783', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.79996+00', 22237, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44634, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.694398+00', 22062, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44635, X'6ea5334e5d1ed6305f0f7b413d96de8b941e69a8e2d7ce59f2f53fa43be3ab40', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.74087+00', 25636, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44636, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.586921+00', 22780, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44637, X'9aa818ed08b9ca736feb1a23498c5e9d22e3bcafb61c7a0de45522561c61ab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.521985+00', 23976, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44638, X'3c1614ad7f59fb11b57bd3d63c9d344f89736652233e84d0e6ef0ce7c162076b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.180487+00', 26267, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44639, X'37b1c2f163378fe861a61bc7e1fb8cd537611183c00f2344adc3c38ac4a526c7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:09.49125+00', 21875, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44640, X'4bb0ffa03075ebd17232de7ea2f8bbc659d9db6104db636aae966b392ca4f469', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:06.459451+00', 25534, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44641, X'0e53c9e1fe8480faf26c6d7d95e0122c483f541709f7f7a990a47bcba90b54bf', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:05.744569+00', 28700, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44642, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.026798+00', 46719, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44643, X'273cdb762ca7dbcd80b111285339bf8a5945d24567122d76a3f0f9352307eeea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.395582+00', 45381, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44644, X'273cdb762ca7dbcd80b111285339bf8a5945d24567122d76a3f0f9352307eeea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:08.395582+00', 45626, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44645, X'9aa818ed08b9ca736feb1a23498c5e9d22e3bcafb61c7a0de45522561c61ab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.521985+00', 29932, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44646, X'92a8d44b85c2c2e681574e7361841a1f223bb8668d9446a0200622011f18c818', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.718228+00', 26806, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44647, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.026798+00', 46996, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44648, X'd456c769b4aa9011d8a081cc76ddf61af2a2da5eba5f28c4e68bcd5b45d8f783', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:07.79996+00', 29366, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44649, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:31.388926+00', 27625, 0, FALSE, 'ad-hoc', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "11" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', 1, NULL, NULL, NULL, 3, NULL), +(44650, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:29.746322+00', 29252, 0, FALSE, 'ad-hoc', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "11" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', 1, NULL, NULL, NULL, 3, NULL), +(44651, X'd988ebd842599dabbbdff261942fd958477c0ef55723fcd8cbd86e7bd6ce277d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:55.269662+00', 3719, 0, FALSE, 'ad-hoc', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "11" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', 1, NULL, NULL, NULL, 3, NULL), +(44652, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:31.785024+00', 27201, 0, FALSE, 'ad-hoc', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "11" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', 1, NULL, NULL, NULL, 3, NULL), +(44653, X'3eb5d3c0c1bf77da3b7d81f53c92642b3691b15b056a0cf3d629b8fc862677e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:55.214181+00', 3800, 0, FALSE, 'ad-hoc', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "11" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44654, X'ccd08a2ee3d8a765e1e240c34f7ab3db01168999011b440faa65249fb57d63d2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:56.054491+00', 15771, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44655, X'ccd08a2ee3d8a765e1e240c34f7ab3db01168999011b440faa65249fb57d63d2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:56.054491+00', 15946, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44656, X'2c8a706e7ee7301fc9bff437c9f362e51a22ebbf811347ca3091eaa65bac7a2b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.481863+00', 1231, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44657, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:59.563161+00', 13163, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44658, X'2c8a706e7ee7301fc9bff437c9f362e51a22ebbf811347ca3091eaa65bac7a2b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.481863+00', 1278, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44659, X'72bb8411ca840c836422a6fd79f781e843592d37b7891dca922fc2e1e04694da', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:59.563161+00', 13202, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44660, X'0e53c9e1fe8480faf26c6d7d95e0122c483f541709f7f7a990a47bcba90b54bf', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:08.358654+00', 4584, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44661, X'0e53c9e1fe8480faf26c6d7d95e0122c483f541709f7f7a990a47bcba90b54bf', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:08.358654+00', 4595, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44662, X'3aceab9955f0503c6952b8f489fc85021e2b64e1da93cb0c374e3eeb5643e88f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.060918+00', 2902, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44663, X'3aceab9955f0503c6952b8f489fc85021e2b64e1da93cb0c374e3eeb5643e88f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.060918+00', 2923, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44664, X'dfc4c8add09a4b15d1a1aafef44c1b1722b7188e1e047a6e996387f7a17a19a6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.69442+00', 3302, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44665, X'dfc4c8add09a4b15d1a1aafef44c1b1722b7188e1e047a6e996387f7a17a19a6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.69442+00', 3515, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44666, X'a08ac374647d64945bb7c8d8b79f00a45692e2c49bfe2ca1b6d4edd5a12765a0', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.29451+00', 2921, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44667, X'a08ac374647d64945bb7c8d8b79f00a45692e2c49bfe2ca1b6d4edd5a12765a0', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.29451+00', 2938, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44668, X'345c24a9167280ced4013a254c846b700571b446ad58e28343e14f0ce364d7a7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.285297+00', 3167, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44669, X'c6f444ebe5607b72ca97176981359c1d681cbccfb4b32127edcdad230dfb3bb2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.95107+00', 2591, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44670, X'c6f444ebe5607b72ca97176981359c1d681cbccfb4b32127edcdad230dfb3bb2', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.95107+00', 2613, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44671, X'fd0a2389a464d7d5b69700246a99290a51b09bc5f3a54cd4fe4c4cee89abfc20', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.496446+00', 4093, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44672, X'a63a5726e9cb6a5b21f4b237a8d8eed00e76d66b335a413bd81f93de45e26fd8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.374519+00', 3243, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44673, X'ab282fc10baf8cc47eb958d190be8949a35588c45350c24b76a82c5ae689149e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.145105+00', 2616, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44674, X'ab282fc10baf8cc47eb958d190be8949a35588c45350c24b76a82c5ae689149e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.145105+00', 2608, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44675, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.960139+00', 2887, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44676, X'345c24a9167280ced4013a254c846b700571b446ad58e28343e14f0ce364d7a7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.285297+00', 3552, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44677, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.960139+00', 2854, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44678, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:04.468843+00', 9862, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44679, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:04.468843+00', 9994, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44680, X'ae7578ebf5304a5d28e61a6eaaa63e162383a2246e8f43579bee847925751226', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.462055+00', 3241, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44681, X'ae7578ebf5304a5d28e61a6eaaa63e162383a2246e8f43579bee847925751226', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.462055+00', 3326, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44682, X'964075f646237b2a4937c2714a8e763fceb7afbf874b17de53e48c5ac033c477', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.035936+00', 4803, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44683, X'964075f646237b2a4937c2714a8e763fceb7afbf874b17de53e48c5ac033c477', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.035936+00', 4814, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44684, X'283c77fce65fca38495281e0a779acd9d41dfa423337e70cacb948238b8355f5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.931972+00', 3927, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44685, X'1c08a9001715cb54a5f32128feb33d32d41a8c8d7ff5de54bde8539c27c2b5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:00.772748+00', 14119, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44686, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.571046+00', 4377, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44687, X'283c77fce65fca38495281e0a779acd9d41dfa423337e70cacb948238b8355f5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.931972+00', 4054, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44688, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.571046+00', 4425, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44689, X'8ca664995b329105780b6ea0b6ac9c796a94bb978785d82d056c27f23f9633b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.252815+00', 4760, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44690, X'1c08a9001715cb54a5f32128feb33d32d41a8c8d7ff5de54bde8539c27c2b5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:00.772748+00', 14293, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44691, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.88598+00', 4201, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44692, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.278073+00', 4821, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44693, X'8ca664995b329105780b6ea0b6ac9c796a94bb978785d82d056c27f23f9633b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.252815+00', 4877, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44694, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.88598+00', 4250, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44695, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.278073+00', 4886, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44696, X'c6d2a0d6a1b9f34cfa7f3b3a604110c609e19d2ff521c79d0a50f802f7019d9d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.385481+00', 3849, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44697, X'8f28965e343d77c113ce9ba2f22ef8e8ac0dc0e99a45aa3764380732d83fbed1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.429304+00', 5772, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44698, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.375055+00', 3862, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44699, X'2346a25361b88a163f99639bd729c1fb5429827a3eaada969f0d353ce5581c56', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.490693+00', 3766, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44700, X'c6d2a0d6a1b9f34cfa7f3b3a604110c609e19d2ff521c79d0a50f802f7019d9d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.385481+00', 3892, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44701, X'2346a25361b88a163f99639bd729c1fb5429827a3eaada969f0d353ce5581c56', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.490693+00', 3790, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44702, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.375055+00', 3977, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44703, X'd7495a03fe019ba69457663674a9755dcf167cb5e4534c798223913300ac258e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.8287+00', 4538, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44704, X'212f9d7e6aae846af0c8faa25ca0ee05fc3b29737c627847c116e90d97c9eb1d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.357967+00', 6037, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44705, X'd7495a03fe019ba69457663674a9755dcf167cb5e4534c798223913300ac258e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.8287+00', 4633, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44706, X'212f9d7e6aae846af0c8faa25ca0ee05fc3b29737c627847c116e90d97c9eb1d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.357967+00', 6120, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44707, X'3e844858ca92e5288c794a8ffb3b62782ed3befd821d9d316940f7c32247b507', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.993742+00', 5518, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44708, X'8f28965e343d77c113ce9ba2f22ef8e8ac0dc0e99a45aa3764380732d83fbed1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.429304+00', 5860, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44709, X'85faea5575296e17d5da30714f175015268c8cb2f45aad240efdaab61d30e218', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.373098+00', 4175, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44710, X'85faea5575296e17d5da30714f175015268c8cb2f45aad240efdaab61d30e218', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.373098+00', 4202, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44711, X'4bb0ffa03075ebd17232de7ea2f8bbc659d9db6104db636aae966b392ca4f469', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.724985+00', 4998, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44712, X'3e844858ca92e5288c794a8ffb3b62782ed3befd821d9d316940f7c32247b507', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.993742+00', 5660, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44713, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.357229+00', 6558, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44714, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:58.360864+00', 17553, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44715, X'3105f6ebb0c035616117e2a1c9d6334809b33c42f3557b4be83a1b9602f3d0eb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:59.170773+00', 16671, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44716, X'3105f6ebb0c035616117e2a1c9d6334809b33c42f3557b4be83a1b9602f3d0eb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:59.170773+00', 16814, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44717, X'a0785f68168ca3a0f7ca8f0c0f323dadd66fd7153ecc91685c0fa1737f964e99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:01.152959+00', 14892, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44718, X'a0785f68168ca3a0f7ca8f0c0f323dadd66fd7153ecc91685c0fa1737f964e99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:01.152959+00', 14839, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44719, X'680c6bdc769726057395ab45de92b419fd3c61916fc17aeaf36e2f96259d7a99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:12.011253+00', 4091, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44720, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.357229+00', 6649, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44721, X'4bb0ffa03075ebd17232de7ea2f8bbc659d9db6104db636aae966b392ca4f469', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.724985+00', 5268, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44722, X'680c6bdc769726057395ab45de92b419fd3c61916fc17aeaf36e2f96259d7a99', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:12.011253+00', 4127, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44723, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:57:58.360864+00', 17663, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44724, X'44f2921dea1ea7a6217c1421e4e98e4a4acc1ac0f6657b0d00bd89476eb01e09', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.176497+00', 6226, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44725, X'44f2921dea1ea7a6217c1421e4e98e4a4acc1ac0f6657b0d00bd89476eb01e09', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.176497+00', 6261, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44726, X'a5b3d95e7a7ded7fbff49922c96c46587b9fbb520fc18dc098d120990ecc3d61', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.177563+00', 7522, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44727, X'273cdb762ca7dbcd80b111285339bf8a5945d24567122d76a3f0f9352307eeea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.600405+00', 6099, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44728, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:07.850674+00', 8856, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44729, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.431126+00', 5276, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44730, X'3e5d26981092edffe0976d1876357036c0ceee1fa54c5eee8fa4a17c8e5dd8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.065962+00', 7647, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44731, X'bdfc639809d5e17029d982525e56520be6a081b76b8fec4d5a0648dc67b2d553', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.469564+00', 6251, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44732, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.994903+00', 5732, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44733, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.382074+00', 6351, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44734, X'a5b3d95e7a7ded7fbff49922c96c46587b9fbb520fc18dc098d120990ecc3d61', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.177563+00', 7560, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44735, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:07.850674+00', 8899, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44736, X'3e5d26981092edffe0976d1876357036c0ceee1fa54c5eee8fa4a17c8e5dd8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:09.065962+00', 7679, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44737, X'56db54a1092f29fab681d4fad9e975def7fdcdfb51fb28d719fae29d7eb13fca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.994903+00', 5871, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44738, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:11.431126+00', 5440, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44739, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.382074+00', 6494, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44740, X'273cdb762ca7dbcd80b111285339bf8a5945d24567122d76a3f0f9352307eeea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.600405+00', 6287, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44741, X'3e9b6fbb2e8f8867cba27ad177639daac1902d9d454ec51e78979c8b3c46b7ba', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.520758+00', 6393, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44742, X'3e9b6fbb2e8f8867cba27ad177639daac1902d9d454ec51e78979c8b3c46b7ba', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.520758+00', 6409, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44743, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.991774+00', 6059, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44744, X'bdfc639809d5e17029d982525e56520be6a081b76b8fec4d5a0648dc67b2d553', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.469564+00', 6529, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44745, X'b58cb0530df4be986c4996df4a7cfce8f236de9769489c5056e58ae462feb7b7', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:10.991774+00', 6122, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44746, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:16.996059+00', 1687, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44747, X'7a6292e86423b20ad9e74da40f0a77eaa325c143c22709cbff53b89a2949089e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:16.996059+00', 1696, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44748, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:17.52108+00', 1577, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44749, X'bbc37d8fb196b946c618e7fcf8f9b52b6323ce1c1fe94c1b372651b14b1512e4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:17.010182+00', 2064, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44750, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:17.52108+00', 1840, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44751, X'bbc37d8fb196b946c618e7fcf8f9b52b6323ce1c1fe94c1b372651b14b1512e4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:17.010182+00', 2062, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44752, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:21.384777+00', 4508, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44753, X'34b47943d9e803c5e307485fddf6274e03e8d7bfde5b32f0df69277b2d1a6e5c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:21.384777+00', 4765, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44754, X'6f607350a694f8dfad9de0ec18198ab8d89375eb57ac7d86cafc9331020b226d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:25.592557+00', 2389, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44755, X'6f607350a694f8dfad9de0ec18198ab8d89375eb57ac7d86cafc9331020b226d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:25.592557+00', 2481, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44756, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:28.440061+00', 2516, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44757, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:28.440061+00', 2722, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44758, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:31.228838+00', 2248, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44759, X'cb71b1d9fddceb6c60c870e0b866c3d4e3f10c2c65fb9d84cfd2bfb998d4636e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:31.228838+00', 2483, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44760, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:32.532867+00', 3458, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44761, X'00328835a9975115b9b42ab78510d33bb8ad6551da8c037391c4cfff0434847f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:32.655436+00', 3664, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44762, X'00328835a9975115b9b42ab78510d33bb8ad6551da8c037391c4cfff0434847f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:32.655436+00', 3758, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44763, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:31.394399+00', 5065, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44764, X'0b55cead4b70f386696cae83025869c7d04269da8b01f76a2560bcea2a28718b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:31.394399+00', 5168, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44765, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:32.048826+00', 4603, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44766, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:35.133443+00', 2245, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44767, X'6b4c32429cca2ab392e949daf041ef6c5e30e673dfd914ae6bbf71d23631e564', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:32.048826+00', 5448, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44768, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:31.810396+00', 5684, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44769, X'b47b84bb7b7dbb1721852cdbd6306b4ce9477133b66373266ce744bb62fc1399', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:35.150523+00', 2607, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44770, X'b47b84bb7b7dbb1721852cdbd6306b4ce9477133b66373266ce744bb62fc1399', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:35.150523+00', 2640, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44771, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:35.099747+00', 3097, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44772, X'bd5d34cf6e2fd54cc1165461c2397c51e1f32ac68b2f3f539f5dba619f9849d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:35.099747+00', 3114, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44773, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:36.580537+00', 1799, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44774, X'60cd80dfd993811e75785bca6e865f603a331675183e2344739bd076ac0bab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:36.372008+00', 2162, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44775, X'd4981558d67ad571c4ecced9c15ea3b9b759a8fde64c6179a6019bc919efd289', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.576781+00', 1004, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44776, X'60cd80dfd993811e75785bca6e865f603a331675183e2344739bd076ac0bab8a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:36.372008+00', 2276, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44777, X'4e7de24ca29213a48f5cea029f7c91be1aebe73266a8c276f58cf8c9f6a15461', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:36.580537+00', 1865, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44778, X'c3fc15c9b7876ff53902af0a95fb3b73b218232fd60d0c5a3f8e7b4c98b94c8d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:35.288041+00', 3394, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44779, X'd4981558d67ad571c4ecced9c15ea3b9b759a8fde64c6179a6019bc919efd289', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.576781+00', 1218, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44780, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.015061+00', 1846, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44781, X'5023b374c0c9fd76981e58612017e1c5d54862009c81bcda31db6e421880ca01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.580954+00', 1285, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44782, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.015061+00', 1888, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44783, X'b15fd376c4611a565ef8814399d2a4857c1fbe9375b9d815a16e61235bca64e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.583424+00', 1288, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44784, X'c3fc15c9b7876ff53902af0a95fb3b73b218232fd60d0c5a3f8e7b4c98b94c8d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:35.288041+00', 3657, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44785, X'b15fd376c4611a565ef8814399d2a4857c1fbe9375b9d815a16e61235bca64e1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.583424+00', 1414, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44786, X'5023b374c0c9fd76981e58612017e1c5d54862009c81bcda31db6e421880ca01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.580954+00', 1449, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44787, X'63ff490b06bc3586093b13326e3aa8142366b60289cdca64fdf3ac194facacda', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.515834+00', 1952, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44788, X'63ff490b06bc3586093b13326e3aa8142366b60289cdca64fdf3ac194facacda', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.515834+00', 1956, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44789, X'9980e8e88984fe6c185b8fe86f1d7e971aadb022ac1dd9a04e31c5aa59c529db', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.511105+00', 2069, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44790, X'9980e8e88984fe6c185b8fe86f1d7e971aadb022ac1dd9a04e31c5aa59c529db', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.511105+00', 2075, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44791, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.948939+00', 2045, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44792, X'f8d4e21283f01aef1a7854195fc2c3dfde0d9f404f03bc8988bbc5840138ce28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.303214+00', 1786, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44793, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.210623+00', 1847, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44794, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.210623+00', 2100, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44795, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.948939+00', 2317, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44796, X'f04bcddc57dcbb249bbd9cb1a150f2482bc37099706aff6b23c146fd0782e8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.594009+00', 3027, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44797, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.494531+00', 3035, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44798, X'f04bcddc57dcbb249bbd9cb1a150f2482bc37099706aff6b23c146fd0782e8d8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.594009+00', 3218, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44799, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.069141+00', 1899, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44800, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.945742+00', 2038, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44801, X'f3051e63ef4ba1e8b20ec0a2b5280e6b1bb89bdfd7acbe8c014eba0de00e80f9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.845099+00', 1144, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44802, X'0d7df2380b62c1ff587dcff6c5eea5ca05cded8b21c99ced205cec927d4b6eed', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.061951+00', 2914, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44803, X'7d2c2f88eaf52007bd9043d366ca50afa3b2c2f6dfc6942d4a3b6a1dd9ba6b28', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.069141+00', 2104, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44804, X'f3051e63ef4ba1e8b20ec0a2b5280e6b1bb89bdfd7acbe8c014eba0de00e80f9', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.845099+00', 1340, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44805, X'0d7df2380b62c1ff587dcff6c5eea5ca05cded8b21c99ced205cec927d4b6eed', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.061951+00', 3124, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44806, X'3c37df4c0c0ce03ba56020c3d7a42d4a2536b2557c536a794138a86b779115a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.945742+00', 2285, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44807, X'f09a1631c6147dc2f4106813d6202e6fcd94fbecb51ca5875f45ca64d6e31a6a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.979416+00', 1294, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44808, X'f09a1631c6147dc2f4106813d6202e6fcd94fbecb51ca5875f45ca64d6e31a6a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.979416+00', 1410, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44809, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.767351+00', 3879, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44810, X'ca11773973257c7d86eb15b3e62aa81bede9ef999c19c30ff38b94b8d076923c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:37.767351+00', 4150, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44811, X'37f4fb1444c141a27a9bd019c0e1488b199ce33b9d52e246652718149566228f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.176513+00', 1764, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44812, X'37f4fb1444c141a27a9bd019c0e1488b199ce33b9d52e246652718149566228f', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.176513+00', 1846, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44813, X'283c77fce65fca38495281e0a779acd9d41dfa423337e70cacb948238b8355f5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.915221+00', 1554, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44814, X'283c77fce65fca38495281e0a779acd9d41dfa423337e70cacb948238b8355f5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.915221+00', 1666, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44815, X'ccf03d1778b5d4ec1417e3e5e49e67ac71f3af60ea61f140ce194f8098958f18', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.172347+00', 2554, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44816, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.943825+00', 2923, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44817, X'de0186606c908a3ecb1088258fc2c14761e5277e71ed7d2586a98d5881c7d5dc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.417398+00', 2387, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44818, X'498fa867406a98443c2eac02029e43d82d4c4bafc4c63ac0b169c22906e55fc4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:39.943825+00', 3121, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44819, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.978174+00', 4106, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44820, X'ccf03d1778b5d4ec1417e3e5e49e67ac71f3af60ea61f140ce194f8098958f18', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.172347+00', 2920, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44821, X'815e63c6935516ee627547df5b13eab634c89e461fb91b6bfe3460f1d046effb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:38.978174+00', 4360, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44822, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.826532+00', 1529, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44823, X'012892ecec082fd8359e8db75605a32abacbc2b7939ea755a298b733115c91ca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.826532+00', 1551, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44824, X'50de3c7f70e849ac47e12470755890dd1d66b557cbd76b20d7d565cd6bcd6502', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.456867+00', 1937, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44825, X'50de3c7f70e849ac47e12470755890dd1d66b557cbd76b20d7d565cd6bcd6502', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.456867+00', 2098, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44826, X'a9b33e58fb041f70e0df877723c1dcd4bd760ae6641d0dd724560eaac17f95a8', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.998601+00', 2058, 0, FALSE, 'ad-hoc', 'Cursor has been closed', 1, NULL, NULL, NULL, 3, NULL), +(44827, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.044913+00', 3315, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44828, X'5802429f0e5af10a321a99562cc72d1478f5339566a498556c2aac4836687ada', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.044913+00', 3376, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44829, X'3e9b6fbb2e8f8867cba27ad177639daac1902d9d454ec51e78979c8b3c46b7ba', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.176492+00', 3484, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44830, X'3e9b6fbb2e8f8867cba27ad177639daac1902d9d454ec51e78979c8b3c46b7ba', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.176492+00', 3890, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44831, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.565443+00', 4617, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44832, X'a92eae30c5b469e2bfddcbd27cb3b970d50cc1b41387cd1f391e296c4db28472', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.565443+00', 4706, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44833, X'a895699d968a3899bd8abd88029e721999cc6f256ee4bea514b911bc01a41f3e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:42.318273+00', 2964, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44834, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.385793+00', 4259, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44835, X'a895699d968a3899bd8abd88029e721999cc6f256ee4bea514b911bc01a41f3e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:42.318273+00', 3114, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44836, X'd952849ac0e299dae542a01860949f537659e26f3266a2285c61db078f9dd5d5', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.385793+00', 4459, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44837, X'86646c342100be4d3e5a23e9fff74789196f14616d48d6ebf08731fc11cc31be', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.916534+00', 3977, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44838, X'86646c342100be4d3e5a23e9fff74789196f14616d48d6ebf08731fc11cc31be', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.916534+00', 3958, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44839, X'51dbaed004f09b92348e3f381067d7950def7f034d03e66705ea8aea7c34c45e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.970753+00', 4562, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44840, X'84e9dad59f3b5e10e8802d655cbe7e789de487c5521d8106a9c8cd6ddd346531', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:43.514924+00', 3472, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44841, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:43.235755+00', 3728, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44842, X'608ee3a0cb8ef1cabd36efbbf9963b6f5d7cd0906a42d6e46de2e2b727f1bb4b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:43.235755+00', 3814, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44843, X'84e9dad59f3b5e10e8802d655cbe7e789de487c5521d8106a9c8cd6ddd346531', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:43.514924+00', 3570, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44844, X'51dbaed004f09b92348e3f381067d7950def7f034d03e66705ea8aea7c34c45e', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:41.970753+00', 5207, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44845, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:45.588788+00', 2131, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44846, X'581fc483d60ebdd6af6fc0dc7e40c1322851a00a1c5171f2d36546b76e1b604c', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:45.588788+00', 2211, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44847, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:46.392997+00', 3005, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44848, X'0da62fa90174526486f59f76badffd5008433901a46bdd9a9c2a0f4d82d44a7a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:46.392997+00', 3084, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44849, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:49.683218+00', 2205, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44850, X'9e7f750ae8d85e0fe66bf2392c66626592ed0963ff8d42185632af5fe03d7bcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:49.683218+00', 2253, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44851, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:51.020796+00', 1182, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44852, X'28df2c130193fb41782c0c16fc090c3133870b2c08eaf93df434a4057eb7e1f4', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:51.020796+00', 1457, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44853, X'1a49cd7741b62d07dd8c80c7771da2173b090a5080c67e1160318bb2c8350cfc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:50.460798+00', 3251, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44854, X'1a49cd7741b62d07dd8c80c7771da2173b090a5080c67e1160318bb2c8350cfc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:50.460798+00', 15072, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44855, X'da6142e4ee9d1bf0136db760a0a0d92e7ef450281e36aab6606e52d546c9b47a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:52.592788+00', 17947, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44856, X'da6142e4ee9d1bf0136db760a0a0d92e7ef450281e36aab6606e52d546c9b47a', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:52.592788+00', 18187, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44857, X'8bc868c5d121ed454dde6e763d4754de866710a9cd8f8a90755f976e32ea6545', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:55.918633+00', 14861, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44858, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:06.32012+00', 4527, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44859, X'fb43c163cf8941cb9ff6a62d2c1d7db47301fd7d9663be59e17119e58fcdd330', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:52.476483+00', 18585, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44860, X'034a516a653718383afa08ced6af3e1719705f5630b1c1d2c6264763770f1628', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:06.32012+00', 5017, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44861, X'fb43c163cf8941cb9ff6a62d2c1d7db47301fd7d9663be59e17119e58fcdd330', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:52.476483+00', 18922, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44862, X'8bc868c5d121ed454dde6e763d4754de866710a9cd8f8a90755f976e32ea6545', TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:55.918633+00', 15338, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44863, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:09.108046+00', 2924, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44864, X'4f30e19b76db47cd841e6807684cc7182433ce4ecfcd16dfe69cad671c7d8758', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:09.108046+00', 2946, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44865, X'946508b8daf0cc7a810f768aecc367e036faff0250165d20f703d94c408aedcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:11.360246+00', 893, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44866, X'946508b8daf0cc7a810f768aecc367e036faff0250165d20f703d94c408aedcc', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:11.360246+00', 1100, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44867, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.431985+00', 952, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44868, X'e9f195e9817e8c90def1253c457d9932c19aded0a9dce1adf7bb7ba1dcd62be1', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.431985+00', 1223, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44869, X'4345a797141896b72ba3041b22337248b69b3ce01d0806e8956fa64583f6241d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.651318+00', 1602, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44870, X'80b81fae0a5a6135b17e390b711bdf86fbda150289ec699e4f0d5d8e4a6818d3', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.976975+00', 1292, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44871, X'4345a797141896b72ba3041b22337248b69b3ce01d0806e8956fa64583f6241d', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.651318+00', 2070, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44872, X'80b81fae0a5a6135b17e390b711bdf86fbda150289ec699e4f0d5d8e4a6818d3', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.976975+00', 1724, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44873, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.826909+00', 1657, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44874, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.826909+00', 1683, 0, FALSE, 'dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(44875, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.931428+00', 2682, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44876, X'cbaf9c75eb4b18e0f3a09518b602037729400bec0d61234a244f60d4a9955026', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:12.931428+00', 2744, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44877, X'890be5a8c6086f1d5b81b327299efbbef8f1283f8f8c3fb5fbe7cfefef5154c6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.148326+00', 2943, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44878, X'890be5a8c6086f1d5b81b327299efbbef8f1283f8f8c3fb5fbe7cfefef5154c6', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.148326+00', 3173, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL), +(44879, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.759897+00', 2579, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44880, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.759897+00', 2603, 0, FALSE, 'dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(44881, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.217227+00', 2173, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44882, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.582943+00', 2821, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44883, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.217227+00', 2203, 0, TRUE, 'dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(44884, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.582943+00', 2856, 0, TRUE, 'dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(44885, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.081265+00', 2968, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44886, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.081265+00', 2972, 0, TRUE, 'dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(44887, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.566699+00', 3768, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44888, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.566699+00', 3788, 0, TRUE, 'dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(44889, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.604215+00', 3797, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44890, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.604215+00', 3817, 0, FALSE, 'dashboard', 'Closed', 1, 30, 2, NULL, 3, NULL), +(44891, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.762897+00', 3686, 0, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44892, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.762897+00', 3699, 0, TRUE, 'dashboard', 'Closed', 1, 33, 2, NULL, 3, NULL), +(44893, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.755149+00', 3719, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44894, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.755149+00', 3754, 0, FALSE, 'dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(44895, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.824856+00', 3866, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44896, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.824856+00', 3894, 0, TRUE, 'dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(44897, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.176628+00', 3938, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44898, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.176628+00', 4133, 0, FALSE, 'dashboard', 'Closed', 1, 30, 2, NULL, 3, NULL), +(44899, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:15.892085+00', 2483, 0, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44900, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:15.892085+00', 2498, 0, TRUE, 'dashboard', 'Closed', 1, 33, 2, NULL, 3, NULL), +(44901, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:15.194233+00', 3281, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44902, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.973691+00', 3521, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44903, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.973691+00', 3526, 0, FALSE, 'dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(44904, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.985932+00', 3792, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44905, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:16.221588+00', 2582, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44906, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.985932+00', 3872, 0, TRUE, 'dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(44907, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.961342+00', 4769, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44908, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:15.696711+00', 4037, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44909, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.958897+00', 4776, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44910, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:15.661896+00', 4115, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44911, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.14473+00', 6232, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(44912, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.14473+00', 6227, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44913, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.760408+00', 6658, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44914, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.760408+00', 6759, 0, TRUE, 'dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(44915, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.827188+00', 6963, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44916, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.827188+00', 6968, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(44917, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.538324+00', 7254, 0, TRUE, 'dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(44918, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:13.538324+00', 7252, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44919, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.964282+00', 5898, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44920, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:14.958417+00', 6066, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44921, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:15.601773+00', 7611, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44922, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.782412+00', 3350, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44923, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.782384+00', 3455, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44924, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:18.413194+00', 3012, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44925, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.782384+00', 3694, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44926, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.969516+00', 3554, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44927, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.810102+00', 3818, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44928, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.782402+00', 5105, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44929, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.782407+00', 5236, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44930, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:17.838807+00', 7328, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44931, X'968cf073e236a221396630059895f8382f2ec1669cabf44b1d05b02535f833ee', TIMESTAMP WITH TIME ZONE '2023-01-25 06:03:17.318405+00', 3848, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(44932, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-25 06:13:36.059961+00', 5159, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(44933, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-25 06:14:01.045354+00', 510, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44934, X'e7fd43846a14313063adf175753e94906da725c994f46de8222de81d1067bfda', TIMESTAMP WITH TIME ZONE '2023-01-25 06:14:13.242172+00', 3789, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 3, FALSE), +(44935, X'e7fd43846a14313063adf175753e94906da725c994f46de8222de81d1067bfda', TIMESTAMP WITH TIME ZONE '2023-01-25 06:15:04.191045+00', 12020, 4, TRUE, 'question', NULL, 1, 11, NULL, NULL, 3, FALSE), +(44936, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-25 06:16:35.781773+00', 7816, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(44937, X'43f13c0085bf85cba550609a9f06abcfe755e66e4c5ecbcb0ad79d0f7de8e5be', TIMESTAMP WITH TIME ZONE '2023-01-25 06:18:10.591224+00', 4151, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44938, X'2472f7165c04ee6d9361c1af7f051586ed5f35885479cf9003cc4df2b909e86f', TIMESTAMP WITH TIME ZONE '2023-01-25 06:21:55.395076+00', 6807, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44939, X'2048fb724d8209c9cfae523a5676ad04d9b9b2d10e116e8bc3a1b3903b2825bc', TIMESTAMP WITH TIME ZONE '2023-01-25 06:22:22.506693+00', 321, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 3, NULL), +(44940, X'2315cfff0c78f78276a3d0dc6ab4125782fe5b532d4bff73a5355651e2163d21', TIMESTAMP WITH TIME ZONE '2023-01-25 06:23:24.095575+00', 829, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '':''.', 1, NULL, NULL, NULL, 3, NULL), +(44941, X'ed7ea952698f3c9124fd4263e725c2770f368de64d17ee74deb7929340a9b89a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:23:34.402414+00', 48, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found '':''.', 1, NULL, NULL, NULL, 3, NULL), +(44942, X'ce753526a44c96ddfcce88b21f4aa4bfa00c4b1ac99ff25286d1b5d24aac2234', TIMESTAMP WITH TIME ZONE '2023-01-25 06:24:01.487684+00', 4941, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44943, X'ce753526a44c96ddfcce88b21f4aa4bfa00c4b1ac99ff25286d1b5d24aac2234', TIMESTAMP WITH TIME ZONE '2023-01-25 06:28:36.483+00', 7784, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44944, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-25 06:29:02.313858+00', 2009, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(44945, X'd11499bc7473a73e06294b4d61414cde895256ac7de660e3a04a34a60916b89f', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:07.193231+00', 7507, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(44946, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.528759+00', 4868, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44947, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.567952+00', 5443, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44948, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.469743+00', 5860, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44949, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.469825+00', 5976, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44950, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.555634+00', 5900, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44951, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.595645+00', 5962, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44952, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.579342+00', 6270, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44953, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.469785+00', 8589, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44954, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:36.609371+00', 8498, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44955, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.662406+00', 1122, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44956, X'd11499bc7473a73e06294b4d61414cde895256ac7de660e3a04a34a60916b89f', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:30.473454+00', 4542, 0, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(44957, X'd11499bc7473a73e06294b4d61414cde895256ac7de660e3a04a34a60916b89f', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:30.473454+00', 4575, 0, TRUE, 'question', 'Closed', 1, 1, NULL, NULL, 3, NULL), +(44958, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.683395+00', 2516, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44959, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.66164+00', 2560, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44960, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.682264+00', 2683, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44961, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.708692+00', 2672, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44962, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.722727+00', 2681, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44963, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.686862+00', 2984, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44964, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.789068+00', 3452, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44965, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:33.685791+00', 3558, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44966, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:44.399673+00', 354, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44967, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.267613+00', 534, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44968, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.292688+00', 668, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44969, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.273981+00', 719, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44970, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.278324+00', 798, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44971, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.290271+00', 835, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44972, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.468835+00', 719, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44973, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.178741+00', 1077, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44974, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.286572+00', 1164, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44975, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.156823+00', 1356, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44976, X'ffb8b8a281b34784d107b08738a92b18e50c0f938cd66d0a8bf5e09a2478f17d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:48:27.698856+00', 3542, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44977, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:57.569932+00', 392, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(44978, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.279728+00', 584, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(44979, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.188694+00', 2540, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(44980, X'a0d37996a015d095b48876b629124ce95fc0a09f7016e3228b8693dcdba3985b', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.298705+00', 2747, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(44981, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.277366+00', 3103, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(44982, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.224784+00', 3354, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(44983, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.341451+00', 3239, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(44984, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.332828+00', 3372, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(44985, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.262067+00', 3603, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(44986, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.289282+00', 3782, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(44987, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.073881+00', 357, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44988, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.096826+00', 620, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44989, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:04.989996+00', 785, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(44990, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.000843+00', 818, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(44991, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.116859+00', 734, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(44992, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.094826+00', 807, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44993, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:04.986025+00', 925, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(44994, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.124729+00', 838, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(44995, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:11.310861+00', 277, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(44996, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.582812+00', 339, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(44997, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.533081+00', 419, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(44998, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.568484+00', 578, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(44999, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.542281+00', 659, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45000, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.696663+00', 514, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45001, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.50977+00', 711, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45002, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.552794+00', 673, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45003, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.592256+00', 659, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45004, X'c8381264b9783072cb62fb647208d5fd47e9c72780875e6298863b912ec92c2a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:27.120691+00', 276, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(45005, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:35.949341+00', 366, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45006, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.332003+00', 155, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45007, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.348343+00', 337, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45008, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.320693+00', 365, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45009, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.332233+00', 401, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45010, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.361593+00', 398, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45011, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.3732+00', 418, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45012, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.399101+00', 476, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45013, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:41.453453+00', 261, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45014, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:44.818808+00', 568, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45015, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:44.92963+00', 766, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45016, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:44.908652+00', 862, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45017, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:44.894924+00', 975, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45018, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.01601+00', 896, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45019, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:44.916981+00', 1012, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45020, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.23764+00', 710, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45021, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:44.826455+00', 1142, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45022, X'414228d8fa046d3655bcb8a5967f7e1d8960a5af03b7fef114da773f7d714c0a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:56.521274+00', 246, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45023, X'e081fee49b0255b67a78e13e28f52f42f5ad842886889893662084bc93a139e3', TIMESTAMP WITH TIME ZONE '2023-01-25 06:51:03.492539+00', 203, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45024, X'45ca03798efda9b4a8d6a7538e9f7d222a87c02bab634fb0b2b5006702465fa2', TIMESTAMP WITH TIME ZONE '2023-01-25 06:51:38.449068+00', 26, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 3, NULL), +(45025, X'dc08f39221662229022f5ea1ee79795e41b015528b89f792ac4c31845057b624', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:06.226126+00', 95, 0, TRUE, 'ad-hoc', 'Command failed with error 40237 (Location40237): ''The $and accumulator is a unary operator'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674629513, "i" : 8 } }, "ok" : 0.0, "errmsg" : "The $and accumulator is a unary operator", "code" : 40237, "codeName" : "Location40237", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674629513, "i" : 8 } }, "signature" : { "hash" : { "$binary" : "HVClmMRm+5XrewltG27KmfDFCSw=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(45026, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:23.753615+00', 304, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(45027, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.276931+00', 249, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45028, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.272672+00', 554, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45029, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.308807+00', 534, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45030, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.353858+00', 572, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45031, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.35647+00', 593, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45032, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.313357+00', 644, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45033, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.300911+00', 706, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45034, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.256901+00', 762, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45035, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:56.060906+00', 318, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45036, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.689356+00', 324, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45037, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.311332+00', 1053, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45038, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.681603+00', 751, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45039, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.757097+00', 1110, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45040, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.686473+00', 1196, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45041, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.502468+00', 1383, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45042, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.68414+00', 1237, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45043, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:58.409722+00', 1512, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45044, X'c8381264b9783072cb62fb647208d5fd47e9c72780875e6298863b912ec92c2a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.938946+00', 516, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(45045, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.410573+00', 216, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45046, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.411467+00', 300, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45047, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.391356+00', 414, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45048, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.332822+00', 472, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45049, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.405607+00', 409, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45050, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.325949+00', 498, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45051, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.342742+00', 498, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45052, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.415853+00', 491, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45053, X'e6c448f5e13489fd3a4f3f87e2a689eab02e44d17ddecff19eb2b82aac5359bb', TIMESTAMP WITH TIME ZONE '2023-01-25 06:55:47.447609+00', 100, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 3, NULL), +(45054, X'77ea494f2292c42abe2d5fc319f164f9168fd87a252c0d533cdb6e55a423bda1', TIMESTAMP WITH TIME ZONE '2023-01-25 06:57:21.392467+00', 20, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''$addFields''.', 1, NULL, NULL, NULL, 3, NULL), +(45055, X'645b8f6b150e5bdef55f490e328008c9736dceef8c317dc1ab6ceda5ce374040', TIMESTAMP WITH TIME ZONE '2023-01-25 06:57:51.334827+00', 19, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 3, NULL), +(45056, X'af458204209dc8064466ecb323f4b220f3248933d4933aa557801c4800316291', TIMESTAMP WITH TIME ZONE '2023-01-25 06:58:58.635248+00', 1654, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45057, X'03f3486b45d4fa1b217fb2464d1398e205dfa0f484b296aeb352801032bb7165', TIMESTAMP WITH TIME ZONE '2023-01-25 06:59:44.082255+00', 489, 0, TRUE, 'ad-hoc', 'Command failed with error 40066 (Location40066): ''$switch could not find a matching branch for an input, and no default was specified.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674629979, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$switch could not find a matching branch for an input, and no default was specified.", "code" : 40066, "codeName" : "Location40066", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674629979, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "GoVg/63ZjNN4Ddzw6m0ePIYvthU=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(45058, X'03f3486b45d4fa1b217fb2464d1398e205dfa0f484b296aeb352801032bb7165', TIMESTAMP WITH TIME ZONE '2023-01-25 06:59:48.316334+00', 147, 0, TRUE, 'ad-hoc', 'Command failed with error 40066 (Location40066): ''$switch could not find a matching branch for an input, and no default was specified.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674629979, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$switch could not find a matching branch for an input, and no default was specified.", "code" : 40066, "codeName" : "Location40066", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674629979, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "GoVg/63ZjNN4Ddzw6m0ePIYvthU=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(45059, X'068aa85f89159f6dcf6c8b8067e5873c3f1c25f0b6ae5a2678efbb6e794f573a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:00:00.337475+00', 197, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45060, X'616ad9685649ebc086d8433db029c7c7a6b05315a612d594499bc02240b594f1', TIMESTAMP WITH TIME ZONE '2023-01-25 07:01:49.102304+00', 194, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45061, X'6976044a4481be4d84158e4021e7c57c386d3eac934351a4fcfd6f197f6022f3', TIMESTAMP WITH TIME ZONE '2023-01-25 07:02:17.318048+00', 177, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45062, X'6976044a4481be4d84158e4021e7c57c386d3eac934351a4fcfd6f197f6022f3', TIMESTAMP WITH TIME ZONE '2023-01-25 07:02:20.366884+00', 171, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45063, X'cc1c570327de49799f9f008ef2073b8ffd03678225025c10e155b2f23ffd5b0f', TIMESTAMP WITH TIME ZONE '2023-01-25 07:02:44.932526+00', 170, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45064, X'b30646dd2c1af8a3570ca5b73076d2913bd1cd38cecae75cff37bfb6979ea1a4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:02:51.914695+00', 25, 0, TRUE, 'ad-hoc', 'JSON reader was expecting '':'' but found ''}''.', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45065, X'cc1c570327de49799f9f008ef2073b8ffd03678225025c10e155b2f23ffd5b0f', TIMESTAMP WITH TIME ZONE '2023-01-25 07:03:01.693011+00', 191, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45066, X'e7ece429e528729277452039741aa6b68062fc80306386c6905cf0b76bd16345', TIMESTAMP WITH TIME ZONE '2023-01-25 07:03:23.512707+00', 21, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 3, NULL), +(45067, X'cc1c570327de49799f9f008ef2073b8ffd03678225025c10e155b2f23ffd5b0f', TIMESTAMP WITH TIME ZONE '2023-01-25 07:03:34.88092+00', 191, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45068, X'47ef61e50c337895297fc19f8a66256cb18afc59e0245c6418074dc0db431456', TIMESTAMP WITH TIME ZONE '2023-01-25 07:04:00.855476+00', 2251, 0, TRUE, 'ad-hoc', 'Command failed with error 40066 (Location40066): ''$switch could not find a matching branch for an input, and no default was specified.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674630233, "i" : 8 } }, "ok" : 0.0, "errmsg" : "$switch could not find a matching branch for an input, and no default was specified.", "code" : 40066, "codeName" : "Location40066", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674630233, "i" : 8 } }, "signature" : { "hash" : { "$binary" : "YjceloYjdpEm25T4BTehadhTTN0=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(45069, X'649bcd48f5525c11139a7011412aa80c391439beab5b03ee1480a0b50da37a60', TIMESTAMP WITH TIME ZONE '2023-01-25 07:04:25.58465+00', 309, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45070, X'a8f2c9672178e8ef9f629b182647914003076ad3014bb0e337bd3d853470062d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:04:42.565867+00', 181, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45071, X'c07c1cd910f6a70f50e084da173998dda32e15f10c2d6773f81b98a490fec223', TIMESTAMP WITH TIME ZONE '2023-01-25 07:04:57.308275+00', 188, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45072, X'3b2ca309b9020b2fd82c2fd1412e8f825649de9172253b61b6ffe99b913a68fe', TIMESTAMP WITH TIME ZONE '2023-01-25 07:05:04.033355+00', 205, 0, TRUE, 'ad-hoc', 'Command failed with error 40066 (Location40066): ''$switch could not find a matching branch for an input, and no default was specified.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674630293, "i" : 8 } }, "ok" : 0.0, "errmsg" : "$switch could not find a matching branch for an input, and no default was specified.", "code" : 40066, "codeName" : "Location40066", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674630293, "i" : 8 } }, "signature" : { "hash" : { "$binary" : "449dJqW+lbRVGUpfpOE0dK8NUYE=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(45073, X'c07c1cd910f6a70f50e084da173998dda32e15f10c2d6773f81b98a490fec223', TIMESTAMP WITH TIME ZONE '2023-01-25 07:05:19.490113+00', 211, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45074, X'0fbe818df324895584843994bc18b07541e1967f174a450f0176d24f853949f6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:05:59.273367+00', 281, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45075, X'80234084dee7553c901d4b95a14e2cdd6563caabbe16edb74abc3197923a26fd', TIMESTAMP WITH TIME ZONE '2023-01-25 07:06:21.983486+00', 237, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45076, X'f5eda6e5d2cd6f22e6262b7b2b623cdd333968879bacfaffd6e91e411b8fab2b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:07:12.025565+00', 477, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45077, X'c0b5b9a42ec3be2323806046c81f5f1e8f5b51d1974f48ad17d171578eea7f8c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:07:26.672686+00', 303, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45078, X'89e1db84e14717eb184b1b26b633c74fe590aa0dea832e64b0cd6f63e1a8e1f2', TIMESTAMP WITH TIME ZONE '2023-01-25 07:07:39.117973+00', 30, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45079, X'f4398b0861caecf8642532736a295c25d2af31997b2d96956db53f71cee803b4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:07:51.29375+00', 261, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45080, X'f2ccd4964a87f0cab6a7edad5422e5c1673d6689bb305d600e75405542565154', TIMESTAMP WITH TIME ZONE '2023-01-25 07:08:02.864859+00', 274, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45081, X'e2c44b02715818e660c9b1cfd45d70a20861c1f5e0d49596ef0592684ce46195', TIMESTAMP WITH TIME ZONE '2023-01-25 07:08:23.079174+00', 268, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45082, X'b974f963aca83b9748f1fc62f66807fd6f6f13769d688f41e226a92e453cfa64', TIMESTAMP WITH TIME ZONE '2023-01-25 07:09:12.910247+00', 257, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45083, X'2e7bea7f9f05faac1b7a9cd02188c6794851e0fcc2e7ce482728eb7751e40223', TIMESTAMP WITH TIME ZONE '2023-01-25 07:10:49.131182+00', 199, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45084, X'5afbeebeb348b608b7bb855004bd412a3f931a9d96680cd5fd2af18e5d908d6d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:10:53.332042+00', 12, 0, TRUE, 'ad-hoc', 'Invalid JSON number', 1, NULL, NULL, NULL, 3, NULL), +(45085, X'b974f963aca83b9748f1fc62f66807fd6f6f13769d688f41e226a92e453cfa64', TIMESTAMP WITH TIME ZONE '2023-01-25 07:10:56.508636+00', 253, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45086, X'e6d9804c46757bc4dff70607f31ec307efa783b5e02bf96ce14791e78d78cbd1', TIMESTAMP WITH TIME ZONE '2023-01-25 07:11:43.334914+00', 249, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45087, X'516b2afdc8d7be44341bcaca7bb160179a26577d2ed8e2db80e32e821540ec05', TIMESTAMP WITH TIME ZONE '2023-01-25 07:11:50.495714+00', 320, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45088, X'2d45d6075fc154b8ecbb6ea0bd930f0bcf1785f9917a80410bf662390d1d40be', TIMESTAMP WITH TIME ZONE '2023-01-25 07:12:34.248599+00', 38, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 3, NULL), +(45089, X'2d45d6075fc154b8ecbb6ea0bd930f0bcf1785f9917a80410bf662390d1d40be', TIMESTAMP WITH TIME ZONE '2023-01-25 07:12:38.20589+00', 17, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a name but found ''{''.', 1, NULL, NULL, NULL, 3, NULL), +(45090, X'95466524749fced004c613b8bfefc85ae6cd42fcc57abfa885ac97470932a1d6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:12:58.727204+00', 220, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45091, X'678cb80682ee30ed4b0a67d9747fb8204c08c08f323f26c20464244a73233a35', TIMESTAMP WITH TIME ZONE '2023-01-25 07:13:30.436222+00', 251, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45092, X'678cb80682ee30ed4b0a67d9747fb8204c08c08f323f26c20464244a73233a35', TIMESTAMP WITH TIME ZONE '2023-01-25 07:13:31.862277+00', 253, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45093, X'60d7f2bf87753f9ed260fe7105cc7f370a49495f18bfc68b4ce9c7cf3b29b761', TIMESTAMP WITH TIME ZONE '2023-01-25 07:13:39.85706+00', 257, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45094, X'1a4287340603570a4f24127c63b1c7040c9a0e276b94d70241f54e627e62b4f3', TIMESTAMP WITH TIME ZONE '2023-01-25 07:13:47.96332+00', 274, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45095, X'400e3b5834d262c1784da438aff25d32db17caa38aee5887fa1baae678f84ab2', TIMESTAMP WITH TIME ZONE '2023-01-25 07:13:52.274148+00', 244, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45096, X'8da6e35eefc79a35f29b93b0f56e44d8a1998fa898b567c763c1bf6b36f5e9fd', TIMESTAMP WITH TIME ZONE '2023-01-25 07:14:32.283074+00', 256, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45097, X'807319b39193b0f1c8c76a3f6780078873309332ca6a686f003a19633e0e82f5', TIMESTAMP WITH TIME ZONE '2023-01-25 07:14:41.043707+00', 263, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45098, X'436dd3a8fa5c1e364cfd92af19864cb33be491f6cd506dec618cc52b668d2775', TIMESTAMP WITH TIME ZONE '2023-01-25 07:14:48.787752+00', 11, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''category''.', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45099, X'e2c44b02715818e660c9b1cfd45d70a20861c1f5e0d49596ef0592684ce46195', TIMESTAMP WITH TIME ZONE '2023-01-25 07:14:57.74093+00', 262, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45100, X'0e3368ee2605dabba6566751a08551e8af769f73a6a75f807a1afe89ffb19edb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:16:55.805219+00', 293, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45101, X'73aa707f3fa90680140d5a4a70e3a83c46098c8ee7ec43277a5bc45f425c7bb2', TIMESTAMP WITH TIME ZONE '2023-01-25 07:17:14.272103+00', 262, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45102, X'3960a3da2c415faef1cae0356741ff693e51449c3729f3cf30ecd8482c0fde2b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:17:29.415541+00', 264, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45103, X'5dcc98156b6694b4e04496e9b703c6e7d46183517a529a7f60692f961fb5a157', TIMESTAMP WITH TIME ZONE '2023-01-25 07:18:05.294594+00', 295, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45104, X'3960a3da2c415faef1cae0356741ff693e51449c3729f3cf30ecd8482c0fde2b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:18:10.472115+00', 268, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45105, X'002499548466d7363c019e7dae9d0bf78843e7318ab17d94e720fb7cb0cbefff', TIMESTAMP WITH TIME ZONE '2023-01-25 07:18:21.285126+00', 291, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45106, X'1cf56eaec6c15043347776653b510f020b79b2fedf3b842c30bbb7a104ae1f00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:18:31.6744+00', 282, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45107, X'e22cf37f30dbf9279d8e6602cb7c73842e3f31951e0bcc3830797b9b9249e1d6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:26.789103+00', 215, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45108, X'1cf56eaec6c15043347776653b510f020b79b2fedf3b842c30bbb7a104ae1f00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:36.799137+00', 313, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45109, X'1cf56eaec6c15043347776653b510f020b79b2fedf3b842c30bbb7a104ae1f00', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:41.258624+00', 281, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45110, X'c99d9e191530354be9cd97a58d92953f5a0996e45fb4754552859b98c09990d5', TIMESTAMP WITH TIME ZONE '2023-01-25 07:19:48.438058+00', 200, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45111, X'e0d4d1692f4726e66bfed9ea9f16452a90cab0461f00acfce648f3533050be18', TIMESTAMP WITH TIME ZONE '2023-01-25 07:20:36.596906+00', 85, 0, TRUE, 'ad-hoc', 'Command failed with error 168 (InvalidPipelineOperator): ''Invalid $addFields :: caused by :: Unrecognized expression ''$project'''' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674631229, "i" : 1 } }, "ok" : 0.0, "errmsg" : "Invalid $addFields :: caused by :: Unrecognized expression ''$project''", "code" : 168, "codeName" : "InvalidPipelineOperator", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674631229, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "yR/PqroY9nwHwtLszGN+BfbJsKs=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(45112, X'7b449322be336f4d62b3a670148de558c37554f3c96f6e705ab544f139576f4c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:20:59.984445+00', 216, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45113, X'00033ac0fc89423fb651f7e4a8ba2cfa271ef2622942c56c8c66c46399f12d1c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:22:51.757407+00', 301, 0, TRUE, 'ad-hoc', 'Command failed with error 40066 (Location40066): ''$switch could not find a matching branch for an input, and no default was specified.'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674631369, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$switch could not find a matching branch for an input, and no default was specified.", "code" : 40066, "codeName" : "Location40066", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674631369, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "+E6347qXDZOUpZso5wgGRSrpWdE=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45114, X'2054b60a99c6b7a66fd4f167d904e836c72ed64dc0f086f4662014151f6380dc', TIMESTAMP WITH TIME ZONE '2023-01-25 07:22:56.231143+00', 7, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''default''.', 1, NULL, NULL, NULL, 3, NULL), +(45115, X'7b449322be336f4d62b3a670148de558c37554f3c96f6e705ab544f139576f4c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:23:01.416633+00', 236, 5, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45116, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:17.90791+00', 596, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(45117, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.319477+00', 367, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45118, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.272793+00', 932, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45119, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.144642+00', 1293, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45120, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.232091+00', 1223, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45121, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.337742+00', 1144, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45122, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.288675+00', 1232, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45123, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.287527+00', 1250, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45124, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.19292+00', 1351, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45125, X'd2371c7881db8d39de6c11087eaad896a40291689a1217cbef8e7629751208fd', TIMESTAMP WITH TIME ZONE '2023-01-25 07:27:02.160469+00', 262, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45126, X'ab285c9301e88148e508c4ba94c568a3b562c84822fa028b25d99238feb83460', TIMESTAMP WITH TIME ZONE '2023-01-25 07:27:23.317709+00', 217, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45127, X'fbc9881a83501a348a1c6cd3710fa96ffaebfcbd6cd274869c846538df6a6770', TIMESTAMP WITH TIME ZONE '2023-01-25 07:27:28.658778+00', 147, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45128, X'443595b88fdd0953937d11c0f2e5340f58e1b2d5a9bb3abc3c7d0a20766677bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:27:51.660528+00', 228, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45129, X'443595b88fdd0953937d11c0f2e5340f58e1b2d5a9bb3abc3c7d0a20766677bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:28:50.926158+00', 223, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45130, X'443595b88fdd0953937d11c0f2e5340f58e1b2d5a9bb3abc3c7d0a20766677bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:29:02.305391+00', 246, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45131, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:29:49.133976+00', 876, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45132, X'443595b88fdd0953937d11c0f2e5340f58e1b2d5a9bb3abc3c7d0a20766677bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:29:51.703715+00', 222, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45133, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.464783+00', 536, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45134, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.356883+00', 854, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45135, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.215483+00', 1069, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45136, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.410914+00', 910, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45137, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.41968+00', 955, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45138, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.170544+00', 1253, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45139, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.371307+00', 1314, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45140, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.164056+00', 2294, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45141, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:42.182701+00', 2331, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45142, X'6123a845ffa204a43a0d1945547006ab4ea992a40e82e07531046487d4cc684e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:57.124355+00', 320, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45143, X'1808f16a048aa28fa80a938ecce164477d31226a4832eaacd6653e6238ededcd', TIMESTAMP WITH TIME ZONE '2023-01-25 07:31:19.496142+00', 224, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45144, X'1a336af4b4812af72aaa2217869b6d858f32c0c793f70362758c0b5d600f8ec7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:31:46.382506+00', 591, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45145, X'bbbe97b706add588876792401cd9306df880d92d41eadeeeb0730759027af855', TIMESTAMP WITH TIME ZONE '2023-01-25 07:31:48.86401+00', 79, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45146, X'5b8b946ec5bfdfd311a280e76ffe1218a0ab739e890ae32243c5995a5394e074', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:00.573265+00', 85, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45147, X'2ca1c9f2480aab2962b16340526185b1b53ae706aba13a4db1d926953d4bb233', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:17.265022+00', 89, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45148, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:27.761334+00', 487, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45149, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:27.797079+00', 581, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45150, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.001412+00', 455, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45151, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.000535+00', 470, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45152, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.005199+00', 486, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45153, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.016787+00', 584, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45154, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:27.988057+00', 686, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45155, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:27.991533+00', 756, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45156, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.014749+00', 831, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45157, X'6123a845ffa204a43a0d1945547006ab4ea992a40e82e07531046487d4cc684e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:53.278814+00', 258, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45158, X'1808f16a048aa28fa80a938ecce164477d31226a4832eaacd6653e6238ededcd', TIMESTAMP WITH TIME ZONE '2023-01-25 07:33:51.134091+00', 221, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45159, X'374c991ab72fdfbf617ea21200eaf6653b444fdd373d71729097741a481ba0fe', TIMESTAMP WITH TIME ZONE '2023-01-25 07:34:22.024171+00', 249, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45160, X'8242bcd360b551e6563109b190ff5178062e36bade7786cc019cee6ff9f97ae7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:34:33.331754+00', 151, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45161, X'63de900c0469b802601ea65ae95dab4cd2860d90cdababe43f067a2c81cc2525', TIMESTAMP WITH TIME ZONE '2023-01-25 07:34:44.934363+00', 134, 3, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45162, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.567916+00', 257, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45163, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.650526+00', 362, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45164, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.625901+00', 399, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45165, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.61555+00', 497, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45166, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.636868+00', 522, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45167, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.696385+00', 633, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45168, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.699974+00', 674, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45169, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.711965+00', 983, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45170, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.696329+00', 1035, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45171, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.617989+00', 294, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45172, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.545034+00', 492, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45173, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.5656+00', 559, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45174, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.494066+00', 630, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45175, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.592872+00', 639, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45176, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.546364+00', 729, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45177, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.478474+00', 950, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45178, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.553335+00', 970, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45179, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.536581+00', 1097, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45180, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.516724+00', 286, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45181, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.516667+00', 430, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45182, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.632891+00', 650, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45183, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.633733+00', 676, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45184, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.617353+00', 914, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45185, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.708681+00', 1002, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45186, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.672951+00', 1318, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45187, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.652836+00', 1573, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45188, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:39.941342+00', 1231, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45189, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:40.149563+00', 1098, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45190, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:40.038063+00', 1311, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45191, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:39.930141+00', 1447, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45192, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:40.043387+00', 1444, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45193, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:40.037244+00', 1689, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45194, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:40.037281+00', 1844, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45195, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:40.052019+00', 1837, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45196, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:39.925652+00', 2039, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45197, X'e420eaa3eab9d8251db1e947c4f53d075947e44bd7c496ea371e5a973bdd1f3c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:41:48.544142+00', 235, 10, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(45198, X'e420eaa3eab9d8251db1e947c4f53d075947e44bd7c496ea371e5a973bdd1f3c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:13.686939+00', 188, 10, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(45199, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:19.976824+00', 377, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45200, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:19.868748+00', 490, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45201, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:19.97895+00', 585, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45202, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.04863+00', 545, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45203, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:19.98342+00', 652, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45204, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.119927+00', 530, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45205, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.123791+00', 769, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45206, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.100523+00', 869, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45207, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.095537+00', 890, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45208, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.555882+00', 447, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45209, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.520575+00', 763, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45210, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.772275+00', 540, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45211, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.777252+00', 574, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45212, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.577165+00', 777, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45213, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.823923+00', 583, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45214, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.810582+00', 615, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45215, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:26.849031+00', 615, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45216, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.04617+00', 451, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45217, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.022646+00', 568, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45218, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.065128+00', 3240, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45219, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.022396+00', 3272, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45220, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.089535+00', 3229, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45221, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.065124+00', 3244, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45222, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.093843+00', 3225, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45223, X'98b0365dc88ca2189e26b129e8ced75767ed3e23112a90d3e7875d73ad52960a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:55.930233+00', 3384, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45224, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.395983+00', 279, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45225, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.680769+00', 278, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45226, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.618748+00', 366, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45227, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.644525+00', 362, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45228, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.654754+00', 379, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45229, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.615225+00', 464, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45230, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.676747+00', 414, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45231, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.669039+00', 553, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45232, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.704864+00', 219, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45233, X'25aa76fcaf173971c6613006007b91f835d3b63c9916cea488b98462fda13f55', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.651906+00', 328, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45234, X'e619c2c27e276f29d3cf25f39f1bd4dc282bfdc6d625b694287f8d7e6ea321c7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.663904+00', 335, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45235, X'ca0d8287d7e0f8223c6f735dc0db1033ad49a50bd74d1cec20fe652d2b89ff3b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.695782+00', 312, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45236, X'2a9ddb6cb6ceffb5b75de45d35b73a3e32055492f6573cad277e857be5ba2b21', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.769099+00', 291, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45237, X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.738013+00', 333, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45238, X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.708387+00', 368, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45239, X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.718378+00', 364, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45240, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.906895+00', 223, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45241, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.864461+00', 524, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45242, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.833168+00', 685, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45243, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.860328+00', 677, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45244, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.921156+00', 637, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45245, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.928672+00', 636, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45246, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.949708+00', 623, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45247, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:38.809226+00', 767, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45248, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.171203+00', 334, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45249, X'62462821b96fddd66cc499aaba9117a56d997848d80a2daf08cb520c3d0e54df', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.176095+00', 531, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45250, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.189725+00', 619, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45251, X'bf5c1b872026ae30ce07ef6bfbf8b34a2fa734d84cce04b3db68b9a40236828d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.171203+00', 710, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45252, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.172494+00', 785, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45253, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.243923+00', 782, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45254, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.221209+00', 1060, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45255, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.1807+00', 1833, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45256, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.200223+00', 1840, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45257, X'1edfe51e692cd81602a20326722b04ef9cd94215a94fe7444da250ab7044ce34', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.401459+00', 273, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45258, X'ee51114c61ae0039d0cd9d7d463c3ef764cade3f847d74b3b08ddbefd3b15137', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.360963+00', 270, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45259, X'2de49d3e28da3d295b7ecca3ba0fe2b92f8282f0d552b3fb0a39b504f115c6fc', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.368795+00', 350, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45260, X'327ba823847d681f5caf4d95e2b28badf550f137175e30f004d6950d82ded99f', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.365619+00', 468, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45261, X'c86aef61ee425eae26ccfcaa5e60735c1cce531c888f7c35a9adc5c68d6ac3a4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.363352+00', 487, 0, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45262, X'864615ea06e4a6bf2152f3071f254ff46923635cf39fb0a10068f8cec0e8d51a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.401671+00', 473, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45263, X'247b874d87d3b4fd94509fa1bed8bd3221ff6bb42c61e4c8c0c84a2a4e887611', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.456705+00', 438, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45264, X'98be6186e85ff469674d75eccd5ed533d99974bb3180c5c764af374112b3b719', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.366321+00', 851, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45265, X'41f21187161e3d374f81d914cd6b5cb7b8b409d2e59a0ff8515f5db81d8d5bf2', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.430304+00', 866, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45266, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.757771+00', 364, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45267, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.802371+00', 407, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45268, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.853369+00', 433, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45269, X'62462821b96fddd66cc499aaba9117a56d997848d80a2daf08cb520c3d0e54df', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.804647+00', 569, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45270, X'bf5c1b872026ae30ce07ef6bfbf8b34a2fa734d84cce04b3db68b9a40236828d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.800767+00', 722, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45271, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.844884+00', 713, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45272, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.861618+00', 763, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45273, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.734965+00', 1116, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45274, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:42.778897+00', 1079, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45275, X'1f9c9764efc73c1d3547fc8d24c05327a9400b9881ca256814fcb5f9592b6106', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.017881+00', 572, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45276, X'f9b618b1f7822c41748453be055d4242ea4fac96b1e2fbb6fdbeaac3c3b9b786', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:44.999529+00', 672, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45277, X'13e083d7388166cafcdf07640b7d3f7b99253512e3abeb93f8d5143ecef73bcf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:44.999562+00', 729, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45278, X'43c656debd9ac421c60a9df8a8d5a129aa2db1aa5ffbefb34315e11940d3337b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.033752+00', 740, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45279, X'b504fd42107860e0d6135f7f7c02e9c6207d33d9e0b93014926a1fdd818ee37e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.09389+00', 745, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45280, X'8f1eb9a9eab6e50817c18e4d0f5f020bad20603724e50037c41ece0e959eaaab', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.412796+00', 466, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45281, X'1a73ed9da0cb27c5b4a20849069d44912e0ce3e370f8239c739a51a116cedbb0', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.39327+00', 552, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45282, X'0aa405d8f9872a40215c8dc0ecefcb9f074811092464caa8ea16f8c127c9dfae', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.373504+00', 898, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45283, X'd67be39fe12f68c829a9ba48eb3af95d98548e60624d207b69846e58dde67112', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.093804+00', 1206, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45284, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.97318+00', 258, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45285, X'62462821b96fddd66cc499aaba9117a56d997848d80a2daf08cb520c3d0e54df', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.926354+00', 420, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45286, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.911874+00', 524, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45287, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.932749+00', 521, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45288, X'bf5c1b872026ae30ce07ef6bfbf8b34a2fa734d84cce04b3db68b9a40236828d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.935503+00', 562, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45289, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.904088+00', 625, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45290, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.944742+00', 824, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45291, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.947591+00', 828, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45292, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:52.931198+00', 974, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45293, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.396973+00', 334, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45294, X'740876ad22d10782da798f18b6b8e8cd35fb8eed8fc9c0f978eb4aeb0078c047', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.341433+00', 439, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45295, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.392774+00', 451, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45296, X'288d9c04b83c3503ec8df6fc8587e3cd00d8e4b19be7b47cb1c7b685c3e4fa14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.449689+00', 405, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45297, X'674350c63171f782f84b143b1926411cfd121b491352ba0e4c78bc57e1e4c84a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.434156+00', 423, 6, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45298, X'fe734e2ae9e9b7e2f51602674f68b81b47d409f1b77470591678b80f43e25e47', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.409232+00', 502, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45299, X'856f0b1cdea96a18d4da66d1d02ccc21e70bbe9159b98813ba8c49849f8ce52e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.416071+00', 505, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45300, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.368152+00', 747, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45301, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.388681+00', 861, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45302, X'fc2973c1df21275994cf491777eb74ed15a654bb0db4609f59a2581eb01b1c39', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:03.941121+00', 318, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45303, X'456eac148c86649f244559276bf75e34c5d5669e0294fdf0754a3c79ff0a921a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.023781+00', 463, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45304, X'eaab65cda5132f15a43efcf94462418a047ba4e5e953dd41257eff9c0d078b41', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:03.992701+00', 497, 3, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45305, X'a6a1065d9c382994eeeb5b4d821aac09e5038cfc9ef16a98d4700f00f65b0b6a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.054523+00', 595, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45306, X'3d7d9e0a349642aa182478af29383124fff12b7bb72687545edcdf71ae2a92d1', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.061702+00', 621, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45307, X'd7fe59c808fa8e5ae160dda145efd2ac68cf740e4f6d640b4f9193c9fd68cf56', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.053335+00', 852, 7, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45308, X'9a642a4138cea3e39f84d1f3f14912405acb5c475c2538dc8eb68fd6a7624222', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.061702+00', 844, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45309, X'33ddc8d692ec665d8adfc6962775462cab5eb8b6eabb443f98e1e04e73b0e331', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.022041+00', 1111, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45310, X'6a5d392e40ed4424408c78972fa8b46e9e61c1d3ca7b229c1886e66d7da913e7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.034691+00', 1209, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45311, X'25e197708108dff59cfac1f4cc2989deb6ba57fd20d60074ecafc26c978e7894', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.870917+00', 494, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45312, X'ce56f07c259977b1886f42618de60127c9edbb5fca57b57232889c714f7ba253', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.832083+00', 612, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45313, X'd25d7bae28404f16a09c369b5a02ff8edac4de0542e60852fb46b507b5bdbf4c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.919452+00', 617, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45314, X'b2be8f8e949fc7756d62a678ad65d09f120a53a27b9c501a2be387c4d7e28fd4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.925436+00', 787, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45315, X'5c76bf45b4f49f8dd86823b4fd2c3f052002dfec025f61e1b3241816d0edc858', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.911271+00', 905, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45316, X'b9a6d1c332ffc637d5cd22cdf7e01913fd692a3481769817970c31d0730ec28b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.879405+00', 1006, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45317, X'87703b2158a0c8884df5ebff26752a712691d613417976624be402403ae8c1b6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.928712+00', 1092, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45318, X'b3f8997e455eb2afbab4115a52e2e1fb7f8e14b8bc30873d4648fbdaf59de70d', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.850343+00', 1213, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45319, X'fd2b8f52ff2d042008a42211577618108a432902c4a18eb36acea6d1d41c2c1e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:12.954469+00', 1560, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45320, X'fa1c40bf0f09056112f579f0572c09098232acac431433dfa55732e431b10b64', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:23.011663+00', 300, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45321, X'1feb4955f2a1d47a17537eeb433a82bfc8832665b18fb28a15f8ec24dd350284', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:23.000464+00', 693, 89, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45322, X'eb89f05ce555e743d19c50dbf5273db7222532427d919df591fb4bc27f753bab', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:22.983588+00', 1132, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45323, X'4915596b080fe0d9f7ce778d6e17a127181b8507517d34eb64e869c335b90275', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:22.994886+00', 809, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45324, X'1ff217f2b2a1b7e40d20a025d357a837d2c56c4443693f81d7c19ac79f982453', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:23.048199+00', 1067, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45325, X'213d1d06b21b6de7d19db7ac3b7a20393652160d162ad57cce1e53a19c102161', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:23.004021+00', 648, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45326, X'f8315ac8314efc1f62f565a0d674c9666a5df60d1a556d57901f4879a30faccc', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:22.946443+00', 857, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45327, X'bfbf22e37bc843b502f3f93211492f4e756a0b3a12730ef7f15823cb90aea61b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:23.005567+00', 799, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45328, X'81eb85ad0ed3d0177c26f9cfdae384db793bc7b26ab272aa89d4a2fbfda4f451', TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:22.981673+00', 1440, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45329, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.151234+00', 765, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45330, X'cbda9826f7c6cc1ab038ec636b2968423661c768397e01f95bca43a85500e644', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.067216+00', 5447, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45331, X'c7406322e940c8cfb20bb3b07c064fccf58e2c73dc9a75793d6f7aed5601b394', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.085883+00', 5447, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45332, X'cb6a0b02f0bcd43cd2a30ead8f63b869f7a855aa69af358713023a58e2db6add', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.292876+00', 5239, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45333, X'dd9208917f6683975d197cfb0ec034818da6c5ee0ede575f13b62c3ce8fdd8d3', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.114019+00', 5773, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45334, X'2bebd39075bfa3da16cf0babaf9013e003620ca4200474f8ab41fb7b20c10dd5', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.296812+00', 5599, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45335, X'2bc9720f7675c9dabcdb74141eab5a4eed982ae8af8c6348e39821f186421979', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.093665+00', 5802, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45336, X'20ea1ab09a73590c72fc658e977ecf98d33d6adfccca61eb943f76053006a7df', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.023187+00', 5889, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45337, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.286254+00', 418, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45338, X'97f4b3540f4c3e174d243b238cefdbd248db4baeac323482de3bf53a75b0d93a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.544788+00', 291, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45339, X'be2aee154477c2b5e41a641dc8cd20ab69b2f3386e1bc60c7b754d5732474bba', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.543504+00', 390, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45340, X'7f2ebce786cfd32bde4070dda39a76bad5d9511a6f7ed3a76f8d1a54d038ee26', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.531435+00', 454, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45341, X'86f78c925616f61423d40b348498b2d364e7e7fb8f45e0efff2567d5ea491fe7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.5929+00', 508, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45342, X'd21b61fdcc530f6f96ab3f4c9f8c13f5352998cc7ac763160c0958e446c412fa', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.593211+00', 559, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45343, X'aff50e5d3dff1318e5cea8e7075ea07211003f5a9e092e8c2277ce10e78ee3fb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.560853+00', 604, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45344, X'49e6764580635bd4ecc46783358324b60e0dc8b12d26b5e29847f37f852f267c', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.586407+00', 579, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45345, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.336851+00', 388, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45346, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.381829+00', 409, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45347, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.428869+00', 469, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45348, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.403242+00', 687, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45349, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.404749+00', 719, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45350, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.408003+00', 721, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45351, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.416451+00', 759, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45352, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.435176+00', 777, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45353, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.098987+00', 344, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45354, X'd16bf17d8b7dd5756a6c777bc599603e80b76e9d1c1593e6f79f0b2d62d7dde5', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.190484+00', 372, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45355, X'7281bb1f2e7b4d7457b10ad1df3148c110543a019e70e7f883bdee37df9e256e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.16192+00', 449, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45356, X'01a4482b670fccddabe20be387d3949202ab90bd79206c03732d87d6171af873', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.205022+00', 424, 0, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45357, X'd0a67de511e74b5c20288e425518544ad331d097447c3ad4755f95e30e423e46', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.187315+00', 483, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45358, X'38f391b2e5cca3af30a3fe36c27bb54e0787e3f5dadf0e0b65cfde2b4939aade', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.162385+00', 533, 0, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45359, X'705ed0464d5c52ed7c76f7e1640f6fc13f93e06079bdbbf9d797d203cb10da7f', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.23622+00', 467, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45360, X'9bd9a45be45cb1d203ed5dfb3e85b834be03085523a649e3a24816737901ed48', TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.230173+00', 538, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45361, X'6e57b385feb9572de35d7e74aaa8aff3630592bc97c3d2042467b92894ba451a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.018307+00', 271, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45362, X'1b27e0a7e445ca647cf66c8d39dea77698de5676c49e2abf98b972ac27434efc', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.018041+00', 506, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45363, X'c4f9aa39702320aaeb3fb5d65f47604dce2b79e4d6f5d32c756a182947824c82', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.014589+00', 542, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45364, X'1c76f1187e0abb35ffa45d48b5b1e56f9e2da1727003edb9f0ece51cbaf31051', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.194947+00', 2485, 3, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45365, X'728f705813e38aad10892d85c0f65794931e8b21f4fa1de2a26cd103fc73ed1a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.087867+00', 2587, 4, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45366, X'9e75a5b67b6748783b5b688ba5cdd9e106761c1d444e668a035df3b65bcdaaeb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.15917+00', 2514, 3, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45367, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.161209+00', 2525, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45368, X'1e84a23ae9c6cf158c972c56ba0bd886d03bfd3167442b21f2afa78d0642f035', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.13841+00', 2588, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45369, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.332591+00', 575, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45370, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.306018+00', 711, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45371, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.36607+00', 712, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45372, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.33266+00', 754, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45373, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.360022+00', 797, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45374, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.292817+00', 876, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45375, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.30829+00', 917, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45376, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.304601+00', 994, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45377, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.207943+00', 554, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45378, X'ca0d8287d7e0f8223c6f735dc0db1033ad49a50bd74d1cec20fe652d2b89ff3b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.234469+00', 764, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45379, X'2a9ddb6cb6ceffb5b75de45d35b73a3e32055492f6573cad277e857be5ba2b21', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.239235+00', 776, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45380, X'25aa76fcaf173971c6613006007b91f835d3b63c9916cea488b98462fda13f55', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.568689+00', 593, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45381, X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.484305+00', 678, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45382, X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.55381+00', 697, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45383, X'e619c2c27e276f29d3cf25f39f1bd4dc282bfdc6d625b694287f8d7e6ea321c7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.549967+00', 723, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45384, X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.600639+00', 698, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45385, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.31387+00', 359, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45386, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.239542+00', 550, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45387, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.304496+00', 672, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45388, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.244713+00', 834, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45389, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.301497+00', 818, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45390, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.288399+00', 832, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45391, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.314276+00', 898, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45392, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.309353+00', 946, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45393, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:38.960964+00', 753, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45394, X'38f391b2e5cca3af30a3fe36c27bb54e0787e3f5dadf0e0b65cfde2b4939aade', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:39.341036+00', 1305, 0, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45395, X'9bd9a45be45cb1d203ed5dfb3e85b834be03085523a649e3a24816737901ed48', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:39.020113+00', 1622, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45396, X'01a4482b670fccddabe20be387d3949202ab90bd79206c03732d87d6171af873', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:39.352964+00', 1288, 0, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45397, X'd0a67de511e74b5c20288e425518544ad331d097447c3ad4755f95e30e423e46', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:38.964098+00', 2570, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45398, X'7281bb1f2e7b4d7457b10ad1df3148c110543a019e70e7f883bdee37df9e256e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:38.960974+00', 2610, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45399, X'705ed0464d5c52ed7c76f7e1640f6fc13f93e06079bdbbf9d797d203cb10da7f', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:39.322498+00', 2271, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45400, X'd16bf17d8b7dd5756a6c777bc599603e80b76e9d1c1593e6f79f0b2d62d7dde5', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:38.980106+00', 2650, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45401, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.439687+00', 976, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45402, X'd8ffbb9765b261e467522cfff08360b5152947b43cf80db19ef8a46cfa1fc448', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.410178+00', 1207, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45403, X'b336b8257c526f4537017f3c45e74c538aac75d02136445e01be9d6d4a5e5ad0', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.432779+00', 1184, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45404, X'2c5ac01e00b6ce8a11e5eb2906a63efca8c2631fb61ae058bfb6dbd3f0694a1f', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.420191+00', 1206, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45405, X'0f6aaec28968eaffb1316967176472c0397b10bab82b232a3de6231925f80bcd', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.41947+00', 1334, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45406, X'5dd537852603dbc8fa66bfdcdf86463e495abd0a3bab606d40c7c6a1d62e6b6e', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.438471+00', 1320, 9, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45407, X'63a76b56cfa9fe232260c52f1f7d56599e7dbaec519af6735b662cbd352b0ff0', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.444278+00', 1677, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45408, X'c7c2d1573ec4dfe08ba4213f6b8f0a3ec1a0f30bd5012b542549a1c36ff83aa1', TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:53.415769+00', 1922, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45409, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.34502+00', 337, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45410, X'1b27e0a7e445ca647cf66c8d39dea77698de5676c49e2abf98b972ac27434efc', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.320847+00', 520, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45411, X'c4f9aa39702320aaeb3fb5d65f47604dce2b79e4d6f5d32c756a182947824c82', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.313058+00', 552, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45412, X'1e84a23ae9c6cf158c972c56ba0bd886d03bfd3167442b21f2afa78d0642f035', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.355932+00', 524, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45413, X'728f705813e38aad10892d85c0f65794931e8b21f4fa1de2a26cd103fc73ed1a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.388754+00', 530, 4, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45414, X'1c76f1187e0abb35ffa45d48b5b1e56f9e2da1727003edb9f0ece51cbaf31051', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.355626+00', 595, 3, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45415, X'6e57b385feb9572de35d7e74aaa8aff3630592bc97c3d2042467b92894ba451a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.32516+00', 636, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45416, X'9e75a5b67b6748783b5b688ba5cdd9e106761c1d444e668a035df3b65bcdaaeb', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.318176+00', 663, 3, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45417, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.704677+00', 402, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45418, X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.656149+00', 549, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45419, X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.737102+00', 612, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45420, X'25aa76fcaf173971c6613006007b91f835d3b63c9916cea488b98462fda13f55', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.731473+00', 642, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45421, X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.740021+00', 726, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45422, X'2a9ddb6cb6ceffb5b75de45d35b73a3e32055492f6573cad277e857be5ba2b21', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.73787+00', 726, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45423, X'e619c2c27e276f29d3cf25f39f1bd4dc282bfdc6d625b694287f8d7e6ea321c7', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.675518+00', 832, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45424, X'ca0d8287d7e0f8223c6f735dc0db1033ad49a50bd74d1cec20fe652d2b89ff3b', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:24.730395+00', 809, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45425, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.971475+00', 295, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45426, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.93534+00', 372, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45427, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.867679+00', 541, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45428, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.948062+00', 475, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45429, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.917401+00', 523, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45430, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.919357+00', 598, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45431, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.972863+00', 555, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45432, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:31.972671+00', 644, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45433, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.89691+00', 260, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45434, X'2bebd39075bfa3da16cf0babaf9013e003620ca4200474f8ab41fb7b20c10dd5', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.871266+00', 308, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45435, X'c7406322e940c8cfb20bb3b07c064fccf58e2c73dc9a75793d6f7aed5601b394', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.859472+00', 362, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45436, X'cbda9826f7c6cc1ab038ec636b2968423661c768397e01f95bca43a85500e644', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.761105+00', 465, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45437, X'20ea1ab09a73590c72fc658e977ecf98d33d6adfccca61eb943f76053006a7df', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.879668+00', 351, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45438, X'cb6a0b02f0bcd43cd2a30ead8f63b869f7a855aa69af358713023a58e2db6add', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.785521+00', 457, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45439, X'2bc9720f7675c9dabcdb74141eab5a4eed982ae8af8c6348e39821f186421979', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.885776+00', 405, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45440, X'dd9208917f6683975d197cfb0ec034818da6c5ee0ede575f13b62c3ce8fdd8d3', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:36.878673+00', 496, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45441, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.277924+00', 268, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45442, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.253749+00', 310, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45443, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.252925+00', 377, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45444, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.278373+00', 600, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45445, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.265035+00', 622, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45446, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.383671+00', 555, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45447, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.277026+00', 669, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45448, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.269623+00', 782, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45449, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.451673+00', 247, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45450, X'7f2ebce786cfd32bde4070dda39a76bad5d9511a6f7ed3a76f8d1a54d038ee26', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.414392+00', 1309, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45451, X'86f78c925616f61423d40b348498b2d364e7e7fb8f45e0efff2567d5ea491fe7', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.420111+00', 1308, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45452, X'be2aee154477c2b5e41a641dc8cd20ab69b2f3386e1bc60c7b754d5732474bba', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.444314+00', 1286, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45453, X'49e6764580635bd4ecc46783358324b60e0dc8b12d26b5e29847f37f852f267c', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.439404+00', 1629, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45454, X'97f4b3540f4c3e174d243b238cefdbd248db4baeac323482de3bf53a75b0d93a', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.457885+00', 1681, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45455, X'd21b61fdcc530f6f96ab3f4c9f8c13f5352998cc7ac763160c0958e446c412fa', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.472926+00', 1668, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45456, X'aff50e5d3dff1318e5cea8e7075ea07211003f5a9e092e8c2277ce10e78ee3fb', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.467647+00', 1680, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45457, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:08.812489+00', 2335, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45458, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:10.333425+00', 922, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45459, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:10.241004+00', 1108, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45460, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:10.209433+00', 1171, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45461, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:10.334307+00', 1049, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45462, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:10.263994+00', 1174, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45463, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:10.316923+00', 1134, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45464, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:10.325031+00', 1141, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45465, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.050882+00', 294, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45466, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.052514+00', 657, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45467, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.00489+00', 760, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45468, X'f82ce21af25be268e329e18c57ec91edff5a9b5822183a1ecddb96c00614e097', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:19.979279+00', 832, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45469, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.060153+00', 788, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45470, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.048074+00', 804, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45471, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.059944+00', 796, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45472, X'e7bf76dead92ebeb9a33ff67696a12fcbce64ec2b7275b3c7241e4fa4f90a124', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.048027+00', 830, 2, FALSE, 'dashboard', NULL, 1, 30, 3, NULL, 3, FALSE), +(45473, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.690427+00', 230, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45474, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.637456+00', 384, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45475, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.648325+00', 414, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45476, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.676234+00', 454, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45477, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.644674+00', 498, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45478, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.682851+00', 484, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45479, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.669887+00', 521, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45480, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.592757+00', 2374, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45481, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.339696+00', 1770, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(45482, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.312061+00', 2935, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(45483, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.367854+00', 2883, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(45484, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.583155+00', 3694, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(45485, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.58093+00', 3740, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(45486, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.225294+00', 3096, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(45487, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.58093+00', 3695, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(45488, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.225294+00', 3050, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(45489, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.394283+00', 2901, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(45490, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.583155+00', 3742, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(45491, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.07937+00', 4834, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(45492, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.07937+00', 4863, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(45493, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.306507+00', 5095, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(45494, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.528702+00', 6431, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(45495, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.160111+00', 5841, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(45496, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.307389+00', 5693, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(45497, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.528702+00', 6476, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(45498, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.040826+00', 5960, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(45499, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.040826+00', 5991, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45500, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.02456+00', 6097, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(45501, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.382643+00', 5746, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(45502, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.943284+00', 6183, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(45503, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.99415+00', 6140, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(45504, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.943284+00', 6199, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(45505, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.99415+00', 6264, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(45506, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.303752+00', 5854, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(45507, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.334183+00', 5948, 10, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(45508, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.104874+00', 6181, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(45509, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.804008+00', 5467, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(45510, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.02456+00', 6234, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(45511, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.528659+00', 6752, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(45512, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.104874+00', 6166, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(45513, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.528659+00', 6757, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(45514, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.583845+00', 6721, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(45515, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.165204+00', 6140, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(45516, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.215561+00', 6099, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(45517, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.165204+00', 6149, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(45518, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.214744+00', 6092, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45519, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:40.583845+00', 6751, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(45520, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.206422+00', 7702, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(45521, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.132293+00', 7829, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(45522, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.132293+00', 7840, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(45523, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.213256+00', 7918, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(45524, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.213256+00', 7930, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(45525, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.18771+00', 7990, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(45526, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:41.231303+00', 16674, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(45527, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.633055+00', 700, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(45528, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.760461+00', 573, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(45529, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.631401+00', 755, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(45530, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.795113+00', 712, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(45531, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.827291+00', 2346, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(45532, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.812487+00', 2638, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(45533, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.813108+00', 2646, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(45534, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.660817+00', 2848, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(45535, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.907834+00', 2635, 10, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(45536, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.769898+00', 2828, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(45537, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.80036+00', 2799, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45538, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.945037+00', 2710, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(45539, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.881204+00', 2799, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(45540, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.881869+00', 3063, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(45541, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.870096+00', 3672, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(45542, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:41.76066+00', 3872, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(45543, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.412919+00', 533, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(45544, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.489434+00', 1928, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(45545, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.390041+00', 2045, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(45546, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.394188+00', 2068, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(45547, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.356893+00', 2320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(45548, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.512817+00', 2795, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(45549, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.506866+00', 2802, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(45550, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.41718+00', 2894, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(45551, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.335739+00', 2852, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(45552, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.48941+00', 2699, 10, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(45553, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.39352+00', 2858, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(45554, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.397831+00', 2796, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(45555, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.421226+00', 2770, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(45556, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.335739+00', 3705, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45557, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.49192+00', 4338, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(45558, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.519091+00', 4383, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(45559, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.779286+00', 1097, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(45560, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.761845+00', 1690, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(45561, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.828761+00', 1613, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(45562, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.232972+00', 1369, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(45563, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.989194+00', 1739, 10, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(45564, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.007434+00', 1768, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(45565, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.097145+00', 1685, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(45566, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.145998+00', 1641, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(45567, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.252358+00', 1770, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(45568, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.764771+00', 2270, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(45569, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.099001+00', 1964, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(45570, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.165986+00', 2018, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(45571, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:42.171818+00', 2010, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(45572, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.90756+00', 2363, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(45573, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.9119+00', 2413, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(45574, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:41.851106+00', 2528, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(45575, X'08185adbff25a18082f2133d01a4d46f1154a66347ff408c527b8885eb28fad7', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.362364+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45576, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.453247+00', 297, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(45577, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.458315+00', 311, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(45578, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.428737+00', 531, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(45579, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.497648+00', 1219, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(45580, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.452903+00', 1258, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(45581, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.389576+00', 1343, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(45582, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.353+00', 514, 10, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(45583, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.481495+00', 439, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(45584, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.332015+00', 686, 10, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(45585, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.328498+00', 710, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(45586, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.360589+00', 836, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(45587, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.439905+00', 770, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(45588, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.351502+00', 1193, 362, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(45589, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.38543+00', 1166, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(45590, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.385918+00', 1334, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(45591, X'95ba332b87c184b5965672148c4b43d3a686723e18dc0ef35b027c10b6d7e2ab', TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:28.06786+00', 859, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45592, X'95ba332b87c184b5965672148c4b43d3a686723e18dc0ef35b027c10b6d7e2ab', TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:52.527788+00', 214, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45593, X'95ba332b87c184b5965672148c4b43d3a686723e18dc0ef35b027c10b6d7e2ab', TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:54.748588+00', 174, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45594, X'95ba332b87c184b5965672148c4b43d3a686723e18dc0ef35b027c10b6d7e2ab', TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:58.74581+00', 356, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45595, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:05.006755+00', 356, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45596, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:04.961523+00', 1206, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45597, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:04.987552+00', 1321, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45598, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:04.997683+00', 1362, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45599, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:05.074009+00', 1369, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45600, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:05.152772+00', 1348, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45601, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:05.011168+00', 1590, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45602, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:05.006458+00', 2457, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45603, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:05.096679+00', 2397, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45604, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:19.650841+00', 202, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45605, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-25 10:09:55.429868+00', 386, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45606, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-25 10:09:55.822714+00', 213, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45607, X'3569a3dfaec82a0735a5b593da3fa947a85306f7fbdc06cc026af183837f0472', TIMESTAMP WITH TIME ZONE '2023-01-25 10:10:28.05984+00', 762, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 1, FALSE), +(45608, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:00.420718+00', 955, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45609, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:00.680816+00', 928, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45610, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:00.506267+00', 1355, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45611, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:01.415693+00', 911, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45612, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:00.822747+00', 1663, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45613, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:01.469235+00', 1053, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45614, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:00.963036+00', 1567, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45615, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:01.481666+00', 1280, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45616, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:00.632185+00', 2151, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45617, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-25 10:16:05.869569+00', 218, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45618, X'8062d1adfc738622f454ed91c142e322bfafdb1736cd5efdd760e916907aa5fb', TIMESTAMP WITH TIME ZONE '2023-01-25 10:16:40.636581+00', 123, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(45619, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.426736+00', 366, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45620, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.430304+00', 408, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45621, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.525623+00', 400, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45622, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.49238+00', 594, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45623, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.47722+00', 638, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45624, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.49318+00', 628, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45625, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.570887+00', 718, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45626, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.519337+00', 813, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45627, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.449291+00', 1030, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45628, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:42.179739+00', 228, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45629, X'9c9d1d7967cb0519030f9af58ba87423fce16cdc85d766807cf446a2ae48d942', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:38.546721+00', 396, 0, FALSE, 'ad-hoc', 'Command failed with error 28765 (Location28765): ''$ceil only supports numeric types, not string'' on server mongo1:27017. The full response is { "operationTime" : { "$timestamp" : { "t" : 1674641970, "i" : 1 } }, "ok" : 0.0, "errmsg" : "$ceil only supports numeric types, not string", "code" : 28765, "codeName" : "Location28765", "$clusterTime" : { "clusterTime" : { "$timestamp" : { "t" : 1674641970, "i" : 1 } }, "signature" : { "hash" : { "$binary" : "0v9c06M5X+yBPsJwsXHsKTD5yQU=", "$type" : "00" }, "keyId" : { "$numberLong" : "7149877279361859586" } } } }', 1, NULL, NULL, NULL, 3, NULL), +(45630, X'a495d2a7b696ba85192d72a4eeda3adf580e9a54c630d0c53ddd2cab1b06a7ef', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:43.333364+00', 205, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45631, X'b8f2e3381e36b9032549b1228b1d92b2c01fe337d021e4b7d90f458e1e44ea99', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:46.380716+00', 201, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45632, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:57.931757+00', 257, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45633, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:57.853968+00', 364, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45634, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:57.818972+00', 559, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45635, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:57.865907+00', 547, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45636, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:57.899571+00', 508, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45637, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:57.905294+00', 524, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45638, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:57.920251+00', 536, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45639, X'239b5a942a58daa0e9b02a1b1f5135f73d4a04bd0712a4cbf75a29dfe284e81c', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.356651+00', 538, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45640, X'ef4ecafc3859302a819622a481fefc29b93606c82ebeecbc18d56e9c599f4dc0', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.332873+00', 638, 28, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45641, X'69622b8e334af358a735daa267c4d0268b39006e30dcbc8da3d2a11ac07cc1a7', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.405982+00', 576, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45642, X'a62df3018bb984b291beb070846386368d90c49a712821e12dedfe6a363c5300', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.402702+00', 707, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45643, X'f02f82a6fcb4e976c1e7ac48f3701cbfc795af649e9af1618657dc5776b599e1', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.588884+00', 562, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45644, X'7986d26a25eb91196e89acb86937fdd52775c1e32a3a35c4b3725186102fea9a', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.416243+00', 763, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45645, X'0c605acea02bf6122ddcbaf408f9fdd946ebb031c3a9b633990f0417827b5d17', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.577924+00', 613, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45646, X'7a3143bc387da3a62140eb548d72ca4923d483d485c20a58964696bfc00eadc8', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.348756+00', 1130, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45647, X'27e58af60a95a5b823841b07eeb8665e93951a43721834ba60f8b256d8d4a919', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.344643+00', 1181, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45648, X'2cbd1de7be35f2b050442c61137f77c83d0c3d59239b9c2f9f7880211e532eee', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:19.893162+00', 314, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45649, X'759a15ce8cbfc97d0db0fb8c6b9c02a85043d458c49e843f4b327f488a173587', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:19.980106+00', 375, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45650, X'88a7075da6671c7e5fc92b11a98ffab00ee06cc1d3656b7b8d0703f683054541', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:19.933453+00', 497, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45651, X'fafb70779ab7a6175dd13a323ba23684c75414c4d61f9a98841fe50ef5257369', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:19.94082+00', 508, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45652, X'810b90d6262b5c52f19c8b7b48c01bbc64128e4d99d09451e1e37237fbe9af76', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.028679+00', 442, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45653, X'6f3f778b0c41640eeae48e4ee774c4d1377b2b0834b43df9892a64d8006764cd', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:19.961276+00', 516, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45654, X'a297dcb23299ab57c1139e54b86acf793f71e36f4c9133adb86782f379f3f429', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:19.987146+00', 523, 58, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45655, X'919fad2847fafbf28f367a7802ddb95534be54c82a66c0bdb0c67b6b34a7d758', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.021481+00', 800, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45656, X'716c88546191940158721071ffb62fc2c47682f2b927629fe13b2ddf403b8a0d', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:19.98418+00', 862, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45657, X'3718572b92e77ebb0fca4821d3784aefef6dd7b5d0c4ffa885341838354e64fd', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.725999+00', 345, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45658, X'd7111a7dcb876c4472361c5732f03acc776903595e8863a8e1765992b49fb31f', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.703229+00', 396, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45659, X'bfbfd4d62fbfbe3a69f2eb4f1e34f81bbbd9c30e0158f00cb907ada6ecfc1f9b', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.746225+00', 568, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45660, X'ca0c1fe18c4540ef1b78aea5239b230e49ea9e7ae6b8edf87a56420457906e5d', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.792151+00', 530, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45661, X'bdd79d0cfc7963681b182d4c3f5317ee9c0dffe32e081e7e4065096c7636c64f', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.740504+00', 589, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45662, X'3a35a8b2377ed70a298aad482fe25e383ad916061655ac457fec11793d11538b', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.738808+00', 697, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45663, X'4d6a4fa43a1018192b2bb84e91b1897c2d2589955eb3b82c643b9a45db604f7d', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.796885+00', 654, 89, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45664, X'77eb49a4990cb1a278ca008feffc2081a4773c7970a7a23bdaffa41c5dd15309', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.687038+00', 827, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45665, X'f142d0d3875976f13d7a435793e9daea752ef1d16438b9e7eba97c22da29936c', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:35.666521+00', 981, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45666, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.537019+00', 269, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45667, X'62462821b96fddd66cc499aaba9117a56d997848d80a2daf08cb520c3d0e54df', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.507671+00', 478, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45668, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.469972+00', 659, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45669, X'bf5c1b872026ae30ce07ef6bfbf8b34a2fa734d84cce04b3db68b9a40236828d', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.573558+00', 594, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45670, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.553756+00', 648, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45671, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.604361+00', 698, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45672, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.475779+00', 1046, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45673, X'30df9bb7e0e24ec25c56038269cb6fec46376d5688de690d6ea20977be5acbe7', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.568622+00', 1039, 365, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45674, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.472826+00', 1173, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45675, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:49.970572+00', 557, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45676, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.092879+00', 514, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45677, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.072814+00', 572, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45678, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.063243+00', 610, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45679, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.137759+00', 558, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45680, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.050664+00', 733, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45681, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.067277+00', 951, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45682, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.040892+00', 1004, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45683, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.066323+00', 1029, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45684, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:54.759678+00', 536, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45685, X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:59.850924+00', 291, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45686, X'cc63790079de853a1b402097d320517f293418a4cca207e175a61ad04e5dc3a1', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:04.563006+00', 4583, 53, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45687, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:13.706207+00', 478, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45688, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.874758+00', 419, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45689, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.82889+00', 627, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45690, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.823047+00', 650, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45691, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.775658+00', 767, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45692, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.828395+00', 782, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45693, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.845013+00', 777, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45694, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.831427+00', 1122, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45695, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.759446+00', 1254, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45696, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.822787+00', 1547, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45697, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:36.881143+00', 836, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45698, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.539503+00', 893, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45699, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.549001+00', 1303, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45700, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:36.884463+00', 2009, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45701, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:36.870756+00', 2084, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45702, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.577817+00', 1736, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45703, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:36.870751+00', 2521, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45704, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.52435+00', 1911, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45705, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:36.87076+00', 2731, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45706, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:36.870794+00', 2697, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45707, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:36.870784+00', 2743, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45708, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.523836+00', 2101, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45709, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.537837+00', 2113, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45710, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.564493+00', 2298, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45711, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.568617+00', 2572, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45712, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.549088+00', 2601, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45713, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:03.058117+00', 1003, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45714, X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:09.682944+00', 251, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45715, X'cc63790079de853a1b402097d320517f293418a4cca207e175a61ad04e5dc3a1', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:17.26393+00', 4668, 53, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45716, X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:54.191433+00', 264, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45717, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.384773+00', 268, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45718, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.252048+00', 805, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45719, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.309625+00', 879, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45720, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.37038+00', 923, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45721, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.330687+00', 985, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45722, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.436369+00', 1018, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45723, X'62123fe5a28f2776d92ebf9cbd15694d04bc932872072fee801e00b2e284d559', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.328274+00', 1159, 362, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45724, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.35964+00', 1348, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45725, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.41842+00', 1289, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45726, X'317573ba795cb8993acdd31ad8e7260f0880a53bcfb08c0cf44121dea3b229a2', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:13.135201+00', 449, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45727, X'cc63790079de853a1b402097d320517f293418a4cca207e175a61ad04e5dc3a1', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:17.724259+00', 5092, 53, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45728, X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:48.439904+00', 293, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45729, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.480168+00', 660, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45730, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.48174+00', 670, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45731, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.588722+00', 589, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45732, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.536262+00', 847, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45733, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.611475+00', 1094, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45734, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.574502+00', 1173, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45735, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.705384+00', 1119, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45736, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.56088+00', 1302, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45737, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:18.687282+00', 1218, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45738, X'3b64dbcf360e6c076d3907f971efe77833d6b8dd3d9978e054103cbb80701944', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:28.740368+00', 390, 12, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(45739, X'cc63790079de853a1b402097d320517f293418a4cca207e175a61ad04e5dc3a1', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:32.651094+00', 3827, 53, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45740, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.156129+00', 283, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45741, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.202178+00', 451, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45742, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.176739+00', 569, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45743, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.17269+00', 729, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45744, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.184689+00', 753, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45745, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.266651+00', 688, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45746, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.16156+00', 902, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45747, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.225965+00', 1067, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45748, X'e40a841c0aa8ec8d8b0f6f4e937ef9b5c74201553caba4bfd01e142e5c257a43', TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.297344+00', 4027, 53, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45749, X'ac12765127a9c1c923d4738cec1cbec587415fd7bfe14d6a98884f9ca3ee6415', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:41.228267+00', 5338, 53, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(45750, X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:49.866947+00', 249, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45751, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.096746+00', 479, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45752, X'e4de8261eb7cda566c7fb92f3a775889d4fe0a1c54d70d2e88c4fd35b4450edb', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.256992+00', 486, 10, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45753, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.28767+00', 634, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45754, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.2501+00', 724, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45755, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.1406+00', 915, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45756, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.141664+00', 970, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45757, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.155942+00', 913, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45758, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.205172+00', 960, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45759, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.249636+00', 1202, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45760, X'e420eaa3eab9d8251db1e947c4f53d075947e44bd7c496ea371e5a973bdd1f3c', TIMESTAMP WITH TIME ZONE '2023-01-25 12:24:54.405918+00', 260, 10, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(45761, X'4588ad8daff5b8ab24fd04c538c727079122601b64078ec8fe86fdf723ae54bc', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:08.499265+00', 232, 35, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45762, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:24.207429+00', 172, 35, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(45763, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.355858+00', 241, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45764, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.491575+00', 531, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45765, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.434332+00', 677, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45766, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.372314+00', 765, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45767, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.478174+00', 755, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45768, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.453988+00', 779, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45769, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.493157+00', 752, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45770, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.412138+00', 918, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45771, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.439874+00', 1098, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45772, X'6123a845ffa204a43a0d1945547006ab4ea992a40e82e07531046487d4cc684e', TIMESTAMP WITH TIME ZONE '2023-01-25 12:30:30.488235+00', 399, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(45773, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:42.844576+00', 318, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45774, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:42.958966+00', 772, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45775, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.031924+00', 769, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45776, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.022484+00', 794, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45777, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.075431+00', 802, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45778, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:42.979862+00', 928, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45779, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:42.980397+00', 955, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45780, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:42.849991+00', 1202, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45781, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:42.956319+00', 1305, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45782, X'd11499bc7473a73e06294b4d61414cde895256ac7de660e3a04a34a60916b89f', TIMESTAMP WITH TIME ZONE '2023-01-25 12:32:27.05633+00', 213, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(45783, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.798711+00', 332, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45784, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.885068+00', 497, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45785, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.914704+00', 534, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45786, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.853032+00', 666, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45787, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.897734+00', 742, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45788, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.928549+00', 784, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45789, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.961902+00', 761, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45790, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.802257+00', 989, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45791, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.954929+00', 1090, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45792, X'128bec4885907434caaec896c860d9ea647969b05a98e1e425deec02b57348bc', TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:21.381804+00', 235, 35, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(45793, X'88cdcf4384fcf16e802363d8abcdfb5f895607cf494a6bf2767ca1f8328eff62', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.588742+00', 708, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45794, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.672874+00', 811, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45795, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.932673+00', 871, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45796, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.80479+00', 1015, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45797, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.92171+00', 894, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45798, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.872991+00', 1052, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45799, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.928799+00', 1091, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45800, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.554019+00', 1638, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45801, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:04.828894+00', 1520, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45802, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:11.108121+00', 197, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45803, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:46.943214+00', 501, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45804, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:46.968973+00', 521, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45805, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.015915+00', 591, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45806, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:46.973097+00', 695, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45807, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.030783+00', 674, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45808, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:46.984173+00', 830, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45809, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.020657+00', 857, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45810, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:46.862615+00', 1069, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45811, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:46.939927+00', 1056, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45812, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.567885+00', 228, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45813, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.570239+00', 385, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45814, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.576557+00', 430, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45815, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.553677+00', 460, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45816, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.622303+00', 503, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45817, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.665049+00', 483, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45818, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.587665+00', 587, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45819, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.59262+00', 831, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45820, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.611214+00', 864, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45821, X'69622b8e334af358a735daa267c4d0268b39006e30dcbc8da3d2a11ac07cc1a7', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:31.749641+00', 326, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45822, X'5357318741cd8b2e1477c38144c2d36f714b30c2e37c989800c094df41868e9e', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:31.808611+00', 603, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45823, X'7a3143bc387da3a62140eb548d72ca4923d483d485c20a58964696bfc00eadc8', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:31.799181+00', 800, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45824, X'f02f82a6fcb4e976c1e7ac48f3701cbfc795af649e9af1618657dc5776b599e1', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:31.854504+00', 991, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45825, X'27e58af60a95a5b823841b07eeb8665e93951a43721834ba60f8b256d8d4a919', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.187897+00', 878, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45826, X'05c80a6f89f4ed4b20f5aac2abac5f1e2f19c5fd47f1ad88d229b1a878d9c8dd', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.376769+00', 725, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45827, X'a62df3018bb984b291beb070846386368d90c49a712821e12dedfe6a363c5300', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.309799+00', 821, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45828, X'118accfbeca896dc2a0e6b5dc38360039b0274f3dcf64ffc4d0194319e716b85', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:31.833408+00', 1299, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45829, X'0c605acea02bf6122ddcbaf408f9fdd946ebb031c3a9b633990f0417827b5d17', TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.34759+00', 810, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45830, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.738982+00', 177, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45831, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.80903+00', 388, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45832, X'4c180a7a6f0de1413fb707df9274e6bc6fcc315e9963b984285e20f1ace4d058', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.766182+00', 494, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45833, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.741427+00', 529, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45834, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.776838+00', 521, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45835, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.851808+00', 504, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45836, X'664ebad2cd7b333adcde64692e1aa6e0b1ed82557b21c6b7b00c7f409297aa27', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.830309+00', 565, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45837, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.744954+00', 820, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45838, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.837971+00', 869, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45839, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:37.03656+00', 1138, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45840, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:36.862777+00', 1337, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45841, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:37.051637+00', 1210, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45842, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:37.078398+00', 1266, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45843, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:37.087461+00', 1263, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45844, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:37.100038+00', 1268, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45845, X'181567b8b0400a38d2d7dec335531ec0ad247976ff70b3cf2f720fea4b35ceca', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:37.050217+00', 1382, 10, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45846, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:37.055898+00', 1795, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45847, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:36.842749+00', 2025, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45848, X'1204be76258d5e823b284ac8617e30d1acbcf2a528b3008b7043c1ba5e92f33b', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:43.425026+00', 230, 10, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(45849, X'c54cd790b3a02c358cef29895dea4bda6331b987759ae017adaa2ac9aa9e4434', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:54.352207+00', 247, 30, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(45850, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.07188+00', 672, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45851, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.348608+00', 1008, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45852, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.120659+00', 1457, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45853, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.172713+00', 1543, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45854, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.341828+00', 1444, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45855, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.656459+00', 1189, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45856, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.432251+00', 1458, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45857, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.342375+00', 1727, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45858, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.172687+00', 1907, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45859, X'3b64dbcf360e6c076d3907f971efe77833d6b8dd3d9978e054103cbb80701944', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:23.396848+00', 2049, 12, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(45860, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.503983+00', 333, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45861, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.336764+00', 1322, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45862, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.42603+00', 1267, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45863, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.513476+00', 1373, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45864, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.501531+00', 1482, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45865, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.581801+00', 1453, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45866, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.320192+00', 1792, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45867, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.475531+00', 2592, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45868, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.372855+00', 2703, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45869, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:20.478319+00', 323, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(45870, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.140821+00', 499, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45871, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.249035+00', 625, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45872, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.338826+00', 610, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45873, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.266545+00', 867, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45874, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.235807+00', 927, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45875, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.391649+00', 773, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45876, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.301642+00', 965, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45877, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:29.140212+00', 268, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45878, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.529781+00', 117, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45879, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.514817+00', 328, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45880, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.52719+00', 369, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45881, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.527374+00', 393, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45882, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.540472+00', 424, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45883, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.509906+00', 489, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45884, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.521431+00', 519, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45885, X'3b64dbcf360e6c076d3907f971efe77833d6b8dd3d9978e054103cbb80701944', TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:42.113028+00', 795, 12, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(45886, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.890046+00', 526, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45887, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.03568+00', 410, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45888, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.050509+00', 426, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45889, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.901476+00', 652, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45890, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.8907+00', 712, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45891, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.941748+00', 715, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45892, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.885159+00', 795, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45893, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.890236+00', 1139, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45894, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.915725+00', 1114, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45895, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:32.332165+00', 2113, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45896, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:32.332165+00', 2128, 0, FALSE, 'ad-hoc', 'Broken pipe', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45897, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:36.589555+00', 443, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45898, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:43.0585+00', 243, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45899, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.233145+00', 295, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45900, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.132726+00', 718, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45901, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.130067+00', 865, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45902, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.232969+00', 799, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45903, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.194386+00', 890, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45904, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.175146+00', 950, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45905, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.181584+00', 990, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45906, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:01.573648+00', 241, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(45907, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.351719+00', 517, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45908, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.563411+00', 394, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45909, X'5b4aa25b5c674ed9903c22fb55a1c9898a0227ca716350780e171cfae369eb4d', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.596601+00', 499, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45910, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.567904+00', 576, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45911, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.568675+00', 675, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45912, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.587075+00', 673, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45913, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.587339+00', 737, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45914, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:17.683963+00', 214, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45915, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:55.990083+00', 269, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(45916, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:56.703057+00', 319, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45917, X'f37eb49e3970b2cd7535b24c3174884cd39fd3c44f42dce0876fc8a2e492d129', TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:58.262414+00', 246, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45918, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.303141+00', 398, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(45919, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.333513+00', 468, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(45920, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.379871+00', 592, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(45921, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.48487+00', 637, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(45922, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.661793+00', 552, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(45923, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.441045+00', 783, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(45924, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.472712+00', 789, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(45925, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.163349+00', 1888, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45926, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.197066+00', 1991, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45927, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.218934+00', 2165, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45928, X'664ebad2cd7b333adcde64692e1aa6e0b1ed82557b21c6b7b00c7f409297aa27', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.172883+00', 2244, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45929, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.177775+00', 2241, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45930, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.227284+00', 2222, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45931, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.117077+00', 2644, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45932, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.207909+00', 3028, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45933, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:00.160719+00', 3132, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45934, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.256609+00', 457, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45935, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.240956+00', 649, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45936, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.380569+00', 564, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45937, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.221928+00', 768, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45938, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.384849+00', 626, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45939, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.341625+00', 684, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45940, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.384852+00', 665, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45941, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.247717+00', 978, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45942, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.260868+00', 982, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45943, X'd7111a7dcb876c4472361c5732f03acc776903595e8863a8e1765992b49fb31f', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.842955+00', 398, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45944, X'ca0c1fe18c4540ef1b78aea5239b230e49ea9e7ae6b8edf87a56420457906e5d', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.826965+00', 461, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45945, X'a5c0dca47e8a5802d99626794c9ac1c8d8fbc043c995af1c10c38d6475f63ec8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.832747+00', 535, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45946, X'986a258d996f1105374db1881aad393efb0a06c473e9511982fcc352f5f74388', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.838149+00', 577, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45947, X'5c36f202dcc625d20c0cc3100afe7fc0b005ef4150b1271c3dba1277a88f8ac1', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.866966+00', 552, 3, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45948, X'bfbfd4d62fbfbe3a69f2eb4f1e34f81bbbd9c30e0158f00cb907ada6ecfc1f9b', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.848821+00', 581, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45949, X'67cb0d651fd22bda7af0a906ebc94c534e3ef98beac401f0539739ba918f448a', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.859689+00', 625, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45950, X'f142d0d3875976f13d7a435793e9daea752ef1d16438b9e7eba97c22da29936c', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.806308+00', 933, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45951, X'77eb49a4990cb1a278ca008feffc2081a4773c7970a7a23bdaffa41c5dd15309', TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:45.859468+00', 926, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45952, X'9c2139f5549f75bea2bb32aa386cf556c38676c11596f004620dd14e323f6572', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.261797+00', 578, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45953, X'1a93fb215f20e0e3d4a97470d2632482cfa7cebd181e904cde19fcc68fc372d6', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.512122+00', 309, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45954, X'7aa900d654787e3028af6d699d9b3e939d538f16ee1c87302ecffe3aaec016e1', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.31091+00', 606, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45955, X'c10ee518185fb0f1a6919a73c24a42eadf2f6714970db2f6a65d99d26ef51349', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.472051+00', 701, 7, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45956, X'ef7f47fbf6984f723905a2fed5fafa6fa5f45772bfc1fafb0db73bcea01cb8ea', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.496443+00', 704, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45957, X'a1e26a87819424c1a7558613dc5de690538920a7bfd4f4a46dc2c5e2c3c45be2', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.379409+00', 847, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45958, X'513d03f1aeb8d6bd0ba1524be87698477fea643d28b3704aa9bba714ec8fae1f', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.524257+00', 781, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45959, X'0b378856ad9022b18511d2727a1cceeb3aeeeef0d66c83bc818d31a73c5e4259', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.368707+00', 1148, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45960, X'ae079d74608995c6eb143cac76ce4e2c332cc0b165c027d7c2533913ad7a4871', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.582995+00', 1150, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45961, X'ebc2e741678af2a6e985d30005c862dbaebbc5eddcf7b6b8195b1b265a8ce8b9', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:24.634391+00', 179, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45962, X'b9009ef1262e20432a634bdd7c994a7282f627ea39328a0979f57d5773a51918', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:40.777246+00', 185, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45963, X'7ec9ab05ec9e1103653fe4c668c253b770a9fab636d8bdb9270944f86907a937', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:43.998006+00', 202, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45964, X'a966dd89dfc83796021b1233da31a6cba018ec7fb533b31a82f112f4e5700d25', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:50.919799+00', 419, 362, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45965, X'ea70a6a69e823455b8ee0082d6e5fec61e343db37f2eed81e3325e9bfffb5255', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:53.796837+00', 380, 365, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45966, X'2c9f7f5c76cc57b0748b16f86772c3ee6ccc29049b8961eba71e4870772a7adf', TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:56.695591+00', 203, 13, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45967, X'ea70a6a69e823455b8ee0082d6e5fec61e343db37f2eed81e3325e9bfffb5255', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:05.32418+00', 467, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(45968, X'a966dd89dfc83796021b1233da31a6cba018ec7fb533b31a82f112f4e5700d25', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:06.254199+00', 510, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(45969, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.644935+00', 369, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45970, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.698658+00', 586, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45971, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.601296+00', 699, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45972, X'e479781ce9ae86123310425fdd5afa498f55e332c9ebbac8091e0ea33cb92835', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.646007+00', 822, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45973, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.576768+00', 1002, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45974, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.66852+00', 937, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45975, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.678708+00', 1045, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45976, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.575735+00', 1370, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45977, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:08.629514+00', 1321, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45978, X'3b64dbcf360e6c076d3907f971efe77833d6b8dd3d9978e054103cbb80701944', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:13.634964+00', 264, 12, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(45979, X'2c9f7f5c76cc57b0748b16f86772c3ee6ccc29049b8961eba71e4870772a7adf', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:27.257059+00', 216, 13, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(45980, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.161099+00', 395, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45981, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.312299+00', 619, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45982, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.331261+00', 670, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45983, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.362683+00', 791, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45984, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.305436+00', 873, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45985, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.336154+00', 857, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45986, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.296693+00', 911, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45987, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.141855+00', 1198, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45988, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.160009+00', 1303, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(45989, X'63995715e4983d280c8489d2ad44af172a745055e05c9108bf792a2deb552343', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.568309+00', 451, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(45990, X'1a93fb215f20e0e3d4a97470d2632482cfa7cebd181e904cde19fcc68fc372d6', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.49198+00', 577, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(45991, X'c10ee518185fb0f1a6919a73c24a42eadf2f6714970db2f6a65d99d26ef51349', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.553004+00', 519, 7, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(45992, X'7aa900d654787e3028af6d699d9b3e939d538f16ee1c87302ecffe3aaec016e1', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.566593+00', 566, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45993, X'9c2139f5549f75bea2bb32aa386cf556c38676c11596f004620dd14e323f6572', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.549907+00', 661, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(45994, X'ef7f47fbf6984f723905a2fed5fafa6fa5f45772bfc1fafb0db73bcea01cb8ea', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.585971+00', 684, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(45995, X'513d03f1aeb8d6bd0ba1524be87698477fea643d28b3704aa9bba714ec8fae1f', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.590334+00', 688, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(45996, X'0b378856ad9022b18511d2727a1cceeb3aeeeef0d66c83bc818d31a73c5e4259', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.516105+00', 786, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(45997, X'ae079d74608995c6eb143cac76ce4e2c332cc0b165c027d7c2533913ad7a4871', TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:50.580022+00', 982, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(45998, X'3c0f5292a653994a425a88c1831d1234bf31dfe1b8365957139ecaa3188e840a', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.188474+00', 471, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(45999, X'4cf60d0f99aef34ba547d9b38093ecfc41f6d07ce1cb97a16fbcf10bd64846f7', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.20078+00', 520, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46000, X'b35e0988c656666c4cca042a9c602354ec27d37de24b84aa04000079e455bdd3', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.256665+00', 479, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46001, X'ce747aacc8a608fb572f5d6a0169a6123e15d2450bbbb9a7dac4ad50c8c9f671', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.229645+00', 543, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46002, X'72f2357d3a7da1330b2ab1dc0715390d072de5f70130c1aca598d8e724a2b7f4', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.206445+00', 667, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46003, X'9244a23962c9463be750964f225ddaf6181939e4b45b4a59a46463dfb2cd3ea9', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.256698+00', 647, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46004, X'8eeb0d1f27ba560884a27ed898e3f27b7365d478fe592abca192fff2fb0e8c28', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.191491+00', 747, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46005, X'873998a01a7fc1245533f49f4a397f4884af373a8363570337399aca02eaa83b', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.178803+00', 1076, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46006, X'24e92c1f89a3237bc0df2a8c03565c9a7e140be2eb68bdcfdb9618ad7a3aacce', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.19341+00', 1087, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46007, X'3d7d9e0a349642aa182478af29383124fff12b7bb72687545edcdf71ae2a92d1', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.572817+00', 256, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46008, X'fc2973c1df21275994cf491777eb74ed15a654bb0db4609f59a2581eb01b1c39', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.552487+00', 297, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46009, X'2ece8cd49a67bec020b98478121e9fcbb4a9c0ed450ba4b37b48356fb38f54c5', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.566647+00', 310, 7, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46010, X'335521098cc6e3ee281863983bed010d7cda81ba6ccd630934a8e7157c142eb7', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.593764+00', 330, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46011, X'fb837e3737fe917b8d851caad1d210a7def5cde46b0d8598d9f62c1d28ee66e7', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.609111+00', 331, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46012, X'9673ad863679dd968ab0a7ba07a844dc5c7cc47785435c0c28b7cda98155a7be', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.588728+00', 435, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46013, X'9a642a4138cea3e39f84d1f3f14912405acb5c475c2538dc8eb68fd6a7624222', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.573313+00', 457, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46014, X'33ddc8d692ec665d8adfc6962775462cab5eb8b6eabb443f98e1e04e73b0e331', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.580078+00', 751, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46015, X'6a5d392e40ed4424408c78972fa8b46e9e61c1d3ca7b229c1886e66d7da913e7', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.645994+00', 787, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46016, X'd7111a7dcb876c4472361c5732f03acc776903595e8863a8e1765992b49fb31f', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.113107+00', 379, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46017, X'67cb0d651fd22bda7af0a906ebc94c534e3ef98beac401f0539739ba918f448a', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.288845+00', 576, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46018, X'ad9aab92294969199f4718dd8cb869acdd9128ee976b08c63ead04cc62e9ca44', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.400921+00', 542, 3, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46019, X'ca0c1fe18c4540ef1b78aea5239b230e49ea9e7ae6b8edf87a56420457906e5d', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.377594+00', 593, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46020, X'bfbfd4d62fbfbe3a69f2eb4f1e34f81bbbd9c30e0158f00cb907ada6ecfc1f9b', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.380818+00', 607, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46021, X'a5c0dca47e8a5802d99626794c9ac1c8d8fbc043c995af1c10c38d6475f63ec8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.388923+00', 697, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46022, X'986a258d996f1105374db1881aad393efb0a06c473e9511982fcc352f5f74388', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.528604+00', 683, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46023, X'f142d0d3875976f13d7a435793e9daea752ef1d16438b9e7eba97c22da29936c', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.262745+00', 1157, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46024, X'77eb49a4990cb1a278ca008feffc2081a4773c7970a7a23bdaffa41c5dd15309', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.356258+00', 1166, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46025, X'de9cbc25f9f26fa756273cc23616bab804742e9605b54a10d23f3ebf9a405702', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:29.940056+00', 154, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46026, X'068a1d6b0194d252fd4d4563d8c7baf8d9b747297a7a52808b5a36963a42c4f8', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.21219+00', 447, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46027, X'b414acd18110d51fee975654ded6f94402d55c0931fbc2a6cc70d5f9fd16d3d3', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.220794+00', 515, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46028, X'2e14e8189c7267d0f9a34d85396752ab905660f6299889d58b382e1c6daf15e9', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.268335+00', 502, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46029, X'80293dd2c9cef1b0cf48727fd8fbed9bb3e1992ad774820285794f9a41744864', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.205265+00', 630, 4, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46030, X'3b66f17d0b89c3761849a6e8e1ba5d69a5f012bd2d30c73fc21253972a465aee', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.23743+00', 657, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46031, X'e0cdd143a188429a3739b0679d1341edfd546614a07434acd5662ef568a762ff', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.20716+00', 716, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46032, X'0a5ceaad03edd78be0edda60542773b2d67e0dc68d58b2d84bad200d0922cd6d', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.146741+00', 909, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46033, X'83ac863841fb88dfab979d4a527783c7773286f0e5de53054276ad23eea8f5bd', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.176368+00', 1121, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46034, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.777103+00', 307, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46035, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.734918+00', 735, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46036, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.791413+00', 694, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46037, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.772642+00', 885, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46038, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.790434+00', 870, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46039, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.738919+00', 912, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46040, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.728648+00', 989, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46041, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.737909+00', 1182, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46042, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:43.789644+00', 1162, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46043, X'832c507dcfcba300e3a2485f82ac9eadd299d422c429d7f060bf84c779c02f21', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.403707+00', 603, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46044, X'b504fd42107860e0d6135f7f7c02e9c6207d33d9e0b93014926a1fdd818ee37e', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.45017+00', 664, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46045, X'1f9c9764efc73c1d3547fc8d24c05327a9400b9881ca256814fcb5f9592b6106', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.459773+00', 667, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46046, X'41c617f36ecf8ab69021814d30af9dfeddfbaadec473e1dc0860b3892620aa9f', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.420063+00', 740, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46047, X'43c656debd9ac421c60a9df8a8d5a129aa2db1aa5ffbefb34315e11940d3337b', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.408608+00', 807, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46048, X'd5268d649f0c9ff3d72d3d7dd70967c0fec6efb88e4894680b212a9971612a21', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.426477+00', 817, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46049, X'f048611570e8b4c3b2a04dc84b8df03bcede8198432c741e745d4ff97355c5b1', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.412867+00', 871, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46050, X'0aa405d8f9872a40215c8dc0ecefcb9f074811092464caa8ea16f8c127c9dfae', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.424581+00', 1131, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46051, X'd67be39fe12f68c829a9ba48eb3af95d98548e60624d207b69846e58dde67112', TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:45.398927+00', 1196, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46052, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.832213+00', 1161, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46053, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.903235+00', 1357, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46054, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.832512+00', 1519, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46055, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.79018+00', 1655, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46056, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.87866+00', 1602, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46057, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.770453+00', 1795, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46058, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.846+00', 1739, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46059, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.835215+00', 2326, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46060, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:00.758152+00', 2418, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46061, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.196012+00', 1510, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46062, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.239552+00', 1481, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46063, X'994cd58db00e35e40f816f0e98203f3fa9a7f386c3d8b96bdf11b022f0ce0f1f', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.196012+00', 1600, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(46064, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.273509+00', 2378, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46065, X'a7772d68d43526551b312e0d76b21b006e8dbbe40eefc023e90d37a22dc7acd2', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.335447+00', 2319, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(46066, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.094843+00', 2612, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(46067, X'a7772d68d43526551b312e0d76b21b006e8dbbe40eefc023e90d37a22dc7acd2', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.094676+00', 2566, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(46068, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.273509+00', 2440, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(46069, X'a7772d68d43526551b312e0d76b21b006e8dbbe40eefc023e90d37a22dc7acd2', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.335447+00', 2265, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46070, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.415797+00', 2597, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(46071, X'a7772d68d43526551b312e0d76b21b006e8dbbe40eefc023e90d37a22dc7acd2', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.094676+00', 2519, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46072, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.415797+00', 2547, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46073, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.094843+00', 2554, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46074, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.094707+00', 2923, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46075, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.094707+00', 2940, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(46076, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.21106+00', 4677, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46077, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.21106+00', 4694, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(46078, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.246782+00', 4735, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46079, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.246782+00', 4781, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(46080, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.463708+00', 5451, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46081, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.201067+00', 5718, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46082, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.349652+00', 5785, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46083, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.201067+00', 5912, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(46084, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.248306+00', 5903, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46085, X'dfb1567c808b2b4ff051ce0e76f761bd25f646431ab5852189b8651d9ee1e6ac', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.463708+00', 5689, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(46086, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.398703+00', 5786, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46087, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.285711+00', 5872, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46088, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.324638+00', 5837, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46089, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.274742+00', 5909, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46090, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.203524+00', 5981, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46091, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.226494+00', 5963, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46092, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.349652+00', 5956, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(46093, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.375519+00', 5817, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46094, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.248306+00', 6052, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(46095, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.267601+00', 5925, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46096, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.201664+00', 6111, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46097, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.324638+00', 5984, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46098, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.226494+00', 6183, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(46099, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.285711+00', 6023, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(46100, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.201664+00', 6239, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(46101, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.203524+00', 6311, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(46102, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.286126+00', 6041, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46103, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.274742+00', 6166, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(46104, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.398703+00', 5935, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(46105, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.286126+00', 6227, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(46106, X'3208e03084a606b9966fad1edf58c70a2ecfc10553c00c3d0a252948727dd356', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.267601+00', 6245, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(46107, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.375519+00', 6122, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(46108, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.239582+00', 6527, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46109, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.222602+00', 6579, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46110, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.429571+00', 6401, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(46111, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.370998+00', 6549, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(46112, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.429571+00', 6339, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46113, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.239582+00', 6559, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(46114, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.222602+00', 6664, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(46115, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.370998+00', 6468, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46116, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.213872+00', 8551, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46117, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.213872+00', 8588, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(46118, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.28457+00', 9144, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(46119, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.28457+00', 9137, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46120, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.319294+00', 9345, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(46121, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.207597+00', 9469, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46122, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.207597+00', 9501, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(46123, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:31.319294+00', 9159, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46124, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.664303+00', 661, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46125, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.279979+00', 1523, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46126, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.279979+00', 1538, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(46127, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.146794+00', 8569, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46128, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.499978+00', 8236, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46129, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.146794+00', 8610, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(46130, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.149769+00', 11041, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46131, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.149769+00', 11128, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(46132, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.452241+00', 11053, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46133, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.725336+00', 8996, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46134, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.725336+00', 9029, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(46135, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.706267+00', 9561, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46136, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.772979+00', 9658, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46137, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.772979+00', 9685, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(46138, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.765307+00', 9739, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46139, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.519159+00', 12334, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46140, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.538351+00', 12388, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46141, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.250595+00', 12828, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46142, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.250595+00', 12902, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(46143, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.847779+00', 10388, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46144, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.847779+00', 10438, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(46145, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.744814+00', 10657, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46146, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.519805+00', 13006, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(46147, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.519805+00', 12947, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46148, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.121578+00', 13554, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46149, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.605937+00', 13074, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46150, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.643191+00', 13080, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46151, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.605937+00', 13123, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(46152, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.327099+00', 11402, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46153, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.121578+00', 13607, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(46154, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.789719+00', 10955, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46155, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.848909+00', 10898, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46156, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.327099+00', 11434, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(46157, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.622053+00', 13166, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46158, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.485338+00', 13562, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46159, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.485338+00', 13598, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(46160, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.747899+00', 11435, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46161, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.747899+00', 11466, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(46162, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.236624+00', 12107, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46163, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.882786+00', 11461, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46164, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.646622+00', 13694, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46165, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:06.236624+00', 12140, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(46166, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.650763+00', 15984, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46167, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.574333+00', 16209, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46168, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.55486+00', 16224, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46169, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:05.282971+00', 15508, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46170, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.574333+00', 16225, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(46171, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:04.55486+00', 16248, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(46172, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.94473+00', 491, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46173, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.354521+00', 2538, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46174, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:05.001378+00', 2228, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46175, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.379824+00', 2845, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46176, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.90476+00', 2348, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46177, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.367579+00', 2959, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46178, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.820545+00', 2579, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46179, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.361056+00', 3107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46180, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.961055+00', 2546, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46181, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.355904+00', 3164, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46182, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.359838+00', 3200, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46183, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.930816+00', 2674, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46184, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.966768+00', 2652, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46185, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.39059+00', 3259, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46186, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.404765+00', 3826, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46187, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:04.404765+00', 3836, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46188, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:04.889809+00', 812, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46189, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:04.923883+00', 1227, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46190, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:04.911713+00', 1350, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46191, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:05.062205+00', 1226, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46192, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:04.890976+00', 1798, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46193, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:04.926043+00', 1746, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46194, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:05.053416+00', 1267, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46195, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:04.993446+00', 2093, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46196, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:05.063712+00', 2049, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46197, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.645654+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46198, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.525533+00', 387, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46199, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.587144+00', 429, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46200, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.61897+00', 423, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46201, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.602554+00', 445, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46202, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.581211+00', 533, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46203, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.595786+00', 521, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46204, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.54211+00', 428, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46205, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.530798+00', 509, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46206, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.41943+00', 785, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46207, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.506898+00', 698, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46208, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.485495+00', 821, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46209, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.472736+00', 841, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46210, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.530663+00', 887, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46211, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.286098+00', 1459, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46212, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.472642+00', 1305, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46213, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.196021+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46214, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.304311+00', 112, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46215, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.315998+00', 290, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46216, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.208726+00', 424, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46217, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.342103+00', 349, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46218, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.377118+00', 350, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46219, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.344744+00', 387, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46220, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.660814+00', 540, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46221, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.597816+00', 950, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46222, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.525493+00', 1033, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46223, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.552812+00', 1096, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46224, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.649014+00', 1006, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46225, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.725065+00', 979, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46226, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.653002+00', 1139, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46227, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.613092+00', 1264, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46228, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:45.603703+00', 1487, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46229, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.213893+00', 271, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46230, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.229503+00', 517, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46231, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.289362+00', 561, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46232, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.215692+00', 735, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46233, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.063065+00', 912, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46234, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.282004+00', 711, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46235, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.282674+00', 3898, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46236, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.554633+00', 1478, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46237, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.334813+00', 1729, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46238, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.554633+00', 1518, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 3, NULL, 3, NULL), +(46239, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.022093+00', 5521, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46240, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.022093+00', 5561, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(46241, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.794068+00', 4832, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46242, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.383899+00', 6156, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46243, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.383899+00', 6200, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(46244, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.832604+00', 6052, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46245, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.102398+00', 4776, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46246, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.418768+00', 6508, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46247, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.418768+00', 6519, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(46248, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.286259+00', 4862, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46249, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.286259+00', 4875, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(46250, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.193567+00', 4993, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46251, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.193567+00', 5010, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46252, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.288058+00', 4977, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46253, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.474766+00', 6867, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46254, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.05606+00', 5436, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46255, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.548778+00', 6982, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46256, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:05.988593+00', 5566, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46257, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.454734+00', 7200, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46258, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.705233+00', 6953, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46259, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.548778+00', 7009, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(46260, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:05.988593+00', 5657, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(46261, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.020267+00', 7648, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46262, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.533458+00', 5124, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46263, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.454734+00', 7234, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(46264, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:05.244816+00', 6446, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46265, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.020267+00', 7678, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(46266, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.705233+00', 6988, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(46267, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.936537+00', 6789, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46268, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.297633+00', 5481, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46269, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.533473+00', 5251, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46270, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.533473+00', 5268, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46271, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:05.259406+00', 6601, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46272, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.36805+00', 5487, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46273, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.36805+00', 5494, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(46274, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.474556+00', 7399, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46275, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:05.965571+00', 5892, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(46276, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:05.965571+00', 5889, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46277, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:06.540821+00', 5394, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46278, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.828852+00', 8348, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46279, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.687982+00', 8491, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46280, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.828852+00', 8352, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(46281, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.881672+00', 8325, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46282, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.487618+00', 8755, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46283, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:04.487618+00', 8791, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(46284, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.512761+00', 1974, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46285, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.553704+00', 4906, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46286, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.700855+00', 5101, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46287, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.641052+00', 5331, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46288, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.70085+00', 5338, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46289, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.586075+00', 5779, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46290, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.512658+00', 5979, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46291, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.66381+00', 5945, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46292, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.752795+00', 5856, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46293, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.637203+00', 6000, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46294, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.723138+00', 5994, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46295, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.640929+00', 6044, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46296, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.680771+00', 6048, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46297, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.516158+00', 6252, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46298, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.506091+00', 6845, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46299, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:07.585561+00', 6792, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46300, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.263822+00', 383, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46301, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.068064+00', 514, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46302, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.386441+00', 2511, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46303, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.134085+00', 1814, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46304, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.050512+00', 1971, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(46305, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.333852+00', 2728, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46306, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.135366+00', 2016, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46307, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.040859+00', 2159, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46308, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.377297+00', 2869, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46309, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.443822+00', 2836, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46310, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.490074+00', 1785, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46311, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.364611+00', 2950, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46312, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.427975+00', 2932, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46313, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.10207+00', 2259, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46314, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.397029+00', 3471, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46315, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.360026+00', 3510, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46316, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.355829+00', 300, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(46317, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.280732+00', 421, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(46318, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.331405+00', 440, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(46319, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.344741+00', 460, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(46320, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.43693+00', 448, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(46321, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.393787+00', 532, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(46322, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.379958+00', 614, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(46323, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.290666+00', 796, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(46324, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.373949+00', 801, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(46325, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.758523+00', 244, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 3, NULL, 3, FALSE), +(46326, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.785421+00', 295, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(46327, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.778275+00', 303, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(46328, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.799276+00', 300, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46329, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.78377+00', 397, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(46330, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.790145+00', 403, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(46331, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.778488+00', 470, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(46332, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.136864+00', 386, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46333, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.139813+00', 757, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46334, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.207928+00', 794, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46335, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.140765+00', 939, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46336, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.246424+00', 823, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46337, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.260355+00', 918, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46338, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.1553+00', 1049, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46339, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.125581+00', 1518, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46340, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.08514+00', 1597, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46341, X'128bec4885907434caaec896c860d9ea647969b05a98e1e425deec02b57348bc', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:43.772223+00', 226, 35, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(46342, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.023731+00', 240, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46343, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.117269+00', 369, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46344, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.117269+00', 390, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46345, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.118392+00', 423, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46346, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.052765+00', 614, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46347, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.110815+00', 581, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46348, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.122447+00', 643, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46349, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.08372+00', 738, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46350, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.135058+00', 706, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46351, X'e52817af119b8c7dba9d03e36ea300da401da5141468e14628dcf4290fa532b6', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:15.915591+00', 1078, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46352, X'4c58e76fe5ee7920139f9e4b5ccf2e8ecb09bf65584128ced119da14a92650a8', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:15.939628+00', 1548, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46353, X'cf024a03e6a6ceb36cd2daeab8025d62b8dcf1bc67c95f6e57ab8017020b4b61', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:15.933893+00', 1552, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46354, X'308de4c4c4ed344f17a777c0c7f38cccf96efdfed34c568eba3cca1bbbc2fff5', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:15.940894+00', 1733, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46355, X'9d07fc4a27824c6a0158946eb0bf59b4053ebc2ac7e955a6b89c3f54c2151fad', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:15.929962+00', 1639, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46356, X'a02b41d4c331e560edabb41d19df7c2ad96ebff72169f12dd7aa3375bb4097f7', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:15.904796+00', 1938, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46357, X'11f38c968eb964a4079eb1373154369a48dc68a4416b719272c4766b8773b7da', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:16.399315+00', 1636, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46358, X'f3d2a4792e7cb129682f523db9006f5ac4ede654f13e43289a5f3b2b7e2655dc', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:15.937221+00', 2160, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46359, X'28a83145ccbd7fefc86c8f0b6ca2d0db7d3e5b90de31bb35ed483f7f2b2d86df', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:16.641745+00', 1667, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46360, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.19419+00', 382, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46361, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.183037+00', 519, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46362, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.225334+00', 486, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46363, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.214241+00', 515, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46364, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.246337+00', 508, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46365, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.209855+00', 607, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46366, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.22049+00', 629, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46367, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.418517+00', 355, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46368, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.543297+00', 894, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46369, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.530138+00', 944, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46370, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.529893+00', 1011, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46371, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.507519+00', 1067, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46372, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.556951+00', 1141, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46373, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.521507+00', 1215, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46374, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:46.652911+00', 117, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(46375, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.372699+00', 375, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46376, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.409523+00', 353, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46377, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.554722+00', 392, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46378, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.532696+00', 434, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46379, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.408078+00', 571, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46380, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.456681+00', 584, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46381, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.524867+00', 552, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46382, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.75278+00', 2074, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46383, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.798082+00', 2028, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46384, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.771532+00', 2166, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46385, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.791684+00', 2185, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46386, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.75556+00', 2212, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46387, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.777735+00', 2191, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46388, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.794086+00', 2173, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46389, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.782478+00', 2985, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46390, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:25.775849+00', 3002, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46391, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.2732+00', 477, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46392, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.296008+00', 577, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46393, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.248385+00', 640, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46394, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.320636+00', 780, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46395, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.671127+00', 514, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46396, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.664741+00', 565, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46397, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.658515+00', 610, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46398, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.639214+00', 877, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46399, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.651442+00', 932, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46400, X'740876ad22d10782da798f18b6b8e8cd35fb8eed8fc9c0f978eb4aeb0078c047', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:43.89276+00', 577, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46401, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.15378+00', 344, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46402, X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.056991+00', 585, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46403, X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.065926+00', 597, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46404, X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.068927+00', 650, 25, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46405, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.153238+00', 633, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46406, X'964d1695134327b42ecbda8f18b6b8cfb2b168913e631db590433db8e5278b41', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.247805+00', 671, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46407, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.092718+00', 1059, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46408, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:43.9138+00', 1414, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46409, X'1f9c9764efc73c1d3547fc8d24c05327a9400b9881ca256814fcb5f9592b6106', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.810184+00', 278, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46410, X'832c507dcfcba300e3a2485f82ac9eadd299d422c429d7f060bf84c779c02f21', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.882001+00', 304, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46411, X'b504fd42107860e0d6135f7f7c02e9c6207d33d9e0b93014926a1fdd818ee37e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.831066+00', 478, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46412, X'41c617f36ecf8ab69021814d30af9dfeddfbaadec473e1dc0860b3892620aa9f', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.884781+00', 493, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46413, X'f048611570e8b4c3b2a04dc84b8df03bcede8198432c741e745d4ff97355c5b1', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.875378+00', 498, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46414, X'd5268d649f0c9ff3d72d3d7dd70967c0fec6efb88e4894680b212a9971612a21', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.874939+00', 531, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46415, X'43c656debd9ac421c60a9df8a8d5a129aa2db1aa5ffbefb34315e11940d3337b', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.963211+00', 481, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46416, X'd67be39fe12f68c829a9ba48eb3af95d98548e60624d207b69846e58dde67112', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.874453+00', 2682, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46417, X'0aa405d8f9872a40215c8dc0ecefcb9f074811092464caa8ea16f8c127c9dfae', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:05.806563+00', 2776, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46418, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.132252+00', 582, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46419, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.082417+00', 1527, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46420, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.06377+00', 1545, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46421, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.083774+00', 1690, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46422, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.070155+00', 1773, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46423, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.104807+00', 1754, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46424, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.066217+00', 1858, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46425, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.071764+00', 449, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46426, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.103433+00', 1097, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46427, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.136844+00', 1252, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46428, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.125053+00', 1291, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46429, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.072688+00', 1335, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46430, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.093176+00', 1409, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46431, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.128263+00', 1458, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46432, X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:47.629643+00', 573, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46433, X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:47.639283+00', 562, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46434, X'ca0d8287d7e0f8223c6f735dc0db1033ad49a50bd74d1cec20fe652d2b89ff3b', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:47.613523+00', 588, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46435, X'1ce4e0a0888f7a4fa269bc3aab9727b42910ea6c3231b78a1775d66d46bb20b2', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:47.595035+00', 631, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46436, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:47.626039+00', 686, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46437, X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:47.626554+00', 936, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46438, X'e619c2c27e276f29d3cf25f39f1bd4dc282bfdc6d625b694287f8d7e6ea321c7', TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:47.839411+00', 765, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46439, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.270441+00', 331, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46440, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.288856+00', 1135, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46441, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.205516+00', 1226, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46442, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.218115+00', 1395, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46443, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.282342+00', 1422, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46444, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.276306+00', 1463, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46445, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.218228+00', 1526, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46446, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:52.995408+00', 306, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46447, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:00.575388+00', 553, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46448, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:00.565721+00', 1617, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46449, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:00.553482+00', 1656, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46450, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:00.448645+00', 1904, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46451, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:00.574165+00', 1781, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46452, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:00.565739+00', 1864, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46453, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:00.426939+00', 2026, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46454, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.585974+00', 310, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46455, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.586818+00', 711, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46456, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.781275+00', 541, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46457, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.631906+00', 704, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46458, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.636525+00', 700, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46459, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.639665+00', 747, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46460, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.614032+00', 865, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46461, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.759639+00', 6986, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46462, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.803611+00', 7006, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46463, X'a80581c131096443f1d01ab1c2e5d9735d8868ac60c94181831b0c648d568554', TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:51.483765+00', 250, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(46464, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:31.394761+00', 360, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46465, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:32.929012+00', 168, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46466, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:32.880724+00', 370, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46467, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:32.947864+00', 1439, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46468, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:32.940997+00', 1446, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46469, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:32.905186+00', 1509, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46470, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:32.939248+00', 1573, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46471, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:31.263357+00', 407, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46472, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:31.3542+00', 1483, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46473, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:31.280613+00', 1669, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46474, X'6039e8ab00e52c4126a2d49e9f08b38c42af4af9f7146cb4670b0ce0926a64d4', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:31.300798+00', 1755, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46475, X'e01e5db9f4dab9e51ab5fe4d2b5c7f719c90d3802807d2f88d03136b016f81c6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:30.987281+00', 2081, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46476, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:31.225907+00', 1899, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46477, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:30.987282+00', 2178, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46478, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:59.834985+00', 293, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46479, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:59.88476+00', 425, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46480, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:59.91832+00', 404, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46481, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:59.83413+00', 525, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46482, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:59.933485+00', 455, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46483, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:59.934512+00', 484, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46484, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:59.933116+00', 596, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46485, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.366115+00', 411, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46486, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.422638+00', 665, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46487, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.390829+00', 768, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46488, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.431411+00', 742, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46489, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.410451+00', 852, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46490, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.415574+00', 915, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46491, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.462306+00', 1107, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46492, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.328227+00', 1546, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46493, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.399802+00', 1540, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46494, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:01.981773+00', 313, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46495, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:01.956607+00', 465, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46496, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:01.987643+00', 541, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46497, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:01.983478+00', 568, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46498, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:01.979016+00', 577, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46499, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:01.946092+00', 1041, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46500, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:02.10101+00', 887, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46501, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:18.336407+00', 513, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(46502, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:34.682929+00', 400, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46503, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:34.673341+00', 667, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46504, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:34.792762+00', 594, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46505, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:34.774266+00', 616, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46506, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:34.688272+00', 855, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46507, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:34.845015+00', 761, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46508, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:34.909017+00', 714, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46509, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:43.269294+00', 197, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46510, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.835978+00', 256, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46511, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.896714+00', 347, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46512, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.875521+00', 379, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46513, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.914605+00', 369, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46514, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.852692+00', 542, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46515, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.949482+00', 501, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46516, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.976915+00', 607, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46517, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:59.935556+00', 160, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(46518, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.424634+00', 484, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46519, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.402619+00', 1341, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46520, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.4309+00', 1322, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46521, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.519393+00', 1224, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46522, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.461116+00', 1359, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46523, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.371794+00', 1490, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46524, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.519505+00', 1478, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46525, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.16733+00', 456, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46526, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.151337+00', 477, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46527, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.210881+00', 768, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46528, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.207959+00', 768, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46529, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.166752+00', 1041, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46530, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.177919+00', 1125, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46531, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.662132+00', 812, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46532, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.577677+00', 1200, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46533, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.70269+00', 1138, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46534, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:37.554412+00', 83, 1, FALSE, 'question', NULL, 1, 28, 2, NULL, 3, FALSE), +(46535, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 08:59:56.275624+00', 107, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(46536, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:04.508535+00', 81, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(46537, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.573035+00', 522, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46538, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.737125+00', 548, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46539, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.60896+00', 1118, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46540, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.781068+00', 1266, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46541, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.495691+00', 1559, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46542, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.757551+00', 1358, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46543, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.597006+00', 1589, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46544, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.684742+00', 1682, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46545, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.560808+00', 2123, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46546, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:06.82109+00', 2076, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46547, X'426f076e3aba1c50dc501822d9ddc83ebbd5027c5ca92cbe217700837e164a14', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:15.712165+00', 299, 1, FALSE, 'dashboard', NULL, 1, 28, 3, NULL, 3, FALSE), +(46548, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:15.749972+00', 526, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46549, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:15.805047+00', 538, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46550, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:15.76096+00', 640, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46551, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:15.733261+00', 663, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46552, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:15.738513+00', 724, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46553, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:15.716898+00', 783, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46554, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.93153+00', 1120, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46555, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.934006+00', 2024, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46556, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.94253+00', 2264, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46557, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.946735+00', 2572, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46558, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.936677+00', 2630, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46559, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.928081+00', 2722, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46560, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.938689+00', 2745, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46561, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.941515+00', 2766, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46562, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.936188+00', 4001, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46563, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:58.928189+00', 4105, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46564, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.186563+00', 366, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46565, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.143504+00', 448, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46566, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.182448+00', 446, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46567, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.174485+00', 488, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46568, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.191641+00', 477, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46569, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.183536+00', 610, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46570, X'c8381264b9783072cb62fb647208d5fd47e9c72780875e6298863b912ec92c2a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:33.005102+00', 1412, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(46571, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:18.599924+00', 1220, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46572, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:20.208948+00', 514, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46573, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:20.203986+00', 889, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46574, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:20.176623+00', 952, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46575, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:20.269977+00', 883, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46576, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:20.244326+00', 955, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46577, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:25.704301+00', 327, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(46578, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:32.42266+00', 928, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46579, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:32.444768+00', 907, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46580, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:32.445868+00', 938, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46581, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:32.425056+00', 974, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46582, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:32.451489+00', 1072, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46583, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:32.451374+00', 1101, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46584, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:40.177123+00', 266, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(46585, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:06.666191+00', 562, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46586, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:06.679432+00', 726, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46587, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:06.666191+00', 761, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46588, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:06.756083+00', 701, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46589, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:06.753255+00', 717, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46590, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:06.752336+00', 786, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46591, X'060f5673961331a4f9057d0a34f520e9e0904205161a927fe5bff7858a8a345d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:11.07049+00', 219, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(46592, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:27.884104+00', 699, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46593, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:27.952346+00', 690, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46594, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:27.956832+00', 754, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46595, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:28.150226+00', 955, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46596, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:28.413+00', 938, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46597, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:28.359852+00', 1008, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46598, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:42.763164+00', 238, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46599, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:21.87063+00', 781, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46600, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:21.827564+00', 835, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46601, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:21.834968+00', 858, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46602, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:21.83888+00', 897, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46603, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:21.839959+00', 939, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46604, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:21.820652+00', 976, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46605, X'23452513407ad0145b61985091197e576f43c220489a9bfdf47da29c47f70130', TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:40.008155+00', 223, 2, FALSE, 'question', NULL, 1, 29, NULL, NULL, 3, FALSE), +(46606, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:14.808972+00', 811, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46607, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:14.815874+00', 842, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46608, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:14.807026+00', 986, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46609, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:14.839528+00', 967, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46610, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:14.764712+00', 1057, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46611, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:14.873442+00', 976, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46612, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.627723+00', 1119, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46613, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.609643+00', 2028, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46614, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.607433+00', 2432, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46615, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.628206+00', 2604, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46616, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.61519+00', 2746, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46617, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.610068+00', 2777, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46618, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.625167+00', 2805, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46619, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.624228+00', 2808, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46620, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.62495+00', 3546, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46621, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:45.632045+00', 3586, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46622, X'6123a845ffa204a43a0d1945547006ab4ea992a40e82e07531046487d4cc684e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:51.430944+00', 377, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(46623, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.651984+00', 345, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46624, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.597805+00', 675, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46625, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.64837+00', 666, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46626, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.644866+00', 702, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46627, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.591295+00', 812, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46628, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.615368+00', 967, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46629, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.682507+00', 944, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46630, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.643479+00', 1029, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46631, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.609977+00', 1127, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46632, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.597831+00', 1148, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46633, X'd11499bc7473a73e06294b4d61414cde895256ac7de660e3a04a34a60916b89f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:04.874948+00', 230, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(46634, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.188478+00', 516, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46635, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.288955+00', 552, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46636, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.238104+00', 768, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46637, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.06204+00', 1270, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46638, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.224281+00', 1137, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46639, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.386193+00', 1014, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46640, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.698577+00', 708, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(46641, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.054293+00', 1498, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46642, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.252759+00', 1354, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46643, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.236036+00', 1960, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46644, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.38284+00', 1867, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46645, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.882891+00', 300, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46646, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.882376+00', 312, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46647, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.82074+00', 409, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46648, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.953558+00', 661, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46649, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.972623+00', 649, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46650, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.972197+00', 697, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46651, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.94093+00', 766, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46652, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.944438+00', 801, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46653, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.943709+00', 1052, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46654, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:15.923085+00', 1195, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46655, X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:26.076603+00', 408, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46656, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.803647+00', 257, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46657, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.903922+00', 881, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46658, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.874502+00', 931, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46659, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:39.068905+00', 814, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46660, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.921482+00', 1020, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46661, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.823184+00', 1113, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46662, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.90453+00', 1123, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46663, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.881425+00', 1209, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46664, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.959171+00', 1597, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46665, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.931362+00', 1760, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46666, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.515741+00', 453, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46667, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.492235+00', 511, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46668, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.476453+00', 796, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46669, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.680827+00', 647, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46670, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.469732+00', 901, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46671, X'5e37c087aa8766ab4971448cf0ef256acf8e9a7781aff34bc0437d0f13d3df50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.385135+00', 1078, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46672, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.489598+00', 997, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46673, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.676923+00', 1031, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46674, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.713604+00', 1073, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46675, X'f4bab0e6e6097a4c97bfc41109f1b4b591460dad8fb7fa17dad9d3a27af77377', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:47.964238+00', 232, 13, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(46676, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.454405+00', 404, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46677, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.168077+00', 828, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46678, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.389721+00', 630, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46679, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.477939+00', 591, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46680, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.207048+00', 899, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46681, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.199259+00', 965, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46682, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.229537+00', 955, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46683, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.19395+00', 1026, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46684, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.160828+00', 1343, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46685, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.191325+00', 1316, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46686, X'0163101f1f4be6cbd207c4defde7874bda330a6ede8b08b4464c3fa5200ca264', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:05.194386+00', 769, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(46687, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.308471+00', 572, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46688, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.352133+00', 530, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46689, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.309526+00', 1329, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46690, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.328626+00', 1598, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46691, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.310562+00', 1620, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46692, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.356804+00', 1583, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46693, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.376569+00', 1705, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46694, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.345428+00', 1798, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46695, X'5988ee9528e15691ab1b24077bf863a69c221b4ab087c9618caef5dcc399be80', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.356539+00', 1856, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46696, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.332778+00', 2208, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46697, X'6123a845ffa204a43a0d1945547006ab4ea992a40e82e07531046487d4cc684e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:47.801326+00', 1868, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(46698, X'abf7b8819443aa018ff274c784c7a9c2a42f0cea390c2b3387296f64fa838127', TIMESTAMP WITH TIME ZONE '2023-01-26 09:20:08.093759+00', 354, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46699, X'abf7b8819443aa018ff274c784c7a9c2a42f0cea390c2b3387296f64fa838127', TIMESTAMP WITH TIME ZONE '2023-01-26 09:20:11.573317+00', 275, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46700, X'5083d907044b0313a3e608b35dbf230db1ab66292e059c77885fbf8859ab6d84', TIMESTAMP WITH TIME ZONE '2023-01-26 09:20:47.076497+00', 744, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46701, X'0d7450d4902238146adf9ad8c2cbc7f802c40d05a7e7ae2d6dcbc9c263907d08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:21:05.74792+00', 365, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46702, X'e23aa1cd93f3ff76baded8f342ba4a11b01c548433f7a0adc10a8d68946bc93e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:21:34.539554+00', 273, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46703, X'7516ff2c3d0ed693d1210c6e43dba24880b0b0a56b1c91ace1bcb53a646d023f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:22:16.707478+00', 276, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46704, X'1808f16a048aa28fa80a938ecce164477d31226a4832eaacd6653e6238ededcd', TIMESTAMP WITH TIME ZONE '2023-01-26 09:22:51.222938+00', 233, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(46705, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.47713+00', 272, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46706, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.477592+00', 271, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46707, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.220144+00', 981, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46708, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.479861+00', 933, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46709, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.241532+00', 1189, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46710, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.49892+00', 1061, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46711, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.475269+00', 1104, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46712, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.449329+00', 1151, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46713, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.427487+00', 1923, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46714, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.447882+00', 1950, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46715, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:26:20.287613+00', 689, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46716, X'89edb5e9d5ecfd5b9d55150fac858163cb91c3d7995c7bcda714d2b4c8702d51', TIMESTAMP WITH TIME ZONE '2023-01-26 09:26:53.934816+00', 210, 12, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46717, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:10.967339+00', 3569, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46718, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:10.979464+00', 3694, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46719, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:14.53234+00', 429, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46720, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:11.102615+00', 4087, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46721, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:11.01961+00', 4267, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46722, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:11.082219+00', 4341, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46723, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:14.495089+00', 1085, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46724, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:11.121238+00', 4464, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46725, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:14.67666+00', 919, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46726, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:14.532038+00', 1310, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46727, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:23.937634+00', 86, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(46728, X'e8d3b4253577eb56670ea0eae4b321256ab3667336b92539eb19f773ece260d7', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:36.796538+00', 71, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46729, X'4f3fd7db21e9842c18168227e47167b2cb31a066f41904aab5319f85567c812b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:42.871293+00', 62, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46730, X'4f3fd7db21e9842c18168227e47167b2cb31a066f41904aab5319f85567c812b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:45.10214+00', 61, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46731, X'e8d3b4253577eb56670ea0eae4b321256ab3667336b92539eb19f773ece260d7', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:51.201425+00', 72, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46732, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:51.6625+00', 82, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(46733, X'dccc2087799e27d085a126ab798570f352bc0c627ed10b2e6afc99a95d95eb54', TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:54.220283+00', 172, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46734, X'a28f107148e7fe23e8cba7e05361071a0a24777da7ff822f82bcc7dc316b4a32', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:14.869531+00', 231, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46735, X'e6e23d4d22071cec716809ac35d65b28448e58c3305e045bd3b55b11f3676183', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:17.683158+00', 83, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46736, X'70787d5cd661b00d0ba27dd1993260ecff63ae556d5b5b1ab0dba62cd537cce9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:24.96316+00', 377, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46737, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.037526+00', 516, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46738, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.030832+00', 631, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46739, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.090958+00', 694, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46740, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.334438+00', 499, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46741, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.036747+00', 818, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46742, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.077886+00', 836, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46743, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.258102+00', 683, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46744, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.105639+00', 1126, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46745, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.373443+00', 897, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46746, X'9602cbcedc08ecfe2ea5017901fea2c27b306bd7dafc231c3bfbd38108054704', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:40.61064+00', 98, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46747, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.92292+00', 323, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46748, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.933756+00', 347, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46749, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.880997+00', 533, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46750, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.92973+00', 540, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46751, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.901687+00', 612, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46752, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.938317+00', 629, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46753, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.965718+00', 636, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46754, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.96526+00', 791, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46755, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.954172+00', 961, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46756, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.945334+00', 1034, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46757, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.88806+00', 355, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46758, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.842823+00', 519, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46759, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.852996+00', 687, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46760, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.94813+00', 637, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46761, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.037019+00', 683, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46762, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.994896+00', 861, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46763, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.932177+00', 939, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46764, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.00967+00', 914, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46765, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.913922+00', 1065, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46766, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:56.91611+00', 1256, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46767, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.176046+00', 370, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46768, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.184762+00', 541, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46769, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.153593+00', 599, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46770, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.155058+00', 610, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46771, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.132144+00', 677, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46772, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.162308+00', 657, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46773, X'681a37a323435bde1aa4d47f0ca8aab8530b1e29c419b9cca8279e1e92deae08', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.013383+00', 420, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46774, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:55.983648+00', 486, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46775, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.099741+00', 410, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46776, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.046153+00', 510, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46777, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.029861+00', 562, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46778, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.092865+00', 504, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46779, X'68bc172eb888f900bb8b977f806a3b00dce5b815b961196e294b14c6dc93983e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:30:10.20901+00', 256, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(46780, X'04a005f0953fca3788a4d14eab849901e26d1174e40d6e230ea38a9fdbcf1ec9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:33:13.619137+00', 556, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46781, X'f47998caac9c377348cdc9ab785899b5079cb1a482f778cdbb0ab73dc43662ea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:33:30.174674+00', 227, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46782, X'fc578462a130775eef99ed92fff943989f33b1238c8c6050fa13f4256b0205cd', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:00.281823+00', 215, 3, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46783, X'bfd57ee2ac53e6b5897988702cdee7058b28f1969ff5164f8dd281c17375ce25', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:42.3623+00', 182, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46784, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.381983+00', 557, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46785, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.410018+00', 585, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46786, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.455182+00', 549, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46787, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.407578+00', 625, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46788, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.453488+00', 603, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46789, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.430858+00', 647, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46790, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.440692+00', 408, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46791, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.458801+00', 440, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46792, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.47468+00', 433, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46793, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.474615+00', 445, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46794, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.44761+00', 502, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46795, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.458781+00', 600, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46796, X'243860d64894381b7deed0bdd7ae3f541e28b83f9b93e2ba1246b590f5b42e5a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:06.303912+00', 205, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(46797, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.079669+00', 337, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46798, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:26.972914+00', 474, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46799, X'c238236fa1c57dccd8dfb766c65264c06e408fafc00f03d9f2270202de1f1de8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:26.97878+00', 564, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46800, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.098869+00', 502, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46801, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.110625+00', 565, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46802, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:26.980362+00', 739, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46803, X'060f5673961331a4f9057d0a34f520e9e0904205161a927fe5bff7858a8a345d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:33.955945+00', 246, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(46804, X'f70e2c6046d0eea46a278618d07c81bd41161dd5c74f3ecbe7e779ddbc6b082e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:59.023001+00', 278, 6, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46805, X'9aca95da23f5b1ccc35146095e4ad1386787e966ec5edb219e6dcd55dbacd607', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:18.16726+00', 189, 11, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46806, X'c8381264b9783072cb62fb647208d5fd47e9c72780875e6298863b912ec92c2a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:35.3293+00', 306, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(46807, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:43.581345+00', 552, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46808, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:43.629077+00', 558, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46809, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:43.552052+00', 681, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46810, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:43.491181+00', 781, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46811, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:43.551258+00', 728, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46812, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:43.477268+00', 838, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46813, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:48.961083+00', 569, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46814, X'6e5006a7bbd254e5f6a4bd806659fd26a3be8d869a1b22b7c5276551ec20e0ed', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:56.276026+00', 224, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(46815, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:58.745793+00', 359, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46816, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:58.720397+00', 424, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46817, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:58.732324+00', 419, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46818, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:58.792254+00', 397, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46819, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:58.76425+00', 437, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46820, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:58.761421+00', 482, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46821, X'2b9dc3373b82e5a8a2dd184c48f252c64f1c8992c685ae6aeb8e642fe11400ef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:18.976808+00', 211, 2, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(46822, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:35.956264+00', 312, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(46823, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:35.970789+00', 349, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(46824, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:35.976372+00', 348, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(46825, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:35.955618+00', 395, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(46826, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:36.013954+00', 366, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(46827, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:35.990252+00', 404, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(46828, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.145378+00', 113, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46829, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.083909+00', 260, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46830, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.167886+00', 425, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46831, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.206211+00', 393, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46832, X'1b7dd718d94fe55833f4e9e3bb72710a7cbf7fd77d3dbe5f9699f3f8f55dff03', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.254774+00', 386, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46833, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.153262+00', 538, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46834, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.250528+00', 459, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46835, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.220779+00', 620, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46836, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.151475+00', 1221, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46837, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.13111+00', 1243, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46838, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:48.400841+00', 896, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46839, X'cab2c4c017dd1bbe2707a29cf0d38271c2e6a3dec6de8312eed216f92c2cd516', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:06.293173+00', 175, 25, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46840, X'42e8dcdc5cd5cba93215f221e34266285fbb9be363d64bb1c910afdfe97bd025', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:10.239114+00', 95, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46841, X'cab2c4c017dd1bbe2707a29cf0d38271c2e6a3dec6de8312eed216f92c2cd516', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:16.977376+00', 133, 25, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46842, X'cab2c4c017dd1bbe2707a29cf0d38271c2e6a3dec6de8312eed216f92c2cd516', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:16.977499+00', 155, 25, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46843, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.207854+00', 255, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46844, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.247009+00', 399, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46845, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.148853+00', 507, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46846, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.20786+00', 512, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46847, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.744238+00', 142, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46848, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.244796+00', 655, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46849, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.652168+00', 378, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46850, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.752662+00', 303, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46851, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.216727+00', 866, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46852, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.211228+00', 1057, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46853, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:07.891355+00', 257, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46854, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:07.895975+00', 290, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46855, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:07.992804+00', 252, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46856, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:07.952573+00', 477, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46857, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.476843+00', 296, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46858, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.029014+00', 787, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46859, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.507558+00', 359, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46860, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.503448+00', 490, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46861, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.486515+00', 526, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46862, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.508347+00', 794, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46863, X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:12.84641+00', 225, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46864, X'38ef5da93492bc7a64d5e4d54619c58eba31392ad1e7bbb05c99b207eef8fe68', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:12.804072+00', 358, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46865, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:12.788911+00', 411, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46866, X'd5eab01f60e5e69440c429570df8e48c570a6f2554b3a25675e9bd4a5b3b89ef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:12.868604+00', 434, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46867, X'964d1695134327b42ecbda8f18b6b8cfb2b168913e631db590433db8e5278b41', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:12.892707+00', 479, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46868, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.262513+00', 195, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46869, X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.318702+00', 298, 25, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46870, X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.296765+00', 383, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46871, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:12.880156+00', 839, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46872, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:12.808772+00', 958, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46873, X'0b81ddb90719d78a461e389b0b31f3796c8b79e46969239c99d615335253e184', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.72685+00', 270, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46874, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.902161+00', 312, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46875, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.75673+00', 589, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46876, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.896893+00', 845, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46877, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.021769+00', 724, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46878, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.75485+00', 1002, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46879, X'38911391e95b311e81a8121fc13c8f93b2c093d8da03e710278ff8fad9eabfff', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.03417+00', 726, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46880, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.929332+00', 855, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46881, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.93022+00', 1124, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46882, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.976917+00', 1166, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46883, X'a80581c131096443f1d01ab1c2e5d9735d8868ac60c94181831b0c648d568554', TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:22.543318+00', 208, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(46884, X'364b80be10cc703c9d6fad31d8ca7cb5ccce0ed0112c2a1c30d45e69431f3c62', TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:11.109124+00', 133, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46885, X'a339901d4ab590b9e2a9a87ad2b7561820e1d591a26813e729a28570782ee81a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:22.500191+00', 744, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46886, X'56514df4b33cb080b2e376749dea6c0258707228fb01950fd02d2b534938671d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:28.913479+00', 338, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46887, X'a5b2858dd192a2e4a9a9e3cc9c77c1dabacea43255af52d07bbaddd1e139de73', TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:35.754661+00', 66, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46888, X'56514df4b33cb080b2e376749dea6c0258707228fb01950fd02d2b534938671d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:39.810134+00', 92, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46889, X'a339901d4ab590b9e2a9a87ad2b7561820e1d591a26813e729a28570782ee81a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:40.386711+00', 668, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46890, X'884e735362b14dbac8c0ccf0e8b6419d923fa2574de380db6066a18bed0aebf2', TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:56.579883+00', 202, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46891, X'1690e2581fac88d13d64c0f5a9857b11c9cd20169ae31bb9bc917a6f4365cdbc', TIMESTAMP WITH TIME ZONE '2023-01-26 09:42:11.470385+00', 160, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46892, X'd7f9b60d5dca5f3a71f11b28ce73e631dd290d47d7e734341dfa79ef19e35255', TIMESTAMP WITH TIME ZONE '2023-01-26 09:42:24.702154+00', 190, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46893, X'e2c3410fbe5d6a663b29649a34c160c1d5b9020cfe70b02584ea5bf31b566a5a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:42:56.799891+00', 95, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46894, X'452014fa26779da501a722dd24466d45870f7c644e24234e6f4a471b4d2f4bff', TIMESTAMP WITH TIME ZONE '2023-01-26 09:43:06.546539+00', 122, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46895, X'ecf1b0ee4d6b104b8104009f3d7ac3962a24a2e38cd3dcf67ea0c98866f987e0', TIMESTAMP WITH TIME ZONE '2023-01-26 09:43:39.52882+00', 210, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46896, X'1c331551c60b1dda99c3dc4fedc443589d3390a722b6e37f5d2d239d18edc415', TIMESTAMP WITH TIME ZONE '2023-01-26 09:43:50.404573+00', 181, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46897, X'311710c3b6147aa5b8e931660fc81b75fabe2d4ea06e5e84d1a69820ed384373', TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:04.648064+00', 205, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46898, X'ef2e247d1039a3a8525809a5e2a98e58127bc1d5eb4c5f19ba5fc15258dca036', TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:12.215126+00', 180, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46899, X'f54b3504ab1d64adf362cb746982e866b01d17951a0ab0c4c889bf2ba9f03825', TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:27.165682+00', 143, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46900, X'a80581c131096443f1d01ab1c2e5d9735d8868ac60c94181831b0c648d568554', TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:44.593511+00', 186, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(46901, X'd74dd84e743f58175cda69a85938768f7cae13cf8b95b2941f968fc8bba12e0c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:59.242126+00', 165, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46902, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:13.943394+00', 577, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46903, X'9047628a53c56e4caa3182c1c8015b971b97dd925517789085325bbb95690951', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:14.038882+00', 773, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46904, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:14.008015+00', 1557, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46905, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:14.029093+00', 1812, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46906, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:13.9984+00', 1920, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46907, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:13.988825+00', 1968, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46908, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:14.065002+00', 1936, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46909, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:14.088994+00', 1979, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46910, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:13.900791+00', 2459, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46911, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:13.973091+00', 2448, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46912, X'0e52c3064e3d3f037e2d4693364d93ff33b90e9cc0b510cd4960547981b38d81', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:26.050655+00', 180, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46913, X'9d43182f103d0ea10160d3a4fe85055099f3ec99a9ea53eb0707f012f7fb7162', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:37.020165+00', 84, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(46914, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.546377+00', 221, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46915, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.993248+00', 296, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46916, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.735102+00', 633, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46917, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.724732+00', 775, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46918, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.996328+00', 535, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46919, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.7329+00', 820, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46920, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.963308+00', 717, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46921, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.932689+00', 776, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46922, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.724679+00', 1009, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46923, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.648705+00', 1225, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46924, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.3367+00', 131, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46925, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.309802+00', 175, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46926, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.310254+00', 230, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46927, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.291575+00', 348, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46928, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.664999+00', 234, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46929, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.292147+00', 616, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46930, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.730343+00', 301, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46931, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.715024+00', 334, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46932, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.744762+00', 391, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46933, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.715092+00', 649, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46934, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.10945+00', 147, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46935, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:59.931869+00', 425, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46936, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:59.955444+00', 706, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46937, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.037734+00', 702, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46938, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:59.990621+00', 774, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46939, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.06954+00', 731, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46940, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.115088+00', 722, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46941, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.100381+00', 746, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46942, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.006825+00', 1050, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46943, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:59.998006+00', 1170, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46944, X'a54d9189036f108be8b4567615f55a279e3b10a6fef5dc4c87ca6d8b86c88495', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:44.267038+00', 554, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(46945, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.233007+00', 317, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46946, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.255001+00', 425, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46947, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.294686+00', 414, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46948, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.240029+00', 620, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46949, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.286868+00', 671, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46950, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.483877+00', 554, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46951, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.625307+00', 507, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46952, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.625307+00', 521, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46953, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.223232+00', 1073, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46954, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.28565+00', 1144, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46955, X'f4bab0e6e6097a4c97bfc41109f1b4b591460dad8fb7fa17dad9d3a27af77377', TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:57.534234+00', 250, 13, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(46956, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.011455+00', 121, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46957, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.098513+00', 258, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46958, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.080731+00', 333, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46959, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.100661+00', 452, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46960, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.145753+00', 541, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46961, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.093028+00', 607, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46962, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.069801+00', 719, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46963, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.14582+00', 697, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46964, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.098451+00', 878, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46965, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.133932+00', 1068, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46966, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:05.882046+00', 72, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(46967, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.924498+00', 309, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46968, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.930533+00', 354, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46969, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.810391+00', 597, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46970, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.936636+00', 487, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46971, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.816782+00', 628, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46972, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.903424+00', 683, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46973, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.809539+00', 812, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46974, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.798512+00', 822, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46975, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.798384+00', 1189, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46976, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.021215+00', 967, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46977, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:14.995684+00', 187, 35, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(46978, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.009698+00', 132, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46979, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:20.932168+00', 379, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(46980, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.054285+00', 381, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46981, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.013604+00', 458, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46982, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.121599+00', 412, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46983, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.032232+00', 592, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46984, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.013255+00', 629, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46985, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.406919+00', 349, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46986, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:20.942589+00', 867, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46987, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:20.928027+00', 997, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46988, X'00c737465c583f8bf132beaac705198cdd5159d832263cbf3211da9fe7a1b514', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:24.735161+00', 687, 30, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE), +(46989, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.008886+00', 520, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(46990, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:28.964248+00', 692, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(46991, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:28.960745+00', 1062, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(46992, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.048634+00', 1222, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(46993, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.155513+00', 1132, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(46994, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.100121+00', 1340, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(46995, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.080919+00', 1425, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(46996, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.049166+00', 1606, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(46997, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:28.964615+00', 2757, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(46998, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.064636+00', 2678, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(46999, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.40491+00', 307, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47000, X'110e0c9ae03a115a9e8da1aa7aa40f45b5bbc834df784f186767ddda16f08754', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.31299+00', 507, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47001, X'd5eab01f60e5e69440c429570df8e48c570a6f2554b3a25675e9bd4a5b3b89ef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.39195+00', 472, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47002, X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.384766+00', 530, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47003, X'ea5c4611b80f33fa70740af95ad555e98aaaa1f0d6f4865cb6148959b381466e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.4353+00', 487, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47004, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.376747+00', 1387, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47005, X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.402022+00', 1388, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47006, X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.351712+00', 1459, 25, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47007, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.371539+00', 2089, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47008, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.392008+00', 2125, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47009, X'82ff277ac815815e72a7a2b8a1639b29669fc19394232c4ff7b7f4059556e9d7', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.570517+00', 320, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47010, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.562933+00', 376, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47011, X'70a5e7f53e52b6cad466f93afbd68cd262b10d9f683dff4436dbb66350f64436', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.655431+00', 385, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47012, X'77025f283671b1bd61b53448ee02b3580ce90aebbf12b84572ac97b9751518b3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.578716+00', 483, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47013, X'832c507dcfcba300e3a2485f82ac9eadd299d422c429d7f060bf84c779c02f21', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.677915+00', 441, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47014, X'f048611570e8b4c3b2a04dc84b8df03bcede8198432c741e745d4ff97355c5b1', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.607034+00', 587, 2, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47015, X'd5268d649f0c9ff3d72d3d7dd70967c0fec6efb88e4894680b212a9971612a21', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.582578+00', 643, 3, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47016, X'43c656debd9ac421c60a9df8a8d5a129aa2db1aa5ffbefb34315e11940d3337b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.640227+00', 642, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47017, X'0aa405d8f9872a40215c8dc0ecefcb9f074811092464caa8ea16f8c127c9dfae', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.607008+00', 912, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47018, X'd67be39fe12f68c829a9ba48eb3af95d98548e60624d207b69846e58dde67112', TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.680439+00', 1002, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47019, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.810647+00', 249, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47020, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.808443+00', 316, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47021, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.769584+00', 885, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47022, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.850396+00', 852, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47023, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.74045+00', 1021, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47024, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.835175+00', 979, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47025, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.835194+00', 1032, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47026, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.812935+00', 1111, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47027, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.770124+00', 1233, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47028, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:00.850327+00', 1562, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47029, X'2747c21d39211fd2980a6357a4a69220502c545dcb35021fbf8943003d8c04ee', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.334509+00', 333, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47030, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.366276+00', 349, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47031, X'74835a86123cf042dc6925bea6a612cb61d3e9198abb74bb60bdec034c97422a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.445153+00', 401, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47032, X'47e48fb6bb420dff7eaf6d6bf899522d3b9676b756e1a70a25f7ddbb3f6aafea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.445139+00', 459, 0, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47033, X'e4306a7381969cdd6d6bc66c6ee72f24675e809d61b13c926820394e2ffde49e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.492067+00', 471, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47034, X'40884d0e2f4e29e76f7eb4074b5907fa9eef02404afb45d67beeff24f26f22eb', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.432234+00', 817, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47035, X'd07003714a61f9ac6e17ae7ee039e0c5f411d2706db9d971de72427dab800397', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.406022+00', 855, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47036, X'169e5f39ac4042fe41e6fc72395360180dcd8042d472161a022faf9ce7824af5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.401294+00', 873, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47037, X'e4e3996225aa05dfd1c26abe9984a75048ab746dd346920f22851fddf46eed1e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.367581+00', 911, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47038, X'cb1a88bfde01d45a7a55c3f2a5a7302f69e91267ec373f19976c31d008cc94ad', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.495732+00', 1012, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47039, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.136287+00', 272, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47040, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.353044+00', 261, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47041, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.167876+00', 649, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47042, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.43046+00', 463, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47043, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.256883+00', 707, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47044, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.365157+00', 616, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47045, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.320397+00', 709, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47046, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.277785+00', 769, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47047, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.167907+00', 1005, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47048, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.377272+00', 992, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47049, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.585493+00', 773, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47050, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.622477+00', 942, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47051, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.58016+00', 1215, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47052, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.612389+00', 1240, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47053, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.769234+00', 1120, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47054, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.564487+00', 1402, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47055, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.580796+00', 1420, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47056, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.577035+00', 1447, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47057, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.564511+00', 1731, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47058, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:09.696601+00', 1641, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47059, X'26046bfd60a8f178d5db9b55e29b36d69976674aedbb1dd1074c1b11b0d399cb', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:18.406947+00', 108, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47060, X'18f1a14b4c00b8e3761af4a0b30f4af303291bdc317e8f70b6a46bc57de3d83a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:28.562582+00', 111, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47061, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.878634+00', 210, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47062, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.83664+00', 489, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47063, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.89267+00', 644, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47064, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.940824+00', 645, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47065, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.888847+00', 721, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47066, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.982197+00', 708, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47067, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.968248+00', 762, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47068, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.955484+00', 795, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47069, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.889076+00', 1000, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47070, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.878608+00', 1089, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47071, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.540687+00', 453, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47072, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.725693+00', 307, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47073, X'88b32903b8b3395563a7cefac413de3df5096d355af265c19a67c6820af19580', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.541462+00', 579, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47074, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.699906+00', 497, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47075, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.732405+00', 565, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47076, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.671343+00', 706, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47077, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.776462+00', 765, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47078, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.75804+00', 813, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47079, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.74424+00', 1049, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47080, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.540692+00', 1264, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47081, X'baeed90d2e4d5d180cb0afb21def10a4e6ea80919ff16173929aa6356a932ea8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.131469+00', 232, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47082, X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.223288+00', 323, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47083, X'110e0c9ae03a115a9e8da1aa7aa40f45b5bbc834df784f186767ddda16f08754', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.232582+00', 337, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47084, X'd5eab01f60e5e69440c429570df8e48c570a6f2554b3a25675e9bd4a5b3b89ef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.228765+00', 367, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47085, X'ea5c4611b80f33fa70740af95ad555e98aaaa1f0d6f4865cb6148959b381466e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.228022+00', 388, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47086, X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.212752+00', 454, 25, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47087, X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.208838+00', 487, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47088, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.234145+00', 491, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47089, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.210948+00', 721, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47090, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.243191+00', 816, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47091, X'2f8954dd99f08e20d46cf29c83db8a19c6b60f52a849a4971a7f9770a6dbd55c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:27.960952+00', 355, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47092, X'9a18d1196caad8bb2a6d420d7a86e6382ffe4e87b23e1fe39ad89e7260fe2371', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.041032+00', 331, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47093, X'8b88bf3bee024809d89f90e4df0569526c91fb117ff0d5a8c9aada05d30d5b97', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:27.818164+00', 560, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47094, X'a728d5ea68e3e9246dac1a1aee744f4f3eecbd60c51e805062d97234f8c8e9a2', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.004809+00', 447, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47095, X'4b71b5234c2ed42e3b80ab38ab3967abe002dc4bc616c8284f90a1a0e200ffee', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.013359+00', 491, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47096, X'b240cf2e050682d4350a2a09cab156e907206b31a0d4121df2f2362e49dca16e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.02476+00', 487, 6, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47097, X'8b37d2f6106859d0dd719f938618adf3a43925fc586b0f9d8332f5e7efe9386d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:27.96416+00', 637, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47098, X'458d258e3c956bdd21a2cef3ed8ab3f4bbbd5f8b455cdc8babd67b6ca4415f0a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.101035+00', 565, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47099, X'35865dafcbbaedc116f851a364d3e7be9af25d50dc274f1161850402c06bd54f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:27.943998+00', 1223, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47100, X'0b1cf8da0cb5f0c08e7fbaf38c7f1c13a6be3495c3f4c30867e18da5d8f1d95d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.01833+00', 1185, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47101, X'51f3529be12a190a381e9e6ca3786c1582f3373415a9516e8536b138e8a7ada3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.289024+00', 411, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47102, X'fd90fd5684ee74d977946e9e70e44f42bebb8747ba0ac39628372adb3b8d6326', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.331214+00', 389, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47103, X'22fa1c9e32625fb50070cd9bdffc663890ebfe96441fba63e95b50598995a154', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.270817+00', 464, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47104, X'ab6d256a87150c42fd5d7d24b773b357c7d38be3c42010b5eeb4f64a80aae187', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.299483+00', 479, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47105, X'2278b3e4dc1faf041f3846b1a9fdba809415982f999996cbd625233eeb9e8d86', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.295348+00', 494, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47106, X'8a44c7e62405b08e63ff4298ca439574d0d7f0853eb10ec4027b9a8866fb9cd2', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.301811+00', 502, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47107, X'ce7ff37a108742d605a06afac78f67fdd9e52582f85d62b7a0221588ea2e4b85', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.250968+00', 627, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47108, X'2f4ea155ab90d1557feae2dfde61965cd0c0ced4030539a2e6515d5c0439f78b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.362709+00', 607, 2, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47109, X'3ac7c0e7acb5911fa16e9c6b53156d52d554b43b08732c4ec0505b2e322621a9', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.296771+00', 874, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47110, X'678a638a9d3a9f2aeefc80c8035b64dea744ba141a9bc3a6ff4407242a842f3c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.289934+00', 912, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47111, X'9a18d1196caad8bb2a6d420d7a86e6382ffe4e87b23e1fe39ad89e7260fe2371', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:03.932246+00', 129, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47112, X'2f8954dd99f08e20d46cf29c83db8a19c6b60f52a849a4971a7f9770a6dbd55c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:04.496175+00', 302, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47113, X'4b71b5234c2ed42e3b80ab38ab3967abe002dc4bc616c8284f90a1a0e200ffee', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:04.496258+00', 343, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47114, X'458d258e3c956bdd21a2cef3ed8ab3f4bbbd5f8b455cdc8babd67b6ca4415f0a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:04.461125+00', 534, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47115, X'35865dafcbbaedc116f851a364d3e7be9af25d50dc274f1161850402c06bd54f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:04.548999+00', 690, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47116, X'8b88bf3bee024809d89f90e4df0569526c91fb117ff0d5a8c9aada05d30d5b97', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:06.978393+00', 116, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47117, X'0b1cf8da0cb5f0c08e7fbaf38c7f1c13a6be3495c3f4c30867e18da5d8f1d95d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:06.978103+00', 530, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47118, X'a728d5ea68e3e9246dac1a1aee744f4f3eecbd60c51e805062d97234f8c8e9a2', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.471585+00', 106, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47119, X'b240cf2e050682d4350a2a09cab156e907206b31a0d4121df2f2362e49dca16e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.436304+00', 231, 6, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47120, X'8b37d2f6106859d0dd719f938618adf3a43925fc586b0f9d8332f5e7efe9386d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.469852+00', 233, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47121, X'ea5c4611b80f33fa70740af95ad555e98aaaa1f0d6f4865cb6148959b381466e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.035752+00', 282, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47122, X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.04475+00', 323, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47123, X'110e0c9ae03a115a9e8da1aa7aa40f45b5bbc834df784f186767ddda16f08754', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.027675+00', 342, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47124, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.987346+00', 401, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47125, X'd5eab01f60e5e69440c429570df8e48c570a6f2554b3a25675e9bd4a5b3b89ef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.027773+00', 401, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47126, X'baeed90d2e4d5d180cb0afb21def10a4e6ea80919ff16173929aa6356a932ea8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.413989+00', 146, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47127, X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.365241+00', 296, 25, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47128, X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.39172+00', 279, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47129, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.004652+00', 829, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47130, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.051672+00', 819, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47131, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.646646+00', 502, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47132, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.644811+00', 592, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47133, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.70419+00', 698, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47134, X'88b32903b8b3395563a7cefac413de3df5096d355af265c19a67c6820af19580', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.971853+00', 416, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47135, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.619012+00', 803, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47136, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.59376+00', 972, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47137, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.224818+00', 574, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47138, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.986821+00', 820, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47139, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.582898+00', 1363, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47140, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:11.723946+00', 1284, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47141, X'110e0c9ae03a115a9e8da1aa7aa40f45b5bbc834df784f186767ddda16f08754', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:29.840694+00', 111, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47142, X'ea5c4611b80f33fa70740af95ad555e98aaaa1f0d6f4865cb6148959b381466e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:29.840719+00', 123, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47143, X'baeed90d2e4d5d180cb0afb21def10a4e6ea80919ff16173929aa6356a932ea8', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.360342+00', 314, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47144, X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.372567+00', 422, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47145, X'd5eab01f60e5e69440c429570df8e48c570a6f2554b3a25675e9bd4a5b3b89ef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.331376+00', 516, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47146, X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.29843+00', 570, 25, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47147, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.362472+00', 559, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47148, X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.330511+00', 673, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47149, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.300927+00', 990, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47150, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.324494+00', 1045, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47151, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.707965+00', 148, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47152, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.727172+00', 287, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47153, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.740932+00', 488, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47154, X'88b32903b8b3395563a7cefac413de3df5096d355af265c19a67c6820af19580', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.043005+00', 202, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47155, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.694561+00', 573, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47156, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.713764+00', 558, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47157, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.715893+00', 575, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47158, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.077475+00', 329, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47159, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.120687+00', 321, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47160, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.691576+00', 817, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47161, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.280581+00', 419, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47162, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.318483+00', 534, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47163, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.204192+00', 751, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47164, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.321643+00', 835, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47165, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.326447+00', 1067, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47166, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.229859+00', 1294, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47167, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.324844+00', 1365, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47168, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.789737+00', 1081, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47169, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.326642+00', 1809, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47170, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.350795+00', 1865, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47171, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.457799+00', 417, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47172, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.476901+00', 456, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47173, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.580437+00', 384, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47174, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.540872+00', 443, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47175, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.433632+00', 599, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47176, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.483014+00', 582, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47177, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:54.702483+00', 377, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47178, X'1afd0ebeec65f345585a689ed3276b14fc54abbdca09ff2840433672dbd7e12e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:54.88883+00', 556, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47179, X'611c531fc02979b1c766ed7bad5823ada8cdd4090a3560d915e7382b38a40a6f', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:54.82487+00', 640, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47180, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:54.894869+00', 620, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47181, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:54.892459+00', 642, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47182, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:54.961516+00', 611, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47183, X'c48f3ac43425d5792c114e6e15e11a77075be12a943d345a7a6f5e8f88a05826', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:00.700635+00', 140, 5, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47184, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:24.63046+00', 380, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47185, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:24.717738+00', 470, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47186, X'12ff662a111fc272729f30501f5622f27e0130b08aadacf9b7ccda32a518d9ec', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:24.766922+00', 510, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47187, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:24.766576+00', 561, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47188, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:24.946874+00', 415, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47189, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:24.767306+00', 658, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47190, X'2fbbf8acea56f112818d5b70fefd035ae7238065ee9f193acb19f87e27867994', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:46.517608+00', 236, 6, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(47191, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.762035+00', 220, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47192, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.766197+00', 268, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47193, X'12ff662a111fc272729f30501f5622f27e0130b08aadacf9b7ccda32a518d9ec', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.727323+00', 332, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47194, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.716661+00', 384, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47195, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.741929+00', 375, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47196, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.775582+00', 366, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47197, X'7c0b92c307d2007f36ca4eafc3feb559c2f32a9e177a0202bd4bf8c529322e24', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:53.560801+00', 215, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(47198, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.210093+00', 307, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47199, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.217235+00', 386, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47200, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.228773+00', 398, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47201, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.211858+00', 433, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47202, X'12ff662a111fc272729f30501f5622f27e0130b08aadacf9b7ccda32a518d9ec', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.217271+00', 437, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47203, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.207475+00', 505, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47204, X'e829049742397b67da06a95aa8116cc99638b5dbe63765ea7ee5324696e519fd', TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:59.509454+00', 161, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(47205, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:01.636508+00', 434, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47206, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:01.631838+00', 501, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47207, X'12ff662a111fc272729f30501f5622f27e0130b08aadacf9b7ccda32a518d9ec', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:01.721163+00', 484, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47208, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:01.637613+00', 576, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47209, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:01.79392+00', 458, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47210, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:01.665369+00', 602, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47211, X'f9159315cd93cff6a964c6b88a05188d344e88720be6aa28f2c3aff0eac07d1b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:03.545288+00', 240, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47212, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:06.789267+00', 628, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47213, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:06.782325+00', 687, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47214, X'12ff662a111fc272729f30501f5622f27e0130b08aadacf9b7ccda32a518d9ec', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:06.760663+00', 760, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47215, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:06.811851+00', 716, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47216, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:06.801733+00', 775, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47217, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:06.792842+00', 800, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47218, X'2b9dc3373b82e5a8a2dd184c48f252c64f1c8992c685ae6aeb8e642fe11400ef', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:09.174322+00', 210, 2, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(47219, X'552a32ced815eb993c6e7b203d96574fc9aaa20d255752dc609b1581d03b1cfc', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:16.26688+00', 165, 4, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(47220, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.485355+00', 256, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47221, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.518472+00', 249, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47222, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.51425+00', 493, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47223, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.540948+00', 453, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47224, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.537862+00', 485, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47225, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.524724+00', 555, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47226, X'552a32ced815eb993c6e7b203d96574fc9aaa20d255752dc609b1581d03b1cfc', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:28.598692+00', 275, 4, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(47227, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.330828+00', 553, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47228, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.362306+00', 567, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47229, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.32167+00', 617, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47230, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.283199+00', 701, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47231, X'bbf7b30b5a49d811bb33b7eb3f15a578e1852943be218e36b02ac4644054695c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.392716+00', 611, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47232, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.362845+00', 662, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47233, X'23452513407ad0145b61985091197e576f43c220489a9bfdf47da29c47f70130', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:35.120559+00', 196, 2, FALSE, 'question', NULL, 1, 29, NULL, NULL, 3, FALSE), +(47234, X'2c33fca2c25032b218f6193909339cef0e3f1f4999e216ec85124a5ec45f3e68', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:43.872657+00', 179, 3, FALSE, 'question', NULL, 1, 29, NULL, NULL, 3, FALSE), +(47235, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:51.901321+00', 582, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47236, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:51.916057+00', 614, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47237, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:51.876732+00', 667, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47238, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:51.874816+00', 691, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47239, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:51.882641+00', 732, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47240, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:51.876119+00', 762, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47241, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.426333+00', 174, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47242, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.390607+00', 275, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47243, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.415834+00', 388, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47244, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.811037+00', 206, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47245, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.409978+00', 702, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47246, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.751133+00', 407, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47247, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.809111+00', 356, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47248, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.768299+00', 447, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47249, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.400188+00', 1211, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47250, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.413327+00', 1201, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47251, X'26046bfd60a8f178d5db9b55e29b36d69976674aedbb1dd1074c1b11b0d399cb', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:05.284582+00', 102, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47252, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.391105+00', 461, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47253, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.48473+00', 542, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47254, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.593598+00', 433, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47255, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.48126+00', 683, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47256, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.462716+00', 808, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47257, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.652719+00', 658, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47258, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.406695+00', 941, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47259, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.652955+00', 725, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47260, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.594002+00', 1128, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47261, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.601956+00', 1140, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47262, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-01-26 09:57:57.701159+00', 1213, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47263, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:20.866624+00', 559, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47264, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:21.152841+00', 437, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47265, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:20.876814+00', 1593, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47266, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:20.93907+00', 1910, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47267, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:21.068238+00', 1838, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47268, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:20.904947+00', 2069, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47269, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:20.986511+00', 1991, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47270, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:21.175739+00', 1861, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47271, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:21.090254+00', 2028, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47272, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:21.050404+00', 2224, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47273, X'd0aa1554c57a9f280fbc16057c33ce64c37e787a784f246c11f88e7bf3650313', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:34.416268+00', 238, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47274, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.118083+00', 261, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47275, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.11302+00', 425, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47276, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.108651+00', 603, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47277, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.108084+00', 653, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47278, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.131656+00', 1095, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47279, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.112926+00', 1041, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47280, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.12011+00', 1098, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47281, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.107966+00', 1069, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47282, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.117796+00', 1378, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47283, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.097201+00', 1402, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47284, X'feb3e8cf78c0b6e103b1f877fcc4e9007ce0b24adee1d16e706fb87e54c30028', TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:42.334131+00', 321, 4, TRUE, 'question', NULL, 1, 31, NULL, NULL, 3, FALSE), +(47285, X'848a9f48ac50de3013082e6d9a13700ea1f53bc719c442850da3db0bb6e91566', TIMESTAMP WITH TIME ZONE '2023-01-26 09:59:07.433909+00', 495, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47286, X'9c54f94d942f30732b56b14153cfa0fb6d7853eb9454cc7205565edbedd6caa2', TIMESTAMP WITH TIME ZONE '2023-01-26 10:00:49.920594+00', 515, 37, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47287, X'30ff5b00baa7671e429f0723ed15c9c2ad90e3bc7aa5529592f7d1ac2e559de4', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:18.580037+00', 179, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(47288, X'c08b9b39f8a40fd20818d1a3736fc53f629e903d96b00bac67b1719b6a33cd19', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:18.580084+00', 357, 3, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(47289, X'e83e0a8202979ea3dfb1fb89ef85155eaca01a4aeda5f334a89dc8e721d7a953', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:18.585498+00', 353, 3, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(47290, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.29483+00', 486, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47291, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.329664+00', 669, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47292, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.312838+00', 967, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47293, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.925182+00', 371, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47294, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.381063+00', 1023, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47295, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.92197+00', 549, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47296, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.738305+00', 800, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47297, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.644865+00', 932, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47298, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.322992+00', 1429, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47299, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.791854+00', 1051, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47300, X'26046bfd60a8f178d5db9b55e29b36d69976674aedbb1dd1074c1b11b0d399cb', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:37.01139+00', 93, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47301, X'fd04e0217bf9e95de47a8cfbbcfd6b1194b1368dcc2be751530d8c9e0bc8989e', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.383375+00', 547, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47302, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.448047+00', 503, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47303, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.36406+00', 694, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47304, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.481163+00', 842, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47305, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.523817+00', 961, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47306, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.571096+00', 966, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47307, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.526911+00', 1136, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47308, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.376968+00', 1296, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47309, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.523166+00', 1165, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47310, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.509064+00', 1492, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47311, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.099147+00', 166, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47312, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.185509+00', 722, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47313, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.104708+00', 999, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47314, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.225798+00', 950, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47315, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.568615+00', 632, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47316, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.137313+00', 1125, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47317, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.197369+00', 1085, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47318, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.0905+00', 1310, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47319, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.582181+00', 875, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47320, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.556638+00', 1001, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47321, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.529905+00', 256, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47322, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.474334+00', 438, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47323, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.530192+00', 431, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47324, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.519004+00', 548, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47325, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.515591+00', 579, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47326, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.524856+00', 578, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47327, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.581294+00', 191, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47328, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.680738+00', 235, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47329, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.680674+00', 372, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47330, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.587924+00', 622, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47331, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.832599+00', 451, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47332, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.83261+00', 548, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47333, X'74b775cc839e15bbcec30bb42db132b4079a235221753ff632023857c78f021d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:16.802453+00', 363, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47334, X'01639419021f8951ce7bee5de08dd3f126204bc3ba7ebfa1680faeb0f143e646', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:16.850056+00', 339, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47335, X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:16.856094+00', 353, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47336, X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:16.838614+00', 427, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47337, X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:16.850214+00', 415, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47338, X'60c84b43b4a0596544a61f4ab034c239b2842fcfcb45623705794316ca839fee', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:16.819405+00', 464, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47339, X'f4c37d9fe7bba7ce3408795f51585d1e2499e212268fdb4dcf191210aa8bafd0', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:31.654768+00', 343, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47340, X'7e2bb040b9e9f89d9439294df265ed570b808bfd9e68256c5411bcf41e8c4281', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:31.74037+00', 288, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47341, X'28b0564aa5c39550ea4a56296ccbbb3d7803293ec692ab0206379a63e1197d48', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:31.725409+00', 357, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47342, X'2d1060f133e4ccc5e019f4e22dee6f4d8e8ee3b39553cba7438920386e02eeba', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:31.724714+00', 418, 7, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47343, X'269f1a4d2b2c9980ff5d80b535f9826531d3610e26bf2e54cc51469b5659353b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:31.740394+00', 416, 3, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47344, X'256b83eedb6c1e6872d7c855bc684234f0a8a5bd70a24f0766d19cae73f4d7a5', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:31.713154+00', 459, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47345, X'42775c367e4486b7bc7b6b2a42c2006ae7c42a5126fe6af8ed1bdf28b40d1740', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.217163+00', 275, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47346, X'60c84b43b4a0596544a61f4ab034c239b2842fcfcb45623705794316ca839fee', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.286032+00', 242, 10, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47347, X'01639419021f8951ce7bee5de08dd3f126204bc3ba7ebfa1680faeb0f143e646', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.293881+00', 245, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47348, X'044695fedfd30bf21a5e65a5124c2d2f52b7d904cb7aa34243c92f3be46dd60a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.263024+00', 287, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47349, X'74b775cc839e15bbcec30bb42db132b4079a235221753ff632023857c78f021d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.282342+00', 292, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47350, X'08bcfd040c16f482346544d279d1def99355be972ad32531ae65f5f6d8f1b105', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.28601+00', 289, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47351, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:38.930308+00', 308, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47352, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:38.932588+00', 361, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47353, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:38.966824+00', 342, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47354, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:38.984709+00', 390, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47355, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:39.00944+00', 455, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47356, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:38.976695+00', 556, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47357, X'dbac558e98f16563df2203bb64a8080dafe99457991e339062cddbed845849c5', TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.129599+00', 385, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47358, X'03ba393747437c2396b5541ae710e38c281e7cb7887db020c3fd14525d29cc64', TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.128234+00', 451, 8, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47359, X'f6e820a8babd10e0e65afc083effc53477774ad0130e1ab15242f609537a603f', TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.152211+00', 445, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47360, X'390fe2702e9726166bbcc43403c534bdedca616ef64af668586f0f8af9853fc4', TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.123486+00', 529, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47361, X'335299dcda788aceeec24c4dc08e1657d005ff88e928cc2b7a17e8cdc02bfe7a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.168455+00', 523, 2, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47362, X'4022fe91c64cd8d1e584303934807e483142b46a0cf3290cfab6ae32ccc2b7bd', TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.143672+00', 550, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47363, X'f898abb57c853de502942071990a33c681811376ec3ea0befc7ee91e36d3a76c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.640164+00', 266, 2, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47364, X'2d8cb04d4f4cf1cb29138b9881da6f44a6eb4472dc7931fe10b6916fcae78f8f', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.554421+00', 367, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47365, X'e7d8b1fd6d156487df8608f437f9fe5a3adc944f2a6c065d6094129c9d0608b4', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.581496+00', 363, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47366, X'e9b90f84cab34de2a53704f121a9aea52cbcefbbddda84b742af5fca242c7af7', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.640169+00', 319, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47367, X'52a766f3266042bc3009d9e37e6cba01e48c9070aed8623007e2a167d63f456c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.588227+00', 435, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47368, X'1b635040c74253a09de9a1174a3f04865cc2f3655fdbaa4e751e189ec6ad5477', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.623457+00', 423, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47369, X'483a9670922ec80c17a7d2d36a8bc1d99cdb34aba91296bc0837926e6eac8dab', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:10.356133+00', 203, 5, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(47370, X'e7d8b1fd6d156487df8608f437f9fe5a3adc944f2a6c065d6094129c9d0608b4', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.71759+00', 237, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47371, X'e9b90f84cab34de2a53704f121a9aea52cbcefbbddda84b742af5fca242c7af7', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.728167+00', 265, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47372, X'2d8cb04d4f4cf1cb29138b9881da6f44a6eb4472dc7931fe10b6916fcae78f8f', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.783798+00', 315, 3, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47373, X'f898abb57c853de502942071990a33c681811376ec3ea0befc7ee91e36d3a76c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.731613+00', 379, 2, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47374, X'52a766f3266042bc3009d9e37e6cba01e48c9070aed8623007e2a167d63f456c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.780707+00', 355, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47375, X'1b635040c74253a09de9a1174a3f04865cc2f3655fdbaa4e751e189ec6ad5477', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.789088+00', 366, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47376, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.044557+00', 324, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47377, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:18.893988+00', 523, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47378, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.011784+00', 454, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47379, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:18.956038+00', 522, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47380, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:18.949999+00', 551, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47381, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.044564+00', 472, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47382, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:21.596657+00', 308, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(47383, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:24.91291+00', 375, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47384, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:24.949932+00', 407, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47385, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:24.980345+00', 438, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47386, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:24.955397+00', 469, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47387, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:24.952711+00', 506, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47388, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:24.95548+00', 541, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47389, X'243860d64894381b7deed0bdd7ae3f541e28b83f9b93e2ba1246b590f5b42e5a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:27.022356+00', 231, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(47390, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.264157+00', 268, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47391, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.372978+00', 401, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47392, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.363759+00', 443, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47393, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.350618+00', 478, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47394, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.320907+00', 553, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47395, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.291089+00', 616, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47396, X'87f2c0512194c2216040ae75b2ad37907b0fa81cf1ab678ed48b52faeee3675d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:34.689986+00', 272, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47397, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.689863+00', 302, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47398, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.672+00', 374, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47399, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.621105+00', 441, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47400, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.693887+00', 406, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47401, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.700327+00', 463, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47402, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.685949+00', 488, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47403, X'09559cd96ebe4d44fdfcdc1b5b5654e25c4e513d1f774109695e914dff221c70', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:43.313443+00', 189, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47404, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.439868+00', 328, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47405, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.491599+00', 385, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47406, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.622696+00', 299, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47407, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.528807+00', 424, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47408, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.49181+00', 513, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47409, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.572624+00', 450, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47410, X'87f2c0512194c2216040ae75b2ad37907b0fa81cf1ab678ed48b52faeee3675d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:49.287452+00', 229, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47411, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:56.885572+00', 559, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47412, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:56.912695+00', 621, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47413, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:56.854689+00', 681, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47414, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:56.840623+00', 734, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47415, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:56.925952+00', 700, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47416, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:56.911589+00', 766, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47417, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.498581+00', 472, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47418, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.468956+00', 561, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47419, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.573079+00', 583, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47420, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.655564+00', 794, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47421, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.730641+00', 733, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47422, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.456333+00', 1022, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47423, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.547295+00', 945, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47424, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.575138+00', 942, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47425, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.476718+00', 1458, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47426, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.50836+00', 1458, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47427, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.395402+00', 385, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47428, X'623f9ec3beb69a8774b6c5d5db8b2f876b5c75d869d6337bbfd65ed98651516b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.350222+00', 516, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47429, X'06012da79cec79bee23a4058bf1b1b2ae8046c5fdee24800ec982b08aa9b8f17', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.420742+00', 439, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47430, X'8c6feab64dc6d3eea43cf2428dbbc22f23eac21c419f0b62c8d0e6289689f4f0', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.379561+00', 526, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47431, X'99f39f868c00c159e945dde1fd2d6f37d09f552a34a2d8d71f985b60c1e15562', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.35081+00', 672, 17, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47432, X'd4bd9128f3a19f1336b71af640dcb94ef806ac8824dac5a70c3bdf79f98d1209', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.425153+00', 640, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47433, X'336e3a584a850e7c9ebdc549256e8a8b495bf04e230bfa3b87b942b641245e09', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.400887+00', 698, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47434, X'4be5e926ab5c80e511be3ebc87930937bd0ffb96d1785a0d50e62ba09608edef', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.411748+00', 701, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47435, X'a5e80b109638fb11540d8b719b381feb47a13c847c3ab04e4cd8fc9a8a2564da', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.355003+00', 1147, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47436, X'6a370c70ddd0ee2c0cd6da418c0092fa56d9261028a1922dd1b0a6a001ee1bf9', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.429748+00', 1088, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47437, X'514866e3685cbda5bdc22e89bc14f719c6611cf4f00f08c751f94c9f3880c3ec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:37.917772+00', 422, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47438, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.014772+00', 344, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47439, X'043205889f2bbeeba4a34feb1d9341a819fe702a68b1c07436d1c130f5861b51', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.01539+00', 397, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47440, X'328d48e93f13e13c453feb759b37af1e5f089e6ecf39e839f68f26ae9f173a88', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:37.996927+00', 441, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47441, X'fb860ac1534c7627ecded8a6a4686908eaf52dc93f9e0d276f019c535207e76e', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:37.922811+00', 689, 17, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47442, X'6c5f3da092202476aeab18f2e584030f30502184f79bba96f4f74809f714a24f', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.024759+00', 606, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47443, X'f56a37a0fd27d2b8d04615460ee5c50ff42489456be44ad79ca734a26d2d77dc', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:37.981627+00', 680, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47444, X'7b60855f0b6b07a8d21645ae41ef9454eec13c231885c62caeee6f3eb16b8df1', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.032521+00', 684, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47445, X'7f185c673999c2b72bc0f16addd1b7994376f575ae0f9f91fd7222ed5b94ec8e', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:37.943905+00', 896, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47446, X'62e4c3f4c670ccb96724288bbc97f68ca15aac651dde5cdb3c4814011d27c50c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:37.936314+00', 1046, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47447, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.12485+00', 534, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47448, X'd4bd9128f3a19f1336b71af640dcb94ef806ac8824dac5a70c3bdf79f98d1209', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.073663+00', 667, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47449, X'8c6feab64dc6d3eea43cf2428dbbc22f23eac21c419f0b62c8d0e6289689f4f0', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.0912+00', 660, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47450, X'623f9ec3beb69a8774b6c5d5db8b2f876b5c75d869d6337bbfd65ed98651516b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.012682+00', 793, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47451, X'06012da79cec79bee23a4058bf1b1b2ae8046c5fdee24800ec982b08aa9b8f17', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.10058+00', 756, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47452, X'99f39f868c00c159e945dde1fd2d6f37d09f552a34a2d8d71f985b60c1e15562', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.085849+00', 1124, 17, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47453, X'336e3a584a850e7c9ebdc549256e8a8b495bf04e230bfa3b87b942b641245e09', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.172083+00', 1144, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47454, X'4be5e926ab5c80e511be3ebc87930937bd0ffb96d1785a0d50e62ba09608edef', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.039084+00', 1311, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47455, X'6a370c70ddd0ee2c0cd6da418c0092fa56d9261028a1922dd1b0a6a001ee1bf9', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:43.993187+00', 1812, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47456, X'a5e80b109638fb11540d8b719b381feb47a13c847c3ab04e4cd8fc9a8a2564da', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.023878+00', 1787, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47457, X'b687228d1041fc2c09cb13e0a8565a6d56e90c27ed97dd2c1992e5b97461dd48', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.032662+00', 343, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47458, X'c8052c956c744ea4cbbe2630bf3e0fab071761d02d9d76b361e33b8f952ace1d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.077138+00', 492, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47459, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.172737+00', 466, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47460, X'3854ec1be21323b95c044984a3c4227e7e7f99a37484d6aee1d87f19cfc05f77', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.40134+00', 240, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47461, X'e8ee8b741d82484e0e6ac747701104285d78c853894c4273b6f650760ccccf40', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.378917+00', 423, 17, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47462, X'3fc9d48108fba226f4cca1647598c2e94b37ce77309b0866a06bb3553093e747', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.345862+00', 476, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47463, X'72253ebab7b825c94ad8e49b63a17f1707ec83eddf4fc0eb1f8822b45463bdff', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.362741+00', 532, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47464, X'c9891f7dc0185c70148046634df5c59bdabefb5172188fed21a7269b12ab7027', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.320324+00', 598, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47465, X'ecd8c8bfda93199708648206754ee2fc53a65d416842202c8dc5ab4265bbe921', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.140453+00', 1002, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47466, X'098829e035f65555c60e7d92dd610f4314e726047198f943a9fd68ae346c35de', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.217217+00', 997, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47467, X'623f9ec3beb69a8774b6c5d5db8b2f876b5c75d869d6337bbfd65ed98651516b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.050648+00', 216, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47468, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.335989+00', 509, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47469, X'06012da79cec79bee23a4058bf1b1b2ae8046c5fdee24800ec982b08aa9b8f17', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.375058+00', 673, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47470, X'8c6feab64dc6d3eea43cf2428dbbc22f23eac21c419f0b62c8d0e6289689f4f0', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.185483+00', 871, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47471, X'336e3a584a850e7c9ebdc549256e8a8b495bf04e230bfa3b87b942b641245e09', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.334383+00', 844, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47472, X'99f39f868c00c159e945dde1fd2d6f37d09f552a34a2d8d71f985b60c1e15562', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.395265+00', 787, 17, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47473, X'd4bd9128f3a19f1336b71af640dcb94ef806ac8824dac5a70c3bdf79f98d1209', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.212196+00', 974, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47474, X'6a370c70ddd0ee2c0cd6da418c0092fa56d9261028a1922dd1b0a6a001ee1bf9', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.167373+00', 1190, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47475, X'4be5e926ab5c80e511be3ebc87930937bd0ffb96d1785a0d50e62ba09608edef', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.416214+00', 1009, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47476, X'a5e80b109638fb11540d8b719b381feb47a13c847c3ab04e4cd8fc9a8a2564da', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.34888+00', 1137, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47477, X'c536e8beb65628321ba586761750717b9861f3ba6c23c3cb6217da410ccc23ee', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:57.996019+00', 648, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47478, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:57.963225+00', 1026, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47479, X'f407bf6645522b7deacb6bb7d6ac1a2ab49be16243949966f8ae9d7c19898230', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:57.961637+00', 1167, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47480, X'85d34e9d3a72e3be03a0956aaa9d8ed517bbc09e4fe617cad5a14265838156af', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:58.029167+00', 1102, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47481, X'9b596034670887eef0a3738410e0d7d2c31828681c45555457aa68876da25921', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:57.832982+00', 1441, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47482, X'386e8471f800395b551738562f4d35d573655001777e907bb595ec34175a6f0a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:57.974482+00', 1359, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47483, X'13ff448233958896a72ed33aa5682ef52111a726daf14c2c74b1bffc5685cb2b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:57.965128+00', 1420, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47484, X'aa3b4bebbb2aa1ea575861881ab9574fe3c9fff2f9f055f28854a8c78386d775', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:57.965132+00', 1533, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47485, X'267f2508095ee9c803c85f026ff7dbd7cdd105920479c41c265550ab20db7a82', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:58.110729+00', 1363, 17, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47486, X'd0e7054a8607be1e962cdf95262f845479188fcaa0c2a38f2b4b11bc9c0d4dd9', TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:58.047725+00', 1453, 1, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47487, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.668767+00', 516, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47488, X'b3de9180cbff6d42a80780a06e5e90efbf2181d8eb76160c83f1022e0b703648', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.733263+00', 675, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47489, X'f3d2a4792e7cb129682f523db9006f5ac4ede654f13e43289a5f3b2b7e2655dc', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.713282+00', 4725, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47490, X'6195e3680e2ab105f30a1abc0f3b19e573562210c8c2f8ca01f0d94ebb053a03', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.587306+00', 4852, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47491, X'28a83145ccbd7fefc86c8f0b6ca2d0db7d3e5b90de31bb35ed483f7f2b2d86df', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.655511+00', 4986, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47492, X'f3d441cc9c83afd64158dc50964cd9340199fe5f2d238ceb1f67fcee5579821d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.560707+00', 5282, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47493, X'11f38c968eb964a4079eb1373154369a48dc68a4416b719272c4766b8773b7da', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.781725+00', 5069, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47494, X'9d07fc4a27824c6a0158946eb0bf59b4053ebc2ac7e955a6b89c3f54c2151fad', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.705908+00', 5835, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47495, X'308de4c4c4ed344f17a777c0c7f38cccf96efdfed34c568eba3cca1bbbc2fff5', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.552529+00', 7104, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47496, X'4c58e76fe5ee7920139f9e4b5ccf2e8ecb09bf65584128ced119da14a92650a8', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:09.724864+00', 6979, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47497, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:35.822121+00', 250, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(47498, X'c48f3ac43425d5792c114e6e15e11a77075be12a943d345a7a6f5e8f88a05826', TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:56.290496+00', 154, 5, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(47499, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.437676+00', 269, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47500, X'b3de9180cbff6d42a80780a06e5e90efbf2181d8eb76160c83f1022e0b703648', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.054943+00', 1599, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47501, X'6195e3680e2ab105f30a1abc0f3b19e573562210c8c2f8ca01f0d94ebb053a03', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.381381+00', 1556, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47502, X'f3d2a4792e7cb129682f523db9006f5ac4ede654f13e43289a5f3b2b7e2655dc', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.007866+00', 2018, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47503, X'28a83145ccbd7fefc86c8f0b6ca2d0db7d3e5b90de31bb35ed483f7f2b2d86df', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:46.949365+00', 2214, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47504, X'11f38c968eb964a4079eb1373154369a48dc68a4416b719272c4766b8773b7da', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.029855+00', 2198, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47505, X'f3d441cc9c83afd64158dc50964cd9340199fe5f2d238ceb1f67fcee5579821d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.474351+00', 1841, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47506, X'9d07fc4a27824c6a0158946eb0bf59b4053ebc2ac7e955a6b89c3f54c2151fad', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:46.967709+00', 2406, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47507, X'308de4c4c4ed344f17a777c0c7f38cccf96efdfed34c568eba3cca1bbbc2fff5', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.015634+00', 2958, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47508, X'4c58e76fe5ee7920139f9e4b5ccf2e8ecb09bf65584128ced119da14a92650a8', TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.50883+00', 2483, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47509, X'f4bab0e6e6097a4c97bfc41109f1b4b591460dad8fb7fa17dad9d3a27af77377', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.207082+00', 367, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47510, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.165383+00', 435, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47511, X'5a151b36cab17afce3c7343a175274ae4c0e3cd5bba7804bff12a0b776422480', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.212893+00', 418, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47512, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.274796+00', 539, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47513, X'eced80f64ed06e974d874d202a03db7dcfda90e7f360e8be46cfdf5630ffe562', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.245526+00', 628, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47514, X'd8b82c75987e52d097fae90031ee184092a45206ef942fba4a84622e1b788177', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.625285+00', 324, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47515, X'42bee50874e36b9c34e3ee136d8bbf3ce254d59063e2d26fd50838167775db30', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.564871+00', 395, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47516, X'd22183b4fc1e13f650ea997cddfdcb47af996fcb01750d3f02cbbec353b62e91', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.298388+00', 699, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47517, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.335555+00', 943, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47518, X'a54d9189036f108be8b4567615f55a279e3b10a6fef5dc4c87ca6d8b86c88495', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.519174+00', 833, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47519, X'07bdccc58f950478e3596e2175da503008852307a2b84d31eea01aef941e3c6a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:27.436694+00', 154, 2, TRUE, 'question', NULL, 1, 1, NULL, NULL, 3, FALSE), +(47520, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:16.932694+00', 880, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47521, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:16.951103+00', 1114, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47522, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.304761+00', 1143, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47523, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.678592+00', 1255, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47524, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.569399+00', 1516, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47525, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.44537+00', 1701, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47526, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.688772+00', 1615, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47527, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.649707+00', 1783, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47528, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.732687+00', 1726, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47529, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.58555+00', 1925, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47530, X'0163101f1f4be6cbd207c4defde7874bda330a6ede8b08b4464c3fa5200ca264', TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:37.604394+00', 501, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(47531, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.389693+00', 347, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47532, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.326492+00', 523, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47533, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.34035+00', 517, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47534, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.373545+00', 560, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47535, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.369666+00', 579, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47536, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.338741+00', 827, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47537, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.392796+00', 843, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47538, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.297888+00', 989, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47539, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.344049+00', 1109, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47540, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.355309+00', 1139, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47541, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.22183+00', 396, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47542, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.540677+00', 425, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47543, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.641619+00', 443, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47544, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.670133+00', 581, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47545, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.78074+00', 541, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47546, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.669901+00', 681, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47547, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.350425+00', 1062, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47548, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.645302+00', 847, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47549, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.468819+00', 1053, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47550, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.58468+00', 1190, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47551, X'110e0c9ae03a115a9e8da1aa7aa40f45b5bbc834df784f186767ddda16f08754', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.924805+00', 259, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47552, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.945272+00', 290, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47553, X'ea5c4611b80f33fa70740af95ad555e98aaaa1f0d6f4865cb6148959b381466e', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.835415+00', 443, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47554, X'82475ab71b855007c0b145779b57d425e8138afc33d5a22a0dac0fd7f7ad6fcf', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.928735+00', 394, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47555, X'e1e56c0bb26009caec3e8a9bd4b42d6801474d7c246cf56aa4a48b959b236ed5', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.920799+00', 426, 25, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47556, X'd5eab01f60e5e69440c429570df8e48c570a6f2554b3a25675e9bd4a5b3b89ef', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.961853+00', 414, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47557, X'a32e97f2b7582ea1c4c71d38f39a4f7973bbce5e2a2be98edc6ab37b3873ec91', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.945627+00', 490, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47558, X'2a3a144f8099dc8c206151a4d4b73efcd01ac35047d955bc663790959eb566ba', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.928633+00', 548, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47559, X'104adbc0e45e965d2fc440e8f8bb74c2b335659ebbf588ec6d72f3338948473a', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.922084+00', 874, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47560, X'bfc371c59ab29efde51e91775b927451966c238f4589e27f1f07d3861e7bf0b5', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:14.920902+00', 920, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47561, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.339126+00', 261, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47562, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.406243+00', 247, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47563, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.435034+00', 291, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47564, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.364822+00', 373, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47565, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.381693+00', 509, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47566, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.367482+00', 541, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47567, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.492686+00', 470, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47568, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.379603+00', 599, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47569, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.35037+00', 938, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47570, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.433084+00', 864, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47571, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:53.987403+00', 411, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47572, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.072664+00', 420, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47573, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.100921+00', 467, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47574, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.050144+00', 532, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47575, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.09927+00', 504, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47576, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:53.98739+00', 621, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47577, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:55.703684+00', 302, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47578, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:55.745737+00', 294, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47579, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:55.742049+00', 301, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47580, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:55.718162+00', 353, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47581, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:55.712879+00', 363, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47582, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:55.772329+00', 348, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47583, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.233185+00', 973, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47584, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.233185+00', 1011, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(47585, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.849511+00', 1337, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47586, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:41.488984+00', 5970, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47587, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:41.488984+00', 6034, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(47588, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.019947+00', 1827, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47589, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.695714+00', 7388, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47590, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.357564+00', 7912, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47591, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.357564+00', 7919, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(47592, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.286847+00', 7985, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47593, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.705395+00', 7576, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47594, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.286847+00', 8007, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(47595, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:41.484723+00', 6947, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(47596, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:41.484723+00', 6911, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47597, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:42.362511+00', 9024, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47598, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:42.362511+00', 9032, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(47599, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.028308+00', 5538, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47600, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.332247+00', 11295, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47601, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.332247+00', 11303, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(47602, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.797097+00', 11111, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47603, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.905837+00', 11006, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47604, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.828555+00', 6128, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47605, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.27778+00', 5979, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47606, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:44.9777+00', 7338, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47607, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.226807+00', 6123, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47608, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.76235+00', 6595, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47609, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:39.978002+00', 12382, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47610, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.614632+00', 11719, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47611, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.079033+00', 12285, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47612, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.226807+00', 6136, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(47613, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.079033+00', 12303, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(47614, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.822017+00', 11565, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47615, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:39.978002+00', 12387, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(47616, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.029343+00', 12342, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47617, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:40.029343+00', 12389, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(47618, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.186741+00', 6244, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(47619, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:41.485884+00', 10965, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47620, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.186741+00', 6178, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47621, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:41.485884+00', 10986, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(47622, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.779023+00', 6923, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(47623, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.779023+00', 6920, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47624, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.585282+00', 7129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47625, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:46.300828+00', 9255, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47626, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:42.698462+00', 13004, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(47627, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:42.698462+00', 13001, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47628, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.90753+00', 9827, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47629, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.90753+00', 9837, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(47630, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:45.686991+00', 10077, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47631, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.714231+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47632, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.470676+00', 1517, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47633, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:40.76325+00', 2470, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47634, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:40.833175+00', 2431, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47635, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.834287+00', 1572, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47636, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:40.767009+00', 2796, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47637, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:40.798357+00', 2774, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47638, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.710271+00', 1916, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47639, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.701056+00', 1962, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47640, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.741614+00', 1924, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47641, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.476842+00', 2236, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47642, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:40.831164+00', 2887, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47643, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.8249+00', 1906, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47644, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:40.763254+00', 2985, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47645, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.702972+00', 2769, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47646, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.755096+00', 2725, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47647, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.238498+00', 494, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47648, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.238498+00', 478, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47649, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.650612+00', 1264, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47650, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.133323+00', 4728, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47651, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.133323+00', 4758, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(47652, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.679489+00', 4195, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47653, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.465775+00', 6590, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47654, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.465775+00', 6615, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(47655, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.537967+00', 6702, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47656, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.775005+00', 5464, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47657, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.456451+00', 5965, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47658, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.456451+00', 6002, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(47659, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.470857+00', 7140, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47660, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.470857+00', 7165, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(47661, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.63017+00', 7231, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47662, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.481185+00', 7901, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(47663, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.283749+00', 7157, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47664, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.481185+00', 7876, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47665, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.128373+00', 7527, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(47666, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.283749+00', 7216, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47667, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.51019+00', 7863, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47668, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.128373+00', 7498, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47669, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.446387+00', 8424, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47670, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.538289+00', 8392, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47671, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.672668+00', 7579, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47672, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.640689+00', 8591, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47673, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.446387+00', 8513, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(47674, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.498548+00', 8763, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47675, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.498548+00', 8772, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(47676, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.459635+00', 7833, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47677, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.463623+00', 7821, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(47678, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.460633+00', 7828, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47679, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.460633+00', 7844, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(47680, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.463623+00', 7808, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47681, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.368176+00', 7941, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47682, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.459635+00', 7870, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(47683, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.448638+00', 8845, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47684, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.662064+00', 7751, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47685, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.53278+00', 8801, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47686, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:42.448638+00', 8916, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(47687, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.591363+00', 7748, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47688, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.705411+00', 7696, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47689, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.768995+00', 9559, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47690, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.453999+00', 10230, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47691, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.465165+00', 10218, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47692, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.465165+00', 10230, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(47693, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.453999+00', 10281, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(47694, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.645856+00', 10109, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47695, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.548028+00', 818, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47696, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.548028+00', 1129, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(47697, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.005393+00', 2811, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47698, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.949936+00', 6763, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47699, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.670331+00', 5195, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47700, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.347152+00', 5223, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47701, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.857042+00', 6899, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(47702, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.347152+00', 5409, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(47703, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.857042+00', 6713, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47704, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.969397+00', 5760, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47705, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.929671+00', 5853, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47706, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.837935+00', 7953, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47707, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.837935+00', 8093, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(47708, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.969397+00', 5840, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(47709, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.161078+00', 7854, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47710, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.040572+00', 8713, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47711, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.037435+00', 8729, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47712, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.84469+00', 9336, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47713, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.84469+00', 9383, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(47714, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.983199+00', 9264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47715, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.819141+00', 10168, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(47716, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.819141+00', 9589, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47717, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.929726+00', 8118, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47718, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.646084+00', 8336, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47719, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.819712+00', 10319, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47720, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.884858+00', 9097, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47721, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.849246+00', 10348, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47722, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.884858+00', 9202, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(47723, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.174962+00', 9028, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47724, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.598735+00', 8518, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47725, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.095482+00', 9306, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(47726, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.598735+00', 8666, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(47727, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.095482+00', 9137, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47728, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.174962+00', 9282, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(47729, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.819712+00', 10683, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(47730, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.613566+00', 8868, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47731, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.033062+00', 10913, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47732, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.112943+00', 10596, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47733, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:42.690942+00', 9096, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47734, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.461803+00', 11836, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47735, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.461803+00', 11884, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(47736, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.849246+00', 10723, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(47737, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.944907+00', 14545, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47738, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.560662+00', 15145, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47739, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.859614+00', 14861, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47740, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.560662+00', 15163, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(47741, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.859614+00', 14916, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(47742, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:40.967275+00', 14831, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47743, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.256659+00', 1765, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47744, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.277794+00', 2195, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47745, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.195217+00', 2288, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47746, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.243411+00', 2244, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47747, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.064686+00', 2486, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47748, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.191955+00', 2475, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47749, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.259749+00', 2540, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47750, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.268634+00', 2562, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47751, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.063828+00', 2786, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47752, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.221789+00', 2683, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47753, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.063777+00', 2847, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47754, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.064763+00', 2877, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47755, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.268682+00', 2681, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47756, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.208572+00', 2790, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47757, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.238344+00', 3193, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47758, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:44.252498+00', 3230, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47759, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.346786+00', 724, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47760, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.356709+00', 766, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47761, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.114063+00', 376, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47762, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.306479+00', 1293, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47763, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.267209+00', 421, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47764, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.311814+00', 1435, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47765, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.204184+00', 1550, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47766, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.324729+00', 1457, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47767, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.688588+00', 1221, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47768, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.117237+00', 842, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47769, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.157513+00', 813, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47770, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:05.724973+00', 1295, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47771, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.28864+00', 750, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47772, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.229622+00', 837, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47773, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.358072+00', 1367, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47774, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.209304+00', 1532, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47775, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.241277+00', 692, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47776, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.241277+00', 743, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(47777, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.383574+00', 849, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47778, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.383574+00', 1245, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(47779, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.512775+00', 1329, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47780, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.512775+00', 1336, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47781, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.24311+00', 1918, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47782, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.617491+00', 1826, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47783, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.633279+00', 1813, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47784, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.647638+00', 1801, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47785, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.647638+00', 1803, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(47786, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.633279+00', 1827, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(47787, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.85096+00', 1621, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47788, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.617491+00', 1855, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(47789, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.24311+00', 1953, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(47790, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.85096+00', 1652, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(47791, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.241248+00', 2491, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47792, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.241248+00', 2495, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(47793, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.801149+00', 1937, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47794, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.801149+00', 1995, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(47795, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.707221+00', 1429, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47796, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.707221+00', 1510, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(47797, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.527085+00', 2710, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47798, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.64303+00', 2599, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47799, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.527085+00', 2723, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47800, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.726851+00', 1559, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47801, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.64303+00', 2632, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(47802, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.117719+00', 2312, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47803, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.117719+00', 2323, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(47804, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.871562+00', 2801, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47805, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.871562+00', 2837, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(47806, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.050277+00', 1987, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47807, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.06871+00', 1048, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47808, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.796545+00', 2335, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47809, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.133219+00', 2552, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47810, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.077828+00', 1652, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47811, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.005355+00', 1944, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47812, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.00886+00', 2947, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47813, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.143555+00', 3014, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47814, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.05453+00', 3110, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47815, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.05453+00', 3141, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(47816, X'9aa739b3622737ba92ba0826c68ddf362637d835245270d9c864849441f482a3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.41312+00', 1813, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47817, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.868823+00', 2378, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47818, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.035881+00', 2214, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47819, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.600616+00', 2674, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47820, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.162314+00', 2184, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47821, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.930638+00', 1746, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47822, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.812276+00', 2884, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47823, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.319743+00', 3742, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47824, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.323096+00', 3738, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47825, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.319743+00', 3841, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(47826, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.433442+00', 7813, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47827, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.352583+00', 7881, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47828, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.352583+00', 7921, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(47829, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.344889+00', 8540, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47830, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:35.513336+00', 10674, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47831, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:35.513336+00', 10735, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(47832, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.401875+00', 9097, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47833, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.091057+00', 8451, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47834, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.125088+00', 9662, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47835, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:34.747481+00', 12048, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47836, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:34.747481+00', 12076, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(47837, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.368942+00', 9612, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47838, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.058433+00', 8982, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47839, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.058433+00', 9017, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(47840, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.077018+00', 10036, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47841, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.077018+00', 10103, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(47842, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.956708+00', 10337, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47843, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:35.975109+00', 11350, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47844, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.656656+00', 10668, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47845, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:35.975109+00', 11433, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(47846, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.658839+00', 10903, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(47847, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.720778+00', 10890, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47848, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.308995+00', 10409, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(47849, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.58693+00', 11141, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47850, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.308995+00', 10400, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47851, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.58693+00', 11161, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(47852, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.723213+00', 11172, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47853, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.723213+00', 11212, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(47854, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.015537+00', 9886, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47855, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.585845+00', 11493, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47856, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.008573+00', 10097, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47857, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.336366+00', 10736, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47858, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.015537+00', 10034, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(47859, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.189848+00', 10985, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47860, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.585845+00', 11645, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(47861, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.336366+00', 10893, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(47862, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.189848+00', 11109, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(47863, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.880486+00', 11421, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47864, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:36.648602+00', 11722, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47865, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.023199+00', 11964, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47866, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.336326+00', 13019, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47867, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.172936+00', 13317, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47868, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:37.172936+00', 13331, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(47869, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.01378+00', 12514, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47870, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:38.01378+00', 12516, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(47871, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.204909+00', 503, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(47872, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.332156+00', 1503, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(47873, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.196969+00', 1996, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(47874, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:39.485033+00', 2745, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(47875, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.23922+00', 2081, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47876, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:39.480723+00', 2943, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(47877, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:39.476642+00', 3003, 6, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(47878, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.354954+00', 2165, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(47879, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:39.484627+00', 3078, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(47880, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.247801+00', 2321, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(47881, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.355284+00', 2222, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(47882, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.256861+00', 2328, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(47883, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:39.477128+00', 3195, 4, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(47884, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:39.496394+00', 3226, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(47885, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.30009+00', 3038, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(47886, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.321415+00', 3051, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(47887, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:05.888237+00', 2626, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47888, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:05.87756+00', 2633, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47889, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:05.877548+00', 2633, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47890, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:05.877522+00', 2715, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47891, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:05.877544+00', 2716, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47892, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:05.877554+00', 2748, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47893, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:12.914626+00', 683, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47894, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:12.920722+00', 691, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47895, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:12.887863+00', 803, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47896, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:12.915429+00', 793, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47897, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:12.887897+00', 899, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47898, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:12.919757+00', 884, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47899, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.68529+00', 5165, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47900, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.685825+00', 6870, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47901, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.685737+00', 7340, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47902, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.685583+00', 7903, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47903, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.685277+00', 7902, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47904, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.685472+00', 7901, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47905, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.684656+00', 8214, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47906, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.685634+00', 8263, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47907, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.684555+00', 14871, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47908, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:03.684679+00', 15094, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47909, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.501048+00', 340, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47910, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.393807+00', 505, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47911, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.393695+00', 696, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47912, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.336918+00', 808, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(47913, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.36593+00', 867, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47914, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.46548+00', 790, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(47915, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.393933+00', 939, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47916, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.376914+00', 1026, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(47917, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.481497+00', 1109, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(47918, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:34.869029+00', 1752, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(47919, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:31.628685+00', 10073, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47920, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:31.698841+00', 10090, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47921, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:31.617746+00', 10084, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47922, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:31.620503+00', 10081, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47923, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:31.617784+00', 10171, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47924, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:31.820248+00', 9881, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47925, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-01-31 07:18:49.615394+00', 12877, 4, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(47926, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:41.976234+00', 9235, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47927, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:41.913572+00', 9377, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47928, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:41.84487+00', 9954, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47929, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:41.827608+00', 9995, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47930, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:41.996667+00', 9904, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47931, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:41.972576+00', 9927, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47932, X'87f2c0512194c2216040ae75b2ad37907b0fa81cf1ab678ed48b52faeee3675d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:21.336551+00', 8764, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47933, X'f9159315cd93cff6a964c6b88a05188d344e88720be6aa28f2c3aff0eac07d1b', TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:37.307039+00', 442, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47934, X'04d30eac8f5cac4cd099ac9ee35c0965ba2774cd9095741dfcc16adaa6b57ecf', TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:42.309264+00', 702, 0, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47935, X'956b1eba05ca3a1a84d08a3a483d2f06bb8343336798a1dbe5b46fbaac1ef2df', TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:51.99501+00', 780, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47936, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:09.410936+00', 8130, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47937, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:09.331051+00', 8309, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47938, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:09.390207+00', 8245, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47939, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:09.37964+00', 8371, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47940, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:09.32379+00', 8436, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47941, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:09.390272+00', 8401, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47942, X'87f2c0512194c2216040ae75b2ad37907b0fa81cf1ab678ed48b52faeee3675d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:23.600981+00', 308, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47943, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:40.619612+00', 3703, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47944, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:40.608511+00', 3695, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47945, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:40.59785+00', 3706, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47946, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:40.753329+00', 3578, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47947, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:40.607934+00', 4846, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47948, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:41.676745+00', 4457, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47949, X'87f2c0512194c2216040ae75b2ad37907b0fa81cf1ab678ed48b52faeee3675d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:27:25.769556+00', 8296, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47950, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:29.779444+00', 4433, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47951, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:29.798966+00', 4576, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47952, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:29.78046+00', 4587, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47953, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:29.76625+00', 4540, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47954, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:29.769288+00', 4694, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47955, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:29.76944+00', 4696, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47956, X'243860d64894381b7deed0bdd7ae3f541e28b83f9b93e2ba1246b590f5b42e5a', TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:50.808693+00', 251, 3, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(47957, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.018451+00', 750, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47958, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.018451+00', 745, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47959, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.158959+00', 789, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47960, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.153931+00', 889, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47961, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.144461+00', 935, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47962, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.391789+00', 783, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47963, X'87f2c0512194c2216040ae75b2ad37907b0fa81cf1ab678ed48b52faeee3675d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:28.198426+00', 454, 6, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47964, X'f9159315cd93cff6a964c6b88a05188d344e88720be6aa28f2c3aff0eac07d1b', TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:31.417348+00', 278, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(47965, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:36.967042+00', 7443, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47966, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:36.972485+00', 7438, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47967, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:36.981013+00', 7823, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47968, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:36.966444+00', 7884, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47969, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:36.966899+00', 7963, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(47970, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:36.966834+00', 8028, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47971, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:45.877006+00', 6780, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47972, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:45.877552+00', 6780, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47973, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:45.870733+00', 7046, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(47974, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:45.861399+00', 7103, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47975, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:45.806574+00', 7245, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47976, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:45.840477+00', 7213, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(47977, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.380452+00', 7306, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47978, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.380452+00', 7842, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 2, NULL, 3, NULL), +(47979, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.229283+00', 7450, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(47980, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.24943+00', 14415, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47981, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.24943+00', 14472, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(47982, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.338728+00', 15700, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47983, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.338728+00', 15747, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 3, NULL), +(47984, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.380461+00', 15637, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47985, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122352+00', 14565, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(47986, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.380461+00', 15650, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 3, NULL), +(47987, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.412145+00', 15722, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47988, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.27739+00', 15897, 2, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(47989, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.291699+00', 15881, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(47990, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.335244+00', 15839, 2, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(47991, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.412145+00', 15842, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 2, NULL, 3, NULL), +(47992, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.124552+00', 16473, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(47993, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.124552+00', 16457, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(47994, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122352+00', 16721, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(47995, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.428031+00', 16431, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(47996, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.149112+00', 16709, 3, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47997, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122352+00', 16779, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(47998, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.428031+00', 16413, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(47999, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122401+00', 16970, 35, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48000, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.215252+00', 17136, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48001, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.343461+00', 16982, 4, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48002, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.303128+00', 17060, 6, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48003, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.215252+00', 17157, 0, TRUE, 'public-dashboard', 'Closed', 1, 19, 3, NULL, 3, NULL), +(48004, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.388506+00', 16594, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48005, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.428284+00', 17074, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48006, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.354949+00', 16993, 12, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48007, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.154763+00', 17331, 0, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48008, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.154763+00', 17358, 0, TRUE, 'public-dashboard', 'Closed', 1, 33, 2, NULL, 3, NULL), +(48009, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.380884+00', 17080, 6, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48010, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.17895+00', 17326, 0, TRUE, 'public-dashboard', 'Closed', 1, 21, 3, NULL, 3, NULL), +(48011, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.12764+00', 17261, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48012, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.170555+00', 17333, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48013, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.428284+00', 17086, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 3, NULL), +(48014, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.170555+00', 17361, 0, TRUE, 'public-dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(48015, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.17895+00', 17323, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48016, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.338728+00', 17879, 30, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48017, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.304756+00', 17962, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48018, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.304756+00', 17991, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(48019, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.218561+00', 29157, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48020, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122438+00', 29306, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(48021, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122389+00', 29137, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48022, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122389+00', 29305, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(48023, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.122438+00', 29138, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48024, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:09.428263+00', 28906, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48025, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:23.14453+00', 10262, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48026, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:23.144488+00', 10269, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48027, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:23.137326+00', 10269, 6, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48028, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:23.135028+00', 10271, 4, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48029, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:23.13732+00', 10269, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48030, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:23.14452+00', 10264, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48031, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.273613+00', 892, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48032, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.271546+00', 1041, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48033, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.329166+00', 1777, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48034, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.164127+00', 2108, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48035, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.272708+00', 2183, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48036, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.272052+00', 3261, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48037, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.238294+00', 3295, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48038, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.391095+00', 3774, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48039, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.447498+00', 6107, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48040, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:08.210852+00', 6414, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48041, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-31 10:08:57.242181+00', 8937, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48042, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 10:09:16.799657+00', 11219, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48043, X'7c09df1c0971df362de3163193a5d818da4f7a4aa6842cfa60d51caea216a4d3', TIMESTAMP WITH TIME ZONE '2023-01-31 10:09:50.109277+00', 551, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48044, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 10:09:59.01718+00', 720, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48045, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.624267+00', 4222, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48046, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.661597+00', 7747, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48047, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.624256+00', 7613, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48048, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.624278+00', 8180, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48049, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.62671+00', 7954, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48050, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.624213+00', 7945, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48051, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.624242+00', 8283, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48052, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.626707+00', 11562, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48053, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.623358+00', 13613, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48054, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:12.626756+00', 14108, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48055, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.028142+00', 3493, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48056, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:20.723743+00', 6797, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48057, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.812887+00', 1836, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48058, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:20.723743+00', 6935, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 2, NULL, 3, NULL), +(48059, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.028142+00', 3630, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 2, NULL, 3, NULL), +(48060, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.898177+00', 2880, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48061, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.898177+00', 2899, 0, TRUE, 'public-dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(48062, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.896198+00', 2934, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48063, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.896198+00', 2965, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(48064, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:26.173574+00', 1750, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48065, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.00894+00', 2944, 0, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48066, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.00894+00', 3029, 0, TRUE, 'public-dashboard', 'Closed', 1, 33, 2, NULL, 3, NULL), +(48067, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:26.020574+00', 2095, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48068, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.86955+00', 3283, 12, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48069, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.182904+00', 3998, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48070, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.758661+00', 2434, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48071, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.758661+00', 2468, 0, TRUE, 'public-dashboard', 'Closed', 1, 12, 2, NULL, 3, NULL), +(48072, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.069627+00', 3181, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48073, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.182904+00', 4095, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(48074, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.069627+00', 3274, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(48075, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.582619+00', 2885, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48076, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.757953+00', 2795, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48077, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.890883+00', 3680, 35, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48078, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.301014+00', 3367, 30, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48079, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.24512+00', 5605, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48080, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.24512+00', 5744, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(48081, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.866459+00', 5406, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48082, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:25.45118+00', 5124, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48083, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.898255+00', 5677, 0, TRUE, 'public-dashboard', 'Cursor has been closed', 1, 13, 2, NULL, 3, NULL), +(48084, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-01-31 10:43:40.555988+00', 13375, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(48085, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-01-31 12:45:33.553942+00', 16752, 37, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(48086, X'58421101d0c3dd4ee618047d5daa47b987f1598b14979afd7f0abd64d29d1ef3', TIMESTAMP WITH TIME ZONE '2023-01-31 12:46:20.677071+00', 2499, 1, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(48087, X'aa0029cadb728feedac9a2594aadc7bc04e1165b95577304972ba43b9a3aeb24', TIMESTAMP WITH TIME ZONE '2023-01-31 12:46:32.795269+00', 1117, 1, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(48088, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:18.876578+00', 12842, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48089, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:25.958972+00', 11727, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48090, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:24.867619+00', 12826, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48091, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:54.139783+00', 1109, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48092, X'7a83274de46af03e459c1d38585b2684912c42e61187ad5c3516b70d8a70a60b', TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:15.832081+00', 2219, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48093, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:30.245194+00', 397, 0, FALSE, 'ad-hoc', 'Error reducing result rows: null', 1, NULL, NULL, NULL, 3, NULL), +(48094, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:36.467299+00', 207, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48095, X'7c09df1c0971df362de3163193a5d818da4f7a4aa6842cfa60d51caea216a4d3', TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:41.55689+00', 136, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48096, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:48.273214+00', 162, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48097, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:38.287863+00', 162, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48098, X'7c09df1c0971df362de3163193a5d818da4f7a4aa6842cfa60d51caea216a4d3', TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:47.090869+00', 158, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48099, X'38b7d9968e2ac788ced62db8c2af3b636eb94946473dd6cf7f58eaada3247ab9', TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:51.908962+00', 137, 35, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48100, X'27e9a2080c19421103c83a2e80f32b9cccd8816cd1b89c62768768bd52e81075', TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:56.431837+00', 150, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48101, X'27e9a2080c19421103c83a2e80f32b9cccd8816cd1b89c62768768bd52e81075', TIMESTAMP WITH TIME ZONE '2023-02-01 05:56:19.551787+00', 1972, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48102, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:51.354421+00', 3926, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48103, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:51.354632+00', 3898, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48104, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:51.354669+00', 3941, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48105, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:51.354661+00', 3942, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48106, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:51.354654+00', 3898, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48107, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:51.354417+00', 4061, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48108, X'c7406322e940c8cfb20bb3b07c064fccf58e2c73dc9a75793d6f7aed5601b394', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:33.598222+00', 2243, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48109, X'0c327a43e3f90159f15a2086e172782206afb02818d8e9e67448df8932ada35a', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:33.508408+00', 2343, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48110, X'2bc9720f7675c9dabcdb74141eab5a4eed982ae8af8c6348e39821f186421979', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:33.53684+00', 3437, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48111, X'59d592bec34507f26613b806a8125573533cc8cf9dacc673c17f80157a0d5a34', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:33.56595+00', 3442, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48112, X'a7a2a5ac99b95cb80464941ea920a03eac951703ec123aa127a65684f80ac0f3', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:33.627793+00', 3487, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48113, X'dd9208917f6683975d197cfb0ec034818da6c5ee0ede575f13b62c3ce8fdd8d3', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:33.74625+00', 3368, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48114, X'be2aee154477c2b5e41a641dc8cd20ab69b2f3386e1bc60c7b754d5732474bba', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.284774+00', 511, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48115, X'c2453b5af4408337e8275e557ccb24eabd962f10a0ad81d34065146c51ebc466', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.328653+00', 494, 2, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48116, X'd21b61fdcc530f6f96ab3f4c9f8c13f5352998cc7ac763160c0958e446c412fa', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.30875+00', 635, 5, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48117, X'59c898ac28800678800298d02d572ae95c5c996110b433ed4c8d3be053a9f223', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.303474+00', 665, 9, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48118, X'49e6764580635bd4ecc46783358324b60e0dc8b12d26b5e29847f37f852f267c', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.323782+00', 667, 4, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48119, X'29add2f06f88815885de6272b3c07eb547ae4ed919e0eb051a87de425784ee46', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.32484+00', 733, 3, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48120, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.560794+00', 399, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48121, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.500533+00', 458, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48122, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.536857+00', 509, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48123, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.564793+00', 520, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48124, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.540894+00', 594, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48125, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.533123+00', 650, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48126, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.280841+00', 2115, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48127, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.264205+00', 3175, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48128, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.264271+00', 3278, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48129, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.280379+00', 3498, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48130, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.263193+00', 3620, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48131, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.285318+00', 3657, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48132, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.305044+00', 3724, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48133, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.26429+00', 3774, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48134, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.29755+00', 5191, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48135, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:05.263705+00', 5230, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48136, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.099376+00', 2824, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48137, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.182411+00', 5064, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48138, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.120662+00', 5587, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48139, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.074154+00', 5741, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48140, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.07407+00', 5814, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48141, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.267079+00', 5659, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48142, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.16954+00', 5787, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48143, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.257179+00', 5827, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48144, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.130065+00', 7499, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48145, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:08.262473+00', 7395, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48146, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:29.93037+00', 881, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48147, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:29.925004+00', 876, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48148, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:29.920977+00', 921, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48149, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:29.916607+00', 1004, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48150, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:29.936825+00', 1075, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48151, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:29.92131+00', 1140, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48152, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:24.009493+00', 2963, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48153, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:24.009553+00', 3031, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48154, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:24.008772+00', 3050, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48155, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:24.009582+00', 3000, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48156, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:24.008798+00', 3024, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48157, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:24.008794+00', 2963, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48158, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.831909+00', 2838, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48159, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:49.431873+00', 4650, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48160, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.173086+00', 7154, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48161, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.173086+00', 7177, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 3, NULL), +(48162, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.734365+00', 4045, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48163, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165346+00', 7666, 3, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48164, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.166+00', 7662, 4, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48165, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165349+00', 7849, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48166, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165349+00', 7853, 0, TRUE, 'public-dashboard', 'Closed', 1, 18, 3, NULL, 3, NULL), +(48167, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.204686+00', 4987, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48168, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.744128+00', 4622, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48169, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165363+00', 8344, 4, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48170, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.864881+00', 4645, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48171, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.888234+00', 4740, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48172, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165358+00', 8607, 0, TRUE, 'public-dashboard', 'Closed', 1, 21, 3, NULL, 3, NULL), +(48173, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165358+00', 8594, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48174, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165365+00', 8657, 6, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48175, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.185619+00', 8756, 11, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48176, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165362+00', 8799, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48177, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165362+00', 8814, 0, TRUE, 'public-dashboard', 'Closed', 1, 19, 3, NULL, 3, NULL), +(48178, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.891666+00', 5104, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48179, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165371+00', 8853, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48180, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.203307+00', 8775, 6, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48181, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.165371+00', 8870, 0, TRUE, 'public-dashboard', 'Closed', 1, 20, 3, NULL, 3, NULL), +(48182, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.893323+00', 6725, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48183, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:50.845176+00', 6814, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48184, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:40.872279+00', 1296, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48185, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:40.872279+00', 1312, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(48186, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:40.872279+00', 1539, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48187, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:40.872279+00', 1563, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 2, NULL, 3, NULL), +(48188, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.028992+00', 1108, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48189, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.028992+00', 1117, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 2, NULL, 3, NULL), +(48190, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.123776+00', 1378, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48191, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.175475+00', 1383, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48192, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.519569+00', 4468, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48193, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.119171+00', 3878, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48194, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.550594+00', 4493, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48195, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.224727+00', 3801, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48196, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.215684+00', 3836, 35, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48197, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.959008+00', 4099, 30, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48198, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.076473+00', 3991, 0, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48199, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.519569+00', 4545, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(48200, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.890927+00', 4204, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48201, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.550594+00', 4523, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(48202, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.076473+00', 4020, 0, TRUE, 'public-dashboard', 'Closed', 1, 33, 2, NULL, 3, NULL), +(48203, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.890927+00', 4250, 0, TRUE, 'public-dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(48204, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.179477+00', 4004, 12, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48205, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.142273+00', 4108, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48206, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.526264+00', 6016, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48207, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.526264+00', 6030, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(48208, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.54181+00', 6205, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48209, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.117636+00', 5625, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48210, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.54181+00', 6220, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(48211, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:41.531984+00', 6327, 37, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48212, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.581346+00', 3165, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48213, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.316185+00', 3385, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48214, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.316185+00', 3504, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(48215, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.35095+00', 7159, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48216, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.579853+00', 5992, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48217, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.35095+00', 7244, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(48218, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.356095+00', 8074, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48219, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.340219+00', 8119, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48220, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.356095+00', 8224, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(48221, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.416218+00', 7253, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48222, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.379108+00', 8294, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48223, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.2977+00', 8354, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48224, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.322282+00', 8181, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48225, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.2977+00', 8415, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(48226, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.322282+00', 8269, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(48227, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.579852+00', 7636, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48228, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.355996+00', 8148, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(48229, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.355587+00', 8859, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48230, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.355587+00', 8889, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(48231, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.33935+00', 9063, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48232, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.33935+00', 9102, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(48233, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.355996+00', 8071, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48234, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.301153+00', 9601, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48235, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.350519+00', 9550, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48236, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.340866+00', 8613, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48237, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.301153+00', 9646, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(48238, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.350519+00', 9581, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(48239, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.597387+00', 8426, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48240, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.340619+00', 9629, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48241, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.334659+00', 9886, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48242, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.341276+00', 9638, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48243, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.340619+00', 9693, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(48244, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.365228+00', 8890, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48245, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.340866+00', 8875, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(48246, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.597387+00', 8655, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(48247, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.370149+00', 9888, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48248, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.35096+00', 9886, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48249, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.571762+00', 8878, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48250, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.334659+00', 9947, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(48251, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.373126+00', 9852, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48252, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.580518+00', 9029, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48253, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.580846+00', 8675, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48254, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.111811+00', 11118, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48255, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.211403+00', 11054, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48256, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.111811+00', 11173, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(48257, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.384133+00', 11986, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48258, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:34.384133+00', 12126, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(48259, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:35.56868+00', 11018, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48260, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.667091+00', 1690, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48261, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.627739+00', 2813, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48262, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.648092+00', 2978, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48263, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.664644+00', 3216, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48264, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.632967+00', 3331, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48265, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.627746+00', 3365, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48266, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.627703+00', 3537, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48267, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.632468+00', 3655, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48268, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.647886+00', 4909, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48269, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:40.656942+00', 4959, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48270, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:10.040967+00', 3694, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48271, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:10.041115+00', 3694, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48272, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:10.040954+00', 3765, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48273, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:10.040961+00', 3694, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48274, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:10.040952+00', 3686, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48275, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:10.04233+00', 3684, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48276, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.893683+00', 523, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48277, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.852619+00', 541, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48278, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.933795+00', 1753, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48279, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.738289+00', 2145, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48280, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.921796+00', 1997, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48281, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.931668+00', 2018, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48282, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.901349+00', 2134, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48283, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.96124+00', 2162, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48284, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.88672+00', 2984, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48285, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:09.871547+00', 3053, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48286, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493585+00', 1554, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48287, X'75b9b3195027cecab65d1ddead03492a53d19eac9dbd0f6e87af67aa6db20b46', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493532+00', 2808, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48288, X'530474de072760bdb9c89f3d483cb0f165d1f84c9a4eaf38bdddddef9f06ec45', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493621+00', 2942, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48289, X'05650ddb07a2b8fc1aeb376e7438536aea3b872f8cd7cec55c9548e2912bb1ac', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493524+00', 3232, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48290, X'a0032e190ffc031f7544989d904cd302e7b311b0108880960b00bf12e7037c3b', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493392+00', 3225, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48291, X'ebb806471c99edcd3f1fe920d1acfd871bb3b84fd5cba986219bb8c02604c544', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493487+00', 3253, 13, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48292, X'589691810fc3e84bdfce6f6b19314e59b14ae48daa401e1ae156ff4c85fc2625', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493565+00', 3501, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48293, X'39f0c2af97caa13099beaa827be67672a041085852310f5701fd7abfb0cb5e6c', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493513+00', 3567, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48294, X'9db6dd8a5f28d9982834a0389d8ab875a7b4e999a33eb89e0902cacbbdd9b902', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493593+00', 5375, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48295, X'6dad440abd624dd6f8802e35b1a9c54fe9f3aa21ab10b9d1a9a1aa0bda68f682', TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:48.493487+00', 5375, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48296, X'cc427a7164dfbc63bab90c03b12b1df49ab3c88b38817d22bd8463cfb88400bd', TIMESTAMP WITH TIME ZONE '2023-02-02 08:13:12.172465+00', 1724, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48297, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.727862+00', 873, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48298, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.487855+00', 4559, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48299, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.633367+00', 4506, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48300, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.73284+00', 4714, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48301, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.879207+00', 4835, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48302, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.76062+00', 4986, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48303, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.781373+00', 5587, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48304, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.78474+00', 5601, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48305, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.314939+00', 1767, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48306, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.388885+00', 2407, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48307, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.508289+00', 2373, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48308, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.350954+00', 2537, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48309, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.357465+00', 3072, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48310, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.412322+00', 6874, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48311, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.834586+00', 12759, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48312, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:04.736073+00', 13057, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48313, X'5348aa0674f47601b8d49aec1cd04e7fe9be876a70dec52d0820a0a186ea1a90', TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:55.760882+00', 2621, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48314, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:55.624229+00', 2757, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48315, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:55.72658+00', 2864, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48316, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:55.658788+00', 2958, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48317, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:55.241577+00', 3483, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48318, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:55.557158+00', 3177, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48319, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:07.972466+00', 373, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48320, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:07.961511+00', 412, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48321, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:07.99754+00', 423, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48322, X'c7144e89364a7e1d3d1bfe9d9ce326baaa1613d4b87004e2e0268bb9d4b05d70', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:07.993218+00', 481, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48323, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:07.995057+00', 520, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48324, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:08.003615+00', 576, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48325, X'552a32ced815eb993c6e7b203d96574fc9aaa20d255752dc609b1581d03b1cfc', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:11.898458+00', 206, 4, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(48326, X'e860aeeb789f8c284ef2962300fbba395f7d988ba125dca5c72989ce18c8026d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:22.176122+00', 199, 4, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(48327, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.191624+00', 582, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48328, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.172096+00', 665, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48329, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.181849+00', 684, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48330, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.178098+00', 753, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48331, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.137376+00', 834, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48332, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.138632+00', 853, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48333, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:02.483609+00', 1145, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48334, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:02.475394+00', 1158, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48335, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:02.475337+00', 1119, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48336, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:02.478145+00', 1150, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48337, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:02.748252+00', 919, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48338, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:02.766516+00', 1022, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48339, X'22473e28a8c2d45b145d848677b955e3ab5d8fdd022901369c2f49b724226969', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:12.93962+00', 243, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48340, X'8a75122198754c3404f999324e02554b01b683cb85485493944cbde6bcc2944f', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:21.937979+00', 182, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48341, X'15452fe94ccf2d22c45f7aadcff2aa53ac21c347cbc00c522296961637653804', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:24.53057+00', 250, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48342, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:33.57851+00', 1492, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48343, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:33.602653+00', 1481, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48344, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:33.603582+00', 1508, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48345, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:33.604138+00', 1514, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48346, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:33.592472+00', 1649, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48347, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:33.601919+00', 1661, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48348, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.372216+00', 538, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48349, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.323141+00', 648, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48350, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.326062+00', 729, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48351, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.310378+00', 798, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48352, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.362437+00', 747, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48353, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.307945+00', 929, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48354, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:53.637184+00', 1537, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48355, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:53.63747+00', 1546, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48356, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:53.486932+00', 1852, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48357, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:53.39442+00', 1995, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48358, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:53.635728+00', 1776, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48359, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:53.634736+00', 1825, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48360, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.894602+00', 917, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48361, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.977442+00', 869, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48362, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.966071+00', 925, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48363, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.978871+00', 944, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48364, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.980185+00', 1015, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48365, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.979891+00', 1028, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48366, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:31.278788+00', 3089, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48367, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:31.383091+00', 3038, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48368, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:31.206204+00', 3375, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48369, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:31.244763+00', 3504, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48370, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:31.260461+00', 3568, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48371, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:31.30263+00', 3562, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48372, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:05.835765+00', 1897, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48373, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:05.925793+00', 1805, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48374, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:05.844067+00', 2250, 0, TRUE, 'dashboard', 'Error reducing result rows: null', 1, 21, 3, NULL, 3, NULL), +(48375, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:05.715258+00', 2379, 0, TRUE, 'dashboard', 'Error reducing result rows: null', 1, 20, 3, NULL, 3, NULL), +(48376, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:05.558624+00', 2535, 0, TRUE, 'dashboard', 'Error reducing result rows: null', 1, 18, 3, NULL, 3, NULL), +(48377, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:05.90593+00', 2196, 0, TRUE, 'dashboard', 'Error reducing result rows: null', 1, 19, 3, NULL, 3, NULL), +(48378, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:07.975669+00', 856, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48379, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:07.971556+00', 1222, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48380, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:07.971757+00', 1340, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48381, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:08.053779+00', 1487, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48382, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:08.120289+00', 1999, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48383, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:08.050771+00', 2099, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48384, X'e860aeeb789f8c284ef2962300fbba395f7d988ba125dca5c72989ce18c8026d', TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:10.690066+00', 420, 4, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(48385, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:49.588053+00', 5266, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48386, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:49.588046+00', 5162, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48387, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:49.588056+00', 5162, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48388, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:49.588087+00', 5101, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48389, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:49.588096+00', 5103, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48390, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:49.58809+00', 5101, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48391, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-02-02 10:04:01.1766+00', 639, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(48392, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:31.189764+00', 3774, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48393, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:31.178394+00', 3786, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48394, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:31.190709+00', 4068, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48395, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:31.192783+00', 4070, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48396, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:31.178346+00', 4115, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48397, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:31.178353+00', 4213, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48398, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:44.648579+00', 639, 6, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(48399, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.486596+00', 5393, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48400, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.537794+00', 5385, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(48401, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.537794+00', 5317, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48402, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.332468+00', 12670, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48403, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.332468+00', 12826, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(48404, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.254739+00', 12810, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48405, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.033305+00', 13001, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48406, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.051075+00', 13080, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48407, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.051075+00', 13176, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(48408, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.052308+00', 13243, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48409, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.052308+00', 13277, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(48410, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.033305+00', 13058, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(48411, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.515452+00', 13916, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48412, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.22328+00', 14207, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48413, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.038766+00', 13397, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48414, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.314196+00', 14866, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(48415, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.033305+00', 14247, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48416, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.038804+00', 14286, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48417, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.314196+00', 14815, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48418, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.051254+00', 14272, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48419, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.221944+00', 15104, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48420, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.245668+00', 15080, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48421, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.051254+00', 14292, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(48422, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.251796+00', 15081, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48423, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.239991+00', 15126, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48424, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.221944+00', 15144, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(48425, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.038804+00', 14409, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(48426, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.033305+00', 14414, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(48427, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.222548+00', 15152, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48428, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.466613+00', 14982, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48429, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.26818+00', 15181, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48430, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.280072+00', 15240, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48431, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.251796+00', 15311, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48432, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.066725+00', 14456, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48433, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.35346+00', 15103, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48434, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.245668+00', 15317, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(48435, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.35346+00', 15211, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(48436, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.234932+00', 15389, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(48437, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.405656+00', 15197, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48438, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.24946+00', 16846, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48439, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.234932+00', 15348, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48440, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.222377+00', 17628, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48441, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.062312+00', 18799, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48442, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.449249+00', 19415, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48443, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.260911+00', 19600, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(48444, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:05.062312+00', 18829, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(48445, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.260911+00', 19588, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48446, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:04.372172+00', 19533, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48447, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.312657+00', 850, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48448, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.280225+00', 4701, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48449, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.191094+00', 5495, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48450, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.104879+00', 5584, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48451, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.363238+00', 5403, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48452, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.187941+00', 5675, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48453, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.161983+00', 6048, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48454, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.679307+00', 5543, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48455, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.148804+00', 6145, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48456, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.268225+00', 6030, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48457, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.306639+00', 6042, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48458, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.131745+00', 6225, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48459, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.070873+00', 6287, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48460, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.070841+00', 6318, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48461, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.590454+00', 8472, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48462, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:58.508028+00', 8638, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48463, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.818632+00', 886, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48464, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.756749+00', 5057, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48465, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.605121+00', 5905, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48466, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.564818+00', 6003, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48467, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.661741+00', 6037, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48468, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.857194+00', 6113, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48469, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.342513+00', 6767, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48470, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.635207+00', 6536, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48471, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.785475+00', 6545, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48472, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.812871+00', 6570, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48473, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.528739+00', 6804, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48474, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.797642+00', 6540, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48475, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.770917+00', 6801, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48476, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.860608+00', 6940, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48477, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.824957+00', 11566, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48478, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 12:54:59.80462+00', 11694, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48479, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.273742+00', 617, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48480, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.264882+00', 2986, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48481, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.091312+00', 3416, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48482, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.182524+00', 3426, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48483, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.182538+00', 3620, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48484, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.006897+00', 3848, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48485, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:41.635433+00', 4214, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48486, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.113498+00', 3904, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48487, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.162189+00', 3905, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48488, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.036182+00', 4077, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48489, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.058891+00', 4160, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48490, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.086173+00', 4183, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48491, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:41.635491+00', 4727, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48492, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.125712+00', 4697, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48493, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.261987+00', 7149, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48494, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.250826+00', 7150, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48495, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.298376+00', 1314, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48496, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.313829+00', 3120, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48497, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.386682+00', 3133, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48498, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.337896+00', 3293, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48499, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.367571+00', 3337, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48500, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.354832+00', 3498, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48501, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.298585+00', 3555, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48502, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.315218+00', 3581, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48503, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.326504+00', 3614, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48504, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.298374+00', 3728, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48505, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.29839+00', 3827, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48506, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.344863+00', 3789, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48507, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.360836+00', 3763, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48508, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.355981+00', 4290, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48509, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.34331+00', 4922, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48510, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:42.372163+00', 4904, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48511, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.038404+00', 1832, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48512, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.038404+00', 1870, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(48513, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.923871+00', 1965, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48514, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.047767+00', 5735, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48515, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.040712+00', 5435, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 3, NULL), +(48516, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.160401+00', 9343, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(48517, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.160401+00', 9318, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48518, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055154+00', 9471, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48519, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055154+00', 9604, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(48520, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.075645+00', 9611, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48521, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.015094+00', 8664, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48522, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.117972+00', 9009, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48523, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055131+00', 10231, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48524, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055483+00', 10310, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48525, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055131+00', 10276, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(48526, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.965179+00', 9470, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48527, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055483+00', 10339, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(48528, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.987535+00', 9702, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48529, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.965179+00', 9516, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(48530, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.775581+00', 9705, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48531, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.099545+00', 10618, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48532, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.930789+00', 9848, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48533, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.099545+00', 10675, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(48534, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.008548+00', 9781, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48535, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.930789+00', 9886, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(48536, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.85094+00', 10003, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48537, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.176797+00', 10739, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(48538, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.886375+00', 9937, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48539, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.08532+00', 10929, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48540, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.015409+00', 9976, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48541, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.760768+00', 10592, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48542, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.08532+00', 11339, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(48543, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.176797+00', 10678, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48544, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.015409+00', 10339, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(48545, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055149+00', 11299, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48546, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.951694+00', 10552, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48547, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.951694+00', 10596, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(48548, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.07169+00', 11486, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48549, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.055149+00', 11482, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(48550, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.051128+00', 10508, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48551, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:37.109242+00', 10804, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48552, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.792836+00', 13519, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48553, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.177682+00', 14235, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(48554, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.976407+00', 13441, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48555, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.966526+00', 13451, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48556, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.792836+00', 13544, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(48557, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:36.177682+00', 14174, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48558, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.955669+00', 2052, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48559, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.944982+00', 4971, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48560, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.911177+00', 5518, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48561, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.960338+00', 5475, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48562, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.897192+00', 5576, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48563, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.905454+00', 5700, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48564, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.97294+00', 5832, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48565, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.943668+00', 5868, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48566, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.951652+00', 5851, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48567, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.897089+00', 5977, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48568, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.962262+00', 5940, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48569, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.971052+00', 5957, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48570, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.937737+00', 5974, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48571, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.916466+00', 6025, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48572, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.897398+00', 7332, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48573, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:35.97204+00', 7377, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48574, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:04.19518+00', 4087, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48575, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:04.195214+00', 4087, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48576, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:04.195177+00', 4149, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48577, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:04.19522+00', 4153, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48578, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:04.195192+00', 4201, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48579, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:04.195227+00', 4221, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48580, X'a73f69ab04df9c39ecda65d7afcc407c7dd14cdabacd24e698b57a97794961ff', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.35841+00', 367, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48581, X'147325a37611152e67264b9fcf8c1d99eb4a399e065bdf9ed2181ef88763d846', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.37149+00', 387, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48582, X'b8ac21177587ac831cea34a55b49690a5f7384c7327659332592afd4db3a182c', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.344458+00', 687, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48583, X'4e1eea187733a05d4521d8d8355466038f6f335cf2ff089692865c4ec6be1c8e', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.34822+00', 686, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48584, X'd9b7e93c516102fc4bcc0ca28b23d4c27c034512a65948739c9677504104e5ea', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.33499+00', 736, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48585, X'5cdd3a486dadaaf9e3f9d3660ee2f31f2871821c2748fff0c0943c362e3f8edf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.37254+00', 724, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48586, X'f037080c652bddc661bcd6bd612375e27d2b8b2c71d8efcd036003b74031d11f', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:21.777769+00', 630, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48587, X'517dafa068cdd0a5de1a544d6b3ceaeb339190c13d287d8c292e9f7c31382dce', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:21.8377+00', 660, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48588, X'84164770002715810e34025f1bd8157a85cbc34fe95bfbdca3d92bd5679596fb', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:21.860794+00', 658, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48589, X'bea2518f2a6d48b41e5752ef346d6e902df9b0c6645ba0b355aad0d1b99258d7', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:21.839068+00', 672, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48590, X'6719f6fcd3633f82bdd9f3ba07415abcd064b043a3e26f7e42c7752b1e1acac5', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:21.799783+00', 788, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48591, X'72d0e73f734b32ef2add786f66747b246d03e6c8e19d4d1f1c62ebe5a70b1ff0', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:21.860899+00', 782, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48592, X'b68f3ed7a902afb6eab2e12d714cbfdda77003b3f9633c436454b6dbe4bb5c58', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.020688+00', 552, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48593, X'6f9eb1ae3d02a036de163138f26bd7d4383b52526e59f8b05077f0c9dd8483ec', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.018775+00', 596, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48594, X'861f7c6b74dae2a32fc241f1fbe9724071225c1869c48f4a1fd92116017fc160', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.014727+00', 711, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48595, X'1d4ccd7406a4d4bd304ea1143dd42c271f525ea43ecc3ade3d2cfac60ffceaa9', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.037156+00', 798, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48596, X'9de57056fa774d86279a02291e04bc60bba57c69612962fb7db8cb0aa4068622', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:43.96772+00', 858, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48597, X'3f20f2b951f7c51ac0296e78fa059a19ec85741a0e8da0398cc6dec22819e2d0', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.033693+00', 906, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48598, X'15f187022fd8c18a74123f0b30dbc66b82f2de82288b2a1a12a38cd60a0f873c', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:48.871101+00', 330, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48599, X'8394212b5132b7044d2b80ae097d8619b7b912ab92d402654358de4d75773d74', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:48.940179+00', 781, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48600, X'8bfd4edb19d5a4dd403d739fc81ee9acc15a68a7eb87da812e76e31199d6be25', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:48.928137+00', 837, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48601, X'88121428ba5429531acd453d6a78d86685c643d233b3004692876af883b96f9f', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:48.959992+00', 841, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48602, X'b766952300449d91695271e0a913cc59f5e7cc6256752a13703f291841afceac', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:48.897585+00', 915, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48603, X'4855c61acebf8a4ef9ccc37159de667f208738163de92505f6e058caa7b17ff6', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:49.096345+00', 760, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48604, X'b68f3ed7a902afb6eab2e12d714cbfdda77003b3f9633c436454b6dbe4bb5c58', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:50.852727+00', 250, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48605, X'861f7c6b74dae2a32fc241f1fbe9724071225c1869c48f4a1fd92116017fc160', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:50.909952+00', 340, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48606, X'6f9eb1ae3d02a036de163138f26bd7d4383b52526e59f8b05077f0c9dd8483ec', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:50.938893+00', 325, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48607, X'1d4ccd7406a4d4bd304ea1143dd42c271f525ea43ecc3ade3d2cfac60ffceaa9', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:50.901989+00', 400, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48608, X'3f20f2b951f7c51ac0296e78fa059a19ec85741a0e8da0398cc6dec22819e2d0', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:50.940573+00', 425, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48609, X'9de57056fa774d86279a02291e04bc60bba57c69612962fb7db8cb0aa4068622', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:50.906897+00', 471, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48610, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.908054+00', 697, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48611, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.952102+00', 805, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48612, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:52.018647+00', 812, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48613, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.995047+00', 928, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48614, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:52.072877+00', 902, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48615, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.936309+00', 1089, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48616, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:53.272936+00', 792, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48617, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:53.180972+00', 887, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48618, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:53.202079+00', 907, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48619, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:53.274014+00', 880, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48620, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:53.188831+00', 1035, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48621, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:53.20286+00', 1041, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48622, X'3dea2956120012beeef18a35f9d4950369944438bbc0345ddc964012bc456e2c', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:25.198696+00', 1731, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48623, X'bd65461b22cfe783e454e09c27d10824fdf90f436efbb6cf5f5188c45a9375e8', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:25.170324+00', 1762, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48624, X'80cfea932304716c3172315eab49fcee050e4db59bca88d1927a808e09f58f2e', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:25.154058+00', 2178, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48625, X'0dfca024aa7890ad179566e1c65b0bd19d8d7ee09f2e808fd9ed4727342d7948', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:25.400518+00', 1950, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48626, X'26dd6182ea715619d27af9316c27f9077b73b6fa6e968419df5929132fceb06b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:25.148538+00', 2204, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48627, X'87bfa302bab493722f158c51ebc934e352101fa0bffcc215a71e140c96c41bc2', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:25.145374+00', 2217, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48628, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:36.794184+00', 712, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48629, X'2616476fc61ca3c339ca1241b815e211b185486798ab90ddae11e968f56ea0db', TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:49.577355+00', 126, 36, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48630, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:22.542907+00', 2335, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48631, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:22.550588+00', 2366, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48632, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:22.227938+00', 2836, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48633, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:22.525656+00', 2678, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48634, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:22.547481+00', 2720, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48635, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:22.197758+00', 3163, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48636, X'eb289930cf8265d21b2a9496850569ff88dd0769315af1411d4f8663cef69927', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.417616+00', 862, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48637, X'f926461802edc6fc7e99de80b4b5040374d9d4e6bb12832e4a474b99f00f526d', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.425029+00', 971, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48638, X'38cac17648fd7eb0a701db5028d7add13fdba07beddf4933929b9249314633d7', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.481631+00', 951, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48639, X'ecfbc82647158b612d64982c5a3b6e92bd05b8bda9ec968ee8accedeb94cd366', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.660681+00', 851, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48640, X'a1850e32fa7ad6014dd026eb5604c3e46d1679cb519f126585ac2f1e2c0e41cf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.756986+00', 817, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48641, X'56093d3ae74a16d82ca96abd37ec96832d2b5c200ae2c0996e3e1a1ee3f5afb3', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.751327+00', 849, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48642, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:30.893637+00', 430, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48643, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:30.946832+00', 541, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48644, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:30.894839+00', 595, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48645, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:30.901136+00', 664, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48646, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:31.012889+00', 563, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48647, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:30.982441+00', 601, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48648, X'f0dc7aaa0553b9445e4fca99b96042d27458158044059949b1f49a071e72e53c', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.228725+00', 527, 1, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48649, X'6ade19ccace78a02f9bc8e8a7957c32bcb4409093f0881afc2291dcf753bd167', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.236837+00', 587, 5, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48650, X'05d632ba3f73dedc9572f7af1706126e9c2cd8ec3c13c22a9d6d5eeb5cdddbd7', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.207928+00', 634, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48651, X'be4f1ea3d08aefa7b3d225a05249ebd7284b513e12cb211c3689b515bc242ce9', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.208762+00', 658, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48652, X'b1fab383e1ce50843c7a7218e9b2830349765200c15163f03b0ef35368454f9b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.255525+00', 657, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48653, X'9179a75fe31bb845b2d169343b79b3ee3e56d57b3c333b3ec9f55ea6cc916dc9', TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.255125+00', 700, 2, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48654, X'6fc3c9a041f6d6ce5ddf6960a80ebd88c97d5c84b5f810b54765042092fe374e', TIMESTAMP WITH TIME ZONE '2023-02-03 06:31:11.812444+00', 755, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48655, X'a5db3f635bdfeda7ca890e10528f1ffa4d6ea0cbb9535921c1705b14af4c58a7', TIMESTAMP WITH TIME ZONE '2023-02-03 06:31:35.372169+00', 278, 10, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48656, X'b28c96bfee6195920da282f823dd1ffe16b6511ac4ad62ba3056e688ceb7b452', TIMESTAMP WITH TIME ZONE '2023-02-03 06:31:46.74429+00', 4366, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(48657, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:09.615016+00', 2298, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48658, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:09.633779+00', 2318, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48659, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:09.588629+00', 2597, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48660, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:09.627275+00', 2613, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(48661, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:09.614965+00', 2664, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48662, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:09.618837+00', 2737, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48663, X'f9159315cd93cff6a964c6b88a05188d344e88720be6aa28f2c3aff0eac07d1b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:28.617294+00', 195, 11, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(48664, X'5bc6f68ae3d62d7c1b9b0ac6146bf1dc7bde68fa479438e4f105432ad2d11152', TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:05.973132+00', 308, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(48665, X'abcdcb8b52b0b3aa8a27ef3da36dfbbca08e2c1630528a0e3cb364efeac1b92b', TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:05.986071+00', 346, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48666, X'deb00446f1d57cb5d50999e679b13f8add6d7f33832884b2a06a34ede00ae5cf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:05.937683+00', 405, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(48667, X'4a5dfc5be75fcff6bc6e3d23b29ab2360548ea1e3ef56504c7e830557a555c50', TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:05.999754+00', 344, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(48668, X'75c46badae65a10eb2a8a23c4265e2de31d2f9e72e0191599c4faff6515d6c75', TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:05.997609+00', 374, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(48669, X'5eb705229024b38481ac8b5ca75b418db14607e73de74c09d140c10f3c0608bf', TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:05.961108+00', 435, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(48670, X'e829049742397b67da06a95aa8116cc99638b5dbe63765ea7ee5324696e519fd', TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:08.168555+00', 153, 4, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(48671, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465453+00', 1635, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(48672, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465475+00', 2379, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(48673, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465481+00', 2460, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(48674, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.484717+00', 2615, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(48675, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.476845+00', 3050, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(48676, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465468+00', 3406, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(48677, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465477+00', 3061, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(48678, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465471+00', 3425, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(48679, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465477+00', 7044, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(48680, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:09.465451+00', 7166, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(48681, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.623994+00', 2871, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48682, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.57008+00', 3129, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(48683, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.57008+00', 2914, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48684, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.421844+00', 5696, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48685, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.421844+00', 5719, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48686, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.637156+00', 5496, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48687, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.472101+00', 7312, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48688, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.472101+00', 7326, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(48689, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.564471+00', 6252, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48690, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.420924+00', 7572, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48691, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.420924+00', 7597, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(48692, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.422275+00', 7645, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48693, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.421023+00', 7679, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48694, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.514253+00', 6645, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48695, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.514253+00', 6654, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(48696, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.570511+00', 7511, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(48697, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.570511+00', 7488, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48698, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.641344+00', 7505, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48699, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.626554+00', 7520, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48700, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.423045+00', 8723, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48701, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.48959+00', 8658, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48702, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.321776+00', 7827, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48703, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.550388+00', 8596, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48704, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.691465+00', 8457, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48705, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.369005+00', 7778, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48706, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.569854+00', 8621, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48707, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.508036+00', 8639, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48708, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.369005+00', 7832, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(48709, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.550388+00', 8636, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(48710, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.489698+00', 8701, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48711, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.48959+00', 8742, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(48712, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.423068+00', 8805, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(48713, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.321776+00', 8004, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(48714, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.691465+00', 8571, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(48715, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.555483+00', 7795, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48716, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.423068+00', 8733, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48717, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.508036+00', 8699, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(48718, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.549749+00', 7891, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48719, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.517921+00', 8226, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48720, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.549749+00', 7970, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(48721, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.692684+00', 7917, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48722, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:29.42095+00', 8921, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48723, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.558293+00', 10266, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48724, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.636983+00', 10293, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48725, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.505775+00', 10479, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48726, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.520054+00', 10464, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48727, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.505775+00', 10513, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(48728, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:30.520054+00', 10501, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(48729, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.005256+00', 2356, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48730, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.059847+00', 3588, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48731, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.070222+00', 3794, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48732, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:33.997528+00', 3874, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48733, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.034237+00', 3886, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48734, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:33.997194+00', 4162, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48735, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.02237+00', 4134, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48736, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.071647+00', 4084, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48737, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.053486+00', 4128, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48738, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:33.99802+00', 4236, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48739, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:33.997538+00', 4269, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48740, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.054391+00', 4231, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48741, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.064523+00', 4225, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48742, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.017278+00', 4335, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48743, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:33.997634+00', 5377, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48744, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:34.047106+00', 5331, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48745, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.546438+00', 3463, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48746, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.248672+00', 6029, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48747, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.378464+00', 6109, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48748, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.208833+00', 6285, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48749, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.244145+00', 6324, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48750, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.208851+00', 6706, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48751, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.326515+00', 6576, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48752, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.208866+00', 6798, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48753, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.475484+00', 6611, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48754, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.506043+00', 6598, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48755, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.213447+00', 6891, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48756, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.239716+00', 6878, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48757, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.208914+00', 6906, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48758, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.36708+00', 6900, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48759, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.337768+00', 8745, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48760, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:00.234829+00', 8900, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48761, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.357442+00', 2187, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48762, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.35062+00', 6129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48763, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.331316+00', 6936, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48764, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.316484+00', 6983, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48765, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.34064+00', 6978, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48766, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.325191+00', 7305, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48767, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.342319+00', 7345, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48768, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.32742+00', 7303, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48769, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.347845+00', 7439, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48770, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.314789+00', 7470, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48771, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.319864+00', 7471, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48772, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.338755+00', 7455, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48773, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.356711+00', 7572, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48774, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.316476+00', 7622, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48775, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.314814+00', 8986, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48776, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:00.32763+00', 9065, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48777, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.124612+00', 2639, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48778, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.240066+00', 1535, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48779, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.124612+00', 2804, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(48780, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.535551+00', 5339, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48781, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.180761+00', 5740, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48782, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.535551+00', 5482, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(48783, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.958635+00', 7979, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48784, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.958635+00', 8002, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(48785, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.000044+00', 8136, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48786, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.000044+00', 8150, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(48787, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.965047+00', 8474, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48788, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.16208+00', 7540, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48789, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.783933+00', 8828, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48790, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.16208+00', 7658, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(48791, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.500395+00', 7226, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48792, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.504133+00', 7912, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48793, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.245162+00', 8199, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48794, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.283853+00', 8169, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48795, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.012593+00', 9433, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48796, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.998219+00', 9465, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48797, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.838129+00', 9628, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48798, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.504133+00', 7960, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(48799, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.955767+00', 9505, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48800, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.260212+00', 8207, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48801, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.012593+00', 9509, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(48802, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.013907+00', 9565, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48803, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.283853+00', 8345, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(48804, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.955767+00', 9686, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(48805, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.783624+00', 9933, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48806, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.013907+00', 9672, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(48807, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.030549+00', 9703, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48808, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.847957+00', 9920, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48809, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.859969+00', 10004, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48810, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.847957+00', 9949, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(48811, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.783624+00', 10057, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(48812, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.859969+00', 10107, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(48813, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:54.986103+00', 9989, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48814, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.504105+00', 8494, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48815, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:55.0812+00', 10016, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48816, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.233975+00', 8870, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48817, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.504105+00', 8571, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(48818, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.309247+00', 8817, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48819, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.304344+00', 11277, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48820, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.304344+00', 11316, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(48821, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.268614+00', 11385, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48822, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.268614+00', 11390, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(48823, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.100739+00', 11559, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48824, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:56.319188+00', 11401, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48825, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.920046+00', 4429, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(48826, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.918729+00', 4295, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48827, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.920046+00', 4292, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48828, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.980885+00', 7730, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48829, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.933551+00', 7796, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48830, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.933551+00', 7839, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(48831, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.867261+00', 8670, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48832, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.867261+00', 8686, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(48833, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.89655+00', 8845, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48834, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.883181+00', 8881, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48835, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.89655+00', 8872, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(48836, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:42.01391+00', 9081, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(48837, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.821373+00', 8994, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48838, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:42.01391+00', 9072, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48839, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.821373+00', 9204, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(48840, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.940336+00', 9118, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48841, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:42.120967+00', 9071, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48842, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.99821+00', 9576, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48843, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.877696+00', 9699, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48844, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.957666+00', 9630, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48845, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.877696+00', 9737, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(48846, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:42.009782+00', 9606, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48847, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.957666+00', 9706, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(48848, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.911793+00', 9753, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48849, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.893328+00', 9852, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48850, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.904022+00', 9862, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48851, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.935904+00', 9824, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48852, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.904022+00', 9949, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(48853, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.907582+00', 9860, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48854, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.935904+00', 9837, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(48855, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.907582+00', 9937, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(48856, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:42.12084+00', 9854, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48857, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.900609+00', 10080, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48858, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.994304+00', 9984, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48859, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.922116+00', 10063, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48860, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:42.12084+00', 9870, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(48861, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.821371+00', 10196, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48862, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.874872+00', 10132, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48863, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.888229+00', 10214, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48864, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.915176+00', 10145, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48865, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.900609+00', 10200, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(48866, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.994304+00', 10106, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(48867, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.957495+00', 12655, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48868, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.971632+00', 13253, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48869, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.933784+00', 13311, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(48870, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.933784+00', 13305, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48871, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.925586+00', 13536, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48872, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:41.925586+00', 13541, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(48873, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.493521+00', 1496, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48874, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.459932+00', 3214, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48875, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.427156+00', 3619, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48876, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.394382+00', 3741, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48877, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.481262+00', 3914, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48878, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.489052+00', 3928, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48879, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.394381+00', 4040, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48880, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.452234+00', 4009, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48881, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.394416+00', 4106, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48882, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.5007+00', 4035, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48883, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.499338+00', 4103, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48884, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.491277+00', 4130, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48885, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.411612+00', 4220, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48886, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.442296+00', 4232, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48887, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.498306+00', 6005, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48888, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:37.468375+00', 6085, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48889, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.691132+00', 1520, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48890, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.691132+00', 1577, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(48891, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.843358+00', 1508, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48892, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.974965+00', 5237, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48893, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.701267+00', 5517, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48894, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.701267+00', 5556, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48895, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.388761+00', 7672, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48896, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.388761+00', 7689, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(48897, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.533445+00', 8116, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48898, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.381042+00', 8561, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48899, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.381042+00', 8572, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(48900, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.329204+00', 8660, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48901, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.329204+00', 8685, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(48902, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.263366+00', 8744, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48903, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.8582+00', 8373, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48904, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.847323+00', 8411, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48905, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.847323+00', 8430, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(48906, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.129193+00', 9187, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48907, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.99888+00', 8855, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48908, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.99888+00', 8897, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(48909, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.298187+00', 9636, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48910, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.865862+00', 9112, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48911, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.129348+00', 9965, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48912, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.621289+00', 9583, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48913, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.930506+00', 9216, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48914, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.112808+00', 10148, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48915, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.888967+00', 9373, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48916, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.271805+00', 10057, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48917, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.807876+00', 9588, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48918, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.888967+00', 9503, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(48919, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.930506+00', 9411, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(48920, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.125417+00', 10241, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48921, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.271805+00', 10180, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(48922, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.124758+00', 10371, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48923, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.541728+00', 9901, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48924, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.112808+00', 10338, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(48925, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.125417+00', 10307, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(48926, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.124758+00', 10524, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(48927, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:11.052264+00', 9611, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48928, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.129658+00', 10535, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48929, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:11.052264+00', 9632, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(48930, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:11.00236+00', 9696, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48931, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.539055+00', 11756, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(48932, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.541229+00', 11776, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48933, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.539055+00', 11751, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48934, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:11.056267+00', 11260, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48935, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:10.721073+00', 11604, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48936, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:11.056267+00', 11286, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(48937, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:26:58.747585+00', 3823, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48938, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:26:58.747602+00', 3825, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48939, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:26:58.747592+00', 3823, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48940, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:26:58.74835+00', 3822, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48941, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:26:58.7935+00', 3777, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48942, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:01.650403+00', 921, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48943, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:26:58.747587+00', 3888, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48944, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:02.245297+00', 1757, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48945, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:02.347794+00', 1639, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48946, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.45088+00', 643, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48947, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:01.961676+00', 2473, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48948, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.542728+00', 966, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48949, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:01.883767+00', 2679, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48950, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.580929+00', 1063, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48951, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:02.329374+00', 3731, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48952, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:02.400622+00', 3662, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48953, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.690065+00', 955, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48954, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.303242+00', 2284, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48955, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:07.268755+00', 3440, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48956, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.615528+00', 2172, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48957, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:07.266579+00', 3605, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48958, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.713458+00', 2812, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48959, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:07.364658+00', 4161, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48960, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.669547+00', 2946, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48961, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:07.270415+00', 4271, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48962, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.713416+00', 2862, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48963, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.756866+00', 2884, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48964, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:07.266602+00', 4275, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48965, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:07.273037+00', 4425, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48966, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.718659+00', 3071, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48967, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.303477+00', 5646, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48968, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:08.725542+00', 5233, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48969, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:34.808721+00', 3562, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(48970, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:34.801452+00', 3577, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48971, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:34.811635+00', 3610, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48972, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:35.051854+00', 3327, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48973, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:34.824036+00', 3546, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48974, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:34.801181+00', 3570, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48975, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.144808+00', 536, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48976, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.07657+00', 665, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48977, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.295835+00', 766, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48978, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.285694+00', 1029, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48979, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.229194+00', 1128, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48980, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.239956+00', 1207, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48981, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.194486+00', 1428, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48982, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.123683+00', 1727, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48983, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.196863+00', 2354, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(48984, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.164747+00', 2416, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(48985, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:33.97496+00', 2611, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(48986, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:33.963469+00', 2626, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(48987, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:33.976605+00', 2613, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(48988, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:33.993468+00', 2633, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(48989, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:33.963485+00', 2788, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(48990, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:33.975195+00', 2779, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(48991, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.740657+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(48992, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.465212+00', 518, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(48993, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.729116+00', 630, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(48994, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.857472+00', 558, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(48995, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.416848+00', 1052, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(48996, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.946218+00', 582, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(48997, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.766527+00', 844, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(48998, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.796631+00', 1002, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(48999, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.732771+00', 2169, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49000, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.617939+00', 2317, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49001, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:27.322188+00', 2005, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49002, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:27.326958+00', 2001, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49003, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:27.28068+00', 2092, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49004, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:27.332165+00', 2041, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49005, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:27.294803+00', 2058, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49006, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:27.185082+00', 2292, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49007, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:37.808941+00', 384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49008, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:37.80169+00', 539, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49009, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.100814+00', 259, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49010, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.053848+00', 589, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49011, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.213909+00', 451, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49012, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:37.979641+00', 726, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49013, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.131963+00', 610, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49014, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:37.785805+00', 1000, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49015, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.026773+00', 1626, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49016, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.089059+00', 1611, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49017, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:39.200932+00', 2643, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49018, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:39.128046+00', 2714, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49019, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:39.166247+00', 2824, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49020, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:39.138059+00', 2829, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49021, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:39.139683+00', 2851, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49022, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:39.163998+00', 2907, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49023, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.810023+00', 1307, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49024, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.809808+00', 3127, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49025, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.809822+00', 3367, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49026, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.809821+00', 3454, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49027, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.809808+00', 3648, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49028, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.809826+00', 3702, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49029, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.815818+00', 3801, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49030, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.809808+00', 3852, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49031, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.811185+00', 4773, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49032, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:01.810047+00', 4787, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49033, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:57.449782+00', 1777, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49034, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:57.368519+00', 1864, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49035, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:57.36383+00', 2038, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49036, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:57.378754+00', 2056, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49037, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:57.347335+00', 2166, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49038, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:57.347332+00', 2234, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49039, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.483864+00', 553, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49040, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.278054+00', 1323, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49041, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.402875+00', 1520, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49042, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.737048+00', 1310, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49043, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.626456+00', 1450, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49044, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.338565+00', 1770, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49045, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.763373+00', 1440, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49046, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.456063+00', 1817, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49047, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.350511+00', 3203, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49048, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:14.38705+00', 3203, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49049, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:01.551428+00', 4808, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49050, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:01.305359+00', 5310, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49051, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:01.305398+00', 5055, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49052, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:01.305385+00', 5103, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49053, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:01.305379+00', 5301, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49054, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:01.305389+00', 5055, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49055, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.796031+00', 455, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49056, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.644564+00', 1996, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49057, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.650068+00', 2039, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49058, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.725434+00', 2113, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49059, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.711187+00', 2306, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49060, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.71753+00', 2312, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49061, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.796713+00', 2305, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49062, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.898481+00', 2306, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49063, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.720872+00', 4103, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49064, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:17.804749+00', 4032, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49065, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:17.241985+00', 2674, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49066, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:17.188697+00', 2728, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49067, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:17.191681+00', 2757, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49068, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:17.186179+00', 2803, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49069, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:17.186172+00', 2920, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49070, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:17.191705+00', 2946, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49071, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.742303+00', 307, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49072, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.858474+00', 298, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49073, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.781367+00', 531, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49074, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.770714+00', 636, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49075, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.767799+00', 671, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49076, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.818417+00', 653, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49077, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.766602+00', 751, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49078, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.819304+00', 719, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49079, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.773247+00', 1421, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49080, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:41.793118+00', 1409, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49081, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:16:59.565638+00', 4006, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49082, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:16:59.565633+00', 4048, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49083, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:16:59.565615+00', 4048, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49084, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:16:59.565608+00', 4007, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49085, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:16:59.565606+00', 4007, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49086, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:16:59.565607+00', 4007, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49087, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:35.84696+00', 539, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49088, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.076509+00', 342, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49089, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:35.843897+00', 779, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49090, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.059086+00', 600, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49091, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:35.850102+00', 877, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49092, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.12316+00', 643, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49093, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.153527+00', 686, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49094, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.200794+00', 802, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49095, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:35.860183+00', 1598, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49096, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.052899+00', 1444, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49097, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:30.294634+00', 4120, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49098, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:30.33082+00', 4063, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49099, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:30.280481+00', 4108, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49100, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:30.49669+00', 3919, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49101, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:30.36156+00', 3956, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49102, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:30.280158+00', 4115, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49103, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:28.046526+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49104, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.819298+00', 1126, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49105, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.954432+00', 1000, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49106, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.929192+00', 1010, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49107, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.875645+00', 1123, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49108, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.874698+00', 1131, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49109, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.910929+00', 1265, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49110, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:28.103927+00', 1187, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49111, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.878023+00', 2013, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49112, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:27.849891+00', 2099, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49113, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.27987+00', 683, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49114, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.27987+00', 766, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(49115, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.152665+00', 1968, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49116, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.152665+00', 2156, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(49117, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.300349+00', 2608, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(49118, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.300349+00', 2574, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49119, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:52.026927+00', 3045, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49120, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:53.20778+00', 2366, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49121, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.120794+00', 5876, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(49122, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.120794+00', 5862, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49123, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.155699+00', 5904, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49124, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.155699+00', 5969, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(49125, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.389603+00', 7202, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49126, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.542244+00', 7091, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49127, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.542244+00', 7125, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(49128, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.159059+00', 7563, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49129, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.159059+00', 7605, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(49130, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.443608+00', 7437, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49131, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.396791+00', 7485, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49132, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.377045+00', 7535, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49133, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.443608+00', 7502, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(49134, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.396791+00', 7589, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(49135, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.146833+00', 7767, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49136, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.552593+00', 7559, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49137, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:53.17092+00', 5893, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49138, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.146833+00', 7976, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(49139, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:52.911082+00', 6367, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49140, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:52.994017+00', 6302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49141, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.280534+00', 8109, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49142, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.280534+00', 8116, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49143, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.399438+00', 8316, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49144, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:53.184062+00', 6537, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49145, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.399438+00', 8401, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(49146, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.292451+00', 8526, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49147, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:53.323329+00', 6489, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49148, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.292451+00', 8557, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(49149, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.956992+00', 7890, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49150, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:52.02505+00', 7870, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49151, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.549131+00', 8389, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49152, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.543527+00', 8637, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49153, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:52.026038+00', 8156, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49154, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.543527+00', 8705, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(49155, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.543113+00', 10728, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49156, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.543113+00', 10752, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(49157, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.223686+00', 11081, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49158, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.223686+00', 11084, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(49159, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:52.04672+00', 10449, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49160, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:52.978706+00', 9529, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49161, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.413359+00', 1813, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49162, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.385542+00', 4471, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49163, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.385549+00', 4645, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49164, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.412608+00', 4640, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49165, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.385556+00', 4793, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49166, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.418855+00', 5006, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49167, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.386933+00', 5249, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49168, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.385393+00', 5354, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49169, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.402428+00', 5487, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49170, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.410942+00', 5560, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49171, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.397453+00', 5676, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49172, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.389343+00', 5693, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49173, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.40267+00', 5779, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49174, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.405356+00', 5965, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49175, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.420933+00', 8283, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49176, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:54.410659+00', 8349, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49177, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.99571+00', 3479, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49178, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.99571+00', 4291, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(49179, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.983368+00', 3981, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49180, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.360879+00', 5988, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49181, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.955586+00', 7485, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(49182, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.955586+00', 7389, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49183, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.969435+00', 10086, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49184, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.750431+00', 10513, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(49185, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.750431+00', 10487, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49186, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.785726+00', 10665, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49187, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.067829+00', 9319, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49188, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:34.037478+00', 10493, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49189, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:34.037478+00', 10541, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(49190, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.958431+00', 10717, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49191, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.785726+00', 10747, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(49192, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.75172+00', 11265, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49193, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.75172+00', 11304, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(49194, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:34.435047+00', 10605, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(49195, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:34.435047+00', 10580, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49196, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.947216+00', 11355, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49197, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.784978+00', 11572, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49198, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.95298+00', 11438, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49199, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.331728+00', 10020, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49200, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.947216+00', 11374, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(49201, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.784978+00', 11624, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(49202, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.7792+00', 11639, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(49203, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.777337+00', 11950, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49204, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.346724+00', 10412, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49205, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.7792+00', 11598, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49206, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.782974+00', 11975, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49207, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.398701+00', 10377, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49208, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.956227+00', 11519, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49209, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.958795+00', 11777, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49210, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.331728+00', 10060, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(49211, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.956227+00', 11834, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(49212, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.361648+00', 10596, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49213, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.391433+00', 10560, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(49214, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.391433+00', 10552, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49215, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.782974+00', 12088, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(49216, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.323754+00', 10585, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49217, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.751818+00', 12278, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49218, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.324809+00', 11438, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49219, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.947169+00', 13785, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49220, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:34.439215+00', 13279, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49221, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:34.439215+00', 13379, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(49222, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:33.947169+00', 13914, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(49223, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.092249+00', 12764, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49224, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:35.367586+00', 12687, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49225, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.041512+00', 3204, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49226, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.03826+00', 5604, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49227, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.00459+00', 6407, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49228, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.097092+00', 6341, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49229, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:35.999341+00', 6444, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49230, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.01278+00', 6714, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49231, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.116851+00', 6579, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49232, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:35.99937+00', 6938, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49233, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.082312+00', 7072, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49234, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:35.999346+00', 7323, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49235, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.021875+00', 7290, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49236, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.090032+00', 7443, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49237, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.097815+00', 7537, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49238, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.106574+00', 7642, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49239, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.082762+00', 9599, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49240, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:36.059392+00', 9728, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49241, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.505189+00', 1445, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49242, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.458348+00', 3182, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49243, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.545451+00', 3207, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49244, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.458768+00', 3302, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49245, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.374453+00', 3437, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49246, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.404059+00', 3623, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49247, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.363571+00', 3692, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49248, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.534274+00', 3524, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49249, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.364839+00', 3702, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49250, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.497437+00', 3571, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49251, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.417882+00', 3646, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49252, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.497689+00', 3617, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49253, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.481801+00', 3647, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49254, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.464272+00', 3696, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49255, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.519107+00', 4492, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49256, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:33.447149+00', 4571, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49257, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.685137+00', 2019, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49258, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.694488+00', 3835, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49259, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.686815+00', 4573, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49260, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.672668+00', 4587, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49261, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.695263+00', 4745, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49262, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.68523+00', 5115, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49263, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.694422+00', 5105, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49264, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.675763+00', 5194, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49265, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.683266+00', 5154, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49266, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.680458+00', 5208, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49267, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.690445+00', 5109, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49268, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.688006+00', 5111, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49269, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.67268+00', 5430, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49270, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.682449+00', 5222, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49271, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.688466+00', 7465, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49272, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:35.677772+00', 7508, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49273, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.730837+00', 3046, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49274, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.730837+00', 3176, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(49275, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.714924+00', 3081, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49276, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606307+00', 5752, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(49277, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606307+00', 5737, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49278, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.710447+00', 5676, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49279, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606383+00', 6828, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49280, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606383+00', 6885, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(49281, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.672768+00', 6902, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49282, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.769409+00', 6809, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49283, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.672768+00', 6915, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(49284, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.799215+00', 6911, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49285, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.799215+00', 6937, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(49286, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.682848+00', 7071, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49287, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.737821+00', 7165, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49288, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.785419+00', 8365, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49289, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.631243+00', 8519, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49290, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.716277+00', 8436, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49291, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606324+00', 8544, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49292, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606377+00', 8545, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49293, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.777263+00', 8419, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49294, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606332+00', 8588, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49295, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.631243+00', 8540, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(49296, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.733696+00', 8456, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49297, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606324+00', 8607, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(49298, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.716277+00', 8480, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(49299, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606332+00', 8629, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(49300, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.733696+00', 8487, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(49301, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.606469+00', 8715, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49302, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.777263+00', 8461, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(49303, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.800915+00', 8478, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49304, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.661102+00', 8597, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49305, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.79509+00', 8554, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49306, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.618257+00', 8642, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49307, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.648549+00', 8706, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49308, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.822538+00', 8667, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(49309, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.79509+00', 8605, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(49310, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.822538+00', 8651, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49311, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.701938+00', 8658, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49312, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.783491+00', 8731, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49313, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.648549+00', 8786, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49314, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.708999+00', 8938, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49315, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.717224+00', 10638, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49316, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.725389+00', 10656, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49317, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.725389+00', 10708, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(49318, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.799614+00', 10863, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49319, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.781395+00', 10890, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49320, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:38.799614+00', 10912, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(49321, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.118032+00', 1788, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49322, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.138714+00', 3615, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49323, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.132052+00', 4609, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49324, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.118665+00', 4704, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49325, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.118018+00', 4627, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49326, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.141971+00', 5315, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49327, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.130613+00', 5373, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49328, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.118039+00', 5396, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49329, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.134635+00', 5469, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49330, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.133296+00', 5521, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49331, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.13839+00', 5544, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49332, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.120851+00', 6093, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49333, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.1279+00', 6084, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49334, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.136186+00', 6075, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49335, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.118071+00', 8082, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49336, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:38.122+00', 8143, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49337, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.533633+00', 1577, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49338, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.510606+00', 2383, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49339, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.605393+00', 3702, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49340, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.505189+00', 3802, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49341, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.575342+00', 3771, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49342, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.510888+00', 4337, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49343, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.504979+00', 4341, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49344, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.557716+00', 4350, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49345, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.505278+00', 4417, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49346, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.50496+00', 4477, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49347, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.507514+00', 4455, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49348, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.592826+00', 4389, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49349, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.585705+00', 4460, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49350, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.504974+00', 4595, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49351, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.597671+00', 6083, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49352, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:38.543596+00', 6190, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49353, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.032965+00', 613, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49354, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.003436+00', 1373, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49355, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.003436+00', 1414, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(49356, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.626831+00', 1496, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49357, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.582754+00', 1588, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49358, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.022668+00', 2513, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49359, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.807364+00', 1718, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49360, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.626831+00', 1507, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(49361, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.59573+00', 1536, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49362, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.807364+00', 1785, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(49363, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.672236+00', 2275, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49364, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.022668+00', 2623, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(49365, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.657335+00', 4822, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(49366, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.657335+00', 4813, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49367, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.560719+00', 5818, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(49368, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.560719+00', 5782, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49369, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.034648+00', 5604, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49370, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.034648+00', 5748, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49371, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.788814+00', 5114, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49372, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.560719+00', 7198, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49373, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.742449+00', 7023, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49374, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.516657+00', 6412, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49375, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.560719+00', 7410, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(49376, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.050576+00', 6881, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49377, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.883138+00', 6045, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49378, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.742449+00', 7386, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(49379, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.01419+00', 6882, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49380, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.802145+00', 6104, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49381, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.444343+00', 6671, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49382, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.138357+00', 7209, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(49383, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.676312+00', 6761, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49384, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.752142+00', 6714, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49385, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.566469+00', 6831, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49386, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.509331+00', 6958, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49387, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.72136+00', 6630, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49388, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.752142+00', 6767, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(49389, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.676312+00', 6858, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49390, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.611344+00', 7027, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49391, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.509331+00', 7084, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(49392, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.138357+00', 7001, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49393, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.444343+00', 6673, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(49394, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.561798+00', 7341, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49395, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.741995+00', 9431, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49396, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.741995+00', 9439, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(49397, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.90133+00', 8374, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49398, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.666221+00', 9957, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49399, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:41.666221+00', 9967, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(49400, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.140113+00', 9492, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49401, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.808745+00', 1117, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49402, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.79362+00', 2425, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49403, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.148558+00', 3937, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49404, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.781458+00', 3301, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49405, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.148567+00', 3932, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49406, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.156159+00', 4208, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49407, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.766936+00', 3598, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49408, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.196612+00', 4287, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49409, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.792207+00', 3671, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49410, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.774492+00', 3703, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49411, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.80052+00', 3672, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49412, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.25007+00', 4220, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49413, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.782181+00', 3738, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49414, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.158214+00', 4372, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49415, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.753118+00', 4512, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49416, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:37.804812+00', 4491, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49417, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.534369+00', 2466, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49418, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.888849+00', 3306, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49419, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.640686+00', 3576, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49420, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.939846+00', 3278, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49421, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.999305+00', 5193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49422, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.652888+00', 5742, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49423, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.885044+00', 5761, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49424, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.688492+00', 6021, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49425, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.920675+00', 5805, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49426, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.731308+00', 6032, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49427, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.805696+00', 6113, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49428, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.948767+00', 5974, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49429, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:44.162762+00', 5800, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49430, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.509371+00', 6465, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49431, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:44.066866+00', 7261, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49432, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:43.509149+00', 7935, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49433, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523175+00', 1341, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49434, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.527469+00', 1374, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(49435, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.527469+00', 1332, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49436, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523205+00', 2920, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49437, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523213+00', 2995, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49438, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523205+00', 3099, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(49439, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.450121+00', 1160, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49440, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.323022+00', 1289, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49441, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523204+00', 5600, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49442, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523204+00', 5609, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(49443, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523223+00', 5687, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49444, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523223+00', 5689, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(49445, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.557565+00', 6046, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49446, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523248+00', 6342, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49447, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523192+00', 6329, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49448, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523248+00', 6300, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49449, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.552267+00', 6307, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49450, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.263257+00', 3829, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49451, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523219+00', 7278, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49452, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.55164+00', 7262, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(49453, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.26095+00', 4541, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49454, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523185+00', 7281, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49455, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.55164+00', 6776, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49456, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.52321+00', 7317, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49457, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523219+00', 7398, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(49458, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.358914+00', 4613, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49459, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.322466+00', 4759, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49460, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.557797+00', 7416, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49461, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.557797+00', 7506, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(49462, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.541821+00', 7618, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49463, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.557578+00', 10818, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49464, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.549986+00', 10835, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49465, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523189+00', 10868, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49466, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.557578+00', 10831, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(49467, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.549986+00', 10860, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(49468, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:35.523274+00', 10933, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49469, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.652365+00', 1196, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49470, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.444109+00', 1431, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49471, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.456716+00', 4720, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49472, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.331936+00', 4970, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49473, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.340276+00', 5022, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49474, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.458028+00', 5140, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49475, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.333196+00', 5388, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49476, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.473089+00', 5317, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49477, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.380282+00', 5412, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49478, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.331936+00', 5518, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49479, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.630906+00', 5219, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49480, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.34304+00', 5533, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49481, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.803567+00', 5148, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49482, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.637931+00', 5378, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49483, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.343983+00', 6891, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49484, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:11.36138+00', 6884, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49485, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.028601+00', 2118, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49486, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.092922+00', 3466, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49487, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.543591+00', 3039, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49488, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.476985+00', 3109, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49489, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.500628+00', 4621, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49490, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.116865+00', 5279, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49491, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.576936+00', 4981, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49492, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.632861+00', 4940, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49493, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.613128+00', 4965, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49494, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.686599+00', 4891, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49495, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.012437+00', 5581, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49496, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.2925+00', 5343, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49497, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.496604+00', 5175, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49498, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.08659+00', 5606, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49499, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.597021+00', 5789, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49500, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:37.498089+00', 5956, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49501, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.784897+00', 553, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49502, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.759045+00', 2500, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49503, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.461714+00', 3443, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49504, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.66319+00', 3242, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49505, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.803857+00', 3315, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49506, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.457614+00', 3816, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49507, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.859341+00', 3491, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49508, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.803628+00', 3555, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49509, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.467972+00', 4027, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49510, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.784728+00', 3729, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49511, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.706606+00', 3893, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49512, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.47146+00', 4137, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49513, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.471669+00', 4167, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49514, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.784997+00', 3888, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49515, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.803168+00', 4646, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49516, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:11.814355+00', 4675, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49517, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.772751+00', 1594, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49518, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.786519+00', 2214, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49519, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.818007+00', 2191, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49520, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.82521+00', 2184, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49521, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.775715+00', 3106, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49522, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.807891+00', 3382, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49523, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.786413+00', 3433, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49524, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.794447+00', 3610, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49525, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.817002+00', 3602, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49526, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.773173+00', 3656, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49527, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.797771+00', 3635, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49528, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.804736+00', 3661, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49529, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.822986+00', 3641, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49530, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.823061+00', 3668, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49531, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.7927+00', 4490, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49532, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:36.798575+00', 4500, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49533, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.588798+00', 716, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49534, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.460547+00', 2476, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49535, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.078528+00', 3206, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49536, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.074096+00', 3226, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49537, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.629719+00', 2703, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49538, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.759458+00', 3017, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49539, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.756637+00', 3042, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49540, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.421034+00', 3401, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49541, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.027176+00', 3803, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49542, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.036846+00', 3843, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49543, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.643829+00', 3263, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49544, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.618743+00', 3283, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49545, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.08045+00', 3821, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49546, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.007061+00', 3986, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49547, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.588662+00', 3870, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49548, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:11.62955+00', 3949, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49549, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.99278+00', 1321, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49550, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.020575+00', 2074, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49551, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.006964+00', 2104, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49552, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.009436+00', 2103, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49553, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.985691+00', 4391, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49554, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.98568+00', 4675, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49555, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.996391+00', 4690, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49556, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.003152+00', 4701, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49557, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.998031+00', 4826, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49558, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.012242+00', 4809, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49559, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.003199+00', 4875, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49560, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.994605+00', 4916, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49561, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.010693+00', 4906, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49562, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.989014+00', 4962, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49563, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:36.985681+00', 6274, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49564, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:37.013781+00', 6274, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49565, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.356708+00', 1188, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49566, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.439662+00', 2242, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49567, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.095734+00', 2795, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49568, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.355537+00', 2568, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49569, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.350001+00', 2682, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49570, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.443504+00', 2863, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49571, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.187757+00', 3140, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49572, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.272895+00', 3088, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49573, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.313138+00', 3072, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49574, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.359662+00', 3049, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49575, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.35731+00', 3133, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49576, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:12.61801+00', 1916, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49577, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.353148+00', 3225, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49578, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.021657+00', 3643, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49579, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.441734+00', 3780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49580, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:11.439154+00', 3821, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49581, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.014942+00', 1255, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49582, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.025353+00', 1813, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49583, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.019502+00', 1818, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49584, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.020949+00', 1818, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49585, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.026509+00', 2595, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49586, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.036056+00', 2760, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49587, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.059942+00', 2808, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49588, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.049433+00', 2925, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49589, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.016675+00', 3000, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49590, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.016789+00', 3049, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49591, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.028539+00', 3086, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49592, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.04482+00', 3083, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49593, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.01091+00', 3176, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49594, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.01091+00', 3211, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49595, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.028803+00', 4339, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49596, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:36.059392+00', 4347, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49597, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.82048+00', 882, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49598, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.883411+00', 2441, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49599, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.771693+00', 3219, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49600, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.88357+00', 3118, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49601, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.78675+00', 3224, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49602, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.737381+00', 3405, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49603, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:12.134066+00', 3128, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49604, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.647849+00', 3607, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49605, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.776366+00', 3522, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49606, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.919466+00', 3401, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49607, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.919101+00', 3431, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49608, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.909736+00', 3459, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49609, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.776153+00', 3595, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49610, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.920074+00', 3494, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49611, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:11.920758+00', 4032, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49612, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:12.122385+00', 3839, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49613, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.036599+00', 1271, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49614, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.747475+00', 1796, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49615, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.904676+00', 1648, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49616, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.072669+00', 2529, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49617, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.043202+00', 3086, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49618, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.052667+00', 3311, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49619, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.692346+00', 2823, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49620, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.885353+00', 2784, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49621, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.036577+00', 3692, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49622, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.029245+00', 3698, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49623, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.906836+00', 2871, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49624, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.092014+00', 3703, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49625, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.72767+00', 3087, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49626, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.045547+00', 3883, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49627, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.038472+00', 5090, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49628, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:35.029246+00', 5177, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49629, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.285073+00', 288, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49630, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.356869+00', 1573, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49631, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.297928+00', 2157, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49632, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.293782+00', 2208, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49633, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.360847+00', 2203, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49634, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.286745+00', 2575, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49635, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.294012+00', 2589, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49636, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.284991+00', 2654, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49637, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.287785+00', 2657, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49638, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.350893+00', 2602, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49639, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.361281+00', 2605, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49640, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.287758+00', 2692, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49641, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.299174+00', 2707, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49642, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.288588+00', 2769, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49643, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.28753+00', 3064, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49644, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.364768+00', 3003, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49645, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.58921+00', 2104, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49646, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:36.495869+00', 2068, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49647, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.591582+00', 3011, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49648, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:36.604626+00', 2018, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49649, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.59075+00', 4033, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49650, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.56597+00', 4350, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49651, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.578311+00', 4356, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49652, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.571069+00', 4394, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49653, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:36.478307+00', 3529, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49654, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:36.47008+00', 3571, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49655, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:36.460959+00', 3688, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49656, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:36.507787+00', 3679, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49657, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.565985+00', 4628, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49658, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.570825+00', 4650, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49659, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.587657+00', 5596, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49660, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:35.577485+00', 5663, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49661, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.584642+00', 630, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49662, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.432248+00', 2205, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49663, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.404738+00', 3090, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49664, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.397429+00', 3179, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49665, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.41004+00', 3225, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49666, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.447462+00', 3265, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49667, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.451757+00', 3360, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49668, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.402193+00', 3502, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49669, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.371183+00', 3537, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49670, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.43248+00', 3494, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49671, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.37852+00', 3562, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49672, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.343194+00', 3601, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49673, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.451313+00', 3528, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49674, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.401279+00', 3609, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49675, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.37413+00', 4772, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49676, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:12.334129+00', 4830, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49677, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.132957+00', 1348, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49678, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.131173+00', 2117, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49679, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.141419+00', 2087, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49680, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.161592+00', 2142, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49681, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.157728+00', 2582, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49682, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.131168+00', 2796, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49683, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.143578+00', 2965, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49684, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.148867+00', 3008, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49685, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.150347+00', 3099, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49686, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.136997+00', 3134, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49687, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.168612+00', 3128, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49688, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.133362+00', 3217, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49689, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.15769+00', 3196, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49690, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.167916+00', 3246, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49691, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.134719+00', 4557, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49692, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:36.161603+00', 4575, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49693, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.770588+00', 1241, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49694, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.744118+00', 1953, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49695, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741578+00', 1966, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49696, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.74502+00', 1959, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49697, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.756484+00', 3325, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49698, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741572+00', 3750, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49699, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741541+00', 3745, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49700, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.770737+00', 3710, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49701, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741583+00', 3954, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49702, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741561+00', 3954, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49703, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.765318+00', 4017, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49704, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741556+00', 4062, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49705, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741543+00', 4060, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49706, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.74347+00', 4099, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49707, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.763581+00', 5636, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49708, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:36.741588+00', 5685, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49709, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.773388+00', 425, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49710, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.57484+00', 1411, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49711, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.549739+00', 1438, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49712, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.534745+00', 1453, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49713, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.596652+00', 1993, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49714, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.487518+00', 2265, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49715, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.784286+00', 2059, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49716, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.521628+00', 2363, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49717, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.588715+00', 2304, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49718, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.510068+00', 2490, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49719, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.562418+00', 2463, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49720, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.544909+00', 2498, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49721, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.519789+00', 2521, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49722, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.487453+00', 2638, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49723, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.609102+00', 3466, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49724, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:35.565757+00', 3576, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49725, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.388719+00', 1603, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49726, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.38024+00', 1999, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49727, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.393222+00', 1989, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49728, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.380178+00', 2002, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49729, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.390625+00', 3164, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49730, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.395487+00', 3474, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49731, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.401229+00', 3498, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49732, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.380308+00', 3570, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49733, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.407302+00', 3563, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49734, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.380244+00', 3654, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49735, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.396843+00', 3718, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49736, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.38143+00', 3735, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49737, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.385766+00', 3749, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49738, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.396885+00', 3738, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49739, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.405348+00', 5805, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49740, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:36.382229+00', 5840, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49741, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.374102+00', 2765, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49742, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.374122+00', 3834, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49743, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.374335+00', 3856, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49744, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.440653+00', 3789, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49745, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.403239+00', 4617, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49746, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.374284+00', 4915, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49747, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.497456+00', 5034, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49748, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.459384+00', 5072, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49749, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.376986+00', 5309, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49750, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.380655+00', 5332, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49751, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.416042+00', 5328, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49752, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.383776+00', 5380, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49753, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.374095+00', 5408, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49754, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.374068+00', 5419, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49755, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.389033+00', 6702, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49756, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:39.508349+00', 6613, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49757, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.981715+00', 618, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49758, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.966074+00', 1573, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49759, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.99545+00', 1557, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49760, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.963161+00', 1614, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49761, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.986853+00', 2613, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49762, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.975278+00', 2758, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49763, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.966114+00', 2959, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49764, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.984768+00', 3072, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49765, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.984972+00', 3167, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49766, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:36.013447+00', 3154, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49767, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.971798+00', 3269, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49768, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.963307+00', 3306, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49769, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.970879+00', 3492, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49770, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.979416+00', 3507, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49771, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.963243+00', 5350, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49772, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:35.963443+00', 5363, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49773, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.99892+00', 1138, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49774, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.99892+00', 1150, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(49775, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.973152+00', 1507, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49776, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.749854+00', 3532, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49777, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.682084+00', 3649, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49778, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.682084+00', 3657, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(49779, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.725355+00', 6607, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49780, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.725355+00', 6644, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(49781, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.588793+00', 6825, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49782, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.803758+00', 6594, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49783, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.967448+00', 6429, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49784, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.344257+00', 7506, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49785, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.827897+00', 7058, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(49786, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.810953+00', 7180, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(49787, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.344257+00', 7576, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(49788, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.827897+00', 7008, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49789, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.810953+00', 7133, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49790, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.521415+00', 7651, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49791, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.697887+00', 7653, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49792, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.904908+00', 7503, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49793, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:34.1529+00', 7486, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49794, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.903006+00', 7830, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49795, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.903006+00', 7917, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(49796, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:34.1529+00', 7681, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(49797, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.910045+00', 7991, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49798, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.910045+00', 8063, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(49799, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.691046+00', 8339, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49800, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.658931+00', 8595, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49801, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.696237+00', 8567, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49802, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.766062+00', 8524, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49803, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.338744+00', 8936, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(49804, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.338744+00', 8915, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49805, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.949341+00', 8336, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49806, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:34.113+00', 8172, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49807, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.712319+00', 8617, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49808, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.672863+00', 8660, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(49809, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.852153+00', 8543, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49810, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.658931+00', 8634, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(49811, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.712319+00', 8656, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(49812, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.672863+00', 8627, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49813, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.949341+00', 8404, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(49814, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.722024+00', 8884, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49815, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.912823+00', 11393, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49816, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.433819+00', 11913, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(49817, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:34.149069+00', 11314, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49818, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.433819+00', 11900, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49819, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:33.782148+00', 11693, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49820, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:34.149069+00', 11326, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(49821, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.80461+00', 3326, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49822, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.80461+00', 3450, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(49823, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:23.957749+00', 2173, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49824, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.436768+00', 5322, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(49825, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.436768+00', 5295, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49826, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.432128+00', 5359, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49827, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.435476+00', 5360, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49828, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.435476+00', 5401, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(49829, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:23.944115+00', 3890, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49830, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.838061+00', 5014, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(49831, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.436708+00', 5398, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49832, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.838061+00', 4955, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49833, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.79988+00', 8744, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49834, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.79988+00', 8842, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(49835, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.777808+00', 8864, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49836, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.874454+00', 9702, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49837, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:24.126087+00', 8536, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(49838, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:24.126087+00', 8448, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49839, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.874454+00', 9766, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(49840, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:24.14063+00', 8437, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49841, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.439326+00', 10663, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(49842, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.439326+00', 10621, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49843, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.839519+00', 10092, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49844, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:23.99993+00', 9374, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49845, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.158528+00', 10979, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49846, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.839519+00', 10103, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(49847, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:23.973777+00', 9340, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49848, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.440659+00', 10975, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49849, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.748447+00', 10641, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(49850, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.748447+00', 10630, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49851, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.426952+00', 10989, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49852, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.431508+00', 10888, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49853, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.426952+00', 11021, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(49854, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.779354+00', 1662, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49855, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.158508+00', 11273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49856, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.430443+00', 11018, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49857, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.716987+00', 10833, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49858, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.430443+00', 11029, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(49859, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:23.937002+00', 9234, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49860, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.440659+00', 10990, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(49861, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:30.842611+00', 2796, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49862, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:23.971+00', 9480, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49863, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.788574+00', 1849, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49864, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.43367+00', 11190, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49865, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.716987+00', 10914, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(49866, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.863751+00', 2274, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49867, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.922399+00', 2261, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49868, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:30.841697+00', 3301, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49869, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.534001+00', 2704, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49870, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:30.8378+00', 3545, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49871, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.609841+00', 2783, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49872, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.696263+00', 2441, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49873, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:32.053576+00', 2462, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49874, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.772876+00', 2742, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49875, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:30.675613+00', 3463, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49876, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.636322+00', 2933, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49877, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.748446+00', 14065, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49878, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.748446+00', 14079, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(49879, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.643218+00', 5188, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49880, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:23.958782+00', 12912, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49881, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.847366+00', 14032, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49882, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:22.847366+00', 14039, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(49883, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.803267+00', 5130, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49884, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:24.131885+00', 12835, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49885, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.905093+00', 2710, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49886, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.836779+00', 4341, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49887, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.763649+00', 4573, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49888, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.799265+00', 4536, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49889, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.820944+00', 6940, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49890, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.923926+00', 8261, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49891, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.531951+00', 1705, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49892, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.584825+00', 1720, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49893, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.923484+00', 9776, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49894, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.76643+00', 10316, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49895, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.801231+00', 10339, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49896, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.804789+00', 10378, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49897, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.766305+00', 10444, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49898, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.883075+00', 10458, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49899, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:31.309246+00', 5332, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49900, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.821534+00', 10956, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49901, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.567298+00', 4254, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49902, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:31.299555+00', 5519, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49903, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.855967+00', 11049, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49904, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:31.256828+00', 5562, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49905, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.823941+00', 4129, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49906, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.700779+00', 4213, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49907, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:31.234062+00', 5716, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49908, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.660884+00', 4363, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49909, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:31.187475+00', 5875, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49910, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.448848+00', 4695, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49911, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:31.248859+00', 6013, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49912, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.817433+00', 4693, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49913, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.616918+00', 7103, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49914, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.75041+00', 7210, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49915, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.886388+00', 14078, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49916, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:25.764048+00', 14264, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49917, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.790685+00', 2399, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49918, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.77141+00', 2807, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49919, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.769034+00', 2883, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49920, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.781377+00', 2871, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49921, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.754306+00', 2997, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49922, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.75462+00', 3360, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49923, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.763145+00', 3350, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49924, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.783528+00', 3408, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49925, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.757127+00', 3588, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49926, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.755099+00', 3509, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49927, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.759439+00', 3464, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49928, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.779443+00', 3607, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49929, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.777122+00', 3604, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49930, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.761044+00', 3652, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49931, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.766573+00', 4995, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49932, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:23.790885+00', 4980, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49933, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.037332+00', 651, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49934, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.236948+00', 639, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49935, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.686719+00', 391, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49936, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.706088+00', 460, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49937, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.368604+00', 1159, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49938, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.370184+00', 1181, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49939, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.438059+00', 1210, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49940, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.27771+00', 1518, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49941, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.313206+00', 1446, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49942, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.732701+00', 1156, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49943, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.705227+00', 1268, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49944, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.692397+00', 1346, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49945, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.338176+00', 1617, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49946, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.716773+00', 1308, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49947, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.673393+00', 1587, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49948, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.673325+00', 1681, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49949, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.235873+00', 1947, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49950, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.291584+00', 3278, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49951, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.23792+00', 3346, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49952, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.240331+00', 3343, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49953, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.233875+00', 4702, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49954, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.224238+00', 5103, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49955, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.321271+00', 5042, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49956, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.313509+00', 5093, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49957, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.224946+00', 5398, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49958, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.224231+00', 5518, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49959, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.224232+00', 5522, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49960, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.243988+00', 5506, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49961, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.261091+00', 5609, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49962, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.226958+00', 5705, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49963, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.224225+00', 8172, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49964, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:23.318846+00', 8415, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49965, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.211491+00', 753, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49966, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.3024+00', 1042, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49967, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.224756+00', 1245, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49968, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.997162+00', 606, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49969, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.319531+00', 1285, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49970, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.747834+00', 1006, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49971, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.342599+00', 1518, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49972, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.777657+00', 1089, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49973, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.332284+00', 1682, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49974, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.343031+00', 1675, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49975, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.851959+00', 1235, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49976, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.247042+00', 1891, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49977, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.321368+00', 1893, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49978, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.00935+00', 1300, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49979, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.009885+00', 1474, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49980, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.842589+00', 1818, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49981, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.967443+00', 1700, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(49982, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.941509+00', 2294, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49983, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.932214+00', 2322, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(49984, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.948002+00', 2306, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(49985, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.932216+00', 2933, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(49986, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.941418+00', 3087, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(49987, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.932198+00', 3302, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(49988, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.960578+00', 3303, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(49989, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.932328+00', 3345, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(49990, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.944229+00', 3337, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(49991, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.946877+00', 3344, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(49992, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.939015+00', 3375, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(49993, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.934689+00', 3408, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(49994, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.94307+00', 3478, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(49995, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.932199+00', 5063, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(49996, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:23.950293+00', 5063, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(49997, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.024634+00', 533, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(49998, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.367833+00', 1177, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(49999, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.041704+00', 2391, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50000, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.498636+00', 2450, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50001, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.33713+00', 2614, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50002, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.022798+00', 2992, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50003, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.478938+00', 2677, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50004, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:31.980646+00', 3352, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50005, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.482199+00', 2913, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50006, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.493643+00', 2921, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50007, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.479473+00', 3012, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50008, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.514268+00', 2981, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50009, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.340754+00', 3230, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50010, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.369644+00', 3241, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50011, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.496285+00', 3679, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50012, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.371049+00', 3853, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50013, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.430611+00', 1787, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50014, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411396+00', 2556, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50015, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.444075+00', 2526, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50016, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.461423+00', 2521, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50017, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.473765+00', 2533, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50018, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.461423+00', 2583, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50019, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411396+00', 2633, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50020, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.444075+00', 2600, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50021, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.473765+00', 2571, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50022, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411496+00', 2930, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50023, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411496+00', 2950, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50024, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.479425+00', 3177, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50025, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411396+00', 3238, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50026, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.479425+00', 3249, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50027, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.442042+00', 3440, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50028, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411396+00', 3316, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50029, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.41149+00', 3495, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50030, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.427389+00', 3450, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50031, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.432823+00', 3450, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50032, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.41149+00', 3530, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50033, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.427389+00', 3511, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50034, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.421989+00', 3470, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50035, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411511+00', 3500, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50036, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.421989+00', 3555, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50037, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.442042+00', 3538, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50038, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411511+00', 3553, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50039, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.432823+00', 3575, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50040, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.438862+00', 5406, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50041, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.438862+00', 5386, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50042, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411413+00', 5421, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50043, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:23.411413+00', 5414, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50044, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.309626+00', 1180, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50045, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.513954+00', 1975, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50046, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.513954+00', 2054, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(50047, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338649+00', 3787, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50048, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.367052+00', 3756, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50049, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338778+00', 3786, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50050, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.309326+00', 3355, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50051, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338778+00', 4416, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50052, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.305838+00', 3582, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50053, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.367052+00', 4388, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50054, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.305857+00', 3581, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50055, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338649+00', 4417, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50056, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.256218+00', 5724, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50057, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.124734+00', 6156, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50058, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.124734+00', 6176, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50059, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.235003+00', 6257, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50060, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.235003+00', 6222, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50061, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.31683+00', 6248, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50062, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.257983+00', 6603, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50063, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.313533+00', 6569, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50064, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.305858+00', 6801, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50065, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.248316+00', 6955, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50066, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.320672+00', 6882, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50067, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338627+00', 7885, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50068, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338714+00', 7863, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50069, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.508446+00', 7712, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50070, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.217818+00', 6988, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50071, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338714+00', 7902, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50072, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.197045+00', 7073, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50073, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338855+00', 7896, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50074, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.314944+00', 6990, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50075, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.217818+00', 7071, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50076, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.212632+00', 7068, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50077, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.316691+00', 6994, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50078, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338627+00', 7983, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50079, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338855+00', 7955, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50080, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.151809+00', 7182, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50081, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.508446+00', 7810, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50082, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.305858+00', 7006, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50083, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.151809+00', 7211, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50084, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338673+00', 8012, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50085, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.338673+00', 7990, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50086, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.358982+00', 10095, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50087, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.305928+00', 9148, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50088, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.305928+00', 9171, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50089, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:50.358982+00', 10126, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50090, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.323272+00', 9632, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50091, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:51.20872+00', 9780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50092, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.519311+00', 1107, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50093, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.93781+00', 2809, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(50094, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.93781+00', 2684, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50095, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.077259+00', 3336, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50096, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.691124+00', 4711, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50097, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.921108+00', 3529, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50098, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.129083+00', 3320, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50099, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.688539+00', 4718, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50100, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.688539+00', 4752, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50101, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.137858+00', 3339, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50102, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.691124+00', 4775, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50103, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.077259+00', 3401, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50104, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.016089+00', 6336, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50105, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.016089+00', 6399, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50106, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.139348+00', 6544, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50107, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.104864+00', 6635, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50108, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.104864+00', 6643, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50109, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.271882+00', 5506, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50110, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.46432+00', 5724, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50111, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.273841+00', 5916, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50112, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.6887+00', 8600, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50113, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.6887+00', 8554, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50114, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.053042+00', 7520, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50115, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.053042+00', 7560, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50116, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.096242+00', 7720, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50117, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.096242+00', 7776, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50118, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.688481+00', 9276, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50119, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.959832+00', 8066, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50120, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.688481+00', 9339, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50121, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.480056+00', 6609, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50122, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.085863+00', 8086, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50123, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.691103+00', 9566, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50124, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.253128+00', 9008, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50125, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.919237+00', 8363, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50126, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.1472+00', 8171, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50127, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.253128+00', 9089, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50128, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.1472+00', 8248, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50129, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.069127+00', 8320, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50130, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.120097+00', 8405, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50131, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:54.691103+00', 9834, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50132, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.120097+00', 8361, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50133, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.472467+00', 7489, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50134, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.998445+00', 11497, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50135, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.146287+00', 10370, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50136, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.109632+00', 11412, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50137, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:56.109632+00', 11455, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50138, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:55.998445+00', 11567, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50139, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:57.447507+00', 10156, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50140, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.040119+00', 778, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50141, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.029903+00', 1101, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50142, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.117176+00', 2021, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50143, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.066553+00', 2088, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50144, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.054274+00', 2717, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50145, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.258597+00', 3549, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50146, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.081581+00', 3794, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50147, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.930311+00', 3007, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50148, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.070335+00', 3864, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50149, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.066209+00', 3920, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50150, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.212923+00', 2801, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50151, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.017024+00', 3034, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50152, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.121883+00', 2949, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50153, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:06.958362+00', 3227, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50154, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.075982+00', 4151, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50155, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.079147+00', 4178, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50156, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.478421+00', 2070, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50157, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.478421+00', 2313, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(50158, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.844894+00', 1706, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50159, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.92084+00', 4186, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50160, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.82348+00', 3294, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50161, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.87012+00', 3268, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50162, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.92084+00', 4215, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50163, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920843+00', 4202, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50164, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.526525+00', 3618, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50165, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.837435+00', 3358, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50166, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920843+00', 4253, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50167, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.526525+00', 3647, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50168, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.76574+00', 7023, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50169, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.76574+00', 7053, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50170, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.880386+00', 7116, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50171, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:34.015588+00', 7638, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50172, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.919358+00', 7764, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50173, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.89785+00', 7872, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50174, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.707177+00', 8104, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50175, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.86098+00', 7956, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50176, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.707177+00', 8124, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50177, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.487088+00', 8358, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50178, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920853+00', 8968, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50179, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.487088+00', 8405, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50180, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.492877+00', 8399, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50181, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920852+00', 8973, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50182, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920853+00', 8974, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50183, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.492877+00', 8469, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50184, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920852+00', 8999, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50185, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920838+00', 9075, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50186, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.77645+00', 8220, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50187, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920838+00', 9084, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50188, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.984561+00', 8099, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50189, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.511758+00', 8708, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50190, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.511758+00', 8801, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50191, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920838+00', 9397, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50192, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:32.920838+00', 9446, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50193, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.806048+00', 8646, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50194, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.466464+00', 8886, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50195, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:34.010287+00', 8450, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50196, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.811914+00', 8683, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50197, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.466464+00', 9032, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50198, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.930588+00', 10258, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50199, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.707746+00', 10574, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50200, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.707746+00', 10577, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50201, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.461531+00', 11135, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50202, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:34.00687+00', 10670, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50203, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:33.461531+00', 11214, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50204, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.12862+00', 405, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50205, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.121892+00', 438, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50206, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.096273+00', 732, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50207, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.127924+00', 707, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50208, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.118221+00', 750, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50209, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.124858+00', 795, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50210, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.370017+00', 480, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50211, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.384798+00', 542, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50212, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.320968+00', 832, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50213, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.476824+00', 706, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50214, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.448925+00', 957, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50215, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.512123+00', 945, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50216, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.38261+00', 1139, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50217, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.441638+00', 1177, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50218, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.452719+00', 1278, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50219, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.450968+00', 1421, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50220, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:18.223866+00', 1009, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50221, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:16.163364+00', 3623, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50222, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:16.170658+00', 3616, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50223, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:17.887393+00', 1924, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50224, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:16.135422+00', 5534, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50225, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:15.949239+00', 5741, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50226, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:18.088118+00', 3616, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50227, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:16.070595+00', 5689, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50228, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:15.949243+00', 5836, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50229, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:18.152265+00', 3638, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50230, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:18.254325+00', 3601, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50231, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:18.111571+00', 3838, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50232, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:17.994418+00', 4002, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50233, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:18.256577+00', 3815, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50234, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:17.974568+00', 5196, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50235, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:18.253413+00', 5008, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50236, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.949298+00', 4260, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50237, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.37461+00', 1836, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50238, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.926186+00', 4284, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50239, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.005581+00', 2204, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50240, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.49516+00', 1715, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50241, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.322488+00', 2887, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50242, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.238079+00', 3975, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50243, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.238548+00', 3975, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50244, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.005581+00', 2263, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50245, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.322488+00', 2946, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50246, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.949298+00', 4319, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50247, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.926186+00', 4343, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50248, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.418558+00', 4357, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50249, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.418558+00', 4382, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50250, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.927409+00', 6360, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50251, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.927409+00', 6379, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50252, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.258098+00', 6345, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50253, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.93682+00', 6695, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50254, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.93682+00', 6702, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50255, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.228772+00', 6415, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50256, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.926195+00', 6781, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50257, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.926195+00', 6792, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50258, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.856049+00', 4913, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50259, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.856049+00', 4923, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50260, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.000349+00', 6785, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50261, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.655813+00', 4147, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50262, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.556241+00', 5707, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50263, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.560227+00', 5692, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50264, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.560227+00', 5948, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50265, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.882413+00', 5690, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50266, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.691421+00', 4664, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50267, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.50629+00', 4999, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50268, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.556241+00', 5861, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50269, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.882413+00', 5891, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50270, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.672014+00', 5208, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50271, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.926184+00', 7979, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50272, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.265497+00', 7179, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50273, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.025755+00', 5968, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50274, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.025755+00', 5983, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50275, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.617908+00', 4882, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50276, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.361297+00', 5501, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50277, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:23.926184+00', 7912, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50278, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.32784+00', 8732, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50279, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:24.32784+00', 8810, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50280, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.070475+00', 8080, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50281, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:25.070475+00', 8090, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50282, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.222071+00', 7154, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50283, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:26.62535+00', 6778, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50284, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.023353+00', 897, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50285, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.062198+00', 860, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50286, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.04093+00', 1632, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50287, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.451524+00', 350, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50288, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.055528+00', 1716, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50289, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.039853+00', 1948, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50290, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.023353+00', 2010, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50291, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.445645+00', 762, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50292, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.6022+00', 753, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50293, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.600819+00', 886, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50294, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.608765+00', 939, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50295, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.720927+00', 864, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50296, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.556447+00', 1085, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50297, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.537139+00', 1110, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50298, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.414566+00', 1540, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50299, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.424277+00', 1562, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50300, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.262054+00', 313, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50301, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.238538+00', 593, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50302, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.234308+00', 931, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50303, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.182533+00', 1078, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50304, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.26412+00', 1071, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50305, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.325403+00', 1158, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50306, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.262659+00', 1244, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50307, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.263699+00', 1261, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50308, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.261451+00', 1450, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50309, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.261109+00', 1492, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50310, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:23.396267+00', 1217, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50311, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:23.422156+00', 1277, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50312, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:23.396212+00', 1333, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50313, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:23.412465+00', 1393, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50314, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:23.396265+00', 1433, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50315, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:23.402651+00', 1504, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50316, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.657813+00', 570, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50317, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.657233+00', 2141, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50318, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.657233+00', 2231, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50319, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.468788+00', 440, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50320, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.365304+00', 964, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50321, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.365994+00', 1048, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50322, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.365994+00', 1093, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50323, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.63201+00', 885, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 3, NULL), +(50324, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.893106+00', 843, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50325, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.815124+00', 1092, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50326, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.652037+00', 4147, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50327, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.652037+00', 4171, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50328, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.696481+00', 4206, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50329, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.696481+00', 4208, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50330, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.625785+00', 5139, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50331, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.625785+00', 5175, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50332, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.369102+00', 3477, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50333, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.667457+00', 5207, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50334, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.667457+00', 5213, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50335, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.635766+00', 5860, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50336, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.635766+00', 5874, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50337, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.076348+00', 4555, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50338, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.076348+00', 4527, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50339, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.142548+00', 4513, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50340, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.36521+00', 4349, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50341, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.909838+00', 3787, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50342, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.643195+00', 6114, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50343, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.643195+00', 6122, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50344, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.365853+00', 4435, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50345, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.365853+00', 4443, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50346, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.979566+00', 3876, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50347, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.428929+00', 4490, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50348, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.840123+00', 4097, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50349, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.465535+00', 4532, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50350, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.455114+00', 4551, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50351, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.465535+00', 4546, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50352, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.382533+00', 4632, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50353, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.382533+00', 4644, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50354, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.582594+00', 4447, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50355, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.830839+00', 4263, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50356, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.18946+00', 6215, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50357, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.158035+00', 6283, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50358, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.619555+00', 7829, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50359, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.619555+00', 7841, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50360, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.652333+00', 7856, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50361, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:26.652333+00', 7866, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50362, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:45.06305+00', 1262, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50363, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:45.065837+00', 1260, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50364, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.317944+00', 371, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50365, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.309907+00', 455, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50366, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:45.048532+00', 2291, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50367, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:45.059563+00', 2441, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50368, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:45.049208+00', 2502, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50369, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:45.056385+00', 2521, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50370, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.304857+00', 1530, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50371, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.332061+00', 1519, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50372, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.310071+00', 1553, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50373, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.337549+00', 1560, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50374, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.389572+00', 1546, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50375, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.351584+00', 1600, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50376, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.325698+00', 2384, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50377, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.352851+00', 2369, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50378, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.409579+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50379, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.352265+00', 448, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50380, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.417195+00', 520, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50381, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.434673+00', 550, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50382, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.861621+00', 141, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50383, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.446215+00', 667, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50384, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.418511+00', 738, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50385, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.406494+00', 760, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50386, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.440032+00', 732, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50387, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.218266+00', 487, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50388, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.297905+00', 632, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50389, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.362234+00', 1566, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50390, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.362234+00', 1732, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(50391, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.321083+00', 1884, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(50392, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.290661+00', 972, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50393, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.816699+00', 1027, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50394, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.208704+00', 1069, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50395, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.208704+00', 1064, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50396, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.149999+00', 1495, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50397, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.149999+00', 1549, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50398, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.859975+00', 1842, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50399, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.125456+00', 1654, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50400, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.125456+00', 1650, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50401, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.873863+00', 1968, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50402, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.273874+00', 1767, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50403, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.273874+00', 1783, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50404, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.889255+00', 2326, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50405, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.132095+00', 1083, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50406, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.746151+00', 2585, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50407, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.977864+00', 2372, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50408, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.977864+00', 2355, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50409, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.150118+00', 2290, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50410, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.150118+00', 2295, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50411, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.86351+00', 2612, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50412, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.237302+00', 1309, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50413, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.958921+00', 1705, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50414, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.753911+00', 1212, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50415, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.168955+00', 1800, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50416, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.708198+00', 1341, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50417, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.259233+00', 538, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50418, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.510537+00', 455, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50419, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.599306+00', 1070, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50420, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.540072+00', 1228, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50421, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.53929+00', 1240, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50422, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.532163+00', 1310, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50423, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.565373+00', 1318, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50424, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.295904+00', 1633, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50425, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.540789+00', 2462, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50426, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.527141+00', 2496, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50427, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.400032+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50428, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.464715+00', 380, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50429, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.493154+00', 526, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50430, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.493822+00', 563, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50431, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.617924+00', 473, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50432, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.400032+00', 703, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50433, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.262362+00', 1746, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50434, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.23112+00', 3031, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50435, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.976071+00', 2325, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50436, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.773073+00', 2528, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50437, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.057592+00', 4077, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50438, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.056842+00', 4502, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50439, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.162546+00', 4393, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50440, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.207553+00', 4529, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50441, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.955393+00', 3785, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50442, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.818323+00', 3968, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50443, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.729919+00', 4163, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50444, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.977537+00', 3951, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50445, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.226328+00', 4702, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50446, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.238067+00', 4758, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50447, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.19662+00', 6866, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50448, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:39.18021+00', 6983, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50449, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207353+00', 4360, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50450, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207353+00', 4485, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50451, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207382+00', 4485, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50452, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.37022+00', 1227, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50453, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.882383+00', 873, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50454, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.892058+00', 795, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50455, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207382+00', 4358, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50456, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.877381+00', 2018, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50457, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.877381+00', 1945, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50458, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.891619+00', 1904, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50459, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.887116+00', 2110, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50460, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.887116+00', 2155, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(50461, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.218247+00', 7760, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50462, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207736+00', 7755, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50463, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.23219+00', 7750, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50464, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207387+00', 7756, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50465, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207736+00', 7805, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50466, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.207387+00', 7827, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50467, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.218247+00', 7847, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50468, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:41.23219+00', 7822, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50469, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.346099+00', 5907, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50470, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.891839+00', 5692, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50471, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.891839+00', 5731, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50472, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.912738+00', 5915, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50473, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.205706+00', 6655, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50474, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.15398+00', 6754, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50475, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.205706+00', 6723, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50476, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.15398+00', 6863, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50477, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.301388+00', 6740, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50478, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.902736+00', 6146, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50479, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.301388+00', 6793, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50480, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.896617+00', 6082, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50481, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.912287+00', 6049, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50482, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.902736+00', 6264, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50483, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.257658+00', 7037, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50484, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.323336+00', 6965, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50485, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.28536+00', 6884, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50486, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.323336+00', 6955, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50487, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.893583+00', 6449, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50488, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.245133+00', 7054, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50489, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.882338+00', 6524, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50490, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.416603+00', 7087, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50491, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.887588+00', 8790, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50492, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.273651+00', 9481, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50493, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.273651+00', 9484, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50494, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.261458+00', 9665, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50495, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.261458+00', 9689, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50496, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:44.89647+00', 9059, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50497, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.83327+00', 515, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50498, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.929882+00', 1711, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50499, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.934286+00', 1707, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50500, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.814076+00', 817, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50501, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:34.570254+00', 702, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50502, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.851391+00', 3076, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50503, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.851391+00', 3128, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50504, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.958725+00', 3035, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50505, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.958725+00', 3042, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50506, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.833558+00', 3928, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50507, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.904719+00', 4851, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50508, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.768683+00', 3992, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50509, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.91+00', 4862, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50510, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.476757+00', 1280, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50511, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.895373+00', 4854, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50512, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.907872+00', 4853, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50513, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:35.14602+00', 2721, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50514, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:35.307134+00', 2563, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50515, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.91+00', 5027, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50516, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.861036+00', 4080, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50517, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.768683+00', 4090, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50518, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.904719+00', 4956, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50519, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:35.310903+00', 2526, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50520, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.895373+00', 4928, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50521, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.831038+00', 4038, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50522, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:32.907872+00', 5089, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50523, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.831038+00', 4171, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50524, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.833558+00', 4200, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50525, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.420929+00', 2054, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50526, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.861036+00', 4521, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50527, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:35.74493+00', 2305, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50528, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.474037+00', 2033, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50529, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.472836+00', 2188, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50530, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:35.64833+00', 3205, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50531, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.421192+00', 2506, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50532, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.533215+00', 2555, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50533, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.46262+00', 2536, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50534, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.442892+00', 3099, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50535, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.785435+00', 6674, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50536, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.785435+00', 6687, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50537, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.764988+00', 6786, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50538, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.51166+00', 4046, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50539, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:33.764988+00', 6799, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50540, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.512355+00', 4178, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50541, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.396803+00', 613, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(50542, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.449217+00', 952, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(50543, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.446464+00', 1083, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50544, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.446464+00', 1087, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50545, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.617154+00', 991, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(50546, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.638016+00', 1005, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50547, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.638016+00', 1010, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50548, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.658515+00', 1337, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50549, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.658515+00', 1355, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50550, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.437443+00', 1022, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50551, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.437443+00', 1030, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50552, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.384786+00', 1113, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50553, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.405141+00', 1088, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50554, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.405141+00', 1100, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50555, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.45954+00', 1227, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50556, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.472794+00', 1331, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50557, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.472794+00', 1358, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50558, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.454959+00', 1398, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50559, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.454959+00', 1472, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50560, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.458395+00', 1790, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50561, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.988804+00', 1254, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50562, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.471306+00', 2130, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50563, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.471306+00', 2180, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50564, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.458395+00', 2190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50565, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.247178+00', 2406, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50566, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.054221+00', 2583, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50567, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.440799+00', 2278, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50568, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.495668+00', 2161, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50569, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.495668+00', 2203, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50570, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.351802+00', 2372, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50571, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.97116+00', 1814, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50572, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.97116+00', 1820, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50573, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.988804+00', 1663, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(50574, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.356094+00', 2279, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50575, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.440799+00', 2320, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50576, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.685931+00', 1586, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50577, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.634237+00', 1131, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50578, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.998547+00', 1776, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50579, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.155861+00', 1775, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50580, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.762835+00', 2465, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50581, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.180229+00', 2380, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50582, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.172756+00', 2427, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50583, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.752772+00', 2927, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50584, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.188785+00', 2586, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50585, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.91385+00', 2861, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50586, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.048085+00', 1013, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50587, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:14.576757+00', 970, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50588, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.657827+00', 2974, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50589, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:14.734528+00', 1940, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50590, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.843648+00', 2832, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50591, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.849257+00', 3806, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50592, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.843648+00', 2903, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50593, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.657827+00', 3089, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50594, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.849257+00', 3916, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50595, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.216619+00', 1639, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50596, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:14.984823+00', 1957, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50597, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.862737+00', 6700, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50598, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.862737+00', 6740, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50599, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.072254+00', 5766, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50600, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.448926+00', 7479, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50601, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.448926+00', 7486, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50602, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.471459+00', 7877, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50603, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.471459+00', 7892, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50604, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:14.930038+00', 6460, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50605, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.841289+00', 8791, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50606, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.841289+00', 8755, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50607, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.369346+00', 8768, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50608, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.861672+00', 8276, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50609, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.369346+00', 8862, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50610, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.861672+00', 8397, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50611, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.841991+00', 8417, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50612, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.870603+00', 8398, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50613, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.316824+00', 7394, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50614, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.241255+00', 7200, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50615, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.841991+00', 8637, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50616, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.402854+00', 7277, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50617, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.93671+00', 8809, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50618, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.083547+00', 7667, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50619, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.93671+00', 8857, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50620, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.004501+00', 7791, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50621, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.061719+00', 7706, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50622, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.870603+00', 8702, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50623, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.82181+00', 10024, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50624, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.231098+00', 7557, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50625, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.82181+00', 9946, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50626, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.391877+00', 7436, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50627, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.914339+00', 12583, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50628, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:12.914339+00', 12594, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50629, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.676957+00', 11837, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50630, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:13.676957+00', 11877, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50631, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.017025+00', 10533, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50632, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.311727+00', 10264, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50633, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.487246+00', 1021, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50634, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.486604+00', 1028, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50635, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.101446+00', 611, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50636, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.484485+00', 2284, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50637, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.488978+00', 2325, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50638, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.48546+00', 2356, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50639, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.450069+00', 1402, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50640, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.48546+00', 2346, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50641, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.484485+00', 2331, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50642, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.488978+00', 2290, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50643, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.450069+00', 1427, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(50644, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.483756+00', 2405, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50645, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:23.483756+00', 2456, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50646, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.133291+00', 1819, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50647, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.133291+00', 1829, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50648, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.346147+00', 1871, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50649, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.346147+00', 1869, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50650, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.300636+00', 1994, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50651, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.104044+00', 2116, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50652, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.104044+00', 2111, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50653, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.34869+00', 2118, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50654, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.41108+00', 2056, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50655, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.34869+00', 2130, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50656, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.41108+00', 2071, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50657, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.772063+00', 850, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50658, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.300636+00', 2333, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50659, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.513151+00', 1209, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50660, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.936793+00', 1260, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50661, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.767697+00', 1422, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50662, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.716613+00', 1488, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50663, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.82897+00', 1434, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50664, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.512729+00', 1779, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50665, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.114289+00', 3211, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50666, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.828996+00', 1509, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50667, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.114289+00', 3317, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50668, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.022518+00', 1432, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50669, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.261041+00', 3299, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50670, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.261041+00', 3307, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50671, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.051894+00', 1789, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50672, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.231396+00', 1799, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50673, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.02251+00', 2011, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50674, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.026475+00', 2026, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50675, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.040678+00', 2021, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50676, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.51163+00', 2615, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50677, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.990258+00', 2551, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50678, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.263016+00', 459, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50679, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.988309+00', 1047, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50680, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.988309+00', 1095, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50681, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.141055+00', 1960, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50682, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.141055+00', 1971, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50683, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.162627+00', 1955, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(50684, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.981192+00', 1182, 0, FALSE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 27, 3, NULL, 3, NULL), +(50685, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.176571+00', 2055, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(50686, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.170968+00', 2349, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50687, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.170968+00', 2380, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50688, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.162479+00', 2404, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50689, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.162479+00', 2424, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50690, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.19868+00', 2440, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50691, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:57.667018+00', 974, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50692, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.981068+00', 1663, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50693, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.19868+00', 2450, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50694, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.196045+00', 2459, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50695, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.981068+00', 1682, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50696, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:57.286775+00', 1398, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50697, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:57.286775+00', 1424, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50698, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.196045+00', 2515, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50699, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:57.159516+00', 1664, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50700, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.988319+00', 1829, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50701, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:57.159516+00', 1658, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50702, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.988319+00', 1865, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50703, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:57.663465+00', 1229, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50704, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.296776+00', 1114, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50705, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:59.01568+00', 1368, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50706, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.425353+00', 1962, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50707, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.319755+00', 2155, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50708, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.188879+00', 2489, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50709, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.208992+00', 2616, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50710, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.162278+00', 5232, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50711, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.162278+00', 5277, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50712, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.405238+00', 3052, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50713, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.377356+00', 3081, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50714, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.351403+00', 3222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50715, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.345198+00', 3292, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50716, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.476628+00', 3168, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50717, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.766034+00', 2992, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50718, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.249256+00', 5516, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50719, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.249256+00', 5523, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50720, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.233026+00', 3678, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50721, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.517976+00', 3868, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50722, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.062111+00', 479, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50723, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.157813+00', 1264, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50724, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.061877+00', 1357, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50725, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:18.921124+00', 1542, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50726, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.026118+00', 1575, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50727, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.16275+00', 1572, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50728, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.137954+00', 1730, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50729, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.161668+00', 1734, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50730, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:18.947335+00', 2052, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50731, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.063144+00', 1959, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50732, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.041854+00', 2022, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50733, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.101695+00', 2004, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50734, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:18.906534+00', 2199, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50735, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.032777+00', 2093, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50736, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:18.897007+00', 3640, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50737, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.006256+00', 3563, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50738, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.732755+00', 446, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50739, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.817884+00', 401, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50740, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.755318+00', 519, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50741, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.703089+00', 1165, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50742, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.789737+00', 1107, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50743, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.947676+00', 954, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50744, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.8484+00', 1098, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50745, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.938313+00', 1144, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50746, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.921298+00', 1169, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50747, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:47.732268+00', 1667, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50748, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.513875+00', 248, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50749, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.372824+00', 451, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50750, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.423941+00', 412, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50751, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.428163+00', 432, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50752, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.454845+00', 480, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50753, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.508056+00', 464, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50754, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:37.852489+00', 294, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(50755, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:37.874987+00', 442, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(50756, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:37.812664+00', 568, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(50757, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:37.886562+00', 706, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50758, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:37.864898+00', 751, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(50759, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.362097+00', 735, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(50760, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.29508+00', 852, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50761, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.29508+00', 992, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(50762, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.510888+00', 919, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50763, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.510888+00', 921, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(50764, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:37.917341+00', 1742, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50765, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:37.917341+00', 1783, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50766, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.086932+00', 654, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50767, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.649578+00', 1595, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50768, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.673775+00', 1812, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50769, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.516153+00', 2027, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50770, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.516153+00', 2028, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50771, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.510946+00', 2367, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50772, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.510946+00', 2371, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50773, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.887193+00', 2025, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50774, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.304408+00', 2645, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50775, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.304408+00', 2660, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50776, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.365888+00', 2622, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50777, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.365888+00', 2627, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50778, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.090002+00', 1937, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50779, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.661365+00', 2423, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50780, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.614021+00', 2515, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50781, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.096993+00', 2422, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50782, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.68931+00', 2833, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50783, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.815335+00', 2710, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50784, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.686144+00', 2850, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50785, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.938346+00', 2601, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50786, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.815335+00', 2769, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50787, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.680784+00', 2878, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50788, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.799229+00', 2717, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50789, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.938346+00', 2607, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50790, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.799229+00', 2754, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50791, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.075193+00', 2481, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50792, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.911843+00', 2761, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50793, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:38.655967+00', 3043, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50794, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.080716+00', 2751, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50795, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.084773+00', 2811, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50796, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.89443+00', 2688, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50797, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.977196+00', 1607, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50798, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.89443+00', 2856, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(50799, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.272852+00', 5654, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50800, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.396968+00', 4546, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50801, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.690227+00', 4246, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50802, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.272852+00', 5658, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(50803, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.83618+00', 7118, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50804, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.83618+00', 7131, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50805, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826639+00', 7142, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50806, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826639+00', 7150, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50807, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.532609+00', 4462, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50808, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.9738+00', 6582, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50809, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.766149+00', 7824, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50810, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.766149+00', 7921, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50811, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.980591+00', 7779, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50812, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.881513+00', 9006, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50813, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.881513+00', 9004, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50814, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.794402+00', 9134, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50815, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.774468+00', 9154, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50816, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.774468+00', 9170, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(50817, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.47271+00', 8459, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50818, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.794402+00', 9164, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50819, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.974133+00', 7956, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50820, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.833642+00', 11141, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(50821, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.833642+00', 11135, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50822, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.736774+00', 8268, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50823, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.985791+00', 8027, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50824, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.068524+00', 8971, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50825, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.532363+00', 8685, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50826, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.068524+00', 8976, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50827, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826639+00', 11408, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50828, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826651+00', 11246, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50829, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826655+00', 11413, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50830, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826651+00', 11411, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50831, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.418889+00', 8812, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50832, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.733926+00', 8492, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50833, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.983864+00', 8267, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50834, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.369573+00', 8935, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50835, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826639+00', 11422, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(50836, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:39.826655+00', 11456, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(50837, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.369573+00', 8968, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50838, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.893723+00', 11611, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50839, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.714896+00', 10780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50840, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.893723+00', 11597, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50841, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.730701+00', 11807, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50842, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:42.980458+00', 10555, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50843, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:41.730701+00', 11816, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50844, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.205803+00', 633, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50845, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.239227+00', 1647, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50846, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.138976+00', 1767, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50847, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.282335+00', 1617, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50848, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.267642+00', 2246, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50849, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.233357+00', 2315, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50850, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.168511+00', 2479, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50851, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.216992+00', 2486, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50852, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.214039+00', 2500, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50853, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.287397+00', 2466, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50854, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.211033+00', 2542, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50855, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.225687+00', 2571, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50856, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:18.823087+00', 3008, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50857, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.297281+00', 2541, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50858, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.282313+00', 2885, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50859, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.260661+00', 2951, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50860, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.47546+00', 323, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50861, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.349285+00', 582, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50862, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.404582+00', 530, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50863, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.434758+00', 527, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50864, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.560364+00', 874, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50865, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.506241+00', 1142, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50866, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.519586+00', 1162, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50867, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.537769+00', 1167, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50868, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.095424+00', 1621, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50869, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.084259+00', 1649, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50870, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.044472+00', 1701, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50871, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.080893+00', 1706, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50872, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.637067+00', 1178, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50873, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.446484+00', 1458, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50874, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.374697+00', 1989, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50875, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.580992+00', 1801, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50876, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.612403+00', 251, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50877, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.481878+00', 400, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50878, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.601409+00', 1086, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50879, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.602817+00', 1182, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50880, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.592867+00', 1208, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50881, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.585354+00', 1227, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50882, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.610733+00', 1250, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50883, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.478223+00', 1392, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50884, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.478222+00', 2196, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50885, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.560303+00', 2187, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50886, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.631047+00', 230, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50887, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.636064+00', 242, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50888, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.53223+00', 440, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50889, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.621036+00', 382, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50890, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.635098+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50891, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.603417+00', 420, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50892, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.912496+00', 1544, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50893, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.903372+00', 3025, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50894, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.904762+00', 3102, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50895, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.904343+00', 3502, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50896, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.901171+00', 3511, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50897, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.913575+00', 3549, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50898, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.901187+00', 3506, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50899, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.911646+00', 3729, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50900, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.901172+00', 5211, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50901, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:48.901172+00', 5259, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50902, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:50.359911+00', 3366, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50903, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:50.607741+00', 3118, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50904, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:50.385767+00', 4760, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50905, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:50.379166+00', 4870, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50906, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:50.364304+00', 5243, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50907, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:50.590844+00', 5019, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50908, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:58.627401+00', 715, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50909, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:58.785178+00', 803, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50910, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:58.787326+00', 837, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50911, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:58.801568+00', 863, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50912, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:58.727613+00', 1289, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50913, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:58.715292+00', 1726, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50914, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:59.936901+00', 1617, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50915, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:01.41209+00', 1574, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50916, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:01.339535+00', 1724, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50917, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:01.348791+00', 1836, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50918, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:01.408934+00', 1849, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50919, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:01.159633+00', 2179, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50920, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.487177+00', 427, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50921, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.754514+00', 395, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50922, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.574191+00', 549, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50923, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.762742+00', 476, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50924, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.38086+00', 907, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50925, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.692137+00', 1346, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50926, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.298991+00', 784, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50927, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.956774+00', 222, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50928, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.874767+00', 959, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50929, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.540399+00', 1622, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50930, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.933791+00', 2213, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(50931, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.060546+00', 2282, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50932, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.060546+00', 2310, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(50933, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.003131+00', 2855, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50934, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.003131+00', 2809, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50935, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.668035+00', 1646, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50936, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.68478+00', 1966, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50937, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.599455+00', 2844, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50938, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.495493+00', 3134, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50939, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.559004+00', 6666, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50940, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.559004+00', 6670, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(50941, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.578436+00', 4731, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50942, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.531345+00', 4900, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50943, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.966174+00', 6553, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50944, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.966174+00', 6555, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(50945, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.817123+00', 1047, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50946, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.817109+00', 1694, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50947, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.825014+00', 1782, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50948, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.82163+00', 2014, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(50949, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.818399+00', 2139, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50950, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.831442+00', 2154, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50951, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.819504+00', 2210, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50952, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.817109+00', 2357, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50953, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.82964+00', 3776, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50954, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:51.827219+00', 3777, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50955, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:45.676129+00', 1750, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50956, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:45.681635+00', 1745, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50957, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:45.643617+00', 2345, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50958, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:45.691545+00', 2297, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50959, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:45.638299+00', 2353, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50960, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:45.946192+00', 2063, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50961, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.688479+00', 408, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50962, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.630684+00', 1391, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50963, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.6641+00', 1532, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50964, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.730079+00', 1771, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50965, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.656915+00', 1891, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50966, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.694703+00', 1910, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50967, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.680145+00', 1942, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(50968, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.668739+00', 1981, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50969, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.67838+00', 2937, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(50970, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:03.627505+00', 3007, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(50971, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:46.379269+00', 5309, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(50972, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:46.684176+00', 5004, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50973, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:46.801324+00', 5493, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50974, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:46.717967+00', 5577, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50975, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:46.731094+00', 5608, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50976, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:46.58415+00', 5778, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(50977, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.377466+00', 933, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(50978, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.37666+00', 1277, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50979, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.377533+00', 1761, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(50980, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.377533+00', 1808, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(50981, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.376788+00', 1791, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(50982, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.376788+00', 1812, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(50983, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.377436+00', 1934, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 14, 2, NULL, 3, NULL), +(50984, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.37666+00', 2007, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(50985, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.185482+00', 1244, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(50986, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.399545+00', 1982, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(50987, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.377452+00', 2049, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(50988, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.185482+00', 1267, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(50989, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.377452+00', 2101, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(50990, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.048408+00', 1742, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(50991, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.048408+00', 1920, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(50992, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.395755+00', 2619, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(50993, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.395755+00', 2560, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(50994, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.946823+00', 1133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(50995, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.308607+00', 1983, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(50996, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.308607+00', 2083, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(50997, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.356105+00', 2127, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(50998, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.380456+00', 2115, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(50999, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.356105+00', 2210, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51000, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.698098+00', 1872, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51001, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.380456+00', 2215, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51002, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.716768+00', 1396, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51003, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.031976+00', 2322, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51004, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.748351+00', 1816, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51005, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.261208+00', 3345, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51006, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.261208+00', 3414, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51007, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.749299+00', 1952, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51008, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.991901+00', 2725, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51009, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.748767+00', 2041, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51010, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.163006+00', 2652, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51011, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.287859+00', 3025, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51012, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.748898+00', 2941, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51013, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.748354+00', 2909, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51014, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.716221+00', 3401, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51015, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.730538+00', 3495, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51016, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.377407+00', 6576, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 3, NULL), +(51017, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.376917+00', 6615, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51018, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:54.376917+00', 6676, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51019, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.022451+00', 5046, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51020, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.758085+00', 4479, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51021, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.526267+00', 2223, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51022, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.526267+00', 2461, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51023, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.358048+00', 1789, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51024, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.776203+00', 3812, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51025, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.038896+00', 3545, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51026, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.414077+00', 3272, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51027, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.038896+00', 3568, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51028, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.414077+00', 3187, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51029, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.08551+00', 2612, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51030, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.776203+00', 3841, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51031, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.032298+00', 2697, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51032, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.004793+00', 2696, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51033, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.083828+00', 5142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51034, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.663386+00', 5628, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51035, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.663386+00', 5680, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51036, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.114534+00', 6484, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51037, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.114534+00', 6495, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51038, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.793541+00', 7378, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51039, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.793541+00', 7381, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51040, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.458928+00', 5881, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51041, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.556096+00', 7020, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51042, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.45214+00', 6231, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51043, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.556096+00', 7142, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51044, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.661334+00', 7081, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51045, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.661334+00', 7115, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51046, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.259611+00', 6567, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51047, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.776569+00', 8130, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51048, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.776216+00', 8194, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51049, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.77655+00', 8128, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51050, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.665049+00', 7468, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51051, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.776569+00', 8370, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51052, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.66383+00', 7475, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51053, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.663411+00', 7467, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51054, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.663411+00', 7534, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51055, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.77655+00', 8249, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51056, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:11.776216+00', 8397, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51057, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.48918+00', 6707, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51058, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.513738+00', 6695, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51059, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.992718+00', 7270, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51060, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.66835+00', 7587, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51061, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.66383+00', 7623, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51062, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.666698+00', 7636, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51063, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.552622+00', 9800, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51064, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.552622+00', 9804, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51065, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.181888+00', 9255, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51066, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.534765+00', 9991, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51067, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:12.534765+00', 10002, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51068, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:13.142117+00', 9403, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51069, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:04.963062+00', 586, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51070, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:05.072077+00', 1905, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51071, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:04.963434+00', 2581, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51072, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:05.108614+00', 2571, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51073, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:05.072077+00', 2679, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51074, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:05.079218+00', 2669, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51075, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:05.093139+00', 2734, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51076, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:04.964749+00', 2972, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51077, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:04.963041+00', 4327, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51078, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:04.964587+00', 4386, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51079, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:47.498102+00', 1553, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51080, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:47.492854+00', 1559, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51081, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:47.497242+00', 2020, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51082, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:47.495192+00', 2052, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51083, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:47.493025+00', 2067, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51084, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:47.499175+00', 2077, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51085, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.371104+00', 527, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51086, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.39853+00', 1294, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51087, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.375841+00', 1550, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51088, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.380578+00', 1640, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51089, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.318096+00', 1734, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51090, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.319471+00', 1735, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51091, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.405936+00', 1688, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51092, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.3722+00', 1738, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51093, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.395874+00', 2487, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51094, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.332098+00', 2625, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51095, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.621342+00', 2323, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51096, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.621342+00', 2391, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51097, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.748037+00', 2252, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51098, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.848748+00', 4098, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51099, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.848748+00', 4114, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51100, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.520326+00', 4461, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51101, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.874278+00', 5074, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51102, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.874278+00', 5102, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51103, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.438798+00', 5589, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51104, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.370635+00', 5668, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51105, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.481052+00', 5603, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51106, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.466887+00', 5622, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51107, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.466887+00', 5692, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51108, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.370635+00', 5751, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51109, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.345854+00', 5898, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51110, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.528181+00', 6191, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51111, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.528181+00', 6204, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51112, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.810617+00', 6494, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51113, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.866057+00', 6276, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51114, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.771148+00', 6707, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51115, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.668142+00', 6857, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51116, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.448099+00', 6837, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51117, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.421292+00', 7110, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51118, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.771148+00', 6769, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51119, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.448099+00', 6853, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51120, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.345843+00', 7401, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51121, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.543867+00', 7190, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51122, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.489207+00', 7258, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51123, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.557302+00', 7190, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51124, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.489207+00', 7281, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51125, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.453636+00', 7284, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51126, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.543867+00', 7243, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51127, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.45772+00', 7313, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51128, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.564383+00', 7224, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51129, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.543953+00', 7249, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51130, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.615166+00', 7195, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51131, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.599882+00', 7215, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51132, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.564383+00', 7172, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51133, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.345843+00', 7407, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51134, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.543953+00', 7289, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51135, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.557302+00', 7230, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51136, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.510857+00', 7427, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51137, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.43446+00', 9743, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51138, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.623117+00', 9556, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51139, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.471447+00', 9745, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51140, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.43446+00', 9748, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51141, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.623117+00', 9601, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51142, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:24.576058+00', 9600, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51143, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:27.888135+00', 3722, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51144, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:27.888923+00', 3722, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51145, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:28.018092+00', 3619, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51146, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:27.886106+00', 3725, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51147, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:27.886102+00', 3725, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51148, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:27.886085+00', 3752, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51149, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.057581+00', 307, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51150, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:43.893875+00', 466, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51151, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.040474+00', 615, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51152, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:43.958656+00', 752, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51153, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.026542+00', 852, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51154, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:43.958482+00', 921, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51155, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.019579+00', 920, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51156, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:43.901296+00', 1064, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51157, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:43.965889+00', 1939, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51158, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:43.964526+00', 2084, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51159, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.4277+00', 1270, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51160, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.278485+00', 1461, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51161, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.278485+00', 1474, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51162, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.224205+00', 4314, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51163, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.097621+00', 4424, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51164, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.097621+00', 4449, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51165, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.412247+00', 5880, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51166, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.122848+00', 6176, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51167, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.484998+00', 5803, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51168, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.618513+00', 5669, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51169, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.122848+00', 6130, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51170, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.272697+00', 6285, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51171, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.618513+00', 5703, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51172, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.384207+00', 6154, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51173, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.272697+00', 6207, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51174, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.384207+00', 6240, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51175, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.381341+00', 6377, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51176, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.278303+00', 7460, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51177, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.619821+00', 7125, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51178, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.272676+00', 7511, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51179, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.278303+00', 7523, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51180, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.387712+00', 7384, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51181, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.619821+00', 7152, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51182, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.268024+00', 7668, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51183, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.418855+00', 7475, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51184, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.39354+00', 7564, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51185, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.272676+00', 7685, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51186, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.387712+00', 7447, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51187, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.619511+00', 7334, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51188, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.39354+00', 7505, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51189, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.655373+00', 7341, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51190, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.418808+00', 7542, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51191, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.461696+00', 7432, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51192, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.707796+00', 7289, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51193, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.511135+00', 7447, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51194, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.352206+00', 7779, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51195, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.328775+00', 7824, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51196, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.335048+00', 7671, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51197, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.352206+00', 7781, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51198, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.319543+00', 7819, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51199, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.619511+00', 7403, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51200, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.319543+00', 7812, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51201, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.376227+00', 10219, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51202, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.268001+00', 10378, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51203, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.268001+00', 10360, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51204, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.376227+00', 10245, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51205, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.318106+00', 10370, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51206, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:08.446764+00', 10430, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51207, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.216384+00', 3586, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51208, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.315843+00', 3599, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51209, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.315843+00', 3388, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51210, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.791586+00', 4839, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51211, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.791586+00', 4907, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51212, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.272668+00', 5460, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51213, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.333512+00', 6378, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51214, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.742728+00', 6202, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51215, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.256521+00', 6726, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51216, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.756788+00', 6263, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51217, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.7436+00', 6330, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51218, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.7436+00', 6361, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51219, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.756788+00', 6333, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51220, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.285495+00', 7042, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51221, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.285495+00', 7060, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51222, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.265184+00', 7578, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51223, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.265184+00', 7613, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51224, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.76412+00', 7138, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51225, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.322336+00', 7619, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51226, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.76412+00', 7164, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51227, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.322336+00', 7603, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51228, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.330708+00', 7693, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51229, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.74249+00', 7312, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51230, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.274069+00', 7777, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51231, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.74249+00', 7319, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51232, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.731961+00', 7351, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51233, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.29999+00', 7805, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51234, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.29999+00', 7831, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51235, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.731685+00', 7491, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51236, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.731685+00', 7527, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51237, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.743367+00', 7526, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51238, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.23313+00', 8121, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51239, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.794954+00', 7581, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51240, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.324498+00', 8093, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51241, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.324498+00', 8109, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51242, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.252861+00', 8231, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51243, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.216455+00', 8284, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51244, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.344524+00', 8172, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51245, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.344524+00', 8179, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51246, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.743683+00', 7881, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51247, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.743683+00', 7897, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51248, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.742494+00', 7997, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51249, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.305645+00', 10851, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51250, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.305645+00', 10842, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51251, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.30776+00', 11177, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51252, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.326444+00', 11186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51253, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.30776+00', 11211, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51254, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:10.256307+00', 11262, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51255, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.795719+00', 1689, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51256, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.737062+00', 3072, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51257, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.865765+00', 3246, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51258, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.733922+00', 3437, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51259, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.882244+00', 3293, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51260, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.88521+00', 3558, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51261, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.806608+00', 3637, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51262, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.903462+00', 3559, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51263, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.734142+00', 3732, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51264, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.889429+00', 3658, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51265, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.893418+00', 3712, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51266, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.806566+00', 3852, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51267, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.733908+00', 3934, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51268, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.819002+00', 3941, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51269, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.733913+00', 4756, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51270, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:47.741069+00', 4757, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51271, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.882377+00', 1514, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51272, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.884384+00', 2382, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51273, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.882371+00', 2597, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51274, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.882358+00', 2815, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51275, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.886771+00', 2903, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51276, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.88237+00', 3004, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51277, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.884739+00', 3084, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51278, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.882358+00', 3092, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51279, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.882359+00', 3795, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51280, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:11.882358+00', 3801, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51281, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:16.382204+00', 504, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51282, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:16.431809+00', 583, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51283, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:16.403551+00', 677, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51284, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:16.414417+00', 695, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51285, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:16.40996+00', 753, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51286, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:16.421146+00', 785, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51287, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.25748+00', 972, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51288, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.257597+00', 2121, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51289, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.260046+00', 2788, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51290, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.258662+00', 2991, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51291, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.26138+00', 2988, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51292, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.257513+00', 3066, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51293, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.257482+00', 3097, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51294, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.257446+00', 3184, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51295, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.261331+00', 3969, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51296, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:22.257518+00', 3988, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51297, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:30.362844+00', 447, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51298, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:30.538343+00', 520, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51299, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:30.53145+00', 554, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51300, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:30.552719+00', 573, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51301, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:30.573295+00', 619, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51302, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:30.480593+00', 733, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51303, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.929771+00', 1626, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51304, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.917986+00', 2457, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51305, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.907758+00', 2685, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51306, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.914081+00', 2910, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51307, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.922521+00', 2925, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51308, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.918068+00', 2949, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51309, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.924589+00', 2982, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51310, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.925035+00', 2995, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51311, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.907761+00', 4115, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51312, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:25.907761+00', 4183, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51313, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:34.4086+00', 789, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51314, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:34.660306+00', 537, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51315, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:34.439727+00', 788, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51316, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:34.386296+00', 878, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51317, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:34.43135+00', 935, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51318, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:34.439736+00', 945, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51319, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.170989+00', 1529, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51320, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.144484+00', 2565, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51321, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.173908+00', 2972, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51322, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.200448+00', 3144, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51323, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.142419+00', 3215, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51324, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.15709+00', 3225, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51325, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.198778+00', 3216, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51326, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.169568+00', 3281, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51327, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.169088+00', 3947, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51328, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:04.159976+00', 3972, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51329, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.552631+00', 259, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51330, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.534783+00', 350, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51331, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.539561+00', 376, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51332, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.548234+00', 396, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51333, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.558066+00', 389, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51334, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.537546+00', 467, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51335, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.149891+00', 414, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51336, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.155642+00', 2081, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51337, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.104609+00', 2707, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51338, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.104608+00', 2800, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51339, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.133233+00', 2970, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51340, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.11801+00', 3006, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51341, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.119405+00', 3055, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51342, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.160542+00', 3084, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51343, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.130337+00', 4066, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51344, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.11475+00', 4094, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51345, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:44.324449+00', 2012, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51346, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:44.332483+00', 2018, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51347, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:44.363941+00', 2149, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51348, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:44.33328+00', 2191, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51349, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:44.284842+00', 2317, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51350, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:44.331758+00', 2300, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51351, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.392217+00', 817, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51352, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.447078+00', 1495, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51353, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.460572+00', 1647, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51354, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.45729+00', 1786, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51355, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.469221+00', 1961, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51356, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.448368+00', 1980, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51357, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.478253+00', 1952, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51358, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.417387+00', 2045, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51359, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.400905+00', 3024, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51360, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:44.431184+00', 3005, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51361, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:53.71031+00', 1639, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51362, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:53.744933+00', 1622, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51363, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:53.743838+00', 1794, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51364, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:53.711251+00', 1851, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51365, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:53.739162+00', 1891, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51366, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:53.75321+00', 1912, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51367, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:58.69907+00', 4751, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51368, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.211514+00', 3229, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51369, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.211514+00', 3383, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51370, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.712764+00', 6842, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51371, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.712764+00', 6886, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51372, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.540609+00', 7044, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51373, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:59.952397+00', 9156, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51374, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.072434+00', 9366, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51375, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.988559+00', 11468, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51376, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.881078+00', 11577, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51377, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.072434+00', 9396, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51378, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.881078+00', 11646, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51379, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.962843+00', 11736, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51380, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:58.048216+00', 11617, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51381, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.962843+00', 11785, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51382, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.091867+00', 10195, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51383, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.091867+00', 10127, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51384, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.072917+00', 10364, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51385, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.900545+00', 12933, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51386, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.196681+00', 10658, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51387, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.900545+00', 12844, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51388, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:58.253918+00', 12679, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51389, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.776662+00', 13185, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51390, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.543507+00', 10536, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51391, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.776622+00', 13318, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51392, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.530455+00', 10436, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51393, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.522804+00', 10463, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51394, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:58.253918+00', 12623, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51395, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.522804+00', 10443, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51396, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:58.056724+00', 13317, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51397, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.530455+00', 10487, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51398, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.958706+00', 13414, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51399, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:58.056724+00', 13340, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51400, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.25107+00', 11124, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51401, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.987661+00', 13429, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51402, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.533903+00', 10886, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51403, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.538348+00', 10851, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51404, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:58.144629+00', 13215, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51405, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.25107+00', 11109, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51406, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.543507+00', 10837, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51407, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.544217+00', 10894, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51408, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:02:57.958706+00', 13473, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51409, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.526074+00', 13904, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51410, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.526074+00', 13973, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51411, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.704617+00', 13994, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51412, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.680902+00', 13878, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51413, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.680902+00', 13929, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51414, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:00.055143+00', 14709, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51415, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.903867+00', 1510, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51416, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.867569+00', 2478, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51417, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.215968+00', 4482, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51418, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.21605+00', 4561, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51419, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.890766+00', 3900, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51420, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.8983+00', 4134, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51421, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.271883+00', 4956, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51422, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.872854+00', 4364, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51423, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.220309+00', 5024, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51424, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.900995+00', 4446, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51425, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.216033+00', 5143, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51426, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.215985+00', 5149, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51427, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.917639+00', 4417, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51428, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.91237+00', 4613, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51429, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.92077+00', 6444, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51430, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:06.879588+00', 6516, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51431, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.475172+00', 702, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51432, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.257301+00', 1982, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51433, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:09.89543+00', 3552, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51434, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:09.895441+00', 3568, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51435, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:10.952389+00', 2635, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51436, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.440352+00', 2264, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51437, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.353607+00', 2510, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51438, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.388734+00', 2456, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51439, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:10.955781+00', 2929, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51440, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:09.895436+00', 4084, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51441, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:09.895624+00', 4089, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51442, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:09.897389+00', 4115, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51443, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.487079+00', 2544, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51444, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:09.895424+00', 4174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51445, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.248793+00', 3530, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51446, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:11.352686+00', 3605, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51447, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:24.846043+00', 3591, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51448, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:27.850766+00', 703, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51449, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:24.845637+00', 3592, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51450, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:24.849336+00', 3588, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51451, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:27.871993+00', 682, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51452, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:24.843561+00', 3593, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51453, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.14646+00', 536, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51454, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:24.842963+00', 3759, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51455, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:24.842617+00', 3759, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51456, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.242431+00', 515, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51457, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.230268+00', 623, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51458, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.368676+00', 503, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51459, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:27.909812+00', 1079, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51460, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.218015+00', 814, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51461, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.308828+00', 1660, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51462, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.24051+00', 1743, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51463, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:49.973232+00', 3430, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51464, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:49.967713+00', 3424, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51465, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:49.978122+00', 3425, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51466, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:49.979264+00', 3535, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51467, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:49.966653+00', 3426, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51468, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:49.967729+00', 3641, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51469, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.702403+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51470, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.615725+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51471, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.551266+00', 592, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51472, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.636711+00', 526, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51473, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.391828+00', 791, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51474, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.548018+00', 720, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51475, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.678609+00', 618, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51476, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.563308+00', 772, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51477, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.542435+00', 1701, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51478, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.567919+00', 1707, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51479, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.079991+00', 1274, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51480, X'06012da79cec79bee23a4058bf1b1b2ae8046c5fdee24800ec982b08aa9b8f17', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.100281+00', 1824, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51481, X'623f9ec3beb69a8774b6c5d5db8b2f876b5c75d869d6337bbfd65ed98651516b', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.05162+00', 1892, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51482, X'8c6feab64dc6d3eea43cf2428dbbc22f23eac21c419f0b62c8d0e6289689f4f0', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.051358+00', 1942, 11, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51483, X'd4bd9128f3a19f1336b71af640dcb94ef806ac8824dac5a70c3bdf79f98d1209', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.052205+00', 1998, 3, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51484, X'99f39f868c00c159e945dde1fd2d6f37d09f552a34a2d8d71f985b60c1e15562', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.089272+00', 2907, 17, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51485, X'336e3a584a850e7c9ebdc549256e8a8b495bf04e230bfa3b87b942b641245e09', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.05158+00', 3021, 1, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51486, X'4be5e926ab5c80e511be3ebc87930937bd0ffb96d1785a0d50e62ba09608edef', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.094627+00', 2975, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51487, X'6a370c70ddd0ee2c0cd6da418c0092fa56d9261028a1922dd1b0a6a001ee1bf9', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.070978+00', 3957, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51488, X'a5e80b109638fb11540d8b719b381feb47a13c847c3ab04e4cd8fc9a8a2564da', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:26.058203+00', 4041, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51489, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.803071+00', 373, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51490, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.666056+00', 563, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51491, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.792424+00', 809, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51492, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.666008+00', 1158, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51493, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.800584+00', 1048, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51494, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.736674+00', 1153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51495, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.730142+00', 1192, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51496, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.710202+00', 1236, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51497, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.736771+00', 1443, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51498, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:34.688832+00', 1539, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51499, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:14.892473+00', 1779, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51500, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:14.96858+00', 1703, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51501, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:14.926115+00', 1972, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51502, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:14.913155+00', 2004, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51503, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:14.960586+00', 1970, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51504, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:14.926095+00', 2091, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51505, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.76115+00', 152, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51506, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.608134+00', 417, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51507, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.613912+00', 550, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51508, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.787631+00', 446, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51509, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.580192+00', 722, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51510, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.790404+00', 622, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51511, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.820187+00', 654, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51512, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.791686+00', 791, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51513, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.730477+00', 1253, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51514, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.729658+00', 1264, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51515, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.213962+00', 2882, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51516, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.808992+00', 3394, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51517, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.808992+00', 3224, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51518, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.689189+00', 7708, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51519, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.689189+00', 7731, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51520, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.695006+00', 7713, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51521, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.493315+00', 8269, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51522, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.493315+00', 8283, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51523, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.468771+00', 8776, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51524, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.707994+00', 8601, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51525, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.468771+00', 8817, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51526, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.313331+00', 9013, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51527, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.674932+00', 8803, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51528, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.242666+00', 8287, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51529, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.674932+00', 8856, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51530, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.143415+00', 8479, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51531, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.221607+00', 8407, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51532, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.313329+00', 9308, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51533, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.532879+00', 9097, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51534, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.313329+00', 9319, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51535, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.221607+00', 8480, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51536, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.458487+00', 9318, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51537, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.150115+00', 8645, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51538, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.692518+00', 9242, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51539, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.150115+00', 8687, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51540, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.398149+00', 9610, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51541, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.697038+00', 9355, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51542, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.679236+00', 9273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51543, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.398149+00', 9555, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51544, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.318194+00', 9764, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51545, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.099202+00', 8974, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51546, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.31329+00', 9818, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51547, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.697038+00', 9409, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51548, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.31329+00', 9852, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51549, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.313322+00', 9865, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51550, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.178801+00', 9004, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51551, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.178801+00', 9023, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51552, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.260248+00', 8945, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51553, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.313322+00', 9906, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51554, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.683995+00', 9626, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51555, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.683995+00', 9641, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51556, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.689523+00', 9842, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51557, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.689418+00', 12418, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51558, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.986573+00', 12105, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51559, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.689418+00', 12438, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51560, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:54.986573+00', 12127, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51561, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.145832+00', 11963, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51562, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:55.102715+00', 12045, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51563, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.219217+00', 1051, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51564, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.208941+00', 4191, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51565, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.178706+00', 4869, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51566, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.227658+00', 4869, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51567, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.219194+00', 4898, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51568, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.187121+00', 5277, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51569, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.288254+00', 5242, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51570, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.2718+00', 5240, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51571, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.261442+00', 5203, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51572, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.213042+00', 5304, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51573, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.178685+00', 5373, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51574, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.234571+00', 5376, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51575, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.198496+00', 5413, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51576, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.204845+00', 5437, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51577, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.317288+00', 5910, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51578, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:20.330092+00', 5947, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51579, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.321872+00', 1384, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51580, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.359313+00', 3024, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51581, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.315068+00', 4040, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51582, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.314586+00', 4055, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51583, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.378034+00', 4007, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51584, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.372514+00', 4308, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51585, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.364041+00', 4383, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51586, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.344513+00', 4415, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51587, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.329625+00', 4445, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51588, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.326117+00', 4471, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51589, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.350067+00', 4497, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51590, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.381416+00', 4492, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51591, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.351328+00', 4566, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51592, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.34154+00', 4617, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51593, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.355177+00', 5982, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51594, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:44.3367+00', 6034, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51595, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:42.908493+00', 2012, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51596, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.108764+00', 3461, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51597, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.049806+00', 4043, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51598, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.008004+00', 4112, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51599, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:42.901627+00', 4242, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51600, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.118243+00', 4198, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51601, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.057023+00', 4318, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51602, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:42.920088+00', 4490, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51603, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.128115+00', 4300, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51604, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:42.972784+00', 4479, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51605, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.139326+00', 4327, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51606, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.077128+00', 4415, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51607, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.124594+00', 4378, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51608, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.034398+00', 4565, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51609, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.1416+00', 5503, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51610, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:43.016639+00', 5647, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51611, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.881334+00', 3559, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51612, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.887362+00', 3501, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51613, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.887362+00', 3614, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51614, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.745059+00', 5660, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51615, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:23.743332+00', 4703, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51616, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:23.743332+00', 4720, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51617, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.924451+00', 7420, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51618, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.904684+00', 7430, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51619, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.904684+00', 7504, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51620, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.924451+00', 7521, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51621, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.76142+00', 7683, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51622, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.839871+00', 7655, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51623, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.902798+00', 7593, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51624, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.76142+00', 7745, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51625, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.761592+00', 7767, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51626, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.765652+00', 8158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51627, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.765652+00', 8152, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51628, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.763473+00', 8413, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51629, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.828923+00', 8365, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51630, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.828923+00', 8502, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51631, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.827812+00', 8451, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51632, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.911623+00', 8568, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51633, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.8097+00', 8682, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51634, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:23.752189+00', 7737, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51635, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.804795+00', 8690, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51636, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.827812+00', 8666, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51637, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.911623+00', 8610, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51638, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.849342+00', 8636, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51639, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.93402+00', 8572, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51640, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.849342+00', 8684, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51641, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.777064+00', 8856, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51642, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.840248+00', 8780, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51643, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.807891+00', 8738, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51644, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.8097+00', 8835, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51645, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:23.752189+00', 7836, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51646, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.93402+00', 8734, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51647, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.777064+00', 8885, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51648, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.771687+00', 8901, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51649, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.868664+00', 8817, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51650, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:23.743289+00', 7932, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51651, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:23.810027+00', 7902, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51652, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.899796+00', 9043, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51653, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.795374+00', 10756, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51654, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.846068+00', 10710, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51655, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.846068+00', 10701, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51656, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.795374+00', 10782, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51657, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:22.929709+00', 10661, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51658, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:23.769205+00', 9864, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51659, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.360902+00', 2645, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51660, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.360902+00', 2877, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51661, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.273172+00', 2801, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51662, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.945789+00', 6260, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51663, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.285842+00', 5925, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51664, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.081743+00', 5995, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51665, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.081743+00', 6028, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51666, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.945789+00', 6272, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51667, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.083826+00', 6053, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51668, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.266498+00', 6605, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51669, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.266498+00', 6635, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51670, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.954166+00', 6269, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51671, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.942248+00', 11142, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51672, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.942248+00', 11169, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51673, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.345632+00', 11409, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51674, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.97991+00', 12212, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51675, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.97991+00', 12224, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51676, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.93628+00', 12274, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51677, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.936208+00', 12307, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51678, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.989176+00', 12341, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51679, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.947164+00', 12399, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51680, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.989176+00', 12356, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51681, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.947164+00', 12427, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51682, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.0465+00', 12364, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51683, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.0465+00', 12373, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51684, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.220031+00', 12244, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51685, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.571281+00', 11863, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51686, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.043614+00', 12507, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51687, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.079234+00', 12462, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51688, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.230412+00', 12309, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51689, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.230412+00', 12352, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51690, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.36375+00', 12381, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51691, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.306702+00', 12444, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51692, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.36375+00', 12424, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51693, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.306702+00', 12532, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51694, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.990746+00', 12664, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51695, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.427378+00', 12326, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51696, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.945387+00', 12932, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51697, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:29.945387+00', 12892, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51698, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.231606+00', 12687, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51699, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.363933+00', 12525, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51700, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.231606+00', 12723, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51701, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.418173+00', 15276, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51702, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.418173+00', 15279, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51703, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.25429+00', 15589, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51704, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.25429+00', 15599, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51705, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.270834+00', 15765, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51706, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:30.019044+00', 16056, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51707, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.29633+00', 2835, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51708, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.29633+00', 2886, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51709, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.349265+00', 2803, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51710, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.214158+00', 4457, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51711, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.214158+00', 4477, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51712, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.133286+00', 4589, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51713, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.291025+00', 4411, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51714, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.133286+00', 4566, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51715, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.291025+00', 4569, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51716, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.210009+00', 4650, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51717, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.266769+00', 4637, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51718, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.302335+00', 4633, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51719, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.090518+00', 9044, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51720, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.089039+00', 9155, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51721, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.089039+00', 9186, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51722, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.363049+00', 9461, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51723, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.209007+00', 9646, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51724, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.145751+00', 9759, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51725, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.260534+00', 9712, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51726, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.260534+00', 9695, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51727, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.332219+00', 9795, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51728, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.332219+00', 9826, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51729, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.086894+00', 10070, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51730, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.32237+00', 9861, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51731, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.235101+00', 9945, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51732, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.34524+00', 9838, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51733, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.086894+00', 10099, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51734, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.266897+00', 9945, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51735, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.34524+00', 9894, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51736, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.161737+00', 10054, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51737, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.235101+00', 10005, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51738, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.266897+00', 10023, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51739, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.161737+00', 10128, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51740, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.358602+00', 9895, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51741, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.263491+00', 10054, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51742, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.358602+00', 9940, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51743, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.086856+00', 10237, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51744, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.332956+00', 10114, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51745, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.332956+00', 10112, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51746, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.340584+00', 10122, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51747, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.086691+00', 10381, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51748, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.274142+00', 10044, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51749, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.225311+00', 12500, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51750, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.225311+00', 12519, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51751, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.275999+00', 12617, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51752, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.165235+00', 12937, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.08731+00', 13043, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51754, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:08.08731+00', 13077, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51755, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.622231+00', 2446, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51756, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.564818+00', 5137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51757, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.468019+00', 7025, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51758, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.436773+00', 7188, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51759, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.445779+00', 7300, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51760, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.417538+00', 7431, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51761, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.379261+00', 7422, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51762, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.445779+00', 7603, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51763, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.417538+00', 7631, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51764, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.540389+00', 7827, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51765, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.40546+00', 8030, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51766, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.34097+00', 8091, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51767, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.292959+00', 8143, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51768, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.489788+00', 7979, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51769, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.34097+00', 8123, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51770, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.359749+00', 8125, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51771, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.293081+00', 8219, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51772, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.396927+00', 8147, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51773, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.293081+00', 8229, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51774, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.359749+00', 8181, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51775, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.410658+00', 8081, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51776, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.410658+00', 8492, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51777, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.292936+00', 8641, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51778, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.529216+00', 8403, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51779, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.467538+00', 8520, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51780, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.539858+00', 8486, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51781, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.585002+00', 10470, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51782, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:54.528913+00', 10508, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51783, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:25.12101+00', 3509, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51784, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:25.068664+00', 3562, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51785, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:25.068607+00', 3585, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51786, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:25.068607+00', 3595, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51787, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:25.0686+00', 3630, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51788, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:25.068654+00', 3595, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51789, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.896154+00', 674, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51790, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.570263+00', 1002, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51791, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.902331+00', 737, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51792, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.920261+00', 791, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51793, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.867789+00', 899, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51794, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.078557+00', 869, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51795, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.864919+00', 1133, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51796, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.94242+00', 1276, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51797, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.578654+00', 2341, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51798, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:55.940173+00', 2043, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51799, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:26.820136+00', 2463, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51800, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:26.818452+00', 2475, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51801, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:26.818072+00', 2431, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51802, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:26.818051+00', 2431, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51803, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:26.818051+00', 2492, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51804, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:26.81903+00', 2541, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51805, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:12.01528+00', 295, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51806, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:11.748877+00', 673, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51807, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:11.845082+00', 1142, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51808, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:11.745994+00', 1376, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51809, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:11.760298+00', 1449, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51810, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:11.970965+00', 1257, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51811, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:12.135674+00', 1176, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51812, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:11.813647+00', 1550, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51813, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:11.750182+00', 2337, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51814, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:12.124501+00', 2010, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51815, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:46.510295+00', 3196, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51816, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:46.512126+00', 3171, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51817, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:46.510394+00', 3173, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51818, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:46.510115+00', 3196, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51819, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:46.510135+00', 3174, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51820, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:46.510115+00', 3318, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51821, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.745881+00', 1232, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51822, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.745881+00', 1288, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51823, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.756979+00', 3101, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51824, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.756979+00', 3120, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51825, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.672522+00', 3515, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51826, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.672522+00', 3518, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51827, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.652761+00', 4060, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51828, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.660277+00', 4021, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51829, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.652761+00', 4028, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51830, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.660277+00', 4085, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51831, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.768958+00', 3977, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51832, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.768958+00', 4048, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51833, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.710042+00', 4165, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51834, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.710042+00', 4202, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51835, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.702106+00', 4338, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51836, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.702106+00', 4369, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51837, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.65278+00', 5911, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51838, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.65278+00', 5940, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51839, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.71674+00', 5974, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51840, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:37.71674+00', 6016, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51841, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:36.321661+00', 1640, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(51842, X'30ff5b00baa7671e429f0723ed15c9c2ad90e3bc7aa5529592f7d1ac2e559de4', TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:57.567812+00', 1913, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(51843, X'c08b9b39f8a40fd20818d1a3736fc53f629e903d96b00bac67b1719b6a33cd19', TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:57.597169+00', 1937, 3, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(51844, X'e83e0a8202979ea3dfb1fb89ef85155eaca01a4aeda5f334a89dc8e721d7a953', TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:57.608368+00', 1950, 3, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(51845, X'e83e0a8202979ea3dfb1fb89ef85155eaca01a4aeda5f334a89dc8e721d7a953', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:23.182537+00', 224, 3, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(51846, X'c08b9b39f8a40fd20818d1a3736fc53f629e903d96b00bac67b1719b6a33cd19', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:23.184141+00', 255, 3, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(51847, X'30ff5b00baa7671e429f0723ed15c9c2ad90e3bc7aa5529592f7d1ac2e559de4', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:23.192978+00', 298, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(51848, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.11321+00', 353, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(51849, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.389754+00', 237, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(51850, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.228738+00', 937, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(51851, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.314332+00', 903, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(51852, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.336159+00', 1006, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(51853, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.344893+00', 1070, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(51854, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.309354+00', 1145, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(51855, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.283079+00', 1189, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(51856, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.265274+00', 1853, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(51857, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.357485+00', 1832, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(51858, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.494352+00', 3231, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51859, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.494352+00', 3271, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51860, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.42861+00', 3324, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51861, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.460848+00', 5408, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51862, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.428614+00', 5418, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51863, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.493133+00', 5442, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51864, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.428614+00', 5459, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51865, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.460848+00', 5436, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51866, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.435099+00', 5556, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51867, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.542736+00', 5402, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51868, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.542736+00', 5304, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51869, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.877422+00', 5114, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51870, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.531103+00', 8028, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51871, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.54093+00', 8232, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51872, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.54093+00', 8249, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51873, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.817033+00', 8211, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51874, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:18.114788+00', 8142, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51875, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:18.123675+00', 8184, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51876, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:18.114788+00', 8160, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51877, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:18.123675+00', 8191, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51878, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.510466+00', 8832, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51879, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.510466+00', 8857, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51880, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.42859+00', 8915, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51881, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.467208+00', 8957, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51882, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.467208+00', 8944, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51883, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.457532+00', 9188, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51884, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.457532+00', 9178, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51885, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.430816+00', 9229, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51886, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:18.083767+00', 8560, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51887, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.430816+00', 9208, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51888, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.800733+00', 8700, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51889, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.499486+00', 9224, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51890, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.520156+00', 9201, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51891, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.457159+00', 9281, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51892, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.429752+00', 9267, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51893, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.429752+00', 9278, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51894, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.549187+00', 9190, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51895, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.549187+00', 9253, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51896, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.844104+00', 8957, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51897, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.457159+00', 9337, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(51898, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.428604+00', 9422, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51899, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.524167+00', 9359, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51900, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.450833+00', 11082, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51901, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.429267+00', 11307, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51902, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.429267+00', 11318, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51903, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.547159+00', 11224, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51904, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.547159+00', 11232, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51905, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:17.440724+00', 11365, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51906, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.488189+00', 2145, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51907, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.524384+00', 3052, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51908, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.238767+00', 3340, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51909, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.478496+00', 3101, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51910, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.497342+00', 3776, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51911, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.494306+00', 4090, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51912, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.480504+00', 4167, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51913, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.450526+00', 4209, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51914, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:16.577631+00', 5102, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51915, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.483283+00', 4197, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51916, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.513056+00', 4205, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51917, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:16.602663+00', 5114, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51918, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.464691+00', 4298, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51919, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.242101+00', 4540, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51920, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.485065+00', 5164, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51921, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:17.447245+00', 5224, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51922, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.303441+00', 782, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51923, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.312355+00', 1900, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51924, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.284143+00', 1930, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51925, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.282788+00', 1932, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51926, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.282638+00', 3815, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51927, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.309819+00', 4073, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51928, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.291649+00', 4299, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51929, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.313036+00', 4399, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51930, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.297919+00', 4479, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51931, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.306554+00', 4488, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51932, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.293842+00', 4505, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51933, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.299538+00', 4516, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51934, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.28664+00', 4559, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51935, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.30795+00', 4636, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51936, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.284048+00', 7818, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51937, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:17.306577+00', 7792, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51938, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.036811+00', 1971, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51939, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.036811+00', 2123, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(51940, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.306744+00', 1946, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51941, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.196915+00', 4346, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51942, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.161462+00', 4429, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51943, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.275836+00', 4344, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51944, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.196915+00', 4350, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(51945, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.048286+00', 4594, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51946, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.289365+00', 4401, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51947, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.275836+00', 4424, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(51948, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.200727+00', 4447, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51949, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.200727+00', 4506, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(51950, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.204307+00', 6921, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51951, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.204307+00', 6923, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(51952, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.099975+00', 7127, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51953, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.144212+00', 7691, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51954, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.144212+00', 7695, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(51955, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.238514+00', 7869, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51956, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.385473+00', 7724, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51957, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.385473+00', 7756, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(51958, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.086566+00', 8080, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51959, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.086566+00', 8208, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(51960, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.238514+00', 7934, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(51961, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.325325+00', 8109, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51962, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.036928+00', 8399, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51963, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.034048+00', 8515, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51964, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.258651+00', 8364, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51965, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.336148+00', 8296, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51966, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.365092+00', 8300, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51967, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.251516+00', 8433, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51968, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.292761+00', 8377, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51969, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.365092+00', 8323, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(51970, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.251516+00', 8457, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(51971, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:11.987364+00', 8842, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51972, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:11.987364+00', 8847, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(51973, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.036398+00', 8695, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(51974, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.292761+00', 8421, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51975, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.111499+00', 8632, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51976, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.250305+00', 8615, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51977, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.320867+00', 8545, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51978, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.250305+00', 8633, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(51979, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.096743+00', 8807, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(51980, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.232308+00', 9738, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51981, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.232308+00', 9767, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(51982, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.265407+00', 9734, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51983, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.265407+00', 9746, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(51984, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.150655+00', 9862, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(51985, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:12.163537+00', 9859, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(51986, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.218237+00', 1563, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(51987, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.2279+00', 2481, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(51988, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.201329+00', 2558, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(51989, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.201415+00', 2561, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(51990, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.24208+00', 4710, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(51991, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.222565+00', 5278, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(51992, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.201436+00', 5422, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(51993, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.230807+00', 5449, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(51994, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.237039+00', 5493, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(51995, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.208268+00', 5551, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(51996, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.238845+00', 5536, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(51997, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.221214+00', 5565, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(51998, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.220296+00', 5591, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(51999, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.242866+00', 5612, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52000, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.203699+00', 7502, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52001, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:15.226205+00', 7487, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52002, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.549897+00', 1845, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52003, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.533619+00', 2582, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52004, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.52964+00', 2611, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52005, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.529682+00', 2607, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52006, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.60145+00', 3288, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52007, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.546493+00', 3612, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52008, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.576232+00', 3632, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52009, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.587184+00', 3643, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52010, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.534181+00', 3765, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52011, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.56967+00', 3752, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52012, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.569762+00', 3758, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52013, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.529517+00', 3854, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52014, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.563707+00', 3844, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52015, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.560224+00', 3853, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52016, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.529687+00', 5182, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52017, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:13.54159+00', 5165, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52018, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.688665+00', 1594, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52019, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.519055+00', 2710, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52020, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.36201+00', 2864, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52021, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.411509+00', 2812, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52022, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.595617+00', 3283, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52023, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.371933+00', 3921, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52024, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.525283+00', 3796, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52025, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.381361+00', 4012, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52026, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.537324+00', 3859, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52027, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.586514+00', 3865, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52028, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.361738+00', 4121, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52029, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.434957+00', 4061, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52030, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.498679+00', 4018, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52031, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.651206+00', 3868, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52032, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.499911+00', 5922, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52033, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:14.536831+00', 5938, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52034, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489327+00', 3175, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52035, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489327+00', 3405, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(52036, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.500288+00', 3161, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52037, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:41.409292+00', 1331, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52038, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.961782+00', 1802, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52039, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.997675+00', 1867, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52040, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:41.0559+00', 1809, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52041, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:41.409292+00', 1361, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52042, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.961782+00', 1839, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52043, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489315+00', 4490, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(52044, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489315+00', 4379, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52045, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.532058+00', 4315, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52046, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.544078+00', 7378, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52047, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.544078+00', 7386, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52048, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489316+00', 8023, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52049, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.48932+00', 8397, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52050, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489422+00', 8455, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52051, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.48932+00', 8436, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52052, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489288+00', 8498, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52053, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489308+00', 8497, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52054, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489288+00', 8505, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52055, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.520074+00', 8527, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52056, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.520074+00', 8517, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52057, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.696807+00', 6566, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52058, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.48931+00', 8778, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52059, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.676553+00', 6661, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52060, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.828487+00', 6723, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52061, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.857975+00', 6729, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52062, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489321+00', 9101, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52063, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.979931+00', 6588, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52064, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.702489+00', 6902, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52065, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.828487+00', 6787, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52066, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:41.409278+00', 6225, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52067, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:41.409278+00', 6224, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52068, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.857975+00', 6788, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52069, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.541124+00', 9114, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52070, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489321+00', 9180, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(52071, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.702489+00', 6970, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52072, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489326+00', 9196, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52073, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:40.923955+00', 6759, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52074, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.496974+00', 9194, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52075, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.541124+00', 9147, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52076, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489305+00', 11111, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52077, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489304+00', 11527, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52078, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.51744+00', 11503, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52079, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489304+00', 11533, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52080, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:38.489293+00', 11656, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 3, NULL), +(52081, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.053979+00', 1964, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52082, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.020713+00', 3683, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52083, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.073773+00', 3649, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52084, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.00144+00', 3721, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52085, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.087741+00', 5407, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52086, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.074087+00', 5860, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52087, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.080097+00', 5939, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52088, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.021262+00', 5998, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52089, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.066706+00', 6019, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52090, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.016199+00', 6119, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52091, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.010959+00', 6202, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52092, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.041438+00', 6174, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52093, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.014191+00', 6252, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52094, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.001445+00', 6273, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52095, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.001421+00', 7535, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52096, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:41.006849+00', 7554, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52097, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.765581+00', 2339, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52098, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.822485+00', 2697, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52099, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.764121+00', 2758, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52100, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.823274+00', 2698, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52101, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.788901+00', 3771, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52102, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.764032+00', 3968, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52103, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.777082+00', 4289, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52104, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.798846+00', 4271, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52105, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.788921+00', 4318, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52106, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.764099+00', 4361, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52107, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.764022+00', 4434, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52108, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.767354+00', 4432, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52109, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.764634+00', 4465, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52110, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.764132+00', 4568, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52111, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.810487+00', 5737, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52112, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:38.764114+00', 5882, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52113, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.807336+00', 1713, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52114, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.762816+00', 2318, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52115, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.724331+00', 2364, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52116, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.805484+00', 2283, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52117, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.808325+00', 2984, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52118, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.738569+00', 3361, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52119, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.837723+00', 3402, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52120, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.845367+00', 3396, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52121, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.723014+00', 3525, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52122, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.733495+00', 3555, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52123, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.744861+00', 3535, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52124, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.72578+00', 3588, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52125, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.716519+00', 3713, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52126, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.734182+00', 3763, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52127, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.714659+00', 4771, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52128, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:39.746106+00', 4851, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52129, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.668783+00', 1718, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52130, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.77479+00', 2681, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52131, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.647795+00', 2799, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52132, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.709189+00', 2747, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52133, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.658797+00', 3580, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52134, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.620495+00', 3740, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52135, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.545931+00', 3918, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52136, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.609407+00', 3933, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52137, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.627453+00', 3944, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52138, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.579924+00', 4065, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52139, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.73352+00', 3886, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52140, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.75352+00', 3862, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52141, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:39.228767+00', 3419, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52142, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.794644+00', 3872, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52143, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.545901+00', 4864, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52144, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:38.697326+00', 4736, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52145, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.38151+00', 907, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52146, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.374818+00', 2033, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52147, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.367749+00', 2036, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52148, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.349171+00', 2066, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52149, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.355549+00', 3254, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52150, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.347587+00', 3590, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52151, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.347552+00', 3618, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52152, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.36854+00', 3687, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52153, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.358706+00', 3759, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52154, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.414452+00', 3717, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52155, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.373964+00', 3779, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52156, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.363723+00', 3821, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52157, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.356829+00', 3852, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52158, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.35337+00', 3884, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52159, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.35037+00', 5161, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52160, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:38.371918+00', 5164, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52161, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.459346+00', 1910, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52162, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.582034+00', 2328, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52163, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.577753+00', 2333, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52164, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.45934+00', 2456, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52165, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.459354+00', 3112, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52166, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.474765+00', 3401, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52167, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.490909+00', 3426, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52168, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.519208+00', 3398, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52169, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.552874+00', 3389, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52170, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.469315+00', 3481, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52171, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.563769+00', 3411, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52172, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.570081+00', 3426, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52173, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.58119+00', 3441, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52174, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.471241+00', 3593, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52175, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.462372+00', 4435, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52176, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:39.45935+00', 4453, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52177, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.977603+00', 2628, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52178, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.971594+00', 3513, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52179, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937769+00', 3642, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52180, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:51.059336+00', 1433, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52181, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937769+00', 3547, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52182, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.950463+00', 3629, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52183, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.950463+00', 3534, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52184, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937812+00', 5516, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52185, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937791+00', 6708, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52186, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.983238+00', 6784, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52187, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.942566+00', 7144, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52188, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.960998+00', 7292, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52189, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937797+00', 7354, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52190, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937797+00', 7366, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52191, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:51.059727+00', 5243, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52192, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:50.976909+00', 5369, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52193, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:50.993908+00', 5456, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52194, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.986314+00', 7384, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52195, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937807+00', 7464, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52196, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.986314+00', 7395, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52197, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937802+00', 7552, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52198, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937807+00', 7432, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52199, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.937802+00', 7616, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52200, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:50.991447+00', 5560, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52201, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.959299+00', 7830, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52202, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.940346+00', 9501, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52203, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:48.974031+00', 9556, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52204, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.205956+00', 8136, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52205, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.205956+00', 8272, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52206, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.205956+00', 8376, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52207, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.208406+00', 8461, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52208, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.208406+00', 8371, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52209, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.205956+00', 8424, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52210, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.230728+00', 8600, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52211, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.230728+00', 8556, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52212, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.218877+00', 8539, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52213, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.218877+00', 8501, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52214, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.239821+00', 9620, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52215, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:06.239821+00', 9623, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52216, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.890535+00', 1525, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52217, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.890535+00', 1576, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(52218, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.46237+00', 1013, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52219, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.633914+00', 1581, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52220, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.633914+00', 1592, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(52221, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.875149+00', 3010, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52222, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.982526+00', 2934, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52223, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.875149+00', 3129, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52224, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.086145+00', 2138, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52225, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.846784+00', 3686, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52226, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.691529+00', 1976, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52227, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.098408+00', 2745, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52228, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.098408+00', 2771, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52229, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.547329+00', 3356, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52230, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.649555+00', 2427, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52231, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.990173+00', 4163, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52232, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.911549+00', 4431, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52233, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.482496+00', 4231, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52234, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.482496+00', 4270, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52235, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.500217+00', 4254, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52236, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.500217+00', 4267, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52237, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.875149+00', 5084, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52238, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.875149+00', 5082, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52239, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.221753+00', 3762, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52240, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.471737+00', 4552, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52241, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.515743+00', 4603, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52242, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.515805+00', 4628, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52243, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.933037+00', 5209, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52244, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:16.515805+00', 4654, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(52245, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.581004+00', 3624, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52246, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.699727+00', 4826, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52247, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.006044+00', 5591, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52248, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.336768+00', 5418, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(52249, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.736759+00', 5023, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52250, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.336768+00', 5415, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52251, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.736759+00', 5032, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52252, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.892781+00', 800, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52253, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.988679+00', 707, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52254, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.579204+00', 500, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52255, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.533546+00', 565, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52256, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.868793+00', 2095, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52257, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.941955+00', 1966, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52258, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.941955+00', 2212, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 18, 3, NULL, 3, NULL), +(52259, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.868793+00', 2308, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52260, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.871216+00', 2321, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52261, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.620371+00', 2259, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52262, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.620371+00', 2364, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52263, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.568708+00', 2746, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52264, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.926649+00', 2991, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52265, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.603522+00', 2723, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52266, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.568708+00', 2779, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52267, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.871216+00', 2310, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52268, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.668626+00', 2760, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52269, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:27.926649+00', 3174, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52270, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.603522+00', 2857, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52271, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.668626+00', 2826, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52272, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.232152+00', 2211, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52273, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.232152+00', 2334, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52274, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.499767+00', 2137, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52275, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.34515+00', 2561, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52276, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:30.089404+00', 1901, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52277, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.34515+00', 2821, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(52278, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.567089+00', 2615, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52279, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.592886+00', 3666, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(52280, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.592886+00', 3658, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52281, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:30.192617+00', 2209, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52282, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.669607+00', 3953, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52283, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.325962+00', 1433, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52284, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.669607+00', 4095, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52285, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.512988+00', 1248, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52286, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.514811+00', 1885, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52287, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.516997+00', 1912, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52288, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.357905+00', 2099, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52289, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:30.354075+00', 3119, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52290, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.44372+00', 2339, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52291, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.48604+00', 2472, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52292, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.463656+00', 2790, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52293, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.51534+00', 2750, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52294, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:30.812839+00', 4382, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52295, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.573771+00', 3692, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52296, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.83149+00', 2343, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52297, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.582691+00', 2757, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52298, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.582691+00', 2475, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52299, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.671484+00', 4412, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52300, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.915212+00', 6182, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52301, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.915212+00', 6164, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52302, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.595795+00', 4735, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52303, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.708976+00', 4632, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52304, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.912045+00', 6414, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52305, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.57833+00', 4843, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52306, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.595795+00', 4800, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(52307, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.912045+00', 6444, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52308, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.629025+00', 8398, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52309, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.629025+00', 8431, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52310, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:30.193778+00', 8012, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52311, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.86481+00', 8590, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52312, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.696773+00', 9027, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52313, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.696773+00', 9059, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52314, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.93227+00', 11043, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52315, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.93227+00', 11075, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52316, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.705602+00', 9414, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52317, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.740994+00', 9454, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52318, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.9176+00', 11520, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52319, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.705602+00', 9470, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52320, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:30.066867+00', 9052, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52321, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.632954+00', 9838, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52322, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.740994+00', 9477, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52323, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.91925+00', 11566, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52324, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.700712+00', 9785, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52325, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.577208+00', 9909, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52326, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.83271+00', 9686, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52327, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.700712+00', 9823, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52328, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.91925+00', 11604, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52329, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:27.9176+00', 11629, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52330, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.576895+00', 9983, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52331, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:30.019916+00', 9566, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52332, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.576895+00', 9947, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52333, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.575776+00', 9966, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52334, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.576466+00', 9983, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52335, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.713567+00', 10091, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52336, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.713567+00', 10106, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(52337, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:30.313352+00', 9474, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52338, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.712283+00', 12491, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52339, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.701681+00', 12503, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(52340, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.712283+00', 12499, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52341, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.701681+00', 12498, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52342, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.851763+00', 12467, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52343, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:29.731532+00', 12629, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52344, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.30122+00', 1203, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52345, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.244853+00', 1287, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52346, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.230381+00', 1329, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52347, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.287465+00', 1342, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52348, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.285673+00', 1364, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52349, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.230369+00', 1440, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52350, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.230393+00', 1443, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52351, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.248126+00', 1446, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52352, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.3149+00', 1809, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52353, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:00.286058+00', 1876, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52354, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.04058+00', 183, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52355, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:17.908241+00', 493, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52356, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:17.946698+00', 490, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52357, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.013862+00', 597, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52358, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.036215+00', 614, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52359, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.022682+00', 654, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52360, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:17.946919+00', 733, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52361, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.029194+00', 675, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52362, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.893748+00', 648, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52363, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.869003+00', 808, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(52364, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.033061+00', 2208, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52365, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.043361+00', 2270, 0, TRUE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 9, 2, NULL, 3, NULL), +(52366, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.033061+00', 1987, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52367, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.859981+00', 1504, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52368, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.859981+00', 1531, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52369, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.979574+00', 1800, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52370, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.979736+00', 1953, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52371, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.979736+00', 1971, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52372, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.195577+00', 1962, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52373, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.926545+00', 2579, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52374, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.926545+00', 2594, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52375, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.439799+00', 2434, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52376, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.187219+00', 2768, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52377, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.898078+00', 3102, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52378, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.898078+00', 3312, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52379, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.187219+00', 2957, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52380, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.184624+00', 3126, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52381, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.688855+00', 2765, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52382, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.43169+00', 3028, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52383, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.039066+00', 1490, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52384, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:20.697955+00', 1767, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52385, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:20.955187+00', 1839, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52386, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.0065+00', 2020, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52387, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.004315+00', 2321, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52388, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.052952+00', 2547, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52389, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.243275+00', 2409, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52390, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.134935+00', 3263, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52391, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.178086+00', 3304, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52392, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.340477+00', 3106, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52393, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.249597+00', 3224, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52394, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.340477+00', 3225, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(52395, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.07783+00', 7165, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52396, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889263+00', 7322, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52397, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.016194+00', 7251, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52398, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889247+00', 7324, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52399, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889252+00', 7376, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52400, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889263+00', 7385, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(52401, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.94694+00', 7296, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52402, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889247+00', 7376, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52403, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889252+00', 7315, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52404, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.153416+00', 10965, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52405, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.153416+00', 10974, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52406, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.338351+00', 10786, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52407, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.328121+00', 11369, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52408, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.328121+00', 11354, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52409, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.248855+00', 11527, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52410, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.147981+00', 11692, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52411, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889234+00', 11960, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52412, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889234+00', 12030, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52413, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.133591+00', 11766, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52414, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.245456+00', 11936, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52415, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.245456+00', 11944, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52416, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.137564+00', 12062, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52417, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889266+00', 12311, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52418, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889256+00', 12356, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52419, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889266+00', 12366, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52420, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889256+00', 12369, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52421, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.137564+00', 12135, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52422, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.121986+00', 12182, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52423, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.982694+00', 12320, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52424, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.121986+00', 12204, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52425, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.326323+00', 12077, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(52426, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.326323+00', 12051, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52427, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.128048+00', 12298, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52428, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.121887+00', 12294, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52429, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.93042+00', 12510, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52430, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.889635+00', 12592, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52431, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.919865+00', 12603, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52432, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.919865+00', 12626, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52433, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.334669+00', 12239, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52434, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.902646+00', 14171, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52435, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.902646+00', 14180, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52436, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:38.274489+00', 13949, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52437, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.891635+00', 14344, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(52438, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.891635+00', 14342, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52439, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:37.917498+00', 14334, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52440, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.152676+00', 970, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52441, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.15662+00', 1051, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52442, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.974556+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52443, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.10674+00', 1325, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52444, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.987251+00', 470, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52445, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.170626+00', 1334, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52446, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.208709+00', 1323, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52447, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.106125+00', 1432, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52448, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.174926+00', 1385, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52449, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.152699+00', 1415, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52450, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.814968+00', 236, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52451, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.217581+00', 2155, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52452, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.884257+00', 524, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52453, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:31.170665+00', 2247, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52454, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.821755+00', 812, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52455, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.888843+00', 815, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52456, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.886614+00', 941, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52457, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.11141+00', 820, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52458, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.88505+00', 1110, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52459, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.877251+00', 1143, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52460, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.928408+00', 1102, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52461, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.979979+00', 1060, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52462, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.94698+00', 1112, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52463, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.824819+00', 1270, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52464, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.657536+00', 840, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52465, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.717579+00', 807, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52466, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:00.684845+00', 319, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52467, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:00.626175+00', 389, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52468, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:00.643362+00', 390, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52469, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:00.686094+00', 348, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52470, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:00.688163+00', 370, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52471, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:00.608018+00', 461, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52472, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.931262+00', 1066, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52473, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.056999+00', 1791, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52474, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.056999+00', 1834, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(52475, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.053749+00', 2736, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52476, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.46959+00', 2329, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52477, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.46959+00', 2394, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(52478, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.053749+00', 2785, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(52479, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.95754+00', 3396, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52480, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.176914+00', 3277, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52481, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:04.115785+00', 1398, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52482, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.140716+00', 3394, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52483, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.994711+00', 3669, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52484, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.994711+00', 3694, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52485, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.966362+00', 3909, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52486, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.001022+00', 3875, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52487, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.124193+00', 3766, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52488, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.124193+00', 3777, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52489, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.001022+00', 3902, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52490, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.166476+00', 3955, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52491, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.003131+00', 4137, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52492, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.003131+00', 4142, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52493, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.966283+00', 4232, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52494, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:03.747044+00', 2520, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52495, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:03.747044+00', 2531, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52496, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:04.82884+00', 1772, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52497, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.74909+00', 3893, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52498, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:02.74909+00', 3900, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52499, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.069779+00', 1576, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52500, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.146674+00', 1704, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52501, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.287418+00', 1583, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52502, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:04.426109+00', 2521, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52503, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.323708+00', 1663, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52504, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.293817+00', 2156, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52505, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.571783+00', 2278, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52506, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.12545+00', 2734, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52507, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:46.983592+00', 1052, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52508, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:46.993156+00', 1042, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52509, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.919939+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52510, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.890219+00', 420, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52511, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:46.965656+00', 2625, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52512, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:46.975248+00', 2666, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52513, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:46.997262+00', 2663, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52514, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.552944+00', 2124, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52515, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:46.979655+00', 2749, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52516, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.874246+00', 1992, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52517, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.844871+00', 2102, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52518, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.913034+00', 2054, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52519, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.865173+00', 2116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52520, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.74879+00', 2320, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52521, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.741989+00', 2839, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52522, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:47.887219+00', 2840, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52523, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.101315+00', 407, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52524, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.110528+00', 411, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52525, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.128974+00', 798, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52526, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.071497+00', 900, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52527, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.112836+00', 899, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52528, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.145802+00', 890, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52529, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.34822+00', 214, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52530, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.398997+00', 459, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52531, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.376671+00', 540, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52532, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.395015+00', 572, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52533, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.448667+00', 647, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52534, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.480822+00', 727, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52535, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.480678+00', 785, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52536, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.438913+00', 851, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52537, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.242235+00', 1097, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52538, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.37493+00', 1120, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52539, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:33.948357+00', 526, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52540, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:33.740657+00', 734, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52541, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:33.897249+00', 611, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52542, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:33.744399+00', 1014, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52543, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.170929+00', 809, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52544, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.293066+00', 716, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52545, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:33.932809+00', 1161, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52546, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:33.88098+00', 1296, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52547, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.298563+00', 1050, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52548, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.401022+00', 1151, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52549, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:33.909565+00', 1762, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52550, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.440971+00', 1243, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52551, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.283743+00', 1425, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52552, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.183071+00', 1563, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52553, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.284601+00', 1793, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52554, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.193013+00', 2026, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52555, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.439274+00', 1149, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52556, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.412761+00', 2097, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52557, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.264092+00', 2249, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52558, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.270807+00', 2277, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52559, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.456622+00', 3089, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52560, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.427803+00', 3268, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52561, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.259234+00', 3873, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52562, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.448343+00', 3684, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52563, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.254533+00', 3877, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52564, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.251379+00', 3954, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52565, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.437475+00', 3770, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52566, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.251483+00', 3946, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52567, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.440651+00', 3784, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52568, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.421703+00', 3937, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52569, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.453429+00', 5777, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52570, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:51.4255+00', 5852, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52571, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:24.251722+00', 1518, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52572, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:24.143585+00', 1625, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52573, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:24.228116+00', 1733, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52574, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:24.213969+00', 1925, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52575, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:24.228095+00', 1916, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52576, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:24.143907+00', 2002, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52577, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.164913+00', 1090, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52578, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.86734+00', 388, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52579, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.775964+00', 681, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52580, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.858769+00', 688, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52581, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.775033+00', 781, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52582, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.777771+00', 804, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52583, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.918859+00', 722, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52584, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.870423+00', 952, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52585, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.937496+00', 1189, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52586, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.878424+00', 1307, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52587, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.422936+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52588, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.432203+00', 312, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52589, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.438063+00', 1081, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52590, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.378377+00', 1216, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52591, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.386187+00', 1313, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52592, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.302432+00', 411, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52593, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.437373+00', 1317, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52594, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.13909+00', 688, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52595, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.05471+00', 957, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52596, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.03103+00', 1046, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52597, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.06019+00', 1316, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52598, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.107882+00', 1277, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52599, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.171172+00', 1375, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52600, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.170086+00', 1384, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52601, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.294813+00', 2002, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52602, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.21184+00', 2269, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52603, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.351254+00', 401, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52604, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.350638+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52605, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.297941+00', 791, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52606, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.285352+00', 810, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52607, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.352694+00', 759, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52608, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.296289+00', 829, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52609, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.70501+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52610, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.640521+00', 357, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52611, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.697745+00', 307, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52612, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.667653+00', 410, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52613, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.712896+00', 413, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52614, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.709583+00', 478, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52615, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.689497+00', 535, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52616, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.737731+00', 505, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52617, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.715924+00', 798, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52618, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.738536+00', 849, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52619, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:34.524389+00', 792, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52620, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:34.634986+00', 1174, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52621, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:34.531095+00', 1293, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52622, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.043933+00', 791, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52623, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:34.924822+00', 3468, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52624, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:34.919381+00', 3646, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52625, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.058974+00', 3983, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52626, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:34.752814+00', 4328, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52627, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:34.8689+00', 4270, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52628, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.046426+00', 4179, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52629, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.031304+00', 4221, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52630, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.096984+00', 4190, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52631, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.053996+00', 4247, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52632, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.042758+00', 4276, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52633, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.033038+00', 5468, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52634, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.038982+00', 5512, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52635, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:52.907588+00', 1267, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52636, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:52.925649+00', 1281, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52637, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.243161+00', 580, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52638, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.333577+00', 889, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52639, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:52.902572+00', 2834, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52640, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:53.822065+00', 1963, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52641, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:52.911351+00', 2958, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52642, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:52.919485+00', 3044, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52643, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:52.958924+00', 3120, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52644, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.03999+00', 2065, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52645, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.303779+00', 1797, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52646, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.277017+00', 1840, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52647, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.00996+00', 2125, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52648, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:53.909906+00', 2320, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52649, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.358151+00', 2902, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52650, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.017449+00', 3296, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52651, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.541997+00', 2002, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52652, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.541997+00', 2863, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 29, 3, NULL, 3, NULL), +(52653, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.51366+00', 2893, 0, FALSE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 27, 3, NULL, 3, NULL), +(52654, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.05283+00', 2224, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52655, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.05283+00', 2252, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(52656, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.14655+00', 2197, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52657, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.14655+00', 2270, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(52658, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.334517+00', 4322, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52659, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.509724+00', 4148, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52660, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.334517+00', 4376, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52661, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.509724+00', 4287, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52662, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.364722+00', 4945, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52663, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.364722+00', 5043, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52664, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:40.974662+00', 3648, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52665, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.562685+00', 3087, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52666, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:40.604708+00', 4074, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52667, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:40.974662+00', 3702, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52668, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.562685+00', 3185, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52669, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:40.604708+00', 4228, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52670, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.392817+00', 3556, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52671, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.392817+00', 3538, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52672, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.176806+00', 4049, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52673, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.176806+00', 4102, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(52674, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.536831+00', 6272, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52675, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.49225+00', 4409, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52676, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:43.229094+00', 2742, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52677, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:39.536831+00', 6634, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52678, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.49225+00', 4670, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52679, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.487633+00', 2036, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52680, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.532931+00', 2025, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52681, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:43.688945+00', 3047, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52682, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.188867+00', 2559, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52683, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.192529+00', 2678, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52684, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.554428+00', 2943, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52685, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.605771+00', 3121, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52686, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.933088+00', 2806, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52687, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.892034+00', 2029, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52688, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.388629+00', 6554, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52689, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.388629+00', 6564, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52690, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.215114+00', 7087, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52691, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.821368+00', 2551, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52692, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.215114+00', 7193, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(52693, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.625196+00', 3920, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52694, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.915906+00', 2342, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52695, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.899167+00', 2782, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52696, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.416968+00', 4334, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52697, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:44.37254+00', 4521, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52698, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.311733+00', 640, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52699, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.38241+00', 575, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52700, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.124844+00', 438, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52701, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.667599+00', 413, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52702, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.377372+00', 1799, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52703, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.375973+00', 1839, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52704, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.383852+00', 1905, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52705, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.407065+00', 1972, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52706, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.234778+00', 1223, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52707, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.192933+00', 1409, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52708, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.266778+00', 1350, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52709, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.348096+00', 1304, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52710, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.260726+00', 1419, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52711, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.56426+00', 1160, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52712, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.662089+00', 1506, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52713, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.25677+00', 1927, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52714, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:23.811436+00', 196, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52715, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:23.810989+00', 210, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52716, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:23.841663+00', 362, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52717, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:23.795312+00', 424, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52718, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:23.787344+00', 474, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52719, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:23.868584+00', 421, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52720, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.159484+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52721, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.081453+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52722, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.997921+00', 535, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52723, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.963782+00', 637, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52724, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.994393+00', 637, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52725, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.141275+00', 506, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52726, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.172124+00', 478, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52727, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.052906+00', 750, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52728, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.028768+00', 989, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52729, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.151514+00', 920, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52730, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.504326+00', 496, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52731, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.37773+00', 1656, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52732, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.527686+00', 1530, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52733, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.684688+00', 1382, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52734, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.849421+00', 1846, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52735, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.361606+00', 2345, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52736, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.349298+00', 2440, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52737, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.851043+00', 1959, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52738, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.299882+00', 2513, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52739, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.317646+00', 2548, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52740, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.489256+00', 2423, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52741, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.454014+00', 2462, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52742, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.282627+00', 2657, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52743, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.868167+00', 2088, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52744, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.87258+00', 2391, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52745, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.87409+00', 2400, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52746, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.698951+00', 379, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52747, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.678672+00', 559, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52748, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:34.328683+00', 119, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52749, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:34.481348+00', 366, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52750, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.759165+00', 1702, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(52751, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.779646+00', 1997, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(52752, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.757472+00', 2083, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52753, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.757472+00', 2062, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52754, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.795465+00', 2084, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52755, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.795465+00', 2112, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52756, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.78982+00', 2385, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52757, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.78982+00', 2647, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52758, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.680046+00', 2768, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52759, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.110356+00', 1401, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52760, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.680046+00', 2854, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52761, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.148519+00', 1421, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52762, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.018627+00', 1198, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52763, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.018627+00', 1209, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(52764, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.472651+00', 1780, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52765, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.640839+00', 1669, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52766, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.12576+00', 1313, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(52767, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.868673+00', 2059, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52768, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.070263+00', 1933, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52769, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.070263+00', 1944, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52770, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.036888+00', 1975, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52771, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.868673+00', 2157, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52772, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.405387+00', 2641, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52773, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.936627+00', 2137, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52774, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.936627+00', 2163, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52775, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.999031+00', 2344, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52776, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.55835+00', 1081, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52777, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.585871+00', 1440, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52778, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.588562+00', 1484, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52779, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.781088+00', 1319, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52780, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.74268+00', 1493, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52781, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:38.009853+00', 1259, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52782, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.699356+00', 5873, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52783, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.699356+00', 5893, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52784, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.429246+00', 4406, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52785, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.723246+00', 6194, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52786, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:33.723246+00', 6215, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(52787, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.383305+00', 4716, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52788, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:05.577414+00', 441, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52789, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:05.514678+00', 502, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52790, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:05.557676+00', 601, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52791, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:05.579794+00', 606, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52792, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:05.648058+00', 576, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52793, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:05.61648+00', 696, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52794, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.338591+00', 244, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52795, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.411295+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52796, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.335835+00', 517, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52797, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.409745+00', 530, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52798, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.44032+00', 576, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52799, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.362201+00', 663, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52800, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.385187+00', 656, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52801, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.403635+00', 677, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52802, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.383335+00', 947, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52803, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.428079+00', 968, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52804, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.369349+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52805, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.373624+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52806, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.353781+00', 414, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52807, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.351874+00', 427, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52808, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.390614+00', 454, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52809, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.376688+00', 482, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52810, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.942802+00', 489, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52811, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.933895+00', 498, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52812, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.075068+00', 487, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52813, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.010965+00', 642, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52814, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.290767+00', 366, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52815, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.293409+00', 425, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52816, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.19569+00', 308, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52817, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.188201+00', 424, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52818, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.179173+00', 482, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52819, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.165904+00', 642, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52820, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.107707+00', 700, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52821, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.197951+00', 657, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52822, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.793034+00', 151, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52823, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.198412+00', 978, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52824, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.233487+00', 944, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52825, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.884762+00', 340, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52826, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.943975+00', 557, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52827, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.270439+00', 1318, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52828, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.092198+00', 495, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52829, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.162931+00', 1503, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52830, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.116617+00', 587, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52831, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.27267+00', 466, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52832, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.434799+00', 403, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52833, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.496189+00', 424, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52834, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.827511+00', 632, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52835, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.973092+00', 541, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52836, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.186833+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52837, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.842557+00', 920, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52838, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.185277+00', 1570, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52839, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.158985+00', 1599, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52840, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.919866+00', 3193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52841, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.096754+00', 4304, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52842, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.234319+00', 3167, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52843, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.917626+00', 3602, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52844, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.159451+00', 4359, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52845, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.10277+00', 4440, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52846, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.033066+00', 3578, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52847, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:11.102593+00', 4594, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52848, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.063877+00', 3662, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52849, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.190868+00', 3622, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52850, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.012288+00', 4666, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52851, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.228443+00', 4513, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52852, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.196848+00', 207, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52853, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.089057+00', 607, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52854, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.303801+00', 449, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52855, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.157068+00', 687, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52856, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.267662+00', 649, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52857, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.821256+00', 114, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52858, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.175928+00', 847, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52859, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.248145+00', 778, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52860, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.283073+00', 794, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52861, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.94284+00', 363, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52862, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.187508+00', 1173, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52863, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.187508+00', 1184, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(52864, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.273717+00', 1170, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(52865, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.988267+00', 490, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52866, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.104801+00', 548, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52867, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.510243+00', 367, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52868, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.431662+00', 526, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52869, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.509859+00', 807, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52870, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.475082+00', 880, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52871, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.053704+00', 563, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52872, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.16298+00', 536, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52873, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.217412+00', 569, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52874, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.155889+00', 642, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52875, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.482516+00', 1341, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52876, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.150272+00', 675, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52877, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.150243+00', 743, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52878, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.510589+00', 1545, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52879, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.971763+00', 392, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52880, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.138641+00', 316, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52881, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.976865+00', 698, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52882, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.389066+00', 388, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52883, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.294323+00', 492, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52884, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.292613+00', 507, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52885, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:05.930196+00', 1781, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52886, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:05.930196+00', 1781, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52887, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:05.932068+00', 2303, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52888, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:05.930494+00', 2394, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52889, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:05.930534+00', 2587, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52890, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:05.934991+00', 2612, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52891, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.937737+00', 484, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52892, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.871344+00', 786, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52893, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.771424+00', 984, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52894, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.740222+00', 1213, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52895, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.997742+00', 1124, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52896, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:09.189028+00', 972, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52897, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:09.060179+00', 1142, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52898, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.581302+00', 1652, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52899, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.792543+00', 2074, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52900, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.871777+00', 2007, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52901, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:34.862049+00', 1505, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52902, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.523282+00', 846, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52903, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.8164+00', 597, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52904, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.06727+00', 1419, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52905, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.474023+00', 1073, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52906, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.896934+00', 729, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52907, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.071127+00', 1567, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52908, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.890688+00', 959, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52909, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.671356+00', 1208, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52910, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.920346+00', 1068, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52911, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.943376+00', 1196, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52912, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.972863+00', 1249, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52913, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.878895+00', 1384, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52914, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.038262+00', 1247, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52915, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.031673+00', 1401, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52916, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:35.995521+00', 1448, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52917, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.551571+00', 223, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52918, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.092979+00', 203, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52919, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.216596+00', 1075, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52920, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.205705+00', 1086, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52921, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.505408+00', 1786, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52922, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.216596+00', 1120, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52923, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.205705+00', 1131, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52924, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.505408+00', 1851, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(52925, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.543633+00', 2105, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52926, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.543633+00', 2176, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(52927, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.548635+00', 3585, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52928, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.573653+00', 3565, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52929, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.155378+00', 3040, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52930, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.277822+00', 2923, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(52931, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.277822+00', 2900, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52932, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.537862+00', 3622, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52933, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.322683+00', 1982, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52934, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.518569+00', 3841, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52935, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.555624+00', 3605, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52936, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.573653+00', 3791, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(52937, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.254256+00', 3136, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52938, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.155378+00', 3250, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52939, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.518569+00', 3858, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(52940, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.146552+00', 3171, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52941, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.548635+00', 3682, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(52942, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.537862+00', 3661, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(52943, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.555624+00', 3900, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52944, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.254256+00', 3227, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(52945, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.146552+00', 3322, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52946, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.800188+00', 2088, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52947, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.827351+00', 2027, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(52948, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.221768+00', 3156, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52949, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.582159+00', 3138, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52950, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.57736+00', 5536, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(52951, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.579479+00', 5509, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52952, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.579479+00', 5499, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52953, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.616361+00', 3141, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52954, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.62934+00', 3681, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52955, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.57736+00', 5507, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52956, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.433582+00', 3919, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(52957, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.665177+00', 3671, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(52958, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.746229+00', 3761, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52959, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:08.164939+00', 3853, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(52960, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:08.060531+00', 4005, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(52961, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.714878+00', 4516, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52962, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.285275+00', 2967, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(52963, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:08.16574+00', 4547, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(52964, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:08.603177+00', 4237, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52965, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.673923+00', 7715, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 16, 2, NULL, 3, NULL), +(52966, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.498645+00', 8671, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52967, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:08.525108+00', 5644, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52968, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.957213+00', 8214, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52969, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742319+00', 12428, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52970, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.687437+00', 8521, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52971, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.623576+00', 8649, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(52972, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.623576+00', 8550, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52973, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.652569+00', 8520, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52974, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742301+00', 12432, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52975, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742319+00', 12538, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52976, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742301+00', 12538, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52977, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.498645+00', 8770, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(52978, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.184942+00', 3050, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52979, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.495942+00', 5054, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52980, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.184942+00', 3094, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(52981, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.495942+00', 5063, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(52982, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.919636+00', 10211, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52983, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.242779+00', 4971, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(52984, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.242779+00', 4902, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52985, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.363707+00', 3828, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(52986, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.830087+00', 11009, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(52987, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.978529+00', 3844, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(52988, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.24608+00', 4732, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(52989, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.830087+00', 11097, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(52990, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.985231+00', 3913, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(52991, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.943401+00', 11250, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(52992, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.976909+00', 4694, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 2, NULL, 3, NULL), +(52993, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.741976+00', 17662, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(52994, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.594772+00', 13714, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52995, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742364+00', 17753, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(52996, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742364+00', 17637, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(52997, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.650516+00', 13941, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(52998, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.741976+00', 17820, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(52999, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.741943+00', 17780, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53000, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.741943+00', 17822, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53001, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.650516+00', 14353, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53002, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.28716+00', 14328, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53003, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:07.621229+00', 12012, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53004, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:06.090471+00', 13976, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 33, 2, NULL, 3, NULL), +(53005, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:08.504736+00', 11130, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53006, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.793305+00', 14416, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53007, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742373+00', 18478, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53008, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.710066+00', 14502, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53009, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:01.742373+00', 18530, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53010, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:07.991064+00', 12611, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53011, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.992758+00', 7771, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53012, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.529513+00', 9514, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53013, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.529513+00', 9580, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53014, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.389506+00', 8974, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53015, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.472173+00', 10930, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53016, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.472173+00', 11022, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53017, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.261423+00', 9341, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53018, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.261423+00', 9321, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53019, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.350318+00', 9383, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53020, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.400908+00', 9750, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53021, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.350318+00', 9372, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53022, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:08.545385+00', 13615, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53023, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.472733+00', 11672, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53024, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.975343+00', 9177, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53025, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.724232+00', 10437, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53026, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.255966+00', 16913, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53027, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.479052+00', 11774, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53028, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.479052+00', 11785, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53029, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.993186+00', 9275, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53030, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.255966+00', 17001, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53031, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.724232+00', 10453, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53032, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.472733+00', 11816, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53033, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.977296+00', 9247, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53034, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.538522+00', 10740, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53035, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:11.538522+00', 10726, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53036, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.454084+00', 9866, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53037, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.950021+00', 11382, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53038, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:10.950021+00', 11414, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53039, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.079131+00', 10264, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53040, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.984039+00', 9393, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53041, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.532516+00', 17077, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53042, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.532516+00', 17100, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53043, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.300991+00', 10397, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 12, 2, NULL, 3, NULL), +(53044, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.985813+00', 9784, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53045, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.588583+00', 20407, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53046, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.588583+00', 20554, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53047, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.965553+00', 20199, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53048, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.965553+00', 20168, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53049, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.984634+00', 13420, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53050, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.984634+00', 13443, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53051, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.332286+00', 14069, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 13, 2, NULL, 3, NULL), +(53052, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.420141+00', 14026, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53053, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:05.769123+00', 20685, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53054, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:12.405417+00', 14219, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53055, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:08.525126+00', 18096, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53056, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.48916+00', 1650, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53057, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.064521+00', 4269, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53058, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.610359+00', 3798, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53059, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.037104+00', 4372, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53060, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.609826+00', 4846, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53061, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.536009+00', 5088, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53062, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.248689+00', 5556, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53063, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.612755+00', 5195, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53064, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.496693+00', 5401, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53065, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.029872+00', 5908, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53066, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.101754+00', 5882, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53067, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.036088+00', 5942, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53068, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.104787+00', 5920, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53069, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.606686+00', 5444, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53070, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.55999+00', 8068, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53071, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:36.57902+00', 8170, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53072, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.843445+00', 1097, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 2, NULL, 3, NULL), +(53073, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.366499+00', 1054, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53074, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.314045+00', 3813, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53075, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.419127+00', 3707, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53076, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.229654+00', 1943, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53077, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.826097+00', 2351, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53078, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.314045+00', 3875, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53079, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.419127+00', 3770, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53080, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.263084+00', 1948, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53081, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.263084+00', 1995, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53082, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.37625+00', 1874, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53083, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.359607+00', 5637, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53084, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.314216+00', 7712, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53085, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.21395+00', 5824, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53086, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.21395+00', 5902, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53087, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.459322+00', 7680, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53088, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.314216+00', 7743, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53089, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.254331+00', 7923, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53090, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.459322+00', 7725, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53091, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.254331+00', 7949, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53092, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.433998+00', 7773, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53093, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:57.433998+00', 7795, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53094, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.184651+00', 7049, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53095, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.866859+00', 8319, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53096, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.72232+00', 7869, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53097, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.60242+00', 8293, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53098, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.357017+00', 7748, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53099, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.866859+00', 8343, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53100, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.269279+00', 7926, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53101, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.211555+00', 7976, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53102, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.200844+00', 7855, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 12, 2, NULL, 3, NULL), +(53103, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.367576+00', 7820, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53104, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.984888+00', 8235, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53105, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.184651+00', 7147, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53106, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.376955+00', 7903, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53107, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.211555+00', 8060, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53108, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.35881+00', 8024, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53109, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.22049+00', 8063, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53110, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.826171+00', 8533, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53111, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.269279+00', 8029, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53112, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.202123+00', 9999, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53113, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.202123+00', 10026, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53114, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.353905+00', 9965, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53115, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.829092+00', 10550, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53116, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:58.829092+00', 10580, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53117, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:59.245554+00', 10170, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53118, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.489436+00', 2707, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53119, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.489436+00', 3073, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53120, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.348904+00', 2863, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53121, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.51655+00', 4433, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53122, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.51655+00', 4416, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53123, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.240639+00', 4691, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53124, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.240639+00', 4707, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53125, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.238425+00', 4696, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53126, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.238425+00', 4715, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53127, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.513649+00', 4474, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53128, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.41474+00', 4584, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53129, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.729319+00', 4518, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53130, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.759357+00', 4576, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53131, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.759357+00', 4523, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53132, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.574008+00', 4851, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53133, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.381347+00', 6145, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53134, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.381347+00', 6161, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53135, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.751225+00', 6016, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53136, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.436964+00', 6409, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53137, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.696863+00', 6120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53138, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.229685+00', 6870, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53139, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.466531+00', 6648, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53140, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.229685+00', 6984, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53141, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.436964+00', 6505, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53142, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.481719+00', 7074, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53143, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.670776+00', 6543, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53144, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.312013+00', 7254, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53145, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.357316+00', 7204, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53146, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.312013+00', 7233, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53147, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.357316+00', 7355, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53148, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.449894+00', 7117, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53149, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.603267+00', 7142, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53150, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.711433+00', 7202, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53151, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.563337+00', 7140, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53152, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.449894+00', 7240, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53153, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:22.916866+00', 7973, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53154, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.292592+00', 7689, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53155, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:22.916866+00', 8044, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53156, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:22.915188+00', 7928, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53157, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:22.915188+00', 8043, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53158, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.701434+00', 7402, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53159, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.292592+00', 7583, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53160, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.553665+00', 8764, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53161, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.553665+00', 8811, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53162, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.715854+00', 8668, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53163, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.458153+00', 8955, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53164, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.458153+00', 8993, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53165, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:23.67742+00', 8807, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53166, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.038291+00', 602, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53167, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.269246+00', 2170, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53168, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.220122+00', 2383, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53169, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.269246+00', 2334, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53170, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.220122+00', 2220, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53171, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.893115+00', 1718, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53172, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.893115+00', 1890, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(53173, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.695201+00', 694, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53174, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.539532+00', 1235, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53175, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.781403+00', 1224, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53176, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.743847+00', 1301, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53177, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.073565+00', 4339, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53178, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.073565+00', 4352, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53179, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.221139+00', 5258, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53180, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.221139+00', 5263, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53181, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.039867+00', 5062, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53182, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.305534+00', 5937, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53183, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.277094+00', 6004, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53184, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.214154+00', 6065, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53185, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.214154+00', 6033, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53186, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.305534+00', 5945, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53187, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.033798+00', 5329, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53188, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.277094+00', 6020, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53189, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.033798+00', 5321, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53190, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.039867+00', 5130, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53191, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.0642+00', 5326, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53192, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.0642+00', 5385, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53193, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.769027+00', 3680, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53194, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.797935+00', 3960, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53195, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.87077+00', 4898, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53196, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.797945+00', 3985, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53197, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.106249+00', 4699, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53198, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.285481+00', 5560, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53199, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.333301+00', 5522, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53200, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.105257+00', 4752, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53201, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.333301+00', 5544, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53202, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.285481+00', 5592, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53203, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.773256+00', 4152, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53204, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.073467+00', 4855, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53205, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.776488+00', 4243, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53206, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:58.418797+00', 3620, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53207, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.739986+00', 7489, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53208, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.778607+00', 7506, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53209, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.24999+00', 9073, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53210, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.24999+00', 9080, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53211, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.986609+00', 9364, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53212, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:55.986609+00', 9363, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53213, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.350445+00', 338, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53214, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.316146+00', 380, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53215, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.298753+00', 690, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53216, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.340762+00', 650, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53217, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.421088+00', 600, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53218, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.390291+00', 740, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53219, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.453557+00', 933, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53220, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.198203+00', 1190, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53221, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.192924+00', 1200, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53222, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.486547+00', 911, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53223, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.218133+00', 1197, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53224, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.4158+00', 1014, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53225, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.837245+00', 885, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53226, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.553223+00', 1174, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53227, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.610145+00', 535, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53228, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.483225+00', 752, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53229, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.40281+00', 860, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53230, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.494088+00', 1809, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53231, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.593527+00', 1666, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53232, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.590259+00', 1752, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53233, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.541603+00', 1016, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53234, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.995364+00', 577, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53235, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.467534+00', 1228, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53236, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.400614+00', 1437, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53237, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.706577+00', 1202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53238, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.556652+00', 1369, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53239, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.211647+00', 1038, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53240, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.766679+00', 1646, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53241, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.856827+00', 1669, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53242, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.578001+00', 1954, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53243, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.52929+00', 2045, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53244, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.653185+00', 1050, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53245, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.566117+00', 2161, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53246, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.551085+00', 1339, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53247, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.044945+00', 1893, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53248, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.535736+00', 1527, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53249, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.624801+00', 2495, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53250, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.008835+00', 2119, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53251, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.75431+00', 1382, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53252, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.659209+00', 1496, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53253, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.110144+00', 1116, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53254, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.999085+00', 2612, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53255, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.489995+00', 3130, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53256, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.99354+00', 2656, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53257, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:36.016786+00', 591, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53258, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.600745+00', 1628, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53259, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.604637+00', 1635, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53260, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.862548+00', 1385, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53261, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.969542+00', 2516, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53262, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.977186+00', 2664, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53263, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.874468+00', 2814, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53264, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:36.008828+00', 2746, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53265, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.615925+00', 3304, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53266, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.597187+00', 3375, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53267, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.850077+00', 3141, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53268, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.773367+00', 3281, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53269, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:36.027573+00', 3075, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53270, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:36.029752+00', 3235, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53271, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.990585+00', 5491, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53272, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:35.975321+00', 5532, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53273, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.750955+00', 1040, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53274, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:09.063616+00', 4217, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53275, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.707244+00', 2589, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53276, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:09.104874+00', 4226, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53277, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.748842+00', 5263, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53278, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.747354+00', 5910, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53279, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:09.028494+00', 7787, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53280, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.809818+00', 6031, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53281, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:09.048366+00', 7797, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53282, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:09.028495+00', 7854, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53283, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:09.056079+00', 7827, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53284, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.814908+00', 6095, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53285, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.813321+00', 6207, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53286, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.77867+00', 6288, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53287, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.799673+00', 9806, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53288, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:10.738681+00', 9855, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53289, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.927483+00', 2059, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53290, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.542318+00', 3445, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53291, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.927483+00', 2112, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53292, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.638219+00', 3390, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53293, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.832912+00', 2154, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53294, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.638219+00', 3347, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53295, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.832912+00', 2208, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53296, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.948656+00', 3124, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53297, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.107512+00', 2932, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53298, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.759893+00', 1300, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53299, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.542318+00', 3499, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53300, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.795447+00', 2883, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53301, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.795447+00', 2920, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53302, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.819034+00', 1906, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53303, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.116772+00', 2690, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53304, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.116772+00', 2716, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53305, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.08709+00', 3557, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53306, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.08709+00', 3567, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53307, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.947739+00', 4934, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53308, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.542283+00', 5444, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53309, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.129045+00', 4853, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53310, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.605485+00', 5519, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53311, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.609517+00', 5514, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53312, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.579867+00', 3504, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53313, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.605485+00', 5504, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53314, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.542283+00', 5473, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53315, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.937566+00', 3210, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53316, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.606898+00', 5520, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 19, 3, NULL, 3, NULL), +(53317, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.609517+00', 5525, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53318, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:21.93752+00', 5233, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53319, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.063773+00', 4135, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53320, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.063773+00', 4142, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53321, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.902841+00', 3315, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53322, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.098106+00', 5129, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53323, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.754053+00', 4508, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53324, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.754053+00', 4501, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53325, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.096883+00', 4520, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53326, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.096883+00', 4327, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53327, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.784687+00', 3869, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53328, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.865323+00', 3806, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53329, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:24.01244+00', 3733, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53330, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.105744+00', 5904, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53331, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.105744+00', 5894, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53332, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.817271+00', 5208, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53333, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.786485+00', 6263, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53334, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:23.52888+00', 5559, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53335, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:22.786485+00', 6305, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53336, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:30.478467+00', 799, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53337, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:30.486962+00', 869, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53338, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:30.460193+00', 911, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53339, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:30.473106+00', 955, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53340, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:30.452482+00', 982, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53341, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:30.406791+00', 1602, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53342, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.760818+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53343, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.834216+00', 277, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53344, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:30.498505+00', 1653, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53345, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.720166+00', 487, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53346, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.794502+00', 466, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53347, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.762015+00', 544, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53348, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.830432+00', 475, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53349, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.742079+00', 583, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53350, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.862604+00', 504, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53351, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.259035+00', 751, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53352, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.534159+00', 521, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53353, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.726598+00', 363, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53354, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.378412+00', 750, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53355, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.749109+00', 505, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53356, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.596901+00', 688, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53357, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.592708+00', 710, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53358, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.564948+00', 741, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53359, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:13.404809+00', 536, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53360, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:13.379957+00', 680, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53361, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:13.386258+00', 746, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53362, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:13.532067+00', 785, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53363, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:13.373654+00', 965, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53364, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:13.430283+00', 922, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53365, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.232485+00', 445, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53366, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.334415+00', 491, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53367, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.323737+00', 672, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53368, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.33461+00', 834, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53369, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.338555+00', 945, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53370, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.312216+00', 994, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53371, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.333213+00', 1169, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53372, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.329178+00', 1225, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53373, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.339045+00', 1695, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53374, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.334495+00', 1706, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53375, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.229434+00', 620, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53376, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.100692+00', 771, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53377, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.035315+00', 860, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53378, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.088946+00', 809, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53379, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.140114+00', 981, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53380, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.120827+00', 1126, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53381, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.066305+00', 403, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53382, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.302943+00', 324, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53383, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.178281+00', 833, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53384, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.298437+00', 778, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53385, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.173615+00', 909, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53386, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.321002+00', 931, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53387, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.296606+00', 1008, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53388, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.416916+00', 960, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53389, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.373443+00', 1222, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53390, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.2906+00', 1348, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53391, X'1e099b6181ff4159686266c71ba6c19ac34570df79077ae990f12f70a1364c60', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:35.801642+00', 286, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53392, X'b927d5074249280d9b6b07524be2c108ebae0b3d835f77bb4423777483444b6e', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:35.761693+00', 310, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53393, X'0987f3f2ae99cececc6e328fca004f2bb843e43c5d4baf86779c4d7a96edd742', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:35.872663+00', 337, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53394, X'3db7f9c656376ed7c372c8a8203cb8d85ef7c1a48fae7b7decebf6bef6783d71', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:35.871946+00', 507, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53395, X'a856eca66adee4dd4fed56f3ad66d6c713389d2ec9ec99936b78e6ec64e9f994', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:35.847689+00', 576, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53396, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.27464+00', 326, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53397, X'7e0fc7582307d7085abc4ea0a8fbb8c18f90a9102fe159686deba17cc8e11d55', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:35.856301+00', 741, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53398, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.440153+00', 390, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53399, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.676171+00', 671, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53400, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.31503+00', 1088, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53401, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.262026+00', 1171, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53402, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.654379+00', 874, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53403, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.31504+00', 1243, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53404, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.440369+00', 1118, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53405, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.375521+00', 1677, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53406, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.325968+00', 1761, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53407, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.936996+00', 2104, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53408, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.936996+00', 2267, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53409, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.267149+00', 1809, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53410, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.236624+00', 6580, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53411, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.024402+00', 4796, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53412, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:54.130683+00', 5710, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53413, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.668588+00', 4266, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53414, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.236624+00', 6642, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53415, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.231254+00', 6713, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53416, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.231254+00', 6733, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53417, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.668588+00', 4325, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53418, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.070611+00', 3879, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53419, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.674881+00', 6547, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53420, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.674881+00', 6557, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53421, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.006398+00', 6219, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53422, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.663238+00', 6967, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53423, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.663238+00', 6991, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53424, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.644168+00', 7045, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53425, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.644168+00', 7066, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53426, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.240333+00', 9477, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53427, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.240333+00', 9452, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53428, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.029209+00', 6898, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53429, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:54.123381+00', 8813, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53430, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.080176+00', 6883, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53431, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.229615+00', 10251, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53432, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.229615+00', 10300, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53433, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:54.125972+00', 9310, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53434, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.057776+00', 8467, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53435, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.672136+00', 7956, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53436, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.032292+00', 7430, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53437, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.23546+00', 10470, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53438, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.672136+00', 7953, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53439, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.672119+00', 8090, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53440, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.229645+00', 10525, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53441, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.229645+00', 10531, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53442, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.076918+00', 8683, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53443, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:53.23546+00', 10472, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53444, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.672119+00', 8086, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53445, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.19938+00', 7708, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53446, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.067081+00', 7953, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53447, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.688867+00', 8450, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53448, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.688867+00', 8462, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53449, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.736912+00', 11796, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53450, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.736912+00', 11801, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53451, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.951665+00', 11583, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53452, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:55.951665+00', 11595, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53453, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.064246+00', 11501, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53454, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:56.256123+00', 11354, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53455, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.703374+00', 1589, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53456, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:49.334835+00', 4315, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53457, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.776838+00', 2908, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53458, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:49.368708+00', 4284, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53459, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.73665+00', 3042, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53460, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.779414+00', 3360, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53461, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.761229+00', 3661, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53462, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:49.335073+00', 5099, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53463, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:49.344044+00', 5050, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53464, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.716311+00', 3705, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53465, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:49.385523+00', 5104, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53466, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.761785+00', 3937, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53467, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:49.336809+00', 5315, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53468, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.727713+00', 3898, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53469, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.71223+00', 5409, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53470, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:50.435089+00', 5721, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53471, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:31.054934+00', 616, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53472, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:31.132727+00', 557, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53473, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.300762+00', 252, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53474, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.184617+00', 505, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53475, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:31.026315+00', 2571, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53476, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:30.979292+00', 2626, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53477, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:30.819646+00', 2856, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53478, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:31.107195+00', 2659, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53479, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.159008+00', 1640, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53480, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.356163+00', 1447, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53481, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.348696+00', 1549, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53482, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.179211+00', 1768, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53483, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.238072+00', 1744, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53484, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.152714+00', 1907, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53485, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.16538+00', 3529, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53486, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.249141+00', 3454, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53487, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:12.583149+00', 519, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53488, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:13.359303+00', 868, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53489, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:13.439784+00', 799, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53490, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:12.574847+00', 1649, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53491, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446498+00', 3191, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53492, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446488+00', 3382, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53493, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446493+00', 3831, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53494, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446481+00', 3884, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53495, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446487+00', 3888, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53496, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446492+00', 3973, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53497, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446494+00', 4142, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53498, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446473+00', 4038, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53499, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446486+00', 4039, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53500, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.446467+00', 4185, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53501, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.009159+00', 631, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53502, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.112941+00', 636, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53503, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.705358+00', 509, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53504, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.69402+00', 626, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53505, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.705365+00', 618, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53506, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.829934+00', 728, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53507, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.190914+00', 546, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53508, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.189304+00', 611, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53509, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.144906+00', 687, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53510, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.204066+00', 709, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53511, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.44648+00', 5636, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53512, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:11.44647+00', 5762, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53513, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:17.311496+00', 586, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53514, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:17.418209+00', 572, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53515, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.515714+00', 2492, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53516, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.710147+00', 2560, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53517, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.479668+00', 3976, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53518, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.512356+00', 3790, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53519, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.691204+00', 2582, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53520, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:00.457724+00', 1850, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53521, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.523135+00', 3789, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53522, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.710147+00', 2894, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53523, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.691204+00', 2913, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53524, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:00.769626+00', 1697, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53525, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.416822+00', 1603, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53526, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.416822+00', 1722, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53527, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.301259+00', 2004, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53528, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.301259+00', 2085, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53529, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:04.021703+00', 1868, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53530, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:04.037159+00', 2578, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53531, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.50904+00', 8715, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53532, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.482017+00', 9148, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53533, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.498869+00', 9960, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53534, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.479668+00', 9981, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53535, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.491495+00', 10366, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53536, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:01.756011+00', 7234, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53537, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.519167+00', 10611, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53538, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:01.756011+00', 7429, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53539, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.484915+00', 10739, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53540, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.925052+00', 9396, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53541, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.925052+00', 9430, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53542, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.494738+00', 10868, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53543, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:00.473727+00', 8937, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53544, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:03.611288+00', 5873, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53545, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.545766+00', 7117, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53546, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.545766+00', 7180, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53547, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.719096+00', 10029, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53548, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.719096+00', 10050, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53549, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:00.421239+00', 9779, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53550, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.685024+00', 10598, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53551, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:04.301135+00', 6003, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53552, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.445916+00', 7875, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53553, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:00.410336+00', 9939, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53554, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.445916+00', 7929, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53555, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.685024+00', 10653, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53556, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:03.581969+00', 6782, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53557, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:00.446049+00', 10036, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53558, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:03.777847+00', 7057, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53559, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.50244+00', 12302, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53560, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.446697+00', 8409, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53561, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.943362+00', 10911, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53562, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.446697+00', 8396, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53563, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:59.943362+00', 10887, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53564, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.479668+00', 12415, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53565, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:03.779664+00', 7219, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53566, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.517969+00', 8558, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53567, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.517969+00', 8565, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53568, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:03.773238+00', 7370, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53569, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.708403+00', 8489, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53570, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.708403+00', 8487, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53571, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:03.691999+00', 9770, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53572, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.497094+00', 15097, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53573, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:03.745694+00', 9844, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53574, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.743282+00', 10965, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53575, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.743282+00', 10972, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53576, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:17:58.479677+00', 15254, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53577, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.316834+00', 11444, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53578, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.316834+00', 11449, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53579, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.945794+00', 766, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53580, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.096911+00', 2193, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53581, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.096916+00', 2224, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53582, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.942143+00', 1398, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53583, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.95315+00', 2239, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53584, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.096903+00', 3270, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53585, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.10259+00', 3300, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53586, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.096906+00', 3345, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53587, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.096897+00', 3373, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53588, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.948838+00', 2603, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53589, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.927334+00', 2694, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53590, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.928998+00', 2716, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53591, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.959942+00', 2715, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53592, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.886239+00', 2824, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53593, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.828679+00', 3500, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53594, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:38.932091+00', 3413, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53595, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.866764+00', 2358, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53596, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.866764+00', 2473, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53597, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:34.727858+00', 1921, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53598, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.283706+00', 2147, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53599, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.797152+00', 1677, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53600, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.469065+00', 1957, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53601, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.283706+00', 2195, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53602, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.469065+00', 1999, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53603, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.958132+00', 4583, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53604, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:36.237765+00', 1307, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53605, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.958132+00', 4602, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53606, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:33.852522+00', 3706, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53607, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.865451+00', 6846, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53608, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.865451+00', 6855, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53609, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.86549+00', 7198, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53610, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.86549+00', 7202, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53611, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:33.92124+00', 6584, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53612, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:34.010707+00', 6713, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53613, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:33.850048+00', 6944, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53614, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.97136+00', 7927, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53615, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.97136+00', 7935, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53616, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.89153+00', 5195, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53617, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.868793+00', 8312, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53618, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.868793+00', 8319, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53619, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.758676+00', 5490, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53620, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:33.865737+00', 7408, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53621, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.758676+00', 5493, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53622, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.261777+00', 6101, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53623, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.261777+00', 6107, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53624, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:36.023949+00', 5347, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53625, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:36.023949+00', 5354, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53626, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:36.210007+00', 5193, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53627, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:34.730987+00', 6689, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53628, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.88808+00', 8622, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53629, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.88808+00', 8624, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53630, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.777305+00', 5783, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53631, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.539865+00', 6055, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53632, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.539865+00', 6058, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53633, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.701096+00', 5909, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53634, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.865449+00', 8930, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53635, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.865449+00', 8941, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53636, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:34.761298+00', 7076, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53637, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:34.746442+00', 9568, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53638, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.880792+00', 11509, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53639, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.969478+00', 11418, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53640, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.880792+00', 11515, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53641, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:33.849305+00', 10566, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53642, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:32.969478+00', 11435, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53643, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.900957+00', 1118, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53644, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.890159+00', 1786, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53645, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:17.017154+00', 1664, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53646, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:17.02014+00', 1677, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53647, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.895298+00', 2224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53648, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.896805+00', 2573, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53649, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.896143+00', 2625, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53650, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:17.083799+00', 2470, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53651, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.899341+00', 2625, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53652, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.943041+00', 2694, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53653, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:17.084916+00', 2533, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53654, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:17.093989+00', 2558, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53655, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:17.069516+00', 2572, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53656, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.890081+00', 2791, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53657, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.894632+00', 3771, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53658, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:16.890087+00', 3818, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53659, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:43.667476+00', 314, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53660, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:43.681076+00', 323, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53661, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:43.550343+00', 524, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53662, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:43.573834+00', 509, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53663, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:43.669991+00', 509, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53664, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:43.596793+00', 585, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53665, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.744598+00', 157, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53666, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.68275+00', 310, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53667, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.742761+00', 543, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53668, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.07256+00', 270, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53669, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.712756+00', 829, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53670, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.722721+00', 852, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53671, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.119604+00', 538, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53672, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.888826+00', 848, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53673, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.713971+00', 1221, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53674, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.120224+00', 1045, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53675, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:05.573357+00', 662, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53676, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:05.463899+00', 772, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53677, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:05.570359+00', 1310, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53678, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:05.475477+00', 1423, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53679, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:05.562094+00', 1343, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53680, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:05.52981+00', 1381, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53681, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.66351+00', 367, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53682, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.620354+00', 675, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53683, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.921803+00', 395, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53684, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.024677+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53685, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.600407+00', 827, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53686, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.626771+00', 862, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53687, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.929669+00', 643, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53688, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.894787+00', 719, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53689, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.92594+00', 1375, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53690, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.969623+00', 1384, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53691, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.679843+00', 4840, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53692, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:14.063852+00', 5526, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53693, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:14.147686+00', 5450, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53694, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.678328+00', 5962, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53695, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.656566+00', 7851, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53696, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.658184+00', 8079, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53697, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:14.058206+00', 7728, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53698, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.666655+00', 8120, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53699, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:14.035235+00', 7780, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53700, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:14.097747+00', 7793, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53701, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.703486+00', 8251, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53702, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.675441+00', 8271, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53703, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.95541+00', 7999, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53704, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.65519+00', 8353, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53705, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.664502+00', 10262, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53706, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:13.692408+00', 10255, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53707, X'7181231f98b110787cf14454992d625b8396f5561f8b95108f0eff8eaba31117', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.250997+00', 858, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53708, X'5bcd8deac523723452380e07f6b810f9820bd68309e221426fbb8607d3f4df11', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.251005+00', 972, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53709, X'f67f3b7e4f96236ee4a78a006abb63b468ee93d580d29c58d17b50eda0abb091', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.251016+00', 1015, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53710, X'83b7991461e2888c377c549d0351949636e5fb108a9b3ab526edb106ef030136', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.250992+00', 1057, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53711, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.7367+00', 808, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53712, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.751502+00', 836, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53713, X'b0ebf70987861898065883a28806a856e992912cddb46075151d4661932541f7', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.250997+00', 1338, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53714, X'dd9235aedfbac81d1220e3cbc4854365f9afc8ff46de8f3b654209c9ec8565bf', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.251002+00', 1580, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53715, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.817916+00', 1034, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53716, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.972681+00', 951, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53717, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.774578+00', 1212, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53718, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.75073+00', 1294, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53719, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.856811+00', 1203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53720, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.808279+00', 1272, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53721, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.96955+00', 1606, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53722, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:42.780694+00', 1792, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53723, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.117957+00', 1421, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53724, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:16.364605+00', 4218, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53725, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:16.364858+00', 4256, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53726, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.19729+00', 2426, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53727, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:17.995571+00', 3338, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53728, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.17866+00', 3365, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53729, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:16.364765+00', 5240, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53730, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.143759+00', 3481, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53731, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.144098+00', 3453, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53732, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.200741+00', 3447, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53733, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:16.399182+00', 5253, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53734, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:16.366544+00', 5359, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53735, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.219352+00', 3493, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53736, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:16.368376+00', 5478, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53737, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.208665+00', 4956, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53738, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:18.231847+00', 4959, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53739, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.512736+00', 1567, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53740, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.242552+00', 2604, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53741, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.246059+00', 2624, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53742, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.485229+00', 2390, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53743, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.47805+00', 2431, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53744, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.495468+00', 2670, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53745, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.543046+00', 2716, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53746, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.252242+00', 3141, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53747, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.242833+00', 3164, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53748, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.249592+00', 3221, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53749, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.521436+00', 2967, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53750, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.242968+00', 3272, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53751, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.518179+00', 3057, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53752, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.502435+00', 3129, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.544826+00', 3970, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53754, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:28.492982+00', 4160, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53755, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.398708+00', 2453, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53756, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.398708+00', 2501, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53757, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:43.141952+00', 1183, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53758, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.464804+00', 4402, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53759, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.824124+00', 5054, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53760, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.390958+00', 4442, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53761, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.464804+00', 4435, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53762, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.831461+00', 5070, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53763, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:42.898526+00', 2986, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53764, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.401867+00', 4431, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53765, X'17c86c9ff70ddffed0ab4cda0c73944321c312afe7751e98fcb5edba475dee1b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.831461+00', 5043, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53766, X'bc48fce5fd389cad12cec8207584033dc7ca95e67bc4265fd1e0af2d0b7b019c', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.824124+00', 5025, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53767, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:42.894634+00', 5095, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53768, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.577993+00', 6420, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53769, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.577993+00', 6426, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53770, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.409862+00', 6964, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53771, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.409862+00', 6970, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53772, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.501439+00', 7024, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53773, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.501439+00', 7036, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53774, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:43.294573+00', 5311, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53775, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.824373+00', 7833, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53776, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.829143+00', 7879, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53777, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.824373+00', 7839, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53778, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.829143+00', 7878, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53779, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.546743+00', 7206, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53780, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.546743+00', 7220, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53781, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:43.293715+00', 5497, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53782, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:42.887523+00', 5930, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53783, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:42.731542+00', 6112, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53784, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.823602+00', 8063, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53785, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.395233+00', 7517, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53786, X'd900a5b548411b282b9252a446e849b2b95ffa38716297d44b6d7e46b4a7f32b', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.823602+00', 8076, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53787, X'abcd898862e71bd6520f26003d974080d945f0d1bb9146997ebf4a1d4d78d4cc', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.204608+00', 7870, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53788, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.823635+00', 8249, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53789, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.185531+00', 7928, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53790, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:43.312256+00', 5796, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53791, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.563591+00', 7576, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53792, X'a21bbeee6b299f10a8db13906b65ecf6b1511685d23dc6fec02fbdac0725d738', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:40.823635+00', 8283, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53793, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.563591+00', 7612, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53794, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.389881+00', 7781, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53795, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.389881+00', 7756, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53796, X'd450a00bf6667cec3cce150393afa2a27cf57ee3bf5c664629c600a2facd2fed', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.391044+00', 7779, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53797, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.576942+00', 9740, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53798, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.576942+00', 9742, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53799, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:43.14458+00', 8204, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53800, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.566321+00', 9851, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53801, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:41.566321+00', 9848, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53802, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:43.293387+00', 8156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53803, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:38.044703+00', 2664, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53804, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:38.044703+00', 2488, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53805, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.609319+00', 3040, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53806, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.85707+00', 6203, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53807, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.14384+00', 6960, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53808, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.85707+00', 6293, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53809, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.797374+00', 8297, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53810, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.143894+00', 8976, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53811, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.143894+00', 9002, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53812, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.711318+00', 8544, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53813, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.711318+00', 8624, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53814, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.648765+00', 8771, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53815, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.776711+00', 8653, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53816, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.631208+00', 8882, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53817, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.631208+00', 8911, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53818, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.795425+00', 9452, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53819, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.795425+00', 9341, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53820, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.864663+00', 9486, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53821, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.56861+00', 9985, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53822, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.56861+00', 9994, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53823, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.52688+00', 10118, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(53824, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.52688+00', 10077, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53825, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.765623+00', 9913, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53826, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.785887+00', 9912, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(53827, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.586681+00', 10408, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53828, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.681935+00', 10303, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53829, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.821738+00', 10173, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53830, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.405199+00', 10596, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53831, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.586681+00', 10464, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53832, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.765623+00', 10206, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(53833, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.480273+00', 10611, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53834, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.821738+00', 10297, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(53835, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.562266+00', 10531, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53836, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.785887+00', 9840, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53837, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.690785+00', 10293, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53838, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.759743+00', 10327, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53839, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.707882+00', 10471, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53840, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.569559+00', 10592, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53841, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.759743+00', 10374, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(53842, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.66055+00', 10630, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53843, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.74024+00', 10465, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53844, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.569559+00', 10725, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(53845, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.765048+00', 13020, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(53846, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.765048+00', 13006, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53847, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:38.036085+00', 12824, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(53848, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:38.036085+00', 12810, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53849, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.810365+00', 13225, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53850, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:37.546061+00', 13520, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53851, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.376861+00', 1169, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53852, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.384503+00', 1962, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53853, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.374227+00', 2362, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53854, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.379719+00', 2368, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53855, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.390562+00', 2391, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53856, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.375539+00', 2426, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53857, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.383241+00', 2525, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53858, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.379467+00', 2572, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53859, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.391909+00', 4334, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53860, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:46.37408+00', 4375, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53861, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:05.533547+00', 1768, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53862, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:05.499934+00', 1803, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53863, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:05.513998+00', 1821, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53864, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:05.505993+00', 1834, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53865, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:05.430046+00', 2091, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53866, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:05.571833+00', 1982, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53867, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.330703+00', 1393, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53868, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.319355+00', 2739, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53869, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.316651+00', 2906, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53870, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.323025+00', 3077, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53871, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.318385+00', 3168, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53872, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.328297+00', 3158, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53873, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.342151+00', 3225, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53874, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.326391+00', 3263, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53875, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.334081+00', 5043, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53876, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:37.307922+00', 5097, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53877, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.516142+00', 371, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53878, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.511281+00', 386, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53879, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.52481+00', 422, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53880, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.513706+00', 484, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53881, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.480818+00', 517, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53882, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.480818+00', 589, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53883, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.953112+00', 1221, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53884, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.953129+00', 1799, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53885, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.957378+00', 1837, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53886, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.956661+00', 2017, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53887, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.990636+00', 1981, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53888, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.958473+00', 2085, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53889, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.993479+00', 2062, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53890, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.978156+00', 2085, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53891, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.991265+00', 2819, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53892, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:19.958824+00', 2859, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53893, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:22.55788+00', 791, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53894, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:22.528718+00', 821, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53895, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:22.550841+00', 893, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53896, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:22.533651+00', 967, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53897, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:22.454362+00', 1079, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53898, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:22.269869+00', 1340, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53899, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.700867+00', 1225, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53900, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.700808+00', 2001, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53901, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.700875+00', 2180, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53902, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.703616+00', 2463, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53903, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.715356+00', 2450, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53904, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.701456+00', 2469, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53905, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.712039+00', 2483, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53906, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.72112+00', 2483, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53907, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.71274+00', 3302, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53908, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:13.720188+00', 3313, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53909, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:52.661888+00', 1697, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53910, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:52.699684+00', 1658, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53911, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:52.677717+00', 1789, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53912, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:52.795065+00', 1980, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53913, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:52.661865+00', 2135, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53914, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:52.701085+00', 2189, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53915, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.114284+00', 1267, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53916, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.114345+00', 2461, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53917, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.121699+00', 2582, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53918, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.114153+00', 2799, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53919, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.127618+00', 2815, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(53920, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.136259+00', 2832, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(53921, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.12967+00', 2886, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53922, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.12019+00', 2911, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(53923, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.115835+00', 3776, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(53924, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:29.133252+00', 3761, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(53925, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:43.212918+00', 2621, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53926, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:42.938694+00', 2895, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53927, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:42.953024+00', 4348, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53928, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:42.997826+00', 4304, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53929, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:42.508679+00', 4901, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(53930, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:42.950718+00', 4439, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(53931, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.551214+00', 1362, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(53932, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.551227+00', 1934, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(53933, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.640662+00', 1904, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(53934, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.55119+00', 2350, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(53935, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.551232+00', 2466, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(53936, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.551237+00', 2531, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(53937, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.551219+00', 2618, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(53938, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.552493+00', 2680, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(53939, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.551223+00', 3772, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(53940, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:52.580705+00', 3765, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(53941, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855242+00', 1545, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(53942, X'b3de9180cbff6d42a80780a06e5e90efbf2181d8eb76160c83f1022e0b703648', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855257+00', 2709, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(53943, X'6195e3680e2ab105f30a1abc0f3b19e573562210c8c2f8ca01f0d94ebb053a03', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855257+00', 3173, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(53944, X'f3d2a4792e7cb129682f523db9006f5ac4ede654f13e43289a5f3b2b7e2655dc', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855263+00', 3369, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(53945, X'28a83145ccbd7fefc86c8f0b6ca2d0db7d3e5b90de31bb35ed483f7f2b2d86df', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855242+00', 3423, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53946, X'f3d441cc9c83afd64158dc50964cd9340199fe5f2d238ceb1f67fcee5579821d', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855257+00', 3423, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(53947, X'11f38c968eb964a4079eb1373154369a48dc68a4416b719272c4766b8773b7da', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855272+00', 3481, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(53948, X'9d07fc4a27824c6a0158946eb0bf59b4053ebc2ac7e955a6b89c3f54c2151fad', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855249+00', 3537, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(53949, X'4c58e76fe5ee7920139f9e4b5ccf2e8ecb09bf65584128ced119da14a92650a8', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855241+00', 4815, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(53950, X'308de4c4c4ed344f17a777c0c7f38cccf96efdfed34c568eba3cca1bbbc2fff5', TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:35.855264+00', 4840, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(53951, X'f4bab0e6e6097a4c97bfc41109f1b4b591460dad8fb7fa17dad9d3a27af77377', TIMESTAMP WITH TIME ZONE '2023-02-10 12:15:17.693911+00', 680, 14, FALSE, 'question', NULL, 1, 14, NULL, NULL, 3, FALSE), +(53952, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.134158+00', 600, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(53953, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.140695+00', 1518, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(53954, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.285345+00', 5746, 35, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(53955, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.207463+00', 5896, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(53956, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.16716+00', 5950, 37, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(53957, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.245435+00', 5788, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(53958, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.163897+00', 5869, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(53959, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.25478+00', 5776, 30, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(53960, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.211534+00', 6023, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(53961, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.203358+00', 6154, 12, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(53962, X'c08b9b39f8a40fd20818d1a3736fc53f629e903d96b00bac67b1719b6a33cd19', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.811524+00', 554, 3, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(53963, X'30ff5b00baa7671e429f0723ed15c9c2ad90e3bc7aa5529592f7d1ac2e559de4', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.819196+00', 510, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(53964, X'e83e0a8202979ea3dfb1fb89ef85155eaca01a4aeda5f334a89dc8e721d7a953', TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.841421+00', 612, 3, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(53965, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 12:23:58.372449+00', 2944, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53966, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 12:23:58.328193+00', 2926, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(53967, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 12:23:58.375968+00', 2940, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(53968, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 12:23:58.327611+00', 2926, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(53969, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 12:23:58.327548+00', 2927, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(53970, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 12:23:58.327582+00', 2926, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(53971, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:01.950418+00', 3044, 3, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(53972, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:01.859057+00', 3224, 4, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(53973, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:01.897656+00', 3308, 4, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(53974, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:01.899398+00', 3349, 6, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(53975, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:01.951327+00', 3329, 11, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(53976, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:01.859547+00', 3497, 6, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(53977, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.438703+00', 3152, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53978, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.257846+00', 3256, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(53979, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.257846+00', 3448, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(53980, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.440722+00', 5766, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53981, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.440995+00', 5748, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(53982, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.440995+00', 5770, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(53983, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.385369+00', 6450, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(53984, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.337723+00', 6603, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53985, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.385369+00', 6427, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(53986, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.337723+00', 6740, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(53987, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.365542+00', 6896, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(53988, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.314255+00', 6963, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53989, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.323347+00', 6938, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(53990, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.314255+00', 7134, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(53991, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.131871+00', 7460, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(53992, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.209193+00', 7380, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(53993, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.209193+00', 7431, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(53994, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.131871+00', 7546, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(53995, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.257804+00', 7435, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(53996, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.287001+00', 8409, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(53997, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.287001+00', 8548, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(53998, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.381182+00', 8315, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(53999, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.464183+00', 8258, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54000, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.464183+00', 8351, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54001, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.179357+00', 8654, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54002, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.381182+00', 8456, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54003, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.126589+00', 8709, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54004, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.179357+00', 8722, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54005, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.224358+00', 8654, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54006, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.125102+00', 8753, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54007, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.126589+00', 8819, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54008, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.262173+00', 8743, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54009, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.31922+00', 9096, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54010, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.185312+00', 8775, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54011, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.145243+00', 9292, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54012, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.304875+00', 9139, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54013, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.304875+00', 9215, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54014, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.334925+00', 9323, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54015, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.237922+00', 9181, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54016, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.276952+00', 8718, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54017, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.334925+00', 9299, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54018, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.347607+00', 9392, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54019, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.338084+00', 13299, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54020, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.338084+00', 13306, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54021, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.441928+00', 13485, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54022, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.441928+00', 13502, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54023, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.444257+00', 14202, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54024, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:47.384756+00', 14321, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54025, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.50884+00', 851, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54026, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:51.961417+00', 1398, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54027, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:47.630194+00', 5729, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54028, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:47.612541+00', 5764, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54029, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:47.633628+00', 6621, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54030, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:47.629196+00', 6625, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54031, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:47.623487+00', 6676, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54032, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.273581+00', 2054, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54033, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.39178+00', 2209, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54034, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.482193+00', 2120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54035, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.459124+00', 2162, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54036, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:47.616496+00', 7086, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54037, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.463036+00', 2349, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54038, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:51.982708+00', 2868, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54039, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.351851+00', 3650, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54040, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:52.07222+00', 3970, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54041, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:07.556342+00', 3106, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54042, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:07.562228+00', 3098, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54043, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:07.56142+00', 3295, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54044, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:07.556839+00', 3309, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54045, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:07.556251+00', 3303, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54046, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:07.558129+00', 3436, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54047, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.046624+00', 787, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54048, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.363202+00', 517, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54049, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.476701+00', 542, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54050, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.0426+00', 978, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54051, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.309845+00', 781, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54052, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.481081+00', 707, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54053, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.21942+00', 1071, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54054, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.07302+00', 1432, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54055, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.202731+00', 2124, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54056, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.034847+00', 2402, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54057, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:06.726854+00', 4899, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54058, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:06.7835+00', 4842, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54059, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:06.797658+00', 4889, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54060, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:06.727454+00', 4901, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54061, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:06.727411+00', 4901, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54062, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:06.788498+00', 5057, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54063, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.417136+00', 729, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54064, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.845127+00', 438, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54065, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.750701+00', 1092, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54066, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.812557+00', 1104, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54067, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.69691+00', 1334, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54068, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.553312+00', 1658, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54069, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.46066+00', 2161, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54070, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.603673+00', 2324, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54071, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.42221+00', 5156, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54072, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:17.435218+00', 5205, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54073, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:07.203115+00', 4799, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54074, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:07.214973+00', 4914, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54075, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:07.606418+00', 4491, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54076, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:07.202593+00', 4893, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54077, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:07.220618+00', 4781, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54078, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:07.202587+00', 4893, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54079, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.482737+00', 433, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54080, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.367496+00', 2017, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54081, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.464386+00', 2279, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54082, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.490858+00', 2400, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54083, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.482989+00', 2471, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54084, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.506486+00', 2464, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54085, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.442499+00', 2680, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54086, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.498606+00', 2766, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54087, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.436191+00', 4845, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54088, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.469377+00', 4837, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54089, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:20.810409+00', 3806, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54090, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:20.810214+00', 3807, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54091, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:20.814633+00', 3986, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54092, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:20.81034+00', 3991, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54093, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:20.810402+00', 4066, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54094, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:20.816217+00', 3984, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54095, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:58.025768+00', 446, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54096, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.882321+00', 2739, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54097, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.857058+00', 3156, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54098, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.808503+00', 3249, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54099, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.88863+00', 3465, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54100, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.897003+00', 3578, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54101, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.917827+00', 3885, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54102, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.889023+00', 3991, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54103, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.912567+00', 6663, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54104, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:57.977505+00', 6605, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54105, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:15.487838+00', 3198, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54106, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:15.484479+00', 3201, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54107, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:15.483769+00', 3339, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54108, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:15.500087+00', 3322, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54109, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:15.485181+00', 3339, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54110, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:15.509593+00', 3415, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54111, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.178277+00', 456, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54112, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.079124+00', 1854, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54113, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.128965+00', 2224, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54114, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.11807+00', 2376, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54115, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.05465+00', 2481, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54116, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.126043+00', 2496, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54117, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.079284+00', 2632, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54118, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:47.478595+00', 3333, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54119, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.062378+00', 4958, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54120, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.038202+00', 4988, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54121, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:45.868591+00', 4085, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54122, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:45.865095+00', 4109, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54123, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:45.865232+00', 4089, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54124, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:45.869633+00', 4084, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54125, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:45.871787+00', 4101, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54126, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:45.866707+00', 4087, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54127, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:22.631791+00', 1811, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54128, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:22.524124+00', 2011, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54129, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:22.589897+00', 2354, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54130, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:22.754647+00', 2508, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54131, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:22.728556+00', 2617, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54132, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:24.148924+00', 1278, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54133, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:24.108373+00', 1537, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54134, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:22.545014+00', 3926, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54135, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:24.069282+00', 3478, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54136, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:22.684983+00', 4947, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54137, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:12.822551+00', 3940, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54138, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:12.819132+00', 3966, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54139, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:12.819145+00', 3944, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54140, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:12.819151+00', 3944, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54141, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:12.819256+00', 3965, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54142, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:12.819246+00', 3944, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54143, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.189818+00', 1423, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54144, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.189818+00', 1523, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(54145, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.339538+00', 1406, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54146, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.608036+00', 11323, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54147, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.418996+00', 13650, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54148, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.418996+00', 11434, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54149, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.630641+00', 17918, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54150, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.630641+00', 17935, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54151, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.360812+00', 18324, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54152, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.360812+00', 18282, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54153, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.971704+00', 18173, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54154, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.716162+00', 18445, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54155, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.716162+00', 18564, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54156, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.550734+00', 15840, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54157, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:53.079268+00', 18340, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54158, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.468871+00', 16249, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54159, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.590196+00', 16228, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54160, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.649471+00', 19173, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54161, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.590196+00', 16319, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54162, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.687009+00', 19489, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54163, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.690803+00', 16509, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54164, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.690803+00', 16549, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54165, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.687009+00', 19599, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54166, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.356914+00', 19919, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54167, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.68868+00', 16656, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54168, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.348006+00', 16992, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54169, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.356914+00', 19990, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54170, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.507158+00', 16857, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54171, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.606648+00', 16843, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54172, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.742762+00', 16989, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54173, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.606648+00', 16901, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54174, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:53.056954+00', 19778, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54175, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.223163+00', 17656, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54176, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:53.056954+00', 19852, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54177, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.61045+00', 20327, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54178, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.223163+00', 17770, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54179, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.672512+00', 20312, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54180, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.61045+00', 20271, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54181, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.672512+00', 20210, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54182, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.970224+00', 20064, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54183, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.801211+00', 17500, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54184, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:53.080996+00', 19975, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54185, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.486949+00', 19955, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54186, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.845594+00', 22730, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54187, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:52.845594+00', 22867, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54188, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.580944+00', 20310, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54189, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.580944+00', 20303, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54190, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:55.147408+00', 20875, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54191, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.874682+00', 5002, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54192, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.896226+00', 7576, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54193, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.875227+00', 8843, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54194, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.909564+00', 8793, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54195, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.901586+00', 8817, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54196, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.899509+00', 9083, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54197, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.875218+00', 9133, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54198, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.875228+00', 9337, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54199, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.925484+00', 9457, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54200, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.882622+00', 9495, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54201, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.877161+00', 9531, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54202, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.896346+00', 9546, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54203, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.875231+00', 9652, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54204, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.895696+00', 9659, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54205, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.906557+00', 14081, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54206, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:22:58.9502+00', 14091, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54207, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.106105+00', 1333, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54208, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.111565+00', 2737, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54209, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.098974+00', 3016, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54210, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.110213+00', 3288, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54211, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.103069+00', 3327, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54212, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.098972+00', 3379, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54213, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.101573+00', 3406, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54214, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.103497+00', 3481, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54215, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.113345+00', 4715, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54216, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:49.116991+00', 4737, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54217, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:54.762808+00', 324, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54218, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:54.687286+00', 550, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54219, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:54.77705+00', 526, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54220, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:54.838533+00', 467, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54221, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:54.777129+00', 537, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54222, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:54.764728+00', 572, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54223, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.908043+00', 697, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54224, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.908401+00', 1687, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54225, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.908407+00', 1823, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54226, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.966495+00', 1846, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54227, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.991134+00', 1847, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54228, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.908433+00', 1984, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54229, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.988199+00', 1932, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54230, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.975919+00', 1956, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54231, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.991284+00', 2695, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54232, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:46.908393+00', 2930, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54233, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:57.465018+00', 7474, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54234, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:57.460017+00', 7526, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54235, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:57.466742+00', 7746, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54236, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:57.460047+00', 7750, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54237, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:57.466854+00', 7890, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54238, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:57.4661+00', 7965, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54239, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.634338+00', 1207, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54240, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.577579+00', 2227, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54241, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.636674+00', 2430, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54242, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.577893+00', 2570, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54243, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.605689+00', 2553, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54244, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.620601+00', 2530, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54245, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.615232+00', 2607, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54246, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.578702+00', 2665, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54247, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.577881+00', 3846, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54248, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:51.607357+00', 3868, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54249, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:58.69311+00', 521, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54250, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:58.702215+00', 516, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54251, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:58.718105+00', 838, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54252, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:58.741081+00', 822, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54253, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:58.683892+00', 874, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54254, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:58.766257+00', 901, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54255, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.341488+00', 1251, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54256, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.3244+00', 2046, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54257, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.329238+00', 2072, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54258, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.341488+00', 2205, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54259, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.337486+00', 2280, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54260, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.337112+00', 2328, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54261, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.324374+00', 2339, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54262, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.352038+00', 2346, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54263, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.344719+00', 3252, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54264, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:50.327393+00', 3315, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54265, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:03.588318+00', 2016, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54266, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:03.61679+00', 2113, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54267, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:03.600928+00', 2257, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54268, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:03.617279+00', 2287, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54269, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:03.588318+00', 2346, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54270, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:03.669339+00', 2424, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54271, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.927482+00', 1535, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54272, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.928056+00', 2511, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54273, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.92755+00', 2633, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54274, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.927471+00', 2790, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54275, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.927567+00', 2941, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54276, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.927537+00', 2935, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54277, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.927426+00', 2980, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54278, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.927558+00', 3163, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54279, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.928037+00', 4135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54280, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:54.927491+00', 4171, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54281, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.215881+00', 542, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54282, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.423234+00', 363, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54283, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.460506+00', 437, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54284, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.450697+00', 531, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54285, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.461654+00', 519, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54286, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.443024+00', 573, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54287, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.292762+00', 805, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54288, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.297689+00', 2529, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54289, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.259503+00', 2646, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54290, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.255982+00', 2829, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54291, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.264669+00', 3337, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54292, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.264485+00', 3337, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54293, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.256201+00', 3445, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54294, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.283292+00', 3435, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54295, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.256183+00', 6437, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54296, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:30.256771+00', 6519, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54297, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.166282+00', 522, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54298, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.222335+00', 604, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54299, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.021799+00', 817, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54300, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.222542+00', 636, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54301, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.170355+00', 761, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54302, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.167352+00', 768, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54303, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.828863+00', 2149, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54304, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.774722+00', 4329, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54305, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.848825+00', 4377, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54306, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.864823+00', 4722, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54307, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.800798+00', 5075, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54308, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.894585+00', 5446, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54309, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.774857+00', 5561, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54310, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.774357+00', 5573, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54311, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.885464+00', 6995, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54312, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:31.821731+00', 7095, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54313, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:44.396592+00', 595, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54314, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:44.469406+00', 644, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54315, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:44.372547+00', 787, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54316, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:44.364732+00', 905, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54317, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:44.344047+00', 979, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54318, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:44.462072+00', 864, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54319, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.309765+00', 1334, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54320, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.300406+00', 2610, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54321, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.295509+00', 2754, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54322, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.293402+00', 3138, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54323, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.307377+00', 3209, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54324, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.306373+00', 3303, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54325, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.293414+00', 3369, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54326, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.293398+00', 3458, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54327, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.293397+00', 4837, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54328, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:31.297862+00', 4887, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54329, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.151982+00', 479, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54330, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.188228+00', 518, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54331, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.185531+00', 558, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54332, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.079192+00', 696, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54333, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.166347+00', 609, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54334, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.224686+00', 649, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54335, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.281511+00', 2565, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54336, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.28152+00', 4316, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54337, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.281677+00', 4504, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54338, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.291202+00', 4769, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54339, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.33136+00', 4805, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54340, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.332705+00', 4804, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54341, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.293361+00', 4927, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54342, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.309912+00', 4975, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54343, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.298083+00', 6370, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54344, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:31.28151+00', 6435, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54345, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:56.392624+00', 5369, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54346, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:56.384813+00', 5415, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54347, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:56.311965+00', 5611, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54348, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:56.324777+00', 5657, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54349, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:56.352668+00', 5739, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54350, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:56.354707+00', 5747, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54351, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.726818+00', 1063, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54352, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.475041+00', 1299, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54353, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.475041+00', 1375, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(54354, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.563586+00', 3497, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54355, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:34.995279+00', 3170, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54356, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.016474+00', 4083, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54357, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.652903+00', 3373, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54358, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.652903+00', 3476, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54359, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.205495+00', 3885, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54360, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.130594+00', 3954, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54361, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.016474+00', 4165, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54362, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:34.995279+00', 4119, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54363, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.733172+00', 5620, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54364, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.733172+00', 5644, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54365, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.533139+00', 5929, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54366, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.415067+00', 6166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54367, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.715031+00', 6211, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54368, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.715031+00', 6199, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54369, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.519361+00', 6453, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54370, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.519361+00', 6484, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54371, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.275456+00', 7004, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54372, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.01669+00', 7403, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54373, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:34.995266+00', 7653, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54374, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.01669+00', 7362, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54375, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.131095+00', 7513, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54376, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:34.995266+00', 7815, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54377, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.549982+00', 7094, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54378, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.131095+00', 7689, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54379, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.132917+00', 7684, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54380, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.132917+00', 7752, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54381, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.714729+00', 7192, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54382, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.374846+00', 7609, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54383, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.480955+00', 7522, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54384, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:34.995266+00', 7825, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54385, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.142049+00', 7668, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54386, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.44168+00', 7441, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54387, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.727692+00', 7804, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54388, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.549982+00', 7170, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54389, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.017276+00', 8305, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54390, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.653401+00', 7587, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54391, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.374846+00', 7625, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54392, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.653401+00', 7469, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54393, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.527639+00', 10553, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54394, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.715723+00', 10438, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54395, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.715723+00', 10440, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54396, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.719256+00', 10859, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54397, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.719256+00', 10844, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54398, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:35.401361+00', 11292, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54399, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.49893+00', 772, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54400, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.181727+00', 2372, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54401, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.719792+00', 1833, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54402, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:35.038264+00', 1559, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54403, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.984635+00', 3091, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54404, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.923074+00', 3203, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54405, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:35.051009+00', 3168, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54406, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.62444+00', 3756, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54407, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.653451+00', 3770, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54408, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.917901+00', 3535, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54409, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.712747+00', 3752, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54410, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.753724+00', 3723, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54411, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.854029+00', 3657, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54412, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:34.905519+00', 3650, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54413, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:35.013363+00', 4824, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54414, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:35.06214+00', 4840, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54415, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.881889+00', 968, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54416, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.860997+00', 1994, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54417, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.819141+00', 2088, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54418, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.829563+00', 2077, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54419, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.897885+00', 2417, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54420, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.878142+00', 2658, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54421, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.865985+00', 2711, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54422, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.801952+00', 2819, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54423, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.889029+00', 2740, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54424, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.816121+00', 2829, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54425, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.801968+00', 2841, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54426, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.878568+00', 2793, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54427, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.841305+00', 2873, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54428, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.872056+00', 2879, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54429, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.89+00', 3806, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54430, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:35.876323+00', 3826, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54431, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.531602+00', 1627, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54432, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.507017+00', 3250, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54433, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.51013+00', 3258, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54434, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.536943+00', 3234, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54435, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.516019+00', 4008, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54436, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.508137+00', 4417, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54437, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.544007+00', 4381, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54438, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.507102+00', 4516, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54439, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.516791+00', 4505, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54440, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.507099+00', 4559, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54441, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.53964+00', 4537, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54442, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.507113+00', 4625, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54443, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.529771+00', 4669, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54444, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.546017+00', 4714, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54445, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.508876+00', 6082, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54446, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:36.511589+00', 6139, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54447, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.579287+00', 1098, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54448, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.554933+00', 1938, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54449, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.554922+00', 1940, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54450, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.574312+00', 1919, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54451, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.571246+00', 2583, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54452, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.559247+00', 3059, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54453, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.58467+00', 3144, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54454, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.55492+00', 3173, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54455, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.558666+00', 3256, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54456, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.57844+00', 3337, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54457, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.560475+00', 3359, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54458, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.567456+00', 3343, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54459, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.554898+00', 3401, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54460, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.577646+00', 3471, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54461, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.556268+00', 5138, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54462, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:35.570522+00', 5159, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54463, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.183272+00', 2542, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54464, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.200491+00', 3745, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54465, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.102587+00', 3874, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54466, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.266381+00', 3714, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54467, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.225265+00', 4681, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54468, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.089418+00', 5239, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54469, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.11403+00', 5355, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54470, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.16985+00', 5305, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54471, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.136863+00', 5429, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54472, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.065242+00', 5519, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54473, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.073756+00', 5527, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54474, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.067071+00', 5556, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54475, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.160809+00', 5474, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54476, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.108756+00', 5530, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54477, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.083064+00', 6774, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54478, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:36.241847+00', 6665, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54479, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.192213+00', 2943, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(54480, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.192213+00', 2846, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54481, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.591568+00', 2508, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54482, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.314206+00', 4098, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54483, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.200967+00', 4219, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54484, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.319614+00', 4232, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54485, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.249332+00', 4276, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54486, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.200967+00', 4349, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54487, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.171998+00', 4329, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54488, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.171998+00', 4423, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54489, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.171995+00', 4583, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54490, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.249332+00', 4521, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54491, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.302688+00', 9038, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54492, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.302688+00', 9150, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54493, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.644826+00', 8801, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54494, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.28571+00', 9912, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54495, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.657488+00', 9608, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54496, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.236842+00', 9960, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54497, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.28571+00', 10003, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54498, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.201813+00', 10134, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54499, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.330052+00', 10005, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54500, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.236842+00', 10206, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54501, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.201822+00', 10257, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54502, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.201813+00', 10254, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54503, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.330052+00', 10114, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54504, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.340012+00', 10152, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54505, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.287471+00', 10190, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54506, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.212503+00', 10311, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54507, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.180158+00', 10298, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54508, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.56527+00', 9983, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54509, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.284017+00', 10286, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54510, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.234919+00', 10352, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54511, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.201822+00', 10393, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54512, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.294833+00', 10305, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54513, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.284017+00', 10353, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54514, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.212503+00', 10435, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54515, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.334242+00', 10320, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54516, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.334242+00', 10380, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54517, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.316409+00', 10453, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54518, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.337335+00', 10529, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54519, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.337335+00', 10540, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54520, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.623813+00', 10380, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54521, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.343564+00', 12443, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54522, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.261476+00', 12684, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54523, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.287917+00', 12969, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54524, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.288786+00', 12970, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54525, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.287917+00', 12976, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54526, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:48.288786+00', 13017, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54527, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.646861+00', 1304, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54528, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.652927+00', 2511, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54529, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.348977+00', 2816, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54530, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.34502+00', 2818, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54531, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.53618+00', 3345, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54532, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.842718+00', 3377, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54533, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.636785+00', 3629, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54534, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.340145+00', 3968, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54535, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.378396+00', 3924, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54536, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.644631+00', 3782, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54537, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.61683+00', 3822, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54538, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.601258+00', 3915, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54539, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.368536+00', 4310, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54540, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.626317+00', 4101, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54541, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.627713+00', 6229, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54542, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:49.84075+00', 5979, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54543, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.85379+00', 1036, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54544, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.840398+00', 2047, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54545, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.950771+00', 1937, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54546, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.839322+00', 2089, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54547, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.956103+00', 2431, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54548, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.89056+00', 2800, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54549, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.898444+00', 3121, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54550, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.839363+00', 3433, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54551, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.959914+00', 3310, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54552, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.919781+00', 3377, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54553, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.85863+00', 3446, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54554, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.889913+00', 3464, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54555, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.871424+00', 3500, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54556, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.839387+00', 3540, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54557, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.894672+00', 5943, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54558, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:48.926122+00', 6014, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54559, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.725457+00', 1544, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54560, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.721008+00', 2040, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54561, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.622814+00', 2139, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54562, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.762894+00', 2008, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54563, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.731344+00', 2584, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54564, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.622793+00', 2973, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54565, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.771701+00', 2843, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54566, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.763431+00', 2832, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54567, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.635086+00', 2960, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54568, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.708925+00', 2890, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54569, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.728172+00', 2867, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54570, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.781785+00', 2889, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54571, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.741327+00', 2933, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54572, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.684823+00', 3035, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54573, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.782592+00', 3842, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54574, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:49.750066+00', 3945, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54575, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.781157+00', 1790, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54576, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.781157+00', 1618, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54577, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.777847+00', 1677, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54578, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.599292+00', 4123, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54579, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.515101+00', 5246, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54580, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.515101+00', 5164, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54581, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.785402+00', 3928, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54582, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.506261+00', 5153, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54583, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.415002+00', 5307, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54584, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.599292+00', 4207, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54585, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.949564+00', 6056, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54586, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.783453+00', 6298, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54587, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.783453+00', 6347, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54588, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.778161+00', 6448, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54589, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.778161+00', 6485, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54590, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.788664+00', 6494, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54591, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.882535+00', 6718, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54592, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.83271+00', 7056, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54593, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.83271+00', 7072, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54594, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.815944+00', 7089, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54595, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.815944+00', 7108, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54596, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.777862+00', 7235, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54597, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.889843+00', 7593, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54598, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.816016+00', 7293, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54599, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.415041+00', 9117, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54600, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.875219+00', 7670, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54601, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.51811+00', 9055, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54602, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.816016+00', 7260, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54603, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.48498+00', 9056, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54604, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.889843+00', 7696, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54605, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.416754+00', 8081, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54606, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.416754+00', 8109, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54607, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.863282+00', 7649, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54608, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:50.527547+00', 9051, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54609, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.890564+00', 11592, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54610, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.776822+00', 11782, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54611, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.872322+00', 11719, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54612, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.872322+00', 11725, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54613, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.783442+00', 11863, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54614, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:51.783442+00', 11869, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54615, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.516167+00', 980, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54616, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:52.01199+00', 1391, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54617, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.511074+00', 1897, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54618, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.966846+00', 1438, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54619, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.511167+00', 2524, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54620, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.514002+00', 2700, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54621, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.939898+00', 2299, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54622, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.51124+00', 2830, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54623, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.511154+00', 2830, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54624, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.511133+00', 2854, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54625, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.947536+00', 2451, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54626, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.511253+00', 2920, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54627, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:52.012043+00', 2428, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54628, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.998254+00', 2451, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54629, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.522354+00', 3560, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54630, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:51.51126+00', 3611, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54631, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.472998+00', 1823, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54632, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.472998+00', 1905, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54633, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.730322+00', 1693, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 2, NULL, 3, NULL), +(54634, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.706942+00', 2550, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54635, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.956399+00', 3316, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54636, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.108519+00', 3171, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54637, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.706942+00', 2581, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54638, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.956399+00', 3340, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54639, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.540809+00', 3769, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54640, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.944302+00', 3366, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54641, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.433941+00', 2885, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54642, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.540809+00', 3809, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54643, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.108519+00', 3244, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54644, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.433941+00', 2941, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54645, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.944302+00', 3459, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54646, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.944155+00', 6769, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54647, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.944155+00', 6775, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54648, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.772576+00', 6055, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54649, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.772576+00', 6085, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54650, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.728973+00', 6732, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54651, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.975361+00', 7486, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54652, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.975361+00', 7484, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54653, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.728973+00', 6796, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54654, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.704871+00', 7867, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54655, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.704871+00', 7889, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54656, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.769536+00', 6835, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54657, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.769536+00', 6841, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54658, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.728307+00', 6890, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54659, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.728307+00', 6941, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54660, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.137724+00', 7586, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54661, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.137724+00', 7591, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54662, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.972842+00', 7851, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54663, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.972842+00', 7857, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54664, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.544754+00', 8291, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54665, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.544754+00', 8303, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54666, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.452661+00', 7462, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54667, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.548062+00', 8385, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54668, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.548062+00', 8389, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54669, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.942003+00', 8021, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54670, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.477573+00', 8479, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54671, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.942003+00', 8025, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54672, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.452661+00', 7518, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54673, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.477573+00', 8497, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54674, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.960745+00', 8023, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54675, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.706797+00', 7287, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54676, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.73343+00', 7254, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54677, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.73343+00', 7267, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54678, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.960745+00', 8021, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54679, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.706797+00', 7304, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54680, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.956619+00', 8099, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54681, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.47487+00', 7585, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54682, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:42.956619+00', 8103, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54683, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.174519+00', 7888, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54684, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.174519+00', 7883, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54685, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.47487+00', 7598, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54686, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.193221+00', 10075, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54687, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.193221+00', 10115, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54688, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.424732+00', 9922, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54689, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.424732+00', 9915, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54690, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.421158+00', 10173, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54691, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.421158+00', 10180, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54692, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.148066+00', 10520, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54693, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:43.148066+00', 10523, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54694, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.964811+00', 1237, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54695, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.979501+00', 1237, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(54696, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.979501+00', 1210, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54697, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.807984+00', 2664, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54698, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.807984+00', 2672, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54699, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.918454+00', 2583, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54700, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.835139+00', 3422, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54701, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.835139+00', 3425, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54702, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.81675+00', 3657, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54703, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.807991+00', 3863, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54704, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.807991+00', 3903, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54705, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.814901+00', 3979, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54706, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.860786+00', 3953, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54707, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.808199+00', 4083, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54708, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.808199+00', 4111, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54709, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.91302+00', 4035, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54710, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.91302+00', 4033, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54711, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.820758+00', 4242, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54712, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.813719+00', 4308, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54713, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.928928+00', 4246, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54714, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.820758+00', 4268, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54715, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.813719+00', 4262, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54716, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.814145+00', 4464, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54717, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:31.104763+00', 4183, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54718, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.980499+00', 5537, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54719, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.980499+00', 5554, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54720, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.808189+00', 5733, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54721, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.808189+00', 5746, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54722, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.967262+00', 5584, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54723, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:30.873471+00', 5786, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54724, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:35.923792+00', 1075, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54725, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:35.923792+00', 1085, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54726, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.180733+00', 977, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54727, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.058429+00', 1116, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54728, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.051647+00', 1160, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54729, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.058429+00', 1246, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54730, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.076194+00', 1142, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54731, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.075879+00', 1320, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54732, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.162343+00', 1313, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54733, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.195322+00', 1288, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54734, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.162343+00', 1356, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54735, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.298423+00', 1332, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54736, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.167434+00', 1462, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54737, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.065125+00', 1579, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54738, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.298423+00', 1349, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54739, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.065125+00', 1627, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54740, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.316881+00', 1398, 0, FALSE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 27, 3, NULL, 3, NULL), +(54741, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.172007+00', 1858, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54742, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.200879+00', 2942, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54743, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.145052+00', 3189, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54744, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.181277+00', 3480, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54745, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.18855+00', 3710, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54746, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.134167+00', 3780, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54747, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.143918+00', 3790, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54748, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.12981+00', 3843, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54749, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.10989+00', 5564, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54750, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:16.109339+00', 5668, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54751, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:30.833131+00', 432, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54752, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:30.837315+00', 470, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54753, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:30.83649+00', 695, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54754, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:30.834987+00', 718, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54755, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:30.820221+00', 791, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54756, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:30.837187+00', 810, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54757, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.716772+00', 2817, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54758, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.754879+00', 4611, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54759, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.658929+00', 5421, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54760, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.943108+00', 5617, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54761, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.658911+00', 6037, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54762, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.71669+00', 6128, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54763, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.692272+00', 6210, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54764, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.727441+00', 6264, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54765, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:17.037858+00', 7735, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54766, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:16.783309+00', 8181, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54767, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:31.647137+00', 717, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54768, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:31.363262+00', 1001, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54769, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:31.363304+00', 1278, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54770, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:31.363187+00', 1325, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54771, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:31.363267+00', 1391, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54772, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:31.363248+00', 1500, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54773, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.790062+00', 1311, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54774, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.741852+00', 2036, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54775, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.741858+00', 2177, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54776, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.785202+00', 2464, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54777, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.773893+00', 2476, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54778, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.780554+00', 2488, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54779, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.773745+00', 2478, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54780, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.768606+00', 2569, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54781, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.766134+00', 3162, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54782, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:18.776925+00', 3177, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54783, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:30.101893+00', 273, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54784, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:30.213837+00', 293, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54785, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:32.049435+00', 519, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54786, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:32.053794+00', 560, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54787, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:32.069792+00', 569, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54788, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:31.99817+00', 794, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54789, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.713054+00', 2778, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54790, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.713527+00', 2795, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54791, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.713054+00', 2982, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(54792, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.687396+00', 8845, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54793, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.687396+00', 8798, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54794, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.995186+00', 6628, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54795, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.63811+00', 9323, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54796, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.63811+00', 9303, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54797, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.713303+00', 7379, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54798, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.713303+00', 7403, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54799, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.706249+00', 7623, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54800, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.664849+00', 9804, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54801, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.655183+00', 9824, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54802, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.842036+00', 7624, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54803, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.655183+00', 9919, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54804, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.706249+00', 7791, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54805, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.781469+00', 9820, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54806, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.875811+00', 7788, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54807, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.63779+00', 11121, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54808, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.63779+00', 11140, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54809, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.608371+00', 11467, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54810, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.657475+00', 11437, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54811, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.616068+00', 11324, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54812, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.981071+00', 8886, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54813, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.616068+00', 11238, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54814, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.590194+00', 11802, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54815, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.981071+00', 9214, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54816, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.721812+00', 9398, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 3, NULL), +(54817, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.659653+00', 11824, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54818, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.649178+00', 12331, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54819, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:30.282937+00', 9717, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54820, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.56881+00', 12350, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54821, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.944619+00', 9539, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54822, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:30.336651+00', 9758, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54823, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.590194+00', 11853, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54824, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.365204+00', 10976, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54825, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.365204+00', 11006, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54826, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.738341+00', 10532, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54827, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.944619+00', 9585, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54828, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:27.56881+00', 12463, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54829, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.788077+00', 10197, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54830, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.713879+00', 13907, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54831, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.713879+00', 13914, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54832, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.721394+00', 14209, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54833, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.720518+00', 14198, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54834, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.75661+00', 14191, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54835, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:29.721394+00', 14257, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54836, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.740643+00', 2067, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54837, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.702498+00', 4257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54838, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.702873+00', 5930, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54839, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.896722+00', 5716, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54840, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.860724+00', 5772, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54841, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.723971+00', 6319, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54842, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.660488+00', 6386, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54843, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.656914+00', 6385, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54844, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.79057+00', 6250, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54845, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.749944+00', 6372, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54846, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.673363+00', 6618, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54847, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.872435+00', 6541, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54848, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.820924+00', 6727, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54849, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.758611+00', 6829, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54850, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.812755+00', 9421, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54851, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:27.781786+00', 9672, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54852, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.712081+00', 1525, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54853, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.88546+00', 2845, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54854, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.740313+00', 3460, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54855, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.894362+00', 3339, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54856, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.873735+00', 3372, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54857, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.88745+00', 3881, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54858, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.734863+00', 4039, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54859, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.712003+00', 4056, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54860, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.72258+00', 4076, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54861, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.73191+00', 4144, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54862, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.879861+00', 4097, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54863, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.901939+00', 4167, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54864, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.8757+00', 4273, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54865, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.858413+00', 4337, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54866, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.859454+00', 6751, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54867, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:55.955126+00', 6716, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54868, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.541605+00', 5358, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54869, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.541605+00', 5493, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(54870, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.738939+00', 2562, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54871, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.088905+00', 5696, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54872, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.60232+00', 5192, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54873, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.088905+00', 5727, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54874, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.744373+00', 10136, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54875, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:16.073363+00', 7769, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54876, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.743438+00', 10139, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54877, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.744373+00', 10178, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54878, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.743438+00', 10123, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54879, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:15.045638+00', 9394, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54880, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:17.984044+00', 12095, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54881, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:17.984044+00', 12079, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54882, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.717395+00', 11358, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54883, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:15.782843+00', 15173, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54884, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.292553+00', 12793, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54885, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.292553+00', 12817, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54886, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.575064+00', 16565, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54887, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.296662+00', 12875, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54888, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.107902+00', 17112, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54889, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.107902+00', 17135, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54890, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.677683+00', 12664, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54891, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.28151+00', 13131, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54892, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.058075+00', 13355, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54893, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.28151+00', 13157, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54894, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.997252+00', 16484, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54895, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.743466+00', 17854, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54896, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.997252+00', 16516, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54897, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.743466+00', 17756, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54898, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.925556+00', 12564, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54899, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.340675+00', 13339, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54900, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:16.045442+00', 15625, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54901, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:16.169056+00', 15598, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54902, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.860751+00', 17915, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54903, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:16.169056+00', 15652, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54904, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:13.860751+00', 17950, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54905, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.094087+00', 17717, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54906, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.298344+00', 13533, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54907, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.298344+00', 13570, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54908, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:14.094087+00', 17837, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(54909, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.629986+00', 13433, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54910, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.316096+00', 19211, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54911, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.033924+00', 19590, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54912, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.058199+00', 19660, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54913, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.058199+00', 19685, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54914, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.0182+00', 19764, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54915, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:18.0182+00', 19773, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54916, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.919955+00', 1496, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54917, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.919955+00', 1655, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54918, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.998056+00', 2145, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54919, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.351485+00', 3856, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54920, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.998056+00', 2228, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54921, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.442384+00', 3779, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54922, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.351485+00', 3990, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(54923, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.461129+00', 2946, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54924, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.043368+00', 3354, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54925, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.442384+00', 3931, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54926, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.339567+00', 1339, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54927, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.295215+00', 1109, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54928, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.881142+00', 6515, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54929, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.881142+00', 6529, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54930, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:06.293787+00', 6624, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54931, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:06.293787+00', 6635, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54932, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.25694+00', 4983, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54933, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.779888+00', 7763, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54934, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.779888+00', 7788, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54935, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.060559+00', 8618, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54936, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.947367+00', 8771, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54937, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.947367+00', 8764, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54938, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.121885+00', 8650, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54939, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.443079+00', 9387, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54940, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.443079+00', 9394, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(54941, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.351363+00', 9505, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54942, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.351363+00', 9527, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54943, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.138397+00', 8792, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54944, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.351393+00', 9588, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54945, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:04.351393+00', 9596, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54946, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.317238+00', 6775, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54947, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.068735+00', 6064, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54948, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.256578+00', 5801, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54949, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:05.097775+00', 9151, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54950, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.317238+00', 6859, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54951, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:06.271334+00', 8287, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54952, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.293283+00', 6330, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54953, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:06.271334+00', 8354, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54954, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.297557+00', 6419, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54955, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.019712+00', 6819, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54956, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.2287+00', 7767, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54957, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.2287+00', 7823, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(54958, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.289057+00', 10252, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54959, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:06.131049+00', 11424, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54960, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.222092+00', 9316, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(54961, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.289057+00', 10281, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(54962, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:06.131049+00', 11432, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(54963, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.091026+00', 9489, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(54964, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.146293+00', 1587, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54965, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.146293+00', 1680, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(54966, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.379025+00', 582, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(54967, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.210433+00', 4033, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54968, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.210433+00', 4039, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(54969, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:44.09456+00', 2168, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(54970, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.106407+00', 6169, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54971, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.020999+00', 5266, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(54972, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.106407+00', 6189, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(54973, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.936227+00', 3340, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54974, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.936227+00', 3387, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54975, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:44.135514+00', 2194, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(54976, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.255204+00', 7597, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(54977, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.255204+00', 7595, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54978, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.131177+00', 7831, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54979, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.131177+00', 7838, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(54980, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.144197+00', 8309, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54981, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.144197+00', 8332, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(54982, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.078941+00', 7514, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(54983, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.291355+00', 7862, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(54984, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.230187+00', 8952, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54985, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.92279+00', 8308, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(54986, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.230187+00', 9016, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(54987, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.833275+00', 8560, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(54988, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.262723+00', 9179, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(54989, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.226805+00', 7222, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54990, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.262723+00', 9184, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(54991, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.226805+00', 7246, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(54992, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.847735+00', 6641, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(54993, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.622193+00', 6883, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(54994, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.622193+00', 6879, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(54995, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.847735+00', 6657, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(54996, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:43.714604+00', 5856, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(54997, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.420653+00', 8346, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(54998, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:44.191687+00', 5573, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(54999, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:43.706384+00', 6056, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55000, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.360995+00', 8453, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55001, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.625219+00', 7161, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55002, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.196832+00', 9591, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55003, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:42.625219+00', 7199, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55004, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.196832+00', 9682, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55005, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:43.398401+00', 6501, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55006, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.88578+00', 12124, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55007, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.113662+00', 12928, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55008, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.113662+00', 12931, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55009, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.978614+00', 12122, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55010, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.168486+00', 13048, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55011, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:40.168486+00', 13057, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55012, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.675851+00', 2197, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55013, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.640075+00', 4541, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55014, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.673036+00', 7474, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55015, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.667161+00', 7481, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55016, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.642556+00', 7588, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55017, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.672391+00', 8114, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55018, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.640078+00', 8137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55019, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.656711+00', 8115, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55020, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.69997+00', 8079, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55021, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.650657+00', 8247, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55022, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.646507+00', 8273, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55023, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.640089+00', 8610, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55024, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.701164+00', 8793, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55025, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.695757+00', 9018, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55026, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.660061+00', 13329, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55027, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:57.664272+00', 13498, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55028, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.78276+00', 1040, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55029, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:23.149798+00', 5591, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55030, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:23.053855+00', 5717, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55031, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.706887+00', 4109, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55032, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.597482+00', 5960, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55033, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.831562+00', 6165, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55034, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.922718+00', 6114, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55035, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:23.00851+00', 8102, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55036, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:23.088147+00', 8033, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55037, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:23.073735+00', 8147, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55038, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:23.00295+00', 8247, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55039, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.835532+00', 6440, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55040, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.712293+00', 6673, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55041, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.544673+00', 6874, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55042, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.834523+00', 8812, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55043, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:24.47676+00', 9253, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55044, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.696667+00', 1126, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55045, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.572679+00', 2755, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55046, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:11.491652+00', 3864, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55047, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:11.446775+00', 3905, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55048, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.473417+00', 3741, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55049, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.573707+00', 3746, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55050, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:11.446748+00', 5138, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55051, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.477109+00', 4234, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55052, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.684326+00', 4046, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55053, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.044596+00', 4719, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55054, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:11.879448+00', 4891, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55055, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.696541+00', 4101, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55056, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:11.446784+00', 5371, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55057, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.652617+00', 4198, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55058, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.478294+00', 5786, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55059, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:12.524456+00', 5793, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55060, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.445179+00', 1049, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55061, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.445179+00', 1180, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55062, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.504683+00', 1885, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55063, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.578042+00', 4127, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55064, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.034247+00', 5690, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55065, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.034247+00', 5713, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55066, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.425038+00', 5370, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55067, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.425038+00', 5368, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55068, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.303128+00', 5549, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55069, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.303128+00', 5586, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55070, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.698661+00', 3228, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55071, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.815726+00', 4108, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55072, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.401133+00', 9640, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55073, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.401133+00', 9650, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55074, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.387126+00', 9735, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55075, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.387126+00', 9756, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55076, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.486964+00', 8066, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55077, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.302784+00', 10671, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55078, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.302784+00', 10659, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55079, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.306692+00', 10701, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 3, NULL), +(55080, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:30.919763+00', 11090, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55081, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:30.919763+00', 11112, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55082, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:30.973578+00', 11093, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55083, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:30.973578+00', 11083, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55084, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.381321+00', 10809, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55085, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.035017+00', 11168, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55086, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.381321+00', 10828, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55087, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.035017+00', 11155, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55088, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.402511+00', 8847, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55089, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.295771+00', 8973, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55090, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.727646+00', 9695, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55091, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:30.912104+00', 11565, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55092, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:30.912104+00', 11592, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55093, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.522887+00', 11068, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55094, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.522887+00', 11089, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55095, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.731553+00', 9870, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55096, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.617362+00', 10021, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55097, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.66237+00', 9982, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55098, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.688567+00', 9954, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55099, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.279568+00', 9590, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55100, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.284068+00', 9614, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55101, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.423514+00', 14832, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55102, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.423514+00', 14834, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55103, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.546216+00', 14787, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55104, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:31.546216+00', 14791, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55105, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.741983+00', 13654, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55106, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:33.282239+00', 13141, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55107, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.175809+00', 585, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55108, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.146456+00', 668, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55109, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.036764+00', 1218, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55110, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.559373+00', 1664, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55111, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.173988+00', 2028, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(55112, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.173988+00', 1985, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55113, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:51.933196+00', 2331, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55114, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.559373+00', 1644, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55115, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.187466+00', 2234, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55116, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:51.933196+00', 2524, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55117, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.187466+00', 2348, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55118, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.754419+00', 1714, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55119, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.277318+00', 1363, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55120, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.036764+00', 1256, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55121, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:51.932978+00', 2348, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55122, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:51.932978+00', 2504, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55123, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.754419+00', 1535, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55124, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.277318+00', 1509, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55125, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.288199+00', 2163, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55126, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.288199+00', 2177, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55127, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.033132+00', 2279, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55128, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.293102+00', 2235, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55129, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.293102+00', 2243, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55130, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.033132+00', 2221, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55131, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.336822+00', 2801, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55132, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.993031+00', 3223, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55133, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.993031+00', 3233, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55134, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.60017+00', 2708, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55135, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.294955+00', 3589, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55136, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.818443+00', 2091, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55137, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:53.294955+00', 3595, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55138, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:55.162028+00', 1830, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55139, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.732079+00', 4426, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55140, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.205189+00', 2989, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55141, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.732079+00', 4451, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55142, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:55.043038+00', 2417, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55143, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.503322+00', 3118, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55144, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.929438+00', 2900, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55145, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:55.307589+00', 2647, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55146, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.674109+00', 3371, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55147, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.786689+00', 3609, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55148, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.944963+00', 3490, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55149, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.676618+00', 3855, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55150, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.997014+00', 3685, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55151, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.896764+00', 3806, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55152, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.827797+00', 3889, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55153, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.706381+00', 2619, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55154, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:59.091406+00', 2238, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55155, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.758012+00', 2591, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55156, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:59.319809+00', 2079, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55157, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:59.083761+00', 2657, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55158, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:59.886941+00', 1868, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55159, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:02.893917+00', 901, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55160, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:02.942657+00', 1661, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55161, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:02.843464+00', 1822, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55162, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:02.843464+00', 1827, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(55163, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:02.773122+00', 2529, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55164, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.02728+00', 2285, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55165, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.914988+00', 1786, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55166, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.984051+00', 1830, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55167, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.984051+00', 1877, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55168, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.13436+00', 3044, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55169, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.13436+00', 3127, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55170, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.082572+00', 3163, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55171, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.765057+00', 2933, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55172, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.765057+00', 2899, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55173, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.93985+00', 2915, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55174, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.93985+00', 2923, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55175, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.966458+00', 3501, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55176, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.922024+00', 4095, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55177, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.261866+00', 1752, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55178, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.917911+00', 4914, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55179, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.87799+00', 2053, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55180, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.008686+00', 5138, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55181, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.770204+00', 3390, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55182, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.770204+00', 3388, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55183, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.670312+00', 2641, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55184, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.729715+00', 2778, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55185, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.602503+00', 3927, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55186, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.602503+00', 3978, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55187, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.632907+00', 5115, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55188, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.632907+00', 5194, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55189, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.91938+00', 6460, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55190, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.48247+00', 6330, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55191, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.91938+00', 6899, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55192, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.001108+00', 6815, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55193, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.976322+00', 6839, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55194, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.652482+00', 5273, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55195, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.93279+00', 6995, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55196, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.430469+00', 4650, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55197, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.915168+00', 7008, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55198, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.001108+00', 6920, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55199, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.48247+00', 6442, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55200, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.976322+00', 6946, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55201, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.376791+00', 4999, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55202, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.365802+00', 5049, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55203, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.514671+00', 4896, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55204, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.218684+00', 5187, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55205, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:07.420637+00', 4031, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55206, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:07.267011+00', 4412, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55207, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.219432+00', 5179, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55208, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.584723+00', 5885, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55209, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.218684+00', 5446, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55210, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.584723+00', 6043, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55211, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:07.246229+00', 4631, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55212, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.675427+00', 5439, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55213, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.544202+00', 7937, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55214, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.831468+00', 5795, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55215, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.758244+00', 3215, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55216, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.64688+00', 3476, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55217, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.64688+00', 3270, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55218, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.897065+00', 16797, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55219, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.897065+00', 16923, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55220, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.598944+00', 17420, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55221, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.678298+00', 18172, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55222, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.678308+00', 18172, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55223, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.598944+00', 17252, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55224, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.678298+00', 18327, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55225, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.284058+00', 16735, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55226, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.681596+00', 18381, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55227, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.17134+00', 16892, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55228, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.084874+00', 16993, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55229, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.393557+00', 17739, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55230, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.628533+00', 17473, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55231, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.952064+00', 17304, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55232, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.678308+00', 18498, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55233, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.595668+00', 17507, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55234, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.893165+00', 17282, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55235, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.290804+00', 16968, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55236, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.288272+00', 16968, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55237, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.61638+00', 17600, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55238, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.393557+00', 17950, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55239, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.681596+00', 18596, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55240, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.357862+00', 17972, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55241, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.628533+00', 17737, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55242, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.148743+00', 17205, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55243, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.678283+00', 18797, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55244, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.713786+00', 17820, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55245, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.357862+00', 18022, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55246, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.678283+00', 18806, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55247, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.723697+00', 18971, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55248, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.713786+00', 17837, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55249, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.723697+00', 18988, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55250, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.813275+00', 18894, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55251, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.656149+00', 18120, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55252, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:47.813275+00', 18937, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55253, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.00711+00', 17820, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55254, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.060495+00', 17766, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55255, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.656149+00', 18094, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55256, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.205239+00', 17969, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55257, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.96884+00', 1336, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55258, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.784482+00', 23108, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55259, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.784482+00', 23139, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55260, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.142205+00', 2951, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55261, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.133077+00', 2970, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55262, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.647736+00', 2448, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55263, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.201921+00', 23134, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55264, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:49.182185+00', 23214, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55265, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.971021+00', 2642, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55266, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.729397+00', 23926, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55267, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:48.729397+00', 23940, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55268, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.128797+00', 4018, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55269, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.641259+00', 3741, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55270, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.124832+00', 4575, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55271, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.561958+00', 4142, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55272, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.732731+00', 3932, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55273, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.19673+00', 4578, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55274, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.55546+00', 4231, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55275, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.126096+00', 4647, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55276, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.12971+00', 5041, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55277, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.124795+00', 5217, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55278, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.642641+00', 4706, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55279, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.900652+00', 567, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55280, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.912928+00', 1674, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55281, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:33.678367+00', 1007, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55282, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.912928+00', 1878, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55283, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:33.892927+00', 1421, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55284, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.929985+00', 3390, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55285, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.929985+00', 3398, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55286, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.89387+00', 4243, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55287, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.89387+00', 4261, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55288, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:33.717974+00', 3573, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55289, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.696551+00', 1661, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55290, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.696551+00', 1687, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55291, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.980609+00', 4532, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55292, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.984581+00', 4532, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55293, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.984581+00', 4540, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55294, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.980609+00', 4556, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55295, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.917546+00', 4868, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55296, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.917546+00', 4879, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55297, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.76589+00', 1081, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55298, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.76589+00', 1104, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55299, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.01674+00', 4129, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55300, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.504266+00', 1693, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55301, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.541875+00', 1763, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55302, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.86057+00', 5707, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55303, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.86057+00', 5717, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55304, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.253276+00', 4348, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55305, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.627397+00', 3535, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55306, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.627397+00', 3527, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55307, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.508808+00', 4729, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55308, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.227538+00', 5195, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55309, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.725027+00', 3908, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55310, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.523441+00', 3323, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55311, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.725027+00', 3916, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55312, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.076085+00', 3892, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55313, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.076085+00', 3931, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55314, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.456583+00', 5571, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55315, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.463913+00', 3588, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55316, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.411211+00', 3746, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55317, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.6656+00', 4526, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55318, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.6656+00', 4563, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55319, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.540351+00', 4052, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55320, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.921145+00', 9071, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55321, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.96934+00', 9023, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55322, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.921145+00', 9062, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55323, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:32.96934+00', 9063, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55324, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.782461+00', 7263, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55325, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.237328+00', 7913, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55326, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:50.978396+00', 1199, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55327, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.020323+00', 1157, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55328, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.933813+00', 722, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55329, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.936583+00', 662, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55330, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.985887+00', 756, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55331, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.822632+00', 956, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55332, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.022163+00', 2964, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(55333, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.985887+00', 849, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(55334, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.697734+00', 1142, 0, FALSE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 27, 3, NULL, 3, NULL), +(55335, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.822632+00', 1208, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55336, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.022163+00', 2953, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55337, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:50.924125+00', 3351, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55338, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.016896+00', 3264, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55339, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.010667+00', 3277, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55340, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:50.924125+00', 3381, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55341, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.957703+00', 1363, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55342, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.010667+00', 3360, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55343, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.957703+00', 1422, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55344, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.932833+00', 2445, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55345, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.016896+00', 3359, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55346, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.932833+00', 2450, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55347, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.012816+00', 2406, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55348, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.012816+00', 2408, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55349, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.929769+00', 2591, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55350, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.920316+00', 2543, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55351, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.920316+00', 2619, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55352, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.929769+00', 2651, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55353, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.934663+00', 2666, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55354, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.934663+00', 2692, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55355, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.509398+00', 1675, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55356, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.927692+00', 3255, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55357, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.927692+00', 3319, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55358, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.509398+00', 1768, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55359, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.640831+00', 2884, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55360, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.337692+00', 3204, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55361, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.640831+00', 2933, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55362, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.298452+00', 3470, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55363, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.337692+00', 3239, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55364, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.15662+00', 2624, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55365, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.18693+00', 2595, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55366, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.124748+00', 2660, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55367, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.15662+00', 2628, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55368, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.124748+00', 2676, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55369, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.298452+00', 3489, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55370, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.18693+00', 2642, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55371, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.828587+00', 3068, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55372, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.828587+00', 3089, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55373, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.33865+00', 2646, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55374, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.33865+00', 2657, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55375, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.178073+00', 2970, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55376, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.928809+00', 5543, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55377, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.178073+00', 3299, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55378, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.928809+00', 5571, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55379, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.923134+00', 5574, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55380, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:51.923134+00', 5619, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55381, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.214653+00', 3575, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55382, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.152291+00', 3710, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55383, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.152291+00', 3714, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55384, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.214653+00', 3573, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55385, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.128606+00', 2137, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55386, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:50.138018+00', 1151, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55387, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.128606+00', 2189, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55388, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:47.711127+00', 4717, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55389, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:50.444564+00', 1972, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55390, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.24143+00', 4172, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55391, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.171059+00', 3486, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55392, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.160617+00', 3494, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55393, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.812866+00', 2744, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55394, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.24143+00', 4252, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55395, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:47.711127+00', 4703, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55396, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.160617+00', 3290, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55397, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.782489+00', 8726, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55398, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.782489+00', 8672, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55399, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.187485+00', 8427, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55400, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.123593+00', 9346, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55401, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.123593+00', 9355, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55402, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.83085+00', 9003, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55403, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.784034+00', 10438, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55404, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.784034+00', 10468, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55405, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.220305+00', 10187, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55406, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.382104+00', 11061, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55407, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.382104+00', 11074, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55408, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.334884+00', 11152, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55409, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.334884+00', 11172, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55410, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:50.114045+00', 9387, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55411, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.238215+00', 11304, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55412, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.238215+00', 11313, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55413, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.193452+00', 10351, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55414, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.777968+00', 11094, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55415, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.951648+00', 10946, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55416, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.265975+00', 10683, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55417, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.137884+00', 10831, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55418, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.170129+00', 10795, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55419, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.951648+00', 10965, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55420, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.137884+00', 10764, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55421, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.777968+00', 11109, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55422, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.171222+00', 10952, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55423, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.193212+00', 10967, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55424, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.221302+00', 11973, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55425, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:48.221302+00', 11982, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55426, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.220523+00', 11030, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55427, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.879906+00', 14546, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55428, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.953247+00', 14571, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55429, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.953247+00', 14569, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55430, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:50.406106+00', 14139, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55431, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.428892+00', 15122, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55432, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:49.428892+00', 15119, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55433, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:17.424829+00', 1962, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55434, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:17.408683+00', 1991, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55435, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.661562+00', 798, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55436, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:17.208015+00', 2349, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55437, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:17.288086+00', 2309, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55438, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.614193+00', 1182, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55439, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:17.320769+00', 2586, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55440, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:17.170098+00', 2760, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55441, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.687263+00', 1517, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55442, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.620528+00', 1762, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55443, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.90117+00', 1577, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55444, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.905535+00', 1637, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55445, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.904799+00', 1703, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55446, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.888903+00', 1823, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55447, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.61583+00', 2609, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55448, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:18.528473+00', 2800, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55449, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:36.362002+00', 1074, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55450, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:36.467413+00', 1096, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55451, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:36.398792+00', 1655, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55452, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:36.587876+00', 1598, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55453, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:36.361722+00', 1833, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55454, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:36.477235+00', 1891, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55455, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.745824+00', 732, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55456, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.33864+00', 1559, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55457, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.548092+00', 1785, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55458, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.700532+00', 2951, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55459, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:39.178411+00', 3287, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55460, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.860682+00', 3518, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55461, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.912864+00', 3428, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55462, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.72586+00', 4238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55463, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.923475+00', 2389, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55464, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.923475+00', 3043, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55465, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.813838+00', 4053, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55466, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.813838+00', 4080, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55467, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.803446+00', 4148, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55468, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.803446+00', 4140, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55469, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.912921+00', 4482, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55470, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.912921+00', 4569, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55471, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.139828+00', 2655, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55472, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.139828+00', 2757, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55473, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.754675+00', 2190, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55474, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.223321+00', 2845, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55475, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.877747+00', 5287, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55476, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.877747+00', 5316, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55477, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.083614+00', 3468, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55478, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.977108+00', 5595, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55479, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.977108+00', 5621, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55480, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.083614+00', 3565, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55481, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.524207+00', 3393, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55482, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.524207+00', 3446, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55483, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:44.621602+00', 3443, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55484, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.561888+00', 4514, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55485, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.855481+00', 10105, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55486, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.802597+00', 6410, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55487, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.614888+00', 6612, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55488, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.614888+00', 6678, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55489, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.838246+00', 7001, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55490, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:39.189999+00', 11692, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55491, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.32508+00', 7783, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55492, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.224763+00', 7992, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55493, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.224763+00', 8028, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55494, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.30292+00', 7976, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55495, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:44.152628+00', 7163, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55496, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.30292+00', 8000, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55497, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.466417+00', 8046, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55498, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.436712+00', 8040, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55499, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.466417+00', 8006, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55500, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.70081+00', 7852, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55501, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.649761+00', 7941, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55502, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.508316+00', 8152, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55503, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.173919+00', 8562, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55504, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.173919+00', 8573, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55505, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:42.967458+00', 8911, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55506, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:44.673517+00', 7375, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55507, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:42.194016+00', 9944, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55508, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:42.194016+00', 10075, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55509, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.852711+00', 11813, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55510, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.153597+00', 12925, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55511, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.752674+00', 12147, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55512, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.153597+00', 13672, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55513, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.110973+00', 910, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55514, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.269636+00', 1677, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55515, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.421208+00', 2514, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55516, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.007824+00', 2995, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55517, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.050243+00', 3355, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55518, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.581482+00', 4026, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55519, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.319347+00', 4340, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55520, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.110973+00', 3580, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55521, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.007718+00', 4715, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55522, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.093423+00', 4644, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55523, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.368823+00', 4470, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55524, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:01.992477+00', 3871, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55525, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.211402+00', 3716, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55526, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.114372+00', 3855, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55527, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.35275+00', 4168, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55528, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:02.250721+00', 4312, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55529, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.511099+00', 1478, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55530, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.542443+00', 1786, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55531, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.623554+00', 1925, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55532, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.791841+00', 2401, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55533, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:13.250838+00', 2070, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55534, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:13.247241+00', 2130, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55535, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.519964+00', 3933, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55536, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:10.66109+00', 4852, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55537, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:13.249027+00', 3094, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55538, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.521418+00', 5191, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55539, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:12.301542+00', 4658, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55540, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:13.26493+00', 3712, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55541, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.973721+00', 5031, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55542, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:12.865583+00', 4171, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55543, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.666444+00', 6030, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55544, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:11.557542+00', 6411, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55545, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.967824+00', 1252, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55546, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.979272+00', 1196, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55547, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.967824+00', 1574, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(55548, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.93341+00', 1904, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(55549, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.93341+00', 1894, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55550, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.911495+00', 2424, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(55551, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.164922+00', 1433, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55552, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.954423+00', 2126, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(55553, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.929678+00', 2381, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(55554, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:22.911495+00', 2053, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55555, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.164922+00', 1476, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55556, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.184825+00', 2525, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55557, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.184825+00', 2646, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55558, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.074312+00', 3255, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55559, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.074312+00', 3262, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55560, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.187974+00', 3474, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55561, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.187974+00', 3541, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55562, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.949742+00', 2865, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55563, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.183989+00', 3829, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55564, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.183989+00', 3776, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55565, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.16829+00', 2109, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55566, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.274102+00', 2150, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55567, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.334435+00', 2223, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55568, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.175308+00', 4779, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55569, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.556336+00', 2409, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55570, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.175308+00', 4773, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55571, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.798025+00', 2203, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55572, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.058384+00', 3154, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55573, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.774772+00', 4639, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55574, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.774772+00', 4645, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55575, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:27.30643+00', 2276, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55576, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.676682+00', 3230, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55577, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.77589+00', 5254, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55578, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.77589+00', 5283, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55579, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.601586+00', 5855, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55580, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.718624+00', 3751, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55581, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.601586+00', 5870, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55582, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.807064+00', 4433, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55583, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.761381+00', 4037, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55584, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:27.300828+00', 3944, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55585, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:27.305614+00', 3934, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55586, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.874364+00', 4454, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55587, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.932809+00', 6474, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55588, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.882781+00', 4431, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55589, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.688895+00', 4630, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55590, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.827608+00', 4523, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55591, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.799576+00', 4937, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55592, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.932809+00', 6821, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55593, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.70289+00', 5146, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55594, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.904207+00', 5041, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55595, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.320628+00', 5670, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55596, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.241796+00', 603, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55597, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.237417+00', 608, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55598, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.2848+00', 1104, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55599, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.256652+00', 1142, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55600, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.135935+00', 375, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55601, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.208705+00', 334, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55602, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.264993+00', 1280, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55603, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.270093+00', 1283, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55604, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.162887+00', 774, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55605, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.382544+00', 681, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55606, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.202473+00', 886, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55607, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.312621+00', 801, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55608, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.328233+00', 868, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55609, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.269431+00', 956, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55610, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.984527+00', 1483, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55611, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.324301+00', 1180, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55612, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.513074+00', 561, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 14, 2, NULL, 3, NULL), +(55613, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.580567+00', 493, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 31, 2, NULL, 3, NULL), +(55614, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.357704+00', 715, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 9, 2, NULL, 3, NULL), +(55615, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.559032+00', 6513, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55616, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.401628+00', 671, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 33, 2, NULL, 3, NULL), +(55617, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.60905+00', 467, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 13, 2, NULL, 3, NULL), +(55618, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.206388+00', 6870, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 21, 3, NULL, 3, NULL), +(55619, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.200732+00', 872, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 28, 2, NULL, 3, NULL), +(55620, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.265159+00', 6809, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 18, 3, NULL, 3, NULL), +(55621, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.228038+00', 848, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 16, 2, NULL, 3, NULL), +(55622, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.08677+00', 986, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55623, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.305602+00', 6772, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 16, 2, NULL, 3, NULL), +(55624, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:26.914674+00', 7162, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 27, 3, NULL, 3, NULL), +(55625, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.395795+00', 6682, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 33, 2, NULL, 3, NULL), +(55626, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.347118+00', 6730, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 20, 3, NULL, 3, NULL), +(55627, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.248976+00', 829, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 31, 2, NULL, 3, NULL), +(55628, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:26.354381+00', 7724, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 20, 3, NULL, 3, NULL), +(55629, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.516171+00', 6561, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55630, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.414863+00', 6663, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 21, 3, NULL, 3, NULL), +(55631, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:26.851246+00', 7226, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 18, 3, NULL, 3, NULL), +(55632, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.655319+00', 422, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 13, 2, NULL, 3, NULL), +(55633, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.229626+00', 6848, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 30, 2, NULL, 3, NULL), +(55634, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:26.354416+00', 7724, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 19, 3, NULL, 3, NULL), +(55635, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.611201+00', 6466, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 13, 2, NULL, 3, NULL), +(55636, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.625541+00', 6452, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55637, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.265453+00', 6812, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 19, 3, NULL, 3, NULL), +(55638, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.539414+00', 6533, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 1, 2, NULL, 3, NULL), +(55639, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.32605+00', 6751, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 9, 2, NULL, 3, NULL), +(55640, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.283973+00', 6794, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 29, 3, NULL, 3, NULL), +(55641, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.335558+00', 6737, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 28, 2, NULL, 3, NULL), +(55642, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.531315+00', 6541, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 12, 2, NULL, 3, NULL), +(55643, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.49366+00', 1223, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55644, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.502481+00', 570, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 28, 2, NULL, 3, NULL), +(55645, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.494179+00', 6583, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 21, 3, NULL, 3, NULL), +(55646, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.654842+00', 915, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 1, 2, NULL, 3, NULL), +(55647, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.67003+00', 1478, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 33, 2, NULL, 3, NULL), +(55648, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.360644+00', 6717, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 18, 3, NULL, 3, NULL), +(55649, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:27.373722+00', 6993, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "46" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 31, 2, NULL, 3, NULL), +(55650, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.633314+00', 3886, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55651, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.679945+00', 3818, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55652, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.884728+00', 3612, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55653, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.884728+00', 3972, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55654, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.890699+00', 4087, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55655, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.904731+00', 4199, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55656, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:33.609086+00', 5141, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55657, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.36397+00', 9209, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55658, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.949079+00', 7604, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55659, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.660409+00', 8584, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55660, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.068879+00', 11396, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55661, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.512712+00', 10925, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55662, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:26.686417+00', 3963, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55663, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.62632+00', 9701, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55664, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.581401+00', 9856, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55665, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.943001+00', 9704, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55666, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.370274+00', 11283, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55667, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.33787+00', 9377, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55668, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.308055+00', 9343, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55669, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.358051+00', 10476, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55670, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.297574+00', 2190, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55671, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.543898+00', 2665, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55672, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.934611+00', 2417, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55673, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.942717+00', 21653, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55674, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.340863+00', 23004, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55675, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.60944+00', 11890, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55676, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.581984+00', 24945, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55677, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.949873+00', 26215, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55678, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.523384+00', 28638, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55679, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.682196+00', 17454, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55680, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.370787+00', 28889, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55681, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.078039+00', 29358, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55682, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.69166+00', 31505, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55683, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.48944+00', 31084, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55684, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.717724+00', 32842, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55685, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:26.597576+00', 25857, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55686, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:25.212368+00', 27394, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55687, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.337993+00', 33133, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55688, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:33.230454+00', 18953, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55689, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.028729+00', 20712, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55690, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.592498+00', 32239, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55691, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.478416+00', 31371, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55692, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.337993+00', 33597, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55693, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.717724+00', 33227, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55694, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.264729+00', 31706, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55695, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:26.198023+00', 26923, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55696, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:41.607271+00', 11614, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55697, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:33.357592+00', 19583, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55698, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.592498+00', 32383, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55699, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.361241+00', 34161, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55700, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.543184+00', 31404, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55701, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.701347+00', 22776, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55702, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.044745+00', 34618, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55703, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.264729+00', 32336, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55704, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.952875+00', 33750, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55705, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:26.208872+00', 27540, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55706, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.044663+00', 34536, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55707, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.044745+00', 34481, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55708, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.573008+00', 22905, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55709, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.044663+00', 34743, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55710, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:31.123557+00', 22790, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55711, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.64281+00', 33374, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55712, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.693267+00', 32986, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55713, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:28.989312+00', 24820, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55714, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:42.514983+00', 12392, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55715, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.044666+00', 35849, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55716, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:42.353759+00', 11504, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55717, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:26.479853+00', 28911, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55718, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.514093+00', 35107, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55719, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.514093+00', 35442, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55720, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:28.981645+00', 26987, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55721, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.578448+00', 33996, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55722, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.495913+00', 26084, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55723, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.17147+00', 38539, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55724, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.380001+00', 10343, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55725, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.265894+00', 12260, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55726, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.845358+00', 41269, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55727, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.845358+00', 41465, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55728, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:49.565787+00', 12153, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55729, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.520753+00', 13215, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55730, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:49.946143+00', 11978, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55731, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:49.795251+00', 12644, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55732, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.352812+00', 14505, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55733, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:49.950461+00', 14103, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55734, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:49.962846+00', 14265, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55735, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.937698+00', 50269, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55736, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.937698+00', 50509, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55737, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.433671+00', 51855, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55738, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:21.433671+00', 51899, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55739, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.765442+00', 43203, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55740, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:45.563348+00', 28598, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55741, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:20.565215+00', 54028, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55742, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:47.188505+00', 27372, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55743, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:26.422524+00', 48162, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55744, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:19.605821+00', 55081, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55745, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:26.458034+00', 48254, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55746, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.623489+00', 44968, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55747, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.368809+00', 565, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55748, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.859348+00', 693, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55749, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.12804+00', 1505, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55750, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.167001+00', 1484, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55751, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:37.828501+00', 2843, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55752, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.294262+00', 3434, 0, FALSE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 30, 2, NULL, 3, NULL), +(55753, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.301385+00', 3488, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55754, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.301385+00', 3493, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55755, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.533085+00', 2332, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55756, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.533085+00', 2378, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55757, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.936625+00', 3022, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55758, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.936625+00', 3108, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55759, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.349691+00', 3721, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55760, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.323943+00', 3759, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55761, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.355201+00', 3740, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55762, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.355201+00', 3708, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55763, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.349691+00', 3723, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55764, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.091445+00', 4263, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55765, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.323943+00', 3774, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55766, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.135401+00', 3059, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55767, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.135401+00', 3271, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55768, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.098203+00', 3416, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55769, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.091445+00', 4249, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55770, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:39.098203+00', 3406, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55771, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.081062+00', 2903, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55772, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.044719+00', 2256, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55773, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.099495+00', 3474, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55774, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.772664+00', 2891, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55775, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.860727+00', 2798, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55776, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.472635+00', 2245, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55777, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.29421+00', 7189, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55778, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.728869+00', 2821, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55779, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.29421+00', 7251, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55780, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.061882+00', 7805, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55781, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.061882+00', 7860, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55782, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.910971+00', 4040, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55783, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.809483+00', 3201, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55784, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.574635+00', 3820, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55785, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.496002+00', 4091, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55786, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.744054+00', 3868, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55787, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.525619+00', 4099, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55788, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.692884+00', 4398, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55789, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.882201+00', 4571, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55790, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.623351+00', 960, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55791, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.289372+00', 1447, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55792, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.289372+00', 1636, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(55793, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.329833+00', 2174, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(55794, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.472696+00', 3335, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55795, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.472696+00', 3350, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55796, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.597867+00', 3369, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55797, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.597867+00', 3374, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55798, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.73664+00', 3431, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55799, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.73664+00', 3470, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55800, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.656286+00', 3995, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55801, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.656286+00', 3975, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55802, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.287144+00', 3454, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55803, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.22883+00', 1559, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55804, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.287144+00', 3514, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55805, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.60085+00', 4618, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55806, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.60085+00', 4624, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55807, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.433825+00', 4709, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55808, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.433825+00', 4976, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55809, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.265431+00', 6374, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55810, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.758548+00', 6070, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55811, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.265431+00', 6566, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55812, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.758548+00', 5968, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55813, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.24736+00', 7446, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55814, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.24736+00', 6178, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55815, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:14.884896+00', 6198, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55816, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.14394+00', 7365, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55817, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.533416+00', 6900, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55818, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.79312+00', 8770, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55819, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.464208+00', 6897, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55820, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.464493+00', 13404, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55821, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.793801+00', 13206, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55822, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.788889+00', 14307, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55823, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.567184+00', 19554, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55824, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.567184+00', 19680, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55825, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.465341+00', 17043, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55826, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.89094+00', 18492, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55827, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.89094+00', 18637, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55828, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:16.577099+00', 15790, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55829, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.357557+00', 17489, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55830, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.760643+00', 21101, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55831, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:12.760643+00', 22219, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55832, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:16.596576+00', 19181, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55833, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.1398+00', 10709, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55834, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:18.639236+00', 24649, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55835, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:29.899072+00', 15802, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55836, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:16.864632+00', 28929, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55837, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.146924+00', 15988, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55838, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:16.023265+00', 31601, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55839, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.148628+00', 20913, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55840, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.405442+00', 19464, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55841, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:27.876353+00', 24915, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55842, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:32.540895+00', 21822, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55843, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:33.877943+00', 23825, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55844, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:33.897297+00', 24585, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55845, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:28.92345+00', 27992, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55846, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.680673+00', 28734, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55847, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.390591+00', 29290, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55848, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:32.825152+00', 28052, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55849, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:31.222266+00', 33338, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55850, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:11.564565+00', 22013, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING}]', NULL, 19, 3, NULL, 3, NULL), +(55851, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.454222+00', 69187, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55852, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:31.402823+00', 14203, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING}]', NULL, 18, 3, NULL, 3, NULL), +(55853, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:20.305689+00', 21649, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING}]', NULL, 20, 3, NULL, 3, NULL), +(55854, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.454222+00', 75161, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55855, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:31.901857+00', 27594, 0, TRUE, 'public-dashboard', 'Timed out after 10000 ms while waiting to connect. Client view of cluster state is {type=UNKNOWN, servers=[{address=mongo1:27017, type=UNKNOWN, state=CONNECTING}]', NULL, 21, 3, NULL, 3, NULL), +(55856, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.679605+00', 90255, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55857, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.679605+00', 90417, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55858, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:47.214892+00', 14231, 0, FALSE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 27, 3, NULL, 3, NULL), +(55859, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:58.013293+00', 3436, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 1, 2, NULL, 3, NULL), +(55860, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:59.665581+00', 1878, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 9, 2, NULL, 3, NULL), +(55861, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:44.496839+00', 17158, 0, FALSE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 29, 3, NULL, 3, NULL), +(55862, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:58.005668+00', 3523, 0, FALSE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 30, 2, NULL, 3, NULL), +(55863, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:58.005466+00', 3458, 0, TRUE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 13, 2, NULL, 3, NULL), +(55864, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:58.005731+00', 3681, 0, TRUE, 'public-dashboard', 'Broken pipe (Write failed)', NULL, 31, 2, NULL, 3, NULL), +(55865, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:59.374335+00', 2157, 0, FALSE, 'public-dashboard', 'Prematurely reached end of stream', NULL, 16, 2, NULL, 3, NULL), +(55866, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:43:01.415946+00', 813, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "60" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 28, 2, NULL, 3, NULL), +(55867, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:43:00.595398+00', 1493, 0, FALSE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "60" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 14, 2, NULL, 3, NULL), +(55868, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:43:01.553086+00', 941, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "60" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 12, 2, NULL, 3, NULL), +(55869, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:43:01.520643+00', 1226, 0, TRUE, 'public-dashboard', 'Command failed with error 13436 (NotPrimaryOrSecondary): ''node is not in primary or recovering state'' on server mongo1:27017. The full response is { "topologyVersion" : { "processId" : { "$oid" : "63c6589b2fee9e70693390f8" }, "counter" : { "$numberLong" : "60" } }, "ok" : 0.0, "errmsg" : "node is not in primary or recovering state", "code" : 13436, "codeName" : "NotPrimaryOrSecondary" }', NULL, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55870, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.337294+00', 20558, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55871, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.272599+00', 20622, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55872, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.27227+00', 21205, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55873, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.645009+00', 20241, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55874, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.3744+00', 21105, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55875, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.489065+00', 20406, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55876, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.485411+00', 20396, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55877, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.449271+00', 21160, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55878, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.410196+00', 21395, 0, TRUE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 9, 2, NULL, 3, NULL), +(55879, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.457256+00', 21023, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55880, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.254323+00', 21558, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55881, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.280794+00', 21467, 0, TRUE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 12, 2, NULL, 3, NULL), +(55882, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.433299+00', 21342, 0, TRUE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 33, 2, NULL, 3, NULL), +(55883, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.402754+00', 21212, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55884, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.272599+00', 21544, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 31, 2, NULL, 3, NULL), +(55885, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.489065+00', 21385, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 20, 3, NULL, 3, NULL), +(55886, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.645009+00', 21178, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 21, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55887, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.3744+00', 21448, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 28, 2, NULL, 3, NULL), +(55888, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.254134+00', 21565, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 1, 2, NULL, 3, NULL), +(55889, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.272641+00', 21550, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 13, 2, NULL, 3, NULL), +(55890, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.457256+00', 21417, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 29, 3, NULL, 3, NULL), +(55891, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.485411+00', 21389, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 18, 3, NULL, 3, NULL), +(55892, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.402754+00', 21472, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 27, 3, NULL, 3, NULL), +(55893, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.337294+00', 21539, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 19, 3, NULL, 3, NULL), +(55894, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.27227+00', 21602, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 16, 2, NULL, 3, NULL), +(55895, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:46:34.449271+00', 21427, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 30, 2, NULL, 3, NULL), +(55902, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.988529+00', 8427, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55903, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.113987+00', 10521, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55904, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.756802+00', 8659, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55905, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.756476+00', 8649, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55906, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.756802+00', 8928, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55907, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:39.928192+00', 6579, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55908, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.988529+00', 8701, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55909, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.192497+00', 10933, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55910, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.756476+00', 8930, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55911, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.237672+00', 11498, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55912, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.237672+00', 11493, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55913, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:38.505067+00', 9190, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55914, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.192497+00', 10885, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55915, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.888934+00', 10287, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55916, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.113987+00', 10585, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55917, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:38.735382+00', 9495, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55918, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.180498+00', 11817, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55919, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:39.125441+00', 10176, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55920, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.180498+00', 11937, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55921, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:39.14549+00', 9999, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55922, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:38.346208+00', 11214, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55923, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:39.76643+00', 9953, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55924, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.809294+00', 12425, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55925, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.809294+00', 12382, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55926, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.307818+00', 13001, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55927, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.346324+00', 13840, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55928, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.617503+00', 12715, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55929, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.617503+00', 12608, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55930, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.307818+00', 13006, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55931, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:40.083423+00', 9943, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55932, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.345663+00', 14136, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55933, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.346324+00', 13859, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55934, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.803606+00', 13138, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55935, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.114624+00', 14826, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55936, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.345663+00', 14056, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55937, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:40.197812+00', 11033, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55938, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.803606+00', 13775, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55939, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:38.967502+00', 12271, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55940, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:36.114624+00', 15138, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55941, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:38.186533+00', 13539, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55942, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:40.175539+00', 11653, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55943, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:39.708813+00', 12551, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55944, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.651363+00', 14722, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(55945, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:40.111042+00', 11667, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55946, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.46181+00', 14939, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55947, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.651363+00', 14716, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55948, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:37.46181+00', 14972, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55949, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:40.223228+00', 12311, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55950, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:57.54113+00', 5182, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55951, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:57.54113+00', 5196, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(55952, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.893972+00', 6646, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55953, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:57.895607+00', 5794, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55954, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.761067+00', 7381, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(55955, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.761067+00', 7361, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(55956, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.921818+00', 5197, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55957, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.921818+00', 5231, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(55958, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:57.345839+00', 8188, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55959, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.495349+00', 6072, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(55960, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:57.345839+00', 8231, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(55961, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.563336+00', 5123, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55962, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.859391+00', 8847, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55963, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.859391+00', 8894, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(55964, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.563336+00', 5183, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(55965, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.713315+00', 5702, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55966, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.713315+00', 5735, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(55967, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.521895+00', 6132, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55968, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.986151+00', 9651, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55969, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.789733+00', 6871, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55970, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.789733+00', 7118, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(55971, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.521895+00', 6227, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(55972, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.986151+00', 10027, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(55973, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.25409+00', 6809, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55974, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.25409+00', 7322, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(55975, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.957438+00', 10661, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(55976, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.385732+00', 4486, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55977, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:58.091838+00', 10176, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(55978, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.133759+00', 8781, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(55979, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:01.99726+00', 6226, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55980, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:57.009607+00', 10232, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55981, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:56.957438+00', 11419, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(55982, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.962539+00', 8754, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55983, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:01.99726+00', 6493, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(55984, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:59.962539+00', 8788, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(55985, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.085068+00', 8515, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(55986, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:00.085068+00', 8727, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(55987, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:04.578517+00', 4828, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(55988, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:02.936113+00', 6612, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(55989, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.533199+00', 6094, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55990, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.07036+00', 6589, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(55991, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.533199+00', 6220, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(55992, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:04.26666+00', 5835, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(55993, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:04.768468+00', 5635, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(55994, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.402087+00', 7576, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(55995, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.0614+00', 8480, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(55996, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.820676+00', 7876, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(55997, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.878919+00', 7934, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(55998, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.847962+00', 3256, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(55999, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.922096+00', 3332, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56000, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.824936+00', 3397, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56001, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:31.081596+00', 3076, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56002, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:31.081596+00', 3153, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56003, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.922096+00', 3303, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56004, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.824936+00', 3416, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56005, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.669777+00', 3699, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56006, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.669777+00', 3763, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56007, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.847928+00', 3670, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56008, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.847962+00', 3412, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56009, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:32.075236+00', 2941, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56010, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:30.847928+00', 4020, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56011, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:32.075236+00', 2951, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56012, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.051391+00', 2694, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56013, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.093978+00', 3039, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(56014, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.093978+00', 2774, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56015, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.051391+00', 3121, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56016, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:32.401025+00', 4187, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56017, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:32.401025+00', 4176, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56018, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.038947+00', 4447, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56019, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.038947+00', 4410, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56020, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.869987+00', 3210, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56021, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:32.381592+00', 5690, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56022, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.026324+00', 5432, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56023, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.026324+00', 5524, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56024, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:32.381592+00', 5644, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56025, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.717201+00', 5235, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56026, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.717201+00', 5218, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56027, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:36.314623+00', 2923, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56028, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.446318+00', 5085, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56029, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.105885+00', 4511, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56030, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.870691+00', 4883, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56031, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.560091+00', 5194, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56032, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.173357+00', 4951, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56033, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.136342+00', 5137, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56034, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.349098+00', 7024, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56035, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.473823+00', 6142, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56036, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.278266+00', 5439, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56037, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.278266+00', 5436, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56038, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.192749+00', 5758, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56039, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.242572+00', 6713, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56040, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.20663+00', 7892, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56041, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:33.20663+00', 7917, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56042, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.866499+00', 6296, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56043, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.241651+00', 5950, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56044, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.308552+00', 6012, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56045, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:36.299995+00', 5303, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56046, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:25.254203+00', 1582, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56047, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:26.164397+00', 1178, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56048, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:25.441251+00', 2175, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56049, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:25.699515+00', 2576, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56050, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:25.424406+00', 2957, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56051, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:26.167705+00', 2777, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56052, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:26.117694+00', 2880, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56053, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:25.747204+00', 3260, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56054, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.555298+00', 1254, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56055, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:26.175261+00', 3711, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56056, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:25.837802+00', 4079, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56057, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.600816+00', 1721, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56058, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.533517+00', 1843, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56059, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.774479+00', 1842, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56060, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.742+00', 2119, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56061, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.826106+00', 2078, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56062, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.745337+00', 1410, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(56063, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.641065+00', 2041, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56064, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.717259+00', 2040, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56065, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.688042+00', 1786, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56066, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.688042+00', 1798, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(56067, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.764793+00', 2188, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56068, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.190027+00', 1796, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56069, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.190027+00', 1822, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56070, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.717259+00', 2300, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 29, 3, NULL, 3, NULL), +(56071, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.764793+00', 2324, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56072, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.66924+00', 2397, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56073, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:31.66924+00', 2412, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56074, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.009079+00', 1410, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 14, 2, NULL, 3, NULL), +(56075, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.188273+00', 2605, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 31, 2, NULL, 3, NULL), +(56076, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.813529+00', 2240, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56077, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.813529+00', 2230, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56078, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.577341+00', 2663, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56079, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.577341+00', 2671, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56080, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.609618+00', 2669, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56081, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.609618+00', 2688, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56082, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.875412+00', 3458, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56083, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:32.875412+00', 3373, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56084, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.76486+00', 2809, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56085, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.76486+00', 2854, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56086, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:34.391829+00', 3172, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56087, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.682952+00', 4071, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56088, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.682952+00', 4103, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56089, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.50425+00', 5352, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56090, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.50425+00', 5376, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56091, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.16403+00', 3881, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56092, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.284854+00', 4241, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56093, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:34.842516+00', 4700, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56094, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.520149+00', 4267, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56095, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:34.865332+00', 4903, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56096, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.969355+00', 4221, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56097, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.378259+00', 4817, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56098, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.93684+00', 4514, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56099, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.277472+00', 5457, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56100, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:36.67424+00', 4094, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56101, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:36.378632+00', 4112, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56102, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:36.04201+00', 4931, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56103, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.915027+00', 5526, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56104, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:36.442561+00', 5135, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56105, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:36.217416+00', 5341, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56106, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.146141+00', 1742, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56107, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.104839+00', 1782, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56108, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.104839+00', 1790, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56109, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.146141+00', 1792, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56110, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.14098+00', 2012, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56111, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.02819+00', 2134, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56112, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.14098+00', 2029, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56113, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.02819+00', 2154, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56114, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.072915+00', 2124, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56115, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.072915+00', 2132, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56116, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.130699+00', 3052, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56117, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.130699+00', 3026, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56118, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:47.068547+00', 2409, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56119, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:46.998005+00', 2604, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56120, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:47.056559+00', 2651, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56121, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:47.272697+00', 2618, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56122, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:47.425827+00', 2889, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56123, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:47.472899+00', 2988, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56124, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.706515+00', 2159, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56125, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.706515+00', 2166, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(56126, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.690958+00', 2274, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56127, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.690958+00', 2346, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56128, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.359324+00', 1817, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56129, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.373438+00', 2064, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56130, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.359324+00', 2183, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56131, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.373438+00', 2199, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56132, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.239597+00', 1394, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56133, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.373758+00', 2731, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56134, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.373758+00', 2744, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56135, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.769966+00', 2963, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56136, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.415565+00', 2534, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56137, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.41663+00', 3823, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56138, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.41663+00', 3874, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56139, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.371519+00', 4032, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56140, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.371519+00', 4108, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56141, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.403794+00', 4541, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56142, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.403794+00', 4544, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56143, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.104825+00', 3861, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56144, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.206735+00', 3894, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56145, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.079098+00', 4090, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56146, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.588571+00', 4672, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56147, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.588571+00', 4678, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56148, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.459316+00', 3826, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56149, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.641201+00', 4798, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56150, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.641201+00', 4824, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56151, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.467532+00', 4020, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56152, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.300795+00', 4571, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56153, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.069614+00', 4877, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56154, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.933671+00', 728, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56155, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.933671+00', 772, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56156, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.653737+00', 1365, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56157, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.653737+00', 1398, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56158, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.693514+00', 1393, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56159, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.693514+00', 1428, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56160, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.885021+00', 1296, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56161, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.885021+00', 1304, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56162, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.791814+00', 1677, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56163, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:56.791814+00', 1644, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56164, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.22663+00', 1592, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56165, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.22663+00', 1588, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56166, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.259717+00', 1897, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56167, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.310116+00', 1847, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56168, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.211201+00', 1977, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56169, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.468896+00', 1896, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56170, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.418146+00', 2077, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56171, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.464893+00', 2835, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56172, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.528629+00', 1380, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56173, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.528629+00', 1381, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(56174, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.581269+00', 1539, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56175, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.581269+00', 1537, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56176, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.417222+00', 1803, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56177, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.417222+00', 1813, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56178, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.493488+00', 1957, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56179, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.493488+00', 1991, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56180, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.595354+00', 1899, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56181, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.595354+00', 1914, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56182, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.424391+00', 2410, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56183, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.424391+00', 2433, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56184, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.156531+00', 1915, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56185, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.042003+00', 2332, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56186, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.688954+00', 2916, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56187, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.688954+00', 3031, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56188, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.543482+00', 3246, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56189, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.543482+00', 3251, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56190, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.381464+00', 2556, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56191, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.330377+00', 3627, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56192, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.838926+00', 3320, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56193, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.199976+00', 4469, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56194, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.449349+00', 5447, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56195, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.717591+00', 5184, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56196, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.717591+00', 5167, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56197, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.449349+00', 5479, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56198, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.473167+00', 4574, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56199, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.799783+00', 4375, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56200, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.977145+00', 5315, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56201, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.373978+00', 5148, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56202, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.75968+00', 1009, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56203, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.060807+00', 984, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56204, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.917662+00', 1197, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56205, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.822137+00', 2105, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(56206, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.917662+00', 2017, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(56207, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.891937+00', 2192, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(56208, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.886055+00', 2239, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56209, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.886055+00', 2236, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56210, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.36798+00', 1847, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56211, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.36798+00', 1857, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(56212, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.698173+00', 1860, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56213, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.698173+00', 1868, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56214, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.903457+00', 1713, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56215, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.915085+00', 1872, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56216, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.903457+00', 1732, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56217, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.941349+00', 2905, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56218, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.941349+00', 2857, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56219, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.760817+00', 3065, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56220, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.760817+00', 3098, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56221, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.915085+00', 1981, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56222, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.823375+00', 2312, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56223, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.823375+00', 2316, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56224, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.874036+00', 2261, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56225, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.866606+00', 3379, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56226, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.874036+00', 2265, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56227, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:13.866606+00', 3375, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56228, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:15.948227+00', 1677, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56229, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:15.271306+00', 2373, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56230, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.049328+00', 1602, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56231, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.684814+00', 2567, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56232, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.792884+00', 2533, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56233, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.409189+00', 2720, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56234, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.562594+00', 3803, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56235, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.824791+00', 3600, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56236, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.431511+00', 3079, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56237, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.441019+00', 3040, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56238, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.42923+00', 3162, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56239, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.260517+00', 4477, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56240, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.043631+00', 3690, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56241, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.217178+00', 3524, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56242, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.863821+00', 3928, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56243, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.455194+00', 3377, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56244, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:42.187525+00', 1645, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56245, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:42.171676+00', 1649, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56246, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:42.241217+00', 1927, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56247, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:42.230698+00', 2311, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56248, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:42.221544+00', 2522, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56249, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.053413+00', 907, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56250, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:42.271156+00', 2704, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56251, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.346996+00', 655, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56252, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.056623+00', 1137, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56253, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.419034+00', 849, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56254, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.41142+00', 888, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56255, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.555657+00', 874, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56256, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.375994+00', 1066, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56257, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.473892+00', 1125, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56258, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.478389+00', 1334, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56259, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.605633+00', 1237, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56260, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:58.688627+00', 367, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56261, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:58.72109+00', 435, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56262, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:58.640948+00', 521, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56263, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:58.764033+00', 419, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56264, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:58.721164+00', 502, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56265, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:58.72498+00', 513, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56266, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.835867+00', 374, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56267, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.835935+00', 459, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56268, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.83586+00', 504, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56269, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.925542+00', 422, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56270, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.851119+00', 614, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56271, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.862314+00', 610, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56272, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.006918+00', 595, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56273, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.142124+00', 482, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56274, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.107097+00', 593, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56275, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.175801+00', 724, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56276, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.084676+00', 931, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56277, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.179335+00', 948, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56278, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.161796+00', 996, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56279, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.080593+00', 1175, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56280, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.158019+00', 1317, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56281, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.197884+00', 1372, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56282, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.526446+00', 380, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56283, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.531107+00', 604, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56284, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.52677+00', 732, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56285, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.521426+00', 762, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56286, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.585229+00', 692, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56287, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.530389+00', 780, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56288, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.626304+00', 794, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56289, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.800863+00', 1150, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56290, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.575976+00', 697, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56291, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.852998+00', 879, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56292, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.416364+00', 520, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56293, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.51458+00', 468, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56294, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.540128+00', 524, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56295, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.461862+00', 634, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56296, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.552693+00', 557, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56297, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.567293+00', 562, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56298, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.309993+00', 377, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56299, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.309324+00', 594, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56300, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.576676+00', 357, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56301, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.344724+00', 591, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56302, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.341059+00', 848, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56303, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.55286+00', 839, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56304, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.590828+00', 879, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56305, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.711716+00', 826, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56306, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.654424+00', 1046, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56307, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.605662+00', 1144, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56308, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.872586+00', 270, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56309, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.961514+00', 254, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56310, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.966304+00', 650, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56311, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.89598+00', 842, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56312, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.934969+00', 972, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56313, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.004375+00', 969, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56314, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.966934+00', 1077, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56315, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.93011+00', 1249, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56316, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.961781+00', 1277, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56317, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.664891+00', 639, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56318, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.620776+00', 887, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56319, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.9655+00', 1552, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56320, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.820917+00', 732, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(56321, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:48.9655+00', 1617, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(56322, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.820917+00', 713, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56323, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.870612+00', 967, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(56324, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.025103+00', 927, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(56325, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.094632+00', 971, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56326, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.094632+00', 1018, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 18, 3, NULL, 3, NULL), +(56327, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.934467+00', 1344, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56328, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.934467+00', 1367, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56329, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.49098+00', 1309, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56330, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.473388+00', 1347, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56331, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.00291+00', 1889, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56332, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.00291+00', 1937, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56333, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.981454+00', 1010, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56334, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.270132+00', 1771, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56335, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.160772+00', 950, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56336, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.633337+00', 1515, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56337, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.617627+00', 1713, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56338, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.815109+00', 1634, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56339, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.892306+00', 1587, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56340, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.837047+00', 1779, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56341, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.260756+00', 1410, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56342, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.993486+00', 1721, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56343, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.006903+00', 2171, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56344, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.950457+00', 2304, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56345, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.701091+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56346, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.559143+00', 511, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56347, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.701993+00', 509, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56348, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.603771+00', 666, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56349, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.767291+00', 770, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56350, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.685124+00', 965, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56351, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.708192+00', 970, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56352, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.904904+00', 890, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56353, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.700939+00', 1265, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56354, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.653195+00', 416, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56355, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.638851+00', 439, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56356, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:23.636966+00', 1511, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(56357, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.833344+00', 508, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56358, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.793078+00', 841, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56359, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.097833+00', 546, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56360, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.863752+00', 865, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(56361, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.021002+00', 703, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56362, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.067923+00', 756, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56363, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.067923+00', 767, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(56364, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.691676+00', 1294, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56365, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.691676+00', 1303, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56366, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.877033+00', 1177, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56367, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.741144+00', 1354, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56368, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.741144+00', 1360, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56369, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.877033+00', 1260, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56370, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.111405+00', 1128, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56371, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.018902+00', 1358, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56372, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.018902+00', 1363, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56373, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.663087+00', 788, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56374, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.742394+00', 825, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56375, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.294685+00', 1595, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56376, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.920863+00', 1086, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56377, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.608823+00', 1609, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56378, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.817522+00', 1414, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56379, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.773673+00', 1755, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56380, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.44815+00', 2520, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56381, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.591462+00', 2477, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56382, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:37.917294+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56383, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:37.939414+00', 499, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56384, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:37.931881+00', 585, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56385, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:37.939467+00', 635, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56386, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:37.960067+00', 682, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56387, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:37.957501+00', 701, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56388, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.111345+00', 264, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56389, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.992948+00', 523, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56390, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.941387+00', 732, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56391, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.117165+00', 672, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56392, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.067791+00', 762, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56393, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.130035+00', 748, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56394, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.124473+00', 793, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56395, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.005249+00', 914, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56396, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.007467+00', 1123, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56397, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.072905+00', 1089, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56398, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:43.793911+00', 395, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56399, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:43.677246+00', 513, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56400, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:43.840324+00', 584, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56401, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:43.824712+00', 614, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56402, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:43.822413+00', 666, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56403, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:43.836888+00', 738, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56404, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.381839+00', 676, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56405, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.493711+00', 611, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56406, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.367889+00', 922, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56407, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.255993+00', 909, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56408, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.697896+00', 765, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(56409, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.506259+00', 961, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56410, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.701003+00', 1047, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56411, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.701003+00', 1051, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56412, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.335328+00', 1278, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56413, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.512714+00', 1405, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56414, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.774705+00', 1281, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56415, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.774705+00', 1300, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56416, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.817966+00', 1449, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56417, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.817966+00', 1463, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56418, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.812741+00', 1738, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56419, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.80308+00', 1746, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56420, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.812741+00', 1746, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56421, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.80308+00', 1765, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56422, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.781405+00', 2064, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56423, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.781405+00', 2065, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56424, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.786241+00', 2189, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56425, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.114273+00', 1857, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56426, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.786241+00', 2198, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56427, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.114273+00', 1876, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56428, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.406765+00', 1707, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56429, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.032738+00', 1206, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56430, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.843312+00', 1476, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56431, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.864792+00', 1645, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56432, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.596652+00', 2206, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56433, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.30136+00', 1572, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56434, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.952953+00', 1923, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56435, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.600988+00', 2317, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56436, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.591744+00', 2521, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56437, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.001201+00', 2114, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56438, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.851087+00', 1573, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56439, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.412833+00', 2044, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56440, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.87459+00', 2614, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56441, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.01815+00', 2506, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56442, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.843598+00', 2254, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56443, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.843598+00', 2261, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(56444, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.916714+00', 2080, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56445, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.095785+00', 2139, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56446, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.97316+00', 1308, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56447, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.97316+00', 1348, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56448, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.852923+00', 2657, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56449, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.477821+00', 2135, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56450, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.477821+00', 2192, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56451, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.90512+00', 2817, 0, TRUE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 19, 3, NULL, 3, NULL), +(56452, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.90232+00', 3058, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56453, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.151956+00', 3047, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56454, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.84033+00', 3362, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56455, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.84033+00', 3490, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56456, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.151956+00', 3197, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56457, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.583095+00', 3827, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56458, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.604035+00', 3816, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56459, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.604035+00', 3838, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56460, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.529015+00', 3953, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56461, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.860712+00', 3673, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56462, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.029341+00', 4624, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56463, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.029341+00', 4628, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56464, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.846493+00', 3821, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56465, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.846493+00', 3842, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56466, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.877897+00', 3870, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56467, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.813394+00', 1620, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56468, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.813394+00', 1663, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(56469, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.844735+00', 1715, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56470, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.844735+00', 1732, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56471, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.601006+00', 2021, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56472, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.601006+00', 2037, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56473, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.879318+00', 5002, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56474, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.699902+00', 2343, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56475, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.699902+00', 2350, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56476, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.58983+00', 2520, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56477, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.58983+00', 2577, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56478, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.928324+00', 5378, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56479, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.343249+00', 3081, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56480, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.343249+00', 3090, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56481, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.832808+00', 2811, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56482, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.832808+00', 2815, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56483, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.308346+00', 354, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56484, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.368315+00', 373, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56485, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.305942+00', 462, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56486, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.303787+00', 488, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56487, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.298814+00', 534, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56488, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.332116+00', 512, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56489, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.244585+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56490, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.285492+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56491, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.377297+00', 597, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56492, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.615298+00', 437, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56493, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.534154+00', 593, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56494, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.397735+00', 686, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56495, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.560929+00', 770, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56496, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.49673+00', 905, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56497, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.414443+00', 1199, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(56498, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.392892+00', 1274, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(56499, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.444788+00', 1268, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56500, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.444788+00', 1264, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56501, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.336345+00', 1581, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56502, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.113782+00', 1176, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56503, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.176338+00', 1295, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56504, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.464887+00', 2030, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56505, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.464887+00', 2034, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56506, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.263744+00', 1268, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56507, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.353266+00', 1221, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56508, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.541852+00', 1615, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56509, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.947166+00', 1362, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56510, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.867289+00', 1531, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56511, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.023921+00', 1375, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56512, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.982046+00', 1651, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56513, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.310825+00', 1383, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56514, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.010922+00', 1699, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56515, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.580789+00', 2435, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56516, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.434216+00', 1624, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56517, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.554867+00', 266, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56518, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.659025+00', 282, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56519, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.597492+00', 379, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56520, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.582902+00', 459, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56521, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.555645+00', 502, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56522, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.587482+00', 517, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56523, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.169927+00', 281, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56524, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.311482+00', 1120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56525, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.296472+00', 1172, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56526, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.222781+00', 1226, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56527, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.22141+00', 1333, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56528, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.358394+00', 2478, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56529, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.358394+00', 2643, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56530, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.294043+00', 3221, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56531, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.294043+00', 3245, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56532, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.949685+00', 2606, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56533, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.949685+00', 2573, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56534, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.298636+00', 3327, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56535, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.336916+00', 3490, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56536, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.413547+00', 3731, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56537, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.413547+00', 3733, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56538, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.450935+00', 3706, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56539, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.348837+00', 2815, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56540, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.450935+00', 3714, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56541, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.348837+00', 2892, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(56542, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.45777+00', 2839, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56543, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.45777+00', 2867, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56544, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.453353+00', 4093, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56545, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.595977+00', 4128, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56546, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.109141+00', 3798, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56547, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.109141+00', 3830, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56548, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.546665+00', 1466, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56549, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.525056+00', 3486, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56550, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.525056+00', 3619, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56551, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.723367+00', 3659, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56552, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.257372+00', 4254, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56553, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.660922+00', 4148, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56554, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.257372+00', 4519, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56555, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.926028+00', 4982, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56556, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.660922+00', 4120, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56557, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.926028+00', 5019, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56558, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.794371+00', 2192, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56559, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.515928+00', 5524, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56560, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.515928+00', 5594, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56561, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.707696+00', 3656, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56562, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.707696+00', 3667, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56563, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.575979+00', 1900, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56564, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.520296+00', 4062, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56565, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.520296+00', 4201, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56566, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.293721+00', 5470, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56567, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.282913+00', 4744, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56568, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.282913+00', 4706, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56569, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.428742+00', 5698, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56570, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.428742+00', 5730, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56571, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.30545+00', 4901, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56572, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.30545+00', 4923, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56573, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.142308+00', 4309, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56574, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.094466+00', 2540, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56575, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.217702+00', 2679, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56576, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.352235+00', 3606, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56577, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.90734+00', 4068, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56578, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.622318+00', 4336, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56579, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.560735+00', 4472, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56580, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.653702+00', 4377, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56581, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.672227+00', 5439, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56582, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.672227+00', 5450, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56583, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.735859+00', 4789, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56584, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.680611+00', 3876, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56585, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.217373+00', 4506, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56586, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.557185+00', 5171, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56587, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.828865+00', 3936, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56588, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.502101+00', 3330, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56589, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.746626+00', 5097, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56590, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.328868+00', 3550, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56591, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.924296+00', 8382, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56592, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.325155+00', 7980, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56593, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.527784+00', 8779, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56594, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.527784+00', 8792, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56595, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.325155+00', 7998, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56596, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.924296+00', 8396, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56597, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.419093+00', 3903, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56598, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.201256+00', 4232, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56599, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.508147+00', 6647, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56600, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.975918+00', 5216, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56601, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.504751+00', 6712, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56602, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.41328+00', 6015, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56603, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.156717+00', 335, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56604, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.205259+00', 342, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56605, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.317566+00', 261, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56606, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.247528+00', 331, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56607, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.244498+00', 393, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56608, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.219813+00', 421, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56609, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.056944+00', 435, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56610, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.172221+00', 382, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56611, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.142239+00', 450, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56612, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.131749+00', 509, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56613, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.134946+00', 572, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56614, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.3908+00', 409, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56615, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.94019+00', 345, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56616, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.905173+00', 570, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56617, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.953462+00', 537, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56618, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.961529+00', 586, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56619, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.948493+00', 618, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56620, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.943618+00', 834, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56621, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.956444+00', 854, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56622, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.679586+00', 182, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56623, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.961183+00', 923, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56624, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.926161+00', 1145, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56625, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:23.968659+00', 1220, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56626, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.060432+00', 170, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56627, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.095115+00', 245, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56628, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.233155+00', 172, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56629, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.277917+00', 278, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56630, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.416729+00', 299, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56631, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.613427+00', 278, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56632, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.609178+00', 403, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56633, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.635533+00', 572, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56634, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.637573+00', 647, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56635, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.426413+00', 155, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56636, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.432897+00', 454, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56637, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.428912+00', 511, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56638, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.633019+00', 361, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56639, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.469129+00', 724, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56640, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.060751+00', 513, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56641, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.697254+00', 859, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56642, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.697126+00', 902, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56643, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.709674+00', 1150, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56644, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.249125+00', 668, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56645, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.448822+00', 1525, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56646, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.299635+00', 890, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56647, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.754266+00', 425, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56648, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.945243+00', 329, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56649, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.945243+00', 356, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(56650, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.692582+00', 1804, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(56651, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.400765+00', 1112, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56652, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.866578+00', 632, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(56653, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.372764+00', 1163, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56654, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.400765+00', 1111, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56655, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.372764+00', 1190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56656, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.076779+00', 830, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56657, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.841327+00', 1081, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56658, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.993432+00', 1109, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56659, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.015179+00', 1270, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56660, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.015179+00', 1278, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56661, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.038251+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56662, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.049298+00', 760, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56663, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.338534+00', 1512, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56664, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.608432+00', 1491, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56665, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.06964+00', 1220, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56666, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.996443+00', 1298, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56667, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.000118+00', 1308, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56668, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.93809+00', 1386, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56669, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.008664+00', 1554, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56670, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.993167+00', 1646, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56671, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.316648+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56672, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.307823+00', 499, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56673, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.309558+00', 517, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56674, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.274356+00', 572, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56675, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.416036+00', 456, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56676, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.37896+00', 610, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56677, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.901648+00', 180, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56678, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.132685+00', 434, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56679, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.269434+00', 358, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56680, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.279779+00', 512, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56681, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.267623+00', 546, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56682, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.270463+00', 568, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56683, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.150108+00', 288, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56684, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.123805+00', 473, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56685, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.188036+00', 472, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56686, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.196641+00', 500, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56687, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.132375+00', 668, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56688, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.122703+00', 737, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(56689, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.194887+00', 668, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(56690, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.135555+00', 761, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(56691, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.804347+00', 143, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56692, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.147962+00', 934, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(56693, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.008943+00', 425, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56694, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.243197+00', 1259, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56695, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.243197+00', 1261, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56696, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.963491+00', 655, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56697, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.309745+00', 474, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56698, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.133432+00', 943, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56699, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.153032+00', 1009, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56700, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.291048+00', 944, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56701, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.407598+00', 987, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56702, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.191689+00', 1518, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56703, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.186243+00', 1547, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56704, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.560973+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56705, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.410915+00', 487, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56706, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.478606+00', 531, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56707, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.520222+00', 538, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56708, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.494929+00', 592, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56709, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.555639+00', 545, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56710, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.501238+00', 755, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56711, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.551716+00', 729, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56712, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.552203+00', 1049, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56713, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.579813+00', 1120, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56714, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.155069+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56715, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.085273+00', 453, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56716, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.161549+00', 388, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56717, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.193135+00', 427, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56718, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.089415+00', 536, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56719, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.114571+00', 537, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56720, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:58.867779+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56721, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.000975+00', 306, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56722, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:58.950618+00', 457, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56723, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:58.946033+00', 669, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56724, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.00221+00', 731, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56725, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:58.926384+00', 847, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56726, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:58.960083+00', 825, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56727, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.376707+00', 407, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56728, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.564811+00', 284, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56729, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.005499+00', 923, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56730, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:58.904911+00', 1079, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56731, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:58.901223+00', 1181, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56732, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.919495+00', 494, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56733, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.994732+00', 500, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56734, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.022536+00', 554, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56735, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.960639+00', 777, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56736, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.087038+00', 685, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56737, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.986281+00', 782, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56738, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.068811+00', 862, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56739, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.892971+00', 1281, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56740, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.892971+00', 1292, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56741, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.947332+00', 1257, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56742, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.098822+00', 1108, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56743, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.947332+00', 1266, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56744, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.393432+00', 946, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56745, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.245128+00', 1105, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56746, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.778495+00', 708, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56747, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.844802+00', 705, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56748, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.977581+00', 738, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56749, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.579939+00', 1331, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56750, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.136205+00', 829, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56751, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.024471+00', 1002, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56752, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.120604+00', 1006, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.401461+00', 2019, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56754, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.379447+00', 1110, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56755, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.548697+00', 981, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56756, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.629665+00', 1417, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(56757, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.570498+00', 1819, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(56758, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.589842+00', 1801, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(56759, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.505448+00', 2053, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56760, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.544666+00', 2038, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56761, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.544666+00', 2049, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56762, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.505448+00', 2069, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(56763, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.543891+00', 2135, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56764, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.543891+00', 2148, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56765, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.209313+00', 1567, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56766, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.209313+00', 1664, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56767, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.186475+00', 2000, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56768, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.186475+00', 1955, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56769, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.247058+00', 1970, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56770, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.247058+00', 1972, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56771, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.3692+00', 2001, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56772, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.3692+00', 2008, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56773, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.186475+00', 2247, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56774, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.186475+00', 2262, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56775, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.484316+00', 3130, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56776, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.484316+00', 3141, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56777, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.281803+00', 2388, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56778, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.281803+00', 2401, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56779, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.524056+00', 3278, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56780, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.524056+00', 3280, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56781, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:04.777539+00', 1214, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56782, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.208677+00', 1065, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56783, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.373122+00', 1025, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56784, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.268884+00', 1204, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56785, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.127166+00', 1430, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56786, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.243322+00', 1434, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56787, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.575899+00', 1229, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56788, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.284724+00', 1610, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56789, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.168721+00', 1746, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56790, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.601706+00', 1320, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56791, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:04.944574+00', 2040, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56792, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.395668+00', 1707, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56793, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.447405+00', 1685, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56794, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.796913+00', 1362, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56795, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.435403+00', 1790, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56796, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.548848+00', 1783, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56797, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.592389+00', 450, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56798, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.592288+00', 967, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56799, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.753117+00', 838, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56800, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.511649+00', 1274, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56801, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.602076+00', 1534, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(56802, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.534483+00', 1674, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(56803, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.733428+00', 1635, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(56804, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.404725+00', 999, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56805, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.404725+00', 1035, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(56806, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.520553+00', 988, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56807, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.736669+00', 2002, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(56808, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.528569+00', 1237, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56809, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.528569+00', 1243, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56810, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.321192+00', 1621, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56811, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.321192+00', 1620, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56812, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.408673+00', 1745, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56813, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.564693+00', 2702, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56814, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.064658+00', 1211, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56815, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.408673+00', 1781, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56816, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.564693+00', 2732, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56817, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.670394+00', 1695, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56818, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.517061+00', 2873, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56819, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.628751+00', 1761, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56820, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.628751+00', 1769, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56821, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.670394+00', 1684, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56822, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:44.517061+00', 2899, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56823, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.758898+00', 1230, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56824, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.227257+00', 1252, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56825, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.915899+00', 1567, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56826, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.66642+00', 2133, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56827, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.658991+00', 2169, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56828, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.942498+00', 1949, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56829, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.901072+00', 2002, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56830, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.869083+00', 2038, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56831, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.81664+00', 2117, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56832, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.733202+00', 2278, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56833, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.699309+00', 2310, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56834, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.221065+00', 1858, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56835, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.805204+00', 2434, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56836, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.94052+00', 2485, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56837, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.743218+00', 518, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56838, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.71377+00', 639, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56839, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.717247+00', 726, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56840, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.683585+00', 798, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56841, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.717249+00', 776, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56842, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.734546+00', 776, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56843, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.775179+00', 299, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56844, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.767663+00', 527, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56845, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.874959+00', 645, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56846, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.877491+00', 749, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56847, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.981891+00', 668, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56848, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.934955+00', 787, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56849, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.966218+00', 775, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56850, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.940179+00', 874, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56851, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.782299+00', 1312, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56852, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.87623+00', 1253, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56853, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.260755+00', 643, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(56854, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.377445+00', 664, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56855, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.377445+00', 668, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(56856, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.420471+00', 762, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(56857, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.504911+00', 961, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56858, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.539161+00', 1003, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56859, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.477333+00', 1104, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56860, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.477333+00', 1077, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56861, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.558309+00', 1123, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56862, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.558309+00', 1135, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56863, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.593915+00', 1287, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56864, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.704925+00', 1275, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56865, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.717034+00', 1263, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56866, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.704925+00', 1280, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56867, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.717034+00', 1279, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(56868, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.556702+00', 1677, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56869, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.556702+00', 1679, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56870, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.727301+00', 1663, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56871, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.727301+00', 1671, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56872, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.649294+00', 1776, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56873, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.649294+00', 1780, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56874, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.544853+00', 1986, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56875, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.801964+00', 1958, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56876, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.81273+00', 1955, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56877, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.81273+00', 1967, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(56878, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.539161+00', 2287, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56879, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.626605+00', 2254, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56880, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.804853+00', 2076, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56881, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.599315+00', 2331, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56882, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.552715+00', 2426, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56883, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.741378+00', 2321, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56884, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.717124+00', 2587, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56885, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.800547+00', 2538, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56886, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.47758+00', 1887, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56887, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.628508+00', 2762, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56888, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.628508+00', 2756, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56889, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.658683+00', 1742, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56890, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.71714+00', 2808, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56891, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.594521+00', 2932, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56892, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.71714+00', 2820, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56893, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.630358+00', 3253, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56894, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.630358+00', 3262, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56895, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.573512+00', 3348, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56896, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.573512+00', 3350, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56897, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:54.799269+00', 3199, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56898, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:04.938156+00', 192, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56899, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.244881+00', 169, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56900, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.049307+00', 416, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56901, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:04.974334+00', 593, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56902, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.241453+00', 502, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56903, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:04.986246+00', 837, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56904, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.516624+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56905, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.0639+00', 822, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56906, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.339413+00', 638, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56907, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.274249+00', 829, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56908, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.968954+00', 689, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(56909, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.339322+00', 1411, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(56910, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.310439+00', 576, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56911, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.959819+00', 1320, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56912, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.959819+00', 1362, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56913, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.193871+00', 1157, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56914, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.130558+00', 1236, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56915, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.130558+00', 1246, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56916, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.193871+00', 1188, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56917, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.158745+00', 1248, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56918, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.09671+00', 1368, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56919, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.09671+00', 1356, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56920, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.158737+00', 1992, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56921, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.158737+00', 2082, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56922, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.477369+00', 1859, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56923, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.328996+00', 2030, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56924, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.197057+00', 1373, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56925, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.464386+00', 2131, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56926, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.391576+00', 2204, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56927, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.101057+00', 1544, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56928, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.162174+00', 1443, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56929, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.241057+00', 2421, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56930, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.113531+00', 1828, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56931, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.176033+00', 1824, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56932, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.323127+00', 1691, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56933, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.241331+00', 2893, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56934, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.72154+00', 2506, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56935, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.434924+00', 236, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56936, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.20617+00', 523, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56937, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.41585+00', 492, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(56938, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.304714+00', 649, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56939, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.525113+00', 544, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56940, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.274298+00', 861, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56941, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.413575+00', 723, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56942, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.415415+00', 826, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56943, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.306784+00', 1026, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56944, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.270576+00', 1128, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56945, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.448733+00', 283, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56946, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.408795+00', 404, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56947, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.412204+00', 531, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56948, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.502894+00', 458, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56949, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.447578+00', 525, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56950, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.425319+00', 564, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56951, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.708711+00', 328, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56952, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.653791+00', 820, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56953, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.54603+00', 966, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56954, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.525253+00', 1387, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(56955, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.560777+00', 366, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56956, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.569124+00', 1662, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(56957, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.492551+00', 1789, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(56958, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.553755+00', 1740, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(56959, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.521187+00', 1228, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56960, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.521187+00', 1247, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(56961, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.649311+00', 2199, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56962, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.649311+00', 2201, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(56963, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.585241+00', 1559, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56964, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.585241+00', 1580, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(56965, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.552672+00', 2628, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(56966, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.552672+00', 2626, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56967, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.36061+00', 1888, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56968, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.535458+00', 1823, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56969, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.524692+00', 1875, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(56970, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.524692+00', 1873, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56971, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.36061+00', 1911, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(56972, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.535458+00', 1829, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(56973, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.536899+00', 1890, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56974, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.536899+00', 1897, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(56975, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.644111+00', 2863, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56976, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:44.644111+00', 2874, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(56977, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.718115+00', 1434, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56978, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.74735+00', 1499, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56979, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.72524+00', 1727, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(56980, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.037036+00', 1735, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(56981, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.969273+00', 1856, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(56982, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.201317+00', 1756, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(56983, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.000709+00', 1884, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(56984, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.096723+00', 1899, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(56985, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.928775+00', 2082, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(56986, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.83427+00', 2173, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(56987, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.920772+00', 2374, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56988, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.109877+00', 2480, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(56989, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.961516+00', 2575, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(56990, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.631926+00', 2975, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(56991, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.801129+00', 2915, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(56992, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.503277+00', 501, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(56993, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.690233+00', 397, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(56994, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.504703+00', 1316, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(56995, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.68563+00', 1152, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(56996, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.504703+00', 1352, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(56997, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.68563+00', 1160, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(56998, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.687334+00', 1466, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(56999, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.687334+00', 1463, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57000, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.171398+00', 1251, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57001, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.171398+00', 1257, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(57002, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.380856+00', 1147, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57003, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.685164+00', 2107, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57004, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.031974+00', 1843, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57005, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.685164+00', 2130, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(57006, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.686041+00', 2319, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57007, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.031974+00', 1905, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(57008, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.686041+00', 2364, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57009, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.717076+00', 2342, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57010, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.717076+00', 2354, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57011, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.686938+00', 2360, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57012, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.685812+00', 2511, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57013, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.686938+00', 2383, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57014, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.706137+00', 2626, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57015, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.706137+00', 2651, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57016, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.685812+00', 2518, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(57017, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.692987+00', 2850, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57018, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.692987+00', 2881, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57019, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.549754+00', 2271, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57020, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.943941+00', 1890, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57021, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.658305+00', 3351, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57022, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.933409+00', 2145, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57023, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.24668+00', 1847, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57024, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.658305+00', 3381, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57025, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.27217+00', 2466, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57026, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.702489+00', 4168, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57027, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:44.702489+00', 4183, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57028, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.776678+00', 2176, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57029, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.892735+00', 2110, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57030, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.844159+00', 1636, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57031, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.11545+00', 2519, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57032, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.933021+00', 2178, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57033, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.802107+00', 2336, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57034, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.380124+00', 1817, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57035, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.159152+00', 2153, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57036, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.230327+00', 3106, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57037, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.069065+00', 2316, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57038, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.91211+00', 2603, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57039, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.596678+00', 2102, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57040, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.01693+00', 3867, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57041, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.01259+00', 3978, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57042, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.966648+00', 3056, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57043, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.255724+00', 2723, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57044, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.028668+00', 2946, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57045, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.166371+00', 2869, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57046, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.438402+00', 4691, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57047, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.602108+00', 3515, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57048, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.905678+00', 4231, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57049, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.99417+00', 3163, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57050, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.60796+00', 2589, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57051, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.037362+00', 3192, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57052, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.447131+00', 4796, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57053, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.776212+00', 3773, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57054, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.474767+00', 865, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57055, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.416873+00', 1124, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57056, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.500768+00', 1285, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57057, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.216078+00', 1564, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(57058, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.216078+00', 1556, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57059, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.413237+00', 1452, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57060, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.413237+00', 1491, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(57061, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.630802+00', 1641, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57062, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.413294+00', 2006, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57063, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.437189+00', 2003, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57064, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.630802+00', 1881, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(57065, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.437189+00', 2224, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57066, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.555678+00', 1125, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(57067, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.413294+00', 2268, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57068, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.555678+00', 1119, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57069, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.475284+00', 2182, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(57070, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.473868+00', 2761, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57071, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.448689+00', 2405, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(57072, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.473868+00', 2764, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57073, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.187478+00', 2682, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57074, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.187478+00', 2678, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57075, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.550189+00', 2497, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57076, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.550189+00', 2514, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(57077, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.742057+00', 2452, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57078, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.742057+00', 2479, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(57079, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.597528+00', 2950, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57080, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.341801+00', 2241, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57081, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.892757+00', 3709, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57082, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.597528+00', 2967, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57083, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.341801+00', 2274, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(57084, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.304932+00', 2323, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(57085, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.892757+00', 3727, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(57086, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.304932+00', 2307, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57087, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.651061+00', 3067, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57088, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.651061+00', 3091, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(57089, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.336977+00', 3537, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57090, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.336977+00', 3548, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57091, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.124996+00', 2837, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57092, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.311975+00', 2679, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57093, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.124996+00', 2900, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57094, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.311975+00', 2742, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57095, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.820958+00', 3247, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57096, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.820958+00', 3253, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57097, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.086468+00', 2050, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 28, 2, NULL, 3, NULL), +(57098, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.114746+00', 2068, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57099, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.698746+00', 3531, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(57100, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.698746+00', 3516, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57101, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.694382+00', 3586, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57102, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.694382+00', 3603, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(57103, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.126613+00', 1649, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57104, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.140909+00', 1743, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57105, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.2393+00', 2655, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57106, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.2393+00', 2764, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57107, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.870112+00', 2292, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57108, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.770808+00', 3436, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57109, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.12104+00', 3215, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57110, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.086549+00', 3280, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57111, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.770808+00', 3576, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57112, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.800135+00', 3545, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57113, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.717329+00', 1789, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57114, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.244239+00', 3267, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57115, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.398465+00', 3221, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57116, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.145185+00', 3480, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57117, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.429207+00', 2604, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57118, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.537747+00', 3784, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57119, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.19477+00', 3151, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57120, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.161136+00', 3358, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57121, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.450741+00', 5076, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57122, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.517132+00', 4012, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57123, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.399314+00', 3134, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57124, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.450741+00', 5082, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57125, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.135405+00', 4413, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57126, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.328853+00', 4243, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57127, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.265172+00', 5429, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57128, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.501368+00', 3216, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57129, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.265172+00', 5481, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57130, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.488791+00', 3390, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57131, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.420723+00', 3476, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57132, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.023501+00', 3091, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57133, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.475023+00', 4691, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57134, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.113065+00', 3176, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57135, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.989642+00', 6309, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57136, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.989642+00', 6312, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57137, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.975574+00', 3376, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57138, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.268916+00', 3196, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57139, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.130415+00', 5681, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57140, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.076835+00', 4477, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57141, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.684798+00', 5044, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57142, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.268824+00', 4521, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57143, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.190977+00', 413, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57144, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.223765+00', 402, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57145, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.240254+00', 405, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57146, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.238403+00', 480, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57147, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.477098+00', 253, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57148, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.488119+00', 272, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57149, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.927268+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57150, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.904132+00', 349, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57151, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.934762+00', 347, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57152, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.914141+00', 420, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57153, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.389473+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57154, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.363256+00', 504, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57155, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.258262+00', 628, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57156, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.369635+00', 651, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57157, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.356263+00', 742, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57158, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.445236+00', 790, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(57159, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.018098+00', 228, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57160, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.623661+00', 628, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57161, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.25042+00', 1085, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57162, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.641473+00', 696, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57163, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.394778+00', 1009, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57164, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.394778+00', 1019, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57165, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.307141+00', 1220, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57166, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.307141+00', 1228, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(57167, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.386722+00', 1186, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57168, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.386722+00', 1199, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57169, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.132755+00', 1264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57170, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.359856+00', 2562, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57171, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.359856+00', 2566, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57172, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.425611+00', 2589, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57173, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.425611+00', 2599, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57174, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.202293+00', 1605, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57175, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.575007+00', 1807, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57176, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.560007+00', 1878, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57177, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.587553+00', 1874, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57178, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.550082+00', 1943, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57179, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.599368+00', 2326, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57180, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.58883+00', 2491, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57181, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.15755+00', 2930, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57182, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.728976+00', 2491, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57183, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.644759+00', 2651, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57184, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.679114+00', 2744, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57185, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.889021+00', 2760, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57186, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:07.163329+00', 2717, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57187, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:07.873333+00', 2112, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57188, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:07.44602+00', 3069, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57189, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.173062+00', 2393, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57190, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.173062+00', 2484, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(57191, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.563464+00', 2134, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57192, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:07.909319+00', 2811, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(57193, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:07.909319+00', 2800, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57194, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.786426+00', 2032, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57195, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.01705+00', 2842, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57196, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.820993+00', 2325, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57197, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.046771+00', 3207, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(57198, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.046771+00', 3165, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57199, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.500097+00', 2666, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 20, 3, NULL, 3, NULL), +(57200, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.207433+00', 1108, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57201, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.207433+00', 1114, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(57202, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.511916+00', 2826, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57203, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.01705+00', 3103, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57204, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.376065+00', 3132, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57205, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.783073+00', 2746, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57206, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.032278+00', 2408, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57207, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.504508+00', 3204, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57208, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.504508+00', 3195, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57209, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.85812+00', 2551, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57210, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.111456+00', 2611, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57211, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.037279+00', 2738, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57212, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.737147+00', 5437, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57213, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.992926+00', 3171, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57214, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.202926+00', 2017, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57215, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.202926+00', 2047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57216, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.260145+00', 2030, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57217, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.433015+00', 1860, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57218, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.433015+00', 1866, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(57219, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.260145+00', 2037, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(57220, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.192955+00', 2281, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57221, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.192955+00', 2298, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57222, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.372737+00', 2280, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57223, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.372737+00', 2286, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57224, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.349451+00', 2346, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57225, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:07.805423+00', 4915, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57226, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.349451+00', 2368, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(57227, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.317352+00', 2507, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57228, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.317352+00', 2519, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(57229, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.285183+00', 1880, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57230, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.618297+00', 1735, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57231, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.328728+00', 3250, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57232, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.328728+00', 3266, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57233, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.350934+00', 1339, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57234, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.425005+00', 1308, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57235, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.376898+00', 3462, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57236, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.953715+00', 1889, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57237, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.376898+00', 3489, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57238, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.535766+00', 1481, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57239, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.649117+00', 1382, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57240, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.8202+00', 1537, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57241, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.94902+00', 2526, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57242, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.372727+00', 2121, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57243, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.33238+00', 382, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57244, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.339361+00', 436, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57245, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.230891+00', 587, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57246, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.206707+00', 789, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57247, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.25817+00', 756, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57248, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.273554+00', 792, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57249, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.166289+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57250, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.060157+00', 526, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57251, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.16223+00', 506, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57252, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.036135+00', 678, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57253, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.222204+00', 537, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57254, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.632889+00', 409, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57255, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.30621+00', 795, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57256, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.191881+00', 961, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57257, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.507881+00', 989, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57258, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.272201+00', 1263, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57259, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.272201+00', 1270, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57260, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.273913+00', 1392, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57261, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.273913+00', 1405, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57262, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.505982+00', 1262, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57263, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.300107+00', 1676, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57264, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.264222+00', 1713, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57265, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.450823+00', 1401, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57266, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.300107+00', 1705, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57267, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.236521+00', 883, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57268, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.960247+00', 1268, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57269, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.061876+00', 1346, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57270, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.62109+00', 898, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57271, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.62109+00', 899, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(57272, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.226568+00', 2460, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57273, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.226568+00', 2495, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57274, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.733493+00', 1024, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57275, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.733493+00', 1047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57276, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.167928+00', 1653, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57277, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.626184+00', 1325, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57278, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.052852+00', 940, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57279, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.052852+00', 962, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(57280, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.287134+00', 2978, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57281, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.287134+00', 3014, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57282, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.098149+00', 1360, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57283, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.098149+00', 1626, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(57284, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.072249+00', 1698, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57285, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.078361+00', 1729, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57286, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.078361+00', 1718, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57287, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.520903+00', 1329, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57288, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.072249+00', 1800, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(57289, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.798204+00', 2102, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57290, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.746102+00', 2154, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57291, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.798204+00', 2125, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57292, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.753479+00', 2310, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57293, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.702298+00', 2538, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57294, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.753479+00', 2631, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(57295, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.768715+00', 2596, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57296, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.768715+00', 2642, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57297, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.821415+00', 2608, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57298, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.821415+00', 2606, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57299, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.272679+00', 1415, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57300, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.920104+00', 1870, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57301, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.979595+00', 3110, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57302, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.998871+00', 2155, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57303, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.026249+00', 2157, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57304, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.056713+00', 2137, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57305, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.165073+00', 2057, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57306, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.281418+00', 1998, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57307, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.276889+00', 2019, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57308, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.61297+00', 3857, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57309, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.956877+00', 1531, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57310, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.956877+00', 1539, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(57311, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.742632+00', 893, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(57312, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.742632+00', 891, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57313, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.53839+00', 1789, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57314, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.53839+00', 1815, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57315, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.793361+00', 2638, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57316, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.101818+00', 1330, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57317, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.793361+00', 2648, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(57318, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.690332+00', 1833, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57319, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.215568+00', 1306, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57320, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.678836+00', 1853, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57321, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.678836+00', 1867, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(57322, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.160545+00', 3422, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57323, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.055786+00', 1702, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57324, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.123594+00', 1688, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57325, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.486199+00', 2336, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57326, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.486199+00', 2352, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57327, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.723978+00', 2246, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57328, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.583192+00', 404, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57329, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.577765+00', 411, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57330, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.640173+00', 437, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57331, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.605118+00', 483, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57332, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.69274+00', 484, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57333, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.695908+00', 523, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57334, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.61666+00', 411, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57335, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.60435+00', 453, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57336, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.632139+00', 532, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57337, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.662582+00', 498, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57338, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.692603+00', 627, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57339, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.751923+00', 579, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57340, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.079759+00', 421, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57341, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.340491+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57342, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.200936+00', 448, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57343, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.081756+00', 855, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57344, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.292083+00', 655, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57345, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.308895+00', 635, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57346, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.364939+00', 585, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57347, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.07079+00', 1057, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57348, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.988929+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57349, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.78982+00', 581, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57350, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.032801+00', 428, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57351, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.193748+00', 1364, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57352, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.267822+00', 1362, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57353, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.488383+00', 438, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57354, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.585477+00', 503, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57355, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.505863+00', 728, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57356, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.546989+00', 721, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57357, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.547312+00', 727, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57358, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.932075+00', 792, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57359, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:58.062175+00', 716, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57360, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.769648+00', 356, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57361, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.885231+00', 269, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57362, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.789715+00', 409, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57363, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.810414+00', 568, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57364, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.773857+00', 633, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57365, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.885413+00', 530, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57366, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.883041+00', 670, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57367, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.844579+00', 730, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57368, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.807122+00', 1010, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57369, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:27.879625+00', 1026, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57370, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.150579+00', 430, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57371, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.265433+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57372, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.249781+00', 413, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57373, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.150124+00', 590, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57374, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.187162+00', 610, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57375, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.191868+00', 619, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57376, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.168993+00', 257, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57377, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.115814+00', 368, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57378, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.140302+00', 491, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57379, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.116603+00', 599, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57380, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.133474+00', 621, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57381, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.15435+00', 651, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57382, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.924989+00', 200, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57383, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.789927+00', 409, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57384, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.897042+00', 475, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57385, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.777581+00', 610, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57386, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.831111+00', 586, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57387, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.837673+00', 641, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57388, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.886933+00', 707, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57389, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.840974+00', 788, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57390, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.770472+00', 982, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57391, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:11.881001+00', 1090, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57392, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.031099+00', 279, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57393, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.138679+00', 286, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57394, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.081792+00', 771, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57395, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.127991+00', 756, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57396, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.112876+00', 902, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57397, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.189486+00', 846, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57398, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.092932+00', 972, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57399, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.121418+00', 1007, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57400, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.056915+00', 1237, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57401, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.08756+00', 1242, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57402, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.342781+00', 335, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57403, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.323292+00', 457, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57404, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.372374+00', 422, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57405, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.36712+00', 448, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57406, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.276888+00', 562, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57407, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.341119+00', 543, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57408, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:04.762123+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57409, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.013655+00', 208, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57410, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:04.946476+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57411, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.000173+00', 472, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57412, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.046645+00', 428, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57413, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:04.988903+00', 547, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57414, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.064606+00', 499, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57415, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.02202+00', 561, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57416, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:04.889882+00', 856, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57417, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.004376+00', 804, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57418, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.225773+00', 323, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57419, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.120601+00', 458, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57420, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.277731+00', 373, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57421, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.26999+00', 409, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57422, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.171556+00', 686, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57423, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.298654+00', 617, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57424, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.27072+00', 654, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57425, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.186173+00', 750, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57426, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.224154+00', 1058, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57427, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.269989+00', 1093, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57428, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.260841+00', 403, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57429, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.2693+00', 500, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57430, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.297359+00', 505, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57431, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.256183+00', 613, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57432, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.301251+00', 594, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57433, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.214128+00', 692, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57434, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.327496+00', 381, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57435, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.278165+00', 457, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57436, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.298203+00', 458, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57437, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.295758+00', 536, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57438, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.321007+00', 619, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57439, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.335353+00', 633, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57440, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.206178+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57441, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.503934+00', 261, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57442, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.372915+00', 524, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57443, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.317284+00', 620, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57444, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.32951+00', 676, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57445, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.369294+00', 804, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57446, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.480562+00', 757, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57447, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.357127+00', 901, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57448, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.594773+00', 792, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57449, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.210194+00', 353, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57450, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.376632+00', 1243, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57451, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.23278+00', 517, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57452, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.356156+00', 409, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57453, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.209256+00', 548, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57454, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.199833+00', 698, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57455, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.185156+00', 801, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57456, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.185156+00', 804, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(57457, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.188771+00', 837, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(57458, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.188771+00', 835, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57459, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.824595+00', 457, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57460, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.955639+00', 550, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57461, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.456678+00', 347, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57462, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.836635+00', 1000, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57463, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.133083+00', 1047, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57464, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.103886+00', 1120, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57465, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.088642+00', 1354, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57466, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.01331+00', 1455, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57467, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.320722+00', 1194, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57468, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.285172+00', 1424, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57469, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.774213+00', 1957, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57470, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.302925+00', 1460, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57471, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.970977+00', 1839, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57472, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.210673+00', 1655, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57473, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.887081+00', 992, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57474, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.208978+00', 685, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57475, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.629831+00', 1279, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57476, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.11578+00', 880, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57477, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.066255+00', 1037, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57478, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.984158+00', 1118, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57479, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.032886+00', 1100, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57480, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.571605+00', 168, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57481, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.680857+00', 416, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57482, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.686482+00', 439, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57483, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.694391+00', 471, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57484, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.672903+00', 544, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57485, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.608542+00', 741, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57486, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.668532+00', 852, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57487, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:26.545381+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57488, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:26.557847+00', 334, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57489, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:26.55264+00', 342, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57490, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.796333+00', 697, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57491, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.820761+00', 915, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57492, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.463009+00', 1295, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57493, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.820761+00', 934, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(57494, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.501999+00', 577, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57495, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.064912+00', 1105, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57496, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.107832+00', 1168, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57497, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.107832+00', 1179, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(57498, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.57003+00', 923, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57499, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.553881+00', 968, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57500, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.57003+00', 951, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57501, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.977416+00', 1916, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57502, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.977416+00', 1928, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57503, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.514674+00', 1539, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57504, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.767955+00', 1308, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57505, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.767955+00', 1345, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(57506, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.425002+00', 1695, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57507, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.425002+00', 1705, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(57508, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.034265+00', 2138, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57509, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.848846+00', 1560, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57510, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.347355+00', 2148, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57511, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.179154+00', 2329, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57512, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.347355+00', 2209, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(57513, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.179154+00', 2411, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57514, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.913136+00', 1741, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57515, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.510377+00', 3293, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57516, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:12.510377+00', 3334, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(57517, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.440696+00', 2485, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57518, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.823261+00', 2166, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57519, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.694878+00', 2327, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57520, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.250721+00', 2874, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57521, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.250721+00', 2882, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(57522, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.409+00', 2739, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57523, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.409+00', 2769, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57524, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.413851+00', 2775, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57525, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.369026+00', 2989, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57526, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.647973+00', 2761, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57527, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.647973+00', 2767, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57528, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.369026+00', 3008, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57529, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.404623+00', 3043, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57530, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.404623+00', 3060, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(57531, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.378228+00', 3133, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57532, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.179766+00', 3675, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57533, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.179766+00', 3708, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57534, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.68498+00', 3222, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57535, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.523878+00', 3486, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57536, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.843389+00', 3188, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57537, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.843389+00', 3209, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57538, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:34.963094+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57539, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.013106+00', 268, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57540, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:34.986638+00', 375, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57541, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.020444+00', 375, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57542, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.02051+00', 400, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57543, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.005504+00', 426, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57544, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.105171+00', 240, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57545, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.111673+00', 361, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57546, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.292753+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57547, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.113641+00', 532, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57548, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.116636+00', 537, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57549, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.301053+00', 549, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57550, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.355048+00', 516, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57551, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.360743+00', 563, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57552, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.246798+00', 846, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57553, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.230769+00', 974, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57554, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:55.962973+00', 345, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57555, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:55.948888+00', 353, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57556, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:55.945397+00', 537, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57557, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:55.985779+00', 553, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57558, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:55.991565+00', 618, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57559, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.017287+00', 855, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57560, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.005457+00', 871, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57561, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.336832+00', 281, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57562, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.339996+00', 371, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(57563, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.406532+00', 321, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(57564, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.451241+00', 308, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57565, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.368554+00', 493, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57566, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.332932+00', 841, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57567, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.360621+00', 821, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57568, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.182778+00', 1162, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57569, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.182778+00', 1174, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57570, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.36068+00', 1040, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57571, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.268932+00', 1180, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57572, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.478959+00', 1011, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57573, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.292956+00', 1321, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57574, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.271399+00', 1452, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57575, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.271399+00', 1453, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(57576, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.426489+00', 1478, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57577, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.289291+00', 1627, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57578, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.372675+00', 1607, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57579, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.586184+00', 1413, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57580, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.360697+00', 1689, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57581, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.459719+00', 1602, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57582, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.459719+00', 1603, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(57583, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.380663+00', 1723, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57584, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.380663+00', 1727, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57585, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.15944+00', 2031, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57586, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:06.252679+00', 2047, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57587, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:49.956516+00', 186, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57588, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:49.996841+00', 148, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57589, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:50.010536+00', 299, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57590, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.78882+00', 217, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57591, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.701947+00', 369, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57592, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.606265+00', 527, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57593, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.822269+00', 521, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57594, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.768758+00', 592, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57595, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.788824+00', 698, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57596, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.860894+00', 652, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57597, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.710272+00', 879, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57598, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.831623+00', 761, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57599, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.691592+00', 915, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57600, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.814794+00', 857, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57601, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.833633+00', 1193, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57602, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:53.965808+00', 1224, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57603, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:10.893423+00', 216, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57604, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:10.989399+00', 385, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57605, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:10.923402+00', 493, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57606, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:10.897219+00', 537, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57607, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:10.960133+00', 479, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57608, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:10.947557+00', 551, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57609, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.69737+00', 376, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57610, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.814801+00', 274, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57611, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.711399+00', 474, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57612, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.62978+00', 741, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57613, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.839481+00', 560, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57614, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.913379+00', 636, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57615, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.97107+00', 586, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57616, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.897372+00', 716, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57617, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.908198+00', 991, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57618, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:12.943284+00', 1027, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57619, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:37.660867+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57620, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:37.650995+00', 403, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57621, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:37.700868+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57622, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:37.660743+00', 416, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57623, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:37.762427+00', 437, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57624, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:37.736053+00', 480, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57625, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.929668+00', 191, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57626, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.846369+00', 454, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57627, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.946354+00', 379, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57628, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.945445+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57629, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.904772+00', 644, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57630, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.966978+00', 607, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57631, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.77204+00', 312, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57632, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.189472+00', 933, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57633, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.194822+00', 1089, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57634, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.199991+00', 1179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57635, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.360836+00', 1258, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57636, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.797445+00', 868, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57637, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.764774+00', 976, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57638, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.816636+00', 1023, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57639, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.238849+00', 1810, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57640, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:47.296882+00', 1816, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57641, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.792032+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57642, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.796455+00', 480, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57643, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.899178+00', 441, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57644, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.770603+00', 585, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57645, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.812437+00', 614, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57646, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.901437+00', 560, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57647, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.748909+00', 724, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57648, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.898978+00', 639, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57649, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.897916+00', 1025, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57650, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:50.905583+00', 1083, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57651, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.460557+00', 536, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57652, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.668859+00', 395, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57653, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.569124+00', 534, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57654, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.40737+00', 1039, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57655, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.364807+00', 1191, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57656, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.544586+00', 1225, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57657, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.583547+00', 1225, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57658, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.537941+00', 1452, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57659, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.637887+00', 1441, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57660, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.82594+00', 1286, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57661, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.753536+00', 1372, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57662, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.031033+00', 1116, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57663, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.076951+00', 1117, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57664, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.905433+00', 1316, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57665, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.772456+00', 1824, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57666, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:12.637035+00', 2027, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57667, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.225491+00', 233, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57668, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.051389+00', 446, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57669, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.134081+00', 705, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57670, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.181077+00', 673, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57671, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.220818+00', 1096, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57672, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.136894+00', 1476, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57673, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.676961+00', 1033, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57674, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.613207+00', 1178, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57675, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.184933+00', 743, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57676, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.736138+00', 287, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57677, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.145925+00', 927, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57678, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.111288+00', 991, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57679, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.747314+00', 388, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57680, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.048238+00', 2247, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57681, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.691886+00', 643, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57682, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.196702+00', 2201, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57683, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:53.878891+00', 97, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57684, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:53.878995+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57685, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:54.912479+00', 224, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57686, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:54.879514+00', 264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57687, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:54.868827+00', 293, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57688, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.443351+00', 330, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57689, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.492677+00', 334, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57690, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.444659+00', 469, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57691, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.446157+00', 483, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57692, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.539224+00', 401, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57693, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.674015+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57694, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.291422+00', 669, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57695, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.521265+00', 506, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57696, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.664641+00', 427, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57697, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.637319+00', 490, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57698, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.287579+00', 856, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57699, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:07.198054+00', 146, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57700, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:07.228402+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57701, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:11.004255+00', 284, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57702, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:11.007732+00', 353, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57703, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:10.997919+00', 609, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57704, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:12.780094+00', 274, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57705, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:12.712803+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57706, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:12.663967+00', 450, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57707, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:12.776732+00', 462, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57708, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:12.667938+00', 684, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57709, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.667835+00', 292, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57710, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.652347+00', 644, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57711, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.64257+00', 756, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57712, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.788896+00', 693, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57713, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.793497+00', 761, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57714, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.749834+00', 832, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57715, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.715329+00', 1045, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57716, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.740319+00', 1033, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57717, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.223967+00', 88, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57718, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.246542+00', 271, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57719, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.216068+00', 329, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57720, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.261806+00', 306, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57721, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.249189+00', 604, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57722, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.623089+00', 264, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57723, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:19.708782+00', 391, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57724, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:19.641738+00', 826, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57725, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:19.641738+00', 837, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(57726, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:19.780033+00', 1034, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(57727, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.247843+00', 831, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(57728, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.676852+00', 439, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57729, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.831406+00', 1112, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57730, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:19.779235+00', 2307, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57731, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:19.779235+00', 2303, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57732, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.542123+00', 1621, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57733, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.690521+00', 1735, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57734, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.495185+00', 1947, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57735, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.146286+00', 2433, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57736, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.443631+00', 2183, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57737, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.146286+00', 2476, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(57738, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.593253+00', 2049, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57739, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.981358+00', 1736, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57740, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.981358+00', 1740, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(57741, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.595009+00', 2359, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57742, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.595009+00', 2382, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(57743, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.71713+00', 2276, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57744, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.984648+00', 2239, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57745, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.982309+00', 2263, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57746, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:21.461073+00', 1837, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57747, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.403666+00', 2938, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57748, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.476797+00', 3104, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57749, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.254792+00', 3514, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57750, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.990138+00', 2815, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57751, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.990138+00', 2822, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(57752, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.254792+00', 3558, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57753, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.32913+00', 3536, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57754, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.32913+00', 3576, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(57755, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.174634+00', 3802, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57756, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.515316+00', 3508, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57757, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.835948+00', 3207, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57758, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:21.12944+00', 2914, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57759, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:21.099014+00', 3003, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57760, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:21.496981+00', 2623, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57761, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.578061+00', 3566, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57762, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.172071+00', 4049, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57763, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.674853+00', 3556, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57764, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.580788+00', 4178, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57765, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.071741+00', 232, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57766, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.03795+00', 269, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57767, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.034801+00', 291, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57768, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.085835+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57769, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.058671+00', 388, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57770, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.080805+00', 412, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57771, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.707648+00', 526, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57772, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.766101+00', 589, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57773, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.994333+00', 374, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57774, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.72755+00', 727, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57775, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.796581+00', 747, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57776, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.847517+00', 985, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(57777, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.843423+00', 1011, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57778, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.875505+00', 1097, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57779, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.875505+00', 1099, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57780, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.947813+00', 1102, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57781, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.651783+00', 513, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57782, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.00611+00', 1176, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57783, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.00611+00', 1196, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57784, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.816868+00', 1461, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57785, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.972733+00', 1313, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57786, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.796194+00', 1509, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57787, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.972733+00', 1322, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(57788, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.816868+00', 1477, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(57789, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.796709+00', 1537, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57790, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.796194+00', 1536, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(57791, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.7963+00', 1558, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57792, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.7963+00', 1580, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(57793, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.920679+00', 755, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57794, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.814108+00', 1877, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57795, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.814108+00', 1879, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(57796, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.020311+00', 950, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57797, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.455047+00', 859, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57798, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.504913+00', 998, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57799, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.22036+00', 1287, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57800, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.502264+00', 1023, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57801, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.341217+00', 1205, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57802, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.217892+00', 1888, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57803, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.49661+00', 1770, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57804, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.476969+00', 426, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57805, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.623557+00', 420, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57806, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.585784+00', 738, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57807, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.570845+00', 889, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57808, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.528987+00', 1097, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57809, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.343967+00', 412, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57810, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.528346+00', 1233, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57811, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.566068+00', 1224, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57812, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.597432+00', 1227, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57813, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.500897+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57814, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.54514+00', 1526, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57815, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.582199+00', 527, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57816, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.56856+00', 547, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57817, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.559807+00', 653, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(57818, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.899535+00', 441, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57819, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.645208+00', 804, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(57820, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.577517+00', 881, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(57821, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.645208+00', 801, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57822, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.575276+00', 1964, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(57823, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.844659+00', 709, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57824, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.584752+00', 1102, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57825, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.584752+00', 1122, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(57826, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.067494+00', 974, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57827, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.380955+00', 680, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57828, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.252749+00', 886, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57829, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.381523+00', 947, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57830, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.352915+00', 992, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57831, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.510977+00', 917, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57832, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.666035+00', 778, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57833, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.42472+00', 1140, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57834, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.394927+00', 1223, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57835, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.32487+00', 1314, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57836, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.504788+00', 1638, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57837, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.441196+00', 1726, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57838, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.127274+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57839, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.021744+00', 385, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57840, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.010695+00', 550, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57841, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.060056+00', 527, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57842, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.068267+00', 686, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57843, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.076947+00', 706, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57844, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.051452+00', 768, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57845, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.140717+00', 734, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57846, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.662568+00', 462, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57847, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.711572+00', 401, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57848, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.074775+00', 1442, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57849, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.11037+00', 1485, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57850, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.101509+00', 699, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57851, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.306381+00', 501, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57852, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.101509+00', 710, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(57853, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.081349+00', 774, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57854, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.081349+00', 776, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(57855, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.176061+00', 745, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57856, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.348924+00', 794, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(57857, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.397179+00', 749, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57858, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.268439+00', 936, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(57859, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.092876+00', 1282, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57860, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.27967+00', 1105, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(57861, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.27967+00', 1084, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57862, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.407872+00', 971, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57863, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.092876+00', 1313, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57864, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.389128+00', 1036, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57865, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.511241+00', 978, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57866, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.048219+00', 859, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57867, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.128062+00', 1052, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57868, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.100937+00', 1183, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57869, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.214773+00', 1228, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57870, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.971102+00', 1612, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57871, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.964921+00', 1677, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57872, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.253617+00', 613, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57873, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.285786+00', 697, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57874, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.575058+00', 230, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57875, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.458251+00', 343, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57876, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.470031+00', 415, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57877, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.602292+00', 321, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57878, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.552125+00', 451, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57879, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.59197+00', 432, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57880, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:29.336792+00', 256, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57881, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.246007+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57882, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.242774+00', 307, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57883, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.346548+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57884, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.241001+00', 468, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57885, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.268035+00', 468, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57886, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.402688+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57887, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.370161+00', 382, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57888, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.496028+00', 457, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57889, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.480824+00', 582, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57890, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.606896+00', 608, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57891, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.513068+00', 708, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57892, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.608818+00', 678, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57893, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.607445+00', 746, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57894, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.495985+00', 1071, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57895, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.513069+00', 1198, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(57896, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.92771+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57897, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.982268+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57898, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:37.071142+00', 257, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57899, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:37.084853+00', 310, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57900, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:41.100034+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57901, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:41.249645+00', 501, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57902, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:41.081032+00', 891, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57903, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:41.232731+00', 824, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57904, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.531385+00', 197, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57905, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.697175+00', 220, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57906, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.509184+00', 529, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57907, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.687372+00', 426, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57908, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.674873+00', 461, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57909, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.662521+00', 546, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57910, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.574975+00', 642, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57911, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.692806+00', 600, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57912, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.559612+00', 1039, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57913, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.764705+00', 942, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57914, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.568644+00', 492, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57915, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.823349+00', 318, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57916, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.548947+00', 639, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57917, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.548658+00', 658, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57918, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.840974+00', 452, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57919, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.638113+00', 659, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57920, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.568256+00', 892, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57921, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.568387+00', 970, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(57922, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.85704+00', 723, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57923, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.63699+00', 1111, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57924, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.844297+00', 1000, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57925, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.844297+00', 1002, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(57926, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.823197+00', 1042, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57927, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.544962+00', 1343, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57928, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.754761+00', 1138, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57929, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.544962+00', 1350, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(57930, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.35552+00', 836, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57931, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.629887+00', 650, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57932, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.638013+00', 719, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57933, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.622408+00', 1002, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57934, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.594519+00', 1126, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57935, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.582801+00', 1189, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57936, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.211951+00', 1642, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57937, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.10041+00', 1834, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57938, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:23.887598+00', 242, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(57939, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.451223+00', 651, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57940, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.660993+00', 575, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57941, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.578304+00', 913, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57942, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.5503+00', 1364, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57943, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.417152+00', 596, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57944, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.474389+00', 798, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57945, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.754044+00', 1757, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57946, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.55288+00', 2014, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57947, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.011928+00', 1646, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57948, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.628795+00', 2062, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57949, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.643151+00', 2253, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57950, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.965999+00', 1943, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57951, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.064707+00', 1963, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57952, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.346505+00', 1759, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57953, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.819028+00', 2676, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57954, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:12.665685+00', 2943, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57955, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:19.500286+00', 269, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57956, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:19.507417+00', 307, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57957, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:19.538241+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57958, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.273464+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57959, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.368836+00', 283, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57960, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.423547+00', 776, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57961, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.253545+00', 1083, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57962, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.345986+00', 1012, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57963, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.472672+00', 907, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(57964, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.472877+00', 1159, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57965, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.366845+00', 1319, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57966, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.391977+00', 1513, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(57967, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.388766+00', 1740, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(57968, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:31.3654+00', 204, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57969, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:32.391997+00', 122, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(57970, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:32.431452+00', 191, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(57971, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:32.426163+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(57972, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.198707+00', 249, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57973, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.197681+00', 283, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57974, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.527206+00', 523, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(57975, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.527713+00', 727, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(57976, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.906406+00', 361, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(57977, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.009209+00', 718, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57978, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.268264+00', 706, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(57979, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.933586+00', 1126, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(57980, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.504884+00', 790, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(57981, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.504884+00', 772, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57982, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.799511+00', 1496, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(57983, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.273979+00', 1034, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(57984, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.478339+00', 857, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(57985, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.804017+00', 1740, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(57986, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.10093+00', 1488, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(57987, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.796862+00', 2109, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57988, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.014298+00', 2113, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57989, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.014298+00', 2162, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(57990, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.260044+00', 2026, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(57991, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.263537+00', 2053, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(57992, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.263537+00', 2100, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(57993, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.324751+00', 2141, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(57994, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.089627+00', 2402, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(57995, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.457659+00', 2038, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(57996, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.324751+00', 2177, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(57997, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.457659+00', 2056, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(57998, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.089627+00', 2413, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(57999, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.628771+00', 1613, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58000, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.756921+00', 1652, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58001, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.522893+00', 2019, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58002, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.74128+00', 1026, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58003, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.655226+00', 2255, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58004, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.029057+00', 2008, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58005, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.247104+00', 1842, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58006, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.720935+00', 2391, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58007, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.154887+00', 2093, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58008, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.933299+00', 2311, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58009, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.971142+00', 2317, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58010, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.37357+00', 4149, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58011, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.37357+00', 4182, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58012, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.236722+00', 2311, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58013, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.174032+00', 2452, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58014, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.466776+00', 2167, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58015, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.44094+00', 4309, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58016, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.44094+00', 4319, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58017, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.621188+00', 3300, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58018, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.652789+00', 2583, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58019, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.141031+00', 262, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58020, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.232082+00', 192, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58021, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.191297+00', 326, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58022, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.195037+00', 340, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58023, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.187062+00', 469, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58024, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.199607+00', 511, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58025, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.242952+00', 764, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58026, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.199311+00', 820, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58027, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:57.984663+00', 910, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(58028, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:57.988722+00', 914, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(58029, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.109584+00', 918, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58030, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.097206+00', 948, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58031, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.003053+00', 1229, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58032, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.592946+00', 696, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58033, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.595369+00', 1140, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58034, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.097216+00', 1744, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58035, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.180659+00', 1875, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58036, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.173999+00', 1949, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58037, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.593543+00', 1562, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58038, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:58.546243+00', 1610, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58039, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.087235+00', 208, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58040, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.087235+00', 209, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58041, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:04.866223+00', 446, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(58042, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.180974+00', 632, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(58043, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.044815+00', 911, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(58044, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.040884+00', 950, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(58045, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.036027+00', 1118, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58046, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.036027+00', 1146, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58047, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.136794+00', 1150, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58048, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.096974+00', 1187, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58049, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.096974+00', 1200, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58050, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.136794+00', 1166, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58051, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.052696+00', 1754, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58052, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.052696+00', 1770, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58053, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.214284+00', 1771, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58054, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.214284+00', 1773, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58055, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:20.353846+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58056, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:21.131937+00', 220, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58057, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:21.13739+00', 256, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58058, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:21.138657+00', 373, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58059, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.814758+00', 146, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58060, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.790537+00', 1130, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58061, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.790537+00', 1154, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58062, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.52091+00', 1189, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58063, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.646212+00', 1110, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58064, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.647221+00', 1350, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58065, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.294521+00', 1943, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58066, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.211328+00', 2091, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58067, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.576509+00', 1810, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58068, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.576509+00', 1805, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58069, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.46496+00', 1972, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58070, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.476496+00', 2047, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58071, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.264745+00', 2298, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58072, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.76838+00', 2856, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58073, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.76838+00', 2859, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58074, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.81415+00', 2895, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58075, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.81415+00', 2898, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58076, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:30.405902+00', 162, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58077, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:30.422382+00', 244, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58078, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:30.395631+00', 344, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58079, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:30.400236+00', 616, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58080, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.361406+00', 204, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58081, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.40113+00', 391, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58082, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.343543+00', 513, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58083, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.371583+00', 517, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58084, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.553318+00', 374, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58085, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.4093+00', 549, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58086, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.407842+00', 623, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58087, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.363239+00', 692, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58088, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.402637+00', 664, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58089, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.431422+00', 672, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58090, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.386144+00', 993, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58091, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.144254+00', 359, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58092, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.1669+00', 465, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58093, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.158948+00', 481, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58094, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.180783+00', 493, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58095, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.392816+00', 340, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58096, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.371838+00', 397, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58097, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.760327+00', 241, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58098, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.801667+00', 438, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58099, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.80517+00', 710, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58100, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.905557+00', 711, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58101, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.445773+00', 352, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58102, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.854598+00', 1192, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58103, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.854598+00', 1195, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58104, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.509822+00', 733, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58105, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.521697+00', 735, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58106, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.178825+00', 1263, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58107, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.859037+00', 1617, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58108, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.859037+00', 1693, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58109, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.387696+00', 498, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58110, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.515078+00', 1477, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58111, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.787181+00', 1375, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58112, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.460825+00', 1867, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58113, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.460825+00', 1905, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58114, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.909912+00', 1604, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58115, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.718329+00', 1886, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58116, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.697936+00', 2205, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58117, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.697936+00', 2207, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58118, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.146215+00', 1766, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58119, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.834333+00', 348, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58120, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.537373+00', 868, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58121, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.761245+00', 2682, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58122, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.761245+00', 2690, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58123, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.190402+00', 2296, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58124, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.354912+00', 1308, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58125, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.401915+00', 2261, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58126, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.318375+00', 2377, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58127, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.232854+00', 2531, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58128, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.2329+00', 2604, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58129, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.870879+00', 1074, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58130, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.734681+00', 1258, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58131, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.695132+00', 1358, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58132, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.367404+00', 3019, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58133, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.539478+00', 1914, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58134, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.550177+00', 2924, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58135, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.592181+00', 2042, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58136, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.32466+00', 761, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58137, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.294972+00', 944, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(58138, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.691888+00', 586, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58139, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.50526+00', 936, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58140, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.643585+00', 819, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58141, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.707235+00', 1008, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58142, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.420637+00', 1539, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58143, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.529242+00', 1437, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58144, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.605519+00', 1442, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58145, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.541198+00', 1788, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58146, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.541198+00', 1790, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58147, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.679153+00', 1701, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58148, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.489974+00', 1932, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58149, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.605386+00', 1881, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58150, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.572431+00', 1963, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58151, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.608963+00', 1958, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58152, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.485089+00', 2124, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58153, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.485089+00', 2133, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58154, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.75783+00', 1880, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58155, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.566014+00', 2125, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58156, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.66702+00', 2437, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58157, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:41.682258+00', 2468, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58158, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:09.971405+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58159, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:09.961136+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58160, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:09.998893+00', 624, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58161, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.572578+00', 288, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58162, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.604727+00', 397, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58163, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.552376+00', 583, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58164, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.269947+00', 254, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58165, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.332072+00', 734, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58166, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.332072+00', 780, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(58167, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.141296+00', 1914, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58168, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.141296+00', 1931, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58169, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.192837+00', 2074, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58170, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.192837+00', 2090, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58171, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.156677+00', 2358, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58172, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.156677+00', 2365, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58173, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.230778+00', 3021, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58174, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.089543+00', 3191, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58175, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.230778+00', 3066, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58176, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.089543+00', 3222, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58177, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.265195+00', 3512, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58178, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.264916+00', 3401, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58179, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.264916+00', 3406, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58180, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.265195+00', 3499, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58181, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.366546+00', 4034, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58182, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.865016+00', 3548, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58183, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.647407+00', 3767, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58184, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.366546+00', 4038, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58185, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.865016+00', 3560, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58186, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.647407+00', 3764, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58187, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.621826+00', 3943, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58188, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.269366+00', 4077, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58189, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.911998+00', 4511, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58190, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.889405+00', 3780, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58191, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.889405+00', 3759, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58192, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.269366+00', 4074, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58193, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.15885+00', 4562, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58194, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.621826+00', 3775, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58195, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.15885+00', 4502, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58196, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.27069+00', 4671, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58197, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.911998+00', 4624, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58198, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.27069+00', 4672, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58199, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.900873+00', 3095, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58200, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.900873+00', 3125, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58201, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.951583+00', 2830, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58202, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.252821+00', 3764, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58203, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.252821+00', 3773, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58204, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.79473+00', 3660, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58205, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.92128+00', 3544, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58206, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.573086+00', 2905, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58207, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.573086+00', 2916, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(58208, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.124104+00', 5590, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58209, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.086823+00', 3890, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 27, 3, NULL, 3, NULL), +(58210, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.069906+00', 2940, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58211, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.066872+00', 2968, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58212, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.348538+00', 5688, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58213, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.124104+00', 5857, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58214, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.348538+00', 5670, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58215, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.053332+00', 3060, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58216, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.029521+00', 6216, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58217, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.029521+00', 6219, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58218, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.538578+00', 4773, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58219, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.070407+00', 3251, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58220, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.089275+00', 3700, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58221, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.156383+00', 3898, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58222, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.192931+00', 4329, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58223, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.163231+00', 1395, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58224, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.173495+00', 4461, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58225, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.226724+00', 4439, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58226, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.066741+00', 4653, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58227, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.066741+00', 4670, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(58228, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.076357+00', 4718, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58229, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:12.871317+00', 5954, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58230, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.264687+00', 3267, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58231, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.538085+00', 4276, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58232, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.35406+00', 5485, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58233, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.469242+00', 4376, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58234, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.104773+00', 5746, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58235, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.264687+00', 3302, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(58236, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.09283+00', 5895, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58237, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.28728+00', 3719, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58238, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.35406+00', 5644, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(58239, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.788466+00', 3371, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58240, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.788466+00', 3380, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58241, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.222698+00', 6959, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58242, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.222698+00', 6992, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(58243, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.188756+00', 4180, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58244, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.300918+00', 3121, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(58245, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.868173+00', 2855, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58246, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.557206+00', 5176, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58247, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.292852+00', 4441, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58248, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.557206+00', 5172, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58249, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.868173+00', 2903, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(58250, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.589346+00', 4289, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58251, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.781676+00', 5684, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58252, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.592801+00', 3879, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58253, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.247486+00', 4318, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58254, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.926096+00', 3070, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58255, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.926096+00', 3101, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(58256, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.484476+00', 7026, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58257, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.484476+00', 7105, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58258, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.252871+00', 6591, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58259, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.252871+00', 6668, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58260, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.614042+00', 6374, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58261, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.286525+00', 6882, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58262, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.286525+00', 6906, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(58263, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.077565+00', 5122, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58264, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.077565+00', 5137, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58265, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.793211+00', 3431, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58266, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.793211+00', 3442, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(58267, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.979801+00', 4683, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58268, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.907957+00', 4804, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58269, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.577184+00', 7027, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58270, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.577184+00', 6676, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58271, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.979801+00', 4612, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58272, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.890019+00', 5158, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58273, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.410435+00', 6656, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58274, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.890019+00', 5221, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58275, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.480935+00', 4636, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58276, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.480935+00', 4631, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58277, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.838451+00', 4618, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58278, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.373494+00', 7253, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58279, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.373494+00', 7275, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58280, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.746687+00', 6871, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58281, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.746687+00', 6958, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58282, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.416801+00', 6300, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58283, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.416801+00', 6333, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58284, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.537597+00', 5231, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58285, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.243399+00', 8491, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58286, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.243399+00', 8526, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58287, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.537597+00', 5247, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(58288, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.838451+00', 5063, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58289, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.057814+00', 7232, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58290, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.755735+00', 9554, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58291, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.509415+00', 5763, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58292, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.509415+00', 5778, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58293, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.755735+00', 9512, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58294, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.840903+00', 5592, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58295, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.057814+00', 7343, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58296, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.860966+00', 5574, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58297, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.840903+00', 5669, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58298, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.860966+00', 5658, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58299, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.830301+00', 5711, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58300, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.830301+00', 5622, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58301, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.489292+00', 8207, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58302, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.23542+00', 9515, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58303, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.23542+00', 9527, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58304, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.46864+00', 9313, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58305, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.552006+00', 9260, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58306, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.987786+00', 7830, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58307, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.552006+00', 9447, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58308, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:00.630604+00', 237, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58309, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:00.646035+00', 288, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58310, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:00.631992+00', 386, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58311, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.160328+00', 488, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58312, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.160328+00', 497, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(58313, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.382047+00', 636, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58314, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.382047+00', 639, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(58315, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.142978+00', 919, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(58316, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.342708+00', 1095, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58317, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.28722+00', 1148, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58318, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.342708+00', 1103, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(58319, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.28722+00', 1175, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58320, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.36885+00', 1128, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58321, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.36885+00', 1145, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(58322, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.032869+00', 1489, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58323, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.032869+00', 1508, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58324, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.042437+00', 1583, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58325, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.042437+00', 1588, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58326, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.342516+00', 1387, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58327, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.342516+00', 1407, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58328, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.337699+00', 1419, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58329, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.337699+00', 1426, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58330, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.211475+00', 1584, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58331, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.211475+00', 1598, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58332, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.389254+00', 1464, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58333, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.389254+00', 1467, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58334, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.346617+00', 1520, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58335, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.187511+00', 1868, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58336, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.187511+00', 1871, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58337, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.346617+00', 1720, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58338, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:00.986338+00', 2162, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58339, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:00.986338+00', 2156, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58340, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.520968+00', 1746, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58341, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.520968+00', 1773, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58342, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.523777+00', 1871, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58343, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.523777+00', 1873, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58344, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:20.270006+00', 177, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58345, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:20.259926+00', 213, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58346, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:23.674215+00', 352, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58347, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:23.672577+00', 439, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58348, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:23.740621+00', 389, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58349, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:23.662061+00', 606, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58350, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.359008+00', 115, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58351, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:23.740916+00', 769, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58352, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.446984+00', 284, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58353, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.378684+00', 357, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58354, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.440751+00', 330, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58355, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:26.945867+00', 366, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58356, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:26.952813+00', 377, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58357, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:26.960219+00', 419, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58358, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.336545+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58359, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.351974+00', 355, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58360, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.312494+00', 425, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58361, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.364459+00', 496, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58362, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.403442+00', 497, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58363, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.369361+00', 567, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58364, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.334625+00', 391, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58365, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.504963+00', 375, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58366, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.552984+00', 385, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58367, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.4171+00', 817, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58368, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.338801+00', 1157, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58369, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.501333+00', 991, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58370, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.34591+00', 1281, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58371, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.316347+00', 1320, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58372, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.320326+00', 1490, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58373, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.55297+00', 1454, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58374, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.334864+00', 705, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58375, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.511129+00', 1621, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58376, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.47547+00', 1742, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58377, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.144095+00', 1123, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58378, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.402103+00', 892, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58379, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.267518+00', 1121, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58380, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.49124+00', 1913, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58381, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.184354+00', 209, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58382, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.889826+00', 870, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58383, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.861398+00', 975, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58384, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.889826+00', 900, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58385, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.861398+00', 993, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(58386, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.816976+00', 1077, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58387, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.816976+00', 1151, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58388, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.053985+00', 987, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(58389, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.269409+00', 1903, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58390, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.152913+00', 1474, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58391, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.542124+00', 1209, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58392, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.422369+00', 2332, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58393, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.939674+00', 1819, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58394, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.868888+00', 1891, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58395, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.939674+00', 1822, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58396, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.868888+00', 1906, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58397, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.338376+00', 3603, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58398, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.156903+00', 1026, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58399, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.347371+00', 944, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58400, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.527902+00', 3788, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58401, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.852954+00', 1523, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58402, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.976295+00', 1485, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58403, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.579956+00', 3986, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58404, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.579956+00', 3990, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58405, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.748063+00', 1933, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58406, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.27715+00', 1595, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58407, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.020555+00', 1862, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58408, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.212709+00', 1749, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58409, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.233866+00', 1769, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58410, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.873028+00', 2290, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58411, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.309397+00', 1860, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58412, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.539648+00', 2885, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58413, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.842692+00', 2660, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58414, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:49.611423+00', 259, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58415, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.323566+00', 455, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58416, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.423226+00', 488, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58417, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.308035+00', 671, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58418, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.502328+00', 497, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(58419, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.431939+00', 625, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58420, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.209533+00', 959, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58421, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.209533+00', 961, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(58422, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.304613+00', 1001, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58423, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.426919+00', 1017, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58424, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.292708+00', 1153, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58425, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.426919+00', 1026, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 18, 3, NULL, 3, NULL), +(58426, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.508004+00', 954, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(58427, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.370582+00', 1116, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58428, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.13911+00', 403, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58429, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.182993+00', 860, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(58430, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.181606+00', 981, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(58431, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.168142+00', 990, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(58432, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.29791+00', 899, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(58433, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.188234+00', 1350, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58434, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.684941+00', 868, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(58435, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.188234+00', 1365, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58436, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.760655+00', 949, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58437, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.760655+00', 1009, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(58438, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.144049+00', 1632, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58439, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.144049+00', 1626, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58440, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.116784+00', 767, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58441, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.116784+00', 777, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(58442, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.832747+00', 1492, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58443, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.832747+00', 1591, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58444, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.753509+00', 1694, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58445, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.753509+00', 1703, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(58446, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.199131+00', 1416, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58447, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.199131+00', 1432, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(58448, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.027003+00', 1776, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58449, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.027003+00', 1788, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58450, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.921614+00', 2077, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58451, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.008572+00', 1994, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58452, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.921614+00', 2093, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58453, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.008572+00', 2000, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58454, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.245022+00', 1994, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58455, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.245022+00', 2010, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58456, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.253455+00', 2113, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58457, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.253455+00', 2126, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(58458, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.200635+00', 2540, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58459, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.200635+00', 2543, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58460, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.104549+00', 2998, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58461, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.104549+00', 3018, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58462, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.171322+00', 359, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58463, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.1657+00', 422, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58464, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.20653+00', 403, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58465, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.320669+00', 303, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58466, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.214448+00', 554, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58467, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.210322+00', 731, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58468, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.348182+00', 611, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58469, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.366894+00', 621, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58470, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.863104+00', 384, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58471, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.199397+00', 1062, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58472, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.22078+00', 1172, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58473, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.936821+00', 619, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58474, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.98736+00', 1014, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58475, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.101011+00', 925, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58476, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.12225+00', 964, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58477, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.930494+00', 1164, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58478, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.928657+00', 1170, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58479, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.433967+00', 679, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58480, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.188757+00', 1160, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58481, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.311801+00', 1041, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58482, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.188757+00', 1174, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58483, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.505189+00', 935, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58484, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.050408+00', 1438, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58485, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.114668+00', 1453, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58486, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.114668+00', 1474, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(58487, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.512935+00', 1163, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58488, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.478823+00', 614, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58489, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.491917+00', 694, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58490, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.228712+00', 1035, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58491, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.272777+00', 997, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58492, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.363717+00', 930, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58493, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.292755+00', 1067, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58494, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.505198+00', 1938, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58495, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.800923+00', 1747, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58496, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.584607+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58497, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.617388+00', 179, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58498, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.79605+00', 245, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58499, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.712906+00', 354, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58500, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.814066+00', 538, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58501, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.889018+00', 495, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58502, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.646263+00', 85, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58503, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.640692+00', 299, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58504, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.654647+00', 380, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58505, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.645821+00', 426, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58506, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.767268+00', 327, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58507, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.798754+00', 299, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58508, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.801075+00', 438, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58509, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:54.763571+00', 259, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58510, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:54.727806+00', 404, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58511, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.379652+00', 81, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58512, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:54.732835+00', 739, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58513, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:54.777235+00', 728, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58514, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.341024+00', 251, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58515, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.354857+00', 334, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58516, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.602647+00', 295, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58517, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.626996+00', 291, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58518, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.669228+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58519, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.618354+00', 383, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58520, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.640303+00', 402, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58521, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.663253+00', 449, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58522, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.862646+00', 235, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58523, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.819927+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58524, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.796336+00', 478, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58525, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.892172+00', 515, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58526, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.822949+00', 613, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58527, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.9093+00', 595, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58528, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.890823+00', 657, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58529, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.888993+00', 659, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58530, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.848051+00', 943, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58531, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:59.903748+00', 1084, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58532, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:13.357022+00', 228, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58533, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:13.510533+00', 263, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58534, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:13.663545+00', 307, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58535, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:14.517306+00', 141, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58536, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:14.510122+00', 282, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58537, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:15.149234+00', 155, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58538, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:15.125197+00', 299, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58539, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:17.797315+00', 205, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58540, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.299238+00', 263, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(58541, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.298518+00', 310, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58542, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.444699+00', 172, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(58543, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.298518+00', 323, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(58544, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.481472+00', 147, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58545, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.481472+00', 149, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(58546, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:31.930262+00', 797, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58547, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:31.930262+00', 804, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(58548, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.053774+00', 847, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(58549, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.372252+00', 753, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58550, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.024752+00', 1114, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(58551, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.372252+00', 773, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(58552, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.053794+00', 1234, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(58553, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.11697+00', 1251, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58554, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.11697+00', 1286, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58555, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.532944+00', 870, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58556, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.049535+00', 1382, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58557, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.049535+00', 1396, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58558, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.015788+00', 1483, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58559, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.015788+00', 1493, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58560, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.033171+00', 1499, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58561, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.033171+00', 1576, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58562, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.366654+00', 1307, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 1, 2, NULL, 3, NULL), +(58563, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.493093+00', 1498, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58564, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.751839+00', 1237, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58565, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.953964+00', 1035, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58566, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.751839+00', 1293, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(58567, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.560926+00', 2090, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58568, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.087608+00', 2162, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58569, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.057637+00', 2588, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58570, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.836816+00', 2854, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58571, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.836816+00', 2866, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58572, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.891829+00', 3063, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58573, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.891829+00', 3086, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58574, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.945345+00', 3440, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58575, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.685241+00', 3652, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58576, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.798971+00', 3592, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58577, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.798971+00', 3581, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58578, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.141106+00', 3466, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58579, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.862349+00', 3783, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58580, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.649657+00', 3360, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58581, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.020842+00', 4118, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58582, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.020842+00', 4121, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58583, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.787362+00', 4356, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58584, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.122535+00', 4038, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58585, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.487608+00', 3759, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58586, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.501784+00', 5043, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58587, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.211838+00', 1778, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58588, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.211838+00', 1856, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58589, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.343903+00', 2748, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58590, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.343903+00', 2762, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58591, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.181905+00', 1942, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58592, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.32477+00', 2812, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58593, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.181905+00', 1987, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(58594, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.32477+00', 2856, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58595, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.315552+00', 2934, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58596, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.315552+00', 2963, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58597, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:38.022419+00', 1450, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58598, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.328975+00', 3265, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58599, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.328975+00', 3260, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58600, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:38.100946+00', 1532, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58601, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.26647+00', 2385, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58602, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.168777+00', 2960, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58603, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:38.096773+00', 2121, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58604, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.634305+00', 6653, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58605, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.634305+00', 6644, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58606, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.654945+00', 6614, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58607, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:38.074755+00', 2466, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58608, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.190818+00', 969, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58609, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.66926+00', 661, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58610, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.679459+00', 760, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58611, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.190944+00', 1306, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58612, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.339679+00', 1254, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58613, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.523264+00', 1220, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58614, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.659738+00', 1185, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58615, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.656749+00', 1464, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58616, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.560983+00', 1590, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58617, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.252692+00', 287, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58618, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.317123+00', 266, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58619, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:41.550013+00', 2094, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58620, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.177274+00', 781, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58621, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.367855+00', 1047, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58622, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.768716+00', 772, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58623, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.746404+00', 828, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58624, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.761063+00', 902, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58625, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.80223+00', 1009, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58626, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.329026+00', 1657, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58627, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:44.016743+00', 1251, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58628, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.395937+00', 392, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58629, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.43366+00', 432, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58630, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.365913+00', 585, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58631, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.437047+00', 524, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58632, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.311117+00', 706, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58633, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.379097+00', 657, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58634, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.580186+00', 311, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58635, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.599337+00', 378, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58636, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.611481+00', 401, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58637, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.467398+00', 619, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58638, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.652829+00', 546, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58639, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.637964+00', 596, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58640, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.612695+00', 650, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58641, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.536654+00', 753, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58642, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.580697+00', 998, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58643, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.469655+00', 1135, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58644, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:31.77501+00', 1031, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58645, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:31.868843+00', 1052, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58646, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.597288+00', 583, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58647, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.232961+00', 977, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58648, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.44695+00', 820, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58649, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.374616+00', 1005, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58650, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.691531+00', 867, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58651, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.675316+00', 964, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58652, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.599311+00', 1070, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58653, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.675737+00', 1112, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58654, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.434353+00', 1363, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58655, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.467114+00', 1474, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58656, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.597617+00', 1379, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58657, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.675534+00', 1322, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58658, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.678583+00', 1685, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58659, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.50972+00', 1879, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58660, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:56.880721+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58661, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.166473+00', 296, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58662, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.153409+00', 426, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58663, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.349271+00', 319, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58664, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.252674+00', 509, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58665, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.680486+00', 116, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58666, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.247509+00', 726, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58667, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.16425+00', 879, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58668, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.208651+00', 841, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58669, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.205266+00', 852, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58670, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.213964+00', 856, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58671, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.156098+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58672, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.224909+00', 1251, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(58673, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.101696+00', 414, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58674, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.948676+00', 581, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58675, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.884935+00', 739, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58676, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.884935+00', 755, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(58677, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.964769+00', 802, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(58678, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.952944+00', 1061, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58679, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.952944+00', 1074, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58680, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.93044+00', 1140, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58681, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.93044+00', 1149, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58682, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.3437+00', 1023, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58683, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.149533+00', 1262, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58684, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.463448+00', 1272, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58685, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.718939+00', 1017, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58686, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.472043+00', 1331, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58687, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.527364+00', 1320, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58688, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.079979+00', 1031, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58689, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.041913+00', 1331, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58690, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.171753+00', 1244, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58691, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.044751+00', 1379, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58692, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.124919+00', 1397, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58693, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.536647+00', 2155, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58694, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.442829+00', 2394, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58695, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.135617+00', 319, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58696, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.420899+00', 211, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58697, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.215171+00', 494, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58698, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.199229+00', 691, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58699, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.466714+00', 618, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58700, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.81495+00', 837, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58701, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.361095+00', 1344, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(58702, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.994172+00', 918, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58703, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.19397+00', 1733, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(58704, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.181262+00', 2108, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58705, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.442566+00', 1857, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(58706, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.390438+00', 1098, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(58707, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.181262+00', 2319, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58708, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.390438+00', 1071, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58709, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.0605+00', 1515, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58710, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.667164+00', 1056, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58711, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.667164+00', 1066, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58712, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.784951+00', 1679, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58713, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.923399+00', 1948, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58714, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.923399+00', 1986, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58715, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.992193+00', 2173, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58716, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.992193+00', 2188, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(58717, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.721021+00', 2560, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58718, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.721021+00', 2577, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58719, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.684862+00', 1687, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58720, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.342253+00', 4123, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58721, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.342253+00', 4131, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58722, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.947689+00', 2726, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58723, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.124792+00', 2626, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58724, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.903963+00', 2862, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58725, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.903963+00', 2905, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58726, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.080334+00', 1899, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58727, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.347029+00', 1991, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58728, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.243564+00', 3286, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58729, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.15055+00', 2475, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58730, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.109995+00', 2516, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58731, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.354042+00', 2320, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58732, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.592919+00', 3178, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58733, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.078919+00', 3741, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58734, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.29778+00', 3021, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58735, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:12.792198+00', 168, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58736, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:12.802532+00', 311, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58737, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:12.803779+00', 531, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58738, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.155158+00', 345, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58739, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.245051+00', 404, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58740, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.213771+00', 503, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58741, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.10751+00', 690, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(58742, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.03252+00', 837, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(58743, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.144292+00', 941, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(58744, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.539861+00', 1002, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58745, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.249342+00', 422, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58746, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.633671+00', 1470, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58747, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.2868+00', 992, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58748, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.314562+00', 1161, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58749, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.339115+00', 1169, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58750, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.116734+00', 642, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58751, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.138329+00', 689, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58752, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.163029+00', 2698, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58753, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.163029+00', 2711, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58754, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.977106+00', 954, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58755, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.534904+00', 1467, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58756, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.140338+00', 1093, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58757, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.170176+00', 1297, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58758, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.176319+00', 1296, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58759, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.171205+00', 3311, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58760, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.171205+00', 3316, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58761, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.264729+00', 513, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58762, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.334829+00', 2539, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58763, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.372999+00', 571, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58764, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.313313+00', 2802, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58765, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.329221+00', 793, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58766, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.565557+00', 581, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58767, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.885337+00', 420, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58768, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.956805+00', 460, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58769, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.635015+00', 338, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58770, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.662224+00', 627, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58771, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.997015+00', 305, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58772, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.695893+00', 677, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58773, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.809987+00', 588, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58774, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.828622+00', 612, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58775, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.749032+00', 745, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58776, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.735138+00', 796, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58777, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.056736+00', 543, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58778, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.896902+00', 841, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58779, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.91914+00', 818, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58780, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.913916+00', 842, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58781, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.012781+00', 763, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58782, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.854772+00', 981, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58783, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.834551+00', 1239, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58784, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.926958+00', 1170, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58785, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.392925+00', 275, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58786, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.314094+00', 606, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58787, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.488689+00', 587, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58788, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.059502+00', 473, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58789, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.61602+00', 1053, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58790, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.61602+00', 1063, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58791, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.546929+00', 1146, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58792, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.546929+00', 1178, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58793, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.614064+00', 1128, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58794, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.614064+00', 1145, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58795, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.479333+00', 1411, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58796, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.479333+00', 1397, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58797, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.523739+00', 1465, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(58798, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.523739+00', 1451, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58799, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.624202+00', 519, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58800, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.15741+00', 1109, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58801, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.512769+00', 1025, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58802, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.425216+00', 2359, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58803, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.425216+00', 2353, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58804, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.525301+00', 2630, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58805, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.525301+00', 2645, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58806, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.595566+00', 1872, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58807, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.372579+00', 1311, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58808, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.544756+00', 1154, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58809, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.69699+00', 1004, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58810, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.608982+00', 2102, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58811, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.544756+00', 1169, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(58812, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.69699+00', 1019, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58813, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.58736+00', 2288, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58814, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.608017+00', 1367, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58815, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.608017+00', 1377, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58816, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.924823+00', 2081, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58817, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.604397+00', 1448, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58818, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.604397+00', 1449, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58819, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.577076+00', 2622, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58820, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.716627+00', 1685, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58821, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.716627+00', 1682, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58822, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.651453+00', 2791, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58823, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.971163+00', 868, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58824, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.168979+00', 760, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58825, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.831778+00', 1454, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58826, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.772777+00', 1662, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58827, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.052777+00', 1477, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58828, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.936753+00', 1600, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58829, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.9421+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58830, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.736085+00', 421, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58831, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.801414+00', 473, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58832, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.774507+00', 608, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58833, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.774777+00', 701, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58834, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.930311+00', 644, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58835, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.069021+00', 533, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58836, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.752451+00', 906, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58837, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.814382+00', 850, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58838, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.05178+00', 657, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58839, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.005519+00', 831, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58840, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.029528+00', 815, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58841, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.036006+00', 844, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58842, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.998356+00', 937, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58843, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.961094+00', 1263, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58844, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:31.935212+00', 1337, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58845, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.605508+00', 1743, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58846, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.605508+00', 1746, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58847, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.526846+00', 2204, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(58848, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.75774+00', 2064, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58849, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.523197+00', 2299, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58850, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.75774+00', 2118, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58851, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.523197+00', 2437, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(58852, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.533638+00', 2787, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58853, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:22.533638+00', 2807, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58854, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.187188+00', 2282, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58855, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.187188+00', 2362, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(58856, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.112867+00', 2451, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58857, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.112867+00', 2489, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(58858, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.241567+00', 1473, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58859, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.196203+00', 2529, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58860, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.196203+00', 2597, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58861, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.151819+00', 2022, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58862, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.227807+00', 1954, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58863, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.783813+00', 1613, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58864, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.381456+00', 3159, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58865, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.381456+00', 3168, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58866, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.289983+00', 2341, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58867, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.212069+00', 3674, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58868, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.212069+00', 3675, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(58869, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.702088+00', 2311, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58870, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.553829+00', 3411, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58871, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.868826+00', 2169, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58872, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.179173+00', 3832, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58873, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.008145+00', 4013, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(58874, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.553829+00', 3476, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(58875, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.924928+00', 3069, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58876, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.008145+00', 4007, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58877, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.083151+00', 4009, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58878, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.687528+00', 2400, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58879, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.083151+00', 4015, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58880, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.5413+00', 3614, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58881, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.5413+00', 3617, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(58882, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.401549+00', 2797, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58883, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.649058+00', 2853, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58884, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.853025+00', 2742, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58885, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.424661+00', 3287, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58886, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.204341+00', 4785, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58887, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.204341+00', 4972, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58888, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.600693+00', 5199, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58889, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:25.018467+00', 3800, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58890, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:23.600693+00', 5226, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58891, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.752805+00', 4290, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58892, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:50.810669+00', 276, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58893, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:50.8105+00', 312, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58894, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:50.86507+00', 267, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58895, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:50.837995+00', 374, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58896, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.764471+00', 188, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58897, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.768336+00', 191, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58898, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.768085+00', 316, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58899, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.338056+00', 230, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58900, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.35432+00', 215, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58901, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.347178+00', 261, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58902, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.365465+00', 332, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58903, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.975339+00', 207, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58904, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.996134+00', 273, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58905, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.966407+00', 391, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58906, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.994779+00', 466, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(58907, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.06576+00', 485, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(58908, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.400661+00', 446, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58909, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.478931+00', 366, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58910, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.395638+00', 752, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(58911, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.59088+00', 567, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58912, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.44188+00', 760, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(58913, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.12055+00', 1165, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58914, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.12055+00', 1181, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(58915, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.45033+00', 881, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(58916, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.184031+00', 1303, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58917, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.184031+00', 1327, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(58918, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.319697+00', 248, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58919, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.553411+00', 505, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58920, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.368971+00', 795, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58921, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.324868+00', 1037, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58922, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.588816+00', 900, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58923, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.579583+00', 943, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58924, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.601285+00', 1068, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58925, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.569476+00', 1321, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58926, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:04.639291+00', 632, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58927, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:04.633397+00', 824, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58928, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.060765+00', 401, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58929, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:04.940558+00', 854, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58930, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.030463+00', 780, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58931, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:04.961034+00', 938, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58932, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:04.81646+00', 1092, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58933, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.135407+00', 1230, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(58934, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.008589+00', 1389, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58935, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.066096+00', 1351, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58936, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.008589+00', 1396, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(58937, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.066096+00', 1358, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58938, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.85248+00', 840, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(58939, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.85248+00', 838, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58940, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.817799+00', 1045, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58941, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.817799+00', 1047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(58942, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.780558+00', 1151, 0, TRUE, 'public-dashboard', 'org.eclipse.jetty.util.SharedBlockingCallback$BlockerFailedException: java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 19, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58943, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.980973+00', 1117, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58944, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.980973+00', 1121, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(58945, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.568983+00', 763, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58946, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.38889+00', 943, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(58947, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.535706+00', 811, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58948, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.38889+00', 942, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58949, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.492478+00', 888, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(58950, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.771396+00', 874, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58951, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.301833+00', 505, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58952, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.4856+00', 674, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58953, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.484827+00', 868, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58954, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.444907+00', 966, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58955, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.483226+00', 975, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58956, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.121184+00', 1366, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58957, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.37449+00', 1248, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58958, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.15706+00', 1510, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58959, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.484808+00', 1227, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58960, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.351399+00', 1474, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58961, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.325921+00', 1549, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58962, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.314267+00', 2114, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(58963, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.483319+00', 2021, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(58964, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.258289+00', 313, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58965, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.216437+00', 391, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58966, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.253488+00', 369, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(58967, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.21428+00', 472, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58968, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.21428+00', 477, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(58969, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.968812+00', 498, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58970, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.968812+00', 506, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(58971, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.936913+00', 845, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(58972, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.011049+00', 901, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(58973, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.128263+00', 995, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(58974, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.97665+00', 1157, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(58975, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.63267+00', 532, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(58976, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.988758+00', 1191, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(58977, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.988758+00', 1189, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58978, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.324411+00', 859, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(58979, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.198535+00', 1170, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58980, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.286296+00', 1135, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(58981, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.198535+00', 1223, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(58982, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.320158+00', 1364, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(58983, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.990873+00', 1773, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58984, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.316961+00', 1445, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(58985, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.990873+00', 1791, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(58986, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.240935+00', 1528, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(58987, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.373794+00', 1584, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(58988, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.244501+00', 1767, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58989, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.259739+00', 1789, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(58990, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.244501+00', 1800, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(58991, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.546426+00', 1940, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(58992, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.235173+00', 2410, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(58993, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.18604+00', 2463, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(58994, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.057588+00', 1612, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(58995, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.230154+00', 2453, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58996, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.230154+00', 2457, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(58997, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.412073+00', 2361, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(58998, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.263293+00', 2608, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(58999, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.016841+00', 2867, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59000, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.016841+00', 2868, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59001, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.944985+00', 3333, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59002, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.533916+00', 2745, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59003, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.385114+00', 2904, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59004, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.944985+00', 3350, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59005, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:11.664149+00', 359, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59006, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:11.67876+00', 504, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59007, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:11.720757+00', 645, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59008, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:11.754513+00', 631, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59009, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:11.706911+00', 793, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59010, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:11.74938+00', 925, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59011, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.164777+00', 640, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59012, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.122995+00', 865, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59013, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.788789+00', 283, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59014, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.512227+00', 583, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59015, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.197049+00', 1234, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59016, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.830778+00', 736, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59017, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.786047+00', 799, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59018, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.146143+00', 1520, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59019, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.388862+00', 1435, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59020, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.263302+00', 1643, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59021, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.86203+00', 1208, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59022, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.747917+00', 1548, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59023, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.641291+00', 1761, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59024, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.932809+00', 1556, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59025, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.480966+00', 2109, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59026, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.652763+00', 2050, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59027, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.199649+00', 528, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59028, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.339669+00', 438, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59029, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.496131+00', 2452, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59030, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.03723+00', 981, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59031, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.440893+00', 2679, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59032, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.339582+00', 794, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59033, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.322339+00', 840, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59034, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.344181+00', 892, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59035, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.675713+00', 2581, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59036, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.531636+00', 2761, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59037, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.620595+00', 622, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59038, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.748653+00', 660, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59039, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.963743+00', 534, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59040, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.641169+00', 868, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59041, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.918484+00', 867, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59042, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.90485+00', 970, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59043, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.772949+00', 1319, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(59044, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.848668+00', 1453, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(59045, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.012728+00', 1316, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(59046, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.756087+00', 838, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59047, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.756087+00', 842, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(59048, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.621882+00', 1057, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59049, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.621882+00', 1059, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(59050, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.600249+00', 1145, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59051, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.600249+00', 1150, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59052, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.968868+00', 792, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59053, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.576128+00', 1295, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59054, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.576128+00', 1298, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59055, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.685058+00', 1204, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59056, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.685058+00', 1210, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59057, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.888874+00', 1013, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59058, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.860923+00', 2199, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59059, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:06.860923+00', 2217, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59060, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.360784+00', 837, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59061, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.032822+00', 1336, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59062, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.844805+00', 1581, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59063, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.844805+00', 1629, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(59064, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.430727+00', 1149, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59065, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.388366+00', 398, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59066, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.404926+00', 1440, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59067, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.6096+00', 1319, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59068, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.392302+00', 894, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59069, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.052992+00', 1300, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59070, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.390363+00', 1963, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59071, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.630155+00', 1811, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59072, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.183574+00', 1372, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59073, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.93986+00', 1666, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59074, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.953007+00', 1751, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59075, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.596848+00', 2237, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59076, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.496545+00', 400, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59077, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.496545+00', 411, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59078, X'ce785e425cd7e09839472c8110fc5f47a7242160d3a86be042e87d8f0af5e227', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.494898+00', 589, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59079, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.596001+00', 615, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(59080, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.96235+00', 542, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59081, X'd14b49316ef35c8312cfc23f28458b4ef690a9c941a7516a91094898e309cfe6', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.939291+00', 578, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59082, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.69276+00', 1181, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59083, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.69276+00', 1190, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59084, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.109037+00', 1026, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59085, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.693183+00', 1583, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59086, X'31e91bef48239187fcf4768b796c53b9847c674d7baba8142aeca114d9fad54d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.801885+00', 1489, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59087, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.693183+00', 1646, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59088, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.69291+00', 1667, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59089, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.241018+00', 1121, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59090, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.69291+00', 1672, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(59091, X'8a4a2db15fd2a4fe7ef6bb6752a81b703aba74bceb51c37cc5e9ac33d2f9028d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.661547+00', 1794, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59092, X'a0b50074b014290c84e7299c2694a47f170444b60a60c4b2fe6cfd094e47ce54', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.996964+00', 1466, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59093, X'094a6079d710829ffd1ad5face9389d3df7786e2d70f71e17a77ab03f29665f2', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.640181+00', 1820, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59094, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.044168+00', 1930, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59095, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.85114+00', 2205, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59096, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.602539+00', 1477, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59097, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.85114+00', 2246, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59098, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.417751+00', 1950, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59099, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.011786+00', 2380, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59100, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.247965+00', 2152, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59101, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.379196+00', 2518, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59102, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.114727+00', 2797, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59103, X'c01ec4b272e70667b378fd0370ec807576aa8ffbf1f4d2f5f9b6520bb5ba7cb6', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:24.340491+00', 637, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59104, X'a2e36817be9f82729f15bbb7eb46d1afd123cd55e3911241d8bbc3d4236cf9e6', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:24.333006+00', 681, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59105, X'0ccaf43ff604990a538fa303c8d28b46ee38b5f8a60d56b96b1e84c8dc7f0fc7', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:24.39588+00', 743, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59106, X'ee0e3c6c1f5fa0fbdd7feb01c046907bc2d350017c9995afc882a9ab7b030786', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:24.468382+00', 701, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59107, X'ec2ece55fbceed080a7b7e2a4a0d8bfcafea5d78fc98780aa427894fd519381d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:24.448888+00', 771, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59108, X'9cba6bbfb35b4587220bebfc9af491ebe8f7fcc4870fcc350b0fdf20c8a17a3b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:24.426802+00', 796, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59109, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:38.815094+00', 316, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59110, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:38.83076+00', 370, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59111, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:38.823316+00', 423, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59112, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:38.824233+00', 531, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59113, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:38.865735+00', 515, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59114, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:38.87822+00', 531, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59115, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:11.602495+00', 462, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59116, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.281837+00', 298, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59117, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:11.600293+00', 1083, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59118, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:11.77046+00', 1008, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59119, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.111345+00', 761, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59120, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:11.96923+00', 1008, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59121, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:11.825351+00', 1170, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59122, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.279104+00', 801, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59123, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.24312+00', 907, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59124, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.101921+00', 1078, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59125, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.208702+00', 1040, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59126, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.01766+00', 1260, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59127, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:11.807034+00', 1514, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59128, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.228972+00', 1129, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59129, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:11.95685+00', 1628, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59130, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.253235+00', 1387, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59131, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.236188+00', 311, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59132, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.272496+00', 288, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59133, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.291153+00', 285, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59134, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.252905+00', 357, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59135, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.334135+00', 280, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59136, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.304531+00', 323, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59137, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.496764+00', 205, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59138, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.362781+00', 473, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59139, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.441689+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59140, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.421268+00', 477, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59141, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.482689+00', 422, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59142, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.452893+00', 487, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59143, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.515579+00', 516, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59144, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.493+00', 561, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59145, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.368957+00', 853, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59146, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.364336+00', 881, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59147, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.277609+00', 278, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59148, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.484106+00', 324, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59149, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.51291+00', 709, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59150, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.584824+00', 803, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59151, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.527972+00', 1114, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59152, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.506387+00', 1220, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59153, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.585099+00', 1175, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59154, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.505361+00', 1331, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59155, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.400963+00', 1647, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59156, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.400791+00', 728, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59157, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.377649+00', 770, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59158, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.414155+00', 1787, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59159, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.731144+00', 986, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59160, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.733277+00', 1375, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59161, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.926094+00', 1197, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59162, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.926094+00', 1205, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(59163, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.010395+00', 1161, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59164, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.010395+00', 1167, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59165, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.054002+00', 1148, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59166, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.054002+00', 1172, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(59167, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.824516+00', 1464, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59168, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.824516+00', 1470, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59169, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.889164+00', 1655, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59170, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.889164+00', 1652, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59171, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.286518+00', 1323, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59172, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.269862+00', 1387, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59173, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.927278+00', 1810, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(59174, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.88932+00', 876, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59175, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.927278+00', 1801, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59176, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.312748+00', 1475, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59177, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.388884+00', 1501, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59178, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.661657+00', 1540, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59179, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.220916+00', 1033, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59180, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.293449+00', 983, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59181, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.133328+00', 1140, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59182, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.32512+00', 1024, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59183, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.588817+00', 810, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59184, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.056245+00', 1489, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59185, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:11.892988+00', 319, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59186, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:11.892026+00', 353, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59187, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.120888+00', 425, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59188, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.149055+00', 458, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59189, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.320681+00', 387, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59190, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.168978+00', 643, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59191, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.63298+00', 286, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59192, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.587756+00', 509, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59193, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.420676+00', 709, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59194, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.753009+00', 484, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59195, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.597042+00', 699, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59196, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.65887+00', 643, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59197, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.5093+00', 802, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59198, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.607342+00', 743, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59199, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.450059+00', 941, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59200, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.619397+00', 872, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59201, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.162096+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59202, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.19052+00', 386, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59203, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.214958+00', 464, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59204, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.179383+00', 562, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59205, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.52951+00', 372, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59206, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.501942+00', 683, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59207, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.549057+00', 784, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59208, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.516341+00', 837, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59209, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.35734+00', 273, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59210, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.070874+00', 701, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59211, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.417067+00', 1358, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59212, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.102061+00', 674, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59213, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.198033+00', 619, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59214, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.13224+00', 696, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59215, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.232099+00', 612, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59216, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.675013+00', 1266, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59217, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.260872+00', 169, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59218, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.284109+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59219, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:11.973626+00', 870, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59220, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:11.996863+00', 1036, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59221, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.405045+00', 641, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59222, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.061472+00', 1119, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59223, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.368624+00', 896, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59224, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.497061+00', 786, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59225, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.299344+00', 1023, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59226, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.295708+00', 1041, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59227, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.399176+00', 960, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59228, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.253624+00', 1137, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59229, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.417807+00', 996, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59230, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.399244+00', 1021, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59231, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.079818+00', 1387, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59232, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.443374+00', 1284, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59233, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:00.943054+00', 448, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59234, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:00.850647+00', 656, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59235, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.013012+00', 545, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59236, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:00.904879+00', 913, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59237, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.013895+00', 963, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59238, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:00.982643+00', 1101, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59239, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.713049+00', 728, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59240, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.778597+00', 688, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59241, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.872255+00', 977, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59242, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.550919+00', 543, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59243, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.48695+00', 971, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59244, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.432337+00', 1095, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59245, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.432337+00', 1104, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(59246, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.59755+00', 1022, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59247, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.59755+00', 1090, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(59248, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.613852+00', 1680, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59249, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:03.94275+00', 460, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59250, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.688718+00', 1745, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59251, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.688718+00', 1766, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(59252, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.681838+00', 1887, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59253, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.681838+00', 1935, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(59254, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.726967+00', 2084, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59255, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.726967+00', 2101, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59256, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:03.537475+00', 1409, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59257, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.491639+00', 2579, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59258, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.491639+00', 2604, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59259, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.617352+00', 2485, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59260, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.490525+00', 2789, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59261, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.490525+00', 2799, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(59262, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.388133+00', 2930, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59263, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.388133+00', 2946, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59264, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:03.984632+00', 1450, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59265, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.002773+00', 795, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59266, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.296917+00', 1532, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59267, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.292019+00', 1654, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59268, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.344863+00', 1816, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59269, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.296917+00', 1886, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59270, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.062602+00', 2151, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59271, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.506769+00', 3762, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59272, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.506769+00', 3767, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59273, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.10277+00', 2535, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59274, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.344862+00', 2605, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59275, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.682358+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59276, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.728308+00', 444, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59277, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.653507+00', 536, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59278, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.865295+00', 472, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59279, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.776151+00', 590, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59280, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.783237+00', 696, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59281, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.804888+00', 691, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59282, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.801925+00', 857, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59283, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.546211+00', 432, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59284, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.825637+00', 1196, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59285, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.61812+00', 463, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59286, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.737151+00', 1419, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59287, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.591142+00', 587, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59288, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.545421+00', 637, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59289, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.546396+00', 648, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59290, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.603928+00', 614, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59291, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.295989+00', 160, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59292, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.280311+00', 288, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59293, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.2004+00', 511, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59294, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.259784+00', 521, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59295, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.24622+00', 591, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59296, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.297057+00', 563, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59297, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.285161+00', 621, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59298, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.334191+00', 584, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59299, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.200407+00', 808, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59300, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.332636+00', 901, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59301, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.373551+00', 347, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59302, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.394363+00', 367, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59303, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.383232+00', 425, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59304, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.404587+00', 509, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59305, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.666671+00', 299, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59306, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.674489+00', 308, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59307, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:10.405379+00', 447, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59308, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:10.441508+00', 570, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59309, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:10.16298+00', 857, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59310, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:10.380571+00', 693, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59311, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:10.453275+00', 743, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59312, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:10.417829+00', 798, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59313, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.071109+00', 705, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59314, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.252758+00', 805, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59315, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.766648+00', 448, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59316, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.238696+00', 980, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59317, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.094851+00', 1248, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(59318, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.235281+00', 1793, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59319, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.472977+00', 1630, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59320, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.235281+00', 1790, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59321, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.348158+00', 1678, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59322, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.39666+00', 1737, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59323, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.596107+00', 1534, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59324, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.472977+00', 1609, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59325, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.596107+00', 1576, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(59326, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.713012+00', 1862, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(59327, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.798496+00', 1791, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59328, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.945498+00', 1649, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59329, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.713012+00', 1854, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59330, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.260269+00', 2388, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59331, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.260269+00', 2386, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59332, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.832954+00', 2138, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59333, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.832954+00', 2141, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59334, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:12.844391+00', 1504, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59335, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.603428+00', 1192, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59336, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.810454+00', 1013, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59337, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.726084+00', 1316, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59338, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.496348+00', 1561, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59339, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.590912+00', 714, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59340, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.998672+00', 1681, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59341, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.898375+00', 923, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59342, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.38958+00', 1481, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59343, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.257472+00', 1736, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59344, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.908673+00', 2121, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59345, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.990837+00', 2053, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59346, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.902302+00', 1529, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59347, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.913296+00', 1518, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59348, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.912873+00', 2543, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59349, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.904788+00', 1717, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59350, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.184789+00', 2443, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59351, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.882384+00', 1753, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59352, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.593397+00', 2054, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59353, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.909468+00', 1745, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59354, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.909543+00', 1762, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59355, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.039818+00', 2668, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59356, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.816373+00', 2934, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59357, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.898413+00', 1908, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59358, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.211693+00', 2751, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59359, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.420774+00', 2556, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59360, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.144967+00', 2976, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59361, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.685328+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59362, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.726573+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59363, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.703283+00', 535, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59364, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.714265+00', 593, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59365, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.076877+00', 242, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59366, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.912179+00', 514, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59367, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.072931+00', 537, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59368, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.909442+00', 772, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59369, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.736763+00', 1332, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59370, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.601749+00', 516, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59371, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.747281+00', 400, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59372, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.551234+00', 641, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59373, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.755472+00', 1479, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59374, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.764575+00', 475, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59375, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.607835+00', 711, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59376, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.551312+00', 806, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59377, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.034613+00', 406, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59378, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.071456+00', 404, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59379, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.071086+00', 425, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59380, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.132792+00', 434, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59381, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.101629+00', 623, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59382, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.122406+00', 716, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59383, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.086345+00', 806, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59384, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.105004+00', 805, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59385, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:17.998677+00', 960, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59386, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.104985+00', 894, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59387, X'58ff24b904ec866d2d036edec76bcff4c23f395c773f7d44d3dce71e7e75720b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.202371+00', 257, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59388, X'ae39d0adb5af975a30d51a7df7597895f78cd7e8306bbb87b0e2231d80587e3d', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.240748+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59389, X'026673892864b0473396ae72896f19988e3e006b7a7742a309fb5db7332690ad', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.254859+00', 250, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59390, X'd9f4ace7451886972457db16fe5237704d011049b1565a353e558e125c67b330', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.242761+00', 343, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59391, X'cf2146c61b0f10b156900c5c5297bf7c80ab0e44d34f6d2bad1d14065ed6d212', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.206397+00', 429, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59392, X'e4f9b1a8136a05bb9eb916e994d89ff3ffdb723a4b9028a5f2fc872f1cda1ec3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.246389+00', 434, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59393, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.581714+00', 357, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59394, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.62762+00', 337, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59395, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.812879+00', 275, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59396, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.644928+00', 473, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59397, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.635899+00', 687, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59398, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.856954+00', 549, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59399, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.768943+00', 641, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59400, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.841232+00', 679, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59401, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.586369+00', 1173, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59402, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.617828+00', 1332, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59403, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.683012+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59404, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.391791+00', 650, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59405, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.384728+00', 663, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59406, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.659768+00', 405, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59407, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.58496+00', 564, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59408, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.513709+00', 641, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59409, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:11.675834+00', 423, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59410, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:11.692819+00', 628, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59411, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.125636+00', 273, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59412, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:11.712958+00', 758, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59413, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.088173+00', 552, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59414, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.098209+00', 729, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59415, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.087983+00', 816, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59416, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:11.702894+00', 1217, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59417, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:11.640756+00', 1320, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59418, X'b574d30c7bb6fb5186eca219e7995e41348feea5a7b7f7e75c9af88fdb1f5c27', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.758172+00', 482, 1, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59419, X'01ef3ddab26af90995fe2ff6eb84ed713e32a2e4c34bca6d85cb003a47c0d216', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.89869+00', 419, 2, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59420, X'f36bb9ae88a14a67274518e7bf35579d100cd3fa5ed89e53a090f0fc918cf236', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.592211+00', 781, 2, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59421, X'545c68b9661cf91806c822dd26e8ca27e9685cb80485f367f4a22c134c97ab7b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.626895+00', 767, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59422, X'610d7c3a0bb8dd8098d3d682533e18d8147e2f7a96411e733be7d3bb5dbda30b', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.6158+00', 785, 1, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59423, X'10f1ff5dce22e78f1c060118b8a2acf384ac98e8b88c3cb2cd690b731bba833c', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.581063+00', 825, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59424, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:11.691416+00', 1745, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59425, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.866345+00', 772, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59426, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.866345+00', 782, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(59427, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.866415+00', 808, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59428, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.866415+00', 865, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(59429, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.437834+00', 735, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59430, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.85263+00', 1682, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59431, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.581107+00', 1957, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59432, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.85263+00', 1735, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59433, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.581107+00', 2051, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(59434, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.8523+00', 1806, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59435, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.8523+00', 1824, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(59436, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.333213+00', 1863, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59437, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.365394+00', 1987, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59438, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.638214+00', 2712, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59439, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.638214+00', 2728, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59440, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.446908+00', 2219, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59441, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.393554+00', 2346, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59442, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.431725+00', 2303, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59443, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.540926+00', 2226, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59444, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.731222+00', 3060, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59445, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.540926+00', 2257, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(59446, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.762139+00', 3041, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59447, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.762139+00', 3047, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59448, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.731222+00', 3092, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(59449, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.077788+00', 2895, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59450, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.077788+00', 2919, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59451, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.385378+00', 2738, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59452, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.104829+00', 3037, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59453, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.85218+00', 3287, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59454, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.85218+00', 3299, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59455, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.330267+00', 2876, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59456, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.385378+00', 2821, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(59457, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.560057+00', 2630, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59458, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.858273+00', 3336, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59459, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.858273+00', 3363, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(59460, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.31241+00', 3000, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59461, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.499035+00', 2821, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59462, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.431509+00', 2921, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(59463, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.431509+00', 2906, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59464, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.342457+00', 3032, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59465, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.29368+00', 3227, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59466, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.451904+00', 3082, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59467, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.55479+00', 3480, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59468, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.842392+00', 4207, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59469, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:25.842392+00', 4193, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59470, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.255373+00', 3919, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59471, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.255373+00', 3917, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59472, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.374731+00', 3829, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59473, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.655104+00', 456, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59474, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.635033+00', 545, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59475, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.929324+00', 316, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59476, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.660996+00', 601, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59477, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.665614+00', 653, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59478, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.681004+00', 670, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59479, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.635135+00', 864, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59480, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.90503+00', 656, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59481, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.864182+00', 701, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59482, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.985293+00', 668, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59483, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.85155+00', 809, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59484, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.900963+00', 830, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59485, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.968979+00', 773, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59486, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.050673+00', 725, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59487, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.876195+00', 1119, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59488, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:26.975642+00', 1053, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59489, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:33.860969+00', 1597, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59490, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:33.757561+00', 1700, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59491, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:33.757561+00', 1716, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(59492, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:33.860969+00', 1635, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59493, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.053007+00', 1719, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59494, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.053007+00', 1616, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59495, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.08926+00', 1855, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(59496, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.057188+00', 1877, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59497, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.08926+00', 1769, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59498, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.057188+00', 1795, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59499, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.545084+00', 1557, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59500, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.690823+00', 1546, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59501, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.690823+00', 1572, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(59502, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.649698+00', 1812, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59503, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.719381+00', 1946, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59504, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.719381+00', 2002, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(59505, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.588821+00', 2146, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59506, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.588821+00', 2210, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(59507, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.783324+00', 2137, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59508, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.269405+00', 2815, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59509, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.269405+00', 2832, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(59510, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.628469+00', 2485, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59511, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.600339+00', 2777, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59512, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.600339+00', 2792, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59513, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.687103+00', 2709, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59514, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.668686+00', 2735, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59515, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.933139+00', 2474, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59516, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.888516+00', 2530, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59517, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.399559+00', 3037, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59518, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.782296+00', 2819, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59519, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.338634+00', 3344, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59520, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.725398+00', 3064, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59521, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.049152+00', 2904, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59522, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.049152+00', 2952, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(59523, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.033701+00', 3188, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59524, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.957335+00', 3287, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59525, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.033701+00', 3219, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59526, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.957335+00', 3305, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59527, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.569139+00', 3722, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59528, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.992717+00', 3488, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59529, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.569139+00', 3942, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(59530, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.01306+00', 3513, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59531, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.595934+00', 4543, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59532, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.052958+00', 4088, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59533, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.595934+00', 4587, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59534, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.007864+00', 4203, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59535, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.589637+00', 4641, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59536, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:34.589637+00', 4638, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59537, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:37.942188+00', 490, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59538, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:37.913793+00', 675, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59539, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.107789+00', 626, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59540, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.257779+00', 591, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59541, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.047818+00', 880, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59542, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.113269+00', 909, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59543, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.241865+00', 813, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59544, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.159871+00', 940, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59545, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.222224+00', 928, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59546, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.08494+00', 1149, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59547, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.148455+00', 1095, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59548, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.108085+00', 1161, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59549, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.167499+00', 1209, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59550, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.068776+00', 1360, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59551, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.088206+00', 1511, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59552, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.199645+00', 1428, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59553, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.610283+00', 948, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(59554, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.54552+00', 1188, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59555, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.54552+00', 1180, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59556, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.623731+00', 1480, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59557, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.623731+00', 1471, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59558, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.857895+00', 1392, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59559, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.857895+00', 1397, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(59560, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.647136+00', 1637, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59561, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.647136+00', 1639, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59562, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.948057+00', 1576, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59563, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.336161+00', 179, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59564, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.336161+00', 230, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59565, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.836949+00', 748, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(59566, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:49.699025+00', 2002, 0, FALSE, 'public-dashboard', 'Cursor has been closed', NULL, 29, 3, NULL, 3, NULL), +(59567, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.762796+00', 1312, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59568, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.762796+00', 1401, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(59569, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.141669+00', 1344, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59570, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.539728+00', 2134, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59571, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.184845+00', 1546, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59572, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.539728+00', 2249, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59573, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.226146+00', 1642, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59574, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.226146+00', 1666, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(59575, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.697521+00', 2225, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59576, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.341153+00', 2751, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59577, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.826812+00', 2259, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59578, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.354166+00', 2792, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59579, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.933442+00', 2258, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59580, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.008969+00', 2187, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59581, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.008969+00', 2197, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(59582, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.933442+00', 2277, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(59583, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.028811+00', 2343, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59584, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.255943+00', 2313, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59585, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.409867+00', 3528, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59586, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.012781+00', 2991, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59587, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.925351+00', 3129, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59588, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.925351+00', 3144, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59589, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.374761+00', 3757, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59590, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.311271+00', 3968, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59591, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.208151+00', 3114, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59592, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:52.047355+00', 2352, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59593, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.129898+00', 3481, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59594, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.269283+00', 3593, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59595, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.269283+00', 3590, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59596, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.50475+00', 3450, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59597, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.50475+00', 3455, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59598, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:32.9239+00', 658, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(59599, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.418496+00', 980, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(59600, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.543443+00', 1080, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59601, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.386814+00', 1425, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59602, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.46894+00', 1346, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59603, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.529784+00', 683, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59604, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.434075+00', 861, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59605, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.434075+00', 870, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(59606, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.443751+00', 2052, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59607, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.443751+00', 2059, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(59608, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.422064+00', 2446, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59609, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.422064+00', 2499, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59610, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.309102+00', 2623, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59611, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.417577+00', 2863, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59612, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.382131+00', 2881, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59613, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.214145+00', 3469, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59614, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.214145+00', 3502, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59615, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.336242+00', 3446, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59616, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.29144+00', 2567, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59617, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.201803+00', 3740, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59618, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.201803+00', 3783, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(59619, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.259663+00', 3792, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59620, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.680186+00', 2607, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59621, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.12083+00', 4200, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59622, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.024679+00', 4399, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59623, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.12083+00', 4206, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(59624, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.014716+00', 4567, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59625, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.014716+00', 4589, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59626, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.473147+00', 4200, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59627, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.807864+00', 3903, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59628, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.50538+00', 4241, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59629, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.50538+00', 4242, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59630, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.639663+00', 3359, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59631, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.684172+00', 3348, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59632, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.684172+00', 3356, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(59633, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.639663+00', 3500, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(59634, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.444263+00', 4804, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59635, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.444263+00', 4809, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(59636, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.694679+00', 3580, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59637, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.021741+00', 5564, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59638, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.521141+00', 4506, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59639, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.697241+00', 4336, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59640, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.697241+00', 4371, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59641, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:34.521141+00', 4511, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59642, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:33.322306+00', 5901, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59643, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.020815+00', 364, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59644, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.00511+00', 582, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59645, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:32.750085+00', 909, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59646, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:32.997862+00', 1029, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59647, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.006564+00', 1185, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59648, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.051019+00', 1176, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59649, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.023086+00', 1317, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59650, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.094121+00', 1299, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59651, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.034725+00', 1459, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59652, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:32.999319+00', 1540, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59653, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.319526+00', 1242, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59654, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:32.874987+00', 1668, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59655, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:32.785182+00', 1804, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59656, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:32.769527+00', 1858, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59657, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.079849+00', 1890, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59658, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.026614+00', 2020, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59659, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:32.885406+00', 557, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59660, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.113008+00', 652, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59661, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.593329+00', 492, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59662, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:32.888964+00', 1204, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59663, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.225651+00', 889, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59664, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.164156+00', 1026, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59665, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.348966+00', 904, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59666, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.288782+00', 1011, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59667, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.269781+00', 1169, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59668, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.195873+00', 1302, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59669, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.43338+00', 1286, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59670, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.499263+00', 1279, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59671, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.584721+00', 1206, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59672, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.229825+00', 1624, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59673, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.25502+00', 1641, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59674, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.389758+00', 1738, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59675, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.848281+00', 457, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59676, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.670329+00', 787, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59677, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.034063+00', 461, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59678, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.699633+00', 821, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59679, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.844193+00', 690, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59680, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.832717+00', 755, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59681, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.865372+00', 776, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59682, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.974575+00', 718, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59683, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.921471+00', 808, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59684, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.046769+00', 861, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59685, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.109252+00', 856, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59686, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.908334+00', 1081, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59687, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.183798+00', 814, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59688, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.935389+00', 1115, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59689, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:32.94774+00', 1376, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59690, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.184945+00', 1158, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59691, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:32.884124+00', 354, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59692, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.334785+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59693, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:32.942676+00', 909, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59694, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:32.900724+00', 1125, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59695, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.137221+00', 1119, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59696, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.089829+00', 1187, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59697, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.26262+00', 1134, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59698, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:32.990564+00', 1421, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59699, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.477336+00', 995, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59700, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.27945+00', 1211, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59701, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.198066+00', 1408, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59702, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.439679+00', 1167, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59703, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.116749+00', 1566, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59704, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:32.96218+00', 1795, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59705, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.255354+00', 1764, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59706, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.162035+00', 1870, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59707, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.200673+00', 409, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59708, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:32.989524+00', 786, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59709, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.00496+00', 1058, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59710, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.075369+00', 996, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59711, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.120906+00', 960, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59712, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.017421+00', 1100, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59713, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.332784+00', 833, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59714, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:32.983494+00', 1190, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59715, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.265058+00', 911, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59716, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.27956+00', 920, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59717, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.198935+00', 1068, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59718, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.20422+00', 1176, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59719, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.372999+00', 1023, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59720, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.35638+00', 1054, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59721, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.345064+00', 1396, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59722, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.360782+00', 1397, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59723, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.637464+00', 637, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59724, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.66703+00', 655, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59725, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.788827+00', 777, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59726, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.736282+00', 826, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59727, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.740403+00', 831, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59728, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.057562+00', 549, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59729, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.029101+00', 863, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59730, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.753937+00', 1735, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59731, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.980563+00', 1527, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59732, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.097521+00', 1444, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59733, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:32.928554+00', 1682, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59734, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.112354+00', 1577, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59735, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.075532+00', 1645, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59736, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.133008+00', 1643, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59737, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.019895+00', 1920, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59738, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.050332+00', 2040, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59739, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.37177+00', 504, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59740, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.365883+00', 821, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59741, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.849684+00', 508, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59742, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.406443+00', 977, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59743, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.330707+00', 1087, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59744, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.365649+00', 1080, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59745, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.336719+00', 1152, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59746, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.903951+00', 643, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59747, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.848519+00', 829, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59748, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.829392+00', 977, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59749, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.872319+00', 935, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59750, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.968508+00', 888, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59751, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.65041+00', 1251, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59752, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.693042+00', 1289, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.653215+00', 1586, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59754, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.961078+00', 1489, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59755, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.10666+00', 429, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59756, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.094257+00', 704, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59757, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.132111+00', 895, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59758, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.295833+00', 850, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59759, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.566054+00', 635, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59760, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.55174+00', 923, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59761, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.202539+00', 1302, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59762, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.123939+00', 1498, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59763, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.330527+00', 1316, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59764, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.597147+00', 1124, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59765, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.255411+00', 1473, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59766, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.581278+00', 1142, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59767, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.829901+00', 920, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59768, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.831582+00', 938, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59769, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.606979+00', 1486, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59770, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.53433+00', 1560, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59771, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:32.629212+00', 430, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59772, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:32.645979+00', 549, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59773, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:32.683723+00', 591, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59774, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:32.670601+00', 611, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59775, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:32.687937+00', 831, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59776, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.020745+00', 512, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59777, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:32.665707+00', 1222, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59778, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:32.997883+00', 940, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59779, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.048637+00', 915, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59780, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.10217+00', 985, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59781, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.228345+00', 954, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59782, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.078948+00', 1142, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59783, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.120581+00', 1121, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59784, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.172387+00', 1226, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59785, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.032987+00', 1621, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59786, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.092912+00', 1600, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59787, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.629945+00', 271, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59788, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.629945+00', 307, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(59789, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.76969+00', 1146, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(59790, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.830208+00', 1357, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59791, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.873064+00', 1309, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(59792, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.830208+00', 1371, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59793, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.665047+00', 1543, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59794, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.848245+00', 1486, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(59795, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.665047+00', 1679, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59796, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.829659+00', 1809, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59797, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.829659+00', 1834, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59798, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.789625+00', 1999, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59799, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.172204+00', 1680, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59800, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.789625+00', 2132, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(59801, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.755408+00', 2450, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59802, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.755408+00', 2520, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(59803, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.801588+00', 1858, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59804, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.516125+00', 2154, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59805, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.111156+00', 2626, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59806, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.111156+00', 2667, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(59807, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.873093+00', 3190, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59808, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.880571+00', 3194, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59809, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.880571+00', 3214, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59810, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.873093+00', 3247, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59811, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.32782+00', 2815, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59812, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.837701+00', 3319, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59813, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.837701+00', 3321, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59814, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.985458+00', 2444, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59815, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.31384+00', 3137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59816, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.75306+00', 1795, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59817, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.059404+00', 2679, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59818, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.129191+00', 2643, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59819, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.331443+00', 3484, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59820, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.331443+00', 3494, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59821, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.874478+00', 2937, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59822, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.726669+00', 2200, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59823, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.868516+00', 2237, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59824, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.84892+00', 2286, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59825, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.177852+00', 3996, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59826, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.177852+00', 4009, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(59827, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.837437+00', 2394, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59828, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.790212+00', 4518, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59829, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.790212+00', 4520, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59830, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:56.229308+00', 4365, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59831, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.105795+00', 3572, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59832, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.048967+00', 152, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59833, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.089425+00', 406, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59834, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.049066+00', 573, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59835, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.12029+00', 590, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59836, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.173129+00', 542, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59837, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.256896+00', 757, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59838, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.162833+00', 856, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59839, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.241213+00', 836, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59840, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.8066+00', 335, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59841, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.769011+00', 679, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59842, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.797296+00', 674, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59843, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.602521+00', 875, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59844, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.809533+00', 829, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59845, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.777036+00', 916, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59846, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.184532+00', 1599, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59847, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.300648+00', 1499, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59848, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.875976+00', 258, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59849, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.964888+00', 259, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59850, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.825648+00', 496, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59851, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.842454+00', 514, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59852, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.905118+00', 501, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59853, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.941102+00', 506, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59854, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.922+00', 540, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59855, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.908666+00', 605, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59856, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.932917+00', 845, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59857, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:08.909746+00', 920, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59858, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.489082+00', 437, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59859, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.509937+00', 474, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59860, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.487266+00', 602, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59861, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.49333+00', 625, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59862, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.530935+00', 595, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59863, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.479125+00', 662, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59864, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.600006+00', 551, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(59865, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.628811+00', 1021, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(59866, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.091053+00', 897, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(59867, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.633895+00', 1453, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(59868, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.950175+00', 1205, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59869, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.950175+00', 1219, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(59870, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.69366+00', 1746, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59871, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.69366+00', 1754, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(59872, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.123025+00', 1662, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59873, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.539449+00', 1387, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59874, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.539449+00', 1408, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(59875, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.128957+00', 1888, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59876, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.800335+00', 1517, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59877, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.089136+00', 2387, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59878, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.089136+00', 2389, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(59879, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.070662+00', 2380, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59880, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.390434+00', 1134, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59881, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.912776+00', 2633, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59882, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.545262+00', 2027, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59883, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.545262+00', 2043, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(59884, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.143754+00', 2495, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59885, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.143754+00', 2513, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(59886, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.966688+00', 2854, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59887, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.884477+00', 2948, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59888, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.884477+00', 2960, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(59889, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:37.966688+00', 2899, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(59890, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.110834+00', 2802, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59891, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.030103+00', 1933, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59892, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.540125+00', 2486, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59893, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.540125+00', 2505, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(59894, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.014993+00', 3064, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59895, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.452998+00', 1829, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59896, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.493738+00', 1987, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59897, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.539079+00', 2983, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59898, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.539079+00', 2989, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(59899, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.400974+00', 2146, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59900, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.821534+00', 1719, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59901, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.765022+00', 1887, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59902, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.54282+00', 3389, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59903, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.54282+00', 3348, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59904, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.853252+00', 2111, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59905, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.390521+00', 2631, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59906, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.543013+00', 3550, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59907, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:38.543013+00', 3548, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59908, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.533769+00', 372, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59909, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.549063+00', 566, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59910, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.524639+00', 573, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59911, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.628965+00', 868, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59912, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.005136+00', 562, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59913, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.565325+00', 1061, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59914, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.905162+00', 786, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59915, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.129984+00', 676, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59916, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.642282+00', 1194, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59917, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.857649+00', 1031, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59918, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.102766+00', 788, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59919, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.01677+00', 930, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59920, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.067287+00', 911, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59921, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.90933+00', 1105, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59922, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.918187+00', 1473, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59923, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.962972+00', 1480, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59924, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.253347+00', 503, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59925, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.260664+00', 509, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59926, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.290095+00', 518, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59927, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.310546+00', 513, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59928, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.298237+00', 575, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59929, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.231924+00', 660, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59930, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.066673+00', 198, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59931, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.99458+00', 366, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59932, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.94105+00', 722, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59933, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.117997+00', 596, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59934, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.060865+00', 759, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59935, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.073777+00', 751, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59936, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.05587+00', 786, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59937, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.092282+00', 784, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59938, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.096957+00', 1011, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59939, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.164035+00', 1073, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59940, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:15.887434+00', 278, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59941, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:15.938658+00', 241, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59942, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:15.919243+00', 326, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59943, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:15.924657+00', 378, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59944, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:15.89393+00', 443, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59945, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:15.907122+00', 447, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59946, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.655204+00', 189, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59947, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.693978+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59948, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.62999+00', 323, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(59949, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.644792+00', 508, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59950, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.725166+00', 434, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59951, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.638917+00', 529, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59952, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.67029+00', 507, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59953, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.71853+00', 560, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59954, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.747672+00', 802, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59955, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.670172+00', 897, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59956, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:14.781803+00', 133, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59957, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.358951+00', 254, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59958, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.329239+00', 561, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59959, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.29933+00', 613, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59960, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.332085+00', 649, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(59961, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.262936+00', 726, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(59962, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.280835+00', 882, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(59963, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.279188+00', 1146, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59964, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.279188+00', 1158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(59965, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.756816+00', 862, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59966, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.693684+00', 950, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(59967, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.646458+00', 1077, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59968, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.646458+00', 1115, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(59969, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.748869+00', 994, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59970, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.841018+00', 946, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(59971, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.302155+00', 1629, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(59972, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.302155+00', 1624, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59973, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.812842+00', 1457, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59974, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.869181+00', 1417, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59975, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.869181+00', 1429, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(59976, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.812842+00', 1516, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(59977, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.36474+00', 992, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(59978, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.622949+00', 778, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(59979, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.289126+00', 2138, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59980, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.289126+00', 2147, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(59981, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.643898+00', 1235, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(59982, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.923824+00', 941, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59983, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.732793+00', 1156, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(59984, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.672958+00', 1354, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(59985, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.223286+00', 2049, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59986, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.56882+00', 1737, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(59987, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.419746+00', 927, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59988, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.664964+00', 1834, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(59989, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.636457+00', 1964, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59990, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.788673+00', 1833, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(59991, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.953094+00', 1685, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(59992, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.660058+00', 1983, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(59993, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.976784+00', 1853, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(59994, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:16.859231+00', 315, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(59995, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:16.891126+00', 300, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(59996, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:16.908219+00', 378, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(59997, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.228713+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(59998, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.205021+00', 252, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(59999, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:16.916301+00', 672, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60000, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:16.916872+00', 703, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60001, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:16.903715+00', 721, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60002, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.183703+00', 517, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60003, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.269732+00', 526, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60004, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.140806+00', 740, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60005, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.274694+00', 619, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60006, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.161304+00', 768, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60007, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.129576+00', 802, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60008, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.207255+00', 1007, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60009, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.195458+00', 1032, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60010, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.151995+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60011, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.114182+00', 425, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60012, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.20579+00', 378, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60013, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.174918+00', 505, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60014, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.210437+00', 636, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60015, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.198155+00', 691, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60016, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.700254+00', 354, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60017, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.904136+00', 163, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60018, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.310831+00', 764, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(60019, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.244919+00', 891, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(60020, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.182833+00', 1182, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60021, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.182833+00', 1219, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60022, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.241035+00', 1171, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60023, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.241035+00', 1176, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60024, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.95889+00', 825, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60025, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.956796+00', 839, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60026, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.160738+00', 940, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60027, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.540569+00', 934, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60028, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.58007+00', 908, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60029, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.605217+00', 1038, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60030, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.493937+00', 1474, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60031, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.34233+00', 1911, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60032, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:03.855849+00', 427, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60033, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.257773+00', 449, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60034, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.31024+00', 493, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60035, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.309716+00', 578, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60036, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.290161+00', 613, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60037, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.611039+00', 345, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60038, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.312871+00', 709, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60039, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.338628+00', 684, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60040, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.732901+00', 330, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60041, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.732966+00', 514, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60042, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.596894+00', 702, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60043, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.82814+00', 515, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60044, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.741299+00', 640, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60045, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.689497+00', 770, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60046, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.74317+00', 749, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60047, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.584716+00', 1121, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60048, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.714043+00', 1183, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60049, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.400727+00', 217, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60050, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.379273+00', 338, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60051, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.403101+00', 353, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60052, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.430818+00', 367, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60053, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.519768+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60054, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.464852+00', 397, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60055, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.272792+00', 185, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60056, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.195615+00', 335, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60057, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.231272+00', 348, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60058, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.197007+00', 485, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60059, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.232954+00', 553, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60060, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.215401+00', 599, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60061, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.228637+00', 625, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60062, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.387538+00', 503, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60063, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.208957+00', 1011, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60064, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.294144+00', 944, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60065, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.189676+00', 342, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60066, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.21697+00', 379, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60067, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.21461+00', 406, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60068, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.252309+00', 381, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60069, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.225594+00', 457, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60070, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.265525+00', 440, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60071, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.89685+00', 96, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60072, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.872774+00', 236, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60073, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.887395+00', 520, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60074, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.914182+00', 558, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60075, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.988711+00', 665, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60076, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.002918+00', 760, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60077, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.873723+00', 1034, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60078, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.022184+00', 910, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60079, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.886902+00', 1225, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60080, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:17.97391+00', 1254, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60081, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.576478+00', 234, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60082, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.524211+00', 375, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60083, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.546907+00', 375, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60084, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.588892+00', 347, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60085, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.612973+00', 358, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60086, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.609422+00', 423, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60087, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.392819+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60088, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.34758+00', 357, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60089, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.394542+00', 322, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60090, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.370453+00', 354, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60091, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.447642+00', 509, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60092, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.377289+00', 587, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60093, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.455564+00', 529, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60094, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.484243+00', 548, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60095, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.358119+00', 826, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60096, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.427627+00', 817, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60097, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.054179+00', 237, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60098, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.048293+00', 511, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60099, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.039539+00', 527, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60100, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.120733+00', 476, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60101, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.627286+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60102, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.109327+00', 868, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(60103, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.086177+00', 934, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(60104, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.267383+00', 876, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(60105, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.249021+00', 912, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(60106, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.038078+00', 1221, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60107, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.038078+00', 1224, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60108, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.22992+00', 1123, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60109, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.22992+00', 1128, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60110, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.210315+00', 647, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60111, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.250737+00', 677, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60112, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.021299+00', 1107, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60113, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.412829+00', 824, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60114, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.29279+00', 1065, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60115, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.234694+00', 1137, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60116, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.38998+00', 1227, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60117, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.208783+00', 1652, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60118, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.487421+00', 1467, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60119, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.463539+00', 246, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60120, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.448673+00', 299, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60121, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.41759+00', 356, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60122, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.475382+00', 363, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60123, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.434887+00', 426, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60124, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.44813+00', 440, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60125, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.491583+00', 193, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60126, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.478925+00', 593, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60127, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.551843+00', 580, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60128, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.512616+00', 680, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60129, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.552671+00', 723, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60130, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.539735+00', 737, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60131, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.551865+00', 740, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60132, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.610089+00', 796, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60133, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.528898+00', 1081, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60134, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.505253+00', 1126, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60135, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.100768+00', 321, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60136, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.138499+00', 306, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60137, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.212763+00', 319, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60138, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.195092+00', 346, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60139, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.356667+00', 191, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60140, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.330364+00', 268, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60141, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.744376+00', 203, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60142, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.786586+00', 253, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60143, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.741426+00', 371, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60144, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.776255+00', 346, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60145, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.75231+00', 384, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60146, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.774499+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60147, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.656339+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60148, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.575609+00', 329, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60149, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.684146+00', 234, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60150, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.634981+00', 328, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60151, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.649863+00', 327, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60152, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.705914+00', 376, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60153, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.251716+00', 323, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60154, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.237594+00', 354, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60155, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.272761+00', 319, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60156, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.258117+00', 353, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60157, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.221914+00', 435, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60158, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.234244+00', 436, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60159, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.203304+00', 281, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60160, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.316808+00', 286, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60161, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.297157+00', 463, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60162, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.373601+00', 528, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60163, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.270084+00', 640, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60164, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.336772+00', 618, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60165, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.252553+00', 740, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60166, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.252553+00', 754, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 31, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60167, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.364291+00', 663, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(60168, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.812136+00', 304, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60169, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.868953+00', 266, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60170, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.225614+00', 1018, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60171, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.225614+00', 1020, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(60172, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.280179+00', 1275, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60173, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.280179+00', 1289, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60174, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.180883+00', 753, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60175, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.275457+00', 871, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60176, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.184232+00', 984, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60177, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.47946+00', 697, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60178, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.402465+00', 899, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60179, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.57608+00', 736, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60180, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.266179+00', 1448, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60181, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.317621+00', 1412, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60182, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.638718+00', 193, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60183, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.654923+00', 568, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60184, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.609242+00', 636, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60185, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.13261+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60186, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.916158+00', 427, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60187, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.883412+00', 548, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60188, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.883412+00', 554, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(60189, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.86911+00', 603, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(60190, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.689199+00', 843, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(60191, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.897075+00', 854, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(60192, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.524725+00', 537, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60193, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.76537+00', 1336, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60194, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.76537+00', 1343, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60195, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.795575+00', 1323, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60196, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.795575+00', 1332, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60197, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.834121+00', 603, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60198, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.618008+00', 1347, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60199, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.776702+00', 1255, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60200, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.911205+00', 1301, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60201, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.046117+00', 1330, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60202, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.091472+00', 1491, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60203, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.000785+00', 2055, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60204, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.048859+00', 2094, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60205, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.507384+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60206, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.427806+00', 408, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60207, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.506031+00', 347, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60208, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.513681+00', 356, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60209, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.497968+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60210, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.447563+00', 498, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60211, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.449069+00', 251, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60212, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.666576+00', 330, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60213, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.583219+00', 592, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60214, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.547698+00', 702, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60215, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.613791+00', 680, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60216, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.613789+00', 701, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60217, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.62005+00', 762, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60218, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.533042+00', 855, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60219, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.660887+00', 935, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60220, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.556001+00', 1078, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60221, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.336248+00', 259, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60222, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.264873+00', 428, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60223, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.359124+00', 376, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60224, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.320567+00', 579, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60225, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.320508+00', 610, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60226, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.253371+00', 689, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60227, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.843434+00', 166, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60228, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.267783+00', 766, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60229, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.396898+00', 694, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60230, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.214165+00', 1067, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60231, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.993743+00', 661, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60232, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.364346+00', 1355, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60233, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.21143+00', 574, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60234, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.12526+00', 746, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(60235, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.128688+00', 771, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60236, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.299455+00', 710, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(60237, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.193485+00', 880, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(60238, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.257106+00', 820, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(60239, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.341788+00', 866, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(60240, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.42818+00', 923, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60241, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.420197+00', 948, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60242, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.384734+00', 1006, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60243, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.332822+00', 1084, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60244, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.332822+00', 1115, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(60245, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.522824+00', 996, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60246, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.183257+00', 633, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60247, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.090109+00', 786, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60248, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.183024+00', 700, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60249, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.236902+00', 813, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60250, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.283086+00', 814, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60251, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.182406+00', 1041, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60252, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.770899+00', 1683, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60253, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.249451+00', 1480, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60254, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.566296+00', 173, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60255, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.561084+00', 211, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60256, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.521098+00', 445, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60257, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.648588+00', 540, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60258, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.084091+00', 137, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60259, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.719034+00', 545, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60260, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.6168+00', 698, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60261, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.126931+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60262, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.687904+00', 753, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60263, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.618716+00', 927, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60264, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.250703+00', 364, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60265, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.617702+00', 1526, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60266, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.645024+00', 531, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60267, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.613483+00', 602, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60268, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.674485+00', 559, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60269, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.661871+00', 939, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(60270, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.693225+00', 2173, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60271, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.522595+00', 1383, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60272, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.693225+00', 2226, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60273, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.546797+00', 1481, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60274, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.546797+00', 1517, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(60275, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.698311+00', 1501, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60276, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.221187+00', 999, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60277, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.602993+00', 1670, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60278, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.602993+00', 1680, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(60279, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.665635+00', 1662, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60280, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.665635+00', 1682, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(60281, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.583071+00', 924, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60282, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.757257+00', 986, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60283, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.034951+00', 1709, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60284, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.719053+00', 1141, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60285, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.565662+00', 1430, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60286, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.601413+00', 1518, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60287, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.592896+00', 1545, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60288, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.663414+00', 1946, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60289, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.498961+00', 2226, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60290, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.954028+00', 317, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60291, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.878064+00', 402, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60292, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.94729+00', 405, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60293, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.967205+00', 453, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60294, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.920722+00', 519, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60295, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.89904+00', 590, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60296, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.943205+00', 564, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60297, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.918652+00', 626, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60298, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.592975+00', 72, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60299, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.884334+00', 989, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60300, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.884334+00', 998, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(60301, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.69397+00', 256, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60302, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.944517+00', 1060, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60303, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:15.944517+00', 1055, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60304, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.878627+00', 468, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60305, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.841819+00', 577, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60306, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.907316+00', 590, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60307, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.908506+00', 609, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60308, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.937358+00', 637, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60309, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.907092+00', 735, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60310, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.919658+00', 968, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60311, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.910977+00', 1033, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60312, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.949352+00', 74, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60313, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.151243+00', 285, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60314, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.151321+00', 344, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60315, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.193049+00', 377, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60316, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.172774+00', 405, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60317, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.205628+00', 386, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60318, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.219567+00', 432, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60319, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.620637+00', 123, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60320, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.675909+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60321, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.757307+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60322, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.574769+00', 603, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60323, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.686887+00', 590, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60324, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.694111+00', 602, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60325, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.684318+00', 633, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60326, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.697737+00', 622, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60327, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.665886+00', 858, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60328, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.7285+00', 932, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60329, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.520898+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60330, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.516767+00', 230, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60331, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.528473+00', 253, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60332, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.494208+00', 317, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60333, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.499405+00', 336, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60334, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.541107+00', 319, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60335, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.583825+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60336, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.538686+00', 339, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60337, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.516248+00', 421, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60338, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.511288+00', 679, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60339, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.62071+00', 574, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60340, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.904732+00', 351, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60341, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.731213+00', 542, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60342, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.706774+00', 620, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60343, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.703328+00', 899, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60344, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.646011+00', 1025, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60345, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:39.837395+00', 344, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60346, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:39.887209+00', 297, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60347, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:39.838499+00', 382, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60348, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:39.838785+00', 400, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60349, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:39.859397+00', 400, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60350, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:39.817263+00', 471, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60351, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.490183+00', 410, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60352, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.547986+00', 496, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60353, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.694921+00', 611, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60354, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.727058+00', 616, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60355, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.867105+00', 496, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60356, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.947325+00', 583, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60357, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.004949+00', 613, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60358, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.258201+00', 680, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60359, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.646301+00', 1470, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60360, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.646301+00', 1487, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(60361, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.027661+00', 1160, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60362, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.027661+00', 1167, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(60363, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.787853+00', 1472, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60364, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.787853+00', 1475, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(60365, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.79713+00', 1442, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60366, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.944177+00', 1368, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60367, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.944177+00', 1393, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(60368, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.022604+00', 1422, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60369, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.174131+00', 498, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60370, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.682163+00', 2022, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60371, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.682163+00', 2023, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60372, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.189525+00', 1641, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(60373, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.189525+00', 1639, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60374, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.956739+00', 1208, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60375, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.817316+00', 1348, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60376, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.201884+00', 1127, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60377, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.94733+00', 1398, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60378, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.064846+00', 1312, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60379, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.053381+00', 1330, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60380, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.961033+00', 2828, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60381, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.961033+00', 2837, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60382, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.883831+00', 2198, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60383, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.856229+00', 2231, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60384, X'02d9bceb62ac62b98a440d6a88ca4c10df57f9c55c185148f3a3c59b0a18044b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.068988+00', 164, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60385, X'5507ce9c440ec0de75ffacaffe8339a3f989d9b95aa65a447ab0460554bf698b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.088602+00', 330, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60386, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.211192+00', 291, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60387, X'872d22e47b822888da285e6b7b5f169fdb3c42d695f3b512bb7581b77b69ea64', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.152092+00', 443, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60388, X'bd4d1b65119ef1e377135fb267e3fdac83e34bb19da61553c303e9c63ed05f91', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.216244+00', 403, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60389, X'4dc312256c770c0c48ed34594ecfd1ba8c3bfb7d21b4eab013a90da2c79aee2b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.137148+00', 523, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60390, X'02040cee6be01f0eb6ff60d3ed97da963114328535474fa79de6f08a07529e56', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.16097+00', 530, 1, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60391, X'2d17f02728ea121d0d66d019a3c9ef2c25c8484236dfea5d39275393b411d64d', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.191234+00', 548, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60392, X'5369ad9297a1b98712fa4fc170075ff4602855069ed7447bf42ce75add3907e7', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.188535+00', 749, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60393, X'4467d42d82200b72df5759e39845000fb768033cfde7d655e16c4d96446faa97', TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.23408+00', 838, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60394, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.244749+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60395, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.25673+00', 424, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60396, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.470815+00', 225, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60397, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.252751+00', 496, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60398, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.228535+00', 563, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60399, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.339324+00', 470, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60400, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.499138+00', 139, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60401, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.45976+00', 447, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60402, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.53669+00', 552, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60403, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.597591+00', 619, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60404, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.559682+00', 674, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60405, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.528986+00', 728, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60406, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.575449+00', 696, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60407, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.5295+00', 769, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60408, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.54235+00', 1052, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60409, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.571954+00', 1079, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60410, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.663202+00', 312, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60411, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.858895+00', 260, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60412, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.832009+00', 375, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60413, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.855735+00', 409, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60414, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.855735+00', 427, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(60415, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.838017+00', 503, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(60416, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.881602+00', 673, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(60417, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.639521+00', 604, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60418, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.272001+00', 999, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60419, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.825685+00', 451, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60420, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.837336+00', 626, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60421, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.638791+00', 859, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60422, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.778435+00', 725, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60423, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.902357+00', 368, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60424, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.010355+00', 393, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60425, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.910365+00', 709, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60426, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.902357+00', 819, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60427, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.025253+00', 751, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60428, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.132939+00', 823, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60429, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.015983+00', 1010, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60430, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.13329+00', 924, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60431, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.696531+00', 467, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60432, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.706401+00', 582, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60433, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.867515+00', 1544, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60434, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.850424+00', 1777, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60435, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.243906+00', 614, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60436, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.314275+00', 786, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60437, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.071073+00', 1056, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60438, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.1289+00', 1031, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60439, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.417586+00', 754, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60440, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.417346+00', 955, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60441, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.822432+00', 801, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60442, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.030278+00', 738, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60443, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.345049+00', 403, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60444, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.344138+00', 554, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60445, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.412727+00', 573, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60446, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.030761+00', 95, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60447, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.34903+00', 892, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(60448, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.464716+00', 935, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(60449, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.604814+00', 816, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(60450, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.395618+00', 1073, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(60451, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.395618+00', 1070, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60452, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.344849+00', 1126, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60453, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.344849+00', 1137, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(60454, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.324386+00', 496, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60455, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.356789+00', 943, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60456, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.50907+00', 1910, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60457, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.50907+00', 1929, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60458, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.258482+00', 1208, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60459, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.495124+00', 1081, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60460, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.355127+00', 1447, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60461, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.496619+00', 2338, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60462, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.496619+00', 2365, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60463, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.690245+00', 1276, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60464, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.677301+00', 1396, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60465, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.44833+00', 1820, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60466, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.806297+00', 1696, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60467, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.06699+00', 264, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60468, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.053602+00', 483, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60469, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.044967+00', 535, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60470, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.015285+00', 607, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60471, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.114567+00', 619, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(60472, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.086233+00', 678, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(60473, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.788456+00', 437, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60474, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.812017+00', 560, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60475, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.799251+00', 735, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60476, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.822754+00', 712, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60477, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.583776+00', 204, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60478, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.059522+00', 1084, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60479, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.465108+00', 732, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60480, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.173355+00', 1034, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60481, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.465108+00', 782, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(60482, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.448933+00', 966, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(60483, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.482536+00', 1159, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(60484, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.482536+00', 1153, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60485, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.565014+00', 1152, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60486, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.565014+00', 1156, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(60487, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.544987+00', 1232, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60488, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.544987+00', 1242, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(60489, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.643039+00', 1294, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60490, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.643039+00', 1305, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(60491, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.497051+00', 717, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60492, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.728972+00', 1519, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60493, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.728972+00', 1527, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(60494, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.62743+00', 810, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60495, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.533033+00', 1264, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60496, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.753011+00', 1076, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60497, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.870047+00', 1227, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60498, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.585838+00', 2538, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60499, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.585838+00', 2539, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60500, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.825817+00', 1351, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60501, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.517308+00', 2693, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60502, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.517308+00', 2702, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60503, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.853163+00', 1453, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60504, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.912726+00', 1423, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60505, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.436974+00', 1912, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60506, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.593434+00', 1889, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60507, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.278045+00', 177, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60508, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.198518+00', 364, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60509, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.213743+00', 405, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60510, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.260216+00', 532, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60511, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.289431+00', 536, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60512, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.261899+00', 581, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60513, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.249396+00', 620, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60514, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.718968+00', 151, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60515, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.286794+00', 624, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60516, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.261696+00', 956, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60517, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.261696+00', 995, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(60518, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.286069+00', 1008, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60519, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.286069+00', 1010, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60520, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.111948+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60521, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.103356+00', 517, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60522, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.140787+00', 526, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60523, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.512331+00', 448, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60524, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.45963+00', 683, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60525, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.456895+00', 702, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60526, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.423463+00', 748, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60527, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.420662+00', 980, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60528, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.47757+00', 1138, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60529, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.346033+00', 336, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60530, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.365017+00', 346, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60531, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.24898+00', 535, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60532, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.309768+00', 508, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60533, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.392548+00', 463, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60534, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.400168+00', 494, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60535, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.929077+00', 196, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60536, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.947513+00', 184, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60537, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.151788+00', 284, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60538, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.190074+00', 344, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60539, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.124862+00', 419, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60540, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.148164+00', 397, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60541, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.777863+00', 258, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60542, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.943915+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60543, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.872764+00', 461, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60544, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.948725+00', 453, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60545, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.913765+00', 585, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60546, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.952025+00', 603, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60547, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.88248+00', 686, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60548, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.513212+00', 145, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60549, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.99149+00', 681, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60550, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.441512+00', 281, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60551, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.856488+00', 897, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60552, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.743627+00', 435, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60553, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.623797+00', 565, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60554, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.915521+00', 1340, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60555, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.772695+00', 499, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60556, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:53.915521+00', 1365, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(60557, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.853302+00', 526, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60558, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.953208+00', 436, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60559, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.023046+00', 537, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60560, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.076168+00', 756, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60561, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.125923+00', 775, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60562, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.082865+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60563, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.049847+00', 244, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60564, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.045324+00', 348, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60565, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.039196+00', 355, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60566, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.011144+00', 420, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60567, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.055398+00', 385, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60568, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.538497+00', 150, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60569, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.538792+00', 163, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60570, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.671316+00', 250, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60571, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.649536+00', 303, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60572, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.644839+00', 311, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60573, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.701637+00', 326, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60574, X'02d9bceb62ac62b98a440d6a88ca4c10df57f9c55c185148f3a3c59b0a18044b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.553056+00', 583, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60575, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.81734+00', 401, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60576, X'5507ce9c440ec0de75ffacaffe8339a3f989d9b95aa65a447ab0460554bf698b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.87779+00', 485, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60577, X'bd4d1b65119ef1e377135fb267e3fdac83e34bb19da61553c303e9c63ed05f91', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.877742+00', 537, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60578, X'02040cee6be01f0eb6ff60d3ed97da963114328535474fa79de6f08a07529e56', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.79042+00', 708, 1, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60579, X'872d22e47b822888da285e6b7b5f169fdb3c42d695f3b512bb7581b77b69ea64', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.87809+00', 617, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60580, X'4dc312256c770c0c48ed34594ecfd1ba8c3bfb7d21b4eab013a90da2c79aee2b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.829004+00', 762, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60581, X'2d17f02728ea121d0d66d019a3c9ef2c25c8484236dfea5d39275393b411d64d', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.829004+00', 774, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60582, X'4467d42d82200b72df5759e39845000fb768033cfde7d655e16c4d96446faa97', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.647119+00', 1213, 1, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60583, X'5369ad9297a1b98712fa4fc170075ff4602855069ed7447bf42ce75add3907e7', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:53.654063+00', 1341, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60584, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.868241+00', 329, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60585, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.81294+00', 454, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60586, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.768746+00', 510, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60587, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.813167+00', 491, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60588, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.882996+00', 434, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60589, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.868101+00', 493, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60590, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.58308+00', 359, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60591, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.55888+00', 476, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60592, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.672735+00', 501, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60593, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.515036+00', 1012, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(60594, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.644027+00', 951, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60595, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.717143+00', 1050, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60596, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.717143+00', 1061, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(60597, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.653465+00', 1350, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60598, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.653465+00', 1352, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(60599, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.680972+00', 1352, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60600, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.680972+00', 1354, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(60601, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.314848+00', 704, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60602, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.465018+00', 1614, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60603, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.465018+00', 1652, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60604, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.578973+00', 603, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60605, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.816291+00', 699, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60606, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.531239+00', 2000, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60607, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.531239+00', 2029, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60608, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.796983+00', 812, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60609, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.929318+00', 852, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60610, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.947048+00', 845, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60611, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.869676+00', 1078, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60612, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.855774+00', 1223, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60613, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.95468+00', 419, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60614, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.972408+00', 1449, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60615, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.000327+00', 1530, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60616, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.960717+00', 661, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60617, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.148886+00', 495, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60618, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.862114+00', 905, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60619, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.010868+00', 788, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60620, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.957579+00', 879, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60621, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.010868+00', 831, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(60622, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.885588+00', 408, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60623, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.979346+00', 351, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60624, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.968769+00', 380, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60625, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.994195+00', 478, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60626, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:40.351253+00', 138, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60627, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.979161+00', 564, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60628, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.171924+00', 267, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60629, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.188607+00', 285, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60630, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.149974+00', 385, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60631, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.182545+00', 376, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60632, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.143187+00', 437, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60633, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.177171+00', 458, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60634, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.494739+00', 339, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60635, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.426571+00', 491, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60636, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.488903+00', 523, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60637, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.517453+00', 571, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60638, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.52872+00', 572, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60639, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.525068+00', 700, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60640, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.548037+00', 720, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60641, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.623397+00', 675, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60642, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.548914+00', 938, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60643, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.566447+00', 1116, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60644, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:07.64911+00', 332, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60645, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:07.629691+00', 391, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60646, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:07.697111+00', 325, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60647, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:07.702734+00', 381, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60648, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:07.690607+00', 450, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60649, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:07.678465+00', 475, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60650, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.195643+00', 281, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60651, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.251687+00', 209, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60652, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.246009+00', 441, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60653, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.308182+00', 697, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60654, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.81409+00', 252, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60655, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.356701+00', 716, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60656, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.593072+00', 548, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60657, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.628122+00', 546, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60658, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.418249+00', 992, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60659, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.303371+00', 185, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60660, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.92917+00', 710, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(60661, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.750547+00', 955, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(60662, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.755547+00', 975, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(60663, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.624373+00', 1114, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60664, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.624373+00', 1135, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(60665, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.919057+00', 898, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(60666, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.384744+00', 456, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60667, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.438965+00', 636, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60668, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.607164+00', 1646, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60669, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.607164+00', 1671, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60670, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.74989+00', 1820, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60671, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.74989+00', 1830, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60672, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.686066+00', 1003, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60673, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.854371+00', 935, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60674, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.855099+00', 1008, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60675, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.046799+00', 872, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60676, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.935198+00', 1020, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60677, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.813947+00', 1566, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60678, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.834069+00', 1594, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60679, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:35.908781+00', 474, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(60680, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:35.956509+00', 473, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(60681, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:35.90183+00', 622, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(60682, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:35.973626+00', 707, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(60683, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:35.954788+00', 891, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(60684, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.129011+00', 735, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(60685, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.129011+00', 733, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60686, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.240678+00', 909, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60687, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.240678+00', 915, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(60688, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.180176+00', 1014, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60689, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.180176+00', 1019, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(60690, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.282937+00', 1007, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(60691, X'e897ab34b6925f21f2550f66d2a3c35edf680e3301a3df8550e03d81e9cb04c8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.658412+00', 632, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60692, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.004553+00', 1471, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60693, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.004553+00', 1492, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(60694, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.210581+00', 1437, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60695, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.210581+00', 1455, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60696, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.60268+00', 1225, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60697, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.299676+00', 1724, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60698, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.707678+00', 1380, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60699, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.299676+00', 1749, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(60700, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.707678+00', 1398, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(60701, X'a7994e13461dc08cb441d938448bc17232c7b845761057f31dfe767a88390436', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.628058+00', 1859, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60702, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.268376+00', 2280, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(60703, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.268376+00', 2274, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60704, X'8582e17a1af7e0ac2108261aa87c7582489c2cf27770b17904ad880cf283b79a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.675366+00', 1899, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60705, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.64041+00', 1992, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60706, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.411134+00', 2245, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60707, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.411134+00', 2250, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(60708, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.314068+00', 2574, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60709, X'e2806b0fa9481b86cdc8ff0140dffd30650c334e212198d983cbf0eeafabd069', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.632221+00', 1258, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60710, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.314068+00', 2614, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60711, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.117201+00', 831, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60712, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.973068+00', 2012, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60713, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.976868+00', 2086, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60714, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.709725+00', 1402, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60715, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.905039+00', 1368, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60716, X'19d61ee0f1f3042df8f36aa547690dcc101cd026407ec5808cec4db1056ef1b8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.601034+00', 1681, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60717, X'f924c815961a33ea5eb763b64501b0790896fe60e4f9f53bb7f6384d3e20d02f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.87786+00', 1457, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60718, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.844633+00', 1488, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60719, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.036372+00', 2533, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60720, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.85421+00', 1908, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60721, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:43.951377+00', 416, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60722, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.112631+00', 318, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60723, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.106147+00', 558, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60724, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:43.999968+00', 802, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60725, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.117268+00', 698, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60726, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.105412+00', 867, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60727, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.044289+00', 963, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60728, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.013585+00', 1019, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60729, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:43.998485+00', 1172, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60730, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.141815+00', 1175, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60731, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.038891+00', 263, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60732, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.005217+00', 437, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60733, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:31.940325+00', 532, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60734, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:31.965102+00', 545, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60735, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.013466+00', 540, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60736, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:31.919417+00', 662, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60737, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:31.989039+00', 600, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60738, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.018166+00', 673, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60739, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:31.972735+00', 924, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60740, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:31.998804+00', 1010, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60741, X'd294416dd8462c53649f6fba3d5b6871bdbefe47a4e3a78f4907b9427c14d0f8', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.527047+00', 298, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60742, X'4fa7a0705568c8736b3ef9d07dc0329a29e68c089626c975b5016603792aec04', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.609242+00', 298, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60743, X'026365709b5300b1d3091fe8204cd08e8e2bf29409d2ff484c4b46c4fe5c2cb0', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.540683+00', 409, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60744, X'92d09e2eb1d54c6ed7bef3e1304ca05b3d865af996d63020f0a389c6f670ac30', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.519921+00', 451, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60745, X'a76b3239ac93f22c770b8defd6363466fd79d2a5d64fe493492ac3b3f754ee99', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.48713+00', 490, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60746, X'e312810e2e433d97664d6277e2f47c7e561ffe2c89a3f6dadb93d523549f25aa', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.519926+00', 498, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60747, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.245859+00', 211, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60748, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.296712+00', 163, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60749, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.172964+00', 312, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60750, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.192779+00', 383, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60751, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.222586+00', 382, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60752, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.296712+00', 323, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60753, X'4c088e47777a5bf0b81be2cc0fb07fc6705d11011bec8548c861d113e4082569', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.763413+00', 225, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60754, X'b936d4911e33ac75c0ed91d14ab7cefce1723fa011fce8aecf14967f4b3b7edd', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.773781+00', 246, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60755, X'f54799f070b19b8cdbe5d1295029cf43904bae3718a52fa73e3d955eea3f875e', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.681566+00', 373, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60756, X'243ee9f7910cd438ec7938e57443ce1984c169499cfed6ad4a16f0b90f2fe0ca', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.736572+00', 363, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60757, X'540cd6f49ccd5892d13dda198a87dde78e5f5a3b9341a43bada24eab549edbb6', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.76874+00', 364, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60758, X'4b883144c28775b69c9858d69dcbe651442b25b36496d3614e8ec0383f57c137', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.743212+00', 399, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60759, X'a44b2556268b56e3024684f1ffffb21e801f7a310ccd0e54fce714139ffbe8a2', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:51.903736+00', 223, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60760, X'341e854c38ecd9d48b501744e17b13cc00f3f60ac1d4cdd5b2032a44a2885476', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:51.911647+00', 285, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60761, X'4db391e8a9d82c9ce9ca126b0f89399d2b0332e4429b3a6431770ef9c59de7dc', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:51.877604+00', 330, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60762, X'0f58b73a8bc8ee31e5d9dafbdefd81cfbd30a6ab5d72610033b83f455fac2f47', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:51.944981+00', 320, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60763, X'cdcdbb902cbf64d026ce2f8cbb5160bd8a0d461d577d8267c6162701a7020ad3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:51.939465+00', 417, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60764, X'a65a2d06086c780754e4d2875df7c45de08dc8e186b26c020b1b0831450ac53c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:51.927309+00', 454, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60765, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.456149+00', 304, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60766, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.501706+00', 328, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60767, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.487164+00', 355, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60768, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.485905+00', 365, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60769, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.532642+00', 338, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60770, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.489213+00', 395, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60771, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:21.66929+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60772, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:21.636727+00', 366, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60773, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:21.595454+00', 464, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60774, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:21.605298+00', 492, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60775, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:21.659653+00', 477, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60776, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:21.664777+00', 518, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60777, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.33489+00', 254, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60778, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.226655+00', 499, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60779, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.176966+00', 560, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60780, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.857465+00', 122, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60781, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.324002+00', 770, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60782, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.314665+00', 919, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60783, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.363809+00', 878, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60784, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.285794+00', 964, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60785, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.210089+00', 1055, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60786, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.064675+00', 386, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60787, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.03557+00', 439, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60788, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.267172+00', 539, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60789, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.119301+00', 696, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60790, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.316133+00', 1506, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(60791, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.116107+00', 722, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(60792, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.215767+00', 776, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(60793, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.336562+00', 1793, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60794, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.336562+00', 1817, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(60795, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.315168+00', 862, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(60796, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.269024+00', 911, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(60797, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.456924+00', 869, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60798, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.619905+00', 782, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60799, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.723792+00', 722, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60800, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.735668+00', 985, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60801, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.862162+00', 1081, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60802, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.382162+00', 921, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60803, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.280579+00', 1077, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60804, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.251775+00', 1307, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60805, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.014011+00', 1591, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60806, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.260853+00', 1419, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60807, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.352226+00', 1344, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60808, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.287539+00', 1789, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60809, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.142076+00', 2075, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60810, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.041538+00', 152, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60811, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.293436+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60812, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.12289+00', 672, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60813, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.427933+00', 374, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60814, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.206045+00', 643, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60815, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.764767+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60816, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.284743+00', 705, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(60817, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.300138+00', 737, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(60818, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.296803+00', 879, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(60819, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.353904+00', 941, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(60820, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.195188+00', 1048, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60821, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.200694+00', 1183, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60822, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.37544+00', 2142, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60823, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.31504+00', 2209, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60824, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.149085+00', 1408, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60825, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.37544+00', 2158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60826, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.31504+00', 2177, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60827, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.220947+00', 1408, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60828, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.240001+00', 1509, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60829, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.056635+00', 1860, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60830, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.306296+00', 1291, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60831, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.306296+00', 1294, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(60832, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.533112+00', 1114, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60833, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.533112+00', 1131, 0, FALSE, 'public-dashboard', 'Closed', NULL, 29, 3, NULL, 3, NULL), +(60834, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.268894+00', 1469, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(60835, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.268894+00', 1465, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60836, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.219102+00', 2612, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60837, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:00.205911+00', 2604, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60838, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.303643+00', 1718, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60839, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.303643+00', 1732, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(60840, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.085512+00', 1017, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60841, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.656244+00', 1591, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(60842, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.656244+00', 1590, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60843, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.61251+00', 1675, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60844, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.61251+00', 1696, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(60845, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.1369+00', 1283, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60846, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.217803+00', 1289, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60847, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.317222+00', 1238, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60848, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.206042+00', 1365, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60849, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.536717+00', 1150, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60850, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:12.958147+00', 310, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60851, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.124714+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60852, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.108393+00', 315, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60853, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.110855+00', 479, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60854, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.136488+00', 640, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60855, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.621895+00', 202, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60856, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.146689+00', 726, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60857, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.031092+00', 871, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(60858, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.160729+00', 840, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(60859, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.526394+00', 489, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60860, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:12.968639+00', 1072, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60861, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:12.968639+00', 1084, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(60862, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.012685+00', 1282, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60863, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.012685+00', 1278, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60864, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.112598+00', 476, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60865, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.287052+00', 502, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60866, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.41049+00', 664, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60867, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.439983+00', 700, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60868, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.426566+00', 844, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60869, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.490722+00', 832, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60870, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.424717+00', 153, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60871, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.455744+00', 1282, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60872, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.364125+00', 1381, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60873, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:21.78885+00', 303, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60874, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:21.90588+00', 207, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60875, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:21.873769+00', 264, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60876, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:21.835853+00', 319, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60877, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:21.801154+00', 373, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60878, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:21.82215+00', 360, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60879, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.326341+00', 264, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60880, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.478361+00', 231, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60881, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.563127+00', 288, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60882, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.590146+00', 355, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60883, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.593028+00', 358, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60884, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.580798+00', 452, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60885, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.727232+00', 258, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60886, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.63934+00', 358, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60887, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.648566+00', 383, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60888, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.643208+00', 391, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60889, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.633381+00', 463, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60890, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.781055+00', 477, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60891, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.739518+00', 543, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60892, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.77346+00', 515, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60893, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.757851+00', 820, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60894, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.310835+00', 362, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60895, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.786964+00', 965, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60896, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.422515+00', 407, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60897, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.640926+00', 427, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60898, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.640486+00', 443, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60899, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.471754+00', 666, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60900, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.424794+00', 798, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60901, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.650064+00', 799, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60902, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.852181+00', 793, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60903, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.889005+00', 858, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(60904, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.495444+00', 1265, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60905, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.889005+00', 856, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60906, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.681452+00', 1176, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60907, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.681452+00', 1187, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(60908, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.854708+00', 1208, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60909, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.490398+00', 606, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60910, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.459578+00', 646, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60911, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.432591+00', 1688, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60912, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.432935+00', 688, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60913, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.954884+00', 1229, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60914, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.954884+00', 1247, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(60915, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.350371+00', 963, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60916, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.46876+00', 966, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60917, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.674389+00', 770, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60918, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.934249+00', 2028, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60919, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.105025+00', 1996, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60920, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:24.399443+00', 545, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60921, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:35.836208+00', 330, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60922, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:35.855174+00', 464, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60923, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:35.809102+00', 482, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60924, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:35.805981+00', 574, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60925, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:35.826568+00', 563, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60926, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:35.847787+00', 590, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60927, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.226439+00', 415, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60928, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.226729+00', 573, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60929, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.374599+00', 454, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60930, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.334451+00', 604, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60931, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.263118+00', 715, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60932, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.326349+00', 689, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60933, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.322828+00', 711, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60934, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.180624+00', 879, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60935, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.305643+00', 888, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60936, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.329781+00', 1097, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60937, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.077959+00', 322, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60938, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.102348+00', 313, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60939, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.124271+00', 422, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60940, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.0891+00', 487, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60941, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.112125+00', 540, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60942, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.1249+00', 557, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60943, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.105277+00', 632, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60944, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.105663+00', 649, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60945, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.106024+00', 858, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60946, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.131146+00', 908, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60947, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.351313+00', 122, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60948, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.424841+00', 225, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60949, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.356738+00', 596, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60950, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.795213+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60951, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.864645+00', 147, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60952, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.461356+00', 595, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60953, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.489377+00', 590, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60954, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.485774+00', 675, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60955, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.432658+00', 744, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60956, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.466408+00', 730, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60957, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.457473+00', 986, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60958, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.457473+00', 992, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(60959, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.517908+00', 962, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(60960, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.226568+00', 505, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60961, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.51183+00', 649, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60962, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.496929+00', 676, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60963, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.396669+00', 790, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60964, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.298859+00', 895, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60965, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.344895+00', 890, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60966, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.376784+00', 1151, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60967, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.525305+00', 1038, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60968, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:39.664987+00', 318, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(60969, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:39.759672+00', 262, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(60970, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:39.802217+00', 259, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(60971, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:39.715579+00', 399, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(60972, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:39.745006+00', 417, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(60973, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:39.737091+00', 428, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(60974, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.833087+00', 290, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60975, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.821569+00', 419, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60976, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.82161+00', 438, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60977, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.096941+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60978, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.076443+00', 432, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60979, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.135334+00', 410, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60980, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.039302+00', 526, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60981, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.16234+00', 454, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60982, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.962881+00', 780, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60983, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.132728+00', 814, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60984, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.117472+00', 153, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(60985, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.283843+00', 141, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60986, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.224619+00', 351, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60987, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.243043+00', 541, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(60988, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.282442+00', 565, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(60989, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.573976+00', 378, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(60990, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.298007+00', 669, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(60991, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.314352+00', 679, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(60992, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.217494+00', 787, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(60993, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.700467+00', 330, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(60994, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.858112+00', 277, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(60995, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.217189+00', 1117, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(60996, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.217189+00', 1121, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(60997, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.271788+00', 1112, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(60998, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.271788+00', 1122, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(60999, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.268609+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61000, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.702811+00', 284, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61001, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.540619+00', 457, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61002, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.625644+00', 978, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61003, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:25.131624+00', 1050, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61004, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.732556+00', 1464, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61005, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.985104+00', 1258, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61006, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.940273+00', 1679, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61007, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.663196+00', 2019, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61008, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.885439+00', 1830, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61009, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.697006+00', 2071, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61010, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:25.04884+00', 1744, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61011, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:25.013593+00', 1790, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61012, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:25.774685+00', 1166, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61013, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.908291+00', 2063, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61014, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.787361+00', 2528, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61015, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.663308+00', 2821, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61016, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.09236+00', 392, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61017, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:25.059795+00', 2455, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61018, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.100534+00', 437, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61019, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.132812+00', 480, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61020, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.13384+00', 503, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61021, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.164395+00', 495, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61022, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.043098+00', 619, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61023, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.121734+00', 359, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61024, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.185277+00', 303, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61025, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.195382+00', 304, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61026, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.1635+00', 383, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61027, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.190233+00', 375, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61028, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.189043+00', 385, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61029, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.711417+00', 264, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61030, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.916681+00', 277, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61031, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.94934+00', 341, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61032, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.953054+00', 377, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61033, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.899896+00', 485, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61034, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.905093+00', 565, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61035, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.131501+00', 258, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61036, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.077004+00', 475, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61037, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.054167+00', 571, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61038, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.08857+00', 540, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61039, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.14204+00', 667, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61040, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.081939+00', 759, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61041, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.068756+00', 779, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(61042, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.107936+00', 917, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61043, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.749602+00', 263, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61044, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.107936+00', 929, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(61045, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.186818+00', 875, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(61046, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.107943+00', 1101, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61047, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.107943+00', 1105, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61048, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.135559+00', 706, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61049, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.074563+00', 789, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61050, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.052736+00', 922, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61051, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.164848+00', 1039, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61052, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.245848+00', 1016, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61053, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.007901+00', 1448, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61054, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.113517+00', 1385, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61055, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.253308+00', 1293, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61056, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.085182+00', 1572, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61057, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:37.956157+00', 71, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61058, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.146614+00', 377, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61059, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.274138+00', 556, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61060, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.276694+00', 613, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61061, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.613416+00', 288, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61062, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.216975+00', 707, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61063, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.466363+00', 670, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(61064, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.903974+00', 510, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61065, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.57703+00', 843, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(61066, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.5849+00', 879, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(61067, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.450849+00', 324, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61068, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.278165+00', 1794, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61069, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.348726+00', 742, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61070, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.278165+00', 1813, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(61071, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.348757+00', 834, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61072, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.480345+00', 852, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61073, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.337235+00', 1123, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61074, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.464665+00', 1000, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61075, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.460942+00', 1008, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61076, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.534135+00', 2178, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61077, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.534135+00', 2181, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61078, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.409421+00', 1614, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61079, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.515003+00', 1575, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61080, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.504114+00', 199, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61081, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.691822+00', 231, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61082, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.65442+00', 355, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61083, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.634872+00', 438, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61084, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.618499+00', 475, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61085, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.636761+00', 548, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61086, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.620023+00', 610, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61087, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.66531+00', 605, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61088, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.114543+00', 210, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61089, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.278538+00', 68, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61090, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.736728+00', 928, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61091, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.691973+00', 981, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61092, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.38879+00', 492, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61093, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.562331+00', 412, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61094, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.635528+00', 500, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61095, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.717133+00', 525, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61096, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.716813+00', 568, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61097, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.744812+00', 581, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(61098, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.684026+00', 642, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(61099, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.751653+00', 789, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61100, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.731095+00', 865, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61101, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.717246+00', 909, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61102, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.740451+00', 938, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61103, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.740355+00', 995, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61104, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.500611+00', 501, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61105, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.505066+00', 790, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61106, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.572847+00', 731, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61107, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.552917+00', 880, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61108, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.516228+00', 952, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61109, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.556767+00', 954, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61110, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.234617+00', 1512, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61111, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.201346+00', 1631, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61112, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:54.890837+00', 241, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61113, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:54.925119+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61114, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:54.861596+00', 378, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61115, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:54.901455+00', 422, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61116, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:54.939621+00', 399, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61117, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:54.883947+00', 461, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61118, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.652505+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61119, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.665283+00', 440, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61120, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.686202+00', 426, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61121, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.690746+00', 456, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61122, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.656949+00', 529, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61123, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.674028+00', 532, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61124, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.192142+00', 222, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61125, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.293473+00', 344, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61126, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.252366+00', 396, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61127, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.272749+00', 485, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61128, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.299097+00', 522, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61129, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.289311+00', 610, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61130, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.400157+00', 595, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61131, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.344954+00', 658, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61132, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.938001+00', 248, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61133, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.320756+00', 1021, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61134, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.931166+00', 411, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61135, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.396366+00', 1095, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61136, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.095503+00', 413, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61137, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.058986+00', 460, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61138, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.098393+00', 464, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61139, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.401789+00', 290, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61140, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.373591+00', 382, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61141, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.35048+00', 434, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61142, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.973967+00', 557, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61143, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.952144+00', 628, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61144, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.757138+00', 347, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61145, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.843112+00', 426, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61146, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.620958+00', 678, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61147, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.596756+00', 710, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61148, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.658193+00', 683, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61149, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.628628+00', 767, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61150, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.940791+00', 689, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61151, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.59041+00', 1049, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61152, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.63467+00', 1152, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61153, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.732329+00', 1080, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61154, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.870387+00', 1116, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61155, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.910164+00', 1082, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61156, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.894834+00', 1110, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61157, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.757213+00', 1263, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61158, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.914127+00', 1410, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61159, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:37.869471+00', 1473, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61160, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.423216+00', 216, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61161, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.462498+00', 270, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61162, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.493393+00', 363, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61163, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.498745+00', 382, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61164, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.716675+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61165, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.940648+00', 268, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61166, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.744645+00', 475, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61167, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.692999+00', 524, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61168, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.011439+00', 472, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61169, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.725739+00', 798, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(61170, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.096935+00', 576, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61171, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.436627+00', 346, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61172, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.466198+00', 1383, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61173, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.466198+00', 1388, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(61174, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.284368+00', 1238, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61175, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.452471+00', 1091, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61176, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.568824+00', 983, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61177, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.097634+00', 438, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61178, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.528392+00', 1078, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61179, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.736962+00', 1890, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61180, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.736962+00', 1909, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61181, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.640562+00', 1103, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61182, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.564854+00', 1397, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61183, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.846955+00', 424, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61184, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.806342+00', 571, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61185, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.700467+00', 725, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61186, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.984755+00', 444, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61187, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.855664+00', 621, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61188, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.765074+00', 732, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61189, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.726133+00', 393, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61190, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.058721+00', 272, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61191, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.944702+00', 393, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61192, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.05969+00', 327, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61193, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.994587+00', 442, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61194, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.068397+00', 420, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61195, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.46073+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61196, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.360452+00', 372, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61197, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.371002+00', 379, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61198, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.505692+00', 366, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61199, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.892767+00', 166, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61200, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.463328+00', 711, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61201, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.444712+00', 751, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(61202, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.545536+00', 742, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(61203, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.54514+00', 840, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(61204, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.516612+00', 1051, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61205, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.120953+00', 446, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61206, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.516612+00', 1053, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(61207, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.974029+00', 634, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61208, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.059434+00', 554, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61209, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.538723+00', 1402, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61210, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.538723+00', 1419, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61211, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.284945+00', 957, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61212, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.449568+00', 814, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61213, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.450355+00', 838, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61214, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.384959+00', 946, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61215, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.396796+00', 1276, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61216, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.44464+00', 1340, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61217, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.413864+00', 494, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61218, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.407371+00', 539, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61219, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.752816+00', 201, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61220, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.388472+00', 583, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61221, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.517849+00', 664, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61222, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.628764+00', 562, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(61223, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.420516+00', 802, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(61224, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.517849+00', 720, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(61225, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.587871+00', 857, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(61226, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.212379+00', 485, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61227, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.533731+00', 1484, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61228, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.533731+00', 1492, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61229, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.832505+00', 292, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61230, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.382525+00', 1753, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61231, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.382525+00', 1774, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(61232, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.62483+00', 764, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61233, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.632439+00', 892, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61234, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.617482+00', 970, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61235, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.593143+00', 1156, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61236, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.935975+00', 893, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61237, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.620655+00', 1410, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61238, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.120822+00', 1298, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61239, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.87012+00', 1617, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61240, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.612083+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61241, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.584513+00', 312, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61242, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.542369+00', 356, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61243, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.648636+00', 273, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61244, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.604369+00', 342, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61245, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.636756+00', 377, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61246, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.338944+00', 335, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61247, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.53806+00', 312, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61248, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.23709+00', 934, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61249, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.261607+00', 948, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61250, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.152224+00', 181, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61251, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.237357+00', 1133, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61252, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.226985+00', 1137, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61253, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.567409+00', 880, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61254, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.238475+00', 1213, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61255, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.567409+00', 900, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61256, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.020959+00', 704, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61257, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.55751+00', 1307, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61258, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.55751+00', 1314, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(61259, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.544553+00', 1358, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61260, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.544553+00', 1376, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(61261, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.793326+00', 1228, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61262, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.793326+00', 1256, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(61263, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.611429+00', 1491, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61264, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.619916+00', 1495, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61265, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.619916+00', 1507, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(61266, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.581781+00', 1561, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61267, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.581781+00', 1566, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(61268, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.494316+00', 900, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61269, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.75858+00', 1343, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61270, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.911777+00', 1196, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61271, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.91237+00', 1366, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61272, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.833551+00', 1514, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61273, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.961789+00', 1397, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61274, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.534721+00', 2824, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61275, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.401597+00', 2966, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61276, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.534721+00', 2829, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(61277, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.401597+00', 2975, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61278, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:24.009347+00', 1726, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61279, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.82105+00', 2058, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61280, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.233051+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61281, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.26814+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61282, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.475679+00', 196, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61283, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.231998+00', 451, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61284, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.416838+00', 422, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61285, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.47967+00', 586, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61286, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.479328+00', 631, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61287, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.462199+00', 739, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61288, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.476683+00', 912, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61289, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.410744+00', 1055, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61290, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.504625+00', 366, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61291, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.496514+00', 492, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61292, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.516916+00', 725, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61293, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.553028+00', 747, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61294, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.553656+00', 768, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61295, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.501499+00', 844, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61296, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.52543+00', 853, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61297, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.512255+00', 897, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61298, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.464385+00', 1066, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61299, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.49674+00', 1169, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61300, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.165979+00', 209, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61301, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.200458+00', 251, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61302, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.155074+00', 391, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61303, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.191669+00', 363, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61304, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.217765+00', 351, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61305, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.196382+00', 424, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61306, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.445079+00', 233, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61307, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.354696+00', 378, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61308, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.459287+00', 291, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61309, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.385736+00', 439, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61310, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.408087+00', 424, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61311, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.41807+00', 453, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61312, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.29662+00', 354, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61313, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.266669+00', 404, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61314, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.254279+00', 397, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61315, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.303587+00', 404, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61316, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.297434+00', 540, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61317, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.28523+00', 561, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61318, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.63918+00', 444, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61319, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.565075+00', 563, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61320, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.725657+00', 473, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61321, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.628181+00', 634, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61322, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.612833+00', 663, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61323, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.683319+00', 682, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61324, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.709607+00', 694, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61325, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.619363+00', 798, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61326, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.518997+00', 962, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61327, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.554175+00', 943, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61328, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.64971+00', 243, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61329, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.573197+00', 344, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61330, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.70871+00', 230, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61331, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.69838+00', 300, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61332, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.630738+00', 382, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61333, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.623595+00', 406, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61334, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.219896+00', 414, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61335, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.236202+00', 478, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61336, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.257114+00', 498, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61337, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.21986+00', 536, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61338, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.247164+00', 624, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61339, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.77179+00', 345, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61340, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.48545+00', 852, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61341, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.740518+00', 600, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61342, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.648776+00', 838, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(61343, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.568754+00', 938, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61344, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.732642+00', 792, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(61345, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.793203+00', 764, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(61346, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.364887+00', 1207, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(61347, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.427167+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61348, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.816764+00', 995, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(61349, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.463916+00', 1432, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61350, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.819503+00', 390, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61351, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.742756+00', 1680, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61352, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.742756+00', 1691, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61353, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.703814+00', 955, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61354, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.888714+00', 1055, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61355, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.623259+00', 1483, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61356, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.89966+00', 1281, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61357, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.862953+00', 1387, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61358, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.940127+00', 1410, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61359, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.936863+00', 1699, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61360, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:42.004074+00', 1806, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61361, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.185549+00', 260, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61362, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.287603+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61363, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.273474+00', 471, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61364, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.225392+00', 537, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61365, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.299616+00', 492, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61366, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.336927+00', 528, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61367, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.336972+00', 557, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61368, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.332972+00', 653, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61369, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.30684+00', 892, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61370, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.332827+00', 946, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61371, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.470582+00', 291, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61372, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.506767+00', 291, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61373, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.455086+00', 365, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61374, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.454957+00', 412, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61375, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.484909+00', 411, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61376, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.503912+00', 371, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61377, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.164975+00', 282, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61378, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.196353+00', 302, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61379, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.123103+00', 651, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61380, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.20715+00', 602, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61381, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.184822+00', 668, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61382, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.183474+00', 676, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61383, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.188458+00', 703, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61384, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.226245+00', 713, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61385, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.23436+00', 719, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61386, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.21692+00', 1039, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61387, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.676381+00', 210, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61388, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.698429+00', 358, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61389, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.981358+00', 215, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61390, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.728701+00', 483, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61391, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.767079+00', 451, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61392, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.896539+00', 489, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61393, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.160658+00', 347, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61394, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.036322+00', 557, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61395, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.012924+00', 639, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61396, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.79193+00', 934, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61397, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.4448+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61398, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.316552+00', 526, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61399, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.735318+00', 535, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61400, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.065541+00', 1291, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61401, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.065541+00', 1293, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61402, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.714907+00', 707, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61403, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.675479+00', 757, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61404, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:04.138025+00', 566, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61405, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:04.186544+00', 881, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61406, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.972527+00', 1477, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61407, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.957919+00', 1778, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61408, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.21358+00', 210, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61409, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.24486+00', 187, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61410, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.213937+00', 293, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61411, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.230642+00', 347, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61412, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.1812+00', 398, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61413, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.184673+00', 401, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61414, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.729529+00', 122, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61415, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.736047+00', 135, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61416, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.90164+00', 263, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61417, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.906858+00', 294, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61418, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.932911+00', 270, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61419, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.973856+00', 308, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61420, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.856571+00', 87, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61421, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.84321+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61422, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.940912+00', 517, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61423, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.949849+00', 537, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61424, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.972848+00', 536, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61425, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.97719+00', 545, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61426, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.95572+00', 584, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61427, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.966455+00', 600, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61428, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.924118+00', 894, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61429, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.94084+00', 979, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61430, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:40.475364+00', 350, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61431, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:40.547725+00', 471, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61432, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:40.570745+00', 479, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61433, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:40.484104+00', 569, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61434, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:40.458057+00', 630, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61435, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:40.492767+00', 614, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61436, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.310891+00', 234, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61437, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.463552+00', 211, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61438, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.327665+00', 470, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61439, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.360958+00', 524, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61440, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.366785+00', 608, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61441, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.495652+00', 530, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61442, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.440174+00', 611, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61443, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.495651+00', 573, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61444, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.465817+00', 839, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61445, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.48904+00', 855, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61446, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.2858+00', 192, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61447, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.295957+00', 243, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61448, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.311796+00', 234, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61449, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.285096+00', 279, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61450, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.300991+00', 311, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61451, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.353211+00', 344, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61452, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:02.894063+00', 192, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61453, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:02.917993+00', 200, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61454, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:02.910631+00', 219, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61455, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:02.875103+00', 317, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61456, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:02.851121+00', 354, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61457, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:02.92634+00', 354, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61458, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.358331+00', 270, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61459, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.346307+00', 450, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61460, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.356905+00', 496, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61461, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.377273+00', 505, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61462, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.792259+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61463, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.488276+00', 628, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61464, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.956203+00', 241, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61465, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.552601+00', 718, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61466, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.026718+00', 425, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61467, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.100532+00', 594, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61468, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.026717+00', 705, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61469, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.182817+00', 667, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61470, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.956228+00', 981, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(61471, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.252984+00', 691, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(61472, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.773372+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61473, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.837684+00', 412, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61474, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.022049+00', 1441, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61475, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.022049+00', 1451, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61476, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.785498+00', 755, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61477, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.026587+00', 1701, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61478, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.026587+00', 1719, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(61479, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.124256+00', 991, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61480, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.272572+00', 858, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61481, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.282034+00', 918, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61482, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.170627+00', 1094, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61483, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.224653+00', 1054, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61484, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.09267+00', 1362, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61485, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.089008+00', 1463, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61486, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.106522+00', 392, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61487, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.146473+00', 395, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61488, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.127135+00', 658, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61489, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.414317+00', 476, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61490, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.160612+00', 780, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61491, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.17965+00', 803, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61492, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.451539+00', 650, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61493, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.389029+00', 742, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61494, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.424927+00', 786, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61495, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.164701+00', 1065, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61496, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.336932+00', 918, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61497, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.525574+00', 744, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61498, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.325792+00', 969, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61499, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.599017+00', 735, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61500, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.49081+00', 1063, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61501, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.467597+00', 1094, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61502, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.806594+00', 371, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61503, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.835452+00', 411, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61504, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.687539+00', 635, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61505, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.647001+00', 736, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61506, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.852389+00', 547, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61507, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.78484+00', 707, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61508, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.864316+00', 745, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(61509, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.907377+00', 736, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(61510, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.589309+00', 361, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61511, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.560758+00', 402, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61512, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.731415+00', 1384, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61513, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.731415+00', 1391, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61514, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.843592+00', 414, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61515, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.527079+00', 852, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61516, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.893949+00', 1717, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61517, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.036653+00', 591, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61518, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:13.893949+00', 1740, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(61519, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.07799+00', 752, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61520, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.024639+00', 844, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61521, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.045557+00', 825, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61522, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.001178+00', 1151, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61523, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.012744+00', 1266, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61524, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:16.088816+00', 293, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61525, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.084823+00', 292, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61526, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:30.955013+00', 434, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61527, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.089171+00', 396, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61528, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.054759+00', 467, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61529, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:30.988744+00', 552, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61530, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.114154+00', 579, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61531, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:30.998145+00', 713, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61532, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:30.940989+00', 811, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61533, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:30.94762+00', 1179, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61534, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:30.985041+00', 1155, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61535, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.289233+00', 391, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61536, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.280519+00', 404, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61537, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.333709+00', 382, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61538, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.233586+00', 509, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61539, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.287413+00', 531, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61540, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.292785+00', 581, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61541, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.000363+00', 173, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61542, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.132819+00', 260, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61543, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.033688+00', 404, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61544, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.026901+00', 615, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61545, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.188599+00', 462, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61546, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.178504+00', 523, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61547, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.175558+00', 589, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61548, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.212833+00', 764, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61549, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.800842+00', 187, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61550, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.552998+00', 567, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61551, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.221823+00', 1064, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61552, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.221823+00', 1067, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(61553, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.416124+00', 964, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61554, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.501533+00', 903, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61555, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.476855+00', 943, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61556, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.136637+00', 1376, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61557, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.136637+00', 1378, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(61558, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.33272+00', 1214, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61559, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.33272+00', 1218, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(61560, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.771404+00', 798, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61561, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.16061+00', 1409, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61562, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.16061+00', 1421, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61563, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.177672+00', 919, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61564, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.192264+00', 915, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61565, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.168867+00', 969, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61566, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.949835+00', 1305, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61567, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.283332+00', 992, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61568, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.156594+00', 2147, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(61569, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.156594+00', 2146, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61570, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.391494+00', 1186, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61571, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.225941+00', 1368, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61572, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.433514+00', 509, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61573, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.434354+00', 715, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61574, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.464461+00', 744, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61575, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.537022+00', 753, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61576, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.593352+00', 752, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61577, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.46516+00', 948, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61578, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.537022+00', 911, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61579, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.449511+00', 1019, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61580, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.433662+00', 1275, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61581, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.504748+00', 1238, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61582, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.085561+00', 209, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61583, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.099799+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61584, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.0344+00', 391, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61585, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.092045+00', 391, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61586, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.079888+00', 409, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61587, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.027925+00', 473, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61588, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.111738+00', 337, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61589, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.13783+00', 382, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61590, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.146021+00', 462, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61591, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.099119+00', 624, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61592, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.171245+00', 584, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61593, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.158006+00', 626, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61594, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.48438+00', 305, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61595, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.557594+00', 394, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61596, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.610943+00', 410, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61597, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.628728+00', 453, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61598, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.747843+00', 456, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61599, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.724225+00', 679, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61600, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.707293+00', 703, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61601, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.72101+00', 695, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61602, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.244833+00', 434, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61603, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.384284+00', 441, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61604, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.486442+00', 465, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61605, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.779046+00', 1287, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61606, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.445972+00', 631, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61607, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.35049+00', 729, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61608, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.350188+00', 866, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61609, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.793046+00', 1460, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61610, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.462059+00', 798, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61611, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.396682+00', 959, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61612, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.392745+00', 1122, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61613, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.335045+00', 1182, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61614, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:55.370075+00', 277, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61615, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.090143+00', 327, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61616, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.090223+00', 345, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61617, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.153564+00', 288, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61618, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.18518+00', 302, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61619, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.177829+00', 338, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61620, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:34.798225+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61621, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:34.845433+00', 297, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61622, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:34.788155+00', 362, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61623, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:34.843176+00', 326, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61624, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:34.769684+00', 431, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61625, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:34.853442+00', 381, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61626, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.30364+00', 153, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61627, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.358377+00', 263, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61628, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.366124+00', 276, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61629, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.436549+00', 318, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61630, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.384249+00', 542, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61631, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.369359+00', 607, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61632, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.944619+00', 279, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61633, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.963875+00', 300, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61634, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.996763+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61635, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.982169+00', 362, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61636, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.909068+00', 690, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61637, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.99302+00', 789, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61638, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.985726+00', 832, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61639, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.976394+00', 858, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61640, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.714832+00', 206, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61641, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.588806+00', 344, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61642, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.523098+00', 449, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61643, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.692671+00', 518, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61644, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.996372+00', 1314, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61645, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.921218+00', 518, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61646, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.969504+00', 1644, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61647, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.220711+00', 502, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61648, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.172776+00', 584, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61649, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.200527+00', 570, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61650, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.594198+00', 633, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61651, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.845422+00', 571, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61652, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:39.828227+00', 261, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61653, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.054721+00', 246, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61654, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:39.967348+00', 452, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61655, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:39.893474+00', 563, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61656, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:39.946433+00', 519, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61657, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:39.976232+00', 539, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61658, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.141804+00', 431, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61659, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.041364+00', 546, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61660, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:39.939609+00', 871, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61661, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:39.980921+00', 889, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61662, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.062732+00', 147, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61663, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.074784+00', 171, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61664, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.44798+00', 135, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61665, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.449827+00', 433, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61666, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.503079+00', 420, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61667, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.485898+00', 498, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61668, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.523812+00', 474, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61669, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.473964+00', 539, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61670, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.503825+00', 826, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61671, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.495664+00', 873, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61672, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.053776+00', 181, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61673, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.083135+00', 280, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61674, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.060741+00', 373, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61675, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.051731+00', 442, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61676, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.08488+00', 440, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61677, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.07608+00', 495, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61678, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.420717+00', 258, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61679, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.383103+00', 342, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61680, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.417978+00', 454, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61681, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.420717+00', 457, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61682, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.412477+00', 481, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61683, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.795211+00', 164, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61684, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.616739+00', 250, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61685, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.812062+00', 162, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61686, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.680826+00', 362, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61687, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.824935+00', 303, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61688, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.844863+00', 571, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61689, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.810886+00', 734, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61690, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.93233+00', 609, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61691, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.792229+00', 774, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61692, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.341218+00', 247, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61693, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.396674+00', 394, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61694, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.312755+00', 497, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61695, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.900548+00', 1146, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61696, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.571447+00', 520, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61697, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.644+00', 620, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61698, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.569854+00', 721, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61699, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.725186+00', 598, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61700, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.812257+00', 685, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61701, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.556874+00', 986, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61702, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.919826+00', 1733, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(61703, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.180638+00', 622, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61704, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.833685+00', 989, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61705, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.593514+00', 1232, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61706, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.593514+00', 1235, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(61707, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.164782+00', 671, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61708, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.176847+00', 684, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61709, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.637157+00', 267, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61710, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.433352+00', 637, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61711, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.64275+00', 536, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61712, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.785514+00', 399, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61713, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.875516+00', 443, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61714, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.780337+00', 596, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61715, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.380229+00', 1217, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61716, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.590825+00', 1042, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61717, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.211996+00', 415, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61718, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.243529+00', 399, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61719, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.195561+00', 622, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61720, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.178816+00', 648, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61721, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.169888+00', 749, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61722, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.226254+00', 704, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61723, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.710961+00', 294, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61724, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.482505+00', 615, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61725, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.409281+00', 715, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61726, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.494667+00', 695, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61727, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.49046+00', 748, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61728, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.567173+00', 683, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61729, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.543583+00', 738, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61730, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.439489+00', 861, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61731, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.496598+00', 1010, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61732, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.409281+00', 1217, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61733, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:19.756124+00', 184, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61734, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:19.765413+00', 291, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61735, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:19.718714+00', 384, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61736, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:19.732784+00', 410, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61737, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:19.722563+00', 505, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61738, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:19.763434+00', 555, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61739, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.167715+00', 189, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61740, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.280972+00', 328, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61741, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.320014+00', 438, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61742, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.37692+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61743, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.524786+00', 532, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61744, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.850352+00', 421, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61745, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.057622+00', 386, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61746, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.965341+00', 483, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61747, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.932601+00', 674, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61748, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.982218+00', 662, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61749, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.930909+00', 747, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61750, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.053601+00', 637, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61751, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.931128+00', 815, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61752, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.703952+00', 348, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61753, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.859672+00', 1199, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61754, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.859672+00', 1201, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(61755, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.010324+00', 1079, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61756, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.010324+00', 1089, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(61757, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.030917+00', 303, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61758, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.107233+00', 332, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61759, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.971116+00', 525, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61760, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.0019+00', 613, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61761, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.092486+00', 648, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61762, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.197045+00', 696, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61763, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.133831+00', 868, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61764, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.121191+00', 916, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61765, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.164903+00', 982, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61766, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.093565+00', 1133, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61767, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.162201+00', 122, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61768, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.097679+00', 209, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61769, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.217227+00', 545, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61770, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.180985+00', 647, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61771, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.13266+00', 712, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61772, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.179036+00', 719, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61773, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.196813+00', 715, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61774, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.217143+00', 721, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61775, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.18972+00', 840, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61776, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.213387+00', 980, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61777, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.252242+00', 192, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61778, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.27309+00', 335, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61779, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.428801+00', 201, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61780, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.277195+00', 549, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61781, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.380694+00', 600, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61782, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.39774+00', 630, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61783, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.381593+00', 657, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61784, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.743875+00', 329, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61785, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.437014+00', 655, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61786, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.900978+00', 320, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61787, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.320888+00', 908, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61788, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.419399+00', 918, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61789, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.419399+00', 934, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(61790, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.254535+00', 106, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61791, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.244664+00', 315, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61792, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.25727+00', 314, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61793, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.533031+00', 290, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61794, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.521506+00', 380, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61795, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.533052+00', 393, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61796, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.491038+00', 784, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61797, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.532981+00', 765, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61798, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.535685+00', 132, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61799, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.428673+00', 315, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61800, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.508678+00', 317, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61801, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.48077+00', 346, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61802, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.476575+00', 359, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61803, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.481749+00', 364, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61804, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.268975+00', 201, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61805, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.40978+00', 119, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61806, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.257466+00', 307, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61807, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.258463+00', 320, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61808, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.25502+00', 330, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61809, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.229711+00', 397, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61810, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.153803+00', 628, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61811, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.450548+00', 675, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61812, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.380682+00', 849, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61813, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.782629+00', 466, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61814, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.901015+00', 571, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61815, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.752901+00', 999, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61816, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.734156+00', 1403, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61817, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.585164+00', 1609, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61818, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.79015+00', 1425, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61819, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.469194+00', 1965, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61820, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.695521+00', 1825, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61821, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.815972+00', 715, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61822, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.528391+00', 2018, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61823, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.627151+00', 1940, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61824, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.543462+00', 2039, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61825, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.804826+00', 788, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61826, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.912956+00', 1731, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61827, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.859886+00', 1816, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61828, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.804693+00', 1916, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61829, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.640703+00', 1107, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61830, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.196866+00', 2616, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61831, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.769232+00', 1080, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61832, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.677801+00', 1212, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61833, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.762786+00', 1145, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61834, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.717459+00', 2324, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61835, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.808826+00', 2353, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61836, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.336021+00', 230, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61837, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.288496+00', 331, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61838, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.307862+00', 336, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61839, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.318558+00', 360, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61840, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.373359+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61841, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.328179+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61842, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.210235+00', 143, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61843, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.145815+00', 340, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61844, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.163745+00', 480, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61845, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.28624+00', 511, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61846, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.250574+00', 658, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61847, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.314619+00', 674, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61848, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.720676+00', 376, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61849, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.609529+00', 494, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61850, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.197045+00', 969, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61851, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.352794+00', 815, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61852, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.276602+00', 1022, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61853, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.368613+00', 935, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61854, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.59195+00', 759, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61855, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.371691+00', 1003, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61856, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.122028+00', 1350, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61857, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.331641+00', 1364, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61858, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.070989+00', 347, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61859, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.101717+00', 518, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61860, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.185124+00', 436, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61861, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.180406+00', 474, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61862, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.204488+00', 506, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61863, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.205154+00', 521, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61864, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.128238+00', 642, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61865, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.128484+00', 676, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61866, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.093342+00', 915, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61867, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.134154+00', 1018, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61868, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.112803+00', 218, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61869, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.116879+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61870, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.058918+00', 497, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61871, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.169147+00', 395, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61872, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.089573+00', 502, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61873, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.058991+00', 590, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61874, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.125321+00', 568, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61875, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.09597+00', 616, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61876, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.140556+00', 847, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61877, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.112685+00', 882, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61878, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:06.759067+00', 212, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61879, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:06.727915+00', 287, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61880, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:06.694542+00', 371, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61881, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:06.784774+00', 290, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61882, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:06.784901+00', 421, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61883, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:06.796907+00', 427, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61884, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.699435+00', 226, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61885, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.696639+00', 254, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61886, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.735861+00', 330, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61887, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.729047+00', 454, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61888, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.016824+00', 214, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61889, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.04808+00', 379, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61890, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.009307+00', 518, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61891, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.93062+00', 616, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61892, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.298211+00', 282, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61893, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.542297+00', 88, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61894, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.254845+00', 462, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61895, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.689795+00', 1101, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61896, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.300013+00', 531, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61897, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.908004+00', 1000, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61898, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.450713+00', 517, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61899, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.71936+00', 412, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61900, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.797559+00', 440, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61901, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.835743+00', 514, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61902, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.225393+00', 230, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61903, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.121234+00', 421, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61904, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.280789+00', 278, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61905, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.062267+00', 526, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61906, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.126262+00', 501, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61907, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.19252+00', 494, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61908, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.686658+00', 276, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61909, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.188895+00', 896, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61910, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.864721+00', 322, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61911, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.267889+00', 958, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61912, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.844599+00', 455, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61913, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.937054+00', 375, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61914, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.904987+00', 467, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61915, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.88508+00', 513, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61916, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.029285+00', 249, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61917, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.039353+00', 326, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61918, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.05532+00', 453, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61919, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.01654+00', 645, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61920, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.048859+00', 618, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61921, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.021756+00', 669, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61922, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.011636+00', 708, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61923, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.083875+00', 644, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61924, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.068208+00', 901, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61925, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.056183+00', 1025, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61926, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.022184+00', 199, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61927, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.005016+00', 515, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61928, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.103895+00', 425, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61929, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:05.923065+00', 600, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61930, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.060405+00', 548, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61931, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.060919+00', 554, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61932, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.333132+00', 452, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61933, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.599408+00', 301, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61934, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.562789+00', 349, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61935, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.548838+00', 604, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61936, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.64615+00', 631, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61937, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.643646+00', 650, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61938, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.716963+00', 686, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61939, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.749513+00', 697, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61940, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.335347+00', 537, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61941, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.240714+00', 749, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61942, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.360722+00', 629, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61943, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.316759+00', 675, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61944, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.332714+00', 662, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61945, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.628622+00', 1379, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61946, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.373067+00', 686, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61947, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.646026+00', 1460, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61948, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.81589+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61949, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.824615+00', 326, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61950, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.755246+00', 512, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61951, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.831309+00', 448, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61952, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.831068+00', 501, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61953, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.846477+00', 540, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61954, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.866786+00', 556, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61955, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.871066+00', 591, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61956, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.755169+00', 861, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61957, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:31.880609+00', 902, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61958, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.700622+00', 236, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61959, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.742465+00', 345, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61960, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.74254+00', 362, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61961, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.724966+00', 396, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61962, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.73254+00', 408, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61963, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.773601+00', 426, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61964, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.401572+00', 245, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61965, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.414987+00', 333, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61966, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.428501+00', 475, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61967, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.781439+00', 400, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61968, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.985929+00', 474, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61969, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.019539+00', 522, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61970, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.898337+00', 814, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61971, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.95999+00', 900, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(61972, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.824765+00', 1088, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61973, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.97908+00', 981, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61974, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.056882+00', 935, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61975, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.844858+00', 1169, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61976, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.986437+00', 1029, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61977, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.906539+00', 1179, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61978, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.140848+00', 1104, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61979, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.779178+00', 1530, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61980, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.502638+00', 367, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(61981, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.532929+00', 625, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(61982, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.878256+00', 327, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61983, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.552306+00', 655, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(61984, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.525461+00', 790, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(61985, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.506719+00', 817, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(61986, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.548792+00', 796, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(61987, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.101935+00', 315, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61988, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.751809+00', 700, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(61989, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.762388+00', 790, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(61990, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.726962+00', 832, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61991, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.928278+00', 659, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(61992, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.116107+00', 502, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(61993, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.068757+00', 586, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(61994, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.691615+00', 1240, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(61995, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.137266+00', 888, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(61996, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:50.965257+00', 136, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(61997, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:50.95139+00', 273, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(61998, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:50.980225+00', 373, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(61999, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.057945+00', 403, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62000, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:50.982703+00', 512, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62001, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.027503+00', 519, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62002, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.064828+00', 528, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62003, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.125163+00', 507, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62004, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.049127+00', 755, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62005, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.040489+00', 898, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62006, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.154968+00', 341, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62007, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.39275+00', 218, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62008, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.764003+00', 200, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62009, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.869208+00', 162, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62010, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.213727+00', 842, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL), +(62011, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.202188+00', 936, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(62012, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.420727+00', 721, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(62013, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.372853+00', 824, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(62014, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.364115+00', 922, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(62015, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.27896+00', 1117, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62016, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.27896+00', 1137, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', NULL, 12, 2, NULL, 3, NULL), +(62017, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.098798+00', 757, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62018, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.379393+00', 1519, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62019, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.379393+00', 1530, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62020, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.204683+00', 1877, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62021, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.204683+00', 1874, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62022, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.201633+00', 1061, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62023, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.681734+00', 1006, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62024, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.52316+00', 1178, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62025, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.728895+00', 1128, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62026, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.657059+00', 1225, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62027, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.484966+00', 1492, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62028, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.528916+00', 1594, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62029, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:43.626082+00', 375, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62030, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:43.753619+00', 297, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62031, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:43.673801+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62032, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:43.740726+00', 316, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62033, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:43.670699+00', 508, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62034, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:43.771244+00', 431, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62035, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.324596+00', 237, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62036, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.335512+00', 258, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62037, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.301452+00', 339, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62038, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.424727+00', 345, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62039, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.478276+00', 348, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62040, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.476457+00', 375, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62041, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.522229+00', 529, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62042, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.506844+00', 792, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62043, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.881777+00', 467, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62044, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.842516+00', 648, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62045, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.873992+00', 851, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62046, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.889621+00', 854, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62047, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.557106+00', 1314, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62048, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.533049+00', 1357, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62049, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.556074+00', 1435, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62050, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.153934+00', 864, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62051, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.914089+00', 1123, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62052, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.887142+00', 1180, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62053, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.522793+00', 1569, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62054, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.054021+00', 1052, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62055, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:41.992648+00', 1497, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62056, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.123183+00', 1423, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62057, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:44.852959+00', 241, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62058, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:44.843387+00', 292, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62059, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:44.828132+00', 349, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62060, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:44.807379+00', 384, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62061, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:44.870881+00', 370, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62062, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:44.818498+00', 436, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62063, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.152587+00', 156, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62064, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.053726+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62065, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.122917+00', 443, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62066, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.137532+00', 432, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62067, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.137763+00', 482, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62068, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.053345+00', 579, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62069, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.10043+00', 541, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62070, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.085568+00', 601, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62071, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.112564+00', 914, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62072, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.149123+00', 883, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62073, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.135068+00', 325, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62074, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.173547+00', 305, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62075, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.151003+00', 365, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62076, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.178997+00', 393, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62077, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.181309+00', 481, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62078, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.245238+00', 464, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(62079, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.68731+00', 379, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62080, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.771046+00', 496, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62081, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.952347+00', 319, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62082, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.825045+00', 530, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62083, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.770772+00', 498, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62084, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.934839+00', 429, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62085, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.423267+00', 234, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62086, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.64066+00', 171, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62087, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.844395+00', 83, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62088, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.640834+00', 345, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62089, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.642555+00', 547, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62090, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.901826+00', 407, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62091, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.838181+00', 515, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62092, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.876715+00', 516, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62093, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.901929+00', 494, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62094, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.092285+00', 321, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62095, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.820596+00', 762, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62096, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.884569+00', 871, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62097, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.500116+00', 88, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62098, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.501589+00', 200, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62099, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.50506+00', 352, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62100, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.759619+00', 303, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62101, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.77383+00', 515, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62102, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.816695+00', 534, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62103, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.838702+00', 590, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62104, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.998079+00', 735, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62105, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.879888+00', 865, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62106, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.02369+00', 254, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62107, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.202026+00', 343, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62108, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.076021+00', 499, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62109, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.157203+00', 483, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62110, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.062807+00', 580, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62111, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.164586+00', 631, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62112, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.178482+00', 655, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62113, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.156921+00', 690, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62114, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.779452+00', 261, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62115, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.092393+00', 1115, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62116, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.261102+00', 954, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62117, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.142972+00', 117, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62118, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.165197+00', 229, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62119, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.172736+00', 285, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62120, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.346298+00', 660, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62121, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.477525+00', 575, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62122, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.40837+00', 748, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62123, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.500807+00', 1082, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62124, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.416936+00', 1186, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62125, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.365222+00', 604, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(62126, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.551457+00', 1795, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62127, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.678612+00', 694, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(62128, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.67864+00', 725, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(62129, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.69379+00', 781, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(62130, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.657055+00', 974, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(62131, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.687687+00', 992, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62132, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.687687+00', 1063, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 19, 3, NULL, 3, NULL), +(62133, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.376389+00', 589, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62134, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.247833+00', 766, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62135, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.240245+00', 883, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62136, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.260565+00', 957, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62137, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.304612+00', 1126, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62138, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.375438+00', 1135, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62139, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.533303+00', 293, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62140, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.551717+00', 317, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62141, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.768973+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62142, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.813153+00', 220, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62143, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.773013+00', 402, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62144, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.753032+00', 474, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62145, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.272577+00', 132, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62146, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.272835+00', 193, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62147, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.280762+00', 252, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62148, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.331655+00', 368, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62149, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.748014+00', 190, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62150, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.330284+00', 727, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62151, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.012808+00', 481, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62152, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.831217+00', 726, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(62153, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.056791+00', 557, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62154, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.15692+00', 489, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62155, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.797237+00', 873, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(62156, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.066448+00', 872, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(62157, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.670627+00', 297, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62158, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.856441+00', 1267, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62159, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.93403+00', 1222, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62160, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.23181+00', 955, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62161, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.921994+00', 1318, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62162, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.03987+00', 1296, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62163, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.836526+00', 643, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62164, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.769296+00', 1846, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62165, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.769296+00', 1855, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62166, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.412924+00', 1217, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62167, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.537571+00', 1222, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62168, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.741633+00', 1048, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62169, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.626602+00', 1211, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62170, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.470368+00', 1693, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62171, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.763188+00', 1422, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62172, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.738539+00', 326, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62173, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.675558+00', 487, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62174, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.798045+00', 430, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62175, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.742583+00', 520, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62176, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.777059+00', 512, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62177, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.780493+00', 550, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62178, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.773103+00', 667, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62179, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.832819+00', 676, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62180, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.74456+00', 1000, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62181, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:02.832737+00', 1080, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62182, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:01.953462+00', 332, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62183, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.099196+00', 270, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62184, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:01.940112+00', 455, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62185, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.048819+00', 571, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62186, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:01.978463+00', 648, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62187, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.056723+00', 618, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62188, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.065707+00', 631, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62189, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:01.960878+00', 738, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62190, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.042561+00', 912, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62191, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:01.9784+00', 1012, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62192, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.130137+00', 256, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62193, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.113934+00', 358, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62194, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.167959+00', 314, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62195, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.094487+00', 402, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62196, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.161563+00', 393, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62197, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.137527+00', 441, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62198, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.214916+00', 168, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62199, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.19129+00', 254, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62200, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.243968+00', 564, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62201, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.476723+00', 379, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62202, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.275804+00', 614, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62203, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.229482+00', 844, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62204, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.273759+00', 860, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62205, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.716558+00', 596, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62206, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.684649+00', 740, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62207, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.636336+00', 791, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62208, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.021176+00', 599, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62209, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.903581+00', 726, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62210, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.835903+00', 848, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62211, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.716331+00', 989, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62212, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.692677+00', 1219, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62213, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.83755+00', 1178, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62214, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.594338+00', 324, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62215, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.57602+00', 377, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62216, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.54991+00', 463, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62217, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.619117+00', 401, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62218, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.621417+00', 541, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62219, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.641086+00', 548, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62220, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.607199+00', 284, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62221, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.6968+00', 204, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62222, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.603605+00', 410, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62223, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.641463+00', 426, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62224, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.582051+00', 529, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62225, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.648336+00', 479, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62226, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.643045+00', 562, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62227, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.624121+00', 603, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62228, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.582658+00', 794, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62229, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.622135+00', 836, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62230, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.592043+00', 317, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62231, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.592867+00', 344, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62232, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.666853+00', 313, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62233, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.599788+00', 415, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62234, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.612806+00', 424, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62235, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.58524+00', 459, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62236, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.026857+00', 208, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62237, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.950976+00', 336, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62238, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.004373+00', 309, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62239, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.951578+00', 519, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62240, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.884623+00', 598, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62241, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.958378+00', 562, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62242, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.996996+00', 574, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62243, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.984938+00', 606, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62244, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.940097+00', 686, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62245, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.946591+00', 866, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62246, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.370009+00', 237, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62247, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.446846+00', 415, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62248, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.462034+00', 519, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62249, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.446862+00', 735, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62250, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.458722+00', 965, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62251, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.542733+00', 890, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62252, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.4498+00', 1014, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62253, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.559487+00', 1058, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62254, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.858152+00', 491, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62255, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.520591+00', 2015, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62256, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.17423+00', 1396, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62257, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.232487+00', 1440, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62258, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.516343+00', 2179, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62259, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.584707+00', 1210, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62260, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.60077+00', 1518, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62261, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.443245+00', 1736, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62262, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.438307+00', 1797, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62263, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.922794+00', 1303, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62264, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.445517+00', 2102, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62265, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.47318+00', 2140, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62266, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.713113+00', 340, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62267, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.629807+00', 618, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62268, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.569767+00', 784, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62269, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.730103+00', 640, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62270, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.611897+00', 829, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62271, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.725032+00', 730, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62272, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.201432+00', 556, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62273, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.231482+00', 534, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62274, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.425289+00', 574, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62275, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.256904+00', 785, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62276, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.245626+00', 902, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62277, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.266882+00', 868, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62278, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.774359+00', 548, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62279, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.751614+00', 698, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62280, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.268976+00', 1254, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62281, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.447489+00', 1112, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62282, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.659625+00', 995, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62283, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.615304+00', 1078, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62284, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.77937+00', 931, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62285, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.580915+00', 1163, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62286, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.545016+00', 1357, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62287, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.420891+00', 1601, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62288, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.371077+00', 386, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62289, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.382937+00', 484, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62290, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.5395+00', 334, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62291, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.46824+00', 467, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62292, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.449863+00', 500, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62293, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.437676+00', 555, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62294, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.139556+00', 221, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62295, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.062219+00', 376, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62296, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.153013+00', 418, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62297, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.113054+00', 494, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62298, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.114932+00', 525, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62299, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.195868+00', 608, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62300, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.294166+00', 570, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62301, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.273414+00', 601, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62302, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.183515+00', 895, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62303, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.169842+00', 982, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62304, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:51.982279+00', 189, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62305, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.008769+00', 260, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62306, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:51.947323+00', 340, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62307, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:51.97101+00', 406, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62308, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.030731+00', 406, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62309, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.013832+00', 462, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62310, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.842092+00', 301, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62311, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.990633+00', 250, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62312, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.853138+00', 389, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62313, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.998231+00', 262, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62314, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.887397+00', 385, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62315, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.011622+00', 310, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62316, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.778578+00', 477, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62317, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.900589+00', 350, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62318, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.625252+00', 660, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62319, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.721347+00', 733, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(62320, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.724172+00', 800, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62321, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.997275+00', 656, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 1, 2, NULL, 3, NULL), +(62322, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.934148+00', 1091, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62323, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.934148+00', 1153, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(62324, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.431127+00', 759, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62325, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.680813+00', 1555, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62326, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.680813+00', 1573, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(62327, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.081559+00', 474, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62328, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.581494+00', 1204, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62329, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.424701+00', 1364, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62330, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.638594+00', 1157, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62331, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.703282+00', 2138, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62332, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.703282+00', 2150, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62333, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.18112+00', 940, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62334, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.204508+00', 983, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62335, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.229427+00', 1283, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62336, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.91802+00', 2616, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62337, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.91802+00', 2618, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62338, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.546697+00', 2009, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62339, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.981539+00', 1785, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62340, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.892205+00', 254, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62341, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.902016+00', 268, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62342, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.89229+00', 367, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62343, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.908798+00', 419, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62344, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.892738+00', 556, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62345, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.928649+00', 617, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62346, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.911937+00', 648, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62347, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.901234+00', 698, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62348, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.890581+00', 963, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62349, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:48.888293+00', 994, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62350, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.830161+00', 238, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62351, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.657904+00', 466, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62352, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.808505+00', 409, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62353, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.79124+00', 633, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62354, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.161592+00', 333, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62355, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.174637+00', 366, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62356, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.814025+00', 725, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(62357, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.696778+00', 937, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(62358, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.093425+00', 529, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62359, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.105143+00', 584, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62360, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.16175+00', 632, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62361, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.54367+00', 515, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62362, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.600996+00', 547, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62363, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.912882+00', 645, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62364, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.614802+00', 1016, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62365, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.101184+00', 624, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62366, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.931965+00', 906, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62367, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.998135+00', 960, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62368, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.660914+00', 1322, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62369, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.944801+00', 1114, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62370, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.573118+00', 1642, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62371, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.540835+00', 1765, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62372, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.494421+00', 149, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62373, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.36085+00', 349, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62374, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.471654+00', 358, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62375, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.370851+00', 553, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62376, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.395065+00', 590, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62377, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.396333+00', 633, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62378, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.358359+00', 676, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62379, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.463114+00', 626, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62380, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.100479+00', 68, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62381, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.333603+00', 901, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62382, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.156326+00', 129, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62383, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.393319+00', 1055, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62384, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.393319+00', 1059, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62385, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.381586+00', 376, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62386, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.497156+00', 779, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62387, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.977721+00', 712, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62388, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.793476+00', 1035, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62389, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.128187+00', 755, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(62390, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.128187+00', 753, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62391, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.836819+00', 1157, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62392, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.836819+00', 1165, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(62393, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.840754+00', 1166, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62394, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.840754+00', 1177, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(62395, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.548155+00', 1542, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62396, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.858451+00', 1490, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62397, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.858451+00', 1502, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62398, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.846441+00', 1665, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62399, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.753777+00', 1810, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62400, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.753777+00', 1814, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(62401, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.788712+00', 1807, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62402, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.70463+00', 2419, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62403, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.094388+00', 1055, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62404, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.706826+00', 2509, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62405, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.912732+00', 1371, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62406, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.244343+00', 1176, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62407, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.965398+00', 1483, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62408, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.294249+00', 1172, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62409, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.946808+00', 1585, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62410, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:18.986384+00', 184, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62411, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.098038+00', 303, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62412, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.027771+00', 389, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62413, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.129502+00', 497, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62414, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.071414+00', 557, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62415, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.108898+00', 558, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62416, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.109491+00', 588, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62417, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.241406+00', 486, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62418, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.099424+00', 1025, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62419, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.137037+00', 1004, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62420, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.503015+00', 253, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62421, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.576101+00', 282, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62422, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.483555+00', 383, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62423, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.563743+00', 312, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62424, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.539678+00', 369, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62425, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.533731+00', 382, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62426, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:25.979643+00', 225, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62427, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.035887+00', 267, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62428, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.036694+00', 386, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62429, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.076494+00', 478, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62430, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.047978+00', 603, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62431, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.009989+00', 664, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62432, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:25.984886+00', 708, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62433, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.037633+00', 712, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62434, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.466982+00', 302, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62435, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.067641+00', 1127, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62436, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.082168+00', 1119, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62437, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.067641+00', 1138, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62438, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.082168+00', 1126, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62439, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.050585+00', 213, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62440, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.253489+00', 284, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62441, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.415787+00', 172, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62442, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.207085+00', 557, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62443, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.395899+00', 622, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62444, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.284506+00', 788, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62445, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.44264+00', 643, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62446, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.415875+00', 864, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62447, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.446847+00', 994, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62448, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:29.859062+00', 128, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62449, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.242835+00', 374, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62450, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.240375+00', 450, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62451, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.209389+00', 481, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62452, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.208009+00', 542, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62453, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.248148+00', 638, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62454, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.2447+00', 648, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62455, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.521485+00', 478, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62456, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.745036+00', 284, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62457, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.536718+00', 597, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62458, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.460827+00', 683, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62459, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.56069+00', 747, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62460, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.740924+00', 578, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62461, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.757733+00', 570, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62462, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.723338+00', 613, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62463, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.661599+00', 1006, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62464, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.671793+00', 1014, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62465, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:59.785124+00', 340, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62466, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:59.874521+00', 323, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62467, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:59.874164+00', 570, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62468, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:59.847951+00', 677, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62469, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.049152+00', 627, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62470, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:59.972989+00', 757, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62471, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.042351+00', 706, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62472, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:59.955326+00', 864, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62473, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.651221+00', 371, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62474, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.653432+00', 480, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62475, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.797916+00', 366, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62476, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.113034+00', 1111, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62477, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:59.875688+00', 1404, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62478, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.595131+00', 692, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62479, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.756788+00', 550, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62480, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.630944+00', 707, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62481, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.810789+00', 588, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62482, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.586323+00', 484, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62483, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.662445+00', 664, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62484, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.613084+00', 748, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62485, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.949293+00', 558, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62486, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.647523+00', 912, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62487, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.055726+00', 562, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62488, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.716802+00', 1038, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62489, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.537783+00', 1385, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62490, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.657706+00', 1299, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62491, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.643774+00', 1344, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62492, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.028245+00', 977, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62493, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.20331+00', 825, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62494, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.191565+00', 866, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62495, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.21348+00', 867, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62496, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.687478+00', 1709, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62497, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.452686+00', 427, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62498, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.557918+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62499, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.502911+00', 565, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62500, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.537428+00', 612, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62501, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.53862+00', 652, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62502, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.558416+00', 683, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62503, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.511899+00', 782, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62504, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.441099+00', 880, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(62505, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.511899+00', 818, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(62506, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.456903+00', 1187, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62507, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.456903+00', 1189, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(62508, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.515785+00', 1272, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62509, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.515785+00', 1276, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62510, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.6821+00', 335, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62511, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.913044+00', 419, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62512, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.762373+00', 636, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62513, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.652127+00', 845, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62514, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.825559+00', 1029, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62515, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.843241+00', 1073, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62516, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.84604+00', 1026, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62517, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.83866+00', 1203, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62518, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.766333+00', 1530, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62519, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.824598+00', 1671, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62520, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.310616+00', 328, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62521, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.159455+00', 614, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62522, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.300833+00', 584, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62523, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.17025+00', 750, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62524, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.283023+00', 667, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62525, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.282279+00', 776, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62526, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.289354+00', 822, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62527, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.32098+00', 769, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62528, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.039281+00', 488, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62529, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.18909+00', 730, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62530, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.336654+00', 828, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62531, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.512175+00', 685, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(62532, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.226193+00', 1985, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62533, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.226193+00', 1995, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(62534, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.27292+00', 2165, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62535, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.27292+00', 2163, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62536, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.428805+00', 1024, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62537, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.428805+00', 1040, 0, FALSE, 'public-dashboard', 'Closed', NULL, 27, 3, NULL, 3, NULL), +(62538, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.196725+00', 1424, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(62539, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.196725+00', 1405, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62540, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.416702+00', 1298, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62541, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.557305+00', 1348, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62542, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.446168+00', 1570, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62543, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.446168+00', 1580, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(62544, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.610086+00', 1429, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62545, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.636283+00', 1573, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62546, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.773218+00', 1482, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62547, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.620996+00', 1667, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62548, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.334204+00', 1989, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62549, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.334204+00', 1995, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(62550, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.67314+00', 700, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62551, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.716692+00', 680, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62552, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.30512+00', 1179, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62553, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.375765+00', 1239, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62554, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.356465+00', 1297, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62555, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.345196+00', 1322, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62556, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.981251+00', 1810, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62557, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.935927+00', 2063, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62558, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.842975+00', 543, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62559, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.996794+00', 551, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62560, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.709786+00', 964, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62561, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.064138+00', 837, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62562, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.060039+00', 854, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62563, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.016236+00', 1185, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62564, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.02896+00', 1299, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(62565, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.649372+00', 710, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62566, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.095214+00', 515, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62567, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.853639+00', 1724, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(62568, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.57435+00', 1144, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62569, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.57435+00', 1150, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(62570, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.816947+00', 986, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(62571, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.811624+00', 1086, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62572, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.695356+00', 2275, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62573, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.695356+00', 2276, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62574, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.268871+00', 823, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62575, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.659801+00', 1540, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62576, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.659801+00', 1553, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(62577, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.802891+00', 1671, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62578, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.802891+00', 1675, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(62579, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.802739+00', 1679, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62580, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.802739+00', 1694, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(62581, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.370347+00', 1362, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62582, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.668324+00', 1091, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62583, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.909477+00', 984, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62584, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.356951+00', 1674, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62585, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.892581+00', 1348, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62586, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.895902+00', 1398, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62587, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.897538+00', 1411, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62588, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.679828+00', 1826, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62589, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.109393+00', 1510, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62590, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.201197+00', 1460, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62591, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.956698+00', 3777, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62592, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.804682+00', 1935, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62593, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:34.956698+00', 3778, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62594, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.760747+00', 2088, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62595, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.789081+00', 2208, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62596, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:33.756051+00', 230, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62597, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:33.717793+00', 291, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62598, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:33.759151+00', 376, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62599, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:33.739413+00', 413, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62600, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:33.73623+00', 417, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62601, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:33.819926+00', 392, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62602, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.436391+00', 524, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62603, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.466615+00', 557, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62604, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.448615+00', 670, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62605, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.481758+00', 701, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62606, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.761908+00', 441, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62607, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.43675+00', 908, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62608, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.466615+00', 1090, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62609, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.466615+00', 1111, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(62610, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.665287+00', 972, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62611, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.645852+00', 1102, 0, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62612, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.70079+00', 1041, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62613, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.870683+00', 884, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(62614, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.645852+00', 1127, 0, TRUE, 'public-dashboard', 'Closed', NULL, 33, 2, NULL, 3, NULL), +(62615, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.486928+00', 1387, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62616, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.486928+00', 1392, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(62617, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.388562+00', 645, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62618, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.729121+00', 1345, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62619, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.669334+00', 1423, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62620, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.488515+00', 654, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62621, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.47309+00', 1859, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62622, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.856624+00', 500, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62623, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.47309+00', 1942, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62624, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.667826+00', 1052, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62625, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.86399+00', 1265, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62626, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.858429+00', 1277, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62627, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.460008+00', 2699, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62628, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.460008+00', 2703, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62629, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.843729+00', 1361, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62630, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.371805+00', 835, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62631, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.061583+00', 1290, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62632, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.804788+00', 1713, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62633, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.718694+00', 1896, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62634, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.207159+00', 340, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62635, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.356924+00', 428, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62636, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.227902+00', 617, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62637, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.594307+00', 370, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62638, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.531914+00', 481, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62639, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.561296+00', 529, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62640, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.661531+00', 532, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62641, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.596955+00', 628, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62642, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.681348+00', 611, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62643, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.345135+00', 1007, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62644, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.605201+00', 774, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62645, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.566478+00', 856, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62646, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.576993+00', 889, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62647, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.586338+00', 892, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62648, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.586339+00', 958, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62649, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.644592+00', 1090, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62650, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:14.993466+00', 290, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62651, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.061056+00', 292, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62652, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:14.979661+00', 424, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62653, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.052818+00', 364, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62654, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.622394+00', 273, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62655, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.626112+00', 290, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62656, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.92963+00', 131, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62657, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.923597+00', 145, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62658, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.837417+00', 268, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62659, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.902399+00', 319, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62660, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.327605+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62661, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.388796+00', 349, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62662, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.33694+00', 432, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62663, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.384712+00', 395, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62664, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.639961+00', 278, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62665, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.626964+00', 363, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62666, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.704852+00', 330, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62667, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.706852+00', 444, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62668, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.731407+00', 758, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62669, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.753612+00', 752, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62670, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.861228+00', 211, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62671, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.915626+00', 269, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62672, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.013191+00', 195, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62673, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.932025+00', 313, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62674, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.900574+00', 432, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62675, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.981065+00', 375, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62676, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.878376+00', 482, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62677, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:20.067781+00', 231, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62678, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:20.064921+00', 552, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62679, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:20.059099+00', 557, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62680, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.209241+00', 110, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62681, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.21842+00', 289, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62682, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.165009+00', 390, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62683, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.122158+00', 537, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62684, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.55545+00', 175, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62685, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.197849+00', 593, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62686, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.179721+00', 625, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62687, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.152596+00', 670, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62688, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.181774+00', 701, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62689, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.127757+00', 1132, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62690, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.127757+00', 1136, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62691, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.197806+00', 1169, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62692, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.197806+00', 1180, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62693, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.115571+00', 756, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62694, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.395706+00', 748, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62695, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.260633+00', 1097, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62696, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.450872+00', 980, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62697, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.433948+00', 1042, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62698, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.472042+00', 1043, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62699, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.065461+00', 528, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(62700, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.392491+00', 1233, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62701, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.209499+00', 489, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(62702, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.162923+00', 836, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(62703, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.952792+00', 1133, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62704, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.952792+00', 1147, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(62705, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.019887+00', 1257, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62706, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.019887+00', 1271, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(62707, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.037072+00', 1417, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62708, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.037072+00', 1419, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62709, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.367173+00', 2202, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62710, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.425585+00', 2245, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62711, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.758017+00', 1009, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62712, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.856801+00', 927, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62713, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.958572+00', 843, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62714, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.952339+00', 859, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62715, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.924701+00', 953, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62716, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.978989+00', 1002, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62717, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.380357+00', 673, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(62718, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.338754+00', 907, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(62719, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.393176+00', 637, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(62720, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.334833+00', 1057, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(62721, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.356962+00', 1081, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(62722, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.720283+00', 801, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(62723, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.40515+00', 1519, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(62724, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.699554+00', 1382, 0, TRUE, 'public-dashboard', 'Closed', NULL, 1, 2, NULL, 3, NULL), +(62725, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.790755+00', 1119, 0, TRUE, 'public-dashboard', 'Closed', NULL, 31, 2, NULL, 3, NULL), +(62726, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.40515+00', 1485, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62727, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.699554+00', 1220, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62728, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.790755+00', 1085, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62729, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.869383+00', 1298, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62730, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.869383+00', 1300, 0, FALSE, 'public-dashboard', 'Closed', NULL, 14, 2, NULL, 3, NULL), +(62731, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.988977+00', 1615, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62732, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:32.988977+00', 1625, 0, FALSE, 'public-dashboard', 'Closed', NULL, 30, 2, NULL, 3, NULL), +(62733, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.120758+00', 1558, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62734, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.060091+00', 1682, 0, FALSE, 'public-dashboard', 'Closed', NULL, 16, 2, NULL, 3, NULL), +(62735, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.060091+00', 1662, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62736, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.120758+00', 1655, 0, FALSE, 'public-dashboard', 'Closed', NULL, 28, 2, NULL, 3, NULL), +(62737, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.127971+00', 1730, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62738, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.045328+00', 2052, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62739, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.236776+00', 1864, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62740, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.045328+00', 2062, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62741, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.067964+00', 1050, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62742, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.064354+00', 2178, 0, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62743, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.064354+00', 2215, 0, TRUE, 'public-dashboard', 'Closed', NULL, 12, 2, NULL, 3, NULL), +(62744, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.334727+00', 2009, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62745, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.334727+00', 2011, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62746, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.476951+00', 988, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62747, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.490329+00', 1050, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62748, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.418876+00', 1131, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62749, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.514332+00', 2066, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62750, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.53697+00', 2202, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62751, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.070903+00', 1794, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62752, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.79759+00', 2174, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62753, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.654956+00', 1557, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62754, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.695862+00', 1645, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62755, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.483395+00', 1885, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62756, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.779365+00', 2628, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62757, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.437107+00', 2230, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62758, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.603211+00', 2137, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62759, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.312114+00', 358, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62760, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.616728+00', 227, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62761, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.456405+00', 553, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62762, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.456402+00', 574, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62763, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.556216+00', 564, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62764, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.536872+00', 670, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62765, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.939233+00', 383, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62766, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.598971+00', 873, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62767, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.605782+00', 909, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62768, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.272161+00', 508, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62769, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.421456+00', 1401, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62770, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.53091+00', 470, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62771, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.468876+00', 781, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62772, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.006573+00', 657, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(62773, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.520604+00', 2155, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62774, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.520604+00', 2158, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62775, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.587648+00', 1358, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(62776, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.587648+00', 1354, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62777, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.629814+00', 1336, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62778, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.800087+00', 1169, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62779, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.629814+00', 1348, 0, TRUE, 'public-dashboard', 'Closed', NULL, 18, 3, NULL, 3, NULL), +(62780, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.478218+00', 621, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62781, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.576244+00', 1603, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62782, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.34727+00', 1844, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62783, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.34727+00', 1852, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(62784, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.525646+00', 692, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62785, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.81293+00', 1509, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62786, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.81293+00', 1521, 0, TRUE, 'public-dashboard', 'Closed', NULL, 21, 3, NULL, 3, NULL), +(62787, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.557539+00', 1795, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62788, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.02938+00', 1419, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62789, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.924318+00', 1625, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62790, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.613068+00', 1132, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62791, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.475157+00', 1298, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62792, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.456791+00', 1337, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62793, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.541877+00', 1283, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62794, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.047399+00', 2178, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62795, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.374248+00', 1902, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62796, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.393693+00', 803, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62797, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.064324+00', 825, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62798, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.279907+00', 668, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62799, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.44079+00', 1612, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62800, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.859218+00', 1408, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62801, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.202894+00', 1247, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62802, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.496896+00', 1951, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62803, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.517292+00', 2030, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62804, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.519686+00', 1080, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62805, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.834553+00', 1824, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62806, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.841433+00', 1996, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62807, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.12545+00', 1737, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62808, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.055903+00', 1812, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62809, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.555378+00', 1412, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62810, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:33.780343+00', 2512, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62811, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.055903+00', 2248, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62812, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.007385+00', 154, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62813, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.01288+00', 219, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62814, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.099457+00', 414, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62815, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.431779+00', 107, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62816, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:06.997077+00', 590, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62817, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.08997+00', 568, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62818, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.051842+00', 642, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62819, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.15349+00', 578, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62820, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.103785+00', 715, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62821, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.562134+00', 276, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62822, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.750473+00', 280, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62823, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.033759+00', 1165, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62824, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.033759+00', 1166, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(62825, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.022789+00', 1192, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62826, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.022789+00', 1199, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62827, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.862571+00', 761, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62828, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.95687+00', 667, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62829, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.117543+00', 517, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62830, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.134016+00', 499, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62831, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.057304+00', 590, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62832, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.96202+00', 1054, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62833, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.050076+00', 1009, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62834, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.359057+00', 192, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62835, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.331792+00', 221, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62836, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.293393+00', 287, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62837, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.301794+00', 346, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62838, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.345511+00', 352, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62839, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.332097+00', 390, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62840, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.206057+00', 129, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62841, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.257995+00', 244, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62842, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.224996+00', 335, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62843, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.254172+00', 392, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62844, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.246553+00', 416, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62845, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.254235+00', 429, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62846, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:22.877276+00', 463, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 21, 3, NULL, 3, NULL), +(62847, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:22.886591+00', 457, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 18, 3, NULL, 3, NULL), +(62848, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:22.893698+00', 639, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 20, 3, NULL, 3, NULL), +(62849, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:22.915911+00', 624, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 29, 3, NULL, 3, NULL), +(62850, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.046786+00', 494, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62851, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:22.906335+00', 635, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 27, 3, NULL, 3, NULL), +(62852, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:22.840886+00', 731, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 19, 3, NULL, 3, NULL), +(62853, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.20975+00', 685, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62854, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.116837+00', 783, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62855, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.227657+00', 804, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62856, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.043854+00', 1022, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62857, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.221735+00', 897, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62858, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.876848+00', 411, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62859, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.84582+00', 481, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62860, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.188176+00', 275, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62861, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.188176+00', 340, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(62862, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.842128+00', 780, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62863, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.219316+00', 448, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', NULL, 14, 2, NULL, 3, NULL), +(62864, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.21195+00', 649, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 33, 2, NULL, 3, NULL), +(62865, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.159419+00', 708, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 12, 2, NULL, 3, NULL), +(62866, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.088754+00', 847, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 31, 2, NULL, 3, NULL), +(62867, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.192081+00', 1048, 0, TRUE, 'public-dashboard', 'Cursor has been closed', NULL, 9, 2, NULL, 3, NULL), +(62868, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.944873+00', 498, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62869, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:25.002173+00', 754, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62870, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.188181+00', 2081, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62871, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.188181+00', 2100, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(62872, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.920768+00', 1385, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62873, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.882427+00', 1555, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62874, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.974712+00', 1471, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62875, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.95313+00', 1489, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62876, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:25.096904+00', 1519, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62877, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:25.03272+00', 1761, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62878, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:25.004925+00', 1971, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62879, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.960257+00', 2210, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62880, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.443031+00', 358, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62881, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.24748+00', 657, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62882, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.286504+00', 663, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62883, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.286504+00', 772, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62884, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.421072+00', 751, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62885, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.312659+00', 877, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62886, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.601702+00', 642, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62887, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.71042+00', 543, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62888, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.227799+00', 1034, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62889, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.300917+00', 1000, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62890, X'1c3fc42aad46cdd3d22bc367f0fa9b7cf74379cb85a9279b3a177bfe47f7e28b', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.57644+00', 159, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62891, X'164c599ad6cbe4c453c6dfbb57f6e4c7c877525415c3169b91e4d23f1f73c89b', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.627592+00', 265, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62892, X'f306e1b9c2824c2371918a76c48b71796d9c7b08bc7d0486a0da0c6d2b5791c1', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.62867+00', 385, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62893, X'6c9295c485e9d1bbb81b67d97454f0ed09d5237a52c1ec96957931bf0eae6d0f', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.665091+00', 370, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62894, X'0e572621da0fb59fe05dc855c164ab422414518ed002d1dfd98ea1150b129953', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.670459+00', 396, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62895, X'39edd1b8a136ee964f8e9d1810ebef9b10162682eb4d4b8f3b99595108e60302', TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.677793+00', 414, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62896, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.175474+00', 257, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62897, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.072067+00', 478, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62898, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.213422+00', 496, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62899, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.236376+00', 516, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62900, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.19631+00', 588, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62901, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.209444+00', 596, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62902, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.192197+00', 633, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62903, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.128701+00', 709, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62904, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.291116+00', 1191, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62905, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.148772+00', 362, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62906, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.134367+00', 419, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62907, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.163572+00', 1420, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62908, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.097132+00', 619, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62909, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.097148+00', 629, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62910, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.046217+00', 696, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62911, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.089103+00', 664, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62912, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.758181+00', 161, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62913, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.74761+00', 284, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62914, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.726035+00', 379, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62915, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.779584+00', 481, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62916, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.837332+00', 494, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62917, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.88503+00', 489, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62918, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.836229+00', 574, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62919, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.893347+00', 526, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62920, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.930751+00', 928, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62921, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.930751+00', 932, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62922, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.905354+00', 965, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(62923, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.83288+00', 285, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62924, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.825298+00', 437, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62925, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.800483+00', 536, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62926, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.882397+00', 624, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62927, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.827927+00', 702, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62928, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.950623+00', 648, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62929, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.95535+00', 706, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62930, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.89618+00', 834, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62931, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.918343+00', 1133, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62932, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.924618+00', 1165, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62933, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.124492+00', 139, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62934, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.117559+00', 164, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62935, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.120785+00', 290, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62936, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.09446+00', 352, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62937, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.172943+00', 337, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62938, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.179459+00', 341, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62939, X'b2085172c067112567806106e603266114c5880905137c243e15bfb39cf24c2a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.983879+00', 261, 3, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62940, X'1de9bacf4381d530360ae5c07387e5fffa9b343b1d8d30e42bb90c9e5120714a', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.01141+00', 293, 3, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62941, X'80ce7fb49edf019659961a1fb69f3bb355a65d3c21791bd39577ef5b2b86fcc3', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.980645+00', 344, 5, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62942, X'fed7517860cd9903bc51bc4e7b8a61e9b96653aa99dd499dba87694ccd513dbb', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.984136+00', 351, 5, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62943, X'60dfd2450aff8779d5cd14f553a4d04dcc3ca4286a5b288aac3a8ec741dd7b02', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.02289+00', 380, 3, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62944, X'd34c10cadd0ef7e5dad3da7e85133297c6fab0ff6c6c3b0f8ab0b8dfddeab0d4', TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.724667+00', 125, 2, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62945, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.477271+00', 494, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62946, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.856891+00', 207, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62947, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.26439+00', 993, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62948, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.179176+00', 1136, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62949, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.150122+00', 1224, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62950, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.174351+00', 1227, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62951, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.174351+00', 1237, 0, TRUE, 'public-dashboard', 'Closed', NULL, 19, 3, NULL, 3, NULL), +(62952, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.505141+00', 910, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62953, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.16663+00', 1372, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62954, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.601884+00', 1001, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62955, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.454961+00', 1190, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62956, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.927459+00', 788, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62957, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.157244+00', 1604, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62958, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.157244+00', 1607, 0, TRUE, 'public-dashboard', 'Closed', NULL, 20, 3, NULL, 3, NULL), +(62959, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.960681+00', 829, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(62960, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.968934+00', 848, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62961, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.440531+00', 1664, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(62962, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.469143+00', 1638, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62963, X'5eedd82fbb8db68b976ccdfc914f88fe02dc03c05669a12a517fc6169e3b3240', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.348691+00', 593, 6, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(62964, X'4d2c39908bc9d2d4d7c3eeb5a4529ac9a3f20cc05624dd6ffb1cead44e5e00b6', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.350177+00', 676, 6, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(62965, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.923364+00', 255, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(62966, X'861474cc04a30b78b971820ee22c24976c9e9b6a6f2ed55b2e50d069d7184d12', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.744459+00', 923, 11, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(62967, X'8dafbbff79e0dd68376d5311601b644268a3322becd681f879fd3ef0bf67caec', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.952897+00', 809, 3, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(62968, X'62490274ba107b7061a7900ad9d43663b584d9f76fdedf377e9b9f485bcb9b50', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.107664+00', 771, 30, TRUE, 'public-dashboard', NULL, NULL, 12, 2, NULL, 3, FALSE), +(62969, X'47ae73530a9eff1c1a83c51b0e300f6f3f4b9f4b407f155c00fa22f6762a5a5c', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.090012+00', 805, 1, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(62970, X'9dd3f92a855bb645ebd14c8c972a5fe5b411ee939c25212d9483bc42bcd61975', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.053651+00', 916, 2, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(62971, X'70663a13ac18a16e0e8759389de16d1baf4b93bc966c6a0cf00ac12c75997b7d', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.040202+00', 954, 4, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(62972, X'6a6bb9de36d0a60bf5d34e2c49b583d9e8c6502ad243ee77be51a86254d595f3', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.741885+00', 1266, 12, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(62973, X'59d7eb0cecf2a7c909ecbba06f103caaf561c1ddfa5315e35f4ea881fa530e6d', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.040831+00', 1035, 4, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(62974, X'111f77b04272d4d38c6af2b179ab5afecd444d0f0e095cc53c03630a872fb220', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.089139+00', 1007, 35, TRUE, 'public-dashboard', NULL, NULL, 33, 2, NULL, 3, FALSE), +(62975, X'3b7d42995653455d9bfd7523aafb29d6665ebceebe0eb9ed2767138314715d01', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.045423+00', 1056, 2, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(62976, X'e2b9a3e670b240e1684772c3aec9041f0b2e626b47c221a329891527d2791540', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.040233+00', 1070, 4, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(62977, X'39ccb491bf2968540e1b60fc721080afbc077fa64a0790f9df2e3f908bc4adea', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.928913+00', 1497, 37, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(62978, X'9dd95d38bd3af065cdc50062859e36716f9b4275450796208b9ebedd24409743', TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.101708+00', 1337, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63006, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:29.25309+07', 1466, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63007, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:29.302218+07', 1417, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63008, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:29.534502+07', 1587, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63009, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:29.253234+07', 1772, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63010, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.170024+07', 467, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(63011, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:29.251581+07', 3500, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63012, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.084658+07', 739, 0, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(63013, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:29.251581+07', 3642, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63014, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.084207+07', 1323, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63015, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.084207+07', 1716, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63016, X'eced80f64ed06e974d874d202a03db7dcfda90e7f360e8be46cfdf5630ffe562', TIMESTAMP WITH TIME ZONE '2023-02-22 17:25:26.37372+07', 188, 0, TRUE, 'question', NULL, 1, 12, 4, NULL, 3, FALSE), +(63017, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.59521+07', 467, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63018, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.594998+07', 816, 0, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(63019, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.572211+07', 838, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63020, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.599612+07', 575, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63021, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.594499+07', 817, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(63022, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.571936+07', 495, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63023, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.572595+07', 1135, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63024, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.571936+07', 1052, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 31, 2, NULL, 3, NULL), +(63025, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.572211+07', 1093, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 1, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63026, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.633169+07', 1258, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63027, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.594998+07', 999, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 33, 2, NULL, 3, NULL), +(63028, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.594499+07', 1012, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 12, 2, NULL, 3, NULL), +(63029, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.572595+07', 996, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63030, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.601981+07', 1999, 0, FALSE, 'public-dashboard', 'Closed', 1, 28, 2, NULL, 3, NULL), +(63031, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.601981+07', 1967, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63032, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.583846+07', 1991, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63033, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.643398+07', 1962, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 2, NULL, 3, NULL), +(63034, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.643398+07', 1925, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63035, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.57167+07', 2127, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63036, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.602291+07', 2125, 0, FALSE, 'public-dashboard', 'Closed', 1, 14, 2, NULL, 3, NULL), +(63037, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.602291+07', 2124, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63038, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.57279+07', 2149, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(63039, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:48.57279+07', 2126, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63040, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:51.007211+07', 642, 0, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(63041, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.945629+07', 875, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63042, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.947119+07', 845, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63043, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:51.014203+07', 1079, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63044, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.94563+07', 1173, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63045, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:52.235145+07', 567, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(63046, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.524975+07', 757, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63047, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.482861+07', 771, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 12, 2, NULL, 3, NULL), +(63048, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.482861+07', 749, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(63049, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.419245+07', 862, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63050, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.515713+07', 880, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63051, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.516687+07', 922, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 3, NULL), +(63052, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.419245+07', 1006, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 31, 2, NULL, 3, NULL), +(63053, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.516687+07', 878, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63054, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.515713+07', 935, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63055, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.518788+07', 937, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63056, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.442084+07', 1421, 0, FALSE, 'public-dashboard', 'Closed', 1, 30, 2, NULL, 3, NULL), +(63057, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.442084+07', 1156, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63058, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.757556+07', 1165, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63059, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.757556+07', 1208, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(63060, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.547935+07', 2059, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63061, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:19.547935+07', 2061, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(63062, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.061472+07', 2051, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63063, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.334505+07', 1759, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63064, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.038746+07', 2061, 0, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63065, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.389475+07', 1784, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63066, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.942921+07', 1572, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63067, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.935425+07', 1592, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(63068, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.935425+07', 1592, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63069, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.939361+07', 1802, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63070, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.061472+07', 3209, 0, FALSE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', 1, 28, 2, NULL, 3, NULL), +(63071, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.038746+07', 2800, 0, TRUE, 'public-dashboard', 'java.util.concurrent.CancellationException: Completed whilst write blocked', 1, 33, 2, NULL, 3, NULL), +(63072, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:23.624527+07', 1839, 0, TRUE, 'public-dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(63073, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:23.818234+07', 1927, 0, TRUE, 'public-dashboard', NULL, 1, 12, 2, NULL, 3, FALSE), +(63074, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:23.591026+07', 2521, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63075, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.570656+07', 3765, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63076, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.130329+07', 381, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63077, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.120772+07', 428, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63078, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.130327+07', 390, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63079, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.120071+07', 428, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63080, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.120772+07', 647, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 18, 3, NULL, 3, NULL), +(63081, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:47.853288+07', 1056, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63082, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.118476+07', 803, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63083, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.120071+07', 630, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 19, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63084, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.118476+07', 803, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63085, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.118476+07', 906, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 20, 3, NULL, 3, NULL), +(63086, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:47.875254+07', 1280, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63087, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:47.875254+07', 1294, 0, TRUE, 'public-dashboard', 'Closed', 1, 21, 3, NULL, 3, NULL), +(63088, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.120085+07', 1351, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63089, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.120085+07', 1429, 0, FALSE, 'public-dashboard', 'Closed', 1, 27, 3, NULL, 3, NULL), +(63090, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:47.857058+07', 2304, 0, FALSE, 'public-dashboard', 'Closed', 1, 29, 3, NULL, 3, NULL), +(63091, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:49.427128+07', 730, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63092, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:49.427128+07', 736, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 27, 3, NULL, 3, NULL), +(63093, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:47.857058+07', 2300, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63094, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:49.717722+07', 663, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63095, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:49.717722+07', 729, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 29, 3, NULL, 3, NULL), +(63096, X'eced80f64ed06e974d874d202a03db7dcfda90e7f360e8be46cfdf5630ffe562', TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:51.741412+07', 336, 0, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63097, X'eced80f64ed06e974d874d202a03db7dcfda90e7f360e8be46cfdf5630ffe562', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:03.984232+07', 548, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63098, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:41.624904+07', 559, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63099, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:41.447569+07', 721, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63100, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:41.447285+07', 1295, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63101, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:41.447405+07', 1294, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63102, X'b451dafcae78651af6d13c9f3b5dda2847a3c565bc42487307b7cbc57cf0c1c6', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.05202+07', 359, 0, TRUE, 'dashboard', NULL, 1, 33, 2, NULL, 3, FALSE), +(63103, X'2e0619ca6da2d3a00921dc08dc70d03b98b4396df90352dc8067feaa872026b0', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.052563+07', 468, 0, TRUE, 'dashboard', NULL, 1, 12, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63104, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:41.453115+07', 2231, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63105, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:41.447283+07', 2234, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63106, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:42.928801+07', 754, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63107, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:42.928801+07', 887, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63108, X'eced80f64ed06e974d874d202a03db7dcfda90e7f360e8be46cfdf5630ffe562', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:17.590443+07', 119, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63109, X'42bee50874e36b9c34e3ee136d8bbf3ce254d59063e2d26fd50838167775db30', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:26.06837+07', 105, 0, TRUE, 'question', NULL, 1, 33, 4, NULL, 3, FALSE), +(63110, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:56.707076+07', 291, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63111, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:56.706299+07', 293, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63112, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:56.706583+07', 478, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63113, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:56.710163+07', 472, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63114, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:56.706599+07', 492, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63115, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:56.70669+07', 499, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63116, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.364262+07', 163, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63117, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.364177+07', 172, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63118, X'eced80f64ed06e974d874d202a03db7dcfda90e7f360e8be46cfdf5630ffe562', TIMESTAMP WITH TIME ZONE '2023-02-24 15:15:05.748881+07', 105, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63119, X'42bee50874e36b9c34e3ee136d8bbf3ce254d59063e2d26fd50838167775db30', TIMESTAMP WITH TIME ZONE '2023-02-24 15:15:05.749116+07', 104, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63120, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:30.081053+07', 147, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63121, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:30.163776+07', 161, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63122, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.236158+06', 962, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 1, 2, NULL, 3, NULL), +(63123, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.419837+06', 659, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63124, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.207244+06', 1004, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 31, 2, NULL, 3, NULL), +(63125, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.20512+06', 1020, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63126, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.236158+06', 842, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63127, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.231747+06', 996, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63128, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.434458+06', 790, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63129, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.207244+06', 849, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63130, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.516908+06', 542, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63131, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.231747+06', 1014, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 30, 2, NULL, 3, NULL), +(63132, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.477914+06', 768, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63133, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.574196+06', 651, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63134, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.215023+06', 1138, 0, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63135, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.513404+06', 928, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63136, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.563957+06', 753, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(63137, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.231299+06', 1121, 0, TRUE, 'public-dashboard', 'Closed', NULL, 9, 2, NULL, 3, NULL), +(63138, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.20512+06', 1047, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(63139, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.215023+06', 1139, 0, TRUE, 'public-dashboard', 'Closed', NULL, 13, 2, NULL, 3, NULL), +(63140, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.477914+06', 839, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(63141, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.563957+06', 752, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63142, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.509552+06', 940, 4, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63143, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:24.231299+06', 1120, 0, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(63144, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.557476+06', 159, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63145, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.572822+06', 246, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63146, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.788705+06', 102, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(63147, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.834893+06', 130, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 18, 3, NULL, 3, NULL), +(63148, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.798704+06', 198, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(63149, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.834893+06', 127, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE), +(63150, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.798704+06', 206, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 27, 3, NULL, 3, NULL), +(63151, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.888818+06', 192, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 21, 3, NULL, 3, NULL), +(63152, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.841305+06', 198, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(63153, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.841305+06', 224, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 29, 3, NULL, 3, NULL), +(63154, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.887808+06', 251, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 20, 3, NULL, 3, NULL), +(63155, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.888818+06', 188, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(63156, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.887808+06', 203, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(63157, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.194605+06', 89, 0, TRUE, 'public-dashboard', NULL, NULL, 20, 3, NULL, 3, FALSE), +(63158, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.172345+06', 164, 0, TRUE, 'public-dashboard', NULL, NULL, 19, 3, NULL, 3, FALSE), +(63159, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.224633+06', 119, 0, TRUE, 'public-dashboard', NULL, NULL, 21, 3, NULL, 3, FALSE), +(63160, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.184914+06', 164, 0, FALSE, 'public-dashboard', NULL, NULL, 29, 3, NULL, 3, FALSE), +(63161, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.241598+06', 140, 0, TRUE, 'public-dashboard', NULL, NULL, 18, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63162, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.290946+06', 201, 0, FALSE, 'public-dashboard', NULL, NULL, 27, 3, NULL, 3, FALSE), +(63163, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.726108+06', 109, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63164, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.719359+06', 135, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 30, 2, NULL, 3, NULL), +(63165, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.719359+06', 114, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63166, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.726108+06', 127, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 16, 2, NULL, 3, NULL), +(63167, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.825847+06', 192, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63168, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.723589+06', 293, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(63169, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.723589+06', 292, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63170, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.825847+06', 248, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 31, 2, NULL, 3, NULL), +(63171, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.761651+06', 291, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63172, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.726112+06', 347, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(63173, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.761651+06', 321, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 1, 2, NULL, 3, NULL), +(63174, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.899096+06', 181, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63175, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.980983+06', 342, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63176, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.005775+06', 313, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63177, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.01083+06', 374, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(63178, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.09798+06', 280, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63179, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.01083+06', 371, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63180, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.002507+06', 365, 4, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63181, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.98128+06', 502, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63182, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.44313+06', 147, 1, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63183, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.393158+06', 176, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63184, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:04.075926+06', 90, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63185, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:04.108856+06', 57, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63186, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:14.473391+06', 6, 0, FALSE, 'ad-hoc', 'No fields found for table "registrations".', 1, NULL, NULL, NULL, 3, NULL), +(63187, X'c48f3ac43425d5792c114e6e15e11a77075be12a943d345a7a6f5e8f88a05826', TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:21.754719+06', 7, 0, FALSE, 'ad-hoc', 'No fields found for table "corrections".', 1, NULL, NULL, NULL, 3, NULL), +(63188, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.893091+06', 163, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63189, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.941924+06', 119, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63190, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.941924+06', 130, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 31, 2, NULL, 3, NULL), +(63191, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.893091+06', 178, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 1, 2, NULL, 3, NULL), +(63192, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.918045+06', 328, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63193, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.948931+06', 319, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63194, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.948931+06', 325, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 30, 2, NULL, 3, NULL), +(63195, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.918045+06', 325, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63196, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.921218+06', 404, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63197, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.199839+06', 176, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63198, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.893062+06', 435, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63199, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:40.893062+06', 439, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63200, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.246665+06', 184, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63201, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.241701+06', 352, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63202, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.237647+06', 433, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63203, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.232175+06', 525, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63204, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.232175+06', 591, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63205, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.376859+06', 521, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63206, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.721832+06', 221, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63207, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.321048+06', 690, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63208, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.377285+06', 602, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63209, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.321048+06', 706, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63210, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.760261+06', 462, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63211, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.505854+06', 144, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 21, 3, NULL, 3, NULL), +(63212, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.518404+06', 241, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63213, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.533396+06', 195, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63214, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.484319+06', 94, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63215, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.518404+06', 251, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 18, 3, NULL, 3, NULL), +(63216, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.533396+06', 223, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 19, 3, NULL, 3, NULL), +(63217, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.515537+06', 262, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63218, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.484319+06', 150, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 20, 3, NULL, 3, NULL), +(63219, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.515537+06', 265, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63220, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.554566+06', 284, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 27, 3, NULL, 3, NULL), +(63221, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.505854+06', 141, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63222, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.554566+06', 277, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63223, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.845836+06', 101, 0, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63224, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.827645+06', 168, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63225, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.817137+06', 178, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63226, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.886855+06', 133, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63227, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.748902+06', 321, 0, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63228, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.89588+06', 283, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63229, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.358249+06', 104, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63230, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.322268+06', 159, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63231, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.351891+06', 103, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63232, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.339507+06', 258, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63233, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.339507+06', 262, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63234, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.358249+06', 224, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63235, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.358249+06', 228, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 30, 2, NULL, 3, NULL), +(63236, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.373327+06', 330, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63237, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.59918+06', 217, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63238, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.59918+06', 225, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63239, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.650517+06', 183, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63240, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.631851+06', 251, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63241, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.631851+06', 244, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63242, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.706595+06', 248, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63243, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.806525+06', 166, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63244, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.735832+06', 354, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63245, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.734314+06', 368, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63246, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.925932+06', 193, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63247, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.733443+06', 394, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63248, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:25.200627+06', 142, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63249, X'473eb67e52140718cc653dfda1c37d6936a59d55bbc7f20834dc23a21c249ef5', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.819187+06', 103, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63250, X'aa4a07ca29bf0630f10b924247321b95756977ee0d3ddb8fe13a1e540fb4738c', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.854731+06', 67, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63251, X'3ab739579b3077825c1f33fc73ef360a8de9b5cf8d6dad7245dace7161c4a73b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.867736+06', 55, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63252, X'5b464dfbcb7c736ccb1128e03987922798cff78b2717abf190a0a9983fa247e0', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.855097+06', 122, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63253, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:33.003839+06', 83, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63254, X'ca88e11f19181bc157395040bd6132eada5f1600e32a4b97f6b8ac1d21fc4540', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:33.023352+06', 117, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63255, X'9a621d1d9cd21ee1f49a1c221865a71dcf656aef44bd016258a369fa2173d8cb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.832724+06', 305, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63256, X'f1101a0f962501b658d46a71319d0973c63c42e58b43e00e8f61266b29d98507', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.819462+06', 339, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63257, X'32c600cfcca4e12b348e0c271f19210efcf7988a1f92f0e62b67ddbfca19708a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.628655+06', 54, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63258, X'14f2225d10d7f99d88990cf8b86830d75152a6549920f763ca0bfb5b8150423c', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.636188+06', 56, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63259, X'c70f9c825f0b2907fbdd9cc0a877de16985538f446143a9126b11cf0aa2892b4', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.623068+06', 73, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63260, X'f3bef64318af6e9bb40a74148d0055cad9a338c700cd6f1c49207d63da70cd75', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.620228+06', 133, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63261, X'd95b60041695ef0718ceba0e718298301339dd8cba030cff28f5046308eee147', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.771015+06', 77, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63262, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.780555+06', 75, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63263, X'00e3e576b8cbcc1290d77b5d9daf3115c1018f909b5a7dd02c945ce15b72d18f', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.629221+06', 270, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63264, X'374e576b46c823b889adb45ff6ec8935c784401f5b31c2f3cac1603d8daea97d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.641774+06', 277, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63265, X'eb078a533aad7ed329b42e6c14a13049a8fabe1c61b72c26a5fa1cb8ca6e0e0c', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.576416+06', 88, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63266, X'5665ace83d16a57d4bbf00ef17a4e9b06a6bb014a2fe37d7aa8270b87e6a9556', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.57103+06', 99, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63267, X'986117cc97f76d813d12db4886e9da40e333cf749feb02405d615634e4c07a34', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.558824+06', 117, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63268, X'7d712508585c9bb2762aca4ad5f8d1bb70be6e41f87f6643df5b875f2ad91ad1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.545073+06', 128, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63269, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.737703+06', 78, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63270, X'c994a57bf44a8f35265ac2d89f7864d8b22300b7ba6ee21a73f2552497ccb06b', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.763304+06', 99, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63271, X'6ef18dd2448b3e149c41b7511a02b0b5ed975af94232de712d8bdfd6e993e4d6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.567777+06', 302, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63272, X'05cddaadc6185ceed16d86eb0cd8f22ec75dca83ea3dd1e33650be56a6035ee3', TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.599031+06', 275, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63273, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.686329+06', 156, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63274, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.764058+06', 81, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63275, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.713637+06', 128, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63276, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.713184+06', 139, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63277, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.686507+06', 263, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63278, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.888916+06', 63, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63279, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.695212+06', 324, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63280, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.695212+06', 333, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 9, 2, NULL, 3, NULL), +(63281, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.915099+06', 181, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63282, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.01744+06', 76, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63283, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.915099+06', 184, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63284, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.963881+06', 165, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63285, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.060517+06', 129, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63286, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.976471+06', 248, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63287, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.066352+06', 205, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63288, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.068767+06', 335, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63289, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.337402+06', 186, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63290, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.27571+06', 351, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63291, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.67288+06', 202, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63292, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.8314+06', 57, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63293, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.883173+06', 68, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63294, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.863047+06', 119, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63295, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.882925+06', 150, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63296, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.931015+06', 109, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63297, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:04.021989+06', 78, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63298, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.862303+06', 255, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63299, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.885863+06', 273, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63300, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.872051+06', 32, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63301, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.862239+06', 50, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63302, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.872449+06', 67, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63303, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.871317+06', 94, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63304, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.99546+06', 47, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63305, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.979381+06', 90, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63306, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.848437+06', 251, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63307, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.848919+06', 268, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63308, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.826285+06', 36, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63309, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.826041+06', 59, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63310, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.829617+06', 92, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63311, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.858544+06', 62, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63312, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.96369+06', 64, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63313, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.972434+06', 54, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63314, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.836892+06', 248, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63315, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.846262+06', 240, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63316, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.794771+06', 75, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63317, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.809538+06', 102, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63318, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.850343+06', 77, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63319, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.863635+06', 90, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63320, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.950499+06', 61, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63321, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.987446+06', 60, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63322, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.801162+06', 276, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63323, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.861062+06', 239, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63324, X'ba45ca01c7c510a9edf68febee79ff1bfb1a3caeb1380c45d3ef5e330fe9f861', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.435827+06', 31, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63325, X'a109673621ae1f6e2a72f1129cab2f36d3196437c0638d6c4b543559cb7f5346', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.429197+06', 72, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63326, X'1de9e1b9dc28cde6a91f1ab176c4a91a464320f182796ac229e1fa308c6ac0a7', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.453956+06', 78, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63327, X'516cb5f585ec8d22a74640d59677774bf409256d5765411c018569cd4ad637e9', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.480374+06', 197, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63328, X'95ec264bf139d909d3ef36dac723b81b0b92160bcc16223a1bdb86992cdac22f', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.523985+06', 173, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63329, X'8f997071f5fc219bc6e3aaf478fe38d5b12da4cd78b4289637b5f14d6a505347', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.462233+06', 240, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63330, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.628896+06', 97, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63331, X'3a37257a2213bb264032f522cce32f499f6d08f513dd9c44599017199cf61986', TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.465386+06', 267, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63332, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:04.988065+06', 61, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63333, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:04.966739+06', 111, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63334, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.013417+06', 71, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63335, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:04.998845+06', 116, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63336, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.177756+06', 81, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63337, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.149838+06', 116, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63338, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.013551+06', 316, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63339, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.001372+06', 334, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63340, X'238da0aaeb4f6aacd915e4768807c7b3de7f66a89500b387739fe1ad292f7487', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:08.248438+06', 16, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63341, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.766788+06', 63, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63342, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.766736+06', 83, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63343, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.795044+06', 80, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63344, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.796421+06', 146, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63345, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.781994+06', 249, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63346, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.993809+06', 40, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63347, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.790752+06', 263, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63348, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.986554+06', 67, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63349, X'0356ae7b058c0b083519364771de664fa682b062531673e1cecf22d88b29a4ee', TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:46.028691+06', 18, 0, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(63350, X'a54d9189036f108be8b4567615f55a279e3b10a6fef5dc4c87ca6d8b86c88495', TIMESTAMP WITH TIME ZONE '2023-05-02 17:19:31.606394+06', 438, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(63351, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 17:21:17.802033+06', 203, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(63352, X'0356ae7b058c0b083519364771de664fa682b062531673e1cecf22d88b29a4ee', TIMESTAMP WITH TIME ZONE '2023-05-02 17:22:32.339457+06', 52, 0, TRUE, 'question', NULL, 1, 18, NULL, NULL, 3, FALSE), +(63353, X'cc427a7164dfbc63bab90c03b12b1df49ab3c88b38817d22bd8463cfb88400bd', TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:14.029594+06', 359, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63354, X'cc427a7164dfbc63bab90c03b12b1df49ab3c88b38817d22bd8463cfb88400bd', TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:25.967785+06', 228, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63355, X'50fbce18eba37a6633bdff06589a172a7f820ba30be9f0e40acdf9ccf48934a1', TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:43.451596+06', 59, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63356, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:55.359108+06', 6, 0, FALSE, 'ad-hoc', 'No fields found for table "registrations".', 1, NULL, NULL, NULL, 3, NULL), +(63357, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.710329+06', 77, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63358, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.70604+06', 81, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63359, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.676899+06', 355, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63360, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.702748+06', 350, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63361, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.702748+06', 351, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63362, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.682129+06', 367, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63363, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.676899+06', 389, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63364, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.676899+06', 400, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 30, 2, NULL, 3, NULL), +(63365, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.676899+06', 409, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 3, NULL), +(63366, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.992838+06', 97, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63367, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.05245+06', 57, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63368, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.101229+06', 191, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63369, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.952405+06', 378, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63370, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.174398+06', 302, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63371, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.089352+06', 425, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63372, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.089352+06', 431, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63373, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.103367+06', 418, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63374, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.363712+06', 207, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63375, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.186646+06', 413, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63376, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.186646+06', 413, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63377, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.343416+06', 271, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63378, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.480671+06', 266, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63379, X'aa4a07ca29bf0630f10b924247321b95756977ee0d3ddb8fe13a1e540fb4738c', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.2438+06', 58, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63380, X'3ab739579b3077825c1f33fc73ef360a8de9b5cf8d6dad7245dace7161c4a73b', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.281538+06', 59, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63381, X'473eb67e52140718cc653dfda1c37d6936a59d55bbc7f20834dc23a21c249ef5', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.231995+06', 124, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63382, X'5b464dfbcb7c736ccb1128e03987922798cff78b2717abf190a0a9983fa247e0', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.246497+06', 152, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63383, X'9a621d1d9cd21ee1f49a1c221865a71dcf656aef44bd016258a369fa2173d8cb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.240447+06', 264, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63384, X'ca88e11f19181bc157395040bd6132eada5f1600e32a4b97f6b8ac1d21fc4540', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.440132+06', 64, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63385, X'f1101a0f962501b658d46a71319d0973c63c42e58b43e00e8f61266b29d98507', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.24933+06', 279, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63386, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.474532+06', 68, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63387, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.817379+06', 717, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63388, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.744574+06', 737, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 31, 2, NULL, 3, NULL), +(63389, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.733492+06', 749, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 2, NULL, 3, NULL), +(63390, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.741245+06', 899, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 3, NULL), +(63391, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.734821+06', 782, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 3, NULL), +(63392, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.741245+06', 813, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63393, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.816575+06', 718, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63394, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.806542+06', 747, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63395, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.748675+06', 1005, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63396, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.748675+06', 1048, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(63397, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.741255+06', 1054, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(63398, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.773053+06', 1015, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63399, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.741255+06', 1030, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63400, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.825387+06', 899, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63401, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:57.787955+06', 829, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63402, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.897904+06', 397, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63403, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:59.070193+06', 258, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63404, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.618878+06', 93, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63405, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.550681+06', 164, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63406, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.619536+06', 134, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 3, NULL), +(63407, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.652727+06', 154, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 31, 2, NULL, 3, NULL), +(63408, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.641968+06', 302, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63409, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.642083+06', 303, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63410, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.642083+06', 303, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63411, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.907841+06', 97, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63412, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.907841+06', 95, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63413, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.891288+06', 128, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63414, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.839067+06', 202, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63415, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.87668+06', 154, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63416, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.843765+06', 208, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63417, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.839067+06', 212, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63418, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.920837+06', 127, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63419, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.949101+06', 293, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63420, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.967667+06', 287, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63421, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.27318+06', 108, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63422, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.213922+06', 171, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63423, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:45.943078+06', 62, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63424, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.010931+06', 150, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 31, 2, NULL, 3, NULL), +(63425, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:45.943078+06', 315, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63426, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:45.943078+06', 313, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63427, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.009608+06', 328, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 2, NULL, 3, NULL), +(63428, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:45.994526+06', 412, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63429, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.004055+06', 435, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 3, NULL), +(63430, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.004055+06', 419, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63431, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.28165+06', 175, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63432, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.317363+06', 168, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63433, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.317363+06', 179, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63434, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.319567+06', 199, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63435, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.342057+06', 214, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63436, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.355004+06', 282, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63437, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.28165+06', 274, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63438, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.333622+06', 223, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63439, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.343293+06', 380, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63440, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.449423+06', 424, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63441, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.693848+06', 278, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63442, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.831843+06', 182, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63443, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:32.266687+06', 70, 0, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(63444, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:39.646201+06', 29, 0, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(63445, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:48.449297+06', 32, 0, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(63446, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.255324+06', 84, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63447, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.272775+06', 131, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63448, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.239182+06', 166, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63449, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.29941+06', 259, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 1, 2, NULL, 3, NULL), +(63450, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.316852+06', 451, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63451, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.316852+06', 452, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63452, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.324169+06', 449, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63453, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.5486+06', 245, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63454, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.517259+06', 302, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63455, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.517259+06', 317, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63456, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.59847+06', 236, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63457, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.650932+06', 316, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63458, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.683642+06', 291, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63459, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.573461+06', 415, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63460, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.604031+06', 386, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63461, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.683642+06', 333, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63462, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.681414+06', 481, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63463, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.926452+06', 275, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63464, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:58.05285+06', 153, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63465, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.66849+06', 63, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63466, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.667845+06', 75, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63467, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.61583+06', 128, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63468, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.609512+06', 189, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63469, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.656969+06', 277, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63470, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.601694+06', 365, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63471, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.601694+06', 359, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63472, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.866982+06', 115, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63473, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.866982+06', 111, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63474, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.983705+06', 203, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63475, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.94835+06', 213, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63476, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.977949+06', 234, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63477, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.948417+06', 294, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63478, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.952276+06', 301, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63479, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.993297+06', 261, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63480, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.952276+06', 332, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63481, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.310726+06', 60, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63482, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.952937+06', 424, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63483, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.318192+06', 110, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63484, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.103292+06', 80, 1, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63485, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.102969+06', 108, 1, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63486, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.2147+06', 62, 1, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63487, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.225707+06', 70, 1, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63488, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.319227+06', 52, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63489, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.336115+06', 71, 1, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63490, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.349273+06', 109, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63491, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.349273+06', 113, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 18, 3, NULL, 3, NULL), +(63492, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.391523+06', 92, 1, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63493, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.391523+06', 100, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 21, 3, NULL, 3, NULL), +(63494, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.352748+06', 194, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 27, 3, NULL, 3, NULL), +(63495, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.478219+06', 108, 0, TRUE, 'public-dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63496, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.396519+06', 288, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 29, 3, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63497, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.396519+06', 287, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63498, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.535428+06', 153, 0, TRUE, 'public-dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63499, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.606996+06', 130, 1, TRUE, 'public-dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63500, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.568673+06', 182, 1, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63501, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.54863+06', 233, 2, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63502, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.61512+06', 198, 1, FALSE, 'public-dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63503, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.231091+06', 25, 1, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63504, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.230859+06', 26, 1, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63505, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.287428+06', 26, 1, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63506, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.28211+06', 40, 1, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63507, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.543149+06', 689, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63508, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.539303+06', 661, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63509, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.371757+06', 1019, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63510, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.431736+06', 960, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63511, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.301282+06', 1038, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 31, 2, NULL, 3, NULL), +(63512, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.255733+06', 978, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63513, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.468992+06', 941, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63514, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.301282+06', 1017, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63515, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.255733+06', 1084, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 1, 2, NULL, 3, NULL), +(63516, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.400678+06', 995, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63517, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.254996+06', 1409, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63518, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.350437+06', 1040, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63519, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.400678+06', 992, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63520, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.468992+06', 964, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63521, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.350437+06', 1083, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63522, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.293455+06', 1371, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63523, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.271094+06', 1119, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63524, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.271094+06', 1140, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 3, NULL), +(63525, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.449652+06', 1235, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63526, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.520581+06', 1150, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63527, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.254996+06', 1413, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(63528, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:58.293455+06', 1372, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(63529, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:00.027585+06', 166, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63530, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.867792+06', 333, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63531, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:47.984962+06', 198, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63532, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:47.965+06', 224, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63533, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:47.978839+06', 212, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63534, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:47.979473+06', 358, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 30, 2, NULL, 3, NULL), +(63535, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:47.979473+06', 344, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63536, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.44532+06', 191, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63537, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.44532+06', 256, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63538, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.436975+06', 197, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63539, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.491471+06', 221, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63540, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.408333+06', 335, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63541, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.408333+06', 334, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63542, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.483517+06', 406, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63543, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.566835+06', 248, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63544, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.370388+06', 580, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63545, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.385075+06', 564, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63546, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.385075+06', 587, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63547, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.60547+06', 494, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63548, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:49.155744+06', 155, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63549, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:49.103267+06', 320, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63550, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:49.20158+06', 231, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63551, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:20.889735+06', 105, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63552, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.014018+06', 104, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63553, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:20.995344+06', 124, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63554, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.041221+06', 122, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63555, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.105614+06', 308, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63556, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.105614+06', 315, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63557, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.258323+06', 182, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63558, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.258323+06', 187, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63559, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.24024+06', 220, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63560, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.24024+06', 222, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63561, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.376359+06', 173, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63562, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.374494+06', 231, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63563, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.407741+06', 228, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63564, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.405895+06', 229, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63565, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.258726+06', 389, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63566, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.482756+06', 325, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63567, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.751733+06', 217, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63568, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.735609+06', 330, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63569, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.846848+06', 265, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63570, X'aa4a07ca29bf0630f10b924247321b95756977ee0d3ddb8fe13a1e540fb4738c', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.404094+06', 84, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63571, X'3ab739579b3077825c1f33fc73ef360a8de9b5cf8d6dad7245dace7161c4a73b', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.428945+06', 61, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63572, X'5b464dfbcb7c736ccb1128e03987922798cff78b2717abf190a0a9983fa247e0', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.397304+06', 123, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63573, X'473eb67e52140718cc653dfda1c37d6936a59d55bbc7f20834dc23a21c249ef5', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.429093+06', 131, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63574, X'ca88e11f19181bc157395040bd6132eada5f1600e32a4b97f6b8ac1d21fc4540', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.597263+06', 136, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63575, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.649646+06', 91, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63576, X'9a621d1d9cd21ee1f49a1c221865a71dcf656aef44bd016258a369fa2173d8cb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.457267+06', 280, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63577, X'f1101a0f962501b658d46a71319d0973c63c42e58b43e00e8f61266b29d98507', TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.385271+06', 348, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63578, X'0f92d2f7691ce1902fe0047b14c2d86ae1301a26925445ea0679bc52377db752', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.465441+06', 53, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63579, X'37ca693ba3ee407569a4f990f392f8afffe7cc145ace6a95e61f0cca6c3ecad5', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.419598+06', 113, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63580, X'3e0365511cf16561c9f3df73a445f5a467bffa378254a5fc579ecdfaf30c390b', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.445212+06', 106, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63581, X'ae0055fcbf303d8485d903be0c2540303259afcdd4505b81bb4b135ac6f055e8', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.418479+06', 173, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63582, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.601088+06', 96, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63583, X'a9f44a64597ce016c003771b8cf75d35c65cec5ab7f62832d04b2609ccdb79c5', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.594488+06', 130, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63584, X'fdc537c83eeaab2845334bba05491fb56619d1aca15ce689ef9f4e41518084f7', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.479482+06', 306, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63585, X'81f808a660808666fec7deb52208d0412a50978855ea4e3801939ccde1429039', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.480441+06', 327, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63586, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.111372+06', 191, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63587, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.071974+06', 253, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63588, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.071974+06', 259, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 16, 2, NULL, 3, NULL), +(63589, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.11071+06', 234, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63590, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.11071+06', 251, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 30, 2, NULL, 3, NULL), +(63591, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.20825+06', 226, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 31, 2, NULL, 3, NULL), +(63592, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.578801+06', 106, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63593, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.382771+06', 449, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63594, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.382771+06', 454, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63595, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.617079+06', 512, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63596, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.638232+06', 523, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63597, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.902757+06', 348, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63598, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.660186+06', 675, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63599, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.76438+06', 598, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63600, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.358932+06', 146, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63601, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.26756+06', 242, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63602, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.415339+06', 175, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63603, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.412924+06', 208, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63604, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.416609+06', 304, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63605, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.382924+06', 413, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63606, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.805421+06', 597, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63607, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.973522+06', 431, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63608, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.973522+06', 439, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63609, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.805421+06', 629, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63610, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.21769+06', 213, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63611, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.165745+06', 308, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63612, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.165745+06', 307, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63613, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.77162+06', 769, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63614, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.387214+06', 301, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63615, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.33833+06', 364, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63616, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.338083+06', 520, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63617, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.624787+06', 366, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63618, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:17.062019+06', 245, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63619, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:17.006325+06', 348, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63620, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:17.053934+06', 334, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63621, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.114505+06', 83, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63622, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.122282+06', 77, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63623, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.136181+06', 79, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63624, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.124223+06', 109, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63625, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.285355+06', 90, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63626, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.276359+06', 136, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63627, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.276359+06', 139, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63628, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.285355+06', 88, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63629, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.283204+06', 268, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63630, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.283204+06', 281, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63631, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.293156+06', 279, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63632, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.559806+06', 121, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63633, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.564966+06', 111, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63634, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.553282+06', 162, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63635, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.555899+06', 182, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63636, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.891787+06', 165, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63637, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:42.005095+06', 150, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63638, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.789835+06', 413, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63639, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.781486+06', 427, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63640, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.101473+06', 96, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63641, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.179062+06', 126, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63642, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.209437+06', 109, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63643, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.234796+06', 144, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63644, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.289597+06', 302, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63645, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.289597+06', 305, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63646, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.405104+06', 255, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63647, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.424207+06', 319, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63648, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.424207+06', 321, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63649, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.468817+06', 311, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63650, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.468817+06', 323, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63651, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.576874+06', 236, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63652, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.653401+06', 164, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63653, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.665174+06', 146, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63654, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.691565+06', 136, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63655, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.683554+06', 338, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63656, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.926592+06', 185, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63657, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.986118+06', 263, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63658, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.984921+06', 371, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63659, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.774406+06', 69, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63660, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.810627+06', 113, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63661, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.800933+06', 130, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63662, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.832481+06', 108, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63663, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.907272+06', 172, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63664, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.907272+06', 178, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(63665, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.010351+06', 119, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63666, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.831972+06', 320, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63667, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.831972+06', 321, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(63668, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.063505+06', 154, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63669, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.837016+06', 374, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(63670, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.014515+06', 200, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63671, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.073041+06', 154, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63672, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.019935+06', 243, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(63673, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.019935+06', 239, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63674, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.277987+06', 165, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63675, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.113401+06', 383, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63676, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.159504+06', 359, 4, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(63677, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.355234+06', 188, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63678, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.177766+06', 79, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63679, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.219258+06', 78, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63680, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.195293+06', 127, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63681, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.280217+06', 102, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63682, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.213733+06', 314, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63683, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.372976+06', 136, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 14, 2, NULL, 3, NULL), +(63684, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.415099+06', 136, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63685, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.213733+06', 338, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(63686, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.415099+06', 138, 0, FALSE, 'public-dashboard', 'Broken pipe', NULL, 28, 2, NULL, 3, NULL), +(63687, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.372976+06', 134, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63688, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.504996+06', 125, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63689, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.566736+06', 131, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63690, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.356352+06', 344, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(63691, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.579203+06', 157, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63692, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.732211+06', 119, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63693, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.531049+06', 378, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63694, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.817088+06', 129, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63695, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.801119+06', 150, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63696, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.725416+06', 382, 4, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(63697, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:24.944925+06', 68, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63698, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:24.976809+06', 91, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63699, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:24.973665+06', 129, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63700, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:24.94255+06', 154, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63701, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.27112+06', 59, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63702, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.27112+06', 60, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63703, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.117424+06', 261, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63704, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.117424+06', 259, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63705, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.172297+06', 327, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63706, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.413832+06', 130, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63707, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.32129+06', 230, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63708, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.348553+06', 239, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63709, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.345934+06', 235, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63710, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.32129+06', 239, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63711, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.359867+06', 250, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63712, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.753127+06', 157, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63713, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.689928+06', 264, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63714, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.609876+06', 371, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63715, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.705961+06', 306, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63716, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.718067+06', 109, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63717, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.761077+06', 74, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63718, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.746401+06', 98, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63719, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.761077+06', 73, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63720, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.90375+06', 125, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63721, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.92524+06', 113, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63722, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.914533+06', 270, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63723, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.909438+06', 287, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63724, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.123801+06', 82, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63725, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.909438+06', 284, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63726, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.190461+06', 98, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63727, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.209527+06', 79, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63728, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.213269+06', 148, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63729, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.406458+06', 188, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63730, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.34889+06', 266, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63731, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.36929+06', 319, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63732, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.476034+06', 343, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63733, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:50.285461+06', 36, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63734, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.270734+06', 130, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63735, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.280558+06', 134, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63736, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.33818+06', 92, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63737, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.339348+06', 116, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63738, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.240994+06', 249, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63739, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.462234+06', 63, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63740, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.4775+06', 79, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63741, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.331423+06', 273, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63742, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.260651+06', 46, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63743, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.264685+06', 65, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63744, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.241752+06', 115, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63745, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.261768+06', 96, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63746, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.412197+06', 64, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63747, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.405477+06', 85, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63748, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.40401+06', 269, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63749, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.40401+06', 275, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63750, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.412197+06', 269, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63751, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.618606+06', 91, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63752, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.648625+06', 97, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63753, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.642679+06', 164, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63754, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.623249+06', 193, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63755, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.648767+06', 168, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63756, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.750163+06', 189, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63757, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.874963+06', 496, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63758, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.93685+06', 446, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63759, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.596526+06', 31, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63760, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.502827+06', 140, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63761, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.589334+06', 116, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63762, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.60745+06', 108, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63763, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.689295+06', 79, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63764, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.701056+06', 91, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63765, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.600492+06', 234, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63766, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.598944+06', 252, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63767, X'3d8b0c9910c4b6d5deca6e775a76e6b291ee396c2b78d74e4037e119260cce83', TIMESTAMP WITH TIME ZONE '2023-05-08 12:55:33.284021+06', 12, 1, TRUE, 'question', NULL, 1, 5, NULL, NULL, 3, FALSE), +(63768, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.412592+06', 69, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE), +(63769, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.428862+06', 48, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63770, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.400424+06', 118, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63771, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.441982+06', 79, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63772, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.577235+06', 81, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63773, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.585171+06', 88, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63774, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.740444+06', 84, 0, TRUE, 'public-dashboard', NULL, NULL, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63775, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.560539+06', 274, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63776, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.560539+06', 275, 0, TRUE, 'public-dashboard', 'Broken pipe', NULL, 13, 2, NULL, 3, NULL), +(63777, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.748939+06', 91, 0, TRUE, 'public-dashboard', NULL, NULL, 31, 2, NULL, 3, FALSE), +(63778, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.851761+06', 91, 0, FALSE, 'public-dashboard', NULL, NULL, 16, 2, NULL, 3, FALSE), +(63779, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.602851+06', 368, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', NULL, 9, 2, NULL, 3, NULL), +(63780, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.8929+06', 159, 0, FALSE, 'public-dashboard', NULL, NULL, 30, 2, NULL, 3, FALSE), +(63781, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.969848+06', 107, 0, FALSE, 'public-dashboard', NULL, NULL, 28, 2, NULL, 3, FALSE), +(63782, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.98736+06', 148, 0, FALSE, 'public-dashboard', NULL, NULL, 14, 2, NULL, 3, FALSE), +(63783, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:28.038233+06', 257, 1, TRUE, 'public-dashboard', NULL, NULL, 13, 2, NULL, 3, FALSE), +(63784, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:28.105106+06', 298, 4, TRUE, 'public-dashboard', NULL, NULL, 9, 2, NULL, 3, FALSE), +(63785, X'3d8b0c9910c4b6d5deca6e775a76e6b291ee396c2b78d74e4037e119260cce83', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:39.118059+06', 17, 1, TRUE, 'question', NULL, 1, 5, NULL, NULL, 3, FALSE), +(63786, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:54.764317+06', 17, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63787, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:50.817314+06', 23, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63788, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:50.822265+06', 25, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63789, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.053924+06', 85, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63790, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.04972+06', 88, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63791, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.117403+06', 164, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63792, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.099977+06', 187, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63793, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.219579+06', 107, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63794, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.23635+06', 123, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63795, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.117396+06', 316, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63796, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.133578+06', 308, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63797, X'0e52c3064e3d3f037e2d4693364d93ff33b90e9cc0b510cd4960547981b38d81', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:04.285557+06', 22, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63798, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:15.253105+06', 21, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63799, X'3d8b0c9910c4b6d5deca6e775a76e6b291ee396c2b78d74e4037e119260cce83', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:25.664292+06', 15, 1, TRUE, 'question', NULL, 1, 5, NULL, NULL, 3, FALSE), +(63800, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.362821+06', 121, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63801, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.398423+06', 91, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63802, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.428814+06', 87, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63803, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.407264+06', 110, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63804, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.531429+06', 56, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63805, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.555791+06', 50, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63806, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.400983+06', 271, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63807, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.400816+06', 322, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63808, X'0e52c3064e3d3f037e2d4693364d93ff33b90e9cc0b510cd4960547981b38d81', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:42.418153+06', 21, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63809, X'9d43182f103d0ea10160d3a4fe85055099f3ec99a9ea53eb0707f012f7fb7162', TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:56.836852+06', 17, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63810, X'0e52c3064e3d3f037e2d4693364d93ff33b90e9cc0b510cd4960547981b38d81', TIMESTAMP WITH TIME ZONE '2023-05-08 13:00:09.182011+06', 17, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63811, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.454451+06', 60, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63812, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.423854+06', 115, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63813, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.462302+06', 138, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63814, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.557323+06', 163, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63815, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.583308+06', 269, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63816, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.583308+06', 278, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(63817, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.678906+06', 190, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63818, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.678906+06', 199, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(63819, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.606359+06', 280, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63820, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.82699+06', 85, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63821, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.786377+06', 159, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63822, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.786377+06', 164, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(63823, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.811349+06', 138, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63824, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.896342+06', 214, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63825, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.817003+06', 303, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63826, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.96596+06', 362, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63827, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.190708+06', 150, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63828, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.985117+06', 374, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63829, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.15279+06', 229, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63830, X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.419748+06', 47, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63831, X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.456523+06', 27, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63832, X'1ff9b3fddf4f7d5aad2768717358358295228e5d27ce74def468d8eb0d86c349', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.423479+06', 74, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63833, X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.460901+06', 38, 2, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63834, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.603523+06', 36, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63835, X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.597484+06', 42, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63836, X'423ebcb93e914c900398c5e813ded335dec0b47be3520a685d3cbb4fb318f10a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.446041+06', 227, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63837, X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.466224+06', 286, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63838, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.318322+06', 79, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63839, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.372194+06', 53, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63840, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.320757+06', 140, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63841, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.304864+06', 163, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63842, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.437133+06', 87, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63843, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.465976+06', 86, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63844, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.391613+06', 290, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63845, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.447051+06', 260, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63846, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:33.645931+06', 39, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63847, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:33.671146+06', 39, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63848, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.700838+06', 53, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63849, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.728309+06', 47, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63850, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.675305+06', 120, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63851, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.797103+06', 67, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63852, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.845628+06', 48, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63853, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.935402+06', 65, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63854, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.81757+06', 242, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63855, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.97917+06', 112, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63856, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.845155+06', 273, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(63857, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.12475+06', 57, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63858, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.068994+06', 142, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63859, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.156781+06', 91, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63860, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.201112+06', 113, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63861, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.156781+06', 188, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63862, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.219276+06', 310, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63863, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.313717+06', 297, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63864, X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.494183+06', 18, 2, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63865, X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.52679+06', 50, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63866, X'1ff9b3fddf4f7d5aad2768717358358295228e5d27ce74def468d8eb0d86c349', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.492679+06', 75, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63867, X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.501798+06', 92, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63868, X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.567463+06', 91, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63869, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.605258+06', 79, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63870, X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.496483+06', 234, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63871, X'423ebcb93e914c900398c5e813ded335dec0b47be3520a685d3cbb4fb318f10a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.504256+06', 239, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63872, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:54.844039+06', 31, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63873, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:54.854207+06', 40, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63874, X'c54cd790b3a02c358cef29895dea4bda6331b987759ae017adaa2ac9aa9e4434', TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:57.177316+06', 21, 0, TRUE, 'question', NULL, 1, 12, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63875, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:10.181158+06', 17, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63876, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:10.189278+06', 22, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63877, X'128bec4885907434caaec896c860d9ea647969b05a98e1e425deec02b57348bc', TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:14.014168+06', 19, 0, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63878, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:28.126845+06', 22, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63879, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:41.157746+06', 24, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63880, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:43.400951+06', 16, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63881, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:43.41063+06', 21, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63882, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.375121+06', 56, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63883, X'062c3847eb592788df1d19452f249fc24c4c2caa9b47a2e1f6a8d62889b21947', TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.372931+06', 73, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63884, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.378951+06', 84, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63885, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.413548+06', 91, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63886, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.399726+06', 108, 0, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63887, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.40144+06', 159, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63888, X'c8381264b9783072cb62fb647208d5fd47e9c72780875e6298863b912ec92c2a', TIMESTAMP WITH TIME ZONE '2023-05-08 13:31:31.675199+06', 17, 0, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(63889, X'8ae528cbb556d29ba7d2eed6684bc4ad4ab4514dea2b30f60fe4593cee9f163c', TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:18.019204+06', 21, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(63890, X'988d500a5928ce7c2305300e3d6a264076fc966fb0f9f731f6f63085044aadd3', TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:29.197114+06', 13, 0, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(63891, X'53429c8aba776d8cb21c2f99be3e7d441b3e5bbced82d6a1796b4841da3f47d6', TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:34.134825+06', 14, 0, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(63892, X'988d500a5928ce7c2305300e3d6a264076fc966fb0f9f731f6f63085044aadd3', TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:44.898941+06', 31, 0, TRUE, 'question', NULL, 1, 19, NULL, NULL, 3, FALSE), +(63893, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:10.729385+06', 582, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63894, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:10.745457+06', 551, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63895, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:10.755085+06', 539, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63896, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:10.745206+06', 595, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63897, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:10.784953+06', 696, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63898, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:10.751076+06', 746, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63899, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.518918+06', 85, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63900, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.512617+06', 126, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63901, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:49.407464+06', 690, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63902, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:49.453236+06', 663, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63903, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:49.398619+06', 718, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63904, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:49.417902+06', 662, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63905, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:49.430442+06', 853, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63906, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:49.398619+06', 887, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63907, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.271052+06', 125, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63908, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.325495+06', 101, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63909, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.324749+06', 479, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63910, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.324775+06', 474, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63911, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.324726+06', 643, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63912, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.325373+06', 642, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63913, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.328612+06', 674, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63914, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.324738+06', 664, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63915, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.967826+06', 133, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63916, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.945514+06', 191, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63917, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.858039+06', 92, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63918, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.923912+06', 116, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63919, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.898074+06', 123, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63920, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.935085+06', 306, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63921, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.923913+06', 320, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63922, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.937964+06', 310, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63923, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.166719+06', 151, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63924, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.205408+06', 143, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63925, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:05.495663+06', 570, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63926, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:05.485071+06', 574, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63927, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:05.486784+06', 653, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63928, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:05.486477+06', 655, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63929, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:05.497509+06', 770, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63930, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:05.485757+06', 798, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63931, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.240057+06', 89, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63932, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.270818+06', 132, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63933, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.562977+06', 104, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63934, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.610947+06', 91, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63935, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.568608+06', 178, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63936, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.562889+06', 188, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63937, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.518504+06', 389, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63938, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.567552+06', 356, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63939, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.848601+06', 102, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63940, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.856467+06', 126, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63941, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:19.542519+06', 593, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63942, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:19.521644+06', 704, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63943, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:19.56727+06', 659, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63944, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:19.515471+06', 622, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63945, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:19.576267+06', 762, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63946, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:19.520618+06', 822, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63947, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.375163+06', 72, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63948, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.358145+06', 115, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63949, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.191087+06', 515, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63950, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.186057+06', 534, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63951, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.137849+06', 568, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63952, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.174691+06', 546, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63953, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.159509+06', 755, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63954, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.174906+06', 753, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63955, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.895535+06', 105, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63956, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.967156+06', 131, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63957, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.036983+06', 144, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63958, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.023418+06', 199, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63959, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:39.981857+06', 277, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63960, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.053458+06', 222, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63961, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.061998+06', 366, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63962, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.088107+06', 355, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63963, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.375292+06', 158, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63964, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.375292+06', 193, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63965, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.887687+06', 103, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63966, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.902822+06', 89, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63967, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.922665+06', 155, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63968, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.89365+06', 169, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63969, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.897764+06', 282, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63970, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.160652+06', 82, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63971, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.139694+06', 138, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63972, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.154219+06', 263, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63973, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-09 14:04:29.260464+06', 34, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63974, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-09 14:05:07.827952+06', 23, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63975, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-09 14:05:30.754381+06', 28, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63976, X'5dcb49cb82741d9891335d172b51f2a264b3d1e0422dc1b7d21a306a5fb50357', TIMESTAMP WITH TIME ZONE '2023-05-09 14:07:14.016887+06', 380, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(63977, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:52.152069+06', 71, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(63978, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:52.148621+06', 86, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63979, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:57.417453+06', 63, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(63980, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:57.392342+06', 88, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63981, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.741182+06', 169, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(63982, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.806015+06', 132, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(63983, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.866508+06', 364, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(63984, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.905828+06', 384, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(63985, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.109828+06', 265, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(63986, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.765804+06', 612, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(63987, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.709341+06', 665, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(63988, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.058785+06', 341, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(63989, X'0485683f9b888b101058a8e9d0ee7816a8dd287e7e24cf3a6dd8dcea89142cba', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:14.935956+06', 71, 0, TRUE, 'dashboard', NULL, 1, 18, 3, NULL, 3, FALSE), +(63990, X'0e7f0cde45be454c31e67107066c56d2e16f6ddf0487d90043d83928264512f8', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:14.91361+06', 111, 0, TRUE, 'dashboard', NULL, 1, 19, 3, NULL, 3, FALSE), +(63991, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:14.958733+06', 89, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63992, X'7459528d36dee2f4e9446579f77b40041d0b010bd1c45d71b434e845d40a735a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:14.92938+06', 187, 0, FALSE, 'dashboard', NULL, 1, 29, 3, NULL, 3, FALSE), +(63993, X'eb28a089ae4a817ef622605f48fdef536d61e32eaae090d212e7a5bfc42a0251', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:14.992793+06', 138, 0, TRUE, 'dashboard', NULL, 1, 21, 3, NULL, 3, FALSE), +(63994, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:14.986797+06', 235, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63995, X'6d06c8768b56f92dfd2f3e747ab54500dfacd1a751c73bde7c47f0a686030819', TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:35.538384+06', 38, 0, TRUE, 'question', NULL, 1, 21, NULL, NULL, 3, FALSE), +(63996, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-09 14:17:43.236336+06', 40, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(63997, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-09 14:17:43.236317+06', 119, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(63998, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:27:15.786084+06', 269, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(63999, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-09 14:27:15.786894+06', 269, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64000, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-09 14:28:47.694606+06', 42, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64001, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-09 14:28:47.694473+06', 293, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64002, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.06647+06', 149, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64003, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.09201+06', 174, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64004, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.125793+06', 148, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64005, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.107617+06', 151, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64006, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.129584+06', 326, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64007, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.179153+06', 290, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64008, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.423454+06', 98, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64009, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.336048+06', 193, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64010, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:28.095427+06', 53, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64011, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:28.113216+06', 162, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64012, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:37.159934+06', 42, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64013, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:37.152482+06', 104, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64014, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.54629+06', 96, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64015, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.524795+06', 143, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64016, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.549288+06', 116, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64017, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.569772+06', 194, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64018, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.749017+06', 79, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64019, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.764324+06', 69, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64020, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.55413+06', 305, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64021, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.588857+06', 321, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64022, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:09.170528+06', 133, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(64023, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.288838+06', 88, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64024, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.330062+06', 90, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64025, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.285283+06', 136, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64026, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.341613+06', 84, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64027, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.489001+06', 71, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64028, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.337625+06', 271, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64029, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.50993+06', 104, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64030, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.343163+06', 278, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64031, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:44.713535+06', 125, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(64032, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:56.971066+06', 108, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64033, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:56.978052+06', 102, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64034, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.002381+06', 104, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64035, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.061676+06', 91, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64036, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:56.997725+06', 210, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64037, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.210204+06', 104, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64038, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.263883+06', 85, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64039, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.062311+06', 304, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64040, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:01.513953+06', 121, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(64041, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.521441+06', 79, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64042, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.553912+06', 54, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64043, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.554141+06', 120, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64044, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.536994+06', 141, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64045, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.716917+06', 68, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64046, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.743825+06', 65, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64047, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.573404+06', 293, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64048, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.55651+06', 315, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64049, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.626674+06', 96, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64050, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.558304+06', 184, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64051, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.66663+06', 105, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64052, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.563201+06', 192, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64053, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.582922+06', 293, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64054, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.818999+06', 68, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64055, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.831046+06', 72, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64056, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.646433+06', 299, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64057, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.633391+06', 89, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64058, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.655103+06', 57, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64059, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.618971+06', 138, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64060, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.668604+06', 104, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64061, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.814659+06', 56, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64062, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.830989+06', 88, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64063, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.667413+06', 264, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64064, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.653786+06', 298, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64065, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:11.894191+06', 143, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(64066, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.203367+06', 79, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64067, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.214465+06', 82, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64068, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.243412+06', 60, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64069, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.235054+06', 101, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64070, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.398267+06', 58, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64071, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.186938+06', 278, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64072, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.396293+06', 81, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64073, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.243412+06', 260, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64074, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.357509+06', 49, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64075, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.389418+06', 43, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64076, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.397187+06', 106, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64077, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.457338+06', 74, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64078, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.472177+06', 70, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64079, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.376063+06', 175, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64080, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.385003+06', 275, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64081, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.389451+06', 297, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64082, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:52.501536+06', 672, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64083, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:52.512095+06', 595, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64084, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:52.501614+06', 606, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64085, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:52.517037+06', 657, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64086, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:52.529061+06', 817, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64087, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:52.517461+06', 821, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64088, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.383475+06', 97, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64089, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.394962+06', 134, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64090, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-09 14:56:09.146228+06', 56, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64091, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-09 14:56:09.118849+06', 139, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64092, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.208715+06', 119, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64093, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.174148+06', 158, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64094, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.193532+06', 229, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64095, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.262381+06', 214, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64096, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.220182+06', 313, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64097, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.468338+06', 113, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64098, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.493242+06', 129, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64099, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.314016+06', 325, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64100, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:47.696661+06', 539, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64101, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:47.70555+06', 528, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64102, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:47.692955+06', 688, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64103, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:47.69663+06', 685, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64104, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:47.70545+06', 765, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64105, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:47.70547+06', 766, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64106, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.47655+06', 104, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64107, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.448583+06', 205, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64108, X'd32da82282b633ac194adb444dd714f13cde50451c019656a39cdbcf7ba2acab', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:03.139154+06', 236, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(64109, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.552371+06', 106, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64110, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.456689+06', 242, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64111, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.520293+06', 184, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64112, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.501603+06', 218, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64113, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.470494+06', 307, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64114, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.505945+06', 308, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64115, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.833189+06', 104, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64116, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.867713+06', 76, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64117, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.832359+06', 113, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64118, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.804105+06', 143, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64119, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.882477+06', 137, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64120, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.863502+06', 208, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64121, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.83947+06', 262, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64122, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.800871+06', 345, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64123, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.099822+06', 90, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64124, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.115544+06', 73, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64125, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.225716+06', 104, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64126, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.224457+06', 78, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64127, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.286431+06', 103, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64128, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.249809+06', 204, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64129, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.424479+06', 113, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64130, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.412472+06', 176, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64131, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.286557+06', 402, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64132, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.366469+06', 325, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64133, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.079952+06', 117, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64134, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.07439+06', 164, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64135, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.133958+06', 194, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64136, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.187655+06', 146, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64137, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.321022+06', 125, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64138, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.096534+06', 381, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64139, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.359345+06', 123, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64140, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.149061+06', 339, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64141, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.605756+06', 156, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64142, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.668519+06', 117, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64143, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.625882+06', 176, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64144, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.689911+06', 155, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64145, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.86914+06', 59, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64146, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.668737+06', 281, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64147, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.642027+06', 318, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64148, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.870165+06', 132, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64149, X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.502073+06', 65, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64150, X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.505347+06', 72, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64151, X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.512437+06', 75, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64152, X'1ff9b3fddf4f7d5aad2768717358358295228e5d27ce74def468d8eb0d86c349', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.501983+06', 101, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64153, X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.616905+06', 80, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64154, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.619759+06', 90, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64155, X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.503387+06', 255, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64156, X'423ebcb93e914c900398c5e813ded335dec0b47be3520a685d3cbb4fb318f10a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.510449+06', 247, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64157, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:41.899268+06', 107, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64158, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:41.919703+06', 103, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64159, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:41.921123+06', 103, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64160, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:41.929772+06', 152, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64161, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.103201+06', 48, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64162, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.099875+06', 85, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64163, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:41.983208+06', 273, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64164, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.005278+06', 251, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64165, X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.281478+06', 75, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64166, X'1ff9b3fddf4f7d5aad2768717358358295228e5d27ce74def468d8eb0d86c349', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.297174+06', 75, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64167, X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.292657+06', 84, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64168, X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.329831+06', 126, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64169, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.441859+06', 52, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64170, X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.446462+06', 85, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64171, X'423ebcb93e914c900398c5e813ded335dec0b47be3520a685d3cbb4fb318f10a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.308764+06', 258, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64172, X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.320627+06', 266, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64173, X'5a151b36cab17afce3c7343a175274ae4c0e3cd5bba7804bff12a0b776422480', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:12.743413+06', 20, 1, FALSE, 'question', NULL, 1, 16, NULL, NULL, 3, FALSE), +(64174, X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.06725+06', 79, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64175, X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.07682+06', 79, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64176, X'1ff9b3fddf4f7d5aad2768717358358295228e5d27ce74def468d8eb0d86c349', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.088612+06', 104, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64177, X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.099779+06', 103, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64178, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.225948+06', 78, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64179, X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.245984+06', 65, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64180, X'423ebcb93e914c900398c5e813ded335dec0b47be3520a685d3cbb4fb318f10a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.07692+06', 274, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64181, X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.070219+06', 284, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64182, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.684154+06', 74, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64183, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.662341+06', 107, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64184, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.67923+06', 97, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64185, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.700945+06', 111, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64186, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.828015+06', 50, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64187, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.853144+06', 59, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64188, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.689372+06', 293, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64189, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.67913+06', 312, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64190, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:39.923061+06', 675, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64191, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:39.957655+06', 659, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64192, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:39.905564+06', 713, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64193, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:39.9489+06', 661, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64194, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:39.957817+06', 782, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64195, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:39.943057+06', 798, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64196, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.767693+06', 64, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64197, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.783096+06', 125, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64198, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.676118+06', 118, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64199, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.704311+06', 161, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64200, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.693362+06', 163, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64201, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.727723+06', 186, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64202, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.66153+06', 327, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64203, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.661757+06', 332, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64204, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.951655+06', 111, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64205, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:19.023897+06', 66, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64206, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.528832+06', 136, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64207, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.627029+06', 173, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64208, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.617671+06', 191, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64209, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.642537+06', 165, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64210, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.558055+06', 305, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64211, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.751453+06', 118, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64212, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.620105+06', 318, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64213, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.913857+06', 50, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64214, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.367607+06', 100, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64215, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.406452+06', 91, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64216, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.3493+06', 185, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64217, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.382973+06', 168, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64218, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.584512+06', 85, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64219, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.372246+06', 322, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64220, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.3779+06', 312, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64221, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.629599+06', 131, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64222, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.349553+06', 137, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64223, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.34699+06', 154, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64224, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.341549+06', 181, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64225, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.439545+06', 172, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64226, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.36558+06', 331, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64227, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.332661+06', 365, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64228, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.591692+06', 121, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64229, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.642296+06', 85, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64230, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.621152+06', 142, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64231, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.642028+06', 147, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64232, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.632767+06', 164, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64233, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.633234+06', 169, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64234, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.930624+06', 138, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64235, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.948467+06', 117, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64236, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.948467+06', 136, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(64237, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.951646+06', 135, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64238, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.883795+06', 253, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64239, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.883795+06', 254, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(64240, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.00652+06', 117, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64241, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.898747+06', 383, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(64242, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.90147+06', 388, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64243, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.90147+06', 394, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(64244, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.073132+06', 326, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64245, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.245772+06', 195, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64246, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.249121+06', 319, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64247, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.564724+06', 132, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64248, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.327521+06', 418, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64249, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.262484+06', 68, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64250, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.262431+06', 73, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64251, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.272773+06', 88, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64252, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.262568+06', 116, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64253, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.402393+06', 75, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64254, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.429462+06', 78, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64255, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.269494+06', 275, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64256, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.274711+06', 294, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64257, X'8fe1db5145862808fce1c27deae38d48f779da365437fbe9ac3a2f243ed6bf0a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.175305+06', 68, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64258, X'52b64db98be0ce301056f501e334390b526993f11f2ee1509bfa1c3bb9ee0eac', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.123655+06', 112, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64259, X'ed6e934a2e8ad10a3a46f856140625eafa42cf1a16f690899d3f46b8972be9eb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.173909+06', 102, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64260, X'42c2c82fe5598e98e624185ca606ca7b43d1ad26d7e0db33a172586de4f62451', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.16459+06', 243, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64261, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.335556+06', 103, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64262, X'ca2de21462fd01b9aba4db7f56719d70347971950bd8fd6f9085cd88d71717cb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.183499+06', 278, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64263, X'f80d56ef587fda8b77890a983af2330ea7e17ee4f527f84e2f0bb237ef289896', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.421618+06', 81, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64264, X'05b24432b42ed7e616c8508e2c7986c582f93a68d6a0558ae59d13e2bf775b17', TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.189202+06', 337, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64265, X'8fe1db5145862808fce1c27deae38d48f779da365437fbe9ac3a2f243ed6bf0a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.353925+06', 133, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64266, X'52b64db98be0ce301056f501e334390b526993f11f2ee1509bfa1c3bb9ee0eac', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.358385+06', 167, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64267, X'42c2c82fe5598e98e624185ca606ca7b43d1ad26d7e0db33a172586de4f62451', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.364154+06', 130, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64268, X'ed6e934a2e8ad10a3a46f856140625eafa42cf1a16f690899d3f46b8972be9eb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.449501+06', 92, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64269, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.584586+06', 88, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64270, X'f80d56ef587fda8b77890a983af2330ea7e17ee4f527f84e2f0bb237ef289896', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.578336+06', 104, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64271, X'05b24432b42ed7e616c8508e2c7986c582f93a68d6a0558ae59d13e2bf775b17', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.391886+06', 317, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64272, X'ca2de21462fd01b9aba4db7f56719d70347971950bd8fd6f9085cd88d71717cb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.430893+06', 294, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64273, X'8fe1db5145862808fce1c27deae38d48f779da365437fbe9ac3a2f243ed6bf0a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.104237+06', 88, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64274, X'42c2c82fe5598e98e624185ca606ca7b43d1ad26d7e0db33a172586de4f62451', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.088068+06', 116, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64275, X'ed6e934a2e8ad10a3a46f856140625eafa42cf1a16f690899d3f46b8972be9eb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.122736+06', 91, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64276, X'52b64db98be0ce301056f501e334390b526993f11f2ee1509bfa1c3bb9ee0eac', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.083365+06', 128, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64277, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.271552+06', 77, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64278, X'f80d56ef587fda8b77890a983af2330ea7e17ee4f527f84e2f0bb237ef289896', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.276268+06', 107, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64279, X'ca2de21462fd01b9aba4db7f56719d70347971950bd8fd6f9085cd88d71717cb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.121644+06', 304, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64280, X'05b24432b42ed7e616c8508e2c7986c582f93a68d6a0558ae59d13e2bf775b17', TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.150068+06', 279, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64281, X'38b0c03215b3ff7ade10004321e78618bfbab33170f8893f7013ac76d40e17de', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.456332+06', 109, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64282, X'068fefc52e0518963fe619459f4c9cbeb0a6b4af96fef83a31d195196f1bd16c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.451187+06', 115, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64283, X'4ddf828d1d3e6855f0d648c64010f9f35ba4ec6ce67d1acff6a4b8245953a7ca', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.464013+06', 168, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64284, X'affe01c310d7fd6f32d4391798914137986d2d84ae5b0e97f3cde17d45ecd432', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.499204+06', 137, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64285, X'a8e7fac7b107d868687e7ca40d60b068d242ad6d10e3742179f3b0e015f6967c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.452478+06', 272, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64286, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.660986+06', 84, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64287, X'ac07317be5aa20ca6181bc5f83d7f48c899c6c7442d4462fcbfade2621756211', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.465929+06', 286, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64288, X'35b3cc917e840c25fb13c0598f6f5a8182de12d8e04e1289eefd103292a16d07', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.694949+06', 63, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64289, X'd2a6ce638ce898063ce3acf8b2a25a13d429f84805e0c47afb2733d401a4bd84', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.389191+06', 50, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64290, X'ff55ec7423eefa67c6837a780128d24e3824bbdd176866bf47cb78e6fa1f0776', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.382544+06', 98, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64291, X'bcdc1359f8d68c822b0ee764fb3de9d1ab4514eb773bd1c251242f9390c3d564', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.369242+06', 119, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64292, X'088751dbd7405ebad6c2f963cb8a8cf39fe368bf5625ce9cc0b2bd0517460e36', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.395084+06', 122, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64293, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.559258+06', 45, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64294, X'6f1fa80a4f191f3c89accc29b571ffc25b0c417a75affdc33b5391c6832a0216', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.511345+06', 110, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64295, X'0276680bf80488fcc57b1bd4866252911f4dd2b4a830d884405a27688fa13b74', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.398437+06', 297, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64296, X'7243a0033c8901613a66021cde0f703d379881ce578238aef7a3ba97f054e690', TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.419825+06', 276, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64297, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:16.32665+06', 50, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64298, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:16.327859+06', 97, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64299, X'd6757e6132bb7ff9123104875485fa2641d233a03d51eaf962c29e6b3f02bd73', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:20.796958+06', 74, 2, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64300, X'03d4d6b2dd6bd6e5d2a5062c230c8b8607b63717c7b4bb30d3f9e12965cae2bd', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:20.791742+06', 99, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64301, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:29.732006+06', 36, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64302, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:29.743438+06', 46, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64303, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:33.982571+06', 71, 1, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64304, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:33.977695+06', 86, 1, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64305, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.60311+06', 97, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64306, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.611819+06', 120, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64307, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.590984+06', 144, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64308, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.654693+06', 126, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64309, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.79879+06', 83, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64310, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.610775+06', 299, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64311, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.816482+06', 105, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64312, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.653313+06', 317, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64313, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.729088+06', 75, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64314, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.728468+06', 95, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64315, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.708225+06', 126, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64316, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.72905+06', 171, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64317, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.885564+06', 82, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64318, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.87822+06', 114, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64319, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.725047+06', 288, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64320, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.721602+06', 318, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64321, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:36.991448+06', 67, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64322, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:36.940072+06', 118, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64323, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:36.990966+06', 92, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64324, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.011479+06', 116, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64325, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.120037+06', 48, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64326, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:36.94163+06', 256, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64327, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.13961+06', 70, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64328, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:36.992803+06', 294, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64329, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.405888+06', 141, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64330, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.417355+06', 211, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64331, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.459676+06', 167, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64332, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.467206+06', 202, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64333, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.417558+06', 328, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64334, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.752786+06', 87, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64335, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.747594+06', 120, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64336, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.43782+06', 461, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64337, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.285265+06', 82, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64338, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.240086+06', 152, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64339, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.271852+06', 162, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64340, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.315041+06', 131, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64341, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.483752+06', 70, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(64342, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.27164+06', 273, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(64343, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.483752+06', 64, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64344, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.307718+06', 294, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64345, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.307718+06', 296, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(64346, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.540897+06', 130, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64347, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.485002+06', 182, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(64348, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.511628+06', 194, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64349, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.485002+06', 172, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64350, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.67299+06', 161, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64351, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.637117+06', 286, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64352, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.82309+06', 186, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64353, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.67045+06', 346, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64354, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.664701+06', 385, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64355, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.832079+06', 232, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64356, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.732572+06', 99, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64357, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.789705+06', 44, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64358, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.789773+06', 111, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64359, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.783063+06', 155, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64360, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.742455+06', 282, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64361, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.742455+06', 297, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(64362, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.755449+06', 312, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(64363, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.956391+06', 158, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64364, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.035872+06', 88, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64365, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.881788+06', 243, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64366, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.881788+06', 255, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(64367, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.956391+06', 233, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(64368, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.016593+06', 216, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64369, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.040934+06', 208, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64370, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.030614+06', 226, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64371, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.023745+06', 286, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64372, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.09918+06', 408, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64373, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.331733+06', 198, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64374, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.341956+06', 185, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64375, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.208482+06', 114, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64376, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.242607+06', 112, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64377, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.227719+06', 185, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64378, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.250714+06', 186, 4, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64379, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.458488+06', 55, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64380, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.43382+06', 84, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64381, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.229467+06', 303, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64382, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.225611+06', 346, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64383, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.060415+06', 57, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64384, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.079273+06', 66, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64385, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.102487+06', 80, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64386, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.129292+06', 58, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64387, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.157379+06', 74, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64388, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.193393+06', 71, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64389, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.248548+06', 47, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64390, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.076947+06', 262, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64391, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.233863+06', 120, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64392, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.103579+06', 268, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64393, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.280155+06', 112, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64394, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.346328+06', 75, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64395, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.40867+06', 59, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64396, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.360216+06', 133, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64397, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.397742+06', 243, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64398, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.45257+06', 224, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64399, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.699521+06', 47, 0, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64400, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.727569+06', 36, 0, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64401, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.727569+06', 39, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 12, 4, NULL, 3, NULL), +(64402, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.778912+06', 27, 0, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64403, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.80292+06', 51, 0, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64404, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.606836+06', 35, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64405, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.658254+06', 55, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64406, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.651654+06', 71, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64407, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.66572+06', 64, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64408, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.693783+06', 117, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64409, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.856919+06', 54, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64410, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.804207+06', 108, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64411, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.814978+06', 102, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64412, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.804207+06', 111, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(64413, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.676055+06', 287, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64414, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.676055+06', 288, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(64415, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.625599+06', 366, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64416, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.902951+06', 158, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64417, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.894587+06', 263, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64418, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.886999+06', 302, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64419, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.998456+06', 214, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64420, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.898168+06', 321, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64421, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.999015+06', 260, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64422, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.302121+06', 28, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64423, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.305873+06', 69, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64424, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.356972+06', 21, 0, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64425, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.40875+06', 87, 0, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64426, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.661793+06', 40, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64427, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.667759+06', 56, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64428, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.664457+06', 81, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64429, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.661776+06', 101, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64430, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.780244+06', 68, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64431, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.774359+06', 92, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64432, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.674676+06', 252, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64433, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.712602+06', 268, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64434, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.157545+06', 68, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64435, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.170544+06', 60, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64436, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.158213+06', 135, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64437, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.21047+06', 88, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64438, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.29571+06', 161, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64439, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.33289+06', 156, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64440, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.196884+06', 301, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64441, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.205299+06', 303, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64442, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.245487+06', 45, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64443, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.260969+06', 55, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64444, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.253129+06', 111, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64445, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.327436+06', 133, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64446, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.391154+06', 111, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64447, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.419214+06', 119, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64448, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.309998+06', 314, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64449, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.316729+06', 320, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64450, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.235584+06', 114, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64451, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.240756+06', 114, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64452, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.247294+06', 124, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64453, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.243249+06', 143, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64454, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.395325+06', 94, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64455, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.438907+06', 60, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64456, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.235584+06', 270, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64457, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.240213+06', 315, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64458, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.826569+06', 50, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64459, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.822675+06', 102, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64460, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.846716+06', 59, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64461, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.822238+06', 157, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64462, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.822238+06', 158, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 30, 2, NULL, 3, NULL), +(64463, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.822861+06', 245, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(64464, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.020467+06', 138, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64465, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.020467+06', 139, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(64466, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.844634+06', 345, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64467, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.844634+06', 350, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(64468, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.104443+06', 120, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64469, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.104443+06', 122, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 14, 2, NULL, 3, NULL), +(64470, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.111126+06', 100, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64471, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.156624+06', 89, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64472, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.10749+06', 128, 0, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64473, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.1447+06', 133, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64474, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.033655+06', 378, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64475, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.117979+06', 344, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64476, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.333178+06', 151, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64477, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.393026+06', 128, 0, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64478, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.412344+06', 37, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64479, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.420792+06', 75, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64480, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.445212+06', 83, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64481, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.462422+06', 105, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64482, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.493094+06', 102, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64483, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.52843+06', 103, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64484, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.482073+06', 256, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64485, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.454246+06', 321, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64486, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.873568+06', 79, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64487, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.903434+06', 73, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64488, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.903198+06', 95, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64489, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.878816+06', 127, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64490, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26.016054+06', 52, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64491, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26.001441+06', 70, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64492, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.89737+06', 228, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64493, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.908389+06', 223, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64494, X'd5d74257d7908a2e47826390281e78e8ddb73e86ae6518b4799da9dda267a729', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.250447+06', 41, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64495, X'c67c970705c0c9ee96d9435e672017d5ea92d9991538b2d81170a6ef3f8bd3d6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.244683+06', 49, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64496, X'783d0d8ba0f80f1c2eb8c8e9b8334ef2dc5c8aa9582d3f74310d663695c488d9', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.257922+06', 45, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64497, X'1da209bff316af82f1da2e2d20a3d2f91835b627915dd873510233460f73969d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.233997+06', 103, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64498, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.346132+06', 62, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64499, X'76aa95082772db36c8d723879df19c513d40af0fd7f930d418d05f823b1f4fb5', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.379309+06', 48, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64500, X'c384bd80da65dae69324344056efdbd9603731641ac113b877a2a80adfc55ace', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.245399+06', 251, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64501, X'67a72e4a544972713252d95af318aca31263d85fe92e4be8283e6a8b96794ba7', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.278949+06', 233, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64502, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.24153+06', 65, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64503, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.24194+06', 70, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64504, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.25795+06', 97, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64505, X'44b93f92fc6ca116a7ab7fcc326eabd8e084c4bfb6d3e40caf9f181e3ab3ed02', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.244754+06', 152, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64506, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.342047+06', 67, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64507, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.361064+06', 63, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64508, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.249607+06', 252, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64509, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.303788+06', 228, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64510, X'd5d74257d7908a2e47826390281e78e8ddb73e86ae6518b4799da9dda267a729', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.430658+06', 26, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64511, X'c67c970705c0c9ee96d9435e672017d5ea92d9991538b2d81170a6ef3f8bd3d6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.417416+06', 64, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64512, X'783d0d8ba0f80f1c2eb8c8e9b8334ef2dc5c8aa9582d3f74310d663695c488d9', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.4226+06', 66, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64513, X'1da209bff316af82f1da2e2d20a3d2f91835b627915dd873510233460f73969d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.417379+06', 83, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64514, X'76aa95082772db36c8d723879df19c513d40af0fd7f930d418d05f823b1f4fb5', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.49921+06', 50, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64515, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.534787+06', 44, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64516, X'c384bd80da65dae69324344056efdbd9603731641ac113b877a2a80adfc55ace', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.435127+06', 202, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64517, X'67a72e4a544972713252d95af318aca31263d85fe92e4be8283e6a8b96794ba7', TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.476829+06', 222, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64518, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.849993+06', 48, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64519, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.863711+06', 59, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64520, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.847921+06', 114, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64521, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.883676+06', 137, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64522, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.965478+06', 80, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64523, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.979909+06', 87, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64524, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.876196+06', 272, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64525, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.891546+06', 275, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64526, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.793928+06', 32, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64527, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.792088+06', 42, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64528, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.797783+06', 41, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64529, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.77684+06', 75, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64530, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.873289+06', 39, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64531, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.882542+06', 45, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64532, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.801304+06', 195, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64533, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.796402+06', 221, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64534, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:29.532722+06', 578, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64535, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:29.528835+06', 579, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64536, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:29.528835+06', 753, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64537, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:29.522576+06', 744, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64538, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:29.522578+06', 831, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64539, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:29.529436+06', 823, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64540, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.405208+06', 71, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64541, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.366846+06', 126, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64542, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.395099+06', 187, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64543, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.420156+06', 190, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64544, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.454737+06', 255, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64545, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.448184+06', 287, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64546, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.36477+06', 387, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64547, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.369943+06', 408, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64548, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.823975+06', 70, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64549, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.816591+06', 107, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64550, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.365378+06', 145, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64551, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.415604+06', 97, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64552, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.440845+06', 149, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64553, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.416498+06', 186, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64554, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.459342+06', 296, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64555, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.621617+06', 181, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64556, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.628482+06', 179, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64557, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.467752+06', 372, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64558, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.240165+06', 95, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64559, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.192187+06', 143, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64560, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.1838+06', 155, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64561, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.232396+06', 148, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64562, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.242868+06', 117, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64563, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.22368+06', 152, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64564, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.428935+06', 57, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64565, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.446816+06', 58, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64566, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.62576+06', 86, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64567, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.577223+06', 108, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64568, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.620237+06', 67, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64569, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.620238+06', 125, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64570, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.563847+06', 253, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64571, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.610195+06', 253, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64572, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.799481+06', 86, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64573, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.823494+06', 74, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64574, X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.036625+06', 66, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64575, X'1ff9b3fddf4f7d5aad2768717358358295228e5d27ce74def468d8eb0d86c349', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.052848+06', 84, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64576, X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.095047+06', 58, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64577, X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.089325+06', 154, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64578, X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.166605+06', 112, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64579, X'423ebcb93e914c900398c5e813ded335dec0b47be3520a685d3cbb4fb318f10a', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.083209+06', 253, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64580, X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.091705+06', 274, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64581, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.297862+06', 87, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64582, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.695985+06', 112, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64583, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.712166+06', 101, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64584, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.712347+06', 149, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64585, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.725277+06', 212, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64586, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.712166+06', 266, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64587, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.716301+06', 290, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64588, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.902839+06', 104, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64589, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.931205+06', 116, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64590, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.266504+06', 101, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64591, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.272469+06', 97, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64592, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.27579+06', 93, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64593, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.26071+06', 147, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64594, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.464261+06', 46, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64595, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.470787+06', 78, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64596, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.308158+06', 292, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64597, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.367043+06', 271, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64598, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:07.399716+06', 37, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64599, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:07.399844+06', 116, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64600, X'd6757e6132bb7ff9123104875485fa2641d233a03d51eaf962c29e6b3f02bd73', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:10.847572+06', 38, 2, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64601, X'03d4d6b2dd6bd6e5d2a5062c230c8b8607b63717c7b4bb30d3f9e12965cae2bd', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:10.855784+06', 89, 2, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64602, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:16.09215+06', 32, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64603, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:16.104094+06', 50, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64604, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:18.765996+06', 45, 1, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64605, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:18.764224+06', 105, 1, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64606, X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:28.50807+06', 54, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(64607, X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:28.534988+06', 44, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(64608, X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:28.535018+06', 49, 2, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(64609, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-10 16:18:56.604388+06', 478, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64610, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:18:56.603815+06', 541, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64611, X'22473e28a8c2d45b145d848677b955e3ab5d8fdd022901369c2f49b724226969', TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:17.596643+06', 101, 0, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64612, X'754503215d4b2c1af9fd4cf97c67cfdda33e0c1bd7e3d6fc031d854f115a7c0b', TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:55.332753+06', 46, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64613, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:55.335044+06', 129, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64614, X'bcde21a872627e522899f5d538f7e78974152c34e82e3ca330981c3fbc576aef', TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:57.279155+06', 62, 0, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64615, X'912780ce5b10a3a7e180547b85005be186e71060d599f4ad25f15277cb0576cb', TIMESTAMP WITH TIME ZONE '2023-05-10 16:22:21.149846+06', 22, 0, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64616, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.098592+06', 130, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64617, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.098592+06', 150, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64618, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.147364+06', 148, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64619, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.208331+06', 211, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64620, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.163325+06', 285, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64621, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.390096+06', 189, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64622, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.209041+06', 405, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64623, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.380127+06', 318, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64624, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.323536+06', 108, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64625, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.346421+06', 107, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64626, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.355162+06', 107, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64627, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.342526+06', 157, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64628, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.541991+06', 58, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64629, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.539243+06', 129, 2, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64630, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.358786+06', 341, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64631, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.371071+06', 360, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64632, X'4d2d0858e0b82ce6abd7c7a525e39bbeb4d195d2f52b6bb674f38fa17518fc2c', TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:17.413172+06', 45, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64633, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:17.374479+06', 115, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64634, X'912780ce5b10a3a7e180547b85005be186e71060d599f4ad25f15277cb0576cb', TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:30.418456+06', 33, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64635, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:28.839201+06', 65, 3, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64636, X'4d2d0858e0b82ce6abd7c7a525e39bbeb4d195d2f52b6bb674f38fa17518fc2c', TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:27.942352+06', 43, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64637, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:27.940117+06', 94, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64638, X'912780ce5b10a3a7e180547b85005be186e71060d599f4ad25f15277cb0576cb', TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:29.242686+06', 31, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64639, X'0892c9758ebea907e9be7fee22bbb7453abbb7e5333e6cc0e9641599c41265d4', TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:46.874807+06', 30, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64640, X'0892c9758ebea907e9be7fee22bbb7453abbb7e5333e6cc0e9641599c41265d4', TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:48.485209+06', 31, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64641, X'aa387f15ae206713491dd58ca02814cabc2a4eacbd627e7f0f089329b0a286cc', TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:59.628807+06', 31, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64642, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:10.223556+06', 45, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64643, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:10.232205+06', 83, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64644, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:17.574892+06', 42, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64645, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:17.575259+06', 76, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64646, X'f33dd8c0aa9af4499d223a36b0392d80f1ca8324842b74dd338576fe528015ec', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:23.583834+06', 31, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64647, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:25.743169+06', 39, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64648, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:25.746389+06', 78, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64649, X'f33dd8c0aa9af4499d223a36b0392d80f1ca8324842b74dd338576fe528015ec', TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:35.627932+06', 21, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64650, X'aa387f15ae206713491dd58ca02814cabc2a4eacbd627e7f0f089329b0a286cc', TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:09.320198+06', 29, 1, TRUE, 'question', NULL, 1, 20, NULL, NULL, 3, FALSE), +(64651, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:32.795666+06', 43, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64652, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:32.795655+06', 100, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64653, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:35.94725+06', 33, 1, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64654, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:35.947965+06', 33, 1, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64655, X'128bec4885907434caaec896c860d9ea647969b05a98e1e425deec02b57348bc', TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:42.338105+06', 28, 1, TRUE, 'question', NULL, 1, 33, NULL, NULL, 3, FALSE), +(64656, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:04.304283+06', 54, 1, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64657, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:04.325312+06', 56, 1, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64658, X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:06.622794+06', 60, 2, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(64659, X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:06.623106+06', 68, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(64660, X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:06.662198+06', 62, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(64661, X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', TIMESTAMP WITH TIME ZONE '2023-05-10 16:35:42.166773+06', 389, 2, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(64662, X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', TIMESTAMP WITH TIME ZONE '2023-05-10 16:35:42.208119+06', 348, 2, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(64663, X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', TIMESTAMP WITH TIME ZONE '2023-05-10 16:35:42.1671+06', 388, 2, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(64664, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.373819+06', 1347, 0, FALSE, 'public-dashboard', 'Cursor has been closed', 1, 30, 2, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64665, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.396297+06', 1590, 0, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64666, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.699414+06', 1300, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64667, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.294857+06', 1690, 0, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64668, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.72621+06', 1273, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64669, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.796592+06', 1204, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64670, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.367018+06', 1693, 0, TRUE, 'public-dashboard', 'Closed', 1, 9, 2, NULL, 3, NULL), +(64671, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.343729+06', 1807, 0, FALSE, 'public-dashboard', 'Closed', 1, 16, 2, NULL, 3, NULL), +(64672, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.428135+06', 1988, 0, TRUE, 'public-dashboard', 'Closed', 1, 13, 2, NULL, 3, NULL), +(64673, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.737791+06', 1684, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64674, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.396297+06', 1618, 0, TRUE, 'public-dashboard', 'Closed', 1, 1, 2, NULL, 3, NULL), +(64675, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.367018+06', 1685, 0, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64676, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.710719+06', 1388, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64677, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.794959+06', 1312, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64678, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.343729+06', 1715, 0, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64679, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.428135+06', 1954, 0, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64680, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:23.294857+06', 1740, 0, TRUE, 'public-dashboard', 'Closed', 1, 31, 2, NULL, 3, NULL), +(64681, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.750904+06', 328, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64682, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.771221+06', 563, 3, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64683, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.765718+06', 170, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64684, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.666918+06', 276, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64685, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.820961+06', 272, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 31, 2, NULL, 3, NULL), +(64686, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.751788+06', 372, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 30, 2, NULL, 3, NULL), +(64687, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.720254+06', 494, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64688, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.720254+06', 537, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(64689, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.878905+06', 424, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(64690, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.218777+06', 414, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64691, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.218777+06', 420, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(64692, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.315352+06', 378, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64693, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.263806+06', 613, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64694, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.445587+06', 421, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64695, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.497262+06', 483, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64696, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.497022+06', 564, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64697, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.500511+06', 601, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 3, NULL), +(64698, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.568092+06', 604, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64699, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:01.01874+06', 398, 3, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64700, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:01.293431+06', 277, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64701, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.283201+06', 133, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64702, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.271178+06', 155, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64703, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.389969+06', 187, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64704, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.398509+06', 179, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64705, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.28652+06', 344, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64706, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.362622+06', 334, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64707, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.605957+06', 126, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64708, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.656631+06', 139, 4, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64709, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.676362+06', 80, 1, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64710, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.715035+06', 108, 1, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64711, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.715035+06', 111, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 12, 4, NULL, 3, NULL), +(64712, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.844895+06', 52, 1, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(64713, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.863786+06', 69, 1, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(64714, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.003553+06', 159, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64715, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:20.975832+06', 202, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64716, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.035189+06', 159, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64717, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.050754+06', 164, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64718, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.017143+06', 374, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64719, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.017143+06', 375, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(64720, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.017143+06', 419, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(64721, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.455672+06', 133, 2, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64722, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.435203+06', 233, 0, FALSE, 'public-dashboard', 'Error reducing result rows: null', 1, 14, 2, NULL, 3, NULL), +(64723, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.420089+06', 261, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64724, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.448834+06', 250, 3, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64725, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.412723+06', 287, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64726, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.41604+06', 371, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64727, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.412723+06', 310, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 28, 2, NULL, 3, NULL), +(64728, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.437941+06', 371, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64729, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.491182+06', 494, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64730, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.851706+06', 201, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64731, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.810836+06', 297, 3, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64732, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.708465+06', 120, 1, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64733, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.708465+06', 122, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 20, 3, NULL, 3, NULL), +(64734, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.681077+06', 153, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 27, 3, NULL, 3, NULL), +(64735, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.681077+06', 147, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64736, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.818789+06', 116, 1, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64737, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.823817+06', 181, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64738, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-11 12:14:43.835889+06', 490, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(64739, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-11 12:14:43.835149+06', 486, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(64740, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.633969+06', 90, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64741, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.650013+06', 147, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64742, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.658487+06', 145, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64743, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.693022+06', 206, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64744, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.670091+06', 304, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64745, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.965349+06', 86, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64746, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.709049+06', 375, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64747, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.830588+06', 253, 3, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64748, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.272885+06', 598, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64749, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.271885+06', 592, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64750, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.271885+06', 592, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64751, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.271941+06', 592, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64752, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.272189+06', 665, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64753, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.272194+06', 675, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64754, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:57.001171+06', 59, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64755, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:57.005714+06', 168, 3, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64756, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:43.402271+06', 663, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64757, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:43.403656+06', 652, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64758, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:43.42217+06', 751, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64759, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:43.393913+06', 800, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64760, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:43.449953+06', 871, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64761, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:43.426518+06', 916, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64762, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.423423+06', 163, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64763, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.438653+06', 189, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64764, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:05.422605+06', 54, 0, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64765, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.589098+06', 94, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64766, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.596975+06', 95, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64767, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.557313+06', 126, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64768, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.546358+06', 155, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64769, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.847944+06', 112, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64770, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.843705+06', 116, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64771, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.65735+06', 315, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64772, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.621469+06', 372, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64773, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.348168+06', 88, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64774, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.357114+06', 147, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64775, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.360265+06', 152, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64776, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.423084+06', 170, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64777, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.62058+06', 84, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64778, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.570449+06', 161, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64779, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.404321+06', 342, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64780, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.472471+06', 314, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64781, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.774207+06', 158, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64782, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.873464+06', 93, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64783, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.909978+06', 103, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64784, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.863289+06', 162, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64785, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.119157+06', 69, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64786, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.856163+06', 332, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64787, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.899203+06', 319, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64788, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.135908+06', 210, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64789, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.232439+06', 67, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64790, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.185143+06', 127, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64791, X'3029597d34e076982158655d204d0486a930f585b5f6a4c62f8cdccf0421eaeb', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.218387+06', 172, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64792, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.284539+06', 160, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64793, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.235736+06', 270, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64794, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.418148+06', 130, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64795, X'600c3a2639695851ea1cc1cbb28aec30cd425a551080ca3e7911b683bdd8112a', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.23626+06', 316, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64796, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.426593+06', 142, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64797, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.659034+06', 111, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64798, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.684995+06', 169, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64799, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.783095+06', 156, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64800, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.673297+06', 257, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64801, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.696573+06', 301, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64802, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.84683+06', 200, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64803, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:01.016828+06', 72, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64804, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.844138+06', 338, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64805, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.123245+06', 120, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64806, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.140043+06', 118, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64807, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.169757+06', 146, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64808, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.142192+06', 198, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64809, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.139708+06', 273, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64810, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.147669+06', 270, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64811, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.346491+06', 108, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64812, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.372363+06', 96, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64813, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.636601+06', 107, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64814, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.65236+06', 101, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64815, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.675461+06', 115, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64816, X'44b93f92fc6ca116a7ab7fcc326eabd8e084c4bfb6d3e40caf9f181e3ab3ed02', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.672521+06', 162, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64817, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.853248+06', 57, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64818, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.645867+06', 282, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64819, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.866203+06', 68, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64820, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.718656+06', 272, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64821, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.275657+06', 73, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64822, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.287712+06', 68, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64823, X'44b93f92fc6ca116a7ab7fcc326eabd8e084c4bfb6d3e40caf9f181e3ab3ed02', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.237618+06', 117, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64824, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.26904+06', 84, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64825, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.429236+06', 95, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64826, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.429236+06', 99, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64827, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.276311+06', 280, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64828, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.301911+06', 304, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64829, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.705676+06', 43, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64830, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.683045+06', 94, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64831, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.744197+06', 127, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64832, X'44b93f92fc6ca116a7ab7fcc326eabd8e084c4bfb6d3e40caf9f181e3ab3ed02', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.715856+06', 167, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64833, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.809753+06', 154, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64834, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.913724+06', 72, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64835, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.721863+06', 280, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64836, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.729197+06', 285, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64837, X'd5d74257d7908a2e47826390281e78e8ddb73e86ae6518b4799da9dda267a729', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.226981+06', 72, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64838, X'783d0d8ba0f80f1c2eb8c8e9b8334ef2dc5c8aa9582d3f74310d663695c488d9', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.222634+06', 109, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64839, X'1da209bff316af82f1da2e2d20a3d2f91835b627915dd873510233460f73969d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.224669+06', 112, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64840, X'c67c970705c0c9ee96d9435e672017d5ea92d9991538b2d81170a6ef3f8bd3d6', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.248363+06', 123, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64841, X'76aa95082772db36c8d723879df19c513d40af0fd7f930d418d05f823b1f4fb5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.367455+06', 69, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64842, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.39896+06', 69, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64843, X'67a72e4a544972713252d95af318aca31263d85fe92e4be8283e6a8b96794ba7', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.272868+06', 238, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64844, X'c384bd80da65dae69324344056efdbd9603731641ac113b877a2a80adfc55ace', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.261602+06', 262, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64845, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.206508+06', 47, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64846, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.211705+06', 49, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64847, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.18154+06', 135, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64848, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.210431+06', 121, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64849, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.335191+06', 55, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64850, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.332758+06', 85, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64851, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.213188+06', 229, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64852, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.229874+06', 272, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64853, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.758494+06', 76, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64854, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.724412+06', 110, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64855, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.778767+06', 77, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64856, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.777106+06', 124, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64857, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.940139+06', 63, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64858, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.945108+06', 90, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64859, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.733314+06', 311, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64860, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.784194+06', 283, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64861, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:02.965726+06', 90, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64862, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.007405+06', 89, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64863, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:02.97148+06', 135, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64864, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:02.995473+06', 193, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64865, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.132064+06', 93, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64866, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:02.966462+06', 271, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64867, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.184919+06', 66, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64868, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.03697+06', 275, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64869, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:36.91575+06', 101, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64870, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:36.920623+06', 160, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64871, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:36.929814+06', 151, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64872, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:36.970002+06', 98, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64873, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:36.947111+06', 305, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64874, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:36.951765+06', 306, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64875, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.133288+06', 153, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64876, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.121211+06', 178, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64877, X'40aed0afba6d45ca9d5395f3667f3d12ffcb4c01cdc2868b0c91a7018903b9bd', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.788922+06', 101, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64878, X'0b26d14ac2a612c1498dfc0d4dc9174abba8032c7a221b58e46864fe2c29fb0c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.799367+06', 182, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64879, X'55e2fa9072dc2d1c354c4c133354d0f5139ce3c58b0eb6b5a437ae4ec6d93bb2', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.816898+06', 183, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64880, X'9d84d9621cef21cb6b034d94ba48b1f7049c2a18e81a00e9560bad1e486c6c28', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.793528+06', 263, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64881, X'74ad707a9d9c965372ba8a4dccc6c308f129356bfedc420471fa12cce1530fcd', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.796536+06', 295, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64882, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:57.073413+06', 67, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64883, X'6511ea93c54bf1e86beea971dce3c9116d4d0fb93ac1472c73882f7b059f88e5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.998901+06', 154, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64884, X'7a576bd0719fd94d15f0c3116edc59e7b4f7c473052bffd7da168ce67a5efc92', TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.817257+06', 358, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64885, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:46:26.66975+06', 41, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(64886, X'3ab9c505858608dff7c45797c0f5960cf16b85850433f5204600429721ccd1ba', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.342887+06', 99, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64887, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.344187+06', 91, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64888, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.376704+06', 83, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64889, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.358129+06', 146, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64890, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.489111+06', 56, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64891, X'914851f8c20fe1faf276a8cc3348d43a075132dc79f9ec511a17a68e916c6030', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.487811+06', 78, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64892, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.354753+06', 269, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64893, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.373853+06', 296, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64894, X'40aed0afba6d45ca9d5395f3667f3d12ffcb4c01cdc2868b0c91a7018903b9bd', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:38.972547+06', 62, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64895, X'0b26d14ac2a612c1498dfc0d4dc9174abba8032c7a221b58e46864fe2c29fb0c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:38.989217+06', 85, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64896, X'55e2fa9072dc2d1c354c4c133354d0f5139ce3c58b0eb6b5a437ae4ec6d93bb2', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.010844+06', 85, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64897, X'9d84d9621cef21cb6b034d94ba48b1f7049c2a18e81a00e9560bad1e486c6c28', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.014736+06', 109, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64898, X'6511ea93c54bf1e86beea971dce3c9116d4d0fb93ac1472c73882f7b059f88e5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.087089+06', 91, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64899, X'9a55e11330436e606da76c18ad144271604f8fa6e386e2700e702a7144196be1', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.133922+06', 82, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64900, X'74ad707a9d9c965372ba8a4dccc6c308f129356bfedc420471fa12cce1530fcd', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:38.968944+06', 285, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64901, X'7a576bd0719fd94d15f0c3116edc59e7b4f7c473052bffd7da168ce67a5efc92', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.005439+06', 266, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64902, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.858663+06', 99, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64903, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.862219+06', 98, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64904, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.872128+06', 121, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64905, X'44b93f92fc6ca116a7ab7fcc326eabd8e084c4bfb6d3e40caf9f181e3ab3ed02', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.862891+06', 144, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64906, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.872128+06', 260, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64907, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.884645+06', 253, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64908, X'f31170f5df18ff2f2ea2a12fde09b28f60ef27d8f5785100552c3e4bb42e014e', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:44.080323+06', 72, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64909, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:44.07108+06', 99, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64910, X'0b26d14ac2a612c1498dfc0d4dc9174abba8032c7a221b58e46864fe2c29fb0c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.865702+06', 69, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64911, X'40aed0afba6d45ca9d5395f3667f3d12ffcb4c01cdc2868b0c91a7018903b9bd', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.869914+06', 70, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64912, X'55e2fa9072dc2d1c354c4c133354d0f5139ce3c58b0eb6b5a437ae4ec6d93bb2', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.86999+06', 76, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64913, X'9d84d9621cef21cb6b034d94ba48b1f7049c2a18e81a00e9560bad1e486c6c28', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.870433+06', 96, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64914, X'6511ea93c54bf1e86beea971dce3c9116d4d0fb93ac1472c73882f7b059f88e5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.991397+06', 68, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64915, X'9a55e11330436e606da76c18ad144271604f8fa6e386e2700e702a7144196be1', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:48.006047+06', 80, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64916, X'7a576bd0719fd94d15f0c3116edc59e7b4f7c473052bffd7da168ce67a5efc92', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.860183+06', 290, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64917, X'74ad707a9d9c965372ba8a4dccc6c308f129356bfedc420471fa12cce1530fcd', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.870571+06', 284, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64918, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.487948+06', 50, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64919, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.483351+06', 67, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64920, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.493094+06', 63, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64921, X'44b93f92fc6ca116a7ab7fcc326eabd8e084c4bfb6d3e40caf9f181e3ab3ed02', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.461454+06', 128, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64922, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.617647+06', 61, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64923, X'f31170f5df18ff2f2ea2a12fde09b28f60ef27d8f5785100552c3e4bb42e014e', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.589817+06', 95, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64924, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.478743+06', 267, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64925, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.491446+06', 282, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64926, X'37aacb7658fc2beb5bcd8c1885815bbe1710625645c3058dd13444079c126879', TIMESTAMP WITH TIME ZONE '2023-05-22 12:50:16.203671+06', 44, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64927, X'ce21b77e635b58f0de9f991640e85a666387d2883c4e2803d40e1ed869e81b9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:09.443488+06', 40, 1, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(64928, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.12206+06', 114, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64929, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.182159+06', 85, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64930, X'b3417c1268012b75f0b321e6967eea2005b84830fe4333e1e82e3bf428deb187', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.165211+06', 154, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64931, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.182159+06', 155, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64932, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.139473+06', 288, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64933, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.354556+06', 99, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64934, X'aa33ad7c6938cbc2547be6f43c9f1e13a261446e438241a9dd41eec38934315c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.374769+06', 87, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64935, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.175104+06', 305, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64936, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.255987+06', 31, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64937, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.254749+06', 68, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64938, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.239128+06', 120, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64939, X'b3417c1268012b75f0b321e6967eea2005b84830fe4333e1e82e3bf428deb187', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.2494+06', 124, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64940, X'aa33ad7c6938cbc2547be6f43c9f1e13a261446e438241a9dd41eec38934315c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.36011+06', 88, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64941, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.376502+06', 92, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64942, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.265792+06', 264, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64943, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.266216+06', 290, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64944, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.273954+06', 58, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64945, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.306822+06', 35, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64946, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.327145+06', 76, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64947, X'b3417c1268012b75f0b321e6967eea2005b84830fe4333e1e82e3bf428deb187', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.303964+06', 122, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64948, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.370682+06', 85, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64949, X'aa33ad7c6938cbc2547be6f43c9f1e13a261446e438241a9dd41eec38934315c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.476623+06', 50, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64950, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.325156+06', 248, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64951, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.317817+06', 258, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64952, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:59.216936+06', 34, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64953, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.662469+06', 27, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64954, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.66799+06', 58, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64955, X'b3417c1268012b75f0b321e6967eea2005b84830fe4333e1e82e3bf428deb187', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.657344+06', 81, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64956, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.655719+06', 83, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64957, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.739495+06', 76, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64958, X'aa33ad7c6938cbc2547be6f43c9f1e13a261446e438241a9dd41eec38934315c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.811763+06', 59, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64959, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.691176+06', 235, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64960, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.672129+06', 253, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64961, X'ce21b77e635b58f0de9f991640e85a666387d2883c4e2803d40e1ed869e81b9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:17.790133+06', 45, 1, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(64962, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.256848+06', 61, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64963, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.266722+06', 85, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64964, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.290867+06', 81, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64965, X'b3417c1268012b75f0b321e6967eea2005b84830fe4333e1e82e3bf428deb187', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.279964+06', 135, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64966, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.374158+06', 83, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64967, X'aa33ad7c6938cbc2547be6f43c9f1e13a261446e438241a9dd41eec38934315c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.448019+06', 64, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64968, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.290867+06', 238, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64969, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.279688+06', 259, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64970, X'ce21b77e635b58f0de9f991640e85a666387d2883c4e2803d40e1ed869e81b9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:35.359787+06', 33, 1, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(64971, X'b527f876a8547341cfc6d4d8a36512f9d06b5935f283c4f4f62981633ca3c2e5', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:43.074624+06', 31, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64972, X'ce21b77e635b58f0de9f991640e85a666387d2883c4e2803d40e1ed869e81b9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:50.910611+06', 34, 1, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(64973, X'abf62986f68cf8a6c5e5e4ad93c8d0657b25e9be00b3192f8f7b657d1e00057a', TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:54.389602+06', 37, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64974, X'ce21b77e635b58f0de9f991640e85a666387d2883c4e2803d40e1ed869e81b9d', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:01.452738+06', 49, 1, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64975, X'ef8effdc27c934d219f33474337bb8e23a1eacbff686bcde1e45a766b7c25d1f', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:17.654698+06', 31, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(64976, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.926078+06', 41, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64977, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.905985+06', 64, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64978, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.938525+06', 80, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64979, X'5c30ba4ab6c0ba577c500c2873409001378756040ebe855b58b65abdc6e63e15', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.914251+06', 128, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64980, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.05954+06', 39, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64981, X'aa33ad7c6938cbc2547be6f43c9f1e13a261446e438241a9dd41eec38934315c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.05833+06', 56, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64982, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.907003+06', 246, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64983, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.919374+06', 271, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64984, X'2ebc4930b7d860dc762b4a9b73ffd805f07cb4b80c82ec9ee763d4ea215a5aca', TIMESTAMP WITH TIME ZONE '2023-05-22 12:56:16.118547+06', 32, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(64985, X'7ff7a89e43dd713fe6f4180dbd90f0f32c1f56bb54233662127996459ffbd35e', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:12.152193+06', 35, 1, FALSE, 'question', NULL, 1, 28, NULL, NULL, 3, FALSE), +(64986, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.848671+06', 39, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64987, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.850316+06', 86, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64988, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.868303+06', 123, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(64989, X'5c30ba4ab6c0ba577c500c2873409001378756040ebe855b58b65abdc6e63e15', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.875674+06', 120, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64990, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.974873+06', 92, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64991, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:22.009707+06', 86, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(64992, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.859264+06', 287, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(64993, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.903933+06', 268, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(64994, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.169014+06', 58, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(64995, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.18581+06', 45, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(64996, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.157038+06', 86, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(64997, X'5c30ba4ab6c0ba577c500c2873409001378756040ebe855b58b65abdc6e63e15', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.17814+06', 81, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(64998, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.266103+06', 80, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(64999, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.286654+06', 115, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65000, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.167435+06', 242, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65001, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.16405+06', 260, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65002, X'abf62986f68cf8a6c5e5e4ad93c8d0657b25e9be00b3192f8f7b657d1e00057a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:02:02.22209+06', 30, 2, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65003, X'd56892081c91daa201aaeaacdc323bb988945fd3641e75c363ac3366329c12c6', TIMESTAMP WITH TIME ZONE '2023-05-22 13:02:21.587396+06', 22, 2, FALSE, 'question', NULL, 1, 30, NULL, NULL, 3, FALSE), +(65004, X'3512d1489d1536cc713d12e2fdcf9267d54eb265300a9f11f35b481c0c3762f1', TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:12.901048+06', 27, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65005, X'10a25fbb85442d03647dd99be01e2de6e51f6c06a54d9fe446dc048f9ad93389', TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:12.903325+06', 60, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65006, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:29.699548+06', 47, 2, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65007, X'03d4d6b2dd6bd6e5d2a5062c230c8b8607b63717c7b4bb30d3f9e12965cae2bd', TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:29.713696+06', 78, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65008, X'6a6a194535b6023ecb18578ec70bee36d6e3ecbf788cdc935924b2a81330c1ae', TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:55.440862+06', 41, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65009, X'f5f0143d903018d63d72fc727fbf699281e3097aee1c54a8368a2ac66c7d1e2e', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:36.603385+06', 38, 1, FALSE, 'question', NULL, 1, 27, NULL, NULL, 3, FALSE), +(65010, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.928802+06', 51, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65011, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.942053+06', 46, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65012, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.967404+06', 49, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65013, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.950517+06', 150, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65014, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.03708+06', 71, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65015, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.047522+06', 82, 1, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65016, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.966266+06', 230, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65017, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.977536+06', 264, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65018, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:50.692211+06', 33, 2, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65019, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:50.664682+06', 79, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65020, X'6a82c118d84740abe6b39843e9cfd45b8e150ba993ca97d0220539588c897069', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:27.933873+06', 40, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65021, X'fe898d8d736d7c04a010178fe97d609d6306dd016aa62a0dfabf87df700280eb', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:27.93378+06', 55, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65022, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:37.070577+06', 34, 2, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65023, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:37.075789+06', 41, 2, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65024, X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:40.688814+06', 18, 0, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(65025, X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:40.685129+06', 26, 0, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(65026, X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:40.68558+06', 29, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(65027, X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:49.442577+06', 20, 0, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(65028, X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:49.433126+06', 27, 0, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(65029, X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:49.448122+06', 25, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(65030, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-22 13:12:00.756406+06', 29, 2, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65031, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:12:00.756406+06', 31, 2, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65032, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.290781+06', 18, 2, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65033, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.290781+06', 18, 2, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65034, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.338482+06', 48, 2, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65035, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.347472+06', 51, 2, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65036, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.548897+06', 21, 2, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65037, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.551584+06', 21, 2, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65038, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.604245+06', 26, 2, TRUE, 'public-dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65039, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.607198+06', 31, 2, TRUE, 'public-dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65040, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.616003+06', 43, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65041, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.623274+06', 56, 2, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65042, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.615748+06', 116, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65043, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.610933+06', 136, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65044, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.703483+06', 110, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65045, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.773752+06', 71, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65046, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.721645+06', 125, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65047, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.65385+06', 295, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65048, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.65385+06', 308, 0, TRUE, 'public-dashboard', 'Broken pipe', 1, 13, 2, NULL, 3, NULL), +(65049, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.838446+06', 129, 2, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65050, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.642328+06', 320, 0, TRUE, 'public-dashboard', 'Error reducing result rows: null', 1, 9, 2, NULL, 3, NULL), +(65051, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.870176+06', 150, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65052, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.928326+06', 125, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65053, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.952748+06', 144, 2, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65054, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.930883+06', 166, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65055, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.992285+06', 300, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65056, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:37.045138+06', 283, 4, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65057, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.189129+06', 61, 2, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65058, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.173466+06', 59, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65059, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.202838+06', 37, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65060, X'd061b18d0b4e31848cfb4f8b12c6472794e841419612ef41aa1386006b7a2d3a', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.165452+06', 85, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65061, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.287034+06', 62, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65062, X'bc82d678cd17656c8e2dab9019a3bd7c9eb70943a927bbfa50e7317d67a2ab0c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.28873+06', 87, 1, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65063, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.196235+06', 216, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65064, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.214884+06', 217, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65065, X'0b26d14ac2a612c1498dfc0d4dc9174abba8032c7a221b58e46864fe2c29fb0c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.766336+06', 32, 1, FALSE, 'public-dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65066, X'40aed0afba6d45ca9d5395f3667f3d12ffcb4c01cdc2868b0c91a7018903b9bd', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.769374+06', 46, 2, TRUE, 'public-dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65067, X'55e2fa9072dc2d1c354c4c133354d0f5139ce3c58b0eb6b5a437ae4ec6d93bb2', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.777647+06', 56, 1, TRUE, 'public-dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65068, X'ae34f4fae2b6d5d3be9e752649eb8068e1b8cb4250c587466134e35205134cdd', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.787583+06', 64, 1, FALSE, 'public-dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65069, X'6511ea93c54bf1e86beea971dce3c9116d4d0fb93ac1472c73882f7b059f88e5', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.851128+06', 57, 1, FALSE, 'public-dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65070, X'04cce612d60b8e3dce270de8f39af5c7277f0fc9e36f68362b874d891b93b6c1', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.865018+06', 58, 0, FALSE, 'public-dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65071, X'7a576bd0719fd94d15f0c3116edc59e7b4f7c473052bffd7da168ce67a5efc92', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.782828+06', 209, 1, TRUE, 'public-dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65072, X'74ad707a9d9c965372ba8a4dccc6c308f129356bfedc420471fa12cce1530fcd', TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.782828+06', 219, 1, TRUE, 'public-dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65073, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-05-22 13:16:39.637926+06', 33, 2, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65074, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-05-22 13:16:39.638303+06', 54, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65075, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:31.784268+06', 390, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65076, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:31.784466+06', 375, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65077, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:31.801169+06', 519, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65078, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:31.782715+06', 551, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65079, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:31.782715+06', 548, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65080, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:31.801323+06', 563, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65081, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.348679+06', 105, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65082, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.357114+06', 101, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65083, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.862141+06', 93, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65084, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.86013+06', 127, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65085, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.906811+06', 105, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65086, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.907455+06', 114, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65087, X'24175af507c6bc7f30247c4da42f93383e4123570064dc34bbd7b2752101c938', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.881726+06', 290, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65088, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.074549+06', 108, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65089, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.882563+06', 328, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65090, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.085659+06', 129, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65091, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.216488+06', 66, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65092, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.26145+06', 97, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65093, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.272248+06', 126, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65094, X'd061b18d0b4e31848cfb4f8b12c6472794e841419612ef41aa1386006b7a2d3a', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.261178+06', 183, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65095, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.261243+06', 318, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65096, X'cfeb554534c6d0541427858487a6fd2a020848042de0c1abab8cafde1fbf4c17', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.26319+06', 347, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65097, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.355075+06', 315, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65098, X'bc82d678cd17656c8e2dab9019a3bd7c9eb70943a927bbfa50e7317d67a2ab0c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.545471+06', 162, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65099, X'fcc07898f9ea165b9da75dc9d42ed6cbc17ea466542acaa5e19cd216cb190d57', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.139327+06', 86, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65100, X'ad837d57c185b4468f5cddc20d73b20457e75b533762224afdba6673d1196bd0', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.146992+06', 83, 3, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65101, X'5a60bdeb60d2fd04b474f26ec34458ca11fa1f54bfcc1df4c88f694ff2a4d4aa', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.170016+06', 113, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65102, X'73eac1d1cb252b113a314e120558be3700c4e6a53dd44877c4285a5391e012de', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.170016+06', 116, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65103, X'a0938cd75802a0ce92b05377ca9c76a07d8fbcee46a76b8ab2571e0b2d71ecdc', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.335233+06', 104, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65104, X'794e2c28d1bf093a0ebb0ed0473c2491cd5ccbe8fecddef18f1fa2e2f5b15f25', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.348299+06', 109, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65105, X'753a61b2e883abb8e1728e0a89ec31e2c0421e5051860030520acf54d0f37514', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.180397+06', 300, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65106, X'ffe837f37276baf0292a43fafceeaf10a327d4c976c0c8cc1a55efa0a820a078', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.157792+06', 361, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65107, X'c81450a589e2eb856cb585164bdc97d7dedce7512c0e7eeab48408e348d87a9c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:58.386186+06', 203, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65108, X'31fec452ab2af6d9813e3431604a2c0a9f3d8ba003d11b859fe765fd55974150', TIMESTAMP WITH TIME ZONE '2023-05-31 18:19:35.656842+06', 19, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''}''.', 1, NULL, NULL, NULL, 3, NULL), +(65109, X'6d7875a5e38350f314a670667ebda6c5baa95f6ae9e6af512074efdddc310b63', TIMESTAMP WITH TIME ZONE '2023-05-31 18:21:21.904479+06', 128, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65110, X'8cb3bf4e7793967844259e79f8d691b8ad8b7746fc29c2003e32fa9bca1a66a7', TIMESTAMP WITH TIME ZONE '2023-05-31 18:22:13.360696+06', 109, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65111, X'17ff7465f2ca290bb62aeb6a62161df9eb5176d3b9f507851610640940b95d02', TIMESTAMP WITH TIME ZONE '2023-05-31 18:22:46.610125+06', 116, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65112, X'c665cb580934607eb858c5fa0c7796067d5ddb44bed4610ffe48674fb89aef39', TIMESTAMP WITH TIME ZONE '2023-05-31 18:23:24.645822+06', 133, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65113, X'0a645741f83aac335dadbc443fbfcd83b1bdabce3d86decbe7b2e009388719ee', TIMESTAMP WITH TIME ZONE '2023-05-31 18:23:28.830775+06', 145, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65114, X'119f07b850c9eed31bcdcd5ee5c4dbb178e46bee75b11034db0caa352886eef4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:23:38.654254+06', 113, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65115, X'56963b880f5c161a42d4e4f452277ad9c7710301d219a3792fed224037b5e8a2', TIMESTAMP WITH TIME ZONE '2023-05-31 18:25:14.007158+06', 175, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65116, X'd4d07659a1256d176536ec7512779f118d99e60ccd92fd36861102f9c6a3f221', TIMESTAMP WITH TIME ZONE '2023-05-31 18:25:26.404619+06', 121, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65117, X'17ff7465f2ca290bb62aeb6a62161df9eb5176d3b9f507851610640940b95d02', TIMESTAMP WITH TIME ZONE '2023-05-31 18:25:40.588444+06', 126, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65118, X'316bcd5fad2f273dee9e0f7fed47d998e2ef7bbbfe8c99bea8745268f6549426', TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:23.749292+06', 148, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65119, X'316bcd5fad2f273dee9e0f7fed47d998e2ef7bbbfe8c99bea8745268f6549426', TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:26.545187+06', 145, 0, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65120, X'82faaaaa2f096ebd0c2e6e462f50e7f9b4cf9a6a80d68402b2b953503fb705f8', TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:35.673696+06', 18, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 3, NULL), +(65121, X'a1ae7bfb1f327c880ce4e6c2f33e8bf1e3d9824a41392e1904dc68b99ab1e6f4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:36.120499+06', 8, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 3, NULL), +(65122, X'a1ae7bfb1f327c880ce4e6c2f33e8bf1e3d9824a41392e1904dc68b99ab1e6f4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:36.365631+06', 6, 0, TRUE, 'ad-hoc', 'JSON reader was expecting a value but found ''(''.', 1, NULL, NULL, NULL, 3, NULL), +(65123, X'c78259a58aca4e331cfdd1207bdfd29a2c65483d157d72ada4e945f484d28bbc', TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:42.145039+06', 116, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65124, X'a860068c592ea9ba0d3f500454e304721d681e09becd05a0f1e16e60b36c8d2b', TIMESTAMP WITH TIME ZONE '2023-05-31 18:28:11.072428+06', 139, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65125, X'a808ecbc432450b23d4eb51f47fd3b1af582548ea26476b0502721b7e3b03e52', TIMESTAMP WITH TIME ZONE '2023-05-31 18:28:42.399695+06', 145, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65126, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.353547+06', 33, 1, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65127, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.422809+06', 64, 1, TRUE, 'public-dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65128, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.354595+06', 151, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65129, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.354595+06', 153, 0, FALSE, 'public-dashboard', 'Broken pipe', 1, 27, 3, NULL, 3, NULL), +(65130, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.536577+06', 89, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65131, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.722714+06', 68, 1, FALSE, 'public-dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65132, X'a808ecbc432450b23d4eb51f47fd3b1af582548ea26476b0502721b7e3b03e52', TIMESTAMP WITH TIME ZONE '2023-05-31 18:32:15.608728+06', 181, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65133, X'a808ecbc432450b23d4eb51f47fd3b1af582548ea26476b0502721b7e3b03e52', TIMESTAMP WITH TIME ZONE '2023-05-31 18:33:15.047862+06', 157, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65134, X'bdb54d037c309c8fd3be189cfc6d8d971dd9ff8cccf00ddfabfa2eb66aac25a4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:35:03.635187+06', 153, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65135, X'6593f67e120cad051c9464e39f03c77c0cedfbb5e3d4eb20bfb2131bfb028790', TIMESTAMP WITH TIME ZONE '2023-05-31 18:35:59.633669+06', 140, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65136, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.450201+06', 121, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65137, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.456361+06', 124, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65138, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.488487+06', 107, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65139, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.51406+06', 123, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65140, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.672924+06', 60, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65141, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.656979+06', 94, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65142, X'90774042c19b5ffde142f39b84adde00d3fce41d3b779bb4dc99c70765f13478', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.517764+06', 259, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65143, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.500362+06', 320, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65144, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.075832+06', 91, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65145, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.081408+06', 107, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65146, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.108439+06', 173, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65147, X'd061b18d0b4e31848cfb4f8b12c6472794e841419612ef41aa1386006b7a2d3a', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.097063+06', 198, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65148, X'87c9881c229a74bb00c25f9b97cc30601df7439285b4f170adc3e4a503a55c4e', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.0932+06', 246, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65149, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.237217+06', 105, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65150, X'bc82d678cd17656c8e2dab9019a3bd7c9eb70943a927bbfa50e7317d67a2ab0c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.245411+06', 136, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65151, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.111876+06', 332, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65152, X'38b0c03215b3ff7ade10004321e78618bfbab33170f8893f7013ac76d40e17de', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.510609+06', 123, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65153, X'147ec9eb21cf8a8885fe3a6aedd21da298ac7c3d92e148b86ab36b50d6e64889', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.524285+06', 111, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65154, X'4ddf828d1d3e6855f0d648c64010f9f35ba4ec6ce67d1acff6a4b8245953a7ca', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.543018+06', 91, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65155, X'068fefc52e0518963fe619459f4c9cbeb0a6b4af96fef83a31d195196f1bd16c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.568831+06', 103, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65156, X'35b3cc917e840c25fb13c0598f6f5a8182de12d8e04e1289eefd103292a16d07', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.705536+06', 94, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65157, X'0cd357d2f0fa87370d76fdac0129a012b4b4e3e67c8461024a8b96e7f2102d8c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.562689+06', 268, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65158, X'c0d82bc5e8344ca7a5b031caf110dbac0b725e969b6fa32dd445549bc3da04ff', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.716328+06', 120, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65159, X'a8e7fac7b107d868687e7ca40d60b068d242ad6d10e3742179f3b0e015f6967c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.552199+06', 323, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65160, X'8d93d5ba49668e7c1837bf40cb29b602081e5ab8e195ad73323d6e89184cac3e', TIMESTAMP WITH TIME ZONE '2023-05-31 18:56:07.52928+06', 11, 0, TRUE, 'question', 'JSON reader was expecting a value but found ''(''.', 1, 13, NULL, NULL, 3, NULL), +(65161, X'c78259a58aca4e331cfdd1207bdfd29a2c65483d157d72ada4e945f484d28bbc', TIMESTAMP WITH TIME ZONE '2023-05-31 18:56:23.262273+06', 108, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65162, X'b29e36a715ac849dec466623440c65750502488f5f999a352db1fd9d5827490d', TIMESTAMP WITH TIME ZONE '2023-05-31 18:56:52.691999+06', 149, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65163, X'beafa2f33385ecda84c267cae8a0971269cffe98466cd1eaa0adb2b8b41c26f7', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:09.285484+06', 145, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65164, X'068fefc52e0518963fe619459f4c9cbeb0a6b4af96fef83a31d195196f1bd16c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.146149+06', 71, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65165, X'38b0c03215b3ff7ade10004321e78618bfbab33170f8893f7013ac76d40e17de', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.136483+06', 90, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65166, X'4ddf828d1d3e6855f0d648c64010f9f35ba4ec6ce67d1acff6a4b8245953a7ca', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.137019+06', 89, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65167, X'147ec9eb21cf8a8885fe3a6aedd21da298ac7c3d92e148b86ab36b50d6e64889', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.124038+06', 120, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65168, X'35b3cc917e840c25fb13c0598f6f5a8182de12d8e04e1289eefd103292a16d07', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.313212+06', 77, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65169, X'c0d82bc5e8344ca7a5b031caf110dbac0b725e969b6fa32dd445549bc3da04ff', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.31361+06', 92, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65170, X'0cd357d2f0fa87370d76fdac0129a012b4b4e3e67c8461024a8b96e7f2102d8c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.196171+06', 260, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65171, X'a8e7fac7b107d868687e7ca40d60b068d242ad6d10e3742179f3b0e015f6967c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.163801+06', 323, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65172, X'6593f67e120cad051c9464e39f03c77c0cedfbb5e3d4eb20bfb2131bfb028790', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:34.341429+06', 128, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65173, X'bfcabc9e33602776120243e08c2f9430dd3da3c05bac112b974398eb1295ee68', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:50.521139+06', 167, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65174, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.37561+06', 84, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65175, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.320538+06', 138, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65176, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.326941+06', 132, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65177, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.323297+06', 131, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65178, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.511133+06', 78, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65179, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.519439+06', 92, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65180, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.327962+06', 292, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65181, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.351201+06', 299, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65182, X'52b64db98be0ce301056f501e334390b526993f11f2ee1509bfa1c3bb9ee0eac', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.411379+06', 91, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65183, X'ed6e934a2e8ad10a3a46f856140625eafa42cf1a16f690899d3f46b8972be9eb', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.405183+06', 106, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65184, X'ba609a5e0e793c138ced0ddd2c32d51fd04e87937df6707e02eda02d0e343390', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.412372+06', 149, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65185, X'8fe1db5145862808fce1c27deae38d48f779da365437fbe9ac3a2f243ed6bf0a', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.480239+06', 82, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65186, X'2b00158128cdf9e4bfa756025a66dadc6f9edc23576ecd07ba953e6c70a669ec', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.563089+06', 82, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65187, X'f80d56ef587fda8b77890a983af2330ea7e17ee4f527f84e2f0bb237ef289896', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.586063+06', 85, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65188, X'ca2de21462fd01b9aba4db7f56719d70347971950bd8fd6f9085cd88d71717cb', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.455991+06', 275, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65189, X'81c561571b7e44ff9a95b3856c69c8731b838fb991460311bad8ab7cca354530', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.47089+06', 273, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65190, X'38b0c03215b3ff7ade10004321e78618bfbab33170f8893f7013ac76d40e17de', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.450862+06', 56, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65191, X'068fefc52e0518963fe619459f4c9cbeb0a6b4af96fef83a31d195196f1bd16c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.459119+06', 111, 4, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65192, X'4ddf828d1d3e6855f0d648c64010f9f35ba4ec6ce67d1acff6a4b8245953a7ca', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.474032+06', 106, 2, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65193, X'147ec9eb21cf8a8885fe3a6aedd21da298ac7c3d92e148b86ab36b50d6e64889', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.459128+06', 137, 2, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65194, X'35b3cc917e840c25fb13c0598f6f5a8182de12d8e04e1289eefd103292a16d07', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.5479+06', 127, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65195, X'a8e7fac7b107d868687e7ca40d60b068d242ad6d10e3742179f3b0e015f6967c', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.464939+06', 288, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65196, X'c0d82bc5e8344ca7a5b031caf110dbac0b725e969b6fa32dd445549bc3da04ff', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.650016+06', 123, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65197, X'e18d3423b8e2a709c52d8eafa2cea1e6fb0679c9addc4d15a010ae0149561483', TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.467182+06', 316, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65198, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:57.910257+06', 371, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65199, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:57.910951+06', 371, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65200, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:57.910316+06', 371, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65201, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:57.910226+06', 371, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65202, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:57.910701+06', 427, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65203, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:57.910517+06', 429, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65204, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.370479+06', 74, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65205, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.389418+06', 87, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65206, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:04.181154+06', 28, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65207, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:04.180733+06', 68, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65208, X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:09.436465+06', 28, 0, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(65209, X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:09.436465+06', 33, 0, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(65210, X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:09.436743+06', 35, 0, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(65211, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:11.763315+06', 27, 0, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65212, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:11.762974+06', 28, 0, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65213, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.295121+06', 38, 0, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65214, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.280915+06', 70, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65215, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.279521+06', 83, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65216, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.282744+06', 73, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65217, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.311608+06', 42, 0, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65218, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.308404+06', 95, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65219, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.393422+06', 56, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65220, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.410333+06', 72, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65221, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:21.933755+06', 157, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65222, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:21.936424+06', 156, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65223, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:21.961431+06', 152, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65224, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.002359+06', 106, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65225, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:21.953832+06', 270, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65226, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:21.984051+06', 268, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65227, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.237474+06', 91, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65228, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.15726+06', 233, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65229, X'8d7b60bb6711d7b61f2e2de6e6f3550fc491e66035a2b15cacc4f9d557d4dfee', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.137301+06', 66, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65230, X'6f30ca17f3a5fb03f901a8b00eb1097f37eb20d6df54082b19a22eeb907ee997', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.100052+06', 99, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65231, X'e6870f065f6ce97a28fb29413b236890552b58ce0da43b44e11366d75d68b43f', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.106724+06', 101, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65232, X'd061b18d0b4e31848cfb4f8b12c6472794e841419612ef41aa1386006b7a2d3a', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.107725+06', 152, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65233, X'1455f77023e34811e569e5716e8a4e1ca7b07a6f161a638a7100fd76100beec4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.118698+06', 229, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65234, X'ab16a06859d42c174ff109bd02d867c71ce3364eee1506dea425287aa46ac4cc', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.279336+06', 94, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65235, X'bc82d678cd17656c8e2dab9019a3bd7c9eb70943a927bbfa50e7317d67a2ab0c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.281552+06', 92, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65236, X'44c163452c4e76250ee8b7ceb9cf5d16d8ddc8a9921610baf9a14091be77c8d5', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.102055+06', 274, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65237, X'40aed0afba6d45ca9d5395f3667f3d12ffcb4c01cdc2868b0c91a7018903b9bd', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.632902+06', 65, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65238, X'55e2fa9072dc2d1c354c4c133354d0f5139ce3c58b0eb6b5a437ae4ec6d93bb2', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.619013+06', 107, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65239, X'0b26d14ac2a612c1498dfc0d4dc9174abba8032c7a221b58e46864fe2c29fb0c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.636844+06', 137, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65240, X'1984ee2d10e1f753c7ff722004515410fff2ae849897536c9d837bc0651854c0', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.619536+06', 203, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65241, X'ae34f4fae2b6d5d3be9e752649eb8068e1b8cb4250c587466134e35205134cdd', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.652494+06', 219, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65242, X'6511ea93c54bf1e86beea971dce3c9116d4d0fb93ac1472c73882f7b059f88e5', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.813458+06', 79, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65243, X'04cce612d60b8e3dce270de8f39af5c7277f0fc9e36f68362b874d891b93b6c1', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.823316+06', 102, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65244, X'74ad707a9d9c965372ba8a4dccc6c308f129356bfedc420471fa12cce1530fcd', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.662511+06', 277, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65245, X'd5d74257d7908a2e47826390281e78e8ddb73e86ae6518b4799da9dda267a729', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.538346+06', 50, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65246, X'c67c970705c0c9ee96d9435e672017d5ea92d9991538b2d81170a6ef3f8bd3d6', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.525469+06', 71, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65247, X'783d0d8ba0f80f1c2eb8c8e9b8334ef2dc5c8aa9582d3f74310d663695c488d9', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.532177+06', 101, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65248, X'2db863edb0da2b1035e862d8432ea7b1d31f2ea5e94803aac677c6b0fc44f48b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.540305+06', 112, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65249, X'76aa95082772db36c8d723879df19c513d40af0fd7f930d418d05f823b1f4fb5', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.659704+06', 102, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65250, X'5e6012e2838efaaebca17f41403367a66999629b8785aae97d6730ac0e9ec84f', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.534731+06', 241, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65251, X'b887b8c1444cdea1dc13f0194119a2ee8f1f154eac78a5be0d11b76ca2375cd1', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.6653+06', 123, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65252, X'67a72e4a544972713252d95af318aca31263d85fe92e4be8283e6a8b96794ba7', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.536761+06', 269, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65253, X'664749f345d53ce9696e84150f518fe7ca9958641ace8c960771c68f4c2d8920', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.71446+06', 66, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65254, X'9e28bdb0bfa3894c8c504fa6b0aba7e7fbcd3f0729e1fb232659c158b8cd1560', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.724299+06', 71, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65255, X'fee0eca8b9b0caa01fb419654e89a0a4deef30c21ddc4e6f4fcbd37ff88493a2', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.731648+06', 76, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65256, X'0306c058f798577a9c89a1cf0fc923f96075c2378a4791a5a883f308b0bfdc5e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.721013+06', 107, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65257, X'01d4534376758594e834ab0a4479b156a68258a40f4ee807c3712d72c45ff706', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.872664+06', 74, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65258, X'2abfac2f10016f7f402cab84dba60f9275b38af82cf9bd6042b8ab95839034be', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.724297+06', 241, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65259, X'2c3c20a1e04c569e227858e5a5414ae64506d0615477128bfaf6d75de58bbc24', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.876019+06', 113, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65260, X'20c3d0c50abc25d896ce1bca63fb761cdeed9d4761a3a7ef7180f343ed0f3652', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.713783+06', 292, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65261, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.340347+06', 35, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65262, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.354982+06', 58, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65263, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.359702+06', 76, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65264, X'37c47bbe3dfd1bbc3ee025bab55aeabad50d6487ee80525f2e78c984cbf216f8', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.354756+06', 104, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65265, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.431424+06', 66, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65266, X'f4454fec781b7de62d237b53dc46e8c946dc56cb868bebb4447295bc0e32905b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.482933+06', 81, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65267, X'58bd47fc3a8171f4a13ad03756442d870e5fc216ce03a9fe0e9292d869a9402f', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.387603+06', 252, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65268, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.366688+06', 295, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65269, X'b76e920cef70d4547aef4a561bb9f904a279ded02a141ae8a9cd543e865a7a8b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.328415+06', 36, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65270, X'745239a22a3a4876942b9b4d51468a3da9fe2ba1a5b6f8e7e43a5fb20d9b3006', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.330613+06', 73, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65271, X'd6fbbc107c1b3ef55dd2f646456dfdf5107bfad76b2bfff8848bf2791950fbe9', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.341508+06', 62, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65272, X'46a515014fe23653d4f77f858f11b6173e6a9a76cf35a1b96c9d778fc9394706', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.33595+06', 106, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65273, X'f6ef94db26f04fcace962ec529a56b7bdd5bf92aa30ddae4bb75e1edeb22ac48', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.462182+06', 48, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65274, X'1dec8cab3d6d70ed6aeb009903c30e7fbea496bb450e91d1419355aa8f232211', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.328395+06', 198, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65275, X'5894656f72e8cae27246383c345ea5a4f36232da74b419372d34a5475e2ee252', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.465403+06', 77, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65276, X'90c1c009355f5371d50e15992f69af5432fdf97b34210c62fed1d406db30fe6a', TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.356996+06', 238, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65277, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.899713+06', 38, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65278, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.891524+06', 46, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65279, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.899937+06', 60, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65280, X'37c47bbe3dfd1bbc3ee025bab55aeabad50d6487ee80525f2e78c984cbf216f8', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.914912+06', 108, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65281, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.991121+06', 61, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65282, X'f4454fec781b7de62d237b53dc46e8c946dc56cb868bebb4447295bc0e32905b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:02.004818+06', 91, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65283, X'58bd47fc3a8171f4a13ad03756442d870e5fc216ce03a9fe0e9292d869a9402f', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.913175+06', 224, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65284, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.904201+06', 246, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65285, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.401875+06', 51, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65286, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.418755+06', 43, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65287, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.408611+06', 93, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65288, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.423295+06', 181, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65289, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.408168+06', 214, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65290, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.523321+06', 101, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65291, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.4156+06', 258, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65292, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.576101+06', 98, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65293, X'ce4b7d28676d0a58a8179a349a993cc96038bf2a01cd322a585029063bffc828', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.757115+06', 26, 0, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65294, X'424aff3ac56087ba263375838f4b5fde3eb2d257236b728fc185dd10930b26c6', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.759123+06', 55, 0, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65295, X'6cd5c147c0c7e3bf697bb08de9ac06567a4cf6436b42b38d9b4a5f8aff9b0d9d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.766904+06', 80, 0, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65296, X'37c47bbe3dfd1bbc3ee025bab55aeabad50d6487ee80525f2e78c984cbf216f8', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.758324+06', 104, 0, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65297, X'25d3cf38cc5d77907839ab6fa3659abd6121e544a452f41276a525e8b41aa90d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.853017+06', 63, 0, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65298, X'f4454fec781b7de62d237b53dc46e8c946dc56cb868bebb4447295bc0e32905b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.885031+06', 79, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65299, X'58bd47fc3a8171f4a13ad03756442d870e5fc216ce03a9fe0e9292d869a9402f', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.768922+06', 211, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65300, X'3c3ce68fae9d59850dd3f842f3b75801d5bd2c4896d5150a3fc79a57556573b1', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.772309+06', 242, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65301, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.608481+06', 66, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65302, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.620533+06', 85, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65303, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.610663+06', 108, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65304, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.611876+06', 94, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65305, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.740007+06', 77, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65306, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.609892+06', 236, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65307, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.77566+06', 103, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65308, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.626133+06', 297, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65309, X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:02.658036+06', 136, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65310, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:09.06378+06', 102, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65311, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:14.725973+06', 93, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65312, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:53.985457+06', 99, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65313, X'95d090df69b593405fe9f34f365f445b0acf2cf5ac575c8705e0dc364bdaef6d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:01.794302+06', 101, 2, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65314, X'fbed3b8600429d604d0c495e3572e498f0b2dcca23c5a8037b3d3d5582e14265', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:05.503222+06', 111, 2, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65315, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:10.74405+06', 93, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65316, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.234727+06', 43, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65317, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.235718+06', 55, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65318, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.238637+06', 70, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65319, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.234577+06', 106, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65320, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.333574+06', 90, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65321, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.351104+06', 70, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65322, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.261604+06', 224, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65323, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.26351+06', 243, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65324, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.068653+06', 37, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65325, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.073722+06', 49, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65326, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.077673+06', 79, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65327, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.08809+06', 86, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65328, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.172515+06', 56, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65329, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.197262+06', 64, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65330, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.080268+06', 223, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65331, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.084386+06', 232, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65332, X'27527cfc06ec25ed07c1e450cb856754ebc036ac8adf76108f11295ddbe3ad74', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:16.687115+06', 108, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65333, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.133935+06', 51, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65334, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.128226+06', 66, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65335, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.147341+06', 140, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65336, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.135419+06', 175, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65337, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.243731+06', 94, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65338, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.251922+06', 108, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65339, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.14481+06', 272, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65340, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.137162+06', 315, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65341, X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:27.979361+06', 121, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65342, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:46:02.346986+06', 121, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65343, X'46d79f6699d41b5d9578a125706dadabd8dc22a9e082c9b69e76a3b9f6492e84', TIMESTAMP WITH TIME ZONE '2023-07-12 12:46:39.139191+06', 6, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 3, NULL), +(65344, X'38abe0438d1039b691683a616d3480970ed01bef286640ec74cb2c202b755e92', TIMESTAMP WITH TIME ZONE '2023-07-12 12:46:52.04978+06', 285, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65345, X'4ba4400f9c1d7089b2edc88dad744bcb7e5a487bb765dc33e4dc4c04e703676e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:46:57.851966+06', 92, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65346, X'4ba4400f9c1d7089b2edc88dad744bcb7e5a487bb765dc33e4dc4c04e703676e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:25.419856+06', 92, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65347, X'4ba4400f9c1d7089b2edc88dad744bcb7e5a487bb765dc33e4dc4c04e703676e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:26.154746+06', 90, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65348, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:28.930893+06', 94, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65349, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:32.650947+06', 98, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65350, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:43.226552+06', 102, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65351, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.532994+06', 57, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65352, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.522586+06', 81, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65353, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.547915+06', 57, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65354, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.521308+06', 118, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65355, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.640745+06', 73, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65356, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.662623+06', 77, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65357, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.548655+06', 221, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65358, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.553073+06', 238, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65359, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-07-12 12:48:06.207772+06', 36, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65360, X'cc427a7164dfbc63bab90c03b12b1df49ab3c88b38817d22bd8463cfb88400bd', TIMESTAMP WITH TIME ZONE '2023-07-12 12:48:41.443683+06', 177, 2000, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65361, X'9201d78f1e0fe7c3593d1c4c18198855909dff640838c3d681124af6269d065b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:07.31961+06', 75, 1, FALSE, 'question', NULL, 1, 32, NULL, NULL, 3, FALSE), +(65362, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:15.984535+06', 45, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65363, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:15.973683+06', 65, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65364, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:15.985971+06', 68, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65365, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:15.972228+06', 98, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65366, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.094572+06', 81, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65367, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.101831+06', 75, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65368, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:15.972231+06', 224, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65369, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:15.983629+06', 263, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65370, X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:53.99926+06', 136, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65371, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:59.355494+06', 88, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65372, X'1a5b02cb568e41737312ad7247d964e868b66cf7b67e1850f2d98c0e4a9edcd2', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:18.473231+06', 105, 2, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65373, X'ece965dc336a88bf54919c92e209d95901de6088ba01064a909ecdf6f588b34d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:23.661743+06', 94, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65374, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.300398+06', 62, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65375, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.303216+06', 64, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65376, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.30295+06', 65, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65377, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.322975+06', 93, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65378, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.433356+06', 62, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65379, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.443362+06', 88, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65380, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.305352+06', 222, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65381, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.308877+06', 248, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65382, X'fa1e48a8c6d337682f1d75e40b6f1945f86488108614a42f2f5b0013ed784e1d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:41.920478+06', 15, 0, TRUE, 'dashboard', NULL, 1, 2, 1, NULL, 3, FALSE), +(65383, X'49e37347db268db4b56d4ce08bc23151a0100f1bb12b188aba1c95f76deca8ee', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:41.919161+06', 23, 1, TRUE, 'dashboard', NULL, 1, 4, 1, NULL, 3, FALSE), +(65384, X'3beacc9cc4a9b5eb11ec1011c0606d5140cac94261d4259b77572aef29f41132', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:41.922248+06', 27, 1, TRUE, 'dashboard', NULL, 1, 1, 1, NULL, 3, FALSE), +(65385, X'5cf5fc5c3c3c843645c5e910f012cb742148b87c8ef87132147c495a6e119f2a', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:43.414898+06', 21, 1, TRUE, 'dashboard', NULL, 1, 12, 4, NULL, 3, FALSE), +(65386, X'84a26cba45697433b4d58e0272661e2fb56effec333d2c42018f8c67125f3b6e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:43.417461+06', 22, 1, TRUE, 'dashboard', NULL, 1, 33, 4, NULL, 3, FALSE), +(65387, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.132186+06', 41, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65388, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.12945+06', 47, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65389, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.150273+06', 45, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65390, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.13508+06', 84, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65391, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.219314+06', 53, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65392, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.237968+06', 70, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65393, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.141688+06', 189, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65394, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.139075+06', 215, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65395, X'9e4ce32f035239121d23a568a65075830adf83b5462b7946f2c866b9ff7ae75e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.42503+06', 32, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65396, X'800bbc714b8eb621ef5c22d26921775abb6a569d3aa07de6a984ca7e15272bca', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.42609+06', 50, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65397, X'e9d282e1c3912323a3360e1e91989c410a52a07d2cd3259a9012f83c834a352f', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.424966+06', 78, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65398, X'248c89985823afc9a4066270a09f52cd84b209b75e316a53b180d6d527d7de2a', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.438555+06', 134, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65399, X'0e46d660180117b6c90c5486db7dcb720b4ac61631fcf8ef2d16c470a57a83b4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.531842+06', 90, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65400, X'040b8b0b7734915c803ea16ca3e935cf3f0adee35d096da1e574154227d0174e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.43498+06', 212, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65401, X'59e2b0cfb72bcf3af8292d7e2ff16fbe7dc3cb1a052f383a56be101d51a6280b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.566308+06', 97, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65402, X'3b4033cc9dce988bab11e25a14f3953bc64c1151b8cb6b3fee441db9eafb5005', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.434193+06', 266, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65403, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.473811+06', 26, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65404, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.474217+06', 46, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65405, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.473016+06', 63, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65406, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.474871+06', 78, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65407, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.558969+06', 45, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65408, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.564134+06', 64, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65409, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.477613+06', 221, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65410, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.492174+06', 243, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65411, X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:26.408264+06', 104, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65412, X'ece965dc336a88bf54919c92e209d95901de6088ba01064a909ecdf6f588b34d', TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:43.179811+06', 94, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65413, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:56.39017+06', 106, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65414, X'9a1ebe764966b88055b4aefa3c05e94682b0c3d606a3237c7a614c699411c0f6', TIMESTAMP WITH TIME ZONE '2023-07-12 12:54:07.847435+06', 10, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65415, X'c851eb4229a8a2c74a859a4f1fff5e7c1a492dabe07fb9034966c662444f825e', TIMESTAMP WITH TIME ZONE '2023-07-12 12:54:25.097747+06', 4, 0, TRUE, 'ad-hoc', 'readStartArray can only be called when CurrentBSONType is ARRAY, not when CurrentBSONType is DOCUMENT.', 1, NULL, NULL, NULL, 3, NULL), +(65416, X'fa43ea061d045f1e81bbef4e53eb5704fb8163b5dd08c9adca52cd5c92c97a34', TIMESTAMP WITH TIME ZONE '2023-07-12 12:54:27.108326+06', 98, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65417, X'38abe0438d1039b691683a616d3480970ed01bef286640ec74cb2c202b755e92', TIMESTAMP WITH TIME ZONE '2023-07-12 13:09:20.106231+06', 197, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65418, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 13:10:00.37673+06', 145, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65419, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 13:13:58.049061+06', 105, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65420, X'874c27a295b079f959d4cc264061e342e361f167ce9195dc85fd88aca04b9a10', TIMESTAMP WITH TIME ZONE '2023-07-12 13:14:21.259384+06', 335, 2000, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65421, X'9212b940a1f882d37c9d23dc735c5a07334455878c50cd71521e18392792fb10', TIMESTAMP WITH TIME ZONE '2023-07-12 13:17:23.071878+06', 99, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65422, X'349b9ae2b6dbdeb3d9153a0bdc60a9de5c927f1a7d0e99ee8fd367b7faa3ada6', TIMESTAMP WITH TIME ZONE '2023-07-12 13:20:52.432785+06', 100, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65423, X'85063a9cc65075faeb32bdbab064562041408403bba1ec4832c3b471f1755844', TIMESTAMP WITH TIME ZONE '2023-07-12 13:21:15.655156+06', 98, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65424, X'8700604625e484d61af48d87d36eb4989ab0d4fe7ebe5e2bcca687ac5ee5d0e0', TIMESTAMP WITH TIME ZONE '2023-07-12 13:22:50.939055+06', 94, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65425, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 13:22:57.150966+06', 99, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65426, X'96aa25f3658fb6f3c67d998404aaf807f141c4583c47bddacbcf954f8ae687eb', TIMESTAMP WITH TIME ZONE '2023-07-12 13:23:11.5956+06', 92, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65427, X'0f8569c19d02f82f7f79106d4d02902ace084078ce4f8b2e34143de7ef21737c', TIMESTAMP WITH TIME ZONE '2023-07-12 13:23:18.819256+06', 143, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65428, X'19fe2b390b8518f56a3b98343c81eec782d4bf49b62363844168d085ef1d265f', TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:09.606289+06', 115, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65429, X'd950edc242b982caa43b562ca5032f05c858ff5175fe5af45ef17f537c6eb42a', TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:17.47719+06', 92, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65430, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:23.280203+06', 102, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65431, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:26.211264+06', 91, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65432, X'1aa7efa578a785d599e0b3bf48aa02c823a7a6693d5263d58e481555ee3ba40d', TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:32.36681+06', 110, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65433, X'1c985b4775f23ca3808697298c074f22368a4c34e2adafb0e7d3716fa134bae0', TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:39.216834+06', 130, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65434, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:43.064271+06', 139, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65435, X'bfcabc9e33602776120243e08c2f9430dd3da3c05bac112b974398eb1295ee68', TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:47.917139+06', 80, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65436, X'be9c8b07c5888b3360d1155db72e1ace0b87dc2da58c3605c1265e1cfe9140a2', TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:53.999247+06', 94, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65437, X'93e70d97516ff50844f725f0eb9d259c5695499561192344a2f864f6a6fec90b', TIMESTAMP WITH TIME ZONE '2023-07-12 13:39:00.630679+06', 93, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65438, X'bfc871d32f239311bc7b0df2546654253cb7092d2c4f581c1cf4bbe6ec8019f5', TIMESTAMP WITH TIME ZONE '2023-07-12 13:39:08.41715+06', 85, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65439, X'509b7c05f642788341988a14cca0b3ac828f1ec1c01380ad867779cbc4bc8677', TIMESTAMP WITH TIME ZONE '2023-07-12 13:39:24.848002+06', 99, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65440, X'27527cfc06ec25ed07c1e450cb856754ebc036ac8adf76108f11295ddbe3ad74', TIMESTAMP WITH TIME ZONE '2023-07-12 13:39:52.31649+06', 95, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65441, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.083882+06', 50, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65442, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.080124+06', 55, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65443, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.072755+06', 64, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65444, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.082019+06', 86, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65445, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.181902+06', 64, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65446, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.177904+06', 76, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65447, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.077674+06', 209, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65448, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.092598+06', 259, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65449, X'27527cfc06ec25ed07c1e450cb856754ebc036ac8adf76108f11295ddbe3ad74', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:50.023443+06', 84, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65450, X'bfcabc9e33602776120243e08c2f9430dd3da3c05bac112b974398eb1295ee68', TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:54.723546+06', 73, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65451, X'b1d6a6cd2d408bdacb568e54eb5a0111cb9ff99c030c6f00c54aa16555ef0478', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:06.012304+06', 93, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65452, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.73637+06', 29, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65453, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.737305+06', 43, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65454, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.729556+06', 63, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65455, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.729573+06', 72, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65456, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.820486+06', 43, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65457, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.831056+06', 57, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65458, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.731156+06', 201, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65459, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.733955+06', 242, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65460, X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:14.130412+06', 104, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65461, X'1aa7efa578a785d599e0b3bf48aa02c823a7a6693d5263d58e481555ee3ba40d', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:22.297478+06', 95, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65462, X'ee3b97d9d93bb0a42099860bfe4cd595448069eef4d44d55590e30a8488b7a28', TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:42.041909+06', 106, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65463, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-07-12 13:43:16.299632+06', 36, 1, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65464, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:18.473655+06', 133, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65465, X'8404f953e2323a9d0385b17273addab08a705e194747397ca2c3502fcd21ff1e', TIMESTAMP WITH TIME ZONE '2023-07-12 13:45:07.65309+06', 23, 0, TRUE, 'ad-hoc', 'Command failed with error 2 (BadValue): ''$or/$and/$nor entries need to be full objects'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "$or/$and/$nor entries need to be full objects", "code" : 2, "codeName" : "BadValue" }', 1, NULL, NULL, NULL, 3, NULL), +(65466, X'fb629e7bc3665baaf1a70af60fe4bb880d1e425a7ad5f607af64fbbd816e693a', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:12.07331+06', 312, 4, FALSE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65467, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.322397+06', 284, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65468, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.325273+06', 282, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65469, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.306866+06', 372, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65470, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.316377+06', 421, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65471, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.315299+06', 483, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65472, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.333839+06', 487, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65473, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.739035+06', 139, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65474, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.736762+06', 152, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65475, X'9b4ccdbab9ebb6eedd3b9923a281d85946e7fd80db456ddc730bbb38ccda33ac', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.323788+06', 75, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65476, X'49a6bdec10aae95a7ea82ac2b6e72c6a3e377926f809037b30756a13ab86bd13', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.374479+06', 66, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65477, X'147c1573c52a14b884d142183238c243659592d77bfba6a1744deaf34348c038', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.3604+06', 131, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65478, X'044ed690fa15bf8da7eb0dda348e1636da55a084343463f37dfcacffe6728413', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.326675+06', 230, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65479, X'fdf3befe21f604236b1517ba4c081d765f2af4e406d09b1b6e03ec452f16f435', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.380804+06', 180, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65480, X'9d1109255e821f8deb286212678941aa68903e5c043e42a6ad1f573b8ec1bb2c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.326436+06', 286, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65481, X'79abca3b18af9de24844cd7be7f392f89069be14a612a0537c369b0d00fc8fdd', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.546972+06', 126, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65482, X'840cb79802a1cf0f14f8eee52006d2f860528c527b26741af59c76987d268fd4', TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.563101+06', 146, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65483, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.807107+06', 108, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65484, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.797289+06', 125, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65485, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.788822+06', 127, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65486, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.840892+06', 118, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65487, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.788647+06', 280, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65488, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:37.006617+06', 93, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65489, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:37.015061+06', 84, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65490, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.833128+06', 324, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65491, X'147c1573c52a14b884d142183238c243659592d77bfba6a1744deaf34348c038', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:49.970075+06', 59, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65492, X'9b4ccdbab9ebb6eedd3b9923a281d85946e7fd80db456ddc730bbb38ccda33ac', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:49.971742+06', 61, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65493, X'49a6bdec10aae95a7ea82ac2b6e72c6a3e377926f809037b30756a13ab86bd13', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:49.972042+06', 61, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65494, X'fdf3befe21f604236b1517ba4c081d765f2af4e406d09b1b6e03ec452f16f435', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:49.966325+06', 101, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65495, X'79abca3b18af9de24844cd7be7f392f89069be14a612a0537c369b0d00fc8fdd', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.093987+06', 89, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65496, X'044ed690fa15bf8da7eb0dda348e1636da55a084343463f37dfcacffe6728413', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:49.983405+06', 212, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65497, X'840cb79802a1cf0f14f8eee52006d2f860528c527b26741af59c76987d268fd4', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.100181+06', 99, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65498, X'9d1109255e821f8deb286212678941aa68903e5c043e42a6ad1f573b8ec1bb2c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:49.999668+06', 251, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65499, X'ad5da3ccc13aed87607329d695dbe408c8ddef8a3635622618428f3e5e6b9021', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:55.936136+06', 61, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65500, X'63ca9afbe54e4880fda5b9de91ee503226a5d2055b221de737fcf463707334f4', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:55.932738+06', 87, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65501, X'7a9de7e1e1215065d349de3b40aa91d947e0bfc6b53f8dcff8264e2de9f20b5f', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:55.930618+06', 93, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65502, X'474f21e289a712baa773aa3d6524b050c7b9b1bdced13d7b544f3a11da75c1e0', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:55.933191+06', 127, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65503, X'bb44dbcab3a4497567294d16d1f524b37cd2fbaea3a9b0003be98c465f00277f', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.091663+06', 74, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65504, X'4a9f87448414674acbfda1d04c5f30b47547b9e1e826d5f49fca323b41b95e08', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:55.937831+06', 237, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65505, X'13eb3fc59ce57da3a13629722c78cd87bf7ed2db3b80a68e10e9745ae744ba12', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.098055+06', 113, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65506, X'54c6e6df8c131e54c47b7d319fa9c3ca1c0fadf0de11951babc9cfeab988f8c0', TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:55.959154+06', 276, 1, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65507, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.576446+06', 62, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65508, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.596525+06', 63, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65509, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.602709+06', 71, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65510, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.586633+06', 183, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65511, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.725408+06', 95, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65512, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.610614+06', 232, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65513, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.606228+06', 257, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65514, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.78605+06', 97, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65515, X'27527cfc06ec25ed07c1e450cb856754ebc036ac8adf76108f11295ddbe3ad74', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:21.005124+06', 119, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65516, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.90998+06', 58, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65517, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.91954+06', 49, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65518, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.915262+06', 68, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65519, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.932794+06', 112, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65520, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.909168+06', 243, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65521, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:23.03027+06', 121, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65522, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:23.022529+06', 137, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65523, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.924785+06', 283, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65524, X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:24.78186+06', 133, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65525, X'111fafb7726dc2c0989708438675665590c4cd4071bae329861a974b100d0c05', TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:10.513649+06', 89, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65526, X'907eab0ed3d0816e8aca8484663967ed2fa523894109923df60156be844956df', TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:14.72061+06', 95, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65527, X'111fafb7726dc2c0989708438675665590c4cd4071bae329861a974b100d0c05', TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:18.334441+06', 92, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65528, X'78ec9fc31769604ce1c81df33f9307946f582fd1cdc565b5b0ddff8a2e6c436c', TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:40.141385+06', 111, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65529, X'907eab0ed3d0816e8aca8484663967ed2fa523894109923df60156be844956df', TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:47.462402+06', 94, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65530, X'b4a0349cae6ad75d43fe7aeb2a3a23d459ddac9347ca6a001e0a95604387f070', TIMESTAMP WITH TIME ZONE '2023-07-12 14:59:42.030784+06', 32, 0, TRUE, 'ad-hoc', 'Command failed with error 40519 (Location40519): ''Invalid $addFields :: caused by :: $dateFromParts only supports an object as its argument'' on server localhost:27017. The full response is { "ok" : 0.0, "errmsg" : "Invalid $addFields :: caused by :: $dateFromParts only supports an object as its argument", "code" : 40519, "codeName" : "Location40519" }', 1, NULL, NULL, NULL, 3, NULL); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65531, X'234aaf8d68a39ba174d506fadf8908f009acab840eac26c8234d9fe8a7e336b9', TIMESTAMP WITH TIME ZONE '2023-07-12 15:00:02.981935+06', 98, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65532, X'09e7093f077e4cbad48c2a3ff96238d4db16ab3251c5e8983727dcc81433cf95', TIMESTAMP WITH TIME ZONE '2023-07-12 15:00:15.721955+06', 103, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65533, X'b48e196dabb325953a709c025fb032fadde0609b868a4118b2280e7bffe75ae2', TIMESTAMP WITH TIME ZONE '2023-07-12 15:50:53.272779+06', 94, 1, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65534, X'0197c708bfc73498b5edfc91db5a28286f5e5b7f65b102ddc23b6badbec952fc', TIMESTAMP WITH TIME ZONE '2023-07-12 15:51:02.865291+06', 95, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65535, X'e764bab63df05f52286aacf3aa5b384747cde710c1a315e6f19a4e2b4c7e376f', TIMESTAMP WITH TIME ZONE '2023-07-12 15:51:10.181243+06', 85, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65536, X'25643b362e244e21343d565359f8f6597d84240c81721153b2abde731e0fd84d', TIMESTAMP WITH TIME ZONE '2023-07-12 15:51:14.574088+06', 93, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65537, X'08f06fae904b59b5bb355f6cc75dc642ffbea1ccea4500276671ca4ec0841c82', TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:07.021497+06', 99, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65538, X'111fafb7726dc2c0989708438675665590c4cd4071bae329861a974b100d0c05', TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:12.062208+06', 88, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65539, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:22.782486+06', 117, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65540, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:32.189947+06', 100, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65541, X'bfcabc9e33602776120243e08c2f9430dd3da3c05bac112b974398eb1295ee68', TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:41.389241+06', 89, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65542, X'e39d3ccdae25507b433b0da43345856c45e1b0a384981b7ab9d0a911ffffdd61', TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:55.11136+06', 98, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65543, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:33.66646+06', 393, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65544, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:33.67252+06', 392, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65545, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:33.685165+06', 487, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65546, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:33.673337+06', 556, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65547, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.239111+06', 166, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65548, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:33.663893+06', 740, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65549, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:33.696047+06', 705, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65550, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.259371+06', 206, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65551, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:35.213074+06', 54, 1, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65552, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:35.210606+06', 139, 1, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE), +(65553, X'5570fdcaf4f945602bf1a2c22f4d676c680364e1cfc1a0ead2543d24e2287dc5', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:41.571918+06', 159, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65554, X'e34fa5442e24756b0e8942e983d1dac795465a0bb7ec8b53ac60a7aa50481215', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.088716+06', 125, 2, TRUE, 'dashboard', NULL, 1, 31, 2, NULL, 3, FALSE), +(65555, X'2a4df20c370296da0de8b63834426138a264b3cc10519f34eec279ed15413ee4', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.140802+06', 97, 1, TRUE, 'dashboard', NULL, 1, 1, 2, NULL, 3, FALSE), +(65556, X'fbd6c89a9fe0e81c254a02913038fe2d6ee01646a76acd5cac7158516ac26f37', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.109167+06', 147, 1, FALSE, 'dashboard', NULL, 1, 16, 2, NULL, 3, FALSE), +(65557, X'77a8e959bfe30bc6b26a1abae02e6534a80b71dfd23cc6cd83bcf0dc528e846b', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.147381+06', 214, 1, FALSE, 'dashboard', NULL, 1, 30, 2, NULL, 3, FALSE), +(65558, X'507e010e113f97d9bffca203327fbcb72849efd06ed6410a73bf98d8e0cce96c', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.133626+06', 279, 1, TRUE, 'dashboard', NULL, 1, 13, 2, NULL, 3, FALSE), +(65559, X'667346cf61ae97c7511988ca848d6f0dd4a1218554d33f0bcf688c3392a7596c', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.116872+06', 403, 4, TRUE, 'dashboard', NULL, 1, 9, 2, NULL, 3, FALSE), +(65560, X'3ddb346a3903aae638a68a133fa1d898d75d917bd0cede5b21aef2507d07d180', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.359607+06', 196, 0, FALSE, 'dashboard', NULL, 1, 28, 2, NULL, 3, FALSE), +(65561, X'5410ee4c469ba66304b9401be2c69fb8d6f51b4554415f34da06fdbda9158d65', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.366729+06', 199, 1, FALSE, 'dashboard', NULL, 1, 14, 2, NULL, 3, FALSE), +(65562, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:46.135408+06', 155, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65563, X'27527cfc06ec25ed07c1e450cb856754ebc036ac8adf76108f11295ddbe3ad74', TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:50.045812+06', 115, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65564, X'bfcabc9e33602776120243e08c2f9430dd3da3c05bac112b974398eb1295ee68', TIMESTAMP WITH TIME ZONE '2023-07-12 19:50:00.774837+06', 101, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65565, X'71f58982107a6a2f463ba7cc645453a805386cf1388b80c57167299147eb46ef', TIMESTAMP WITH TIME ZONE '2023-07-12 19:50:14.510033+06', 101, 4, TRUE, 'question', NULL, 1, 9, NULL, NULL, 3, FALSE), +(65566, X'e39d3ccdae25507b433b0da43345856c45e1b0a384981b7ab9d0a911ffffdd61', TIMESTAMP WITH TIME ZONE '2023-07-12 19:50:31.954182+06', 127, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65567, X'acf5e1ea0b4b290d62f1bb522be9f8d8e6ce1e8e812ed88aaba6fcae2fd37be7', TIMESTAMP WITH TIME ZONE '2023-07-12 19:50:39.451969+06', 121, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65568, X'2a479496b36e8ec0650ba320fedbaa1861052e90dc2b651b595254fe5707929c', TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:06.691224+06', 128, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65569, X'155a93684029b359d04495f642a838bb16317c658b59be05716027d73606c880', TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:14.823367+06', 91, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65570, X'111fafb7726dc2c0989708438675665590c4cd4071bae329861a974b100d0c05', TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:19.946545+06', 90, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE), +(65571, X'bfcabc9e33602776120243e08c2f9430dd3da3c05bac112b974398eb1295ee68', TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:26.708295+06', 85, 1, TRUE, 'question', NULL, 1, 13, NULL, NULL, 3, FALSE); +INSERT INTO PUBLIC.QUERY_EXECUTION(ID, HASH, STARTED_AT, RUNNING_TIME, RESULT_ROWS, NATIVE, CONTEXT, ERROR, EXECUTOR_ID, CARD_ID, DASHBOARD_ID, PULSE_ID, DATABASE_ID, CACHE_HIT) VALUES +(65572, X'2a479496b36e8ec0650ba320fedbaa1861052e90dc2b651b595254fe5707929c', TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:30.066643+06', 95, 4, TRUE, 'ad-hoc', NULL, 1, NULL, NULL, NULL, 3, FALSE), +(65573, X'bd74efa7bf7adecf69c7d376c5b45561f13b33a3d36d323c57d734a842c2e67c', TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:01.066556+06', 365, 0, TRUE, 'dashboard', NULL, 1, 20, 3, NULL, 3, FALSE), +(65574, X'df7e8f8543c87d30bd3ab38c70b8ae0d955956f25ef0b525bbf5f81e57ffefeb', TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:01.067687+06', 495, 0, FALSE, 'dashboard', NULL, 1, 27, 3, NULL, 3, FALSE); +CREATE INDEX PUBLIC.IDX_QUERY_EXECUTION_CARD_ID ON PUBLIC.QUERY_EXECUTION(CARD_ID); +CREATE INDEX PUBLIC.IDX_QUERY_EXECUTION_CARD_ID_STARTED_AT ON PUBLIC.QUERY_EXECUTION(CARD_ID, STARTED_AT); +CREATE INDEX PUBLIC.IDX_QUERY_EXECUTION_STARTED_AT ON PUBLIC.QUERY_EXECUTION(STARTED_AT); +CREATE INDEX PUBLIC.IDX_QUERY_EXECUTION_QUERY_HASH_STARTED_AT ON PUBLIC.QUERY_EXECUTION(HASH, STARTED_AT); +CREATE CACHED TABLE PUBLIC.VIEW_LOG( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_3060F49C_9F3D_4C7C_87B9_5C097CC99538) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_3060F49C_9F3D_4C7C_87B9_5C097CC99538 SELECTIVITY 100, + USER_ID INT SELECTIVITY 1, + MODEL VARCHAR(16) NOT NULL SELECTIVITY 1, + MODEL_ID INT NOT NULL SELECTIVITY 1, + TIMESTAMP TIMESTAMP WITH TIME ZONE NOT NULL SELECTIVITY 99, + METADATA CLOB COMMENT 'Serialized JSON corresponding to metadata for view.' +); +ALTER TABLE PUBLIC.VIEW_LOG ADD CONSTRAINT PUBLIC.PK_VIEW_LOG PRIMARY KEY(ID); +-- 59140 +/- SELECT COUNT(*) FROM PUBLIC.VIEW_LOG; +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 13:23:03.912+06', '{"cached":null,"ignore_cache":null}'), +(2, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 13:40:18.942+06', '{"cached":null,"ignore_cache":null}'), +(3, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:55:36.182+06', '{"cached":null,"ignore_cache":null}'), +(4, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:55:50.283+06', '{"cached":null,"ignore_cache":null}'), +(5, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:55:50.488+06', '{"cached":null,"ignore_cache":false}'), +(6, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:55:58.359+06', '{"cached":null,"ignore_cache":null}'), +(7, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:55:58.488+06', '{"cached":null,"ignore_cache":false}'), +(8, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 13:56:09.464+06', '{"cached":null,"ignore_cache":true}'), +(9, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:13:30.71+06', '{"cached":null,"ignore_cache":false}'), +(10, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:13:35.394+06', '{"cached":null,"ignore_cache":null}'), +(11, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:13:35.54+06', '{"cached":null,"ignore_cache":false}'), +(12, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:07.01+06', '{"cached":null,"ignore_cache":null}'), +(13, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:11.98+06', '{"cached":null,"ignore_cache":null}'), +(14, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:14.762+06', '{"cached":null,"ignore_cache":null}'), +(15, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:14.907+06', '{"cached":null,"ignore_cache":false}'), +(16, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:21.426+06', '{"cached":null,"ignore_cache":null}'), +(17, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:15:21.497+06', '{"cached":null,"ignore_cache":false}'), +(18, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:08.325+06', '{"cached":null,"ignore_cache":null}'), +(19, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:14.398+06', '{"cached":null,"ignore_cache":null}'), +(20, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:14.453+06', '{"cached":null,"ignore_cache":false}'), +(21, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:18.655+06', '{"cached":null,"ignore_cache":false}'), +(22, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:21.333+06', '{"cached":null,"ignore_cache":false}'), +(23, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:23.749+06', '{"cached":null,"ignore_cache":false}'), +(24, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:29.951+06', '{"cached":null,"ignore_cache":false}'), +(25, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:31.42+06', '{"cached":null,"ignore_cache":false}'), +(26, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:23:38.492+06', '{"cached":null,"ignore_cache":null}'), +(27, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:24:09.641+06', '{"cached":null,"ignore_cache":null}'), +(28, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:24:09.688+06', '{"cached":null,"ignore_cache":false}'), +(29, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:24:13.522+06', '{"cached":null,"ignore_cache":null}'), +(30, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:24:13.646+06', '{"cached":null,"ignore_cache":false}'), +(31, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:27:32.526+06', '{"cached":null,"ignore_cache":null}'), +(32, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:27:32.69+06', '{"cached":null,"ignore_cache":false}'), +(33, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:43.134+06', '{"cached":null,"ignore_cache":null}'), +(34, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:55:43.363+06', '{"cached":null,"ignore_cache":false}'), +(35, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:48.163+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:48.343+06', '{"cached":null,"ignore_cache":false}'), +(37, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 14:56:53.314+06', '{"cached":null,"ignore_cache":null}'), +(38, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:01.437+06', '{"cached":null,"ignore_cache":null}'), +(39, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:02.125+06', '{"cached":null,"ignore_cache":null}'), +(40, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:06.678+06', '{"cached":null,"ignore_cache":null}'), +(41, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:06.885+06', '{"cached":null,"ignore_cache":false}'), +(42, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:45.81+06', '{"cached":null,"ignore_cache":false}'), +(43, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:57:50.748+06', '{"cached":null,"ignore_cache":false}'), +(44, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:59:37.557+06', '{"cached":null,"ignore_cache":false}'), +(45, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:59:43.26+06', '{"cached":null,"ignore_cache":null}'), +(46, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 14:59:43.308+06', '{"cached":null,"ignore_cache":false}'), +(47, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:02:30.222+06', '{"cached":null,"ignore_cache":null}'), +(48, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:02:32.774+06', '{"cached":null,"ignore_cache":null}'), +(49, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:02:33.077+06', '{"cached":null,"ignore_cache":false}'), +(50, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:12:46.917+06', '{"cached":null,"ignore_cache":null}'), +(51, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:12:46.97+06', '{"cached":null,"ignore_cache":false}'), +(52, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:13:32.869+06', '{"cached":null,"ignore_cache":null}'), +(53, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:14:26.124+06', '{"cached":null,"ignore_cache":null}'), +(54, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:14:26.174+06', '{"cached":null,"ignore_cache":false}'), +(55, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:14:29.487+06', '{"cached":null,"ignore_cache":false}'), +(56, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:14:30.531+06', '{"cached":null,"ignore_cache":false}'), +(57, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:35:50.412+06', '{"cached":null,"ignore_cache":null}'), +(58, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:35:50.679+06', '{"cached":null,"ignore_cache":false}'), +(59, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:32.77+06', '{"cached":null,"ignore_cache":null}'), +(60, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:32.836+06', '{"cached":null,"ignore_cache":false}'), +(61, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:36.087+06', '{"cached":null,"ignore_cache":false}'), +(62, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:37.188+06', '{"cached":null,"ignore_cache":false}'), +(63, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:40.851+06', '{"cached":null,"ignore_cache":false}'), +(64, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:42.398+06', '{"cached":null,"ignore_cache":false}'), +(65, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:44.957+06', '{"cached":null,"ignore_cache":false}'), +(66, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:51.818+06', '{"cached":null,"ignore_cache":false}'), +(67, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:54.422+06', '{"cached":null,"ignore_cache":false}'), +(68, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:36:55.714+06', '{"cached":null,"ignore_cache":false}'), +(69, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:39:38.717+06', '{"cached":null,"ignore_cache":null}'), +(70, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:39:38.923+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(71, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:41:17.488+06', '{"cached":null,"ignore_cache":null}'), +(72, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:41:17.548+06', '{"cached":null,"ignore_cache":false}'), +(73, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:41:25.913+06', '{"cached":null,"ignore_cache":null}'), +(74, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:41:49.758+06', '{"cached":null,"ignore_cache":null}'), +(75, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:41:49.946+06', '{"cached":null,"ignore_cache":false}'), +(76, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:55:07.634+06', '{"cached":null,"ignore_cache":null}'), +(77, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 15:55:07.825+06', '{"cached":null,"ignore_cache":false}'), +(78, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:50.326+06', '{"cached":null,"ignore_cache":null}'), +(79, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 15:56:57.118+06', '{"cached":null,"ignore_cache":null}'), +(80, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 15:57:15.475+06', '{"cached":null,"ignore_cache":null}'), +(81, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 15:57:19.632+06', '{"cached":null,"ignore_cache":null}'), +(82, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 16:01:00.152+06', '{"cached":null,"ignore_cache":null}'), +(83, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:01:46.227+06', '{"cached":null,"ignore_cache":null}'), +(84, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:01:46.436+06', '{"cached":null,"ignore_cache":false}'), +(85, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:38.688+06', '{"cached":null,"ignore_cache":null}'), +(86, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:42.721+06', '{"cached":null,"ignore_cache":null}'), +(87, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:42.774+06', '{"cached":null,"ignore_cache":false}'), +(88, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:42.794+06', '{"cached":null,"ignore_cache":null}'), +(89, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:42.907+06', '{"cached":null,"ignore_cache":false}'), +(90, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:06:34.11+06', '{"cached":null,"ignore_cache":null}'), +(91, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:06:39.656+06', '{"cached":null,"ignore_cache":null}'), +(92, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:06:39.964+06', '{"cached":null,"ignore_cache":false}'), +(93, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:19.295+06', '{"cached":null,"ignore_cache":null}'), +(94, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:19.357+06', '{"cached":null,"ignore_cache":false}'), +(95, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:19.359+06', '{"cached":null,"ignore_cache":false}'), +(96, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:28.537+06', '{"cached":null,"ignore_cache":null}'), +(97, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:28.686+06', '{"cached":null,"ignore_cache":false}'), +(98, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:24.396+06', '{"cached":null,"ignore_cache":null}'), +(99, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.439+06', '{"cached":null,"ignore_cache":null}'), +(100, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.504+06', '{"cached":null,"ignore_cache":false}'), +(101, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.508+06', '{"cached":null,"ignore_cache":false}'), +(102, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.523+06', '{"cached":null,"ignore_cache":null}'), +(103, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:28.662+06', '{"cached":null,"ignore_cache":false}'), +(104, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:09:59.591+06', '{"cached":null,"ignore_cache":null}'), +(105, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:00.832+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(106, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:01.122+06', '{"cached":null,"ignore_cache":false}'), +(107, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:10.504+06', '{"cached":null,"ignore_cache":null}'), +(108, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:10.568+06', '{"cached":null,"ignore_cache":false}'), +(109, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:10.57+06', '{"cached":null,"ignore_cache":false}'), +(110, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:10.577+06', '{"cached":null,"ignore_cache":false}'), +(111, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:20.025+06', '{"cached":null,"ignore_cache":null}'), +(112, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:20.188+06', '{"cached":null,"ignore_cache":false}'), +(113, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:39.432+06', '{"cached":null,"ignore_cache":null}'), +(114, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:39.508+06', '{"cached":null,"ignore_cache":false}'), +(115, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:39.509+06', '{"cached":null,"ignore_cache":false}'), +(116, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:10:39.511+06', '{"cached":null,"ignore_cache":false}'), +(117, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:15:30.839+06', '{"cached":null,"ignore_cache":null}'), +(118, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:15:30.996+06', '{"cached":null,"ignore_cache":false}'), +(119, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:15:54.941+06', '{"cached":null,"ignore_cache":null}'), +(120, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:15:55.09+06', '{"cached":null,"ignore_cache":false}'), +(121, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:16:08.66+06', '{"cached":null,"ignore_cache":null}'), +(122, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:16:08.737+06', '{"cached":null,"ignore_cache":false}'), +(123, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:16:08.74+06', '{"cached":null,"ignore_cache":false}'), +(124, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:16:08.742+06', '{"cached":null,"ignore_cache":false}'), +(125, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:29.359+06', '{"cached":null,"ignore_cache":null}'), +(126, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:30.15+06', '{"cached":null,"ignore_cache":false}'), +(127, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:48.194+06', '{"cached":null,"ignore_cache":null}'), +(128, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:48.436+06', '{"cached":null,"ignore_cache":false}'), +(129, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:04.308+06', '{"cached":null,"ignore_cache":null}'), +(130, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:04.447+06', '{"cached":null,"ignore_cache":false}'), +(131, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:04.45+06', '{"cached":null,"ignore_cache":false}'), +(132, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:04.475+06', '{"cached":null,"ignore_cache":false}'), +(133, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:21.439+06', '{"cached":null,"ignore_cache":null}'), +(134, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:21.639+06', '{"cached":null,"ignore_cache":false}'), +(135, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:42.509+06', '{"cached":null,"ignore_cache":null}'), +(136, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:42.632+06', '{"cached":null,"ignore_cache":false}'), +(137, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:42.64+06', '{"cached":null,"ignore_cache":false}'), +(138, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:32:42.663+06', '{"cached":null,"ignore_cache":false}'), +(139, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:38:22.662+06', '{"cached":null,"ignore_cache":null}'), +(140, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:38:22.864+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(141, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:02.399+06', '{"cached":null,"ignore_cache":null}'), +(142, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:02.823+06', '{"cached":null,"ignore_cache":false}'), +(143, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:07.274+06', '{"cached":null,"ignore_cache":null}'), +(144, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 16:52:07.423+06', '{"cached":null,"ignore_cache":false}'), +(145, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:33.183+06', '{"cached":null,"ignore_cache":null}'), +(146, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:33.563+06', '{"cached":null,"ignore_cache":false}'), +(147, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:39.083+06', '{"cached":null,"ignore_cache":null}'), +(148, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 17:12:39.232+06', '{"cached":null,"ignore_cache":false}'), +(149, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:44:22.255+06', '{"cached":null,"ignore_cache":null}'), +(150, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 17:44:22.424+06', '{"cached":null,"ignore_cache":false}'), +(151, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:00.547+06', '{"cached":null,"ignore_cache":null}'), +(152, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:10.378+06', '{"cached":null,"ignore_cache":null}'), +(153, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:18.913+06', '{"cached":null,"ignore_cache":null}'), +(154, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:48.037+06', '{"cached":null,"ignore_cache":null}'), +(155, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:45:57.969+06', '{"cached":null,"ignore_cache":null}'), +(156, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:00.754+06', '{"cached":null,"ignore_cache":null}'), +(157, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:44.523+06', '{"cached":null,"ignore_cache":null}'), +(158, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:44.702+06', '{"cached":null,"ignore_cache":false}'), +(159, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:46.146+06', '{"cached":null,"ignore_cache":null}'), +(160, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:46:56.195+06', '{"cached":null,"ignore_cache":null}'), +(161, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:00.804+06', '{"cached":null,"ignore_cache":null}'), +(162, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:10.957+06', '{"cached":null,"ignore_cache":null}'), +(163, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:22.427+06', '{"cached":null,"ignore_cache":null}'), +(164, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:24.883+06', '{"cached":null,"ignore_cache":null}'), +(165, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:29.126+06', '{"cached":null,"ignore_cache":null}'), +(166, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 17:47:29.262+06', '{"cached":null,"ignore_cache":false}'), +(167, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 18:27:15.239+06', '{"cached":null,"ignore_cache":null}'), +(168, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 18:27:23.454+06', '{"cached":null,"ignore_cache":null}'), +(169, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-13 18:27:28.331+06', '{"cached":null,"ignore_cache":null}'), +(170, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:02:03.271+06', '{"cached":null,"ignore_cache":null}'), +(171, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:02:03.415+06', '{"cached":null,"ignore_cache":false}'), +(172, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:05.863+06', '{"cached":null,"ignore_cache":null}'), +(173, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.265+06', '{"cached":null,"ignore_cache":null}'), +(174, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.328+06', '{"cached":null,"ignore_cache":false}'), +(175, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.337+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(176, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.343+06', '{"cached":null,"ignore_cache":false}'), +(177, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.349+06', '{"cached":null,"ignore_cache":null}'), +(178, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:10.548+06', '{"cached":null,"ignore_cache":false}'), +(179, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:22.726+06', '{"cached":null,"ignore_cache":null}'), +(180, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:44.991+06', '{"cached":null,"ignore_cache":null}'), +(181, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.847+06', '{"cached":null,"ignore_cache":false}'), +(182, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.852+06', '{"cached":null,"ignore_cache":false}'), +(183, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.855+06', '{"cached":null,"ignore_cache":false}'), +(184, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:47.862+06', '{"cached":null,"ignore_cache":false}'), +(185, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.346+06', '{"cached":null,"ignore_cache":false}'), +(186, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.357+06', '{"cached":null,"ignore_cache":false}'), +(187, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.362+06', '{"cached":null,"ignore_cache":false}'), +(188, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:53.376+06', '{"cached":null,"ignore_cache":false}'), +(189, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.018+06', '{"cached":null,"ignore_cache":false}'), +(190, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.027+06', '{"cached":null,"ignore_cache":false}'), +(191, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.03+06', '{"cached":null,"ignore_cache":false}'), +(192, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:01.03+06', '{"cached":null,"ignore_cache":false}'), +(193, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.482+06', '{"cached":null,"ignore_cache":false}'), +(194, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.483+06', '{"cached":null,"ignore_cache":false}'), +(195, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.496+06', '{"cached":null,"ignore_cache":false}'), +(196, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:04.499+06', '{"cached":null,"ignore_cache":false}'), +(197, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:19.635+06', '{"cached":null,"ignore_cache":null}'), +(198, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.422+06', '{"cached":null,"ignore_cache":false}'), +(199, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.425+06', '{"cached":null,"ignore_cache":false}'), +(200, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.432+06', '{"cached":null,"ignore_cache":false}'), +(201, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:23.433+06', '{"cached":null,"ignore_cache":false}'), +(202, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.182+06', '{"cached":null,"ignore_cache":false}'), +(203, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.183+06', '{"cached":null,"ignore_cache":false}'), +(204, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.189+06', '{"cached":null,"ignore_cache":false}'), +(205, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:27.191+06', '{"cached":null,"ignore_cache":false}'), +(206, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.59+06', '{"cached":null,"ignore_cache":false}'), +(207, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.597+06', '{"cached":null,"ignore_cache":false}'), +(208, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.601+06', '{"cached":null,"ignore_cache":false}'), +(209, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:37.609+06', '{"cached":null,"ignore_cache":false}'), +(210, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.076+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(211, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.077+06', '{"cached":null,"ignore_cache":false}'), +(212, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.086+06', '{"cached":null,"ignore_cache":false}'), +(213, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:39.09+06', '{"cached":null,"ignore_cache":false}'), +(214, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:40.538+06', '{"cached":null,"ignore_cache":null}'), +(215, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:40.735+06', '{"cached":null,"ignore_cache":false}'), +(216, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.071+06', '{"cached":null,"ignore_cache":null}'), +(217, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.132+06', '{"cached":null,"ignore_cache":false}'), +(218, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.133+06', '{"cached":null,"ignore_cache":false}'), +(219, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.138+06', '{"cached":null,"ignore_cache":false}'), +(220, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:11.148+06', '{"cached":null,"ignore_cache":false}'), +(221, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:20.638+06', '{"cached":null,"ignore_cache":null}'), +(222, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:20.773+06', '{"cached":null,"ignore_cache":false}'), +(223, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.394+06', '{"cached":null,"ignore_cache":null}'), +(224, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.461+06', '{"cached":null,"ignore_cache":false}'), +(225, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.469+06', '{"cached":null,"ignore_cache":false}'), +(226, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.474+06', '{"cached":null,"ignore_cache":false}'), +(227, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:34.48+06', '{"cached":null,"ignore_cache":false}'), +(228, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:43.529+06', '{"cached":null,"ignore_cache":null}'), +(229, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:43.682+06', '{"cached":null,"ignore_cache":false}'), +(230, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:27.248+06', '{"cached":null,"ignore_cache":null}'), +(231, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:27.385+06', '{"cached":null,"ignore_cache":false}'), +(232, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.279+06', '{"cached":null,"ignore_cache":null}'), +(233, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.341+06', '{"cached":null,"ignore_cache":false}'), +(234, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.341+06', '{"cached":null,"ignore_cache":false}'), +(235, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.342+06', '{"cached":null,"ignore_cache":false}'), +(236, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:07:32.353+06', '{"cached":null,"ignore_cache":false}'), +(237, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:25:40.641+06', '{"cached":null,"ignore_cache":null}'), +(238, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:25:40.785+06', '{"cached":null,"ignore_cache":false}'), +(239, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.435+06', '{"cached":null,"ignore_cache":null}'), +(240, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.495+06', '{"cached":null,"ignore_cache":false}'), +(241, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.5+06', '{"cached":null,"ignore_cache":false}'), +(242, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.507+06', '{"cached":null,"ignore_cache":false}'), +(243, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:10.51+06', '{"cached":null,"ignore_cache":false}'), +(244, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.624+06', '{"cached":null,"ignore_cache":false}'), +(245, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.626+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(246, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.63+06', '{"cached":null,"ignore_cache":false}'), +(247, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:21.633+06', '{"cached":null,"ignore_cache":false}'), +(248, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.658+06', '{"cached":null,"ignore_cache":false}'), +(249, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.665+06', '{"cached":null,"ignore_cache":false}'), +(250, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.667+06', '{"cached":null,"ignore_cache":false}'), +(251, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:26:36.672+06', '{"cached":null,"ignore_cache":false}'), +(252, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:25.765+06', '{"cached":null,"ignore_cache":null}'), +(253, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:25.906+06', '{"cached":null,"ignore_cache":false}'), +(254, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:36.639+06', '{"cached":null,"ignore_cache":null}'), +(255, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:36.759+06', '{"cached":null,"ignore_cache":false}'), +(256, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:59.757+06', '{"cached":null,"ignore_cache":null}'), +(257, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:44:59.836+06', '{"cached":null,"ignore_cache":false}'), +(258, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:45:02.915+06', '{"cached":null,"ignore_cache":null}'), +(259, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:45:03.05+06', '{"cached":null,"ignore_cache":false}'), +(260, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:45:11.451+06', '{"cached":null,"ignore_cache":null}'), +(261, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:45:11.605+06', '{"cached":null,"ignore_cache":false}'), +(262, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.023+06', '{"cached":null,"ignore_cache":null}'), +(263, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.094+06', '{"cached":null,"ignore_cache":false}'), +(264, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.095+06', '{"cached":null,"ignore_cache":false}'), +(265, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.097+06', '{"cached":null,"ignore_cache":false}'), +(266, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:17.099+06', '{"cached":null,"ignore_cache":false}'), +(267, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.601+06', '{"cached":null,"ignore_cache":false}'), +(268, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.605+06', '{"cached":null,"ignore_cache":false}'), +(269, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.608+06', '{"cached":null,"ignore_cache":false}'), +(270, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:32.613+06', '{"cached":null,"ignore_cache":false}'), +(271, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.604+06', '{"cached":null,"ignore_cache":false}'), +(272, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.606+06', '{"cached":null,"ignore_cache":false}'), +(273, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.616+06', '{"cached":null,"ignore_cache":false}'), +(274, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:39.624+06', '{"cached":null,"ignore_cache":false}'), +(275, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.613+06', '{"cached":null,"ignore_cache":false}'), +(276, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.617+06', '{"cached":null,"ignore_cache":false}'), +(277, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.62+06', '{"cached":null,"ignore_cache":false}'), +(278, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:46:43.633+06', '{"cached":null,"ignore_cache":false}'), +(279, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.864+06', '{"cached":null,"ignore_cache":false}'), +(280, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.865+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(281, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.866+06', '{"cached":null,"ignore_cache":false}'), +(282, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:12.867+06', '{"cached":null,"ignore_cache":false}'), +(283, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:14.266+06', '{"cached":null,"ignore_cache":null}'), +(284, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:14.4+06', '{"cached":null,"ignore_cache":false}'), +(285, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:21.448+06', '{"cached":null,"ignore_cache":null}'), +(286, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:21.557+06', '{"cached":null,"ignore_cache":false}'), +(287, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.265+06', '{"cached":null,"ignore_cache":null}'), +(288, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.318+06', '{"cached":null,"ignore_cache":false}'), +(289, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.319+06', '{"cached":null,"ignore_cache":false}'), +(290, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.332+06', '{"cached":null,"ignore_cache":false}'), +(291, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:22.333+06', '{"cached":null,"ignore_cache":false}'), +(292, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:23.813+06', '{"cached":null,"ignore_cache":null}'), +(293, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:23.944+06', '{"cached":null,"ignore_cache":false}'), +(294, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.391+06', '{"cached":null,"ignore_cache":null}'), +(295, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.452+06', '{"cached":null,"ignore_cache":false}'), +(296, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.453+06', '{"cached":null,"ignore_cache":false}'), +(297, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.461+06', '{"cached":null,"ignore_cache":false}'), +(298, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:25.473+06', '{"cached":null,"ignore_cache":false}'), +(299, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:27.595+06', '{"cached":null,"ignore_cache":null}'), +(300, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:27.72+06', '{"cached":null,"ignore_cache":false}'), +(301, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:49.182+06', '{"cached":null,"ignore_cache":null}'), +(302, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:49.328+06', '{"cached":null,"ignore_cache":false}'), +(303, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.27+06', '{"cached":null,"ignore_cache":null}'), +(304, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.323+06', '{"cached":null,"ignore_cache":false}'), +(305, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.332+06', '{"cached":null,"ignore_cache":false}'), +(306, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.333+06', '{"cached":null,"ignore_cache":false}'), +(307, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:47:52.335+06', '{"cached":null,"ignore_cache":false}'), +(308, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:27.354+06', '{"cached":null,"ignore_cache":null}'), +(309, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:27.487+06', '{"cached":null,"ignore_cache":false}'), +(310, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:45.239+06', '{"cached":null,"ignore_cache":null}'), +(311, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.129+06', '{"cached":null,"ignore_cache":null}'), +(312, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.194+06', '{"cached":null,"ignore_cache":false}'), +(313, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.199+06', '{"cached":null,"ignore_cache":false}'), +(314, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.207+06', '{"cached":null,"ignore_cache":false}'), +(315, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:47.208+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(316, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:53.622+06', '{"cached":null,"ignore_cache":null}'), +(317, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:55:53.802+06', '{"cached":null,"ignore_cache":false}'), +(318, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:13.352+06', '{"cached":null,"ignore_cache":true}'), +(319, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.427+06', '{"cached":null,"ignore_cache":null}'), +(320, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.483+06', '{"cached":null,"ignore_cache":false}'), +(321, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.486+06', '{"cached":null,"ignore_cache":false}'), +(322, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.487+06', '{"cached":null,"ignore_cache":false}'), +(323, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:01.488+06', '{"cached":null,"ignore_cache":false}'), +(324, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:17.029+06', '{"cached":null,"ignore_cache":null}'), +(325, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:17.161+06', '{"cached":null,"ignore_cache":false}'), +(326, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.82+06', '{"cached":null,"ignore_cache":null}'), +(327, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.878+06', '{"cached":null,"ignore_cache":false}'), +(328, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.879+06', '{"cached":null,"ignore_cache":false}'), +(329, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.885+06', '{"cached":null,"ignore_cache":false}'), +(330, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:23.893+06', '{"cached":null,"ignore_cache":false}'), +(331, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:25.346+06', '{"cached":null,"ignore_cache":null}'), +(332, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:25.476+06', '{"cached":null,"ignore_cache":false}'), +(333, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.702+06', '{"cached":null,"ignore_cache":null}'), +(334, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.758+06', '{"cached":null,"ignore_cache":false}'), +(335, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.762+06', '{"cached":null,"ignore_cache":false}'), +(336, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.765+06', '{"cached":null,"ignore_cache":false}'), +(337, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:43.774+06', '{"cached":null,"ignore_cache":false}'), +(338, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:48.248+06', '{"cached":null,"ignore_cache":null}'), +(339, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:57:48.384+06', '{"cached":null,"ignore_cache":false}'), +(340, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.6+06', '{"cached":null,"ignore_cache":null}'), +(341, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.67+06', '{"cached":null,"ignore_cache":false}'), +(342, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.673+06', '{"cached":null,"ignore_cache":false}'), +(343, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.675+06', '{"cached":null,"ignore_cache":false}'), +(344, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:10.684+06', '{"cached":null,"ignore_cache":false}'), +(345, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:03.762+06', '{"cached":null,"ignore_cache":null}'), +(346, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:04.306+06', '{"cached":null,"ignore_cache":false}'), +(347, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:04.315+06', '{"cached":null,"ignore_cache":false}'), +(348, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:04.316+06', '{"cached":null,"ignore_cache":false}'), +(349, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:04.317+06', '{"cached":null,"ignore_cache":false}'), +(350, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:26:38.925+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(351, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:26:39.183+06', '{"cached":null,"ignore_cache":false}'), +(352, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:26:44.654+06', '{"cached":null,"ignore_cache":null}'), +(353, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:26:44.857+06', '{"cached":null,"ignore_cache":false}'), +(354, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:29:12.618+06', '{"cached":null,"ignore_cache":null}'), +(355, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:05.888+06', '{"cached":null,"ignore_cache":null}'), +(356, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:06.106+06', '{"cached":null,"ignore_cache":false}'), +(357, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:35.156+06', '{"cached":null,"ignore_cache":null}'), +(358, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:35.398+06', '{"cached":null,"ignore_cache":false}'), +(359, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:52.645+06', '{"cached":null,"ignore_cache":false}'), +(360, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:55.329+06', '{"cached":null,"ignore_cache":null}'), +(361, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:55.5+06', '{"cached":null,"ignore_cache":false}'), +(362, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:05.159+06', '{"cached":null,"ignore_cache":false}'), +(363, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:08.567+06', '{"cached":null,"ignore_cache":null}'), +(364, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:08.721+06', '{"cached":null,"ignore_cache":false}'), +(365, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:29.302+06', '{"cached":null,"ignore_cache":false}'), +(366, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:32.054+06', '{"cached":null,"ignore_cache":null}'), +(367, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:32.202+06', '{"cached":null,"ignore_cache":false}'), +(368, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:40.607+06', '{"cached":null,"ignore_cache":null}'), +(369, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:40.81+06', '{"cached":null,"ignore_cache":false}'), +(370, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:38:23.161+06', '{"cached":null,"ignore_cache":null}'), +(371, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:40:17.619+06', '{"cached":null,"ignore_cache":null}'), +(372, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:40:17.899+06', '{"cached":null,"ignore_cache":false}'), +(373, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:07.799+06', '{"cached":null,"ignore_cache":null}'), +(374, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:13.749+06', '{"cached":null,"ignore_cache":null}'), +(375, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:13.95+06', '{"cached":null,"ignore_cache":false}'), +(376, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:23.579+06', '{"cached":null,"ignore_cache":null}'), +(377, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:23.771+06', '{"cached":null,"ignore_cache":false}'), +(378, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:04.871+06', '{"cached":null,"ignore_cache":null}'), +(379, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.668+06', '{"cached":null,"ignore_cache":null}'), +(380, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.762+06', '{"cached":null,"ignore_cache":false}'), +(381, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.763+06', '{"cached":null,"ignore_cache":false}'), +(382, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.769+06', '{"cached":null,"ignore_cache":false}'), +(383, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:25.77+06', '{"cached":null,"ignore_cache":false}'), +(384, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:30.832+06', '{"cached":null,"ignore_cache":null}'), +(385, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:42.55+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(386, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:48:03.291+06', '{"cached":null,"ignore_cache":null}'), +(387, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:48:12.232+06', '{"cached":null,"ignore_cache":null}'), +(388, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:48:12.456+06', '{"cached":null,"ignore_cache":false}'), +(389, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:48:54.969+06', '{"cached":null,"ignore_cache":null}'), +(390, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:13.163+06', '{"cached":null,"ignore_cache":null}'), +(391, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:13.205+06', '{"cached":null,"ignore_cache":false}'), +(392, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:18.537+06', '{"cached":null,"ignore_cache":false}'), +(393, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:19.298+06', '{"cached":null,"ignore_cache":false}'), +(394, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:19.851+06', '{"cached":null,"ignore_cache":null}'), +(395, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:49:19.972+06', '{"cached":null,"ignore_cache":false}'), +(396, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.692+06', '{"cached":null,"ignore_cache":null}'), +(397, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.932+06', '{"cached":null,"ignore_cache":false}'), +(398, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.947+06', '{"cached":null,"ignore_cache":false}'), +(399, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.958+06', '{"cached":null,"ignore_cache":false}'), +(400, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:28.968+06', '{"cached":null,"ignore_cache":false}'), +(401, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.165+06', '{"cached":null,"ignore_cache":false}'), +(402, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.173+06', '{"cached":null,"ignore_cache":false}'), +(403, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.179+06', '{"cached":null,"ignore_cache":false}'), +(404, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:35.184+06', '{"cached":null,"ignore_cache":false}'), +(405, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.135+06', '{"cached":null,"ignore_cache":null}'), +(406, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.203+06', '{"cached":null,"ignore_cache":false}'), +(407, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.219+06', '{"cached":null,"ignore_cache":false}'), +(408, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.223+06', '{"cached":null,"ignore_cache":false}'), +(409, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:41.226+06', '{"cached":null,"ignore_cache":false}'), +(410, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.33+06', '{"cached":null,"ignore_cache":null}'), +(411, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.495+06', '{"cached":null,"ignore_cache":false}'), +(412, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.501+06', '{"cached":null,"ignore_cache":false}'), +(413, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.507+06', '{"cached":null,"ignore_cache":false}'), +(414, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.509+06', '{"cached":null,"ignore_cache":false}'), +(415, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.628+06', '{"cached":null,"ignore_cache":null}'), +(416, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.721+06', '{"cached":null,"ignore_cache":false}'), +(417, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.729+06', '{"cached":null,"ignore_cache":false}'), +(418, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.73+06', '{"cached":null,"ignore_cache":false}'), +(419, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:58.739+06', '{"cached":null,"ignore_cache":false}'), +(420, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.502+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(421, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.588+06', '{"cached":null,"ignore_cache":false}'), +(422, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.596+06', '{"cached":null,"ignore_cache":false}'), +(423, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.597+06', '{"cached":null,"ignore_cache":false}'), +(424, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:08.6+06', '{"cached":null,"ignore_cache":false}'), +(425, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.469+06', '{"cached":null,"ignore_cache":null}'), +(426, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.553+06', '{"cached":null,"ignore_cache":false}'), +(427, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.555+06', '{"cached":null,"ignore_cache":false}'), +(428, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.572+06', '{"cached":null,"ignore_cache":false}'), +(429, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:12.573+06', '{"cached":null,"ignore_cache":false}'), +(430, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:17.72+06', '{"cached":null,"ignore_cache":null}'), +(431, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:17.914+06', '{"cached":null,"ignore_cache":false}'), +(432, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:34.41+06', '{"cached":null,"ignore_cache":null}'), +(433, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:34.549+06', '{"cached":null,"ignore_cache":false}'), +(434, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:48.648+06', '{"cached":null,"ignore_cache":null}'), +(435, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:48.806+06', '{"cached":null,"ignore_cache":false}'), +(436, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:05.486+06', '{"cached":null,"ignore_cache":null}'), +(437, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:05.637+06', '{"cached":null,"ignore_cache":false}'), +(438, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.094+06', '{"cached":null,"ignore_cache":null}'), +(439, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.184+06', '{"cached":null,"ignore_cache":false}'), +(440, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.189+06', '{"cached":null,"ignore_cache":false}'), +(441, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.202+06', '{"cached":null,"ignore_cache":false}'), +(442, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:19.216+06', '{"cached":null,"ignore_cache":false}'), +(443, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:54:33.108+06', '{"cached":null,"ignore_cache":null}'), +(444, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:10.394+06', '{"cached":null,"ignore_cache":null}'), +(445, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.372+06', '{"cached":null,"ignore_cache":null}'), +(446, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.435+06', '{"cached":null,"ignore_cache":false}'), +(447, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.443+06', '{"cached":null,"ignore_cache":false}'), +(448, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.445+06', '{"cached":null,"ignore_cache":false}'), +(449, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:15.451+06', '{"cached":null,"ignore_cache":false}'), +(450, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:47.843+06', '{"cached":null,"ignore_cache":null}'), +(451, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 12:59:36.489+06', '{"cached":null,"ignore_cache":null}'), +(452, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 12:59:56.95+06', '{"cached":null,"ignore_cache":null}'), +(453, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:48.254+06', '{"cached":null,"ignore_cache":null}'), +(454, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.912+06', '{"cached":null,"ignore_cache":null}'), +(455, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.991+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(456, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.992+06', '{"cached":null,"ignore_cache":false}'), +(457, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.996+06', '{"cached":null,"ignore_cache":false}'), +(458, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 13:28:56.999+06', '{"cached":null,"ignore_cache":false}'), +(459, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.065+06', '{"cached":null,"ignore_cache":false}'), +(460, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.068+06', '{"cached":null,"ignore_cache":false}'), +(461, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.069+06', '{"cached":null,"ignore_cache":false}'), +(462, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:26.083+06', '{"cached":null,"ignore_cache":false}'), +(463, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.076+06', '{"cached":null,"ignore_cache":false}'), +(464, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.091+06', '{"cached":null,"ignore_cache":false}'), +(465, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.094+06', '{"cached":null,"ignore_cache":false}'), +(466, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:33.107+06', '{"cached":null,"ignore_cache":false}'), +(467, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.563+06', '{"cached":null,"ignore_cache":false}'), +(468, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.571+06', '{"cached":null,"ignore_cache":false}'), +(469, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.575+06', '{"cached":null,"ignore_cache":false}'), +(470, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:35.582+06', '{"cached":null,"ignore_cache":false}'), +(471, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.467+06', '{"cached":null,"ignore_cache":false}'), +(472, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.474+06', '{"cached":null,"ignore_cache":false}'), +(473, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.475+06', '{"cached":null,"ignore_cache":false}'), +(474, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:40.488+06', '{"cached":null,"ignore_cache":false}'), +(475, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 13:29:51.392+06', '{"cached":null,"ignore_cache":null}'), +(476, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:22.747+06', '{"cached":null,"ignore_cache":null}'), +(477, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:22.971+06', '{"cached":null,"ignore_cache":false}'), +(478, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.437+06', '{"cached":null,"ignore_cache":null}'), +(479, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.525+06', '{"cached":null,"ignore_cache":false}'), +(480, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.528+06', '{"cached":null,"ignore_cache":false}'), +(481, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.53+06', '{"cached":null,"ignore_cache":false}'), +(482, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:31.541+06', '{"cached":null,"ignore_cache":false}'), +(483, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:30:40.951+06', '{"cached":null,"ignore_cache":null}'), +(484, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.081+06', '{"cached":null,"ignore_cache":null}'), +(485, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.164+06', '{"cached":null,"ignore_cache":false}'), +(486, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.17+06', '{"cached":null,"ignore_cache":false}'), +(487, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.172+06', '{"cached":null,"ignore_cache":false}'), +(488, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:12.185+06', '{"cached":null,"ignore_cache":false}'), +(489, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.429+06', '{"cached":null,"ignore_cache":false}'), +(490, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.44+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(491, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.445+06', '{"cached":null,"ignore_cache":false}'), +(492, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:21.451+06', '{"cached":null,"ignore_cache":false}'), +(493, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.373+06', '{"cached":null,"ignore_cache":false}'), +(494, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.389+06', '{"cached":null,"ignore_cache":false}'), +(495, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.39+06', '{"cached":null,"ignore_cache":false}'), +(496, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:26.404+06', '{"cached":null,"ignore_cache":false}'), +(497, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.269+06', '{"cached":null,"ignore_cache":false}'), +(498, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.285+06', '{"cached":null,"ignore_cache":false}'), +(499, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.305+06', '{"cached":null,"ignore_cache":false}'), +(500, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:31:29.308+06', '{"cached":null,"ignore_cache":false}'), +(501, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:32.909+06', '{"cached":null,"ignore_cache":null}'), +(502, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:33.17+06', '{"cached":null,"ignore_cache":false}'), +(503, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.036+06', '{"cached":null,"ignore_cache":null}'), +(504, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.118+06', '{"cached":null,"ignore_cache":false}'), +(505, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.121+06', '{"cached":null,"ignore_cache":false}'), +(506, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.128+06', '{"cached":null,"ignore_cache":false}'), +(507, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:37.132+06', '{"cached":null,"ignore_cache":false}'), +(508, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:40.896+06', '{"cached":null,"ignore_cache":null}'), +(509, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:32:41.074+06', '{"cached":null,"ignore_cache":false}'), +(510, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 13:33:29.426+06', '{"cached":null,"ignore_cache":null}'), +(511, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 13:33:39.842+06', '{"cached":null,"ignore_cache":null}'), +(512, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 13:33:41.085+06', '{"cached":null,"ignore_cache":null}'), +(513, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.909+06', '{"cached":null,"ignore_cache":null}'), +(514, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.984+06', '{"cached":null,"ignore_cache":false}'), +(515, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.99+06', '{"cached":null,"ignore_cache":false}'), +(516, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:15.991+06', '{"cached":null,"ignore_cache":false}'), +(517, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:16.003+06', '{"cached":null,"ignore_cache":false}'), +(518, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.229+06', '{"cached":null,"ignore_cache":false}'), +(519, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.23+06', '{"cached":null,"ignore_cache":false}'), +(520, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.238+06', '{"cached":null,"ignore_cache":false}'), +(521, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:20.239+06', '{"cached":null,"ignore_cache":false}'), +(522, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.739+06', '{"cached":null,"ignore_cache":false}'), +(523, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.744+06', '{"cached":null,"ignore_cache":false}'), +(524, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.757+06', '{"cached":null,"ignore_cache":false}'), +(525, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:23.764+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(526, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:38.853+06', '{"cached":null,"ignore_cache":null}'), +(527, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:40.718+06', '{"cached":null,"ignore_cache":null}'), +(528, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:34:40.95+06', '{"cached":null,"ignore_cache":false}'), +(529, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:35:29.82+06', '{"cached":null,"ignore_cache":null}'), +(530, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:35:30.189+06', '{"cached":null,"ignore_cache":false}'), +(531, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:11.335+06', '{"cached":null,"ignore_cache":null}'), +(532, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:11.505+06', '{"cached":null,"ignore_cache":false}'), +(533, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.57+06', '{"cached":null,"ignore_cache":null}'), +(534, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.642+06', '{"cached":null,"ignore_cache":false}'), +(535, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.652+06', '{"cached":null,"ignore_cache":false}'), +(536, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.656+06', '{"cached":null,"ignore_cache":false}'), +(537, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:27.663+06', '{"cached":null,"ignore_cache":false}'), +(538, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:48.993+06', '{"cached":null,"ignore_cache":null}'), +(539, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.068+06', '{"cached":null,"ignore_cache":false}'), +(540, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.074+06', '{"cached":null,"ignore_cache":false}'), +(541, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.076+06', '{"cached":null,"ignore_cache":false}'), +(542, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 13:36:49.083+06', '{"cached":null,"ignore_cache":false}'), +(543, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 13:38:31.152+06', '{"cached":null,"ignore_cache":null}'), +(544, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 13:38:58.196+06', '{"cached":null,"ignore_cache":null}'), +(545, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 13:45:57.561+06', '{"cached":null,"ignore_cache":null}'), +(546, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.499+06', '{"cached":null,"ignore_cache":null}'), +(547, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.608+06', '{"cached":null,"ignore_cache":false}'), +(548, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.621+06', '{"cached":null,"ignore_cache":false}'), +(549, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.626+06', '{"cached":null,"ignore_cache":false}'), +(550, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:39:56.632+06', '{"cached":null,"ignore_cache":false}'), +(551, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.158+06', '{"cached":null,"ignore_cache":null}'), +(552, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.245+06', '{"cached":null,"ignore_cache":false}'), +(553, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.256+06', '{"cached":null,"ignore_cache":false}'), +(554, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.258+06', '{"cached":null,"ignore_cache":false}'), +(555, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 14:40:20.267+06', '{"cached":null,"ignore_cache":false}'), +(556, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.054+06', '{"cached":null,"ignore_cache":null}'), +(557, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.158+06', '{"cached":null,"ignore_cache":false}'), +(558, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.165+06', '{"cached":null,"ignore_cache":false}'), +(559, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.171+06', '{"cached":null,"ignore_cache":false}'), +(560, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:42:29.183+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(561, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.908+06', '{"cached":null,"ignore_cache":false}'), +(562, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.925+06', '{"cached":null,"ignore_cache":false}'), +(563, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.928+06', '{"cached":null,"ignore_cache":false}'), +(564, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:11.956+06', '{"cached":null,"ignore_cache":false}'), +(565, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.715+06', '{"cached":null,"ignore_cache":false}'), +(566, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.723+06', '{"cached":null,"ignore_cache":false}'), +(567, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.727+06', '{"cached":null,"ignore_cache":false}'), +(568, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:16.739+06', '{"cached":null,"ignore_cache":false}'), +(569, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.723+06', '{"cached":null,"ignore_cache":false}'), +(570, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.727+06', '{"cached":null,"ignore_cache":false}'), +(571, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.729+06', '{"cached":null,"ignore_cache":false}'), +(572, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:22.735+06', '{"cached":null,"ignore_cache":false}'), +(573, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.403+06', '{"cached":null,"ignore_cache":false}'), +(574, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.406+06', '{"cached":null,"ignore_cache":false}'), +(575, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.423+06', '{"cached":null,"ignore_cache":false}'), +(576, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:43:25.426+06', '{"cached":null,"ignore_cache":false}'), +(577, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:28.38+06', '{"cached":null,"ignore_cache":null}'), +(578, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:28.646+06', '{"cached":null,"ignore_cache":false}'), +(579, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.148+06', '{"cached":null,"ignore_cache":null}'), +(580, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.252+06', '{"cached":null,"ignore_cache":false}'), +(581, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.252+06', '{"cached":null,"ignore_cache":false}'), +(582, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.253+06', '{"cached":null,"ignore_cache":false}'), +(583, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:47:37.257+06', '{"cached":null,"ignore_cache":false}'), +(584, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:52:53.653+06', '{"cached":null,"ignore_cache":null}'), +(585, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:07.312+06', '{"cached":null,"ignore_cache":null}'), +(586, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:08.788+06', '{"cached":null,"ignore_cache":null}'), +(587, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:08.987+06', '{"cached":null,"ignore_cache":false}'), +(588, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.463+06', '{"cached":null,"ignore_cache":null}'), +(589, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.56+06', '{"cached":null,"ignore_cache":false}'), +(590, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.564+06', '{"cached":null,"ignore_cache":false}'), +(591, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.572+06', '{"cached":null,"ignore_cache":false}'), +(592, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:11.577+06', '{"cached":null,"ignore_cache":false}'), +(593, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:29.868+06', '{"cached":null,"ignore_cache":null}'), +(594, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:31.425+06', '{"cached":null,"ignore_cache":null}'), +(595, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:31.706+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(596, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:53.907+06', '{"cached":null,"ignore_cache":null}'), +(597, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:53:54.098+06', '{"cached":null,"ignore_cache":false}'), +(598, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.072+06', '{"cached":null,"ignore_cache":null}'), +(599, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.154+06', '{"cached":null,"ignore_cache":false}'), +(600, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.155+06', '{"cached":null,"ignore_cache":false}'), +(601, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.157+06', '{"cached":null,"ignore_cache":false}'), +(602, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 14:54:04.164+06', '{"cached":null,"ignore_cache":false}'), +(603, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 14:55:37.466+06', '{"cached":null,"ignore_cache":null}'), +(604, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:03:30.464+06', '{"cached":null,"ignore_cache":null}'), +(605, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:03:54.771+06', '{"cached":null,"ignore_cache":null}'), +(606, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.489+06', '{"cached":null,"ignore_cache":null}'), +(607, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.566+06', '{"cached":null,"ignore_cache":false}'), +(608, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.572+06', '{"cached":null,"ignore_cache":false}'), +(609, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.574+06', '{"cached":null,"ignore_cache":false}'), +(610, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:27.578+06', '{"cached":null,"ignore_cache":false}'), +(611, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.448+06', '{"cached":null,"ignore_cache":null}'), +(612, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.526+06', '{"cached":null,"ignore_cache":false}'), +(613, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.53+06', '{"cached":null,"ignore_cache":false}'), +(614, 1, 'card', 3, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.537+06', '{"cached":null,"ignore_cache":false}'), +(615, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:26:35.538+06', '{"cached":null,"ignore_cache":false}'), +(616, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:02.395+06', '{"cached":null,"ignore_cache":null}'), +(617, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:02.556+06', '{"cached":null,"ignore_cache":false}'), +(618, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:13.096+06', '{"cached":null,"ignore_cache":null}'), +(619, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:15.881+06', '{"cached":null,"ignore_cache":null}'), +(620, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:16.036+06', '{"cached":null,"ignore_cache":false}'), +(621, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:50.581+06', '{"cached":null,"ignore_cache":null}'), +(622, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:50.705+06', '{"cached":null,"ignore_cache":false}'), +(623, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:53.558+06', '{"cached":null,"ignore_cache":null}'), +(624, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:53.704+06', '{"cached":null,"ignore_cache":false}'), +(625, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:09.772+06', '{"cached":null,"ignore_cache":null}'), +(626, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:09.93+06', '{"cached":null,"ignore_cache":false}'), +(627, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:12.258+06', '{"cached":null,"ignore_cache":null}'), +(628, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:12.408+06', '{"cached":null,"ignore_cache":false}'), +(629, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.893+06', '{"cached":null,"ignore_cache":null}'), +(630, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.963+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(631, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.966+06', '{"cached":null,"ignore_cache":false}'), +(632, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.975+06', '{"cached":null,"ignore_cache":false}'), +(633, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:55.986+06', '{"cached":null,"ignore_cache":false}'), +(634, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:00.543+06', '{"cached":null,"ignore_cache":null}'), +(635, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:00.608+06', '{"cached":null,"ignore_cache":false}'), +(636, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:00.612+06', '{"cached":null,"ignore_cache":false}'), +(637, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:00.615+06', '{"cached":null,"ignore_cache":false}'), +(638, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:07.687+06', '{"cached":null,"ignore_cache":null}'), +(639, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:07.845+06', '{"cached":null,"ignore_cache":false}'), +(640, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:16.048+06', '{"cached":null,"ignore_cache":null}'), +(641, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:16.114+06', '{"cached":null,"ignore_cache":false}'), +(642, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:16.115+06', '{"cached":null,"ignore_cache":false}'), +(643, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:16.117+06', '{"cached":null,"ignore_cache":false}'), +(644, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 15:32:28.326+06', '{"cached":null,"ignore_cache":null}'), +(645, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.107+06', '{"cached":null,"ignore_cache":null}'), +(646, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.182+06', '{"cached":null,"ignore_cache":false}'), +(647, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.184+06', '{"cached":null,"ignore_cache":false}'), +(648, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.192+06', '{"cached":null,"ignore_cache":false}'), +(649, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 15:55:16.194+06', '{"cached":null,"ignore_cache":false}'), +(650, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 15:56:21.995+06', '{"cached":null,"ignore_cache":null}'), +(651, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:06:52.444+06', '{"cached":null,"ignore_cache":null}'), +(652, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:07:24.29+06', '{"cached":null,"ignore_cache":null}'), +(653, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:07:31.247+06', '{"cached":null,"ignore_cache":null}'), +(654, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:08.932+06', '{"cached":null,"ignore_cache":null}'), +(655, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:09.021+06', '{"cached":null,"ignore_cache":false}'), +(656, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:09.04+06', '{"cached":null,"ignore_cache":false}'), +(657, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:09.041+06', '{"cached":null,"ignore_cache":false}'), +(658, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 16:10:09.044+06', '{"cached":null,"ignore_cache":false}'), +(659, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:22:29.228+06', '{"cached":null,"ignore_cache":null}'), +(660, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:23:51.999+06', '{"cached":null,"ignore_cache":null}'), +(661, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:24:19.636+06', '{"cached":null,"ignore_cache":null}'), +(662, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.688+06', '{"cached":null,"ignore_cache":null}'), +(663, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.784+06', '{"cached":null,"ignore_cache":false}'), +(664, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.786+06', '{"cached":null,"ignore_cache":false}'), +(665, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.789+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(666, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:05.791+06', '{"cached":null,"ignore_cache":false}'), +(667, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:38:42.17+06', '{"cached":null,"ignore_cache":null}'), +(668, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:17.325+06', '{"cached":null,"ignore_cache":null}'), +(669, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:20.284+06', '{"cached":null,"ignore_cache":null}'), +(670, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:29.209+06', '{"cached":null,"ignore_cache":null}'), +(671, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:42.808+06', '{"cached":null,"ignore_cache":null}'), +(672, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:47.175+06', '{"cached":null,"ignore_cache":null}'), +(673, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:48.743+06', '{"cached":null,"ignore_cache":null}'), +(674, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:52.007+06', '{"cached":null,"ignore_cache":null}'), +(675, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:41:59.924+06', '{"cached":null,"ignore_cache":null}'), +(676, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:42:01.473+06', '{"cached":null,"ignore_cache":null}'), +(677, 1, 'table', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 16:44:54.759+06', '{"cached":null,"ignore_cache":null}'), +(678, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.02+06', '{"cached":null,"ignore_cache":null}'), +(679, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.12+06', '{"cached":null,"ignore_cache":false}'), +(680, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.124+06', '{"cached":null,"ignore_cache":false}'), +(681, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.133+06', '{"cached":null,"ignore_cache":false}'), +(682, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:22.134+06', '{"cached":null,"ignore_cache":false}'), +(683, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.618+06', '{"cached":null,"ignore_cache":false}'), +(684, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.623+06', '{"cached":null,"ignore_cache":false}'), +(685, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.625+06', '{"cached":null,"ignore_cache":false}'), +(686, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:24.637+06', '{"cached":null,"ignore_cache":false}'), +(687, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.413+06', '{"cached":null,"ignore_cache":false}'), +(688, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.414+06', '{"cached":null,"ignore_cache":false}'), +(689, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.423+06', '{"cached":null,"ignore_cache":false}'), +(690, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:26.437+06', '{"cached":null,"ignore_cache":false}'), +(691, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:40.952+06', '{"cached":null,"ignore_cache":null}'), +(692, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.46+06', '{"cached":null,"ignore_cache":null}'), +(693, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.539+06', '{"cached":null,"ignore_cache":false}'), +(694, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.539+06', '{"cached":null,"ignore_cache":false}'), +(695, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.546+06', '{"cached":null,"ignore_cache":false}'), +(696, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 16:51:51.55+06', '{"cached":null,"ignore_cache":false}'), +(697, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:52:12.641+06', '{"cached":null,"ignore_cache":null}'), +(698, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:17.075+06', '{"cached":null,"ignore_cache":null}'), +(699, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 16:56:30.057+06', '{"cached":null,"ignore_cache":null}'), +(700, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:06:59.082+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(701, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.073+06', '{"cached":null,"ignore_cache":null}'), +(702, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.143+06', '{"cached":null,"ignore_cache":false}'), +(703, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.144+06', '{"cached":null,"ignore_cache":false}'), +(704, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.146+06', '{"cached":null,"ignore_cache":false}'), +(705, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 17:07:24.154+06', '{"cached":null,"ignore_cache":false}'), +(706, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:09:14.233+06', '{"cached":null,"ignore_cache":null}'), +(707, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:10:33.457+06', '{"cached":null,"ignore_cache":null}'), +(708, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:10:35.668+06', '{"cached":null,"ignore_cache":null}'), +(709, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:12:41.992+06', '{"cached":null,"ignore_cache":null}'), +(710, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:05.649+06', '{"cached":null,"ignore_cache":null}'), +(711, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:36.234+06', '{"cached":null,"ignore_cache":null}'), +(712, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:46.12+06', '{"cached":null,"ignore_cache":null}'), +(713, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:47.338+06', '{"cached":null,"ignore_cache":null}'), +(714, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:13:48.132+06', '{"cached":null,"ignore_cache":null}'), +(715, 1, 'table', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:14:25.762+06', '{"cached":null,"ignore_cache":null}'), +(716, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:23:17.065+06', '{"cached":null,"ignore_cache":null}'), +(717, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:24:39.439+06', '{"cached":null,"ignore_cache":null}'), +(718, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:25:11.328+06', '{"cached":null,"ignore_cache":null}'), +(719, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:25:12.06+06', '{"cached":null,"ignore_cache":null}'), +(720, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:34:56.979+06', '{"cached":null,"ignore_cache":null}'), +(721, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:36:05.307+06', '{"cached":null,"ignore_cache":null}'), +(722, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:41:18.1+06', '{"cached":null,"ignore_cache":null}'), +(723, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:42:49.241+06', '{"cached":null,"ignore_cache":null}'), +(724, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:46:06.852+06', '{"cached":null,"ignore_cache":null}'), +(725, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:55:11.429+06', '{"cached":null,"ignore_cache":null}'), +(726, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.217+06', '{"cached":null,"ignore_cache":null}'), +(727, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.377+06', '{"cached":null,"ignore_cache":false}'), +(728, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.393+06', '{"cached":null,"ignore_cache":false}'), +(729, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.394+06', '{"cached":null,"ignore_cache":false}'), +(730, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:30.397+06', '{"cached":null,"ignore_cache":false}'), +(731, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.123+06', '{"cached":null,"ignore_cache":false}'), +(732, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.125+06', '{"cached":null,"ignore_cache":false}'), +(733, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.133+06', '{"cached":null,"ignore_cache":false}'), +(734, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:35.136+06', '{"cached":null,"ignore_cache":false}'), +(735, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.745+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(736, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.746+06', '{"cached":null,"ignore_cache":false}'), +(737, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.747+06', '{"cached":null,"ignore_cache":false}'), +(738, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:37.748+06', '{"cached":null,"ignore_cache":false}'), +(739, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.825+06', '{"cached":null,"ignore_cache":false}'), +(740, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.828+06', '{"cached":null,"ignore_cache":false}'), +(741, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.829+06', '{"cached":null,"ignore_cache":false}'), +(742, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:39.831+06', '{"cached":null,"ignore_cache":false}'), +(743, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.628+06', '{"cached":null,"ignore_cache":false}'), +(744, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.633+06', '{"cached":null,"ignore_cache":false}'), +(745, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.635+06', '{"cached":null,"ignore_cache":false}'), +(746, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:47.639+06', '{"cached":null,"ignore_cache":false}'), +(747, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.987+06', '{"cached":null,"ignore_cache":false}'), +(748, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.988+06', '{"cached":null,"ignore_cache":false}'), +(749, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.989+06', '{"cached":null,"ignore_cache":false}'), +(750, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:48.998+06', '{"cached":null,"ignore_cache":false}'), +(751, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:57:58.206+06', '{"cached":null,"ignore_cache":null}'), +(752, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:58:03.006+06', '{"cached":null,"ignore_cache":null}'), +(753, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 17:58:03.181+06', '{"cached":null,"ignore_cache":false}'), +(754, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 17:58:44.822+06', '{"cached":null,"ignore_cache":null}'), +(755, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 17:58:45.07+06', '{"cached":null,"ignore_cache":false}'), +(756, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 17:59:08.366+06', '{"cached":null,"ignore_cache":null}'), +(757, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 17:59:57.634+06', '{"cached":null,"ignore_cache":null}'), +(758, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 17:59:57.959+06', '{"cached":null,"ignore_cache":false}'), +(759, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 18:00:21.29+06', '{"cached":null,"ignore_cache":null}'), +(760, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 18:00:21.448+06', '{"cached":null,"ignore_cache":false}'), +(761, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:03:33.052+06', '{"cached":null,"ignore_cache":null}'), +(762, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:03:33.223+06', '{"cached":null,"ignore_cache":false}'), +(763, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-14 18:09:38.273+06', '{"cached":null,"ignore_cache":null}'), +(764, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-14 18:09:43.033+06', '{"cached":null,"ignore_cache":null}'), +(765, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-14 18:09:43.21+06', '{"cached":null,"ignore_cache":false}'), +(766, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:04.113+06', '{"cached":null,"ignore_cache":null}'), +(767, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-14 18:19:04.384+06', '{"cached":null,"ignore_cache":false}'), +(768, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 18:20:27.518+06', '{"cached":null,"ignore_cache":null}'), +(769, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:36:04.554+06', '{"cached":null,"ignore_cache":null}'), +(770, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:08.046+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(771, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:18.03+06', '{"cached":null,"ignore_cache":null}'), +(772, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:18.245+06', '{"cached":null,"ignore_cache":false}'), +(773, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:32.174+06', '{"cached":null,"ignore_cache":null}'), +(774, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:32.36+06', '{"cached":null,"ignore_cache":false}'), +(775, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:35.871+06', '{"cached":null,"ignore_cache":null}'), +(776, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:36.019+06', '{"cached":null,"ignore_cache":false}'), +(777, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:36.044+06', '{"cached":null,"ignore_cache":false}'), +(778, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:36.052+06', '{"cached":null,"ignore_cache":false}'), +(779, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:36.069+06', '{"cached":null,"ignore_cache":false}'), +(780, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:44.36+06', '{"cached":null,"ignore_cache":false}'), +(781, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:41.357+06', '{"cached":null,"ignore_cache":false}'), +(782, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:42.576+06', '{"cached":null,"ignore_cache":false}'), +(783, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:43.447+06', '{"cached":null,"ignore_cache":false}'), +(784, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:43.949+06', '{"cached":null,"ignore_cache":false}'), +(785, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-14 18:43:46.104+06', '{"cached":null,"ignore_cache":false}'), +(786, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:44:12.336+06', '{"cached":null,"ignore_cache":null}'), +(787, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:44:38.712+06', '{"cached":null,"ignore_cache":null}'), +(788, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:44:38.868+06', '{"cached":null,"ignore_cache":false}'), +(789, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:48:42.345+06', '{"cached":null,"ignore_cache":null}'), +(790, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 18:48:42.652+06', '{"cached":null,"ignore_cache":false}'), +(791, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:04.15+06', '{"cached":null,"ignore_cache":null}'), +(792, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:04.327+06', '{"cached":null,"ignore_cache":false}'), +(793, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:34.207+06', '{"cached":null,"ignore_cache":null}'), +(794, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:34.399+06', '{"cached":null,"ignore_cache":false}'), +(795, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:37.322+06', '{"cached":null,"ignore_cache":null}'), +(796, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:37.469+06', '{"cached":null,"ignore_cache":false}'), +(797, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:40.582+06', '{"cached":null,"ignore_cache":null}'), +(798, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:40.723+06', '{"cached":null,"ignore_cache":false}'), +(799, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:22.544+06', '{"cached":null,"ignore_cache":null}'), +(800, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:22.864+06', '{"cached":null,"ignore_cache":false}'), +(801, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:25.856+06', '{"cached":null,"ignore_cache":null}'), +(802, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:26.021+06', '{"cached":null,"ignore_cache":false}'), +(803, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:33.202+06', '{"cached":null,"ignore_cache":null}'), +(804, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 18:52:33.38+06', '{"cached":null,"ignore_cache":false}'), +(805, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 18:53:39.215+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(806, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 18:58:59.284+06', '{"cached":null,"ignore_cache":null}'), +(807, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 18:58:59.452+06', '{"cached":null,"ignore_cache":false}'), +(808, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 18:59:15.071+06', '{"cached":null,"ignore_cache":null}'), +(809, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 18:59:15.196+06', '{"cached":null,"ignore_cache":false}'), +(810, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 18:59:43.778+06', '{"cached":null,"ignore_cache":null}'), +(811, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:01.894+06', '{"cached":null,"ignore_cache":null}'), +(812, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:49.236+06', '{"cached":null,"ignore_cache":null}'), +(813, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 19:00:54.072+06', '{"cached":null,"ignore_cache":null}'), +(814, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 19:01:41.995+06', '{"cached":null,"ignore_cache":null}'), +(815, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 19:04:36.151+06', '{"cached":null,"ignore_cache":null}'), +(816, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 19:04:36.296+06', '{"cached":null,"ignore_cache":false}'), +(817, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 19:04:48.167+06', '{"cached":null,"ignore_cache":null}'), +(818, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 19:04:48.327+06', '{"cached":null,"ignore_cache":false}'), +(819, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:11.895+06', '{"cached":null,"ignore_cache":null}'), +(820, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:12.094+06', '{"cached":null,"ignore_cache":false}'), +(821, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:22.492+06', '{"cached":null,"ignore_cache":null}'), +(822, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:22.648+06', '{"cached":null,"ignore_cache":false}'), +(823, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:30.603+06', '{"cached":null,"ignore_cache":null}'), +(824, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 19:05:30.741+06', '{"cached":null,"ignore_cache":false}'), +(825, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:40.14+06', '{"cached":null,"ignore_cache":null}'), +(826, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:40.298+06', '{"cached":null,"ignore_cache":false}'), +(827, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:46.567+06', '{"cached":null,"ignore_cache":null}'), +(828, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:46.702+06', '{"cached":null,"ignore_cache":false}'), +(829, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:55.57+06', '{"cached":null,"ignore_cache":null}'), +(830, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-14 19:23:55.776+06', '{"cached":null,"ignore_cache":false}'), +(831, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 19:41:08.009+06', '{"cached":null,"ignore_cache":null}'), +(832, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-14 19:41:14.433+06', '{"cached":null,"ignore_cache":null}'), +(833, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:41:55.679+06', '{"cached":null,"ignore_cache":null}'), +(834, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-14 19:41:55.927+06', '{"cached":null,"ignore_cache":false}'), +(835, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-14 19:46:36.056+06', '{"cached":null,"ignore_cache":null}'), +(836, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 11:59:11.852+06', '{"cached":null,"ignore_cache":null}'), +(837, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 11:59:13.243+06', '{"cached":null,"ignore_cache":null}'), +(838, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 11:59:13.589+06', '{"cached":null,"ignore_cache":false}'), +(839, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:30.327+06', '{"cached":null,"ignore_cache":null}'), +(840, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:30.608+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(841, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:45.245+06', '{"cached":null,"ignore_cache":true}'), +(842, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:54.248+06', '{"cached":null,"ignore_cache":null}'), +(843, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 12:00:54.413+06', '{"cached":null,"ignore_cache":false}'), +(844, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:14.3+06', '{"cached":null,"ignore_cache":null}'), +(845, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:14.504+06', '{"cached":null,"ignore_cache":false}'), +(846, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:20.29+06', '{"cached":null,"ignore_cache":null}'), +(847, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:20.45+06', '{"cached":null,"ignore_cache":false}'), +(848, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:22.989+06', '{"cached":null,"ignore_cache":null}'), +(849, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:23.153+06', '{"cached":null,"ignore_cache":false}'), +(850, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:52.688+06', '{"cached":null,"ignore_cache":null}'), +(851, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:02:52.859+06', '{"cached":null,"ignore_cache":false}'), +(852, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:02.915+06', '{"cached":null,"ignore_cache":null}'), +(853, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:03.091+06', '{"cached":null,"ignore_cache":false}'), +(854, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:08.424+06', '{"cached":null,"ignore_cache":null}'), +(855, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:08.631+06', '{"cached":null,"ignore_cache":false}'), +(856, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:14.409+06', '{"cached":null,"ignore_cache":null}'), +(857, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-15 12:03:14.753+06', '{"cached":null,"ignore_cache":false}'), +(858, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:06:11.346+06', '{"cached":null,"ignore_cache":null}'), +(859, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:06:11.538+06', '{"cached":null,"ignore_cache":false}'), +(860, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:07:10.057+06', '{"cached":null,"ignore_cache":false}'), +(861, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:45.536+06', '{"cached":null,"ignore_cache":null}'), +(862, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:26:46.016+06', '{"cached":null,"ignore_cache":false}'), +(863, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 12:59:35.172+06', '{"cached":null,"ignore_cache":null}'), +(864, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 13:10:30.522+06', '{"cached":null,"ignore_cache":null}'), +(865, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 13:10:30.859+06', '{"cached":null,"ignore_cache":false}'), +(866, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:10:43.1+06', '{"cached":null,"ignore_cache":null}'), +(867, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 13:10:43.406+06', '{"cached":null,"ignore_cache":false}'), +(868, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 15:18:01.841+06', '{"cached":null,"ignore_cache":null}'), +(869, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:28.83+06', '{"cached":null,"ignore_cache":null}'), +(870, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.082+06', '{"cached":null,"ignore_cache":false}'), +(871, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.087+06', '{"cached":null,"ignore_cache":false}'), +(872, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.089+06', '{"cached":null,"ignore_cache":false}'), +(873, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:29.115+06', '{"cached":null,"ignore_cache":false}'), +(874, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:58.471+06', '{"cached":null,"ignore_cache":null}'), +(875, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:58.507+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(876, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:14.138+06', '{"cached":null,"ignore_cache":null}'), +(877, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:14.208+06', '{"cached":null,"ignore_cache":false}'), +(878, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:40.609+06', '{"cached":null,"ignore_cache":null}'), +(879, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:40.682+06', '{"cached":null,"ignore_cache":false}'), +(880, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:51.96+06', '{"cached":null,"ignore_cache":null}'), +(881, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:26:52.043+06', '{"cached":null,"ignore_cache":false}'), +(882, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:27:19.641+06', '{"cached":null,"ignore_cache":null}'), +(883, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:27:21.086+06', '{"cached":null,"ignore_cache":null}'), +(884, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:27:21.287+06', '{"cached":null,"ignore_cache":false}'), +(885, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:02.843+06', '{"cached":null,"ignore_cache":false}'), +(886, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.098+06', '{"cached":null,"ignore_cache":null}'), +(887, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.181+06', '{"cached":null,"ignore_cache":false}'), +(888, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.187+06', '{"cached":null,"ignore_cache":false}'), +(889, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.188+06', '{"cached":null,"ignore_cache":false}'), +(890, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:07.194+06', '{"cached":null,"ignore_cache":false}'), +(891, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:43.678+06', '{"cached":null,"ignore_cache":null}'), +(892, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.883+06', '{"cached":null,"ignore_cache":false}'), +(893, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.914+06', '{"cached":null,"ignore_cache":false}'), +(894, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.922+06', '{"cached":null,"ignore_cache":false}'), +(895, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:46.934+06', '{"cached":null,"ignore_cache":false}'), +(896, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:51.016+06', '{"cached":null,"ignore_cache":false}'), +(897, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:51.018+06', '{"cached":null,"ignore_cache":false}'), +(898, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:51.018+06', '{"cached":null,"ignore_cache":false}'), +(899, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:29:51.03+06', '{"cached":null,"ignore_cache":false}'), +(900, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:03.861+06', '{"cached":null,"ignore_cache":null}'), +(901, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:09.322+06', '{"cached":null,"ignore_cache":null}'), +(902, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:09.387+06', '{"cached":null,"ignore_cache":false}'), +(903, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:09.39+06', '{"cached":null,"ignore_cache":false}'), +(904, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:09.394+06', '{"cached":null,"ignore_cache":false}'), +(905, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.33+06', '{"cached":null,"ignore_cache":null}'), +(906, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.392+06', '{"cached":null,"ignore_cache":false}'), +(907, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.395+06', '{"cached":null,"ignore_cache":false}'), +(908, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.4+06', '{"cached":null,"ignore_cache":false}'), +(909, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:16.403+06', '{"cached":null,"ignore_cache":false}'), +(910, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:28.141+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(911, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:33.964+06', '{"cached":null,"ignore_cache":null}'), +(912, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:34.163+06', '{"cached":null,"ignore_cache":false}'), +(913, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:36.995+06', '{"cached":null,"ignore_cache":null}'), +(914, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:30:37.132+06', '{"cached":null,"ignore_cache":false}'), +(915, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.302+06', '{"cached":null,"ignore_cache":null}'), +(916, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.373+06', '{"cached":null,"ignore_cache":false}'), +(917, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.392+06', '{"cached":null,"ignore_cache":false}'), +(918, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.393+06', '{"cached":null,"ignore_cache":false}'), +(919, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:05.394+06', '{"cached":null,"ignore_cache":false}'), +(920, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:42.781+06', '{"cached":null,"ignore_cache":null}'), +(921, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:47.003+06', '{"cached":null,"ignore_cache":false}'), +(922, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:47.009+06', '{"cached":null,"ignore_cache":false}'), +(923, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:47.025+06', '{"cached":null,"ignore_cache":false}'), +(924, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:47.034+06', '{"cached":null,"ignore_cache":false}'), +(925, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.951+06', '{"cached":null,"ignore_cache":false}'), +(926, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.959+06', '{"cached":null,"ignore_cache":false}'), +(927, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.96+06', '{"cached":null,"ignore_cache":false}'), +(928, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:31:51.965+06', '{"cached":null,"ignore_cache":false}'), +(929, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.538+06', '{"cached":null,"ignore_cache":null}'), +(930, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.651+06', '{"cached":null,"ignore_cache":false}'), +(931, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.662+06', '{"cached":null,"ignore_cache":false}'), +(932, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.668+06', '{"cached":null,"ignore_cache":false}'), +(933, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:19.673+06', '{"cached":null,"ignore_cache":false}'), +(934, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:29.899+06', '{"cached":null,"ignore_cache":null}'), +(935, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:37.28+06', '{"cached":null,"ignore_cache":null}'), +(936, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:37.341+06', '{"cached":null,"ignore_cache":false}'), +(937, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:37.346+06', '{"cached":null,"ignore_cache":false}'), +(938, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:37.347+06', '{"cached":null,"ignore_cache":false}'), +(939, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.105+06', '{"cached":null,"ignore_cache":null}'), +(940, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.167+06', '{"cached":null,"ignore_cache":false}'), +(941, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.171+06', '{"cached":null,"ignore_cache":false}'), +(942, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.18+06', '{"cached":null,"ignore_cache":false}'), +(943, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:32:43.185+06', '{"cached":null,"ignore_cache":false}'), +(944, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:22.37+06', '{"cached":null,"ignore_cache":null}'), +(945, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:22.436+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(946, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:22.44+06', '{"cached":null,"ignore_cache":false}'), +(947, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:22.442+06', '{"cached":null,"ignore_cache":false}'), +(948, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.075+06', '{"cached":null,"ignore_cache":null}'), +(949, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.207+06', '{"cached":null,"ignore_cache":false}'), +(950, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.21+06', '{"cached":null,"ignore_cache":false}'), +(951, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.214+06', '{"cached":null,"ignore_cache":false}'), +(952, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:33.219+06', '{"cached":null,"ignore_cache":false}'), +(953, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:36.023+06', '{"cached":null,"ignore_cache":false}'), +(954, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:36.024+06', '{"cached":null,"ignore_cache":false}'), +(955, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:36.025+06', '{"cached":null,"ignore_cache":false}'), +(956, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:36.034+06', '{"cached":null,"ignore_cache":false}'), +(957, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.121+06', '{"cached":null,"ignore_cache":false}'), +(958, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.13+06', '{"cached":null,"ignore_cache":false}'), +(959, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.133+06', '{"cached":null,"ignore_cache":false}'), +(960, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 15:33:57.141+06', '{"cached":null,"ignore_cache":false}'), +(961, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:01.739+02', '{"cached":null,"ignore_cache":null}'), +(962, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:03.914+02', '{"cached":null,"ignore_cache":false}'), +(963, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:04.156+02', '{"cached":null,"ignore_cache":false}'), +(964, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:04.207+02', '{"cached":null,"ignore_cache":false}'), +(965, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:08.534+02', '{"cached":null,"ignore_cache":null}'), +(966, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:09.418+02', '{"cached":null,"ignore_cache":false}'), +(967, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:09.645+02', '{"cached":null,"ignore_cache":false}'), +(968, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:09.78+02', '{"cached":null,"ignore_cache":false}'), +(969, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:09.809+02', '{"cached":null,"ignore_cache":false}'), +(970, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:35.003+02', '{"cached":null,"ignore_cache":null}'), +(971, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:35.957+02', '{"cached":null,"ignore_cache":false}'), +(972, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:36.059+02', '{"cached":null,"ignore_cache":false}'), +(973, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:36.242+02', '{"cached":null,"ignore_cache":false}'), +(974, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 19:49:36.257+02', '{"cached":null,"ignore_cache":false}'), +(975, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:58.321+02', '{"cached":null,"ignore_cache":null}'), +(976, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:59.376+02', '{"cached":null,"ignore_cache":false}'), +(977, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:59.571+02', '{"cached":null,"ignore_cache":false}'), +(978, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:59.592+02', '{"cached":null,"ignore_cache":false}'), +(979, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 19:50:59.594+02', '{"cached":null,"ignore_cache":false}'), +(980, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:11.603+02', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(981, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:13.459+02', '{"cached":null,"ignore_cache":false}'), +(982, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:13.549+02', '{"cached":null,"ignore_cache":false}'), +(983, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:13.957+02', '{"cached":null,"ignore_cache":false}'), +(984, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:14.118+02', '{"cached":null,"ignore_cache":false}'), +(985, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:47.723+02', '{"cached":null,"ignore_cache":null}'), +(986, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:48.315+02', '{"cached":null,"ignore_cache":false}'), +(987, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:48.428+02', '{"cached":null,"ignore_cache":false}'), +(988, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:48.448+02', '{"cached":null,"ignore_cache":false}'), +(989, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:48.45+02', '{"cached":null,"ignore_cache":false}'), +(990, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:53.366+02', '{"cached":null,"ignore_cache":false}'), +(991, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:53.442+02', '{"cached":null,"ignore_cache":false}'), +(992, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:53.448+02', '{"cached":null,"ignore_cache":false}'), +(993, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 19:51:53.449+02', '{"cached":null,"ignore_cache":false}'), +(994, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:26.331+02', '{"cached":null,"ignore_cache":null}'), +(995, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:27.256+02', '{"cached":null,"ignore_cache":false}'), +(996, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:27.373+02', '{"cached":null,"ignore_cache":false}'), +(997, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:27.44+02', '{"cached":null,"ignore_cache":false}'), +(998, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-15 20:05:27.445+02', '{"cached":null,"ignore_cache":false}'), +(1025, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-15 19:00:53.131+00', '{"cached":null,"ignore_cache":null}'), +(1026, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:27:14.758+00', '{"cached":null,"ignore_cache":null}'), +(1027, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.107+00', '{"cached":null,"ignore_cache":null}'), +(1028, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.578+00', '{"cached":null,"ignore_cache":false}'), +(1029, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.587+00', '{"cached":null,"ignore_cache":false}'), +(1030, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.589+00', '{"cached":null,"ignore_cache":false}'), +(1031, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:38.59+00', '{"cached":null,"ignore_cache":false}'), +(1032, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:56.554+00', '{"cached":null,"ignore_cache":null}'), +(1033, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:28:57.875+00', '{"cached":null,"ignore_cache":false}'), +(1034, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.933+00', '{"cached":null,"ignore_cache":false}'), +(1035, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.934+00', '{"cached":null,"ignore_cache":false}'), +(1036, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:00.97+00', '{"cached":null,"ignore_cache":false}'), +(1037, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:01.09+00', '{"cached":null,"ignore_cache":false}'), +(1038, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:29:01.145+00', '{"cached":null,"ignore_cache":false}'), +(1039, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:04.569+00', '{"cached":null,"ignore_cache":null}'), +(1040, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.22+00', '{"cached":null,"ignore_cache":false}'), +(1041, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.335+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1042, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.368+00', '{"cached":null,"ignore_cache":false}'), +(1043, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:05.372+00', '{"cached":null,"ignore_cache":false}'), +(1044, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.69+00', '{"cached":null,"ignore_cache":false}'), +(1045, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.74+00', '{"cached":null,"ignore_cache":false}'), +(1046, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.741+00', '{"cached":null,"ignore_cache":false}'), +(1047, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:11.756+00', '{"cached":null,"ignore_cache":false}'), +(1048, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.248+00', '{"cached":null,"ignore_cache":false}'), +(1049, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.458+00', '{"cached":null,"ignore_cache":false}'), +(1050, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.492+00', '{"cached":null,"ignore_cache":false}'), +(1051, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:19.515+00', '{"cached":null,"ignore_cache":false}'), +(1052, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:22.964+00', '{"cached":null,"ignore_cache":false}'), +(1053, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:23.009+00', '{"cached":null,"ignore_cache":false}'), +(1054, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:23.096+00', '{"cached":null,"ignore_cache":false}'), +(1055, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:23.125+00', '{"cached":null,"ignore_cache":false}'), +(1056, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.531+00', '{"cached":null,"ignore_cache":false}'), +(1057, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.581+00', '{"cached":null,"ignore_cache":false}'), +(1058, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.709+00', '{"cached":null,"ignore_cache":false}'), +(1059, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:25.711+00', '{"cached":null,"ignore_cache":false}'), +(1060, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:28.854+00', '{"cached":null,"ignore_cache":false}'), +(1061, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:28.961+00', '{"cached":null,"ignore_cache":false}'), +(1062, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:28.977+00', '{"cached":null,"ignore_cache":false}'), +(1063, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:29.008+00', '{"cached":null,"ignore_cache":false}'), +(1064, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:40.115+00', '{"cached":null,"ignore_cache":false}'), +(1065, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:40.255+00', '{"cached":null,"ignore_cache":false}'), +(1066, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:40.405+00', '{"cached":null,"ignore_cache":false}'), +(1067, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:40.418+00', '{"cached":null,"ignore_cache":false}'), +(1068, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:31:40.497+00', '{"cached":null,"ignore_cache":false}'), +(1069, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.799+00', '{"cached":null,"ignore_cache":false}'), +(1070, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.819+00', '{"cached":null,"ignore_cache":false}'), +(1071, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.827+00', '{"cached":null,"ignore_cache":false}'), +(1072, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:01.844+00', '{"cached":null,"ignore_cache":false}'), +(1073, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.262+00', '{"cached":null,"ignore_cache":false}'), +(1074, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.268+00', '{"cached":null,"ignore_cache":false}'), +(1075, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.296+00', '{"cached":null,"ignore_cache":false}'), +(1076, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:05.385+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1077, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:09.159+00', '{"cached":null,"ignore_cache":false}'), +(1078, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:09.212+00', '{"cached":null,"ignore_cache":false}'), +(1079, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:09.221+00', '{"cached":null,"ignore_cache":false}'), +(1080, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:09.228+00', '{"cached":null,"ignore_cache":false}'), +(1081, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:19.291+00', '{"cached":null,"ignore_cache":false}'), +(1082, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:19.353+00', '{"cached":null,"ignore_cache":false}'), +(1083, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:19.384+00', '{"cached":null,"ignore_cache":false}'), +(1084, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:19.387+00', '{"cached":null,"ignore_cache":false}'), +(1085, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:19.512+00', '{"cached":null,"ignore_cache":false}'), +(1086, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:21.906+00', '{"cached":null,"ignore_cache":false}'), +(1087, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:21.94+00', '{"cached":null,"ignore_cache":false}'), +(1088, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:21.991+00', '{"cached":null,"ignore_cache":false}'), +(1089, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:22.015+00', '{"cached":null,"ignore_cache":false}'), +(1090, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:31.003+00', '{"cached":null,"ignore_cache":false}'), +(1091, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:31.086+00', '{"cached":null,"ignore_cache":false}'), +(1092, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:31.102+00', '{"cached":null,"ignore_cache":false}'), +(1093, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:31.125+00', '{"cached":null,"ignore_cache":false}'), +(1094, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.3+00', '{"cached":null,"ignore_cache":false}'), +(1095, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.327+00', '{"cached":null,"ignore_cache":false}'), +(1096, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.34+00', '{"cached":null,"ignore_cache":false}'), +(1097, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:32:40.343+00', '{"cached":null,"ignore_cache":false}'), +(1098, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.504+00', '{"cached":null,"ignore_cache":false}'), +(1099, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.557+00', '{"cached":null,"ignore_cache":false}'), +(1100, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.561+00', '{"cached":null,"ignore_cache":false}'), +(1101, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.681+00', '{"cached":null,"ignore_cache":false}'), +(1102, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:10.717+00', '{"cached":null,"ignore_cache":false}'), +(1103, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:34.675+00', '{"cached":null,"ignore_cache":false}'), +(1104, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:35.035+00', '{"cached":null,"ignore_cache":false}'), +(1105, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:35.041+00', '{"cached":null,"ignore_cache":false}'), +(1106, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:35.062+00', '{"cached":null,"ignore_cache":false}'), +(1107, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:34:35.124+00', '{"cached":null,"ignore_cache":false}'), +(1108, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:00.224+00', '{"cached":null,"ignore_cache":false}'), +(1109, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:00.236+00', '{"cached":null,"ignore_cache":false}'), +(1110, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:00.295+00', '{"cached":null,"ignore_cache":false}'), +(1111, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:00.3+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1112, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:00.392+00', '{"cached":null,"ignore_cache":false}'), +(1113, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:31.001+00', '{"cached":null,"ignore_cache":false}'), +(1114, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:31.069+00', '{"cached":null,"ignore_cache":false}'), +(1115, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:31.157+00', '{"cached":null,"ignore_cache":false}'), +(1116, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:31.324+00', '{"cached":null,"ignore_cache":false}'), +(1117, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 07:35:31.327+00', '{"cached":null,"ignore_cache":false}'), +(1118, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.237+00', '{"cached":null,"ignore_cache":false}'), +(1119, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.255+00', '{"cached":null,"ignore_cache":false}'), +(1120, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.286+00', '{"cached":null,"ignore_cache":false}'), +(1121, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.31+00', '{"cached":null,"ignore_cache":false}'), +(1122, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:11.311+00', '{"cached":null,"ignore_cache":false}'), +(1123, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.389+00', '{"cached":null,"ignore_cache":false}'), +(1124, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.469+00', '{"cached":null,"ignore_cache":false}'), +(1125, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.487+00', '{"cached":null,"ignore_cache":false}'), +(1126, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.555+00', '{"cached":null,"ignore_cache":false}'), +(1127, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:29.584+00', '{"cached":null,"ignore_cache":false}'), +(1128, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.806+00', '{"cached":null,"ignore_cache":false}'), +(1129, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.913+00', '{"cached":null,"ignore_cache":false}'), +(1130, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:03:59.983+00', '{"cached":null,"ignore_cache":false}'), +(1131, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:00.038+00', '{"cached":null,"ignore_cache":false}'), +(1132, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:00.144+00', '{"cached":null,"ignore_cache":false}'), +(1133, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.309+00', '{"cached":null,"ignore_cache":false}'), +(1134, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.34+00', '{"cached":null,"ignore_cache":false}'), +(1135, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.357+00', '{"cached":null,"ignore_cache":false}'), +(1136, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:24.371+00', '{"cached":null,"ignore_cache":false}'), +(1137, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.666+00', '{"cached":null,"ignore_cache":false}'), +(1138, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.686+00', '{"cached":null,"ignore_cache":false}'), +(1139, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.722+00', '{"cached":null,"ignore_cache":false}'), +(1140, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:30.727+00', '{"cached":null,"ignore_cache":false}'), +(1141, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.837+00', '{"cached":null,"ignore_cache":false}'), +(1142, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.878+00', '{"cached":null,"ignore_cache":false}'), +(1143, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.905+00', '{"cached":null,"ignore_cache":false}'), +(1144, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:36.912+00', '{"cached":null,"ignore_cache":false}'), +(1145, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:59.143+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1146, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:59.284+00', '{"cached":null,"ignore_cache":false}'), +(1147, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:59.34+00', '{"cached":null,"ignore_cache":false}'), +(1148, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:59.415+00', '{"cached":null,"ignore_cache":false}'), +(1149, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:04:59.451+00', '{"cached":null,"ignore_cache":false}'), +(1150, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.791+00', '{"cached":null,"ignore_cache":false}'), +(1151, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.795+00', '{"cached":null,"ignore_cache":false}'), +(1152, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.819+00', '{"cached":null,"ignore_cache":false}'), +(1153, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.858+00', '{"cached":null,"ignore_cache":false}'), +(1154, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:05:50.874+00', '{"cached":null,"ignore_cache":false}'), +(1155, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.745+00', '{"cached":null,"ignore_cache":false}'), +(1156, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.809+00', '{"cached":null,"ignore_cache":false}'), +(1157, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.832+00', '{"cached":null,"ignore_cache":false}'), +(1158, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:14.848+00', '{"cached":null,"ignore_cache":false}'), +(1159, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:15.33+00', '{"cached":null,"ignore_cache":false}'), +(1160, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.848+00', '{"cached":null,"ignore_cache":false}'), +(1161, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.93+00', '{"cached":null,"ignore_cache":false}'), +(1162, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:32.995+00', '{"cached":null,"ignore_cache":false}'), +(1163, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:33.021+00', '{"cached":null,"ignore_cache":false}'), +(1164, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:13:33.187+00', '{"cached":null,"ignore_cache":false}'), +(1165, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:33.071+00', '{"cached":null,"ignore_cache":false}'), +(1166, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:33.135+00', '{"cached":null,"ignore_cache":false}'), +(1167, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:33.137+00', '{"cached":null,"ignore_cache":false}'), +(1168, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:33.167+00', '{"cached":null,"ignore_cache":false}'), +(1169, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.645+00', '{"cached":null,"ignore_cache":false}'), +(1170, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.665+00', '{"cached":null,"ignore_cache":false}'), +(1171, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.701+00', '{"cached":null,"ignore_cache":false}'), +(1172, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:34.713+00', '{"cached":null,"ignore_cache":false}'), +(1173, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.669+00', '{"cached":null,"ignore_cache":false}'), +(1174, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.673+00', '{"cached":null,"ignore_cache":false}'), +(1175, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.721+00', '{"cached":null,"ignore_cache":false}'), +(1176, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:17:39.724+00', '{"cached":null,"ignore_cache":false}'), +(1177, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.442+00', '{"cached":null,"ignore_cache":false}'), +(1178, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.582+00', '{"cached":null,"ignore_cache":false}'), +(1179, NULL, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.741+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1180, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.744+00', '{"cached":null,"ignore_cache":false}'), +(1181, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:19:15.772+00', '{"cached":null,"ignore_cache":false}'), +(1182, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.734+00', '{"cached":null,"ignore_cache":false}'), +(1183, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.777+00', '{"cached":null,"ignore_cache":false}'), +(1184, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.891+00', '{"cached":null,"ignore_cache":false}'), +(1185, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:49.94+00', '{"cached":null,"ignore_cache":false}'), +(1186, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:20:50.061+00', '{"cached":null,"ignore_cache":false}'), +(1187, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:39.219+00', '{"cached":null,"ignore_cache":null}'), +(1188, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:40.053+00', '{"cached":null,"ignore_cache":false}'), +(1189, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:40.056+00', '{"cached":null,"ignore_cache":false}'), +(1190, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:40.103+00', '{"cached":null,"ignore_cache":false}'), +(1191, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 08:32:40.117+00', '{"cached":null,"ignore_cache":false}'), +(1192, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:33:24.558+00', '{"cached":null,"ignore_cache":null}'), +(1193, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:33:24.979+00', '{"cached":null,"ignore_cache":false}'), +(1194, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 08:34:05.086+00', '{"cached":null,"ignore_cache":null}'), +(1195, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:34:17.943+00', '{"cached":null,"ignore_cache":null}'), +(1196, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:34:18.325+00', '{"cached":null,"ignore_cache":false}'), +(1197, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:36:05.656+00', '{"cached":null,"ignore_cache":null}'), +(1198, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:36:06.088+00', '{"cached":null,"ignore_cache":false}'), +(1199, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:40:58.664+00', '{"cached":null,"ignore_cache":null}'), +(1200, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:40:58.999+00', '{"cached":null,"ignore_cache":false}'), +(1201, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:42:28.961+00', '{"cached":null,"ignore_cache":null}'), +(1202, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 08:42:29.267+00', '{"cached":null,"ignore_cache":false}'), +(1203, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 09:11:33.146+00', '{"cached":null,"ignore_cache":null}'), +(1204, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 09:11:33.528+00', '{"cached":null,"ignore_cache":false}'), +(1205, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:17.88+00', '{"cached":null,"ignore_cache":null}'), +(1206, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.186+00', '{"cached":null,"ignore_cache":false}'), +(1207, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.196+00', '{"cached":null,"ignore_cache":false}'), +(1208, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.206+00', '{"cached":null,"ignore_cache":false}'), +(1209, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.232+00', '{"cached":null,"ignore_cache":false}'), +(1210, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:18.249+00', '{"cached":null,"ignore_cache":false}'), +(1211, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:46.81+00', '{"cached":null,"ignore_cache":null}'), +(1212, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:50.244+00', '{"cached":null,"ignore_cache":null}'), +(1213, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 09:56:50.812+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1214, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 09:58:59.707+00', '{"cached":null,"ignore_cache":false}'), +(1215, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:08:06.279+00', '{"cached":null,"ignore_cache":null}'), +(1216, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:08:06.7+00', '{"cached":null,"ignore_cache":false}'), +(1217, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:23:02.886+00', '{"cached":null,"ignore_cache":null}'), +(1218, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-16 10:23:29.962+00', '{"cached":null,"ignore_cache":null}'), +(1219, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:25:03.456+00', '{"cached":null,"ignore_cache":null}'), +(1220, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:25:03.874+00', '{"cached":null,"ignore_cache":false}'), +(1221, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:10.256+00', '{"cached":null,"ignore_cache":false}'), +(1222, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.026+00', '{"cached":null,"ignore_cache":null}'), +(1223, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.52+00', '{"cached":null,"ignore_cache":false}'), +(1224, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.578+00', '{"cached":null,"ignore_cache":false}'), +(1225, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.591+00', '{"cached":null,"ignore_cache":false}'), +(1226, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.624+00', '{"cached":null,"ignore_cache":false}'), +(1227, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:29.641+00', '{"cached":null,"ignore_cache":false}'), +(1228, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:41.855+00', '{"cached":null,"ignore_cache":null}'), +(1229, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.197+00', '{"cached":null,"ignore_cache":false}'), +(1230, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.2+00', '{"cached":null,"ignore_cache":false}'), +(1231, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.274+00', '{"cached":null,"ignore_cache":false}'), +(1232, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.303+00', '{"cached":null,"ignore_cache":false}'), +(1233, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:42.352+00', '{"cached":null,"ignore_cache":false}'), +(1234, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:56.701+00', '{"cached":null,"ignore_cache":null}'), +(1235, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:57.021+00', '{"cached":null,"ignore_cache":false}'), +(1236, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:57.022+00', '{"cached":null,"ignore_cache":false}'), +(1237, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:57.037+00', '{"cached":null,"ignore_cache":false}'), +(1238, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:57.047+00', '{"cached":null,"ignore_cache":false}'), +(1239, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:37:57.058+00', '{"cached":null,"ignore_cache":false}'), +(1240, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:01.273+00', '{"cached":null,"ignore_cache":null}'), +(1241, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:01.62+00', '{"cached":null,"ignore_cache":false}'), +(1242, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:08.986+00', '{"cached":null,"ignore_cache":null}'), +(1243, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.482+00', '{"cached":null,"ignore_cache":false}'), +(1244, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.489+00', '{"cached":null,"ignore_cache":false}'), +(1245, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.49+00', '{"cached":null,"ignore_cache":false}'), +(1246, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.551+00', '{"cached":null,"ignore_cache":false}'), +(1247, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.577+00', '{"cached":null,"ignore_cache":false}'), +(1248, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:38:09.582+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1249, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:49.57+00', '{"cached":null,"ignore_cache":null}'), +(1250, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.346+00', '{"cached":null,"ignore_cache":null}'), +(1251, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.686+00', '{"cached":null,"ignore_cache":false}'), +(1252, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.755+00', '{"cached":null,"ignore_cache":false}'), +(1253, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.781+00', '{"cached":null,"ignore_cache":false}'), +(1254, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.782+00', '{"cached":null,"ignore_cache":false}'), +(1255, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.783+00', '{"cached":null,"ignore_cache":false}'), +(1256, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:39:59.785+00', '{"cached":null,"ignore_cache":false}'), +(1257, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-16 10:40:51.771+00', '{"cached":null,"ignore_cache":null}'), +(1258, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:38.247+00', '{"cached":null,"ignore_cache":null}'), +(1259, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.066+00', '{"cached":null,"ignore_cache":null}'), +(1260, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.46+00', '{"cached":null,"ignore_cache":null}'), +(1261, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.699+00', '{"cached":null,"ignore_cache":false}'), +(1262, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.794+00', '{"cached":null,"ignore_cache":false}'), +(1263, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.895+00', '{"cached":null,"ignore_cache":false}'), +(1264, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:50.943+00', '{"cached":null,"ignore_cache":false}'), +(1265, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:51.036+00', '{"cached":null,"ignore_cache":false}'), +(1266, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:51.062+00', '{"cached":null,"ignore_cache":false}'), +(1267, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:51.161+00', '{"cached":null,"ignore_cache":false}'), +(1268, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:44:13.906+00', '{"cached":null,"ignore_cache":null}'), +(1269, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:37.432+00', '{"cached":null,"ignore_cache":false}'), +(1270, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.035+00', '{"cached":null,"ignore_cache":false}'), +(1271, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.125+00', '{"cached":null,"ignore_cache":false}'), +(1272, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.149+00', '{"cached":null,"ignore_cache":false}'), +(1273, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.251+00', '{"cached":null,"ignore_cache":false}'), +(1274, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.255+00', '{"cached":null,"ignore_cache":false}'), +(1275, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.259+00', '{"cached":null,"ignore_cache":false}'), +(1276, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.287+00', '{"cached":null,"ignore_cache":false}'), +(1277, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.294+00', '{"cached":null,"ignore_cache":false}'), +(1278, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.391+00', '{"cached":null,"ignore_cache":false}'), +(1279, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.44+00', '{"cached":null,"ignore_cache":false}'), +(1280, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:46:38.581+00', '{"cached":null,"ignore_cache":false}'), +(1281, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:32.714+00', '{"cached":null,"ignore_cache":null}'), +(1282, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.518+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1283, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.572+00', '{"cached":null,"ignore_cache":false}'), +(1284, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.651+00', '{"cached":null,"ignore_cache":false}'), +(1285, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.674+00', '{"cached":null,"ignore_cache":false}'), +(1286, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.696+00', '{"cached":null,"ignore_cache":false}'), +(1287, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.725+00', '{"cached":null,"ignore_cache":false}'), +(1288, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:57:33.756+00', '{"cached":null,"ignore_cache":false}'), +(1289, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 10:58:27.943+00', '{"cached":null,"ignore_cache":null}'), +(1290, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.028+00', '{"cached":null,"ignore_cache":false}'), +(1291, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.039+00', '{"cached":null,"ignore_cache":false}'), +(1292, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.089+00', '{"cached":null,"ignore_cache":false}'), +(1293, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.141+00', '{"cached":null,"ignore_cache":false}'), +(1294, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.143+00', '{"cached":null,"ignore_cache":false}'), +(1295, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.235+00', '{"cached":null,"ignore_cache":false}'), +(1296, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.264+00', '{"cached":null,"ignore_cache":false}'), +(1297, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.462+00', '{"cached":null,"ignore_cache":false}'), +(1298, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:02.535+00', '{"cached":null,"ignore_cache":false}'), +(1299, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:44.877+00', '{"cached":null,"ignore_cache":false}'), +(1300, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:45.072+00', '{"cached":null,"ignore_cache":false}'), +(1301, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:45.078+00', '{"cached":null,"ignore_cache":false}'), +(1302, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:45.129+00', '{"cached":null,"ignore_cache":false}'), +(1303, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:45.255+00', '{"cached":null,"ignore_cache":false}'), +(1304, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:45.263+00', '{"cached":null,"ignore_cache":false}'), +(1305, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:45.283+00', '{"cached":null,"ignore_cache":false}'), +(1306, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.64+00', '{"cached":null,"ignore_cache":false}'), +(1307, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.648+00', '{"cached":null,"ignore_cache":false}'), +(1308, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.652+00', '{"cached":null,"ignore_cache":false}'), +(1309, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.693+00', '{"cached":null,"ignore_cache":false}'), +(1310, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.694+00', '{"cached":null,"ignore_cache":false}'), +(1311, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.725+00', '{"cached":null,"ignore_cache":false}'), +(1312, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:49.748+00', '{"cached":null,"ignore_cache":false}'), +(1313, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.429+00', '{"cached":null,"ignore_cache":false}'), +(1314, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.5+00', '{"cached":null,"ignore_cache":false}'), +(1315, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.526+00', '{"cached":null,"ignore_cache":false}'), +(1316, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.54+00', '{"cached":null,"ignore_cache":false}'), +(1317, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.56+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1318, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.671+00', '{"cached":null,"ignore_cache":false}'), +(1319, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:52.691+00', '{"cached":null,"ignore_cache":false}'), +(1320, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.619+00', '{"cached":null,"ignore_cache":false}'), +(1321, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.662+00', '{"cached":null,"ignore_cache":false}'), +(1322, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.872+00', '{"cached":null,"ignore_cache":false}'), +(1323, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.873+00', '{"cached":null,"ignore_cache":false}'), +(1324, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.911+00', '{"cached":null,"ignore_cache":false}'), +(1325, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.93+00', '{"cached":null,"ignore_cache":false}'), +(1326, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 10:59:54.951+00', '{"cached":null,"ignore_cache":false}'), +(1327, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.37+00', '{"cached":null,"ignore_cache":false}'), +(1328, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.428+00', '{"cached":null,"ignore_cache":false}'), +(1329, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.512+00', '{"cached":null,"ignore_cache":false}'), +(1330, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.573+00', '{"cached":null,"ignore_cache":false}'), +(1331, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.575+00', '{"cached":null,"ignore_cache":false}'), +(1332, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.606+00', '{"cached":null,"ignore_cache":false}'), +(1333, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:00.634+00', '{"cached":null,"ignore_cache":false}'), +(1334, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.324+00', '{"cached":null,"ignore_cache":false}'), +(1335, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.349+00', '{"cached":null,"ignore_cache":false}'), +(1336, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.532+00', '{"cached":null,"ignore_cache":false}'), +(1337, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.68+00', '{"cached":null,"ignore_cache":false}'), +(1338, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.711+00', '{"cached":null,"ignore_cache":false}'), +(1339, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.715+00', '{"cached":null,"ignore_cache":false}'), +(1340, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:19.727+00', '{"cached":null,"ignore_cache":false}'), +(1341, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.723+00', '{"cached":null,"ignore_cache":false}'), +(1342, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.776+00', '{"cached":null,"ignore_cache":false}'), +(1343, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.83+00', '{"cached":null,"ignore_cache":false}'), +(1344, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.842+00', '{"cached":null,"ignore_cache":false}'), +(1345, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.854+00', '{"cached":null,"ignore_cache":false}'), +(1346, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.866+00', '{"cached":null,"ignore_cache":false}'), +(1347, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:22.932+00', '{"cached":null,"ignore_cache":false}'), +(1348, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.898+00', '{"cached":null,"ignore_cache":false}'), +(1349, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.899+00', '{"cached":null,"ignore_cache":false}'), +(1350, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.929+00', '{"cached":null,"ignore_cache":false}'), +(1351, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.935+00', '{"cached":null,"ignore_cache":false}'), +(1352, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.938+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1353, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.948+00', '{"cached":null,"ignore_cache":false}'), +(1354, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:27.995+00', '{"cached":null,"ignore_cache":false}'), +(1355, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.565+00', '{"cached":null,"ignore_cache":false}'), +(1356, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.58+00', '{"cached":null,"ignore_cache":false}'), +(1357, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.818+00', '{"cached":null,"ignore_cache":false}'), +(1358, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.862+00', '{"cached":null,"ignore_cache":false}'), +(1359, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.925+00', '{"cached":null,"ignore_cache":false}'), +(1360, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.932+00', '{"cached":null,"ignore_cache":false}'), +(1361, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:31.949+00', '{"cached":null,"ignore_cache":false}'), +(1362, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.599+00', '{"cached":null,"ignore_cache":false}'), +(1363, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.603+00', '{"cached":null,"ignore_cache":false}'), +(1364, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.735+00', '{"cached":null,"ignore_cache":false}'), +(1365, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.738+00', '{"cached":null,"ignore_cache":false}'), +(1366, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.751+00', '{"cached":null,"ignore_cache":false}'), +(1367, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.762+00', '{"cached":null,"ignore_cache":false}'), +(1368, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:36.769+00', '{"cached":null,"ignore_cache":false}'), +(1369, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.551+00', '{"cached":null,"ignore_cache":false}'), +(1370, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.553+00', '{"cached":null,"ignore_cache":false}'), +(1371, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.572+00', '{"cached":null,"ignore_cache":false}'), +(1372, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.696+00', '{"cached":null,"ignore_cache":false}'), +(1373, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.698+00', '{"cached":null,"ignore_cache":false}'), +(1374, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.699+00', '{"cached":null,"ignore_cache":false}'), +(1375, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:00:45.721+00', '{"cached":null,"ignore_cache":false}'), +(1376, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.594+00', '{"cached":null,"ignore_cache":null}'), +(1377, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.973+00', '{"cached":null,"ignore_cache":false}'), +(1378, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:38.974+00', '{"cached":null,"ignore_cache":false}'), +(1379, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:39.038+00', '{"cached":null,"ignore_cache":false}'), +(1380, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:39.064+00', '{"cached":null,"ignore_cache":false}'), +(1381, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:39.079+00', '{"cached":null,"ignore_cache":false}'), +(1382, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:39.09+00', '{"cached":null,"ignore_cache":false}'), +(1383, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:01:39.099+00', '{"cached":null,"ignore_cache":false}'), +(1384, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.617+00', '{"cached":null,"ignore_cache":false}'), +(1385, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.711+00', '{"cached":null,"ignore_cache":false}'), +(1386, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.712+00', '{"cached":null,"ignore_cache":false}'), +(1387, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.809+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1388, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.907+00', '{"cached":null,"ignore_cache":false}'), +(1389, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.912+00', '{"cached":null,"ignore_cache":false}'), +(1390, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:04:04.937+00', '{"cached":null,"ignore_cache":false}'), +(1391, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:05:15.909+00', '{"cached":null,"ignore_cache":null}'), +(1392, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:05:38.234+00', '{"cached":null,"ignore_cache":null}'), +(1393, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:05:38.64+00', '{"cached":null,"ignore_cache":false}'), +(1394, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.524+00', '{"cached":null,"ignore_cache":null}'), +(1395, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:21.973+00', '{"cached":null,"ignore_cache":false}'), +(1396, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:22.018+00', '{"cached":null,"ignore_cache":false}'), +(1397, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:22.033+00', '{"cached":null,"ignore_cache":false}'), +(1398, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:22.066+00', '{"cached":null,"ignore_cache":false}'), +(1399, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:22.067+00', '{"cached":null,"ignore_cache":false}'), +(1400, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:22.106+00', '{"cached":null,"ignore_cache":false}'), +(1401, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:22.132+00', '{"cached":null,"ignore_cache":false}'), +(1402, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:24.251+00', '{"cached":null,"ignore_cache":null}'), +(1403, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:06:24.65+00', '{"cached":null,"ignore_cache":false}'), +(1404, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:50.764+00', '{"cached":null,"ignore_cache":null}'), +(1405, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.035+00', '{"cached":null,"ignore_cache":false}'), +(1406, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.166+00', '{"cached":null,"ignore_cache":false}'), +(1407, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.195+00', '{"cached":null,"ignore_cache":false}'), +(1408, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.212+00', '{"cached":null,"ignore_cache":false}'), +(1409, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.233+00', '{"cached":null,"ignore_cache":false}'), +(1410, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.242+00', '{"cached":null,"ignore_cache":false}'), +(1411, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:07:51.242+00', '{"cached":null,"ignore_cache":false}'), +(1412, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:33.894+00', '{"cached":null,"ignore_cache":null}'), +(1413, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.196+00', '{"cached":null,"ignore_cache":false}'), +(1414, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.197+00', '{"cached":null,"ignore_cache":false}'), +(1415, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.482+00', '{"cached":null,"ignore_cache":false}'), +(1416, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.628+00', '{"cached":null,"ignore_cache":false}'), +(1417, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.807+00', '{"cached":null,"ignore_cache":false}'), +(1418, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.887+00', '{"cached":null,"ignore_cache":false}'), +(1419, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:50.897+00', '{"cached":null,"ignore_cache":false}'), +(1420, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:51.012+00', '{"cached":null,"ignore_cache":false}'), +(1421, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:51.058+00', '{"cached":null,"ignore_cache":false}'), +(1422, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:51.724+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1423, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:51.813+00', '{"cached":null,"ignore_cache":false}'), +(1424, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.37+00', '{"cached":null,"ignore_cache":false}'), +(1425, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.415+00', '{"cached":null,"ignore_cache":false}'), +(1426, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.459+00', '{"cached":null,"ignore_cache":false}'), +(1427, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.588+00', '{"cached":null,"ignore_cache":false}'), +(1428, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.638+00', '{"cached":null,"ignore_cache":false}'), +(1429, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:13:56.694+00', '{"cached":null,"ignore_cache":false}'), +(1430, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:00.15+00', '{"cached":null,"ignore_cache":false}'), +(1431, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:00.185+00', '{"cached":null,"ignore_cache":false}'), +(1432, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:00.392+00', '{"cached":null,"ignore_cache":false}'), +(1433, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:00.427+00', '{"cached":null,"ignore_cache":false}'), +(1434, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:00.429+00', '{"cached":null,"ignore_cache":false}'), +(1435, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:00.476+00', '{"cached":null,"ignore_cache":false}'), +(1436, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.14+00', '{"cached":null,"ignore_cache":false}'), +(1437, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.347+00', '{"cached":null,"ignore_cache":false}'), +(1438, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.358+00', '{"cached":null,"ignore_cache":false}'), +(1439, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.432+00', '{"cached":null,"ignore_cache":false}'), +(1440, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.451+00', '{"cached":null,"ignore_cache":false}'), +(1441, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:14:05.508+00', '{"cached":null,"ignore_cache":false}'), +(1442, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.277+00', '{"cached":null,"ignore_cache":null}'), +(1443, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.652+00', '{"cached":null,"ignore_cache":false}'), +(1444, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.668+00', '{"cached":null,"ignore_cache":false}'), +(1445, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.72+00', '{"cached":null,"ignore_cache":false}'), +(1446, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.738+00', '{"cached":null,"ignore_cache":false}'), +(1447, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.755+00', '{"cached":null,"ignore_cache":false}'), +(1448, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:14.77+00', '{"cached":null,"ignore_cache":false}'), +(1449, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.329+00', '{"cached":null,"ignore_cache":false}'), +(1450, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.359+00', '{"cached":null,"ignore_cache":false}'), +(1451, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.423+00', '{"cached":null,"ignore_cache":false}'), +(1452, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.428+00', '{"cached":null,"ignore_cache":false}'), +(1453, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.47+00', '{"cached":null,"ignore_cache":false}'), +(1454, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:18.478+00', '{"cached":null,"ignore_cache":false}'), +(1455, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.848+00', '{"cached":null,"ignore_cache":false}'), +(1456, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.859+00', '{"cached":null,"ignore_cache":false}'), +(1457, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.92+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1458, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:23.949+00', '{"cached":null,"ignore_cache":false}'), +(1459, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:24.02+00', '{"cached":null,"ignore_cache":false}'), +(1460, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:24.022+00', '{"cached":null,"ignore_cache":false}'), +(1461, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.554+00', '{"cached":null,"ignore_cache":false}'), +(1462, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.612+00', '{"cached":null,"ignore_cache":false}'), +(1463, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.613+00', '{"cached":null,"ignore_cache":false}'), +(1464, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.65+00', '{"cached":null,"ignore_cache":false}'), +(1465, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.666+00', '{"cached":null,"ignore_cache":false}'), +(1466, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:15:59.705+00', '{"cached":null,"ignore_cache":false}'), +(1467, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.329+00', '{"cached":null,"ignore_cache":false}'), +(1468, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.457+00', '{"cached":null,"ignore_cache":false}'), +(1469, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.584+00', '{"cached":null,"ignore_cache":false}'), +(1470, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.592+00', '{"cached":null,"ignore_cache":false}'), +(1471, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.593+00', '{"cached":null,"ignore_cache":false}'), +(1472, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:03.616+00', '{"cached":null,"ignore_cache":false}'), +(1473, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:27.896+00', '{"cached":null,"ignore_cache":null}'), +(1474, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.338+00', '{"cached":null,"ignore_cache":false}'), +(1475, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.379+00', '{"cached":null,"ignore_cache":false}'), +(1476, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.533+00', '{"cached":null,"ignore_cache":false}'), +(1477, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.539+00', '{"cached":null,"ignore_cache":false}'), +(1478, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.642+00', '{"cached":null,"ignore_cache":false}'), +(1479, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:28.646+00', '{"cached":null,"ignore_cache":false}'), +(1480, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.353+00', '{"cached":null,"ignore_cache":false}'), +(1481, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.363+00', '{"cached":null,"ignore_cache":false}'), +(1482, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.367+00', '{"cached":null,"ignore_cache":false}'), +(1483, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.4+00', '{"cached":null,"ignore_cache":false}'), +(1484, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.459+00', '{"cached":null,"ignore_cache":false}'), +(1485, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:30.469+00', '{"cached":null,"ignore_cache":false}'), +(1486, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.792+00', '{"cached":null,"ignore_cache":false}'), +(1487, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.833+00', '{"cached":null,"ignore_cache":false}'), +(1488, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.902+00', '{"cached":null,"ignore_cache":false}'), +(1489, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:32.907+00', '{"cached":null,"ignore_cache":false}'), +(1490, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:33.11+00', '{"cached":null,"ignore_cache":false}'), +(1491, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:33.116+00', '{"cached":null,"ignore_cache":false}'), +(1492, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.316+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1493, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.352+00', '{"cached":null,"ignore_cache":false}'), +(1494, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.374+00', '{"cached":null,"ignore_cache":false}'), +(1495, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.436+00', '{"cached":null,"ignore_cache":false}'), +(1496, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.467+00', '{"cached":null,"ignore_cache":false}'), +(1497, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:35.549+00', '{"cached":null,"ignore_cache":false}'), +(1498, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.554+00', '{"cached":null,"ignore_cache":false}'), +(1499, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.673+00', '{"cached":null,"ignore_cache":false}'), +(1500, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.687+00', '{"cached":null,"ignore_cache":false}'), +(1501, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.812+00', '{"cached":null,"ignore_cache":false}'), +(1502, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.822+00', '{"cached":null,"ignore_cache":false}'), +(1503, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:37.864+00', '{"cached":null,"ignore_cache":false}'), +(1504, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.563+00', '{"cached":null,"ignore_cache":false}'), +(1505, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.586+00', '{"cached":null,"ignore_cache":false}'), +(1506, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.619+00', '{"cached":null,"ignore_cache":false}'), +(1507, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.646+00', '{"cached":null,"ignore_cache":false}'), +(1508, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.651+00', '{"cached":null,"ignore_cache":false}'), +(1509, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:16:44.71+00', '{"cached":null,"ignore_cache":false}'), +(1510, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:38.845+00', '{"cached":null,"ignore_cache":null}'), +(1511, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.256+00', '{"cached":null,"ignore_cache":false}'), +(1512, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.415+00', '{"cached":null,"ignore_cache":false}'), +(1513, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.423+00', '{"cached":null,"ignore_cache":false}'), +(1514, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.441+00', '{"cached":null,"ignore_cache":false}'), +(1515, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.502+00', '{"cached":null,"ignore_cache":false}'), +(1516, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:17:39.514+00', '{"cached":null,"ignore_cache":false}'), +(1517, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:40.413+00', '{"cached":null,"ignore_cache":null}'), +(1518, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.168+00', '{"cached":null,"ignore_cache":false}'), +(1519, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.307+00', '{"cached":null,"ignore_cache":false}'), +(1520, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.34+00', '{"cached":null,"ignore_cache":false}'), +(1521, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.343+00', '{"cached":null,"ignore_cache":false}'), +(1522, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.349+00', '{"cached":null,"ignore_cache":false}'), +(1523, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:41.37+00', '{"cached":null,"ignore_cache":false}'), +(1524, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.827+00', '{"cached":null,"ignore_cache":false}'), +(1525, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.871+00', '{"cached":null,"ignore_cache":false}'), +(1526, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.938+00', '{"cached":null,"ignore_cache":false}'), +(1527, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.947+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1528, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.98+00', '{"cached":null,"ignore_cache":false}'), +(1529, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:47:57.995+00', '{"cached":null,"ignore_cache":false}'), +(1530, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.887+00', '{"cached":null,"ignore_cache":false}'), +(1531, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.96+00', '{"cached":null,"ignore_cache":false}'), +(1532, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.988+00', '{"cached":null,"ignore_cache":false}'), +(1533, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.99+00', '{"cached":null,"ignore_cache":false}'), +(1534, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:11.992+00', '{"cached":null,"ignore_cache":false}'), +(1535, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:48:12.024+00', '{"cached":null,"ignore_cache":false}'), +(1536, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.23+00', '{"cached":null,"ignore_cache":null}'), +(1537, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.581+00', '{"cached":null,"ignore_cache":false}'), +(1538, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.609+00', '{"cached":null,"ignore_cache":false}'), +(1539, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.648+00', '{"cached":null,"ignore_cache":false}'), +(1540, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.688+00', '{"cached":null,"ignore_cache":false}'), +(1541, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.703+00', '{"cached":null,"ignore_cache":false}'), +(1542, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:30.715+00', '{"cached":null,"ignore_cache":false}'), +(1543, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:53.502+00', '{"cached":null,"ignore_cache":null}'), +(1544, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:53:53.843+00', '{"cached":null,"ignore_cache":false}'), +(1545, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.191+00', '{"cached":null,"ignore_cache":false}'), +(1546, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.306+00', '{"cached":null,"ignore_cache":false}'), +(1547, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.51+00', '{"cached":null,"ignore_cache":false}'), +(1548, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.533+00', '{"cached":null,"ignore_cache":false}'), +(1549, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:49.815+00', '{"cached":null,"ignore_cache":false}'), +(1550, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:50.013+00', '{"cached":null,"ignore_cache":false}'), +(1551, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:50.11+00', '{"cached":null,"ignore_cache":false}'), +(1552, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:50.155+00', '{"cached":null,"ignore_cache":false}'), +(1553, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:54.15+00', '{"cached":null,"ignore_cache":false}'), +(1554, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:54.194+00', '{"cached":null,"ignore_cache":false}'), +(1555, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:54.196+00', '{"cached":null,"ignore_cache":false}'), +(1556, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:54.202+00', '{"cached":null,"ignore_cache":false}'), +(1557, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:54.28+00', '{"cached":null,"ignore_cache":false}'), +(1558, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:56:54.281+00', '{"cached":null,"ignore_cache":false}'), +(1559, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:11.257+00', '{"cached":null,"ignore_cache":false}'), +(1560, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.058+00', '{"cached":null,"ignore_cache":null}'), +(1561, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.359+00', '{"cached":null,"ignore_cache":false}'), +(1562, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.426+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1563, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.427+00', '{"cached":null,"ignore_cache":false}'), +(1564, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.43+00', '{"cached":null,"ignore_cache":false}'), +(1565, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.44+00', '{"cached":null,"ignore_cache":false}'), +(1566, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 11:57:16.452+00', '{"cached":null,"ignore_cache":false}'), +(1567, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 11:58:56.408+00', '{"cached":null,"ignore_cache":null}'), +(1568, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:59:02.472+00', '{"cached":null,"ignore_cache":null}'), +(1569, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 11:59:02.782+00', '{"cached":null,"ignore_cache":false}'), +(1570, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:56.764+00', '{"cached":null,"ignore_cache":null}'), +(1571, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.481+00', '{"cached":null,"ignore_cache":false}'), +(1572, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.522+00', '{"cached":null,"ignore_cache":false}'), +(1573, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.574+00', '{"cached":null,"ignore_cache":false}'), +(1574, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.589+00', '{"cached":null,"ignore_cache":false}'), +(1575, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.609+00', '{"cached":null,"ignore_cache":false}'), +(1576, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:01:57.636+00', '{"cached":null,"ignore_cache":false}'), +(1577, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:29.754+00', '{"cached":null,"ignore_cache":false}'), +(1578, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.122+00', '{"cached":null,"ignore_cache":null}'), +(1579, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.5+00', '{"cached":null,"ignore_cache":false}'), +(1580, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.637+00', '{"cached":null,"ignore_cache":false}'), +(1581, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.665+00', '{"cached":null,"ignore_cache":false}'), +(1582, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.697+00', '{"cached":null,"ignore_cache":false}'), +(1583, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.726+00', '{"cached":null,"ignore_cache":false}'), +(1584, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:39.771+00', '{"cached":null,"ignore_cache":false}'), +(1585, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:03:57.027+00', '{"cached":null,"ignore_cache":null}'), +(1586, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:04:07.242+00', '{"cached":null,"ignore_cache":null}'), +(1587, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:12.817+00', '{"cached":null,"ignore_cache":null}'), +(1588, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:18.758+00', '{"cached":null,"ignore_cache":null}'), +(1589, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.062+00', '{"cached":null,"ignore_cache":null}'), +(1590, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.221+00', '{"cached":null,"ignore_cache":false}'), +(1591, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.255+00', '{"cached":null,"ignore_cache":false}'), +(1592, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.258+00', '{"cached":null,"ignore_cache":false}'), +(1593, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.269+00', '{"cached":null,"ignore_cache":false}'), +(1594, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.309+00', '{"cached":null,"ignore_cache":false}'), +(1595, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.328+00', '{"cached":null,"ignore_cache":false}'), +(1596, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:19.337+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1597, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:36.33+00', '{"cached":null,"ignore_cache":null}'), +(1598, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.752+00', '{"cached":null,"ignore_cache":false}'), +(1599, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.762+00', '{"cached":null,"ignore_cache":false}'), +(1600, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.775+00', '{"cached":null,"ignore_cache":false}'), +(1601, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.778+00', '{"cached":null,"ignore_cache":false}'), +(1602, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.782+00', '{"cached":null,"ignore_cache":false}'), +(1603, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:38.795+00', '{"cached":null,"ignore_cache":false}'), +(1604, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:10:16.715+00', '{"cached":null,"ignore_cache":null}'), +(1605, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:11:18.75+00', '{"cached":null,"ignore_cache":null}'), +(1606, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:11:23.487+00', '{"cached":null,"ignore_cache":null}'), +(1607, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:11:23.803+00', '{"cached":null,"ignore_cache":false}'), +(1608, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:11:59.79+00', '{"cached":null,"ignore_cache":false}'), +(1609, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.391+00', '{"cached":null,"ignore_cache":null}'), +(1610, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:03.854+00', '{"cached":null,"ignore_cache":false}'), +(1611, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:04.034+00', '{"cached":null,"ignore_cache":false}'), +(1612, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:04.035+00', '{"cached":null,"ignore_cache":false}'), +(1613, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:04.083+00', '{"cached":null,"ignore_cache":false}'), +(1614, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:04.132+00', '{"cached":null,"ignore_cache":false}'), +(1615, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:04.134+00', '{"cached":null,"ignore_cache":false}'), +(1616, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:04.23+00', '{"cached":null,"ignore_cache":false}'), +(1617, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:57.286+00', '{"cached":null,"ignore_cache":null}'), +(1618, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:59.519+00', '{"cached":null,"ignore_cache":null}'), +(1619, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:12:59.821+00', '{"cached":null,"ignore_cache":false}'), +(1620, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:29.412+00', '{"cached":null,"ignore_cache":false}'), +(1621, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.547+00', '{"cached":null,"ignore_cache":null}'), +(1622, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.896+00', '{"cached":null,"ignore_cache":false}'), +(1623, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.906+00', '{"cached":null,"ignore_cache":false}'), +(1624, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.915+00', '{"cached":null,"ignore_cache":false}'), +(1625, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.931+00', '{"cached":null,"ignore_cache":false}'), +(1626, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.953+00', '{"cached":null,"ignore_cache":false}'), +(1627, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.972+00', '{"cached":null,"ignore_cache":false}'), +(1628, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:36.985+00', '{"cached":null,"ignore_cache":false}'), +(1629, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:04.4+00', '{"cached":null,"ignore_cache":null}'), +(1630, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.865+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1631, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.92+00', '{"cached":null,"ignore_cache":false}'), +(1632, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.95+00', '{"cached":null,"ignore_cache":false}'), +(1633, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.967+00', '{"cached":null,"ignore_cache":false}'), +(1634, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:08.974+00', '{"cached":null,"ignore_cache":false}'), +(1635, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:09.129+00', '{"cached":null,"ignore_cache":false}'), +(1636, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:49.98+00', '{"cached":null,"ignore_cache":null}'), +(1637, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:14:50.292+00', '{"cached":null,"ignore_cache":false}'), +(1638, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:26.785+00', '{"cached":null,"ignore_cache":false}'), +(1639, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.186+00', '{"cached":null,"ignore_cache":null}'), +(1640, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.593+00', '{"cached":null,"ignore_cache":false}'), +(1641, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.606+00', '{"cached":null,"ignore_cache":false}'), +(1642, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.685+00', '{"cached":null,"ignore_cache":false}'), +(1643, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.689+00', '{"cached":null,"ignore_cache":false}'), +(1644, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.705+00', '{"cached":null,"ignore_cache":false}'), +(1645, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.712+00', '{"cached":null,"ignore_cache":false}'), +(1646, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:38.738+00', '{"cached":null,"ignore_cache":false}'), +(1647, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.265+00', '{"cached":null,"ignore_cache":null}'), +(1648, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.79+00', '{"cached":null,"ignore_cache":false}'), +(1649, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.812+00', '{"cached":null,"ignore_cache":false}'), +(1650, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.856+00', '{"cached":null,"ignore_cache":false}'), +(1651, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.876+00', '{"cached":null,"ignore_cache":false}'), +(1652, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.885+00', '{"cached":null,"ignore_cache":false}'), +(1653, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.91+00', '{"cached":null,"ignore_cache":false}'), +(1654, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:49.912+00', '{"cached":null,"ignore_cache":false}'), +(1655, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:16:51.348+00', '{"cached":null,"ignore_cache":null}'), +(1656, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:20.853+00', '{"cached":null,"ignore_cache":null}'), +(1657, 1, 'card', 15, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.229+00', '{"cached":null,"ignore_cache":false}'), +(1658, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.233+00', '{"cached":null,"ignore_cache":false}'), +(1659, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.261+00', '{"cached":null,"ignore_cache":false}'), +(1660, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.284+00', '{"cached":null,"ignore_cache":false}'), +(1661, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.288+00', '{"cached":null,"ignore_cache":false}'), +(1662, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.318+00', '{"cached":null,"ignore_cache":false}'), +(1663, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:21.319+00', '{"cached":null,"ignore_cache":false}'), +(1664, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:39.054+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1665, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:51.718+00', '{"cached":null,"ignore_cache":null}'), +(1666, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:59.036+00', '{"cached":null,"ignore_cache":null}'), +(1667, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:17:59.406+00', '{"cached":null,"ignore_cache":false}'), +(1668, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:18:45.276+00', '{"cached":null,"ignore_cache":false}'), +(1669, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:09.691+00', '{"cached":null,"ignore_cache":null}'), +(1670, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:10.032+00', '{"cached":null,"ignore_cache":false}'), +(1671, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:10.034+00', '{"cached":null,"ignore_cache":false}'), +(1672, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:10.053+00', '{"cached":null,"ignore_cache":false}'), +(1673, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:10.107+00', '{"cached":null,"ignore_cache":false}'), +(1674, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:10.173+00', '{"cached":null,"ignore_cache":false}'), +(1675, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:10.217+00', '{"cached":null,"ignore_cache":false}'), +(1676, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:57.367+00', '{"cached":null,"ignore_cache":null}'), +(1677, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:26:58.757+00', '{"cached":null,"ignore_cache":null}'), +(1678, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:43.682+00', '{"cached":null,"ignore_cache":null}'), +(1679, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.11+00', '{"cached":null,"ignore_cache":false}'), +(1680, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.181+00', '{"cached":null,"ignore_cache":false}'), +(1681, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.254+00', '{"cached":null,"ignore_cache":false}'), +(1682, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.275+00', '{"cached":null,"ignore_cache":false}'), +(1683, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.405+00', '{"cached":null,"ignore_cache":false}'), +(1684, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:44.464+00', '{"cached":null,"ignore_cache":false}'), +(1685, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:52.797+00', '{"cached":null,"ignore_cache":null}'), +(1686, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:53.656+00', '{"cached":null,"ignore_cache":null}'), +(1687, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:40:11.977+00', '{"cached":null,"ignore_cache":null}'), +(1688, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:40:28.663+00', '{"cached":null,"ignore_cache":true}'), +(1689, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:41:52.653+00', '{"cached":null,"ignore_cache":false}'), +(1690, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.153+00', '{"cached":null,"ignore_cache":null}'), +(1691, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.743+00', '{"cached":null,"ignore_cache":false}'), +(1692, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.811+00', '{"cached":null,"ignore_cache":false}'), +(1693, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.815+00', '{"cached":null,"ignore_cache":false}'), +(1694, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.819+00', '{"cached":null,"ignore_cache":false}'), +(1695, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.843+00', '{"cached":null,"ignore_cache":false}'), +(1696, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.883+00', '{"cached":null,"ignore_cache":false}'), +(1697, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:02.884+00', '{"cached":null,"ignore_cache":false}'), +(1698, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:21.335+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1699, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.531+00', '{"cached":null,"ignore_cache":false}'), +(1700, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.574+00', '{"cached":null,"ignore_cache":false}'), +(1701, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.576+00', '{"cached":null,"ignore_cache":false}'), +(1702, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.588+00', '{"cached":null,"ignore_cache":false}'), +(1703, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.619+00', '{"cached":null,"ignore_cache":false}'), +(1704, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.647+00', '{"cached":null,"ignore_cache":false}'), +(1705, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:42:23.665+00', '{"cached":null,"ignore_cache":false}'), +(1706, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.977+00', '{"cached":null,"ignore_cache":false}'), +(1707, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:16.993+00', '{"cached":null,"ignore_cache":false}'), +(1708, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.066+00', '{"cached":null,"ignore_cache":false}'), +(1709, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.184+00', '{"cached":null,"ignore_cache":false}'), +(1710, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.186+00', '{"cached":null,"ignore_cache":false}'), +(1711, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.187+00', '{"cached":null,"ignore_cache":false}'), +(1712, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.232+00', '{"cached":null,"ignore_cache":false}'), +(1713, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.248+00', '{"cached":null,"ignore_cache":false}'), +(1714, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.256+00', '{"cached":null,"ignore_cache":false}'), +(1715, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 12:47:17.287+00', '{"cached":null,"ignore_cache":false}'), +(1716, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:02.846+00', '{"cached":null,"ignore_cache":null}'), +(1717, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:43.311+00', '{"cached":null,"ignore_cache":false}'), +(1718, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:15.85+00', '{"cached":null,"ignore_cache":null}'), +(1719, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.229+00', '{"cached":null,"ignore_cache":false}'), +(1720, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.243+00', '{"cached":null,"ignore_cache":false}'), +(1721, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.277+00', '{"cached":null,"ignore_cache":false}'), +(1722, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.301+00', '{"cached":null,"ignore_cache":false}'), +(1723, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.341+00', '{"cached":null,"ignore_cache":false}'), +(1724, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.351+00', '{"cached":null,"ignore_cache":false}'), +(1725, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:16.38+00', '{"cached":null,"ignore_cache":false}'), +(1726, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:25.791+00', '{"cached":null,"ignore_cache":null}'), +(1727, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:26.029+00', '{"cached":null,"ignore_cache":null}'), +(1728, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:28.711+00', '{"cached":null,"ignore_cache":null}'), +(1729, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.064+00', '{"cached":null,"ignore_cache":false}'), +(1730, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.141+00', '{"cached":null,"ignore_cache":false}'), +(1731, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.178+00', '{"cached":null,"ignore_cache":false}'), +(1732, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.223+00', '{"cached":null,"ignore_cache":false}'), +(1733, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.237+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1734, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.305+00', '{"cached":null,"ignore_cache":false}'), +(1735, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:29.333+00', '{"cached":null,"ignore_cache":false}'), +(1736, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.408+00', '{"cached":null,"ignore_cache":false}'), +(1737, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.42+00', '{"cached":null,"ignore_cache":false}'), +(1738, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.427+00', '{"cached":null,"ignore_cache":false}'), +(1739, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.45+00', '{"cached":null,"ignore_cache":false}'), +(1740, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.459+00', '{"cached":null,"ignore_cache":false}'), +(1741, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.492+00', '{"cached":null,"ignore_cache":false}'), +(1742, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:40.497+00', '{"cached":null,"ignore_cache":false}'), +(1743, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.59+00', '{"cached":null,"ignore_cache":null}'), +(1744, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.906+00', '{"cached":null,"ignore_cache":false}'), +(1745, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.915+00', '{"cached":null,"ignore_cache":false}'), +(1746, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.988+00', '{"cached":null,"ignore_cache":false}'), +(1747, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:47.999+00', '{"cached":null,"ignore_cache":false}'), +(1748, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:48.002+00', '{"cached":null,"ignore_cache":false}'), +(1749, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:48.014+00', '{"cached":null,"ignore_cache":false}'), +(1750, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:01:48.029+00', '{"cached":null,"ignore_cache":false}'), +(1751, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.361+00', '{"cached":null,"ignore_cache":false}'), +(1752, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.424+00', '{"cached":null,"ignore_cache":false}'), +(1753, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.457+00', '{"cached":null,"ignore_cache":false}'), +(1754, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.458+00', '{"cached":null,"ignore_cache":false}'), +(1755, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.478+00', '{"cached":null,"ignore_cache":false}'), +(1756, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.493+00', '{"cached":null,"ignore_cache":false}'), +(1757, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:26.5+00', '{"cached":null,"ignore_cache":false}'), +(1758, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:33.12+00', '{"cached":null,"ignore_cache":null}'), +(1759, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:04:33.47+00', '{"cached":null,"ignore_cache":false}'), +(1760, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:05:31.786+00', '{"cached":null,"ignore_cache":null}'), +(1761, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:05:32.072+00', '{"cached":null,"ignore_cache":false}'), +(1762, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-16 13:05:56.976+00', '{"cached":null,"ignore_cache":null}'), +(1763, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:40.365+00', '{"cached":null,"ignore_cache":null}'), +(1764, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.506+00', '{"cached":null,"ignore_cache":null}'), +(1765, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.728+00', '{"cached":null,"ignore_cache":null}'), +(1766, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:46.974+00', '{"cached":null,"ignore_cache":false}'), +(1767, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:47.046+00', '{"cached":null,"ignore_cache":false}'), +(1768, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:47.141+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1769, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:47.198+00', '{"cached":null,"ignore_cache":false}'), +(1770, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:47.215+00', '{"cached":null,"ignore_cache":false}'), +(1771, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:47.216+00', '{"cached":null,"ignore_cache":false}'), +(1772, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:47.223+00', '{"cached":null,"ignore_cache":false}'), +(1773, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:47.224+00', '{"cached":null,"ignore_cache":false}'), +(1774, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:18.897+00', '{"cached":null,"ignore_cache":null}'), +(1775, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.594+00', '{"cached":null,"ignore_cache":false}'), +(1776, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.651+00', '{"cached":null,"ignore_cache":false}'), +(1777, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.672+00', '{"cached":null,"ignore_cache":false}'), +(1778, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.685+00', '{"cached":null,"ignore_cache":false}'), +(1779, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.712+00', '{"cached":null,"ignore_cache":false}'), +(1780, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:25.762+00', '{"cached":null,"ignore_cache":false}'), +(1781, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.654+00', '{"cached":null,"ignore_cache":false}'), +(1782, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.774+00', '{"cached":null,"ignore_cache":false}'), +(1783, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.824+00', '{"cached":null,"ignore_cache":false}'), +(1784, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.842+00', '{"cached":null,"ignore_cache":false}'), +(1785, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.866+00', '{"cached":null,"ignore_cache":false}'), +(1786, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.885+00', '{"cached":null,"ignore_cache":false}'), +(1787, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:27.899+00', '{"cached":null,"ignore_cache":false}'), +(1788, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:33.527+00', '{"cached":null,"ignore_cache":null}'), +(1789, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:07:33.913+00', '{"cached":null,"ignore_cache":false}'), +(1790, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:03.407+00', '{"cached":null,"ignore_cache":false}'), +(1791, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.608+00', '{"cached":null,"ignore_cache":null}'), +(1792, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.918+00', '{"cached":null,"ignore_cache":false}'), +(1793, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.933+00', '{"cached":null,"ignore_cache":false}'), +(1794, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.935+00', '{"cached":null,"ignore_cache":false}'), +(1795, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.946+00', '{"cached":null,"ignore_cache":false}'), +(1796, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.966+00', '{"cached":null,"ignore_cache":false}'), +(1797, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.971+00', '{"cached":null,"ignore_cache":false}'), +(1798, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:17.987+00', '{"cached":null,"ignore_cache":false}'), +(1799, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:20.093+00', '{"cached":null,"ignore_cache":null}'), +(1800, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:20.542+00', '{"cached":null,"ignore_cache":false}'), +(1801, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.377+00', '{"cached":null,"ignore_cache":null}'), +(1802, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.689+00', '{"cached":null,"ignore_cache":false}'), +(1803, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.72+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1804, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.759+00', '{"cached":null,"ignore_cache":false}'), +(1805, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.792+00', '{"cached":null,"ignore_cache":false}'), +(1806, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.797+00', '{"cached":null,"ignore_cache":false}'), +(1807, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.797+00', '{"cached":null,"ignore_cache":false}'), +(1808, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:40.824+00', '{"cached":null,"ignore_cache":false}'), +(1809, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:59.367+00', '{"cached":null,"ignore_cache":null}'), +(1810, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:09:16.922+00', '{"cached":null,"ignore_cache":null}'), +(1811, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:09:18.07+00', '{"cached":null,"ignore_cache":null}'), +(1812, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:09:18.424+00', '{"cached":null,"ignore_cache":false}'), +(1813, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:09:55.628+00', '{"cached":null,"ignore_cache":false}'), +(1814, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:01.722+00', '{"cached":null,"ignore_cache":null}'), +(1815, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.099+00', '{"cached":null,"ignore_cache":false}'), +(1816, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.178+00', '{"cached":null,"ignore_cache":false}'), +(1817, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.185+00', '{"cached":null,"ignore_cache":false}'), +(1818, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.236+00', '{"cached":null,"ignore_cache":false}'), +(1819, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.276+00', '{"cached":null,"ignore_cache":false}'), +(1820, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.308+00', '{"cached":null,"ignore_cache":false}'), +(1821, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:02.312+00', '{"cached":null,"ignore_cache":false}'), +(1822, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:06.414+00', '{"cached":null,"ignore_cache":null}'), +(1823, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:06.652+00', '{"cached":null,"ignore_cache":null}'), +(1824, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:32.521+00', '{"cached":null,"ignore_cache":null}'), +(1825, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.09+00', '{"cached":null,"ignore_cache":false}'), +(1826, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.114+00', '{"cached":null,"ignore_cache":false}'), +(1827, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.133+00', '{"cached":null,"ignore_cache":false}'), +(1828, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.207+00', '{"cached":null,"ignore_cache":false}'), +(1829, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.21+00', '{"cached":null,"ignore_cache":false}'), +(1830, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.246+00', '{"cached":null,"ignore_cache":false}'), +(1831, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:33.251+00', '{"cached":null,"ignore_cache":false}'), +(1832, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:38.3+00', '{"cached":null,"ignore_cache":null}'), +(1833, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:38.6+00', '{"cached":null,"ignore_cache":false}'), +(1834, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:02.581+00', '{"cached":null,"ignore_cache":false}'), +(1835, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:06.6+00', '{"cached":null,"ignore_cache":null}'), +(1836, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.048+00', '{"cached":null,"ignore_cache":false}'), +(1837, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.163+00', '{"cached":null,"ignore_cache":false}'), +(1838, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.228+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1839, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.25+00', '{"cached":null,"ignore_cache":false}'), +(1840, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.262+00', '{"cached":null,"ignore_cache":false}'), +(1841, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.273+00', '{"cached":null,"ignore_cache":false}'), +(1842, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:07.288+00', '{"cached":null,"ignore_cache":false}'), +(1843, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:09.463+00', '{"cached":null,"ignore_cache":null}'), +(1844, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:09.932+00', '{"cached":null,"ignore_cache":false}'), +(1845, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:17.565+00', '{"cached":null,"ignore_cache":null}'), +(1846, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:18.003+00', '{"cached":null,"ignore_cache":false}'), +(1847, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:18.036+00', '{"cached":null,"ignore_cache":false}'), +(1848, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:18.06+00', '{"cached":null,"ignore_cache":false}'), +(1849, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:18.066+00', '{"cached":null,"ignore_cache":false}'), +(1850, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:18.084+00', '{"cached":null,"ignore_cache":false}'), +(1851, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:18.093+00', '{"cached":null,"ignore_cache":false}'), +(1852, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:18.117+00', '{"cached":null,"ignore_cache":false}'), +(1853, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:28.33+00', '{"cached":null,"ignore_cache":null}'), +(1854, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:29.926+00', '{"cached":null,"ignore_cache":null}'), +(1855, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:30.258+00', '{"cached":null,"ignore_cache":false}'), +(1856, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:11:59.475+00', '{"cached":null,"ignore_cache":false}'), +(1857, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.216+00', '{"cached":null,"ignore_cache":null}'), +(1858, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.588+00', '{"cached":null,"ignore_cache":false}'), +(1859, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.774+00', '{"cached":null,"ignore_cache":false}'), +(1860, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.787+00', '{"cached":null,"ignore_cache":false}'), +(1861, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.819+00', '{"cached":null,"ignore_cache":false}'), +(1862, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.823+00', '{"cached":null,"ignore_cache":false}'), +(1863, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.825+00', '{"cached":null,"ignore_cache":false}'), +(1864, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:05.835+00', '{"cached":null,"ignore_cache":false}'), +(1865, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:28.073+00', '{"cached":null,"ignore_cache":null}'), +(1866, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:30.961+00', '{"cached":null,"ignore_cache":false}'), +(1867, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:31.006+00', '{"cached":null,"ignore_cache":false}'), +(1868, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:31.042+00', '{"cached":null,"ignore_cache":false}'), +(1869, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:31.042+00', '{"cached":null,"ignore_cache":false}'), +(1870, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:31.091+00', '{"cached":null,"ignore_cache":false}'), +(1871, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:31.103+00', '{"cached":null,"ignore_cache":false}'), +(1872, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:31.103+00', '{"cached":null,"ignore_cache":false}'), +(1873, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:39.984+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1874, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:40.012+00', '{"cached":null,"ignore_cache":false}'), +(1875, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:40.027+00', '{"cached":null,"ignore_cache":false}'), +(1876, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:40.076+00', '{"cached":null,"ignore_cache":false}'), +(1877, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:40.086+00', '{"cached":null,"ignore_cache":false}'), +(1878, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:40.089+00', '{"cached":null,"ignore_cache":false}'), +(1879, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:40.127+00', '{"cached":null,"ignore_cache":false}'), +(1880, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:41.964+00', '{"cached":null,"ignore_cache":null}'), +(1881, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:42.339+00', '{"cached":null,"ignore_cache":false}'), +(1882, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:54.828+00', '{"cached":null,"ignore_cache":null}'), +(1883, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.231+00', '{"cached":null,"ignore_cache":false}'), +(1884, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.256+00', '{"cached":null,"ignore_cache":false}'), +(1885, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.322+00', '{"cached":null,"ignore_cache":false}'), +(1886, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.323+00', '{"cached":null,"ignore_cache":false}'), +(1887, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.358+00', '{"cached":null,"ignore_cache":false}'), +(1888, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.384+00', '{"cached":null,"ignore_cache":false}'), +(1889, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:12:55.391+00', '{"cached":null,"ignore_cache":false}'), +(1890, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:01.349+00', '{"cached":null,"ignore_cache":null}'), +(1891, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:01.633+00', '{"cached":null,"ignore_cache":false}'), +(1892, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:30.519+00', '{"cached":null,"ignore_cache":null}'), +(1893, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:39.941+00', '{"cached":null,"ignore_cache":null}'), +(1894, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.38+00', '{"cached":null,"ignore_cache":false}'), +(1895, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.456+00', '{"cached":null,"ignore_cache":false}'), +(1896, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.482+00', '{"cached":null,"ignore_cache":false}'), +(1897, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.517+00', '{"cached":null,"ignore_cache":false}'), +(1898, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.528+00', '{"cached":null,"ignore_cache":false}'), +(1899, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.542+00', '{"cached":null,"ignore_cache":false}'), +(1900, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:40.546+00', '{"cached":null,"ignore_cache":false}'), +(1901, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.06+00', '{"cached":null,"ignore_cache":false}'), +(1902, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.089+00', '{"cached":null,"ignore_cache":false}'), +(1903, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.147+00', '{"cached":null,"ignore_cache":false}'), +(1904, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.162+00', '{"cached":null,"ignore_cache":false}'), +(1905, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.218+00', '{"cached":null,"ignore_cache":false}'), +(1906, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.267+00', '{"cached":null,"ignore_cache":false}'), +(1907, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:43.322+00', '{"cached":null,"ignore_cache":false}'), +(1908, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.713+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1909, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.778+00', '{"cached":null,"ignore_cache":false}'), +(1910, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.779+00', '{"cached":null,"ignore_cache":false}'), +(1911, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.813+00', '{"cached":null,"ignore_cache":false}'), +(1912, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.852+00', '{"cached":null,"ignore_cache":false}'), +(1913, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.893+00', '{"cached":null,"ignore_cache":false}'), +(1914, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:46.908+00', '{"cached":null,"ignore_cache":false}'), +(1915, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:58.936+00', '{"cached":null,"ignore_cache":null}'), +(1916, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.366+00', '{"cached":null,"ignore_cache":false}'), +(1917, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.426+00', '{"cached":null,"ignore_cache":false}'), +(1918, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.465+00', '{"cached":null,"ignore_cache":false}'), +(1919, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.469+00', '{"cached":null,"ignore_cache":false}'), +(1920, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.478+00', '{"cached":null,"ignore_cache":false}'), +(1921, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.51+00', '{"cached":null,"ignore_cache":false}'), +(1922, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:59.527+00', '{"cached":null,"ignore_cache":false}'), +(1923, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.474+00', '{"cached":null,"ignore_cache":false}'), +(1924, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.552+00', '{"cached":null,"ignore_cache":false}'), +(1925, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.67+00', '{"cached":null,"ignore_cache":false}'), +(1926, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.706+00', '{"cached":null,"ignore_cache":false}'), +(1927, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.728+00', '{"cached":null,"ignore_cache":false}'), +(1928, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.768+00', '{"cached":null,"ignore_cache":false}'), +(1929, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:01.796+00', '{"cached":null,"ignore_cache":false}'), +(1930, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.455+00', '{"cached":null,"ignore_cache":false}'), +(1931, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.479+00', '{"cached":null,"ignore_cache":false}'), +(1932, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.49+00', '{"cached":null,"ignore_cache":false}'), +(1933, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.492+00', '{"cached":null,"ignore_cache":false}'), +(1934, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.501+00', '{"cached":null,"ignore_cache":false}'), +(1935, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.51+00', '{"cached":null,"ignore_cache":false}'), +(1936, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:11.511+00', '{"cached":null,"ignore_cache":false}'), +(1937, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.581+00', '{"cached":null,"ignore_cache":false}'), +(1938, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.586+00', '{"cached":null,"ignore_cache":false}'), +(1939, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.655+00', '{"cached":null,"ignore_cache":false}'), +(1940, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.687+00', '{"cached":null,"ignore_cache":false}'), +(1941, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.737+00', '{"cached":null,"ignore_cache":false}'), +(1942, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.75+00', '{"cached":null,"ignore_cache":false}'), +(1943, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:13.783+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1944, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:22.089+00', '{"cached":null,"ignore_cache":null}'), +(1945, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:22.405+00', '{"cached":null,"ignore_cache":false}'), +(1946, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:55.424+00', '{"cached":null,"ignore_cache":false}'), +(1947, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:11.731+00', '{"cached":null,"ignore_cache":null}'), +(1948, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.04+00', '{"cached":null,"ignore_cache":false}'), +(1949, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.136+00', '{"cached":null,"ignore_cache":false}'), +(1950, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.152+00', '{"cached":null,"ignore_cache":false}'), +(1951, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.154+00', '{"cached":null,"ignore_cache":false}'), +(1952, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.186+00', '{"cached":null,"ignore_cache":false}'), +(1953, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.208+00', '{"cached":null,"ignore_cache":false}'), +(1954, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:12.228+00', '{"cached":null,"ignore_cache":false}'), +(1955, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.583+00', '{"cached":null,"ignore_cache":false}'), +(1956, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.627+00', '{"cached":null,"ignore_cache":false}'), +(1957, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.633+00', '{"cached":null,"ignore_cache":false}'), +(1958, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.656+00', '{"cached":null,"ignore_cache":false}'), +(1959, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.732+00', '{"cached":null,"ignore_cache":false}'), +(1960, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.738+00', '{"cached":null,"ignore_cache":false}'), +(1961, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:14.748+00', '{"cached":null,"ignore_cache":false}'), +(1962, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.333+00', '{"cached":null,"ignore_cache":false}'), +(1963, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.383+00', '{"cached":null,"ignore_cache":false}'), +(1964, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.423+00', '{"cached":null,"ignore_cache":false}'), +(1965, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.455+00', '{"cached":null,"ignore_cache":false}'), +(1966, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.51+00', '{"cached":null,"ignore_cache":false}'), +(1967, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.523+00', '{"cached":null,"ignore_cache":false}'), +(1968, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:18.554+00', '{"cached":null,"ignore_cache":false}'), +(1969, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:19.679+00', '{"cached":null,"ignore_cache":null}'), +(1970, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:19.972+00', '{"cached":null,"ignore_cache":false}'), +(1971, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.001+00', '{"cached":null,"ignore_cache":null}'), +(1972, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.394+00', '{"cached":null,"ignore_cache":false}'), +(1973, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.436+00', '{"cached":null,"ignore_cache":false}'), +(1974, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.453+00', '{"cached":null,"ignore_cache":false}'), +(1975, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.465+00', '{"cached":null,"ignore_cache":false}'), +(1976, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.476+00', '{"cached":null,"ignore_cache":false}'), +(1977, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.519+00', '{"cached":null,"ignore_cache":false}'), +(1978, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:49.531+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(1979, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:16.74+00', '{"cached":null,"ignore_cache":null}'), +(1980, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.1+00', '{"cached":null,"ignore_cache":false}'), +(1981, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.145+00', '{"cached":null,"ignore_cache":false}'), +(1982, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.166+00', '{"cached":null,"ignore_cache":false}'), +(1983, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.186+00', '{"cached":null,"ignore_cache":false}'), +(1984, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.211+00', '{"cached":null,"ignore_cache":false}'), +(1985, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.241+00', '{"cached":null,"ignore_cache":false}'), +(1986, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:19.249+00', '{"cached":null,"ignore_cache":false}'), +(1987, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:22.919+00', '{"cached":null,"ignore_cache":null}'), +(1988, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:23.363+00', '{"cached":null,"ignore_cache":false}'), +(1989, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:38.857+00', '{"cached":null,"ignore_cache":false}'), +(1990, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:48.914+00', '{"cached":null,"ignore_cache":null}'), +(1991, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.243+00', '{"cached":null,"ignore_cache":false}'), +(1992, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.333+00', '{"cached":null,"ignore_cache":false}'), +(1993, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.341+00', '{"cached":null,"ignore_cache":false}'), +(1994, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.371+00', '{"cached":null,"ignore_cache":false}'), +(1995, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.387+00', '{"cached":null,"ignore_cache":false}'), +(1996, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.393+00', '{"cached":null,"ignore_cache":false}'), +(1997, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:49.401+00', '{"cached":null,"ignore_cache":false}'), +(1998, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:51.714+00', '{"cached":null,"ignore_cache":null}'), +(1999, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:16:52.043+00', '{"cached":null,"ignore_cache":false}'), +(2000, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:02.794+00', '{"cached":null,"ignore_cache":false}'), +(2001, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.453+00', '{"cached":null,"ignore_cache":null}'), +(2002, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.768+00', '{"cached":null,"ignore_cache":false}'), +(2003, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.774+00', '{"cached":null,"ignore_cache":false}'), +(2004, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.788+00', '{"cached":null,"ignore_cache":false}'), +(2005, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.809+00', '{"cached":null,"ignore_cache":false}'), +(2006, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.818+00', '{"cached":null,"ignore_cache":false}'), +(2007, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.824+00', '{"cached":null,"ignore_cache":false}'), +(2008, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:08.825+00', '{"cached":null,"ignore_cache":false}'), +(2009, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:14.951+00', '{"cached":null,"ignore_cache":false}'), +(2010, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:15.082+00', '{"cached":null,"ignore_cache":false}'), +(2011, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:15.254+00', '{"cached":null,"ignore_cache":false}'), +(2012, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:15.291+00', '{"cached":null,"ignore_cache":false}'), +(2013, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:15.316+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2014, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:15.32+00', '{"cached":null,"ignore_cache":false}'), +(2015, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:17:15.435+00', '{"cached":null,"ignore_cache":false}'), +(2016, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.129+00', '{"cached":null,"ignore_cache":false}'), +(2017, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.149+00', '{"cached":null,"ignore_cache":false}'), +(2018, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.202+00', '{"cached":null,"ignore_cache":false}'), +(2019, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.224+00', '{"cached":null,"ignore_cache":false}'), +(2020, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.233+00', '{"cached":null,"ignore_cache":false}'), +(2021, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:09.24+00', '{"cached":null,"ignore_cache":false}'), +(2022, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.085+00', '{"cached":null,"ignore_cache":false}'), +(2023, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.145+00', '{"cached":null,"ignore_cache":false}'), +(2024, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.162+00', '{"cached":null,"ignore_cache":false}'), +(2025, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.17+00', '{"cached":null,"ignore_cache":false}'), +(2026, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.227+00', '{"cached":null,"ignore_cache":false}'), +(2027, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:18.254+00', '{"cached":null,"ignore_cache":false}'), +(2028, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.404+00', '{"cached":null,"ignore_cache":false}'), +(2029, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.463+00', '{"cached":null,"ignore_cache":false}'), +(2030, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.539+00', '{"cached":null,"ignore_cache":false}'), +(2031, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.614+00', '{"cached":null,"ignore_cache":false}'), +(2032, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.681+00', '{"cached":null,"ignore_cache":false}'), +(2033, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.701+00', '{"cached":null,"ignore_cache":false}'), +(2034, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.739+00', '{"cached":null,"ignore_cache":false}'), +(2035, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:38.765+00', '{"cached":null,"ignore_cache":false}'), +(2036, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:39.191+00', '{"cached":null,"ignore_cache":false}'), +(2037, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:39.192+00', '{"cached":null,"ignore_cache":false}'), +(2038, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:39.306+00', '{"cached":null,"ignore_cache":false}'), +(2039, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:39.441+00', '{"cached":null,"ignore_cache":false}'), +(2040, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:39.455+00', '{"cached":null,"ignore_cache":false}'), +(2041, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:39.456+00', '{"cached":null,"ignore_cache":false}'), +(2042, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:40.595+00', '{"cached":null,"ignore_cache":null}'), +(2043, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:40.968+00', '{"cached":null,"ignore_cache":false}'), +(2044, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.109+00', '{"cached":null,"ignore_cache":false}'), +(2045, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.445+00', '{"cached":null,"ignore_cache":false}'), +(2046, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.467+00', '{"cached":null,"ignore_cache":false}'), +(2047, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.498+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2048, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.554+00', '{"cached":null,"ignore_cache":false}'), +(2049, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:41.626+00', '{"cached":null,"ignore_cache":false}'), +(2050, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.087+00', '{"cached":null,"ignore_cache":false}'), +(2051, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.106+00', '{"cached":null,"ignore_cache":false}'), +(2052, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.106+00', '{"cached":null,"ignore_cache":false}'), +(2053, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.117+00', '{"cached":null,"ignore_cache":false}'), +(2054, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.131+00', '{"cached":null,"ignore_cache":false}'), +(2055, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.132+00', '{"cached":null,"ignore_cache":false}'), +(2056, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:47.144+00', '{"cached":null,"ignore_cache":false}'), +(2057, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.88+00', '{"cached":null,"ignore_cache":false}'), +(2058, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.938+00', '{"cached":null,"ignore_cache":false}'), +(2059, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.946+00', '{"cached":null,"ignore_cache":false}'), +(2060, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.965+00', '{"cached":null,"ignore_cache":false}'), +(2061, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:51.99+00', '{"cached":null,"ignore_cache":false}'), +(2062, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:52.003+00', '{"cached":null,"ignore_cache":false}'), +(2063, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:52.061+00', '{"cached":null,"ignore_cache":false}'), +(2064, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.622+00', '{"cached":null,"ignore_cache":false}'), +(2065, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.642+00', '{"cached":null,"ignore_cache":false}'), +(2066, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.65+00', '{"cached":null,"ignore_cache":false}'), +(2067, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.714+00', '{"cached":null,"ignore_cache":false}'), +(2068, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.716+00', '{"cached":null,"ignore_cache":false}'), +(2069, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.734+00', '{"cached":null,"ignore_cache":false}'), +(2070, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:55.747+00', '{"cached":null,"ignore_cache":false}'), +(2071, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.935+00', '{"cached":null,"ignore_cache":false}'), +(2072, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.945+00', '{"cached":null,"ignore_cache":false}'), +(2073, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.96+00', '{"cached":null,"ignore_cache":false}'), +(2074, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.987+00', '{"cached":null,"ignore_cache":false}'), +(2075, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.993+00', '{"cached":null,"ignore_cache":false}'), +(2076, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:56.998+00', '{"cached":null,"ignore_cache":false}'), +(2077, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:18:57.006+00', '{"cached":null,"ignore_cache":false}'), +(2078, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.863+00', '{"cached":null,"ignore_cache":false}'), +(2079, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.884+00', '{"cached":null,"ignore_cache":false}'), +(2080, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.912+00', '{"cached":null,"ignore_cache":false}'), +(2081, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.916+00', '{"cached":null,"ignore_cache":false}'), +(2082, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.935+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2083, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.94+00', '{"cached":null,"ignore_cache":false}'), +(2084, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:19:06.95+00', '{"cached":null,"ignore_cache":false}'), +(2085, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.572+00', '{"cached":null,"ignore_cache":false}'), +(2086, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.578+00', '{"cached":null,"ignore_cache":false}'), +(2087, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.589+00', '{"cached":null,"ignore_cache":false}'), +(2088, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.621+00', '{"cached":null,"ignore_cache":false}'), +(2089, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.625+00', '{"cached":null,"ignore_cache":false}'), +(2090, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.643+00', '{"cached":null,"ignore_cache":false}'), +(2091, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:22.645+00', '{"cached":null,"ignore_cache":false}'), +(2092, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.548+00', '{"cached":null,"ignore_cache":false}'), +(2093, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.568+00', '{"cached":null,"ignore_cache":false}'), +(2094, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.586+00', '{"cached":null,"ignore_cache":false}'), +(2095, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.604+00', '{"cached":null,"ignore_cache":false}'), +(2096, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.604+00', '{"cached":null,"ignore_cache":false}'), +(2097, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.612+00', '{"cached":null,"ignore_cache":false}'), +(2098, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.62+00', '{"cached":null,"ignore_cache":false}'), +(2099, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:40.848+00', '{"cached":null,"ignore_cache":null}'), +(2100, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.222+00', '{"cached":null,"ignore_cache":false}'), +(2101, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.252+00', '{"cached":null,"ignore_cache":false}'), +(2102, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.256+00', '{"cached":null,"ignore_cache":false}'), +(2103, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.258+00', '{"cached":null,"ignore_cache":false}'), +(2104, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.268+00', '{"cached":null,"ignore_cache":false}'), +(2105, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.275+00', '{"cached":null,"ignore_cache":false}'), +(2106, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:20:41.277+00', '{"cached":null,"ignore_cache":false}'), +(2107, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:01.981+00', '{"cached":null,"ignore_cache":null}'), +(2108, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.811+00', '{"cached":null,"ignore_cache":false}'), +(2109, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.868+00', '{"cached":null,"ignore_cache":false}'), +(2110, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.893+00', '{"cached":null,"ignore_cache":false}'), +(2111, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.894+00', '{"cached":null,"ignore_cache":false}'), +(2112, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.942+00', '{"cached":null,"ignore_cache":false}'), +(2113, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.965+00', '{"cached":null,"ignore_cache":false}'), +(2114, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:02.984+00', '{"cached":null,"ignore_cache":false}'), +(2115, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.348+00', '{"cached":null,"ignore_cache":false}'), +(2116, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.49+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2117, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.496+00', '{"cached":null,"ignore_cache":false}'), +(2118, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.507+00', '{"cached":null,"ignore_cache":false}'), +(2119, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.507+00', '{"cached":null,"ignore_cache":false}'), +(2120, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.51+00', '{"cached":null,"ignore_cache":false}'), +(2121, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:21:31.533+00', '{"cached":null,"ignore_cache":false}'), +(2122, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.167+00', '{"cached":null,"ignore_cache":false}'), +(2123, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.172+00', '{"cached":null,"ignore_cache":false}'), +(2124, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.176+00', '{"cached":null,"ignore_cache":false}'), +(2125, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.182+00', '{"cached":null,"ignore_cache":false}'), +(2126, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.195+00', '{"cached":null,"ignore_cache":false}'), +(2127, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.195+00', '{"cached":null,"ignore_cache":false}'), +(2128, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:10.196+00', '{"cached":null,"ignore_cache":false}'), +(2129, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.346+00', '{"cached":null,"ignore_cache":false}'), +(2130, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.421+00', '{"cached":null,"ignore_cache":false}'), +(2131, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.422+00', '{"cached":null,"ignore_cache":false}'), +(2132, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.46+00', '{"cached":null,"ignore_cache":false}'), +(2133, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.503+00', '{"cached":null,"ignore_cache":false}'), +(2134, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.543+00', '{"cached":null,"ignore_cache":false}'), +(2135, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:15.607+00', '{"cached":null,"ignore_cache":false}'), +(2136, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.893+00', '{"cached":null,"ignore_cache":false}'), +(2137, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.946+00', '{"cached":null,"ignore_cache":false}'), +(2138, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.957+00', '{"cached":null,"ignore_cache":false}'), +(2139, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.968+00', '{"cached":null,"ignore_cache":false}'), +(2140, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.974+00', '{"cached":null,"ignore_cache":false}'), +(2141, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:18.982+00', '{"cached":null,"ignore_cache":false}'), +(2142, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:19.008+00', '{"cached":null,"ignore_cache":false}'), +(2143, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:37.983+00', '{"cached":null,"ignore_cache":false}'), +(2144, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.034+00', '{"cached":null,"ignore_cache":false}'), +(2145, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.075+00', '{"cached":null,"ignore_cache":false}'), +(2146, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.125+00', '{"cached":null,"ignore_cache":false}'), +(2147, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.222+00', '{"cached":null,"ignore_cache":false}'), +(2148, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.363+00', '{"cached":null,"ignore_cache":false}'), +(2149, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.388+00', '{"cached":null,"ignore_cache":false}'), +(2150, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.453+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2151, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:38.733+00', '{"cached":null,"ignore_cache":false}'), +(2152, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.48+00', '{"cached":null,"ignore_cache":false}'), +(2153, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.569+00', '{"cached":null,"ignore_cache":false}'), +(2154, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.584+00', '{"cached":null,"ignore_cache":false}'), +(2155, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.644+00', '{"cached":null,"ignore_cache":false}'), +(2156, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.66+00', '{"cached":null,"ignore_cache":false}'), +(2157, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.681+00', '{"cached":null,"ignore_cache":false}'), +(2158, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:43.741+00', '{"cached":null,"ignore_cache":false}'), +(2159, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.142+00', '{"cached":null,"ignore_cache":false}'), +(2160, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.178+00', '{"cached":null,"ignore_cache":false}'), +(2161, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.301+00', '{"cached":null,"ignore_cache":false}'), +(2162, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.306+00', '{"cached":null,"ignore_cache":false}'), +(2163, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.381+00', '{"cached":null,"ignore_cache":false}'), +(2164, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.404+00', '{"cached":null,"ignore_cache":false}'), +(2165, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:22:45.461+00', '{"cached":null,"ignore_cache":false}'), +(2166, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.062+00', '{"cached":null,"ignore_cache":false}'), +(2167, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.39+00', '{"cached":null,"ignore_cache":false}'), +(2168, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.481+00', '{"cached":null,"ignore_cache":false}'), +(2169, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.565+00', '{"cached":null,"ignore_cache":false}'), +(2170, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.574+00', '{"cached":null,"ignore_cache":false}'), +(2171, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.742+00', '{"cached":null,"ignore_cache":false}'), +(2172, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.818+00', '{"cached":null,"ignore_cache":false}'), +(2173, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.823+00', '{"cached":null,"ignore_cache":false}'), +(2174, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:07.843+00', '{"cached":null,"ignore_cache":false}'), +(2175, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.385+00', '{"cached":null,"ignore_cache":false}'), +(2176, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.4+00', '{"cached":null,"ignore_cache":false}'), +(2177, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.412+00', '{"cached":null,"ignore_cache":false}'), +(2178, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.417+00', '{"cached":null,"ignore_cache":false}'), +(2179, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.435+00', '{"cached":null,"ignore_cache":false}'), +(2180, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.473+00', '{"cached":null,"ignore_cache":false}'), +(2181, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:11.478+00', '{"cached":null,"ignore_cache":false}'), +(2182, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.589+00', '{"cached":null,"ignore_cache":false}'), +(2183, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.623+00', '{"cached":null,"ignore_cache":false}'), +(2184, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.638+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2185, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.643+00', '{"cached":null,"ignore_cache":false}'), +(2186, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.653+00', '{"cached":null,"ignore_cache":false}'), +(2187, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.666+00', '{"cached":null,"ignore_cache":false}'), +(2188, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:18.671+00', '{"cached":null,"ignore_cache":false}'), +(2189, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.434+00', '{"cached":null,"ignore_cache":false}'), +(2190, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.445+00', '{"cached":null,"ignore_cache":false}'), +(2191, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.504+00', '{"cached":null,"ignore_cache":false}'), +(2192, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.518+00', '{"cached":null,"ignore_cache":false}'), +(2193, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.54+00', '{"cached":null,"ignore_cache":false}'), +(2194, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.554+00', '{"cached":null,"ignore_cache":false}'), +(2195, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:21.575+00', '{"cached":null,"ignore_cache":false}'), +(2196, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.665+00', '{"cached":null,"ignore_cache":false}'), +(2197, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.672+00', '{"cached":null,"ignore_cache":false}'), +(2198, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.674+00', '{"cached":null,"ignore_cache":false}'), +(2199, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.682+00', '{"cached":null,"ignore_cache":false}'), +(2200, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.78+00', '{"cached":null,"ignore_cache":false}'), +(2201, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.807+00', '{"cached":null,"ignore_cache":false}'), +(2202, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:53.814+00', '{"cached":null,"ignore_cache":false}'), +(2203, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:57.02+00', '{"cached":null,"ignore_cache":false}'), +(2204, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:57.081+00', '{"cached":null,"ignore_cache":false}'), +(2205, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:57.111+00', '{"cached":null,"ignore_cache":false}'), +(2206, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:57.121+00', '{"cached":null,"ignore_cache":false}'), +(2207, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:57.126+00', '{"cached":null,"ignore_cache":false}'), +(2208, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:57.136+00', '{"cached":null,"ignore_cache":false}'), +(2209, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:57.147+00', '{"cached":null,"ignore_cache":false}'), +(2210, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.714+00', '{"cached":null,"ignore_cache":false}'), +(2211, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.733+00', '{"cached":null,"ignore_cache":false}'), +(2212, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.764+00', '{"cached":null,"ignore_cache":false}'), +(2213, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.773+00', '{"cached":null,"ignore_cache":false}'), +(2214, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.867+00', '{"cached":null,"ignore_cache":false}'), +(2215, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.877+00', '{"cached":null,"ignore_cache":false}'), +(2216, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:23:58.928+00', '{"cached":null,"ignore_cache":false}'), +(2217, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.442+00', '{"cached":null,"ignore_cache":false}'), +(2218, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.472+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2219, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.498+00', '{"cached":null,"ignore_cache":false}'), +(2220, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.499+00', '{"cached":null,"ignore_cache":false}'), +(2221, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.546+00', '{"cached":null,"ignore_cache":false}'), +(2222, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.568+00', '{"cached":null,"ignore_cache":false}'), +(2223, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:03.586+00', '{"cached":null,"ignore_cache":false}'), +(2224, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.237+00', '{"cached":null,"ignore_cache":false}'), +(2225, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.273+00', '{"cached":null,"ignore_cache":false}'), +(2226, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.292+00', '{"cached":null,"ignore_cache":false}'), +(2227, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.304+00', '{"cached":null,"ignore_cache":false}'), +(2228, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.311+00', '{"cached":null,"ignore_cache":false}'), +(2229, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.346+00', '{"cached":null,"ignore_cache":false}'), +(2230, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:05.368+00', '{"cached":null,"ignore_cache":false}'), +(2231, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.433+00', '{"cached":null,"ignore_cache":false}'), +(2232, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.495+00', '{"cached":null,"ignore_cache":false}'), +(2233, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.563+00', '{"cached":null,"ignore_cache":false}'), +(2234, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.571+00', '{"cached":null,"ignore_cache":false}'), +(2235, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.576+00', '{"cached":null,"ignore_cache":false}'), +(2236, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.641+00', '{"cached":null,"ignore_cache":false}'), +(2237, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:06.666+00', '{"cached":null,"ignore_cache":false}'), +(2238, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:54.602+00', '{"cached":null,"ignore_cache":null}'), +(2239, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.102+00', '{"cached":null,"ignore_cache":false}'), +(2240, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.351+00', '{"cached":null,"ignore_cache":false}'), +(2241, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.413+00', '{"cached":null,"ignore_cache":false}'), +(2242, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.418+00', '{"cached":null,"ignore_cache":false}'), +(2243, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.443+00', '{"cached":null,"ignore_cache":false}'), +(2244, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.459+00', '{"cached":null,"ignore_cache":false}'), +(2245, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:24:55.565+00', '{"cached":null,"ignore_cache":false}'), +(2246, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:21.588+00', '{"cached":null,"ignore_cache":null}'), +(2247, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.715+00', '{"cached":null,"ignore_cache":false}'), +(2248, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.724+00', '{"cached":null,"ignore_cache":false}'), +(2249, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.742+00', '{"cached":null,"ignore_cache":false}'), +(2250, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.797+00', '{"cached":null,"ignore_cache":false}'), +(2251, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.803+00', '{"cached":null,"ignore_cache":false}'), +(2252, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.809+00', '{"cached":null,"ignore_cache":false}'), +(2253, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:41.842+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2254, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.4+00', '{"cached":null,"ignore_cache":false}'), +(2255, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.461+00', '{"cached":null,"ignore_cache":false}'), +(2256, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.499+00', '{"cached":null,"ignore_cache":false}'), +(2257, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.505+00', '{"cached":null,"ignore_cache":false}'), +(2258, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.508+00', '{"cached":null,"ignore_cache":false}'), +(2259, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.53+00', '{"cached":null,"ignore_cache":false}'), +(2260, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:25:44.531+00', '{"cached":null,"ignore_cache":false}'), +(2261, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:26:50.202+00', '{"cached":null,"ignore_cache":null}'), +(2262, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.362+00', '{"cached":null,"ignore_cache":null}'), +(2263, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.644+00', '{"cached":null,"ignore_cache":false}'), +(2264, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.693+00', '{"cached":null,"ignore_cache":false}'), +(2265, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.719+00', '{"cached":null,"ignore_cache":false}'), +(2266, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.811+00', '{"cached":null,"ignore_cache":false}'), +(2267, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.814+00', '{"cached":null,"ignore_cache":false}'), +(2268, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.824+00', '{"cached":null,"ignore_cache":false}'), +(2269, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:27:45.829+00', '{"cached":null,"ignore_cache":false}'), +(2270, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.124+00', '{"cached":null,"ignore_cache":false}'), +(2271, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.144+00', '{"cached":null,"ignore_cache":false}'), +(2272, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.147+00', '{"cached":null,"ignore_cache":false}'), +(2273, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.162+00', '{"cached":null,"ignore_cache":false}'), +(2274, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.166+00', '{"cached":null,"ignore_cache":false}'), +(2275, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.181+00', '{"cached":null,"ignore_cache":false}'), +(2276, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:28:10.223+00', '{"cached":null,"ignore_cache":false}'), +(2277, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:10.699+00', '{"cached":null,"ignore_cache":null}'), +(2278, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:11.088+00', '{"cached":null,"ignore_cache":false}'), +(2279, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:16.569+00', '{"cached":null,"ignore_cache":null}'), +(2280, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.056+00', '{"cached":null,"ignore_cache":false}'), +(2281, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.057+00', '{"cached":null,"ignore_cache":false}'), +(2282, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.066+00', '{"cached":null,"ignore_cache":false}'), +(2283, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.12+00', '{"cached":null,"ignore_cache":false}'), +(2284, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.161+00', '{"cached":null,"ignore_cache":false}'), +(2285, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.161+00', '{"cached":null,"ignore_cache":false}'), +(2286, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:31:17.169+00', '{"cached":null,"ignore_cache":false}'), +(2287, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.148+00', '{"cached":null,"ignore_cache":false}'), +(2288, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.153+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2289, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.158+00', '{"cached":null,"ignore_cache":false}'), +(2290, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.176+00', '{"cached":null,"ignore_cache":false}'), +(2291, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.209+00', '{"cached":null,"ignore_cache":false}'), +(2292, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.219+00', '{"cached":null,"ignore_cache":false}'), +(2293, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:52.243+00', '{"cached":null,"ignore_cache":false}'), +(2294, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.14+00', '{"cached":null,"ignore_cache":false}'), +(2295, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.146+00', '{"cached":null,"ignore_cache":false}'), +(2296, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.319+00', '{"cached":null,"ignore_cache":false}'), +(2297, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.414+00', '{"cached":null,"ignore_cache":false}'), +(2298, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.44+00', '{"cached":null,"ignore_cache":false}'), +(2299, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.446+00', '{"cached":null,"ignore_cache":false}'), +(2300, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:32:59.45+00', '{"cached":null,"ignore_cache":false}'), +(2301, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.397+00', '{"cached":null,"ignore_cache":false}'), +(2302, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.401+00', '{"cached":null,"ignore_cache":false}'), +(2303, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.422+00', '{"cached":null,"ignore_cache":false}'), +(2304, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.468+00', '{"cached":null,"ignore_cache":false}'), +(2305, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.473+00', '{"cached":null,"ignore_cache":false}'), +(2306, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.526+00', '{"cached":null,"ignore_cache":false}'), +(2307, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:02.529+00', '{"cached":null,"ignore_cache":false}'), +(2308, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.194+00', '{"cached":null,"ignore_cache":false}'), +(2309, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.246+00', '{"cached":null,"ignore_cache":false}'), +(2310, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.316+00', '{"cached":null,"ignore_cache":false}'), +(2311, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.37+00', '{"cached":null,"ignore_cache":false}'), +(2312, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.404+00', '{"cached":null,"ignore_cache":false}'), +(2313, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.44+00', '{"cached":null,"ignore_cache":false}'), +(2314, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:06.452+00', '{"cached":null,"ignore_cache":false}'), +(2315, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.516+00', '{"cached":null,"ignore_cache":false}'), +(2316, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.623+00', '{"cached":null,"ignore_cache":false}'), +(2317, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.648+00', '{"cached":null,"ignore_cache":false}'), +(2318, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.667+00', '{"cached":null,"ignore_cache":false}'), +(2319, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.736+00', '{"cached":null,"ignore_cache":false}'), +(2320, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.744+00', '{"cached":null,"ignore_cache":false}'), +(2321, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:33:15.757+00', '{"cached":null,"ignore_cache":false}'), +(2322, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.457+00', '{"cached":null,"ignore_cache":false}'), +(2323, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.68+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2324, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.682+00', '{"cached":null,"ignore_cache":false}'), +(2325, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.718+00', '{"cached":null,"ignore_cache":false}'), +(2326, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.769+00', '{"cached":null,"ignore_cache":false}'), +(2327, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.855+00', '{"cached":null,"ignore_cache":false}'), +(2328, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.919+00', '{"cached":null,"ignore_cache":false}'), +(2329, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:32.983+00', '{"cached":null,"ignore_cache":false}'), +(2330, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:35:33.001+00', '{"cached":null,"ignore_cache":false}'), +(2331, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:39:16.783+00', '{"cached":null,"ignore_cache":null}'), +(2332, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:39:18.156+00', '{"cached":null,"ignore_cache":null}'), +(2333, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:39:18.57+00', '{"cached":null,"ignore_cache":false}'), +(2334, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:00.77+00', '{"cached":null,"ignore_cache":false}'), +(2335, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.136+00', '{"cached":null,"ignore_cache":null}'), +(2336, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.471+00', '{"cached":null,"ignore_cache":false}'), +(2337, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.504+00', '{"cached":null,"ignore_cache":false}'), +(2338, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.582+00', '{"cached":null,"ignore_cache":false}'), +(2339, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.594+00', '{"cached":null,"ignore_cache":false}'), +(2340, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.595+00', '{"cached":null,"ignore_cache":false}'), +(2341, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.605+00', '{"cached":null,"ignore_cache":false}'), +(2342, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:16.628+00', '{"cached":null,"ignore_cache":false}'), +(2343, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.574+00', '{"cached":null,"ignore_cache":false}'), +(2344, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.607+00', '{"cached":null,"ignore_cache":false}'), +(2345, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.65+00', '{"cached":null,"ignore_cache":false}'), +(2346, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.651+00', '{"cached":null,"ignore_cache":false}'), +(2347, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.664+00', '{"cached":null,"ignore_cache":false}'), +(2348, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.672+00', '{"cached":null,"ignore_cache":false}'), +(2349, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:21.691+00', '{"cached":null,"ignore_cache":false}'), +(2350, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.612+00', '{"cached":null,"ignore_cache":false}'), +(2351, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.68+00', '{"cached":null,"ignore_cache":false}'), +(2352, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.733+00', '{"cached":null,"ignore_cache":false}'), +(2353, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.743+00', '{"cached":null,"ignore_cache":false}'), +(2354, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.756+00', '{"cached":null,"ignore_cache":false}'), +(2355, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.77+00', '{"cached":null,"ignore_cache":false}'), +(2356, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:30.787+00', '{"cached":null,"ignore_cache":false}'), +(2357, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.537+00', '{"cached":null,"ignore_cache":false}'), +(2358, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.544+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2359, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.552+00', '{"cached":null,"ignore_cache":false}'), +(2360, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.594+00', '{"cached":null,"ignore_cache":false}'), +(2361, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.617+00', '{"cached":null,"ignore_cache":false}'), +(2362, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.636+00', '{"cached":null,"ignore_cache":false}'), +(2363, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:36.659+00', '{"cached":null,"ignore_cache":false}'), +(2364, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:38.873+00', '{"cached":null,"ignore_cache":null}'), +(2365, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:39.306+00', '{"cached":null,"ignore_cache":false}'), +(2366, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:41.805+00', '{"cached":null,"ignore_cache":null}'), +(2367, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.436+00', '{"cached":null,"ignore_cache":null}'), +(2368, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.88+00', '{"cached":null,"ignore_cache":false}'), +(2369, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.895+00', '{"cached":null,"ignore_cache":false}'), +(2370, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.944+00', '{"cached":null,"ignore_cache":false}'), +(2371, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:45.985+00', '{"cached":null,"ignore_cache":false}'), +(2372, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:46.02+00', '{"cached":null,"ignore_cache":false}'), +(2373, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:46.026+00', '{"cached":null,"ignore_cache":false}'), +(2374, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:46.062+00', '{"cached":null,"ignore_cache":false}'), +(2375, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:54.883+00', '{"cached":null,"ignore_cache":null}'), +(2376, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.887+00', '{"cached":null,"ignore_cache":false}'), +(2377, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:59.919+00', '{"cached":null,"ignore_cache":false}'), +(2378, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:00.054+00', '{"cached":null,"ignore_cache":false}'), +(2379, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:00.06+00', '{"cached":null,"ignore_cache":false}'), +(2380, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:00.124+00', '{"cached":null,"ignore_cache":false}'), +(2381, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:00.134+00', '{"cached":null,"ignore_cache":false}'), +(2382, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:00.141+00', '{"cached":null,"ignore_cache":false}'), +(2383, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.859+00', '{"cached":null,"ignore_cache":false}'), +(2384, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.924+00', '{"cached":null,"ignore_cache":false}'), +(2385, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.943+00', '{"cached":null,"ignore_cache":false}'), +(2386, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.971+00', '{"cached":null,"ignore_cache":false}'), +(2387, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:19.991+00', '{"cached":null,"ignore_cache":false}'), +(2388, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:20.022+00', '{"cached":null,"ignore_cache":false}'), +(2389, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:20.026+00', '{"cached":null,"ignore_cache":false}'), +(2390, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.119+00', '{"cached":null,"ignore_cache":false}'), +(2391, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.163+00', '{"cached":null,"ignore_cache":false}'), +(2392, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.23+00', '{"cached":null,"ignore_cache":false}'), +(2393, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.246+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2394, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.251+00', '{"cached":null,"ignore_cache":false}'), +(2395, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.266+00', '{"cached":null,"ignore_cache":false}'), +(2396, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:23.284+00', '{"cached":null,"ignore_cache":false}'), +(2397, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:38.721+00', '{"cached":null,"ignore_cache":null}'), +(2398, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.123+00', '{"cached":null,"ignore_cache":false}'), +(2399, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.148+00', '{"cached":null,"ignore_cache":false}'), +(2400, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.148+00', '{"cached":null,"ignore_cache":false}'), +(2401, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.18+00', '{"cached":null,"ignore_cache":false}'), +(2402, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.195+00', '{"cached":null,"ignore_cache":false}'), +(2403, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.209+00', '{"cached":null,"ignore_cache":false}'), +(2404, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:39.214+00', '{"cached":null,"ignore_cache":false}'), +(2405, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:43.498+00', '{"cached":null,"ignore_cache":null}'), +(2406, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:41:43.813+00', '{"cached":null,"ignore_cache":false}'), +(2407, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:14.489+00', '{"cached":null,"ignore_cache":false}'), +(2408, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.11+00', '{"cached":null,"ignore_cache":null}'), +(2409, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.436+00', '{"cached":null,"ignore_cache":false}'), +(2410, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.462+00', '{"cached":null,"ignore_cache":false}'), +(2411, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.501+00', '{"cached":null,"ignore_cache":false}'), +(2412, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.51+00', '{"cached":null,"ignore_cache":false}'), +(2413, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.513+00', '{"cached":null,"ignore_cache":false}'), +(2414, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.553+00', '{"cached":null,"ignore_cache":false}'), +(2415, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:30.559+00', '{"cached":null,"ignore_cache":false}'), +(2416, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:39.826+00', '{"cached":null,"ignore_cache":null}'), +(2417, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:42:53.119+00', '{"cached":null,"ignore_cache":null}'), +(2418, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:45.691+00', '{"cached":null,"ignore_cache":null}'), +(2419, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.204+00', '{"cached":null,"ignore_cache":false}'), +(2420, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.254+00', '{"cached":null,"ignore_cache":false}'), +(2421, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.263+00', '{"cached":null,"ignore_cache":false}'), +(2422, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.314+00', '{"cached":null,"ignore_cache":false}'), +(2423, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.329+00', '{"cached":null,"ignore_cache":false}'), +(2424, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.346+00', '{"cached":null,"ignore_cache":false}'), +(2425, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:43:46.35+00', '{"cached":null,"ignore_cache":false}'), +(2426, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.523+00', '{"cached":null,"ignore_cache":false}'), +(2427, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.54+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2428, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.794+00', '{"cached":null,"ignore_cache":false}'), +(2429, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.96+00', '{"cached":null,"ignore_cache":false}'), +(2430, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:35.972+00', '{"cached":null,"ignore_cache":false}'), +(2431, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:36.055+00', '{"cached":null,"ignore_cache":false}'), +(2432, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:36.092+00', '{"cached":null,"ignore_cache":false}'), +(2433, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:36.349+00', '{"cached":null,"ignore_cache":false}'), +(2434, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:57:36.354+00', '{"cached":null,"ignore_cache":false}'), +(2435, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.668+00', '{"cached":null,"ignore_cache":false}'), +(2436, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.67+00', '{"cached":null,"ignore_cache":false}'), +(2437, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.671+00', '{"cached":null,"ignore_cache":false}'), +(2438, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.68+00', '{"cached":null,"ignore_cache":false}'), +(2439, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.761+00', '{"cached":null,"ignore_cache":false}'), +(2440, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.857+00', '{"cached":null,"ignore_cache":false}'), +(2441, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.931+00', '{"cached":null,"ignore_cache":false}'), +(2442, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.933+00', '{"cached":null,"ignore_cache":false}'), +(2443, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:12.99+00', '{"cached":null,"ignore_cache":false}'), +(2444, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:13.209+00', '{"cached":null,"ignore_cache":false}'), +(2445, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 13:58:13.299+00', '{"cached":null,"ignore_cache":false}'), +(2446, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.028+00', '{"cached":null,"ignore_cache":false}'), +(2447, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.034+00', '{"cached":null,"ignore_cache":false}'), +(2448, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.048+00', '{"cached":null,"ignore_cache":false}'), +(2449, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.145+00', '{"cached":null,"ignore_cache":false}'), +(2450, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.159+00', '{"cached":null,"ignore_cache":false}'), +(2451, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.174+00', '{"cached":null,"ignore_cache":false}'), +(2452, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:42.178+00', '{"cached":null,"ignore_cache":false}'), +(2453, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-16 14:01:52.782+00', '{"cached":null,"ignore_cache":null}'), +(2454, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.271+00', '{"cached":null,"ignore_cache":false}'), +(2455, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.377+00', '{"cached":null,"ignore_cache":false}'), +(2456, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.387+00', '{"cached":null,"ignore_cache":false}'), +(2457, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.388+00', '{"cached":null,"ignore_cache":false}'), +(2458, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.411+00', '{"cached":null,"ignore_cache":false}'), +(2459, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.471+00', '{"cached":null,"ignore_cache":false}'), +(2460, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.519+00', '{"cached":null,"ignore_cache":false}'), +(2461, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.536+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2462, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 14:03:39.584+00', '{"cached":null,"ignore_cache":false}'), +(2463, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.779+00', '{"cached":null,"ignore_cache":false}'), +(2464, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.787+00', '{"cached":null,"ignore_cache":false}'), +(2465, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.809+00', '{"cached":null,"ignore_cache":false}'), +(2466, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.818+00', '{"cached":null,"ignore_cache":false}'), +(2467, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.834+00', '{"cached":null,"ignore_cache":false}'), +(2468, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.835+00', '{"cached":null,"ignore_cache":false}'), +(2469, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:07.875+00', '{"cached":null,"ignore_cache":false}'), +(2470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.502+00', '{"cached":null,"ignore_cache":false}'), +(2471, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.547+00', '{"cached":null,"ignore_cache":false}'), +(2472, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.675+00', '{"cached":null,"ignore_cache":false}'), +(2473, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.676+00', '{"cached":null,"ignore_cache":false}'), +(2474, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.72+00', '{"cached":null,"ignore_cache":false}'), +(2475, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.733+00', '{"cached":null,"ignore_cache":false}'), +(2476, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-16 14:49:08.753+00', '{"cached":null,"ignore_cache":false}'), +(2477, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:34.99+00', '{"cached":null,"ignore_cache":false}'), +(2478, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.061+00', '{"cached":null,"ignore_cache":false}'), +(2479, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.463+00', '{"cached":null,"ignore_cache":false}'), +(2480, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.467+00', '{"cached":null,"ignore_cache":false}'), +(2481, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.468+00', '{"cached":null,"ignore_cache":false}'), +(2482, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.499+00', '{"cached":null,"ignore_cache":false}'), +(2483, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.539+00', '{"cached":null,"ignore_cache":false}'), +(2484, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.545+00', '{"cached":null,"ignore_cache":false}'), +(2485, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:05:35.589+00', '{"cached":null,"ignore_cache":false}'), +(2486, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.765+00', '{"cached":null,"ignore_cache":false}'), +(2487, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:29.865+00', '{"cached":null,"ignore_cache":false}'), +(2488, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:30.234+00', '{"cached":null,"ignore_cache":false}'), +(2489, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:30.291+00', '{"cached":null,"ignore_cache":false}'), +(2490, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:30.292+00', '{"cached":null,"ignore_cache":false}'), +(2491, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:30.339+00', '{"cached":null,"ignore_cache":false}'), +(2492, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:30.455+00', '{"cached":null,"ignore_cache":false}'), +(2493, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:30.564+00', '{"cached":null,"ignore_cache":false}'), +(2494, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:08:30.566+00', '{"cached":null,"ignore_cache":false}'), +(2495, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.353+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2496, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.57+00', '{"cached":null,"ignore_cache":false}'), +(2497, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.736+00', '{"cached":null,"ignore_cache":false}'), +(2498, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:03.92+00', '{"cached":null,"ignore_cache":false}'), +(2499, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:04.092+00', '{"cached":null,"ignore_cache":false}'), +(2500, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:04.094+00', '{"cached":null,"ignore_cache":false}'), +(2501, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:04.254+00', '{"cached":null,"ignore_cache":false}'), +(2502, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:04.267+00', '{"cached":null,"ignore_cache":false}'), +(2503, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:04.969+00', '{"cached":null,"ignore_cache":false}'), +(2504, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.055+00', '{"cached":null,"ignore_cache":false}'), +(2505, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.113+00', '{"cached":null,"ignore_cache":false}'), +(2506, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.125+00', '{"cached":null,"ignore_cache":false}'), +(2507, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.128+00', '{"cached":null,"ignore_cache":false}'), +(2508, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.158+00', '{"cached":null,"ignore_cache":false}'), +(2509, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.16+00', '{"cached":null,"ignore_cache":false}'), +(2510, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:26.163+00', '{"cached":null,"ignore_cache":false}'), +(2511, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.538+00', '{"cached":null,"ignore_cache":false}'), +(2512, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.551+00', '{"cached":null,"ignore_cache":false}'), +(2513, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.551+00', '{"cached":null,"ignore_cache":false}'), +(2514, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.583+00', '{"cached":null,"ignore_cache":false}'), +(2515, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.605+00', '{"cached":null,"ignore_cache":false}'), +(2516, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.611+00', '{"cached":null,"ignore_cache":false}'), +(2517, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:26:42.633+00', '{"cached":null,"ignore_cache":false}'), +(2518, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.549+00', '{"cached":null,"ignore_cache":false}'), +(2519, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:31.751+00', '{"cached":null,"ignore_cache":false}'), +(2520, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.759+00', '{"cached":null,"ignore_cache":false}'), +(2521, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.762+00', '{"cached":null,"ignore_cache":false}'), +(2522, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.768+00', '{"cached":null,"ignore_cache":false}'), +(2523, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.898+00', '{"cached":null,"ignore_cache":false}'), +(2524, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.946+00', '{"cached":null,"ignore_cache":false}'), +(2525, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.989+00', '{"cached":null,"ignore_cache":false}'), +(2526, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:32.991+00', '{"cached":null,"ignore_cache":false}'), +(2527, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.373+00', '{"cached":null,"ignore_cache":false}'), +(2528, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.405+00', '{"cached":null,"ignore_cache":false}'), +(2529, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.466+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2530, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.469+00', '{"cached":null,"ignore_cache":false}'), +(2531, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.473+00', '{"cached":null,"ignore_cache":false}'), +(2532, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.498+00', '{"cached":null,"ignore_cache":false}'), +(2533, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:39.501+00', '{"cached":null,"ignore_cache":false}'), +(2534, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.989+00', '{"cached":null,"ignore_cache":false}'), +(2535, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:51.997+00', '{"cached":null,"ignore_cache":false}'), +(2536, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:52.015+00', '{"cached":null,"ignore_cache":false}'), +(2537, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:52.029+00', '{"cached":null,"ignore_cache":false}'), +(2538, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:52.038+00', '{"cached":null,"ignore_cache":false}'), +(2539, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:52.043+00', '{"cached":null,"ignore_cache":false}'), +(2540, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-18 19:27:52.065+00', '{"cached":null,"ignore_cache":false}'), +(2541, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:18.468+00', '{"cached":null,"ignore_cache":null}'), +(2542, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.441+00', '{"cached":null,"ignore_cache":false}'), +(2543, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.644+00', '{"cached":null,"ignore_cache":false}'), +(2544, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.727+00', '{"cached":null,"ignore_cache":false}'), +(2545, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.733+00', '{"cached":null,"ignore_cache":false}'), +(2546, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.764+00', '{"cached":null,"ignore_cache":false}'), +(2547, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.772+00', '{"cached":null,"ignore_cache":false}'), +(2548, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 06:39:19.787+00', '{"cached":null,"ignore_cache":false}'), +(2549, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:08.348+00', '{"cached":null,"ignore_cache":null}'), +(2550, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.435+00', '{"cached":null,"ignore_cache":false}'), +(2551, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.477+00', '{"cached":null,"ignore_cache":false}'), +(2552, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.487+00', '{"cached":null,"ignore_cache":false}'), +(2553, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.544+00', '{"cached":null,"ignore_cache":false}'), +(2554, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.555+00', '{"cached":null,"ignore_cache":false}'), +(2555, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.574+00', '{"cached":null,"ignore_cache":false}'), +(2556, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 06:40:09.663+00', '{"cached":null,"ignore_cache":false}'), +(2557, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:41:07.748+00', '{"cached":null,"ignore_cache":null}'), +(2558, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:41:08.134+00', '{"cached":null,"ignore_cache":false}'), +(2559, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.523+00', '{"cached":null,"ignore_cache":false}'), +(2560, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.848+00', '{"cached":null,"ignore_cache":false}'), +(2561, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.944+00', '{"cached":null,"ignore_cache":false}'), +(2562, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.98+00', '{"cached":null,"ignore_cache":false}'), +(2563, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:33.998+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2564, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:34.124+00', '{"cached":null,"ignore_cache":false}'), +(2565, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:34.142+00', '{"cached":null,"ignore_cache":false}'), +(2566, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.334+00', '{"cached":null,"ignore_cache":false}'), +(2567, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.357+00', '{"cached":null,"ignore_cache":false}'), +(2568, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.395+00', '{"cached":null,"ignore_cache":false}'), +(2569, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.4+00', '{"cached":null,"ignore_cache":false}'), +(2570, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.434+00', '{"cached":null,"ignore_cache":false}'), +(2571, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:40.585+00', '{"cached":null,"ignore_cache":false}'), +(2572, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:46.752+00', '{"cached":null,"ignore_cache":null}'), +(2573, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.38+00', '{"cached":null,"ignore_cache":false}'), +(2574, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.398+00', '{"cached":null,"ignore_cache":false}'), +(2575, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.549+00', '{"cached":null,"ignore_cache":false}'), +(2576, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.636+00', '{"cached":null,"ignore_cache":false}'), +(2577, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.755+00', '{"cached":null,"ignore_cache":false}'), +(2578, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.786+00', '{"cached":null,"ignore_cache":false}'), +(2579, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 06:44:48.834+00', '{"cached":null,"ignore_cache":false}'), +(2580, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-19 06:45:46.349+00', '{"cached":null,"ignore_cache":null}'), +(2581, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:14.401+00', '{"cached":null,"ignore_cache":null}'), +(2582, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:14.877+00', '{"cached":null,"ignore_cache":false}'), +(2583, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:14.89+00', '{"cached":null,"ignore_cache":false}'), +(2584, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:14.898+00', '{"cached":null,"ignore_cache":false}'), +(2585, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.055+00', '{"cached":null,"ignore_cache":null}'), +(2586, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.621+00', '{"cached":null,"ignore_cache":false}'), +(2587, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.767+00', '{"cached":null,"ignore_cache":false}'), +(2588, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.96+00', '{"cached":null,"ignore_cache":false}'), +(2589, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:20.979+00', '{"cached":null,"ignore_cache":false}'), +(2590, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:21.095+00', '{"cached":null,"ignore_cache":false}'), +(2591, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:21.133+00', '{"cached":null,"ignore_cache":false}'), +(2592, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:21.174+00', '{"cached":null,"ignore_cache":false}'), +(2593, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.154+00', '{"cached":null,"ignore_cache":null}'), +(2594, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.715+00', '{"cached":null,"ignore_cache":false}'), +(2595, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.75+00', '{"cached":null,"ignore_cache":false}'), +(2596, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.751+00', '{"cached":null,"ignore_cache":false}'), +(2597, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.78+00', '{"cached":null,"ignore_cache":false}'), +(2598, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.926+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2599, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:33.932+00', '{"cached":null,"ignore_cache":false}'), +(2600, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:34.018+00', '{"cached":null,"ignore_cache":false}'), +(2601, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:35.032+00', '{"cached":null,"ignore_cache":null}'), +(2602, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 06:51:35.575+00', '{"cached":null,"ignore_cache":false}'), +(2603, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:48.767+00', '{"cached":null,"ignore_cache":null}'), +(2604, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.645+00', '{"cached":null,"ignore_cache":false}'), +(2605, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.67+00', '{"cached":null,"ignore_cache":false}'), +(2606, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.671+00', '{"cached":null,"ignore_cache":false}'), +(2607, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.752+00', '{"cached":null,"ignore_cache":false}'), +(2608, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.777+00', '{"cached":null,"ignore_cache":false}'), +(2609, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.804+00', '{"cached":null,"ignore_cache":false}'), +(2610, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 07:14:49.816+00', '{"cached":null,"ignore_cache":false}'), +(2611, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-19 07:16:06.492+00', '{"cached":null,"ignore_cache":null}'), +(2612, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:15.236+00', '{"cached":null,"ignore_cache":null}'), +(2613, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.471+00', '{"cached":null,"ignore_cache":false}'), +(2614, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.5+00', '{"cached":null,"ignore_cache":false}'), +(2615, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.501+00', '{"cached":null,"ignore_cache":false}'), +(2616, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.511+00', '{"cached":null,"ignore_cache":false}'), +(2617, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.511+00', '{"cached":null,"ignore_cache":false}'), +(2618, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.542+00', '{"cached":null,"ignore_cache":false}'), +(2619, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:16.601+00', '{"cached":null,"ignore_cache":false}'), +(2620, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:37.077+00', '{"cached":null,"ignore_cache":null}'), +(2621, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:22:50.591+00', '{"cached":null,"ignore_cache":null}'), +(2622, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:23:36.11+00', '{"cached":null,"ignore_cache":null}'), +(2623, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:11.685+00', '{"cached":null,"ignore_cache":null}'), +(2624, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:41.621+00', '{"cached":null,"ignore_cache":null}'), +(2625, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:44.049+00', '{"cached":null,"ignore_cache":null}'), +(2626, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:47.994+00', '{"cached":null,"ignore_cache":null}'), +(2627, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:50.233+00', '{"cached":null,"ignore_cache":null}'), +(2628, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:53.175+00', '{"cached":null,"ignore_cache":null}'), +(2629, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:54.922+00', '{"cached":null,"ignore_cache":null}'), +(2630, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:56.712+00', '{"cached":null,"ignore_cache":null}'), +(2631, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:24:58.47+00', '{"cached":null,"ignore_cache":null}'), +(2632, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:02.722+00', '{"cached":null,"ignore_cache":null}'), +(2633, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:27.954+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2634, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:29.444+00', '{"cached":null,"ignore_cache":null}'), +(2635, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:27:30.527+00', '{"cached":null,"ignore_cache":null}'), +(2636, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:00.112+00', '{"cached":null,"ignore_cache":null}'), +(2637, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:01.603+00', '{"cached":null,"ignore_cache":null}'), +(2638, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:28:05.863+00', '{"cached":null,"ignore_cache":null}'), +(2639, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 07:33:52.269+00', '{"cached":null,"ignore_cache":null}'), +(2640, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 07:34:35.746+00', '{"cached":null,"ignore_cache":null}'), +(2641, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 07:34:36.687+00', '{"cached":null,"ignore_cache":false}'), +(2642, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:35:27.959+00', '{"cached":null,"ignore_cache":null}'), +(2643, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:35:28.598+00', '{"cached":null,"ignore_cache":false}'), +(2644, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:06.745+00', '{"cached":null,"ignore_cache":null}'), +(2645, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.468+00', '{"cached":null,"ignore_cache":false}'), +(2646, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.503+00', '{"cached":null,"ignore_cache":false}'), +(2647, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.904+00', '{"cached":null,"ignore_cache":false}'), +(2648, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:07.981+00', '{"cached":null,"ignore_cache":false}'), +(2649, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:08.128+00', '{"cached":null,"ignore_cache":false}'), +(2650, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:08.333+00', '{"cached":null,"ignore_cache":false}'), +(2651, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:08.434+00', '{"cached":null,"ignore_cache":false}'), +(2652, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:12.526+00', '{"cached":null,"ignore_cache":null}'), +(2653, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:13.034+00', '{"cached":null,"ignore_cache":null}'), +(2654, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:18.542+00', '{"cached":null,"ignore_cache":null}'), +(2655, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.046+00', '{"cached":null,"ignore_cache":false}'), +(2656, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.062+00', '{"cached":null,"ignore_cache":false}'), +(2657, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.076+00', '{"cached":null,"ignore_cache":false}'), +(2658, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.114+00', '{"cached":null,"ignore_cache":false}'), +(2659, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.267+00', '{"cached":null,"ignore_cache":false}'), +(2660, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.293+00', '{"cached":null,"ignore_cache":false}'), +(2661, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:19.295+00', '{"cached":null,"ignore_cache":false}'), +(2662, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:23.331+00', '{"cached":null,"ignore_cache":null}'), +(2663, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:23.838+00', '{"cached":null,"ignore_cache":false}'), +(2664, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 07:36:59.291+00', '{"cached":null,"ignore_cache":false}'), +(2665, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 07:39:24.989+00', '{"cached":null,"ignore_cache":false}'), +(2666, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 07:39:31.349+00', '{"cached":null,"ignore_cache":null}'), +(2667, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 07:39:32.227+00', '{"cached":null,"ignore_cache":false}'), +(2668, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:42:10.69+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2669, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:45:57.841+00', '{"cached":null,"ignore_cache":null}'), +(2670, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:46:15.136+00', '{"cached":null,"ignore_cache":null}'), +(2671, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:46:57.394+00', '{"cached":null,"ignore_cache":null}'), +(2672, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:06.377+00', '{"cached":null,"ignore_cache":null}'), +(2673, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:12.49+00', '{"cached":null,"ignore_cache":null}'), +(2674, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:15.342+00', '{"cached":null,"ignore_cache":null}'), +(2675, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 07:47:17.333+00', '{"cached":null,"ignore_cache":null}'), +(2676, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 07:50:46.174+00', '{"cached":null,"ignore_cache":null}'), +(2677, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:25.195+00', '{"cached":null,"ignore_cache":null}'), +(2678, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:25.746+00', '{"cached":null,"ignore_cache":false}'), +(2679, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:37.664+00', '{"cached":null,"ignore_cache":null}'), +(2680, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:38.107+00', '{"cached":null,"ignore_cache":false}'), +(2681, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.106+00', '{"cached":null,"ignore_cache":null}'), +(2682, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.541+00', '{"cached":null,"ignore_cache":false}'), +(2683, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.553+00', '{"cached":null,"ignore_cache":false}'), +(2684, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:51.979+00', '{"cached":null,"ignore_cache":false}'), +(2685, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:52.001+00', '{"cached":null,"ignore_cache":false}'), +(2686, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:52.019+00', '{"cached":null,"ignore_cache":false}'), +(2687, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:52.052+00', '{"cached":null,"ignore_cache":false}'), +(2688, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 07:56:52.118+00', '{"cached":null,"ignore_cache":false}'), +(2689, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 08:02:11.486+00', '{"cached":null,"ignore_cache":null}'), +(2690, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.192+00', '{"cached":null,"ignore_cache":false}'), +(2691, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.354+00', '{"cached":null,"ignore_cache":false}'), +(2692, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.37+00', '{"cached":null,"ignore_cache":false}'), +(2693, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.371+00', '{"cached":null,"ignore_cache":false}'), +(2694, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.372+00', '{"cached":null,"ignore_cache":false}'), +(2695, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.547+00', '{"cached":null,"ignore_cache":false}'), +(2696, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.728+00', '{"cached":null,"ignore_cache":false}'), +(2697, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.802+00', '{"cached":null,"ignore_cache":false}'), +(2698, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 08:20:26.87+00', '{"cached":null,"ignore_cache":false}'), +(2699, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.402+00', '{"cached":null,"ignore_cache":false}'), +(2700, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.44+00', '{"cached":null,"ignore_cache":false}'), +(2701, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.515+00', '{"cached":null,"ignore_cache":false}'), +(2702, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.516+00', '{"cached":null,"ignore_cache":false}'), +(2703, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.519+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2704, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.521+00', '{"cached":null,"ignore_cache":false}'), +(2705, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.581+00', '{"cached":null,"ignore_cache":false}'), +(2706, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.616+00', '{"cached":null,"ignore_cache":false}'), +(2707, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:15.678+00', '{"cached":null,"ignore_cache":false}'), +(2708, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.32+00', '{"cached":null,"ignore_cache":false}'), +(2709, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.421+00', '{"cached":null,"ignore_cache":false}'), +(2710, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.506+00', '{"cached":null,"ignore_cache":false}'), +(2711, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.523+00', '{"cached":null,"ignore_cache":false}'), +(2712, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.648+00', '{"cached":null,"ignore_cache":false}'), +(2713, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.78+00', '{"cached":null,"ignore_cache":false}'), +(2714, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.876+00', '{"cached":null,"ignore_cache":false}'), +(2715, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.926+00', '{"cached":null,"ignore_cache":false}'), +(2716, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:26.934+00', '{"cached":null,"ignore_cache":false}'), +(2717, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:27.03+00', '{"cached":null,"ignore_cache":false}'), +(2718, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.183+00', '{"cached":null,"ignore_cache":false}'), +(2719, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.231+00', '{"cached":null,"ignore_cache":false}'), +(2720, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.406+00', '{"cached":null,"ignore_cache":false}'), +(2721, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.438+00', '{"cached":null,"ignore_cache":false}'), +(2722, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.659+00', '{"cached":null,"ignore_cache":false}'), +(2723, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.673+00', '{"cached":null,"ignore_cache":false}'), +(2724, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.682+00', '{"cached":null,"ignore_cache":false}'), +(2725, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:29.719+00', '{"cached":null,"ignore_cache":false}'), +(2726, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:30.042+00', '{"cached":null,"ignore_cache":false}'), +(2727, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:30.048+00', '{"cached":null,"ignore_cache":false}'), +(2728, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:30.136+00', '{"cached":null,"ignore_cache":false}'), +(2729, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 08:21:30.327+00', '{"cached":null,"ignore_cache":false}'), +(2730, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.409+00', '{"cached":null,"ignore_cache":false}'), +(2731, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.494+00', '{"cached":null,"ignore_cache":false}'), +(2732, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.619+00', '{"cached":null,"ignore_cache":false}'), +(2733, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.685+00', '{"cached":null,"ignore_cache":false}'), +(2734, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.75+00', '{"cached":null,"ignore_cache":false}'), +(2735, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.773+00', '{"cached":null,"ignore_cache":false}'), +(2736, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.812+00', '{"cached":null,"ignore_cache":false}'), +(2737, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.854+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2738, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 08:22:17.875+00', '{"cached":null,"ignore_cache":false}'), +(2739, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:34.136+00', '{"cached":null,"ignore_cache":null}'), +(2740, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:42.424+00', '{"cached":null,"ignore_cache":false}'), +(2741, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:48.172+00', '{"cached":null,"ignore_cache":false}'), +(2742, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:20.4+00', '{"cached":null,"ignore_cache":false}'), +(2743, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:30.77+00', '{"cached":null,"ignore_cache":false}'), +(2744, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:37.406+00', '{"cached":null,"ignore_cache":false}'), +(2745, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 08:38:45.125+00', '{"cached":null,"ignore_cache":false}'), +(2746, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:05.769+00', '{"cached":null,"ignore_cache":null}'), +(2747, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.796+00', '{"cached":null,"ignore_cache":false}'), +(2748, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.812+00', '{"cached":null,"ignore_cache":false}'), +(2749, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.889+00', '{"cached":null,"ignore_cache":false}'), +(2750, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.922+00', '{"cached":null,"ignore_cache":false}'), +(2751, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.942+00', '{"cached":null,"ignore_cache":false}'), +(2752, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:06.975+00', '{"cached":null,"ignore_cache":false}'), +(2753, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:07.096+00', '{"cached":null,"ignore_cache":false}'), +(2754, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 08:44:54.026+00', '{"cached":null,"ignore_cache":null}'), +(2755, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 08:50:07.844+00', '{"cached":null,"ignore_cache":null}'), +(2756, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.163+00', '{"cached":null,"ignore_cache":false}'), +(2757, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.227+00', '{"cached":null,"ignore_cache":false}'), +(2758, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.57+00', '{"cached":null,"ignore_cache":false}'), +(2759, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.68+00', '{"cached":null,"ignore_cache":false}'), +(2760, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.696+00', '{"cached":null,"ignore_cache":false}'), +(2761, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.742+00', '{"cached":null,"ignore_cache":false}'), +(2762, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.844+00', '{"cached":null,"ignore_cache":false}'), +(2763, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.891+00', '{"cached":null,"ignore_cache":false}'), +(2764, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 09:01:17.892+00', '{"cached":null,"ignore_cache":false}'), +(2765, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 09:28:57.694+00', '{"cached":null,"ignore_cache":null}'), +(2766, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 09:28:58.164+00', '{"cached":null,"ignore_cache":false}'), +(2767, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 09:29:17.622+00', '{"cached":null,"ignore_cache":true}'), +(2768, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 09:29:58.432+00', '{"cached":null,"ignore_cache":null}'), +(2769, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 09:29:59.164+00', '{"cached":null,"ignore_cache":false}'), +(2770, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 09:30:15.457+00', '{"cached":null,"ignore_cache":null}'), +(2771, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 09:30:15.985+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2772, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:30:22.803+00', '{"cached":null,"ignore_cache":null}'), +(2773, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:30:23.294+00', '{"cached":null,"ignore_cache":false}'), +(2774, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 09:32:01.592+00', '{"cached":null,"ignore_cache":null}'), +(2775, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-19 09:32:02.105+00', '{"cached":null,"ignore_cache":false}'), +(2776, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 09:32:25.087+00', '{"cached":null,"ignore_cache":null}'), +(2777, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:34:49.051+00', '{"cached":null,"ignore_cache":null}'), +(2778, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:34:49.535+00', '{"cached":null,"ignore_cache":false}'), +(2779, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 09:35:28.196+00', '{"cached":null,"ignore_cache":null}'), +(2780, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:52:57.812+00', '{"cached":null,"ignore_cache":null}'), +(2781, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:52:58.522+00', '{"cached":null,"ignore_cache":false}'), +(2782, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:55:34.076+00', '{"cached":null,"ignore_cache":null}'), +(2783, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-19 09:55:34.571+00', '{"cached":null,"ignore_cache":false}'), +(2784, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:45.342+00', '{"cached":null,"ignore_cache":null}'), +(2785, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:19.945+00', '{"cached":null,"ignore_cache":false}'), +(2786, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:21.063+00', '{"cached":null,"ignore_cache":false}'), +(2787, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:30.578+00', '{"cached":null,"ignore_cache":false}'), +(2788, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 09:57:31.543+00', '{"cached":null,"ignore_cache":false}'), +(2789, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 10:16:21.444+00', '{"cached":null,"ignore_cache":null}'), +(2790, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 10:16:21.954+00', '{"cached":null,"ignore_cache":false}'), +(2791, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 10:18:26.755+00', '{"cached":null,"ignore_cache":false}'), +(2792, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 10:18:30.83+00', '{"cached":null,"ignore_cache":false}'), +(2793, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:53.679+00', '{"cached":null,"ignore_cache":null}'), +(2794, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 10:20:55.391+00', '{"cached":null,"ignore_cache":null}'), +(2795, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-19 10:20:55.924+00', '{"cached":null,"ignore_cache":false}'), +(2796, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:21:33.328+00', '{"cached":null,"ignore_cache":null}'), +(2797, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:21:42.189+00', '{"cached":null,"ignore_cache":null}'), +(2798, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:08.725+00', '{"cached":null,"ignore_cache":null}'), +(2799, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:30.108+00', '{"cached":null,"ignore_cache":null}'), +(2800, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:33.683+00', '{"cached":null,"ignore_cache":null}'), +(2801, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:37.199+00', '{"cached":null,"ignore_cache":null}'), +(2802, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:45.874+00', '{"cached":null,"ignore_cache":null}'), +(2803, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:24:57.338+00', '{"cached":null,"ignore_cache":null}'), +(2804, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-19 10:32:35.265+00', '{"cached":null,"ignore_cache":null}'), +(2805, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:35:30.596+00', '{"cached":null,"ignore_cache":null}'), +(2806, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:36:34.624+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2807, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:39:30.586+00', '{"cached":null,"ignore_cache":null}'), +(2808, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.161+00', '{"cached":null,"ignore_cache":null}'), +(2809, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.825+00', '{"cached":null,"ignore_cache":false}'), +(2810, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.843+00', '{"cached":null,"ignore_cache":false}'), +(2811, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.867+00', '{"cached":null,"ignore_cache":false}'), +(2812, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.888+00', '{"cached":null,"ignore_cache":false}'), +(2813, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.908+00', '{"cached":null,"ignore_cache":false}'), +(2814, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.909+00', '{"cached":null,"ignore_cache":false}'), +(2815, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 10:41:31.916+00', '{"cached":null,"ignore_cache":false}'), +(2816, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:48:23.326+00', '{"cached":null,"ignore_cache":null}'), +(2817, 1, 'table', 36, TIMESTAMP WITH TIME ZONE '2022-12-19 10:48:48.712+00', '{"cached":null,"ignore_cache":null}'), +(2818, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 10:49:24.331+00', '{"cached":null,"ignore_cache":null}'), +(2819, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 10:49:24.883+00', '{"cached":null,"ignore_cache":false}'), +(2820, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 10:52:01.135+00', '{"cached":null,"ignore_cache":null}'), +(2821, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-19 10:52:01.684+00', '{"cached":null,"ignore_cache":false}'), +(2822, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 10:52:31.606+00', '{"cached":null,"ignore_cache":null}'), +(2823, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.657+00', '{"cached":null,"ignore_cache":false}'), +(2824, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.911+00', '{"cached":null,"ignore_cache":false}'), +(2825, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:29.927+00', '{"cached":null,"ignore_cache":false}'), +(2826, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.183+00', '{"cached":null,"ignore_cache":false}'), +(2827, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.183+00', '{"cached":null,"ignore_cache":false}'), +(2828, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.186+00', '{"cached":null,"ignore_cache":false}'), +(2829, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.211+00', '{"cached":null,"ignore_cache":false}'), +(2830, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.235+00', '{"cached":null,"ignore_cache":false}'), +(2831, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.235+00', '{"cached":null,"ignore_cache":false}'), +(2832, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.267+00', '{"cached":null,"ignore_cache":false}'), +(2833, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:30.278+00', '{"cached":null,"ignore_cache":false}'), +(2834, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.275+00', '{"cached":null,"ignore_cache":false}'), +(2835, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.348+00', '{"cached":null,"ignore_cache":false}'), +(2836, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.392+00', '{"cached":null,"ignore_cache":false}'), +(2837, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.436+00', '{"cached":null,"ignore_cache":false}'), +(2838, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.442+00', '{"cached":null,"ignore_cache":false}'), +(2839, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.667+00', '{"cached":null,"ignore_cache":false}'), +(2840, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.706+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2841, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.715+00', '{"cached":null,"ignore_cache":false}'), +(2842, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.827+00', '{"cached":null,"ignore_cache":false}'), +(2843, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.892+00', '{"cached":null,"ignore_cache":false}'), +(2844, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.893+00', '{"cached":null,"ignore_cache":false}'), +(2845, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:18:47.916+00', '{"cached":null,"ignore_cache":false}'), +(2846, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.515+00', '{"cached":null,"ignore_cache":false}'), +(2847, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.57+00', '{"cached":null,"ignore_cache":false}'), +(2848, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.588+00', '{"cached":null,"ignore_cache":false}'), +(2849, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.598+00', '{"cached":null,"ignore_cache":false}'), +(2850, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.609+00', '{"cached":null,"ignore_cache":false}'), +(2851, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.623+00', '{"cached":null,"ignore_cache":false}'), +(2852, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:09.629+00', '{"cached":null,"ignore_cache":false}'), +(2853, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.706+00', '{"cached":null,"ignore_cache":false}'), +(2854, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.731+00', '{"cached":null,"ignore_cache":false}'), +(2855, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.755+00', '{"cached":null,"ignore_cache":false}'), +(2856, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.756+00', '{"cached":null,"ignore_cache":false}'), +(2857, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.761+00', '{"cached":null,"ignore_cache":false}'), +(2858, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.769+00', '{"cached":null,"ignore_cache":false}'), +(2859, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:16.777+00', '{"cached":null,"ignore_cache":false}'), +(2860, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:25.847+00', '{"cached":null,"ignore_cache":false}'), +(2861, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.106+00', '{"cached":null,"ignore_cache":false}'), +(2862, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.218+00', '{"cached":null,"ignore_cache":false}'), +(2863, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.517+00', '{"cached":null,"ignore_cache":false}'), +(2864, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.518+00', '{"cached":null,"ignore_cache":false}'), +(2865, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.518+00', '{"cached":null,"ignore_cache":false}'), +(2866, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.519+00', '{"cached":null,"ignore_cache":false}'), +(2867, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.527+00', '{"cached":null,"ignore_cache":false}'), +(2868, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:19:26.73+00', '{"cached":null,"ignore_cache":false}'), +(2869, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:10.278+00', '{"cached":null,"ignore_cache":null}'), +(2870, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.103+00', '{"cached":null,"ignore_cache":false}'), +(2871, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.103+00', '{"cached":null,"ignore_cache":false}'), +(2872, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.104+00', '{"cached":null,"ignore_cache":false}'), +(2873, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.137+00', '{"cached":null,"ignore_cache":false}'), +(2874, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.139+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2875, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.147+00', '{"cached":null,"ignore_cache":false}'), +(2876, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.288+00', '{"cached":null,"ignore_cache":false}'), +(2877, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.388+00', '{"cached":null,"ignore_cache":false}'), +(2878, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:42.433+00', '{"cached":null,"ignore_cache":false}'), +(2879, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 11:35:55.368+00', '{"cached":null,"ignore_cache":null}'), +(2880, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 11:38:22.5+00', '{"cached":null,"ignore_cache":null}'), +(2881, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 11:39:16.234+00', '{"cached":null,"ignore_cache":null}'), +(2882, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.478+00', '{"cached":null,"ignore_cache":false}'), +(2883, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.517+00', '{"cached":null,"ignore_cache":false}'), +(2884, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.591+00', '{"cached":null,"ignore_cache":false}'), +(2885, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.593+00', '{"cached":null,"ignore_cache":false}'), +(2886, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.605+00', '{"cached":null,"ignore_cache":false}'), +(2887, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.649+00', '{"cached":null,"ignore_cache":false}'), +(2888, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:34.675+00', '{"cached":null,"ignore_cache":false}'), +(2889, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.829+00', '{"cached":null,"ignore_cache":false}'), +(2890, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.83+00', '{"cached":null,"ignore_cache":false}'), +(2891, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.871+00', '{"cached":null,"ignore_cache":false}'), +(2892, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.917+00', '{"cached":null,"ignore_cache":false}'), +(2893, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.927+00', '{"cached":null,"ignore_cache":false}'), +(2894, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.934+00', '{"cached":null,"ignore_cache":false}'), +(2895, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:42:36.941+00', '{"cached":null,"ignore_cache":false}'), +(2896, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.512+00', '{"cached":null,"ignore_cache":false}'), +(2897, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.745+00', '{"cached":null,"ignore_cache":false}'), +(2898, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.748+00', '{"cached":null,"ignore_cache":false}'), +(2899, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:50.995+00', '{"cached":null,"ignore_cache":false}'), +(2900, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:51.117+00', '{"cached":null,"ignore_cache":false}'), +(2901, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:51.121+00', '{"cached":null,"ignore_cache":false}'), +(2902, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:51.156+00', '{"cached":null,"ignore_cache":false}'), +(2903, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:51.27+00', '{"cached":null,"ignore_cache":false}'), +(2904, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:48:51.276+00', '{"cached":null,"ignore_cache":false}'), +(2905, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.291+00', '{"cached":null,"ignore_cache":false}'), +(2906, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.294+00', '{"cached":null,"ignore_cache":false}'), +(2907, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.358+00', '{"cached":null,"ignore_cache":false}'), +(2908, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.432+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2909, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.453+00', '{"cached":null,"ignore_cache":false}'), +(2910, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.511+00', '{"cached":null,"ignore_cache":false}'), +(2911, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.606+00', '{"cached":null,"ignore_cache":false}'), +(2912, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.66+00', '{"cached":null,"ignore_cache":false}'), +(2913, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 11:58:27.762+00', '{"cached":null,"ignore_cache":false}'), +(2914, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.494+00', '{"cached":null,"ignore_cache":false}'), +(2915, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.512+00', '{"cached":null,"ignore_cache":false}'), +(2916, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.544+00', '{"cached":null,"ignore_cache":false}'), +(2917, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.865+00', '{"cached":null,"ignore_cache":false}'), +(2918, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.901+00', '{"cached":null,"ignore_cache":false}'), +(2919, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.91+00', '{"cached":null,"ignore_cache":false}'), +(2920, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.921+00', '{"cached":null,"ignore_cache":false}'), +(2921, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:20.962+00', '{"cached":null,"ignore_cache":false}'), +(2922, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 12:04:21.103+00', '{"cached":null,"ignore_cache":false}'), +(2923, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:16.961+00', '{"cached":null,"ignore_cache":false}'), +(2924, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.327+00', '{"cached":null,"ignore_cache":false}'), +(2925, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.479+00', '{"cached":null,"ignore_cache":false}'), +(2926, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.492+00', '{"cached":null,"ignore_cache":false}'), +(2927, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.536+00', '{"cached":null,"ignore_cache":false}'), +(2928, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.55+00', '{"cached":null,"ignore_cache":false}'), +(2929, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.561+00', '{"cached":null,"ignore_cache":false}'), +(2930, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.589+00', '{"cached":null,"ignore_cache":false}'), +(2931, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 12:32:17.616+00', '{"cached":null,"ignore_cache":false}'), +(2932, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-19 13:05:37.755+00', '{"cached":null,"ignore_cache":null}'), +(2933, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:08.836+00', '{"cached":null,"ignore_cache":null}'), +(2934, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:09.473+00', '{"cached":null,"ignore_cache":false}'), +(2935, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:09.489+00', '{"cached":null,"ignore_cache":false}'), +(2936, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:09.491+00', '{"cached":null,"ignore_cache":false}'), +(2937, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:12.854+00', '{"cached":null,"ignore_cache":null}'), +(2938, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.396+00', '{"cached":null,"ignore_cache":false}'), +(2939, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.428+00', '{"cached":null,"ignore_cache":false}'), +(2940, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.459+00', '{"cached":null,"ignore_cache":false}'), +(2941, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.499+00', '{"cached":null,"ignore_cache":false}'), +(2942, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.501+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2943, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.513+00', '{"cached":null,"ignore_cache":false}'), +(2944, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-19 14:30:13.527+00', '{"cached":null,"ignore_cache":false}'), +(2945, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.492+00', '{"cached":null,"ignore_cache":false}'), +(2946, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.577+00', '{"cached":null,"ignore_cache":false}'), +(2947, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:06.883+00', '{"cached":null,"ignore_cache":false}'), +(2948, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:07.052+00', '{"cached":null,"ignore_cache":false}'), +(2949, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:07.125+00', '{"cached":null,"ignore_cache":false}'), +(2950, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:07.195+00', '{"cached":null,"ignore_cache":false}'), +(2951, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:07.233+00', '{"cached":null,"ignore_cache":false}'), +(2952, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:07.261+00', '{"cached":null,"ignore_cache":false}'), +(2953, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 04:06:07.379+00', '{"cached":null,"ignore_cache":false}'), +(2954, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:03.016+00', '{"cached":null,"ignore_cache":null}'), +(2955, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.1+00', '{"cached":null,"ignore_cache":false}'), +(2956, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.101+00', '{"cached":null,"ignore_cache":false}'), +(2957, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.103+00', '{"cached":null,"ignore_cache":false}'), +(2958, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.105+00', '{"cached":null,"ignore_cache":false}'), +(2959, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.112+00', '{"cached":null,"ignore_cache":false}'), +(2960, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.116+00', '{"cached":null,"ignore_cache":false}'), +(2961, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:04.125+00', '{"cached":null,"ignore_cache":false}'), +(2962, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:39.471+00', '{"cached":null,"ignore_cache":null}'), +(2963, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.074+00', '{"cached":null,"ignore_cache":false}'), +(2964, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.143+00', '{"cached":null,"ignore_cache":false}'), +(2965, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.182+00', '{"cached":null,"ignore_cache":false}'), +(2966, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.188+00', '{"cached":null,"ignore_cache":false}'), +(2967, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.198+00', '{"cached":null,"ignore_cache":false}'), +(2968, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.205+00', '{"cached":null,"ignore_cache":false}'), +(2969, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:09:40.247+00', '{"cached":null,"ignore_cache":false}'), +(2970, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.147+00', '{"cached":null,"ignore_cache":null}'), +(2971, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.923+00', '{"cached":null,"ignore_cache":false}'), +(2972, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.947+00', '{"cached":null,"ignore_cache":false}'), +(2973, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.952+00', '{"cached":null,"ignore_cache":false}'), +(2974, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.975+00', '{"cached":null,"ignore_cache":false}'), +(2975, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:05.99+00', '{"cached":null,"ignore_cache":false}'), +(2976, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:06.01+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(2977, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:06.032+00', '{"cached":null,"ignore_cache":false}'), +(2978, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:07.43+00', '{"cached":null,"ignore_cache":null}'), +(2979, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:07.836+00', '{"cached":null,"ignore_cache":null}'), +(2980, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:09.481+00', '{"cached":null,"ignore_cache":null}'), +(2981, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:10.041+00', '{"cached":null,"ignore_cache":false}'), +(2982, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:10.055+00', '{"cached":null,"ignore_cache":false}'), +(2983, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:10.076+00', '{"cached":null,"ignore_cache":false}'), +(2984, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:10.091+00', '{"cached":null,"ignore_cache":false}'), +(2985, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:10.122+00', '{"cached":null,"ignore_cache":false}'), +(2986, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:10.139+00', '{"cached":null,"ignore_cache":false}'), +(2987, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:13:10.146+00', '{"cached":null,"ignore_cache":false}'), +(2988, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.368+00', '{"cached":null,"ignore_cache":false}'), +(2989, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.459+00', '{"cached":null,"ignore_cache":false}'), +(2990, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.478+00', '{"cached":null,"ignore_cache":false}'), +(2991, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.54+00', '{"cached":null,"ignore_cache":false}'), +(2992, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.545+00', '{"cached":null,"ignore_cache":false}'), +(2993, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.546+00', '{"cached":null,"ignore_cache":false}'), +(2994, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.658+00', '{"cached":null,"ignore_cache":false}'), +(2995, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.705+00', '{"cached":null,"ignore_cache":false}'), +(2996, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:24:31.746+00', '{"cached":null,"ignore_cache":false}'), +(2997, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.669+00', '{"cached":null,"ignore_cache":false}'), +(2998, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.755+00', '{"cached":null,"ignore_cache":false}'), +(2999, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.796+00', '{"cached":null,"ignore_cache":false}'), +(3000, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.836+00', '{"cached":null,"ignore_cache":false}'), +(3001, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.862+00', '{"cached":null,"ignore_cache":false}'), +(3002, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.868+00', '{"cached":null,"ignore_cache":false}'), +(3003, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:00.884+00', '{"cached":null,"ignore_cache":false}'), +(3004, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.634+00', '{"cached":null,"ignore_cache":false}'), +(3005, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.638+00', '{"cached":null,"ignore_cache":false}'), +(3006, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.648+00', '{"cached":null,"ignore_cache":false}'), +(3007, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.686+00', '{"cached":null,"ignore_cache":false}'), +(3008, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.691+00', '{"cached":null,"ignore_cache":false}'), +(3009, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.711+00', '{"cached":null,"ignore_cache":false}'), +(3010, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:30:05.754+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3011, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.87+00', '{"cached":null,"ignore_cache":false}'), +(3012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:41.948+00', '{"cached":null,"ignore_cache":false}'), +(3013, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.031+00', '{"cached":null,"ignore_cache":false}'), +(3014, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.269+00', '{"cached":null,"ignore_cache":false}'), +(3015, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.463+00', '{"cached":null,"ignore_cache":false}'), +(3016, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.533+00', '{"cached":null,"ignore_cache":false}'), +(3017, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.552+00', '{"cached":null,"ignore_cache":false}'), +(3018, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.566+00', '{"cached":null,"ignore_cache":false}'), +(3019, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:42.699+00', '{"cached":null,"ignore_cache":false}'), +(3020, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.764+00', '{"cached":null,"ignore_cache":false}'), +(3021, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.796+00', '{"cached":null,"ignore_cache":false}'), +(3022, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.863+00', '{"cached":null,"ignore_cache":false}'), +(3023, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.871+00', '{"cached":null,"ignore_cache":false}'), +(3024, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.901+00', '{"cached":null,"ignore_cache":false}'), +(3025, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.92+00', '{"cached":null,"ignore_cache":false}'), +(3026, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:44.93+00', '{"cached":null,"ignore_cache":false}'), +(3027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.116+00', '{"cached":null,"ignore_cache":false}'), +(3028, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.124+00', '{"cached":null,"ignore_cache":false}'), +(3029, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.126+00', '{"cached":null,"ignore_cache":false}'), +(3030, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.135+00', '{"cached":null,"ignore_cache":false}'), +(3031, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.136+00', '{"cached":null,"ignore_cache":false}'), +(3032, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.16+00', '{"cached":null,"ignore_cache":false}'), +(3033, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:49.167+00', '{"cached":null,"ignore_cache":false}'), +(3034, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.226+00', '{"cached":null,"ignore_cache":false}'), +(3035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.231+00', '{"cached":null,"ignore_cache":false}'), +(3036, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.284+00', '{"cached":null,"ignore_cache":false}'), +(3037, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.338+00', '{"cached":null,"ignore_cache":false}'), +(3038, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.345+00', '{"cached":null,"ignore_cache":false}'), +(3039, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.352+00', '{"cached":null,"ignore_cache":false}'), +(3040, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:31:56.354+00', '{"cached":null,"ignore_cache":false}'), +(3041, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:46:31.266+00', '{"cached":null,"ignore_cache":null}'), +(3042, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:46:52.01+00', '{"cached":null,"ignore_cache":null}'), +(3043, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:46:52.393+00', '{"cached":null,"ignore_cache":false}'), +(3044, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:03.961+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3045, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:04.396+00', '{"cached":null,"ignore_cache":false}'), +(3046, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:18.995+00', '{"cached":null,"ignore_cache":null}'), +(3047, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:19.461+00', '{"cached":null,"ignore_cache":false}'), +(3048, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:29.781+00', '{"cached":null,"ignore_cache":null}'), +(3049, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:30.321+00', '{"cached":null,"ignore_cache":false}'), +(3050, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:43.551+00', '{"cached":null,"ignore_cache":null}'), +(3051, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:44.019+00', '{"cached":null,"ignore_cache":false}'), +(3052, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:53.451+00', '{"cached":null,"ignore_cache":null}'), +(3053, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:47:53.91+00', '{"cached":null,"ignore_cache":false}'), +(3054, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:50:41.772+00', '{"cached":null,"ignore_cache":null}'), +(3055, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:50:45.35+00', '{"cached":null,"ignore_cache":null}'), +(3056, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:50:45.878+00', '{"cached":null,"ignore_cache":false}'), +(3057, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.308+00', '{"cached":null,"ignore_cache":null}'), +(3058, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.837+00', '{"cached":null,"ignore_cache":false}'), +(3059, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.872+00', '{"cached":null,"ignore_cache":false}'), +(3060, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.926+00', '{"cached":null,"ignore_cache":false}'), +(3061, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.96+00', '{"cached":null,"ignore_cache":false}'), +(3062, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.98+00', '{"cached":null,"ignore_cache":false}'), +(3063, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:03.993+00', '{"cached":null,"ignore_cache":false}'), +(3064, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:05.08+00', '{"cached":null,"ignore_cache":null}'), +(3065, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:51:05.569+00', '{"cached":null,"ignore_cache":false}'), +(3066, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:40.485+00', '{"cached":null,"ignore_cache":null}'), +(3067, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:41.675+00', '{"cached":null,"ignore_cache":null}'), +(3068, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:42.573+00', '{"cached":null,"ignore_cache":null}'), +(3069, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.227+00', '{"cached":null,"ignore_cache":null}'), +(3070, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.798+00', '{"cached":null,"ignore_cache":false}'), +(3071, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.886+00', '{"cached":null,"ignore_cache":false}'), +(3072, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.931+00', '{"cached":null,"ignore_cache":false}'), +(3073, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.95+00', '{"cached":null,"ignore_cache":false}'), +(3074, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.956+00', '{"cached":null,"ignore_cache":false}'), +(3075, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:46.973+00', '{"cached":null,"ignore_cache":false}'), +(3076, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:50.319+00', '{"cached":null,"ignore_cache":null}'), +(3077, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:50.991+00', '{"cached":null,"ignore_cache":false}'), +(3078, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:23.312+00', '{"cached":null,"ignore_cache":false}'), +(3079, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:27.922+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3080, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.46+00', '{"cached":null,"ignore_cache":false}'), +(3081, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.491+00', '{"cached":null,"ignore_cache":false}'), +(3082, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.522+00', '{"cached":null,"ignore_cache":false}'), +(3083, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.529+00', '{"cached":null,"ignore_cache":false}'), +(3084, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.552+00', '{"cached":null,"ignore_cache":false}'), +(3085, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:28.573+00', '{"cached":null,"ignore_cache":false}'), +(3086, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:57:45.409+00', '{"cached":null,"ignore_cache":null}'), +(3087, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:57:45.968+00', '{"cached":null,"ignore_cache":false}'), +(3088, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:13.56+00', '{"cached":null,"ignore_cache":false}'), +(3089, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:17.967+00', '{"cached":null,"ignore_cache":null}'), +(3090, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.431+00', '{"cached":null,"ignore_cache":false}'), +(3091, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.577+00', '{"cached":null,"ignore_cache":false}'), +(3092, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.603+00', '{"cached":null,"ignore_cache":false}'), +(3093, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.642+00', '{"cached":null,"ignore_cache":false}'), +(3094, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.644+00', '{"cached":null,"ignore_cache":false}'), +(3095, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:18.668+00', '{"cached":null,"ignore_cache":false}'), +(3096, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:36.804+00', '{"cached":null,"ignore_cache":null}'), +(3097, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:37.653+00', '{"cached":null,"ignore_cache":false}'), +(3098, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:06.173+00', '{"cached":null,"ignore_cache":false}'), +(3099, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:10.514+00', '{"cached":null,"ignore_cache":null}'), +(3100, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.051+00', '{"cached":null,"ignore_cache":false}'), +(3101, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.077+00', '{"cached":null,"ignore_cache":false}'), +(3102, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.118+00', '{"cached":null,"ignore_cache":false}'), +(3103, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.119+00', '{"cached":null,"ignore_cache":false}'), +(3104, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.136+00', '{"cached":null,"ignore_cache":false}'), +(3105, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:11.15+00', '{"cached":null,"ignore_cache":false}'), +(3106, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:23.926+00', '{"cached":null,"ignore_cache":null}'), +(3107, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:24.66+00', '{"cached":null,"ignore_cache":false}'), +(3108, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:41.981+00', '{"cached":null,"ignore_cache":null}'), +(3109, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.496+00', '{"cached":null,"ignore_cache":false}'), +(3110, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.515+00', '{"cached":null,"ignore_cache":false}'), +(3111, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.522+00', '{"cached":null,"ignore_cache":false}'), +(3112, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.529+00', '{"cached":null,"ignore_cache":false}'), +(3113, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.554+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3114, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:42.554+00', '{"cached":null,"ignore_cache":false}'), +(3115, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:48.982+00', '{"cached":null,"ignore_cache":null}'), +(3116, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:53.81+00', '{"cached":null,"ignore_cache":null}'), +(3117, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.948+00', '{"cached":null,"ignore_cache":false}'), +(3118, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.962+00', '{"cached":null,"ignore_cache":false}'), +(3119, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:54.985+00', '{"cached":null,"ignore_cache":false}'), +(3120, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:55.004+00', '{"cached":null,"ignore_cache":false}'), +(3121, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:55.008+00', '{"cached":null,"ignore_cache":false}'), +(3122, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:55.021+00', '{"cached":null,"ignore_cache":false}'), +(3123, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:55.029+00', '{"cached":null,"ignore_cache":false}'), +(3124, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:26.534+00', '{"cached":null,"ignore_cache":null}'), +(3125, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.137+00', '{"cached":null,"ignore_cache":false}'), +(3126, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.181+00', '{"cached":null,"ignore_cache":false}'), +(3127, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.245+00', '{"cached":null,"ignore_cache":false}'), +(3128, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.252+00', '{"cached":null,"ignore_cache":false}'), +(3129, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.369+00', '{"cached":null,"ignore_cache":false}'), +(3130, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:00:27.389+00', '{"cached":null,"ignore_cache":false}'), +(3131, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:04:43.467+00', '{"cached":null,"ignore_cache":null}'), +(3132, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:04:48.936+00', '{"cached":null,"ignore_cache":null}'), +(3133, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:15.775+00', '{"cached":null,"ignore_cache":null}'), +(3134, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.473+00', '{"cached":null,"ignore_cache":false}'), +(3135, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.518+00', '{"cached":null,"ignore_cache":false}'), +(3136, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.573+00', '{"cached":null,"ignore_cache":false}'), +(3137, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.576+00', '{"cached":null,"ignore_cache":false}'), +(3138, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.698+00', '{"cached":null,"ignore_cache":false}'), +(3139, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:16.701+00', '{"cached":null,"ignore_cache":false}'), +(3140, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:18.424+00', '{"cached":null,"ignore_cache":null}'), +(3141, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:05:18.942+00', '{"cached":null,"ignore_cache":false}'), +(3142, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:11.268+00', '{"cached":null,"ignore_cache":null}'), +(3143, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.511+00', '{"cached":null,"ignore_cache":null}'), +(3144, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.962+00', '{"cached":null,"ignore_cache":false}'), +(3145, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:17.97+00', '{"cached":null,"ignore_cache":false}'), +(3146, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:18.02+00', '{"cached":null,"ignore_cache":false}'), +(3147, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:18.035+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3148, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:18.046+00', '{"cached":null,"ignore_cache":false}'), +(3149, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:18.054+00', '{"cached":null,"ignore_cache":false}'), +(3150, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.715+00', '{"cached":null,"ignore_cache":false}'), +(3151, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.761+00', '{"cached":null,"ignore_cache":false}'), +(3152, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.917+00', '{"cached":null,"ignore_cache":false}'), +(3153, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.931+00', '{"cached":null,"ignore_cache":false}'), +(3154, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.934+00', '{"cached":null,"ignore_cache":false}'), +(3155, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:06:26.955+00', '{"cached":null,"ignore_cache":false}'), +(3156, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:14.799+00', '{"cached":null,"ignore_cache":null}'), +(3157, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:49.898+00', '{"cached":null,"ignore_cache":null}'), +(3158, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.39+00', '{"cached":null,"ignore_cache":false}'), +(3159, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.482+00', '{"cached":null,"ignore_cache":false}'), +(3160, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.491+00', '{"cached":null,"ignore_cache":false}'), +(3161, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.539+00', '{"cached":null,"ignore_cache":false}'), +(3162, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.542+00', '{"cached":null,"ignore_cache":false}'), +(3163, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:50.573+00', '{"cached":null,"ignore_cache":false}'), +(3164, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.199+00', '{"cached":null,"ignore_cache":false}'), +(3165, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.233+00', '{"cached":null,"ignore_cache":false}'), +(3166, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.237+00', '{"cached":null,"ignore_cache":false}'), +(3167, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.239+00', '{"cached":null,"ignore_cache":false}'), +(3168, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.28+00', '{"cached":null,"ignore_cache":false}'), +(3169, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.297+00', '{"cached":null,"ignore_cache":false}'), +(3170, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:07:58.33+00', '{"cached":null,"ignore_cache":false}'), +(3171, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:10:35.836+00', '{"cached":null,"ignore_cache":null}'), +(3172, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:10:38.398+00', '{"cached":null,"ignore_cache":null}'), +(3173, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:10:38.904+00', '{"cached":null,"ignore_cache":false}'), +(3174, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:51.453+00', '{"cached":null,"ignore_cache":null}'), +(3175, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.347+00', '{"cached":null,"ignore_cache":false}'), +(3176, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.392+00', '{"cached":null,"ignore_cache":false}'), +(3177, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.427+00', '{"cached":null,"ignore_cache":false}'), +(3178, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.455+00', '{"cached":null,"ignore_cache":false}'), +(3179, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.482+00', '{"cached":null,"ignore_cache":false}'), +(3180, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.504+00', '{"cached":null,"ignore_cache":false}'), +(3181, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:11:52.524+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3182, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:26.709+00', '{"cached":null,"ignore_cache":null}'), +(3183, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.198+00', '{"cached":null,"ignore_cache":false}'), +(3184, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.218+00', '{"cached":null,"ignore_cache":false}'), +(3185, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.227+00', '{"cached":null,"ignore_cache":false}'), +(3186, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.233+00', '{"cached":null,"ignore_cache":false}'), +(3187, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.241+00', '{"cached":null,"ignore_cache":false}'), +(3188, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:27.254+00', '{"cached":null,"ignore_cache":false}'), +(3189, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:31.042+00', '{"cached":null,"ignore_cache":false}'), +(3190, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:31.055+00', '{"cached":null,"ignore_cache":false}'), +(3191, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:31.1+00', '{"cached":null,"ignore_cache":false}'), +(3192, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:31.114+00', '{"cached":null,"ignore_cache":false}'), +(3193, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:31.142+00', '{"cached":null,"ignore_cache":false}'), +(3194, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:31.145+00', '{"cached":null,"ignore_cache":false}'), +(3195, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.78+00', '{"cached":null,"ignore_cache":false}'), +(3196, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.8+00', '{"cached":null,"ignore_cache":false}'), +(3197, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.815+00', '{"cached":null,"ignore_cache":false}'), +(3198, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.817+00', '{"cached":null,"ignore_cache":false}'), +(3199, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.818+00', '{"cached":null,"ignore_cache":false}'), +(3200, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:34.841+00', '{"cached":null,"ignore_cache":false}'), +(3201, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.693+00', '{"cached":null,"ignore_cache":false}'), +(3202, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.705+00', '{"cached":null,"ignore_cache":false}'), +(3203, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.74+00', '{"cached":null,"ignore_cache":false}'), +(3204, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.748+00', '{"cached":null,"ignore_cache":false}'), +(3205, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.776+00', '{"cached":null,"ignore_cache":false}'), +(3206, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:37.801+00', '{"cached":null,"ignore_cache":false}'), +(3207, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.791+00', '{"cached":null,"ignore_cache":false}'), +(3208, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.8+00', '{"cached":null,"ignore_cache":false}'), +(3209, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.822+00', '{"cached":null,"ignore_cache":false}'), +(3210, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.854+00', '{"cached":null,"ignore_cache":false}'), +(3211, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.864+00', '{"cached":null,"ignore_cache":false}'), +(3212, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:40.884+00', '{"cached":null,"ignore_cache":false}'), +(3213, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.161+00', '{"cached":null,"ignore_cache":false}'), +(3214, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.202+00', '{"cached":null,"ignore_cache":false}'), +(3215, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.273+00', '{"cached":null,"ignore_cache":false}'), +(3216, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.286+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3217, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.307+00', '{"cached":null,"ignore_cache":false}'), +(3218, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:12:43.322+00', '{"cached":null,"ignore_cache":false}'), +(3219, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.416+00', '{"cached":null,"ignore_cache":null}'), +(3220, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.95+00', '{"cached":null,"ignore_cache":false}'), +(3221, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.96+00', '{"cached":null,"ignore_cache":false}'), +(3222, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:26.981+00', '{"cached":null,"ignore_cache":false}'), +(3223, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:27.018+00', '{"cached":null,"ignore_cache":false}'), +(3224, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:27.033+00', '{"cached":null,"ignore_cache":false}'), +(3225, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:27.036+00', '{"cached":null,"ignore_cache":false}'), +(3226, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:40.499+00', '{"cached":null,"ignore_cache":null}'), +(3227, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:41.026+00', '{"cached":null,"ignore_cache":false}'), +(3228, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:41.043+00', '{"cached":null,"ignore_cache":false}'), +(3229, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:41.051+00', '{"cached":null,"ignore_cache":false}'), +(3230, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:41.113+00', '{"cached":null,"ignore_cache":false}'), +(3231, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:41.127+00', '{"cached":null,"ignore_cache":false}'), +(3232, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:41.161+00', '{"cached":null,"ignore_cache":false}'), +(3233, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.111+00', '{"cached":null,"ignore_cache":null}'), +(3234, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.699+00', '{"cached":null,"ignore_cache":false}'), +(3235, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.893+00', '{"cached":null,"ignore_cache":false}'), +(3236, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.898+00', '{"cached":null,"ignore_cache":false}'), +(3237, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.905+00', '{"cached":null,"ignore_cache":false}'), +(3238, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.913+00', '{"cached":null,"ignore_cache":false}'), +(3239, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.926+00', '{"cached":null,"ignore_cache":false}'), +(3240, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:14:47.931+00', '{"cached":null,"ignore_cache":false}'), +(3241, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:10.773+00', '{"cached":null,"ignore_cache":null}'), +(3242, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.289+00', '{"cached":null,"ignore_cache":false}'), +(3243, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.298+00', '{"cached":null,"ignore_cache":false}'), +(3244, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.307+00', '{"cached":null,"ignore_cache":false}'), +(3245, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.307+00', '{"cached":null,"ignore_cache":false}'), +(3246, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.327+00', '{"cached":null,"ignore_cache":false}'), +(3247, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:15:11.335+00', '{"cached":null,"ignore_cache":false}'), +(3248, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:16:34.911+00', '{"cached":null,"ignore_cache":null}'), +(3249, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:16:35.606+00', '{"cached":null,"ignore_cache":null}'), +(3250, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:16:51.33+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3251, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:16:51.968+00', '{"cached":null,"ignore_cache":false}'), +(3252, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:00.744+00', '{"cached":null,"ignore_cache":null}'), +(3253, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.321+00', '{"cached":null,"ignore_cache":false}'), +(3254, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.398+00', '{"cached":null,"ignore_cache":false}'), +(3255, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.413+00', '{"cached":null,"ignore_cache":false}'), +(3256, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.432+00', '{"cached":null,"ignore_cache":false}'), +(3257, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.442+00', '{"cached":null,"ignore_cache":false}'), +(3258, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.463+00', '{"cached":null,"ignore_cache":false}'), +(3259, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:01.496+00', '{"cached":null,"ignore_cache":false}'), +(3260, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:04.659+00', '{"cached":null,"ignore_cache":null}'), +(3261, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:17:05.179+00', '{"cached":null,"ignore_cache":false}'), +(3262, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:20.487+00', '{"cached":null,"ignore_cache":false}'), +(3263, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:24.378+00', '{"cached":null,"ignore_cache":false}'), +(3264, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:55.899+00', '{"cached":null,"ignore_cache":null}'), +(3265, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.326+00', '{"cached":null,"ignore_cache":false}'), +(3266, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.364+00', '{"cached":null,"ignore_cache":false}'), +(3267, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.379+00', '{"cached":null,"ignore_cache":false}'), +(3268, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.4+00', '{"cached":null,"ignore_cache":false}'), +(3269, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.407+00', '{"cached":null,"ignore_cache":false}'), +(3270, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.411+00', '{"cached":null,"ignore_cache":false}'), +(3271, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:18:56.422+00', '{"cached":null,"ignore_cache":false}'), +(3272, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 06:19:43.271+00', '{"cached":null,"ignore_cache":null}'), +(3273, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 06:20:14.172+00', '{"cached":null,"ignore_cache":null}'), +(3274, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:21:10.666+00', '{"cached":null,"ignore_cache":null}'), +(3275, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 06:21:46.394+00', '{"cached":null,"ignore_cache":null}'), +(3276, 1, 'table', 36, TIMESTAMP WITH TIME ZONE '2022-12-20 06:24:13.244+00', '{"cached":null,"ignore_cache":null}'), +(3277, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:24:26.351+00', '{"cached":null,"ignore_cache":null}'), +(3278, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:24:58.265+00', '{"cached":null,"ignore_cache":null}'), +(3279, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:24:58.749+00', '{"cached":null,"ignore_cache":false}'), +(3280, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:25:14.162+00', '{"cached":null,"ignore_cache":null}'), +(3281, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 06:25:42.888+00', '{"cached":null,"ignore_cache":null}'), +(3282, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:26:14.652+00', '{"cached":null,"ignore_cache":null}'), +(3283, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 06:26:18.514+00', '{"cached":null,"ignore_cache":null}'), +(3284, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:27:45.114+00', '{"cached":null,"ignore_cache":null}'), +(3285, 1, 'table', 36, TIMESTAMP WITH TIME ZONE '2022-12-20 06:27:50.239+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3286, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:28:09.132+00', '{"cached":null,"ignore_cache":null}'), +(3287, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.302+00', '{"cached":null,"ignore_cache":null}'), +(3288, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.971+00', '{"cached":null,"ignore_cache":false}'), +(3289, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:56.981+00', '{"cached":null,"ignore_cache":false}'), +(3290, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:57.05+00', '{"cached":null,"ignore_cache":false}'), +(3291, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:57.062+00', '{"cached":null,"ignore_cache":false}'), +(3292, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:57.062+00', '{"cached":null,"ignore_cache":false}'), +(3293, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:57.097+00', '{"cached":null,"ignore_cache":false}'), +(3294, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:30:57.135+00', '{"cached":null,"ignore_cache":false}'), +(3295, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:32.933+00', '{"cached":null,"ignore_cache":null}'), +(3296, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:34.518+00', '{"cached":null,"ignore_cache":null}'), +(3297, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:34.991+00', '{"cached":null,"ignore_cache":null}'), +(3298, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.282+00', '{"cached":null,"ignore_cache":null}'), +(3299, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.828+00', '{"cached":null,"ignore_cache":false}'), +(3300, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.945+00', '{"cached":null,"ignore_cache":false}'), +(3301, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.97+00', '{"cached":null,"ignore_cache":false}'), +(3302, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:38.988+00', '{"cached":null,"ignore_cache":false}'), +(3303, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:39+00', '{"cached":null,"ignore_cache":false}'), +(3304, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:39.007+00', '{"cached":null,"ignore_cache":false}'), +(3305, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:39.016+00', '{"cached":null,"ignore_cache":false}'), +(3306, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:40.255+00', '{"cached":null,"ignore_cache":null}'), +(3307, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:31:40.834+00', '{"cached":null,"ignore_cache":false}'), +(3308, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 06:35:57.88+00', '{"cached":null,"ignore_cache":null}'), +(3309, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:44:38.609+00', '{"cached":null,"ignore_cache":null}'), +(3310, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:44:53.983+00', '{"cached":null,"ignore_cache":null}'), +(3311, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:03.832+00', '{"cached":null,"ignore_cache":null}'), +(3312, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.394+00', '{"cached":null,"ignore_cache":false}'), +(3313, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.395+00', '{"cached":null,"ignore_cache":false}'), +(3314, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.402+00', '{"cached":null,"ignore_cache":false}'), +(3315, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.403+00', '{"cached":null,"ignore_cache":false}'), +(3316, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.427+00', '{"cached":null,"ignore_cache":false}'), +(3317, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.43+00', '{"cached":null,"ignore_cache":false}'), +(3318, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:04.439+00', '{"cached":null,"ignore_cache":false}'), +(3319, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:06.094+00', '{"cached":null,"ignore_cache":null}'), +(3320, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:06.621+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3321, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:23.695+00', '{"cached":null,"ignore_cache":null}'), +(3322, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:24.403+00', '{"cached":null,"ignore_cache":false}'), +(3323, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:39.036+00', '{"cached":null,"ignore_cache":null}'), +(3324, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:46:39.76+00', '{"cached":null,"ignore_cache":false}'), +(3325, 1, 'card', 23, TIMESTAMP WITH TIME ZONE '2022-12-20 06:51:23.575+00', '{"cached":null,"ignore_cache":null}'), +(3326, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:03.837+00', '{"cached":null,"ignore_cache":null}'), +(3327, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:11.641+00', '{"cached":null,"ignore_cache":null}'), +(3328, 1, 'table', 36, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:16.353+00', '{"cached":null,"ignore_cache":null}'), +(3329, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:32.203+00', '{"cached":null,"ignore_cache":null}'), +(3330, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.264+00', '{"cached":null,"ignore_cache":false}'), +(3331, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.346+00', '{"cached":null,"ignore_cache":false}'), +(3332, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.361+00', '{"cached":null,"ignore_cache":false}'), +(3333, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.411+00', '{"cached":null,"ignore_cache":false}'), +(3334, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.413+00', '{"cached":null,"ignore_cache":false}'), +(3335, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:33.44+00', '{"cached":null,"ignore_cache":false}'), +(3336, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:37.388+00', '{"cached":null,"ignore_cache":null}'), +(3337, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:55:37.863+00', '{"cached":null,"ignore_cache":false}'), +(3338, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:14.876+00', '{"cached":null,"ignore_cache":null}'), +(3339, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.305+00', '{"cached":null,"ignore_cache":false}'), +(3340, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.322+00', '{"cached":null,"ignore_cache":false}'), +(3341, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.411+00', '{"cached":null,"ignore_cache":false}'), +(3342, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.421+00', '{"cached":null,"ignore_cache":false}'), +(3343, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.536+00', '{"cached":null,"ignore_cache":false}'), +(3344, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.639+00', '{"cached":null,"ignore_cache":false}'), +(3345, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:16.693+00', '{"cached":null,"ignore_cache":false}'), +(3346, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:25.602+00', '{"cached":null,"ignore_cache":null}'), +(3347, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.393+00', '{"cached":null,"ignore_cache":false}'), +(3348, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.47+00', '{"cached":null,"ignore_cache":false}'), +(3349, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.52+00', '{"cached":null,"ignore_cache":false}'), +(3350, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.598+00', '{"cached":null,"ignore_cache":false}'), +(3351, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.602+00', '{"cached":null,"ignore_cache":false}'), +(3352, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:26.637+00', '{"cached":null,"ignore_cache":false}'), +(3353, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:32.262+00', '{"cached":null,"ignore_cache":null}'), +(3354, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:32.858+00', '{"cached":null,"ignore_cache":false}'), +(3355, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:53.247+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3356, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.065+00', '{"cached":null,"ignore_cache":false}'), +(3357, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.219+00', '{"cached":null,"ignore_cache":false}'), +(3358, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.366+00', '{"cached":null,"ignore_cache":false}'), +(3359, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.387+00', '{"cached":null,"ignore_cache":false}'), +(3360, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.454+00', '{"cached":null,"ignore_cache":false}'), +(3361, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:54.472+00', '{"cached":null,"ignore_cache":false}'), +(3362, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:04.269+00', '{"cached":null,"ignore_cache":null}'), +(3363, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:16.942+00', '{"cached":null,"ignore_cache":null}'), +(3364, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:21.883+00', '{"cached":null,"ignore_cache":false}'), +(3365, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:21.886+00', '{"cached":null,"ignore_cache":false}'), +(3366, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:21.978+00', '{"cached":null,"ignore_cache":false}'), +(3367, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:21.978+00', '{"cached":null,"ignore_cache":false}'), +(3368, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:22.007+00', '{"cached":null,"ignore_cache":false}'), +(3369, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:22.043+00', '{"cached":null,"ignore_cache":false}'), +(3370, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:23.992+00', '{"cached":null,"ignore_cache":null}'), +(3371, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:24.578+00', '{"cached":null,"ignore_cache":false}'), +(3372, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.122+00', '{"cached":null,"ignore_cache":null}'), +(3373, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.633+00', '{"cached":null,"ignore_cache":false}'), +(3374, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.717+00', '{"cached":null,"ignore_cache":false}'), +(3375, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.722+00', '{"cached":null,"ignore_cache":false}'), +(3376, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.735+00', '{"cached":null,"ignore_cache":false}'), +(3377, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.81+00', '{"cached":null,"ignore_cache":false}'), +(3378, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:57.833+00', '{"cached":null,"ignore_cache":false}'), +(3379, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:01:26.548+00', '{"cached":null,"ignore_cache":null}'), +(3380, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:01:58.455+00', '{"cached":null,"ignore_cache":null}'), +(3381, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:01:58.933+00', '{"cached":null,"ignore_cache":false}'), +(3382, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:38.554+00', '{"cached":null,"ignore_cache":null}'), +(3383, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.111+00', '{"cached":null,"ignore_cache":false}'), +(3384, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.148+00', '{"cached":null,"ignore_cache":false}'), +(3385, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.156+00', '{"cached":null,"ignore_cache":false}'), +(3386, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.165+00', '{"cached":null,"ignore_cache":false}'), +(3387, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.199+00', '{"cached":null,"ignore_cache":false}'), +(3388, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:39.233+00', '{"cached":null,"ignore_cache":false}'), +(3389, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:02.343+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3390, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:12.415+00', '{"cached":null,"ignore_cache":null}'), +(3391, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:12.918+00', '{"cached":null,"ignore_cache":false}'), +(3392, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.241+00', '{"cached":null,"ignore_cache":null}'), +(3393, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.877+00', '{"cached":null,"ignore_cache":false}'), +(3394, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.901+00', '{"cached":null,"ignore_cache":false}'), +(3395, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.927+00', '{"cached":null,"ignore_cache":false}'), +(3396, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.97+00', '{"cached":null,"ignore_cache":false}'), +(3397, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:41.985+00', '{"cached":null,"ignore_cache":false}'), +(3398, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:42.11+00', '{"cached":null,"ignore_cache":false}'), +(3399, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:04:05.277+00', '{"cached":null,"ignore_cache":null}'), +(3400, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:09:57.866+00', '{"cached":null,"ignore_cache":null}'), +(3401, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:09:58.412+00', '{"cached":null,"ignore_cache":false}'), +(3402, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:10.978+00', '{"cached":null,"ignore_cache":null}'), +(3403, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.61+00', '{"cached":null,"ignore_cache":false}'), +(3404, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.678+00', '{"cached":null,"ignore_cache":false}'), +(3405, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.69+00', '{"cached":null,"ignore_cache":false}'), +(3406, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.746+00', '{"cached":null,"ignore_cache":false}'), +(3407, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.781+00', '{"cached":null,"ignore_cache":false}'), +(3408, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:11:11.81+00', '{"cached":null,"ignore_cache":false}'), +(3409, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.27+00', '{"cached":null,"ignore_cache":false}'), +(3410, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.296+00', '{"cached":null,"ignore_cache":false}'), +(3411, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.308+00', '{"cached":null,"ignore_cache":false}'), +(3412, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.326+00', '{"cached":null,"ignore_cache":false}'), +(3413, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.338+00', '{"cached":null,"ignore_cache":false}'), +(3414, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:07.339+00', '{"cached":null,"ignore_cache":false}'), +(3415, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:10.045+00', '{"cached":null,"ignore_cache":false}'), +(3416, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:10.047+00', '{"cached":null,"ignore_cache":false}'), +(3417, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:10.09+00', '{"cached":null,"ignore_cache":false}'), +(3418, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:10.098+00', '{"cached":null,"ignore_cache":false}'), +(3419, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:10.105+00', '{"cached":null,"ignore_cache":false}'), +(3420, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:10.111+00', '{"cached":null,"ignore_cache":false}'), +(3421, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.217+00', '{"cached":null,"ignore_cache":false}'), +(3422, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.255+00', '{"cached":null,"ignore_cache":false}'), +(3423, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.295+00', '{"cached":null,"ignore_cache":false}'), +(3424, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.321+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3425, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.324+00', '{"cached":null,"ignore_cache":false}'), +(3426, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:12.338+00', '{"cached":null,"ignore_cache":false}'), +(3427, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.148+00', '{"cached":null,"ignore_cache":false}'), +(3428, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.15+00', '{"cached":null,"ignore_cache":false}'), +(3429, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.182+00', '{"cached":null,"ignore_cache":false}'), +(3430, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.194+00', '{"cached":null,"ignore_cache":false}'), +(3431, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.201+00', '{"cached":null,"ignore_cache":false}'), +(3432, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:19.204+00', '{"cached":null,"ignore_cache":false}'), +(3433, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:22.034+00', '{"cached":null,"ignore_cache":false}'), +(3434, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:22.071+00', '{"cached":null,"ignore_cache":false}'), +(3435, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:22.072+00', '{"cached":null,"ignore_cache":false}'), +(3436, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:22.113+00', '{"cached":null,"ignore_cache":false}'), +(3437, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:22.113+00', '{"cached":null,"ignore_cache":false}'), +(3438, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:22.125+00', '{"cached":null,"ignore_cache":false}'), +(3439, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.513+00', '{"cached":null,"ignore_cache":false}'), +(3440, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.532+00', '{"cached":null,"ignore_cache":false}'), +(3441, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.692+00', '{"cached":null,"ignore_cache":false}'), +(3442, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.705+00', '{"cached":null,"ignore_cache":false}'), +(3443, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.716+00', '{"cached":null,"ignore_cache":false}'), +(3444, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:24.76+00', '{"cached":null,"ignore_cache":false}'), +(3445, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.045+00', '{"cached":null,"ignore_cache":false}'), +(3446, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.06+00', '{"cached":null,"ignore_cache":false}'), +(3447, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.087+00', '{"cached":null,"ignore_cache":false}'), +(3448, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.101+00', '{"cached":null,"ignore_cache":false}'), +(3449, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.106+00', '{"cached":null,"ignore_cache":false}'), +(3450, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:13:27.109+00', '{"cached":null,"ignore_cache":false}'), +(3451, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:01.16+00', '{"cached":null,"ignore_cache":null}'), +(3452, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:16.778+00', '{"cached":null,"ignore_cache":null}'), +(3453, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:21.407+00', '{"cached":null,"ignore_cache":null}'), +(3454, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:38.44+00', '{"cached":null,"ignore_cache":null}'), +(3455, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:41.474+00', '{"cached":null,"ignore_cache":null}'), +(3456, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:14:50.507+00', '{"cached":null,"ignore_cache":null}'), +(3457, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:16:47.22+00', '{"cached":null,"ignore_cache":null}'), +(3458, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:17:05.626+00', '{"cached":null,"ignore_cache":null}'), +(3459, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:17:10.115+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3460, 1, 'table', 36, TIMESTAMP WITH TIME ZONE '2022-12-20 07:17:55.425+00', '{"cached":null,"ignore_cache":null}'), +(3461, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:23.156+00', '{"cached":null,"ignore_cache":null}'), +(3462, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.087+00', '{"cached":null,"ignore_cache":false}'), +(3463, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.092+00', '{"cached":null,"ignore_cache":false}'), +(3464, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.1+00', '{"cached":null,"ignore_cache":false}'), +(3465, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.106+00', '{"cached":null,"ignore_cache":false}'), +(3466, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.111+00', '{"cached":null,"ignore_cache":false}'), +(3467, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.119+00', '{"cached":null,"ignore_cache":false}'), +(3468, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:24.128+00', '{"cached":null,"ignore_cache":false}'), +(3469, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.145+00', '{"cached":null,"ignore_cache":null}'), +(3470, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.806+00', '{"cached":null,"ignore_cache":false}'), +(3471, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.87+00', '{"cached":null,"ignore_cache":false}'), +(3472, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.89+00', '{"cached":null,"ignore_cache":false}'), +(3473, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.905+00', '{"cached":null,"ignore_cache":false}'), +(3474, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.907+00', '{"cached":null,"ignore_cache":false}'), +(3475, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:18:33.924+00', '{"cached":null,"ignore_cache":false}'), +(3476, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:13.412+00', '{"cached":null,"ignore_cache":null}'), +(3477, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:13.921+00', '{"cached":null,"ignore_cache":false}'), +(3478, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:51.381+00', '{"cached":null,"ignore_cache":null}'), +(3479, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:09.052+00', '{"cached":null,"ignore_cache":null}'), +(3480, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:15.498+00', '{"cached":null,"ignore_cache":null}'), +(3481, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:17.328+00', '{"cached":null,"ignore_cache":null}'), +(3482, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:42.26+00', '{"cached":null,"ignore_cache":null}'), +(3483, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:44.958+00', '{"cached":null,"ignore_cache":null}'), +(3484, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:25:58.28+00', '{"cached":null,"ignore_cache":null}'), +(3485, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:22.062+00', '{"cached":null,"ignore_cache":null}'), +(3486, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:27.155+00', '{"cached":null,"ignore_cache":null}'), +(3487, 1, 'table', 36, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:29.363+00', '{"cached":null,"ignore_cache":null}'), +(3488, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:31.122+00', '{"cached":null,"ignore_cache":null}'), +(3489, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:33.432+00', '{"cached":null,"ignore_cache":null}'), +(3490, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:46.138+00', '{"cached":null,"ignore_cache":null}'), +(3491, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:58.681+00', '{"cached":null,"ignore_cache":null}'), +(3492, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.292+00', '{"cached":null,"ignore_cache":false}'), +(3493, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.331+00', '{"cached":null,"ignore_cache":false}'), +(3494, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.488+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3495, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.554+00', '{"cached":null,"ignore_cache":false}'), +(3496, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.582+00', '{"cached":null,"ignore_cache":false}'), +(3497, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:26:59.616+00', '{"cached":null,"ignore_cache":false}'), +(3498, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.46+00', '{"cached":null,"ignore_cache":false}'), +(3499, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.49+00', '{"cached":null,"ignore_cache":false}'), +(3500, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.502+00', '{"cached":null,"ignore_cache":false}'), +(3501, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.512+00', '{"cached":null,"ignore_cache":false}'), +(3502, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.535+00', '{"cached":null,"ignore_cache":false}'), +(3503, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:13.536+00', '{"cached":null,"ignore_cache":false}'), +(3504, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:16.943+00', '{"cached":null,"ignore_cache":null}'), +(3505, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.444+00', '{"cached":null,"ignore_cache":false}'), +(3506, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.489+00', '{"cached":null,"ignore_cache":false}'), +(3507, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.533+00', '{"cached":null,"ignore_cache":false}'), +(3508, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.559+00', '{"cached":null,"ignore_cache":false}'), +(3509, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.587+00', '{"cached":null,"ignore_cache":false}'), +(3510, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.614+00', '{"cached":null,"ignore_cache":false}'), +(3511, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:17.797+00', '{"cached":null,"ignore_cache":false}'), +(3512, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:27:50.824+00', '{"cached":null,"ignore_cache":null}'), +(3513, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:01.796+00', '{"cached":null,"ignore_cache":null}'), +(3514, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.207+00', '{"cached":null,"ignore_cache":null}'), +(3515, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.88+00', '{"cached":null,"ignore_cache":false}'), +(3516, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.924+00', '{"cached":null,"ignore_cache":false}'), +(3517, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:41.964+00', '{"cached":null,"ignore_cache":false}'), +(3518, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:42.012+00', '{"cached":null,"ignore_cache":false}'), +(3519, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:42.057+00', '{"cached":null,"ignore_cache":false}'), +(3520, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:42.058+00', '{"cached":null,"ignore_cache":false}'), +(3521, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:42.131+00', '{"cached":null,"ignore_cache":false}'), +(3522, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.037+00', '{"cached":null,"ignore_cache":false}'), +(3523, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.064+00', '{"cached":null,"ignore_cache":false}'), +(3524, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.083+00', '{"cached":null,"ignore_cache":false}'), +(3525, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.17+00', '{"cached":null,"ignore_cache":false}'), +(3526, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.172+00', '{"cached":null,"ignore_cache":false}'), +(3527, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.212+00', '{"cached":null,"ignore_cache":false}'), +(3528, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:44.219+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3529, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.268+00', '{"cached":null,"ignore_cache":false}'), +(3530, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.363+00', '{"cached":null,"ignore_cache":false}'), +(3531, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.387+00', '{"cached":null,"ignore_cache":false}'), +(3532, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.394+00', '{"cached":null,"ignore_cache":false}'), +(3533, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.466+00', '{"cached":null,"ignore_cache":false}'), +(3534, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.536+00', '{"cached":null,"ignore_cache":false}'), +(3535, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:46.544+00', '{"cached":null,"ignore_cache":false}'), +(3536, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.679+00', '{"cached":null,"ignore_cache":false}'), +(3537, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.724+00', '{"cached":null,"ignore_cache":false}'), +(3538, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.735+00', '{"cached":null,"ignore_cache":false}'), +(3539, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.749+00', '{"cached":null,"ignore_cache":false}'), +(3540, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.758+00', '{"cached":null,"ignore_cache":false}'), +(3541, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.767+00', '{"cached":null,"ignore_cache":false}'), +(3542, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:47.784+00', '{"cached":null,"ignore_cache":false}'), +(3543, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.593+00', '{"cached":null,"ignore_cache":false}'), +(3544, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.606+00', '{"cached":null,"ignore_cache":false}'), +(3545, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.657+00', '{"cached":null,"ignore_cache":false}'), +(3546, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.668+00', '{"cached":null,"ignore_cache":false}'), +(3547, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.694+00', '{"cached":null,"ignore_cache":false}'), +(3548, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.736+00', '{"cached":null,"ignore_cache":false}'), +(3549, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:28:53.764+00', '{"cached":null,"ignore_cache":false}'), +(3550, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:14.437+00', '{"cached":null,"ignore_cache":null}'), +(3551, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:26.485+00', '{"cached":null,"ignore_cache":null}'), +(3552, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:27.012+00', '{"cached":null,"ignore_cache":false}'), +(3553, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:39.562+00', '{"cached":null,"ignore_cache":null}'), +(3554, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.171+00', '{"cached":null,"ignore_cache":false}'), +(3555, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.216+00', '{"cached":null,"ignore_cache":false}'), +(3556, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.234+00', '{"cached":null,"ignore_cache":false}'), +(3557, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.266+00', '{"cached":null,"ignore_cache":false}'), +(3558, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.267+00', '{"cached":null,"ignore_cache":false}'), +(3559, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.273+00', '{"cached":null,"ignore_cache":false}'), +(3560, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:40.32+00', '{"cached":null,"ignore_cache":false}'), +(3561, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:53.518+00', '{"cached":null,"ignore_cache":null}'), +(3562, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:56.296+00', '{"cached":null,"ignore_cache":null}'), +(3563, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:29:56.814+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3564, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:30:10.079+00', '{"cached":null,"ignore_cache":null}'), +(3565, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:31:44.633+00', '{"cached":null,"ignore_cache":null}'), +(3566, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:31:45.144+00', '{"cached":null,"ignore_cache":false}'), +(3567, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:32:05.292+00', '{"cached":null,"ignore_cache":null}'), +(3568, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:32:35.316+00', '{"cached":null,"ignore_cache":null}'), +(3569, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:34:05.44+00', '{"cached":null,"ignore_cache":null}'), +(3570, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:34:08.12+00', '{"cached":null,"ignore_cache":null}'), +(3571, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:34:23.617+00', '{"cached":null,"ignore_cache":null}'), +(3572, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:35:45.581+00', '{"cached":null,"ignore_cache":null}'), +(3573, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:35:48.993+00', '{"cached":null,"ignore_cache":null}'), +(3574, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:08.853+00', '{"cached":null,"ignore_cache":null}'), +(3575, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.363+00', '{"cached":null,"ignore_cache":false}'), +(3576, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.406+00', '{"cached":null,"ignore_cache":false}'), +(3577, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.417+00', '{"cached":null,"ignore_cache":false}'), +(3578, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.424+00', '{"cached":null,"ignore_cache":false}'), +(3579, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.456+00', '{"cached":null,"ignore_cache":false}'), +(3580, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.465+00', '{"cached":null,"ignore_cache":false}'), +(3581, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:36:09.476+00', '{"cached":null,"ignore_cache":false}'), +(3582, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:44:31.666+00', '{"cached":null,"ignore_cache":null}'), +(3583, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:45:00.199+00', '{"cached":null,"ignore_cache":null}'), +(3584, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:26.463+00', '{"cached":null,"ignore_cache":null}'), +(3585, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:32.489+00', '{"cached":null,"ignore_cache":null}'), +(3586, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:47:50.725+00', '{"cached":null,"ignore_cache":null}'), +(3587, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:00.059+00', '{"cached":null,"ignore_cache":null}'), +(3588, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:11.005+00', '{"cached":null,"ignore_cache":null}'), +(3589, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:29.311+00', '{"cached":null,"ignore_cache":null}'), +(3590, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:43.219+00', '{"cached":null,"ignore_cache":null}'), +(3591, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:48:54.193+00', '{"cached":null,"ignore_cache":null}'), +(3592, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:20.454+00', '{"cached":null,"ignore_cache":null}'), +(3593, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:21.784+00', '{"cached":null,"ignore_cache":false}'), +(3594, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:50:47.729+00', '{"cached":null,"ignore_cache":null}'), +(3595, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 07:53:38.117+00', '{"cached":null,"ignore_cache":null}'), +(3596, 1, 'card', 24, TIMESTAMP WITH TIME ZONE '2022-12-20 07:54:32.396+00', '{"cached":null,"ignore_cache":null}'), +(3597, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:57:21.304+00', '{"cached":null,"ignore_cache":null}'), +(3598, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 07:57:44.528+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3599, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:05.81+00', '{"cached":null,"ignore_cache":null}'), +(3600, 1, 'card', 23, TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:14.406+00', '{"cached":null,"ignore_cache":null}'), +(3601, 1, 'card', 23, TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:15.15+00', '{"cached":null,"ignore_cache":false}'), +(3602, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:24.419+00', '{"cached":null,"ignore_cache":null}'), +(3603, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:24.902+00', '{"cached":null,"ignore_cache":false}'), +(3604, 1, 'card', 24, TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:30.167+00', '{"cached":null,"ignore_cache":null}'), +(3605, 1, 'card', 24, TIMESTAMP WITH TIME ZONE '2022-12-20 08:01:30.671+00', '{"cached":null,"ignore_cache":false}'), +(3606, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:42.17+00', '{"cached":null,"ignore_cache":null}'), +(3607, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.038+00', '{"cached":null,"ignore_cache":false}'), +(3608, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.112+00', '{"cached":null,"ignore_cache":false}'), +(3609, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.174+00', '{"cached":null,"ignore_cache":false}'), +(3610, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.194+00', '{"cached":null,"ignore_cache":false}'), +(3611, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.213+00', '{"cached":null,"ignore_cache":false}'), +(3612, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.215+00', '{"cached":null,"ignore_cache":false}'), +(3613, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 08:11:43.249+00', '{"cached":null,"ignore_cache":false}'), +(3614, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.186+00', '{"cached":null,"ignore_cache":false}'), +(3615, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.217+00', '{"cached":null,"ignore_cache":false}'), +(3616, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.49+00', '{"cached":null,"ignore_cache":false}'), +(3617, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.501+00', '{"cached":null,"ignore_cache":false}'), +(3618, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.502+00', '{"cached":null,"ignore_cache":false}'), +(3619, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.554+00', '{"cached":null,"ignore_cache":false}'), +(3620, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.694+00', '{"cached":null,"ignore_cache":false}'), +(3621, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.711+00', '{"cached":null,"ignore_cache":false}'), +(3622, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.752+00', '{"cached":null,"ignore_cache":false}'), +(3623, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 08:16:36.766+00', '{"cached":null,"ignore_cache":false}'), +(3624, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 08:17:08.422+00', '{"cached":null,"ignore_cache":null}'), +(3625, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:17:19.488+00', '{"cached":null,"ignore_cache":null}'), +(3626, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.126+00', '{"cached":null,"ignore_cache":false}'), +(3627, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.131+00', '{"cached":null,"ignore_cache":false}'), +(3628, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.3+00', '{"cached":null,"ignore_cache":false}'), +(3629, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.336+00', '{"cached":null,"ignore_cache":false}'), +(3630, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.348+00', '{"cached":null,"ignore_cache":false}'), +(3631, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.425+00', '{"cached":null,"ignore_cache":false}'), +(3632, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.455+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3633, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.476+00', '{"cached":null,"ignore_cache":false}'), +(3634, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.477+00', '{"cached":null,"ignore_cache":false}'), +(3635, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:18:23.538+00', '{"cached":null,"ignore_cache":false}'), +(3636, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:21:39.094+00', '{"cached":null,"ignore_cache":null}'), +(3637, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:20.584+00', '{"cached":null,"ignore_cache":null}'), +(3638, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.109+00', '{"cached":null,"ignore_cache":false}'), +(3639, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.142+00', '{"cached":null,"ignore_cache":false}'), +(3640, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.162+00', '{"cached":null,"ignore_cache":false}'), +(3641, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.165+00', '{"cached":null,"ignore_cache":false}'), +(3642, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.195+00', '{"cached":null,"ignore_cache":false}'), +(3643, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:21.242+00', '{"cached":null,"ignore_cache":false}'), +(3644, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:30.3+00', '{"cached":null,"ignore_cache":null}'), +(3645, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:30.948+00', '{"cached":null,"ignore_cache":false}'), +(3646, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:54.612+00', '{"cached":null,"ignore_cache":null}'), +(3647, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:23:55.122+00', '{"cached":null,"ignore_cache":false}'), +(3648, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:24:33.938+00', '{"cached":null,"ignore_cache":null}'), +(3649, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:24:43.864+00', '{"cached":null,"ignore_cache":null}'), +(3650, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:25:02.417+00', '{"cached":null,"ignore_cache":null}'), +(3651, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:27:00.684+00', '{"cached":null,"ignore_cache":null}'), +(3652, 1, 'card', 24, TIMESTAMP WITH TIME ZONE '2022-12-20 08:27:55.931+00', '{"cached":null,"ignore_cache":null}'), +(3653, 1, 'card', 24, TIMESTAMP WITH TIME ZONE '2022-12-20 08:27:56.418+00', '{"cached":null,"ignore_cache":false}'), +(3654, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:30:47.985+00', '{"cached":null,"ignore_cache":null}'), +(3655, 1, 'table', 32, TIMESTAMP WITH TIME ZONE '2022-12-20 08:30:56.877+00', '{"cached":null,"ignore_cache":null}'), +(3656, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:32:38.303+00', '{"cached":null,"ignore_cache":null}'), +(3657, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:33:14.038+00', '{"cached":null,"ignore_cache":null}'), +(3658, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 08:34:27.514+00', '{"cached":null,"ignore_cache":null}'), +(3659, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:36:46.639+00', '{"cached":null,"ignore_cache":null}'), +(3660, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:37:16.796+00', '{"cached":null,"ignore_cache":null}'), +(3661, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:37:52.61+00', '{"cached":null,"ignore_cache":null}'), +(3662, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:38:18.643+00', '{"cached":null,"ignore_cache":null}'), +(3663, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:38:28.849+00', '{"cached":null,"ignore_cache":null}'), +(3664, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:38:42.658+00', '{"cached":null,"ignore_cache":null}'), +(3665, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:39:35.273+00', '{"cached":null,"ignore_cache":null}'), +(3666, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:39:52.03+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3667, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:06.496+00', '{"cached":null,"ignore_cache":null}'), +(3668, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:06.958+00', '{"cached":null,"ignore_cache":null}'), +(3669, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:16.233+00', '{"cached":null,"ignore_cache":null}'), +(3670, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:35.677+00', '{"cached":null,"ignore_cache":null}'), +(3671, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:41:36.176+00', '{"cached":null,"ignore_cache":null}'), +(3672, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:42:05.152+00', '{"cached":null,"ignore_cache":null}'), +(3673, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:42:17.397+00', '{"cached":null,"ignore_cache":null}'), +(3674, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:43:35.274+00', '{"cached":null,"ignore_cache":null}'), +(3675, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:43:44.296+00', '{"cached":null,"ignore_cache":null}'), +(3676, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:44:00.63+00', '{"cached":null,"ignore_cache":null}'), +(3677, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:46:49.382+00', '{"cached":null,"ignore_cache":null}'), +(3678, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 08:46:53.91+00', '{"cached":null,"ignore_cache":false}'), +(3679, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:15.915+00', '{"cached":null,"ignore_cache":null}'), +(3680, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:24.193+00', '{"cached":null,"ignore_cache":null}'), +(3681, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:41.939+00', '{"cached":null,"ignore_cache":null}'), +(3682, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:43.272+00', '{"cached":null,"ignore_cache":null}'), +(3683, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:27.644+00', '{"cached":null,"ignore_cache":null}'), +(3684, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.438+00', '{"cached":null,"ignore_cache":false}'), +(3685, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.45+00', '{"cached":null,"ignore_cache":false}'), +(3686, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.46+00', '{"cached":null,"ignore_cache":false}'), +(3687, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.51+00', '{"cached":null,"ignore_cache":false}'), +(3688, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.529+00', '{"cached":null,"ignore_cache":false}'), +(3689, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.557+00', '{"cached":null,"ignore_cache":false}'), +(3690, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 08:48:28.605+00', '{"cached":null,"ignore_cache":false}'), +(3691, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 08:49:21.454+00', '{"cached":null,"ignore_cache":null}'), +(3692, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 08:49:21.964+00', '{"cached":null,"ignore_cache":false}'), +(3693, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:50:19.694+00', '{"cached":null,"ignore_cache":null}'), +(3694, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:50:54.482+00', '{"cached":null,"ignore_cache":null}'), +(3695, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:51:38.403+00', '{"cached":null,"ignore_cache":null}'), +(3696, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:51:38.753+00', '{"cached":null,"ignore_cache":false}'), +(3697, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.047+00', '{"cached":null,"ignore_cache":null}'), +(3698, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.429+00', '{"cached":null,"ignore_cache":false}'), +(3699, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.494+00', '{"cached":null,"ignore_cache":false}'), +(3700, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.537+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3701, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.544+00', '{"cached":null,"ignore_cache":false}'), +(3702, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.551+00', '{"cached":null,"ignore_cache":false}'), +(3703, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.573+00', '{"cached":null,"ignore_cache":false}'), +(3704, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.578+00', '{"cached":null,"ignore_cache":false}'), +(3705, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 08:52:31.695+00', '{"cached":null,"ignore_cache":false}'), +(3706, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.362+00', '{"cached":null,"ignore_cache":null}'), +(3707, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.841+00', '{"cached":null,"ignore_cache":false}'), +(3708, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.872+00', '{"cached":null,"ignore_cache":false}'), +(3709, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.873+00', '{"cached":null,"ignore_cache":false}'), +(3710, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.894+00', '{"cached":null,"ignore_cache":false}'), +(3711, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.909+00', '{"cached":null,"ignore_cache":false}'), +(3712, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.93+00', '{"cached":null,"ignore_cache":false}'), +(3713, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:54.942+00', '{"cached":null,"ignore_cache":false}'), +(3714, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:55.038+00', '{"cached":null,"ignore_cache":false}'), +(3715, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:58.135+00', '{"cached":null,"ignore_cache":null}'), +(3716, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:53:58.658+00', '{"cached":null,"ignore_cache":false}'), +(3717, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:57:20.206+00', '{"cached":null,"ignore_cache":null}'), +(3718, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 08:57:20.781+00', '{"cached":null,"ignore_cache":false}'), +(3719, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:40.835+00', '{"cached":null,"ignore_cache":null}'), +(3720, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.098+00', '{"cached":null,"ignore_cache":false}'), +(3721, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.202+00', '{"cached":null,"ignore_cache":false}'), +(3722, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.208+00', '{"cached":null,"ignore_cache":false}'), +(3723, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.227+00', '{"cached":null,"ignore_cache":false}'), +(3724, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.243+00', '{"cached":null,"ignore_cache":false}'), +(3725, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.277+00', '{"cached":null,"ignore_cache":false}'), +(3726, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.369+00', '{"cached":null,"ignore_cache":false}'), +(3727, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:03:42.557+00', '{"cached":null,"ignore_cache":false}'), +(3728, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:34.654+00', '{"cached":null,"ignore_cache":null}'), +(3729, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.872+00', '{"cached":null,"ignore_cache":false}'), +(3730, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.961+00', '{"cached":null,"ignore_cache":false}'), +(3731, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.971+00', '{"cached":null,"ignore_cache":false}'), +(3732, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.975+00', '{"cached":null,"ignore_cache":false}'), +(3733, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.981+00', '{"cached":null,"ignore_cache":false}'), +(3734, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:35.989+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3735, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:36+00', '{"cached":null,"ignore_cache":false}'), +(3736, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:36.07+00', '{"cached":null,"ignore_cache":false}'), +(3737, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:43.119+00', '{"cached":null,"ignore_cache":null}'), +(3738, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:07:43.524+00', '{"cached":null,"ignore_cache":null}'), +(3739, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:21.429+00', '{"cached":null,"ignore_cache":null}'), +(3740, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:27.039+00', '{"cached":null,"ignore_cache":null}'), +(3741, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:28.4+00', '{"cached":null,"ignore_cache":null}'), +(3742, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:28.802+00', '{"cached":null,"ignore_cache":null}'), +(3743, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:40.55+00', '{"cached":null,"ignore_cache":null}'), +(3744, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:09:41.11+00', '{"cached":null,"ignore_cache":false}'), +(3745, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:00.207+00', '{"cached":null,"ignore_cache":null}'), +(3746, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:15.005+00', '{"cached":null,"ignore_cache":null}'), +(3747, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:15.61+00', '{"cached":null,"ignore_cache":false}'), +(3748, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:40.55+00', '{"cached":null,"ignore_cache":null}'), +(3749, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:11:41.123+00', '{"cached":null,"ignore_cache":false}'), +(3750, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:35.618+00', '{"cached":null,"ignore_cache":null}'), +(3751, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.277+00', '{"cached":null,"ignore_cache":false}'), +(3752, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.289+00', '{"cached":null,"ignore_cache":false}'), +(3753, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.31+00', '{"cached":null,"ignore_cache":false}'), +(3754, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.38+00', '{"cached":null,"ignore_cache":false}'), +(3755, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.397+00', '{"cached":null,"ignore_cache":false}'), +(3756, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.503+00', '{"cached":null,"ignore_cache":false}'), +(3757, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.515+00', '{"cached":null,"ignore_cache":false}'), +(3758, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:12:36.643+00', '{"cached":null,"ignore_cache":false}'), +(3759, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:15:24.639+00', '{"cached":null,"ignore_cache":null}'), +(3760, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:15:25.329+00', '{"cached":null,"ignore_cache":false}'), +(3761, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:22.409+00', '{"cached":null,"ignore_cache":null}'), +(3762, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.31+00', '{"cached":null,"ignore_cache":false}'), +(3763, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.324+00', '{"cached":null,"ignore_cache":false}'), +(3764, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.493+00', '{"cached":null,"ignore_cache":false}'), +(3765, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.504+00', '{"cached":null,"ignore_cache":false}'), +(3766, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.515+00', '{"cached":null,"ignore_cache":false}'), +(3767, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.533+00', '{"cached":null,"ignore_cache":false}'), +(3768, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.577+00', '{"cached":null,"ignore_cache":false}'), +(3769, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:23.609+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3770, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:25.125+00', '{"cached":null,"ignore_cache":null}'), +(3771, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:16:25.568+00', '{"cached":null,"ignore_cache":null}'), +(3772, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:12.296+00', '{"cached":null,"ignore_cache":null}'), +(3773, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.567+00', '{"cached":null,"ignore_cache":false}'), +(3774, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.593+00', '{"cached":null,"ignore_cache":false}'), +(3775, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.615+00', '{"cached":null,"ignore_cache":false}'), +(3776, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.756+00', '{"cached":null,"ignore_cache":false}'), +(3777, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.781+00', '{"cached":null,"ignore_cache":false}'), +(3778, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.798+00', '{"cached":null,"ignore_cache":false}'), +(3779, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:13.798+00', '{"cached":null,"ignore_cache":false}'), +(3780, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:14.047+00', '{"cached":null,"ignore_cache":false}'), +(3781, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:17.627+00', '{"cached":null,"ignore_cache":null}'), +(3782, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:17:18.615+00', '{"cached":null,"ignore_cache":false}'), +(3783, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.78+00', '{"cached":null,"ignore_cache":false}'), +(3784, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.813+00', '{"cached":null,"ignore_cache":false}'), +(3785, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.853+00', '{"cached":null,"ignore_cache":false}'), +(3786, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.876+00', '{"cached":null,"ignore_cache":false}'), +(3787, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.929+00', '{"cached":null,"ignore_cache":false}'), +(3788, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.94+00', '{"cached":null,"ignore_cache":false}'), +(3789, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:10.982+00', '{"cached":null,"ignore_cache":false}'), +(3790, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:11.058+00', '{"cached":null,"ignore_cache":false}'), +(3791, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:11.372+00', '{"cached":null,"ignore_cache":false}'), +(3792, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:11.387+00', '{"cached":null,"ignore_cache":false}'), +(3793, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:11.415+00', '{"cached":null,"ignore_cache":false}'), +(3794, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:11.477+00', '{"cached":null,"ignore_cache":false}'), +(3795, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:18:11.573+00', '{"cached":null,"ignore_cache":false}'), +(3796, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:19:55.95+00', '{"cached":null,"ignore_cache":null}'), +(3797, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:20:43.979+00', '{"cached":null,"ignore_cache":null}'), +(3798, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:07.328+00', '{"cached":null,"ignore_cache":null}'), +(3799, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:14.511+00', '{"cached":null,"ignore_cache":null}'), +(3800, 1, 'card', 17, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:15.015+00', '{"cached":null,"ignore_cache":false}'), +(3801, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:17.869+00', '{"cached":null,"ignore_cache":null}'), +(3802, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:18.395+00', '{"cached":null,"ignore_cache":false}'), +(3803, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:28.817+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3804, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:29.291+00', '{"cached":null,"ignore_cache":false}'), +(3805, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.173+00', '{"cached":null,"ignore_cache":null}'), +(3806, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.733+00', '{"cached":null,"ignore_cache":false}'), +(3807, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.753+00', '{"cached":null,"ignore_cache":false}'), +(3808, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.771+00', '{"cached":null,"ignore_cache":false}'), +(3809, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.793+00', '{"cached":null,"ignore_cache":false}'), +(3810, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.834+00', '{"cached":null,"ignore_cache":false}'), +(3811, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.839+00', '{"cached":null,"ignore_cache":false}'), +(3812, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:32.957+00', '{"cached":null,"ignore_cache":false}'), +(3813, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:42.78+00', '{"cached":null,"ignore_cache":false}'), +(3814, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:11.564+00', '{"cached":null,"ignore_cache":null}'), +(3815, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.827+00', '{"cached":null,"ignore_cache":false}'), +(3816, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.981+00', '{"cached":null,"ignore_cache":false}'), +(3817, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:14.999+00', '{"cached":null,"ignore_cache":false}'), +(3818, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:15.061+00', '{"cached":null,"ignore_cache":false}'), +(3819, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:15.089+00', '{"cached":null,"ignore_cache":false}'), +(3820, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:15.122+00', '{"cached":null,"ignore_cache":false}'), +(3821, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:15.131+00', '{"cached":null,"ignore_cache":false}'), +(3822, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:15.166+00', '{"cached":null,"ignore_cache":false}'), +(3823, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.588+00', '{"cached":null,"ignore_cache":false}'), +(3824, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.679+00', '{"cached":null,"ignore_cache":false}'), +(3825, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.791+00', '{"cached":null,"ignore_cache":false}'), +(3826, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.831+00', '{"cached":null,"ignore_cache":false}'), +(3827, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.863+00', '{"cached":null,"ignore_cache":false}'), +(3828, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.95+00', '{"cached":null,"ignore_cache":false}'), +(3829, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:16.952+00', '{"cached":null,"ignore_cache":false}'), +(3830, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:17.01+00', '{"cached":null,"ignore_cache":false}'), +(3831, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.171+00', '{"cached":null,"ignore_cache":false}'), +(3832, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.328+00', '{"cached":null,"ignore_cache":false}'), +(3833, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.448+00', '{"cached":null,"ignore_cache":false}'), +(3834, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.458+00', '{"cached":null,"ignore_cache":false}'), +(3835, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.466+00', '{"cached":null,"ignore_cache":false}'), +(3836, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.515+00', '{"cached":null,"ignore_cache":false}'), +(3837, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.52+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3838, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:19.623+00', '{"cached":null,"ignore_cache":false}'), +(3839, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:20.897+00', '{"cached":null,"ignore_cache":false}'), +(3840, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.09+00', '{"cached":null,"ignore_cache":false}'), +(3841, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.425+00', '{"cached":null,"ignore_cache":false}'), +(3842, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.556+00', '{"cached":null,"ignore_cache":false}'), +(3843, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.618+00', '{"cached":null,"ignore_cache":false}'), +(3844, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.715+00', '{"cached":null,"ignore_cache":false}'), +(3845, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:21.731+00', '{"cached":null,"ignore_cache":false}'), +(3846, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:22.021+00', '{"cached":null,"ignore_cache":false}'), +(3847, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.897+00', '{"cached":null,"ignore_cache":false}'), +(3848, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.966+00', '{"cached":null,"ignore_cache":false}'), +(3849, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:43.99+00', '{"cached":null,"ignore_cache":false}'), +(3850, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:44.016+00', '{"cached":null,"ignore_cache":false}'), +(3851, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:44.09+00', '{"cached":null,"ignore_cache":false}'), +(3852, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:44.156+00', '{"cached":null,"ignore_cache":false}'), +(3853, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:44.377+00', '{"cached":null,"ignore_cache":false}'), +(3854, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:44.733+00', '{"cached":null,"ignore_cache":false}'), +(3855, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:53.217+00', '{"cached":null,"ignore_cache":null}'), +(3856, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:22:54.187+00', '{"cached":null,"ignore_cache":false}'), +(3857, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:00.744+00', '{"cached":null,"ignore_cache":null}'), +(3858, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:01.363+00', '{"cached":null,"ignore_cache":false}'), +(3859, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:18.984+00', '{"cached":null,"ignore_cache":false}'), +(3860, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.301+00', '{"cached":null,"ignore_cache":false}'), +(3861, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.302+00', '{"cached":null,"ignore_cache":false}'), +(3862, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.349+00', '{"cached":null,"ignore_cache":false}'), +(3863, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.446+00', '{"cached":null,"ignore_cache":false}'), +(3864, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.509+00', '{"cached":null,"ignore_cache":false}'), +(3865, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.593+00', '{"cached":null,"ignore_cache":false}'), +(3866, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.646+00', '{"cached":null,"ignore_cache":false}'), +(3867, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:19.657+00', '{"cached":null,"ignore_cache":false}'), +(3868, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:24.364+00', '{"cached":null,"ignore_cache":null}'), +(3869, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.026+00', '{"cached":null,"ignore_cache":false}'), +(3870, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.04+00', '{"cached":null,"ignore_cache":false}'), +(3871, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.045+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3872, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.074+00', '{"cached":null,"ignore_cache":false}'), +(3873, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.088+00', '{"cached":null,"ignore_cache":false}'), +(3874, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.1+00', '{"cached":null,"ignore_cache":false}'), +(3875, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.116+00', '{"cached":null,"ignore_cache":false}'), +(3876, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:23:25.172+00', '{"cached":null,"ignore_cache":false}'), +(3877, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:30.771+00', '{"cached":null,"ignore_cache":null}'), +(3878, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:31.413+00', '{"cached":null,"ignore_cache":false}'), +(3879, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.112+00', '{"cached":null,"ignore_cache":null}'), +(3880, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.719+00', '{"cached":null,"ignore_cache":false}'), +(3881, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.742+00', '{"cached":null,"ignore_cache":false}'), +(3882, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.861+00', '{"cached":null,"ignore_cache":false}'), +(3883, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.88+00', '{"cached":null,"ignore_cache":false}'), +(3884, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.88+00', '{"cached":null,"ignore_cache":false}'), +(3885, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.895+00', '{"cached":null,"ignore_cache":false}'), +(3886, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:54.916+00', '{"cached":null,"ignore_cache":false}'), +(3887, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:55.041+00', '{"cached":null,"ignore_cache":false}'), +(3888, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:57.5+00', '{"cached":null,"ignore_cache":null}'), +(3889, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:24:57.927+00', '{"cached":null,"ignore_cache":null}'), +(3890, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:27.631+00', '{"cached":null,"ignore_cache":null}'), +(3891, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.602+00', '{"cached":null,"ignore_cache":false}'), +(3892, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.656+00', '{"cached":null,"ignore_cache":false}'), +(3893, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.723+00', '{"cached":null,"ignore_cache":false}'), +(3894, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.766+00', '{"cached":null,"ignore_cache":false}'), +(3895, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.784+00', '{"cached":null,"ignore_cache":false}'), +(3896, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.823+00', '{"cached":null,"ignore_cache":false}'), +(3897, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:28.894+00', '{"cached":null,"ignore_cache":false}'), +(3898, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:25:29.057+00', '{"cached":null,"ignore_cache":false}'), +(3899, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.665+00', '{"cached":null,"ignore_cache":false}'), +(3900, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.861+00', '{"cached":null,"ignore_cache":false}'), +(3901, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:11.906+00', '{"cached":null,"ignore_cache":false}'), +(3902, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:12.084+00', '{"cached":null,"ignore_cache":false}'), +(3903, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:12.112+00', '{"cached":null,"ignore_cache":false}'), +(3904, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:12.223+00', '{"cached":null,"ignore_cache":false}'), +(3905, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:12.285+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3906, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:12.338+00', '{"cached":null,"ignore_cache":false}'), +(3907, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:12.369+00', '{"cached":null,"ignore_cache":false}'), +(3908, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:19.886+00', '{"cached":null,"ignore_cache":null}'), +(3909, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:38.499+00', '{"cached":null,"ignore_cache":null}'), +(3910, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:47.343+00', '{"cached":null,"ignore_cache":null}'), +(3911, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:47.858+00', '{"cached":null,"ignore_cache":false}'), +(3912, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:58.265+00', '{"cached":null,"ignore_cache":true}'), +(3913, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:05.645+00', '{"cached":null,"ignore_cache":null}'), +(3914, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:06.159+00', '{"cached":null,"ignore_cache":false}'), +(3915, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:08.744+00', '{"cached":null,"ignore_cache":null}'), +(3916, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:09.239+00', '{"cached":null,"ignore_cache":false}'), +(3917, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:17.711+00', '{"cached":null,"ignore_cache":null}'), +(3918, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.292+00', '{"cached":null,"ignore_cache":false}'), +(3919, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.31+00', '{"cached":null,"ignore_cache":false}'), +(3920, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.316+00', '{"cached":null,"ignore_cache":false}'), +(3921, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.332+00', '{"cached":null,"ignore_cache":false}'), +(3922, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.365+00', '{"cached":null,"ignore_cache":false}'), +(3923, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.368+00', '{"cached":null,"ignore_cache":false}'), +(3924, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:18.432+00', '{"cached":null,"ignore_cache":false}'), +(3925, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:28.094+00', '{"cached":null,"ignore_cache":null}'), +(3926, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:28.628+00', '{"cached":null,"ignore_cache":false}'), +(3927, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:51.948+00', '{"cached":null,"ignore_cache":null}'), +(3928, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.203+00', '{"cached":null,"ignore_cache":false}'), +(3929, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.287+00', '{"cached":null,"ignore_cache":false}'), +(3930, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.648+00', '{"cached":null,"ignore_cache":false}'), +(3931, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.654+00', '{"cached":null,"ignore_cache":false}'), +(3932, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.769+00', '{"cached":null,"ignore_cache":false}'), +(3933, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.82+00', '{"cached":null,"ignore_cache":false}'), +(3934, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.849+00', '{"cached":null,"ignore_cache":false}'), +(3935, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:52.994+00', '{"cached":null,"ignore_cache":false}'), +(3936, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:27:53.021+00', '{"cached":null,"ignore_cache":false}'), +(3937, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:12.2+00', '{"cached":null,"ignore_cache":null}'), +(3938, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:12.709+00', '{"cached":null,"ignore_cache":false}'), +(3939, 1, 'card', 25, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:36.66+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3940, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:43.75+00', '{"cached":null,"ignore_cache":null}'), +(3941, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:44.636+00', '{"cached":null,"ignore_cache":false}'), +(3942, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:44.649+00', '{"cached":null,"ignore_cache":false}'), +(3943, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:44.65+00', '{"cached":null,"ignore_cache":false}'), +(3944, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.369+00', '{"cached":null,"ignore_cache":false}'), +(3945, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.498+00', '{"cached":null,"ignore_cache":false}'), +(3946, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.527+00', '{"cached":null,"ignore_cache":false}'), +(3947, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.594+00', '{"cached":null,"ignore_cache":false}'), +(3948, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:45.79+00', '{"cached":null,"ignore_cache":false}'), +(3949, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:48.443+00', '{"cached":null,"ignore_cache":null}'), +(3950, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:28:48.88+00', '{"cached":null,"ignore_cache":null}'), +(3951, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:29:18.912+00', '{"cached":null,"ignore_cache":null}'), +(3952, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:30:56.644+00', '{"cached":null,"ignore_cache":null}'), +(3953, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:15.334+00', '{"cached":null,"ignore_cache":null}'), +(3954, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:41.431+00', '{"cached":null,"ignore_cache":null}'), +(3955, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:41.431+00', '{"cached":null,"ignore_cache":null}'), +(3956, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:48.891+00', '{"cached":null,"ignore_cache":null}'), +(3957, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:54.173+00', '{"cached":null,"ignore_cache":null}'), +(3958, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:56.533+00', '{"cached":null,"ignore_cache":null}'), +(3959, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:31:59.523+00', '{"cached":null,"ignore_cache":null}'), +(3960, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:01.318+00', '{"cached":null,"ignore_cache":null}'), +(3961, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:12.306+00', '{"cached":null,"ignore_cache":null}'), +(3962, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:38.008+00', '{"cached":null,"ignore_cache":null}'), +(3963, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:46.51+00', '{"cached":null,"ignore_cache":null}'), +(3964, 1, 'card', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:47.105+00', '{"cached":null,"ignore_cache":false}'), +(3965, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:55.644+00', '{"cached":null,"ignore_cache":null}'), +(3966, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.285+00', '{"cached":null,"ignore_cache":false}'), +(3967, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.308+00', '{"cached":null,"ignore_cache":false}'), +(3968, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.325+00', '{"cached":null,"ignore_cache":false}'), +(3969, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.349+00', '{"cached":null,"ignore_cache":false}'), +(3970, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.363+00', '{"cached":null,"ignore_cache":false}'), +(3971, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.428+00', '{"cached":null,"ignore_cache":false}'), +(3972, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:56.493+00', '{"cached":null,"ignore_cache":false}'), +(3973, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:07.954+00', '{"cached":null,"ignore_cache":null}'), +(3974, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:08.559+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(3975, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:29.838+00', '{"cached":null,"ignore_cache":null}'), +(3976, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:55.781+00', '{"cached":null,"ignore_cache":null}'), +(3977, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:57.87+00', '{"cached":null,"ignore_cache":null}'), +(3978, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.553+00', '{"cached":null,"ignore_cache":false}'), +(3979, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.595+00', '{"cached":null,"ignore_cache":false}'), +(3980, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.625+00', '{"cached":null,"ignore_cache":false}'), +(3981, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.628+00', '{"cached":null,"ignore_cache":false}'), +(3982, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.646+00', '{"cached":null,"ignore_cache":false}'), +(3983, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.695+00', '{"cached":null,"ignore_cache":false}'), +(3984, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.714+00', '{"cached":null,"ignore_cache":false}'), +(3985, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:33:58.791+00', '{"cached":null,"ignore_cache":false}'), +(3986, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.044+00', '{"cached":null,"ignore_cache":null}'), +(3987, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.605+00', '{"cached":null,"ignore_cache":false}'), +(3988, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.629+00', '{"cached":null,"ignore_cache":false}'), +(3989, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.673+00', '{"cached":null,"ignore_cache":false}'), +(3990, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.678+00', '{"cached":null,"ignore_cache":false}'), +(3991, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.715+00', '{"cached":null,"ignore_cache":false}'), +(3992, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.75+00', '{"cached":null,"ignore_cache":false}'), +(3993, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.761+00', '{"cached":null,"ignore_cache":false}'), +(3994, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:01.826+00', '{"cached":null,"ignore_cache":false}'), +(3995, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:34:26.689+00', '{"cached":null,"ignore_cache":null}'), +(3996, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:06.573+00', '{"cached":null,"ignore_cache":null}'), +(3997, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:09.51+00', '{"cached":null,"ignore_cache":null}'), +(3998, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.324+00', '{"cached":null,"ignore_cache":false}'), +(3999, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.578+00', '{"cached":null,"ignore_cache":false}'), +(4000, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.637+00', '{"cached":null,"ignore_cache":false}'), +(4001, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.641+00', '{"cached":null,"ignore_cache":false}'), +(4002, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.718+00', '{"cached":null,"ignore_cache":false}'), +(4003, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.726+00', '{"cached":null,"ignore_cache":false}'), +(4004, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.771+00', '{"cached":null,"ignore_cache":false}'), +(4005, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:35:10.863+00', '{"cached":null,"ignore_cache":false}'), +(4006, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:19.867+00', '{"cached":null,"ignore_cache":null}'), +(4007, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.653+00', '{"cached":null,"ignore_cache":false}'), +(4008, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.798+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4009, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.851+00', '{"cached":null,"ignore_cache":false}'), +(4010, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.865+00', '{"cached":null,"ignore_cache":false}'), +(4011, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.867+00', '{"cached":null,"ignore_cache":false}'), +(4012, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.867+00', '{"cached":null,"ignore_cache":false}'), +(4013, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:20.882+00', '{"cached":null,"ignore_cache":false}'), +(4014, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:24.239+00', '{"cached":null,"ignore_cache":null}'), +(4015, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:38:24.823+00', '{"cached":null,"ignore_cache":false}'), +(4016, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:27.631+00', '{"cached":null,"ignore_cache":null}'), +(4017, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:28.189+00', '{"cached":null,"ignore_cache":false}'), +(4018, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:59.137+00', '{"cached":null,"ignore_cache":null}'), +(4019, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:40:59.7+00', '{"cached":null,"ignore_cache":false}'), +(4020, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:52.641+00', '{"cached":null,"ignore_cache":null}'), +(4021, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.811+00', '{"cached":null,"ignore_cache":false}'), +(4022, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:53.831+00', '{"cached":null,"ignore_cache":false}'), +(4023, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:54.094+00', '{"cached":null,"ignore_cache":false}'), +(4024, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:54.144+00', '{"cached":null,"ignore_cache":false}'), +(4025, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:54.284+00', '{"cached":null,"ignore_cache":false}'), +(4026, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:54.363+00', '{"cached":null,"ignore_cache":false}'), +(4027, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:42:54.461+00', '{"cached":null,"ignore_cache":false}'), +(4028, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:44:24.267+00', '{"cached":null,"ignore_cache":null}'), +(4029, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:44:24.774+00', '{"cached":null,"ignore_cache":false}'), +(4030, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:45:39.296+00', '{"cached":null,"ignore_cache":null}'), +(4031, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:45:40.182+00', '{"cached":null,"ignore_cache":false}'), +(4032, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:00.451+00', '{"cached":null,"ignore_cache":null}'), +(4033, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.127+00', '{"cached":null,"ignore_cache":false}'), +(4034, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.302+00', '{"cached":null,"ignore_cache":false}'), +(4035, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.358+00', '{"cached":null,"ignore_cache":false}'), +(4036, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.368+00', '{"cached":null,"ignore_cache":false}'), +(4037, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.413+00', '{"cached":null,"ignore_cache":false}'), +(4038, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.437+00', '{"cached":null,"ignore_cache":false}'), +(4039, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:01.457+00', '{"cached":null,"ignore_cache":false}'), +(4040, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.335+00', '{"cached":null,"ignore_cache":false}'), +(4041, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.403+00', '{"cached":null,"ignore_cache":false}'), +(4042, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.405+00', '{"cached":null,"ignore_cache":false}'), +(4043, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.417+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4044, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.478+00', '{"cached":null,"ignore_cache":false}'), +(4045, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.513+00', '{"cached":null,"ignore_cache":false}'), +(4046, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:09.515+00', '{"cached":null,"ignore_cache":false}'), +(4047, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.131+00', '{"cached":null,"ignore_cache":false}'), +(4048, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.159+00', '{"cached":null,"ignore_cache":false}'), +(4049, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.249+00', '{"cached":null,"ignore_cache":false}'), +(4050, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.307+00', '{"cached":null,"ignore_cache":false}'), +(4051, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.314+00', '{"cached":null,"ignore_cache":false}'), +(4052, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.393+00', '{"cached":null,"ignore_cache":false}'), +(4053, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:18.431+00', '{"cached":null,"ignore_cache":false}'), +(4054, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.607+00', '{"cached":null,"ignore_cache":false}'), +(4055, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.851+00', '{"cached":null,"ignore_cache":false}'), +(4056, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.867+00', '{"cached":null,"ignore_cache":false}'), +(4057, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.901+00', '{"cached":null,"ignore_cache":false}'), +(4058, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.951+00', '{"cached":null,"ignore_cache":false}'), +(4059, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:21.987+00', '{"cached":null,"ignore_cache":false}'), +(4060, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:22.001+00', '{"cached":null,"ignore_cache":false}'), +(4061, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.428+00', '{"cached":null,"ignore_cache":false}'), +(4062, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.451+00', '{"cached":null,"ignore_cache":false}'), +(4063, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.451+00', '{"cached":null,"ignore_cache":false}'), +(4064, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.454+00', '{"cached":null,"ignore_cache":false}'), +(4065, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.457+00', '{"cached":null,"ignore_cache":false}'), +(4066, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.476+00', '{"cached":null,"ignore_cache":false}'), +(4067, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:25.51+00', '{"cached":null,"ignore_cache":false}'), +(4068, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.4+00', '{"cached":null,"ignore_cache":false}'), +(4069, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.402+00', '{"cached":null,"ignore_cache":false}'), +(4070, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.505+00', '{"cached":null,"ignore_cache":false}'), +(4071, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.528+00', '{"cached":null,"ignore_cache":false}'), +(4072, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.547+00', '{"cached":null,"ignore_cache":false}'), +(4073, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.548+00', '{"cached":null,"ignore_cache":false}'), +(4074, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:31.569+00', '{"cached":null,"ignore_cache":false}'), +(4075, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:32.732+00', '{"cached":null,"ignore_cache":null}'), +(4076, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:46:33.354+00', '{"cached":null,"ignore_cache":false}'), +(4077, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:13.501+00', '{"cached":null,"ignore_cache":null}'), +(4078, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.095+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4079, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.151+00', '{"cached":null,"ignore_cache":false}'), +(4080, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.241+00', '{"cached":null,"ignore_cache":false}'), +(4081, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.259+00', '{"cached":null,"ignore_cache":false}'), +(4082, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.26+00', '{"cached":null,"ignore_cache":false}'), +(4083, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.309+00', '{"cached":null,"ignore_cache":false}'), +(4084, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:14.326+00', '{"cached":null,"ignore_cache":false}'), +(4085, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:37.424+00', '{"cached":null,"ignore_cache":null}'), +(4086, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:47:37.922+00', '{"cached":null,"ignore_cache":false}'), +(4087, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:13.56+00', '{"cached":null,"ignore_cache":null}'), +(4088, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.258+00', '{"cached":null,"ignore_cache":false}'), +(4089, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.276+00', '{"cached":null,"ignore_cache":false}'), +(4090, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.35+00', '{"cached":null,"ignore_cache":false}'), +(4091, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.362+00', '{"cached":null,"ignore_cache":false}'), +(4092, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.466+00', '{"cached":null,"ignore_cache":false}'), +(4093, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.5+00', '{"cached":null,"ignore_cache":false}'), +(4094, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:14.513+00', '{"cached":null,"ignore_cache":false}'), +(4095, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:53.159+00', '{"cached":null,"ignore_cache":null}'), +(4096, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:48:53.698+00', '{"cached":null,"ignore_cache":false}'), +(4097, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:49:53.331+00', '{"cached":null,"ignore_cache":null}'), +(4098, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:50:16.408+00', '{"cached":null,"ignore_cache":null}'), +(4099, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:50:22.742+00', '{"cached":null,"ignore_cache":null}'), +(4100, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:24.382+00', '{"cached":null,"ignore_cache":null}'), +(4101, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.442+00', '{"cached":null,"ignore_cache":false}'), +(4102, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.673+00', '{"cached":null,"ignore_cache":false}'), +(4103, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.734+00', '{"cached":null,"ignore_cache":false}'), +(4104, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:25.812+00', '{"cached":null,"ignore_cache":false}'), +(4105, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:26.213+00', '{"cached":null,"ignore_cache":false}'), +(4106, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:26.29+00', '{"cached":null,"ignore_cache":false}'), +(4107, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:26.418+00', '{"cached":null,"ignore_cache":false}'), +(4108, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:26.913+00', '{"cached":null,"ignore_cache":false}'), +(4109, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:32.977+00', '{"cached":null,"ignore_cache":null}'), +(4110, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.513+00', '{"cached":null,"ignore_cache":false}'), +(4111, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.578+00', '{"cached":null,"ignore_cache":false}'), +(4112, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.658+00', '{"cached":null,"ignore_cache":false}'), +(4113, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.671+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4114, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.677+00', '{"cached":null,"ignore_cache":false}'), +(4115, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.723+00', '{"cached":null,"ignore_cache":false}'), +(4116, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:33.736+00', '{"cached":null,"ignore_cache":false}'), +(4117, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:41.999+00', '{"cached":null,"ignore_cache":null}'), +(4118, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:42.704+00', '{"cached":null,"ignore_cache":false}'), +(4119, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:58.918+00', '{"cached":null,"ignore_cache":null}'), +(4120, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.91+00', '{"cached":null,"ignore_cache":false}'), +(4121, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:52:59.941+00', '{"cached":null,"ignore_cache":false}'), +(4122, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:00.074+00', '{"cached":null,"ignore_cache":false}'), +(4123, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:00.111+00', '{"cached":null,"ignore_cache":false}'), +(4124, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:00.114+00', '{"cached":null,"ignore_cache":false}'), +(4125, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:00.136+00', '{"cached":null,"ignore_cache":false}'), +(4126, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:00.154+00', '{"cached":null,"ignore_cache":false}'), +(4127, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.273+00', '{"cached":null,"ignore_cache":false}'), +(4128, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.322+00', '{"cached":null,"ignore_cache":false}'), +(4129, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.338+00', '{"cached":null,"ignore_cache":false}'), +(4130, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.576+00', '{"cached":null,"ignore_cache":false}'), +(4131, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.624+00', '{"cached":null,"ignore_cache":false}'), +(4132, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.694+00', '{"cached":null,"ignore_cache":false}'), +(4133, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:08.71+00', '{"cached":null,"ignore_cache":false}'), +(4134, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.146+00', '{"cached":null,"ignore_cache":false}'), +(4135, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.198+00', '{"cached":null,"ignore_cache":false}'), +(4136, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.218+00', '{"cached":null,"ignore_cache":false}'), +(4137, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.221+00', '{"cached":null,"ignore_cache":false}'), +(4138, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.25+00', '{"cached":null,"ignore_cache":false}'), +(4139, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.28+00', '{"cached":null,"ignore_cache":false}'), +(4140, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:19.292+00', '{"cached":null,"ignore_cache":false}'), +(4141, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.574+00', '{"cached":null,"ignore_cache":false}'), +(4142, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.579+00', '{"cached":null,"ignore_cache":false}'), +(4143, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.618+00', '{"cached":null,"ignore_cache":false}'), +(4144, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.636+00', '{"cached":null,"ignore_cache":false}'), +(4145, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.642+00', '{"cached":null,"ignore_cache":false}'), +(4146, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.663+00', '{"cached":null,"ignore_cache":false}'), +(4147, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:23.67+00', '{"cached":null,"ignore_cache":false}'), +(4148, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:32.585+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4149, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:53:33.293+00', '{"cached":null,"ignore_cache":false}'), +(4150, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:13.732+00', '{"cached":null,"ignore_cache":null}'), +(4151, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:20.53+00', '{"cached":null,"ignore_cache":false}'), +(4152, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:20.55+00', '{"cached":null,"ignore_cache":false}'), +(4153, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:20.622+00', '{"cached":null,"ignore_cache":false}'), +(4154, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:20.625+00', '{"cached":null,"ignore_cache":false}'), +(4155, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:20.656+00', '{"cached":null,"ignore_cache":false}'), +(4156, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:20.713+00', '{"cached":null,"ignore_cache":false}'), +(4157, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:20.775+00', '{"cached":null,"ignore_cache":false}'), +(4158, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.124+00', '{"cached":null,"ignore_cache":null}'), +(4159, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.943+00', '{"cached":null,"ignore_cache":false}'), +(4160, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.949+00', '{"cached":null,"ignore_cache":false}'), +(4161, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:28.984+00', '{"cached":null,"ignore_cache":false}'), +(4162, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:29.057+00', '{"cached":null,"ignore_cache":false}'), +(4163, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:29.078+00', '{"cached":null,"ignore_cache":false}'), +(4164, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:29.095+00', '{"cached":null,"ignore_cache":false}'), +(4165, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:29.154+00', '{"cached":null,"ignore_cache":false}'), +(4166, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:31.807+00', '{"cached":null,"ignore_cache":null}'), +(4167, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:54:32.5+00', '{"cached":null,"ignore_cache":false}'), +(4168, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:40.639+00', '{"cached":null,"ignore_cache":null}'), +(4169, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:41.957+00', '{"cached":null,"ignore_cache":false}'), +(4170, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:42.184+00', '{"cached":null,"ignore_cache":false}'), +(4171, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:42.267+00', '{"cached":null,"ignore_cache":false}'), +(4172, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:42.425+00', '{"cached":null,"ignore_cache":false}'), +(4173, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:42.437+00', '{"cached":null,"ignore_cache":false}'), +(4174, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:42.488+00', '{"cached":null,"ignore_cache":false}'), +(4175, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:42.503+00', '{"cached":null,"ignore_cache":false}'), +(4176, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:50.416+00', '{"cached":null,"ignore_cache":null}'), +(4177, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:55:51.064+00', '{"cached":null,"ignore_cache":false}'), +(4178, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:23.104+00', '{"cached":null,"ignore_cache":null}'), +(4179, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:25.074+00', '{"cached":null,"ignore_cache":false}'), +(4180, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:25.104+00', '{"cached":null,"ignore_cache":false}'), +(4181, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:25.17+00', '{"cached":null,"ignore_cache":false}'), +(4182, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:25.181+00', '{"cached":null,"ignore_cache":false}'), +(4183, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:25.187+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4184, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:25.234+00', '{"cached":null,"ignore_cache":false}'), +(4185, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:56:25.306+00', '{"cached":null,"ignore_cache":false}'), +(4186, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:01.422+00', '{"cached":null,"ignore_cache":null}'), +(4187, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.394+00', '{"cached":null,"ignore_cache":false}'), +(4188, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.513+00', '{"cached":null,"ignore_cache":false}'), +(4189, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.516+00', '{"cached":null,"ignore_cache":false}'), +(4190, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.581+00', '{"cached":null,"ignore_cache":false}'), +(4191, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.604+00', '{"cached":null,"ignore_cache":false}'), +(4192, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.61+00', '{"cached":null,"ignore_cache":false}'), +(4193, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:02.616+00', '{"cached":null,"ignore_cache":false}'), +(4194, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:55.146+00', '{"cached":null,"ignore_cache":null}'), +(4195, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:57.39+00', '{"cached":null,"ignore_cache":null}'), +(4196, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:57:57.916+00', '{"cached":null,"ignore_cache":false}'), +(4197, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:10.66+00', '{"cached":null,"ignore_cache":false}'), +(4198, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:15.219+00', '{"cached":null,"ignore_cache":null}'), +(4199, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.287+00', '{"cached":null,"ignore_cache":false}'), +(4200, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.467+00', '{"cached":null,"ignore_cache":false}'), +(4201, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.501+00', '{"cached":null,"ignore_cache":false}'), +(4202, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.552+00', '{"cached":null,"ignore_cache":false}'), +(4203, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.641+00', '{"cached":null,"ignore_cache":false}'), +(4204, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.655+00', '{"cached":null,"ignore_cache":false}'), +(4205, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:16.691+00', '{"cached":null,"ignore_cache":false}'), +(4206, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:26.123+00', '{"cached":null,"ignore_cache":null}'), +(4207, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 09:58:26.622+00', '{"cached":null,"ignore_cache":false}'), +(4208, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 09:59:19.606+00', '{"cached":null,"ignore_cache":null}'), +(4209, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:31.636+00', '{"cached":null,"ignore_cache":null}'), +(4210, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.253+00', '{"cached":null,"ignore_cache":false}'), +(4211, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.283+00', '{"cached":null,"ignore_cache":false}'), +(4212, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.336+00', '{"cached":null,"ignore_cache":false}'), +(4213, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.387+00', '{"cached":null,"ignore_cache":false}'), +(4214, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.407+00', '{"cached":null,"ignore_cache":false}'), +(4215, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.451+00', '{"cached":null,"ignore_cache":false}'), +(4216, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:32.518+00', '{"cached":null,"ignore_cache":false}'), +(4217, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:38.277+00', '{"cached":null,"ignore_cache":null}'), +(4218, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:38.769+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4219, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:00:53.777+00', '{"cached":null,"ignore_cache":false}'), +(4220, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.186+00', '{"cached":null,"ignore_cache":null}'), +(4221, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.674+00', '{"cached":null,"ignore_cache":false}'), +(4222, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.736+00', '{"cached":null,"ignore_cache":false}'), +(4223, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.768+00', '{"cached":null,"ignore_cache":false}'), +(4224, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.809+00', '{"cached":null,"ignore_cache":false}'), +(4225, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.83+00', '{"cached":null,"ignore_cache":false}'), +(4226, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.84+00', '{"cached":null,"ignore_cache":false}'), +(4227, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:08.878+00', '{"cached":null,"ignore_cache":false}'), +(4228, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:11.14+00', '{"cached":null,"ignore_cache":null}'), +(4229, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:01:11.918+00', '{"cached":null,"ignore_cache":false}'), +(4230, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.158+00', '{"cached":null,"ignore_cache":null}'), +(4231, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.684+00', '{"cached":null,"ignore_cache":false}'), +(4232, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.728+00', '{"cached":null,"ignore_cache":false}'), +(4233, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.73+00', '{"cached":null,"ignore_cache":false}'), +(4234, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.802+00', '{"cached":null,"ignore_cache":false}'), +(4235, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.811+00', '{"cached":null,"ignore_cache":false}'), +(4236, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.834+00', '{"cached":null,"ignore_cache":false}'), +(4237, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:00.847+00', '{"cached":null,"ignore_cache":false}'), +(4238, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:04.698+00', '{"cached":null,"ignore_cache":null}'), +(4239, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:05.487+00', '{"cached":null,"ignore_cache":false}'), +(4240, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:15.354+00', '{"cached":null,"ignore_cache":null}'), +(4241, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:15.84+00', '{"cached":null,"ignore_cache":false}'), +(4242, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.105+00', '{"cached":null,"ignore_cache":null}'), +(4243, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.667+00', '{"cached":null,"ignore_cache":false}'), +(4244, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.694+00', '{"cached":null,"ignore_cache":false}'), +(4245, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.712+00', '{"cached":null,"ignore_cache":false}'), +(4246, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.73+00', '{"cached":null,"ignore_cache":false}'), +(4247, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.741+00', '{"cached":null,"ignore_cache":false}'), +(4248, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.751+00', '{"cached":null,"ignore_cache":false}'), +(4249, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:02:35.77+00', '{"cached":null,"ignore_cache":false}'), +(4250, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:07.25+00', '{"cached":null,"ignore_cache":null}'), +(4251, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:07.759+00', '{"cached":null,"ignore_cache":false}'), +(4252, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:21.629+00', '{"cached":null,"ignore_cache":null}'), +(4253, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.34+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4254, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.479+00', '{"cached":null,"ignore_cache":false}'), +(4255, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.515+00', '{"cached":null,"ignore_cache":false}'), +(4256, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.572+00', '{"cached":null,"ignore_cache":false}'), +(4257, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.618+00', '{"cached":null,"ignore_cache":false}'), +(4258, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.628+00', '{"cached":null,"ignore_cache":false}'), +(4259, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:22.642+00', '{"cached":null,"ignore_cache":false}'), +(4260, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:30.831+00', '{"cached":null,"ignore_cache":null}'), +(4261, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:31.492+00', '{"cached":null,"ignore_cache":false}'), +(4262, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:01.582+00', '{"cached":null,"ignore_cache":null}'), +(4263, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.154+00', '{"cached":null,"ignore_cache":false}'), +(4264, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.216+00', '{"cached":null,"ignore_cache":false}'), +(4265, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.237+00', '{"cached":null,"ignore_cache":false}'), +(4266, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.258+00', '{"cached":null,"ignore_cache":false}'), +(4267, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.276+00', '{"cached":null,"ignore_cache":false}'), +(4268, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.3+00', '{"cached":null,"ignore_cache":false}'), +(4269, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:02.313+00', '{"cached":null,"ignore_cache":false}'), +(4270, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:11.532+00', '{"cached":null,"ignore_cache":null}'), +(4271, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.298+00', '{"cached":null,"ignore_cache":false}'), +(4272, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.485+00', '{"cached":null,"ignore_cache":false}'), +(4273, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.519+00', '{"cached":null,"ignore_cache":false}'), +(4274, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.582+00', '{"cached":null,"ignore_cache":false}'), +(4275, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.617+00', '{"cached":null,"ignore_cache":false}'), +(4276, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.618+00', '{"cached":null,"ignore_cache":false}'), +(4277, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.661+00', '{"cached":null,"ignore_cache":false}'), +(4278, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:12.677+00', '{"cached":null,"ignore_cache":false}'), +(4279, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.544+00', '{"cached":null,"ignore_cache":false}'), +(4280, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.723+00', '{"cached":null,"ignore_cache":false}'), +(4281, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.739+00', '{"cached":null,"ignore_cache":false}'), +(4282, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.764+00', '{"cached":null,"ignore_cache":false}'), +(4283, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.772+00', '{"cached":null,"ignore_cache":false}'), +(4284, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.794+00', '{"cached":null,"ignore_cache":false}'), +(4285, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:32.822+00', '{"cached":null,"ignore_cache":false}'), +(4286, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.573+00', '{"cached":null,"ignore_cache":false}'), +(4287, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.739+00', '{"cached":null,"ignore_cache":false}'), +(4288, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:05:59.909+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4289, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:06:00.125+00', '{"cached":null,"ignore_cache":false}'), +(4290, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:06:00.145+00', '{"cached":null,"ignore_cache":false}'), +(4291, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:06:00.146+00', '{"cached":null,"ignore_cache":false}'), +(4292, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:06:00.195+00', '{"cached":null,"ignore_cache":false}'), +(4293, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:06:00.232+00', '{"cached":null,"ignore_cache":false}'), +(4294, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:06:00.453+00', '{"cached":null,"ignore_cache":false}'), +(4295, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:26.89+00', '{"cached":null,"ignore_cache":null}'), +(4296, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.824+00', '{"cached":null,"ignore_cache":false}'), +(4297, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.848+00', '{"cached":null,"ignore_cache":false}'), +(4298, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.85+00', '{"cached":null,"ignore_cache":false}'), +(4299, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.882+00', '{"cached":null,"ignore_cache":false}'), +(4300, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.888+00', '{"cached":null,"ignore_cache":false}'), +(4301, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.909+00', '{"cached":null,"ignore_cache":false}'), +(4302, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.925+00', '{"cached":null,"ignore_cache":false}'), +(4303, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:27.939+00', '{"cached":null,"ignore_cache":false}'), +(4304, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:37.82+00', '{"cached":null,"ignore_cache":null}'), +(4305, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:07:38.334+00', '{"cached":null,"ignore_cache":false}'), +(4306, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.141+00', '{"cached":null,"ignore_cache":null}'), +(4307, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.926+00', '{"cached":null,"ignore_cache":false}'), +(4308, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:40.994+00', '{"cached":null,"ignore_cache":false}'), +(4309, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.05+00', '{"cached":null,"ignore_cache":false}'), +(4310, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.08+00', '{"cached":null,"ignore_cache":false}'), +(4311, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.124+00', '{"cached":null,"ignore_cache":false}'), +(4312, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.394+00', '{"cached":null,"ignore_cache":false}'), +(4313, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.425+00', '{"cached":null,"ignore_cache":false}'), +(4314, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:41.474+00', '{"cached":null,"ignore_cache":false}'), +(4315, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:44.38+00', '{"cached":null,"ignore_cache":null}'), +(4316, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:08:44.855+00', '{"cached":null,"ignore_cache":false}'), +(4317, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:18.65+00', '{"cached":null,"ignore_cache":null}'), +(4318, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:19.14+00', '{"cached":null,"ignore_cache":false}'), +(4319, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:26.677+00', '{"cached":null,"ignore_cache":null}'), +(4320, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.329+00', '{"cached":null,"ignore_cache":false}'), +(4321, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.404+00', '{"cached":null,"ignore_cache":false}'), +(4322, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.427+00', '{"cached":null,"ignore_cache":false}'), +(4323, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.481+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4324, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.495+00', '{"cached":null,"ignore_cache":false}'), +(4325, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.504+00', '{"cached":null,"ignore_cache":false}'), +(4326, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.516+00', '{"cached":null,"ignore_cache":false}'), +(4327, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:27.666+00', '{"cached":null,"ignore_cache":false}'), +(4328, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.021+00', '{"cached":null,"ignore_cache":null}'), +(4329, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.677+00', '{"cached":null,"ignore_cache":false}'), +(4330, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.783+00', '{"cached":null,"ignore_cache":false}'), +(4331, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.787+00', '{"cached":null,"ignore_cache":false}'), +(4332, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.8+00', '{"cached":null,"ignore_cache":false}'), +(4333, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.817+00', '{"cached":null,"ignore_cache":false}'), +(4334, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.822+00', '{"cached":null,"ignore_cache":false}'), +(4335, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:09:39.835+00', '{"cached":null,"ignore_cache":false}'), +(4336, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:11:38.432+00', '{"cached":null,"ignore_cache":null}'), +(4337, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:01.211+00', '{"cached":null,"ignore_cache":null}'), +(4338, 1, 'card', 24, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:11.265+00', '{"cached":null,"ignore_cache":null}'), +(4339, 1, 'card', 24, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:12.419+00', '{"cached":null,"ignore_cache":false}'), +(4340, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:20.841+00', '{"cached":null,"ignore_cache":null}'), +(4341, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:21.397+00', '{"cached":null,"ignore_cache":false}'), +(4342, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.066+00', '{"cached":null,"ignore_cache":null}'), +(4343, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.673+00', '{"cached":null,"ignore_cache":false}'), +(4344, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.776+00', '{"cached":null,"ignore_cache":false}'), +(4345, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.782+00', '{"cached":null,"ignore_cache":false}'), +(4346, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.904+00', '{"cached":null,"ignore_cache":false}'), +(4347, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.911+00', '{"cached":null,"ignore_cache":false}'), +(4348, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.936+00', '{"cached":null,"ignore_cache":false}'), +(4349, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:38.958+00', '{"cached":null,"ignore_cache":false}'), +(4350, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:39.112+00', '{"cached":null,"ignore_cache":false}'), +(4351, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:49.585+00', '{"cached":null,"ignore_cache":false}'), +(4352, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:13:32.186+00', '{"cached":null,"ignore_cache":null}'), +(4353, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:13:53.722+00', '{"cached":null,"ignore_cache":null}'), +(4354, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:14:22.781+00', '{"cached":null,"ignore_cache":null}'), +(4355, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:14:40.529+00', '{"cached":null,"ignore_cache":null}'), +(4356, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:14:41.13+00', '{"cached":null,"ignore_cache":null}'), +(4357, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:07.692+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4358, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.19+00', '{"cached":null,"ignore_cache":false}'), +(4359, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.23+00', '{"cached":null,"ignore_cache":false}'), +(4360, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.261+00', '{"cached":null,"ignore_cache":false}'), +(4361, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.294+00', '{"cached":null,"ignore_cache":false}'), +(4362, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.342+00', '{"cached":null,"ignore_cache":false}'), +(4363, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.363+00', '{"cached":null,"ignore_cache":false}'), +(4364, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.366+00', '{"cached":null,"ignore_cache":false}'), +(4365, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.368+00', '{"cached":null,"ignore_cache":false}'), +(4366, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:08.421+00', '{"cached":null,"ignore_cache":false}'), +(4367, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:29.76+00', '{"cached":null,"ignore_cache":null}'), +(4368, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:15:30.298+00', '{"cached":null,"ignore_cache":false}'), +(4369, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:07.184+00', '{"cached":null,"ignore_cache":null}'), +(4370, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.294+00', '{"cached":null,"ignore_cache":false}'), +(4371, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.434+00', '{"cached":null,"ignore_cache":false}'), +(4372, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.583+00', '{"cached":null,"ignore_cache":false}'), +(4373, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.584+00', '{"cached":null,"ignore_cache":false}'), +(4374, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.615+00', '{"cached":null,"ignore_cache":false}'), +(4375, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.629+00', '{"cached":null,"ignore_cache":false}'), +(4376, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.656+00', '{"cached":null,"ignore_cache":false}'), +(4377, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.695+00', '{"cached":null,"ignore_cache":false}'), +(4378, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:08.706+00', '{"cached":null,"ignore_cache":false}'), +(4379, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:13.24+00', '{"cached":null,"ignore_cache":null}'), +(4380, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:13.815+00', '{"cached":null,"ignore_cache":false}'), +(4381, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:16:41.846+00', '{"cached":null,"ignore_cache":null}'), +(4382, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:18.535+00', '{"cached":null,"ignore_cache":null}'), +(4383, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:22.824+00', '{"cached":null,"ignore_cache":null}'), +(4384, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:39.726+00', '{"cached":null,"ignore_cache":null}'), +(4385, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:18:47.019+00', '{"cached":null,"ignore_cache":null}'), +(4386, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:25.493+00', '{"cached":null,"ignore_cache":null}'), +(4387, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:43.716+00', '{"cached":null,"ignore_cache":null}'), +(4388, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.491+00', '{"cached":null,"ignore_cache":false}'), +(4389, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.564+00', '{"cached":null,"ignore_cache":false}'), +(4390, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.588+00', '{"cached":null,"ignore_cache":false}'), +(4391, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.636+00', '{"cached":null,"ignore_cache":false}'), +(4392, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.64+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4393, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.653+00', '{"cached":null,"ignore_cache":false}'), +(4394, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.663+00', '{"cached":null,"ignore_cache":false}'), +(4395, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.668+00', '{"cached":null,"ignore_cache":false}'), +(4396, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:19:44.668+00', '{"cached":null,"ignore_cache":false}'), +(4397, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:13.325+00', '{"cached":null,"ignore_cache":null}'), +(4398, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.665+00', '{"cached":null,"ignore_cache":false}'), +(4399, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.723+00', '{"cached":null,"ignore_cache":false}'), +(4400, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.746+00', '{"cached":null,"ignore_cache":false}'), +(4401, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.751+00', '{"cached":null,"ignore_cache":false}'), +(4402, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.782+00', '{"cached":null,"ignore_cache":false}'), +(4403, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.845+00', '{"cached":null,"ignore_cache":false}'), +(4404, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.894+00', '{"cached":null,"ignore_cache":false}'), +(4405, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.902+00', '{"cached":null,"ignore_cache":false}'), +(4406, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:20:14.958+00', '{"cached":null,"ignore_cache":false}'), +(4407, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:21:08.429+00', '{"cached":null,"ignore_cache":null}'), +(4408, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:21:51.894+00', '{"cached":null,"ignore_cache":null}'), +(4409, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.303+00', '{"cached":null,"ignore_cache":false}'), +(4410, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.304+00', '{"cached":null,"ignore_cache":false}'), +(4411, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.34+00', '{"cached":null,"ignore_cache":false}'), +(4412, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.401+00', '{"cached":null,"ignore_cache":false}'), +(4413, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.533+00', '{"cached":null,"ignore_cache":false}'), +(4414, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.579+00', '{"cached":null,"ignore_cache":false}'), +(4415, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.641+00', '{"cached":null,"ignore_cache":false}'), +(4416, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.664+00', '{"cached":null,"ignore_cache":false}'), +(4417, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:34.689+00', '{"cached":null,"ignore_cache":false}'), +(4418, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:36.826+00', '{"cached":null,"ignore_cache":null}'), +(4419, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:22:58.397+00', '{"cached":null,"ignore_cache":null}'), +(4420, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:28.507+00', '{"cached":null,"ignore_cache":null}'), +(4421, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:38.142+00', '{"cached":null,"ignore_cache":null}'), +(4422, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:46.559+00', '{"cached":null,"ignore_cache":null}'), +(4423, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.372+00', '{"cached":null,"ignore_cache":false}'), +(4424, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.459+00', '{"cached":null,"ignore_cache":false}'), +(4425, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.569+00', '{"cached":null,"ignore_cache":false}'), +(4426, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.607+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4427, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.621+00', '{"cached":null,"ignore_cache":false}'), +(4428, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.679+00', '{"cached":null,"ignore_cache":false}'), +(4429, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:47.751+00', '{"cached":null,"ignore_cache":false}'), +(4430, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:51.509+00', '{"cached":null,"ignore_cache":null}'), +(4431, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.04+00', '{"cached":null,"ignore_cache":false}'), +(4432, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.153+00', '{"cached":null,"ignore_cache":false}'), +(4433, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.163+00', '{"cached":null,"ignore_cache":false}'), +(4434, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.177+00', '{"cached":null,"ignore_cache":false}'), +(4435, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.193+00', '{"cached":null,"ignore_cache":false}'), +(4436, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.21+00', '{"cached":null,"ignore_cache":false}'), +(4437, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.224+00', '{"cached":null,"ignore_cache":false}'), +(4438, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.236+00', '{"cached":null,"ignore_cache":false}'), +(4439, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:23:52.289+00', '{"cached":null,"ignore_cache":false}'), +(4440, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:24:06.248+00', '{"cached":null,"ignore_cache":null}'), +(4441, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:24:06.785+00', '{"cached":null,"ignore_cache":false}'), +(4442, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:24:59.994+00', '{"cached":null,"ignore_cache":null}'), +(4443, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:04.916+00', '{"cached":null,"ignore_cache":null}'), +(4444, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.64+00', '{"cached":null,"ignore_cache":false}'), +(4445, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.74+00', '{"cached":null,"ignore_cache":false}'), +(4446, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.791+00', '{"cached":null,"ignore_cache":false}'), +(4447, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:06.981+00', '{"cached":null,"ignore_cache":false}'), +(4448, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:07.155+00', '{"cached":null,"ignore_cache":false}'), +(4449, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:07.156+00', '{"cached":null,"ignore_cache":false}'), +(4450, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:07.176+00', '{"cached":null,"ignore_cache":false}'), +(4451, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:07.206+00', '{"cached":null,"ignore_cache":false}'), +(4452, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:07.251+00', '{"cached":null,"ignore_cache":false}'), +(4453, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:26.799+00', '{"cached":null,"ignore_cache":null}'), +(4454, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:35.2+00', '{"cached":null,"ignore_cache":null}'), +(4455, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:35.636+00', '{"cached":null,"ignore_cache":null}'), +(4456, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.708+00', '{"cached":null,"ignore_cache":false}'), +(4457, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.822+00', '{"cached":null,"ignore_cache":false}'), +(4458, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:51.916+00', '{"cached":null,"ignore_cache":false}'), +(4459, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:52.079+00', '{"cached":null,"ignore_cache":false}'), +(4460, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:52.289+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4461, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:52.346+00', '{"cached":null,"ignore_cache":false}'), +(4462, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:52.385+00', '{"cached":null,"ignore_cache":false}'), +(4463, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:52.414+00', '{"cached":null,"ignore_cache":false}'), +(4464, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:52.567+00', '{"cached":null,"ignore_cache":false}'), +(4465, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.081+00', '{"cached":null,"ignore_cache":false}'), +(4466, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.082+00', '{"cached":null,"ignore_cache":false}'), +(4467, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.083+00', '{"cached":null,"ignore_cache":false}'), +(4468, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.142+00', '{"cached":null,"ignore_cache":false}'), +(4469, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.158+00', '{"cached":null,"ignore_cache":false}'), +(4470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.261+00', '{"cached":null,"ignore_cache":false}'), +(4471, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.282+00', '{"cached":null,"ignore_cache":false}'), +(4472, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.328+00', '{"cached":null,"ignore_cache":false}'), +(4473, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:57.422+00', '{"cached":null,"ignore_cache":false}'), +(4474, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:25:58.142+00', '{"cached":null,"ignore_cache":null}'), +(4475, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:07.844+00', '{"cached":null,"ignore_cache":null}'), +(4476, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.633+00', '{"cached":null,"ignore_cache":false}'), +(4477, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.73+00', '{"cached":null,"ignore_cache":false}'), +(4478, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.775+00', '{"cached":null,"ignore_cache":false}'), +(4479, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.79+00', '{"cached":null,"ignore_cache":false}'), +(4480, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.814+00', '{"cached":null,"ignore_cache":false}'), +(4481, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.819+00', '{"cached":null,"ignore_cache":false}'), +(4482, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:08.843+00', '{"cached":null,"ignore_cache":false}'), +(4483, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:28.123+00', '{"cached":null,"ignore_cache":null}'), +(4484, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.134+00', '{"cached":null,"ignore_cache":false}'), +(4485, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.162+00', '{"cached":null,"ignore_cache":false}'), +(4486, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.487+00', '{"cached":null,"ignore_cache":false}'), +(4487, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.501+00', '{"cached":null,"ignore_cache":false}'), +(4488, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.587+00', '{"cached":null,"ignore_cache":false}'), +(4489, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.588+00', '{"cached":null,"ignore_cache":false}'), +(4490, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.643+00', '{"cached":null,"ignore_cache":false}'), +(4491, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:29.702+00', '{"cached":null,"ignore_cache":false}'), +(4492, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:30.076+00', '{"cached":null,"ignore_cache":false}'), +(4493, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.197+00', '{"cached":null,"ignore_cache":null}'), +(4494, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.816+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4495, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.848+00', '{"cached":null,"ignore_cache":false}'), +(4496, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.861+00', '{"cached":null,"ignore_cache":false}'), +(4497, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.91+00', '{"cached":null,"ignore_cache":false}'), +(4498, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:34.986+00', '{"cached":null,"ignore_cache":false}'), +(4499, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:35.012+00', '{"cached":null,"ignore_cache":false}'), +(4500, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:35.043+00', '{"cached":null,"ignore_cache":false}'), +(4501, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:35.047+00', '{"cached":null,"ignore_cache":false}'), +(4502, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:26:35.147+00', '{"cached":null,"ignore_cache":false}'), +(4503, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:17.315+00', '{"cached":null,"ignore_cache":null}'), +(4504, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.016+00', '{"cached":null,"ignore_cache":false}'), +(4505, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.094+00', '{"cached":null,"ignore_cache":false}'), +(4506, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.115+00', '{"cached":null,"ignore_cache":false}'), +(4507, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.186+00', '{"cached":null,"ignore_cache":false}'), +(4508, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.186+00', '{"cached":null,"ignore_cache":false}'), +(4509, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.244+00', '{"cached":null,"ignore_cache":false}'), +(4510, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.275+00', '{"cached":null,"ignore_cache":false}'), +(4511, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.311+00', '{"cached":null,"ignore_cache":false}'), +(4512, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:28:18.412+00', '{"cached":null,"ignore_cache":false}'), +(4513, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.365+00', '{"cached":null,"ignore_cache":false}'), +(4514, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.52+00', '{"cached":null,"ignore_cache":false}'), +(4515, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.572+00', '{"cached":null,"ignore_cache":false}'), +(4516, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.593+00', '{"cached":null,"ignore_cache":false}'), +(4517, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.61+00', '{"cached":null,"ignore_cache":false}'), +(4518, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.646+00', '{"cached":null,"ignore_cache":false}'), +(4519, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.694+00', '{"cached":null,"ignore_cache":false}'), +(4520, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.695+00', '{"cached":null,"ignore_cache":false}'), +(4521, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:09.754+00', '{"cached":null,"ignore_cache":false}'), +(4522, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.806+00', '{"cached":null,"ignore_cache":false}'), +(4523, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.831+00', '{"cached":null,"ignore_cache":false}'), +(4524, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.855+00', '{"cached":null,"ignore_cache":false}'), +(4525, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.888+00', '{"cached":null,"ignore_cache":false}'), +(4526, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.91+00', '{"cached":null,"ignore_cache":false}'), +(4527, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:54.999+00', '{"cached":null,"ignore_cache":false}'), +(4528, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:55.022+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4529, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:55.045+00', '{"cached":null,"ignore_cache":false}'), +(4530, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:29:55.107+00', '{"cached":null,"ignore_cache":false}'), +(4531, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:03.994+00', '{"cached":null,"ignore_cache":false}'), +(4532, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.025+00', '{"cached":null,"ignore_cache":false}'), +(4533, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.034+00', '{"cached":null,"ignore_cache":false}'), +(4534, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.084+00', '{"cached":null,"ignore_cache":false}'), +(4535, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.088+00', '{"cached":null,"ignore_cache":false}'), +(4536, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.095+00', '{"cached":null,"ignore_cache":false}'), +(4537, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.098+00', '{"cached":null,"ignore_cache":false}'), +(4538, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.129+00', '{"cached":null,"ignore_cache":false}'), +(4539, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:04.136+00', '{"cached":null,"ignore_cache":false}'), +(4540, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.421+00', '{"cached":null,"ignore_cache":false}'), +(4541, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.551+00', '{"cached":null,"ignore_cache":false}'), +(4542, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.613+00', '{"cached":null,"ignore_cache":false}'), +(4543, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.631+00', '{"cached":null,"ignore_cache":false}'), +(4544, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.636+00', '{"cached":null,"ignore_cache":false}'), +(4545, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.648+00', '{"cached":null,"ignore_cache":false}'), +(4546, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.656+00', '{"cached":null,"ignore_cache":false}'), +(4547, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.697+00', '{"cached":null,"ignore_cache":false}'), +(4548, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:34.867+00', '{"cached":null,"ignore_cache":false}'), +(4549, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.669+00', '{"cached":null,"ignore_cache":false}'), +(4550, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.835+00', '{"cached":null,"ignore_cache":false}'), +(4551, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.878+00', '{"cached":null,"ignore_cache":false}'), +(4552, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:44.88+00', '{"cached":null,"ignore_cache":false}'), +(4553, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:45.011+00', '{"cached":null,"ignore_cache":false}'), +(4554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:45.015+00', '{"cached":null,"ignore_cache":false}'), +(4555, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:30:45.091+00', '{"cached":null,"ignore_cache":false}'), +(4556, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.794+00', '{"cached":null,"ignore_cache":false}'), +(4557, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.799+00', '{"cached":null,"ignore_cache":false}'), +(4558, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.844+00', '{"cached":null,"ignore_cache":false}'), +(4559, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.853+00', '{"cached":null,"ignore_cache":false}'), +(4560, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.873+00', '{"cached":null,"ignore_cache":false}'), +(4561, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.902+00', '{"cached":null,"ignore_cache":false}'), +(4562, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:05.921+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4563, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:34.522+00', '{"cached":null,"ignore_cache":null}'), +(4564, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.29+00', '{"cached":null,"ignore_cache":false}'), +(4565, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.29+00', '{"cached":null,"ignore_cache":false}'), +(4566, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.346+00', '{"cached":null,"ignore_cache":false}'), +(4567, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.378+00', '{"cached":null,"ignore_cache":false}'), +(4568, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.43+00', '{"cached":null,"ignore_cache":false}'), +(4569, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.46+00', '{"cached":null,"ignore_cache":false}'), +(4570, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.501+00', '{"cached":null,"ignore_cache":false}'), +(4571, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.518+00', '{"cached":null,"ignore_cache":false}'), +(4572, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:35.537+00', '{"cached":null,"ignore_cache":false}'), +(4573, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.777+00', '{"cached":null,"ignore_cache":false}'), +(4574, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.797+00', '{"cached":null,"ignore_cache":false}'), +(4575, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:43.834+00', '{"cached":null,"ignore_cache":false}'), +(4576, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.072+00', '{"cached":null,"ignore_cache":false}'), +(4577, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.082+00', '{"cached":null,"ignore_cache":false}'), +(4578, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.223+00', '{"cached":null,"ignore_cache":false}'), +(4579, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.249+00', '{"cached":null,"ignore_cache":false}'), +(4580, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.458+00', '{"cached":null,"ignore_cache":false}'), +(4581, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:31:44.527+00', '{"cached":null,"ignore_cache":false}'), +(4582, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.043+00', '{"cached":null,"ignore_cache":false}'), +(4583, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.16+00', '{"cached":null,"ignore_cache":false}'), +(4584, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.175+00', '{"cached":null,"ignore_cache":false}'), +(4585, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.192+00', '{"cached":null,"ignore_cache":false}'), +(4586, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.298+00', '{"cached":null,"ignore_cache":false}'), +(4587, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.3+00', '{"cached":null,"ignore_cache":false}'), +(4588, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.463+00', '{"cached":null,"ignore_cache":false}'), +(4589, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.588+00', '{"cached":null,"ignore_cache":false}'), +(4590, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:32:55.692+00', '{"cached":null,"ignore_cache":false}'), +(4591, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.508+00', '{"cached":null,"ignore_cache":false}'), +(4592, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:16.606+00', '{"cached":null,"ignore_cache":false}'), +(4593, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.034+00', '{"cached":null,"ignore_cache":false}'), +(4594, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.211+00', '{"cached":null,"ignore_cache":false}'), +(4595, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.303+00', '{"cached":null,"ignore_cache":false}'), +(4596, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.338+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4597, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.403+00', '{"cached":null,"ignore_cache":false}'), +(4598, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.441+00', '{"cached":null,"ignore_cache":false}'), +(4599, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.453+00', '{"cached":null,"ignore_cache":false}'), +(4600, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.506+00', '{"cached":null,"ignore_cache":false}'), +(4601, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:17.771+00', '{"cached":null,"ignore_cache":false}'), +(4602, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:18.162+00', '{"cached":null,"ignore_cache":false}'), +(4603, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.581+00', '{"cached":null,"ignore_cache":false}'), +(4604, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.589+00', '{"cached":null,"ignore_cache":false}'), +(4605, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.59+00', '{"cached":null,"ignore_cache":false}'), +(4606, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.63+00', '{"cached":null,"ignore_cache":false}'), +(4607, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.662+00', '{"cached":null,"ignore_cache":false}'), +(4608, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.676+00', '{"cached":null,"ignore_cache":false}'), +(4609, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:24.697+00', '{"cached":null,"ignore_cache":false}'), +(4610, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.714+00', '{"cached":null,"ignore_cache":false}'), +(4611, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.751+00', '{"cached":null,"ignore_cache":false}'), +(4612, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.765+00', '{"cached":null,"ignore_cache":false}'), +(4613, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.781+00', '{"cached":null,"ignore_cache":false}'), +(4614, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.793+00', '{"cached":null,"ignore_cache":false}'), +(4615, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.809+00', '{"cached":null,"ignore_cache":false}'), +(4616, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:33:34.814+00', '{"cached":null,"ignore_cache":false}'), +(4617, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.607+00', '{"cached":null,"ignore_cache":false}'), +(4618, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.678+00', '{"cached":null,"ignore_cache":false}'), +(4619, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.691+00', '{"cached":null,"ignore_cache":false}'), +(4620, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.709+00', '{"cached":null,"ignore_cache":false}'), +(4621, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.715+00', '{"cached":null,"ignore_cache":false}'), +(4622, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.739+00', '{"cached":null,"ignore_cache":false}'), +(4623, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:35:45.749+00', '{"cached":null,"ignore_cache":false}'), +(4624, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:47.948+00', '{"cached":null,"ignore_cache":null}'), +(4625, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.495+00', '{"cached":null,"ignore_cache":false}'), +(4626, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.534+00', '{"cached":null,"ignore_cache":false}'), +(4627, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.578+00', '{"cached":null,"ignore_cache":false}'), +(4628, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.582+00', '{"cached":null,"ignore_cache":false}'), +(4629, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.653+00', '{"cached":null,"ignore_cache":false}'), +(4630, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.668+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4631, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.688+00', '{"cached":null,"ignore_cache":false}'), +(4632, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.693+00', '{"cached":null,"ignore_cache":false}'), +(4633, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:37:48.699+00', '{"cached":null,"ignore_cache":false}'), +(4634, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:44.086+00', '{"cached":null,"ignore_cache":null}'), +(4635, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.515+00', '{"cached":null,"ignore_cache":false}'), +(4636, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.561+00', '{"cached":null,"ignore_cache":false}'), +(4637, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.591+00', '{"cached":null,"ignore_cache":false}'), +(4638, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.651+00', '{"cached":null,"ignore_cache":false}'), +(4639, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.675+00', '{"cached":null,"ignore_cache":false}'), +(4640, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.72+00', '{"cached":null,"ignore_cache":false}'), +(4641, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.744+00', '{"cached":null,"ignore_cache":false}'), +(4642, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.745+00', '{"cached":null,"ignore_cache":false}'), +(4643, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:45.922+00', '{"cached":null,"ignore_cache":false}'), +(4644, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:56.51+00', '{"cached":null,"ignore_cache":null}'), +(4645, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:40:57.042+00', '{"cached":null,"ignore_cache":false}'), +(4646, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:27.221+00', '{"cached":null,"ignore_cache":false}'), +(4647, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:27.332+00', '{"cached":null,"ignore_cache":false}'), +(4648, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:27.508+00', '{"cached":null,"ignore_cache":false}'), +(4649, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:27.636+00', '{"cached":null,"ignore_cache":false}'), +(4650, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:27.639+00', '{"cached":null,"ignore_cache":false}'), +(4651, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:27.838+00', '{"cached":null,"ignore_cache":false}'), +(4652, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:29.918+00', '{"cached":null,"ignore_cache":false}'), +(4653, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:30.369+00', '{"cached":null,"ignore_cache":false}'), +(4654, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:30.813+00', '{"cached":null,"ignore_cache":false}'), +(4655, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:30.991+00', '{"cached":null,"ignore_cache":false}'), +(4656, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:31.45+00', '{"cached":null,"ignore_cache":false}'), +(4657, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:31.506+00', '{"cached":null,"ignore_cache":false}'), +(4658, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:31.686+00', '{"cached":null,"ignore_cache":false}'), +(4659, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:31.726+00', '{"cached":null,"ignore_cache":false}'), +(4660, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:31.736+00', '{"cached":null,"ignore_cache":false}'), +(4661, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:31.923+00', '{"cached":null,"ignore_cache":false}'), +(4662, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.068+00', '{"cached":null,"ignore_cache":false}'), +(4663, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.281+00', '{"cached":null,"ignore_cache":false}'), +(4664, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.328+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4665, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.398+00', '{"cached":null,"ignore_cache":false}'), +(4666, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.437+00', '{"cached":null,"ignore_cache":false}'), +(4667, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.599+00', '{"cached":null,"ignore_cache":false}'), +(4668, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.695+00', '{"cached":null,"ignore_cache":false}'), +(4669, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.701+00', '{"cached":null,"ignore_cache":false}'), +(4670, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.747+00', '{"cached":null,"ignore_cache":false}'), +(4671, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:41:39.941+00', '{"cached":null,"ignore_cache":false}'), +(4672, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.696+00', '{"cached":null,"ignore_cache":false}'), +(4673, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.77+00', '{"cached":null,"ignore_cache":false}'), +(4674, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.776+00', '{"cached":null,"ignore_cache":false}'), +(4675, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.827+00', '{"cached":null,"ignore_cache":false}'), +(4676, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.895+00', '{"cached":null,"ignore_cache":false}'), +(4677, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:18.898+00', '{"cached":null,"ignore_cache":false}'), +(4678, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:19.048+00', '{"cached":null,"ignore_cache":false}'), +(4679, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:19.081+00', '{"cached":null,"ignore_cache":false}'), +(4680, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:19.295+00', '{"cached":null,"ignore_cache":false}'), +(4681, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:23.346+00', '{"cached":null,"ignore_cache":null}'), +(4682, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:24.336+00', '{"cached":null,"ignore_cache":false}'), +(4683, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.369+00', '{"cached":null,"ignore_cache":false}'), +(4684, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.422+00', '{"cached":null,"ignore_cache":false}'), +(4685, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.465+00', '{"cached":null,"ignore_cache":false}'), +(4686, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.477+00', '{"cached":null,"ignore_cache":false}'), +(4687, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.511+00', '{"cached":null,"ignore_cache":false}'), +(4688, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.516+00', '{"cached":null,"ignore_cache":false}'), +(4689, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.526+00', '{"cached":null,"ignore_cache":false}'), +(4690, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.815+00', '{"cached":null,"ignore_cache":false}'), +(4691, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.858+00', '{"cached":null,"ignore_cache":false}'), +(4692, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.864+00', '{"cached":null,"ignore_cache":false}'), +(4693, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.891+00', '{"cached":null,"ignore_cache":false}'), +(4694, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.893+00', '{"cached":null,"ignore_cache":false}'), +(4695, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.898+00', '{"cached":null,"ignore_cache":false}'), +(4696, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:42:36.905+00', '{"cached":null,"ignore_cache":false}'), +(4697, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:43:51.165+00', '{"cached":null,"ignore_cache":null}'), +(4698, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:43:51.847+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4699, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.122+00', '{"cached":null,"ignore_cache":false}'), +(4700, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.458+00', '{"cached":null,"ignore_cache":false}'), +(4701, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.476+00', '{"cached":null,"ignore_cache":false}'), +(4702, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.543+00', '{"cached":null,"ignore_cache":false}'), +(4703, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.574+00', '{"cached":null,"ignore_cache":false}'), +(4704, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.9+00', '{"cached":null,"ignore_cache":false}'), +(4705, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.901+00', '{"cached":null,"ignore_cache":false}'), +(4706, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.922+00', '{"cached":null,"ignore_cache":false}'), +(4707, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:44:09.961+00', '{"cached":null,"ignore_cache":false}'), +(4708, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.73+00', '{"cached":null,"ignore_cache":false}'), +(4709, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.759+00', '{"cached":null,"ignore_cache":false}'), +(4710, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.759+00', '{"cached":null,"ignore_cache":false}'), +(4711, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.816+00', '{"cached":null,"ignore_cache":false}'), +(4712, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:15.965+00', '{"cached":null,"ignore_cache":false}'), +(4713, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:16.072+00', '{"cached":null,"ignore_cache":false}'), +(4714, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:16.118+00', '{"cached":null,"ignore_cache":false}'), +(4715, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:16.193+00', '{"cached":null,"ignore_cache":false}'), +(4716, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:45:16.294+00', '{"cached":null,"ignore_cache":false}'), +(4717, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:57.521+00', '{"cached":null,"ignore_cache":null}'), +(4718, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.637+00', '{"cached":null,"ignore_cache":false}'), +(4719, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.759+00', '{"cached":null,"ignore_cache":false}'), +(4720, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.778+00', '{"cached":null,"ignore_cache":false}'), +(4721, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.794+00', '{"cached":null,"ignore_cache":false}'), +(4722, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.847+00', '{"cached":null,"ignore_cache":false}'), +(4723, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.858+00', '{"cached":null,"ignore_cache":false}'), +(4724, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.903+00', '{"cached":null,"ignore_cache":false}'), +(4725, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.957+00', '{"cached":null,"ignore_cache":false}'), +(4726, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:50:58.959+00', '{"cached":null,"ignore_cache":false}'), +(4727, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:01.556+00', '{"cached":null,"ignore_cache":null}'), +(4728, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.404+00', '{"cached":null,"ignore_cache":false}'), +(4729, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.41+00', '{"cached":null,"ignore_cache":false}'), +(4730, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.465+00', '{"cached":null,"ignore_cache":false}'), +(4731, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.468+00', '{"cached":null,"ignore_cache":false}'), +(4732, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.473+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4733, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.562+00', '{"cached":null,"ignore_cache":false}'), +(4734, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.578+00', '{"cached":null,"ignore_cache":false}'), +(4735, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.595+00', '{"cached":null,"ignore_cache":false}'), +(4736, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:02.634+00', '{"cached":null,"ignore_cache":false}'), +(4737, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:18.635+00', '{"cached":null,"ignore_cache":null}'), +(4738, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:53:19.201+00', '{"cached":null,"ignore_cache":false}'), +(4739, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.623+00', '{"cached":null,"ignore_cache":false}'), +(4740, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.672+00', '{"cached":null,"ignore_cache":false}'), +(4741, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.711+00', '{"cached":null,"ignore_cache":false}'), +(4742, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.758+00', '{"cached":null,"ignore_cache":false}'), +(4743, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.778+00', '{"cached":null,"ignore_cache":false}'), +(4744, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.862+00', '{"cached":null,"ignore_cache":false}'), +(4745, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.866+00', '{"cached":null,"ignore_cache":false}'), +(4746, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.9+00', '{"cached":null,"ignore_cache":false}'), +(4747, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 10:55:07.926+00', '{"cached":null,"ignore_cache":false}'), +(4748, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:12.646+00', '{"cached":null,"ignore_cache":null}'), +(4749, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.226+00', '{"cached":null,"ignore_cache":false}'), +(4750, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.31+00', '{"cached":null,"ignore_cache":false}'), +(4751, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.338+00', '{"cached":null,"ignore_cache":false}'), +(4752, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.369+00', '{"cached":null,"ignore_cache":false}'), +(4753, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.409+00', '{"cached":null,"ignore_cache":false}'), +(4754, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.447+00', '{"cached":null,"ignore_cache":false}'), +(4755, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.454+00', '{"cached":null,"ignore_cache":false}'), +(4756, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.458+00', '{"cached":null,"ignore_cache":false}'), +(4757, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:56:13.493+00', '{"cached":null,"ignore_cache":false}'), +(4758, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.677+00', '{"cached":null,"ignore_cache":false}'), +(4759, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.678+00', '{"cached":null,"ignore_cache":false}'), +(4760, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.752+00', '{"cached":null,"ignore_cache":false}'), +(4761, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.795+00', '{"cached":null,"ignore_cache":false}'), +(4762, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.847+00', '{"cached":null,"ignore_cache":false}'), +(4763, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.884+00', '{"cached":null,"ignore_cache":false}'), +(4764, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.917+00', '{"cached":null,"ignore_cache":false}'), +(4765, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.948+00', '{"cached":null,"ignore_cache":false}'), +(4766, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:23.965+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4767, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.514+00', '{"cached":null,"ignore_cache":false}'), +(4768, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.721+00', '{"cached":null,"ignore_cache":false}'), +(4769, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.747+00', '{"cached":null,"ignore_cache":false}'), +(4770, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.763+00', '{"cached":null,"ignore_cache":false}'), +(4771, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.958+00', '{"cached":null,"ignore_cache":false}'), +(4772, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.968+00', '{"cached":null,"ignore_cache":false}'), +(4773, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.975+00', '{"cached":null,"ignore_cache":false}'), +(4774, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.985+00', '{"cached":null,"ignore_cache":false}'), +(4775, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:57:53.991+00', '{"cached":null,"ignore_cache":false}'), +(4776, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.363+00', '{"cached":null,"ignore_cache":false}'), +(4777, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.414+00', '{"cached":null,"ignore_cache":false}'), +(4778, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.547+00', '{"cached":null,"ignore_cache":false}'), +(4779, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.61+00', '{"cached":null,"ignore_cache":false}'), +(4780, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.656+00', '{"cached":null,"ignore_cache":false}'), +(4781, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.657+00', '{"cached":null,"ignore_cache":false}'), +(4782, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.663+00', '{"cached":null,"ignore_cache":false}'), +(4783, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.681+00', '{"cached":null,"ignore_cache":false}'), +(4784, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:23.683+00', '{"cached":null,"ignore_cache":false}'), +(4785, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.48+00', '{"cached":null,"ignore_cache":false}'), +(4786, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.583+00', '{"cached":null,"ignore_cache":false}'), +(4787, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.672+00', '{"cached":null,"ignore_cache":false}'), +(4788, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.672+00', '{"cached":null,"ignore_cache":false}'), +(4789, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.708+00', '{"cached":null,"ignore_cache":false}'), +(4790, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.756+00', '{"cached":null,"ignore_cache":false}'), +(4791, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.765+00', '{"cached":null,"ignore_cache":false}'), +(4792, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.785+00', '{"cached":null,"ignore_cache":false}'), +(4793, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:58:53.87+00', '{"cached":null,"ignore_cache":false}'), +(4794, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:11.254+00', '{"cached":null,"ignore_cache":null}'), +(4795, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.491+00', '{"cached":null,"ignore_cache":false}'), +(4796, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.562+00', '{"cached":null,"ignore_cache":false}'), +(4797, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.58+00', '{"cached":null,"ignore_cache":false}'), +(4798, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.586+00', '{"cached":null,"ignore_cache":false}'), +(4799, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.594+00', '{"cached":null,"ignore_cache":false}'), +(4800, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.614+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4801, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.652+00', '{"cached":null,"ignore_cache":false}'), +(4802, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.685+00', '{"cached":null,"ignore_cache":false}'), +(4803, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:23.829+00', '{"cached":null,"ignore_cache":false}'), +(4804, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.385+00', '{"cached":null,"ignore_cache":false}'), +(4805, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.468+00', '{"cached":null,"ignore_cache":false}'), +(4806, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.495+00', '{"cached":null,"ignore_cache":false}'), +(4807, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.496+00', '{"cached":null,"ignore_cache":false}'), +(4808, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.518+00', '{"cached":null,"ignore_cache":false}'), +(4809, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.53+00', '{"cached":null,"ignore_cache":false}'), +(4810, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.541+00', '{"cached":null,"ignore_cache":false}'), +(4811, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.564+00', '{"cached":null,"ignore_cache":false}'), +(4812, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 10:59:53.636+00', '{"cached":null,"ignore_cache":false}'), +(4813, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.467+00', '{"cached":null,"ignore_cache":false}'), +(4814, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.5+00', '{"cached":null,"ignore_cache":false}'), +(4815, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.557+00', '{"cached":null,"ignore_cache":false}'), +(4816, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.657+00', '{"cached":null,"ignore_cache":false}'), +(4817, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.694+00', '{"cached":null,"ignore_cache":false}'), +(4818, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.697+00', '{"cached":null,"ignore_cache":false}'), +(4819, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.796+00', '{"cached":null,"ignore_cache":false}'), +(4820, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.815+00', '{"cached":null,"ignore_cache":false}'), +(4821, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:23.841+00', '{"cached":null,"ignore_cache":false}'), +(4822, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.42+00', '{"cached":null,"ignore_cache":false}'), +(4823, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.458+00', '{"cached":null,"ignore_cache":false}'), +(4824, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.515+00', '{"cached":null,"ignore_cache":false}'), +(4825, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.522+00', '{"cached":null,"ignore_cache":false}'), +(4826, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.541+00', '{"cached":null,"ignore_cache":false}'), +(4827, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.559+00', '{"cached":null,"ignore_cache":false}'), +(4828, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.578+00', '{"cached":null,"ignore_cache":false}'), +(4829, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.663+00', '{"cached":null,"ignore_cache":false}'), +(4830, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:53.668+00', '{"cached":null,"ignore_cache":false}'), +(4831, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:57.542+00', '{"cached":null,"ignore_cache":null}'), +(4832, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.05+00', '{"cached":null,"ignore_cache":false}'), +(4833, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.073+00', '{"cached":null,"ignore_cache":false}'), +(4834, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.1+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4835, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.143+00', '{"cached":null,"ignore_cache":false}'), +(4836, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.159+00', '{"cached":null,"ignore_cache":false}'), +(4837, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.172+00', '{"cached":null,"ignore_cache":false}'), +(4838, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.185+00', '{"cached":null,"ignore_cache":false}'), +(4839, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.186+00', '{"cached":null,"ignore_cache":false}'), +(4840, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:00:58.229+00', '{"cached":null,"ignore_cache":false}'), +(4841, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.822+00', '{"cached":null,"ignore_cache":false}'), +(4842, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.846+00', '{"cached":null,"ignore_cache":false}'), +(4843, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.928+00', '{"cached":null,"ignore_cache":false}'), +(4844, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:23.961+00', '{"cached":null,"ignore_cache":false}'), +(4845, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:24.044+00', '{"cached":null,"ignore_cache":false}'), +(4846, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:24.058+00', '{"cached":null,"ignore_cache":false}'), +(4847, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:24.091+00', '{"cached":null,"ignore_cache":false}'), +(4848, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:24.119+00', '{"cached":null,"ignore_cache":false}'), +(4849, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:24.206+00', '{"cached":null,"ignore_cache":false}'), +(4850, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:26.789+00', '{"cached":null,"ignore_cache":null}'), +(4851, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:27.318+00', '{"cached":null,"ignore_cache":false}'), +(4852, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.857+00', '{"cached":null,"ignore_cache":false}'), +(4853, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.952+00', '{"cached":null,"ignore_cache":false}'), +(4854, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.973+00', '{"cached":null,"ignore_cache":false}'), +(4855, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:53.988+00', '{"cached":null,"ignore_cache":false}'), +(4856, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:54.023+00', '{"cached":null,"ignore_cache":false}'), +(4857, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:54.031+00', '{"cached":null,"ignore_cache":false}'), +(4858, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:54.045+00', '{"cached":null,"ignore_cache":false}'), +(4859, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:54.094+00', '{"cached":null,"ignore_cache":false}'), +(4860, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:01:54.108+00', '{"cached":null,"ignore_cache":false}'), +(4861, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.588+00', '{"cached":null,"ignore_cache":false}'), +(4862, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.606+00', '{"cached":null,"ignore_cache":false}'), +(4863, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.644+00', '{"cached":null,"ignore_cache":false}'), +(4864, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.673+00', '{"cached":null,"ignore_cache":false}'), +(4865, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.74+00', '{"cached":null,"ignore_cache":false}'), +(4866, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.855+00', '{"cached":null,"ignore_cache":false}'), +(4867, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.894+00', '{"cached":null,"ignore_cache":false}'), +(4868, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:15.927+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4869, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.138+00', '{"cached":null,"ignore_cache":false}'), +(4870, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.167+00', '{"cached":null,"ignore_cache":false}'), +(4871, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.193+00', '{"cached":null,"ignore_cache":false}'), +(4872, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.203+00', '{"cached":null,"ignore_cache":false}'), +(4873, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.248+00', '{"cached":null,"ignore_cache":false}'), +(4874, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.439+00', '{"cached":null,"ignore_cache":false}'), +(4875, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.448+00', '{"cached":null,"ignore_cache":false}'), +(4876, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.488+00', '{"cached":null,"ignore_cache":false}'), +(4877, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.491+00', '{"cached":null,"ignore_cache":false}'), +(4878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.65+00', '{"cached":null,"ignore_cache":false}'), +(4879, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.697+00', '{"cached":null,"ignore_cache":false}'), +(4880, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.726+00', '{"cached":null,"ignore_cache":false}'), +(4881, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.76+00', '{"cached":null,"ignore_cache":false}'), +(4882, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.773+00', '{"cached":null,"ignore_cache":false}'), +(4883, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.782+00', '{"cached":null,"ignore_cache":false}'), +(4884, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.886+00', '{"cached":null,"ignore_cache":false}'), +(4885, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:16.951+00', '{"cached":null,"ignore_cache":false}'), +(4886, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:40.128+00', '{"cached":null,"ignore_cache":null}'), +(4887, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.45+00', '{"cached":null,"ignore_cache":false}'), +(4888, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.519+00', '{"cached":null,"ignore_cache":false}'), +(4889, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.586+00', '{"cached":null,"ignore_cache":false}'), +(4890, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.612+00', '{"cached":null,"ignore_cache":false}'), +(4891, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.622+00', '{"cached":null,"ignore_cache":false}'), +(4892, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.632+00', '{"cached":null,"ignore_cache":false}'), +(4893, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:03:43.712+00', '{"cached":null,"ignore_cache":false}'), +(4894, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.289+00', '{"cached":null,"ignore_cache":false}'), +(4895, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.659+00', '{"cached":null,"ignore_cache":false}'), +(4896, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.692+00', '{"cached":null,"ignore_cache":false}'), +(4897, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.722+00', '{"cached":null,"ignore_cache":false}'), +(4898, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.813+00', '{"cached":null,"ignore_cache":false}'), +(4899, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.856+00', '{"cached":null,"ignore_cache":false}'), +(4900, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:11.905+00', '{"cached":null,"ignore_cache":false}'), +(4901, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.019+00', '{"cached":null,"ignore_cache":false}'), +(4902, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.068+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4903, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.186+00', '{"cached":null,"ignore_cache":false}'), +(4904, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.262+00', '{"cached":null,"ignore_cache":false}'), +(4905, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.316+00', '{"cached":null,"ignore_cache":false}'), +(4906, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.568+00', '{"cached":null,"ignore_cache":false}'), +(4907, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.625+00', '{"cached":null,"ignore_cache":false}'), +(4908, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.679+00', '{"cached":null,"ignore_cache":false}'), +(4909, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.683+00', '{"cached":null,"ignore_cache":false}'), +(4910, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.717+00', '{"cached":null,"ignore_cache":false}'), +(4911, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:12.861+00', '{"cached":null,"ignore_cache":false}'), +(4912, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:40.88+00', '{"cached":null,"ignore_cache":false}'), +(4913, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.104+00', '{"cached":null,"ignore_cache":false}'), +(4914, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.133+00', '{"cached":null,"ignore_cache":false}'), +(4915, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.15+00', '{"cached":null,"ignore_cache":false}'), +(4916, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.171+00', '{"cached":null,"ignore_cache":false}'), +(4917, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.171+00', '{"cached":null,"ignore_cache":false}'), +(4918, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.178+00', '{"cached":null,"ignore_cache":false}'), +(4919, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:41.922+00', '{"cached":null,"ignore_cache":false}'), +(4920, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.095+00', '{"cached":null,"ignore_cache":false}'), +(4921, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.233+00', '{"cached":null,"ignore_cache":false}'), +(4922, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.249+00', '{"cached":null,"ignore_cache":false}'), +(4923, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.268+00', '{"cached":null,"ignore_cache":false}'), +(4924, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.315+00', '{"cached":null,"ignore_cache":false}'), +(4925, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.322+00', '{"cached":null,"ignore_cache":false}'), +(4926, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.406+00', '{"cached":null,"ignore_cache":false}'), +(4927, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:04:42.408+00', '{"cached":null,"ignore_cache":false}'), +(4928, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.628+00', '{"cached":null,"ignore_cache":false}'), +(4929, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.643+00', '{"cached":null,"ignore_cache":false}'), +(4930, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.656+00', '{"cached":null,"ignore_cache":false}'), +(4931, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.672+00', '{"cached":null,"ignore_cache":false}'), +(4932, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.677+00', '{"cached":null,"ignore_cache":false}'), +(4933, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.682+00', '{"cached":null,"ignore_cache":false}'), +(4934, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:10.694+00', '{"cached":null,"ignore_cache":false}'), +(4935, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.668+00', '{"cached":null,"ignore_cache":false}'), +(4936, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.677+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4937, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.751+00', '{"cached":null,"ignore_cache":false}'), +(4938, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.761+00', '{"cached":null,"ignore_cache":false}'), +(4939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.814+00', '{"cached":null,"ignore_cache":false}'), +(4940, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.824+00', '{"cached":null,"ignore_cache":false}'), +(4941, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.855+00', '{"cached":null,"ignore_cache":false}'), +(4942, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.887+00', '{"cached":null,"ignore_cache":false}'), +(4943, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:11.909+00', '{"cached":null,"ignore_cache":false}'), +(4944, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.613+00', '{"cached":null,"ignore_cache":false}'), +(4945, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.626+00', '{"cached":null,"ignore_cache":false}'), +(4946, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.64+00', '{"cached":null,"ignore_cache":false}'), +(4947, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.653+00', '{"cached":null,"ignore_cache":false}'), +(4948, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.656+00', '{"cached":null,"ignore_cache":false}'), +(4949, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.668+00', '{"cached":null,"ignore_cache":false}'), +(4950, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:40.67+00', '{"cached":null,"ignore_cache":false}'), +(4951, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.583+00', '{"cached":null,"ignore_cache":false}'), +(4952, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.606+00', '{"cached":null,"ignore_cache":false}'), +(4953, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.613+00', '{"cached":null,"ignore_cache":false}'), +(4954, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.624+00', '{"cached":null,"ignore_cache":false}'), +(4955, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.668+00', '{"cached":null,"ignore_cache":false}'), +(4956, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.693+00', '{"cached":null,"ignore_cache":false}'), +(4957, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.71+00', '{"cached":null,"ignore_cache":false}'), +(4958, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.713+00', '{"cached":null,"ignore_cache":false}'), +(4959, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:05:41.745+00', '{"cached":null,"ignore_cache":false}'), +(4960, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.273+00', '{"cached":null,"ignore_cache":false}'), +(4961, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.333+00', '{"cached":null,"ignore_cache":false}'), +(4962, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.356+00', '{"cached":null,"ignore_cache":false}'), +(4963, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.438+00', '{"cached":null,"ignore_cache":false}'), +(4964, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.878+00', '{"cached":null,"ignore_cache":false}'), +(4965, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.883+00', '{"cached":null,"ignore_cache":false}'), +(4966, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.908+00', '{"cached":null,"ignore_cache":false}'), +(4967, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.916+00', '{"cached":null,"ignore_cache":false}'), +(4968, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:01.994+00', '{"cached":null,"ignore_cache":false}'), +(4969, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:10.995+00', '{"cached":null,"ignore_cache":false}'), +(4970, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:11.001+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(4971, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:11.005+00', '{"cached":null,"ignore_cache":false}'), +(4972, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:11.014+00', '{"cached":null,"ignore_cache":false}'), +(4973, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:11.039+00', '{"cached":null,"ignore_cache":false}'), +(4974, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:11.046+00', '{"cached":null,"ignore_cache":false}'), +(4975, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:11.064+00', '{"cached":null,"ignore_cache":false}'), +(4976, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.121+00', '{"cached":null,"ignore_cache":false}'), +(4977, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.135+00', '{"cached":null,"ignore_cache":false}'), +(4978, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.164+00', '{"cached":null,"ignore_cache":false}'), +(4979, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.212+00', '{"cached":null,"ignore_cache":false}'), +(4980, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.224+00', '{"cached":null,"ignore_cache":false}'), +(4981, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.23+00', '{"cached":null,"ignore_cache":false}'), +(4982, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.235+00', '{"cached":null,"ignore_cache":false}'), +(4983, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.239+00', '{"cached":null,"ignore_cache":false}'), +(4984, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:29.249+00', '{"cached":null,"ignore_cache":false}'), +(4985, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.795+00', '{"cached":null,"ignore_cache":false}'), +(4986, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.859+00', '{"cached":null,"ignore_cache":false}'), +(4987, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.874+00', '{"cached":null,"ignore_cache":false}'), +(4988, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.875+00', '{"cached":null,"ignore_cache":false}'), +(4989, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.916+00', '{"cached":null,"ignore_cache":false}'), +(4990, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.919+00', '{"cached":null,"ignore_cache":false}'), +(4991, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:40.927+00', '{"cached":null,"ignore_cache":false}'), +(4992, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:47.98+00', '{"cached":null,"ignore_cache":false}'), +(4993, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.03+00', '{"cached":null,"ignore_cache":false}'), +(4994, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.106+00', '{"cached":null,"ignore_cache":false}'), +(4995, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.133+00', '{"cached":null,"ignore_cache":false}'), +(4996, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.135+00', '{"cached":null,"ignore_cache":false}'), +(4997, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.192+00', '{"cached":null,"ignore_cache":false}'), +(4998, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.212+00', '{"cached":null,"ignore_cache":false}'), +(4999, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.219+00', '{"cached":null,"ignore_cache":false}'), +(5000, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:48.253+00', '{"cached":null,"ignore_cache":false}'), +(5001, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.25+00', '{"cached":null,"ignore_cache":false}'), +(5002, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.3+00', '{"cached":null,"ignore_cache":false}'), +(5003, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.5+00', '{"cached":null,"ignore_cache":false}'), +(5004, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.819+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5005, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.828+00', '{"cached":null,"ignore_cache":false}'), +(5006, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.831+00', '{"cached":null,"ignore_cache":false}'), +(5007, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.852+00', '{"cached":null,"ignore_cache":false}'), +(5008, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.887+00', '{"cached":null,"ignore_cache":false}'), +(5009, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:51.888+00', '{"cached":null,"ignore_cache":false}'), +(5010, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.113+00', '{"cached":null,"ignore_cache":false}'), +(5011, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.464+00', '{"cached":null,"ignore_cache":false}'), +(5012, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.627+00', '{"cached":null,"ignore_cache":false}'), +(5013, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.733+00', '{"cached":null,"ignore_cache":false}'), +(5014, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:53.738+00', '{"cached":null,"ignore_cache":false}'), +(5015, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:54.028+00', '{"cached":null,"ignore_cache":false}'), +(5016, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:54.347+00', '{"cached":null,"ignore_cache":false}'), +(5017, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:54.348+00', '{"cached":null,"ignore_cache":false}'), +(5018, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:54.378+00', '{"cached":null,"ignore_cache":false}'), +(5019, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:06:54.734+00', '{"cached":null,"ignore_cache":false}'), +(5020, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.649+00', '{"cached":null,"ignore_cache":false}'), +(5021, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.675+00', '{"cached":null,"ignore_cache":false}'), +(5022, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.691+00', '{"cached":null,"ignore_cache":false}'), +(5023, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.757+00', '{"cached":null,"ignore_cache":false}'), +(5024, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.763+00', '{"cached":null,"ignore_cache":false}'), +(5025, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.779+00', '{"cached":null,"ignore_cache":false}'), +(5026, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:20.785+00', '{"cached":null,"ignore_cache":false}'), +(5027, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.623+00', '{"cached":null,"ignore_cache":false}'), +(5028, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.698+00', '{"cached":null,"ignore_cache":false}'), +(5029, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.715+00', '{"cached":null,"ignore_cache":false}'), +(5030, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.738+00', '{"cached":null,"ignore_cache":false}'), +(5031, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.761+00', '{"cached":null,"ignore_cache":false}'), +(5032, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.778+00', '{"cached":null,"ignore_cache":false}'), +(5033, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.814+00', '{"cached":null,"ignore_cache":false}'), +(5034, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.821+00', '{"cached":null,"ignore_cache":false}'), +(5035, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:21.836+00', '{"cached":null,"ignore_cache":false}'), +(5036, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:41.859+00', '{"cached":null,"ignore_cache":false}'), +(5037, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.119+00', '{"cached":null,"ignore_cache":false}'), +(5038, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.138+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5039, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.175+00', '{"cached":null,"ignore_cache":false}'), +(5040, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.224+00', '{"cached":null,"ignore_cache":false}'), +(5041, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.225+00', '{"cached":null,"ignore_cache":false}'), +(5042, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.244+00', '{"cached":null,"ignore_cache":false}'), +(5043, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.272+00', '{"cached":null,"ignore_cache":false}'), +(5044, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:42.322+00', '{"cached":null,"ignore_cache":false}'), +(5045, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.171+00', '{"cached":null,"ignore_cache":false}'), +(5046, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.382+00', '{"cached":null,"ignore_cache":false}'), +(5047, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.407+00', '{"cached":null,"ignore_cache":false}'), +(5048, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.481+00', '{"cached":null,"ignore_cache":false}'), +(5049, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.656+00', '{"cached":null,"ignore_cache":false}'), +(5050, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.726+00', '{"cached":null,"ignore_cache":false}'), +(5051, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.751+00', '{"cached":null,"ignore_cache":false}'), +(5052, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.777+00', '{"cached":null,"ignore_cache":false}'), +(5053, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:43.801+00', '{"cached":null,"ignore_cache":false}'), +(5054, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:01.511+00', '{"cached":null,"ignore_cache":null}'), +(5055, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.179+00', '{"cached":null,"ignore_cache":false}'), +(5056, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.219+00', '{"cached":null,"ignore_cache":false}'), +(5057, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.226+00', '{"cached":null,"ignore_cache":false}'), +(5058, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.23+00', '{"cached":null,"ignore_cache":false}'), +(5059, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.278+00', '{"cached":null,"ignore_cache":false}'), +(5060, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.278+00', '{"cached":null,"ignore_cache":false}'), +(5061, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.284+00', '{"cached":null,"ignore_cache":false}'), +(5062, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.315+00', '{"cached":null,"ignore_cache":false}'), +(5063, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:02.39+00', '{"cached":null,"ignore_cache":false}'), +(5064, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.778+00', '{"cached":null,"ignore_cache":false}'), +(5065, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.82+00', '{"cached":null,"ignore_cache":false}'), +(5066, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.829+00', '{"cached":null,"ignore_cache":false}'), +(5067, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.836+00', '{"cached":null,"ignore_cache":false}'), +(5068, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.872+00', '{"cached":null,"ignore_cache":false}'), +(5069, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.874+00', '{"cached":null,"ignore_cache":false}'), +(5070, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.884+00', '{"cached":null,"ignore_cache":false}'), +(5071, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.888+00', '{"cached":null,"ignore_cache":false}'), +(5072, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:12.892+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5073, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.712+00', '{"cached":null,"ignore_cache":false}'), +(5074, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.723+00', '{"cached":null,"ignore_cache":false}'), +(5075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.81+00', '{"cached":null,"ignore_cache":false}'), +(5076, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.858+00', '{"cached":null,"ignore_cache":false}'), +(5077, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.858+00', '{"cached":null,"ignore_cache":false}'), +(5078, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.876+00', '{"cached":null,"ignore_cache":false}'), +(5079, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:13.883+00', '{"cached":null,"ignore_cache":false}'), +(5080, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.102+00', '{"cached":null,"ignore_cache":null}'), +(5081, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.606+00', '{"cached":null,"ignore_cache":false}'), +(5082, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.647+00', '{"cached":null,"ignore_cache":false}'), +(5083, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.658+00', '{"cached":null,"ignore_cache":false}'), +(5084, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.658+00', '{"cached":null,"ignore_cache":false}'), +(5085, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.672+00', '{"cached":null,"ignore_cache":false}'), +(5086, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.678+00', '{"cached":null,"ignore_cache":false}'), +(5087, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:19.694+00', '{"cached":null,"ignore_cache":false}'), +(5088, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:22.996+00', '{"cached":null,"ignore_cache":null}'), +(5089, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:24.357+00', '{"cached":null,"ignore_cache":false}'), +(5090, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.343+00', '{"cached":null,"ignore_cache":null}'), +(5091, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:35.894+00', '{"cached":null,"ignore_cache":false}'), +(5092, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:36.01+00', '{"cached":null,"ignore_cache":false}'), +(5093, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:36.026+00', '{"cached":null,"ignore_cache":false}'), +(5094, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:36.044+00', '{"cached":null,"ignore_cache":false}'), +(5095, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:36.105+00', '{"cached":null,"ignore_cache":false}'), +(5096, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:36.113+00', '{"cached":null,"ignore_cache":false}'), +(5097, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:36.142+00', '{"cached":null,"ignore_cache":false}'), +(5098, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.504+00', '{"cached":null,"ignore_cache":null}'), +(5099, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.568+00', '{"cached":null,"ignore_cache":false}'), +(5100, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.628+00', '{"cached":null,"ignore_cache":false}'), +(5101, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.647+00', '{"cached":null,"ignore_cache":false}'), +(5102, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.657+00', '{"cached":null,"ignore_cache":false}'), +(5103, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.689+00', '{"cached":null,"ignore_cache":false}'), +(5104, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.734+00', '{"cached":null,"ignore_cache":false}'), +(5105, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.743+00', '{"cached":null,"ignore_cache":false}'), +(5106, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.748+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5107, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:40.767+00', '{"cached":null,"ignore_cache":false}'), +(5108, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:41.059+00', '{"cached":null,"ignore_cache":false}'), +(5109, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.549+00', '{"cached":null,"ignore_cache":false}'), +(5110, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.959+00', '{"cached":null,"ignore_cache":false}'), +(5111, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:45.987+00', '{"cached":null,"ignore_cache":false}'), +(5112, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.108+00', '{"cached":null,"ignore_cache":false}'), +(5113, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.223+00', '{"cached":null,"ignore_cache":false}'), +(5114, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.323+00', '{"cached":null,"ignore_cache":false}'), +(5115, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.444+00', '{"cached":null,"ignore_cache":false}'), +(5116, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.469+00', '{"cached":null,"ignore_cache":false}'), +(5117, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.742+00', '{"cached":null,"ignore_cache":false}'), +(5118, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:46.974+00', '{"cached":null,"ignore_cache":false}'), +(5119, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.137+00', '{"cached":null,"ignore_cache":false}'), +(5120, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.138+00', '{"cached":null,"ignore_cache":false}'), +(5121, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.169+00', '{"cached":null,"ignore_cache":false}'), +(5122, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.195+00', '{"cached":null,"ignore_cache":false}'), +(5123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.367+00', '{"cached":null,"ignore_cache":false}'), +(5124, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.58+00', '{"cached":null,"ignore_cache":false}'), +(5125, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.589+00', '{"cached":null,"ignore_cache":false}'), +(5126, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:47.861+00', '{"cached":null,"ignore_cache":false}'), +(5127, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.334+00', '{"cached":null,"ignore_cache":false}'), +(5128, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.374+00', '{"cached":null,"ignore_cache":false}'), +(5129, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.393+00', '{"cached":null,"ignore_cache":false}'), +(5130, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.546+00', '{"cached":null,"ignore_cache":false}'), +(5131, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.547+00', '{"cached":null,"ignore_cache":false}'), +(5132, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.554+00', '{"cached":null,"ignore_cache":false}'), +(5133, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:15.615+00', '{"cached":null,"ignore_cache":false}'), +(5134, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.374+00', '{"cached":null,"ignore_cache":false}'), +(5135, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.402+00', '{"cached":null,"ignore_cache":false}'), +(5136, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.457+00', '{"cached":null,"ignore_cache":false}'), +(5137, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.464+00', '{"cached":null,"ignore_cache":false}'), +(5138, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.522+00', '{"cached":null,"ignore_cache":false}'), +(5139, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.541+00', '{"cached":null,"ignore_cache":false}'), +(5140, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.549+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5141, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.556+00', '{"cached":null,"ignore_cache":false}'), +(5142, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:16.62+00', '{"cached":null,"ignore_cache":false}'), +(5143, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.07+00', '{"cached":null,"ignore_cache":null}'), +(5144, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.312+00', '{"cached":null,"ignore_cache":false}'), +(5145, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.34+00', '{"cached":null,"ignore_cache":false}'), +(5146, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.341+00', '{"cached":null,"ignore_cache":false}'), +(5147, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.391+00', '{"cached":null,"ignore_cache":false}'), +(5148, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.399+00', '{"cached":null,"ignore_cache":false}'), +(5149, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.451+00', '{"cached":null,"ignore_cache":false}'), +(5150, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:45.501+00', '{"cached":null,"ignore_cache":false}'), +(5151, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.567+00', '{"cached":null,"ignore_cache":false}'), +(5152, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.611+00', '{"cached":null,"ignore_cache":false}'), +(5153, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.658+00', '{"cached":null,"ignore_cache":false}'), +(5154, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.659+00', '{"cached":null,"ignore_cache":false}'), +(5155, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.746+00', '{"cached":null,"ignore_cache":false}'), +(5156, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.767+00', '{"cached":null,"ignore_cache":false}'), +(5157, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.773+00', '{"cached":null,"ignore_cache":false}'), +(5158, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.78+00', '{"cached":null,"ignore_cache":false}'), +(5159, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.8+00', '{"cached":null,"ignore_cache":false}'), +(5160, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.816+00', '{"cached":null,"ignore_cache":false}'), +(5161, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.822+00', '{"cached":null,"ignore_cache":false}'), +(5162, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.84+00', '{"cached":null,"ignore_cache":false}'), +(5163, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.854+00', '{"cached":null,"ignore_cache":false}'), +(5164, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.858+00', '{"cached":null,"ignore_cache":false}'), +(5165, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.869+00', '{"cached":null,"ignore_cache":false}'), +(5166, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:46.871+00', '{"cached":null,"ignore_cache":false}'), +(5167, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:06.911+00', '{"cached":null,"ignore_cache":null}'), +(5168, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.928+00', '{"cached":null,"ignore_cache":false}'), +(5169, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.983+00', '{"cached":null,"ignore_cache":false}'), +(5170, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:07.992+00', '{"cached":null,"ignore_cache":false}'), +(5171, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:08.02+00', '{"cached":null,"ignore_cache":false}'), +(5172, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:08.055+00', '{"cached":null,"ignore_cache":false}'), +(5173, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:08.092+00', '{"cached":null,"ignore_cache":false}'), +(5174, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:08.145+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5175, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.307+00', '{"cached":null,"ignore_cache":false}'), +(5176, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.338+00', '{"cached":null,"ignore_cache":false}'), +(5177, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.374+00', '{"cached":null,"ignore_cache":false}'), +(5178, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.419+00', '{"cached":null,"ignore_cache":false}'), +(5179, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.467+00', '{"cached":null,"ignore_cache":false}'), +(5180, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.484+00', '{"cached":null,"ignore_cache":false}'), +(5181, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:15.503+00', '{"cached":null,"ignore_cache":false}'), +(5182, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.663+00', '{"cached":null,"ignore_cache":false}'), +(5183, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.767+00', '{"cached":null,"ignore_cache":false}'), +(5184, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.768+00', '{"cached":null,"ignore_cache":false}'), +(5185, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.809+00', '{"cached":null,"ignore_cache":false}'), +(5186, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.912+00', '{"cached":null,"ignore_cache":false}'), +(5187, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.913+00', '{"cached":null,"ignore_cache":false}'), +(5188, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.915+00', '{"cached":null,"ignore_cache":false}'), +(5189, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.951+00', '{"cached":null,"ignore_cache":false}'), +(5190, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:16.952+00', '{"cached":null,"ignore_cache":false}'), +(5191, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:29.389+00', '{"cached":null,"ignore_cache":null}'), +(5192, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.274+00', '{"cached":null,"ignore_cache":false}'), +(5193, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.291+00', '{"cached":null,"ignore_cache":false}'), +(5194, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.318+00', '{"cached":null,"ignore_cache":false}'), +(5195, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.327+00', '{"cached":null,"ignore_cache":false}'), +(5196, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.364+00', '{"cached":null,"ignore_cache":false}'), +(5197, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.367+00', '{"cached":null,"ignore_cache":false}'), +(5198, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:30.368+00', '{"cached":null,"ignore_cache":false}'), +(5199, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.499+00', '{"cached":null,"ignore_cache":false}'), +(5200, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.518+00', '{"cached":null,"ignore_cache":false}'), +(5201, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.523+00', '{"cached":null,"ignore_cache":false}'), +(5202, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.568+00', '{"cached":null,"ignore_cache":false}'), +(5203, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.591+00', '{"cached":null,"ignore_cache":false}'), +(5204, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.596+00', '{"cached":null,"ignore_cache":false}'), +(5205, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:45.651+00', '{"cached":null,"ignore_cache":false}'), +(5206, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.554+00', '{"cached":null,"ignore_cache":false}'), +(5207, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.566+00', '{"cached":null,"ignore_cache":false}'), +(5208, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.69+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5209, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.799+00', '{"cached":null,"ignore_cache":false}'), +(5210, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.807+00', '{"cached":null,"ignore_cache":false}'), +(5211, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.848+00', '{"cached":null,"ignore_cache":false}'), +(5212, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.893+00', '{"cached":null,"ignore_cache":false}'), +(5213, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.931+00', '{"cached":null,"ignore_cache":false}'), +(5214, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:46.934+00', '{"cached":null,"ignore_cache":false}'), +(5215, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:48.67+00', '{"cached":null,"ignore_cache":null}'), +(5216, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:49.208+00', '{"cached":null,"ignore_cache":false}'), +(5217, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:50.669+00', '{"cached":null,"ignore_cache":null}'), +(5218, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.347+00', '{"cached":null,"ignore_cache":false}'), +(5219, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.408+00', '{"cached":null,"ignore_cache":false}'), +(5220, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.415+00', '{"cached":null,"ignore_cache":false}'), +(5221, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.467+00', '{"cached":null,"ignore_cache":false}'), +(5222, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.493+00', '{"cached":null,"ignore_cache":false}'), +(5223, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.508+00', '{"cached":null,"ignore_cache":false}'), +(5224, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:51.525+00', '{"cached":null,"ignore_cache":false}'), +(5225, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.26+00', '{"cached":null,"ignore_cache":false}'), +(5226, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.274+00', '{"cached":null,"ignore_cache":false}'), +(5227, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.372+00', '{"cached":null,"ignore_cache":false}'), +(5228, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.452+00', '{"cached":null,"ignore_cache":false}'), +(5229, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.459+00', '{"cached":null,"ignore_cache":false}'), +(5230, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.472+00', '{"cached":null,"ignore_cache":false}'), +(5231, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:15.52+00', '{"cached":null,"ignore_cache":false}'), +(5232, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.373+00', '{"cached":null,"ignore_cache":false}'), +(5233, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.595+00', '{"cached":null,"ignore_cache":false}'), +(5234, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.598+00', '{"cached":null,"ignore_cache":false}'), +(5235, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.605+00', '{"cached":null,"ignore_cache":false}'), +(5236, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.624+00', '{"cached":null,"ignore_cache":false}'), +(5237, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.697+00', '{"cached":null,"ignore_cache":false}'), +(5238, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.748+00', '{"cached":null,"ignore_cache":false}'), +(5239, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.771+00', '{"cached":null,"ignore_cache":false}'), +(5240, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:16.795+00', '{"cached":null,"ignore_cache":false}'), +(5241, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:17.67+00', '{"cached":null,"ignore_cache":null}'), +(5242, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:19.09+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5243, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:19.113+00', '{"cached":null,"ignore_cache":false}'), +(5244, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:19.129+00', '{"cached":null,"ignore_cache":false}'), +(5245, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:19.18+00', '{"cached":null,"ignore_cache":false}'), +(5246, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:19.191+00', '{"cached":null,"ignore_cache":false}'), +(5247, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:19.218+00', '{"cached":null,"ignore_cache":false}'), +(5248, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:19.234+00', '{"cached":null,"ignore_cache":false}'), +(5249, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:33.836+00', '{"cached":null,"ignore_cache":false}'), +(5250, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:44.69+00', '{"cached":null,"ignore_cache":null}'), +(5251, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.507+00', '{"cached":null,"ignore_cache":false}'), +(5252, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.662+00', '{"cached":null,"ignore_cache":false}'), +(5253, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.739+00', '{"cached":null,"ignore_cache":false}'), +(5254, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:45.763+00', '{"cached":null,"ignore_cache":false}'), +(5255, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.05+00', '{"cached":null,"ignore_cache":false}'), +(5256, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.204+00', '{"cached":null,"ignore_cache":false}'), +(5257, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.221+00', '{"cached":null,"ignore_cache":false}'), +(5258, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.397+00', '{"cached":null,"ignore_cache":false}'), +(5259, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.411+00', '{"cached":null,"ignore_cache":false}'), +(5260, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.418+00', '{"cached":null,"ignore_cache":false}'), +(5261, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.464+00', '{"cached":null,"ignore_cache":false}'), +(5262, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.506+00', '{"cached":null,"ignore_cache":false}'), +(5263, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.51+00', '{"cached":null,"ignore_cache":false}'), +(5264, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.517+00', '{"cached":null,"ignore_cache":false}'), +(5265, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.891+00', '{"cached":null,"ignore_cache":false}'), +(5266, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:46.93+00', '{"cached":null,"ignore_cache":false}'), +(5267, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:47.042+00', '{"cached":null,"ignore_cache":false}'), +(5268, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:47.078+00', '{"cached":null,"ignore_cache":false}'), +(5269, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:47.15+00', '{"cached":null,"ignore_cache":false}'), +(5270, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:47.157+00', '{"cached":null,"ignore_cache":false}'), +(5271, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:47.181+00', '{"cached":null,"ignore_cache":false}'), +(5272, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:47.2+00', '{"cached":null,"ignore_cache":false}'), +(5273, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:47.224+00', '{"cached":null,"ignore_cache":false}'), +(5274, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.946+00', '{"cached":null,"ignore_cache":false}'), +(5275, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:51.996+00', '{"cached":null,"ignore_cache":false}'), +(5276, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.123+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5277, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.146+00', '{"cached":null,"ignore_cache":false}'), +(5278, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.518+00', '{"cached":null,"ignore_cache":false}'), +(5279, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.705+00', '{"cached":null,"ignore_cache":false}'), +(5280, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.739+00', '{"cached":null,"ignore_cache":false}'), +(5281, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.748+00', '{"cached":null,"ignore_cache":false}'), +(5282, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:52.78+00', '{"cached":null,"ignore_cache":false}'), +(5283, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:56.476+00', '{"cached":null,"ignore_cache":null}'), +(5284, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:56.992+00', '{"cached":null,"ignore_cache":false}'), +(5285, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.571+00', '{"cached":null,"ignore_cache":false}'), +(5286, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.609+00', '{"cached":null,"ignore_cache":false}'), +(5287, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.625+00', '{"cached":null,"ignore_cache":false}'), +(5288, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.637+00', '{"cached":null,"ignore_cache":false}'), +(5289, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.638+00', '{"cached":null,"ignore_cache":false}'), +(5290, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.673+00', '{"cached":null,"ignore_cache":false}'), +(5291, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:15.694+00', '{"cached":null,"ignore_cache":false}'), +(5292, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.823+00', '{"cached":null,"ignore_cache":false}'), +(5293, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.854+00', '{"cached":null,"ignore_cache":false}'), +(5294, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.871+00', '{"cached":null,"ignore_cache":false}'), +(5295, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:16.959+00', '{"cached":null,"ignore_cache":false}'), +(5296, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:17.005+00', '{"cached":null,"ignore_cache":false}'), +(5297, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:17.005+00', '{"cached":null,"ignore_cache":false}'), +(5298, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:17.014+00', '{"cached":null,"ignore_cache":false}'), +(5299, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:17.052+00', '{"cached":null,"ignore_cache":false}'), +(5300, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:17.085+00', '{"cached":null,"ignore_cache":false}'), +(5301, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.892+00', '{"cached":null,"ignore_cache":false}'), +(5302, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.907+00', '{"cached":null,"ignore_cache":false}'), +(5303, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.927+00', '{"cached":null,"ignore_cache":false}'), +(5304, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.942+00', '{"cached":null,"ignore_cache":false}'), +(5305, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.942+00', '{"cached":null,"ignore_cache":false}'), +(5306, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.959+00', '{"cached":null,"ignore_cache":false}'), +(5307, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:21.975+00', '{"cached":null,"ignore_cache":false}'), +(5308, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.422+00', '{"cached":null,"ignore_cache":false}'), +(5309, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.438+00', '{"cached":null,"ignore_cache":false}'), +(5310, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.438+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5311, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.448+00', '{"cached":null,"ignore_cache":false}'), +(5312, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.48+00', '{"cached":null,"ignore_cache":false}'), +(5313, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.48+00', '{"cached":null,"ignore_cache":false}'), +(5314, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:45.502+00', '{"cached":null,"ignore_cache":false}'), +(5315, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.899+00', '{"cached":null,"ignore_cache":false}'), +(5316, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:46.978+00', '{"cached":null,"ignore_cache":false}'), +(5317, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:47.15+00', '{"cached":null,"ignore_cache":false}'), +(5318, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:47.164+00', '{"cached":null,"ignore_cache":false}'), +(5319, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:47.18+00', '{"cached":null,"ignore_cache":false}'), +(5320, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:47.218+00', '{"cached":null,"ignore_cache":false}'), +(5321, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:47.235+00', '{"cached":null,"ignore_cache":false}'), +(5322, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:47.249+00', '{"cached":null,"ignore_cache":false}'), +(5323, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:47.284+00', '{"cached":null,"ignore_cache":false}'), +(5324, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.763+00', '{"cached":null,"ignore_cache":false}'), +(5325, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.788+00', '{"cached":null,"ignore_cache":false}'), +(5326, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.794+00', '{"cached":null,"ignore_cache":false}'), +(5327, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.813+00', '{"cached":null,"ignore_cache":false}'), +(5328, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.816+00', '{"cached":null,"ignore_cache":false}'), +(5329, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.819+00', '{"cached":null,"ignore_cache":false}'), +(5330, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:12:51.822+00', '{"cached":null,"ignore_cache":false}'), +(5331, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.427+00', '{"cached":null,"ignore_cache":false}'), +(5332, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.441+00', '{"cached":null,"ignore_cache":false}'), +(5333, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.456+00', '{"cached":null,"ignore_cache":false}'), +(5334, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.485+00', '{"cached":null,"ignore_cache":false}'), +(5335, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.5+00', '{"cached":null,"ignore_cache":false}'), +(5336, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.503+00', '{"cached":null,"ignore_cache":false}'), +(5337, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:15.514+00', '{"cached":null,"ignore_cache":false}'), +(5338, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.735+00', '{"cached":null,"ignore_cache":false}'), +(5339, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.867+00', '{"cached":null,"ignore_cache":false}'), +(5340, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.878+00', '{"cached":null,"ignore_cache":false}'), +(5341, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.882+00', '{"cached":null,"ignore_cache":false}'), +(5342, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.889+00', '{"cached":null,"ignore_cache":false}'), +(5343, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.907+00', '{"cached":null,"ignore_cache":false}'), +(5344, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.912+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5345, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.958+00', '{"cached":null,"ignore_cache":false}'), +(5346, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:16.959+00', '{"cached":null,"ignore_cache":false}'), +(5347, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.781+00', '{"cached":null,"ignore_cache":false}'), +(5348, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.825+00', '{"cached":null,"ignore_cache":false}'), +(5349, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.829+00', '{"cached":null,"ignore_cache":false}'), +(5350, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.831+00', '{"cached":null,"ignore_cache":false}'), +(5351, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.84+00', '{"cached":null,"ignore_cache":false}'), +(5352, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.856+00', '{"cached":null,"ignore_cache":false}'), +(5353, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:21.864+00', '{"cached":null,"ignore_cache":false}'), +(5354, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.356+00', '{"cached":null,"ignore_cache":false}'), +(5355, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.475+00', '{"cached":null,"ignore_cache":false}'), +(5356, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.581+00', '{"cached":null,"ignore_cache":false}'), +(5357, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.581+00', '{"cached":null,"ignore_cache":false}'), +(5358, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.594+00', '{"cached":null,"ignore_cache":false}'), +(5359, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.637+00', '{"cached":null,"ignore_cache":false}'), +(5360, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:45.668+00', '{"cached":null,"ignore_cache":false}'), +(5361, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.556+00', '{"cached":null,"ignore_cache":false}'), +(5362, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.712+00', '{"cached":null,"ignore_cache":false}'), +(5363, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.815+00', '{"cached":null,"ignore_cache":false}'), +(5364, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.816+00', '{"cached":null,"ignore_cache":false}'), +(5365, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.879+00', '{"cached":null,"ignore_cache":false}'), +(5366, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.897+00', '{"cached":null,"ignore_cache":false}'), +(5367, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.938+00', '{"cached":null,"ignore_cache":false}'), +(5368, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.959+00', '{"cached":null,"ignore_cache":false}'), +(5369, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:46.981+00', '{"cached":null,"ignore_cache":false}'), +(5370, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.71+00', '{"cached":null,"ignore_cache":false}'), +(5371, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.865+00', '{"cached":null,"ignore_cache":false}'), +(5372, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.985+00', '{"cached":null,"ignore_cache":false}'), +(5373, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:51.986+00', '{"cached":null,"ignore_cache":false}'), +(5374, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:52.018+00', '{"cached":null,"ignore_cache":false}'), +(5375, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:52.027+00', '{"cached":null,"ignore_cache":false}'), +(5376, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:13:52.035+00', '{"cached":null,"ignore_cache":false}'), +(5377, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:02.695+00', '{"cached":null,"ignore_cache":null}'), +(5378, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:03.181+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5379, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:08.988+00', '{"cached":null,"ignore_cache":false}'), +(5380, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.232+00', '{"cached":null,"ignore_cache":false}'), +(5381, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.262+00', '{"cached":null,"ignore_cache":false}'), +(5382, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.351+00', '{"cached":null,"ignore_cache":false}'), +(5383, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.467+00', '{"cached":null,"ignore_cache":false}'), +(5384, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.487+00', '{"cached":null,"ignore_cache":false}'), +(5385, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.615+00', '{"cached":null,"ignore_cache":false}'), +(5386, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.626+00', '{"cached":null,"ignore_cache":false}'), +(5387, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:09.663+00', '{"cached":null,"ignore_cache":false}'), +(5388, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:14.912+00', '{"cached":null,"ignore_cache":null}'), +(5389, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.553+00', '{"cached":null,"ignore_cache":false}'), +(5390, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.57+00', '{"cached":null,"ignore_cache":false}'), +(5391, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.587+00', '{"cached":null,"ignore_cache":false}'), +(5392, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.607+00', '{"cached":null,"ignore_cache":false}'), +(5393, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.695+00', '{"cached":null,"ignore_cache":false}'), +(5394, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.715+00', '{"cached":null,"ignore_cache":false}'), +(5395, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.72+00', '{"cached":null,"ignore_cache":false}'), +(5396, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.774+00', '{"cached":null,"ignore_cache":false}'), +(5397, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.794+00', '{"cached":null,"ignore_cache":false}'), +(5398, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.795+00', '{"cached":null,"ignore_cache":false}'), +(5399, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.814+00', '{"cached":null,"ignore_cache":false}'), +(5400, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.821+00', '{"cached":null,"ignore_cache":false}'), +(5401, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.833+00', '{"cached":null,"ignore_cache":false}'), +(5402, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:15.848+00', '{"cached":null,"ignore_cache":false}'), +(5403, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.848+00', '{"cached":null,"ignore_cache":false}'), +(5404, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.855+00', '{"cached":null,"ignore_cache":false}'), +(5405, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.864+00', '{"cached":null,"ignore_cache":false}'), +(5406, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.912+00', '{"cached":null,"ignore_cache":false}'), +(5407, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:16.987+00', '{"cached":null,"ignore_cache":false}'), +(5408, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:17.002+00', '{"cached":null,"ignore_cache":false}'), +(5409, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:17.002+00', '{"cached":null,"ignore_cache":false}'), +(5410, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:17.014+00', '{"cached":null,"ignore_cache":false}'), +(5411, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:17.017+00', '{"cached":null,"ignore_cache":false}'), +(5412, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.798+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5413, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.801+00', '{"cached":null,"ignore_cache":false}'), +(5414, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.812+00', '{"cached":null,"ignore_cache":false}'), +(5415, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.815+00', '{"cached":null,"ignore_cache":false}'), +(5416, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.826+00', '{"cached":null,"ignore_cache":false}'), +(5417, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.832+00', '{"cached":null,"ignore_cache":false}'), +(5418, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:21.837+00', '{"cached":null,"ignore_cache":false}'), +(5419, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:31.222+00', '{"cached":null,"ignore_cache":null}'), +(5420, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:31.871+00', '{"cached":null,"ignore_cache":false}'), +(5421, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.158+00', '{"cached":null,"ignore_cache":false}'), +(5422, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.187+00', '{"cached":null,"ignore_cache":false}'), +(5423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.21+00', '{"cached":null,"ignore_cache":false}'), +(5424, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.218+00', '{"cached":null,"ignore_cache":false}'), +(5425, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.244+00', '{"cached":null,"ignore_cache":false}'), +(5426, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.261+00', '{"cached":null,"ignore_cache":false}'), +(5427, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:39.305+00', '{"cached":null,"ignore_cache":false}'), +(5428, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.417+00', '{"cached":null,"ignore_cache":false}'), +(5429, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.526+00', '{"cached":null,"ignore_cache":false}'), +(5430, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.528+00', '{"cached":null,"ignore_cache":false}'), +(5431, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.54+00', '{"cached":null,"ignore_cache":false}'), +(5432, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.56+00', '{"cached":null,"ignore_cache":false}'), +(5433, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.596+00', '{"cached":null,"ignore_cache":false}'), +(5434, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:45.609+00', '{"cached":null,"ignore_cache":false}'), +(5435, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.672+00', '{"cached":null,"ignore_cache":false}'), +(5436, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.709+00', '{"cached":null,"ignore_cache":false}'), +(5437, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.768+00', '{"cached":null,"ignore_cache":false}'), +(5438, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.825+00', '{"cached":null,"ignore_cache":false}'), +(5439, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.892+00', '{"cached":null,"ignore_cache":false}'), +(5440, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.908+00', '{"cached":null,"ignore_cache":false}'), +(5441, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.92+00', '{"cached":null,"ignore_cache":false}'), +(5442, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.987+00', '{"cached":null,"ignore_cache":false}'), +(5443, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:46.992+00', '{"cached":null,"ignore_cache":false}'), +(5444, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.574+00', '{"cached":null,"ignore_cache":false}'), +(5445, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.581+00', '{"cached":null,"ignore_cache":false}'), +(5446, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.606+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5447, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.639+00', '{"cached":null,"ignore_cache":false}'), +(5448, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.646+00', '{"cached":null,"ignore_cache":false}'), +(5449, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.699+00', '{"cached":null,"ignore_cache":false}'), +(5450, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.789+00', '{"cached":null,"ignore_cache":false}'), +(5451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.829+00', '{"cached":null,"ignore_cache":false}'), +(5452, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:51.836+00', '{"cached":null,"ignore_cache":false}'), +(5453, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.084+00', '{"cached":null,"ignore_cache":false}'), +(5454, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.245+00', '{"cached":null,"ignore_cache":false}'), +(5455, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.321+00', '{"cached":null,"ignore_cache":false}'), +(5456, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.328+00', '{"cached":null,"ignore_cache":false}'), +(5457, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.359+00', '{"cached":null,"ignore_cache":false}'), +(5458, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.376+00', '{"cached":null,"ignore_cache":false}'), +(5459, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:52.43+00', '{"cached":null,"ignore_cache":false}'), +(5460, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.642+00', '{"cached":null,"ignore_cache":false}'), +(5461, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.817+00', '{"cached":null,"ignore_cache":false}'), +(5462, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:14:59.951+00', '{"cached":null,"ignore_cache":false}'), +(5463, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.097+00', '{"cached":null,"ignore_cache":false}'), +(5464, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.153+00', '{"cached":null,"ignore_cache":false}'), +(5465, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.184+00', '{"cached":null,"ignore_cache":false}'), +(5466, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.246+00', '{"cached":null,"ignore_cache":false}'), +(5467, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.246+00', '{"cached":null,"ignore_cache":false}'), +(5468, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:00.351+00', '{"cached":null,"ignore_cache":false}'), +(5469, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.316+00', '{"cached":null,"ignore_cache":false}'), +(5470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.362+00', '{"cached":null,"ignore_cache":false}'), +(5471, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.362+00', '{"cached":null,"ignore_cache":false}'), +(5472, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.363+00', '{"cached":null,"ignore_cache":false}'), +(5473, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.38+00', '{"cached":null,"ignore_cache":false}'), +(5474, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.426+00', '{"cached":null,"ignore_cache":false}'), +(5475, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:15.46+00', '{"cached":null,"ignore_cache":false}'), +(5476, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.514+00', '{"cached":null,"ignore_cache":false}'), +(5477, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.672+00', '{"cached":null,"ignore_cache":false}'), +(5478, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.725+00', '{"cached":null,"ignore_cache":false}'), +(5479, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.735+00', '{"cached":null,"ignore_cache":false}'), +(5480, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.78+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5481, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.836+00', '{"cached":null,"ignore_cache":false}'), +(5482, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.865+00', '{"cached":null,"ignore_cache":false}'), +(5483, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.909+00', '{"cached":null,"ignore_cache":false}'), +(5484, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:16.91+00', '{"cached":null,"ignore_cache":false}'), +(5485, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.727+00', '{"cached":null,"ignore_cache":false}'), +(5486, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.769+00', '{"cached":null,"ignore_cache":false}'), +(5487, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.771+00', '{"cached":null,"ignore_cache":false}'), +(5488, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.782+00', '{"cached":null,"ignore_cache":false}'), +(5489, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.783+00', '{"cached":null,"ignore_cache":false}'), +(5490, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.798+00', '{"cached":null,"ignore_cache":false}'), +(5491, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:21.804+00', '{"cached":null,"ignore_cache":false}'), +(5492, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.799+00', '{"cached":null,"ignore_cache":false}'), +(5493, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.863+00', '{"cached":null,"ignore_cache":false}'), +(5494, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.934+00', '{"cached":null,"ignore_cache":false}'), +(5495, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:38.938+00', '{"cached":null,"ignore_cache":false}'), +(5496, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:39.121+00', '{"cached":null,"ignore_cache":false}'), +(5497, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:39.146+00', '{"cached":null,"ignore_cache":false}'), +(5498, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:39.198+00', '{"cached":null,"ignore_cache":false}'), +(5499, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:39.208+00', '{"cached":null,"ignore_cache":false}'), +(5500, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:39.216+00', '{"cached":null,"ignore_cache":false}'), +(5501, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.487+00', '{"cached":null,"ignore_cache":false}'), +(5502, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.572+00', '{"cached":null,"ignore_cache":false}'), +(5503, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.721+00', '{"cached":null,"ignore_cache":false}'), +(5504, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.786+00', '{"cached":null,"ignore_cache":false}'), +(5505, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.806+00', '{"cached":null,"ignore_cache":false}'), +(5506, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.815+00', '{"cached":null,"ignore_cache":false}'), +(5507, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:45.836+00', '{"cached":null,"ignore_cache":false}'), +(5508, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.468+00', '{"cached":null,"ignore_cache":false}'), +(5509, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.562+00', '{"cached":null,"ignore_cache":false}'), +(5510, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.61+00', '{"cached":null,"ignore_cache":false}'), +(5511, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.657+00', '{"cached":null,"ignore_cache":false}'), +(5512, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.668+00', '{"cached":null,"ignore_cache":false}'), +(5513, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.732+00', '{"cached":null,"ignore_cache":false}'), +(5514, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.785+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5515, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.81+00', '{"cached":null,"ignore_cache":false}'), +(5516, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:46.822+00', '{"cached":null,"ignore_cache":false}'), +(5517, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.79+00', '{"cached":null,"ignore_cache":false}'), +(5518, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.842+00', '{"cached":null,"ignore_cache":false}'), +(5519, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.846+00', '{"cached":null,"ignore_cache":false}'), +(5520, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.881+00', '{"cached":null,"ignore_cache":false}'), +(5521, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.889+00', '{"cached":null,"ignore_cache":false}'), +(5522, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.89+00', '{"cached":null,"ignore_cache":false}'), +(5523, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:15:51.897+00', '{"cached":null,"ignore_cache":false}'), +(5524, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.412+00', '{"cached":null,"ignore_cache":false}'), +(5525, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.569+00', '{"cached":null,"ignore_cache":false}'), +(5526, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.615+00', '{"cached":null,"ignore_cache":false}'), +(5527, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.685+00', '{"cached":null,"ignore_cache":false}'), +(5528, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.793+00', '{"cached":null,"ignore_cache":false}'), +(5529, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.8+00', '{"cached":null,"ignore_cache":false}'), +(5530, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.805+00', '{"cached":null,"ignore_cache":false}'), +(5531, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.812+00', '{"cached":null,"ignore_cache":false}'), +(5532, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:11.835+00', '{"cached":null,"ignore_cache":false}'), +(5533, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.404+00', '{"cached":null,"ignore_cache":false}'), +(5534, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.459+00', '{"cached":null,"ignore_cache":false}'), +(5535, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.472+00', '{"cached":null,"ignore_cache":false}'), +(5536, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.48+00', '{"cached":null,"ignore_cache":false}'), +(5537, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.494+00', '{"cached":null,"ignore_cache":false}'), +(5538, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.507+00', '{"cached":null,"ignore_cache":false}'), +(5539, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:15.514+00', '{"cached":null,"ignore_cache":false}'), +(5540, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.6+00', '{"cached":null,"ignore_cache":false}'), +(5541, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.671+00', '{"cached":null,"ignore_cache":false}'), +(5542, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.693+00', '{"cached":null,"ignore_cache":false}'), +(5543, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.715+00', '{"cached":null,"ignore_cache":false}'), +(5544, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.794+00', '{"cached":null,"ignore_cache":false}'), +(5545, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.799+00', '{"cached":null,"ignore_cache":false}'), +(5546, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.803+00', '{"cached":null,"ignore_cache":false}'), +(5547, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.813+00', '{"cached":null,"ignore_cache":false}'), +(5548, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:16.83+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5549, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.746+00', '{"cached":null,"ignore_cache":false}'), +(5550, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.764+00', '{"cached":null,"ignore_cache":false}'), +(5551, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.798+00', '{"cached":null,"ignore_cache":false}'), +(5552, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.8+00', '{"cached":null,"ignore_cache":false}'), +(5553, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.82+00', '{"cached":null,"ignore_cache":false}'), +(5554, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.826+00', '{"cached":null,"ignore_cache":false}'), +(5555, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:21.86+00', '{"cached":null,"ignore_cache":false}'), +(5556, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:24.069+00', '{"cached":null,"ignore_cache":false}'), +(5557, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.505+00', '{"cached":null,"ignore_cache":false}'), +(5558, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.569+00', '{"cached":null,"ignore_cache":false}'), +(5559, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.614+00', '{"cached":null,"ignore_cache":false}'), +(5560, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.805+00', '{"cached":null,"ignore_cache":false}'), +(5561, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:28.82+00', '{"cached":null,"ignore_cache":false}'), +(5562, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:29.321+00', '{"cached":null,"ignore_cache":false}'), +(5563, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:29.378+00', '{"cached":null,"ignore_cache":false}'), +(5564, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:29.705+00', '{"cached":null,"ignore_cache":false}'), +(5565, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:29.751+00', '{"cached":null,"ignore_cache":false}'), +(5566, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:29.777+00', '{"cached":null,"ignore_cache":false}'), +(5567, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:29.8+00', '{"cached":null,"ignore_cache":false}'), +(5568, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:29.824+00', '{"cached":null,"ignore_cache":false}'), +(5569, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.856+00', '{"cached":null,"ignore_cache":false}'), +(5570, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.884+00', '{"cached":null,"ignore_cache":false}'), +(5571, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.893+00', '{"cached":null,"ignore_cache":false}'), +(5572, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.903+00', '{"cached":null,"ignore_cache":false}'), +(5573, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.91+00', '{"cached":null,"ignore_cache":false}'), +(5574, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.921+00', '{"cached":null,"ignore_cache":false}'), +(5575, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:16:51.922+00', '{"cached":null,"ignore_cache":false}'), +(5576, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.871+00', '{"cached":null,"ignore_cache":false}'), +(5577, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:21.974+00', '{"cached":null,"ignore_cache":false}'), +(5578, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:22+00', '{"cached":null,"ignore_cache":false}'), +(5579, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:22.011+00', '{"cached":null,"ignore_cache":false}'), +(5580, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:22.018+00', '{"cached":null,"ignore_cache":false}'), +(5581, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:22.069+00', '{"cached":null,"ignore_cache":false}'), +(5582, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:22.075+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5583, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.159+00', '{"cached":null,"ignore_cache":false}'), +(5584, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.257+00', '{"cached":null,"ignore_cache":false}'), +(5585, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.289+00', '{"cached":null,"ignore_cache":false}'), +(5586, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.428+00', '{"cached":null,"ignore_cache":false}'), +(5587, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.444+00', '{"cached":null,"ignore_cache":false}'), +(5588, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.491+00', '{"cached":null,"ignore_cache":false}'), +(5589, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.538+00', '{"cached":null,"ignore_cache":false}'), +(5590, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.55+00', '{"cached":null,"ignore_cache":false}'), +(5591, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.604+00', '{"cached":null,"ignore_cache":false}'), +(5592, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:26.662+00', '{"cached":null,"ignore_cache":null}'), +(5593, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.342+00', '{"cached":null,"ignore_cache":false}'), +(5594, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.413+00', '{"cached":null,"ignore_cache":false}'), +(5595, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.498+00', '{"cached":null,"ignore_cache":false}'), +(5596, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.541+00', '{"cached":null,"ignore_cache":false}'), +(5597, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.558+00', '{"cached":null,"ignore_cache":false}'), +(5598, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.602+00', '{"cached":null,"ignore_cache":false}'), +(5599, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:27.647+00', '{"cached":null,"ignore_cache":false}'), +(5600, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.891+00', '{"cached":null,"ignore_cache":false}'), +(5601, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.939+00', '{"cached":null,"ignore_cache":false}'), +(5602, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.954+00', '{"cached":null,"ignore_cache":false}'), +(5603, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.974+00', '{"cached":null,"ignore_cache":false}'), +(5604, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:51.994+00', '{"cached":null,"ignore_cache":false}'), +(5605, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:52+00', '{"cached":null,"ignore_cache":false}'), +(5606, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:17:52.005+00', '{"cached":null,"ignore_cache":false}'), +(5607, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.151+00', '{"cached":null,"ignore_cache":false}'), +(5608, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.249+00', '{"cached":null,"ignore_cache":false}'), +(5609, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.253+00', '{"cached":null,"ignore_cache":false}'), +(5610, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.272+00', '{"cached":null,"ignore_cache":false}'), +(5611, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.298+00', '{"cached":null,"ignore_cache":false}'), +(5612, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.305+00', '{"cached":null,"ignore_cache":false}'), +(5613, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.32+00', '{"cached":null,"ignore_cache":false}'), +(5614, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.369+00', '{"cached":null,"ignore_cache":null}'), +(5615, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:04.859+00', '{"cached":null,"ignore_cache":false}'), +(5616, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.205+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5617, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.232+00', '{"cached":null,"ignore_cache":false}'), +(5618, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.243+00', '{"cached":null,"ignore_cache":false}'), +(5619, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.256+00', '{"cached":null,"ignore_cache":false}'), +(5620, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.274+00', '{"cached":null,"ignore_cache":false}'), +(5621, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.285+00', '{"cached":null,"ignore_cache":false}'), +(5622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:10.288+00', '{"cached":null,"ignore_cache":false}'), +(5623, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.061+00', '{"cached":null,"ignore_cache":false}'), +(5624, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.072+00', '{"cached":null,"ignore_cache":false}'), +(5625, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.126+00', '{"cached":null,"ignore_cache":false}'), +(5626, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.139+00', '{"cached":null,"ignore_cache":false}'), +(5627, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.206+00', '{"cached":null,"ignore_cache":false}'), +(5628, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.236+00', '{"cached":null,"ignore_cache":false}'), +(5629, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.247+00', '{"cached":null,"ignore_cache":false}'), +(5630, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.248+00', '{"cached":null,"ignore_cache":false}'), +(5631, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:11.354+00', '{"cached":null,"ignore_cache":false}'), +(5632, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.619+00', '{"cached":null,"ignore_cache":false}'), +(5633, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.635+00', '{"cached":null,"ignore_cache":false}'), +(5634, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.66+00', '{"cached":null,"ignore_cache":false}'), +(5635, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.665+00', '{"cached":null,"ignore_cache":false}'), +(5636, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.694+00', '{"cached":null,"ignore_cache":false}'), +(5637, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.695+00', '{"cached":null,"ignore_cache":false}'), +(5638, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:27.706+00', '{"cached":null,"ignore_cache":false}'), +(5639, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:31.659+00', '{"cached":null,"ignore_cache":null}'), +(5640, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:32.31+00', '{"cached":null,"ignore_cache":false}'), +(5641, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.472+00', '{"cached":null,"ignore_cache":false}'), +(5642, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.593+00', '{"cached":null,"ignore_cache":false}'), +(5643, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.647+00', '{"cached":null,"ignore_cache":false}'), +(5644, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.686+00', '{"cached":null,"ignore_cache":false}'), +(5645, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.703+00', '{"cached":null,"ignore_cache":false}'), +(5646, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.746+00', '{"cached":null,"ignore_cache":false}'), +(5647, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.762+00', '{"cached":null,"ignore_cache":false}'), +(5648, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.79+00', '{"cached":null,"ignore_cache":false}'), +(5649, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.795+00', '{"cached":null,"ignore_cache":false}'), +(5650, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.816+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5651, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.836+00', '{"cached":null,"ignore_cache":false}'), +(5652, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.85+00', '{"cached":null,"ignore_cache":false}'), +(5653, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.851+00', '{"cached":null,"ignore_cache":false}'), +(5654, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:40.86+00', '{"cached":null,"ignore_cache":false}'), +(5655, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.255+00', '{"cached":null,"ignore_cache":false}'), +(5656, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.263+00', '{"cached":null,"ignore_cache":false}'), +(5657, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.317+00', '{"cached":null,"ignore_cache":false}'), +(5658, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.343+00', '{"cached":null,"ignore_cache":false}'), +(5659, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.356+00', '{"cached":null,"ignore_cache":false}'), +(5660, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.368+00', '{"cached":null,"ignore_cache":false}'), +(5661, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.383+00', '{"cached":null,"ignore_cache":false}'), +(5662, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.388+00', '{"cached":null,"ignore_cache":false}'), +(5663, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:41.392+00', '{"cached":null,"ignore_cache":false}'), +(5664, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:50.787+00', '{"cached":null,"ignore_cache":null}'), +(5665, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.26+00', '{"cached":null,"ignore_cache":false}'), +(5666, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.317+00', '{"cached":null,"ignore_cache":false}'), +(5667, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.335+00', '{"cached":null,"ignore_cache":false}'), +(5668, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.382+00', '{"cached":null,"ignore_cache":false}'), +(5669, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.394+00', '{"cached":null,"ignore_cache":false}'), +(5670, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.412+00', '{"cached":null,"ignore_cache":false}'), +(5671, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:18:51.477+00', '{"cached":null,"ignore_cache":false}'), +(5672, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.742+00', '{"cached":null,"ignore_cache":false}'), +(5673, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.774+00', '{"cached":null,"ignore_cache":false}'), +(5674, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.809+00', '{"cached":null,"ignore_cache":false}'), +(5675, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.822+00', '{"cached":null,"ignore_cache":false}'), +(5676, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.849+00', '{"cached":null,"ignore_cache":false}'), +(5677, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.867+00', '{"cached":null,"ignore_cache":false}'), +(5678, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:05.887+00', '{"cached":null,"ignore_cache":false}'), +(5679, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:06.69+00', '{"cached":null,"ignore_cache":null}'), +(5680, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:07.192+00', '{"cached":null,"ignore_cache":false}'), +(5681, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.219+00', '{"cached":null,"ignore_cache":false}'), +(5682, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.227+00', '{"cached":null,"ignore_cache":false}'), +(5683, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.256+00', '{"cached":null,"ignore_cache":false}'), +(5684, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.288+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5685, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.314+00', '{"cached":null,"ignore_cache":false}'), +(5686, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.335+00', '{"cached":null,"ignore_cache":false}'), +(5687, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:10.353+00', '{"cached":null,"ignore_cache":false}'), +(5688, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.674+00', '{"cached":null,"ignore_cache":false}'), +(5689, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.686+00', '{"cached":null,"ignore_cache":false}'), +(5690, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.701+00', '{"cached":null,"ignore_cache":false}'), +(5691, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.773+00', '{"cached":null,"ignore_cache":false}'), +(5692, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.847+00', '{"cached":null,"ignore_cache":false}'), +(5693, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.957+00', '{"cached":null,"ignore_cache":false}'), +(5694, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.962+00', '{"cached":null,"ignore_cache":false}'), +(5695, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.971+00', '{"cached":null,"ignore_cache":false}'), +(5696, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:11.986+00', '{"cached":null,"ignore_cache":false}'), +(5697, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.22+00', '{"cached":null,"ignore_cache":false}'), +(5698, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.281+00', '{"cached":null,"ignore_cache":false}'), +(5699, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.302+00', '{"cached":null,"ignore_cache":false}'), +(5700, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.303+00', '{"cached":null,"ignore_cache":false}'), +(5701, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.315+00', '{"cached":null,"ignore_cache":false}'), +(5702, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.372+00', '{"cached":null,"ignore_cache":false}'), +(5703, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:23.395+00', '{"cached":null,"ignore_cache":false}'), +(5704, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.228+00', '{"cached":null,"ignore_cache":false}'), +(5705, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.264+00', '{"cached":null,"ignore_cache":false}'), +(5706, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.301+00', '{"cached":null,"ignore_cache":false}'), +(5707, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.339+00', '{"cached":null,"ignore_cache":false}'), +(5708, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.356+00', '{"cached":null,"ignore_cache":false}'), +(5709, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.36+00', '{"cached":null,"ignore_cache":false}'), +(5710, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.367+00', '{"cached":null,"ignore_cache":false}'), +(5711, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.694+00', '{"cached":null,"ignore_cache":false}'), +(5712, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.747+00', '{"cached":null,"ignore_cache":false}'), +(5713, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.751+00', '{"cached":null,"ignore_cache":false}'), +(5714, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.782+00', '{"cached":null,"ignore_cache":false}'), +(5715, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.785+00', '{"cached":null,"ignore_cache":false}'), +(5716, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.837+00', '{"cached":null,"ignore_cache":false}'), +(5717, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:40.85+00', '{"cached":null,"ignore_cache":false}'), +(5718, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.381+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5719, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.41+00', '{"cached":null,"ignore_cache":false}'), +(5720, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.457+00', '{"cached":null,"ignore_cache":false}'), +(5721, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.478+00', '{"cached":null,"ignore_cache":false}'), +(5722, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.566+00', '{"cached":null,"ignore_cache":false}'), +(5723, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.604+00', '{"cached":null,"ignore_cache":false}'), +(5724, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.643+00', '{"cached":null,"ignore_cache":false}'), +(5725, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.658+00', '{"cached":null,"ignore_cache":false}'), +(5726, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.685+00', '{"cached":null,"ignore_cache":false}'), +(5727, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:41.961+00', '{"cached":null,"ignore_cache":null}'), +(5728, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.589+00', '{"cached":null,"ignore_cache":false}'), +(5729, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.621+00', '{"cached":null,"ignore_cache":false}'), +(5730, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.717+00', '{"cached":null,"ignore_cache":false}'), +(5731, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.724+00', '{"cached":null,"ignore_cache":false}'), +(5732, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.748+00', '{"cached":null,"ignore_cache":false}'), +(5733, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.762+00', '{"cached":null,"ignore_cache":false}'), +(5734, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:19:42.771+00', '{"cached":null,"ignore_cache":false}'), +(5735, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.221+00', '{"cached":null,"ignore_cache":false}'), +(5736, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.226+00', '{"cached":null,"ignore_cache":false}'), +(5737, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.375+00', '{"cached":null,"ignore_cache":false}'), +(5738, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.387+00', '{"cached":null,"ignore_cache":false}'), +(5739, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.392+00', '{"cached":null,"ignore_cache":false}'), +(5740, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.41+00', '{"cached":null,"ignore_cache":false}'), +(5741, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:01.431+00', '{"cached":null,"ignore_cache":false}'), +(5742, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.188+00', '{"cached":null,"ignore_cache":false}'), +(5743, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.292+00', '{"cached":null,"ignore_cache":false}'), +(5744, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.346+00', '{"cached":null,"ignore_cache":false}'), +(5745, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.348+00', '{"cached":null,"ignore_cache":false}'), +(5746, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.384+00', '{"cached":null,"ignore_cache":false}'), +(5747, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.394+00', '{"cached":null,"ignore_cache":false}'), +(5748, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:10.407+00', '{"cached":null,"ignore_cache":false}'), +(5749, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.629+00', '{"cached":null,"ignore_cache":false}'), +(5750, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.754+00', '{"cached":null,"ignore_cache":false}'), +(5751, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.811+00', '{"cached":null,"ignore_cache":false}'), +(5752, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.817+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5753, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.839+00', '{"cached":null,"ignore_cache":false}'), +(5754, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.864+00', '{"cached":null,"ignore_cache":false}'), +(5755, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.882+00', '{"cached":null,"ignore_cache":false}'), +(5756, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.9+00', '{"cached":null,"ignore_cache":false}'), +(5757, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:11.907+00', '{"cached":null,"ignore_cache":false}'), +(5758, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.808+00', '{"cached":null,"ignore_cache":false}'), +(5759, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.86+00', '{"cached":null,"ignore_cache":false}'), +(5760, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.861+00', '{"cached":null,"ignore_cache":false}'), +(5761, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.863+00', '{"cached":null,"ignore_cache":false}'), +(5762, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.863+00', '{"cached":null,"ignore_cache":false}'), +(5763, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.877+00', '{"cached":null,"ignore_cache":false}'), +(5764, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:18.901+00', '{"cached":null,"ignore_cache":false}'), +(5765, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.031+00', '{"cached":null,"ignore_cache":false}'), +(5766, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.045+00', '{"cached":null,"ignore_cache":false}'), +(5767, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.086+00', '{"cached":null,"ignore_cache":false}'), +(5768, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.122+00', '{"cached":null,"ignore_cache":false}'), +(5769, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.13+00', '{"cached":null,"ignore_cache":false}'), +(5770, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.136+00', '{"cached":null,"ignore_cache":false}'), +(5771, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:36.143+00', '{"cached":null,"ignore_cache":false}'), +(5772, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.408+00', '{"cached":null,"ignore_cache":false}'), +(5773, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.654+00', '{"cached":null,"ignore_cache":false}'), +(5774, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.73+00', '{"cached":null,"ignore_cache":false}'), +(5775, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.738+00', '{"cached":null,"ignore_cache":false}'), +(5776, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.869+00', '{"cached":null,"ignore_cache":false}'), +(5777, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.878+00', '{"cached":null,"ignore_cache":false}'), +(5778, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.898+00', '{"cached":null,"ignore_cache":false}'), +(5779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.931+00', '{"cached":null,"ignore_cache":false}'), +(5780, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.939+00', '{"cached":null,"ignore_cache":false}'), +(5781, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.959+00', '{"cached":null,"ignore_cache":false}'), +(5782, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:43.984+00', '{"cached":null,"ignore_cache":false}'), +(5783, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:44.018+00', '{"cached":null,"ignore_cache":false}'), +(5784, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:44.035+00', '{"cached":null,"ignore_cache":false}'), +(5785, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:44.041+00', '{"cached":null,"ignore_cache":false}'), +(5786, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:44.053+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5787, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:44.069+00', '{"cached":null,"ignore_cache":false}'), +(5788, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.787+00', '{"cached":null,"ignore_cache":false}'), +(5789, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.856+00', '{"cached":null,"ignore_cache":false}'), +(5790, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.91+00', '{"cached":null,"ignore_cache":false}'), +(5791, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.912+00', '{"cached":null,"ignore_cache":false}'), +(5792, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.942+00', '{"cached":null,"ignore_cache":false}'), +(5793, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.966+00', '{"cached":null,"ignore_cache":false}'), +(5794, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:20:53.986+00', '{"cached":null,"ignore_cache":false}'), +(5795, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.249+00', '{"cached":null,"ignore_cache":false}'), +(5796, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.319+00', '{"cached":null,"ignore_cache":false}'), +(5797, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.34+00', '{"cached":null,"ignore_cache":false}'), +(5798, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.356+00', '{"cached":null,"ignore_cache":false}'), +(5799, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.357+00', '{"cached":null,"ignore_cache":false}'), +(5800, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.359+00', '{"cached":null,"ignore_cache":false}'), +(5801, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:10.387+00', '{"cached":null,"ignore_cache":false}'), +(5802, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.594+00', '{"cached":null,"ignore_cache":false}'), +(5803, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.72+00', '{"cached":null,"ignore_cache":false}'), +(5804, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.87+00', '{"cached":null,"ignore_cache":false}'), +(5805, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.877+00', '{"cached":null,"ignore_cache":false}'), +(5806, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.902+00', '{"cached":null,"ignore_cache":false}'), +(5807, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.91+00', '{"cached":null,"ignore_cache":false}'), +(5808, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.934+00', '{"cached":null,"ignore_cache":false}'), +(5809, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:11.998+00', '{"cached":null,"ignore_cache":false}'), +(5810, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:12.104+00', '{"cached":null,"ignore_cache":false}'), +(5811, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:18.981+00', '{"cached":null,"ignore_cache":false}'), +(5812, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:19.083+00', '{"cached":null,"ignore_cache":false}'), +(5813, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:19.085+00', '{"cached":null,"ignore_cache":false}'), +(5814, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:19.131+00', '{"cached":null,"ignore_cache":false}'), +(5815, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:19.138+00', '{"cached":null,"ignore_cache":false}'), +(5816, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:19.15+00', '{"cached":null,"ignore_cache":false}'), +(5817, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:19.164+00', '{"cached":null,"ignore_cache":false}'), +(5818, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.597+00', '{"cached":null,"ignore_cache":false}'), +(5819, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.617+00', '{"cached":null,"ignore_cache":false}'), +(5820, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.668+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5821, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.681+00', '{"cached":null,"ignore_cache":false}'), +(5822, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.681+00', '{"cached":null,"ignore_cache":false}'), +(5823, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.682+00', '{"cached":null,"ignore_cache":false}'), +(5824, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:26.693+00', '{"cached":null,"ignore_cache":false}'), +(5825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.236+00', '{"cached":null,"ignore_cache":false}'), +(5826, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.239+00', '{"cached":null,"ignore_cache":false}'), +(5827, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.247+00', '{"cached":null,"ignore_cache":false}'), +(5828, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.288+00', '{"cached":null,"ignore_cache":false}'), +(5829, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.293+00', '{"cached":null,"ignore_cache":false}'), +(5830, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.296+00', '{"cached":null,"ignore_cache":false}'), +(5831, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:40.299+00', '{"cached":null,"ignore_cache":false}'), +(5832, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.215+00', '{"cached":null,"ignore_cache":false}'), +(5833, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.3+00', '{"cached":null,"ignore_cache":false}'), +(5834, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.338+00', '{"cached":null,"ignore_cache":false}'), +(5835, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.344+00', '{"cached":null,"ignore_cache":false}'), +(5836, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.38+00', '{"cached":null,"ignore_cache":false}'), +(5837, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.394+00', '{"cached":null,"ignore_cache":false}'), +(5838, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.394+00', '{"cached":null,"ignore_cache":false}'), +(5839, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.396+00', '{"cached":null,"ignore_cache":false}'), +(5840, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:41.45+00', '{"cached":null,"ignore_cache":false}'), +(5841, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.251+00', '{"cached":null,"ignore_cache":false}'), +(5842, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.298+00', '{"cached":null,"ignore_cache":false}'), +(5843, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.337+00', '{"cached":null,"ignore_cache":false}'), +(5844, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.34+00', '{"cached":null,"ignore_cache":false}'), +(5845, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.382+00', '{"cached":null,"ignore_cache":false}'), +(5846, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.395+00', '{"cached":null,"ignore_cache":false}'), +(5847, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.414+00', '{"cached":null,"ignore_cache":false}'), +(5848, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.745+00', '{"cached":null,"ignore_cache":false}'), +(5849, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.748+00', '{"cached":null,"ignore_cache":false}'), +(5850, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.787+00', '{"cached":null,"ignore_cache":false}'), +(5851, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.795+00', '{"cached":null,"ignore_cache":false}'), +(5852, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.815+00', '{"cached":null,"ignore_cache":false}'), +(5853, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.821+00', '{"cached":null,"ignore_cache":false}'), +(5854, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:21:57.848+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5855, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.38+00', '{"cached":null,"ignore_cache":false}'), +(5856, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.476+00', '{"cached":null,"ignore_cache":false}'), +(5857, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.485+00', '{"cached":null,"ignore_cache":false}'), +(5858, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.507+00', '{"cached":null,"ignore_cache":false}'), +(5859, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.677+00', '{"cached":null,"ignore_cache":false}'), +(5860, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.712+00', '{"cached":null,"ignore_cache":false}'), +(5861, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:10.742+00', '{"cached":null,"ignore_cache":false}'), +(5862, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.813+00', '{"cached":null,"ignore_cache":false}'), +(5863, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.841+00', '{"cached":null,"ignore_cache":false}'), +(5864, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:11.935+00', '{"cached":null,"ignore_cache":false}'), +(5865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:12.147+00', '{"cached":null,"ignore_cache":false}'), +(5866, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:12.185+00', '{"cached":null,"ignore_cache":false}'), +(5867, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:12.212+00', '{"cached":null,"ignore_cache":false}'), +(5868, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:12.226+00', '{"cached":null,"ignore_cache":false}'), +(5869, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:12.256+00', '{"cached":null,"ignore_cache":false}'), +(5870, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:12.27+00', '{"cached":null,"ignore_cache":false}'), +(5871, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.033+00', '{"cached":null,"ignore_cache":false}'), +(5872, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.081+00', '{"cached":null,"ignore_cache":false}'), +(5873, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.138+00', '{"cached":null,"ignore_cache":false}'), +(5874, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.164+00', '{"cached":null,"ignore_cache":false}'), +(5875, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.2+00', '{"cached":null,"ignore_cache":false}'), +(5876, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.239+00', '{"cached":null,"ignore_cache":false}'), +(5877, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:34.312+00', '{"cached":null,"ignore_cache":false}'), +(5878, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.215+00', '{"cached":null,"ignore_cache":false}'), +(5879, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.24+00', '{"cached":null,"ignore_cache":false}'), +(5880, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.278+00', '{"cached":null,"ignore_cache":false}'), +(5881, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.315+00', '{"cached":null,"ignore_cache":false}'), +(5882, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.365+00', '{"cached":null,"ignore_cache":false}'), +(5883, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.372+00', '{"cached":null,"ignore_cache":false}'), +(5884, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:40.399+00', '{"cached":null,"ignore_cache":false}'), +(5885, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.158+00', '{"cached":null,"ignore_cache":false}'), +(5886, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.201+00', '{"cached":null,"ignore_cache":false}'), +(5887, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.227+00', '{"cached":null,"ignore_cache":false}'), +(5888, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.263+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5889, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.279+00', '{"cached":null,"ignore_cache":false}'), +(5890, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.286+00', '{"cached":null,"ignore_cache":false}'), +(5891, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.333+00', '{"cached":null,"ignore_cache":false}'), +(5892, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.347+00', '{"cached":null,"ignore_cache":false}'), +(5893, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:41.353+00', '{"cached":null,"ignore_cache":false}'), +(5894, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.268+00', '{"cached":null,"ignore_cache":false}'), +(5895, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.432+00', '{"cached":null,"ignore_cache":false}'), +(5896, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.46+00', '{"cached":null,"ignore_cache":false}'), +(5897, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.462+00', '{"cached":null,"ignore_cache":false}'), +(5898, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.476+00', '{"cached":null,"ignore_cache":false}'), +(5899, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.476+00', '{"cached":null,"ignore_cache":false}'), +(5900, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:22:42.518+00', '{"cached":null,"ignore_cache":false}'), +(5901, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.348+00', '{"cached":null,"ignore_cache":false}'), +(5902, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.367+00', '{"cached":null,"ignore_cache":false}'), +(5903, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.478+00', '{"cached":null,"ignore_cache":false}'), +(5904, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.484+00', '{"cached":null,"ignore_cache":false}'), +(5905, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.498+00', '{"cached":null,"ignore_cache":false}'), +(5906, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.505+00', '{"cached":null,"ignore_cache":false}'), +(5907, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:10.512+00', '{"cached":null,"ignore_cache":false}'), +(5908, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.321+00', '{"cached":null,"ignore_cache":false}'), +(5909, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.484+00', '{"cached":null,"ignore_cache":false}'), +(5910, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.489+00', '{"cached":null,"ignore_cache":false}'), +(5911, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.55+00', '{"cached":null,"ignore_cache":false}'), +(5912, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.588+00', '{"cached":null,"ignore_cache":false}'), +(5913, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.645+00', '{"cached":null,"ignore_cache":false}'), +(5914, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.691+00', '{"cached":null,"ignore_cache":false}'), +(5915, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.751+00', '{"cached":null,"ignore_cache":false}'), +(5916, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:23:11.756+00', '{"cached":null,"ignore_cache":false}'), +(5917, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:15.973+00', '{"cached":null,"ignore_cache":false}'), +(5918, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.075+00', '{"cached":null,"ignore_cache":false}'), +(5919, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.131+00', '{"cached":null,"ignore_cache":false}'), +(5920, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.153+00', '{"cached":null,"ignore_cache":false}'), +(5921, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.176+00', '{"cached":null,"ignore_cache":false}'), +(5922, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.181+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5923, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.183+00', '{"cached":null,"ignore_cache":false}'), +(5924, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.714+00', '{"cached":null,"ignore_cache":false}'), +(5925, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.75+00', '{"cached":null,"ignore_cache":false}'), +(5926, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.845+00', '{"cached":null,"ignore_cache":false}'), +(5927, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.878+00', '{"cached":null,"ignore_cache":false}'), +(5928, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.899+00', '{"cached":null,"ignore_cache":false}'), +(5929, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.902+00', '{"cached":null,"ignore_cache":false}'), +(5930, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:24:16.946+00', '{"cached":null,"ignore_cache":false}'), +(5931, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.646+00', '{"cached":null,"ignore_cache":false}'), +(5932, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.682+00', '{"cached":null,"ignore_cache":false}'), +(5933, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.698+00', '{"cached":null,"ignore_cache":false}'), +(5934, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.726+00', '{"cached":null,"ignore_cache":false}'), +(5935, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.738+00', '{"cached":null,"ignore_cache":false}'), +(5936, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.766+00', '{"cached":null,"ignore_cache":false}'), +(5937, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:29:34.788+00', '{"cached":null,"ignore_cache":false}'), +(5938, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.806+00', '{"cached":null,"ignore_cache":false}'), +(5939, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.949+00', '{"cached":null,"ignore_cache":false}'), +(5940, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.952+00', '{"cached":null,"ignore_cache":false}'), +(5941, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:03.986+00', '{"cached":null,"ignore_cache":false}'), +(5942, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:04.009+00', '{"cached":null,"ignore_cache":false}'), +(5943, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:04.012+00', '{"cached":null,"ignore_cache":false}'), +(5944, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:04.013+00', '{"cached":null,"ignore_cache":false}'), +(5945, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.818+00', '{"cached":null,"ignore_cache":false}'), +(5946, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.83+00', '{"cached":null,"ignore_cache":false}'), +(5947, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.839+00', '{"cached":null,"ignore_cache":false}'), +(5948, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.851+00', '{"cached":null,"ignore_cache":false}'), +(5949, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.858+00', '{"cached":null,"ignore_cache":false}'), +(5950, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.858+00', '{"cached":null,"ignore_cache":false}'), +(5951, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:30:33.866+00', '{"cached":null,"ignore_cache":false}'), +(5952, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.903+00', '{"cached":null,"ignore_cache":false}'), +(5953, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.943+00', '{"cached":null,"ignore_cache":false}'), +(5954, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.949+00', '{"cached":null,"ignore_cache":false}'), +(5955, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.993+00', '{"cached":null,"ignore_cache":false}'), +(5956, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:03.994+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5957, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:04.025+00', '{"cached":null,"ignore_cache":false}'), +(5958, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:04.027+00', '{"cached":null,"ignore_cache":false}'), +(5959, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.117+00', '{"cached":null,"ignore_cache":false}'), +(5960, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.129+00', '{"cached":null,"ignore_cache":false}'), +(5961, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.132+00', '{"cached":null,"ignore_cache":false}'), +(5962, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.138+00', '{"cached":null,"ignore_cache":false}'), +(5963, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.148+00', '{"cached":null,"ignore_cache":false}'), +(5964, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.161+00', '{"cached":null,"ignore_cache":false}'), +(5965, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:31:34.165+00', '{"cached":null,"ignore_cache":false}'), +(5966, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.718+00', '{"cached":null,"ignore_cache":false}'), +(5967, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.759+00', '{"cached":null,"ignore_cache":false}'), +(5968, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.783+00', '{"cached":null,"ignore_cache":false}'), +(5969, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.85+00', '{"cached":null,"ignore_cache":false}'), +(5970, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.862+00', '{"cached":null,"ignore_cache":false}'), +(5971, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.887+00', '{"cached":null,"ignore_cache":false}'), +(5972, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:09.926+00', '{"cached":null,"ignore_cache":false}'), +(5973, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.757+00', '{"cached":null,"ignore_cache":false}'), +(5974, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.784+00', '{"cached":null,"ignore_cache":false}'), +(5975, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.797+00', '{"cached":null,"ignore_cache":false}'), +(5976, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.799+00', '{"cached":null,"ignore_cache":false}'), +(5977, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.812+00', '{"cached":null,"ignore_cache":false}'), +(5978, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.816+00', '{"cached":null,"ignore_cache":false}'), +(5979, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:32:50.832+00', '{"cached":null,"ignore_cache":false}'), +(5980, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.637+00', '{"cached":null,"ignore_cache":false}'), +(5981, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.64+00', '{"cached":null,"ignore_cache":false}'), +(5982, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.662+00', '{"cached":null,"ignore_cache":false}'), +(5983, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.666+00', '{"cached":null,"ignore_cache":false}'), +(5984, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.676+00', '{"cached":null,"ignore_cache":false}'), +(5985, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.677+00', '{"cached":null,"ignore_cache":false}'), +(5986, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:30.681+00', '{"cached":null,"ignore_cache":false}'), +(5987, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:57.57+00', '{"cached":null,"ignore_cache":null}'), +(5988, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.316+00', '{"cached":null,"ignore_cache":false}'), +(5989, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.334+00', '{"cached":null,"ignore_cache":false}'), +(5990, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.385+00', '{"cached":null,"ignore_cache":false}'), +(5991, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.405+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(5992, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.417+00', '{"cached":null,"ignore_cache":false}'), +(5993, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.42+00', '{"cached":null,"ignore_cache":false}'), +(5994, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.432+00', '{"cached":null,"ignore_cache":false}'), +(5995, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.494+00', '{"cached":null,"ignore_cache":false}'), +(5996, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:33:58.594+00', '{"cached":null,"ignore_cache":false}'), +(5997, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.652+00', '{"cached":null,"ignore_cache":false}'), +(5998, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.668+00', '{"cached":null,"ignore_cache":false}'), +(5999, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.698+00', '{"cached":null,"ignore_cache":false}'), +(6000, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.719+00', '{"cached":null,"ignore_cache":false}'), +(6001, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.738+00', '{"cached":null,"ignore_cache":false}'), +(6002, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.748+00', '{"cached":null,"ignore_cache":false}'), +(6003, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:10.758+00', '{"cached":null,"ignore_cache":false}'), +(6004, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.707+00', '{"cached":null,"ignore_cache":false}'), +(6005, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.743+00', '{"cached":null,"ignore_cache":false}'), +(6006, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.765+00', '{"cached":null,"ignore_cache":false}'), +(6007, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.772+00', '{"cached":null,"ignore_cache":false}'), +(6008, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.774+00', '{"cached":null,"ignore_cache":false}'), +(6009, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.8+00', '{"cached":null,"ignore_cache":false}'), +(6010, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:34:45.808+00', '{"cached":null,"ignore_cache":false}'), +(6011, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.762+00', '{"cached":null,"ignore_cache":false}'), +(6012, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.91+00', '{"cached":null,"ignore_cache":false}'), +(6013, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:26.959+00', '{"cached":null,"ignore_cache":false}'), +(6014, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:27.028+00', '{"cached":null,"ignore_cache":false}'), +(6015, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:27.055+00', '{"cached":null,"ignore_cache":false}'), +(6016, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:27.095+00', '{"cached":null,"ignore_cache":false}'), +(6017, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:35:27.111+00', '{"cached":null,"ignore_cache":false}'), +(6018, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.642+00', '{"cached":null,"ignore_cache":false}'), +(6019, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.652+00', '{"cached":null,"ignore_cache":false}'), +(6020, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.675+00', '{"cached":null,"ignore_cache":false}'), +(6021, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.728+00', '{"cached":null,"ignore_cache":false}'), +(6022, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.744+00', '{"cached":null,"ignore_cache":false}'), +(6023, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.752+00', '{"cached":null,"ignore_cache":false}'), +(6024, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:06.772+00', '{"cached":null,"ignore_cache":false}'), +(6025, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.696+00', '{"cached":null,"ignore_cache":false}'), +(6026, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.704+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6027, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.725+00', '{"cached":null,"ignore_cache":false}'), +(6028, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.733+00', '{"cached":null,"ignore_cache":false}'), +(6029, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.75+00', '{"cached":null,"ignore_cache":false}'), +(6030, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.775+00', '{"cached":null,"ignore_cache":false}'), +(6031, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:36:40.814+00', '{"cached":null,"ignore_cache":false}'), +(6032, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:57.529+00', '{"cached":null,"ignore_cache":null}'), +(6033, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.078+00', '{"cached":null,"ignore_cache":false}'), +(6034, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.17+00', '{"cached":null,"ignore_cache":false}'), +(6035, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.271+00', '{"cached":null,"ignore_cache":false}'), +(6036, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.3+00', '{"cached":null,"ignore_cache":false}'), +(6037, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.332+00', '{"cached":null,"ignore_cache":false}'), +(6038, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.351+00', '{"cached":null,"ignore_cache":false}'), +(6039, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.375+00', '{"cached":null,"ignore_cache":false}'), +(6040, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.425+00', '{"cached":null,"ignore_cache":false}'), +(6041, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:38:58.446+00', '{"cached":null,"ignore_cache":false}'), +(6042, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:39:17.606+00', '{"cached":null,"ignore_cache":null}'), +(6043, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:39:18.222+00', '{"cached":null,"ignore_cache":false}'), +(6044, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:30.63+00', '{"cached":null,"ignore_cache":null}'), +(6045, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.169+00', '{"cached":null,"ignore_cache":false}'), +(6046, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.21+00', '{"cached":null,"ignore_cache":false}'), +(6047, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.222+00', '{"cached":null,"ignore_cache":false}'), +(6048, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.237+00', '{"cached":null,"ignore_cache":false}'), +(6049, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.244+00', '{"cached":null,"ignore_cache":false}'), +(6050, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.25+00', '{"cached":null,"ignore_cache":false}'), +(6051, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:31.252+00', '{"cached":null,"ignore_cache":false}'), +(6052, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:36.722+00', '{"cached":null,"ignore_cache":null}'), +(6053, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:41:37.221+00', '{"cached":null,"ignore_cache":false}'), +(6054, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:29.999+00', '{"cached":null,"ignore_cache":null}'), +(6055, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:31.968+00', '{"cached":null,"ignore_cache":false}'), +(6056, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:32.06+00', '{"cached":null,"ignore_cache":false}'), +(6057, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:32.086+00', '{"cached":null,"ignore_cache":false}'), +(6058, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:32.088+00', '{"cached":null,"ignore_cache":false}'), +(6059, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:32.142+00', '{"cached":null,"ignore_cache":false}'), +(6060, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:32.149+00', '{"cached":null,"ignore_cache":false}'), +(6061, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:42:32.17+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6062, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:44.35+00', '{"cached":null,"ignore_cache":null}'), +(6063, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:44.844+00', '{"cached":null,"ignore_cache":false}'), +(6064, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:58.111+00', '{"cached":null,"ignore_cache":null}'), +(6065, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.325+00', '{"cached":null,"ignore_cache":false}'), +(6066, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.346+00', '{"cached":null,"ignore_cache":false}'), +(6067, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.423+00', '{"cached":null,"ignore_cache":false}'), +(6068, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.427+00', '{"cached":null,"ignore_cache":false}'), +(6069, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.462+00', '{"cached":null,"ignore_cache":false}'), +(6070, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.511+00', '{"cached":null,"ignore_cache":false}'), +(6071, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.532+00', '{"cached":null,"ignore_cache":false}'), +(6072, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.538+00', '{"cached":null,"ignore_cache":false}'), +(6073, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:43:59.614+00', '{"cached":null,"ignore_cache":false}'), +(6074, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:57.875+00', '{"cached":null,"ignore_cache":null}'), +(6075, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.318+00', '{"cached":null,"ignore_cache":false}'), +(6076, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.382+00', '{"cached":null,"ignore_cache":false}'), +(6077, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.384+00', '{"cached":null,"ignore_cache":false}'), +(6078, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.398+00', '{"cached":null,"ignore_cache":false}'), +(6079, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.424+00', '{"cached":null,"ignore_cache":false}'), +(6080, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.442+00', '{"cached":null,"ignore_cache":false}'), +(6081, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.461+00', '{"cached":null,"ignore_cache":false}'), +(6082, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.473+00', '{"cached":null,"ignore_cache":false}'), +(6083, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:48:58.503+00', '{"cached":null,"ignore_cache":false}'), +(6084, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.031+00', '{"cached":null,"ignore_cache":null}'), +(6085, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.703+00', '{"cached":null,"ignore_cache":false}'), +(6086, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.769+00', '{"cached":null,"ignore_cache":false}'), +(6087, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.812+00', '{"cached":null,"ignore_cache":false}'), +(6088, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.845+00', '{"cached":null,"ignore_cache":false}'), +(6089, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.846+00', '{"cached":null,"ignore_cache":false}'), +(6090, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.847+00', '{"cached":null,"ignore_cache":false}'), +(6091, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.881+00', '{"cached":null,"ignore_cache":false}'), +(6092, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.932+00', '{"cached":null,"ignore_cache":false}'), +(6093, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:53:58.95+00', '{"cached":null,"ignore_cache":false}'), +(6094, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:06.746+00', '{"cached":null,"ignore_cache":null}'), +(6095, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.402+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6096, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.46+00', '{"cached":null,"ignore_cache":false}'), +(6097, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.497+00', '{"cached":null,"ignore_cache":false}'), +(6098, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.498+00', '{"cached":null,"ignore_cache":false}'), +(6099, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.584+00', '{"cached":null,"ignore_cache":false}'), +(6100, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.634+00', '{"cached":null,"ignore_cache":false}'), +(6101, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:08.694+00', '{"cached":null,"ignore_cache":false}'), +(6102, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:10.794+00', '{"cached":null,"ignore_cache":null}'), +(6103, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:12.142+00', '{"cached":null,"ignore_cache":false}'), +(6104, 1, 'table', 36, TIMESTAMP WITH TIME ZONE '2022-12-20 11:56:40.73+00', '{"cached":null,"ignore_cache":null}'), +(6105, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:57.927+00', '{"cached":null,"ignore_cache":null}'), +(6106, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.619+00', '{"cached":null,"ignore_cache":false}'), +(6107, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.686+00', '{"cached":null,"ignore_cache":false}'), +(6108, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.703+00', '{"cached":null,"ignore_cache":false}'), +(6109, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.72+00', '{"cached":null,"ignore_cache":false}'), +(6110, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.726+00', '{"cached":null,"ignore_cache":false}'), +(6111, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.73+00', '{"cached":null,"ignore_cache":false}'), +(6112, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.736+00', '{"cached":null,"ignore_cache":false}'), +(6113, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.757+00', '{"cached":null,"ignore_cache":false}'), +(6114, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 11:58:58.786+00', '{"cached":null,"ignore_cache":false}'), +(6115, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.719+00', '{"cached":null,"ignore_cache":false}'), +(6116, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.748+00', '{"cached":null,"ignore_cache":false}'), +(6117, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.749+00', '{"cached":null,"ignore_cache":false}'), +(6118, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.966+00', '{"cached":null,"ignore_cache":false}'), +(6119, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:24.978+00', '{"cached":null,"ignore_cache":false}'), +(6120, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:25.06+00', '{"cached":null,"ignore_cache":false}'), +(6121, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:25.122+00', '{"cached":null,"ignore_cache":false}'), +(6122, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:25.241+00', '{"cached":null,"ignore_cache":false}'), +(6123, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:25.246+00', '{"cached":null,"ignore_cache":false}'), +(6124, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:25.278+00', '{"cached":null,"ignore_cache":false}'), +(6125, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.455+00', '{"cached":null,"ignore_cache":false}'), +(6126, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.503+00', '{"cached":null,"ignore_cache":false}'), +(6127, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.537+00', '{"cached":null,"ignore_cache":false}'), +(6128, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.57+00', '{"cached":null,"ignore_cache":false}'), +(6129, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.585+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6130, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.624+00', '{"cached":null,"ignore_cache":false}'), +(6131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.63+00', '{"cached":null,"ignore_cache":false}'), +(6132, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.653+00', '{"cached":null,"ignore_cache":false}'), +(6133, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:01:42.676+00', '{"cached":null,"ignore_cache":false}'), +(6134, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.672+00', '{"cached":null,"ignore_cache":false}'), +(6135, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.696+00', '{"cached":null,"ignore_cache":false}'), +(6136, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.72+00', '{"cached":null,"ignore_cache":false}'), +(6137, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.735+00', '{"cached":null,"ignore_cache":false}'), +(6138, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.747+00', '{"cached":null,"ignore_cache":false}'), +(6139, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.747+00', '{"cached":null,"ignore_cache":false}'), +(6140, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.755+00', '{"cached":null,"ignore_cache":false}'), +(6141, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.772+00', '{"cached":null,"ignore_cache":false}'), +(6142, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:00.798+00', '{"cached":null,"ignore_cache":false}'), +(6143, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.764+00', '{"cached":null,"ignore_cache":false}'), +(6144, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.848+00', '{"cached":null,"ignore_cache":false}'), +(6145, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.869+00', '{"cached":null,"ignore_cache":false}'), +(6146, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.883+00', '{"cached":null,"ignore_cache":false}'), +(6147, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.907+00', '{"cached":null,"ignore_cache":false}'), +(6148, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.918+00', '{"cached":null,"ignore_cache":false}'), +(6149, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.925+00', '{"cached":null,"ignore_cache":false}'), +(6150, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.938+00', '{"cached":null,"ignore_cache":false}'), +(6151, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:18.944+00', '{"cached":null,"ignore_cache":false}'), +(6152, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.34+00', '{"cached":null,"ignore_cache":false}'), +(6153, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.359+00', '{"cached":null,"ignore_cache":false}'), +(6154, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.45+00', '{"cached":null,"ignore_cache":false}'), +(6155, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.458+00', '{"cached":null,"ignore_cache":false}'), +(6156, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.468+00', '{"cached":null,"ignore_cache":false}'), +(6157, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.478+00', '{"cached":null,"ignore_cache":false}'), +(6158, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.485+00', '{"cached":null,"ignore_cache":false}'), +(6159, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.487+00', '{"cached":null,"ignore_cache":false}'), +(6160, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:27.487+00', '{"cached":null,"ignore_cache":false}'), +(6161, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.051+00', '{"cached":null,"ignore_cache":false}'), +(6162, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.059+00', '{"cached":null,"ignore_cache":false}'), +(6163, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.147+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6164, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.17+00', '{"cached":null,"ignore_cache":false}'), +(6165, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.174+00', '{"cached":null,"ignore_cache":false}'), +(6166, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.198+00', '{"cached":null,"ignore_cache":false}'), +(6167, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.205+00', '{"cached":null,"ignore_cache":false}'), +(6168, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.258+00', '{"cached":null,"ignore_cache":false}'), +(6169, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:02:34.304+00', '{"cached":null,"ignore_cache":false}'), +(6170, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.292+00', '{"cached":null,"ignore_cache":false}'), +(6171, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.357+00', '{"cached":null,"ignore_cache":false}'), +(6172, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.384+00', '{"cached":null,"ignore_cache":false}'), +(6173, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.467+00', '{"cached":null,"ignore_cache":false}'), +(6174, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.491+00', '{"cached":null,"ignore_cache":false}'), +(6175, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.538+00', '{"cached":null,"ignore_cache":false}'), +(6176, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.545+00', '{"cached":null,"ignore_cache":false}'), +(6177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.553+00', '{"cached":null,"ignore_cache":false}'), +(6178, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:07.582+00', '{"cached":null,"ignore_cache":false}'), +(6179, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.328+00', '{"cached":null,"ignore_cache":false}'), +(6180, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.388+00', '{"cached":null,"ignore_cache":false}'), +(6181, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.619+00', '{"cached":null,"ignore_cache":false}'), +(6182, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:56.747+00', '{"cached":null,"ignore_cache":false}'), +(6183, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:57.225+00', '{"cached":null,"ignore_cache":false}'), +(6184, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:57.388+00', '{"cached":null,"ignore_cache":false}'), +(6185, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:57.454+00', '{"cached":null,"ignore_cache":false}'), +(6186, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:57.683+00', '{"cached":null,"ignore_cache":false}'), +(6187, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:57.778+00', '{"cached":null,"ignore_cache":false}'), +(6188, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:57.926+00', '{"cached":null,"ignore_cache":false}'), +(6189, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:58.273+00', '{"cached":null,"ignore_cache":null}'), +(6190, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.427+00', '{"cached":null,"ignore_cache":false}'), +(6191, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.539+00', '{"cached":null,"ignore_cache":false}'), +(6192, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.544+00', '{"cached":null,"ignore_cache":false}'), +(6193, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.649+00', '{"cached":null,"ignore_cache":false}'), +(6194, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:03:59.666+00', '{"cached":null,"ignore_cache":false}'), +(6195, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:00.19+00', '{"cached":null,"ignore_cache":false}'), +(6196, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:00.253+00', '{"cached":null,"ignore_cache":false}'), +(6197, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:00.432+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6198, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:00.606+00', '{"cached":null,"ignore_cache":false}'), +(6199, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.128+00', '{"cached":null,"ignore_cache":false}'), +(6200, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.143+00', '{"cached":null,"ignore_cache":false}'), +(6201, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.197+00', '{"cached":null,"ignore_cache":false}'), +(6202, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.214+00', '{"cached":null,"ignore_cache":false}'), +(6203, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.215+00', '{"cached":null,"ignore_cache":false}'), +(6204, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.252+00', '{"cached":null,"ignore_cache":false}'), +(6205, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.284+00', '{"cached":null,"ignore_cache":false}'), +(6206, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.284+00', '{"cached":null,"ignore_cache":false}'), +(6207, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:04:25.298+00', '{"cached":null,"ignore_cache":false}'), +(6208, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.858+00', '{"cached":null,"ignore_cache":false}'), +(6209, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.94+00', '{"cached":null,"ignore_cache":false}'), +(6210, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.962+00', '{"cached":null,"ignore_cache":false}'), +(6211, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.974+00', '{"cached":null,"ignore_cache":false}'), +(6212, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:07.99+00', '{"cached":null,"ignore_cache":false}'), +(6213, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:08.01+00', '{"cached":null,"ignore_cache":false}'), +(6214, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:08.026+00', '{"cached":null,"ignore_cache":false}'), +(6215, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:08.029+00', '{"cached":null,"ignore_cache":false}'), +(6216, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:05:08.06+00', '{"cached":null,"ignore_cache":false}'), +(6217, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:09.847+00', '{"cached":null,"ignore_cache":false}'), +(6218, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.099+00', '{"cached":null,"ignore_cache":false}'), +(6219, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.114+00', '{"cached":null,"ignore_cache":false}'), +(6220, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.179+00', '{"cached":null,"ignore_cache":false}'), +(6221, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.188+00', '{"cached":null,"ignore_cache":false}'), +(6222, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.307+00', '{"cached":null,"ignore_cache":false}'), +(6223, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.384+00', '{"cached":null,"ignore_cache":false}'), +(6224, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.411+00', '{"cached":null,"ignore_cache":false}'), +(6225, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:10.502+00', '{"cached":null,"ignore_cache":false}'), +(6226, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.695+00', '{"cached":null,"ignore_cache":false}'), +(6227, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.753+00', '{"cached":null,"ignore_cache":false}'), +(6228, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.817+00', '{"cached":null,"ignore_cache":false}'), +(6229, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.876+00', '{"cached":null,"ignore_cache":false}'), +(6230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.913+00', '{"cached":null,"ignore_cache":false}'), +(6231, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.942+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6232, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.943+00', '{"cached":null,"ignore_cache":false}'), +(6233, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:19.99+00', '{"cached":null,"ignore_cache":false}'), +(6234, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:20.027+00', '{"cached":null,"ignore_cache":false}'), +(6235, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.735+00', '{"cached":null,"ignore_cache":false}'), +(6236, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.813+00', '{"cached":null,"ignore_cache":false}'), +(6237, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.819+00', '{"cached":null,"ignore_cache":false}'), +(6238, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.851+00', '{"cached":null,"ignore_cache":false}'), +(6239, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.95+00', '{"cached":null,"ignore_cache":false}'), +(6240, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.958+00', '{"cached":null,"ignore_cache":false}'), +(6241, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:53.998+00', '{"cached":null,"ignore_cache":false}'), +(6242, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:54.044+00', '{"cached":null,"ignore_cache":false}'), +(6243, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:06:54.068+00', '{"cached":null,"ignore_cache":false}'), +(6244, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.578+00', '{"cached":null,"ignore_cache":false}'), +(6245, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.743+00', '{"cached":null,"ignore_cache":false}'), +(6246, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.806+00', '{"cached":null,"ignore_cache":false}'), +(6247, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.817+00', '{"cached":null,"ignore_cache":false}'), +(6248, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.917+00', '{"cached":null,"ignore_cache":false}'), +(6249, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.937+00', '{"cached":null,"ignore_cache":false}'), +(6250, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.97+00', '{"cached":null,"ignore_cache":false}'), +(6251, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:35.978+00', '{"cached":null,"ignore_cache":false}'), +(6252, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:07:36.001+00', '{"cached":null,"ignore_cache":false}'), +(6253, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.55+00', '{"cached":null,"ignore_cache":false}'), +(6254, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.572+00', '{"cached":null,"ignore_cache":false}'), +(6255, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.633+00', '{"cached":null,"ignore_cache":false}'), +(6256, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.653+00', '{"cached":null,"ignore_cache":false}'), +(6257, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.696+00', '{"cached":null,"ignore_cache":false}'), +(6258, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.769+00', '{"cached":null,"ignore_cache":false}'), +(6259, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.796+00', '{"cached":null,"ignore_cache":false}'), +(6260, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.807+00', '{"cached":null,"ignore_cache":false}'), +(6261, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:11.846+00', '{"cached":null,"ignore_cache":false}'), +(6262, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.342+00', '{"cached":null,"ignore_cache":false}'), +(6263, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.387+00', '{"cached":null,"ignore_cache":false}'), +(6264, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.428+00', '{"cached":null,"ignore_cache":false}'), +(6265, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.449+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6266, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.468+00', '{"cached":null,"ignore_cache":false}'), +(6267, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.472+00', '{"cached":null,"ignore_cache":false}'), +(6268, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.488+00', '{"cached":null,"ignore_cache":false}'), +(6269, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.521+00', '{"cached":null,"ignore_cache":false}'), +(6270, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:47.532+00', '{"cached":null,"ignore_cache":false}'), +(6271, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:57.984+00', '{"cached":null,"ignore_cache":null}'), +(6272, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.616+00', '{"cached":null,"ignore_cache":false}'), +(6273, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.788+00', '{"cached":null,"ignore_cache":false}'), +(6274, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.857+00', '{"cached":null,"ignore_cache":false}'), +(6275, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.871+00', '{"cached":null,"ignore_cache":false}'), +(6276, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.883+00', '{"cached":null,"ignore_cache":false}'), +(6277, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.913+00', '{"cached":null,"ignore_cache":false}'), +(6278, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.937+00', '{"cached":null,"ignore_cache":false}'), +(6279, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:58.949+00', '{"cached":null,"ignore_cache":false}'), +(6280, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:08:59.12+00', '{"cached":null,"ignore_cache":false}'), +(6281, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:29.053+00', '{"cached":null,"ignore_cache":false}'), +(6282, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:29.074+00', '{"cached":null,"ignore_cache":false}'), +(6283, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:29.091+00', '{"cached":null,"ignore_cache":false}'), +(6284, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.865+00', '{"cached":null,"ignore_cache":false}'), +(6285, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.891+00', '{"cached":null,"ignore_cache":false}'), +(6286, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.907+00', '{"cached":null,"ignore_cache":false}'), +(6287, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.937+00', '{"cached":null,"ignore_cache":false}'), +(6288, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.945+00', '{"cached":null,"ignore_cache":false}'), +(6289, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:30.98+00', '{"cached":null,"ignore_cache":false}'), +(6290, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:38.03+00', '{"cached":null,"ignore_cache":null}'), +(6291, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:09:38.558+00', '{"cached":null,"ignore_cache":false}'), +(6292, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:13.891+00', '{"cached":null,"ignore_cache":false}'), +(6293, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.022+00', '{"cached":null,"ignore_cache":false}'), +(6294, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.023+00', '{"cached":null,"ignore_cache":false}'), +(6295, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.055+00', '{"cached":null,"ignore_cache":false}'), +(6296, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.058+00', '{"cached":null,"ignore_cache":false}'), +(6297, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.099+00', '{"cached":null,"ignore_cache":false}'), +(6298, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.146+00', '{"cached":null,"ignore_cache":false}'), +(6299, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.187+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6300, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:14.222+00', '{"cached":null,"ignore_cache":false}'), +(6301, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:33.904+00', '{"cached":null,"ignore_cache":null}'), +(6302, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.472+00', '{"cached":null,"ignore_cache":false}'), +(6303, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.475+00', '{"cached":null,"ignore_cache":false}'), +(6304, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.504+00', '{"cached":null,"ignore_cache":false}'), +(6305, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.53+00', '{"cached":null,"ignore_cache":false}'), +(6306, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.547+00', '{"cached":null,"ignore_cache":false}'), +(6307, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.554+00', '{"cached":null,"ignore_cache":false}'), +(6308, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:10:34.559+00', '{"cached":null,"ignore_cache":false}'), +(6309, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:20.17+00', '{"cached":null,"ignore_cache":null}'), +(6310, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:45.87+00', '{"cached":null,"ignore_cache":false}'), +(6311, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:46.081+00', '{"cached":null,"ignore_cache":false}'), +(6312, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:46.113+00', '{"cached":null,"ignore_cache":false}'), +(6313, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:46.116+00', '{"cached":null,"ignore_cache":false}'), +(6314, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:46.137+00', '{"cached":null,"ignore_cache":false}'), +(6315, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:46.15+00', '{"cached":null,"ignore_cache":false}'), +(6316, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:48.617+00', '{"cached":null,"ignore_cache":false}'), +(6317, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:48.65+00', '{"cached":null,"ignore_cache":false}'), +(6318, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:48.732+00', '{"cached":null,"ignore_cache":false}'), +(6319, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.056+00', '{"cached":null,"ignore_cache":false}'), +(6320, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.077+00', '{"cached":null,"ignore_cache":false}'), +(6321, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.078+00', '{"cached":null,"ignore_cache":false}'), +(6322, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:53.092+00', '{"cached":null,"ignore_cache":false}'), +(6323, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:57.914+00', '{"cached":null,"ignore_cache":null}'), +(6324, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.577+00', '{"cached":null,"ignore_cache":false}'), +(6325, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.685+00', '{"cached":null,"ignore_cache":false}'), +(6326, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.786+00', '{"cached":null,"ignore_cache":false}'), +(6327, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.879+00', '{"cached":null,"ignore_cache":false}'), +(6328, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.963+00', '{"cached":null,"ignore_cache":false}'), +(6329, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:58.975+00', '{"cached":null,"ignore_cache":false}'), +(6330, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:59.043+00', '{"cached":null,"ignore_cache":false}'), +(6331, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:59.05+00', '{"cached":null,"ignore_cache":false}'), +(6332, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:13:59.088+00', '{"cached":null,"ignore_cache":false}'), +(6333, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.851+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6334, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.855+00', '{"cached":null,"ignore_cache":false}'), +(6335, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.906+00', '{"cached":null,"ignore_cache":false}'), +(6336, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.932+00', '{"cached":null,"ignore_cache":false}'), +(6337, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.967+00', '{"cached":null,"ignore_cache":false}'), +(6338, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:17.999+00', '{"cached":null,"ignore_cache":false}'), +(6339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.05+00', '{"cached":null,"ignore_cache":false}'), +(6340, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.073+00', '{"cached":null,"ignore_cache":false}'), +(6341, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.107+00', '{"cached":null,"ignore_cache":false}'), +(6342, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.14+00', '{"cached":null,"ignore_cache":false}'), +(6343, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.218+00', '{"cached":null,"ignore_cache":false}'), +(6344, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.318+00', '{"cached":null,"ignore_cache":false}'), +(6345, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.362+00', '{"cached":null,"ignore_cache":false}'), +(6346, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.369+00', '{"cached":null,"ignore_cache":false}'), +(6347, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.421+00', '{"cached":null,"ignore_cache":false}'), +(6348, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.425+00', '{"cached":null,"ignore_cache":false}'), +(6349, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.472+00', '{"cached":null,"ignore_cache":false}'), +(6350, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.473+00', '{"cached":null,"ignore_cache":false}'), +(6351, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.49+00', '{"cached":null,"ignore_cache":false}'), +(6352, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.55+00', '{"cached":null,"ignore_cache":false}'), +(6353, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:15:18.562+00', '{"cached":null,"ignore_cache":false}'), +(6354, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.666+00', '{"cached":null,"ignore_cache":false}'), +(6355, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.814+00', '{"cached":null,"ignore_cache":false}'), +(6356, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:42.869+00', '{"cached":null,"ignore_cache":false}'), +(6357, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.193+00', '{"cached":null,"ignore_cache":false}'), +(6358, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.23+00', '{"cached":null,"ignore_cache":false}'), +(6359, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.267+00', '{"cached":null,"ignore_cache":false}'), +(6360, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.291+00', '{"cached":null,"ignore_cache":false}'), +(6361, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.323+00', '{"cached":null,"ignore_cache":false}'), +(6362, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.414+00', '{"cached":null,"ignore_cache":false}'), +(6363, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.578+00', '{"cached":null,"ignore_cache":false}'), +(6364, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:43.919+00', '{"cached":null,"ignore_cache":false}'), +(6365, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:44.023+00', '{"cached":null,"ignore_cache":false}'), +(6366, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:44.172+00', '{"cached":null,"ignore_cache":false}'), +(6367, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:44.248+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6368, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:44.253+00', '{"cached":null,"ignore_cache":false}'), +(6369, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:44.264+00', '{"cached":null,"ignore_cache":false}'), +(6370, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:16:44.331+00', '{"cached":null,"ignore_cache":false}'), +(6371, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.35+00', '{"cached":null,"ignore_cache":false}'), +(6372, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.35+00', '{"cached":null,"ignore_cache":false}'), +(6373, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.375+00', '{"cached":null,"ignore_cache":false}'), +(6374, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.397+00', '{"cached":null,"ignore_cache":false}'), +(6375, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.398+00', '{"cached":null,"ignore_cache":false}'), +(6376, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.415+00', '{"cached":null,"ignore_cache":false}'), +(6377, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:15.421+00', '{"cached":null,"ignore_cache":false}'), +(6378, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.939+00', '{"cached":null,"ignore_cache":false}'), +(6379, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:46.982+00', '{"cached":null,"ignore_cache":false}'), +(6380, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:47+00', '{"cached":null,"ignore_cache":false}'), +(6381, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:47+00', '{"cached":null,"ignore_cache":false}'), +(6382, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:47.013+00', '{"cached":null,"ignore_cache":false}'), +(6383, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:47.021+00', '{"cached":null,"ignore_cache":false}'), +(6384, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:17:47.149+00', '{"cached":null,"ignore_cache":false}'), +(6385, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:11.522+00', '{"cached":null,"ignore_cache":null}'), +(6386, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:11.993+00', '{"cached":null,"ignore_cache":null}'), +(6387, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:18.554+00', '{"cached":null,"ignore_cache":null}'), +(6388, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:25.757+00', '{"cached":null,"ignore_cache":null}'), +(6389, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:26.118+00', '{"cached":null,"ignore_cache":null}'), +(6390, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.067+00', '{"cached":null,"ignore_cache":null}'), +(6391, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.622+00', '{"cached":null,"ignore_cache":false}'), +(6392, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.698+00', '{"cached":null,"ignore_cache":false}'), +(6393, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.699+00', '{"cached":null,"ignore_cache":false}'), +(6394, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.729+00', '{"cached":null,"ignore_cache":false}'), +(6395, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.766+00', '{"cached":null,"ignore_cache":false}'), +(6396, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.817+00', '{"cached":null,"ignore_cache":false}'), +(6397, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.848+00', '{"cached":null,"ignore_cache":false}'), +(6398, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.88+00', '{"cached":null,"ignore_cache":false}'), +(6399, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:18:58.941+00', '{"cached":null,"ignore_cache":false}'), +(6400, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:18.99+00', '{"cached":null,"ignore_cache":false}'), +(6401, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.019+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6402, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.086+00', '{"cached":null,"ignore_cache":false}'), +(6403, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.139+00', '{"cached":null,"ignore_cache":false}'), +(6404, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.171+00', '{"cached":null,"ignore_cache":false}'), +(6405, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:19.183+00', '{"cached":null,"ignore_cache":false}'), +(6406, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:22.578+00', '{"cached":null,"ignore_cache":false}'), +(6407, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.479+00', '{"cached":null,"ignore_cache":false}'), +(6408, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.482+00', '{"cached":null,"ignore_cache":false}'), +(6409, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.489+00', '{"cached":null,"ignore_cache":false}'), +(6410, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.706+00', '{"cached":null,"ignore_cache":false}'), +(6411, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.724+00', '{"cached":null,"ignore_cache":false}'), +(6412, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.737+00', '{"cached":null,"ignore_cache":false}'), +(6413, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:26.755+00', '{"cached":null,"ignore_cache":false}'), +(6414, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:35.945+00', '{"cached":null,"ignore_cache":false}'), +(6415, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:35.963+00', '{"cached":null,"ignore_cache":false}'), +(6416, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:35.968+00', '{"cached":null,"ignore_cache":false}'), +(6417, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.467+00', '{"cached":null,"ignore_cache":false}'), +(6418, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.49+00', '{"cached":null,"ignore_cache":false}'), +(6419, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.495+00', '{"cached":null,"ignore_cache":false}'), +(6420, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:46.502+00', '{"cached":null,"ignore_cache":false}'), +(6421, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:53.961+00', '{"cached":null,"ignore_cache":false}'), +(6422, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.067+00', '{"cached":null,"ignore_cache":false}'), +(6423, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.15+00', '{"cached":null,"ignore_cache":false}'), +(6424, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.244+00', '{"cached":null,"ignore_cache":false}'), +(6425, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.329+00', '{"cached":null,"ignore_cache":false}'), +(6426, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.36+00', '{"cached":null,"ignore_cache":false}'), +(6427, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.398+00', '{"cached":null,"ignore_cache":false}'), +(6428, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.405+00', '{"cached":null,"ignore_cache":false}'), +(6429, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:19:54.42+00', '{"cached":null,"ignore_cache":false}'), +(6430, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.009+00', '{"cached":null,"ignore_cache":false}'), +(6431, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.052+00', '{"cached":null,"ignore_cache":false}'), +(6432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.117+00', '{"cached":null,"ignore_cache":false}'), +(6433, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.161+00', '{"cached":null,"ignore_cache":false}'), +(6434, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.192+00', '{"cached":null,"ignore_cache":false}'), +(6435, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.244+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6436, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:24.259+00', '{"cached":null,"ignore_cache":false}'), +(6437, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.338+00', '{"cached":null,"ignore_cache":null}'), +(6438, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.839+00', '{"cached":null,"ignore_cache":false}'), +(6439, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.899+00', '{"cached":null,"ignore_cache":false}'), +(6440, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.904+00', '{"cached":null,"ignore_cache":false}'), +(6441, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.933+00', '{"cached":null,"ignore_cache":false}'), +(6442, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.934+00', '{"cached":null,"ignore_cache":false}'), +(6443, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.937+00', '{"cached":null,"ignore_cache":false}'), +(6444, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:52.944+00', '{"cached":null,"ignore_cache":false}'), +(6445, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:53.985+00', '{"cached":null,"ignore_cache":false}'), +(6446, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:54.015+00', '{"cached":null,"ignore_cache":false}'), +(6447, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:54.063+00', '{"cached":null,"ignore_cache":false}'), +(6448, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:54.082+00', '{"cached":null,"ignore_cache":false}'), +(6449, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:54.087+00', '{"cached":null,"ignore_cache":false}'), +(6450, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:54.088+00', '{"cached":null,"ignore_cache":false}'), +(6451, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:20:54.173+00', '{"cached":null,"ignore_cache":false}'), +(6452, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.043+00', '{"cached":null,"ignore_cache":false}'), +(6453, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.085+00', '{"cached":null,"ignore_cache":false}'), +(6454, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.09+00', '{"cached":null,"ignore_cache":false}'), +(6455, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.096+00', '{"cached":null,"ignore_cache":false}'), +(6456, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.103+00', '{"cached":null,"ignore_cache":false}'), +(6457, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.108+00', '{"cached":null,"ignore_cache":false}'), +(6458, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:24.134+00', '{"cached":null,"ignore_cache":false}'), +(6459, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.609+00', '{"cached":null,"ignore_cache":false}'), +(6460, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.643+00', '{"cached":null,"ignore_cache":false}'), +(6461, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.647+00', '{"cached":null,"ignore_cache":false}'), +(6462, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.688+00', '{"cached":null,"ignore_cache":false}'), +(6463, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.693+00', '{"cached":null,"ignore_cache":false}'), +(6464, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.705+00', '{"cached":null,"ignore_cache":false}'), +(6465, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:21:54.738+00', '{"cached":null,"ignore_cache":false}'), +(6466, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:22.097+00', '{"cached":null,"ignore_cache":null}'), +(6467, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:22.619+00', '{"cached":null,"ignore_cache":false}'), +(6468, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.134+00', '{"cached":null,"ignore_cache":false}'), +(6469, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.146+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6470, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.147+00', '{"cached":null,"ignore_cache":false}'), +(6471, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.157+00', '{"cached":null,"ignore_cache":false}'), +(6472, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.163+00', '{"cached":null,"ignore_cache":false}'), +(6473, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.164+00', '{"cached":null,"ignore_cache":false}'), +(6474, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:25.167+00', '{"cached":null,"ignore_cache":false}'), +(6475, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:32.251+00', '{"cached":null,"ignore_cache":true}'), +(6476, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:45.148+00', '{"cached":null,"ignore_cache":false}'), +(6477, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.591+00', '{"cached":null,"ignore_cache":false}'), +(6478, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.639+00', '{"cached":null,"ignore_cache":false}'), +(6479, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.642+00', '{"cached":null,"ignore_cache":false}'), +(6480, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.667+00', '{"cached":null,"ignore_cache":false}'), +(6481, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.696+00', '{"cached":null,"ignore_cache":false}'), +(6482, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.706+00', '{"cached":null,"ignore_cache":false}'), +(6483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.713+00', '{"cached":null,"ignore_cache":false}'), +(6484, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:54.738+00', '{"cached":null,"ignore_cache":null}'), +(6485, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.975+00', '{"cached":null,"ignore_cache":false}'), +(6486, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:55.987+00', '{"cached":null,"ignore_cache":false}'), +(6487, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:56.032+00', '{"cached":null,"ignore_cache":false}'), +(6488, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:56.045+00', '{"cached":null,"ignore_cache":false}'), +(6489, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:56.112+00', '{"cached":null,"ignore_cache":false}'), +(6490, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:56.152+00', '{"cached":null,"ignore_cache":false}'), +(6491, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:56.188+00', '{"cached":null,"ignore_cache":false}'), +(6492, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.517+00', '{"cached":null,"ignore_cache":false}'), +(6493, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.542+00', '{"cached":null,"ignore_cache":false}'), +(6494, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.55+00', '{"cached":null,"ignore_cache":false}'), +(6495, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.566+00', '{"cached":null,"ignore_cache":false}'), +(6496, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.59+00', '{"cached":null,"ignore_cache":false}'), +(6497, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.668+00', '{"cached":null,"ignore_cache":false}'), +(6498, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:01.699+00', '{"cached":null,"ignore_cache":false}'), +(6499, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.73+00', '{"cached":null,"ignore_cache":false}'), +(6500, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.783+00', '{"cached":null,"ignore_cache":false}'), +(6501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.814+00', '{"cached":null,"ignore_cache":false}'), +(6502, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.825+00', '{"cached":null,"ignore_cache":false}'), +(6503, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.874+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6504, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.881+00', '{"cached":null,"ignore_cache":false}'), +(6505, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:24.904+00', '{"cached":null,"ignore_cache":false}'), +(6506, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:31.039+00', '{"cached":null,"ignore_cache":null}'), +(6507, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.15+00', '{"cached":null,"ignore_cache":false}'), +(6508, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.153+00', '{"cached":null,"ignore_cache":false}'), +(6509, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.159+00', '{"cached":null,"ignore_cache":false}'), +(6510, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.163+00', '{"cached":null,"ignore_cache":false}'), +(6511, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.175+00', '{"cached":null,"ignore_cache":false}'), +(6512, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.197+00', '{"cached":null,"ignore_cache":false}'), +(6513, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:32.207+00', '{"cached":null,"ignore_cache":false}'), +(6514, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:49.203+00', '{"cached":null,"ignore_cache":null}'), +(6515, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.456+00', '{"cached":null,"ignore_cache":false}'), +(6516, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.483+00', '{"cached":null,"ignore_cache":false}'), +(6517, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.49+00', '{"cached":null,"ignore_cache":false}'), +(6518, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.498+00', '{"cached":null,"ignore_cache":false}'), +(6519, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.5+00', '{"cached":null,"ignore_cache":false}'), +(6520, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.506+00', '{"cached":null,"ignore_cache":false}'), +(6521, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:50.515+00', '{"cached":null,"ignore_cache":false}'), +(6522, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.476+00', '{"cached":null,"ignore_cache":false}'), +(6523, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.478+00', '{"cached":null,"ignore_cache":false}'), +(6524, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.503+00', '{"cached":null,"ignore_cache":false}'), +(6525, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.51+00', '{"cached":null,"ignore_cache":false}'), +(6526, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.515+00', '{"cached":null,"ignore_cache":false}'), +(6527, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.546+00', '{"cached":null,"ignore_cache":false}'), +(6528, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:54.552+00', '{"cached":null,"ignore_cache":false}'), +(6529, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:57.867+00', '{"cached":null,"ignore_cache":null}'), +(6530, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.438+00', '{"cached":null,"ignore_cache":false}'), +(6531, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.461+00', '{"cached":null,"ignore_cache":false}'), +(6532, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.507+00', '{"cached":null,"ignore_cache":false}'), +(6533, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.543+00', '{"cached":null,"ignore_cache":false}'), +(6534, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.57+00', '{"cached":null,"ignore_cache":false}'), +(6535, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.592+00', '{"cached":null,"ignore_cache":false}'), +(6536, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.606+00', '{"cached":null,"ignore_cache":false}'), +(6537, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.65+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6538, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:58.71+00', '{"cached":null,"ignore_cache":false}'), +(6539, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.426+00', '{"cached":null,"ignore_cache":false}'), +(6540, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.537+00', '{"cached":null,"ignore_cache":false}'), +(6541, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.618+00', '{"cached":null,"ignore_cache":false}'), +(6542, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.638+00', '{"cached":null,"ignore_cache":false}'), +(6543, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.666+00', '{"cached":null,"ignore_cache":false}'), +(6544, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.678+00', '{"cached":null,"ignore_cache":false}'), +(6545, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:24.722+00', '{"cached":null,"ignore_cache":false}'), +(6546, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.47+00', '{"cached":null,"ignore_cache":false}'), +(6547, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.537+00', '{"cached":null,"ignore_cache":false}'), +(6548, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.581+00', '{"cached":null,"ignore_cache":false}'), +(6549, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.608+00', '{"cached":null,"ignore_cache":false}'), +(6550, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.609+00', '{"cached":null,"ignore_cache":false}'), +(6551, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.615+00', '{"cached":null,"ignore_cache":false}'), +(6552, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:42.617+00', '{"cached":null,"ignore_cache":false}'), +(6553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.31+00', '{"cached":null,"ignore_cache":false}'), +(6554, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.323+00', '{"cached":null,"ignore_cache":false}'), +(6555, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.351+00', '{"cached":null,"ignore_cache":false}'), +(6556, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.353+00', '{"cached":null,"ignore_cache":false}'), +(6557, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.364+00', '{"cached":null,"ignore_cache":false}'), +(6558, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.365+00', '{"cached":null,"ignore_cache":false}'), +(6559, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:24:54.387+00', '{"cached":null,"ignore_cache":false}'), +(6560, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:00.722+00', '{"cached":null,"ignore_cache":null}'), +(6561, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.554+00', '{"cached":null,"ignore_cache":false}'), +(6562, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.589+00', '{"cached":null,"ignore_cache":false}'), +(6563, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.599+00', '{"cached":null,"ignore_cache":false}'), +(6564, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.6+00', '{"cached":null,"ignore_cache":false}'), +(6565, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.629+00', '{"cached":null,"ignore_cache":false}'), +(6566, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.65+00', '{"cached":null,"ignore_cache":false}'), +(6567, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:24.657+00', '{"cached":null,"ignore_cache":false}'), +(6568, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.357+00', '{"cached":null,"ignore_cache":null}'), +(6569, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.802+00', '{"cached":null,"ignore_cache":false}'), +(6570, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.936+00', '{"cached":null,"ignore_cache":false}'), +(6571, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.937+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6572, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.952+00', '{"cached":null,"ignore_cache":false}'), +(6573, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.956+00', '{"cached":null,"ignore_cache":false}'), +(6574, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.956+00', '{"cached":null,"ignore_cache":false}'), +(6575, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:32.972+00', '{"cached":null,"ignore_cache":false}'), +(6576, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:33.983+00', '{"cached":null,"ignore_cache":null}'), +(6577, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:34.492+00', '{"cached":null,"ignore_cache":false}'), +(6578, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.346+00', '{"cached":null,"ignore_cache":false}'), +(6579, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.432+00', '{"cached":null,"ignore_cache":false}'), +(6580, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.467+00', '{"cached":null,"ignore_cache":false}'), +(6581, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.469+00', '{"cached":null,"ignore_cache":false}'), +(6582, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.482+00', '{"cached":null,"ignore_cache":false}'), +(6583, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.482+00', '{"cached":null,"ignore_cache":false}'), +(6584, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:25:54.497+00', '{"cached":null,"ignore_cache":false}'), +(6585, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.703+00', '{"cached":null,"ignore_cache":false}'), +(6586, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.844+00', '{"cached":null,"ignore_cache":false}'), +(6587, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.859+00', '{"cached":null,"ignore_cache":false}'), +(6588, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.877+00', '{"cached":null,"ignore_cache":false}'), +(6589, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.916+00', '{"cached":null,"ignore_cache":false}'), +(6590, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.945+00', '{"cached":null,"ignore_cache":false}'), +(6591, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:24.951+00', '{"cached":null,"ignore_cache":false}'), +(6592, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:33.369+00', '{"cached":null,"ignore_cache":null}'), +(6593, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:33.917+00', '{"cached":null,"ignore_cache":false}'), +(6594, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:50.698+00', '{"cached":null,"ignore_cache":null}'), +(6595, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.256+00', '{"cached":null,"ignore_cache":false}'), +(6596, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.366+00', '{"cached":null,"ignore_cache":false}'), +(6597, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.372+00', '{"cached":null,"ignore_cache":false}'), +(6598, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.433+00', '{"cached":null,"ignore_cache":false}'), +(6599, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.443+00', '{"cached":null,"ignore_cache":false}'), +(6600, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.491+00', '{"cached":null,"ignore_cache":false}'), +(6601, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:26:51.536+00', '{"cached":null,"ignore_cache":false}'), +(6602, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:57.869+00', '{"cached":null,"ignore_cache":null}'), +(6603, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.582+00', '{"cached":null,"ignore_cache":false}'), +(6604, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.588+00', '{"cached":null,"ignore_cache":false}'), +(6605, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.635+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6606, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.781+00', '{"cached":null,"ignore_cache":false}'), +(6607, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.785+00', '{"cached":null,"ignore_cache":false}'), +(6608, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.837+00', '{"cached":null,"ignore_cache":false}'), +(6609, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.842+00', '{"cached":null,"ignore_cache":false}'), +(6610, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:58.975+00', '{"cached":null,"ignore_cache":false}'), +(6611, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:28:59.128+00', '{"cached":null,"ignore_cache":false}'), +(6612, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:29:03.212+00', '{"cached":null,"ignore_cache":null}'), +(6613, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:29:03.664+00', '{"cached":null,"ignore_cache":false}'), +(6614, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:29:11.613+00', '{"cached":null,"ignore_cache":null}'), +(6615, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:29:12.106+00', '{"cached":null,"ignore_cache":false}'), +(6616, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:32.495+00', '{"cached":null,"ignore_cache":null}'), +(6617, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:33.156+00', '{"cached":null,"ignore_cache":false}'), +(6618, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.03+00', '{"cached":null,"ignore_cache":null}'), +(6619, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.523+00', '{"cached":null,"ignore_cache":false}'), +(6620, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.556+00', '{"cached":null,"ignore_cache":false}'), +(6621, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.603+00', '{"cached":null,"ignore_cache":false}'), +(6622, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.604+00', '{"cached":null,"ignore_cache":false}'), +(6623, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.63+00', '{"cached":null,"ignore_cache":false}'), +(6624, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.64+00', '{"cached":null,"ignore_cache":false}'), +(6625, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:32:55.641+00', '{"cached":null,"ignore_cache":false}'), +(6626, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.23+00', '{"cached":null,"ignore_cache":null}'), +(6627, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.834+00', '{"cached":null,"ignore_cache":false}'), +(6628, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.921+00', '{"cached":null,"ignore_cache":false}'), +(6629, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.949+00', '{"cached":null,"ignore_cache":false}'), +(6630, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:58.979+00', '{"cached":null,"ignore_cache":false}'), +(6631, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:59.017+00', '{"cached":null,"ignore_cache":false}'), +(6632, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:59.031+00', '{"cached":null,"ignore_cache":false}'), +(6633, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:59.056+00', '{"cached":null,"ignore_cache":false}'), +(6634, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:59.088+00', '{"cached":null,"ignore_cache":false}'), +(6635, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:33:59.215+00', '{"cached":null,"ignore_cache":false}'), +(6636, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.736+00', '{"cached":null,"ignore_cache":false}'), +(6637, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.835+00', '{"cached":null,"ignore_cache":false}'), +(6638, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.894+00', '{"cached":null,"ignore_cache":false}'), +(6639, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.936+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6640, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.936+00', '{"cached":null,"ignore_cache":false}'), +(6641, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.948+00', '{"cached":null,"ignore_cache":false}'), +(6642, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:09.991+00', '{"cached":null,"ignore_cache":false}'), +(6643, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.138+00', '{"cached":null,"ignore_cache":false}'), +(6644, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.176+00', '{"cached":null,"ignore_cache":false}'), +(6645, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.194+00', '{"cached":null,"ignore_cache":false}'), +(6646, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.241+00', '{"cached":null,"ignore_cache":false}'), +(6647, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.253+00', '{"cached":null,"ignore_cache":false}'), +(6648, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.265+00', '{"cached":null,"ignore_cache":false}'), +(6649, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:41.277+00', '{"cached":null,"ignore_cache":false}'), +(6650, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:47.399+00', '{"cached":null,"ignore_cache":null}'), +(6651, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:34:47.879+00', '{"cached":null,"ignore_cache":false}'), +(6652, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.706+00', '{"cached":null,"ignore_cache":false}'), +(6653, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.742+00', '{"cached":null,"ignore_cache":false}'), +(6654, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.818+00', '{"cached":null,"ignore_cache":false}'), +(6655, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.825+00', '{"cached":null,"ignore_cache":false}'), +(6656, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.838+00', '{"cached":null,"ignore_cache":false}'), +(6657, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.839+00', '{"cached":null,"ignore_cache":false}'), +(6658, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:07.872+00', '{"cached":null,"ignore_cache":false}'), +(6659, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:19.409+00', '{"cached":null,"ignore_cache":null}'), +(6660, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:19.965+00', '{"cached":null,"ignore_cache":false}'), +(6661, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.47+00', '{"cached":null,"ignore_cache":false}'), +(6662, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.478+00', '{"cached":null,"ignore_cache":false}'), +(6663, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.526+00', '{"cached":null,"ignore_cache":false}'), +(6664, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.548+00', '{"cached":null,"ignore_cache":false}'), +(6665, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.559+00', '{"cached":null,"ignore_cache":false}'), +(6666, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.569+00', '{"cached":null,"ignore_cache":false}'), +(6667, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:35:37.6+00', '{"cached":null,"ignore_cache":false}'), +(6668, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:52.777+00', '{"cached":null,"ignore_cache":null}'), +(6669, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.93+00', '{"cached":null,"ignore_cache":false}'), +(6670, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:53.985+00', '{"cached":null,"ignore_cache":false}'), +(6671, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:54.023+00', '{"cached":null,"ignore_cache":false}'), +(6672, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:54.041+00', '{"cached":null,"ignore_cache":false}'), +(6673, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:54.094+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6674, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:54.102+00', '{"cached":null,"ignore_cache":false}'), +(6675, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:54.113+00', '{"cached":null,"ignore_cache":false}'), +(6676, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:54.13+00', '{"cached":null,"ignore_cache":false}'), +(6677, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:36:54.159+00', '{"cached":null,"ignore_cache":false}'), +(6678, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:57.936+00', '{"cached":null,"ignore_cache":null}'), +(6679, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.594+00', '{"cached":null,"ignore_cache":false}'), +(6680, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.638+00', '{"cached":null,"ignore_cache":false}'), +(6681, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.824+00', '{"cached":null,"ignore_cache":false}'), +(6682, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.855+00', '{"cached":null,"ignore_cache":false}'), +(6683, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.884+00', '{"cached":null,"ignore_cache":false}'), +(6684, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.885+00', '{"cached":null,"ignore_cache":false}'), +(6685, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.885+00', '{"cached":null,"ignore_cache":false}'), +(6686, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.926+00', '{"cached":null,"ignore_cache":false}'), +(6687, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:38:58.937+00', '{"cached":null,"ignore_cache":false}'), +(6688, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.347+00', '{"cached":null,"ignore_cache":null}'), +(6689, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.898+00', '{"cached":null,"ignore_cache":false}'), +(6690, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:03.905+00', '{"cached":null,"ignore_cache":false}'), +(6691, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:04.005+00', '{"cached":null,"ignore_cache":false}'), +(6692, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:04.009+00', '{"cached":null,"ignore_cache":false}'), +(6693, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:04.021+00', '{"cached":null,"ignore_cache":false}'), +(6694, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:04.039+00', '{"cached":null,"ignore_cache":false}'), +(6695, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:04.063+00', '{"cached":null,"ignore_cache":false}'), +(6696, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:06.105+00', '{"cached":null,"ignore_cache":null}'), +(6697, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:39:06.745+00', '{"cached":null,"ignore_cache":false}'), +(6698, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:32.464+00', '{"cached":null,"ignore_cache":null}'), +(6699, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:32.974+00', '{"cached":null,"ignore_cache":false}'), +(6700, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:44.435+00', '{"cached":null,"ignore_cache":null}'), +(6701, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:44.916+00', '{"cached":null,"ignore_cache":false}'), +(6702, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:54.696+00', '{"cached":null,"ignore_cache":null}'), +(6703, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.155+00', '{"cached":null,"ignore_cache":false}'), +(6704, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.175+00', '{"cached":null,"ignore_cache":false}'), +(6705, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.182+00', '{"cached":null,"ignore_cache":false}'), +(6706, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.196+00', '{"cached":null,"ignore_cache":false}'), +(6707, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.218+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6708, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.22+00', '{"cached":null,"ignore_cache":false}'), +(6709, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:55.228+00', '{"cached":null,"ignore_cache":false}'), +(6710, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:56.636+00', '{"cached":null,"ignore_cache":null}'), +(6711, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:40:57.086+00', '{"cached":null,"ignore_cache":false}'), +(6712, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:01.241+00', '{"cached":null,"ignore_cache":null}'), +(6713, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:03.241+00', '{"cached":null,"ignore_cache":false}'), +(6714, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:05.649+00', '{"cached":null,"ignore_cache":null}'), +(6715, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.341+00', '{"cached":null,"ignore_cache":false}'), +(6716, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.355+00', '{"cached":null,"ignore_cache":false}'), +(6717, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.369+00', '{"cached":null,"ignore_cache":false}'), +(6718, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.373+00', '{"cached":null,"ignore_cache":false}'), +(6719, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.403+00', '{"cached":null,"ignore_cache":false}'), +(6720, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.403+00', '{"cached":null,"ignore_cache":false}'), +(6721, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:06.461+00', '{"cached":null,"ignore_cache":false}'), +(6722, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:10.195+00', '{"cached":null,"ignore_cache":null}'), +(6723, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:10.729+00', '{"cached":null,"ignore_cache":false}'), +(6724, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:34.715+00', '{"cached":null,"ignore_cache":false}'), +(6725, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:38.686+00', '{"cached":null,"ignore_cache":null}'), +(6726, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.169+00', '{"cached":null,"ignore_cache":false}'), +(6727, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.2+00', '{"cached":null,"ignore_cache":false}'), +(6728, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.206+00', '{"cached":null,"ignore_cache":false}'), +(6729, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.216+00', '{"cached":null,"ignore_cache":false}'), +(6730, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.226+00', '{"cached":null,"ignore_cache":false}'), +(6731, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.227+00', '{"cached":null,"ignore_cache":false}'), +(6732, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:39.23+00', '{"cached":null,"ignore_cache":false}'), +(6733, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:42.013+00', '{"cached":null,"ignore_cache":null}'), +(6734, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:42.871+00', '{"cached":null,"ignore_cache":false}'), +(6735, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:41:58.419+00', '{"cached":null,"ignore_cache":false}'), +(6736, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:03.624+00', '{"cached":null,"ignore_cache":null}'), +(6737, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.26+00', '{"cached":null,"ignore_cache":false}'), +(6738, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.303+00', '{"cached":null,"ignore_cache":false}'), +(6739, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.307+00', '{"cached":null,"ignore_cache":false}'), +(6740, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.32+00', '{"cached":null,"ignore_cache":false}'), +(6741, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.351+00', '{"cached":null,"ignore_cache":false}'), +(6742, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.406+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6743, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:04.429+00', '{"cached":null,"ignore_cache":false}'), +(6744, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.08+00', '{"cached":null,"ignore_cache":false}'), +(6745, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.081+00', '{"cached":null,"ignore_cache":false}'), +(6746, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.098+00', '{"cached":null,"ignore_cache":false}'), +(6747, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.105+00', '{"cached":null,"ignore_cache":false}'), +(6748, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.107+00', '{"cached":null,"ignore_cache":false}'), +(6749, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.119+00', '{"cached":null,"ignore_cache":false}'), +(6750, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:07.131+00', '{"cached":null,"ignore_cache":false}'), +(6751, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.214+00', '{"cached":null,"ignore_cache":false}'), +(6752, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.234+00', '{"cached":null,"ignore_cache":false}'), +(6753, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.275+00', '{"cached":null,"ignore_cache":false}'), +(6754, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.276+00', '{"cached":null,"ignore_cache":false}'), +(6755, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.299+00', '{"cached":null,"ignore_cache":false}'), +(6756, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.317+00', '{"cached":null,"ignore_cache":false}'), +(6757, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:17.328+00', '{"cached":null,"ignore_cache":false}'), +(6758, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:18.969+00', '{"cached":null,"ignore_cache":false}'), +(6759, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:19.024+00', '{"cached":null,"ignore_cache":false}'), +(6760, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:19.05+00', '{"cached":null,"ignore_cache":false}'), +(6761, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:19.108+00', '{"cached":null,"ignore_cache":false}'), +(6762, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:19.129+00', '{"cached":null,"ignore_cache":false}'), +(6763, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:19.132+00', '{"cached":null,"ignore_cache":false}'), +(6764, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:19.166+00', '{"cached":null,"ignore_cache":false}'), +(6765, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.564+00', '{"cached":null,"ignore_cache":false}'), +(6766, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.57+00', '{"cached":null,"ignore_cache":false}'), +(6767, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.679+00', '{"cached":null,"ignore_cache":false}'), +(6768, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.693+00', '{"cached":null,"ignore_cache":false}'), +(6769, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.713+00', '{"cached":null,"ignore_cache":false}'), +(6770, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.714+00', '{"cached":null,"ignore_cache":false}'), +(6771, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:20.739+00', '{"cached":null,"ignore_cache":false}'), +(6772, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.141+00', '{"cached":null,"ignore_cache":false}'), +(6773, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.223+00', '{"cached":null,"ignore_cache":false}'), +(6774, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.285+00', '{"cached":null,"ignore_cache":false}'), +(6775, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.286+00', '{"cached":null,"ignore_cache":false}'), +(6776, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.337+00', '{"cached":null,"ignore_cache":false}'), +(6777, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.353+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6778, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:29.372+00', '{"cached":null,"ignore_cache":false}'), +(6779, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:35.209+00', '{"cached":null,"ignore_cache":null}'), +(6780, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.194+00', '{"cached":null,"ignore_cache":false}'), +(6781, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.355+00', '{"cached":null,"ignore_cache":false}'), +(6782, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.356+00', '{"cached":null,"ignore_cache":false}'), +(6783, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.381+00', '{"cached":null,"ignore_cache":false}'), +(6784, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.458+00', '{"cached":null,"ignore_cache":false}'), +(6785, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.55+00', '{"cached":null,"ignore_cache":false}'), +(6786, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.563+00', '{"cached":null,"ignore_cache":false}'), +(6787, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.585+00', '{"cached":null,"ignore_cache":false}'), +(6788, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:42:36.638+00', '{"cached":null,"ignore_cache":false}'), +(6789, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:57.551+00', '{"cached":null,"ignore_cache":null}'), +(6790, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.012+00', '{"cached":null,"ignore_cache":false}'), +(6791, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.033+00', '{"cached":null,"ignore_cache":false}'), +(6792, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.053+00', '{"cached":null,"ignore_cache":false}'), +(6793, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.08+00', '{"cached":null,"ignore_cache":false}'), +(6794, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.091+00', '{"cached":null,"ignore_cache":false}'), +(6795, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.105+00', '{"cached":null,"ignore_cache":false}'), +(6796, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.12+00', '{"cached":null,"ignore_cache":false}'), +(6797, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.13+00', '{"cached":null,"ignore_cache":false}'), +(6798, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:43:58.183+00', '{"cached":null,"ignore_cache":false}'), +(6799, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.059+00', '{"cached":null,"ignore_cache":null}'), +(6800, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.8+00', '{"cached":null,"ignore_cache":false}'), +(6801, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.808+00', '{"cached":null,"ignore_cache":false}'), +(6802, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.823+00', '{"cached":null,"ignore_cache":false}'), +(6803, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.839+00', '{"cached":null,"ignore_cache":false}'), +(6804, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:58.938+00', '{"cached":null,"ignore_cache":false}'), +(6805, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:59.205+00', '{"cached":null,"ignore_cache":false}'), +(6806, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:59.225+00', '{"cached":null,"ignore_cache":false}'), +(6807, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:59.231+00', '{"cached":null,"ignore_cache":false}'), +(6808, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:48:59.332+00', '{"cached":null,"ignore_cache":false}'), +(6809, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:57.873+00', '{"cached":null,"ignore_cache":null}'), +(6810, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.595+00', '{"cached":null,"ignore_cache":false}'), +(6811, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.607+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6812, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.635+00', '{"cached":null,"ignore_cache":false}'), +(6813, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.757+00', '{"cached":null,"ignore_cache":false}'), +(6814, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.758+00', '{"cached":null,"ignore_cache":false}'), +(6815, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.759+00', '{"cached":null,"ignore_cache":false}'), +(6816, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.832+00', '{"cached":null,"ignore_cache":false}'), +(6817, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.88+00', '{"cached":null,"ignore_cache":false}'), +(6818, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:53:58.907+00', '{"cached":null,"ignore_cache":false}'), +(6819, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.018+00', '{"cached":null,"ignore_cache":null}'), +(6820, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.687+00', '{"cached":null,"ignore_cache":false}'), +(6821, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.762+00', '{"cached":null,"ignore_cache":false}'), +(6822, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.833+00', '{"cached":null,"ignore_cache":false}'), +(6823, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:58.873+00', '{"cached":null,"ignore_cache":false}'), +(6824, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:59.021+00', '{"cached":null,"ignore_cache":false}'), +(6825, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:59.041+00', '{"cached":null,"ignore_cache":false}'), +(6826, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:59.077+00', '{"cached":null,"ignore_cache":false}'), +(6827, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:59.107+00', '{"cached":null,"ignore_cache":false}'), +(6828, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 12:58:59.259+00', '{"cached":null,"ignore_cache":false}'), +(6829, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.044+00', '{"cached":null,"ignore_cache":null}'), +(6830, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.795+00', '{"cached":null,"ignore_cache":false}'), +(6831, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.847+00', '{"cached":null,"ignore_cache":false}'), +(6832, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.909+00', '{"cached":null,"ignore_cache":false}'), +(6833, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.916+00', '{"cached":null,"ignore_cache":false}'), +(6834, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.947+00', '{"cached":null,"ignore_cache":false}'), +(6835, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:58.964+00', '{"cached":null,"ignore_cache":false}'), +(6836, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:59.014+00', '{"cached":null,"ignore_cache":false}'), +(6837, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:59.022+00', '{"cached":null,"ignore_cache":false}'), +(6838, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:03:59.109+00', '{"cached":null,"ignore_cache":false}'), +(6839, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:58.884+00', '{"cached":null,"ignore_cache":null}'), +(6840, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.729+00', '{"cached":null,"ignore_cache":false}'), +(6841, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.764+00', '{"cached":null,"ignore_cache":false}'), +(6842, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.909+00', '{"cached":null,"ignore_cache":false}'), +(6843, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:08:59.946+00', '{"cached":null,"ignore_cache":false}'), +(6844, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:09:00.007+00', '{"cached":null,"ignore_cache":false}'), +(6845, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:09:00.072+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6846, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:09:00.1+00', '{"cached":null,"ignore_cache":false}'), +(6847, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:09:00.155+00', '{"cached":null,"ignore_cache":false}'), +(6848, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:09:00.171+00', '{"cached":null,"ignore_cache":false}'), +(6849, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:13:58.033+00', '{"cached":null,"ignore_cache":null}'), +(6850, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:41.405+00', '{"cached":null,"ignore_cache":false}'), +(6851, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.238+00', '{"cached":null,"ignore_cache":false}'), +(6852, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.326+00', '{"cached":null,"ignore_cache":false}'), +(6853, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.42+00', '{"cached":null,"ignore_cache":false}'), +(6854, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.426+00', '{"cached":null,"ignore_cache":false}'), +(6855, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.449+00', '{"cached":null,"ignore_cache":false}'), +(6856, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.559+00', '{"cached":null,"ignore_cache":false}'), +(6857, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:42.562+00', '{"cached":null,"ignore_cache":false}'), +(6858, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.346+00', '{"cached":null,"ignore_cache":false}'), +(6859, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.486+00', '{"cached":null,"ignore_cache":false}'), +(6860, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.56+00', '{"cached":null,"ignore_cache":false}'), +(6861, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.563+00', '{"cached":null,"ignore_cache":false}'), +(6862, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.602+00', '{"cached":null,"ignore_cache":false}'), +(6863, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.64+00', '{"cached":null,"ignore_cache":false}'), +(6864, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.704+00', '{"cached":null,"ignore_cache":false}'), +(6865, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.798+00', '{"cached":null,"ignore_cache":false}'), +(6866, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.808+00', '{"cached":null,"ignore_cache":false}'), +(6867, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.839+00', '{"cached":null,"ignore_cache":false}'), +(6868, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:43.88+00', '{"cached":null,"ignore_cache":false}'), +(6869, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:44.038+00', '{"cached":null,"ignore_cache":false}'), +(6870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:44.059+00', '{"cached":null,"ignore_cache":false}'), +(6871, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:44.408+00', '{"cached":null,"ignore_cache":false}'), +(6872, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:44.438+00', '{"cached":null,"ignore_cache":false}'), +(6873, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:44.802+00', '{"cached":null,"ignore_cache":false}'), +(6874, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.23+00', '{"cached":null,"ignore_cache":false}'), +(6875, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.254+00', '{"cached":null,"ignore_cache":false}'), +(6876, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.367+00', '{"cached":null,"ignore_cache":false}'), +(6877, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.858+00', '{"cached":null,"ignore_cache":false}'), +(6878, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:57.858+00', '{"cached":null,"ignore_cache":false}'), +(6879, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.276+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6880, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.345+00', '{"cached":null,"ignore_cache":null}'), +(6881, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.389+00', '{"cached":null,"ignore_cache":false}'), +(6882, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.572+00', '{"cached":null,"ignore_cache":false}'), +(6883, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:58.748+00', '{"cached":null,"ignore_cache":false}'), +(6884, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.003+00', '{"cached":null,"ignore_cache":false}'), +(6885, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.034+00', '{"cached":null,"ignore_cache":false}'), +(6886, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.183+00', '{"cached":null,"ignore_cache":false}'), +(6887, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.352+00', '{"cached":null,"ignore_cache":false}'), +(6888, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:18:59.959+00', '{"cached":null,"ignore_cache":false}'), +(6889, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.62+00', '{"cached":null,"ignore_cache":false}'), +(6890, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:00.961+00', '{"cached":null,"ignore_cache":false}'), +(6891, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.016+00', '{"cached":null,"ignore_cache":false}'), +(6892, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.097+00', '{"cached":null,"ignore_cache":false}'), +(6893, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.611+00', '{"cached":null,"ignore_cache":false}'), +(6894, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.662+00', '{"cached":null,"ignore_cache":false}'), +(6895, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:01.718+00', '{"cached":null,"ignore_cache":false}'), +(6896, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:02.063+00', '{"cached":null,"ignore_cache":false}'), +(6897, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:02.143+00', '{"cached":null,"ignore_cache":false}'), +(6898, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:02.48+00', '{"cached":null,"ignore_cache":false}'), +(6899, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:03.097+00', '{"cached":null,"ignore_cache":false}'), +(6900, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:03.356+00', '{"cached":null,"ignore_cache":false}'), +(6901, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:03.623+00', '{"cached":null,"ignore_cache":false}'), +(6902, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:03.768+00', '{"cached":null,"ignore_cache":false}'), +(6903, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:03.805+00', '{"cached":null,"ignore_cache":false}'), +(6904, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:03.944+00', '{"cached":null,"ignore_cache":false}'), +(6905, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:04.096+00', '{"cached":null,"ignore_cache":false}'), +(6906, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:04.554+00', '{"cached":null,"ignore_cache":false}'), +(6907, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.115+00', '{"cached":null,"ignore_cache":false}'), +(6908, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:05.155+00', '{"cached":null,"ignore_cache":false}'), +(6909, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.716+00', '{"cached":null,"ignore_cache":false}'), +(6910, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.765+00', '{"cached":null,"ignore_cache":false}'), +(6911, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.782+00', '{"cached":null,"ignore_cache":false}'), +(6912, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.799+00', '{"cached":null,"ignore_cache":false}'), +(6913, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.822+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6914, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.831+00', '{"cached":null,"ignore_cache":false}'), +(6915, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.857+00', '{"cached":null,"ignore_cache":false}'), +(6916, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.872+00', '{"cached":null,"ignore_cache":false}'), +(6917, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.921+00', '{"cached":null,"ignore_cache":false}'), +(6918, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.924+00', '{"cached":null,"ignore_cache":false}'), +(6919, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.989+00', '{"cached":null,"ignore_cache":false}'), +(6920, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:09.994+00', '{"cached":null,"ignore_cache":false}'), +(6921, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:10.002+00', '{"cached":null,"ignore_cache":false}'), +(6922, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:10.017+00', '{"cached":null,"ignore_cache":false}'), +(6923, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:10.026+00', '{"cached":null,"ignore_cache":false}'), +(6924, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:10.08+00', '{"cached":null,"ignore_cache":false}'), +(6925, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.338+00', '{"cached":null,"ignore_cache":false}'), +(6926, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.383+00', '{"cached":null,"ignore_cache":false}'), +(6927, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.403+00', '{"cached":null,"ignore_cache":false}'), +(6928, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.454+00', '{"cached":null,"ignore_cache":false}'), +(6929, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.486+00', '{"cached":null,"ignore_cache":false}'), +(6930, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.529+00', '{"cached":null,"ignore_cache":false}'), +(6931, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.539+00', '{"cached":null,"ignore_cache":false}'), +(6932, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.55+00', '{"cached":null,"ignore_cache":false}'), +(6933, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.583+00', '{"cached":null,"ignore_cache":false}'), +(6934, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:26.92+00', '{"cached":null,"ignore_cache":false}'), +(6935, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:27.106+00', '{"cached":null,"ignore_cache":false}'), +(6936, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:27.11+00', '{"cached":null,"ignore_cache":false}'), +(6937, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:27.153+00', '{"cached":null,"ignore_cache":false}'), +(6938, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:27.158+00', '{"cached":null,"ignore_cache":false}'), +(6939, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:27.2+00', '{"cached":null,"ignore_cache":false}'), +(6940, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:27.23+00', '{"cached":null,"ignore_cache":false}'), +(6941, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.137+00', '{"cached":null,"ignore_cache":false}'), +(6942, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.247+00', '{"cached":null,"ignore_cache":false}'), +(6943, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.461+00', '{"cached":null,"ignore_cache":false}'), +(6944, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.539+00', '{"cached":null,"ignore_cache":false}'), +(6945, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.56+00', '{"cached":null,"ignore_cache":false}'), +(6946, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.642+00', '{"cached":null,"ignore_cache":false}'), +(6947, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.643+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6948, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.76+00', '{"cached":null,"ignore_cache":false}'), +(6949, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.884+00', '{"cached":null,"ignore_cache":false}'), +(6950, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.885+00', '{"cached":null,"ignore_cache":false}'), +(6951, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.948+00', '{"cached":null,"ignore_cache":false}'), +(6952, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.954+00', '{"cached":null,"ignore_cache":false}'), +(6953, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.965+00', '{"cached":null,"ignore_cache":false}'), +(6954, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.975+00', '{"cached":null,"ignore_cache":false}'), +(6955, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:40.985+00', '{"cached":null,"ignore_cache":false}'), +(6956, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:41+00', '{"cached":null,"ignore_cache":false}'), +(6957, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.1+00', '{"cached":null,"ignore_cache":false}'), +(6958, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.236+00', '{"cached":null,"ignore_cache":false}'), +(6959, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.318+00', '{"cached":null,"ignore_cache":false}'), +(6960, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.377+00', '{"cached":null,"ignore_cache":false}'), +(6961, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.427+00', '{"cached":null,"ignore_cache":false}'), +(6962, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.469+00', '{"cached":null,"ignore_cache":false}'), +(6963, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.492+00', '{"cached":null,"ignore_cache":false}'), +(6964, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.511+00', '{"cached":null,"ignore_cache":false}'), +(6965, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:57.564+00', '{"cached":null,"ignore_cache":false}'), +(6966, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.672+00', '{"cached":null,"ignore_cache":false}'), +(6967, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.792+00', '{"cached":null,"ignore_cache":false}'), +(6968, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.802+00', '{"cached":null,"ignore_cache":false}'), +(6969, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.812+00', '{"cached":null,"ignore_cache":false}'), +(6970, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.825+00', '{"cached":null,"ignore_cache":false}'), +(6971, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.834+00', '{"cached":null,"ignore_cache":false}'), +(6972, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:19:58.86+00', '{"cached":null,"ignore_cache":false}'), +(6973, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.964+00', '{"cached":null,"ignore_cache":false}'), +(6974, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.965+00', '{"cached":null,"ignore_cache":false}'), +(6975, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:09.966+00', '{"cached":null,"ignore_cache":false}'), +(6976, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.019+00', '{"cached":null,"ignore_cache":false}'), +(6977, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.124+00', '{"cached":null,"ignore_cache":false}'), +(6978, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.139+00', '{"cached":null,"ignore_cache":false}'), +(6979, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.163+00', '{"cached":null,"ignore_cache":false}'), +(6980, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.166+00', '{"cached":null,"ignore_cache":false}'), +(6981, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.193+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(6982, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.236+00', '{"cached":null,"ignore_cache":false}'), +(6983, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.259+00', '{"cached":null,"ignore_cache":false}'), +(6984, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.28+00', '{"cached":null,"ignore_cache":false}'), +(6985, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.298+00', '{"cached":null,"ignore_cache":false}'), +(6986, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.305+00', '{"cached":null,"ignore_cache":false}'), +(6987, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.308+00', '{"cached":null,"ignore_cache":false}'), +(6988, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:10.33+00', '{"cached":null,"ignore_cache":false}'), +(6989, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:26.903+00', '{"cached":null,"ignore_cache":false}'), +(6990, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.102+00', '{"cached":null,"ignore_cache":false}'), +(6991, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.113+00', '{"cached":null,"ignore_cache":false}'), +(6992, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.257+00', '{"cached":null,"ignore_cache":false}'), +(6993, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.279+00', '{"cached":null,"ignore_cache":false}'), +(6994, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.295+00', '{"cached":null,"ignore_cache":false}'), +(6995, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.359+00', '{"cached":null,"ignore_cache":false}'), +(6996, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.405+00', '{"cached":null,"ignore_cache":false}'), +(6997, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:27.436+00', '{"cached":null,"ignore_cache":false}'), +(6998, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.451+00', '{"cached":null,"ignore_cache":false}'), +(6999, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.583+00', '{"cached":null,"ignore_cache":false}'), +(7000, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.654+00', '{"cached":null,"ignore_cache":false}'), +(7001, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.826+00', '{"cached":null,"ignore_cache":false}'), +(7002, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:28.832+00', '{"cached":null,"ignore_cache":false}'), +(7003, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.037+00', '{"cached":null,"ignore_cache":false}'), +(7004, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.095+00', '{"cached":null,"ignore_cache":false}'), +(7005, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.538+00', '{"cached":null,"ignore_cache":false}'), +(7006, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.622+00', '{"cached":null,"ignore_cache":false}'), +(7007, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.628+00', '{"cached":null,"ignore_cache":false}'), +(7008, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.674+00', '{"cached":null,"ignore_cache":false}'), +(7009, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.687+00', '{"cached":null,"ignore_cache":false}'), +(7010, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.703+00', '{"cached":null,"ignore_cache":false}'), +(7011, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.709+00', '{"cached":null,"ignore_cache":false}'), +(7012, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.717+00', '{"cached":null,"ignore_cache":false}'), +(7013, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.873+00', '{"cached":null,"ignore_cache":false}'), +(7014, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.884+00', '{"cached":null,"ignore_cache":false}'), +(7015, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.889+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7016, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:29.901+00', '{"cached":null,"ignore_cache":false}'), +(7017, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.064+00', '{"cached":null,"ignore_cache":false}'), +(7018, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.315+00', '{"cached":null,"ignore_cache":false}'), +(7019, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.359+00', '{"cached":null,"ignore_cache":false}'), +(7020, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.396+00', '{"cached":null,"ignore_cache":false}'), +(7021, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.462+00', '{"cached":null,"ignore_cache":false}'), +(7022, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.581+00', '{"cached":null,"ignore_cache":false}'), +(7023, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.633+00', '{"cached":null,"ignore_cache":false}'), +(7024, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.666+00', '{"cached":null,"ignore_cache":false}'), +(7025, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:30.763+00', '{"cached":null,"ignore_cache":false}'), +(7026, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:39.899+00', '{"cached":null,"ignore_cache":false}'), +(7027, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.075+00', '{"cached":null,"ignore_cache":false}'), +(7028, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.083+00', '{"cached":null,"ignore_cache":false}'), +(7029, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.096+00', '{"cached":null,"ignore_cache":false}'), +(7030, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.103+00', '{"cached":null,"ignore_cache":false}'), +(7031, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.113+00', '{"cached":null,"ignore_cache":false}'), +(7032, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.132+00', '{"cached":null,"ignore_cache":false}'), +(7033, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.137+00', '{"cached":null,"ignore_cache":false}'), +(7034, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.137+00', '{"cached":null,"ignore_cache":false}'), +(7035, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.17+00', '{"cached":null,"ignore_cache":false}'), +(7036, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.173+00', '{"cached":null,"ignore_cache":false}'), +(7037, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.192+00', '{"cached":null,"ignore_cache":false}'), +(7038, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.202+00', '{"cached":null,"ignore_cache":false}'), +(7039, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.214+00', '{"cached":null,"ignore_cache":false}'), +(7040, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.233+00', '{"cached":null,"ignore_cache":false}'), +(7041, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:40.27+00', '{"cached":null,"ignore_cache":false}'), +(7042, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:56.898+00', '{"cached":null,"ignore_cache":false}'), +(7043, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.098+00', '{"cached":null,"ignore_cache":false}'), +(7044, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.12+00', '{"cached":null,"ignore_cache":false}'), +(7045, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.19+00', '{"cached":null,"ignore_cache":false}'), +(7046, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.374+00', '{"cached":null,"ignore_cache":false}'), +(7047, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.461+00', '{"cached":null,"ignore_cache":false}'), +(7048, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.537+00', '{"cached":null,"ignore_cache":false}'), +(7049, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.61+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7050, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:57.708+00', '{"cached":null,"ignore_cache":false}'), +(7051, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.38+00', '{"cached":null,"ignore_cache":false}'), +(7052, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.656+00', '{"cached":null,"ignore_cache":false}'), +(7053, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.734+00', '{"cached":null,"ignore_cache":false}'), +(7054, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.748+00', '{"cached":null,"ignore_cache":false}'), +(7055, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.756+00', '{"cached":null,"ignore_cache":false}'), +(7056, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.8+00', '{"cached":null,"ignore_cache":false}'), +(7057, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.983+00', '{"cached":null,"ignore_cache":false}'), +(7058, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:58.993+00', '{"cached":null,"ignore_cache":false}'), +(7059, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.081+00', '{"cached":null,"ignore_cache":false}'), +(7060, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.086+00', '{"cached":null,"ignore_cache":false}'), +(7061, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.108+00', '{"cached":null,"ignore_cache":false}'), +(7062, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.115+00', '{"cached":null,"ignore_cache":false}'), +(7063, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.126+00', '{"cached":null,"ignore_cache":false}'), +(7064, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.132+00', '{"cached":null,"ignore_cache":false}'), +(7065, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.23+00', '{"cached":null,"ignore_cache":false}'), +(7066, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.358+00', '{"cached":null,"ignore_cache":false}'), +(7067, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.756+00', '{"cached":null,"ignore_cache":false}'), +(7068, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.79+00', '{"cached":null,"ignore_cache":false}'), +(7069, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.809+00', '{"cached":null,"ignore_cache":false}'), +(7070, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.907+00', '{"cached":null,"ignore_cache":false}'), +(7071, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.912+00', '{"cached":null,"ignore_cache":false}'), +(7072, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.974+00', '{"cached":null,"ignore_cache":false}'), +(7073, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:20:59.975+00', '{"cached":null,"ignore_cache":false}'), +(7074, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.25+00', '{"cached":null,"ignore_cache":false}'), +(7075, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.304+00', '{"cached":null,"ignore_cache":false}'), +(7076, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.578+00', '{"cached":null,"ignore_cache":false}'), +(7077, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.77+00', '{"cached":null,"ignore_cache":false}'), +(7078, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.947+00', '{"cached":null,"ignore_cache":false}'), +(7079, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:09.988+00', '{"cached":null,"ignore_cache":false}'), +(7080, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.015+00', '{"cached":null,"ignore_cache":false}'), +(7081, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.022+00', '{"cached":null,"ignore_cache":false}'), +(7082, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.047+00', '{"cached":null,"ignore_cache":false}'), +(7083, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.106+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7084, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.122+00', '{"cached":null,"ignore_cache":false}'), +(7085, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.127+00', '{"cached":null,"ignore_cache":false}'), +(7086, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.131+00', '{"cached":null,"ignore_cache":false}'), +(7087, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.144+00', '{"cached":null,"ignore_cache":false}'), +(7088, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.322+00', '{"cached":null,"ignore_cache":false}'), +(7089, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.35+00', '{"cached":null,"ignore_cache":false}'), +(7090, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.414+00', '{"cached":null,"ignore_cache":false}'), +(7091, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.417+00', '{"cached":null,"ignore_cache":false}'), +(7092, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.436+00', '{"cached":null,"ignore_cache":false}'), +(7093, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.445+00', '{"cached":null,"ignore_cache":false}'), +(7094, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.454+00', '{"cached":null,"ignore_cache":false}'), +(7095, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.491+00', '{"cached":null,"ignore_cache":false}'), +(7096, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.833+00', '{"cached":null,"ignore_cache":false}'), +(7097, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.861+00', '{"cached":null,"ignore_cache":false}'), +(7098, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:10.927+00', '{"cached":null,"ignore_cache":false}'), +(7099, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.734+00', '{"cached":null,"ignore_cache":false}'), +(7100, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.735+00', '{"cached":null,"ignore_cache":false}'), +(7101, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.754+00', '{"cached":null,"ignore_cache":false}'), +(7102, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.758+00', '{"cached":null,"ignore_cache":false}'), +(7103, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.762+00', '{"cached":null,"ignore_cache":false}'), +(7104, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.771+00', '{"cached":null,"ignore_cache":false}'), +(7105, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.82+00', '{"cached":null,"ignore_cache":false}'), +(7106, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.846+00', '{"cached":null,"ignore_cache":false}'), +(7107, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.913+00', '{"cached":null,"ignore_cache":false}'), +(7108, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:11.997+00', '{"cached":null,"ignore_cache":false}'), +(7109, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:12.119+00', '{"cached":null,"ignore_cache":false}'), +(7110, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:12.15+00', '{"cached":null,"ignore_cache":false}'), +(7111, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:12.191+00', '{"cached":null,"ignore_cache":false}'), +(7112, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:12.205+00', '{"cached":null,"ignore_cache":false}'), +(7113, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:12.226+00', '{"cached":null,"ignore_cache":false}'), +(7114, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:12.261+00', '{"cached":null,"ignore_cache":false}'), +(7115, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.136+00', '{"cached":null,"ignore_cache":false}'), +(7116, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.254+00', '{"cached":null,"ignore_cache":false}'), +(7117, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.369+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7118, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.4+00', '{"cached":null,"ignore_cache":false}'), +(7119, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.532+00', '{"cached":null,"ignore_cache":false}'), +(7120, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.57+00', '{"cached":null,"ignore_cache":false}'), +(7121, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.579+00', '{"cached":null,"ignore_cache":false}'), +(7122, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.586+00', '{"cached":null,"ignore_cache":false}'), +(7123, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:27.698+00', '{"cached":null,"ignore_cache":false}'), +(7124, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.641+00', '{"cached":null,"ignore_cache":false}'), +(7125, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.702+00', '{"cached":null,"ignore_cache":false}'), +(7126, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.771+00', '{"cached":null,"ignore_cache":false}'), +(7127, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.81+00', '{"cached":null,"ignore_cache":false}'), +(7128, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.841+00', '{"cached":null,"ignore_cache":false}'), +(7129, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.877+00', '{"cached":null,"ignore_cache":false}'), +(7130, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:29.923+00', '{"cached":null,"ignore_cache":false}'), +(7131, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.343+00', '{"cached":null,"ignore_cache":false}'), +(7132, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.519+00', '{"cached":null,"ignore_cache":false}'), +(7133, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.584+00', '{"cached":null,"ignore_cache":false}'), +(7134, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.59+00', '{"cached":null,"ignore_cache":false}'), +(7135, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.594+00', '{"cached":null,"ignore_cache":false}'), +(7136, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.613+00', '{"cached":null,"ignore_cache":false}'), +(7137, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.732+00', '{"cached":null,"ignore_cache":false}'), +(7138, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.744+00', '{"cached":null,"ignore_cache":false}'), +(7139, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.759+00', '{"cached":null,"ignore_cache":false}'), +(7140, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.765+00', '{"cached":null,"ignore_cache":false}'), +(7141, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.801+00', '{"cached":null,"ignore_cache":false}'), +(7142, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.819+00', '{"cached":null,"ignore_cache":false}'), +(7143, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.829+00', '{"cached":null,"ignore_cache":false}'), +(7144, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.838+00', '{"cached":null,"ignore_cache":false}'), +(7145, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.852+00', '{"cached":null,"ignore_cache":false}'), +(7146, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:38.868+00', '{"cached":null,"ignore_cache":false}'), +(7147, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.055+00', '{"cached":null,"ignore_cache":false}'), +(7148, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.087+00', '{"cached":null,"ignore_cache":false}'), +(7149, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.295+00', '{"cached":null,"ignore_cache":false}'), +(7150, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.351+00', '{"cached":null,"ignore_cache":false}'), +(7151, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.364+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7152, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.471+00', '{"cached":null,"ignore_cache":false}'), +(7153, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.475+00', '{"cached":null,"ignore_cache":false}'), +(7154, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.506+00', '{"cached":null,"ignore_cache":false}'), +(7155, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.52+00', '{"cached":null,"ignore_cache":false}'), +(7156, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.534+00', '{"cached":null,"ignore_cache":false}'), +(7157, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.563+00', '{"cached":null,"ignore_cache":false}'), +(7158, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.576+00', '{"cached":null,"ignore_cache":false}'), +(7159, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.595+00', '{"cached":null,"ignore_cache":false}'), +(7160, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.614+00', '{"cached":null,"ignore_cache":false}'), +(7161, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.633+00', '{"cached":null,"ignore_cache":false}'), +(7162, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:40.695+00', '{"cached":null,"ignore_cache":false}'), +(7163, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.681+00', '{"cached":null,"ignore_cache":false}'), +(7164, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.708+00', '{"cached":null,"ignore_cache":false}'), +(7165, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.715+00', '{"cached":null,"ignore_cache":false}'), +(7166, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.91+00', '{"cached":null,"ignore_cache":false}'), +(7167, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.947+00', '{"cached":null,"ignore_cache":false}'), +(7168, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.953+00', '{"cached":null,"ignore_cache":false}'), +(7169, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.958+00', '{"cached":null,"ignore_cache":false}'), +(7170, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.973+00', '{"cached":null,"ignore_cache":false}'), +(7171, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:56.973+00', '{"cached":null,"ignore_cache":false}'), +(7172, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.382+00', '{"cached":null,"ignore_cache":false}'), +(7173, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.392+00', '{"cached":null,"ignore_cache":false}'), +(7174, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.446+00', '{"cached":null,"ignore_cache":false}'), +(7175, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.447+00', '{"cached":null,"ignore_cache":false}'), +(7176, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.457+00', '{"cached":null,"ignore_cache":false}'), +(7177, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.482+00', '{"cached":null,"ignore_cache":false}'), +(7178, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:21:59.485+00', '{"cached":null,"ignore_cache":false}'), +(7179, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.265+00', '{"cached":null,"ignore_cache":false}'), +(7180, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.347+00', '{"cached":null,"ignore_cache":false}'), +(7181, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.409+00', '{"cached":null,"ignore_cache":false}'), +(7182, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.426+00', '{"cached":null,"ignore_cache":false}'), +(7183, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.43+00', '{"cached":null,"ignore_cache":false}'), +(7184, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.492+00', '{"cached":null,"ignore_cache":false}'), +(7185, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.493+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7186, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.516+00', '{"cached":null,"ignore_cache":false}'), +(7187, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.519+00', '{"cached":null,"ignore_cache":false}'), +(7188, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.564+00', '{"cached":null,"ignore_cache":false}'), +(7189, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.601+00', '{"cached":null,"ignore_cache":false}'), +(7190, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.601+00', '{"cached":null,"ignore_cache":false}'), +(7191, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.609+00', '{"cached":null,"ignore_cache":false}'), +(7192, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.616+00', '{"cached":null,"ignore_cache":false}'), +(7193, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.637+00', '{"cached":null,"ignore_cache":false}'), +(7194, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:08.64+00', '{"cached":null,"ignore_cache":false}'), +(7195, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.077+00', '{"cached":null,"ignore_cache":false}'), +(7196, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.171+00', '{"cached":null,"ignore_cache":false}'), +(7197, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.172+00', '{"cached":null,"ignore_cache":false}'), +(7198, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.25+00', '{"cached":null,"ignore_cache":false}'), +(7199, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.442+00', '{"cached":null,"ignore_cache":false}'), +(7200, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.51+00', '{"cached":null,"ignore_cache":false}'), +(7201, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.553+00', '{"cached":null,"ignore_cache":false}'), +(7202, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.576+00', '{"cached":null,"ignore_cache":false}'), +(7203, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.577+00', '{"cached":null,"ignore_cache":false}'), +(7204, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.606+00', '{"cached":null,"ignore_cache":false}'), +(7205, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.608+00', '{"cached":null,"ignore_cache":false}'), +(7206, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.609+00', '{"cached":null,"ignore_cache":false}'), +(7207, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.633+00', '{"cached":null,"ignore_cache":false}'), +(7208, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.654+00', '{"cached":null,"ignore_cache":false}'), +(7209, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.654+00', '{"cached":null,"ignore_cache":false}'), +(7210, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:10.659+00', '{"cached":null,"ignore_cache":false}'), +(7211, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.577+00', '{"cached":null,"ignore_cache":false}'), +(7212, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.653+00', '{"cached":null,"ignore_cache":false}'), +(7213, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.662+00', '{"cached":null,"ignore_cache":false}'), +(7214, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.714+00', '{"cached":null,"ignore_cache":false}'), +(7215, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.773+00', '{"cached":null,"ignore_cache":false}'), +(7216, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.855+00', '{"cached":null,"ignore_cache":false}'), +(7217, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.908+00', '{"cached":null,"ignore_cache":false}'), +(7218, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:26.947+00', '{"cached":null,"ignore_cache":false}'), +(7219, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:27.164+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7220, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.524+00', '{"cached":null,"ignore_cache":false}'), +(7221, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.556+00', '{"cached":null,"ignore_cache":false}'), +(7222, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.562+00', '{"cached":null,"ignore_cache":false}'), +(7223, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.612+00', '{"cached":null,"ignore_cache":false}'), +(7224, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.629+00', '{"cached":null,"ignore_cache":false}'), +(7225, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.659+00', '{"cached":null,"ignore_cache":false}'), +(7226, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:29.66+00', '{"cached":null,"ignore_cache":false}'), +(7227, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.856+00', '{"cached":null,"ignore_cache":false}'), +(7228, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.878+00', '{"cached":null,"ignore_cache":false}'), +(7229, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.92+00', '{"cached":null,"ignore_cache":false}'), +(7230, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.952+00', '{"cached":null,"ignore_cache":false}'), +(7231, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:39.99+00', '{"cached":null,"ignore_cache":false}'), +(7232, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.013+00', '{"cached":null,"ignore_cache":false}'), +(7233, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.026+00', '{"cached":null,"ignore_cache":false}'), +(7234, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.028+00', '{"cached":null,"ignore_cache":false}'), +(7235, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.029+00', '{"cached":null,"ignore_cache":false}'), +(7236, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.04+00', '{"cached":null,"ignore_cache":false}'), +(7237, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.053+00', '{"cached":null,"ignore_cache":false}'), +(7238, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.059+00', '{"cached":null,"ignore_cache":false}'), +(7239, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.062+00', '{"cached":null,"ignore_cache":false}'), +(7240, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.099+00', '{"cached":null,"ignore_cache":false}'), +(7241, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.102+00', '{"cached":null,"ignore_cache":false}'), +(7242, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:40.105+00', '{"cached":null,"ignore_cache":false}'), +(7243, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.788+00', '{"cached":null,"ignore_cache":false}'), +(7244, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.827+00', '{"cached":null,"ignore_cache":false}'), +(7245, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.935+00', '{"cached":null,"ignore_cache":false}'), +(7246, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:41.972+00', '{"cached":null,"ignore_cache":false}'), +(7247, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.002+00', '{"cached":null,"ignore_cache":false}'), +(7248, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.033+00', '{"cached":null,"ignore_cache":false}'), +(7249, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.041+00', '{"cached":null,"ignore_cache":false}'), +(7250, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.051+00', '{"cached":null,"ignore_cache":false}'), +(7251, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.082+00', '{"cached":null,"ignore_cache":false}'), +(7252, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.09+00', '{"cached":null,"ignore_cache":false}'), +(7253, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.201+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7254, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.203+00', '{"cached":null,"ignore_cache":false}'), +(7255, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.242+00', '{"cached":null,"ignore_cache":false}'), +(7256, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.242+00', '{"cached":null,"ignore_cache":false}'), +(7257, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.245+00', '{"cached":null,"ignore_cache":false}'), +(7258, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:42.254+00', '{"cached":null,"ignore_cache":false}'), +(7259, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.053+00', '{"cached":null,"ignore_cache":false}'), +(7260, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.314+00', '{"cached":null,"ignore_cache":false}'), +(7261, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.331+00', '{"cached":null,"ignore_cache":false}'), +(7262, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.36+00', '{"cached":null,"ignore_cache":false}'), +(7263, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.506+00', '{"cached":null,"ignore_cache":false}'), +(7264, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.517+00', '{"cached":null,"ignore_cache":false}'), +(7265, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.522+00', '{"cached":null,"ignore_cache":false}'), +(7266, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.536+00', '{"cached":null,"ignore_cache":false}'), +(7267, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:57.691+00', '{"cached":null,"ignore_cache":false}'), +(7268, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.678+00', '{"cached":null,"ignore_cache":false}'), +(7269, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.719+00', '{"cached":null,"ignore_cache":false}'), +(7270, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.727+00', '{"cached":null,"ignore_cache":false}'), +(7271, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.77+00', '{"cached":null,"ignore_cache":false}'), +(7272, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.815+00', '{"cached":null,"ignore_cache":false}'), +(7273, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.877+00', '{"cached":null,"ignore_cache":false}'), +(7274, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:22:59.884+00', '{"cached":null,"ignore_cache":false}'), +(7275, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.925+00', '{"cached":null,"ignore_cache":false}'), +(7276, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:09.978+00', '{"cached":null,"ignore_cache":false}'), +(7277, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.211+00', '{"cached":null,"ignore_cache":false}'), +(7278, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.22+00', '{"cached":null,"ignore_cache":false}'), +(7279, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.242+00', '{"cached":null,"ignore_cache":false}'), +(7280, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.321+00', '{"cached":null,"ignore_cache":false}'), +(7281, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.362+00', '{"cached":null,"ignore_cache":false}'), +(7282, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.363+00', '{"cached":null,"ignore_cache":false}'), +(7283, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.366+00', '{"cached":null,"ignore_cache":false}'), +(7284, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.426+00', '{"cached":null,"ignore_cache":false}'), +(7285, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.45+00', '{"cached":null,"ignore_cache":false}'), +(7286, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.47+00', '{"cached":null,"ignore_cache":false}'), +(7287, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.518+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7288, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.53+00', '{"cached":null,"ignore_cache":false}'), +(7289, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.561+00', '{"cached":null,"ignore_cache":false}'), +(7290, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:10.574+00', '{"cached":null,"ignore_cache":false}'), +(7291, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.742+00', '{"cached":null,"ignore_cache":false}'), +(7292, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.868+00', '{"cached":null,"ignore_cache":false}'), +(7293, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.886+00', '{"cached":null,"ignore_cache":false}'), +(7294, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.892+00', '{"cached":null,"ignore_cache":false}'), +(7295, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.897+00', '{"cached":null,"ignore_cache":false}'), +(7296, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.911+00', '{"cached":null,"ignore_cache":false}'), +(7297, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.92+00', '{"cached":null,"ignore_cache":false}'), +(7298, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.927+00', '{"cached":null,"ignore_cache":false}'), +(7299, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.931+00', '{"cached":null,"ignore_cache":false}'), +(7300, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.951+00', '{"cached":null,"ignore_cache":false}'), +(7301, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.959+00', '{"cached":null,"ignore_cache":false}'), +(7302, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.972+00', '{"cached":null,"ignore_cache":false}'), +(7303, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.976+00', '{"cached":null,"ignore_cache":false}'), +(7304, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.98+00', '{"cached":null,"ignore_cache":false}'), +(7305, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.985+00', '{"cached":null,"ignore_cache":false}'), +(7306, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:14.997+00', '{"cached":null,"ignore_cache":false}'), +(7307, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.706+00', '{"cached":null,"ignore_cache":false}'), +(7308, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.706+00', '{"cached":null,"ignore_cache":false}'), +(7309, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.71+00', '{"cached":null,"ignore_cache":false}'), +(7310, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.712+00', '{"cached":null,"ignore_cache":false}'), +(7311, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.722+00', '{"cached":null,"ignore_cache":false}'), +(7312, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.75+00', '{"cached":null,"ignore_cache":false}'), +(7313, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.821+00', '{"cached":null,"ignore_cache":false}'), +(7314, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.924+00', '{"cached":null,"ignore_cache":false}'), +(7315, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:26.964+00', '{"cached":null,"ignore_cache":false}'), +(7316, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.525+00', '{"cached":null,"ignore_cache":false}'), +(7317, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.603+00', '{"cached":null,"ignore_cache":false}'), +(7318, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.63+00', '{"cached":null,"ignore_cache":false}'), +(7319, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.631+00', '{"cached":null,"ignore_cache":false}'), +(7320, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.641+00', '{"cached":null,"ignore_cache":false}'), +(7321, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.671+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7322, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:30.71+00', '{"cached":null,"ignore_cache":false}'), +(7323, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.768+00', '{"cached":null,"ignore_cache":false}'), +(7324, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.91+00', '{"cached":null,"ignore_cache":false}'), +(7325, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:41.931+00', '{"cached":null,"ignore_cache":false}'), +(7326, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.072+00', '{"cached":null,"ignore_cache":false}'), +(7327, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.096+00', '{"cached":null,"ignore_cache":false}'), +(7328, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.141+00', '{"cached":null,"ignore_cache":false}'), +(7329, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.157+00', '{"cached":null,"ignore_cache":false}'), +(7330, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.164+00', '{"cached":null,"ignore_cache":false}'), +(7331, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.187+00', '{"cached":null,"ignore_cache":false}'), +(7332, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.207+00', '{"cached":null,"ignore_cache":false}'), +(7333, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.244+00', '{"cached":null,"ignore_cache":false}'), +(7334, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.258+00', '{"cached":null,"ignore_cache":false}'), +(7335, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.267+00', '{"cached":null,"ignore_cache":false}'), +(7336, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.271+00', '{"cached":null,"ignore_cache":false}'), +(7337, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.275+00', '{"cached":null,"ignore_cache":false}'), +(7338, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:42.326+00', '{"cached":null,"ignore_cache":false}'), +(7339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.165+00', '{"cached":null,"ignore_cache":false}'), +(7340, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.178+00', '{"cached":null,"ignore_cache":false}'), +(7341, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.212+00', '{"cached":null,"ignore_cache":false}'), +(7342, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.274+00', '{"cached":null,"ignore_cache":false}'), +(7343, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.285+00', '{"cached":null,"ignore_cache":false}'), +(7344, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.326+00', '{"cached":null,"ignore_cache":false}'), +(7345, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.347+00', '{"cached":null,"ignore_cache":false}'), +(7346, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.381+00', '{"cached":null,"ignore_cache":false}'), +(7347, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.415+00', '{"cached":null,"ignore_cache":false}'), +(7348, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.416+00', '{"cached":null,"ignore_cache":false}'), +(7349, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.435+00', '{"cached":null,"ignore_cache":false}'), +(7350, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.461+00', '{"cached":null,"ignore_cache":false}'), +(7351, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.533+00', '{"cached":null,"ignore_cache":false}'), +(7352, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.598+00', '{"cached":null,"ignore_cache":false}'), +(7353, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.599+00', '{"cached":null,"ignore_cache":false}'), +(7354, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:45.599+00', '{"cached":null,"ignore_cache":false}'), +(7355, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.617+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7356, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.742+00', '{"cached":null,"ignore_cache":false}'), +(7357, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.768+00', '{"cached":null,"ignore_cache":false}'), +(7358, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.794+00', '{"cached":null,"ignore_cache":false}'), +(7359, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.826+00', '{"cached":null,"ignore_cache":false}'), +(7360, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.905+00', '{"cached":null,"ignore_cache":false}'), +(7361, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.944+00', '{"cached":null,"ignore_cache":false}'), +(7362, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.945+00', '{"cached":null,"ignore_cache":false}'), +(7363, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:56.959+00', '{"cached":null,"ignore_cache":false}'), +(7364, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:57.535+00', '{"cached":null,"ignore_cache":null}'), +(7365, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.353+00', '{"cached":null,"ignore_cache":false}'), +(7366, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.354+00', '{"cached":null,"ignore_cache":false}'), +(7367, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.43+00', '{"cached":null,"ignore_cache":false}'), +(7368, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.43+00', '{"cached":null,"ignore_cache":false}'), +(7369, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.47+00', '{"cached":null,"ignore_cache":false}'), +(7370, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.477+00', '{"cached":null,"ignore_cache":false}'), +(7371, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.481+00', '{"cached":null,"ignore_cache":false}'), +(7372, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.488+00', '{"cached":null,"ignore_cache":false}'), +(7373, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:23:58.628+00', '{"cached":null,"ignore_cache":false}'), +(7374, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.482+00', '{"cached":null,"ignore_cache":false}'), +(7375, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.488+00', '{"cached":null,"ignore_cache":false}'), +(7376, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.496+00', '{"cached":null,"ignore_cache":false}'), +(7377, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.502+00', '{"cached":null,"ignore_cache":false}'), +(7378, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.52+00', '{"cached":null,"ignore_cache":false}'), +(7379, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.538+00', '{"cached":null,"ignore_cache":false}'), +(7380, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:00.602+00', '{"cached":null,"ignore_cache":false}'), +(7381, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.665+00', '{"cached":null,"ignore_cache":false}'), +(7382, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:09.852+00', '{"cached":null,"ignore_cache":false}'), +(7383, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.045+00', '{"cached":null,"ignore_cache":false}'), +(7384, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.064+00', '{"cached":null,"ignore_cache":false}'), +(7385, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.101+00', '{"cached":null,"ignore_cache":false}'), +(7386, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.122+00', '{"cached":null,"ignore_cache":false}'), +(7387, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.14+00', '{"cached":null,"ignore_cache":false}'), +(7388, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.226+00', '{"cached":null,"ignore_cache":false}'), +(7389, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.283+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7390, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.299+00', '{"cached":null,"ignore_cache":false}'), +(7391, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.328+00', '{"cached":null,"ignore_cache":false}'), +(7392, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.333+00', '{"cached":null,"ignore_cache":false}'), +(7393, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.344+00', '{"cached":null,"ignore_cache":false}'), +(7394, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.357+00', '{"cached":null,"ignore_cache":false}'), +(7395, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.37+00', '{"cached":null,"ignore_cache":false}'), +(7396, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:10.372+00', '{"cached":null,"ignore_cache":false}'), +(7397, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.174+00', '{"cached":null,"ignore_cache":false}'), +(7398, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.279+00', '{"cached":null,"ignore_cache":false}'), +(7399, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.285+00', '{"cached":null,"ignore_cache":false}'), +(7400, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.296+00', '{"cached":null,"ignore_cache":false}'), +(7401, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.306+00', '{"cached":null,"ignore_cache":false}'), +(7402, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.307+00', '{"cached":null,"ignore_cache":false}'), +(7403, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.331+00', '{"cached":null,"ignore_cache":false}'), +(7404, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.378+00', '{"cached":null,"ignore_cache":false}'), +(7405, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.435+00', '{"cached":null,"ignore_cache":false}'), +(7406, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.451+00', '{"cached":null,"ignore_cache":false}'), +(7407, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.456+00', '{"cached":null,"ignore_cache":false}'), +(7408, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.464+00', '{"cached":null,"ignore_cache":false}'), +(7409, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.486+00', '{"cached":null,"ignore_cache":false}'), +(7410, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.511+00', '{"cached":null,"ignore_cache":false}'), +(7411, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.556+00', '{"cached":null,"ignore_cache":false}'), +(7412, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:15.61+00', '{"cached":null,"ignore_cache":false}'), +(7413, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.83+00', '{"cached":null,"ignore_cache":false}'), +(7414, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.867+00', '{"cached":null,"ignore_cache":false}'), +(7415, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:26.988+00', '{"cached":null,"ignore_cache":false}'), +(7416, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:27.054+00', '{"cached":null,"ignore_cache":false}'), +(7417, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:27.077+00', '{"cached":null,"ignore_cache":false}'), +(7418, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:27.133+00', '{"cached":null,"ignore_cache":false}'), +(7419, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:27.19+00', '{"cached":null,"ignore_cache":false}'), +(7420, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:27.196+00', '{"cached":null,"ignore_cache":false}'), +(7421, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:27.356+00', '{"cached":null,"ignore_cache":false}'), +(7422, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.431+00', '{"cached":null,"ignore_cache":false}'), +(7423, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.444+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7424, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.45+00', '{"cached":null,"ignore_cache":false}'), +(7425, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.472+00', '{"cached":null,"ignore_cache":false}'), +(7426, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.479+00', '{"cached":null,"ignore_cache":false}'), +(7427, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.482+00', '{"cached":null,"ignore_cache":false}'), +(7428, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:30.485+00', '{"cached":null,"ignore_cache":false}'), +(7429, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:37.648+00', '{"cached":null,"ignore_cache":null}'), +(7430, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.126+00', '{"cached":null,"ignore_cache":false}'), +(7431, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.148+00', '{"cached":null,"ignore_cache":false}'), +(7432, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.193+00', '{"cached":null,"ignore_cache":false}'), +(7433, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.214+00', '{"cached":null,"ignore_cache":false}'), +(7434, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.222+00', '{"cached":null,"ignore_cache":false}'), +(7435, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.265+00', '{"cached":null,"ignore_cache":false}'), +(7436, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.271+00', '{"cached":null,"ignore_cache":false}'), +(7437, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.281+00', '{"cached":null,"ignore_cache":false}'), +(7438, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:38.36+00', '{"cached":null,"ignore_cache":false}'), +(7439, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.309+00', '{"cached":null,"ignore_cache":false}'), +(7440, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.331+00', '{"cached":null,"ignore_cache":false}'), +(7441, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.459+00', '{"cached":null,"ignore_cache":false}'), +(7442, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.481+00', '{"cached":null,"ignore_cache":false}'), +(7443, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.501+00', '{"cached":null,"ignore_cache":false}'), +(7444, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.514+00', '{"cached":null,"ignore_cache":false}'), +(7445, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.548+00', '{"cached":null,"ignore_cache":false}'), +(7446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.572+00', '{"cached":null,"ignore_cache":false}'), +(7447, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.572+00', '{"cached":null,"ignore_cache":false}'), +(7448, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.61+00', '{"cached":null,"ignore_cache":false}'), +(7449, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.627+00', '{"cached":null,"ignore_cache":false}'), +(7450, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.652+00', '{"cached":null,"ignore_cache":false}'), +(7451, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.664+00', '{"cached":null,"ignore_cache":false}'), +(7452, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.675+00', '{"cached":null,"ignore_cache":false}'), +(7453, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.697+00', '{"cached":null,"ignore_cache":false}'), +(7454, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:39.706+00', '{"cached":null,"ignore_cache":false}'), +(7455, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.216+00', '{"cached":null,"ignore_cache":false}'), +(7456, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.224+00', '{"cached":null,"ignore_cache":false}'), +(7457, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.341+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7458, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.385+00', '{"cached":null,"ignore_cache":false}'), +(7459, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.486+00', '{"cached":null,"ignore_cache":false}'), +(7460, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.56+00', '{"cached":null,"ignore_cache":false}'), +(7461, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.668+00', '{"cached":null,"ignore_cache":false}'), +(7462, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.686+00', '{"cached":null,"ignore_cache":false}'), +(7463, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.728+00', '{"cached":null,"ignore_cache":false}'), +(7464, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.778+00', '{"cached":null,"ignore_cache":false}'), +(7465, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.907+00', '{"cached":null,"ignore_cache":false}'), +(7466, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.929+00', '{"cached":null,"ignore_cache":false}'), +(7467, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.936+00', '{"cached":null,"ignore_cache":false}'), +(7468, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:45.993+00', '{"cached":null,"ignore_cache":false}'), +(7469, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:46.009+00', '{"cached":null,"ignore_cache":false}'), +(7470, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:24:46.216+00', '{"cached":null,"ignore_cache":false}'), +(7471, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.544+00', '{"cached":null,"ignore_cache":false}'), +(7472, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.614+00', '{"cached":null,"ignore_cache":false}'), +(7473, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.668+00', '{"cached":null,"ignore_cache":false}'), +(7474, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.771+00', '{"cached":null,"ignore_cache":false}'), +(7475, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.799+00', '{"cached":null,"ignore_cache":false}'), +(7476, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.834+00', '{"cached":null,"ignore_cache":false}'), +(7477, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.871+00', '{"cached":null,"ignore_cache":false}'), +(7478, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.916+00', '{"cached":null,"ignore_cache":false}'), +(7479, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:13.939+00', '{"cached":null,"ignore_cache":false}'), +(7480, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:15.226+00', '{"cached":null,"ignore_cache":false}'), +(7481, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:15.271+00', '{"cached":null,"ignore_cache":false}'), +(7482, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.049+00', '{"cached":null,"ignore_cache":false}'), +(7483, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.058+00', '{"cached":null,"ignore_cache":false}'), +(7484, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:16.273+00', '{"cached":null,"ignore_cache":false}'), +(7485, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.063+00', '{"cached":null,"ignore_cache":false}'), +(7486, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:17.288+00', '{"cached":null,"ignore_cache":false}'), +(7487, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.162+00', '{"cached":null,"ignore_cache":false}'), +(7488, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.176+00', '{"cached":null,"ignore_cache":false}'), +(7489, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.773+00', '{"cached":null,"ignore_cache":false}'), +(7490, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.806+00', '{"cached":null,"ignore_cache":false}'), +(7491, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:18.904+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7492, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.115+00', '{"cached":null,"ignore_cache":false}'), +(7493, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.171+00', '{"cached":null,"ignore_cache":false}'), +(7494, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.602+00', '{"cached":null,"ignore_cache":false}'), +(7495, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:19.836+00', '{"cached":null,"ignore_cache":false}'), +(7496, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:20.96+00', '{"cached":null,"ignore_cache":false}'), +(7497, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.039+00', '{"cached":null,"ignore_cache":false}'), +(7498, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.045+00', '{"cached":null,"ignore_cache":false}'), +(7499, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.26+00', '{"cached":null,"ignore_cache":false}'), +(7500, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.288+00', '{"cached":null,"ignore_cache":false}'), +(7501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.456+00', '{"cached":null,"ignore_cache":false}'), +(7502, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.595+00', '{"cached":null,"ignore_cache":false}'), +(7503, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.667+00', '{"cached":null,"ignore_cache":false}'), +(7504, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:22.834+00', '{"cached":null,"ignore_cache":false}'), +(7505, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.579+00', '{"cached":null,"ignore_cache":false}'), +(7506, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.603+00', '{"cached":null,"ignore_cache":false}'), +(7507, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.622+00', '{"cached":null,"ignore_cache":false}'), +(7508, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.638+00', '{"cached":null,"ignore_cache":false}'), +(7509, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.811+00', '{"cached":null,"ignore_cache":false}'), +(7510, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:23.985+00', '{"cached":null,"ignore_cache":false}'), +(7511, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.016+00', '{"cached":null,"ignore_cache":false}'), +(7512, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.028+00', '{"cached":null,"ignore_cache":false}'), +(7513, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.051+00', '{"cached":null,"ignore_cache":false}'), +(7514, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.12+00', '{"cached":null,"ignore_cache":false}'), +(7515, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.137+00', '{"cached":null,"ignore_cache":false}'), +(7516, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.194+00', '{"cached":null,"ignore_cache":false}'), +(7517, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.531+00', '{"cached":null,"ignore_cache":false}'), +(7518, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.607+00', '{"cached":null,"ignore_cache":false}'), +(7519, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.627+00', '{"cached":null,"ignore_cache":false}'), +(7520, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.658+00', '{"cached":null,"ignore_cache":false}'), +(7521, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:24.679+00', '{"cached":null,"ignore_cache":false}'), +(7522, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:25.281+00', '{"cached":null,"ignore_cache":false}'), +(7523, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:25.435+00', '{"cached":null,"ignore_cache":false}'), +(7524, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:25.639+00', '{"cached":null,"ignore_cache":false}'), +(7525, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:25.92+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7526, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:25.928+00', '{"cached":null,"ignore_cache":false}'), +(7527, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:25.94+00', '{"cached":null,"ignore_cache":false}'), +(7528, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:26.224+00', '{"cached":null,"ignore_cache":false}'), +(7529, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:26.248+00', '{"cached":null,"ignore_cache":false}'), +(7530, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:26.266+00', '{"cached":null,"ignore_cache":false}'), +(7531, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:26.405+00', '{"cached":null,"ignore_cache":false}'), +(7532, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:26.478+00', '{"cached":null,"ignore_cache":false}'), +(7533, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:26.532+00', '{"cached":null,"ignore_cache":false}'), +(7534, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:26.745+00', '{"cached":null,"ignore_cache":false}'), +(7535, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:28.61+00', '{"cached":null,"ignore_cache":false}'), +(7536, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.369+00', '{"cached":null,"ignore_cache":false}'), +(7537, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.371+00', '{"cached":null,"ignore_cache":false}'), +(7538, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.377+00', '{"cached":null,"ignore_cache":false}'), +(7539, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.471+00', '{"cached":null,"ignore_cache":false}'), +(7540, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.555+00', '{"cached":null,"ignore_cache":false}'), +(7541, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.592+00', '{"cached":null,"ignore_cache":false}'), +(7542, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.598+00', '{"cached":null,"ignore_cache":false}'), +(7543, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.621+00', '{"cached":null,"ignore_cache":false}'), +(7544, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:33.676+00', '{"cached":null,"ignore_cache":false}'), +(7545, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.045+00', '{"cached":null,"ignore_cache":null}'), +(7546, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.511+00', '{"cached":null,"ignore_cache":false}'), +(7547, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.559+00', '{"cached":null,"ignore_cache":false}'), +(7548, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.575+00', '{"cached":null,"ignore_cache":false}'), +(7549, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.675+00', '{"cached":null,"ignore_cache":false}'), +(7550, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.695+00', '{"cached":null,"ignore_cache":false}'), +(7551, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.697+00', '{"cached":null,"ignore_cache":false}'), +(7552, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:39.738+00', '{"cached":null,"ignore_cache":false}'), +(7553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.162+00', '{"cached":null,"ignore_cache":false}'), +(7554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.236+00', '{"cached":null,"ignore_cache":false}'), +(7555, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.244+00', '{"cached":null,"ignore_cache":false}'), +(7556, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.259+00', '{"cached":null,"ignore_cache":false}'), +(7557, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.28+00', '{"cached":null,"ignore_cache":false}'), +(7558, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.303+00', '{"cached":null,"ignore_cache":false}'), +(7559, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.337+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7560, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.342+00', '{"cached":null,"ignore_cache":false}'), +(7561, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.381+00', '{"cached":null,"ignore_cache":false}'), +(7562, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.457+00', '{"cached":null,"ignore_cache":false}'), +(7563, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.465+00', '{"cached":null,"ignore_cache":false}'), +(7564, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.48+00', '{"cached":null,"ignore_cache":false}'), +(7565, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.507+00', '{"cached":null,"ignore_cache":false}'), +(7566, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.516+00', '{"cached":null,"ignore_cache":false}'), +(7567, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.517+00', '{"cached":null,"ignore_cache":false}'), +(7568, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:45.538+00', '{"cached":null,"ignore_cache":false}'), +(7569, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.292+00', '{"cached":null,"ignore_cache":false}'), +(7570, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.433+00', '{"cached":null,"ignore_cache":false}'), +(7571, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.534+00', '{"cached":null,"ignore_cache":false}'), +(7572, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.543+00', '{"cached":null,"ignore_cache":false}'), +(7573, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.665+00', '{"cached":null,"ignore_cache":false}'), +(7574, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.678+00', '{"cached":null,"ignore_cache":false}'), +(7575, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.703+00', '{"cached":null,"ignore_cache":false}'), +(7576, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.876+00', '{"cached":null,"ignore_cache":false}'), +(7577, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.925+00', '{"cached":null,"ignore_cache":false}'), +(7578, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:47.981+00', '{"cached":null,"ignore_cache":false}'), +(7579, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:48.006+00', '{"cached":null,"ignore_cache":false}'), +(7580, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:48.007+00', '{"cached":null,"ignore_cache":false}'), +(7581, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:48.02+00', '{"cached":null,"ignore_cache":false}'), +(7582, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:48.052+00', '{"cached":null,"ignore_cache":false}'), +(7583, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:48.054+00', '{"cached":null,"ignore_cache":false}'), +(7584, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:48.084+00', '{"cached":null,"ignore_cache":false}'), +(7585, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:48.706+00', '{"cached":null,"ignore_cache":null}'), +(7586, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:25:49.248+00', '{"cached":null,"ignore_cache":false}'), +(7587, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:01.614+00', '{"cached":null,"ignore_cache":null}'), +(7588, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.171+00', '{"cached":null,"ignore_cache":false}'), +(7589, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.206+00', '{"cached":null,"ignore_cache":false}'), +(7590, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.212+00', '{"cached":null,"ignore_cache":false}'), +(7591, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.326+00', '{"cached":null,"ignore_cache":false}'), +(7592, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.401+00', '{"cached":null,"ignore_cache":false}'), +(7593, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.41+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7594, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:02.456+00', '{"cached":null,"ignore_cache":false}'), +(7595, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:06.67+00', '{"cached":null,"ignore_cache":null}'), +(7596, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:07.137+00', '{"cached":null,"ignore_cache":false}'), +(7597, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:13.72+00', '{"cached":null,"ignore_cache":null}'), +(7598, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.378+00', '{"cached":null,"ignore_cache":false}'), +(7599, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.449+00', '{"cached":null,"ignore_cache":false}'), +(7600, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.483+00', '{"cached":null,"ignore_cache":false}'), +(7601, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.548+00', '{"cached":null,"ignore_cache":false}'), +(7602, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.556+00', '{"cached":null,"ignore_cache":false}'), +(7603, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.573+00', '{"cached":null,"ignore_cache":false}'), +(7604, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.578+00', '{"cached":null,"ignore_cache":false}'), +(7605, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.81+00', '{"cached":null,"ignore_cache":false}'), +(7606, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.858+00', '{"cached":null,"ignore_cache":false}'), +(7607, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.887+00', '{"cached":null,"ignore_cache":false}'), +(7608, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.918+00', '{"cached":null,"ignore_cache":false}'), +(7609, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.922+00', '{"cached":null,"ignore_cache":false}'), +(7610, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.944+00', '{"cached":null,"ignore_cache":false}'), +(7611, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.966+00', '{"cached":null,"ignore_cache":false}'), +(7612, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.986+00', '{"cached":null,"ignore_cache":false}'), +(7613, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.991+00', '{"cached":null,"ignore_cache":false}'), +(7614, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:14.998+00', '{"cached":null,"ignore_cache":false}'), +(7615, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:15.008+00', '{"cached":null,"ignore_cache":false}'), +(7616, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:15.015+00', '{"cached":null,"ignore_cache":false}'), +(7617, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:15.025+00', '{"cached":null,"ignore_cache":false}'), +(7618, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:15.044+00', '{"cached":null,"ignore_cache":false}'), +(7619, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:15.048+00', '{"cached":null,"ignore_cache":false}'), +(7620, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:15.055+00', '{"cached":null,"ignore_cache":false}'), +(7621, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.169+00', '{"cached":null,"ignore_cache":false}'), +(7622, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.228+00', '{"cached":null,"ignore_cache":false}'), +(7623, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.254+00', '{"cached":null,"ignore_cache":false}'), +(7624, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.268+00', '{"cached":null,"ignore_cache":false}'), +(7625, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.269+00', '{"cached":null,"ignore_cache":false}'), +(7626, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.296+00', '{"cached":null,"ignore_cache":false}'), +(7627, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.344+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7628, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.382+00', '{"cached":null,"ignore_cache":false}'), +(7629, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:17.407+00', '{"cached":null,"ignore_cache":false}'), +(7630, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.777+00', '{"cached":null,"ignore_cache":false}'), +(7631, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.903+00', '{"cached":null,"ignore_cache":false}'), +(7632, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.904+00', '{"cached":null,"ignore_cache":false}'), +(7633, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:18.934+00', '{"cached":null,"ignore_cache":false}'), +(7634, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:19.024+00', '{"cached":null,"ignore_cache":false}'), +(7635, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:19.027+00', '{"cached":null,"ignore_cache":false}'), +(7636, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:19.048+00', '{"cached":null,"ignore_cache":false}'), +(7637, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:44.858+00', '{"cached":null,"ignore_cache":false}'), +(7638, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.027+00', '{"cached":null,"ignore_cache":false}'), +(7639, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.058+00', '{"cached":null,"ignore_cache":false}'), +(7640, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.13+00', '{"cached":null,"ignore_cache":false}'), +(7641, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.131+00', '{"cached":null,"ignore_cache":false}'), +(7642, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.134+00', '{"cached":null,"ignore_cache":false}'), +(7643, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.156+00', '{"cached":null,"ignore_cache":false}'), +(7644, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.166+00', '{"cached":null,"ignore_cache":false}'), +(7645, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.186+00', '{"cached":null,"ignore_cache":false}'), +(7646, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.186+00', '{"cached":null,"ignore_cache":false}'), +(7647, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.188+00', '{"cached":null,"ignore_cache":false}'), +(7648, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.205+00', '{"cached":null,"ignore_cache":false}'), +(7649, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.213+00', '{"cached":null,"ignore_cache":false}'), +(7650, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.228+00', '{"cached":null,"ignore_cache":false}'), +(7651, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.257+00', '{"cached":null,"ignore_cache":false}'), +(7652, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:45.268+00', '{"cached":null,"ignore_cache":false}'), +(7653, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.253+00', '{"cached":null,"ignore_cache":false}'), +(7654, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.285+00', '{"cached":null,"ignore_cache":false}'), +(7655, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.361+00', '{"cached":null,"ignore_cache":false}'), +(7656, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.364+00', '{"cached":null,"ignore_cache":false}'), +(7657, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.364+00', '{"cached":null,"ignore_cache":false}'), +(7658, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.371+00', '{"cached":null,"ignore_cache":false}'), +(7659, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.392+00', '{"cached":null,"ignore_cache":false}'), +(7660, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.412+00', '{"cached":null,"ignore_cache":false}'), +(7661, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:47.422+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7662, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.011+00', '{"cached":null,"ignore_cache":false}'), +(7663, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.045+00', '{"cached":null,"ignore_cache":false}'), +(7664, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.108+00', '{"cached":null,"ignore_cache":false}'), +(7665, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.118+00', '{"cached":null,"ignore_cache":false}'), +(7666, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.122+00', '{"cached":null,"ignore_cache":false}'), +(7667, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.135+00', '{"cached":null,"ignore_cache":false}'), +(7668, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:26:48.144+00', '{"cached":null,"ignore_cache":false}'), +(7669, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.769+00', '{"cached":null,"ignore_cache":false}'), +(7670, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.775+00', '{"cached":null,"ignore_cache":false}'), +(7671, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.811+00', '{"cached":null,"ignore_cache":false}'), +(7672, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.864+00', '{"cached":null,"ignore_cache":false}'), +(7673, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.875+00', '{"cached":null,"ignore_cache":false}'), +(7674, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.916+00', '{"cached":null,"ignore_cache":false}'), +(7675, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.919+00', '{"cached":null,"ignore_cache":false}'), +(7676, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.933+00', '{"cached":null,"ignore_cache":false}'), +(7677, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.936+00', '{"cached":null,"ignore_cache":false}'), +(7678, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.942+00', '{"cached":null,"ignore_cache":false}'), +(7679, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.945+00', '{"cached":null,"ignore_cache":false}'), +(7680, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.952+00', '{"cached":null,"ignore_cache":false}'), +(7681, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.958+00', '{"cached":null,"ignore_cache":false}'), +(7682, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.966+00', '{"cached":null,"ignore_cache":false}'), +(7683, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:14.98+00', '{"cached":null,"ignore_cache":false}'), +(7684, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:15.019+00', '{"cached":null,"ignore_cache":false}'), +(7685, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.059+00', '{"cached":null,"ignore_cache":false}'), +(7686, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.123+00', '{"cached":null,"ignore_cache":false}'), +(7687, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.203+00', '{"cached":null,"ignore_cache":false}'), +(7688, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.218+00', '{"cached":null,"ignore_cache":false}'), +(7689, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.227+00', '{"cached":null,"ignore_cache":false}'), +(7690, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.25+00', '{"cached":null,"ignore_cache":false}'), +(7691, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.253+00', '{"cached":null,"ignore_cache":false}'), +(7692, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.273+00', '{"cached":null,"ignore_cache":false}'), +(7693, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:17.285+00', '{"cached":null,"ignore_cache":false}'), +(7694, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.319+00', '{"cached":null,"ignore_cache":false}'), +(7695, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.402+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7696, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.42+00', '{"cached":null,"ignore_cache":false}'), +(7697, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.443+00', '{"cached":null,"ignore_cache":false}'), +(7698, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.472+00', '{"cached":null,"ignore_cache":false}'), +(7699, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.477+00', '{"cached":null,"ignore_cache":false}'), +(7700, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:18.507+00', '{"cached":null,"ignore_cache":false}'), +(7701, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.083+00', '{"cached":null,"ignore_cache":false}'), +(7702, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.108+00', '{"cached":null,"ignore_cache":false}'), +(7703, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.173+00', '{"cached":null,"ignore_cache":false}'), +(7704, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.175+00', '{"cached":null,"ignore_cache":false}'), +(7705, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.387+00', '{"cached":null,"ignore_cache":false}'), +(7706, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.407+00', '{"cached":null,"ignore_cache":false}'), +(7707, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.419+00', '{"cached":null,"ignore_cache":false}'), +(7708, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.506+00', '{"cached":null,"ignore_cache":false}'), +(7709, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.54+00', '{"cached":null,"ignore_cache":false}'), +(7710, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.587+00', '{"cached":null,"ignore_cache":false}'), +(7711, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.668+00', '{"cached":null,"ignore_cache":false}'), +(7712, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.691+00', '{"cached":null,"ignore_cache":false}'), +(7713, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:45.752+00', '{"cached":null,"ignore_cache":false}'), +(7714, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.294+00', '{"cached":null,"ignore_cache":false}'), +(7715, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.772+00', '{"cached":null,"ignore_cache":false}'), +(7716, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.804+00', '{"cached":null,"ignore_cache":false}'), +(7717, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.837+00', '{"cached":null,"ignore_cache":false}'), +(7718, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.849+00', '{"cached":null,"ignore_cache":false}'), +(7719, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.881+00', '{"cached":null,"ignore_cache":false}'), +(7720, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:47.954+00', '{"cached":null,"ignore_cache":false}'), +(7721, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.05+00', '{"cached":null,"ignore_cache":false}'), +(7722, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.128+00', '{"cached":null,"ignore_cache":false}'), +(7723, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.708+00', '{"cached":null,"ignore_cache":false}'), +(7724, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.782+00', '{"cached":null,"ignore_cache":false}'), +(7725, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.822+00', '{"cached":null,"ignore_cache":false}'), +(7726, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.845+00', '{"cached":null,"ignore_cache":false}'), +(7727, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.863+00', '{"cached":null,"ignore_cache":false}'), +(7728, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.908+00', '{"cached":null,"ignore_cache":false}'), +(7729, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:48.916+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7730, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.382+00', '{"cached":null,"ignore_cache":false}'), +(7731, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.45+00', '{"cached":null,"ignore_cache":false}'), +(7732, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.544+00', '{"cached":null,"ignore_cache":false}'), +(7733, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.67+00', '{"cached":null,"ignore_cache":false}'), +(7734, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.773+00', '{"cached":null,"ignore_cache":false}'), +(7735, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.848+00', '{"cached":null,"ignore_cache":false}'), +(7736, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.925+00', '{"cached":null,"ignore_cache":false}'), +(7737, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:53.998+00', '{"cached":null,"ignore_cache":false}'), +(7738, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.099+00', '{"cached":null,"ignore_cache":false}'), +(7739, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.106+00', '{"cached":null,"ignore_cache":false}'), +(7740, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.121+00', '{"cached":null,"ignore_cache":false}'), +(7741, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.181+00', '{"cached":null,"ignore_cache":false}'), +(7742, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.416+00', '{"cached":null,"ignore_cache":false}'), +(7743, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.491+00', '{"cached":null,"ignore_cache":false}'), +(7744, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.544+00', '{"cached":null,"ignore_cache":false}'), +(7745, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.658+00', '{"cached":null,"ignore_cache":false}'), +(7746, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.666+00', '{"cached":null,"ignore_cache":false}'), +(7747, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.771+00', '{"cached":null,"ignore_cache":false}'), +(7748, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.78+00', '{"cached":null,"ignore_cache":false}'), +(7749, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.84+00', '{"cached":null,"ignore_cache":false}'), +(7750, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.93+00', '{"cached":null,"ignore_cache":false}'), +(7751, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:54.93+00', '{"cached":null,"ignore_cache":false}'), +(7752, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:55.046+00', '{"cached":null,"ignore_cache":false}'), +(7753, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:55.058+00', '{"cached":null,"ignore_cache":false}'), +(7754, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:55.3+00', '{"cached":null,"ignore_cache":false}'), +(7755, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:27:55.31+00', '{"cached":null,"ignore_cache":false}'), +(7756, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.341+00', '{"cached":null,"ignore_cache":false}'), +(7757, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.52+00', '{"cached":null,"ignore_cache":false}'), +(7758, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.529+00', '{"cached":null,"ignore_cache":false}'), +(7759, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.541+00', '{"cached":null,"ignore_cache":false}'), +(7760, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.546+00', '{"cached":null,"ignore_cache":false}'), +(7761, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.557+00', '{"cached":null,"ignore_cache":false}'), +(7762, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.558+00', '{"cached":null,"ignore_cache":false}'), +(7763, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.563+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7764, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:17.569+00', '{"cached":null,"ignore_cache":false}'), +(7765, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.668+00', '{"cached":null,"ignore_cache":false}'), +(7766, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.755+00', '{"cached":null,"ignore_cache":false}'), +(7767, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.794+00', '{"cached":null,"ignore_cache":false}'), +(7768, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.807+00', '{"cached":null,"ignore_cache":false}'), +(7769, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.854+00', '{"cached":null,"ignore_cache":false}'), +(7770, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.886+00', '{"cached":null,"ignore_cache":false}'), +(7771, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:18.897+00', '{"cached":null,"ignore_cache":false}'), +(7772, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.323+00', '{"cached":null,"ignore_cache":false}'), +(7773, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.351+00', '{"cached":null,"ignore_cache":false}'), +(7774, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.397+00', '{"cached":null,"ignore_cache":false}'), +(7775, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.693+00', '{"cached":null,"ignore_cache":false}'), +(7776, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.717+00', '{"cached":null,"ignore_cache":false}'), +(7777, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.744+00', '{"cached":null,"ignore_cache":false}'), +(7778, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.771+00', '{"cached":null,"ignore_cache":false}'), +(7779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.788+00', '{"cached":null,"ignore_cache":false}'), +(7780, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.816+00', '{"cached":null,"ignore_cache":false}'), +(7781, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.829+00', '{"cached":null,"ignore_cache":false}'), +(7782, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.845+00', '{"cached":null,"ignore_cache":false}'), +(7783, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.856+00', '{"cached":null,"ignore_cache":false}'), +(7784, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.877+00', '{"cached":null,"ignore_cache":false}'), +(7785, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.911+00', '{"cached":null,"ignore_cache":false}'), +(7786, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.914+00', '{"cached":null,"ignore_cache":false}'), +(7787, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:22.935+00', '{"cached":null,"ignore_cache":false}'), +(7788, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.109+00', '{"cached":null,"ignore_cache":false}'), +(7789, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.16+00', '{"cached":null,"ignore_cache":false}'), +(7790, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.2+00', '{"cached":null,"ignore_cache":false}'), +(7791, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.205+00', '{"cached":null,"ignore_cache":false}'), +(7792, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.23+00', '{"cached":null,"ignore_cache":false}'), +(7793, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.232+00', '{"cached":null,"ignore_cache":false}'), +(7794, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.234+00', '{"cached":null,"ignore_cache":false}'), +(7795, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.248+00', '{"cached":null,"ignore_cache":false}'), +(7796, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.255+00', '{"cached":null,"ignore_cache":false}'), +(7797, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.808+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7798, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.934+00', '{"cached":null,"ignore_cache":false}'), +(7799, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.942+00', '{"cached":null,"ignore_cache":false}'), +(7800, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.961+00', '{"cached":null,"ignore_cache":false}'), +(7801, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:47.982+00', '{"cached":null,"ignore_cache":false}'), +(7802, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.002+00', '{"cached":null,"ignore_cache":false}'), +(7803, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.014+00', '{"cached":null,"ignore_cache":false}'), +(7804, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.019+00', '{"cached":null,"ignore_cache":false}'), +(7805, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.657+00', '{"cached":null,"ignore_cache":false}'), +(7806, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.69+00', '{"cached":null,"ignore_cache":false}'), +(7807, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.694+00', '{"cached":null,"ignore_cache":false}'), +(7808, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.695+00', '{"cached":null,"ignore_cache":false}'), +(7809, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.713+00', '{"cached":null,"ignore_cache":false}'), +(7810, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.717+00', '{"cached":null,"ignore_cache":false}'), +(7811, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.741+00', '{"cached":null,"ignore_cache":false}'), +(7812, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.783+00', '{"cached":null,"ignore_cache":false}'), +(7813, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:48.832+00', '{"cached":null,"ignore_cache":false}'), +(7814, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.363+00', '{"cached":null,"ignore_cache":false}'), +(7815, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.381+00', '{"cached":null,"ignore_cache":false}'), +(7816, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.406+00', '{"cached":null,"ignore_cache":false}'), +(7817, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.511+00', '{"cached":null,"ignore_cache":false}'), +(7818, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.549+00', '{"cached":null,"ignore_cache":false}'), +(7819, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.607+00', '{"cached":null,"ignore_cache":false}'), +(7820, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.698+00', '{"cached":null,"ignore_cache":false}'), +(7821, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.765+00', '{"cached":null,"ignore_cache":false}'), +(7822, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.794+00', '{"cached":null,"ignore_cache":false}'), +(7823, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.799+00', '{"cached":null,"ignore_cache":false}'), +(7824, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.803+00', '{"cached":null,"ignore_cache":false}'), +(7825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.803+00', '{"cached":null,"ignore_cache":false}'), +(7826, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.805+00', '{"cached":null,"ignore_cache":false}'), +(7827, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.847+00', '{"cached":null,"ignore_cache":false}'), +(7828, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.904+00', '{"cached":null,"ignore_cache":false}'), +(7829, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:52.935+00', '{"cached":null,"ignore_cache":false}'), +(7830, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:57.887+00', '{"cached":null,"ignore_cache":null}'), +(7831, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.488+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7832, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.536+00', '{"cached":null,"ignore_cache":false}'), +(7833, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.571+00', '{"cached":null,"ignore_cache":false}'), +(7834, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.597+00', '{"cached":null,"ignore_cache":false}'), +(7835, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.634+00', '{"cached":null,"ignore_cache":false}'), +(7836, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.664+00', '{"cached":null,"ignore_cache":false}'), +(7837, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.67+00', '{"cached":null,"ignore_cache":false}'), +(7838, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.691+00', '{"cached":null,"ignore_cache":false}'), +(7839, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:28:58.756+00', '{"cached":null,"ignore_cache":false}'), +(7840, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.235+00', '{"cached":null,"ignore_cache":false}'), +(7841, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.382+00', '{"cached":null,"ignore_cache":false}'), +(7842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.456+00', '{"cached":null,"ignore_cache":false}'), +(7843, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.537+00', '{"cached":null,"ignore_cache":false}'), +(7844, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.541+00', '{"cached":null,"ignore_cache":false}'), +(7845, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.554+00', '{"cached":null,"ignore_cache":false}'), +(7846, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.57+00', '{"cached":null,"ignore_cache":false}'), +(7847, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.593+00', '{"cached":null,"ignore_cache":false}'), +(7848, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:17.645+00', '{"cached":null,"ignore_cache":false}'), +(7849, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.317+00', '{"cached":null,"ignore_cache":false}'), +(7850, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.318+00', '{"cached":null,"ignore_cache":false}'), +(7851, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.352+00', '{"cached":null,"ignore_cache":false}'), +(7852, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.364+00', '{"cached":null,"ignore_cache":false}'), +(7853, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.371+00', '{"cached":null,"ignore_cache":false}'), +(7854, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.404+00', '{"cached":null,"ignore_cache":false}'), +(7855, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:18.407+00', '{"cached":null,"ignore_cache":false}'), +(7856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.124+00', '{"cached":null,"ignore_cache":false}'), +(7857, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.289+00', '{"cached":null,"ignore_cache":false}'), +(7858, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.323+00', '{"cached":null,"ignore_cache":false}'), +(7859, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.398+00', '{"cached":null,"ignore_cache":false}'), +(7860, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.422+00', '{"cached":null,"ignore_cache":false}'), +(7861, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.48+00', '{"cached":null,"ignore_cache":false}'), +(7862, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.483+00', '{"cached":null,"ignore_cache":false}'), +(7863, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.497+00', '{"cached":null,"ignore_cache":false}'), +(7864, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.498+00', '{"cached":null,"ignore_cache":false}'), +(7865, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.521+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7866, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.534+00', '{"cached":null,"ignore_cache":false}'), +(7867, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.612+00', '{"cached":null,"ignore_cache":false}'), +(7868, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.634+00', '{"cached":null,"ignore_cache":false}'), +(7869, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.64+00', '{"cached":null,"ignore_cache":false}'), +(7870, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.651+00', '{"cached":null,"ignore_cache":false}'), +(7871, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:22.659+00', '{"cached":null,"ignore_cache":false}'), +(7872, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.31+00', '{"cached":null,"ignore_cache":false}'), +(7873, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.316+00', '{"cached":null,"ignore_cache":false}'), +(7874, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.362+00', '{"cached":null,"ignore_cache":false}'), +(7875, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.375+00', '{"cached":null,"ignore_cache":false}'), +(7876, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.391+00', '{"cached":null,"ignore_cache":false}'), +(7877, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.4+00', '{"cached":null,"ignore_cache":false}'), +(7878, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.417+00', '{"cached":null,"ignore_cache":false}'), +(7879, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.422+00', '{"cached":null,"ignore_cache":false}'), +(7880, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:47.49+00', '{"cached":null,"ignore_cache":false}'), +(7881, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.366+00', '{"cached":null,"ignore_cache":false}'), +(7882, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.458+00', '{"cached":null,"ignore_cache":false}'), +(7883, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.522+00', '{"cached":null,"ignore_cache":false}'), +(7884, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.57+00', '{"cached":null,"ignore_cache":false}'), +(7885, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.586+00', '{"cached":null,"ignore_cache":false}'), +(7886, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.649+00', '{"cached":null,"ignore_cache":false}'), +(7887, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:48.653+00', '{"cached":null,"ignore_cache":false}'), +(7888, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.474+00', '{"cached":null,"ignore_cache":false}'), +(7889, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.505+00', '{"cached":null,"ignore_cache":false}'), +(7890, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.544+00', '{"cached":null,"ignore_cache":false}'), +(7891, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.626+00', '{"cached":null,"ignore_cache":false}'), +(7892, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.662+00', '{"cached":null,"ignore_cache":false}'), +(7893, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.883+00', '{"cached":null,"ignore_cache":false}'), +(7894, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.884+00', '{"cached":null,"ignore_cache":false}'), +(7895, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.901+00', '{"cached":null,"ignore_cache":false}'), +(7896, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.921+00', '{"cached":null,"ignore_cache":false}'), +(7897, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.934+00', '{"cached":null,"ignore_cache":false}'), +(7898, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.934+00', '{"cached":null,"ignore_cache":false}'), +(7899, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.979+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7900, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:52.984+00', '{"cached":null,"ignore_cache":false}'), +(7901, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:53.015+00', '{"cached":null,"ignore_cache":false}'), +(7902, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:53.023+00', '{"cached":null,"ignore_cache":false}'), +(7903, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:29:53.038+00', '{"cached":null,"ignore_cache":false}'), +(7904, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.099+00', '{"cached":null,"ignore_cache":false}'), +(7905, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.145+00', '{"cached":null,"ignore_cache":false}'), +(7906, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.304+00', '{"cached":null,"ignore_cache":false}'), +(7907, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.365+00', '{"cached":null,"ignore_cache":false}'), +(7908, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.589+00', '{"cached":null,"ignore_cache":false}'), +(7909, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.594+00', '{"cached":null,"ignore_cache":false}'), +(7910, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.651+00', '{"cached":null,"ignore_cache":false}'), +(7911, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.664+00', '{"cached":null,"ignore_cache":false}'), +(7912, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.664+00', '{"cached":null,"ignore_cache":false}'), +(7913, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.692+00', '{"cached":null,"ignore_cache":false}'), +(7914, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.735+00', '{"cached":null,"ignore_cache":false}'), +(7915, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.737+00', '{"cached":null,"ignore_cache":false}'), +(7916, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.757+00', '{"cached":null,"ignore_cache":false}'), +(7917, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.758+00', '{"cached":null,"ignore_cache":false}'), +(7918, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.779+00', '{"cached":null,"ignore_cache":false}'), +(7919, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:22.83+00', '{"cached":null,"ignore_cache":false}'), +(7920, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.233+00', '{"cached":null,"ignore_cache":false}'), +(7921, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.299+00', '{"cached":null,"ignore_cache":false}'), +(7922, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.308+00', '{"cached":null,"ignore_cache":false}'), +(7923, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.387+00', '{"cached":null,"ignore_cache":false}'), +(7924, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.397+00', '{"cached":null,"ignore_cache":false}'), +(7925, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.443+00', '{"cached":null,"ignore_cache":false}'), +(7926, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.458+00', '{"cached":null,"ignore_cache":false}'), +(7927, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.482+00', '{"cached":null,"ignore_cache":false}'), +(7928, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.504+00', '{"cached":null,"ignore_cache":false}'), +(7929, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.51+00', '{"cached":null,"ignore_cache":false}'), +(7930, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.541+00', '{"cached":null,"ignore_cache":false}'), +(7931, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.547+00', '{"cached":null,"ignore_cache":false}'), +(7932, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.584+00', '{"cached":null,"ignore_cache":false}'), +(7933, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.588+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7934, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.599+00', '{"cached":null,"ignore_cache":false}'), +(7935, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:30:52.606+00', '{"cached":null,"ignore_cache":false}'), +(7936, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.123+00', '{"cached":null,"ignore_cache":false}'), +(7937, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.335+00', '{"cached":null,"ignore_cache":false}'), +(7938, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.439+00', '{"cached":null,"ignore_cache":false}'), +(7939, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.564+00', '{"cached":null,"ignore_cache":false}'), +(7940, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.603+00', '{"cached":null,"ignore_cache":false}'), +(7941, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.628+00', '{"cached":null,"ignore_cache":false}'), +(7942, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.652+00', '{"cached":null,"ignore_cache":false}'), +(7943, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.69+00', '{"cached":null,"ignore_cache":false}'), +(7944, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.714+00', '{"cached":null,"ignore_cache":false}'), +(7945, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.856+00', '{"cached":null,"ignore_cache":false}'), +(7946, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.877+00', '{"cached":null,"ignore_cache":false}'), +(7947, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.878+00', '{"cached":null,"ignore_cache":false}'), +(7948, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.901+00', '{"cached":null,"ignore_cache":false}'), +(7949, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.902+00', '{"cached":null,"ignore_cache":false}'), +(7950, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.926+00', '{"cached":null,"ignore_cache":false}'), +(7951, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:22.926+00', '{"cached":null,"ignore_cache":false}'), +(7952, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.672+00', '{"cached":null,"ignore_cache":false}'), +(7953, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.716+00', '{"cached":null,"ignore_cache":false}'), +(7954, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:31.832+00', '{"cached":null,"ignore_cache":false}'), +(7955, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.09+00', '{"cached":null,"ignore_cache":false}'), +(7956, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.094+00', '{"cached":null,"ignore_cache":false}'), +(7957, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.663+00', '{"cached":null,"ignore_cache":false}'), +(7958, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.664+00', '{"cached":null,"ignore_cache":false}'), +(7959, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.754+00', '{"cached":null,"ignore_cache":false}'), +(7960, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.755+00', '{"cached":null,"ignore_cache":false}'), +(7961, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.755+00', '{"cached":null,"ignore_cache":false}'), +(7962, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.755+00', '{"cached":null,"ignore_cache":false}'), +(7963, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.756+00', '{"cached":null,"ignore_cache":false}'), +(7964, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.784+00', '{"cached":null,"ignore_cache":false}'), +(7965, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.79+00', '{"cached":null,"ignore_cache":false}'), +(7966, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.83+00', '{"cached":null,"ignore_cache":false}'), +(7967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.861+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(7968, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.87+00', '{"cached":null,"ignore_cache":false}'), +(7969, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:32.973+00', '{"cached":null,"ignore_cache":false}'), +(7970, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:33.051+00', '{"cached":null,"ignore_cache":false}'), +(7971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:33.242+00', '{"cached":null,"ignore_cache":false}'), +(7972, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:31:33.246+00', '{"cached":null,"ignore_cache":false}'), +(7973, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.06+00', '{"cached":null,"ignore_cache":false}'), +(7974, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.189+00', '{"cached":null,"ignore_cache":false}'), +(7975, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.25+00', '{"cached":null,"ignore_cache":false}'), +(7976, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.302+00', '{"cached":null,"ignore_cache":false}'), +(7977, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.311+00', '{"cached":null,"ignore_cache":false}'), +(7978, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.35+00', '{"cached":null,"ignore_cache":false}'), +(7979, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.351+00', '{"cached":null,"ignore_cache":false}'), +(7980, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.421+00', '{"cached":null,"ignore_cache":false}'), +(7981, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.461+00', '{"cached":null,"ignore_cache":false}'), +(7982, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.47+00', '{"cached":null,"ignore_cache":false}'), +(7983, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.485+00', '{"cached":null,"ignore_cache":false}'), +(7984, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.51+00', '{"cached":null,"ignore_cache":false}'), +(7985, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.539+00', '{"cached":null,"ignore_cache":false}'), +(7986, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.546+00', '{"cached":null,"ignore_cache":false}'), +(7987, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.555+00', '{"cached":null,"ignore_cache":false}'), +(7988, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:01.564+00', '{"cached":null,"ignore_cache":false}'), +(7989, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.117+00', '{"cached":null,"ignore_cache":false}'), +(7990, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.265+00', '{"cached":null,"ignore_cache":false}'), +(7991, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.328+00', '{"cached":null,"ignore_cache":false}'), +(7992, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.401+00', '{"cached":null,"ignore_cache":false}'), +(7993, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.474+00', '{"cached":null,"ignore_cache":false}'), +(7994, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.539+00', '{"cached":null,"ignore_cache":false}'), +(7995, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.54+00', '{"cached":null,"ignore_cache":false}'), +(7996, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.542+00', '{"cached":null,"ignore_cache":false}'), +(7997, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.562+00', '{"cached":null,"ignore_cache":false}'), +(7998, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.569+00', '{"cached":null,"ignore_cache":false}'), +(7999, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.575+00', '{"cached":null,"ignore_cache":false}'), +(8000, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.587+00', '{"cached":null,"ignore_cache":false}'), +(8001, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.588+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8002, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.589+00', '{"cached":null,"ignore_cache":false}'), +(8003, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.596+00', '{"cached":null,"ignore_cache":false}'), +(8004, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:31.608+00', '{"cached":null,"ignore_cache":false}'), +(8005, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:43.985+00', '{"cached":null,"ignore_cache":false}'), +(8006, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.004+00', '{"cached":null,"ignore_cache":false}'), +(8007, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.014+00', '{"cached":null,"ignore_cache":false}'), +(8008, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.047+00', '{"cached":null,"ignore_cache":false}'), +(8009, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.058+00', '{"cached":null,"ignore_cache":false}'), +(8010, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.071+00', '{"cached":null,"ignore_cache":false}'), +(8011, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.073+00', '{"cached":null,"ignore_cache":false}'), +(8012, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.305+00', '{"cached":null,"ignore_cache":false}'), +(8013, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.358+00', '{"cached":null,"ignore_cache":false}'), +(8014, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.367+00', '{"cached":null,"ignore_cache":false}'), +(8015, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.377+00', '{"cached":null,"ignore_cache":false}'), +(8016, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.411+00', '{"cached":null,"ignore_cache":false}'), +(8017, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.425+00', '{"cached":null,"ignore_cache":false}'), +(8018, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.45+00', '{"cached":null,"ignore_cache":false}'), +(8019, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.466+00', '{"cached":null,"ignore_cache":false}'), +(8020, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:32:44.473+00', '{"cached":null,"ignore_cache":false}'), +(8021, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:00.999+00', '{"cached":null,"ignore_cache":false}'), +(8022, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.03+00', '{"cached":null,"ignore_cache":false}'), +(8023, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.062+00', '{"cached":null,"ignore_cache":false}'), +(8024, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.081+00', '{"cached":null,"ignore_cache":false}'), +(8025, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.085+00', '{"cached":null,"ignore_cache":false}'), +(8026, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.12+00', '{"cached":null,"ignore_cache":false}'), +(8027, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.131+00', '{"cached":null,"ignore_cache":false}'), +(8028, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.132+00', '{"cached":null,"ignore_cache":false}'), +(8029, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.136+00', '{"cached":null,"ignore_cache":false}'), +(8030, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.145+00', '{"cached":null,"ignore_cache":false}'), +(8031, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.157+00', '{"cached":null,"ignore_cache":false}'), +(8032, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.171+00', '{"cached":null,"ignore_cache":false}'), +(8033, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.175+00', '{"cached":null,"ignore_cache":false}'), +(8034, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.186+00', '{"cached":null,"ignore_cache":false}'), +(8035, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.193+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8036, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:01.206+00', '{"cached":null,"ignore_cache":false}'), +(8037, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.439+00', '{"cached":null,"ignore_cache":false}'), +(8038, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.648+00', '{"cached":null,"ignore_cache":false}'), +(8039, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.678+00', '{"cached":null,"ignore_cache":false}'), +(8040, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.703+00', '{"cached":null,"ignore_cache":false}'), +(8041, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.769+00', '{"cached":null,"ignore_cache":false}'), +(8042, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.795+00', '{"cached":null,"ignore_cache":false}'), +(8043, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.842+00', '{"cached":null,"ignore_cache":false}'), +(8044, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.882+00', '{"cached":null,"ignore_cache":false}'), +(8045, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.897+00', '{"cached":null,"ignore_cache":false}'), +(8046, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.956+00', '{"cached":null,"ignore_cache":false}'), +(8047, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.958+00', '{"cached":null,"ignore_cache":false}'), +(8048, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:13.997+00', '{"cached":null,"ignore_cache":false}'), +(8049, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:14.01+00', '{"cached":null,"ignore_cache":false}'), +(8050, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:14.047+00', '{"cached":null,"ignore_cache":false}'), +(8051, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:14.066+00', '{"cached":null,"ignore_cache":false}'), +(8052, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:14.076+00', '{"cached":null,"ignore_cache":false}'), +(8053, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:33.921+00', '{"cached":null,"ignore_cache":false}'), +(8054, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.035+00', '{"cached":null,"ignore_cache":false}'), +(8055, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.061+00', '{"cached":null,"ignore_cache":false}'), +(8056, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.086+00', '{"cached":null,"ignore_cache":false}'), +(8057, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.123+00', '{"cached":null,"ignore_cache":false}'), +(8058, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.123+00', '{"cached":null,"ignore_cache":false}'), +(8059, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.15+00', '{"cached":null,"ignore_cache":false}'), +(8060, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.242+00', '{"cached":null,"ignore_cache":false}'), +(8061, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.25+00', '{"cached":null,"ignore_cache":false}'), +(8062, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.274+00', '{"cached":null,"ignore_cache":false}'), +(8063, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.275+00', '{"cached":null,"ignore_cache":false}'), +(8064, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.288+00', '{"cached":null,"ignore_cache":false}'), +(8065, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.317+00', '{"cached":null,"ignore_cache":false}'), +(8066, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.32+00', '{"cached":null,"ignore_cache":false}'), +(8067, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.349+00', '{"cached":null,"ignore_cache":false}'), +(8068, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:34.359+00', '{"cached":null,"ignore_cache":false}'), +(8069, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.142+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8070, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.153+00', '{"cached":null,"ignore_cache":false}'), +(8071, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.241+00', '{"cached":null,"ignore_cache":false}'), +(8072, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.275+00', '{"cached":null,"ignore_cache":false}'), +(8073, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.28+00', '{"cached":null,"ignore_cache":false}'), +(8074, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.282+00', '{"cached":null,"ignore_cache":false}'), +(8075, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.309+00', '{"cached":null,"ignore_cache":false}'), +(8076, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.313+00', '{"cached":null,"ignore_cache":false}'), +(8077, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.337+00', '{"cached":null,"ignore_cache":false}'), +(8078, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.338+00', '{"cached":null,"ignore_cache":false}'), +(8079, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.356+00', '{"cached":null,"ignore_cache":false}'), +(8080, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.363+00', '{"cached":null,"ignore_cache":false}'), +(8081, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.376+00', '{"cached":null,"ignore_cache":false}'), +(8082, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.395+00', '{"cached":null,"ignore_cache":false}'), +(8083, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.395+00', '{"cached":null,"ignore_cache":false}'), +(8084, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:43.408+00', '{"cached":null,"ignore_cache":false}'), +(8085, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:58.026+00', '{"cached":null,"ignore_cache":null}'), +(8086, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.094+00', '{"cached":null,"ignore_cache":false}'), +(8087, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.292+00', '{"cached":null,"ignore_cache":false}'), +(8088, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.522+00', '{"cached":null,"ignore_cache":false}'), +(8089, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.688+00', '{"cached":null,"ignore_cache":false}'), +(8090, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.79+00', '{"cached":null,"ignore_cache":false}'), +(8091, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:33:59.921+00', '{"cached":null,"ignore_cache":false}'), +(8092, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.052+00', '{"cached":null,"ignore_cache":false}'), +(8093, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.128+00', '{"cached":null,"ignore_cache":false}'), +(8094, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.172+00', '{"cached":null,"ignore_cache":false}'), +(8095, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.172+00', '{"cached":null,"ignore_cache":false}'), +(8096, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.217+00', '{"cached":null,"ignore_cache":false}'), +(8097, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.283+00', '{"cached":null,"ignore_cache":false}'), +(8098, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.441+00', '{"cached":null,"ignore_cache":false}'), +(8099, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.479+00', '{"cached":null,"ignore_cache":false}'), +(8100, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.511+00', '{"cached":null,"ignore_cache":false}'), +(8101, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.52+00', '{"cached":null,"ignore_cache":false}'), +(8102, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.595+00', '{"cached":null,"ignore_cache":false}'), +(8103, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.612+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8104, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.636+00', '{"cached":null,"ignore_cache":false}'), +(8105, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.678+00', '{"cached":null,"ignore_cache":false}'), +(8106, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:00.711+00', '{"cached":null,"ignore_cache":false}'), +(8107, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:01.119+00', '{"cached":null,"ignore_cache":false}'), +(8108, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:06.851+00', '{"cached":null,"ignore_cache":false}'), +(8109, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:07.036+00', '{"cached":null,"ignore_cache":false}'), +(8110, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:07.063+00', '{"cached":null,"ignore_cache":false}'), +(8111, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:07.081+00', '{"cached":null,"ignore_cache":false}'), +(8112, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:07.087+00', '{"cached":null,"ignore_cache":false}'), +(8113, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:07.092+00', '{"cached":null,"ignore_cache":false}'), +(8114, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:07.104+00', '{"cached":null,"ignore_cache":false}'), +(8115, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.888+00', '{"cached":null,"ignore_cache":false}'), +(8116, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.921+00', '{"cached":null,"ignore_cache":false}'), +(8117, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.922+00', '{"cached":null,"ignore_cache":false}'), +(8118, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.936+00', '{"cached":null,"ignore_cache":false}'), +(8119, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:09.955+00', '{"cached":null,"ignore_cache":false}'), +(8120, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:10.023+00', '{"cached":null,"ignore_cache":false}'), +(8121, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:10.062+00', '{"cached":null,"ignore_cache":false}'), +(8122, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:10.067+00', '{"cached":null,"ignore_cache":false}'), +(8123, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:10.098+00', '{"cached":null,"ignore_cache":false}'), +(8124, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.569+00', '{"cached":null,"ignore_cache":false}'), +(8125, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.674+00', '{"cached":null,"ignore_cache":false}'), +(8126, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.687+00', '{"cached":null,"ignore_cache":false}'), +(8127, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.701+00', '{"cached":null,"ignore_cache":false}'), +(8128, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.766+00', '{"cached":null,"ignore_cache":false}'), +(8129, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.827+00', '{"cached":null,"ignore_cache":false}'), +(8130, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.886+00', '{"cached":null,"ignore_cache":false}'), +(8131, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.914+00', '{"cached":null,"ignore_cache":false}'), +(8132, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.93+00', '{"cached":null,"ignore_cache":false}'), +(8133, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.963+00', '{"cached":null,"ignore_cache":false}'), +(8134, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.977+00', '{"cached":null,"ignore_cache":false}'), +(8135, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:13.995+00', '{"cached":null,"ignore_cache":false}'), +(8136, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:14.003+00', '{"cached":null,"ignore_cache":false}'), +(8137, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:14.016+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:14.033+00', '{"cached":null,"ignore_cache":false}'), +(8139, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:14.044+00', '{"cached":null,"ignore_cache":false}'), +(8140, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.613+00', '{"cached":null,"ignore_cache":false}'), +(8141, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.8+00', '{"cached":null,"ignore_cache":false}'), +(8142, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.932+00', '{"cached":null,"ignore_cache":false}'), +(8143, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:19.964+00', '{"cached":null,"ignore_cache":false}'), +(8144, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:20.052+00', '{"cached":null,"ignore_cache":false}'), +(8145, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:20.219+00', '{"cached":null,"ignore_cache":false}'), +(8146, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:20.382+00', '{"cached":null,"ignore_cache":false}'), +(8147, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:20.97+00', '{"cached":null,"ignore_cache":false}'), +(8148, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:21.631+00', '{"cached":null,"ignore_cache":false}'), +(8149, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.151+00', '{"cached":null,"ignore_cache":false}'), +(8150, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.422+00', '{"cached":null,"ignore_cache":false}'), +(8151, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.443+00', '{"cached":null,"ignore_cache":false}'), +(8152, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.519+00', '{"cached":null,"ignore_cache":false}'), +(8153, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.573+00', '{"cached":null,"ignore_cache":false}'), +(8154, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.597+00', '{"cached":null,"ignore_cache":false}'), +(8155, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.598+00', '{"cached":null,"ignore_cache":false}'), +(8156, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.611+00', '{"cached":null,"ignore_cache":false}'), +(8157, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:34.658+00', '{"cached":null,"ignore_cache":false}'), +(8158, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.568+00', '{"cached":null,"ignore_cache":false}'), +(8159, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.593+00', '{"cached":null,"ignore_cache":false}'), +(8160, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.609+00', '{"cached":null,"ignore_cache":false}'), +(8161, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.621+00', '{"cached":null,"ignore_cache":false}'), +(8162, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.634+00', '{"cached":null,"ignore_cache":false}'), +(8163, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.647+00', '{"cached":null,"ignore_cache":false}'), +(8164, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:39.687+00', '{"cached":null,"ignore_cache":false}'), +(8165, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:42.962+00', '{"cached":null,"ignore_cache":false}'), +(8166, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.011+00', '{"cached":null,"ignore_cache":false}'), +(8167, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.079+00', '{"cached":null,"ignore_cache":false}'), +(8168, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.142+00', '{"cached":null,"ignore_cache":false}'), +(8169, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.148+00', '{"cached":null,"ignore_cache":false}'), +(8170, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.156+00', '{"cached":null,"ignore_cache":false}'), +(8171, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.167+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8172, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.178+00', '{"cached":null,"ignore_cache":false}'), +(8173, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.218+00', '{"cached":null,"ignore_cache":false}'), +(8174, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.223+00', '{"cached":null,"ignore_cache":false}'), +(8175, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.245+00', '{"cached":null,"ignore_cache":false}'), +(8176, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.248+00', '{"cached":null,"ignore_cache":false}'), +(8177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.254+00', '{"cached":null,"ignore_cache":false}'), +(8178, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.266+00', '{"cached":null,"ignore_cache":false}'), +(8179, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.278+00', '{"cached":null,"ignore_cache":false}'), +(8180, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.283+00', '{"cached":null,"ignore_cache":false}'), +(8181, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.8+00', '{"cached":null,"ignore_cache":false}'), +(8182, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.822+00', '{"cached":null,"ignore_cache":false}'), +(8183, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.855+00', '{"cached":null,"ignore_cache":false}'), +(8184, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.858+00', '{"cached":null,"ignore_cache":false}'), +(8185, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.866+00', '{"cached":null,"ignore_cache":false}'), +(8186, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.887+00', '{"cached":null,"ignore_cache":false}'), +(8187, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.897+00', '{"cached":null,"ignore_cache":false}'), +(8188, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.959+00', '{"cached":null,"ignore_cache":false}'), +(8189, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:34:43.966+00', '{"cached":null,"ignore_cache":false}'), +(8190, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.839+00', '{"cached":null,"ignore_cache":false}'), +(8191, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:06.992+00', '{"cached":null,"ignore_cache":false}'), +(8192, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:07.101+00', '{"cached":null,"ignore_cache":false}'), +(8193, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:07.127+00', '{"cached":null,"ignore_cache":false}'), +(8194, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:07.162+00', '{"cached":null,"ignore_cache":false}'), +(8195, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:07.167+00', '{"cached":null,"ignore_cache":false}'), +(8196, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:07.19+00', '{"cached":null,"ignore_cache":false}'), +(8197, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:07.291+00', '{"cached":null,"ignore_cache":false}'), +(8198, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:07.317+00', '{"cached":null,"ignore_cache":false}'), +(8199, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.132+00', '{"cached":null,"ignore_cache":false}'), +(8200, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.155+00', '{"cached":null,"ignore_cache":false}'), +(8201, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.2+00', '{"cached":null,"ignore_cache":false}'), +(8202, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.223+00', '{"cached":null,"ignore_cache":false}'), +(8203, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.223+00', '{"cached":null,"ignore_cache":false}'), +(8204, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.241+00', '{"cached":null,"ignore_cache":false}'), +(8205, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:12.254+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8206, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.312+00', '{"cached":null,"ignore_cache":false}'), +(8207, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.509+00', '{"cached":null,"ignore_cache":false}'), +(8208, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.562+00', '{"cached":null,"ignore_cache":false}'), +(8209, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.619+00', '{"cached":null,"ignore_cache":false}'), +(8210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.685+00', '{"cached":null,"ignore_cache":false}'), +(8211, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.711+00', '{"cached":null,"ignore_cache":false}'), +(8212, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.755+00', '{"cached":null,"ignore_cache":false}'), +(8213, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.81+00', '{"cached":null,"ignore_cache":false}'), +(8214, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.854+00', '{"cached":null,"ignore_cache":false}'), +(8215, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.883+00', '{"cached":null,"ignore_cache":false}'), +(8216, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.914+00', '{"cached":null,"ignore_cache":false}'), +(8217, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.927+00', '{"cached":null,"ignore_cache":false}'), +(8218, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.957+00', '{"cached":null,"ignore_cache":false}'), +(8219, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.962+00', '{"cached":null,"ignore_cache":false}'), +(8220, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.964+00', '{"cached":null,"ignore_cache":false}'), +(8221, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:13.993+00', '{"cached":null,"ignore_cache":false}'), +(8222, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:15.987+00', '{"cached":null,"ignore_cache":false}'), +(8223, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.018+00', '{"cached":null,"ignore_cache":false}'), +(8224, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.024+00', '{"cached":null,"ignore_cache":false}'), +(8225, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.096+00', '{"cached":null,"ignore_cache":false}'), +(8226, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.117+00', '{"cached":null,"ignore_cache":false}'), +(8227, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.125+00', '{"cached":null,"ignore_cache":false}'), +(8228, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.138+00', '{"cached":null,"ignore_cache":false}'), +(8229, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.176+00', '{"cached":null,"ignore_cache":false}'), +(8230, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:16.21+00', '{"cached":null,"ignore_cache":false}'), +(8231, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:31.6+00', '{"cached":null,"ignore_cache":false}'), +(8232, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:31.744+00', '{"cached":null,"ignore_cache":false}'), +(8233, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:31.931+00', '{"cached":null,"ignore_cache":false}'), +(8234, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.117+00', '{"cached":null,"ignore_cache":false}'), +(8235, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.166+00', '{"cached":null,"ignore_cache":false}'), +(8236, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.26+00', '{"cached":null,"ignore_cache":false}'), +(8237, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.302+00', '{"cached":null,"ignore_cache":false}'), +(8238, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.331+00', '{"cached":null,"ignore_cache":false}'), +(8239, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.357+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8240, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.791+00', '{"cached":null,"ignore_cache":false}'), +(8241, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.854+00', '{"cached":null,"ignore_cache":false}'), +(8242, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:32.913+00', '{"cached":null,"ignore_cache":false}'), +(8243, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.243+00', '{"cached":null,"ignore_cache":false}'), +(8244, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.268+00', '{"cached":null,"ignore_cache":false}'), +(8245, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.272+00', '{"cached":null,"ignore_cache":false}'), +(8246, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.313+00', '{"cached":null,"ignore_cache":false}'), +(8247, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.566+00', '{"cached":null,"ignore_cache":false}'), +(8248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.692+00', '{"cached":null,"ignore_cache":false}'), +(8249, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.739+00', '{"cached":null,"ignore_cache":false}'), +(8250, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.771+00', '{"cached":null,"ignore_cache":false}'), +(8251, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.818+00', '{"cached":null,"ignore_cache":false}'), +(8252, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.855+00', '{"cached":null,"ignore_cache":false}'), +(8253, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:33.856+00', '{"cached":null,"ignore_cache":false}'), +(8254, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:34.247+00', '{"cached":null,"ignore_cache":false}'), +(8255, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:34.248+00', '{"cached":null,"ignore_cache":false}'), +(8256, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:35:34.37+00', '{"cached":null,"ignore_cache":false}'), +(8257, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.303+00', '{"cached":null,"ignore_cache":false}'), +(8258, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.332+00', '{"cached":null,"ignore_cache":null}'), +(8259, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.456+00', '{"cached":null,"ignore_cache":false}'), +(8260, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.461+00', '{"cached":null,"ignore_cache":false}'), +(8261, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.534+00', '{"cached":null,"ignore_cache":false}'), +(8262, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.621+00', '{"cached":null,"ignore_cache":false}'), +(8263, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.684+00', '{"cached":null,"ignore_cache":false}'), +(8264, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.713+00', '{"cached":null,"ignore_cache":false}'), +(8265, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:00.979+00', '{"cached":null,"ignore_cache":false}'), +(8266, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.014+00', '{"cached":null,"ignore_cache":false}'), +(8267, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.079+00', '{"cached":null,"ignore_cache":false}'), +(8268, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.196+00', '{"cached":null,"ignore_cache":false}'), +(8269, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.235+00', '{"cached":null,"ignore_cache":false}'), +(8270, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.279+00', '{"cached":null,"ignore_cache":false}'), +(8271, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.37+00', '{"cached":null,"ignore_cache":false}'), +(8272, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.619+00', '{"cached":null,"ignore_cache":false}'), +(8273, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.62+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8274, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.792+00', '{"cached":null,"ignore_cache":false}'), +(8275, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.846+00', '{"cached":null,"ignore_cache":false}'), +(8276, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.882+00', '{"cached":null,"ignore_cache":false}'), +(8277, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:01.936+00', '{"cached":null,"ignore_cache":false}'), +(8278, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:02.014+00', '{"cached":null,"ignore_cache":false}'), +(8279, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:02.073+00', '{"cached":null,"ignore_cache":false}'), +(8280, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:02.091+00', '{"cached":null,"ignore_cache":false}'), +(8281, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:10.827+00', '{"cached":null,"ignore_cache":null}'), +(8282, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.008+00', '{"cached":null,"ignore_cache":false}'), +(8283, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.133+00', '{"cached":null,"ignore_cache":false}'), +(8284, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.2+00', '{"cached":null,"ignore_cache":false}'), +(8285, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.223+00', '{"cached":null,"ignore_cache":false}'), +(8286, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.237+00', '{"cached":null,"ignore_cache":false}'), +(8287, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.25+00', '{"cached":null,"ignore_cache":false}'), +(8288, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.357+00', '{"cached":null,"ignore_cache":false}'), +(8289, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.368+00', '{"cached":null,"ignore_cache":false}'), +(8290, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.397+00', '{"cached":null,"ignore_cache":false}'), +(8291, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.487+00', '{"cached":null,"ignore_cache":false}'), +(8292, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.503+00', '{"cached":null,"ignore_cache":false}'), +(8293, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.504+00', '{"cached":null,"ignore_cache":false}'), +(8294, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.524+00', '{"cached":null,"ignore_cache":false}'), +(8295, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.53+00', '{"cached":null,"ignore_cache":false}'), +(8296, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.535+00', '{"cached":null,"ignore_cache":false}'), +(8297, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:30.548+00', '{"cached":null,"ignore_cache":false}'), +(8298, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.842+00', '{"cached":null,"ignore_cache":false}'), +(8299, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.904+00', '{"cached":null,"ignore_cache":false}'), +(8300, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.911+00', '{"cached":null,"ignore_cache":false}'), +(8301, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.933+00', '{"cached":null,"ignore_cache":false}'), +(8302, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.943+00', '{"cached":null,"ignore_cache":false}'), +(8303, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:55.945+00', '{"cached":null,"ignore_cache":false}'), +(8304, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:56.015+00', '{"cached":null,"ignore_cache":false}'), +(8305, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:56.035+00', '{"cached":null,"ignore_cache":false}'), +(8306, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:36:56.066+00', '{"cached":null,"ignore_cache":false}'), +(8307, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.327+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8308, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.444+00', '{"cached":null,"ignore_cache":false}'), +(8309, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.532+00', '{"cached":null,"ignore_cache":false}'), +(8310, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.578+00', '{"cached":null,"ignore_cache":false}'), +(8311, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.599+00', '{"cached":null,"ignore_cache":false}'), +(8312, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.608+00', '{"cached":null,"ignore_cache":false}'), +(8313, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.621+00', '{"cached":null,"ignore_cache":false}'), +(8314, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.644+00', '{"cached":null,"ignore_cache":false}'), +(8315, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.677+00', '{"cached":null,"ignore_cache":false}'), +(8316, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.686+00', '{"cached":null,"ignore_cache":false}'), +(8317, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.695+00', '{"cached":null,"ignore_cache":false}'), +(8318, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.74+00', '{"cached":null,"ignore_cache":false}'), +(8319, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.796+00', '{"cached":null,"ignore_cache":false}'), +(8320, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.8+00', '{"cached":null,"ignore_cache":false}'), +(8321, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.803+00', '{"cached":null,"ignore_cache":false}'), +(8322, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:00.819+00', '{"cached":null,"ignore_cache":false}'), +(8323, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.319+00', '{"cached":null,"ignore_cache":false}'), +(8324, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.332+00', '{"cached":null,"ignore_cache":false}'), +(8325, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.347+00', '{"cached":null,"ignore_cache":false}'), +(8326, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.375+00', '{"cached":null,"ignore_cache":false}'), +(8327, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.42+00', '{"cached":null,"ignore_cache":false}'), +(8328, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.424+00', '{"cached":null,"ignore_cache":false}'), +(8329, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:25.453+00', '{"cached":null,"ignore_cache":false}'), +(8330, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.65+00', '{"cached":null,"ignore_cache":false}'), +(8331, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.702+00', '{"cached":null,"ignore_cache":false}'), +(8332, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.739+00', '{"cached":null,"ignore_cache":false}'), +(8333, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.748+00', '{"cached":null,"ignore_cache":false}'), +(8334, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.773+00', '{"cached":null,"ignore_cache":false}'), +(8335, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.804+00', '{"cached":null,"ignore_cache":false}'), +(8336, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.854+00', '{"cached":null,"ignore_cache":false}'), +(8337, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.87+00', '{"cached":null,"ignore_cache":false}'), +(8338, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.903+00', '{"cached":null,"ignore_cache":false}'), +(8339, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.917+00', '{"cached":null,"ignore_cache":false}'), +(8340, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.921+00', '{"cached":null,"ignore_cache":false}'), +(8341, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.943+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8342, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.943+00', '{"cached":null,"ignore_cache":false}'), +(8343, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.946+00', '{"cached":null,"ignore_cache":false}'), +(8344, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.955+00', '{"cached":null,"ignore_cache":false}'), +(8345, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:29.958+00', '{"cached":null,"ignore_cache":false}'), +(8346, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.292+00', '{"cached":null,"ignore_cache":false}'), +(8347, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.339+00', '{"cached":null,"ignore_cache":false}'), +(8348, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.344+00', '{"cached":null,"ignore_cache":false}'), +(8349, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.352+00', '{"cached":null,"ignore_cache":false}'), +(8350, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.354+00', '{"cached":null,"ignore_cache":false}'), +(8351, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.362+00', '{"cached":null,"ignore_cache":false}'), +(8352, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:37:55.368+00', '{"cached":null,"ignore_cache":false}'), +(8353, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.144+00', '{"cached":null,"ignore_cache":false}'), +(8354, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.154+00', '{"cached":null,"ignore_cache":false}'), +(8355, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.251+00', '{"cached":null,"ignore_cache":false}'), +(8356, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.258+00', '{"cached":null,"ignore_cache":false}'), +(8357, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.275+00', '{"cached":null,"ignore_cache":false}'), +(8358, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.323+00', '{"cached":null,"ignore_cache":false}'), +(8359, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.459+00', '{"cached":null,"ignore_cache":false}'), +(8360, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.476+00', '{"cached":null,"ignore_cache":false}'), +(8361, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.5+00', '{"cached":null,"ignore_cache":false}'), +(8362, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.517+00', '{"cached":null,"ignore_cache":false}'), +(8363, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.526+00', '{"cached":null,"ignore_cache":false}'), +(8364, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.538+00', '{"cached":null,"ignore_cache":false}'), +(8365, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.574+00', '{"cached":null,"ignore_cache":false}'), +(8366, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.599+00', '{"cached":null,"ignore_cache":false}'), +(8367, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.602+00', '{"cached":null,"ignore_cache":false}'), +(8368, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:00.614+00', '{"cached":null,"ignore_cache":false}'), +(8369, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.096+00', '{"cached":null,"ignore_cache":false}'), +(8370, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.15+00', '{"cached":null,"ignore_cache":false}'), +(8371, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.159+00', '{"cached":null,"ignore_cache":false}'), +(8372, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.169+00', '{"cached":null,"ignore_cache":false}'), +(8373, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.18+00', '{"cached":null,"ignore_cache":false}'), +(8374, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.197+00', '{"cached":null,"ignore_cache":false}'), +(8375, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:25.204+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8376, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.181+00', '{"cached":null,"ignore_cache":false}'), +(8377, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.234+00', '{"cached":null,"ignore_cache":false}'), +(8378, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.263+00', '{"cached":null,"ignore_cache":false}'), +(8379, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.271+00', '{"cached":null,"ignore_cache":false}'), +(8380, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.337+00', '{"cached":null,"ignore_cache":false}'), +(8381, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.384+00', '{"cached":null,"ignore_cache":false}'), +(8382, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.501+00', '{"cached":null,"ignore_cache":false}'), +(8383, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.501+00', '{"cached":null,"ignore_cache":false}'), +(8384, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.516+00', '{"cached":null,"ignore_cache":false}'), +(8385, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.518+00', '{"cached":null,"ignore_cache":false}'), +(8386, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.538+00', '{"cached":null,"ignore_cache":false}'), +(8387, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.564+00', '{"cached":null,"ignore_cache":false}'), +(8388, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.621+00', '{"cached":null,"ignore_cache":false}'), +(8389, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.646+00', '{"cached":null,"ignore_cache":false}'), +(8390, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.66+00', '{"cached":null,"ignore_cache":false}'), +(8391, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:30.678+00', '{"cached":null,"ignore_cache":false}'), +(8392, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.132+00', '{"cached":null,"ignore_cache":null}'), +(8393, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.7+00', '{"cached":null,"ignore_cache":false}'), +(8394, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.744+00', '{"cached":null,"ignore_cache":false}'), +(8395, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.793+00', '{"cached":null,"ignore_cache":false}'), +(8396, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.84+00', '{"cached":null,"ignore_cache":false}'), +(8397, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.848+00', '{"cached":null,"ignore_cache":false}'), +(8398, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.855+00', '{"cached":null,"ignore_cache":false}'), +(8399, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.91+00', '{"cached":null,"ignore_cache":false}'), +(8400, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:58.974+00', '{"cached":null,"ignore_cache":false}'), +(8401, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.183+00', '{"cached":null,"ignore_cache":false}'), +(8402, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:38:59.977+00', '{"cached":null,"ignore_cache":false}'), +(8403, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.151+00', '{"cached":null,"ignore_cache":false}'), +(8404, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.217+00', '{"cached":null,"ignore_cache":false}'), +(8405, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.228+00', '{"cached":null,"ignore_cache":false}'), +(8406, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.237+00', '{"cached":null,"ignore_cache":false}'), +(8407, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.402+00', '{"cached":null,"ignore_cache":false}'), +(8408, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.456+00', '{"cached":null,"ignore_cache":false}'), +(8409, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.479+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8410, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.501+00', '{"cached":null,"ignore_cache":false}'), +(8411, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.54+00', '{"cached":null,"ignore_cache":false}'), +(8412, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.568+00', '{"cached":null,"ignore_cache":false}'), +(8413, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.573+00', '{"cached":null,"ignore_cache":false}'), +(8414, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.578+00', '{"cached":null,"ignore_cache":false}'), +(8415, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.675+00', '{"cached":null,"ignore_cache":false}'), +(8416, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.682+00', '{"cached":null,"ignore_cache":false}'), +(8417, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:00.756+00', '{"cached":null,"ignore_cache":false}'), +(8418, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.872+00', '{"cached":null,"ignore_cache":false}'), +(8419, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.915+00', '{"cached":null,"ignore_cache":false}'), +(8420, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.972+00', '{"cached":null,"ignore_cache":false}'), +(8421, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:29.974+00', '{"cached":null,"ignore_cache":false}'), +(8422, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.017+00', '{"cached":null,"ignore_cache":false}'), +(8423, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.021+00', '{"cached":null,"ignore_cache":false}'), +(8424, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.085+00', '{"cached":null,"ignore_cache":false}'), +(8425, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.086+00', '{"cached":null,"ignore_cache":false}'), +(8426, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.125+00', '{"cached":null,"ignore_cache":false}'), +(8427, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.142+00', '{"cached":null,"ignore_cache":false}'), +(8428, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.179+00', '{"cached":null,"ignore_cache":false}'), +(8429, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.188+00', '{"cached":null,"ignore_cache":false}'), +(8430, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.197+00', '{"cached":null,"ignore_cache":false}'), +(8431, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.199+00', '{"cached":null,"ignore_cache":false}'), +(8432, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.208+00', '{"cached":null,"ignore_cache":false}'), +(8433, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:39:30.211+00', '{"cached":null,"ignore_cache":false}'), +(8434, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.289+00', '{"cached":null,"ignore_cache":false}'), +(8435, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.397+00', '{"cached":null,"ignore_cache":false}'), +(8436, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.427+00', '{"cached":null,"ignore_cache":false}'), +(8437, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.55+00', '{"cached":null,"ignore_cache":false}'), +(8438, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.662+00', '{"cached":null,"ignore_cache":false}'), +(8439, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.698+00', '{"cached":null,"ignore_cache":false}'), +(8440, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.717+00', '{"cached":null,"ignore_cache":false}'), +(8441, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.736+00', '{"cached":null,"ignore_cache":false}'), +(8442, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.806+00', '{"cached":null,"ignore_cache":false}'), +(8443, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.828+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8444, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.915+00', '{"cached":null,"ignore_cache":false}'), +(8445, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.933+00', '{"cached":null,"ignore_cache":false}'), +(8446, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:01.966+00', '{"cached":null,"ignore_cache":false}'), +(8447, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:02.043+00', '{"cached":null,"ignore_cache":false}'), +(8448, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:02.067+00', '{"cached":null,"ignore_cache":false}'), +(8449, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:02.085+00', '{"cached":null,"ignore_cache":false}'), +(8450, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.026+00', '{"cached":null,"ignore_cache":false}'), +(8451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.075+00', '{"cached":null,"ignore_cache":false}'), +(8452, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.076+00', '{"cached":null,"ignore_cache":false}'), +(8453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.096+00', '{"cached":null,"ignore_cache":false}'), +(8454, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.111+00', '{"cached":null,"ignore_cache":false}'), +(8455, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.17+00', '{"cached":null,"ignore_cache":false}'), +(8456, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.198+00', '{"cached":null,"ignore_cache":false}'), +(8457, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.225+00', '{"cached":null,"ignore_cache":false}'), +(8458, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.264+00', '{"cached":null,"ignore_cache":false}'), +(8459, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.306+00', '{"cached":null,"ignore_cache":false}'), +(8460, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.312+00', '{"cached":null,"ignore_cache":false}'), +(8461, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.364+00', '{"cached":null,"ignore_cache":false}'), +(8462, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.389+00', '{"cached":null,"ignore_cache":false}'), +(8463, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.402+00', '{"cached":null,"ignore_cache":false}'), +(8464, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.414+00', '{"cached":null,"ignore_cache":false}'), +(8465, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:40:30.428+00', '{"cached":null,"ignore_cache":false}'), +(8466, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.07+00', '{"cached":null,"ignore_cache":false}'), +(8467, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.191+00', '{"cached":null,"ignore_cache":false}'), +(8468, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.206+00', '{"cached":null,"ignore_cache":false}'), +(8469, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.218+00', '{"cached":null,"ignore_cache":false}'), +(8470, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.257+00', '{"cached":null,"ignore_cache":false}'), +(8471, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.289+00', '{"cached":null,"ignore_cache":false}'), +(8472, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.295+00', '{"cached":null,"ignore_cache":false}'), +(8473, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.3+00', '{"cached":null,"ignore_cache":false}'), +(8474, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.365+00', '{"cached":null,"ignore_cache":false}'), +(8475, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.37+00', '{"cached":null,"ignore_cache":false}'), +(8476, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.402+00', '{"cached":null,"ignore_cache":false}'), +(8477, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.419+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8478, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.421+00', '{"cached":null,"ignore_cache":false}'), +(8479, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.429+00', '{"cached":null,"ignore_cache":false}'), +(8480, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.441+00', '{"cached":null,"ignore_cache":false}'), +(8481, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:00.455+00', '{"cached":null,"ignore_cache":false}'), +(8482, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.05+00', '{"cached":null,"ignore_cache":false}'), +(8483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.072+00', '{"cached":null,"ignore_cache":false}'), +(8484, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.112+00', '{"cached":null,"ignore_cache":false}'), +(8485, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.12+00', '{"cached":null,"ignore_cache":false}'), +(8486, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.135+00', '{"cached":null,"ignore_cache":false}'), +(8487, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.179+00', '{"cached":null,"ignore_cache":false}'), +(8488, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.187+00', '{"cached":null,"ignore_cache":false}'), +(8489, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.188+00', '{"cached":null,"ignore_cache":false}'), +(8490, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.208+00', '{"cached":null,"ignore_cache":false}'), +(8491, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.217+00', '{"cached":null,"ignore_cache":false}'), +(8492, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.237+00', '{"cached":null,"ignore_cache":false}'), +(8493, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.237+00', '{"cached":null,"ignore_cache":false}'), +(8494, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.243+00', '{"cached":null,"ignore_cache":false}'), +(8495, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.259+00', '{"cached":null,"ignore_cache":false}'), +(8496, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.271+00', '{"cached":null,"ignore_cache":false}'), +(8497, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:30.285+00', '{"cached":null,"ignore_cache":false}'), +(8498, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.147+00', '{"cached":null,"ignore_cache":false}'), +(8499, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.164+00', '{"cached":null,"ignore_cache":false}'), +(8500, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.193+00', '{"cached":null,"ignore_cache":false}'), +(8501, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.364+00', '{"cached":null,"ignore_cache":false}'), +(8502, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.408+00', '{"cached":null,"ignore_cache":false}'), +(8503, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.466+00', '{"cached":null,"ignore_cache":false}'), +(8504, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.486+00', '{"cached":null,"ignore_cache":false}'), +(8505, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.535+00', '{"cached":null,"ignore_cache":false}'), +(8506, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.54+00', '{"cached":null,"ignore_cache":false}'), +(8507, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.618+00', '{"cached":null,"ignore_cache":false}'), +(8508, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.659+00', '{"cached":null,"ignore_cache":false}'), +(8509, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.662+00', '{"cached":null,"ignore_cache":false}'), +(8510, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.671+00', '{"cached":null,"ignore_cache":false}'), +(8511, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.674+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8512, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.707+00', '{"cached":null,"ignore_cache":false}'), +(8513, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:41:42.708+00', '{"cached":null,"ignore_cache":false}'), +(8514, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:16.842+00', '{"cached":null,"ignore_cache":false}'), +(8515, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.158+00', '{"cached":null,"ignore_cache":false}'), +(8516, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.166+00', '{"cached":null,"ignore_cache":false}'), +(8517, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.33+00', '{"cached":null,"ignore_cache":false}'), +(8518, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.49+00', '{"cached":null,"ignore_cache":false}'), +(8519, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.506+00', '{"cached":null,"ignore_cache":false}'), +(8520, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.543+00', '{"cached":null,"ignore_cache":false}'), +(8521, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.697+00', '{"cached":null,"ignore_cache":false}'), +(8522, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:17.94+00', '{"cached":null,"ignore_cache":false}'), +(8523, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:18.051+00', '{"cached":null,"ignore_cache":false}'), +(8524, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:18.287+00', '{"cached":null,"ignore_cache":false}'), +(8525, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:18.615+00', '{"cached":null,"ignore_cache":false}'), +(8526, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:18.647+00', '{"cached":null,"ignore_cache":false}'), +(8527, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:18.853+00', '{"cached":null,"ignore_cache":false}'), +(8528, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:19.186+00', '{"cached":null,"ignore_cache":false}'), +(8529, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:19.284+00', '{"cached":null,"ignore_cache":false}'), +(8530, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:19.67+00', '{"cached":null,"ignore_cache":false}'), +(8531, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:19.678+00', '{"cached":null,"ignore_cache":false}'), +(8532, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:19.716+00', '{"cached":null,"ignore_cache":false}'), +(8533, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:20.171+00', '{"cached":null,"ignore_cache":false}'), +(8534, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.308+00', '{"cached":null,"ignore_cache":false}'), +(8535, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.437+00', '{"cached":null,"ignore_cache":false}'), +(8536, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.457+00', '{"cached":null,"ignore_cache":false}'), +(8537, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.461+00', '{"cached":null,"ignore_cache":false}'), +(8538, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.474+00', '{"cached":null,"ignore_cache":false}'), +(8539, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.486+00', '{"cached":null,"ignore_cache":false}'), +(8540, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.74+00', '{"cached":null,"ignore_cache":false}'), +(8541, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.778+00', '{"cached":null,"ignore_cache":false}'), +(8542, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:23.984+00', '{"cached":null,"ignore_cache":false}'), +(8543, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.169+00', '{"cached":null,"ignore_cache":false}'), +(8544, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.375+00', '{"cached":null,"ignore_cache":false}'), +(8545, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.389+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8546, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.401+00', '{"cached":null,"ignore_cache":false}'), +(8547, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.417+00', '{"cached":null,"ignore_cache":false}'), +(8548, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.43+00', '{"cached":null,"ignore_cache":false}'), +(8549, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:25.467+00', '{"cached":null,"ignore_cache":false}'), +(8550, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.897+00', '{"cached":null,"ignore_cache":false}'), +(8551, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.955+00', '{"cached":null,"ignore_cache":false}'), +(8552, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:31.984+00', '{"cached":null,"ignore_cache":false}'), +(8553, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.304+00', '{"cached":null,"ignore_cache":false}'), +(8554, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.489+00', '{"cached":null,"ignore_cache":false}'), +(8555, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.644+00', '{"cached":null,"ignore_cache":false}'), +(8556, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.7+00', '{"cached":null,"ignore_cache":false}'), +(8557, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:32.932+00', '{"cached":null,"ignore_cache":false}'), +(8558, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.364+00', '{"cached":null,"ignore_cache":false}'), +(8559, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:33.747+00', '{"cached":null,"ignore_cache":false}'), +(8560, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:34.319+00', '{"cached":null,"ignore_cache":false}'), +(8561, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:34.513+00', '{"cached":null,"ignore_cache":false}'), +(8562, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:34.765+00', '{"cached":null,"ignore_cache":false}'), +(8563, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:34.876+00', '{"cached":null,"ignore_cache":false}'), +(8564, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:34.921+00', '{"cached":null,"ignore_cache":false}'), +(8565, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:35.161+00', '{"cached":null,"ignore_cache":false}'), +(8566, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:35.161+00', '{"cached":null,"ignore_cache":false}'), +(8567, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:35.303+00', '{"cached":null,"ignore_cache":false}'), +(8568, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:35.326+00', '{"cached":null,"ignore_cache":false}'), +(8569, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:35.429+00', '{"cached":null,"ignore_cache":false}'), +(8570, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:35.628+00', '{"cached":null,"ignore_cache":false}'), +(8571, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:42:36.376+00', '{"cached":null,"ignore_cache":false}'), +(8572, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.717+00', '{"cached":null,"ignore_cache":false}'), +(8573, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.789+00', '{"cached":null,"ignore_cache":false}'), +(8574, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.804+00', '{"cached":null,"ignore_cache":false}'), +(8575, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.966+00', '{"cached":null,"ignore_cache":false}'), +(8576, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:01.995+00', '{"cached":null,"ignore_cache":false}'), +(8577, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.025+00', '{"cached":null,"ignore_cache":false}'), +(8578, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.26+00', '{"cached":null,"ignore_cache":false}'), +(8579, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.262+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8580, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.32+00', '{"cached":null,"ignore_cache":false}'), +(8581, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.481+00', '{"cached":null,"ignore_cache":false}'), +(8582, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.499+00', '{"cached":null,"ignore_cache":false}'), +(8583, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.502+00', '{"cached":null,"ignore_cache":false}'), +(8584, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.574+00', '{"cached":null,"ignore_cache":false}'), +(8585, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.734+00', '{"cached":null,"ignore_cache":false}'), +(8586, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:02.734+00', '{"cached":null,"ignore_cache":false}'), +(8587, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.029+00', '{"cached":null,"ignore_cache":false}'), +(8588, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.054+00', '{"cached":null,"ignore_cache":false}'), +(8589, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.067+00', '{"cached":null,"ignore_cache":false}'), +(8590, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.145+00', '{"cached":null,"ignore_cache":false}'), +(8591, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.187+00', '{"cached":null,"ignore_cache":false}'), +(8592, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.207+00', '{"cached":null,"ignore_cache":false}'), +(8593, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.232+00', '{"cached":null,"ignore_cache":false}'), +(8594, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.235+00', '{"cached":null,"ignore_cache":false}'), +(8595, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.274+00', '{"cached":null,"ignore_cache":false}'), +(8596, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:03.308+00', '{"cached":null,"ignore_cache":false}'), +(8597, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.115+00', '{"cached":null,"ignore_cache":false}'), +(8598, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.126+00', '{"cached":null,"ignore_cache":false}'), +(8599, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.131+00', '{"cached":null,"ignore_cache":false}'), +(8600, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.142+00', '{"cached":null,"ignore_cache":false}'), +(8601, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.148+00', '{"cached":null,"ignore_cache":false}'), +(8602, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.153+00', '{"cached":null,"ignore_cache":false}'), +(8603, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:11.161+00', '{"cached":null,"ignore_cache":false}'), +(8604, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.712+00', '{"cached":null,"ignore_cache":false}'), +(8605, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.878+00', '{"cached":null,"ignore_cache":false}'), +(8606, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:31.971+00', '{"cached":null,"ignore_cache":false}'), +(8607, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.036+00', '{"cached":null,"ignore_cache":false}'), +(8608, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.067+00', '{"cached":null,"ignore_cache":false}'), +(8609, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.187+00', '{"cached":null,"ignore_cache":false}'), +(8610, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.228+00', '{"cached":null,"ignore_cache":false}'), +(8611, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.254+00', '{"cached":null,"ignore_cache":false}'), +(8612, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.319+00', '{"cached":null,"ignore_cache":false}'), +(8613, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.331+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8614, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.448+00', '{"cached":null,"ignore_cache":false}'), +(8615, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.51+00', '{"cached":null,"ignore_cache":false}'), +(8616, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.527+00', '{"cached":null,"ignore_cache":false}'), +(8617, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.587+00', '{"cached":null,"ignore_cache":false}'), +(8618, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.597+00', '{"cached":null,"ignore_cache":false}'), +(8619, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:32.869+00', '{"cached":null,"ignore_cache":false}'), +(8620, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.829+00', '{"cached":null,"ignore_cache":false}'), +(8621, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.832+00', '{"cached":null,"ignore_cache":false}'), +(8622, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.842+00', '{"cached":null,"ignore_cache":false}'), +(8623, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.847+00', '{"cached":null,"ignore_cache":false}'), +(8624, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.85+00', '{"cached":null,"ignore_cache":false}'), +(8625, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.851+00', '{"cached":null,"ignore_cache":false}'), +(8626, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.855+00', '{"cached":null,"ignore_cache":false}'), +(8627, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.861+00', '{"cached":null,"ignore_cache":false}'), +(8628, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:41.884+00', '{"cached":null,"ignore_cache":false}'), +(8629, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.176+00', '{"cached":null,"ignore_cache":false}'), +(8630, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.177+00', '{"cached":null,"ignore_cache":false}'), +(8631, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.239+00', '{"cached":null,"ignore_cache":false}'), +(8632, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.245+00', '{"cached":null,"ignore_cache":false}'), +(8633, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.278+00', '{"cached":null,"ignore_cache":false}'), +(8634, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.283+00', '{"cached":null,"ignore_cache":false}'), +(8635, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:54.287+00', '{"cached":null,"ignore_cache":false}'), +(8636, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:57.556+00', '{"cached":null,"ignore_cache":null}'), +(8637, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.133+00', '{"cached":null,"ignore_cache":false}'), +(8638, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.225+00', '{"cached":null,"ignore_cache":false}'), +(8639, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.247+00', '{"cached":null,"ignore_cache":false}'), +(8640, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.353+00', '{"cached":null,"ignore_cache":false}'), +(8641, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.409+00', '{"cached":null,"ignore_cache":false}'), +(8642, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.43+00', '{"cached":null,"ignore_cache":false}'), +(8643, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.445+00', '{"cached":null,"ignore_cache":false}'), +(8644, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.486+00', '{"cached":null,"ignore_cache":false}'), +(8645, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:43:58.587+00', '{"cached":null,"ignore_cache":false}'), +(8646, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.611+00', '{"cached":null,"ignore_cache":false}'), +(8647, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.754+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8648, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.876+00', '{"cached":null,"ignore_cache":false}'), +(8649, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.878+00', '{"cached":null,"ignore_cache":false}'), +(8650, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.899+00', '{"cached":null,"ignore_cache":false}'), +(8651, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.9+00', '{"cached":null,"ignore_cache":false}'), +(8652, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.902+00', '{"cached":null,"ignore_cache":false}'), +(8653, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.912+00', '{"cached":null,"ignore_cache":false}'), +(8654, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:03.977+00', '{"cached":null,"ignore_cache":false}'), +(8655, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.617+00', '{"cached":null,"ignore_cache":false}'), +(8656, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.678+00', '{"cached":null,"ignore_cache":false}'), +(8657, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.707+00', '{"cached":null,"ignore_cache":false}'), +(8658, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.722+00', '{"cached":null,"ignore_cache":false}'), +(8659, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.723+00', '{"cached":null,"ignore_cache":false}'), +(8660, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.736+00', '{"cached":null,"ignore_cache":false}'), +(8661, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:05.738+00', '{"cached":null,"ignore_cache":false}'), +(8662, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.432+00', '{"cached":null,"ignore_cache":false}'), +(8663, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.518+00', '{"cached":null,"ignore_cache":false}'), +(8664, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.551+00', '{"cached":null,"ignore_cache":false}'), +(8665, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.594+00', '{"cached":null,"ignore_cache":false}'), +(8666, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.617+00', '{"cached":null,"ignore_cache":false}'), +(8667, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.622+00', '{"cached":null,"ignore_cache":false}'), +(8668, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.622+00', '{"cached":null,"ignore_cache":false}'), +(8669, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.623+00', '{"cached":null,"ignore_cache":false}'), +(8670, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:22.623+00', '{"cached":null,"ignore_cache":false}'), +(8671, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.85+00', '{"cached":null,"ignore_cache":false}'), +(8672, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.897+00', '{"cached":null,"ignore_cache":false}'), +(8673, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.912+00', '{"cached":null,"ignore_cache":false}'), +(8674, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.928+00', '{"cached":null,"ignore_cache":false}'), +(8675, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.942+00', '{"cached":null,"ignore_cache":false}'), +(8676, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.946+00', '{"cached":null,"ignore_cache":false}'), +(8677, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:33.953+00', '{"cached":null,"ignore_cache":false}'), +(8678, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.724+00', '{"cached":null,"ignore_cache":false}'), +(8679, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.76+00', '{"cached":null,"ignore_cache":false}'), +(8680, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.762+00', '{"cached":null,"ignore_cache":false}'), +(8681, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.774+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8682, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.791+00', '{"cached":null,"ignore_cache":false}'), +(8683, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.792+00', '{"cached":null,"ignore_cache":false}'), +(8684, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:39.823+00', '{"cached":null,"ignore_cache":false}'), +(8685, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.696+00', '{"cached":null,"ignore_cache":false}'), +(8686, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.742+00', '{"cached":null,"ignore_cache":false}'), +(8687, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.766+00', '{"cached":null,"ignore_cache":false}'), +(8688, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.789+00', '{"cached":null,"ignore_cache":false}'), +(8689, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.923+00', '{"cached":null,"ignore_cache":false}'), +(8690, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.972+00', '{"cached":null,"ignore_cache":false}'), +(8691, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:45.977+00', '{"cached":null,"ignore_cache":false}'), +(8692, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:46.026+00', '{"cached":null,"ignore_cache":false}'), +(8693, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:46.101+00', '{"cached":null,"ignore_cache":false}'), +(8694, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.973+00', '{"cached":null,"ignore_cache":false}'), +(8695, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:57.992+00', '{"cached":null,"ignore_cache":false}'), +(8696, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.077+00', '{"cached":null,"ignore_cache":false}'), +(8697, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.103+00', '{"cached":null,"ignore_cache":false}'), +(8698, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.114+00', '{"cached":null,"ignore_cache":false}'), +(8699, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.136+00', '{"cached":null,"ignore_cache":false}'), +(8700, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.168+00', '{"cached":null,"ignore_cache":false}'), +(8701, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.169+00', '{"cached":null,"ignore_cache":false}'), +(8702, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:44:58.222+00', '{"cached":null,"ignore_cache":false}'), +(8703, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.441+00', '{"cached":null,"ignore_cache":false}'), +(8704, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.458+00', '{"cached":null,"ignore_cache":false}'), +(8705, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.464+00', '{"cached":null,"ignore_cache":false}'), +(8706, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.492+00', '{"cached":null,"ignore_cache":false}'), +(8707, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.501+00', '{"cached":null,"ignore_cache":false}'), +(8708, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.511+00', '{"cached":null,"ignore_cache":false}'), +(8709, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:09.518+00', '{"cached":null,"ignore_cache":false}'), +(8710, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.736+00', '{"cached":null,"ignore_cache":false}'), +(8711, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.82+00', '{"cached":null,"ignore_cache":false}'), +(8712, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.832+00', '{"cached":null,"ignore_cache":false}'), +(8713, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.879+00', '{"cached":null,"ignore_cache":false}'), +(8714, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.89+00', '{"cached":null,"ignore_cache":false}'), +(8715, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.911+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8716, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:15.917+00', '{"cached":null,"ignore_cache":false}'), +(8717, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.922+00', '{"cached":null,"ignore_cache":false}'), +(8718, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.979+00', '{"cached":null,"ignore_cache":false}'), +(8719, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:33.995+00', '{"cached":null,"ignore_cache":false}'), +(8720, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:34.014+00', '{"cached":null,"ignore_cache":false}'), +(8721, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:34.025+00', '{"cached":null,"ignore_cache":false}'), +(8722, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:34.048+00', '{"cached":null,"ignore_cache":false}'), +(8723, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:34.053+00', '{"cached":null,"ignore_cache":false}'), +(8724, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:34.089+00', '{"cached":null,"ignore_cache":false}'), +(8725, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:34.134+00', '{"cached":null,"ignore_cache":false}'), +(8726, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.163+00', '{"cached":null,"ignore_cache":false}'), +(8727, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.248+00', '{"cached":null,"ignore_cache":false}'), +(8728, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.279+00', '{"cached":null,"ignore_cache":false}'), +(8729, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.284+00', '{"cached":null,"ignore_cache":false}'), +(8730, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.295+00', '{"cached":null,"ignore_cache":false}'), +(8731, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.31+00', '{"cached":null,"ignore_cache":false}'), +(8732, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.329+00', '{"cached":null,"ignore_cache":false}'), +(8733, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.352+00', '{"cached":null,"ignore_cache":false}'), +(8734, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:39.361+00', '{"cached":null,"ignore_cache":false}'), +(8735, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.974+00', '{"cached":null,"ignore_cache":false}'), +(8736, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:51.991+00', '{"cached":null,"ignore_cache":false}'), +(8737, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:52.027+00', '{"cached":null,"ignore_cache":false}'), +(8738, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:52.036+00', '{"cached":null,"ignore_cache":false}'), +(8739, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:52.039+00', '{"cached":null,"ignore_cache":false}'), +(8740, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:52.042+00', '{"cached":null,"ignore_cache":false}'), +(8741, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:52.087+00', '{"cached":null,"ignore_cache":false}'), +(8742, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:53.941+00', '{"cached":null,"ignore_cache":false}'), +(8743, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.059+00', '{"cached":null,"ignore_cache":false}'), +(8744, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.107+00', '{"cached":null,"ignore_cache":false}'), +(8745, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.121+00', '{"cached":null,"ignore_cache":false}'), +(8746, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.153+00', '{"cached":null,"ignore_cache":false}'), +(8747, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.162+00', '{"cached":null,"ignore_cache":false}'), +(8748, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:45:54.175+00', '{"cached":null,"ignore_cache":false}'), +(8749, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.139+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8750, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.154+00', '{"cached":null,"ignore_cache":false}'), +(8751, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.187+00', '{"cached":null,"ignore_cache":false}'), +(8752, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.21+00', '{"cached":null,"ignore_cache":false}'), +(8753, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.24+00', '{"cached":null,"ignore_cache":false}'), +(8754, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.244+00', '{"cached":null,"ignore_cache":false}'), +(8755, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.247+00', '{"cached":null,"ignore_cache":false}'), +(8756, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.286+00', '{"cached":null,"ignore_cache":false}'), +(8757, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:19.303+00', '{"cached":null,"ignore_cache":false}'), +(8758, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.759+00', '{"cached":null,"ignore_cache":false}'), +(8759, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.81+00', '{"cached":null,"ignore_cache":false}'), +(8760, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.814+00', '{"cached":null,"ignore_cache":false}'), +(8761, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.848+00', '{"cached":null,"ignore_cache":false}'), +(8762, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.865+00', '{"cached":null,"ignore_cache":false}'), +(8763, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.896+00', '{"cached":null,"ignore_cache":false}'), +(8764, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:23.903+00', '{"cached":null,"ignore_cache":false}'), +(8765, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.737+00', '{"cached":null,"ignore_cache":false}'), +(8766, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.813+00', '{"cached":null,"ignore_cache":false}'), +(8767, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:26.97+00', '{"cached":null,"ignore_cache":false}'), +(8768, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:27.051+00', '{"cached":null,"ignore_cache":false}'), +(8769, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:27.122+00', '{"cached":null,"ignore_cache":false}'), +(8770, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:27.146+00', '{"cached":null,"ignore_cache":false}'), +(8771, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:27.191+00', '{"cached":null,"ignore_cache":false}'), +(8772, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:27.194+00', '{"cached":null,"ignore_cache":false}'), +(8773, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:27.27+00', '{"cached":null,"ignore_cache":false}'), +(8774, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.942+00', '{"cached":null,"ignore_cache":false}'), +(8775, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.96+00', '{"cached":null,"ignore_cache":false}'), +(8776, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:40.979+00', '{"cached":null,"ignore_cache":false}'), +(8777, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:41+00', '{"cached":null,"ignore_cache":false}'), +(8778, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:41.056+00', '{"cached":null,"ignore_cache":false}'), +(8779, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:41.064+00', '{"cached":null,"ignore_cache":false}'), +(8780, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:46:41.098+00', '{"cached":null,"ignore_cache":false}'), +(8781, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.727+00', '{"cached":null,"ignore_cache":false}'), +(8782, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.762+00', '{"cached":null,"ignore_cache":false}'), +(8783, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.81+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8784, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.828+00', '{"cached":null,"ignore_cache":false}'), +(8785, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.872+00', '{"cached":null,"ignore_cache":false}'), +(8786, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.898+00', '{"cached":null,"ignore_cache":false}'), +(8787, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:00.907+00', '{"cached":null,"ignore_cache":false}'), +(8788, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.971+00', '{"cached":null,"ignore_cache":false}'), +(8789, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:11.995+00', '{"cached":null,"ignore_cache":false}'), +(8790, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.038+00', '{"cached":null,"ignore_cache":false}'), +(8791, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.116+00', '{"cached":null,"ignore_cache":false}'), +(8792, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.214+00', '{"cached":null,"ignore_cache":false}'), +(8793, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.251+00', '{"cached":null,"ignore_cache":false}'), +(8794, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.259+00', '{"cached":null,"ignore_cache":false}'), +(8795, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.306+00', '{"cached":null,"ignore_cache":false}'), +(8796, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:12.411+00', '{"cached":null,"ignore_cache":false}'), +(8797, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.76+00', '{"cached":null,"ignore_cache":false}'), +(8798, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.788+00', '{"cached":null,"ignore_cache":false}'), +(8799, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.808+00', '{"cached":null,"ignore_cache":false}'), +(8800, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.811+00', '{"cached":null,"ignore_cache":false}'), +(8801, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.832+00', '{"cached":null,"ignore_cache":false}'), +(8802, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.85+00', '{"cached":null,"ignore_cache":false}'), +(8803, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:47:40.862+00', '{"cached":null,"ignore_cache":false}'), +(8804, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.087+00', '{"cached":null,"ignore_cache":false}'), +(8805, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.187+00', '{"cached":null,"ignore_cache":false}'), +(8806, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.19+00', '{"cached":null,"ignore_cache":false}'), +(8807, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.221+00', '{"cached":null,"ignore_cache":false}'), +(8808, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.265+00', '{"cached":null,"ignore_cache":false}'), +(8809, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.281+00', '{"cached":null,"ignore_cache":false}'), +(8810, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.314+00', '{"cached":null,"ignore_cache":false}'), +(8811, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.393+00', '{"cached":null,"ignore_cache":false}'), +(8812, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:03.571+00', '{"cached":null,"ignore_cache":false}'), +(8813, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.791+00', '{"cached":null,"ignore_cache":false}'), +(8814, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.809+00', '{"cached":null,"ignore_cache":false}'), +(8815, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.826+00', '{"cached":null,"ignore_cache":false}'), +(8816, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.83+00', '{"cached":null,"ignore_cache":false}'), +(8817, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.84+00', '{"cached":null,"ignore_cache":false}'), +(8818, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.843+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8819, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:19.846+00', '{"cached":null,"ignore_cache":false}'), +(8820, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.598+00', '{"cached":null,"ignore_cache":false}'), +(8821, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.856+00', '{"cached":null,"ignore_cache":false}'), +(8822, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.867+00', '{"cached":null,"ignore_cache":false}'), +(8823, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.874+00', '{"cached":null,"ignore_cache":false}'), +(8824, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:44.921+00', '{"cached":null,"ignore_cache":false}'), +(8825, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:45+00', '{"cached":null,"ignore_cache":false}'), +(8826, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:45.022+00', '{"cached":null,"ignore_cache":false}'), +(8827, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:45.117+00', '{"cached":null,"ignore_cache":false}'), +(8828, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:45.143+00', '{"cached":null,"ignore_cache":false}'), +(8829, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.76+00', '{"cached":null,"ignore_cache":false}'), +(8830, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.857+00', '{"cached":null,"ignore_cache":false}'), +(8831, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:55.874+00', '{"cached":null,"ignore_cache":false}'), +(8832, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:56.012+00', '{"cached":null,"ignore_cache":false}'), +(8833, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:56.012+00', '{"cached":null,"ignore_cache":false}'), +(8834, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:56.038+00', '{"cached":null,"ignore_cache":false}'), +(8835, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:56.091+00', '{"cached":null,"ignore_cache":false}'), +(8836, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:57.581+00', '{"cached":null,"ignore_cache":null}'), +(8837, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.215+00', '{"cached":null,"ignore_cache":false}'), +(8838, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.358+00', '{"cached":null,"ignore_cache":false}'), +(8839, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.381+00', '{"cached":null,"ignore_cache":false}'), +(8840, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.386+00', '{"cached":null,"ignore_cache":false}'), +(8841, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.405+00', '{"cached":null,"ignore_cache":false}'), +(8842, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.441+00', '{"cached":null,"ignore_cache":false}'), +(8843, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.447+00', '{"cached":null,"ignore_cache":false}'), +(8844, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.482+00', '{"cached":null,"ignore_cache":false}'), +(8845, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:48:58.567+00', '{"cached":null,"ignore_cache":false}'), +(8846, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.063+00', '{"cached":null,"ignore_cache":false}'), +(8847, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.242+00', '{"cached":null,"ignore_cache":false}'), +(8848, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.325+00', '{"cached":null,"ignore_cache":false}'), +(8849, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.347+00', '{"cached":null,"ignore_cache":false}'), +(8850, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.36+00', '{"cached":null,"ignore_cache":false}'), +(8851, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.402+00', '{"cached":null,"ignore_cache":false}'), +(8852, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.489+00', '{"cached":null,"ignore_cache":false}'), +(8853, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.494+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8854, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:25.52+00', '{"cached":null,"ignore_cache":false}'), +(8855, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.759+00', '{"cached":null,"ignore_cache":false}'), +(8856, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.77+00', '{"cached":null,"ignore_cache":false}'), +(8857, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.836+00', '{"cached":null,"ignore_cache":false}'), +(8858, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.883+00', '{"cached":null,"ignore_cache":false}'), +(8859, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:26.895+00', '{"cached":null,"ignore_cache":false}'), +(8860, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:27.038+00', '{"cached":null,"ignore_cache":false}'), +(8861, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:27.064+00', '{"cached":null,"ignore_cache":false}'), +(8862, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.396+00', '{"cached":null,"ignore_cache":false}'), +(8863, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.42+00', '{"cached":null,"ignore_cache":false}'), +(8864, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.423+00', '{"cached":null,"ignore_cache":false}'), +(8865, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.431+00', '{"cached":null,"ignore_cache":false}'), +(8866, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.446+00', '{"cached":null,"ignore_cache":false}'), +(8867, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.47+00', '{"cached":null,"ignore_cache":false}'), +(8868, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:49:59.481+00', '{"cached":null,"ignore_cache":false}'), +(8869, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.135+00', '{"cached":null,"ignore_cache":false}'), +(8870, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.172+00', '{"cached":null,"ignore_cache":false}'), +(8871, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.227+00', '{"cached":null,"ignore_cache":false}'), +(8872, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.362+00', '{"cached":null,"ignore_cache":false}'), +(8873, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.363+00', '{"cached":null,"ignore_cache":false}'), +(8874, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.38+00', '{"cached":null,"ignore_cache":false}'), +(8875, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.418+00', '{"cached":null,"ignore_cache":false}'), +(8876, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.421+00', '{"cached":null,"ignore_cache":false}'), +(8877, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:06.529+00', '{"cached":null,"ignore_cache":false}'), +(8878, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.789+00', '{"cached":null,"ignore_cache":false}'), +(8879, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.793+00', '{"cached":null,"ignore_cache":false}'), +(8880, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.832+00', '{"cached":null,"ignore_cache":false}'), +(8881, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.842+00', '{"cached":null,"ignore_cache":false}'), +(8882, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.863+00', '{"cached":null,"ignore_cache":false}'), +(8883, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.911+00', '{"cached":null,"ignore_cache":false}'), +(8884, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:37.918+00', '{"cached":null,"ignore_cache":false}'), +(8885, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:50:59.951+00', '{"cached":null,"ignore_cache":false}'), +(8886, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.055+00', '{"cached":null,"ignore_cache":false}'), +(8887, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.079+00', '{"cached":null,"ignore_cache":false}'), +(8888, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.224+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8889, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.238+00', '{"cached":null,"ignore_cache":false}'), +(8890, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.286+00', '{"cached":null,"ignore_cache":false}'), +(8891, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.314+00', '{"cached":null,"ignore_cache":false}'), +(8892, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.331+00', '{"cached":null,"ignore_cache":false}'), +(8893, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:00.338+00', '{"cached":null,"ignore_cache":false}'), +(8894, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.887+00', '{"cached":null,"ignore_cache":false}'), +(8895, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.897+00', '{"cached":null,"ignore_cache":false}'), +(8896, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.934+00', '{"cached":null,"ignore_cache":false}'), +(8897, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.961+00', '{"cached":null,"ignore_cache":false}'), +(8898, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.972+00', '{"cached":null,"ignore_cache":false}'), +(8899, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.98+00', '{"cached":null,"ignore_cache":false}'), +(8900, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:19.995+00', '{"cached":null,"ignore_cache":false}'), +(8901, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.855+00', '{"cached":null,"ignore_cache":false}'), +(8902, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.864+00', '{"cached":null,"ignore_cache":false}'), +(8903, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.91+00', '{"cached":null,"ignore_cache":false}'), +(8904, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.916+00', '{"cached":null,"ignore_cache":false}'), +(8905, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.923+00', '{"cached":null,"ignore_cache":false}'), +(8906, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.954+00', '{"cached":null,"ignore_cache":false}'), +(8907, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.956+00', '{"cached":null,"ignore_cache":false}'), +(8908, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:48.957+00', '{"cached":null,"ignore_cache":false}'), +(8909, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:49.02+00', '{"cached":null,"ignore_cache":false}'), +(8910, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.827+00', '{"cached":null,"ignore_cache":false}'), +(8911, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.871+00', '{"cached":null,"ignore_cache":false}'), +(8912, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.888+00', '{"cached":null,"ignore_cache":false}'), +(8913, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.928+00', '{"cached":null,"ignore_cache":false}'), +(8914, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.934+00', '{"cached":null,"ignore_cache":false}'), +(8915, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.939+00', '{"cached":null,"ignore_cache":false}'), +(8916, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:51:56.943+00', '{"cached":null,"ignore_cache":false}'), +(8917, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.713+00', '{"cached":null,"ignore_cache":false}'), +(8918, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.738+00', '{"cached":null,"ignore_cache":false}'), +(8919, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.813+00', '{"cached":null,"ignore_cache":false}'), +(8920, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.844+00', '{"cached":null,"ignore_cache":false}'), +(8921, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.848+00', '{"cached":null,"ignore_cache":false}'), +(8922, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.925+00', '{"cached":null,"ignore_cache":false}'), +(8923, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:34.926+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8924, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:43.912+00', '{"cached":null,"ignore_cache":false}'), +(8925, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.186+00', '{"cached":null,"ignore_cache":false}'), +(8926, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.275+00', '{"cached":null,"ignore_cache":false}'), +(8927, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.324+00', '{"cached":null,"ignore_cache":false}'), +(8928, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.343+00', '{"cached":null,"ignore_cache":false}'), +(8929, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.388+00', '{"cached":null,"ignore_cache":false}'), +(8930, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.47+00', '{"cached":null,"ignore_cache":false}'), +(8931, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.477+00', '{"cached":null,"ignore_cache":false}'), +(8932, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:52:44.504+00', '{"cached":null,"ignore_cache":false}'), +(8933, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.668+00', '{"cached":null,"ignore_cache":false}'), +(8934, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.712+00', '{"cached":null,"ignore_cache":false}'), +(8935, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.718+00', '{"cached":null,"ignore_cache":false}'), +(8936, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.728+00', '{"cached":null,"ignore_cache":false}'), +(8937, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.782+00', '{"cached":null,"ignore_cache":false}'), +(8938, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.815+00', '{"cached":null,"ignore_cache":false}'), +(8939, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:10.844+00', '{"cached":null,"ignore_cache":false}'), +(8940, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.088+00', '{"cached":null,"ignore_cache":false}'), +(8941, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.098+00', '{"cached":null,"ignore_cache":false}'), +(8942, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.115+00', '{"cached":null,"ignore_cache":false}'), +(8943, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.155+00', '{"cached":null,"ignore_cache":false}'), +(8944, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.223+00', '{"cached":null,"ignore_cache":false}'), +(8945, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.238+00', '{"cached":null,"ignore_cache":false}'), +(8946, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.249+00', '{"cached":null,"ignore_cache":false}'), +(8947, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.268+00', '{"cached":null,"ignore_cache":false}'), +(8948, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:31.329+00', '{"cached":null,"ignore_cache":false}'), +(8949, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.822+00', '{"cached":null,"ignore_cache":false}'), +(8950, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.831+00', '{"cached":null,"ignore_cache":false}'), +(8951, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.852+00', '{"cached":null,"ignore_cache":false}'), +(8952, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.859+00', '{"cached":null,"ignore_cache":false}'), +(8953, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.862+00', '{"cached":null,"ignore_cache":false}'), +(8954, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.877+00', '{"cached":null,"ignore_cache":false}'), +(8955, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:45.886+00', '{"cached":null,"ignore_cache":false}'), +(8956, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.554+00', '{"cached":null,"ignore_cache":null}'), +(8957, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:57.98+00', '{"cached":null,"ignore_cache":false}'), +(8958, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.069+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8959, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.084+00', '{"cached":null,"ignore_cache":false}'), +(8960, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.096+00', '{"cached":null,"ignore_cache":false}'), +(8961, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.108+00', '{"cached":null,"ignore_cache":false}'), +(8962, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.129+00', '{"cached":null,"ignore_cache":false}'), +(8963, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.163+00', '{"cached":null,"ignore_cache":false}'), +(8964, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.182+00', '{"cached":null,"ignore_cache":false}'), +(8965, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:53:58.202+00', '{"cached":null,"ignore_cache":false}'), +(8966, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.481+00', '{"cached":null,"ignore_cache":false}'), +(8967, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.644+00', '{"cached":null,"ignore_cache":false}'), +(8968, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.799+00', '{"cached":null,"ignore_cache":false}'), +(8969, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.831+00', '{"cached":null,"ignore_cache":false}'), +(8970, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:21.994+00', '{"cached":null,"ignore_cache":false}'), +(8971, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:22.11+00', '{"cached":null,"ignore_cache":false}'), +(8972, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:22.115+00', '{"cached":null,"ignore_cache":false}'), +(8973, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:22.178+00', '{"cached":null,"ignore_cache":false}'), +(8974, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:22.312+00', '{"cached":null,"ignore_cache":false}'), +(8975, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.659+00', '{"cached":null,"ignore_cache":false}'), +(8976, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.681+00', '{"cached":null,"ignore_cache":false}'), +(8977, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.706+00', '{"cached":null,"ignore_cache":false}'), +(8978, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.743+00', '{"cached":null,"ignore_cache":false}'), +(8979, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.747+00', '{"cached":null,"ignore_cache":false}'), +(8980, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.749+00', '{"cached":null,"ignore_cache":false}'), +(8981, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 13:54:23.756+00', '{"cached":null,"ignore_cache":false}'), +(8982, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:57.956+00', '{"cached":null,"ignore_cache":null}'), +(8983, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.679+00', '{"cached":null,"ignore_cache":false}'), +(8984, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.73+00', '{"cached":null,"ignore_cache":false}'), +(8985, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.76+00', '{"cached":null,"ignore_cache":false}'), +(8986, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.776+00', '{"cached":null,"ignore_cache":false}'), +(8987, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.833+00', '{"cached":null,"ignore_cache":false}'), +(8988, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.857+00', '{"cached":null,"ignore_cache":false}'), +(8989, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.867+00', '{"cached":null,"ignore_cache":false}'), +(8990, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.918+00', '{"cached":null,"ignore_cache":false}'), +(8991, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 13:58:58.941+00', '{"cached":null,"ignore_cache":false}'), +(8992, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:03:59.359+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(8993, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.16+00', '{"cached":null,"ignore_cache":false}'), +(8994, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.171+00', '{"cached":null,"ignore_cache":false}'), +(8995, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.215+00', '{"cached":null,"ignore_cache":false}'), +(8996, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.382+00', '{"cached":null,"ignore_cache":false}'), +(8997, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.4+00', '{"cached":null,"ignore_cache":false}'), +(8998, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.568+00', '{"cached":null,"ignore_cache":false}'), +(8999, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.578+00', '{"cached":null,"ignore_cache":false}'), +(9000, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.625+00', '{"cached":null,"ignore_cache":false}'), +(9001, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:04:01.817+00', '{"cached":null,"ignore_cache":false}'), +(9002, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.036+00', '{"cached":null,"ignore_cache":null}'), +(9003, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.842+00', '{"cached":null,"ignore_cache":false}'), +(9004, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.873+00', '{"cached":null,"ignore_cache":false}'), +(9005, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.883+00', '{"cached":null,"ignore_cache":false}'), +(9006, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.887+00', '{"cached":null,"ignore_cache":false}'), +(9007, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.892+00', '{"cached":null,"ignore_cache":false}'), +(9008, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.898+00', '{"cached":null,"ignore_cache":false}'), +(9009, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.913+00', '{"cached":null,"ignore_cache":false}'), +(9010, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.915+00', '{"cached":null,"ignore_cache":false}'), +(9011, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:08:58.975+00', '{"cached":null,"ignore_cache":false}'), +(9012, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.081+00', '{"cached":null,"ignore_cache":null}'), +(9013, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.825+00', '{"cached":null,"ignore_cache":false}'), +(9014, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.9+00', '{"cached":null,"ignore_cache":false}'), +(9015, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.963+00', '{"cached":null,"ignore_cache":false}'), +(9016, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.964+00', '{"cached":null,"ignore_cache":false}'), +(9017, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.967+00', '{"cached":null,"ignore_cache":false}'), +(9018, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:58.997+00', '{"cached":null,"ignore_cache":false}'), +(9019, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:59.06+00', '{"cached":null,"ignore_cache":false}'), +(9020, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:59.104+00', '{"cached":null,"ignore_cache":false}'), +(9021, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:13:59.131+00', '{"cached":null,"ignore_cache":false}'), +(9022, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:58.249+00', '{"cached":null,"ignore_cache":null}'), +(9023, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.478+00', '{"cached":null,"ignore_cache":false}'), +(9024, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.597+00', '{"cached":null,"ignore_cache":false}'), +(9025, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.625+00', '{"cached":null,"ignore_cache":false}'), +(9026, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.771+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9027, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.83+00', '{"cached":null,"ignore_cache":false}'), +(9028, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.835+00', '{"cached":null,"ignore_cache":false}'), +(9029, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.885+00', '{"cached":null,"ignore_cache":false}'), +(9030, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:18:59.979+00', '{"cached":null,"ignore_cache":false}'), +(9031, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:19:00.054+00', '{"cached":null,"ignore_cache":false}'), +(9032, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.252+00', '{"cached":null,"ignore_cache":false}'), +(9033, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.331+00', '{"cached":null,"ignore_cache":false}'), +(9034, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:36.881+00', '{"cached":null,"ignore_cache":false}'), +(9035, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.274+00', '{"cached":null,"ignore_cache":false}'), +(9036, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.382+00', '{"cached":null,"ignore_cache":false}'), +(9037, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.485+00', '{"cached":null,"ignore_cache":false}'), +(9038, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:37.633+00', '{"cached":null,"ignore_cache":false}'), +(9039, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.1+00', '{"cached":null,"ignore_cache":false}'), +(9040, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.136+00', '{"cached":null,"ignore_cache":false}'), +(9041, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.207+00', '{"cached":null,"ignore_cache":false}'), +(9042, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.23+00', '{"cached":null,"ignore_cache":false}'), +(9043, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.839+00', '{"cached":null,"ignore_cache":false}'), +(9044, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:38.85+00', '{"cached":null,"ignore_cache":false}'), +(9045, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.069+00', '{"cached":null,"ignore_cache":false}'), +(9046, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.119+00', '{"cached":null,"ignore_cache":false}'), +(9047, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.123+00', '{"cached":null,"ignore_cache":false}'), +(9048, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.136+00', '{"cached":null,"ignore_cache":false}'), +(9049, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.258+00', '{"cached":null,"ignore_cache":false}'), +(9050, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.426+00', '{"cached":null,"ignore_cache":false}'), +(9051, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.551+00', '{"cached":null,"ignore_cache":false}'), +(9052, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.561+00', '{"cached":null,"ignore_cache":false}'), +(9053, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.905+00', '{"cached":null,"ignore_cache":false}'), +(9054, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:39.974+00', '{"cached":null,"ignore_cache":false}'), +(9055, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:40.304+00', '{"cached":null,"ignore_cache":false}'), +(9056, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:57.96+00', '{"cached":null,"ignore_cache":null}'), +(9057, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.501+00', '{"cached":null,"ignore_cache":false}'), +(9058, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.533+00', '{"cached":null,"ignore_cache":false}'), +(9059, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.577+00', '{"cached":null,"ignore_cache":false}'), +(9060, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.628+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9061, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.636+00', '{"cached":null,"ignore_cache":false}'), +(9062, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.639+00', '{"cached":null,"ignore_cache":false}'), +(9063, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.681+00', '{"cached":null,"ignore_cache":false}'), +(9064, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.692+00', '{"cached":null,"ignore_cache":false}'), +(9065, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:23:58.844+00', '{"cached":null,"ignore_cache":false}'), +(9066, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.301+00', '{"cached":null,"ignore_cache":false}'), +(9067, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.322+00', '{"cached":null,"ignore_cache":false}'), +(9068, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.341+00', '{"cached":null,"ignore_cache":false}'), +(9069, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.366+00', '{"cached":null,"ignore_cache":false}'), +(9070, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.372+00', '{"cached":null,"ignore_cache":false}'), +(9071, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.388+00', '{"cached":null,"ignore_cache":false}'), +(9072, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.42+00', '{"cached":null,"ignore_cache":false}'), +(9073, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.431+00', '{"cached":null,"ignore_cache":false}'), +(9074, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.466+00', '{"cached":null,"ignore_cache":false}'), +(9075, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.485+00', '{"cached":null,"ignore_cache":false}'), +(9076, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.488+00', '{"cached":null,"ignore_cache":false}'), +(9077, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.492+00', '{"cached":null,"ignore_cache":false}'), +(9078, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.642+00', '{"cached":null,"ignore_cache":false}'), +(9079, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.65+00', '{"cached":null,"ignore_cache":false}'), +(9080, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.659+00', '{"cached":null,"ignore_cache":false}'), +(9081, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:06.669+00', '{"cached":null,"ignore_cache":false}'), +(9082, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:35.974+00', '{"cached":null,"ignore_cache":false}'), +(9083, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.068+00', '{"cached":null,"ignore_cache":false}'), +(9084, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.273+00', '{"cached":null,"ignore_cache":false}'), +(9085, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.274+00', '{"cached":null,"ignore_cache":false}'), +(9086, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.29+00', '{"cached":null,"ignore_cache":false}'), +(9087, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.304+00', '{"cached":null,"ignore_cache":false}'), +(9088, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.325+00', '{"cached":null,"ignore_cache":false}'), +(9089, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.365+00', '{"cached":null,"ignore_cache":false}'), +(9090, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.401+00', '{"cached":null,"ignore_cache":false}'), +(9091, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.426+00', '{"cached":null,"ignore_cache":false}'), +(9092, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.496+00', '{"cached":null,"ignore_cache":false}'), +(9093, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.522+00', '{"cached":null,"ignore_cache":false}'), +(9094, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.544+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9095, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.576+00', '{"cached":null,"ignore_cache":false}'), +(9096, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.581+00', '{"cached":null,"ignore_cache":false}'), +(9097, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:24:36.598+00', '{"cached":null,"ignore_cache":false}'), +(9098, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.083+00', '{"cached":null,"ignore_cache":false}'), +(9099, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.095+00', '{"cached":null,"ignore_cache":false}'), +(9100, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.15+00', '{"cached":null,"ignore_cache":false}'), +(9101, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.228+00', '{"cached":null,"ignore_cache":false}'), +(9102, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.238+00', '{"cached":null,"ignore_cache":false}'), +(9103, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.262+00', '{"cached":null,"ignore_cache":false}'), +(9104, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.274+00', '{"cached":null,"ignore_cache":false}'), +(9105, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.311+00', '{"cached":null,"ignore_cache":false}'), +(9106, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.314+00', '{"cached":null,"ignore_cache":false}'), +(9107, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.351+00', '{"cached":null,"ignore_cache":false}'), +(9108, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.352+00', '{"cached":null,"ignore_cache":false}'), +(9109, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.378+00', '{"cached":null,"ignore_cache":false}'), +(9110, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.386+00', '{"cached":null,"ignore_cache":false}'), +(9111, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.397+00', '{"cached":null,"ignore_cache":false}'), +(9112, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.401+00', '{"cached":null,"ignore_cache":false}'), +(9113, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:06.445+00', '{"cached":null,"ignore_cache":false}'), +(9114, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.046+00', '{"cached":null,"ignore_cache":false}'), +(9115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.105+00', '{"cached":null,"ignore_cache":false}'), +(9116, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.112+00', '{"cached":null,"ignore_cache":false}'), +(9117, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.177+00', '{"cached":null,"ignore_cache":false}'), +(9118, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.202+00', '{"cached":null,"ignore_cache":false}'), +(9119, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.235+00', '{"cached":null,"ignore_cache":false}'), +(9120, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.25+00', '{"cached":null,"ignore_cache":false}'), +(9121, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.282+00', '{"cached":null,"ignore_cache":false}'), +(9122, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.285+00', '{"cached":null,"ignore_cache":false}'), +(9123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.299+00', '{"cached":null,"ignore_cache":false}'), +(9124, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.335+00', '{"cached":null,"ignore_cache":false}'), +(9125, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.383+00', '{"cached":null,"ignore_cache":false}'), +(9126, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.416+00', '{"cached":null,"ignore_cache":false}'), +(9127, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.42+00', '{"cached":null,"ignore_cache":false}'), +(9128, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.438+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9129, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:25:36.45+00', '{"cached":null,"ignore_cache":false}'), +(9130, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.837+00', '{"cached":null,"ignore_cache":false}'), +(9131, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.868+00', '{"cached":null,"ignore_cache":false}'), +(9132, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.884+00', '{"cached":null,"ignore_cache":false}'), +(9133, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.926+00', '{"cached":null,"ignore_cache":false}'), +(9134, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.961+00', '{"cached":null,"ignore_cache":false}'), +(9135, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:05.983+00', '{"cached":null,"ignore_cache":false}'), +(9136, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06+00', '{"cached":null,"ignore_cache":false}'), +(9137, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.017+00', '{"cached":null,"ignore_cache":false}'), +(9138, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.063+00', '{"cached":null,"ignore_cache":false}'), +(9139, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.07+00', '{"cached":null,"ignore_cache":false}'), +(9140, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.076+00', '{"cached":null,"ignore_cache":false}'), +(9141, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.088+00', '{"cached":null,"ignore_cache":false}'), +(9142, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.09+00', '{"cached":null,"ignore_cache":false}'), +(9143, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.168+00', '{"cached":null,"ignore_cache":false}'), +(9144, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.207+00', '{"cached":null,"ignore_cache":false}'), +(9145, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:06.232+00', '{"cached":null,"ignore_cache":false}'), +(9146, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.92+00', '{"cached":null,"ignore_cache":false}'), +(9147, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.931+00', '{"cached":null,"ignore_cache":false}'), +(9148, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:35.989+00', '{"cached":null,"ignore_cache":false}'), +(9149, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.01+00', '{"cached":null,"ignore_cache":false}'), +(9150, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.051+00', '{"cached":null,"ignore_cache":false}'), +(9151, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.067+00', '{"cached":null,"ignore_cache":false}'), +(9152, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.111+00', '{"cached":null,"ignore_cache":false}'), +(9153, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.186+00', '{"cached":null,"ignore_cache":false}'), +(9154, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.189+00', '{"cached":null,"ignore_cache":false}'), +(9155, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.196+00', '{"cached":null,"ignore_cache":false}'), +(9156, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.203+00', '{"cached":null,"ignore_cache":false}'), +(9157, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.258+00', '{"cached":null,"ignore_cache":false}'), +(9158, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.259+00', '{"cached":null,"ignore_cache":false}'), +(9159, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.268+00', '{"cached":null,"ignore_cache":false}'), +(9160, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.269+00', '{"cached":null,"ignore_cache":false}'), +(9161, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:26:36.282+00', '{"cached":null,"ignore_cache":false}'), +(9162, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.967+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9163, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:10.986+00', '{"cached":null,"ignore_cache":false}'), +(9164, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:11+00', '{"cached":null,"ignore_cache":false}'), +(9165, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:11.007+00', '{"cached":null,"ignore_cache":false}'), +(9166, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:11.015+00', '{"cached":null,"ignore_cache":false}'), +(9167, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:11.019+00', '{"cached":null,"ignore_cache":false}'), +(9168, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:11.042+00', '{"cached":null,"ignore_cache":false}'), +(9169, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.031+00', '{"cached":null,"ignore_cache":false}'), +(9170, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.126+00', '{"cached":null,"ignore_cache":false}'), +(9171, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.143+00', '{"cached":null,"ignore_cache":false}'), +(9172, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.193+00', '{"cached":null,"ignore_cache":false}'), +(9173, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.226+00', '{"cached":null,"ignore_cache":false}'), +(9174, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.283+00', '{"cached":null,"ignore_cache":false}'), +(9175, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.306+00', '{"cached":null,"ignore_cache":false}'), +(9176, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.394+00', '{"cached":null,"ignore_cache":false}'), +(9177, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:13.474+00', '{"cached":null,"ignore_cache":false}'), +(9178, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.145+00', '{"cached":null,"ignore_cache":false}'), +(9179, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.287+00', '{"cached":null,"ignore_cache":false}'), +(9180, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.394+00', '{"cached":null,"ignore_cache":false}'), +(9181, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.403+00', '{"cached":null,"ignore_cache":false}'), +(9182, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.417+00', '{"cached":null,"ignore_cache":false}'), +(9183, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.422+00', '{"cached":null,"ignore_cache":false}'), +(9184, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:48.435+00', '{"cached":null,"ignore_cache":false}'), +(9185, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.897+00', '{"cached":null,"ignore_cache":false}'), +(9186, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.905+00', '{"cached":null,"ignore_cache":false}'), +(9187, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.943+00', '{"cached":null,"ignore_cache":false}'), +(9188, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.976+00', '{"cached":null,"ignore_cache":false}'), +(9189, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.98+00', '{"cached":null,"ignore_cache":false}'), +(9190, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:54.995+00', '{"cached":null,"ignore_cache":false}'), +(9191, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:55.003+00', '{"cached":null,"ignore_cache":false}'), +(9192, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:55.011+00', '{"cached":null,"ignore_cache":false}'), +(9193, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:27:55.013+00', '{"cached":null,"ignore_cache":false}'), +(9194, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:31.998+00', '{"cached":null,"ignore_cache":false}'), +(9195, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.096+00', '{"cached":null,"ignore_cache":false}'), +(9196, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.096+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9197, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.099+00', '{"cached":null,"ignore_cache":false}'), +(9198, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.116+00', '{"cached":null,"ignore_cache":false}'), +(9199, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.12+00', '{"cached":null,"ignore_cache":false}'), +(9200, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:32.126+00', '{"cached":null,"ignore_cache":false}'), +(9201, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.03+00', '{"cached":null,"ignore_cache":false}'), +(9202, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.078+00', '{"cached":null,"ignore_cache":false}'), +(9203, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.188+00', '{"cached":null,"ignore_cache":false}'), +(9204, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.224+00', '{"cached":null,"ignore_cache":false}'), +(9205, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.231+00', '{"cached":null,"ignore_cache":false}'), +(9206, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.259+00', '{"cached":null,"ignore_cache":false}'), +(9207, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.262+00', '{"cached":null,"ignore_cache":false}'), +(9208, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.282+00', '{"cached":null,"ignore_cache":false}'), +(9209, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:37.296+00', '{"cached":null,"ignore_cache":false}'), +(9210, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:57.923+00', '{"cached":null,"ignore_cache":null}'), +(9211, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.379+00', '{"cached":null,"ignore_cache":false}'), +(9212, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.422+00', '{"cached":null,"ignore_cache":false}'), +(9213, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.428+00', '{"cached":null,"ignore_cache":false}'), +(9214, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.437+00', '{"cached":null,"ignore_cache":false}'), +(9215, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.457+00', '{"cached":null,"ignore_cache":false}'), +(9216, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.47+00', '{"cached":null,"ignore_cache":false}'), +(9217, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.499+00', '{"cached":null,"ignore_cache":false}'), +(9218, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.524+00', '{"cached":null,"ignore_cache":false}'), +(9219, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:28:58.589+00', '{"cached":null,"ignore_cache":false}'), +(9220, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.934+00', '{"cached":null,"ignore_cache":false}'), +(9221, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.98+00', '{"cached":null,"ignore_cache":false}'), +(9222, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:08.994+00', '{"cached":null,"ignore_cache":false}'), +(9223, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:09.008+00', '{"cached":null,"ignore_cache":false}'), +(9224, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:09.041+00', '{"cached":null,"ignore_cache":false}'), +(9225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:09.066+00', '{"cached":null,"ignore_cache":false}'), +(9226, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:09.073+00', '{"cached":null,"ignore_cache":false}'), +(9227, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.179+00', '{"cached":null,"ignore_cache":false}'), +(9228, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.238+00', '{"cached":null,"ignore_cache":false}'), +(9229, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.25+00', '{"cached":null,"ignore_cache":false}'), +(9230, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.278+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9231, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.287+00', '{"cached":null,"ignore_cache":false}'), +(9232, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.317+00', '{"cached":null,"ignore_cache":false}'), +(9233, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.33+00', '{"cached":null,"ignore_cache":false}'), +(9234, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.409+00', '{"cached":null,"ignore_cache":false}'), +(9235, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:17.439+00', '{"cached":null,"ignore_cache":false}'), +(9236, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.82+00', '{"cached":null,"ignore_cache":false}'), +(9237, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.881+00', '{"cached":null,"ignore_cache":false}'), +(9238, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:46.967+00', '{"cached":null,"ignore_cache":false}'), +(9239, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:47.031+00', '{"cached":null,"ignore_cache":false}'), +(9240, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:47.038+00', '{"cached":null,"ignore_cache":false}'), +(9241, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:47.042+00', '{"cached":null,"ignore_cache":false}'), +(9242, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:47.069+00', '{"cached":null,"ignore_cache":false}'), +(9243, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:51.997+00', '{"cached":null,"ignore_cache":false}'), +(9244, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.024+00', '{"cached":null,"ignore_cache":false}'), +(9245, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.033+00', '{"cached":null,"ignore_cache":false}'), +(9246, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.05+00', '{"cached":null,"ignore_cache":false}'), +(9247, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.097+00', '{"cached":null,"ignore_cache":false}'), +(9248, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.149+00', '{"cached":null,"ignore_cache":false}'), +(9249, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.163+00', '{"cached":null,"ignore_cache":false}'), +(9250, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.166+00', '{"cached":null,"ignore_cache":false}'), +(9251, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:29:52.168+00', '{"cached":null,"ignore_cache":false}'), +(9252, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.795+00', '{"cached":null,"ignore_cache":false}'), +(9253, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.915+00', '{"cached":null,"ignore_cache":false}'), +(9254, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.915+00', '{"cached":null,"ignore_cache":false}'), +(9255, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.952+00', '{"cached":null,"ignore_cache":false}'), +(9256, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.959+00', '{"cached":null,"ignore_cache":false}'), +(9257, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.97+00', '{"cached":null,"ignore_cache":false}'), +(9258, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:16.973+00', '{"cached":null,"ignore_cache":false}'), +(9259, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.023+00', '{"cached":null,"ignore_cache":false}'), +(9260, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.286+00', '{"cached":null,"ignore_cache":false}'), +(9261, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.334+00', '{"cached":null,"ignore_cache":false}'), +(9262, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.353+00', '{"cached":null,"ignore_cache":false}'), +(9263, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.43+00', '{"cached":null,"ignore_cache":false}'), +(9264, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.44+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9265, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.455+00', '{"cached":null,"ignore_cache":false}'), +(9266, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.464+00', '{"cached":null,"ignore_cache":false}'), +(9267, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:22.612+00', '{"cached":null,"ignore_cache":false}'), +(9268, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.29+00', '{"cached":null,"ignore_cache":false}'), +(9269, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.355+00', '{"cached":null,"ignore_cache":false}'), +(9270, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.38+00', '{"cached":null,"ignore_cache":false}'), +(9271, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.426+00', '{"cached":null,"ignore_cache":false}'), +(9272, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.462+00', '{"cached":null,"ignore_cache":false}'), +(9273, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.578+00', '{"cached":null,"ignore_cache":false}'), +(9274, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:47.638+00', '{"cached":null,"ignore_cache":false}'), +(9275, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.205+00', '{"cached":null,"ignore_cache":false}'), +(9276, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.232+00', '{"cached":null,"ignore_cache":false}'), +(9277, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.233+00', '{"cached":null,"ignore_cache":false}'), +(9278, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.258+00', '{"cached":null,"ignore_cache":false}'), +(9279, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.291+00', '{"cached":null,"ignore_cache":false}'), +(9280, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.306+00', '{"cached":null,"ignore_cache":false}'), +(9281, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.33+00', '{"cached":null,"ignore_cache":false}'), +(9282, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.355+00', '{"cached":null,"ignore_cache":false}'), +(9283, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:30:52.363+00', '{"cached":null,"ignore_cache":false}'), +(9284, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.823+00', '{"cached":null,"ignore_cache":false}'), +(9285, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.823+00', '{"cached":null,"ignore_cache":false}'), +(9286, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.908+00', '{"cached":null,"ignore_cache":false}'), +(9287, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.908+00', '{"cached":null,"ignore_cache":false}'), +(9288, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.918+00', '{"cached":null,"ignore_cache":false}'), +(9289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.946+00', '{"cached":null,"ignore_cache":false}'), +(9290, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:16.947+00', '{"cached":null,"ignore_cache":false}'), +(9291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.102+00', '{"cached":null,"ignore_cache":false}'), +(9292, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.117+00', '{"cached":null,"ignore_cache":false}'), +(9293, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.2+00', '{"cached":null,"ignore_cache":false}'), +(9294, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.378+00', '{"cached":null,"ignore_cache":false}'), +(9295, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.417+00', '{"cached":null,"ignore_cache":false}'), +(9296, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.426+00', '{"cached":null,"ignore_cache":false}'), +(9297, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.486+00', '{"cached":null,"ignore_cache":false}'), +(9298, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.488+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9299, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:22.507+00', '{"cached":null,"ignore_cache":false}'), +(9300, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.757+00', '{"cached":null,"ignore_cache":false}'), +(9301, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.941+00', '{"cached":null,"ignore_cache":false}'), +(9302, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.956+00', '{"cached":null,"ignore_cache":false}'), +(9303, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.967+00', '{"cached":null,"ignore_cache":false}'), +(9304, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.98+00', '{"cached":null,"ignore_cache":false}'), +(9305, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:46.981+00', '{"cached":null,"ignore_cache":false}'), +(9306, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:47.04+00', '{"cached":null,"ignore_cache":false}'), +(9307, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.849+00', '{"cached":null,"ignore_cache":false}'), +(9308, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.894+00', '{"cached":null,"ignore_cache":false}'), +(9309, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.919+00', '{"cached":null,"ignore_cache":false}'), +(9310, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.922+00', '{"cached":null,"ignore_cache":false}'), +(9311, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.926+00', '{"cached":null,"ignore_cache":false}'), +(9312, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.937+00', '{"cached":null,"ignore_cache":false}'), +(9313, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.965+00', '{"cached":null,"ignore_cache":false}'), +(9314, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.97+00', '{"cached":null,"ignore_cache":false}'), +(9315, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:31:51.989+00', '{"cached":null,"ignore_cache":false}'), +(9316, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.829+00', '{"cached":null,"ignore_cache":false}'), +(9317, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.884+00', '{"cached":null,"ignore_cache":false}'), +(9318, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.936+00', '{"cached":null,"ignore_cache":false}'), +(9319, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.95+00', '{"cached":null,"ignore_cache":false}'), +(9320, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.951+00', '{"cached":null,"ignore_cache":false}'), +(9321, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.961+00', '{"cached":null,"ignore_cache":false}'), +(9322, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:16.968+00', '{"cached":null,"ignore_cache":false}'), +(9323, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.88+00', '{"cached":null,"ignore_cache":false}'), +(9324, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.897+00', '{"cached":null,"ignore_cache":false}'), +(9325, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.98+00', '{"cached":null,"ignore_cache":false}'), +(9326, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.99+00', '{"cached":null,"ignore_cache":false}'), +(9327, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:21.99+00', '{"cached":null,"ignore_cache":false}'), +(9328, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:22.014+00', '{"cached":null,"ignore_cache":false}'), +(9329, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:22.034+00', '{"cached":null,"ignore_cache":false}'), +(9330, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:22.055+00', '{"cached":null,"ignore_cache":false}'), +(9331, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:22.076+00', '{"cached":null,"ignore_cache":false}'), +(9332, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.778+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9333, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.799+00', '{"cached":null,"ignore_cache":false}'), +(9334, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.81+00', '{"cached":null,"ignore_cache":false}'), +(9335, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.833+00', '{"cached":null,"ignore_cache":false}'), +(9336, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.837+00', '{"cached":null,"ignore_cache":false}'), +(9337, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.842+00', '{"cached":null,"ignore_cache":false}'), +(9338, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:46.85+00', '{"cached":null,"ignore_cache":false}'), +(9339, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.002+00', '{"cached":null,"ignore_cache":false}'), +(9340, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.052+00', '{"cached":null,"ignore_cache":false}'), +(9341, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.11+00', '{"cached":null,"ignore_cache":false}'), +(9342, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.113+00', '{"cached":null,"ignore_cache":false}'), +(9343, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.13+00', '{"cached":null,"ignore_cache":false}'), +(9344, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.19+00', '{"cached":null,"ignore_cache":false}'), +(9345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.203+00', '{"cached":null,"ignore_cache":false}'), +(9346, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.247+00', '{"cached":null,"ignore_cache":false}'), +(9347, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:32:52.253+00', '{"cached":null,"ignore_cache":false}'), +(9348, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.689+00', '{"cached":null,"ignore_cache":false}'), +(9349, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.804+00', '{"cached":null,"ignore_cache":false}'), +(9350, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.815+00', '{"cached":null,"ignore_cache":false}'), +(9351, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.846+00', '{"cached":null,"ignore_cache":false}'), +(9352, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.847+00', '{"cached":null,"ignore_cache":false}'), +(9353, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.849+00', '{"cached":null,"ignore_cache":false}'), +(9354, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:16.858+00', '{"cached":null,"ignore_cache":false}'), +(9355, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.797+00', '{"cached":null,"ignore_cache":false}'), +(9356, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.881+00', '{"cached":null,"ignore_cache":false}'), +(9357, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.886+00', '{"cached":null,"ignore_cache":false}'), +(9358, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.93+00', '{"cached":null,"ignore_cache":false}'), +(9359, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.968+00', '{"cached":null,"ignore_cache":false}'), +(9360, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:25.978+00', '{"cached":null,"ignore_cache":false}'), +(9361, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:26.063+00', '{"cached":null,"ignore_cache":false}'), +(9362, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:26.095+00', '{"cached":null,"ignore_cache":false}'), +(9363, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:26.107+00', '{"cached":null,"ignore_cache":false}'), +(9364, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.952+00', '{"cached":null,"ignore_cache":false}'), +(9365, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.963+00', '{"cached":null,"ignore_cache":false}'), +(9366, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.973+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9367, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.984+00', '{"cached":null,"ignore_cache":false}'), +(9368, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.996+00', '{"cached":null,"ignore_cache":false}'), +(9369, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:54.999+00', '{"cached":null,"ignore_cache":false}'), +(9370, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:55.001+00', '{"cached":null,"ignore_cache":false}'), +(9371, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:58.337+00', '{"cached":null,"ignore_cache":null}'), +(9372, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.126+00', '{"cached":null,"ignore_cache":false}'), +(9373, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.214+00', '{"cached":null,"ignore_cache":false}'), +(9374, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.216+00', '{"cached":null,"ignore_cache":false}'), +(9375, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.232+00', '{"cached":null,"ignore_cache":false}'), +(9376, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.408+00', '{"cached":null,"ignore_cache":false}'), +(9377, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.425+00', '{"cached":null,"ignore_cache":false}'), +(9378, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.432+00', '{"cached":null,"ignore_cache":false}'), +(9379, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.558+00', '{"cached":null,"ignore_cache":false}'), +(9380, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:33:59.648+00', '{"cached":null,"ignore_cache":false}'), +(9381, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.182+00', '{"cached":null,"ignore_cache":false}'), +(9382, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.204+00', '{"cached":null,"ignore_cache":false}'), +(9383, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.246+00', '{"cached":null,"ignore_cache":false}'), +(9384, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.286+00', '{"cached":null,"ignore_cache":false}'), +(9385, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.329+00', '{"cached":null,"ignore_cache":false}'), +(9386, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.354+00', '{"cached":null,"ignore_cache":false}'), +(9387, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.39+00', '{"cached":null,"ignore_cache":false}'), +(9388, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.406+00', '{"cached":null,"ignore_cache":false}'), +(9389, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:06.41+00', '{"cached":null,"ignore_cache":false}'), +(9390, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:37.928+00', '{"cached":null,"ignore_cache":false}'), +(9391, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:38.025+00', '{"cached":null,"ignore_cache":false}'), +(9392, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:38.028+00', '{"cached":null,"ignore_cache":false}'), +(9393, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:38.058+00', '{"cached":null,"ignore_cache":false}'), +(9394, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:38.065+00', '{"cached":null,"ignore_cache":false}'), +(9395, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:38.071+00', '{"cached":null,"ignore_cache":false}'), +(9396, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:38.094+00', '{"cached":null,"ignore_cache":false}'), +(9397, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.842+00', '{"cached":null,"ignore_cache":false}'), +(9398, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:48.91+00', '{"cached":null,"ignore_cache":false}'), +(9399, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:49.077+00', '{"cached":null,"ignore_cache":false}'), +(9400, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:49.114+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9401, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:49.115+00', '{"cached":null,"ignore_cache":false}'), +(9402, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:49.119+00', '{"cached":null,"ignore_cache":false}'), +(9403, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:49.129+00', '{"cached":null,"ignore_cache":false}'), +(9404, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:49.132+00', '{"cached":null,"ignore_cache":false}'), +(9405, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:34:49.182+00', '{"cached":null,"ignore_cache":false}'), +(9406, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.01+00', '{"cached":null,"ignore_cache":false}'), +(9407, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.119+00', '{"cached":null,"ignore_cache":false}'), +(9408, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.152+00', '{"cached":null,"ignore_cache":false}'), +(9409, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.174+00', '{"cached":null,"ignore_cache":false}'), +(9410, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.19+00', '{"cached":null,"ignore_cache":false}'), +(9411, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.233+00', '{"cached":null,"ignore_cache":false}'), +(9412, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:15.235+00', '{"cached":null,"ignore_cache":false}'), +(9413, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.2+00', '{"cached":null,"ignore_cache":false}'), +(9414, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.227+00', '{"cached":null,"ignore_cache":false}'), +(9415, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.252+00', '{"cached":null,"ignore_cache":false}'), +(9416, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.407+00', '{"cached":null,"ignore_cache":false}'), +(9417, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.442+00', '{"cached":null,"ignore_cache":false}'), +(9418, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.455+00', '{"cached":null,"ignore_cache":false}'), +(9419, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.456+00', '{"cached":null,"ignore_cache":false}'), +(9420, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.504+00', '{"cached":null,"ignore_cache":false}'), +(9421, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:25.52+00', '{"cached":null,"ignore_cache":false}'), +(9422, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.063+00', '{"cached":null,"ignore_cache":false}'), +(9423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.071+00', '{"cached":null,"ignore_cache":false}'), +(9424, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.133+00', '{"cached":null,"ignore_cache":false}'), +(9425, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.137+00', '{"cached":null,"ignore_cache":false}'), +(9426, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.139+00', '{"cached":null,"ignore_cache":false}'), +(9427, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.155+00', '{"cached":null,"ignore_cache":false}'), +(9428, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:35:57.167+00', '{"cached":null,"ignore_cache":false}'), +(9429, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.117+00', '{"cached":null,"ignore_cache":false}'), +(9430, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.118+00', '{"cached":null,"ignore_cache":false}'), +(9431, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.121+00', '{"cached":null,"ignore_cache":false}'), +(9432, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.149+00', '{"cached":null,"ignore_cache":false}'), +(9433, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.167+00', '{"cached":null,"ignore_cache":false}'), +(9434, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.181+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9435, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.183+00', '{"cached":null,"ignore_cache":false}'), +(9436, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.188+00', '{"cached":null,"ignore_cache":false}'), +(9437, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:10.195+00', '{"cached":null,"ignore_cache":false}'), +(9438, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.955+00', '{"cached":null,"ignore_cache":false}'), +(9439, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.977+00', '{"cached":null,"ignore_cache":false}'), +(9440, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.982+00', '{"cached":null,"ignore_cache":false}'), +(9441, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:34.988+00', '{"cached":null,"ignore_cache":false}'), +(9442, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:35.003+00', '{"cached":null,"ignore_cache":false}'), +(9443, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:35.004+00', '{"cached":null,"ignore_cache":false}'), +(9444, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:35.017+00', '{"cached":null,"ignore_cache":false}'), +(9445, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.85+00', '{"cached":null,"ignore_cache":false}'), +(9446, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.881+00', '{"cached":null,"ignore_cache":false}'), +(9447, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.909+00', '{"cached":null,"ignore_cache":false}'), +(9448, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.942+00', '{"cached":null,"ignore_cache":false}'), +(9449, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:53.948+00', '{"cached":null,"ignore_cache":false}'), +(9450, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:54.063+00', '{"cached":null,"ignore_cache":false}'), +(9451, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:54.095+00', '{"cached":null,"ignore_cache":false}'), +(9452, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:54.098+00', '{"cached":null,"ignore_cache":false}'), +(9453, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:36:54.189+00', '{"cached":null,"ignore_cache":false}'), +(9454, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.984+00', '{"cached":null,"ignore_cache":false}'), +(9455, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:19.993+00', '{"cached":null,"ignore_cache":false}'), +(9456, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:20+00', '{"cached":null,"ignore_cache":false}'), +(9457, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:20.017+00', '{"cached":null,"ignore_cache":false}'), +(9458, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:20.019+00', '{"cached":null,"ignore_cache":false}'), +(9459, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:20.022+00', '{"cached":null,"ignore_cache":false}'), +(9460, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:20.032+00', '{"cached":null,"ignore_cache":false}'), +(9461, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.267+00', '{"cached":null,"ignore_cache":false}'), +(9462, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.292+00', '{"cached":null,"ignore_cache":false}'), +(9463, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.322+00', '{"cached":null,"ignore_cache":false}'), +(9464, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.328+00', '{"cached":null,"ignore_cache":false}'), +(9465, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.331+00', '{"cached":null,"ignore_cache":false}'), +(9466, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.358+00', '{"cached":null,"ignore_cache":false}'), +(9467, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.374+00', '{"cached":null,"ignore_cache":false}'), +(9468, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.374+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9469, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:37:39.394+00', '{"cached":null,"ignore_cache":false}'), +(9470, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.063+00', '{"cached":null,"ignore_cache":false}'), +(9471, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.22+00', '{"cached":null,"ignore_cache":false}'), +(9472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.276+00', '{"cached":null,"ignore_cache":false}'), +(9473, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.282+00', '{"cached":null,"ignore_cache":false}'), +(9474, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.309+00', '{"cached":null,"ignore_cache":false}'), +(9475, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.317+00', '{"cached":null,"ignore_cache":false}'), +(9476, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:00.352+00', '{"cached":null,"ignore_cache":false}'), +(9477, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:57.975+00', '{"cached":null,"ignore_cache":null}'), +(9478, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.652+00', '{"cached":null,"ignore_cache":false}'), +(9479, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.713+00', '{"cached":null,"ignore_cache":false}'), +(9480, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.728+00', '{"cached":null,"ignore_cache":false}'), +(9481, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.825+00', '{"cached":null,"ignore_cache":false}'), +(9482, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.831+00', '{"cached":null,"ignore_cache":false}'), +(9483, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.867+00', '{"cached":null,"ignore_cache":false}'), +(9484, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.869+00', '{"cached":null,"ignore_cache":false}'), +(9485, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:58.887+00', '{"cached":null,"ignore_cache":false}'), +(9486, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:38:59.066+00', '{"cached":null,"ignore_cache":false}'), +(9487, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.075+00', '{"cached":null,"ignore_cache":false}'), +(9488, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.095+00', '{"cached":null,"ignore_cache":false}'), +(9489, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.14+00', '{"cached":null,"ignore_cache":false}'), +(9490, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.153+00', '{"cached":null,"ignore_cache":false}'), +(9491, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.182+00', '{"cached":null,"ignore_cache":false}'), +(9492, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.194+00', '{"cached":null,"ignore_cache":false}'), +(9493, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.21+00', '{"cached":null,"ignore_cache":false}'), +(9494, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.245+00', '{"cached":null,"ignore_cache":false}'), +(9495, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:20.284+00', '{"cached":null,"ignore_cache":false}'), +(9496, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.97+00', '{"cached":null,"ignore_cache":false}'), +(9497, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.98+00', '{"cached":null,"ignore_cache":false}'), +(9498, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.99+00', '{"cached":null,"ignore_cache":false}'), +(9499, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:36.995+00', '{"cached":null,"ignore_cache":false}'), +(9500, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:37.012+00', '{"cached":null,"ignore_cache":false}'), +(9501, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:37.019+00', '{"cached":null,"ignore_cache":false}'), +(9502, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:37.024+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9503, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.813+00', '{"cached":null,"ignore_cache":false}'), +(9504, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.863+00', '{"cached":null,"ignore_cache":false}'), +(9505, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.935+00', '{"cached":null,"ignore_cache":false}'), +(9506, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.981+00', '{"cached":null,"ignore_cache":false}'), +(9507, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:49.993+00', '{"cached":null,"ignore_cache":false}'), +(9508, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:50.076+00', '{"cached":null,"ignore_cache":false}'), +(9509, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:50.078+00', '{"cached":null,"ignore_cache":false}'), +(9510, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:50.102+00', '{"cached":null,"ignore_cache":false}'), +(9511, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:39:50.106+00', '{"cached":null,"ignore_cache":false}'), +(9512, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.527+00', '{"cached":null,"ignore_cache":false}'), +(9513, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.683+00', '{"cached":null,"ignore_cache":false}'), +(9514, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.685+00', '{"cached":null,"ignore_cache":false}'), +(9515, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.712+00', '{"cached":null,"ignore_cache":false}'), +(9516, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.733+00', '{"cached":null,"ignore_cache":false}'), +(9517, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.788+00', '{"cached":null,"ignore_cache":false}'), +(9518, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:07.824+00', '{"cached":null,"ignore_cache":false}'), +(9519, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.661+00', '{"cached":null,"ignore_cache":false}'), +(9520, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.712+00', '{"cached":null,"ignore_cache":false}'), +(9521, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.72+00', '{"cached":null,"ignore_cache":false}'), +(9522, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.729+00', '{"cached":null,"ignore_cache":false}'), +(9523, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.747+00', '{"cached":null,"ignore_cache":false}'), +(9524, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.75+00', '{"cached":null,"ignore_cache":false}'), +(9525, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.764+00', '{"cached":null,"ignore_cache":false}'), +(9526, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.772+00', '{"cached":null,"ignore_cache":false}'), +(9527, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:25.792+00', '{"cached":null,"ignore_cache":false}'), +(9528, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:43.933+00', '{"cached":null,"ignore_cache":false}'), +(9529, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:43.942+00', '{"cached":null,"ignore_cache":false}'), +(9530, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:44.036+00', '{"cached":null,"ignore_cache":false}'), +(9531, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:44.048+00', '{"cached":null,"ignore_cache":false}'), +(9532, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:44.104+00', '{"cached":null,"ignore_cache":false}'), +(9533, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:44.124+00', '{"cached":null,"ignore_cache":false}'), +(9534, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:40:44.155+00', '{"cached":null,"ignore_cache":false}'), +(9535, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.075+00', '{"cached":null,"ignore_cache":false}'), +(9536, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.094+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9537, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.147+00', '{"cached":null,"ignore_cache":false}'), +(9538, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.185+00', '{"cached":null,"ignore_cache":false}'), +(9539, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.212+00', '{"cached":null,"ignore_cache":false}'), +(9540, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.213+00', '{"cached":null,"ignore_cache":false}'), +(9541, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.245+00', '{"cached":null,"ignore_cache":false}'), +(9542, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.257+00', '{"cached":null,"ignore_cache":false}'), +(9543, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:08.353+00', '{"cached":null,"ignore_cache":false}'), +(9544, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.885+00', '{"cached":null,"ignore_cache":false}'), +(9545, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.903+00', '{"cached":null,"ignore_cache":false}'), +(9546, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.922+00', '{"cached":null,"ignore_cache":false}'), +(9547, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.927+00', '{"cached":null,"ignore_cache":false}'), +(9548, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.935+00', '{"cached":null,"ignore_cache":false}'), +(9549, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.949+00', '{"cached":null,"ignore_cache":false}'), +(9550, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:21.964+00', '{"cached":null,"ignore_cache":false}'), +(9551, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.169+00', '{"cached":null,"ignore_cache":false}'), +(9552, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.208+00', '{"cached":null,"ignore_cache":false}'), +(9553, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.23+00', '{"cached":null,"ignore_cache":false}'), +(9554, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.287+00', '{"cached":null,"ignore_cache":false}'), +(9555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.327+00', '{"cached":null,"ignore_cache":false}'), +(9556, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.333+00', '{"cached":null,"ignore_cache":false}'), +(9557, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.343+00', '{"cached":null,"ignore_cache":false}'), +(9558, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.355+00', '{"cached":null,"ignore_cache":false}'), +(9559, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:41:47.367+00', '{"cached":null,"ignore_cache":false}'), +(9560, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.131+00', '{"cached":null,"ignore_cache":false}'), +(9561, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.165+00', '{"cached":null,"ignore_cache":false}'), +(9562, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.187+00', '{"cached":null,"ignore_cache":false}'), +(9563, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.22+00', '{"cached":null,"ignore_cache":false}'), +(9564, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.242+00', '{"cached":null,"ignore_cache":false}'), +(9565, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.242+00', '{"cached":null,"ignore_cache":false}'), +(9566, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:04.305+00', '{"cached":null,"ignore_cache":false}'), +(9567, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.874+00', '{"cached":null,"ignore_cache":false}'), +(9568, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.895+00', '{"cached":null,"ignore_cache":false}'), +(9569, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.921+00', '{"cached":null,"ignore_cache":false}'), +(9570, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.937+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9571, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.966+00', '{"cached":null,"ignore_cache":false}'), +(9572, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.969+00', '{"cached":null,"ignore_cache":false}'), +(9573, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.976+00', '{"cached":null,"ignore_cache":false}'), +(9574, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.978+00', '{"cached":null,"ignore_cache":false}'), +(9575, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:27.989+00', '{"cached":null,"ignore_cache":false}'), +(9576, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:55.028+00', '{"cached":null,"ignore_cache":false}'), +(9577, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:55.102+00', '{"cached":null,"ignore_cache":false}'), +(9578, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:55.104+00', '{"cached":null,"ignore_cache":false}'), +(9579, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:55.104+00', '{"cached":null,"ignore_cache":false}'), +(9580, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:55.105+00', '{"cached":null,"ignore_cache":false}'), +(9581, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:55.115+00', '{"cached":null,"ignore_cache":false}'), +(9582, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:42:55.14+00', '{"cached":null,"ignore_cache":false}'), +(9583, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.163+00', '{"cached":null,"ignore_cache":false}'), +(9584, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.188+00', '{"cached":null,"ignore_cache":false}'), +(9585, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.2+00', '{"cached":null,"ignore_cache":false}'), +(9586, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.232+00', '{"cached":null,"ignore_cache":false}'), +(9587, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.249+00', '{"cached":null,"ignore_cache":false}'), +(9588, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.256+00', '{"cached":null,"ignore_cache":false}'), +(9589, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.257+00', '{"cached":null,"ignore_cache":false}'), +(9590, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.289+00', '{"cached":null,"ignore_cache":false}'), +(9591, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:11.31+00', '{"cached":null,"ignore_cache":false}'), +(9592, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.939+00', '{"cached":null,"ignore_cache":false}'), +(9593, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.964+00', '{"cached":null,"ignore_cache":false}'), +(9594, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:27.98+00', '{"cached":null,"ignore_cache":false}'), +(9595, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:28.021+00', '{"cached":null,"ignore_cache":false}'), +(9596, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:28.026+00', '{"cached":null,"ignore_cache":false}'), +(9597, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:28.031+00', '{"cached":null,"ignore_cache":false}'), +(9598, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:28.04+00', '{"cached":null,"ignore_cache":false}'), +(9599, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.565+00', '{"cached":null,"ignore_cache":false}'), +(9600, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.584+00', '{"cached":null,"ignore_cache":false}'), +(9601, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.591+00', '{"cached":null,"ignore_cache":false}'), +(9602, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.608+00', '{"cached":null,"ignore_cache":false}'), +(9603, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.619+00', '{"cached":null,"ignore_cache":false}'), +(9604, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.63+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9605, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.632+00', '{"cached":null,"ignore_cache":false}'), +(9606, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.65+00', '{"cached":null,"ignore_cache":false}'), +(9607, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:43:54.663+00', '{"cached":null,"ignore_cache":false}'), +(9608, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.917+00', '{"cached":null,"ignore_cache":false}'), +(9609, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.957+00', '{"cached":null,"ignore_cache":false}'), +(9610, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:06.999+00', '{"cached":null,"ignore_cache":false}'), +(9611, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:07.005+00', '{"cached":null,"ignore_cache":false}'), +(9612, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:07.026+00', '{"cached":null,"ignore_cache":false}'), +(9613, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:07.049+00', '{"cached":null,"ignore_cache":false}'), +(9614, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:07.054+00', '{"cached":null,"ignore_cache":false}'), +(9615, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.281+00', '{"cached":null,"ignore_cache":false}'), +(9616, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.344+00', '{"cached":null,"ignore_cache":false}'), +(9617, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.387+00', '{"cached":null,"ignore_cache":false}'), +(9618, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.462+00', '{"cached":null,"ignore_cache":false}'), +(9619, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.483+00', '{"cached":null,"ignore_cache":false}'), +(9620, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.509+00', '{"cached":null,"ignore_cache":false}'), +(9621, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.529+00', '{"cached":null,"ignore_cache":false}'), +(9622, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.539+00', '{"cached":null,"ignore_cache":false}'), +(9623, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:35.553+00', '{"cached":null,"ignore_cache":false}'), +(9624, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:44.955+00', '{"cached":null,"ignore_cache":false}'), +(9625, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:45.013+00', '{"cached":null,"ignore_cache":false}'), +(9626, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:45.074+00', '{"cached":null,"ignore_cache":false}'), +(9627, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:45.098+00', '{"cached":null,"ignore_cache":false}'), +(9628, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:45.114+00', '{"cached":null,"ignore_cache":false}'), +(9629, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:45.13+00', '{"cached":null,"ignore_cache":false}'), +(9630, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 14:44:45.145+00', '{"cached":null,"ignore_cache":false}'), +(9631, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:57.903+00', '{"cached":null,"ignore_cache":null}'), +(9632, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.498+00', '{"cached":null,"ignore_cache":false}'), +(9633, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.537+00', '{"cached":null,"ignore_cache":false}'), +(9634, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.586+00', '{"cached":null,"ignore_cache":false}'), +(9635, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.6+00', '{"cached":null,"ignore_cache":false}'), +(9636, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.609+00', '{"cached":null,"ignore_cache":false}'), +(9637, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.633+00', '{"cached":null,"ignore_cache":false}'), +(9638, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.639+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9639, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.671+00', '{"cached":null,"ignore_cache":false}'), +(9640, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:48:58.672+00', '{"cached":null,"ignore_cache":false}'), +(9641, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:58.109+00', '{"cached":null,"ignore_cache":null}'), +(9642, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.07+00', '{"cached":null,"ignore_cache":false}'), +(9643, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.173+00', '{"cached":null,"ignore_cache":false}'), +(9644, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.214+00', '{"cached":null,"ignore_cache":false}'), +(9645, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.227+00', '{"cached":null,"ignore_cache":false}'), +(9646, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.266+00', '{"cached":null,"ignore_cache":false}'), +(9647, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.286+00', '{"cached":null,"ignore_cache":false}'), +(9648, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.302+00', '{"cached":null,"ignore_cache":false}'), +(9649, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.361+00', '{"cached":null,"ignore_cache":false}'), +(9650, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:53:59.467+00', '{"cached":null,"ignore_cache":false}'), +(9651, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:57.913+00', '{"cached":null,"ignore_cache":null}'), +(9652, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.817+00', '{"cached":null,"ignore_cache":false}'), +(9653, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.821+00', '{"cached":null,"ignore_cache":false}'), +(9654, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.881+00', '{"cached":null,"ignore_cache":false}'), +(9655, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.93+00', '{"cached":null,"ignore_cache":false}'), +(9656, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:58.968+00', '{"cached":null,"ignore_cache":false}'), +(9657, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:59.028+00', '{"cached":null,"ignore_cache":false}'), +(9658, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:59.034+00', '{"cached":null,"ignore_cache":false}'), +(9659, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:59.1+00', '{"cached":null,"ignore_cache":false}'), +(9660, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 14:58:59.17+00', '{"cached":null,"ignore_cache":false}'), +(9661, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:57.904+00', '{"cached":null,"ignore_cache":null}'), +(9662, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.763+00', '{"cached":null,"ignore_cache":false}'), +(9663, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.771+00', '{"cached":null,"ignore_cache":false}'), +(9664, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.783+00', '{"cached":null,"ignore_cache":false}'), +(9665, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.896+00', '{"cached":null,"ignore_cache":false}'), +(9666, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.922+00', '{"cached":null,"ignore_cache":false}'), +(9667, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:58.965+00', '{"cached":null,"ignore_cache":false}'), +(9668, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:59.004+00', '{"cached":null,"ignore_cache":false}'), +(9669, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:59.043+00', '{"cached":null,"ignore_cache":false}'), +(9670, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:03:59.144+00', '{"cached":null,"ignore_cache":false}'), +(9671, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:57.918+00', '{"cached":null,"ignore_cache":null}'), +(9672, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.59+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9673, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.799+00', '{"cached":null,"ignore_cache":false}'), +(9674, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.929+00', '{"cached":null,"ignore_cache":false}'), +(9675, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.938+00', '{"cached":null,"ignore_cache":false}'), +(9676, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:58.943+00', '{"cached":null,"ignore_cache":false}'), +(9677, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:59.075+00', '{"cached":null,"ignore_cache":false}'), +(9678, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:59.092+00', '{"cached":null,"ignore_cache":false}'), +(9679, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:59.154+00', '{"cached":null,"ignore_cache":false}'), +(9680, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:08:59.282+00', '{"cached":null,"ignore_cache":false}'), +(9681, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.09+00', '{"cached":null,"ignore_cache":null}'), +(9682, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.609+00', '{"cached":null,"ignore_cache":false}'), +(9683, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.701+00', '{"cached":null,"ignore_cache":false}'), +(9684, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.746+00', '{"cached":null,"ignore_cache":false}'), +(9685, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.836+00', '{"cached":null,"ignore_cache":false}'), +(9686, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.854+00', '{"cached":null,"ignore_cache":false}'), +(9687, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.863+00', '{"cached":null,"ignore_cache":false}'), +(9688, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.876+00', '{"cached":null,"ignore_cache":false}'), +(9689, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:58.878+00', '{"cached":null,"ignore_cache":false}'), +(9690, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:13:59.176+00', '{"cached":null,"ignore_cache":false}'), +(9691, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:57.957+00', '{"cached":null,"ignore_cache":null}'), +(9692, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.548+00', '{"cached":null,"ignore_cache":false}'), +(9693, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.585+00', '{"cached":null,"ignore_cache":false}'), +(9694, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.597+00', '{"cached":null,"ignore_cache":false}'), +(9695, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.631+00', '{"cached":null,"ignore_cache":false}'), +(9696, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.758+00', '{"cached":null,"ignore_cache":false}'), +(9697, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.843+00', '{"cached":null,"ignore_cache":false}'), +(9698, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.872+00', '{"cached":null,"ignore_cache":false}'), +(9699, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:58.877+00', '{"cached":null,"ignore_cache":false}'), +(9700, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:18:59.028+00', '{"cached":null,"ignore_cache":false}'), +(9701, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:57.911+00', '{"cached":null,"ignore_cache":null}'), +(9702, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.582+00', '{"cached":null,"ignore_cache":false}'), +(9703, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.662+00', '{"cached":null,"ignore_cache":false}'), +(9704, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.718+00', '{"cached":null,"ignore_cache":false}'), +(9705, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.719+00', '{"cached":null,"ignore_cache":false}'), +(9706, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.754+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9707, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.764+00', '{"cached":null,"ignore_cache":false}'), +(9708, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.766+00', '{"cached":null,"ignore_cache":false}'), +(9709, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.774+00', '{"cached":null,"ignore_cache":false}'), +(9710, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:23:58.874+00', '{"cached":null,"ignore_cache":false}'), +(9711, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:58.728+00', '{"cached":null,"ignore_cache":null}'), +(9712, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.373+00', '{"cached":null,"ignore_cache":false}'), +(9713, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.394+00', '{"cached":null,"ignore_cache":false}'), +(9714, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.414+00', '{"cached":null,"ignore_cache":false}'), +(9715, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.482+00', '{"cached":null,"ignore_cache":false}'), +(9716, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.5+00', '{"cached":null,"ignore_cache":false}'), +(9717, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.507+00', '{"cached":null,"ignore_cache":false}'), +(9718, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.52+00', '{"cached":null,"ignore_cache":false}'), +(9719, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.53+00', '{"cached":null,"ignore_cache":false}'), +(9720, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:28:59.538+00', '{"cached":null,"ignore_cache":false}'), +(9721, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:31.72+00', '{"cached":null,"ignore_cache":null}'), +(9722, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.306+00', '{"cached":null,"ignore_cache":false}'), +(9723, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.368+00', '{"cached":null,"ignore_cache":false}'), +(9724, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.392+00', '{"cached":null,"ignore_cache":false}'), +(9725, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.425+00', '{"cached":null,"ignore_cache":false}'), +(9726, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.448+00', '{"cached":null,"ignore_cache":false}'), +(9727, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.449+00', '{"cached":null,"ignore_cache":false}'), +(9728, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.564+00', '{"cached":null,"ignore_cache":false}'), +(9729, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.58+00', '{"cached":null,"ignore_cache":false}'), +(9730, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:39:32.602+00', '{"cached":null,"ignore_cache":false}'), +(9731, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.845+00', '{"cached":null,"ignore_cache":false}'), +(9732, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:57.908+00', '{"cached":null,"ignore_cache":false}'), +(9733, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.178+00', '{"cached":null,"ignore_cache":false}'), +(9734, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.32+00', '{"cached":null,"ignore_cache":false}'), +(9735, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.346+00', '{"cached":null,"ignore_cache":false}'), +(9736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.372+00', '{"cached":null,"ignore_cache":false}'), +(9737, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.434+00', '{"cached":null,"ignore_cache":false}'), +(9738, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.438+00', '{"cached":null,"ignore_cache":false}'), +(9739, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.452+00', '{"cached":null,"ignore_cache":false}'), +(9740, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.456+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9741, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.533+00', '{"cached":null,"ignore_cache":false}'), +(9742, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.795+00', '{"cached":null,"ignore_cache":false}'), +(9743, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.815+00', '{"cached":null,"ignore_cache":false}'), +(9744, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.892+00', '{"cached":null,"ignore_cache":false}'), +(9745, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.903+00', '{"cached":null,"ignore_cache":false}'), +(9746, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.933+00', '{"cached":null,"ignore_cache":false}'), +(9747, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:58.979+00', '{"cached":null,"ignore_cache":false}'), +(9748, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:59.128+00', '{"cached":null,"ignore_cache":false}'), +(9749, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:59.162+00', '{"cached":null,"ignore_cache":false}'), +(9750, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:46:59.282+00', '{"cached":null,"ignore_cache":false}'), +(9751, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.221+00', '{"cached":null,"ignore_cache":false}'), +(9752, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.272+00', '{"cached":null,"ignore_cache":false}'), +(9753, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.277+00', '{"cached":null,"ignore_cache":false}'), +(9754, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.344+00', '{"cached":null,"ignore_cache":false}'), +(9755, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.366+00', '{"cached":null,"ignore_cache":false}'), +(9756, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.378+00', '{"cached":null,"ignore_cache":false}'), +(9757, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.422+00', '{"cached":null,"ignore_cache":false}'), +(9758, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.428+00', '{"cached":null,"ignore_cache":false}'), +(9759, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.445+00', '{"cached":null,"ignore_cache":false}'), +(9760, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.463+00', '{"cached":null,"ignore_cache":false}'), +(9761, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.464+00', '{"cached":null,"ignore_cache":false}'), +(9762, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.48+00', '{"cached":null,"ignore_cache":false}'), +(9763, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.488+00', '{"cached":null,"ignore_cache":false}'), +(9764, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.5+00', '{"cached":null,"ignore_cache":false}'), +(9765, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.505+00', '{"cached":null,"ignore_cache":false}'), +(9766, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:36.538+00', '{"cached":null,"ignore_cache":false}'), +(9767, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.592+00', '{"cached":null,"ignore_cache":false}'), +(9768, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.659+00', '{"cached":null,"ignore_cache":false}'), +(9769, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.879+00', '{"cached":null,"ignore_cache":false}'), +(9770, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.912+00', '{"cached":null,"ignore_cache":false}'), +(9771, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.966+00', '{"cached":null,"ignore_cache":false}'), +(9772, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.967+00', '{"cached":null,"ignore_cache":false}'), +(9773, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.97+00', '{"cached":null,"ignore_cache":false}'), +(9774, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:56.994+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9775, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.036+00', '{"cached":null,"ignore_cache":false}'), +(9776, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.048+00', '{"cached":null,"ignore_cache":false}'), +(9777, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.076+00', '{"cached":null,"ignore_cache":false}'), +(9778, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.108+00', '{"cached":null,"ignore_cache":false}'), +(9779, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.119+00', '{"cached":null,"ignore_cache":false}'), +(9780, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.121+00', '{"cached":null,"ignore_cache":false}'), +(9781, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.137+00', '{"cached":null,"ignore_cache":false}'), +(9782, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:47:57.141+00', '{"cached":null,"ignore_cache":false}'), +(9783, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.241+00', '{"cached":null,"ignore_cache":false}'), +(9784, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.28+00', '{"cached":null,"ignore_cache":false}'), +(9785, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.283+00', '{"cached":null,"ignore_cache":false}'), +(9786, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.596+00', '{"cached":null,"ignore_cache":false}'), +(9787, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.656+00', '{"cached":null,"ignore_cache":false}'), +(9788, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.703+00', '{"cached":null,"ignore_cache":false}'), +(9789, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.805+00', '{"cached":null,"ignore_cache":false}'), +(9790, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.9+00', '{"cached":null,"ignore_cache":false}'), +(9791, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.923+00', '{"cached":null,"ignore_cache":false}'), +(9792, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.936+00', '{"cached":null,"ignore_cache":false}'), +(9793, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.937+00', '{"cached":null,"ignore_cache":false}'), +(9794, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:24.961+00', '{"cached":null,"ignore_cache":false}'), +(9795, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:25.037+00', '{"cached":null,"ignore_cache":false}'), +(9796, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:25.063+00', '{"cached":null,"ignore_cache":false}'), +(9797, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:25.073+00', '{"cached":null,"ignore_cache":false}'), +(9798, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:25.094+00', '{"cached":null,"ignore_cache":false}'), +(9799, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.753+00', '{"cached":null,"ignore_cache":false}'), +(9800, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.837+00', '{"cached":null,"ignore_cache":false}'), +(9801, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.858+00', '{"cached":null,"ignore_cache":false}'), +(9802, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.939+00', '{"cached":null,"ignore_cache":false}'), +(9803, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.939+00', '{"cached":null,"ignore_cache":false}'), +(9804, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:53.94+00', '{"cached":null,"ignore_cache":false}'), +(9805, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.015+00', '{"cached":null,"ignore_cache":false}'), +(9806, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.026+00', '{"cached":null,"ignore_cache":false}'), +(9807, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.443+00', '{"cached":null,"ignore_cache":false}'), +(9808, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.471+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9809, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.48+00', '{"cached":null,"ignore_cache":false}'), +(9810, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.542+00', '{"cached":null,"ignore_cache":false}'), +(9811, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.546+00', '{"cached":null,"ignore_cache":false}'), +(9812, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.555+00', '{"cached":null,"ignore_cache":false}'), +(9813, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.561+00', '{"cached":null,"ignore_cache":false}'), +(9814, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:48:54.566+00', '{"cached":null,"ignore_cache":false}'), +(9815, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.277+00', '{"cached":null,"ignore_cache":false}'), +(9816, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.307+00', '{"cached":null,"ignore_cache":false}'), +(9817, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.315+00', '{"cached":null,"ignore_cache":false}'), +(9818, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.457+00', '{"cached":null,"ignore_cache":false}'), +(9819, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.486+00', '{"cached":null,"ignore_cache":false}'), +(9820, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.519+00', '{"cached":null,"ignore_cache":false}'), +(9821, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.54+00', '{"cached":null,"ignore_cache":false}'), +(9822, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.62+00', '{"cached":null,"ignore_cache":false}'), +(9823, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.64+00', '{"cached":null,"ignore_cache":false}'), +(9824, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.647+00', '{"cached":null,"ignore_cache":false}'), +(9825, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.726+00', '{"cached":null,"ignore_cache":false}'), +(9826, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.804+00', '{"cached":null,"ignore_cache":false}'), +(9827, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.807+00', '{"cached":null,"ignore_cache":false}'), +(9828, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.878+00', '{"cached":null,"ignore_cache":false}'), +(9829, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.895+00', '{"cached":null,"ignore_cache":false}'), +(9830, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:27.943+00', '{"cached":null,"ignore_cache":false}'), +(9831, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.067+00', '{"cached":null,"ignore_cache":false}'), +(9832, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.072+00', '{"cached":null,"ignore_cache":false}'), +(9833, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.096+00', '{"cached":null,"ignore_cache":false}'), +(9834, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.274+00', '{"cached":null,"ignore_cache":false}'), +(9835, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.364+00', '{"cached":null,"ignore_cache":false}'), +(9836, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.371+00', '{"cached":null,"ignore_cache":false}'), +(9837, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.403+00', '{"cached":null,"ignore_cache":false}'), +(9838, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.408+00', '{"cached":null,"ignore_cache":false}'), +(9839, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.444+00', '{"cached":null,"ignore_cache":false}'), +(9840, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.452+00', '{"cached":null,"ignore_cache":false}'), +(9841, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.486+00', '{"cached":null,"ignore_cache":false}'), +(9842, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.495+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9843, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.507+00', '{"cached":null,"ignore_cache":false}'), +(9844, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.51+00', '{"cached":null,"ignore_cache":false}'), +(9845, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.52+00', '{"cached":null,"ignore_cache":false}'), +(9846, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:49:56.531+00', '{"cached":null,"ignore_cache":false}'), +(9847, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.037+00', '{"cached":null,"ignore_cache":false}'), +(9848, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.137+00', '{"cached":null,"ignore_cache":false}'), +(9849, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.392+00', '{"cached":null,"ignore_cache":false}'), +(9850, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.419+00', '{"cached":null,"ignore_cache":false}'), +(9851, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.481+00', '{"cached":null,"ignore_cache":false}'), +(9852, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.541+00', '{"cached":null,"ignore_cache":false}'), +(9853, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.546+00', '{"cached":null,"ignore_cache":false}'), +(9854, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.602+00', '{"cached":null,"ignore_cache":false}'), +(9855, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.669+00', '{"cached":null,"ignore_cache":false}'), +(9856, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.678+00', '{"cached":null,"ignore_cache":false}'), +(9857, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.722+00', '{"cached":null,"ignore_cache":false}'), +(9858, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.738+00', '{"cached":null,"ignore_cache":false}'), +(9859, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.74+00', '{"cached":null,"ignore_cache":false}'), +(9860, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.769+00', '{"cached":null,"ignore_cache":false}'), +(9861, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.772+00', '{"cached":null,"ignore_cache":false}'), +(9862, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:24.777+00', '{"cached":null,"ignore_cache":false}'), +(9863, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.313+00', '{"cached":null,"ignore_cache":false}'), +(9864, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.428+00', '{"cached":null,"ignore_cache":false}'), +(9865, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.475+00', '{"cached":null,"ignore_cache":false}'), +(9866, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.585+00', '{"cached":null,"ignore_cache":false}'), +(9867, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.591+00', '{"cached":null,"ignore_cache":false}'), +(9868, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.653+00', '{"cached":null,"ignore_cache":false}'), +(9869, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.681+00', '{"cached":null,"ignore_cache":false}'), +(9870, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.809+00', '{"cached":null,"ignore_cache":false}'), +(9871, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.821+00', '{"cached":null,"ignore_cache":false}'), +(9872, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.822+00', '{"cached":null,"ignore_cache":false}'), +(9873, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.824+00', '{"cached":null,"ignore_cache":false}'), +(9874, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.858+00', '{"cached":null,"ignore_cache":false}'), +(9875, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.896+00', '{"cached":null,"ignore_cache":false}'), +(9876, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.93+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9877, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:56.977+00', '{"cached":null,"ignore_cache":false}'), +(9878, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:50:57.002+00', '{"cached":null,"ignore_cache":false}'), +(9879, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.359+00', '{"cached":null,"ignore_cache":false}'), +(9880, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.373+00', '{"cached":null,"ignore_cache":false}'), +(9881, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.456+00', '{"cached":null,"ignore_cache":false}'), +(9882, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.634+00', '{"cached":null,"ignore_cache":false}'), +(9883, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.665+00', '{"cached":null,"ignore_cache":false}'), +(9884, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.705+00', '{"cached":null,"ignore_cache":false}'), +(9885, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.783+00', '{"cached":null,"ignore_cache":false}'), +(9886, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.896+00', '{"cached":null,"ignore_cache":false}'), +(9887, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:27.93+00', '{"cached":null,"ignore_cache":false}'), +(9888, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:28.043+00', '{"cached":null,"ignore_cache":false}'), +(9889, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:28.043+00', '{"cached":null,"ignore_cache":false}'), +(9890, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:28.049+00', '{"cached":null,"ignore_cache":false}'), +(9891, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:28.068+00', '{"cached":null,"ignore_cache":false}'), +(9892, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:28.08+00', '{"cached":null,"ignore_cache":false}'), +(9893, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:28.11+00', '{"cached":null,"ignore_cache":false}'), +(9894, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:28.214+00', '{"cached":null,"ignore_cache":false}'), +(9895, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.557+00', '{"cached":null,"ignore_cache":false}'), +(9896, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.67+00', '{"cached":null,"ignore_cache":false}'), +(9897, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.671+00', '{"cached":null,"ignore_cache":false}'), +(9898, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.701+00', '{"cached":null,"ignore_cache":false}'), +(9899, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.732+00', '{"cached":null,"ignore_cache":false}'), +(9900, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.753+00', '{"cached":null,"ignore_cache":false}'), +(9901, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:54.784+00', '{"cached":null,"ignore_cache":false}'), +(9902, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.433+00', '{"cached":null,"ignore_cache":false}'), +(9903, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.444+00', '{"cached":null,"ignore_cache":false}'), +(9904, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.531+00', '{"cached":null,"ignore_cache":false}'), +(9905, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.538+00', '{"cached":null,"ignore_cache":false}'), +(9906, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.601+00', '{"cached":null,"ignore_cache":false}'), +(9907, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.675+00', '{"cached":null,"ignore_cache":false}'), +(9908, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.738+00', '{"cached":null,"ignore_cache":false}'), +(9909, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.742+00', '{"cached":null,"ignore_cache":false}'), +(9910, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:51:55.748+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9911, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.604+00', '{"cached":null,"ignore_cache":false}'), +(9912, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.61+00', '{"cached":null,"ignore_cache":false}'), +(9913, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.646+00', '{"cached":null,"ignore_cache":false}'), +(9914, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.663+00', '{"cached":null,"ignore_cache":false}'), +(9915, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.753+00', '{"cached":null,"ignore_cache":false}'), +(9916, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.792+00', '{"cached":null,"ignore_cache":false}'), +(9917, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.795+00', '{"cached":null,"ignore_cache":false}'), +(9918, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.807+00', '{"cached":null,"ignore_cache":false}'), +(9919, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.871+00', '{"cached":null,"ignore_cache":false}'), +(9920, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.881+00', '{"cached":null,"ignore_cache":false}'), +(9921, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.89+00', '{"cached":null,"ignore_cache":false}'), +(9922, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.963+00', '{"cached":null,"ignore_cache":false}'), +(9923, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.971+00', '{"cached":null,"ignore_cache":false}'), +(9924, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:24.98+00', '{"cached":null,"ignore_cache":false}'), +(9925, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:25.043+00', '{"cached":null,"ignore_cache":false}'), +(9926, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:25.05+00', '{"cached":null,"ignore_cache":false}'), +(9927, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.231+00', '{"cached":null,"ignore_cache":false}'), +(9928, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.38+00', '{"cached":null,"ignore_cache":false}'), +(9929, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.383+00', '{"cached":null,"ignore_cache":false}'), +(9930, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.39+00', '{"cached":null,"ignore_cache":false}'), +(9931, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.454+00', '{"cached":null,"ignore_cache":false}'), +(9932, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.459+00', '{"cached":null,"ignore_cache":false}'), +(9933, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.506+00', '{"cached":null,"ignore_cache":false}'), +(9934, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.516+00', '{"cached":null,"ignore_cache":false}'), +(9935, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.519+00', '{"cached":null,"ignore_cache":false}'), +(9936, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.523+00', '{"cached":null,"ignore_cache":false}'), +(9937, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.523+00', '{"cached":null,"ignore_cache":false}'), +(9938, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.542+00', '{"cached":null,"ignore_cache":false}'), +(9939, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.554+00', '{"cached":null,"ignore_cache":false}'), +(9940, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.559+00', '{"cached":null,"ignore_cache":false}'), +(9941, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.559+00', '{"cached":null,"ignore_cache":false}'), +(9942, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:52:54.564+00', '{"cached":null,"ignore_cache":false}'), +(9943, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.009+00', '{"cached":null,"ignore_cache":false}'), +(9944, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.018+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9945, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.036+00', '{"cached":null,"ignore_cache":false}'), +(9946, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.042+00', '{"cached":null,"ignore_cache":false}'), +(9947, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.333+00', '{"cached":null,"ignore_cache":false}'), +(9948, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.338+00', '{"cached":null,"ignore_cache":false}'), +(9949, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.358+00', '{"cached":null,"ignore_cache":false}'), +(9950, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.417+00', '{"cached":null,"ignore_cache":false}'), +(9951, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.43+00', '{"cached":null,"ignore_cache":false}'), +(9952, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.447+00', '{"cached":null,"ignore_cache":false}'), +(9953, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.539+00', '{"cached":null,"ignore_cache":false}'), +(9954, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.581+00', '{"cached":null,"ignore_cache":false}'), +(9955, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.587+00', '{"cached":null,"ignore_cache":false}'), +(9956, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.592+00', '{"cached":null,"ignore_cache":false}'), +(9957, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.612+00', '{"cached":null,"ignore_cache":false}'), +(9958, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:31.665+00', '{"cached":null,"ignore_cache":false}'), +(9959, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.053+00', '{"cached":null,"ignore_cache":false}'), +(9960, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.213+00', '{"cached":null,"ignore_cache":false}'), +(9961, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.233+00', '{"cached":null,"ignore_cache":false}'), +(9962, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.325+00', '{"cached":null,"ignore_cache":false}'), +(9963, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.331+00', '{"cached":null,"ignore_cache":false}'), +(9964, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.353+00', '{"cached":null,"ignore_cache":false}'), +(9965, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.402+00', '{"cached":null,"ignore_cache":false}'), +(9966, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.44+00', '{"cached":null,"ignore_cache":false}'), +(9967, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.489+00', '{"cached":null,"ignore_cache":false}'), +(9968, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.613+00', '{"cached":null,"ignore_cache":false}'), +(9969, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.614+00', '{"cached":null,"ignore_cache":false}'), +(9970, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.641+00', '{"cached":null,"ignore_cache":false}'), +(9971, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.664+00', '{"cached":null,"ignore_cache":false}'), +(9972, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.687+00', '{"cached":null,"ignore_cache":false}'), +(9973, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.736+00', '{"cached":null,"ignore_cache":false}'), +(9974, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:53:57.834+00', '{"cached":null,"ignore_cache":false}'), +(9975, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.078+00', '{"cached":null,"ignore_cache":false}'), +(9976, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.422+00', '{"cached":null,"ignore_cache":false}'), +(9977, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.488+00', '{"cached":null,"ignore_cache":false}'), +(9978, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.496+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(9979, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.522+00', '{"cached":null,"ignore_cache":false}'), +(9980, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.523+00', '{"cached":null,"ignore_cache":false}'), +(9981, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.607+00', '{"cached":null,"ignore_cache":false}'), +(9982, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.63+00', '{"cached":null,"ignore_cache":false}'), +(9983, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.633+00', '{"cached":null,"ignore_cache":false}'), +(9984, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.662+00', '{"cached":null,"ignore_cache":false}'), +(9985, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.673+00', '{"cached":null,"ignore_cache":false}'), +(9986, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.724+00', '{"cached":null,"ignore_cache":false}'), +(9987, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.742+00', '{"cached":null,"ignore_cache":false}'), +(9988, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.755+00', '{"cached":null,"ignore_cache":false}'), +(9989, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.79+00', '{"cached":null,"ignore_cache":false}'), +(9990, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:30.806+00', '{"cached":null,"ignore_cache":false}'), +(9991, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:53.936+00', '{"cached":null,"ignore_cache":false}'), +(9992, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.034+00', '{"cached":null,"ignore_cache":false}'), +(9993, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.044+00', '{"cached":null,"ignore_cache":false}'), +(9994, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.057+00', '{"cached":null,"ignore_cache":false}'), +(9995, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.142+00', '{"cached":null,"ignore_cache":false}'), +(9996, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.186+00', '{"cached":null,"ignore_cache":false}'), +(9997, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.22+00', '{"cached":null,"ignore_cache":false}'), +(9998, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.242+00', '{"cached":null,"ignore_cache":false}'), +(9999, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.242+00', '{"cached":null,"ignore_cache":false}'), +(10000, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.274+00', '{"cached":null,"ignore_cache":false}'), +(10001, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.354+00', '{"cached":null,"ignore_cache":false}'), +(10002, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.379+00', '{"cached":null,"ignore_cache":false}'), +(10003, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.382+00', '{"cached":null,"ignore_cache":false}'), +(10004, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.413+00', '{"cached":null,"ignore_cache":false}'), +(10005, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.423+00', '{"cached":null,"ignore_cache":false}'), +(10006, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:54:54.429+00', '{"cached":null,"ignore_cache":false}'), +(10007, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.822+00', '{"cached":null,"ignore_cache":false}'), +(10008, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.844+00', '{"cached":null,"ignore_cache":false}'), +(10009, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.856+00', '{"cached":null,"ignore_cache":false}'), +(10010, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.869+00', '{"cached":null,"ignore_cache":false}'), +(10011, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.875+00', '{"cached":null,"ignore_cache":false}'), +(10012, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.903+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10013, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:24.909+00', '{"cached":null,"ignore_cache":false}'), +(10014, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.236+00', '{"cached":null,"ignore_cache":false}'), +(10015, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.33+00', '{"cached":null,"ignore_cache":false}'), +(10016, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.345+00', '{"cached":null,"ignore_cache":false}'), +(10017, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.349+00', '{"cached":null,"ignore_cache":false}'), +(10018, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.439+00', '{"cached":null,"ignore_cache":false}'), +(10019, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.458+00', '{"cached":null,"ignore_cache":false}'), +(10020, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.468+00', '{"cached":null,"ignore_cache":false}'), +(10021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.47+00', '{"cached":null,"ignore_cache":false}'), +(10022, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:55:26.532+00', '{"cached":null,"ignore_cache":false}'), +(10023, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.628+00', '{"cached":null,"ignore_cache":false}'), +(10024, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.667+00', '{"cached":null,"ignore_cache":false}'), +(10025, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.674+00', '{"cached":null,"ignore_cache":false}'), +(10026, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.698+00', '{"cached":null,"ignore_cache":false}'), +(10027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.706+00', '{"cached":null,"ignore_cache":false}'), +(10028, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:10.714+00', '{"cached":null,"ignore_cache":false}'), +(10029, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.084+00', '{"cached":null,"ignore_cache":false}'), +(10030, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.111+00', '{"cached":null,"ignore_cache":false}'), +(10031, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.121+00', '{"cached":null,"ignore_cache":false}'), +(10032, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.125+00', '{"cached":null,"ignore_cache":false}'), +(10033, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.131+00', '{"cached":null,"ignore_cache":false}'), +(10034, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.134+00', '{"cached":null,"ignore_cache":false}'), +(10035, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.151+00', '{"cached":null,"ignore_cache":false}'), +(10036, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.157+00', '{"cached":null,"ignore_cache":false}'), +(10037, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.161+00', '{"cached":null,"ignore_cache":false}'), +(10038, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:11.178+00', '{"cached":null,"ignore_cache":false}'), +(10039, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.182+00', '{"cached":null,"ignore_cache":false}'), +(10040, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.189+00', '{"cached":null,"ignore_cache":false}'), +(10041, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.228+00', '{"cached":null,"ignore_cache":false}'), +(10042, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.255+00', '{"cached":null,"ignore_cache":false}'), +(10043, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.265+00', '{"cached":null,"ignore_cache":false}'), +(10044, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.284+00', '{"cached":null,"ignore_cache":false}'), +(10045, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:24.29+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10046, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.562+00', '{"cached":null,"ignore_cache":false}'), +(10047, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.597+00', '{"cached":null,"ignore_cache":false}'), +(10048, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.641+00', '{"cached":null,"ignore_cache":false}'), +(10049, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.678+00', '{"cached":null,"ignore_cache":false}'), +(10050, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.717+00', '{"cached":null,"ignore_cache":false}'), +(10051, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.719+00', '{"cached":null,"ignore_cache":false}'), +(10052, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:56:54.727+00', '{"cached":null,"ignore_cache":false}'), +(10053, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.012+00', '{"cached":null,"ignore_cache":false}'), +(10054, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.013+00', '{"cached":null,"ignore_cache":false}'), +(10055, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.112+00', '{"cached":null,"ignore_cache":false}'), +(10056, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.117+00', '{"cached":null,"ignore_cache":false}'), +(10057, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.156+00', '{"cached":null,"ignore_cache":false}'), +(10058, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.185+00', '{"cached":null,"ignore_cache":false}'), +(10059, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.201+00', '{"cached":null,"ignore_cache":false}'), +(10060, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.211+00', '{"cached":null,"ignore_cache":false}'), +(10061, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:04.215+00', '{"cached":null,"ignore_cache":false}'), +(10062, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.114+00', '{"cached":null,"ignore_cache":false}'), +(10063, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.197+00', '{"cached":null,"ignore_cache":false}'), +(10064, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.2+00', '{"cached":null,"ignore_cache":false}'), +(10065, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.233+00', '{"cached":null,"ignore_cache":false}'), +(10066, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.247+00', '{"cached":null,"ignore_cache":false}'), +(10067, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.287+00', '{"cached":null,"ignore_cache":false}'), +(10068, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:24.312+00', '{"cached":null,"ignore_cache":false}'), +(10069, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.143+00', '{"cached":null,"ignore_cache":false}'), +(10070, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.232+00', '{"cached":null,"ignore_cache":false}'), +(10071, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.286+00', '{"cached":null,"ignore_cache":false}'), +(10072, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.291+00', '{"cached":null,"ignore_cache":false}'), +(10073, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.292+00', '{"cached":null,"ignore_cache":false}'), +(10074, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.305+00', '{"cached":null,"ignore_cache":false}'), +(10075, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.309+00', '{"cached":null,"ignore_cache":false}'), +(10076, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.309+00', '{"cached":null,"ignore_cache":false}'), +(10077, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:44.317+00', '{"cached":null,"ignore_cache":false}'), +(10078, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.761+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10079, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.766+00', '{"cached":null,"ignore_cache":false}'), +(10080, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.777+00', '{"cached":null,"ignore_cache":false}'), +(10081, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.781+00', '{"cached":null,"ignore_cache":false}'), +(10082, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.79+00', '{"cached":null,"ignore_cache":false}'), +(10083, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.794+00', '{"cached":null,"ignore_cache":false}'), +(10084, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:57:55.803+00', '{"cached":null,"ignore_cache":false}'), +(10085, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.282+00', '{"cached":null,"ignore_cache":false}'), +(10086, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.363+00', '{"cached":null,"ignore_cache":false}'), +(10087, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.385+00', '{"cached":null,"ignore_cache":false}'), +(10088, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.39+00', '{"cached":null,"ignore_cache":false}'), +(10089, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.405+00', '{"cached":null,"ignore_cache":false}'), +(10090, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.421+00', '{"cached":null,"ignore_cache":false}'), +(10091, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.435+00', '{"cached":null,"ignore_cache":false}'), +(10092, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.438+00', '{"cached":null,"ignore_cache":false}'), +(10093, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:22.461+00', '{"cached":null,"ignore_cache":false}'), +(10094, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.537+00', '{"cached":null,"ignore_cache":false}'), +(10095, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.552+00', '{"cached":null,"ignore_cache":false}'), +(10096, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.565+00', '{"cached":null,"ignore_cache":false}'), +(10097, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.654+00', '{"cached":null,"ignore_cache":false}'), +(10098, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.678+00', '{"cached":null,"ignore_cache":false}'), +(10099, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.691+00', '{"cached":null,"ignore_cache":false}'), +(10100, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:58:23.692+00', '{"cached":null,"ignore_cache":false}'), +(10101, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.313+00', '{"cached":null,"ignore_cache":false}'), +(10102, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.313+00', '{"cached":null,"ignore_cache":false}'), +(10103, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.333+00', '{"cached":null,"ignore_cache":false}'), +(10104, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.694+00', '{"cached":null,"ignore_cache":false}'), +(10105, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.704+00', '{"cached":null,"ignore_cache":false}'), +(10106, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.708+00', '{"cached":null,"ignore_cache":false}'), +(10107, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.728+00', '{"cached":null,"ignore_cache":false}'), +(10108, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.909+00', '{"cached":null,"ignore_cache":false}'), +(10109, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:07.91+00', '{"cached":null,"ignore_cache":false}'), +(10110, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.055+00', '{"cached":null,"ignore_cache":false}'), +(10111, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.091+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10112, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.112+00', '{"cached":null,"ignore_cache":false}'), +(10113, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.122+00', '{"cached":null,"ignore_cache":false}'), +(10114, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.146+00', '{"cached":null,"ignore_cache":false}'), +(10115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.159+00', '{"cached":null,"ignore_cache":false}'), +(10116, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:08.16+00', '{"cached":null,"ignore_cache":false}'), +(10117, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:22.257+00', '{"cached":null,"ignore_cache":false}'), +(10118, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:22.311+00', '{"cached":null,"ignore_cache":false}'), +(10119, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:22.332+00', '{"cached":null,"ignore_cache":false}'), +(10120, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:23.281+00', '{"cached":null,"ignore_cache":false}'), +(10121, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:23.314+00', '{"cached":null,"ignore_cache":false}'), +(10122, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:23.316+00', '{"cached":null,"ignore_cache":false}'), +(10123, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:25.254+00', '{"cached":null,"ignore_cache":false}'), +(10124, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:25.266+00', '{"cached":null,"ignore_cache":false}'), +(10125, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:25.342+00', '{"cached":null,"ignore_cache":false}'), +(10126, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.104+00', '{"cached":null,"ignore_cache":false}'), +(10127, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.207+00', '{"cached":null,"ignore_cache":false}'), +(10128, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.236+00', '{"cached":null,"ignore_cache":false}'), +(10129, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.256+00', '{"cached":null,"ignore_cache":false}'), +(10130, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.261+00', '{"cached":null,"ignore_cache":false}'), +(10131, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.308+00', '{"cached":null,"ignore_cache":false}'), +(10132, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:26.319+00', '{"cached":null,"ignore_cache":false}'), +(10133, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:51.931+00', '{"cached":null,"ignore_cache":false}'), +(10134, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.026+00', '{"cached":null,"ignore_cache":false}'), +(10135, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.034+00', '{"cached":null,"ignore_cache":false}'), +(10136, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.096+00', '{"cached":null,"ignore_cache":false}'), +(10137, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.153+00', '{"cached":null,"ignore_cache":false}'), +(10138, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.22+00', '{"cached":null,"ignore_cache":false}'), +(10139, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.24+00', '{"cached":null,"ignore_cache":false}'), +(10140, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.271+00', '{"cached":null,"ignore_cache":false}'), +(10141, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:52.322+00', '{"cached":null,"ignore_cache":false}'), +(10142, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:59.971+00', '{"cached":null,"ignore_cache":false}'), +(10143, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 15:59:59.985+00', '{"cached":null,"ignore_cache":false}'), +(10144, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.261+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10145, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.45+00', '{"cached":null,"ignore_cache":false}'), +(10146, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.499+00', '{"cached":null,"ignore_cache":false}'), +(10147, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.551+00', '{"cached":null,"ignore_cache":false}'), +(10148, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:00.553+00', '{"cached":null,"ignore_cache":false}'), +(10149, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.692+00', '{"cached":null,"ignore_cache":false}'), +(10150, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.716+00', '{"cached":null,"ignore_cache":false}'), +(10151, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.723+00', '{"cached":null,"ignore_cache":false}'), +(10152, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.735+00', '{"cached":null,"ignore_cache":false}'), +(10153, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.759+00', '{"cached":null,"ignore_cache":false}'), +(10154, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.766+00', '{"cached":null,"ignore_cache":false}'), +(10155, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:25.766+00', '{"cached":null,"ignore_cache":false}'), +(10156, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:49.672+00', '{"cached":null,"ignore_cache":false}'), +(10157, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:49.761+00', '{"cached":null,"ignore_cache":false}'), +(10158, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:49.763+00', '{"cached":null,"ignore_cache":false}'), +(10159, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.712+00', '{"cached":null,"ignore_cache":false}'), +(10160, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.837+00', '{"cached":null,"ignore_cache":false}'), +(10161, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.876+00', '{"cached":null,"ignore_cache":false}'), +(10162, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.951+00', '{"cached":null,"ignore_cache":false}'), +(10163, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:51.994+00', '{"cached":null,"ignore_cache":false}'), +(10164, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:00:52.001+00', '{"cached":null,"ignore_cache":false}'), +(10165, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.334+00', '{"cached":null,"ignore_cache":false}'), +(10166, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.389+00', '{"cached":null,"ignore_cache":false}'), +(10167, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.415+00', '{"cached":null,"ignore_cache":false}'), +(10168, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:30.486+00', '{"cached":null,"ignore_cache":false}'), +(10169, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.376+00', '{"cached":null,"ignore_cache":false}'), +(10170, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.423+00', '{"cached":null,"ignore_cache":false}'), +(10171, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.49+00', '{"cached":null,"ignore_cache":false}'), +(10172, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.547+00', '{"cached":null,"ignore_cache":false}'), +(10173, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.593+00', '{"cached":null,"ignore_cache":false}'), +(10174, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.625+00', '{"cached":null,"ignore_cache":false}'), +(10175, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.627+00', '{"cached":null,"ignore_cache":false}'), +(10176, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:33.65+00', '{"cached":null,"ignore_cache":false}'), +(10177, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.647+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10178, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.661+00', '{"cached":null,"ignore_cache":false}'), +(10179, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.694+00', '{"cached":null,"ignore_cache":false}'), +(10180, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.741+00', '{"cached":null,"ignore_cache":false}'), +(10181, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.795+00', '{"cached":null,"ignore_cache":false}'), +(10182, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.89+00', '{"cached":null,"ignore_cache":false}'), +(10183, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.893+00', '{"cached":null,"ignore_cache":false}'), +(10184, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.895+00', '{"cached":null,"ignore_cache":false}'), +(10185, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.935+00', '{"cached":null,"ignore_cache":false}'), +(10186, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.935+00', '{"cached":null,"ignore_cache":false}'), +(10187, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:01:35.964+00', '{"cached":null,"ignore_cache":false}'), +(10188, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.663+00', '{"cached":null,"ignore_cache":false}'), +(10189, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.702+00', '{"cached":null,"ignore_cache":false}'), +(10190, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.708+00', '{"cached":null,"ignore_cache":false}'), +(10191, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.731+00', '{"cached":null,"ignore_cache":false}'), +(10192, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.781+00', '{"cached":null,"ignore_cache":false}'), +(10193, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:20.793+00', '{"cached":null,"ignore_cache":false}'), +(10194, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:21.096+00', '{"cached":null,"ignore_cache":false}'), +(10195, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.017+00', '{"cached":null,"ignore_cache":false}'), +(10196, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.257+00', '{"cached":null,"ignore_cache":false}'), +(10197, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.265+00', '{"cached":null,"ignore_cache":false}'), +(10198, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.299+00', '{"cached":null,"ignore_cache":false}'), +(10199, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.302+00', '{"cached":null,"ignore_cache":false}'), +(10200, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.304+00', '{"cached":null,"ignore_cache":false}'), +(10201, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.317+00', '{"cached":null,"ignore_cache":false}'), +(10202, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.404+00', '{"cached":null,"ignore_cache":false}'), +(10203, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:22.529+00', '{"cached":null,"ignore_cache":false}'), +(10204, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.133+00', '{"cached":null,"ignore_cache":false}'), +(10205, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.199+00', '{"cached":null,"ignore_cache":false}'), +(10206, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.254+00', '{"cached":null,"ignore_cache":false}'), +(10207, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.291+00', '{"cached":null,"ignore_cache":false}'), +(10208, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.314+00', '{"cached":null,"ignore_cache":false}'), +(10209, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.341+00', '{"cached":null,"ignore_cache":false}'), +(10210, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:24.419+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10211, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.664+00', '{"cached":null,"ignore_cache":false}'), +(10212, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.758+00', '{"cached":null,"ignore_cache":false}'), +(10213, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.771+00', '{"cached":null,"ignore_cache":false}'), +(10214, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.799+00', '{"cached":null,"ignore_cache":false}'), +(10215, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.807+00', '{"cached":null,"ignore_cache":false}'), +(10216, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.835+00', '{"cached":null,"ignore_cache":false}'), +(10217, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.849+00', '{"cached":null,"ignore_cache":false}'), +(10218, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.851+00', '{"cached":null,"ignore_cache":false}'), +(10219, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.853+00', '{"cached":null,"ignore_cache":false}'), +(10220, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.887+00', '{"cached":null,"ignore_cache":false}'), +(10221, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.901+00', '{"cached":null,"ignore_cache":false}'), +(10222, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.922+00', '{"cached":null,"ignore_cache":false}'), +(10223, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.923+00', '{"cached":null,"ignore_cache":false}'), +(10224, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.94+00', '{"cached":null,"ignore_cache":false}'), +(10225, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:58.952+00', '{"cached":null,"ignore_cache":false}'), +(10226, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:02:59.033+00', '{"cached":null,"ignore_cache":false}'), +(10227, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.169+00', '{"cached":null,"ignore_cache":false}'), +(10228, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.17+00', '{"cached":null,"ignore_cache":false}'), +(10229, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.206+00', '{"cached":null,"ignore_cache":false}'), +(10230, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.319+00', '{"cached":null,"ignore_cache":false}'), +(10231, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.363+00', '{"cached":null,"ignore_cache":false}'), +(10232, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.371+00', '{"cached":null,"ignore_cache":false}'), +(10233, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:31.417+00', '{"cached":null,"ignore_cache":false}'), +(10234, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.438+00', '{"cached":null,"ignore_cache":false}'), +(10235, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.454+00', '{"cached":null,"ignore_cache":false}'), +(10236, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.462+00', '{"cached":null,"ignore_cache":false}'), +(10237, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.53+00', '{"cached":null,"ignore_cache":false}'), +(10238, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.598+00', '{"cached":null,"ignore_cache":false}'), +(10239, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.636+00', '{"cached":null,"ignore_cache":false}'), +(10240, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.738+00', '{"cached":null,"ignore_cache":false}'), +(10241, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.754+00', '{"cached":null,"ignore_cache":false}'), +(10242, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:51.773+00', '{"cached":null,"ignore_cache":false}'), +(10243, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.123+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10244, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.159+00', '{"cached":null,"ignore_cache":false}'), +(10245, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.163+00', '{"cached":null,"ignore_cache":false}'), +(10246, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.194+00', '{"cached":null,"ignore_cache":false}'), +(10247, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.269+00', '{"cached":null,"ignore_cache":false}'), +(10248, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.278+00', '{"cached":null,"ignore_cache":false}'), +(10249, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:03:54.308+00', '{"cached":null,"ignore_cache":false}'), +(10250, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.559+00', '{"cached":null,"ignore_cache":false}'), +(10251, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.738+00', '{"cached":null,"ignore_cache":false}'), +(10252, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.739+00', '{"cached":null,"ignore_cache":false}'), +(10253, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.75+00', '{"cached":null,"ignore_cache":false}'), +(10254, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.762+00', '{"cached":null,"ignore_cache":false}'), +(10255, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.772+00', '{"cached":null,"ignore_cache":false}'), +(10256, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:27.773+00', '{"cached":null,"ignore_cache":false}'), +(10257, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.113+00', '{"cached":null,"ignore_cache":false}'), +(10258, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.13+00', '{"cached":null,"ignore_cache":false}'), +(10259, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.142+00', '{"cached":null,"ignore_cache":false}'), +(10260, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.161+00', '{"cached":null,"ignore_cache":false}'), +(10261, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.173+00', '{"cached":null,"ignore_cache":false}'), +(10262, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.195+00', '{"cached":null,"ignore_cache":false}'), +(10263, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:41.201+00', '{"cached":null,"ignore_cache":false}'), +(10264, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:43.221+00', '{"cached":null,"ignore_cache":false}'), +(10265, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:43.287+00', '{"cached":null,"ignore_cache":false}'), +(10266, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:53.998+00', '{"cached":null,"ignore_cache":false}'), +(10267, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:54.056+00', '{"cached":null,"ignore_cache":false}'), +(10268, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:54.075+00', '{"cached":null,"ignore_cache":false}'), +(10269, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:54.076+00', '{"cached":null,"ignore_cache":false}'), +(10270, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:54.08+00', '{"cached":null,"ignore_cache":false}'), +(10271, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:54.111+00', '{"cached":null,"ignore_cache":false}'), +(10272, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:04:54.118+00', '{"cached":null,"ignore_cache":false}'), +(10273, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.543+00', '{"cached":null,"ignore_cache":false}'), +(10274, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.545+00', '{"cached":null,"ignore_cache":false}'), +(10275, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.549+00', '{"cached":null,"ignore_cache":false}'), +(10276, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.561+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10277, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.565+00', '{"cached":null,"ignore_cache":false}'), +(10278, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.567+00', '{"cached":null,"ignore_cache":false}'), +(10279, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:24.99+00', '{"cached":null,"ignore_cache":false}'), +(10280, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.03+00', '{"cached":null,"ignore_cache":false}'), +(10281, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.042+00', '{"cached":null,"ignore_cache":false}'), +(10282, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.059+00', '{"cached":null,"ignore_cache":false}'), +(10283, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.066+00', '{"cached":null,"ignore_cache":false}'), +(10284, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.088+00', '{"cached":null,"ignore_cache":false}'), +(10285, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.113+00', '{"cached":null,"ignore_cache":false}'), +(10286, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.117+00', '{"cached":null,"ignore_cache":false}'), +(10287, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.128+00', '{"cached":null,"ignore_cache":false}'), +(10288, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:25.136+00', '{"cached":null,"ignore_cache":false}'), +(10289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.609+00', '{"cached":null,"ignore_cache":false}'), +(10290, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.633+00', '{"cached":null,"ignore_cache":false}'), +(10291, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.668+00', '{"cached":null,"ignore_cache":false}'), +(10292, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.705+00', '{"cached":null,"ignore_cache":false}'), +(10293, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.727+00', '{"cached":null,"ignore_cache":false}'), +(10294, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.732+00', '{"cached":null,"ignore_cache":false}'), +(10295, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:05:57.735+00', '{"cached":null,"ignore_cache":false}'), +(10296, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.669+00', '{"cached":null,"ignore_cache":false}'), +(10297, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.763+00', '{"cached":null,"ignore_cache":false}'), +(10298, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.763+00', '{"cached":null,"ignore_cache":false}'), +(10299, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.874+00', '{"cached":null,"ignore_cache":false}'), +(10300, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.885+00', '{"cached":null,"ignore_cache":false}'), +(10301, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:09.951+00', '{"cached":null,"ignore_cache":false}'), +(10302, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:10.068+00', '{"cached":null,"ignore_cache":false}'), +(10303, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:10.107+00', '{"cached":null,"ignore_cache":false}'), +(10304, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:10.113+00', '{"cached":null,"ignore_cache":false}'), +(10305, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.213+00', '{"cached":null,"ignore_cache":false}'), +(10306, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.217+00', '{"cached":null,"ignore_cache":false}'), +(10307, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.241+00', '{"cached":null,"ignore_cache":false}'), +(10308, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.247+00', '{"cached":null,"ignore_cache":false}'), +(10309, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.256+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10310, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.259+00', '{"cached":null,"ignore_cache":false}'), +(10311, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:24.263+00', '{"cached":null,"ignore_cache":false}'), +(10312, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.797+00', '{"cached":null,"ignore_cache":false}'), +(10313, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.8+00', '{"cached":null,"ignore_cache":false}'), +(10314, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.822+00', '{"cached":null,"ignore_cache":false}'), +(10315, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.936+00', '{"cached":null,"ignore_cache":false}'), +(10316, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:53.976+00', '{"cached":null,"ignore_cache":false}'), +(10317, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.02+00', '{"cached":null,"ignore_cache":false}'), +(10318, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.043+00', '{"cached":null,"ignore_cache":false}'), +(10319, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.195+00', '{"cached":null,"ignore_cache":false}'), +(10320, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.256+00', '{"cached":null,"ignore_cache":false}'), +(10321, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.279+00', '{"cached":null,"ignore_cache":false}'), +(10322, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.284+00', '{"cached":null,"ignore_cache":false}'), +(10323, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.308+00', '{"cached":null,"ignore_cache":false}'), +(10324, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.327+00', '{"cached":null,"ignore_cache":false}'), +(10325, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.348+00', '{"cached":null,"ignore_cache":false}'), +(10326, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.361+00', '{"cached":null,"ignore_cache":false}'), +(10327, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:06:54.366+00', '{"cached":null,"ignore_cache":false}'), +(10328, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.65+00', '{"cached":null,"ignore_cache":false}'), +(10329, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.689+00', '{"cached":null,"ignore_cache":false}'), +(10330, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.693+00', '{"cached":null,"ignore_cache":false}'), +(10331, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.733+00', '{"cached":null,"ignore_cache":false}'), +(10332, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.75+00', '{"cached":null,"ignore_cache":false}'), +(10333, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.757+00', '{"cached":null,"ignore_cache":false}'), +(10334, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:24.778+00', '{"cached":null,"ignore_cache":false}'), +(10335, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.086+00', '{"cached":null,"ignore_cache":false}'), +(10336, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.182+00', '{"cached":null,"ignore_cache":false}'), +(10337, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.192+00', '{"cached":null,"ignore_cache":false}'), +(10338, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.215+00', '{"cached":null,"ignore_cache":false}'), +(10339, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.25+00', '{"cached":null,"ignore_cache":false}'), +(10340, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.269+00', '{"cached":null,"ignore_cache":false}'), +(10341, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.285+00', '{"cached":null,"ignore_cache":false}'), +(10342, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.286+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10343, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:44.3+00', '{"cached":null,"ignore_cache":false}'), +(10344, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.976+00', '{"cached":null,"ignore_cache":false}'), +(10345, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:53.984+00', '{"cached":null,"ignore_cache":false}'), +(10346, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:54.052+00', '{"cached":null,"ignore_cache":false}'), +(10347, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:54.062+00', '{"cached":null,"ignore_cache":false}'), +(10348, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:54.067+00', '{"cached":null,"ignore_cache":false}'), +(10349, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:54.07+00', '{"cached":null,"ignore_cache":false}'), +(10350, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:07:54.086+00', '{"cached":null,"ignore_cache":false}'), +(10351, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.512+00', '{"cached":null,"ignore_cache":false}'), +(10352, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.537+00', '{"cached":null,"ignore_cache":false}'), +(10353, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.584+00', '{"cached":null,"ignore_cache":false}'), +(10354, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.591+00', '{"cached":null,"ignore_cache":false}'), +(10355, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.593+00', '{"cached":null,"ignore_cache":false}'), +(10356, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.609+00', '{"cached":null,"ignore_cache":false}'), +(10357, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:30.626+00', '{"cached":null,"ignore_cache":false}'), +(10358, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.658+00', '{"cached":null,"ignore_cache":false}'), +(10359, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.743+00', '{"cached":null,"ignore_cache":false}'), +(10360, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.793+00', '{"cached":null,"ignore_cache":false}'), +(10361, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.827+00', '{"cached":null,"ignore_cache":false}'), +(10362, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:35.914+00', '{"cached":null,"ignore_cache":false}'), +(10363, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:36.086+00', '{"cached":null,"ignore_cache":false}'), +(10364, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:36.106+00', '{"cached":null,"ignore_cache":false}'), +(10365, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:36.117+00', '{"cached":null,"ignore_cache":false}'), +(10366, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:36.137+00', '{"cached":null,"ignore_cache":false}'), +(10367, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.718+00', '{"cached":null,"ignore_cache":false}'), +(10368, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.776+00', '{"cached":null,"ignore_cache":false}'), +(10369, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.806+00', '{"cached":null,"ignore_cache":false}'), +(10370, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.822+00', '{"cached":null,"ignore_cache":false}'), +(10371, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.823+00', '{"cached":null,"ignore_cache":false}'), +(10372, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.838+00', '{"cached":null,"ignore_cache":false}'), +(10373, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:08:55.842+00', '{"cached":null,"ignore_cache":false}'), +(10374, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.666+00', '{"cached":null,"ignore_cache":false}'), +(10375, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.787+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10376, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:25.79+00', '{"cached":null,"ignore_cache":false}'), +(10377, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.065+00', '{"cached":null,"ignore_cache":false}'), +(10378, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.071+00', '{"cached":null,"ignore_cache":false}'), +(10379, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.08+00', '{"cached":null,"ignore_cache":false}'), +(10380, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.182+00', '{"cached":null,"ignore_cache":false}'), +(10381, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.204+00', '{"cached":null,"ignore_cache":false}'), +(10382, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.245+00', '{"cached":null,"ignore_cache":false}'), +(10383, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.294+00', '{"cached":null,"ignore_cache":false}'), +(10384, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.343+00', '{"cached":null,"ignore_cache":false}'), +(10385, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.364+00', '{"cached":null,"ignore_cache":false}'), +(10386, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.409+00', '{"cached":null,"ignore_cache":false}'), +(10387, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.415+00', '{"cached":null,"ignore_cache":false}'), +(10388, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.444+00', '{"cached":null,"ignore_cache":false}'), +(10389, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:26.448+00', '{"cached":null,"ignore_cache":false}'), +(10390, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.546+00', '{"cached":null,"ignore_cache":false}'), +(10391, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.556+00', '{"cached":null,"ignore_cache":false}'), +(10392, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.625+00', '{"cached":null,"ignore_cache":false}'), +(10393, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.641+00', '{"cached":null,"ignore_cache":false}'), +(10394, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.659+00', '{"cached":null,"ignore_cache":false}'), +(10395, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.693+00', '{"cached":null,"ignore_cache":false}'), +(10396, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:09:57.735+00', '{"cached":null,"ignore_cache":false}'), +(10397, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.891+00', '{"cached":null,"ignore_cache":false}'), +(10398, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.961+00', '{"cached":null,"ignore_cache":false}'), +(10399, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.971+00', '{"cached":null,"ignore_cache":false}'), +(10400, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.988+00', '{"cached":null,"ignore_cache":false}'), +(10401, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:12.998+00', '{"cached":null,"ignore_cache":false}'), +(10402, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:13.004+00', '{"cached":null,"ignore_cache":false}'), +(10403, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:13.041+00', '{"cached":null,"ignore_cache":false}'), +(10404, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:13.067+00', '{"cached":null,"ignore_cache":false}'), +(10405, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:13.084+00', '{"cached":null,"ignore_cache":false}'), +(10406, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.246+00', '{"cached":null,"ignore_cache":false}'), +(10407, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.343+00', '{"cached":null,"ignore_cache":false}'), +(10408, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.35+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10409, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.375+00', '{"cached":null,"ignore_cache":false}'), +(10410, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.377+00', '{"cached":null,"ignore_cache":false}'), +(10411, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.383+00', '{"cached":null,"ignore_cache":false}'), +(10412, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:24.404+00', '{"cached":null,"ignore_cache":false}'), +(10413, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.315+00', '{"cached":null,"ignore_cache":false}'), +(10414, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.348+00', '{"cached":null,"ignore_cache":false}'), +(10415, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.443+00', '{"cached":null,"ignore_cache":false}'), +(10416, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.467+00', '{"cached":null,"ignore_cache":false}'), +(10417, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.47+00', '{"cached":null,"ignore_cache":false}'), +(10418, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.482+00', '{"cached":null,"ignore_cache":false}'), +(10419, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:10:57.495+00', '{"cached":null,"ignore_cache":false}'), +(10420, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.172+00', '{"cached":null,"ignore_cache":false}'), +(10421, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.217+00', '{"cached":null,"ignore_cache":false}'), +(10422, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.234+00', '{"cached":null,"ignore_cache":false}'), +(10423, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.237+00', '{"cached":null,"ignore_cache":false}'), +(10424, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.249+00', '{"cached":null,"ignore_cache":false}'), +(10425, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.256+00', '{"cached":null,"ignore_cache":false}'), +(10426, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.295+00', '{"cached":null,"ignore_cache":false}'), +(10427, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.297+00', '{"cached":null,"ignore_cache":false}'), +(10428, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:09.32+00', '{"cached":null,"ignore_cache":false}'), +(10429, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.392+00', '{"cached":null,"ignore_cache":false}'), +(10430, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.398+00', '{"cached":null,"ignore_cache":false}'), +(10431, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:53.406+00', '{"cached":null,"ignore_cache":false}'), +(10432, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.099+00', '{"cached":null,"ignore_cache":false}'), +(10433, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.166+00', '{"cached":null,"ignore_cache":false}'), +(10434, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.202+00', '{"cached":null,"ignore_cache":false}'), +(10435, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.241+00', '{"cached":null,"ignore_cache":false}'), +(10436, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.321+00', '{"cached":null,"ignore_cache":false}'), +(10437, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.341+00', '{"cached":null,"ignore_cache":false}'), +(10438, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.353+00', '{"cached":null,"ignore_cache":false}'), +(10439, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.68+00', '{"cached":null,"ignore_cache":false}'), +(10440, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.702+00', '{"cached":null,"ignore_cache":false}'), +(10441, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:54.71+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10442, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.734+00', '{"cached":null,"ignore_cache":false}'), +(10443, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.746+00', '{"cached":null,"ignore_cache":false}'), +(10444, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.84+00', '{"cached":null,"ignore_cache":false}'), +(10445, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.864+00', '{"cached":null,"ignore_cache":false}'), +(10446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.907+00', '{"cached":null,"ignore_cache":false}'), +(10447, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.909+00', '{"cached":null,"ignore_cache":false}'), +(10448, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.932+00', '{"cached":null,"ignore_cache":false}'), +(10449, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.956+00', '{"cached":null,"ignore_cache":false}'), +(10450, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.966+00', '{"cached":null,"ignore_cache":false}'), +(10451, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:11:55.974+00', '{"cached":null,"ignore_cache":false}'), +(10452, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.103+00', '{"cached":null,"ignore_cache":false}'), +(10453, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.166+00', '{"cached":null,"ignore_cache":false}'), +(10454, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.178+00', '{"cached":null,"ignore_cache":false}'), +(10455, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.214+00', '{"cached":null,"ignore_cache":false}'), +(10456, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.223+00', '{"cached":null,"ignore_cache":false}'), +(10457, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.255+00', '{"cached":null,"ignore_cache":false}'), +(10458, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:25.266+00', '{"cached":null,"ignore_cache":false}'), +(10459, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.035+00', '{"cached":null,"ignore_cache":false}'), +(10460, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.086+00', '{"cached":null,"ignore_cache":false}'), +(10461, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.099+00', '{"cached":null,"ignore_cache":false}'), +(10462, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.133+00', '{"cached":null,"ignore_cache":false}'), +(10463, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.182+00', '{"cached":null,"ignore_cache":false}'), +(10464, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.201+00', '{"cached":null,"ignore_cache":false}'), +(10465, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.238+00', '{"cached":null,"ignore_cache":false}'), +(10466, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.248+00', '{"cached":null,"ignore_cache":false}'), +(10467, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.275+00', '{"cached":null,"ignore_cache":false}'), +(10468, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.285+00', '{"cached":null,"ignore_cache":false}'), +(10469, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.317+00', '{"cached":null,"ignore_cache":false}'), +(10470, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.339+00', '{"cached":null,"ignore_cache":false}'), +(10471, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.355+00', '{"cached":null,"ignore_cache":false}'), +(10472, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.356+00', '{"cached":null,"ignore_cache":false}'), +(10473, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.377+00', '{"cached":null,"ignore_cache":false}'), +(10474, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:12:56.4+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10475, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:40.024+00', '{"cached":null,"ignore_cache":false}'), +(10476, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:40.03+00', '{"cached":null,"ignore_cache":false}'), +(10477, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:40.061+00', '{"cached":null,"ignore_cache":false}'), +(10478, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.396+00', '{"cached":null,"ignore_cache":false}'), +(10479, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.473+00', '{"cached":null,"ignore_cache":false}'), +(10480, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.483+00', '{"cached":null,"ignore_cache":false}'), +(10481, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.508+00', '{"cached":null,"ignore_cache":false}'), +(10482, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.518+00', '{"cached":null,"ignore_cache":false}'), +(10483, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.526+00', '{"cached":null,"ignore_cache":false}'), +(10484, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:41.53+00', '{"cached":null,"ignore_cache":false}'), +(10485, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.607+00', '{"cached":null,"ignore_cache":false}'), +(10486, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.62+00', '{"cached":null,"ignore_cache":false}'), +(10487, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.644+00', '{"cached":null,"ignore_cache":false}'), +(10488, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.647+00', '{"cached":null,"ignore_cache":false}'), +(10489, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.656+00', '{"cached":null,"ignore_cache":false}'), +(10490, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:42.669+00', '{"cached":null,"ignore_cache":false}'), +(10491, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.119+00', '{"cached":null,"ignore_cache":false}'), +(10492, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.231+00', '{"cached":null,"ignore_cache":false}'), +(10493, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.235+00', '{"cached":null,"ignore_cache":false}'), +(10494, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.256+00', '{"cached":null,"ignore_cache":false}'), +(10495, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.291+00', '{"cached":null,"ignore_cache":false}'), +(10496, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.296+00', '{"cached":null,"ignore_cache":false}'), +(10497, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:13:54.297+00', '{"cached":null,"ignore_cache":false}'), +(10498, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.072+00', '{"cached":null,"ignore_cache":false}'), +(10499, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.085+00', '{"cached":null,"ignore_cache":false}'), +(10500, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.095+00', '{"cached":null,"ignore_cache":false}'), +(10501, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.305+00', '{"cached":null,"ignore_cache":false}'), +(10502, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.322+00', '{"cached":null,"ignore_cache":false}'), +(10503, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.383+00', '{"cached":null,"ignore_cache":false}'), +(10504, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.427+00', '{"cached":null,"ignore_cache":false}'), +(10505, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.446+00', '{"cached":null,"ignore_cache":false}'), +(10506, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:08.471+00', '{"cached":null,"ignore_cache":false}'), +(10507, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:38.971+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10508, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:39.044+00', '{"cached":null,"ignore_cache":false}'), +(10509, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:39.055+00', '{"cached":null,"ignore_cache":false}'), +(10510, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:39.058+00', '{"cached":null,"ignore_cache":false}'), +(10511, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:39.064+00', '{"cached":null,"ignore_cache":false}'), +(10512, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:39.069+00', '{"cached":null,"ignore_cache":false}'), +(10513, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:39.088+00', '{"cached":null,"ignore_cache":false}'), +(10514, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:52.938+00', '{"cached":null,"ignore_cache":false}'), +(10515, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.056+00', '{"cached":null,"ignore_cache":false}'), +(10516, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.097+00', '{"cached":null,"ignore_cache":false}'), +(10517, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.141+00', '{"cached":null,"ignore_cache":false}'), +(10518, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.142+00', '{"cached":null,"ignore_cache":false}'), +(10519, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.321+00', '{"cached":null,"ignore_cache":false}'), +(10520, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.356+00', '{"cached":null,"ignore_cache":false}'), +(10521, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.403+00', '{"cached":null,"ignore_cache":false}'), +(10522, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.435+00', '{"cached":null,"ignore_cache":false}'), +(10523, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.764+00', '{"cached":null,"ignore_cache":false}'), +(10524, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.838+00', '{"cached":null,"ignore_cache":false}'), +(10525, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.908+00', '{"cached":null,"ignore_cache":false}'), +(10526, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.926+00', '{"cached":null,"ignore_cache":false}'), +(10527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.974+00', '{"cached":null,"ignore_cache":false}'), +(10528, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:53.978+00', '{"cached":null,"ignore_cache":false}'), +(10529, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:14:54.015+00', '{"cached":null,"ignore_cache":false}'), +(10530, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.175+00', '{"cached":null,"ignore_cache":false}'), +(10531, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.198+00', '{"cached":null,"ignore_cache":false}'), +(10532, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.295+00', '{"cached":null,"ignore_cache":false}'), +(10533, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.308+00', '{"cached":null,"ignore_cache":false}'), +(10534, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.312+00', '{"cached":null,"ignore_cache":false}'), +(10535, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.328+00', '{"cached":null,"ignore_cache":false}'), +(10536, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:15:24.354+00', '{"cached":null,"ignore_cache":false}'), +(10537, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:04.043+00', '{"cached":null,"ignore_cache":false}'), +(10538, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:04.062+00', '{"cached":null,"ignore_cache":false}'), +(10539, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:04.08+00', '{"cached":null,"ignore_cache":false}'), +(10540, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:04.092+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10541, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:04.121+00', '{"cached":null,"ignore_cache":false}'), +(10542, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:04.153+00', '{"cached":null,"ignore_cache":false}'), +(10543, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:04.159+00', '{"cached":null,"ignore_cache":false}'), +(10544, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.908+00', '{"cached":null,"ignore_cache":false}'), +(10545, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.909+00', '{"cached":null,"ignore_cache":false}'), +(10546, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.922+00', '{"cached":null,"ignore_cache":false}'), +(10547, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.944+00', '{"cached":null,"ignore_cache":false}'), +(10548, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.984+00', '{"cached":null,"ignore_cache":false}'), +(10549, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.995+00', '{"cached":null,"ignore_cache":false}'), +(10550, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:23.999+00', '{"cached":null,"ignore_cache":false}'), +(10551, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.752+00', '{"cached":null,"ignore_cache":false}'), +(10552, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.752+00', '{"cached":null,"ignore_cache":false}'), +(10553, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.831+00', '{"cached":null,"ignore_cache":false}'), +(10554, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.88+00', '{"cached":null,"ignore_cache":false}'), +(10555, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.891+00', '{"cached":null,"ignore_cache":false}'), +(10556, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.9+00', '{"cached":null,"ignore_cache":false}'), +(10557, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.927+00', '{"cached":null,"ignore_cache":false}'), +(10558, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:31.947+00', '{"cached":null,"ignore_cache":false}'), +(10559, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:32.04+00', '{"cached":null,"ignore_cache":false}'), +(10560, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.433+00', '{"cached":null,"ignore_cache":false}'), +(10561, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.474+00', '{"cached":null,"ignore_cache":false}'), +(10562, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.516+00', '{"cached":null,"ignore_cache":false}'), +(10563, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.551+00', '{"cached":null,"ignore_cache":false}'), +(10564, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.567+00', '{"cached":null,"ignore_cache":false}'), +(10565, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.587+00', '{"cached":null,"ignore_cache":false}'), +(10566, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:16:54.613+00', '{"cached":null,"ignore_cache":false}'), +(10567, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.461+00', '{"cached":null,"ignore_cache":false}'), +(10568, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.462+00', '{"cached":null,"ignore_cache":false}'), +(10569, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.512+00', '{"cached":null,"ignore_cache":false}'), +(10570, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.519+00', '{"cached":null,"ignore_cache":false}'), +(10571, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.539+00', '{"cached":null,"ignore_cache":false}'), +(10572, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.592+00', '{"cached":null,"ignore_cache":false}'), +(10573, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:25.84+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10574, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.007+00', '{"cached":null,"ignore_cache":false}'), +(10575, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.039+00', '{"cached":null,"ignore_cache":false}'), +(10576, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.043+00', '{"cached":null,"ignore_cache":false}'), +(10577, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.046+00', '{"cached":null,"ignore_cache":false}'), +(10578, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.05+00', '{"cached":null,"ignore_cache":false}'), +(10579, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.073+00', '{"cached":null,"ignore_cache":false}'), +(10580, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.153+00', '{"cached":null,"ignore_cache":false}'), +(10581, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.168+00', '{"cached":null,"ignore_cache":false}'), +(10582, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:26.179+00', '{"cached":null,"ignore_cache":false}'), +(10583, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.548+00', '{"cached":null,"ignore_cache":false}'), +(10584, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.562+00', '{"cached":null,"ignore_cache":false}'), +(10585, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.607+00', '{"cached":null,"ignore_cache":false}'), +(10586, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.634+00', '{"cached":null,"ignore_cache":false}'), +(10587, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.637+00', '{"cached":null,"ignore_cache":false}'), +(10588, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.639+00', '{"cached":null,"ignore_cache":false}'), +(10589, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:17:55.644+00', '{"cached":null,"ignore_cache":false}'), +(10590, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.493+00', '{"cached":null,"ignore_cache":false}'), +(10591, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.538+00', '{"cached":null,"ignore_cache":false}'), +(10592, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.604+00', '{"cached":null,"ignore_cache":false}'), +(10593, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.618+00', '{"cached":null,"ignore_cache":false}'), +(10594, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.636+00', '{"cached":null,"ignore_cache":false}'), +(10595, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.685+00', '{"cached":null,"ignore_cache":false}'), +(10596, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.687+00', '{"cached":null,"ignore_cache":false}'), +(10597, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.705+00', '{"cached":null,"ignore_cache":false}'), +(10598, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:02.743+00', '{"cached":null,"ignore_cache":false}'), +(10599, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.666+00', '{"cached":null,"ignore_cache":false}'), +(10600, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.696+00', '{"cached":null,"ignore_cache":false}'), +(10601, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.729+00', '{"cached":null,"ignore_cache":false}'), +(10602, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.739+00', '{"cached":null,"ignore_cache":false}'), +(10603, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.756+00', '{"cached":null,"ignore_cache":false}'), +(10604, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.756+00', '{"cached":null,"ignore_cache":false}'), +(10605, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:23.764+00', '{"cached":null,"ignore_cache":false}'), +(10606, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.524+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10607, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.64+00', '{"cached":null,"ignore_cache":false}'), +(10608, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.643+00', '{"cached":null,"ignore_cache":false}'), +(10609, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.666+00', '{"cached":null,"ignore_cache":false}'), +(10610, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.667+00', '{"cached":null,"ignore_cache":false}'), +(10611, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.695+00', '{"cached":null,"ignore_cache":false}'), +(10612, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.698+00', '{"cached":null,"ignore_cache":false}'), +(10613, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.703+00', '{"cached":null,"ignore_cache":false}'), +(10614, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.71+00', '{"cached":null,"ignore_cache":false}'), +(10615, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.927+00', '{"cached":null,"ignore_cache":false}'), +(10616, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:53.987+00', '{"cached":null,"ignore_cache":false}'), +(10617, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:54.002+00', '{"cached":null,"ignore_cache":false}'), +(10618, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:54.061+00', '{"cached":null,"ignore_cache":false}'), +(10619, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:54.069+00', '{"cached":null,"ignore_cache":false}'), +(10620, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:54.097+00', '{"cached":null,"ignore_cache":false}'), +(10621, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:18:54.111+00', '{"cached":null,"ignore_cache":false}'), +(10622, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.148+00', '{"cached":null,"ignore_cache":false}'), +(10623, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.192+00', '{"cached":null,"ignore_cache":false}'), +(10624, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.283+00', '{"cached":null,"ignore_cache":false}'), +(10625, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.32+00', '{"cached":null,"ignore_cache":false}'), +(10626, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.333+00', '{"cached":null,"ignore_cache":false}'), +(10627, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.345+00', '{"cached":null,"ignore_cache":false}'), +(10628, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.514+00', '{"cached":null,"ignore_cache":false}'), +(10629, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.619+00', '{"cached":null,"ignore_cache":false}'), +(10630, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.805+00', '{"cached":null,"ignore_cache":false}'), +(10631, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.941+00', '{"cached":null,"ignore_cache":false}'), +(10632, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:37.988+00', '{"cached":null,"ignore_cache":false}'), +(10633, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:38.038+00', '{"cached":null,"ignore_cache":false}'), +(10634, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:38.051+00', '{"cached":null,"ignore_cache":false}'), +(10635, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:38.113+00', '{"cached":null,"ignore_cache":false}'), +(10636, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:38.137+00', '{"cached":null,"ignore_cache":false}'), +(10637, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:38.185+00', '{"cached":null,"ignore_cache":false}'), +(10638, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.702+00', '{"cached":null,"ignore_cache":false}'), +(10639, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.73+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10640, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.757+00', '{"cached":null,"ignore_cache":false}'), +(10641, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.765+00', '{"cached":null,"ignore_cache":false}'), +(10642, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.776+00', '{"cached":null,"ignore_cache":false}'), +(10643, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.781+00', '{"cached":null,"ignore_cache":false}'), +(10644, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.788+00', '{"cached":null,"ignore_cache":false}'), +(10645, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.801+00', '{"cached":null,"ignore_cache":false}'), +(10646, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:45.804+00', '{"cached":null,"ignore_cache":false}'), +(10647, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.889+00', '{"cached":null,"ignore_cache":false}'), +(10648, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.965+00', '{"cached":null,"ignore_cache":false}'), +(10649, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:53.967+00', '{"cached":null,"ignore_cache":false}'), +(10650, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:54.044+00', '{"cached":null,"ignore_cache":false}'), +(10651, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:54.068+00', '{"cached":null,"ignore_cache":false}'), +(10652, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:54.07+00', '{"cached":null,"ignore_cache":false}'), +(10653, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:19:54.091+00', '{"cached":null,"ignore_cache":false}'), +(10654, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.751+00', '{"cached":null,"ignore_cache":false}'), +(10655, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.799+00', '{"cached":null,"ignore_cache":false}'), +(10656, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.811+00', '{"cached":null,"ignore_cache":false}'), +(10657, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.833+00', '{"cached":null,"ignore_cache":false}'), +(10658, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.884+00', '{"cached":null,"ignore_cache":false}'), +(10659, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.917+00', '{"cached":null,"ignore_cache":false}'), +(10660, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.934+00', '{"cached":null,"ignore_cache":false}'), +(10661, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.945+00', '{"cached":null,"ignore_cache":false}'), +(10662, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:16.958+00', '{"cached":null,"ignore_cache":false}'), +(10663, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.887+00', '{"cached":null,"ignore_cache":false}'), +(10664, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.899+00', '{"cached":null,"ignore_cache":false}'), +(10665, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:23.95+00', '{"cached":null,"ignore_cache":false}'), +(10666, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:24.012+00', '{"cached":null,"ignore_cache":false}'), +(10667, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:24.014+00', '{"cached":null,"ignore_cache":false}'), +(10668, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:24.026+00', '{"cached":null,"ignore_cache":false}'), +(10669, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:24.037+00', '{"cached":null,"ignore_cache":false}'), +(10670, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.26+00', '{"cached":null,"ignore_cache":false}'), +(10671, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.328+00', '{"cached":null,"ignore_cache":false}'), +(10672, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.362+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10673, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:55.365+00', '{"cached":null,"ignore_cache":false}'), +(10674, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.67+00', '{"cached":null,"ignore_cache":false}'), +(10675, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.684+00', '{"cached":null,"ignore_cache":false}'), +(10676, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.703+00', '{"cached":null,"ignore_cache":false}'), +(10677, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.744+00', '{"cached":null,"ignore_cache":false}'), +(10678, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.8+00', '{"cached":null,"ignore_cache":false}'), +(10679, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.813+00', '{"cached":null,"ignore_cache":false}'), +(10680, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.88+00', '{"cached":null,"ignore_cache":false}'), +(10681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.885+00', '{"cached":null,"ignore_cache":false}'), +(10682, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.886+00', '{"cached":null,"ignore_cache":false}'), +(10683, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.921+00', '{"cached":null,"ignore_cache":false}'), +(10684, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.934+00', '{"cached":null,"ignore_cache":false}'), +(10685, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:20:58.939+00', '{"cached":null,"ignore_cache":false}'), +(10686, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.291+00', '{"cached":null,"ignore_cache":false}'), +(10687, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.35+00', '{"cached":null,"ignore_cache":false}'), +(10688, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.372+00', '{"cached":null,"ignore_cache":false}'), +(10689, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.376+00', '{"cached":null,"ignore_cache":false}'), +(10690, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.382+00', '{"cached":null,"ignore_cache":false}'), +(10691, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.384+00', '{"cached":null,"ignore_cache":false}'), +(10692, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.396+00', '{"cached":null,"ignore_cache":false}'), +(10693, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.409+00', '{"cached":null,"ignore_cache":false}'), +(10694, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.411+00', '{"cached":null,"ignore_cache":false}'), +(10695, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.445+00', '{"cached":null,"ignore_cache":false}'), +(10696, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.463+00', '{"cached":null,"ignore_cache":false}'), +(10697, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.474+00', '{"cached":null,"ignore_cache":false}'), +(10698, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.48+00', '{"cached":null,"ignore_cache":false}'), +(10699, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.481+00', '{"cached":null,"ignore_cache":false}'), +(10700, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.482+00', '{"cached":null,"ignore_cache":false}'), +(10701, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:25.494+00', '{"cached":null,"ignore_cache":false}'), +(10702, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.712+00', '{"cached":null,"ignore_cache":false}'), +(10703, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.716+00', '{"cached":null,"ignore_cache":false}'), +(10704, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.728+00', '{"cached":null,"ignore_cache":false}'), +(10705, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.739+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10706, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.75+00', '{"cached":null,"ignore_cache":false}'), +(10707, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.751+00', '{"cached":null,"ignore_cache":false}'), +(10708, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.76+00', '{"cached":null,"ignore_cache":false}'), +(10709, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.772+00', '{"cached":null,"ignore_cache":false}'), +(10710, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:45.773+00', '{"cached":null,"ignore_cache":false}'), +(10711, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.66+00', '{"cached":null,"ignore_cache":false}'), +(10712, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.777+00', '{"cached":null,"ignore_cache":false}'), +(10713, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.832+00', '{"cached":null,"ignore_cache":false}'), +(10714, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.846+00', '{"cached":null,"ignore_cache":false}'), +(10715, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.857+00', '{"cached":null,"ignore_cache":false}'), +(10716, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.858+00', '{"cached":null,"ignore_cache":false}'), +(10717, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:21:53.867+00', '{"cached":null,"ignore_cache":false}'), +(10718, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.731+00', '{"cached":null,"ignore_cache":false}'), +(10719, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.738+00', '{"cached":null,"ignore_cache":false}'), +(10720, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.88+00', '{"cached":null,"ignore_cache":false}'), +(10721, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.903+00', '{"cached":null,"ignore_cache":false}'), +(10722, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.906+00', '{"cached":null,"ignore_cache":false}'), +(10723, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.928+00', '{"cached":null,"ignore_cache":false}'), +(10724, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.958+00', '{"cached":null,"ignore_cache":false}'), +(10725, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:16.986+00', '{"cached":null,"ignore_cache":false}'), +(10726, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:17.068+00', '{"cached":null,"ignore_cache":false}'), +(10727, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.144+00', '{"cached":null,"ignore_cache":false}'), +(10728, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.177+00', '{"cached":null,"ignore_cache":false}'), +(10729, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.232+00', '{"cached":null,"ignore_cache":false}'), +(10730, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.237+00', '{"cached":null,"ignore_cache":false}'), +(10731, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.247+00', '{"cached":null,"ignore_cache":false}'), +(10732, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.25+00', '{"cached":null,"ignore_cache":false}'), +(10733, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:25.264+00', '{"cached":null,"ignore_cache":false}'), +(10734, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.783+00', '{"cached":null,"ignore_cache":false}'), +(10735, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.785+00', '{"cached":null,"ignore_cache":false}'), +(10736, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.787+00', '{"cached":null,"ignore_cache":false}'), +(10737, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.832+00', '{"cached":null,"ignore_cache":false}'), +(10738, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.849+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10739, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.855+00', '{"cached":null,"ignore_cache":false}'), +(10740, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.91+00', '{"cached":null,"ignore_cache":false}'), +(10741, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.919+00', '{"cached":null,"ignore_cache":false}'), +(10742, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:46.927+00', '{"cached":null,"ignore_cache":false}'), +(10743, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.665+00', '{"cached":null,"ignore_cache":false}'), +(10744, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.679+00', '{"cached":null,"ignore_cache":false}'), +(10745, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.699+00', '{"cached":null,"ignore_cache":false}'), +(10746, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.717+00', '{"cached":null,"ignore_cache":false}'), +(10747, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.731+00', '{"cached":null,"ignore_cache":false}'), +(10748, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.75+00', '{"cached":null,"ignore_cache":false}'), +(10749, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:22:59.762+00', '{"cached":null,"ignore_cache":false}'), +(10750, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.842+00', '{"cached":null,"ignore_cache":false}'), +(10751, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.879+00', '{"cached":null,"ignore_cache":false}'), +(10752, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.882+00', '{"cached":null,"ignore_cache":false}'), +(10753, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.89+00', '{"cached":null,"ignore_cache":false}'), +(10754, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.917+00', '{"cached":null,"ignore_cache":false}'), +(10755, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.926+00', '{"cached":null,"ignore_cache":false}'), +(10756, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.931+00', '{"cached":null,"ignore_cache":false}'), +(10757, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.95+00', '{"cached":null,"ignore_cache":false}'), +(10758, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:16.964+00', '{"cached":null,"ignore_cache":false}'), +(10759, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.159+00', '{"cached":null,"ignore_cache":false}'), +(10760, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.188+00', '{"cached":null,"ignore_cache":false}'), +(10761, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.205+00', '{"cached":null,"ignore_cache":false}'), +(10762, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.266+00', '{"cached":null,"ignore_cache":false}'), +(10763, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.351+00', '{"cached":null,"ignore_cache":false}'), +(10764, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.357+00', '{"cached":null,"ignore_cache":false}'), +(10765, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:24.359+00', '{"cached":null,"ignore_cache":false}'), +(10766, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.976+00', '{"cached":null,"ignore_cache":false}'), +(10767, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:46.997+00', '{"cached":null,"ignore_cache":false}'), +(10768, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.037+00', '{"cached":null,"ignore_cache":false}'), +(10769, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.055+00', '{"cached":null,"ignore_cache":false}'), +(10770, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.069+00', '{"cached":null,"ignore_cache":false}'), +(10771, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.075+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10772, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.08+00', '{"cached":null,"ignore_cache":false}'), +(10773, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.093+00', '{"cached":null,"ignore_cache":false}'), +(10774, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:47.096+00', '{"cached":null,"ignore_cache":false}'), +(10775, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.043+00', '{"cached":null,"ignore_cache":false}'), +(10776, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.112+00', '{"cached":null,"ignore_cache":false}'), +(10777, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.122+00', '{"cached":null,"ignore_cache":false}'), +(10778, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.221+00', '{"cached":null,"ignore_cache":false}'), +(10779, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.237+00', '{"cached":null,"ignore_cache":false}'), +(10780, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.293+00', '{"cached":null,"ignore_cache":false}'), +(10781, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:23:54.356+00', '{"cached":null,"ignore_cache":false}'), +(10782, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.294+00', '{"cached":null,"ignore_cache":false}'), +(10783, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.424+00', '{"cached":null,"ignore_cache":false}'), +(10784, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.438+00', '{"cached":null,"ignore_cache":false}'), +(10785, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.449+00', '{"cached":null,"ignore_cache":false}'), +(10786, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.463+00', '{"cached":null,"ignore_cache":false}'), +(10787, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.469+00', '{"cached":null,"ignore_cache":false}'), +(10788, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.494+00', '{"cached":null,"ignore_cache":false}'), +(10789, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.495+00', '{"cached":null,"ignore_cache":false}'), +(10790, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:16.504+00', '{"cached":null,"ignore_cache":false}'), +(10791, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.868+00', '{"cached":null,"ignore_cache":false}'), +(10792, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.924+00', '{"cached":null,"ignore_cache":false}'), +(10793, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.967+00', '{"cached":null,"ignore_cache":false}'), +(10794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.968+00', '{"cached":null,"ignore_cache":false}'), +(10795, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.968+00', '{"cached":null,"ignore_cache":false}'), +(10796, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.97+00', '{"cached":null,"ignore_cache":false}'), +(10797, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:24.985+00', '{"cached":null,"ignore_cache":false}'), +(10798, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.89+00', '{"cached":null,"ignore_cache":false}'), +(10799, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.947+00', '{"cached":null,"ignore_cache":false}'), +(10800, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:45.968+00', '{"cached":null,"ignore_cache":false}'), +(10801, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:46.075+00', '{"cached":null,"ignore_cache":false}'), +(10802, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:46.18+00', '{"cached":null,"ignore_cache":false}'), +(10803, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:46.186+00', '{"cached":null,"ignore_cache":false}'), +(10804, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:46.192+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10805, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:46.2+00', '{"cached":null,"ignore_cache":false}'), +(10806, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:46.226+00', '{"cached":null,"ignore_cache":false}'), +(10807, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.483+00', '{"cached":null,"ignore_cache":false}'), +(10808, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.566+00', '{"cached":null,"ignore_cache":false}'), +(10809, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.592+00', '{"cached":null,"ignore_cache":false}'), +(10810, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.617+00', '{"cached":null,"ignore_cache":false}'), +(10811, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.624+00', '{"cached":null,"ignore_cache":false}'), +(10812, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.684+00', '{"cached":null,"ignore_cache":false}'), +(10813, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:24:53.704+00', '{"cached":null,"ignore_cache":false}'), +(10814, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.598+00', '{"cached":null,"ignore_cache":false}'), +(10815, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.724+00', '{"cached":null,"ignore_cache":false}'), +(10816, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.742+00', '{"cached":null,"ignore_cache":false}'), +(10817, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.778+00', '{"cached":null,"ignore_cache":false}'), +(10818, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.819+00', '{"cached":null,"ignore_cache":false}'), +(10819, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.857+00', '{"cached":null,"ignore_cache":false}'), +(10820, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.916+00', '{"cached":null,"ignore_cache":false}'), +(10821, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.929+00', '{"cached":null,"ignore_cache":false}'), +(10822, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:16.966+00', '{"cached":null,"ignore_cache":false}'), +(10823, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.015+00', '{"cached":null,"ignore_cache":false}'), +(10824, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.039+00', '{"cached":null,"ignore_cache":false}'), +(10825, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.043+00', '{"cached":null,"ignore_cache":false}'), +(10826, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.059+00', '{"cached":null,"ignore_cache":false}'), +(10827, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.068+00', '{"cached":null,"ignore_cache":false}'), +(10828, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.076+00', '{"cached":null,"ignore_cache":false}'), +(10829, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:24.114+00', '{"cached":null,"ignore_cache":false}'), +(10830, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.278+00', '{"cached":null,"ignore_cache":false}'), +(10831, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.291+00', '{"cached":null,"ignore_cache":false}'), +(10832, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.293+00', '{"cached":null,"ignore_cache":false}'), +(10833, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.803+00', '{"cached":null,"ignore_cache":false}'), +(10834, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.856+00', '{"cached":null,"ignore_cache":false}'), +(10835, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.89+00', '{"cached":null,"ignore_cache":false}'), +(10836, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.898+00', '{"cached":null,"ignore_cache":false}'), +(10837, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.927+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10838, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:52.992+00', '{"cached":null,"ignore_cache":false}'), +(10839, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.367+00', '{"cached":null,"ignore_cache":false}'), +(10840, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.429+00', '{"cached":null,"ignore_cache":false}'), +(10841, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.48+00', '{"cached":null,"ignore_cache":false}'), +(10842, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.481+00', '{"cached":null,"ignore_cache":false}'), +(10843, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.481+00', '{"cached":null,"ignore_cache":false}'), +(10844, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.53+00', '{"cached":null,"ignore_cache":false}'), +(10845, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:25:55.554+00', '{"cached":null,"ignore_cache":false}'), +(10846, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:15.874+00', '{"cached":null,"ignore_cache":false}'), +(10847, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.086+00', '{"cached":null,"ignore_cache":false}'), +(10848, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.1+00', '{"cached":null,"ignore_cache":false}'), +(10849, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.115+00', '{"cached":null,"ignore_cache":false}'), +(10850, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.119+00', '{"cached":null,"ignore_cache":false}'), +(10851, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.122+00', '{"cached":null,"ignore_cache":false}'), +(10852, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.174+00', '{"cached":null,"ignore_cache":false}'), +(10853, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.198+00', '{"cached":null,"ignore_cache":false}'), +(10854, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:16.286+00', '{"cached":null,"ignore_cache":false}'), +(10855, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.647+00', '{"cached":null,"ignore_cache":false}'), +(10856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.706+00', '{"cached":null,"ignore_cache":false}'), +(10857, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.723+00', '{"cached":null,"ignore_cache":false}'), +(10858, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.732+00', '{"cached":null,"ignore_cache":false}'), +(10859, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.759+00', '{"cached":null,"ignore_cache":false}'), +(10860, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.779+00', '{"cached":null,"ignore_cache":false}'), +(10861, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:23.794+00', '{"cached":null,"ignore_cache":false}'), +(10862, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.781+00', '{"cached":null,"ignore_cache":false}'), +(10863, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.861+00', '{"cached":null,"ignore_cache":false}'), +(10864, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.912+00', '{"cached":null,"ignore_cache":false}'), +(10865, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.943+00', '{"cached":null,"ignore_cache":false}'), +(10866, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.966+00', '{"cached":null,"ignore_cache":false}'), +(10867, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.98+00', '{"cached":null,"ignore_cache":false}'), +(10868, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.996+00', '{"cached":null,"ignore_cache":false}'), +(10869, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:45.997+00', '{"cached":null,"ignore_cache":false}'), +(10870, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:46.039+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10871, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.568+00', '{"cached":null,"ignore_cache":false}'), +(10872, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.601+00', '{"cached":null,"ignore_cache":false}'), +(10873, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.627+00', '{"cached":null,"ignore_cache":false}'), +(10874, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.632+00', '{"cached":null,"ignore_cache":false}'), +(10875, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.65+00', '{"cached":null,"ignore_cache":false}'), +(10876, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.657+00', '{"cached":null,"ignore_cache":false}'), +(10877, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.66+00', '{"cached":null,"ignore_cache":false}'), +(10878, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:53.935+00', '{"cached":null,"ignore_cache":null}'), +(10879, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.47+00', '{"cached":null,"ignore_cache":false}'), +(10880, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.668+00', '{"cached":null,"ignore_cache":false}'), +(10881, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.727+00', '{"cached":null,"ignore_cache":false}'), +(10882, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.761+00', '{"cached":null,"ignore_cache":false}'), +(10883, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.782+00', '{"cached":null,"ignore_cache":false}'), +(10884, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.826+00', '{"cached":null,"ignore_cache":false}'), +(10885, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.877+00', '{"cached":null,"ignore_cache":false}'), +(10886, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.883+00', '{"cached":null,"ignore_cache":false}'), +(10887, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:26:54.956+00', '{"cached":null,"ignore_cache":false}'), +(10888, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.537+00', '{"cached":null,"ignore_cache":false}'), +(10889, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.62+00', '{"cached":null,"ignore_cache":false}'), +(10890, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.638+00', '{"cached":null,"ignore_cache":false}'), +(10891, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.642+00', '{"cached":null,"ignore_cache":false}'), +(10892, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.649+00', '{"cached":null,"ignore_cache":false}'), +(10893, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.661+00', '{"cached":null,"ignore_cache":false}'), +(10894, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.668+00', '{"cached":null,"ignore_cache":false}'), +(10895, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.679+00', '{"cached":null,"ignore_cache":false}'), +(10896, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:15.684+00', '{"cached":null,"ignore_cache":false}'), +(10897, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.572+00', '{"cached":null,"ignore_cache":false}'), +(10898, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.583+00', '{"cached":null,"ignore_cache":false}'), +(10899, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.594+00', '{"cached":null,"ignore_cache":false}'), +(10900, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.603+00', '{"cached":null,"ignore_cache":false}'), +(10901, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.607+00', '{"cached":null,"ignore_cache":false}'), +(10902, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.618+00', '{"cached":null,"ignore_cache":false}'), +(10903, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:23.631+00', '{"cached":null,"ignore_cache":false}'), +(10904, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.985+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10905, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:45.991+00', '{"cached":null,"ignore_cache":false}'), +(10906, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.043+00', '{"cached":null,"ignore_cache":false}'), +(10907, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.207+00', '{"cached":null,"ignore_cache":false}'), +(10908, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.231+00', '{"cached":null,"ignore_cache":false}'), +(10909, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.269+00', '{"cached":null,"ignore_cache":false}'), +(10910, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.275+00', '{"cached":null,"ignore_cache":false}'), +(10911, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.307+00', '{"cached":null,"ignore_cache":false}'), +(10912, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:46.34+00', '{"cached":null,"ignore_cache":false}'), +(10913, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:47.619+00', '{"cached":null,"ignore_cache":false}'), +(10914, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.29+00', '{"cached":null,"ignore_cache":false}'), +(10915, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.454+00', '{"cached":null,"ignore_cache":false}'), +(10916, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.668+00', '{"cached":null,"ignore_cache":false}'), +(10917, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.676+00', '{"cached":null,"ignore_cache":false}'), +(10918, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:48.921+00', '{"cached":null,"ignore_cache":false}'), +(10919, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.594+00', '{"cached":null,"ignore_cache":false}'), +(10920, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.643+00', '{"cached":null,"ignore_cache":false}'), +(10921, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.828+00', '{"cached":null,"ignore_cache":false}'), +(10922, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:49.947+00', '{"cached":null,"ignore_cache":false}'), +(10923, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.05+00', '{"cached":null,"ignore_cache":false}'), +(10924, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.341+00', '{"cached":null,"ignore_cache":false}'), +(10925, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.405+00', '{"cached":null,"ignore_cache":false}'), +(10926, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.507+00', '{"cached":null,"ignore_cache":false}'), +(10927, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.611+00', '{"cached":null,"ignore_cache":false}'), +(10928, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.79+00', '{"cached":null,"ignore_cache":false}'), +(10929, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.868+00', '{"cached":null,"ignore_cache":false}'), +(10930, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.905+00', '{"cached":null,"ignore_cache":false}'), +(10931, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:50.994+00', '{"cached":null,"ignore_cache":false}'), +(10932, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.015+00', '{"cached":null,"ignore_cache":false}'), +(10933, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.124+00', '{"cached":null,"ignore_cache":false}'), +(10934, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.454+00', '{"cached":null,"ignore_cache":false}'), +(10935, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.967+00', '{"cached":null,"ignore_cache":false}'), +(10936, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:51.994+00', '{"cached":null,"ignore_cache":false}'), +(10937, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.105+00', '{"cached":null,"ignore_cache":false}'), +(10938, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.121+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10939, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.176+00', '{"cached":null,"ignore_cache":false}'), +(10940, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.2+00', '{"cached":null,"ignore_cache":false}'), +(10941, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.225+00', '{"cached":null,"ignore_cache":false}'), +(10942, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.501+00', '{"cached":null,"ignore_cache":false}'), +(10943, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.569+00', '{"cached":null,"ignore_cache":false}'), +(10944, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.595+00', '{"cached":null,"ignore_cache":false}'), +(10945, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.733+00', '{"cached":null,"ignore_cache":false}'), +(10946, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.764+00', '{"cached":null,"ignore_cache":false}'), +(10947, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.819+00', '{"cached":null,"ignore_cache":false}'), +(10948, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:52.92+00', '{"cached":null,"ignore_cache":false}'), +(10949, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.044+00', '{"cached":null,"ignore_cache":false}'), +(10950, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.366+00', '{"cached":null,"ignore_cache":false}'), +(10951, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.417+00', '{"cached":null,"ignore_cache":false}'), +(10952, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.488+00', '{"cached":null,"ignore_cache":false}'), +(10953, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.524+00', '{"cached":null,"ignore_cache":false}'), +(10954, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.576+00', '{"cached":null,"ignore_cache":false}'), +(10955, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.625+00', '{"cached":null,"ignore_cache":false}'), +(10956, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:53.868+00', '{"cached":null,"ignore_cache":false}'), +(10957, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.07+00', '{"cached":null,"ignore_cache":false}'), +(10958, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.335+00', '{"cached":null,"ignore_cache":false}'), +(10959, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.412+00', '{"cached":null,"ignore_cache":false}'), +(10960, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.443+00', '{"cached":null,"ignore_cache":false}'), +(10961, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.773+00', '{"cached":null,"ignore_cache":false}'), +(10962, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.814+00', '{"cached":null,"ignore_cache":false}'), +(10963, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:54.938+00', '{"cached":null,"ignore_cache":false}'), +(10964, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.055+00', '{"cached":null,"ignore_cache":false}'), +(10965, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.064+00', '{"cached":null,"ignore_cache":false}'), +(10966, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.103+00', '{"cached":null,"ignore_cache":false}'), +(10967, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.14+00', '{"cached":null,"ignore_cache":false}'), +(10968, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.17+00', '{"cached":null,"ignore_cache":false}'), +(10969, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.209+00', '{"cached":null,"ignore_cache":false}'), +(10970, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.306+00', '{"cached":null,"ignore_cache":false}'), +(10971, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.323+00', '{"cached":null,"ignore_cache":false}'), +(10972, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.332+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(10973, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.376+00', '{"cached":null,"ignore_cache":false}'), +(10974, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.696+00', '{"cached":null,"ignore_cache":false}'), +(10975, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.702+00', '{"cached":null,"ignore_cache":false}'), +(10976, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:55.782+00', '{"cached":null,"ignore_cache":false}'), +(10977, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:27:56.802+00', '{"cached":null,"ignore_cache":false}'), +(10978, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:15.952+00', '{"cached":null,"ignore_cache":false}'), +(10979, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.018+00', '{"cached":null,"ignore_cache":false}'), +(10980, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.04+00', '{"cached":null,"ignore_cache":false}'), +(10981, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.084+00', '{"cached":null,"ignore_cache":false}'), +(10982, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.152+00', '{"cached":null,"ignore_cache":false}'), +(10983, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.157+00', '{"cached":null,"ignore_cache":false}'), +(10984, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.421+00', '{"cached":null,"ignore_cache":false}'), +(10985, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.463+00', '{"cached":null,"ignore_cache":false}'), +(10986, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:16.483+00', '{"cached":null,"ignore_cache":false}'), +(10987, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.783+00', '{"cached":null,"ignore_cache":false}'), +(10988, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.794+00', '{"cached":null,"ignore_cache":false}'), +(10989, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.805+00', '{"cached":null,"ignore_cache":false}'), +(10990, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.821+00', '{"cached":null,"ignore_cache":false}'), +(10991, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.829+00', '{"cached":null,"ignore_cache":false}'), +(10992, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.832+00', '{"cached":null,"ignore_cache":false}'), +(10993, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:23.845+00', '{"cached":null,"ignore_cache":false}'), +(10994, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.301+00', '{"cached":null,"ignore_cache":false}'), +(10995, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.476+00', '{"cached":null,"ignore_cache":false}'), +(10996, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.569+00', '{"cached":null,"ignore_cache":false}'), +(10997, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.762+00', '{"cached":null,"ignore_cache":false}'), +(10998, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.792+00', '{"cached":null,"ignore_cache":false}'), +(10999, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.81+00', '{"cached":null,"ignore_cache":false}'), +(11000, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.812+00', '{"cached":null,"ignore_cache":false}'), +(11001, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:39.931+00', '{"cached":null,"ignore_cache":false}'), +(11002, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.216+00', '{"cached":null,"ignore_cache":false}'), +(11003, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.22+00', '{"cached":null,"ignore_cache":false}'), +(11004, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.264+00', '{"cached":null,"ignore_cache":false}'), +(11005, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.42+00', '{"cached":null,"ignore_cache":false}'), +(11006, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.426+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11007, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.48+00', '{"cached":null,"ignore_cache":false}'), +(11008, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.518+00', '{"cached":null,"ignore_cache":false}'), +(11009, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.519+00', '{"cached":null,"ignore_cache":false}'), +(11010, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.585+00', '{"cached":null,"ignore_cache":false}'), +(11011, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.729+00', '{"cached":null,"ignore_cache":false}'), +(11012, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:40.763+00', '{"cached":null,"ignore_cache":false}'), +(11013, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:41.253+00', '{"cached":null,"ignore_cache":false}'), +(11014, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:41.643+00', '{"cached":null,"ignore_cache":false}'), +(11015, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.734+00', '{"cached":null,"ignore_cache":false}'), +(11016, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.771+00', '{"cached":null,"ignore_cache":false}'), +(11017, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.779+00', '{"cached":null,"ignore_cache":false}'), +(11018, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.784+00', '{"cached":null,"ignore_cache":false}'), +(11019, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.786+00', '{"cached":null,"ignore_cache":false}'), +(11020, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.797+00', '{"cached":null,"ignore_cache":false}'), +(11021, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:45.802+00', '{"cached":null,"ignore_cache":false}'), +(11022, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:46.21+00', '{"cached":null,"ignore_cache":false}'), +(11023, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:46.241+00', '{"cached":null,"ignore_cache":false}'), +(11024, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.565+00', '{"cached":null,"ignore_cache":false}'), +(11025, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.585+00', '{"cached":null,"ignore_cache":false}'), +(11026, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.607+00', '{"cached":null,"ignore_cache":false}'), +(11027, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.621+00', '{"cached":null,"ignore_cache":false}'), +(11028, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.623+00', '{"cached":null,"ignore_cache":false}'), +(11029, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.645+00', '{"cached":null,"ignore_cache":false}'), +(11030, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:53.647+00', '{"cached":null,"ignore_cache":false}'), +(11031, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.684+00', '{"cached":null,"ignore_cache":false}'), +(11032, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.762+00', '{"cached":null,"ignore_cache":false}'), +(11033, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.763+00', '{"cached":null,"ignore_cache":false}'), +(11034, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.766+00', '{"cached":null,"ignore_cache":false}'), +(11035, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.773+00', '{"cached":null,"ignore_cache":false}'), +(11036, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.803+00', '{"cached":null,"ignore_cache":false}'), +(11037, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.827+00', '{"cached":null,"ignore_cache":false}'), +(11038, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:57.975+00', '{"cached":null,"ignore_cache":false}'), +(11039, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.07+00', '{"cached":null,"ignore_cache":false}'), +(11040, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.11+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11041, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.114+00', '{"cached":null,"ignore_cache":false}'), +(11042, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.128+00', '{"cached":null,"ignore_cache":false}'), +(11043, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.162+00', '{"cached":null,"ignore_cache":false}'), +(11044, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.202+00', '{"cached":null,"ignore_cache":false}'), +(11045, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.243+00', '{"cached":null,"ignore_cache":false}'), +(11046, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:28:58.303+00', '{"cached":null,"ignore_cache":false}'), +(11047, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.449+00', '{"cached":null,"ignore_cache":false}'), +(11048, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.482+00', '{"cached":null,"ignore_cache":false}'), +(11049, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.495+00', '{"cached":null,"ignore_cache":false}'), +(11050, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.499+00', '{"cached":null,"ignore_cache":false}'), +(11051, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.519+00', '{"cached":null,"ignore_cache":false}'), +(11052, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.522+00', '{"cached":null,"ignore_cache":false}'), +(11053, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.531+00', '{"cached":null,"ignore_cache":false}'), +(11054, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.544+00', '{"cached":null,"ignore_cache":false}'), +(11055, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:16.582+00', '{"cached":null,"ignore_cache":false}'), +(11056, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.585+00', '{"cached":null,"ignore_cache":false}'), +(11057, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.613+00', '{"cached":null,"ignore_cache":false}'), +(11058, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.662+00', '{"cached":null,"ignore_cache":false}'), +(11059, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.7+00', '{"cached":null,"ignore_cache":false}'), +(11060, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.701+00', '{"cached":null,"ignore_cache":false}'), +(11061, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.75+00', '{"cached":null,"ignore_cache":false}'), +(11062, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:23.753+00', '{"cached":null,"ignore_cache":false}'), +(11063, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.861+00', '{"cached":null,"ignore_cache":false}'), +(11064, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.865+00', '{"cached":null,"ignore_cache":false}'), +(11065, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:27.96+00', '{"cached":null,"ignore_cache":false}'), +(11066, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.1+00', '{"cached":null,"ignore_cache":false}'), +(11067, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.147+00', '{"cached":null,"ignore_cache":false}'), +(11068, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.183+00', '{"cached":null,"ignore_cache":false}'), +(11069, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.211+00', '{"cached":null,"ignore_cache":false}'), +(11070, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.227+00', '{"cached":null,"ignore_cache":false}'), +(11071, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.277+00', '{"cached":null,"ignore_cache":false}'), +(11072, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.281+00', '{"cached":null,"ignore_cache":false}'), +(11073, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.302+00', '{"cached":null,"ignore_cache":false}'), +(11074, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.355+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11075, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.362+00', '{"cached":null,"ignore_cache":false}'), +(11076, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.368+00', '{"cached":null,"ignore_cache":false}'), +(11077, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.37+00', '{"cached":null,"ignore_cache":false}'), +(11078, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:28.382+00', '{"cached":null,"ignore_cache":false}'), +(11079, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.407+00', '{"cached":null,"ignore_cache":false}'), +(11080, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.481+00', '{"cached":null,"ignore_cache":false}'), +(11081, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.498+00', '{"cached":null,"ignore_cache":false}'), +(11082, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.509+00', '{"cached":null,"ignore_cache":false}'), +(11083, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.539+00', '{"cached":null,"ignore_cache":false}'), +(11084, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.565+00', '{"cached":null,"ignore_cache":false}'), +(11085, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:53.603+00', '{"cached":null,"ignore_cache":false}'), +(11086, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.221+00', '{"cached":null,"ignore_cache":false}'), +(11087, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.252+00', '{"cached":null,"ignore_cache":false}'), +(11088, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.297+00', '{"cached":null,"ignore_cache":false}'), +(11089, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.344+00', '{"cached":null,"ignore_cache":false}'), +(11090, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.443+00', '{"cached":null,"ignore_cache":false}'), +(11091, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.449+00', '{"cached":null,"ignore_cache":false}'), +(11092, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.45+00', '{"cached":null,"ignore_cache":false}'), +(11093, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.451+00', '{"cached":null,"ignore_cache":false}'), +(11094, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.519+00', '{"cached":null,"ignore_cache":false}'), +(11095, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.544+00', '{"cached":null,"ignore_cache":false}'), +(11096, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.559+00', '{"cached":null,"ignore_cache":false}'), +(11097, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.567+00', '{"cached":null,"ignore_cache":false}'), +(11098, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.569+00', '{"cached":null,"ignore_cache":false}'), +(11099, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.584+00', '{"cached":null,"ignore_cache":false}'), +(11100, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.65+00', '{"cached":null,"ignore_cache":false}'), +(11101, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:29:58.708+00', '{"cached":null,"ignore_cache":false}'), +(11102, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.58+00', '{"cached":null,"ignore_cache":false}'), +(11103, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.628+00', '{"cached":null,"ignore_cache":false}'), +(11104, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.645+00', '{"cached":null,"ignore_cache":false}'), +(11105, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.682+00', '{"cached":null,"ignore_cache":false}'), +(11106, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.692+00', '{"cached":null,"ignore_cache":false}'), +(11107, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.698+00', '{"cached":null,"ignore_cache":false}'), +(11108, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.703+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11109, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.716+00', '{"cached":null,"ignore_cache":false}'), +(11110, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:03.719+00', '{"cached":null,"ignore_cache":false}'), +(11111, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.786+00', '{"cached":null,"ignore_cache":false}'), +(11112, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.822+00', '{"cached":null,"ignore_cache":false}'), +(11113, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.833+00', '{"cached":null,"ignore_cache":false}'), +(11114, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.858+00', '{"cached":null,"ignore_cache":false}'), +(11115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.864+00', '{"cached":null,"ignore_cache":false}'), +(11116, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.867+00', '{"cached":null,"ignore_cache":false}'), +(11117, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:23.891+00', '{"cached":null,"ignore_cache":false}'), +(11118, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.784+00', '{"cached":null,"ignore_cache":false}'), +(11119, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:28.878+00', '{"cached":null,"ignore_cache":false}'), +(11120, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:29.467+00', '{"cached":null,"ignore_cache":false}'), +(11121, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.776+00', '{"cached":null,"ignore_cache":false}'), +(11122, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.852+00', '{"cached":null,"ignore_cache":false}'), +(11123, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.88+00', '{"cached":null,"ignore_cache":false}'), +(11124, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.912+00', '{"cached":null,"ignore_cache":false}'), +(11125, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.93+00', '{"cached":null,"ignore_cache":false}'), +(11126, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:50.99+00', '{"cached":null,"ignore_cache":false}'), +(11127, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:51.036+00', '{"cached":null,"ignore_cache":false}'), +(11128, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:51.037+00', '{"cached":null,"ignore_cache":false}'), +(11129, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:51.06+00', '{"cached":null,"ignore_cache":false}'), +(11130, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.637+00', '{"cached":null,"ignore_cache":false}'), +(11131, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.639+00', '{"cached":null,"ignore_cache":false}'), +(11132, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.663+00', '{"cached":null,"ignore_cache":false}'), +(11133, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.716+00', '{"cached":null,"ignore_cache":false}'), +(11134, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.738+00', '{"cached":null,"ignore_cache":false}'), +(11135, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.743+00', '{"cached":null,"ignore_cache":false}'), +(11136, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:30:53.748+00', '{"cached":null,"ignore_cache":false}'), +(11137, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.183+00', '{"cached":null,"ignore_cache":false}'), +(11138, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.258+00', '{"cached":null,"ignore_cache":false}'), +(11139, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.27+00', '{"cached":null,"ignore_cache":false}'), +(11140, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.35+00', '{"cached":null,"ignore_cache":false}'), +(11141, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.366+00', '{"cached":null,"ignore_cache":false}'), +(11142, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.374+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11143, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:24.417+00', '{"cached":null,"ignore_cache":false}'), +(11144, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.788+00', '{"cached":null,"ignore_cache":false}'), +(11145, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.897+00', '{"cached":null,"ignore_cache":false}'), +(11146, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.906+00', '{"cached":null,"ignore_cache":false}'), +(11147, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.929+00', '{"cached":null,"ignore_cache":false}'), +(11148, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.951+00', '{"cached":null,"ignore_cache":false}'), +(11149, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.984+00', '{"cached":null,"ignore_cache":false}'), +(11150, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:43.988+00', '{"cached":null,"ignore_cache":false}'), +(11151, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:44.018+00', '{"cached":null,"ignore_cache":false}'), +(11152, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:44.027+00', '{"cached":null,"ignore_cache":false}'), +(11153, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.636+00', '{"cached":null,"ignore_cache":false}'), +(11154, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.639+00', '{"cached":null,"ignore_cache":false}'), +(11155, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.733+00', '{"cached":null,"ignore_cache":false}'), +(11156, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.736+00', '{"cached":null,"ignore_cache":false}'), +(11157, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.75+00', '{"cached":null,"ignore_cache":false}'), +(11158, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.778+00', '{"cached":null,"ignore_cache":false}'), +(11159, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:31:53.791+00', '{"cached":null,"ignore_cache":false}'), +(11160, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.512+00', '{"cached":null,"ignore_cache":false}'), +(11161, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.594+00', '{"cached":null,"ignore_cache":false}'), +(11162, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.615+00', '{"cached":null,"ignore_cache":false}'), +(11163, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.66+00', '{"cached":null,"ignore_cache":false}'), +(11164, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.66+00', '{"cached":null,"ignore_cache":false}'), +(11165, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.669+00', '{"cached":null,"ignore_cache":false}'), +(11166, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:23.7+00', '{"cached":null,"ignore_cache":false}'), +(11167, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.667+00', '{"cached":null,"ignore_cache":false}'), +(11168, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:26.918+00', '{"cached":null,"ignore_cache":false}'), +(11169, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:27.056+00', '{"cached":null,"ignore_cache":false}'), +(11170, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:27.06+00', '{"cached":null,"ignore_cache":false}'), +(11171, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:27.081+00', '{"cached":null,"ignore_cache":false}'), +(11172, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:27.084+00', '{"cached":null,"ignore_cache":false}'), +(11173, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:27.096+00', '{"cached":null,"ignore_cache":false}'), +(11174, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:27.126+00', '{"cached":null,"ignore_cache":false}'), +(11175, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:27.2+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11176, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.551+00', '{"cached":null,"ignore_cache":false}'), +(11177, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.611+00', '{"cached":null,"ignore_cache":false}'), +(11178, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.641+00', '{"cached":null,"ignore_cache":false}'), +(11179, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.646+00', '{"cached":null,"ignore_cache":false}'), +(11180, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.696+00', '{"cached":null,"ignore_cache":false}'), +(11181, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.706+00', '{"cached":null,"ignore_cache":false}'), +(11182, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:32:53.719+00', '{"cached":null,"ignore_cache":false}'), +(11183, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:16.985+00', '{"cached":null,"ignore_cache":false}'), +(11184, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.131+00', '{"cached":null,"ignore_cache":false}'), +(11185, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.164+00', '{"cached":null,"ignore_cache":false}'), +(11186, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.187+00', '{"cached":null,"ignore_cache":false}'), +(11187, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.199+00', '{"cached":null,"ignore_cache":false}'), +(11188, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.21+00', '{"cached":null,"ignore_cache":false}'), +(11189, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.22+00', '{"cached":null,"ignore_cache":false}'), +(11190, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.25+00', '{"cached":null,"ignore_cache":false}'), +(11191, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:17.258+00', '{"cached":null,"ignore_cache":false}'), +(11192, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.553+00', '{"cached":null,"ignore_cache":false}'), +(11193, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.567+00', '{"cached":null,"ignore_cache":false}'), +(11194, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.575+00', '{"cached":null,"ignore_cache":false}'), +(11195, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.576+00', '{"cached":null,"ignore_cache":false}'), +(11196, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.588+00', '{"cached":null,"ignore_cache":false}'), +(11197, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.596+00', '{"cached":null,"ignore_cache":false}'), +(11198, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:23.646+00', '{"cached":null,"ignore_cache":false}'), +(11199, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.707+00', '{"cached":null,"ignore_cache":false}'), +(11200, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.714+00', '{"cached":null,"ignore_cache":false}'), +(11201, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.724+00', '{"cached":null,"ignore_cache":false}'), +(11202, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.755+00', '{"cached":null,"ignore_cache":false}'), +(11203, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.777+00', '{"cached":null,"ignore_cache":false}'), +(11204, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.78+00', '{"cached":null,"ignore_cache":false}'), +(11205, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:33:53.801+00', '{"cached":null,"ignore_cache":false}'), +(11206, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.871+00', '{"cached":null,"ignore_cache":false}'), +(11207, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.891+00', '{"cached":null,"ignore_cache":false}'), +(11208, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.943+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11209, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.95+00', '{"cached":null,"ignore_cache":false}'), +(11210, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:07.963+00', '{"cached":null,"ignore_cache":false}'), +(11211, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:08.013+00', '{"cached":null,"ignore_cache":false}'), +(11212, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:08.014+00', '{"cached":null,"ignore_cache":false}'), +(11213, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:08.014+00', '{"cached":null,"ignore_cache":false}'), +(11214, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:08.017+00', '{"cached":null,"ignore_cache":false}'), +(11215, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.767+00', '{"cached":null,"ignore_cache":false}'), +(11216, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.859+00', '{"cached":null,"ignore_cache":false}'), +(11217, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.869+00', '{"cached":null,"ignore_cache":false}'), +(11218, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.874+00', '{"cached":null,"ignore_cache":false}'), +(11219, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.908+00', '{"cached":null,"ignore_cache":false}'), +(11220, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.92+00', '{"cached":null,"ignore_cache":false}'), +(11221, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:23.944+00', '{"cached":null,"ignore_cache":false}'), +(11222, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.758+00', '{"cached":null,"ignore_cache":false}'), +(11223, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.773+00', '{"cached":null,"ignore_cache":false}'), +(11224, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.775+00', '{"cached":null,"ignore_cache":false}'), +(11225, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.819+00', '{"cached":null,"ignore_cache":false}'), +(11226, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.836+00', '{"cached":null,"ignore_cache":false}'), +(11227, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.894+00', '{"cached":null,"ignore_cache":false}'), +(11228, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:53.912+00', '{"cached":null,"ignore_cache":false}'), +(11229, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.622+00', '{"cached":null,"ignore_cache":false}'), +(11230, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.648+00', '{"cached":null,"ignore_cache":false}'), +(11231, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.695+00', '{"cached":null,"ignore_cache":false}'), +(11232, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.705+00', '{"cached":null,"ignore_cache":false}'), +(11233, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.716+00', '{"cached":null,"ignore_cache":false}'), +(11234, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.718+00', '{"cached":null,"ignore_cache":false}'), +(11235, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.728+00', '{"cached":null,"ignore_cache":false}'), +(11236, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.73+00', '{"cached":null,"ignore_cache":false}'), +(11237, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:34:56.739+00', '{"cached":null,"ignore_cache":false}'), +(11238, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.673+00', '{"cached":null,"ignore_cache":false}'), +(11239, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.68+00', '{"cached":null,"ignore_cache":false}'), +(11240, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.694+00', '{"cached":null,"ignore_cache":false}'), +(11241, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.717+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11242, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.724+00', '{"cached":null,"ignore_cache":false}'), +(11243, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.724+00', '{"cached":null,"ignore_cache":false}'), +(11244, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:23.733+00', '{"cached":null,"ignore_cache":false}'), +(11245, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.314+00', '{"cached":null,"ignore_cache":false}'), +(11246, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.405+00', '{"cached":null,"ignore_cache":false}'), +(11247, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.423+00', '{"cached":null,"ignore_cache":false}'), +(11248, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.435+00', '{"cached":null,"ignore_cache":false}'), +(11249, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.446+00', '{"cached":null,"ignore_cache":false}'), +(11250, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.465+00', '{"cached":null,"ignore_cache":false}'), +(11251, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.466+00', '{"cached":null,"ignore_cache":false}'), +(11252, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.467+00', '{"cached":null,"ignore_cache":false}'), +(11253, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:35:48.468+00', '{"cached":null,"ignore_cache":false}'), +(11254, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.332+00', '{"cached":null,"ignore_cache":false}'), +(11255, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.381+00', '{"cached":null,"ignore_cache":false}'), +(11256, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.424+00', '{"cached":null,"ignore_cache":false}'), +(11257, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.439+00', '{"cached":null,"ignore_cache":false}'), +(11258, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.45+00', '{"cached":null,"ignore_cache":false}'), +(11259, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.457+00', '{"cached":null,"ignore_cache":false}'), +(11260, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:15.472+00', '{"cached":null,"ignore_cache":false}'), +(11261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.631+00', '{"cached":null,"ignore_cache":false}'), +(11262, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.759+00', '{"cached":null,"ignore_cache":false}'), +(11263, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.77+00', '{"cached":null,"ignore_cache":false}'), +(11264, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.78+00', '{"cached":null,"ignore_cache":false}'), +(11265, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.826+00', '{"cached":null,"ignore_cache":false}'), +(11266, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.835+00', '{"cached":null,"ignore_cache":false}'), +(11267, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:36:24.847+00', '{"cached":null,"ignore_cache":false}'), +(11268, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.843+00', '{"cached":null,"ignore_cache":false}'), +(11269, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.987+00', '{"cached":null,"ignore_cache":false}'), +(11270, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.991+00', '{"cached":null,"ignore_cache":false}'), +(11271, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:04.995+00', '{"cached":null,"ignore_cache":false}'), +(11272, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.039+00', '{"cached":null,"ignore_cache":false}'), +(11273, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.05+00', '{"cached":null,"ignore_cache":false}'), +(11274, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.09+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11275, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.103+00', '{"cached":null,"ignore_cache":false}'), +(11276, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.105+00', '{"cached":null,"ignore_cache":false}'), +(11277, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.131+00', '{"cached":null,"ignore_cache":false}'), +(11278, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.194+00', '{"cached":null,"ignore_cache":false}'), +(11279, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.211+00', '{"cached":null,"ignore_cache":false}'), +(11280, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.226+00', '{"cached":null,"ignore_cache":false}'), +(11281, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.233+00', '{"cached":null,"ignore_cache":false}'), +(11282, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.233+00', '{"cached":null,"ignore_cache":false}'), +(11283, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:05.292+00', '{"cached":null,"ignore_cache":false}'), +(11284, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.21+00', '{"cached":null,"ignore_cache":false}'), +(11285, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.259+00', '{"cached":null,"ignore_cache":false}'), +(11286, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.26+00', '{"cached":null,"ignore_cache":false}'), +(11287, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.26+00', '{"cached":null,"ignore_cache":false}'), +(11288, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.26+00', '{"cached":null,"ignore_cache":false}'), +(11289, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.269+00', '{"cached":null,"ignore_cache":false}'), +(11290, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.303+00', '{"cached":null,"ignore_cache":false}'), +(11291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.579+00', '{"cached":null,"ignore_cache":false}'), +(11292, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:23.636+00', '{"cached":null,"ignore_cache":false}'), +(11293, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.835+00', '{"cached":null,"ignore_cache":false}'), +(11294, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.873+00', '{"cached":null,"ignore_cache":false}'), +(11295, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.914+00', '{"cached":null,"ignore_cache":false}'), +(11296, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.928+00', '{"cached":null,"ignore_cache":false}'), +(11297, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.943+00', '{"cached":null,"ignore_cache":false}'), +(11298, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.956+00', '{"cached":null,"ignore_cache":false}'), +(11299, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:37:26.968+00', '{"cached":null,"ignore_cache":false}'), +(11300, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.104+00', '{"cached":null,"ignore_cache":false}'), +(11301, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.226+00', '{"cached":null,"ignore_cache":false}'), +(11302, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.534+00', '{"cached":null,"ignore_cache":false}'), +(11303, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.621+00', '{"cached":null,"ignore_cache":false}'), +(11304, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.622+00', '{"cached":null,"ignore_cache":false}'), +(11305, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.643+00', '{"cached":null,"ignore_cache":false}'), +(11306, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.663+00', '{"cached":null,"ignore_cache":false}'), +(11307, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.678+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.694+00', '{"cached":null,"ignore_cache":false}'), +(11309, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.713+00', '{"cached":null,"ignore_cache":false}'), +(11310, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.72+00', '{"cached":null,"ignore_cache":false}'), +(11311, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.748+00', '{"cached":null,"ignore_cache":false}'), +(11312, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.796+00', '{"cached":null,"ignore_cache":false}'), +(11313, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.797+00', '{"cached":null,"ignore_cache":false}'), +(11314, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.815+00', '{"cached":null,"ignore_cache":false}'), +(11315, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:15.834+00', '{"cached":null,"ignore_cache":false}'), +(11316, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:38.527+00', '{"cached":null,"ignore_cache":false}'), +(11317, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:38.533+00', '{"cached":null,"ignore_cache":false}'), +(11318, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:38.541+00', '{"cached":null,"ignore_cache":false}'), +(11319, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:39.9+00', '{"cached":null,"ignore_cache":false}'), +(11320, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:39.916+00', '{"cached":null,"ignore_cache":false}'), +(11321, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:39.919+00', '{"cached":null,"ignore_cache":false}'), +(11322, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:38:44.892+00', '{"cached":null,"ignore_cache":false}'), +(11323, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:39:30.667+00', '{"cached":null,"ignore_cache":false}'), +(11324, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.971+00', '{"cached":null,"ignore_cache":false}'), +(11325, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:22.987+00', '{"cached":null,"ignore_cache":false}'), +(11326, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.436+00', '{"cached":null,"ignore_cache":false}'), +(11327, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.483+00', '{"cached":null,"ignore_cache":false}'), +(11328, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.57+00', '{"cached":null,"ignore_cache":false}'), +(11329, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.606+00', '{"cached":null,"ignore_cache":false}'), +(11330, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.848+00', '{"cached":null,"ignore_cache":false}'), +(11331, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.94+00', '{"cached":null,"ignore_cache":false}'), +(11332, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:24.982+00', '{"cached":null,"ignore_cache":false}'), +(11333, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.031+00', '{"cached":null,"ignore_cache":false}'), +(11334, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.841+00', '{"cached":null,"ignore_cache":false}'), +(11335, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.916+00', '{"cached":null,"ignore_cache":false}'), +(11336, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.919+00', '{"cached":null,"ignore_cache":false}'), +(11337, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:25.958+00', '{"cached":null,"ignore_cache":false}'), +(11338, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.106+00', '{"cached":null,"ignore_cache":false}'), +(11339, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.122+00', '{"cached":null,"ignore_cache":false}'), +(11340, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.131+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11341, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.134+00', '{"cached":null,"ignore_cache":false}'), +(11342, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.141+00', '{"cached":null,"ignore_cache":false}'), +(11343, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.178+00', '{"cached":null,"ignore_cache":false}'), +(11344, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.252+00', '{"cached":null,"ignore_cache":false}'), +(11345, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.304+00', '{"cached":null,"ignore_cache":false}'), +(11346, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.334+00', '{"cached":null,"ignore_cache":false}'), +(11347, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.346+00', '{"cached":null,"ignore_cache":false}'), +(11348, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:26.708+00', '{"cached":null,"ignore_cache":false}'), +(11349, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:29.395+00', '{"cached":null,"ignore_cache":false}'), +(11350, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:36.726+00', '{"cached":null,"ignore_cache":false}'), +(11351, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:36.742+00', '{"cached":null,"ignore_cache":false}'), +(11352, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.888+00', '{"cached":null,"ignore_cache":false}'), +(11353, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.914+00', '{"cached":null,"ignore_cache":false}'), +(11354, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.926+00', '{"cached":null,"ignore_cache":false}'), +(11355, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:39.935+00', '{"cached":null,"ignore_cache":false}'), +(11356, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.783+00', '{"cached":null,"ignore_cache":false}'), +(11357, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.797+00', '{"cached":null,"ignore_cache":false}'), +(11358, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:46.804+00', '{"cached":null,"ignore_cache":false}'), +(11359, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.029+00', '{"cached":null,"ignore_cache":false}'), +(11360, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.048+00', '{"cached":null,"ignore_cache":false}'), +(11361, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.07+00', '{"cached":null,"ignore_cache":false}'), +(11362, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.129+00', '{"cached":null,"ignore_cache":false}'), +(11363, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.138+00', '{"cached":null,"ignore_cache":false}'), +(11364, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.145+00', '{"cached":null,"ignore_cache":false}'), +(11365, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.161+00', '{"cached":null,"ignore_cache":false}'), +(11366, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.181+00', '{"cached":null,"ignore_cache":false}'), +(11367, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:47.187+00', '{"cached":null,"ignore_cache":false}'), +(11368, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:40:57.038+00', '{"cached":null,"ignore_cache":false}'), +(11369, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.843+00', '{"cached":null,"ignore_cache":false}'), +(11370, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.903+00', '{"cached":null,"ignore_cache":false}'), +(11371, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.914+00', '{"cached":null,"ignore_cache":false}'), +(11372, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:12.939+00', '{"cached":null,"ignore_cache":false}'), +(11373, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.029+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11374, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.073+00', '{"cached":null,"ignore_cache":false}'), +(11375, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.092+00', '{"cached":null,"ignore_cache":false}'), +(11376, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.098+00', '{"cached":null,"ignore_cache":false}'), +(11377, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.107+00', '{"cached":null,"ignore_cache":false}'), +(11378, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.114+00', '{"cached":null,"ignore_cache":false}'), +(11379, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.161+00', '{"cached":null,"ignore_cache":false}'), +(11380, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.164+00', '{"cached":null,"ignore_cache":false}'), +(11381, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.191+00', '{"cached":null,"ignore_cache":false}'), +(11382, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.202+00', '{"cached":null,"ignore_cache":false}'), +(11383, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.232+00', '{"cached":null,"ignore_cache":false}'), +(11384, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.243+00', '{"cached":null,"ignore_cache":false}'), +(11385, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:13.25+00', '{"cached":null,"ignore_cache":false}'), +(11386, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.184+00', '{"cached":null,"ignore_cache":false}'), +(11387, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.275+00', '{"cached":null,"ignore_cache":false}'), +(11388, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.282+00', '{"cached":null,"ignore_cache":false}'), +(11389, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.608+00', '{"cached":null,"ignore_cache":false}'), +(11390, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.61+00', '{"cached":null,"ignore_cache":false}'), +(11391, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:17.641+00', '{"cached":null,"ignore_cache":false}'), +(11392, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:18.433+00', '{"cached":null,"ignore_cache":false}'), +(11393, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:18.485+00', '{"cached":null,"ignore_cache":false}'), +(11394, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.815+00', '{"cached":null,"ignore_cache":false}'), +(11395, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:29.988+00', '{"cached":null,"ignore_cache":false}'), +(11396, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.157+00', '{"cached":null,"ignore_cache":false}'), +(11397, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.166+00', '{"cached":null,"ignore_cache":false}'), +(11398, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.191+00', '{"cached":null,"ignore_cache":false}'), +(11399, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.255+00', '{"cached":null,"ignore_cache":false}'), +(11400, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.335+00', '{"cached":null,"ignore_cache":false}'), +(11401, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.346+00', '{"cached":null,"ignore_cache":false}'), +(11402, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.384+00', '{"cached":null,"ignore_cache":false}'), +(11403, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.462+00', '{"cached":null,"ignore_cache":false}'), +(11404, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.463+00', '{"cached":null,"ignore_cache":false}'), +(11405, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.52+00', '{"cached":null,"ignore_cache":false}'), +(11406, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.547+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11407, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.564+00', '{"cached":null,"ignore_cache":false}'), +(11408, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.569+00', '{"cached":null,"ignore_cache":false}'), +(11409, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:30.585+00', '{"cached":null,"ignore_cache":false}'), +(11410, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.63+00', '{"cached":null,"ignore_cache":false}'), +(11411, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.651+00', '{"cached":null,"ignore_cache":false}'), +(11412, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.685+00', '{"cached":null,"ignore_cache":false}'), +(11413, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.705+00', '{"cached":null,"ignore_cache":false}'), +(11414, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.73+00', '{"cached":null,"ignore_cache":false}'), +(11415, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.73+00', '{"cached":null,"ignore_cache":false}'), +(11416, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:41:54.751+00', '{"cached":null,"ignore_cache":false}'), +(11417, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.364+00', '{"cached":null,"ignore_cache":false}'), +(11418, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.506+00', '{"cached":null,"ignore_cache":false}'), +(11419, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.523+00', '{"cached":null,"ignore_cache":false}'), +(11420, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.533+00', '{"cached":null,"ignore_cache":false}'), +(11421, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.543+00', '{"cached":null,"ignore_cache":false}'), +(11422, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.568+00', '{"cached":null,"ignore_cache":false}'), +(11423, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:26.657+00', '{"cached":null,"ignore_cache":false}'), +(11424, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.488+00', '{"cached":null,"ignore_cache":false}'), +(11425, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.498+00', '{"cached":null,"ignore_cache":false}'), +(11426, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.511+00', '{"cached":null,"ignore_cache":false}'), +(11427, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.518+00', '{"cached":null,"ignore_cache":false}'), +(11428, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.546+00', '{"cached":null,"ignore_cache":false}'), +(11429, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.57+00', '{"cached":null,"ignore_cache":false}'), +(11430, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.611+00', '{"cached":null,"ignore_cache":false}'), +(11431, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.688+00', '{"cached":null,"ignore_cache":false}'), +(11432, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:27.703+00', '{"cached":null,"ignore_cache":false}'), +(11433, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.554+00', '{"cached":null,"ignore_cache":false}'), +(11434, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.614+00', '{"cached":null,"ignore_cache":false}'), +(11435, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.623+00', '{"cached":null,"ignore_cache":false}'), +(11436, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.642+00', '{"cached":null,"ignore_cache":false}'), +(11437, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.644+00', '{"cached":null,"ignore_cache":false}'), +(11438, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.67+00', '{"cached":null,"ignore_cache":false}'), +(11439, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:53.685+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11440, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.826+00', '{"cached":null,"ignore_cache":false}'), +(11441, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.829+00', '{"cached":null,"ignore_cache":false}'), +(11442, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.88+00', '{"cached":null,"ignore_cache":false}'), +(11443, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.949+00', '{"cached":null,"ignore_cache":false}'), +(11444, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.958+00', '{"cached":null,"ignore_cache":false}'), +(11445, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.971+00', '{"cached":null,"ignore_cache":false}'), +(11446, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.974+00', '{"cached":null,"ignore_cache":false}'), +(11447, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:42:59.997+00', '{"cached":null,"ignore_cache":false}'), +(11448, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:00.052+00', '{"cached":null,"ignore_cache":false}'), +(11449, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.614+00', '{"cached":null,"ignore_cache":false}'), +(11450, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.657+00', '{"cached":null,"ignore_cache":false}'), +(11451, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.667+00', '{"cached":null,"ignore_cache":false}'), +(11452, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.697+00', '{"cached":null,"ignore_cache":false}'), +(11453, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.702+00', '{"cached":null,"ignore_cache":false}'), +(11454, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.722+00', '{"cached":null,"ignore_cache":false}'), +(11455, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:23.727+00', '{"cached":null,"ignore_cache":false}'), +(11456, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.722+00', '{"cached":null,"ignore_cache":false}'), +(11457, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.775+00', '{"cached":null,"ignore_cache":false}'), +(11458, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.79+00', '{"cached":null,"ignore_cache":false}'), +(11459, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.8+00', '{"cached":null,"ignore_cache":false}'), +(11460, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.813+00', '{"cached":null,"ignore_cache":false}'), +(11461, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.855+00', '{"cached":null,"ignore_cache":false}'), +(11462, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.856+00', '{"cached":null,"ignore_cache":false}'), +(11463, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.857+00', '{"cached":null,"ignore_cache":false}'), +(11464, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:44.868+00', '{"cached":null,"ignore_cache":false}'), +(11465, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.635+00', '{"cached":null,"ignore_cache":false}'), +(11466, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.704+00', '{"cached":null,"ignore_cache":false}'), +(11467, NULL, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.73+00', '{"cached":null,"ignore_cache":false}'), +(11468, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.768+00', '{"cached":null,"ignore_cache":false}'), +(11469, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.803+00', '{"cached":null,"ignore_cache":false}'), +(11470, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.812+00', '{"cached":null,"ignore_cache":false}'), +(11471, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-20 16:43:53.868+00', '{"cached":null,"ignore_cache":false}'), +(11472, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-21 06:23:49.365+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11473, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-21 06:23:50.232+00', '{"cached":null,"ignore_cache":null}'), +(11474, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.278+00', '{"cached":null,"ignore_cache":false}'), +(11475, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.367+00', '{"cached":null,"ignore_cache":false}'), +(11476, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.551+00', '{"cached":null,"ignore_cache":false}'), +(11477, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.591+00', '{"cached":null,"ignore_cache":false}'), +(11478, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.811+00', '{"cached":null,"ignore_cache":false}'), +(11479, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.898+00', '{"cached":null,"ignore_cache":false}'), +(11480, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:14.901+00', '{"cached":null,"ignore_cache":false}'), +(11481, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.005+00', '{"cached":null,"ignore_cache":false}'), +(11482, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.102+00', '{"cached":null,"ignore_cache":false}'), +(11483, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.162+00', '{"cached":null,"ignore_cache":false}'), +(11484, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.271+00', '{"cached":null,"ignore_cache":false}'), +(11485, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.306+00', '{"cached":null,"ignore_cache":false}'), +(11486, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.405+00', '{"cached":null,"ignore_cache":false}'), +(11487, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.505+00', '{"cached":null,"ignore_cache":false}'), +(11488, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.518+00', '{"cached":null,"ignore_cache":false}'), +(11489, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.555+00', '{"cached":null,"ignore_cache":false}'), +(11490, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.566+00', '{"cached":null,"ignore_cache":false}'), +(11491, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.623+00', '{"cached":null,"ignore_cache":false}'), +(11492, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.746+00', '{"cached":null,"ignore_cache":false}'), +(11493, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:15.8+00', '{"cached":null,"ignore_cache":false}'), +(11494, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:16.318+00', '{"cached":null,"ignore_cache":false}'), +(11495, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:16.422+00', '{"cached":null,"ignore_cache":false}'), +(11496, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:18.47+00', '{"cached":null,"ignore_cache":false}'), +(11497, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:27:18.504+00', '{"cached":null,"ignore_cache":false}'), +(11498, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.558+00', '{"cached":null,"ignore_cache":false}'), +(11499, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.829+00', '{"cached":null,"ignore_cache":false}'), +(11500, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.85+00', '{"cached":null,"ignore_cache":false}'), +(11501, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:14.926+00', '{"cached":null,"ignore_cache":false}'), +(11502, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.009+00', '{"cached":null,"ignore_cache":false}'), +(11503, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.02+00', '{"cached":null,"ignore_cache":false}'), +(11504, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.113+00', '{"cached":null,"ignore_cache":false}'), +(11505, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.222+00', '{"cached":null,"ignore_cache":false}'), +(11506, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.222+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11507, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.473+00', '{"cached":null,"ignore_cache":false}'), +(11508, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.893+00', '{"cached":null,"ignore_cache":false}'), +(11509, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.921+00', '{"cached":null,"ignore_cache":false}'), +(11510, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:15.945+00', '{"cached":null,"ignore_cache":false}'), +(11511, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.065+00', '{"cached":null,"ignore_cache":false}'), +(11512, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.072+00', '{"cached":null,"ignore_cache":false}'), +(11513, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.13+00', '{"cached":null,"ignore_cache":false}'), +(11514, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.174+00', '{"cached":null,"ignore_cache":false}'), +(11515, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.175+00', '{"cached":null,"ignore_cache":false}'), +(11516, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.192+00', '{"cached":null,"ignore_cache":false}'), +(11517, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.221+00', '{"cached":null,"ignore_cache":false}'), +(11518, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.236+00', '{"cached":null,"ignore_cache":false}'), +(11519, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.353+00', '{"cached":null,"ignore_cache":false}'), +(11520, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.362+00', '{"cached":null,"ignore_cache":false}'), +(11521, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.373+00', '{"cached":null,"ignore_cache":false}'), +(11522, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.565+00', '{"cached":null,"ignore_cache":false}'), +(11523, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.596+00', '{"cached":null,"ignore_cache":false}'), +(11524, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:16.936+00', '{"cached":null,"ignore_cache":false}'), +(11525, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:17.099+00', '{"cached":null,"ignore_cache":false}'), +(11526, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:17.133+00', '{"cached":null,"ignore_cache":false}'), +(11527, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:17.182+00', '{"cached":null,"ignore_cache":false}'), +(11528, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.477+00', '{"cached":null,"ignore_cache":false}'), +(11529, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.509+00', '{"cached":null,"ignore_cache":false}'), +(11530, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.806+00', '{"cached":null,"ignore_cache":false}'), +(11531, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.851+00', '{"cached":null,"ignore_cache":false}'), +(11532, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.861+00', '{"cached":null,"ignore_cache":false}'), +(11533, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.895+00', '{"cached":null,"ignore_cache":false}'), +(11534, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.919+00', '{"cached":null,"ignore_cache":false}'), +(11535, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:42.986+00', '{"cached":null,"ignore_cache":false}'), +(11536, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.163+00', '{"cached":null,"ignore_cache":false}'), +(11537, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.163+00', '{"cached":null,"ignore_cache":false}'), +(11538, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.192+00', '{"cached":null,"ignore_cache":false}'), +(11539, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.254+00', '{"cached":null,"ignore_cache":false}'), +(11540, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.268+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11541, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.319+00', '{"cached":null,"ignore_cache":false}'), +(11542, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.353+00', '{"cached":null,"ignore_cache":false}'), +(11543, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:43.627+00', '{"cached":null,"ignore_cache":false}'), +(11544, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:49.876+00', '{"cached":null,"ignore_cache":null}'), +(11545, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.087+00', '{"cached":null,"ignore_cache":false}'), +(11546, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.106+00', '{"cached":null,"ignore_cache":false}'), +(11547, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.152+00', '{"cached":null,"ignore_cache":false}'), +(11548, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.159+00', '{"cached":null,"ignore_cache":false}'), +(11549, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.52+00', '{"cached":null,"ignore_cache":false}'), +(11550, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.526+00', '{"cached":null,"ignore_cache":false}'), +(11551, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:51.542+00', '{"cached":null,"ignore_cache":false}'), +(11552, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:55.921+00', '{"cached":null,"ignore_cache":null}'), +(11553, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:28:56.74+00', '{"cached":null,"ignore_cache":false}'), +(11554, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.589+00', '{"cached":null,"ignore_cache":false}'), +(11555, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:12.848+00', '{"cached":null,"ignore_cache":false}'), +(11556, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.159+00', '{"cached":null,"ignore_cache":false}'), +(11557, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.178+00', '{"cached":null,"ignore_cache":false}'), +(11558, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.185+00', '{"cached":null,"ignore_cache":false}'), +(11559, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.187+00', '{"cached":null,"ignore_cache":false}'), +(11560, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.255+00', '{"cached":null,"ignore_cache":false}'), +(11561, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.267+00', '{"cached":null,"ignore_cache":false}'), +(11562, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.269+00', '{"cached":null,"ignore_cache":false}'), +(11563, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.27+00', '{"cached":null,"ignore_cache":false}'), +(11564, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.271+00', '{"cached":null,"ignore_cache":false}'), +(11565, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.284+00', '{"cached":null,"ignore_cache":false}'), +(11566, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.334+00', '{"cached":null,"ignore_cache":false}'), +(11567, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.358+00', '{"cached":null,"ignore_cache":false}'), +(11568, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.438+00', '{"cached":null,"ignore_cache":false}'), +(11569, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:13.439+00', '{"cached":null,"ignore_cache":false}'), +(11570, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.203+00', '{"cached":null,"ignore_cache":false}'), +(11571, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.271+00', '{"cached":null,"ignore_cache":false}'), +(11572, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.486+00', '{"cached":null,"ignore_cache":false}'), +(11573, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.488+00', '{"cached":null,"ignore_cache":false}'), +(11574, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.544+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11575, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.581+00', '{"cached":null,"ignore_cache":false}'), +(11576, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.624+00', '{"cached":null,"ignore_cache":false}'), +(11577, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.698+00', '{"cached":null,"ignore_cache":false}'), +(11578, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.733+00', '{"cached":null,"ignore_cache":false}'), +(11579, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.767+00', '{"cached":null,"ignore_cache":false}'), +(11580, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.801+00', '{"cached":null,"ignore_cache":false}'), +(11581, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.836+00', '{"cached":null,"ignore_cache":false}'), +(11582, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.837+00', '{"cached":null,"ignore_cache":false}'), +(11583, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.843+00', '{"cached":null,"ignore_cache":false}'), +(11584, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.851+00', '{"cached":null,"ignore_cache":false}'), +(11585, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:29:42.851+00', '{"cached":null,"ignore_cache":false}'), +(11586, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:38.253+00', '{"cached":null,"ignore_cache":null}'), +(11587, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.346+00', '{"cached":null,"ignore_cache":false}'), +(11588, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.355+00', '{"cached":null,"ignore_cache":false}'), +(11589, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.365+00', '{"cached":null,"ignore_cache":false}'), +(11590, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.77+00', '{"cached":null,"ignore_cache":false}'), +(11591, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.771+00', '{"cached":null,"ignore_cache":false}'), +(11592, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.811+00', '{"cached":null,"ignore_cache":false}'), +(11593, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:30:39.834+00', '{"cached":null,"ignore_cache":false}'), +(11594, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:30.123+00', '{"cached":null,"ignore_cache":null}'), +(11595, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.434+00', '{"cached":null,"ignore_cache":false}'), +(11596, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.933+00', '{"cached":null,"ignore_cache":false}'), +(11597, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.935+00', '{"cached":null,"ignore_cache":false}'), +(11598, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.963+00', '{"cached":null,"ignore_cache":false}'), +(11599, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:31.976+00', '{"cached":null,"ignore_cache":false}'), +(11600, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:32.133+00', '{"cached":null,"ignore_cache":false}'), +(11601, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:32.14+00', '{"cached":null,"ignore_cache":false}'), +(11602, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:32.141+00', '{"cached":null,"ignore_cache":false}'), +(11603, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:32.225+00', '{"cached":null,"ignore_cache":false}'), +(11604, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:36.084+00', '{"cached":null,"ignore_cache":null}'), +(11605, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-21 06:33:37.407+00', '{"cached":null,"ignore_cache":null}'), +(11606, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.065+00', '{"cached":null,"ignore_cache":false}'), +(11607, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.065+00', '{"cached":null,"ignore_cache":false}'), +(11608, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.067+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11609, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.524+00', '{"cached":null,"ignore_cache":false}'), +(11610, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.564+00', '{"cached":null,"ignore_cache":false}'), +(11611, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.726+00', '{"cached":null,"ignore_cache":false}'), +(11612, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.775+00', '{"cached":null,"ignore_cache":false}'), +(11613, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.797+00', '{"cached":null,"ignore_cache":false}'), +(11614, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.799+00', '{"cached":null,"ignore_cache":false}'), +(11615, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.85+00', '{"cached":null,"ignore_cache":false}'), +(11616, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.869+00', '{"cached":null,"ignore_cache":false}'), +(11617, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:16.901+00', '{"cached":null,"ignore_cache":false}'), +(11618, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.014+00', '{"cached":null,"ignore_cache":false}'), +(11619, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.029+00', '{"cached":null,"ignore_cache":false}'), +(11620, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.121+00', '{"cached":null,"ignore_cache":false}'), +(11621, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.13+00', '{"cached":null,"ignore_cache":false}'), +(11622, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.135+00', '{"cached":null,"ignore_cache":false}'), +(11623, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.406+00', '{"cached":null,"ignore_cache":false}'), +(11624, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.484+00', '{"cached":null,"ignore_cache":false}'), +(11625, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.647+00', '{"cached":null,"ignore_cache":false}'), +(11626, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:17.81+00', '{"cached":null,"ignore_cache":false}'), +(11627, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:18.069+00', '{"cached":null,"ignore_cache":false}'), +(11628, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:18.138+00', '{"cached":null,"ignore_cache":false}'), +(11629, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:18.173+00', '{"cached":null,"ignore_cache":false}'), +(11630, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:18.258+00', '{"cached":null,"ignore_cache":false}'), +(11631, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.339+00', '{"cached":null,"ignore_cache":false}'), +(11632, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.379+00', '{"cached":null,"ignore_cache":false}'), +(11633, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.431+00', '{"cached":null,"ignore_cache":false}'), +(11634, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.515+00', '{"cached":null,"ignore_cache":false}'), +(11635, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.527+00', '{"cached":null,"ignore_cache":false}'), +(11636, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.618+00', '{"cached":null,"ignore_cache":false}'), +(11637, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.681+00', '{"cached":null,"ignore_cache":false}'), +(11638, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.714+00', '{"cached":null,"ignore_cache":false}'), +(11639, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.722+00', '{"cached":null,"ignore_cache":false}'), +(11640, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.728+00', '{"cached":null,"ignore_cache":false}'), +(11641, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.763+00', '{"cached":null,"ignore_cache":false}'), +(11642, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.772+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11643, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.787+00', '{"cached":null,"ignore_cache":false}'), +(11644, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.792+00', '{"cached":null,"ignore_cache":false}'), +(11645, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.793+00', '{"cached":null,"ignore_cache":false}'), +(11646, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:39:43.805+00', '{"cached":null,"ignore_cache":false}'), +(11647, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.346+00', '{"cached":null,"ignore_cache":false}'), +(11648, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.422+00', '{"cached":null,"ignore_cache":false}'), +(11649, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.467+00', '{"cached":null,"ignore_cache":false}'), +(11650, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.493+00', '{"cached":null,"ignore_cache":false}'), +(11651, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.551+00', '{"cached":null,"ignore_cache":false}'), +(11652, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.573+00', '{"cached":null,"ignore_cache":false}'), +(11653, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.609+00', '{"cached":null,"ignore_cache":false}'), +(11654, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.64+00', '{"cached":null,"ignore_cache":false}'), +(11655, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.848+00', '{"cached":null,"ignore_cache":false}'), +(11656, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.898+00', '{"cached":null,"ignore_cache":false}'), +(11657, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.932+00', '{"cached":null,"ignore_cache":false}'), +(11658, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.953+00', '{"cached":null,"ignore_cache":false}'), +(11659, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.967+00', '{"cached":null,"ignore_cache":false}'), +(11660, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.986+00', '{"cached":null,"ignore_cache":false}'), +(11661, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.987+00', '{"cached":null,"ignore_cache":false}'), +(11662, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:13.987+00', '{"cached":null,"ignore_cache":false}'), +(11663, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.296+00', '{"cached":null,"ignore_cache":false}'), +(11664, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.532+00', '{"cached":null,"ignore_cache":false}'), +(11665, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.546+00', '{"cached":null,"ignore_cache":false}'), +(11666, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.556+00', '{"cached":null,"ignore_cache":false}'), +(11667, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.576+00', '{"cached":null,"ignore_cache":false}'), +(11668, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.79+00', '{"cached":null,"ignore_cache":false}'), +(11669, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:46.854+00', '{"cached":null,"ignore_cache":false}'), +(11670, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:47.003+00', '{"cached":null,"ignore_cache":false}'), +(11671, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:47.198+00', '{"cached":null,"ignore_cache":false}'), +(11672, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:47.394+00', '{"cached":null,"ignore_cache":false}'), +(11673, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:47.449+00', '{"cached":null,"ignore_cache":false}'), +(11674, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:47.99+00', '{"cached":null,"ignore_cache":false}'), +(11675, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.256+00', '{"cached":null,"ignore_cache":false}'), +(11676, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.361+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11677, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.452+00', '{"cached":null,"ignore_cache":false}'), +(11678, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.635+00', '{"cached":null,"ignore_cache":false}'), +(11679, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.705+00', '{"cached":null,"ignore_cache":false}'), +(11680, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.817+00', '{"cached":null,"ignore_cache":false}'), +(11681, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.964+00', '{"cached":null,"ignore_cache":false}'), +(11682, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.969+00', '{"cached":null,"ignore_cache":false}'), +(11683, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:48.971+00', '{"cached":null,"ignore_cache":false}'), +(11684, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:49.249+00', '{"cached":null,"ignore_cache":false}'), +(11685, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:49.277+00', '{"cached":null,"ignore_cache":false}'), +(11686, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:49.306+00', '{"cached":null,"ignore_cache":false}'), +(11687, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:40:49.908+00', '{"cached":null,"ignore_cache":false}'), +(11688, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:14.735+00', '{"cached":null,"ignore_cache":false}'), +(11689, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.041+00', '{"cached":null,"ignore_cache":false}'), +(11690, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.094+00', '{"cached":null,"ignore_cache":false}'), +(11691, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.106+00', '{"cached":null,"ignore_cache":false}'), +(11692, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.168+00', '{"cached":null,"ignore_cache":false}'), +(11693, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.182+00', '{"cached":null,"ignore_cache":false}'), +(11694, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.189+00', '{"cached":null,"ignore_cache":false}'), +(11695, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.215+00', '{"cached":null,"ignore_cache":false}'), +(11696, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.216+00', '{"cached":null,"ignore_cache":false}'), +(11697, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.223+00', '{"cached":null,"ignore_cache":false}'), +(11698, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.224+00', '{"cached":null,"ignore_cache":false}'), +(11699, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.243+00', '{"cached":null,"ignore_cache":false}'), +(11700, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.26+00', '{"cached":null,"ignore_cache":false}'), +(11701, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.266+00', '{"cached":null,"ignore_cache":false}'), +(11702, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.272+00', '{"cached":null,"ignore_cache":false}'), +(11703, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:15.283+00', '{"cached":null,"ignore_cache":false}'), +(11704, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.056+00', '{"cached":null,"ignore_cache":false}'), +(11705, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.058+00', '{"cached":null,"ignore_cache":false}'), +(11706, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.084+00', '{"cached":null,"ignore_cache":false}'), +(11707, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.092+00', '{"cached":null,"ignore_cache":false}'), +(11708, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.128+00', '{"cached":null,"ignore_cache":false}'), +(11709, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.142+00', '{"cached":null,"ignore_cache":false}'), +(11710, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.17+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11711, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.225+00', '{"cached":null,"ignore_cache":false}'), +(11712, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.462+00', '{"cached":null,"ignore_cache":false}'), +(11713, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.468+00', '{"cached":null,"ignore_cache":false}'), +(11714, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.491+00', '{"cached":null,"ignore_cache":false}'), +(11715, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.598+00', '{"cached":null,"ignore_cache":false}'), +(11716, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.615+00', '{"cached":null,"ignore_cache":false}'), +(11717, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.638+00', '{"cached":null,"ignore_cache":false}'), +(11718, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.649+00', '{"cached":null,"ignore_cache":false}'), +(11719, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:41:45.713+00', '{"cached":null,"ignore_cache":false}'), +(11720, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.314+00', '{"cached":null,"ignore_cache":false}'), +(11721, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.378+00', '{"cached":null,"ignore_cache":false}'), +(11722, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.511+00', '{"cached":null,"ignore_cache":false}'), +(11723, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.521+00', '{"cached":null,"ignore_cache":false}'), +(11724, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.576+00', '{"cached":null,"ignore_cache":false}'), +(11725, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.728+00', '{"cached":null,"ignore_cache":false}'), +(11726, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.738+00', '{"cached":null,"ignore_cache":false}'), +(11727, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.769+00', '{"cached":null,"ignore_cache":false}'), +(11728, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.787+00', '{"cached":null,"ignore_cache":false}'), +(11729, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.787+00', '{"cached":null,"ignore_cache":false}'), +(11730, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.847+00', '{"cached":null,"ignore_cache":false}'), +(11731, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.893+00', '{"cached":null,"ignore_cache":false}'), +(11732, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.965+00', '{"cached":null,"ignore_cache":false}'), +(11733, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.966+00', '{"cached":null,"ignore_cache":false}'), +(11734, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.966+00', '{"cached":null,"ignore_cache":false}'), +(11735, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:15.972+00', '{"cached":null,"ignore_cache":false}'), +(11736, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.789+00', '{"cached":null,"ignore_cache":false}'), +(11737, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.893+00', '{"cached":null,"ignore_cache":false}'), +(11738, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:44.966+00', '{"cached":null,"ignore_cache":false}'), +(11739, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.021+00', '{"cached":null,"ignore_cache":false}'), +(11740, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.059+00', '{"cached":null,"ignore_cache":false}'), +(11741, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.267+00', '{"cached":null,"ignore_cache":false}'), +(11742, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.342+00', '{"cached":null,"ignore_cache":false}'), +(11743, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.353+00', '{"cached":null,"ignore_cache":false}'), +(11744, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.395+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11745, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.411+00', '{"cached":null,"ignore_cache":false}'), +(11746, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.484+00', '{"cached":null,"ignore_cache":false}'), +(11747, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.533+00', '{"cached":null,"ignore_cache":false}'), +(11748, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.557+00', '{"cached":null,"ignore_cache":false}'), +(11749, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.578+00', '{"cached":null,"ignore_cache":false}'), +(11750, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.581+00', '{"cached":null,"ignore_cache":false}'), +(11751, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:42:45.597+00', '{"cached":null,"ignore_cache":false}'), +(11752, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:14.862+00', '{"cached":null,"ignore_cache":false}'), +(11753, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.25+00', '{"cached":null,"ignore_cache":false}'), +(11754, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.465+00', '{"cached":null,"ignore_cache":false}'), +(11755, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.592+00', '{"cached":null,"ignore_cache":false}'), +(11756, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.671+00', '{"cached":null,"ignore_cache":false}'), +(11757, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.736+00', '{"cached":null,"ignore_cache":false}'), +(11758, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.761+00', '{"cached":null,"ignore_cache":false}'), +(11759, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.828+00', '{"cached":null,"ignore_cache":false}'), +(11760, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.851+00', '{"cached":null,"ignore_cache":false}'), +(11761, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.865+00', '{"cached":null,"ignore_cache":false}'), +(11762, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.866+00', '{"cached":null,"ignore_cache":false}'), +(11763, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.907+00', '{"cached":null,"ignore_cache":false}'), +(11764, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.938+00', '{"cached":null,"ignore_cache":false}'), +(11765, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.944+00', '{"cached":null,"ignore_cache":false}'), +(11766, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.98+00', '{"cached":null,"ignore_cache":false}'), +(11767, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:15.992+00', '{"cached":null,"ignore_cache":false}'), +(11768, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.218+00', '{"cached":null,"ignore_cache":false}'), +(11769, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.331+00', '{"cached":null,"ignore_cache":false}'), +(11770, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.566+00', '{"cached":null,"ignore_cache":false}'), +(11771, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.593+00', '{"cached":null,"ignore_cache":false}'), +(11772, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.655+00', '{"cached":null,"ignore_cache":false}'), +(11773, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.656+00', '{"cached":null,"ignore_cache":false}'), +(11774, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.657+00', '{"cached":null,"ignore_cache":false}'), +(11775, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.677+00', '{"cached":null,"ignore_cache":false}'), +(11776, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.693+00', '{"cached":null,"ignore_cache":false}'), +(11777, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.783+00', '{"cached":null,"ignore_cache":false}'), +(11778, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.804+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11779, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.948+00', '{"cached":null,"ignore_cache":false}'), +(11780, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.979+00', '{"cached":null,"ignore_cache":false}'), +(11781, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.99+00', '{"cached":null,"ignore_cache":false}'), +(11782, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:45.991+00', '{"cached":null,"ignore_cache":false}'), +(11783, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:43:46.149+00', '{"cached":null,"ignore_cache":false}'), +(11784, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:07.792+00', '{"cached":null,"ignore_cache":null}'), +(11785, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:08.467+00', '{"cached":null,"ignore_cache":false}'), +(11786, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.189+00', '{"cached":null,"ignore_cache":false}'), +(11787, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.384+00', '{"cached":null,"ignore_cache":false}'), +(11788, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.499+00', '{"cached":null,"ignore_cache":false}'), +(11789, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.57+00', '{"cached":null,"ignore_cache":false}'), +(11790, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.592+00', '{"cached":null,"ignore_cache":false}'), +(11791, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.613+00', '{"cached":null,"ignore_cache":false}'), +(11792, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.617+00', '{"cached":null,"ignore_cache":false}'), +(11793, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.678+00', '{"cached":null,"ignore_cache":false}'), +(11794, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.725+00', '{"cached":null,"ignore_cache":false}'), +(11795, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.748+00', '{"cached":null,"ignore_cache":false}'), +(11796, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.754+00', '{"cached":null,"ignore_cache":false}'), +(11797, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.766+00', '{"cached":null,"ignore_cache":false}'), +(11798, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.775+00', '{"cached":null,"ignore_cache":false}'), +(11799, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.78+00', '{"cached":null,"ignore_cache":false}'), +(11800, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.79+00', '{"cached":null,"ignore_cache":false}'), +(11801, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:15.81+00', '{"cached":null,"ignore_cache":false}'), +(11802, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.017+00', '{"cached":null,"ignore_cache":false}'), +(11803, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.069+00', '{"cached":null,"ignore_cache":false}'), +(11804, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.073+00', '{"cached":null,"ignore_cache":false}'), +(11805, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.103+00', '{"cached":null,"ignore_cache":false}'), +(11806, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.136+00', '{"cached":null,"ignore_cache":false}'), +(11807, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.137+00', '{"cached":null,"ignore_cache":false}'), +(11808, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.23+00', '{"cached":null,"ignore_cache":false}'), +(11809, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.304+00', '{"cached":null,"ignore_cache":false}'), +(11810, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.38+00', '{"cached":null,"ignore_cache":false}'), +(11811, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.381+00', '{"cached":null,"ignore_cache":false}'), +(11812, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.382+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11813, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.392+00', '{"cached":null,"ignore_cache":false}'), +(11814, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.432+00', '{"cached":null,"ignore_cache":false}'), +(11815, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.46+00', '{"cached":null,"ignore_cache":false}'), +(11816, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.534+00', '{"cached":null,"ignore_cache":false}'), +(11817, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:44:45.542+00', '{"cached":null,"ignore_cache":false}'), +(11818, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.569+00', '{"cached":null,"ignore_cache":false}'), +(11819, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.653+00', '{"cached":null,"ignore_cache":false}'), +(11820, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.742+00', '{"cached":null,"ignore_cache":false}'), +(11821, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.76+00', '{"cached":null,"ignore_cache":false}'), +(11822, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.772+00', '{"cached":null,"ignore_cache":false}'), +(11823, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.881+00', '{"cached":null,"ignore_cache":false}'), +(11824, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.911+00', '{"cached":null,"ignore_cache":false}'), +(11825, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.95+00', '{"cached":null,"ignore_cache":false}'), +(11826, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.954+00', '{"cached":null,"ignore_cache":false}'), +(11827, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:15.959+00', '{"cached":null,"ignore_cache":false}'), +(11828, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:16.04+00', '{"cached":null,"ignore_cache":false}'), +(11829, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:16.051+00', '{"cached":null,"ignore_cache":false}'), +(11830, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:16.115+00', '{"cached":null,"ignore_cache":false}'), +(11831, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:16.115+00', '{"cached":null,"ignore_cache":false}'), +(11832, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:16.118+00', '{"cached":null,"ignore_cache":false}'), +(11833, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:16.138+00', '{"cached":null,"ignore_cache":false}'), +(11834, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.321+00', '{"cached":null,"ignore_cache":false}'), +(11835, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.349+00', '{"cached":null,"ignore_cache":false}'), +(11836, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.359+00', '{"cached":null,"ignore_cache":false}'), +(11837, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.387+00', '{"cached":null,"ignore_cache":false}'), +(11838, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.417+00', '{"cached":null,"ignore_cache":false}'), +(11839, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.437+00', '{"cached":null,"ignore_cache":false}'), +(11840, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.465+00', '{"cached":null,"ignore_cache":false}'), +(11841, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.479+00', '{"cached":null,"ignore_cache":false}'), +(11842, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.483+00', '{"cached":null,"ignore_cache":false}'), +(11843, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.492+00', '{"cached":null,"ignore_cache":false}'), +(11844, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.507+00', '{"cached":null,"ignore_cache":false}'), +(11845, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.523+00', '{"cached":null,"ignore_cache":false}'), +(11846, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.527+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11847, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.538+00', '{"cached":null,"ignore_cache":false}'), +(11848, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.544+00', '{"cached":null,"ignore_cache":false}'), +(11849, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:45:45.58+00', '{"cached":null,"ignore_cache":false}'), +(11850, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.369+00', '{"cached":null,"ignore_cache":false}'), +(11851, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.455+00', '{"cached":null,"ignore_cache":false}'), +(11852, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.47+00', '{"cached":null,"ignore_cache":false}'), +(11853, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.513+00', '{"cached":null,"ignore_cache":false}'), +(11854, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.556+00', '{"cached":null,"ignore_cache":false}'), +(11855, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.564+00', '{"cached":null,"ignore_cache":false}'), +(11856, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.57+00', '{"cached":null,"ignore_cache":false}'), +(11857, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.639+00', '{"cached":null,"ignore_cache":false}'), +(11858, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.648+00', '{"cached":null,"ignore_cache":false}'), +(11859, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.662+00', '{"cached":null,"ignore_cache":false}'), +(11860, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.691+00', '{"cached":null,"ignore_cache":false}'), +(11861, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.701+00', '{"cached":null,"ignore_cache":false}'), +(11862, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.752+00', '{"cached":null,"ignore_cache":false}'), +(11863, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.758+00', '{"cached":null,"ignore_cache":false}'), +(11864, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.798+00', '{"cached":null,"ignore_cache":false}'), +(11865, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:15.817+00', '{"cached":null,"ignore_cache":false}'), +(11866, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.481+00', '{"cached":null,"ignore_cache":false}'), +(11867, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.709+00', '{"cached":null,"ignore_cache":false}'), +(11868, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.731+00', '{"cached":null,"ignore_cache":false}'), +(11869, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.733+00', '{"cached":null,"ignore_cache":false}'), +(11870, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.858+00', '{"cached":null,"ignore_cache":false}'), +(11871, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.867+00', '{"cached":null,"ignore_cache":false}'), +(11872, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:45.949+00', '{"cached":null,"ignore_cache":false}'), +(11873, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.013+00', '{"cached":null,"ignore_cache":false}'), +(11874, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.013+00', '{"cached":null,"ignore_cache":false}'), +(11875, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.02+00', '{"cached":null,"ignore_cache":false}'), +(11876, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.065+00', '{"cached":null,"ignore_cache":false}'), +(11877, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.07+00', '{"cached":null,"ignore_cache":false}'), +(11878, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.079+00', '{"cached":null,"ignore_cache":false}'), +(11879, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.11+00', '{"cached":null,"ignore_cache":false}'), +(11880, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.196+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11881, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:46:46.231+00', '{"cached":null,"ignore_cache":false}'), +(11882, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.522+00', '{"cached":null,"ignore_cache":false}'), +(11883, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.584+00', '{"cached":null,"ignore_cache":false}'), +(11884, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.64+00', '{"cached":null,"ignore_cache":false}'), +(11885, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.798+00', '{"cached":null,"ignore_cache":false}'), +(11886, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.849+00', '{"cached":null,"ignore_cache":false}'), +(11887, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.865+00', '{"cached":null,"ignore_cache":false}'), +(11888, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.867+00', '{"cached":null,"ignore_cache":false}'), +(11889, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.907+00', '{"cached":null,"ignore_cache":false}'), +(11890, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.954+00', '{"cached":null,"ignore_cache":false}'), +(11891, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.956+00', '{"cached":null,"ignore_cache":false}'), +(11892, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.958+00', '{"cached":null,"ignore_cache":false}'), +(11893, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:15.961+00', '{"cached":null,"ignore_cache":false}'), +(11894, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:16.003+00', '{"cached":null,"ignore_cache":false}'), +(11895, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:16.023+00', '{"cached":null,"ignore_cache":false}'), +(11896, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:16.025+00', '{"cached":null,"ignore_cache":false}'), +(11897, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:16.101+00', '{"cached":null,"ignore_cache":false}'), +(11898, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.39+00', '{"cached":null,"ignore_cache":false}'), +(11899, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.416+00', '{"cached":null,"ignore_cache":false}'), +(11900, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.614+00', '{"cached":null,"ignore_cache":false}'), +(11901, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.68+00', '{"cached":null,"ignore_cache":false}'), +(11902, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.758+00', '{"cached":null,"ignore_cache":false}'), +(11903, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.774+00', '{"cached":null,"ignore_cache":false}'), +(11904, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.787+00', '{"cached":null,"ignore_cache":false}'), +(11905, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:45.948+00', '{"cached":null,"ignore_cache":false}'), +(11906, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.057+00', '{"cached":null,"ignore_cache":false}'), +(11907, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.129+00', '{"cached":null,"ignore_cache":false}'), +(11908, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.171+00', '{"cached":null,"ignore_cache":false}'), +(11909, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.215+00', '{"cached":null,"ignore_cache":false}'), +(11910, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.225+00', '{"cached":null,"ignore_cache":false}'), +(11911, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.25+00', '{"cached":null,"ignore_cache":false}'), +(11912, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.255+00', '{"cached":null,"ignore_cache":false}'), +(11913, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:47:46.343+00', '{"cached":null,"ignore_cache":false}'), +(11914, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.301+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11915, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.503+00', '{"cached":null,"ignore_cache":false}'), +(11916, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.551+00', '{"cached":null,"ignore_cache":false}'), +(11917, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.617+00', '{"cached":null,"ignore_cache":false}'), +(11918, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.728+00', '{"cached":null,"ignore_cache":false}'), +(11919, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.737+00', '{"cached":null,"ignore_cache":false}'), +(11920, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.759+00', '{"cached":null,"ignore_cache":false}'), +(11921, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.771+00', '{"cached":null,"ignore_cache":false}'), +(11922, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:15.994+00', '{"cached":null,"ignore_cache":false}'), +(11923, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:16.011+00', '{"cached":null,"ignore_cache":false}'), +(11924, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:16.014+00', '{"cached":null,"ignore_cache":false}'), +(11925, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:16.018+00', '{"cached":null,"ignore_cache":false}'), +(11926, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:16.039+00', '{"cached":null,"ignore_cache":false}'), +(11927, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:16.06+00', '{"cached":null,"ignore_cache":false}'), +(11928, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:16.091+00', '{"cached":null,"ignore_cache":false}'), +(11929, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:16.224+00', '{"cached":null,"ignore_cache":false}'), +(11930, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.54+00', '{"cached":null,"ignore_cache":false}'), +(11931, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.621+00', '{"cached":null,"ignore_cache":false}'), +(11932, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.665+00', '{"cached":null,"ignore_cache":false}'), +(11933, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.715+00', '{"cached":null,"ignore_cache":false}'), +(11934, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.729+00', '{"cached":null,"ignore_cache":false}'), +(11935, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.804+00', '{"cached":null,"ignore_cache":false}'), +(11936, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.833+00', '{"cached":null,"ignore_cache":false}'), +(11937, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.885+00', '{"cached":null,"ignore_cache":false}'), +(11938, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.958+00', '{"cached":null,"ignore_cache":false}'), +(11939, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.97+00', '{"cached":null,"ignore_cache":false}'), +(11940, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:45.992+00', '{"cached":null,"ignore_cache":false}'), +(11941, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:46.003+00', '{"cached":null,"ignore_cache":false}'), +(11942, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:46.014+00', '{"cached":null,"ignore_cache":false}'), +(11943, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:46.051+00', '{"cached":null,"ignore_cache":false}'), +(11944, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:46.123+00', '{"cached":null,"ignore_cache":false}'), +(11945, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:48:46.141+00', '{"cached":null,"ignore_cache":false}'), +(11946, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.585+00', '{"cached":null,"ignore_cache":false}'), +(11947, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.68+00', '{"cached":null,"ignore_cache":false}'), +(11948, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.699+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11949, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.739+00', '{"cached":null,"ignore_cache":false}'), +(11950, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.794+00', '{"cached":null,"ignore_cache":false}'), +(11951, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.795+00', '{"cached":null,"ignore_cache":false}'), +(11952, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.848+00', '{"cached":null,"ignore_cache":false}'), +(11953, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.86+00', '{"cached":null,"ignore_cache":false}'), +(11954, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.86+00', '{"cached":null,"ignore_cache":false}'), +(11955, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.891+00', '{"cached":null,"ignore_cache":false}'), +(11956, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.91+00', '{"cached":null,"ignore_cache":false}'), +(11957, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.922+00', '{"cached":null,"ignore_cache":false}'), +(11958, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.938+00', '{"cached":null,"ignore_cache":false}'), +(11959, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.944+00', '{"cached":null,"ignore_cache":false}'), +(11960, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:15.965+00', '{"cached":null,"ignore_cache":false}'), +(11961, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:16.192+00', '{"cached":null,"ignore_cache":false}'), +(11962, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.885+00', '{"cached":null,"ignore_cache":false}'), +(11963, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.915+00', '{"cached":null,"ignore_cache":false}'), +(11964, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:45.981+00', '{"cached":null,"ignore_cache":false}'), +(11965, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.009+00', '{"cached":null,"ignore_cache":false}'), +(11966, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.01+00', '{"cached":null,"ignore_cache":false}'), +(11967, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.028+00', '{"cached":null,"ignore_cache":false}'), +(11968, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.036+00', '{"cached":null,"ignore_cache":false}'), +(11969, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.044+00', '{"cached":null,"ignore_cache":false}'), +(11970, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.116+00', '{"cached":null,"ignore_cache":false}'), +(11971, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.129+00', '{"cached":null,"ignore_cache":false}'), +(11972, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.158+00', '{"cached":null,"ignore_cache":false}'), +(11973, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.171+00', '{"cached":null,"ignore_cache":false}'), +(11974, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.19+00', '{"cached":null,"ignore_cache":false}'), +(11975, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.215+00', '{"cached":null,"ignore_cache":false}'), +(11976, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.22+00', '{"cached":null,"ignore_cache":false}'), +(11977, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:49:46.29+00', '{"cached":null,"ignore_cache":false}'), +(11978, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.273+00', '{"cached":null,"ignore_cache":false}'), +(11979, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.326+00', '{"cached":null,"ignore_cache":false}'), +(11980, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.39+00', '{"cached":null,"ignore_cache":false}'), +(11981, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.406+00', '{"cached":null,"ignore_cache":false}'), +(11982, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.421+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(11983, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.423+00', '{"cached":null,"ignore_cache":false}'), +(11984, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:51.428+00', '{"cached":null,"ignore_cache":false}'), +(11985, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.078+00', '{"cached":null,"ignore_cache":false}'), +(11986, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.122+00', '{"cached":null,"ignore_cache":false}'), +(11987, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.148+00', '{"cached":null,"ignore_cache":false}'), +(11988, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.182+00', '{"cached":null,"ignore_cache":false}'), +(11989, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.24+00', '{"cached":null,"ignore_cache":false}'), +(11990, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.248+00', '{"cached":null,"ignore_cache":false}'), +(11991, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.29+00', '{"cached":null,"ignore_cache":false}'), +(11992, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.313+00', '{"cached":null,"ignore_cache":false}'), +(11993, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:54:52.406+00', '{"cached":null,"ignore_cache":false}'), +(11994, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.329+00', '{"cached":null,"ignore_cache":false}'), +(11995, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.353+00', '{"cached":null,"ignore_cache":false}'), +(11996, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.367+00', '{"cached":null,"ignore_cache":false}'), +(11997, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.382+00', '{"cached":null,"ignore_cache":false}'), +(11998, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.384+00', '{"cached":null,"ignore_cache":false}'), +(11999, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.395+00', '{"cached":null,"ignore_cache":false}'), +(12000, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:21.412+00', '{"cached":null,"ignore_cache":false}'), +(12001, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.052+00', '{"cached":null,"ignore_cache":false}'), +(12002, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.106+00', '{"cached":null,"ignore_cache":false}'), +(12003, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.128+00', '{"cached":null,"ignore_cache":false}'), +(12004, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.133+00', '{"cached":null,"ignore_cache":false}'), +(12005, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.146+00', '{"cached":null,"ignore_cache":false}'), +(12006, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.147+00', '{"cached":null,"ignore_cache":false}'), +(12007, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.195+00', '{"cached":null,"ignore_cache":false}'), +(12008, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.203+00', '{"cached":null,"ignore_cache":false}'), +(12009, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:22.209+00', '{"cached":null,"ignore_cache":false}'), +(12010, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:44.727+00', '{"cached":null,"ignore_cache":null}'), +(12011, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:45.831+00', '{"cached":null,"ignore_cache":false}'), +(12012, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.172+00', '{"cached":null,"ignore_cache":false}'), +(12013, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.238+00', '{"cached":null,"ignore_cache":false}'), +(12014, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.241+00', '{"cached":null,"ignore_cache":false}'), +(12015, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.261+00', '{"cached":null,"ignore_cache":false}'), +(12016, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.306+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12017, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:46.327+00', '{"cached":null,"ignore_cache":false}'), +(12018, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.09+00', '{"cached":null,"ignore_cache":false}'), +(12019, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.139+00', '{"cached":null,"ignore_cache":false}'), +(12020, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.178+00', '{"cached":null,"ignore_cache":false}'), +(12021, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.234+00', '{"cached":null,"ignore_cache":false}'), +(12022, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.26+00', '{"cached":null,"ignore_cache":false}'), +(12023, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.284+00', '{"cached":null,"ignore_cache":false}'), +(12024, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:51.316+00', '{"cached":null,"ignore_cache":false}'), +(12025, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.136+00', '{"cached":null,"ignore_cache":false}'), +(12026, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.171+00', '{"cached":null,"ignore_cache":false}'), +(12027, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.234+00', '{"cached":null,"ignore_cache":false}'), +(12028, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.235+00', '{"cached":null,"ignore_cache":false}'), +(12029, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.249+00', '{"cached":null,"ignore_cache":false}'), +(12030, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.317+00', '{"cached":null,"ignore_cache":false}'), +(12031, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.336+00', '{"cached":null,"ignore_cache":false}'), +(12032, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.358+00', '{"cached":null,"ignore_cache":false}'), +(12033, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:55:52.368+00', '{"cached":null,"ignore_cache":false}'), +(12034, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.917+00', '{"cached":null,"ignore_cache":false}'), +(12035, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:20.956+00', '{"cached":null,"ignore_cache":false}'), +(12036, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.006+00', '{"cached":null,"ignore_cache":false}'), +(12037, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.058+00', '{"cached":null,"ignore_cache":false}'), +(12038, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.075+00', '{"cached":null,"ignore_cache":false}'), +(12039, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.082+00', '{"cached":null,"ignore_cache":false}'), +(12040, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:21.133+00', '{"cached":null,"ignore_cache":false}'), +(12041, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.096+00', '{"cached":null,"ignore_cache":false}'), +(12042, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.245+00', '{"cached":null,"ignore_cache":false}'), +(12043, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.251+00', '{"cached":null,"ignore_cache":false}'), +(12044, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.252+00', '{"cached":null,"ignore_cache":false}'), +(12045, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.464+00', '{"cached":null,"ignore_cache":false}'), +(12046, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.48+00', '{"cached":null,"ignore_cache":false}'), +(12047, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.526+00', '{"cached":null,"ignore_cache":false}'), +(12048, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.59+00', '{"cached":null,"ignore_cache":false}'), +(12049, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:22.615+00', '{"cached":null,"ignore_cache":false}'), +(12050, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.127+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12051, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.228+00', '{"cached":null,"ignore_cache":false}'), +(12052, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.244+00', '{"cached":null,"ignore_cache":false}'), +(12053, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.252+00', '{"cached":null,"ignore_cache":false}'), +(12054, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.252+00', '{"cached":null,"ignore_cache":false}'), +(12055, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.253+00', '{"cached":null,"ignore_cache":false}'), +(12056, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.283+00', '{"cached":null,"ignore_cache":false}'), +(12057, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.85+00', '{"cached":null,"ignore_cache":false}'), +(12058, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:51.996+00', '{"cached":null,"ignore_cache":false}'), +(12059, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:52.115+00', '{"cached":null,"ignore_cache":false}'), +(12060, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:52.15+00', '{"cached":null,"ignore_cache":false}'), +(12061, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:52.168+00', '{"cached":null,"ignore_cache":false}'), +(12062, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:52.183+00', '{"cached":null,"ignore_cache":false}'), +(12063, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:52.239+00', '{"cached":null,"ignore_cache":false}'), +(12064, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:52.252+00', '{"cached":null,"ignore_cache":false}'), +(12065, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:56:52.253+00', '{"cached":null,"ignore_cache":false}'), +(12066, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.04+00', '{"cached":null,"ignore_cache":false}'), +(12067, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.101+00', '{"cached":null,"ignore_cache":false}'), +(12068, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.131+00', '{"cached":null,"ignore_cache":false}'), +(12069, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.159+00', '{"cached":null,"ignore_cache":false}'), +(12070, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.169+00', '{"cached":null,"ignore_cache":false}'), +(12071, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.18+00', '{"cached":null,"ignore_cache":false}'), +(12072, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:21.208+00', '{"cached":null,"ignore_cache":false}'), +(12073, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.115+00', '{"cached":null,"ignore_cache":false}'), +(12074, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.427+00', '{"cached":null,"ignore_cache":false}'), +(12075, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.466+00', '{"cached":null,"ignore_cache":false}'), +(12076, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.544+00', '{"cached":null,"ignore_cache":false}'), +(12077, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.549+00', '{"cached":null,"ignore_cache":false}'), +(12078, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.556+00', '{"cached":null,"ignore_cache":false}'), +(12079, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.577+00', '{"cached":null,"ignore_cache":false}'), +(12080, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.723+00', '{"cached":null,"ignore_cache":false}'), +(12081, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:22.902+00', '{"cached":null,"ignore_cache":false}'), +(12082, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:50.972+00', '{"cached":null,"ignore_cache":false}'), +(12083, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.034+00', '{"cached":null,"ignore_cache":false}'), +(12084, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.061+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12085, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.065+00', '{"cached":null,"ignore_cache":false}'), +(12086, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.066+00', '{"cached":null,"ignore_cache":false}'), +(12087, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.288+00', '{"cached":null,"ignore_cache":false}'), +(12088, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:51.393+00', '{"cached":null,"ignore_cache":false}'), +(12089, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.02+00', '{"cached":null,"ignore_cache":false}'), +(12090, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.05+00', '{"cached":null,"ignore_cache":false}'), +(12091, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.066+00', '{"cached":null,"ignore_cache":false}'), +(12092, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.071+00', '{"cached":null,"ignore_cache":false}'), +(12093, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.117+00', '{"cached":null,"ignore_cache":false}'), +(12094, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.134+00', '{"cached":null,"ignore_cache":false}'), +(12095, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.156+00', '{"cached":null,"ignore_cache":false}'), +(12096, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.19+00', '{"cached":null,"ignore_cache":false}'), +(12097, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:57:52.449+00', '{"cached":null,"ignore_cache":false}'), +(12098, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:20.996+00', '{"cached":null,"ignore_cache":false}'), +(12099, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.029+00', '{"cached":null,"ignore_cache":false}'), +(12100, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.07+00', '{"cached":null,"ignore_cache":false}'), +(12101, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.087+00', '{"cached":null,"ignore_cache":false}'), +(12102, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.091+00', '{"cached":null,"ignore_cache":false}'), +(12103, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.11+00', '{"cached":null,"ignore_cache":false}'), +(12104, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.146+00', '{"cached":null,"ignore_cache":false}'), +(12105, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.883+00', '{"cached":null,"ignore_cache":false}'), +(12106, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:21.973+00', '{"cached":null,"ignore_cache":false}'), +(12107, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.395+00', '{"cached":null,"ignore_cache":false}'), +(12108, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.404+00', '{"cached":null,"ignore_cache":false}'), +(12109, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.446+00', '{"cached":null,"ignore_cache":false}'), +(12110, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.516+00', '{"cached":null,"ignore_cache":false}'), +(12111, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.557+00', '{"cached":null,"ignore_cache":false}'), +(12112, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.592+00', '{"cached":null,"ignore_cache":false}'), +(12113, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:22.606+00', '{"cached":null,"ignore_cache":false}'), +(12114, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.109+00', '{"cached":null,"ignore_cache":false}'), +(12115, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.111+00', '{"cached":null,"ignore_cache":false}'), +(12116, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.136+00', '{"cached":null,"ignore_cache":false}'), +(12117, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.144+00', '{"cached":null,"ignore_cache":false}'), +(12118, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.187+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12119, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.283+00', '{"cached":null,"ignore_cache":false}'), +(12120, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:51.323+00', '{"cached":null,"ignore_cache":false}'), +(12121, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.097+00', '{"cached":null,"ignore_cache":false}'), +(12122, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.288+00', '{"cached":null,"ignore_cache":false}'), +(12123, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.3+00', '{"cached":null,"ignore_cache":false}'), +(12124, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.306+00', '{"cached":null,"ignore_cache":false}'), +(12125, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.318+00', '{"cached":null,"ignore_cache":false}'), +(12126, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.336+00', '{"cached":null,"ignore_cache":false}'), +(12127, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.362+00', '{"cached":null,"ignore_cache":false}'), +(12128, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.407+00', '{"cached":null,"ignore_cache":false}'), +(12129, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:58:52.498+00', '{"cached":null,"ignore_cache":false}'), +(12130, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:20.999+00', '{"cached":null,"ignore_cache":false}'), +(12131, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.046+00', '{"cached":null,"ignore_cache":false}'), +(12132, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.088+00', '{"cached":null,"ignore_cache":false}'), +(12133, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.118+00', '{"cached":null,"ignore_cache":false}'), +(12134, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.152+00', '{"cached":null,"ignore_cache":false}'), +(12135, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.164+00', '{"cached":null,"ignore_cache":false}'), +(12136, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.211+00', '{"cached":null,"ignore_cache":false}'), +(12137, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.911+00', '{"cached":null,"ignore_cache":false}'), +(12138, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.921+00', '{"cached":null,"ignore_cache":false}'), +(12139, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.933+00', '{"cached":null,"ignore_cache":false}'), +(12140, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.97+00', '{"cached":null,"ignore_cache":false}'), +(12141, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:21.975+00', '{"cached":null,"ignore_cache":false}'), +(12142, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:22.006+00', '{"cached":null,"ignore_cache":false}'), +(12143, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:22.041+00', '{"cached":null,"ignore_cache":false}'), +(12144, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:22.052+00', '{"cached":null,"ignore_cache":false}'), +(12145, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:22.07+00', '{"cached":null,"ignore_cache":false}'), +(12146, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.032+00', '{"cached":null,"ignore_cache":false}'), +(12147, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.044+00', '{"cached":null,"ignore_cache":false}'), +(12148, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.048+00', '{"cached":null,"ignore_cache":false}'), +(12149, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.062+00', '{"cached":null,"ignore_cache":false}'), +(12150, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.088+00', '{"cached":null,"ignore_cache":false}'), +(12151, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.097+00', '{"cached":null,"ignore_cache":false}'), +(12152, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.108+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12153, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.895+00', '{"cached":null,"ignore_cache":false}'), +(12154, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.922+00', '{"cached":null,"ignore_cache":false}'), +(12155, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.935+00', '{"cached":null,"ignore_cache":false}'), +(12156, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.947+00', '{"cached":null,"ignore_cache":false}'), +(12157, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.957+00', '{"cached":null,"ignore_cache":false}'), +(12158, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.963+00', '{"cached":null,"ignore_cache":false}'), +(12159, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:51.999+00', '{"cached":null,"ignore_cache":false}'), +(12160, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:52.009+00', '{"cached":null,"ignore_cache":false}'), +(12161, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 06:59:52.022+00', '{"cached":null,"ignore_cache":false}'), +(12162, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.939+00', '{"cached":null,"ignore_cache":false}'), +(12163, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.943+00', '{"cached":null,"ignore_cache":false}'), +(12164, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.959+00', '{"cached":null,"ignore_cache":false}'), +(12165, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.969+00', '{"cached":null,"ignore_cache":false}'), +(12166, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.978+00', '{"cached":null,"ignore_cache":false}'), +(12167, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:20.994+00', '{"cached":null,"ignore_cache":false}'), +(12168, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.001+00', '{"cached":null,"ignore_cache":false}'), +(12169, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.887+00', '{"cached":null,"ignore_cache":false}'), +(12170, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.897+00', '{"cached":null,"ignore_cache":false}'), +(12171, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.906+00', '{"cached":null,"ignore_cache":false}'), +(12172, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.957+00', '{"cached":null,"ignore_cache":false}'), +(12173, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.966+00', '{"cached":null,"ignore_cache":false}'), +(12174, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.98+00', '{"cached":null,"ignore_cache":false}'), +(12175, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:21.993+00', '{"cached":null,"ignore_cache":false}'), +(12176, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:22.02+00', '{"cached":null,"ignore_cache":false}'), +(12177, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:22.029+00', '{"cached":null,"ignore_cache":false}'), +(12178, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.083+00', '{"cached":null,"ignore_cache":false}'), +(12179, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.196+00', '{"cached":null,"ignore_cache":false}'), +(12180, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.216+00', '{"cached":null,"ignore_cache":false}'), +(12181, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.258+00', '{"cached":null,"ignore_cache":false}'), +(12182, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.301+00', '{"cached":null,"ignore_cache":false}'), +(12183, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.315+00', '{"cached":null,"ignore_cache":false}'), +(12184, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.316+00', '{"cached":null,"ignore_cache":false}'), +(12185, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:51.891+00', '{"cached":null,"ignore_cache":false}'), +(12186, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.016+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12187, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.204+00', '{"cached":null,"ignore_cache":false}'), +(12188, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.242+00', '{"cached":null,"ignore_cache":false}'), +(12189, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.276+00', '{"cached":null,"ignore_cache":false}'), +(12190, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.363+00', '{"cached":null,"ignore_cache":false}'), +(12191, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.405+00', '{"cached":null,"ignore_cache":false}'), +(12192, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.411+00', '{"cached":null,"ignore_cache":false}'), +(12193, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:00:52.567+00', '{"cached":null,"ignore_cache":false}'), +(12194, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.071+00', '{"cached":null,"ignore_cache":false}'), +(12195, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.113+00', '{"cached":null,"ignore_cache":false}'), +(12196, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.113+00', '{"cached":null,"ignore_cache":false}'), +(12197, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.133+00', '{"cached":null,"ignore_cache":false}'), +(12198, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.197+00', '{"cached":null,"ignore_cache":false}'), +(12199, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.203+00', '{"cached":null,"ignore_cache":false}'), +(12200, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:21.205+00', '{"cached":null,"ignore_cache":false}'), +(12201, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.077+00', '{"cached":null,"ignore_cache":false}'), +(12202, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.129+00', '{"cached":null,"ignore_cache":false}'), +(12203, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.172+00', '{"cached":null,"ignore_cache":false}'), +(12204, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.175+00', '{"cached":null,"ignore_cache":false}'), +(12205, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.198+00', '{"cached":null,"ignore_cache":false}'), +(12206, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.214+00', '{"cached":null,"ignore_cache":false}'), +(12207, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.237+00', '{"cached":null,"ignore_cache":false}'), +(12208, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.271+00', '{"cached":null,"ignore_cache":false}'), +(12209, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:22.38+00', '{"cached":null,"ignore_cache":false}'), +(12210, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.941+00', '{"cached":null,"ignore_cache":false}'), +(12211, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:50.99+00', '{"cached":null,"ignore_cache":false}'), +(12212, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.003+00', '{"cached":null,"ignore_cache":false}'), +(12213, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.004+00', '{"cached":null,"ignore_cache":false}'), +(12214, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.011+00', '{"cached":null,"ignore_cache":false}'), +(12215, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.013+00', '{"cached":null,"ignore_cache":false}'), +(12216, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.019+00', '{"cached":null,"ignore_cache":false}'), +(12217, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.75+00', '{"cached":null,"ignore_cache":false}'), +(12218, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.841+00', '{"cached":null,"ignore_cache":false}'), +(12219, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.854+00', '{"cached":null,"ignore_cache":false}'), +(12220, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.891+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12221, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.894+00', '{"cached":null,"ignore_cache":false}'), +(12222, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.912+00', '{"cached":null,"ignore_cache":false}'), +(12223, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.929+00', '{"cached":null,"ignore_cache":false}'), +(12224, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.932+00', '{"cached":null,"ignore_cache":false}'), +(12225, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:01:51.975+00', '{"cached":null,"ignore_cache":false}'), +(12226, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.89+00', '{"cached":null,"ignore_cache":false}'), +(12227, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.952+00', '{"cached":null,"ignore_cache":false}'), +(12228, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.958+00', '{"cached":null,"ignore_cache":false}'), +(12229, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.962+00', '{"cached":null,"ignore_cache":false}'), +(12230, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.979+00', '{"cached":null,"ignore_cache":false}'), +(12231, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:20.993+00', '{"cached":null,"ignore_cache":false}'), +(12232, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.058+00', '{"cached":null,"ignore_cache":false}'), +(12233, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.841+00', '{"cached":null,"ignore_cache":false}'), +(12234, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.875+00', '{"cached":null,"ignore_cache":false}'), +(12235, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.888+00', '{"cached":null,"ignore_cache":false}'), +(12236, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.892+00', '{"cached":null,"ignore_cache":false}'), +(12237, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.904+00', '{"cached":null,"ignore_cache":false}'), +(12238, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.906+00', '{"cached":null,"ignore_cache":false}'), +(12239, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.913+00', '{"cached":null,"ignore_cache":false}'), +(12240, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.945+00', '{"cached":null,"ignore_cache":false}'), +(12241, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:21.963+00', '{"cached":null,"ignore_cache":false}'), +(12242, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.094+00', '{"cached":null,"ignore_cache":false}'), +(12243, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.128+00', '{"cached":null,"ignore_cache":false}'), +(12244, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.145+00', '{"cached":null,"ignore_cache":false}'), +(12245, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.178+00', '{"cached":null,"ignore_cache":false}'), +(12246, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.185+00', '{"cached":null,"ignore_cache":false}'), +(12247, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.233+00', '{"cached":null,"ignore_cache":false}'), +(12248, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:51.242+00', '{"cached":null,"ignore_cache":false}'), +(12249, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.129+00', '{"cached":null,"ignore_cache":false}'), +(12250, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.179+00', '{"cached":null,"ignore_cache":false}'), +(12251, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.181+00', '{"cached":null,"ignore_cache":false}'), +(12252, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.184+00', '{"cached":null,"ignore_cache":false}'), +(12253, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.202+00', '{"cached":null,"ignore_cache":false}'), +(12254, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.206+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12255, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.236+00', '{"cached":null,"ignore_cache":false}'), +(12256, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.33+00', '{"cached":null,"ignore_cache":false}'), +(12257, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:02:52.467+00', '{"cached":null,"ignore_cache":false}'), +(12258, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.028+00', '{"cached":null,"ignore_cache":false}'), +(12259, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.067+00', '{"cached":null,"ignore_cache":false}'), +(12260, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.08+00', '{"cached":null,"ignore_cache":false}'), +(12261, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.096+00', '{"cached":null,"ignore_cache":false}'), +(12262, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.169+00', '{"cached":null,"ignore_cache":false}'), +(12263, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.187+00', '{"cached":null,"ignore_cache":false}'), +(12264, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.259+00', '{"cached":null,"ignore_cache":false}'), +(12265, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:21.986+00', '{"cached":null,"ignore_cache":false}'), +(12266, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.04+00', '{"cached":null,"ignore_cache":false}'), +(12267, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.257+00', '{"cached":null,"ignore_cache":false}'), +(12268, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.3+00', '{"cached":null,"ignore_cache":false}'), +(12269, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.307+00', '{"cached":null,"ignore_cache":false}'), +(12270, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.332+00', '{"cached":null,"ignore_cache":false}'), +(12271, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.356+00', '{"cached":null,"ignore_cache":false}'), +(12272, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.386+00', '{"cached":null,"ignore_cache":false}'), +(12273, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:22.411+00', '{"cached":null,"ignore_cache":false}'), +(12274, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.942+00', '{"cached":null,"ignore_cache":false}'), +(12275, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.958+00', '{"cached":null,"ignore_cache":false}'), +(12276, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.967+00', '{"cached":null,"ignore_cache":false}'), +(12277, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.993+00', '{"cached":null,"ignore_cache":false}'), +(12278, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:50.998+00', '{"cached":null,"ignore_cache":false}'), +(12279, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.002+00', '{"cached":null,"ignore_cache":false}'), +(12280, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:51.008+00', '{"cached":null,"ignore_cache":false}'), +(12281, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.006+00', '{"cached":null,"ignore_cache":false}'), +(12282, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.028+00', '{"cached":null,"ignore_cache":false}'), +(12283, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.091+00', '{"cached":null,"ignore_cache":false}'), +(12284, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.094+00', '{"cached":null,"ignore_cache":false}'), +(12285, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.106+00', '{"cached":null,"ignore_cache":false}'), +(12286, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.125+00', '{"cached":null,"ignore_cache":false}'), +(12287, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.139+00', '{"cached":null,"ignore_cache":false}'), +(12288, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.169+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12289, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:03:52.229+00', '{"cached":null,"ignore_cache":false}'), +(12290, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.334+00', '{"cached":null,"ignore_cache":false}'), +(12291, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.39+00', '{"cached":null,"ignore_cache":false}'), +(12292, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.433+00', '{"cached":null,"ignore_cache":false}'), +(12293, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.436+00', '{"cached":null,"ignore_cache":false}'), +(12294, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.451+00', '{"cached":null,"ignore_cache":false}'), +(12295, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.472+00', '{"cached":null,"ignore_cache":false}'), +(12296, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:21.49+00', '{"cached":null,"ignore_cache":false}'), +(12297, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.306+00', '{"cached":null,"ignore_cache":false}'), +(12298, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.393+00', '{"cached":null,"ignore_cache":false}'), +(12299, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.437+00', '{"cached":null,"ignore_cache":false}'), +(12300, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.533+00', '{"cached":null,"ignore_cache":false}'), +(12301, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.535+00', '{"cached":null,"ignore_cache":false}'), +(12302, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.596+00', '{"cached":null,"ignore_cache":false}'), +(12303, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.622+00', '{"cached":null,"ignore_cache":false}'), +(12304, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.648+00', '{"cached":null,"ignore_cache":false}'), +(12305, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:22.73+00', '{"cached":null,"ignore_cache":false}'), +(12306, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.401+00', '{"cached":null,"ignore_cache":false}'), +(12307, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.438+00', '{"cached":null,"ignore_cache":false}'), +(12308, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.454+00', '{"cached":null,"ignore_cache":false}'), +(12309, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.471+00', '{"cached":null,"ignore_cache":false}'), +(12310, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.472+00', '{"cached":null,"ignore_cache":false}'), +(12311, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.497+00', '{"cached":null,"ignore_cache":false}'), +(12312, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:51.502+00', '{"cached":null,"ignore_cache":false}'), +(12313, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.227+00', '{"cached":null,"ignore_cache":false}'), +(12314, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.241+00', '{"cached":null,"ignore_cache":false}'), +(12315, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.245+00', '{"cached":null,"ignore_cache":false}'), +(12316, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.277+00', '{"cached":null,"ignore_cache":false}'), +(12317, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.281+00', '{"cached":null,"ignore_cache":false}'), +(12318, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.286+00', '{"cached":null,"ignore_cache":false}'), +(12319, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.296+00', '{"cached":null,"ignore_cache":false}'), +(12320, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.308+00', '{"cached":null,"ignore_cache":false}'), +(12321, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:04:52.398+00', '{"cached":null,"ignore_cache":false}'), +(12322, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.403+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12323, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.438+00', '{"cached":null,"ignore_cache":false}'), +(12324, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.446+00', '{"cached":null,"ignore_cache":false}'), +(12325, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.491+00', '{"cached":null,"ignore_cache":false}'), +(12326, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.496+00', '{"cached":null,"ignore_cache":false}'), +(12327, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.519+00', '{"cached":null,"ignore_cache":false}'), +(12328, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:21.545+00', '{"cached":null,"ignore_cache":false}'), +(12329, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.143+00', '{"cached":null,"ignore_cache":false}'), +(12330, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.187+00', '{"cached":null,"ignore_cache":false}'), +(12331, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.223+00', '{"cached":null,"ignore_cache":false}'), +(12332, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.224+00', '{"cached":null,"ignore_cache":false}'), +(12333, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.284+00', '{"cached":null,"ignore_cache":false}'), +(12334, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.321+00', '{"cached":null,"ignore_cache":false}'), +(12335, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.338+00', '{"cached":null,"ignore_cache":false}'), +(12336, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.349+00', '{"cached":null,"ignore_cache":false}'), +(12337, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:22.476+00', '{"cached":null,"ignore_cache":false}'), +(12338, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.383+00', '{"cached":null,"ignore_cache":false}'), +(12339, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.44+00', '{"cached":null,"ignore_cache":false}'), +(12340, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.447+00', '{"cached":null,"ignore_cache":false}'), +(12341, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.456+00', '{"cached":null,"ignore_cache":false}'), +(12342, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.478+00', '{"cached":null,"ignore_cache":false}'), +(12343, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.5+00', '{"cached":null,"ignore_cache":false}'), +(12344, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:51.508+00', '{"cached":null,"ignore_cache":false}'), +(12345, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.357+00', '{"cached":null,"ignore_cache":false}'), +(12346, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.407+00', '{"cached":null,"ignore_cache":false}'), +(12347, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.423+00', '{"cached":null,"ignore_cache":false}'), +(12348, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.436+00', '{"cached":null,"ignore_cache":false}'), +(12349, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.448+00', '{"cached":null,"ignore_cache":false}'), +(12350, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.462+00', '{"cached":null,"ignore_cache":false}'), +(12351, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.474+00', '{"cached":null,"ignore_cache":false}'), +(12352, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.504+00', '{"cached":null,"ignore_cache":false}'), +(12353, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:05:52.564+00', '{"cached":null,"ignore_cache":false}'), +(12354, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.547+00', '{"cached":null,"ignore_cache":false}'), +(12355, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.552+00', '{"cached":null,"ignore_cache":false}'), +(12356, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.555+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12357, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.569+00', '{"cached":null,"ignore_cache":false}'), +(12358, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.63+00', '{"cached":null,"ignore_cache":false}'), +(12359, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.665+00', '{"cached":null,"ignore_cache":false}'), +(12360, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:21.675+00', '{"cached":null,"ignore_cache":false}'), +(12361, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.394+00', '{"cached":null,"ignore_cache":false}'), +(12362, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.413+00', '{"cached":null,"ignore_cache":false}'), +(12363, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.446+00', '{"cached":null,"ignore_cache":false}'), +(12364, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.532+00', '{"cached":null,"ignore_cache":false}'), +(12365, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.561+00', '{"cached":null,"ignore_cache":false}'), +(12366, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.62+00', '{"cached":null,"ignore_cache":false}'), +(12367, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.631+00', '{"cached":null,"ignore_cache":false}'), +(12368, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.639+00', '{"cached":null,"ignore_cache":false}'), +(12369, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:22.64+00', '{"cached":null,"ignore_cache":false}'), +(12370, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.422+00', '{"cached":null,"ignore_cache":false}'), +(12371, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.458+00', '{"cached":null,"ignore_cache":false}'), +(12372, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.511+00', '{"cached":null,"ignore_cache":false}'), +(12373, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.516+00', '{"cached":null,"ignore_cache":false}'), +(12374, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.522+00', '{"cached":null,"ignore_cache":false}'), +(12375, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.539+00', '{"cached":null,"ignore_cache":false}'), +(12376, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:51.553+00', '{"cached":null,"ignore_cache":false}'), +(12377, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.684+00', '{"cached":null,"ignore_cache":false}'), +(12378, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.693+00', '{"cached":null,"ignore_cache":false}'), +(12379, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.71+00', '{"cached":null,"ignore_cache":false}'), +(12380, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.843+00', '{"cached":null,"ignore_cache":false}'), +(12381, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.892+00', '{"cached":null,"ignore_cache":false}'), +(12382, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.988+00', '{"cached":null,"ignore_cache":false}'), +(12383, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:52.988+00', '{"cached":null,"ignore_cache":false}'), +(12384, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:53.006+00', '{"cached":null,"ignore_cache":false}'), +(12385, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:06:53.095+00', '{"cached":null,"ignore_cache":false}'), +(12386, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.912+00', '{"cached":null,"ignore_cache":false}'), +(12387, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.974+00', '{"cached":null,"ignore_cache":false}'), +(12388, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:20.982+00', '{"cached":null,"ignore_cache":false}'), +(12389, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.021+00', '{"cached":null,"ignore_cache":false}'), +(12390, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.038+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12391, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.046+00', '{"cached":null,"ignore_cache":false}'), +(12392, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.079+00', '{"cached":null,"ignore_cache":false}'), +(12393, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:21.973+00', '{"cached":null,"ignore_cache":false}'), +(12394, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.064+00', '{"cached":null,"ignore_cache":false}'), +(12395, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.124+00', '{"cached":null,"ignore_cache":false}'), +(12396, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.234+00', '{"cached":null,"ignore_cache":false}'), +(12397, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.236+00', '{"cached":null,"ignore_cache":false}'), +(12398, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.269+00', '{"cached":null,"ignore_cache":false}'), +(12399, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.294+00', '{"cached":null,"ignore_cache":false}'), +(12400, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.311+00', '{"cached":null,"ignore_cache":false}'), +(12401, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:22.38+00', '{"cached":null,"ignore_cache":false}'), +(12402, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.063+00', '{"cached":null,"ignore_cache":false}'), +(12403, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.097+00', '{"cached":null,"ignore_cache":false}'), +(12404, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.116+00', '{"cached":null,"ignore_cache":false}'), +(12405, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.153+00', '{"cached":null,"ignore_cache":false}'), +(12406, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.167+00', '{"cached":null,"ignore_cache":false}'), +(12407, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.179+00', '{"cached":null,"ignore_cache":false}'), +(12408, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.216+00', '{"cached":null,"ignore_cache":false}'), +(12409, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.815+00', '{"cached":null,"ignore_cache":false}'), +(12410, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.864+00', '{"cached":null,"ignore_cache":false}'), +(12411, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:51.894+00', '{"cached":null,"ignore_cache":false}'), +(12412, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:52.044+00', '{"cached":null,"ignore_cache":false}'), +(12413, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:52.14+00', '{"cached":null,"ignore_cache":false}'), +(12414, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:52.174+00', '{"cached":null,"ignore_cache":false}'), +(12415, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:52.185+00', '{"cached":null,"ignore_cache":false}'), +(12416, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:52.236+00', '{"cached":null,"ignore_cache":false}'), +(12417, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:07:52.244+00', '{"cached":null,"ignore_cache":false}'), +(12418, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.176+00', '{"cached":null,"ignore_cache":false}'), +(12419, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.18+00', '{"cached":null,"ignore_cache":false}'), +(12420, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.291+00', '{"cached":null,"ignore_cache":false}'), +(12421, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.301+00', '{"cached":null,"ignore_cache":false}'), +(12422, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.369+00', '{"cached":null,"ignore_cache":false}'), +(12423, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.401+00', '{"cached":null,"ignore_cache":false}'), +(12424, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:21.447+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12425, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.434+00', '{"cached":null,"ignore_cache":false}'), +(12426, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.443+00', '{"cached":null,"ignore_cache":false}'), +(12427, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.552+00', '{"cached":null,"ignore_cache":false}'), +(12428, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.56+00', '{"cached":null,"ignore_cache":false}'), +(12429, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.56+00', '{"cached":null,"ignore_cache":false}'), +(12430, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.643+00', '{"cached":null,"ignore_cache":false}'), +(12431, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.711+00', '{"cached":null,"ignore_cache":false}'), +(12432, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:22.749+00', '{"cached":null,"ignore_cache":false}'), +(12433, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:23.014+00', '{"cached":null,"ignore_cache":false}'), +(12434, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.093+00', '{"cached":null,"ignore_cache":false}'), +(12435, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.107+00', '{"cached":null,"ignore_cache":false}'), +(12436, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.162+00', '{"cached":null,"ignore_cache":false}'), +(12437, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.525+00', '{"cached":null,"ignore_cache":false}'), +(12438, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.564+00', '{"cached":null,"ignore_cache":false}'), +(12439, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.599+00', '{"cached":null,"ignore_cache":false}'), +(12440, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:51.637+00', '{"cached":null,"ignore_cache":false}'), +(12441, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.178+00', '{"cached":null,"ignore_cache":false}'), +(12442, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.279+00', '{"cached":null,"ignore_cache":false}'), +(12443, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.294+00', '{"cached":null,"ignore_cache":false}'), +(12444, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.303+00', '{"cached":null,"ignore_cache":false}'), +(12445, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.318+00', '{"cached":null,"ignore_cache":false}'), +(12446, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.366+00', '{"cached":null,"ignore_cache":false}'), +(12447, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.383+00', '{"cached":null,"ignore_cache":false}'), +(12448, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.387+00', '{"cached":null,"ignore_cache":false}'), +(12449, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:08:52.397+00', '{"cached":null,"ignore_cache":false}'), +(12450, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.446+00', '{"cached":null,"ignore_cache":false}'), +(12451, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.466+00', '{"cached":null,"ignore_cache":false}'), +(12452, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.508+00', '{"cached":null,"ignore_cache":false}'), +(12453, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.53+00', '{"cached":null,"ignore_cache":false}'), +(12454, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.545+00', '{"cached":null,"ignore_cache":false}'), +(12455, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.602+00', '{"cached":null,"ignore_cache":false}'), +(12456, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:21.605+00', '{"cached":null,"ignore_cache":false}'), +(12457, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.193+00', '{"cached":null,"ignore_cache":false}'), +(12458, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.197+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12459, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.236+00', '{"cached":null,"ignore_cache":false}'), +(12460, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.248+00', '{"cached":null,"ignore_cache":false}'), +(12461, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.268+00', '{"cached":null,"ignore_cache":false}'), +(12462, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.28+00', '{"cached":null,"ignore_cache":false}'), +(12463, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.3+00', '{"cached":null,"ignore_cache":false}'), +(12464, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.329+00', '{"cached":null,"ignore_cache":false}'), +(12465, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:22.393+00', '{"cached":null,"ignore_cache":false}'), +(12466, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.375+00', '{"cached":null,"ignore_cache":false}'), +(12467, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.381+00', '{"cached":null,"ignore_cache":false}'), +(12468, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.401+00', '{"cached":null,"ignore_cache":false}'), +(12469, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.41+00', '{"cached":null,"ignore_cache":false}'), +(12470, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.414+00', '{"cached":null,"ignore_cache":false}'), +(12471, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.434+00', '{"cached":null,"ignore_cache":false}'), +(12472, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:51.436+00', '{"cached":null,"ignore_cache":false}'), +(12473, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.091+00', '{"cached":null,"ignore_cache":false}'), +(12474, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.145+00', '{"cached":null,"ignore_cache":false}'), +(12475, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.153+00', '{"cached":null,"ignore_cache":false}'), +(12476, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.161+00', '{"cached":null,"ignore_cache":false}'), +(12477, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.196+00', '{"cached":null,"ignore_cache":false}'), +(12478, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.209+00', '{"cached":null,"ignore_cache":false}'), +(12479, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.217+00', '{"cached":null,"ignore_cache":false}'), +(12480, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.235+00', '{"cached":null,"ignore_cache":false}'), +(12481, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:09:52.297+00', '{"cached":null,"ignore_cache":false}'), +(12482, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.429+00', '{"cached":null,"ignore_cache":false}'), +(12483, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.44+00', '{"cached":null,"ignore_cache":false}'), +(12484, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.51+00', '{"cached":null,"ignore_cache":false}'), +(12485, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.537+00', '{"cached":null,"ignore_cache":false}'), +(12486, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.548+00', '{"cached":null,"ignore_cache":false}'), +(12487, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.585+00', '{"cached":null,"ignore_cache":false}'), +(12488, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:21.594+00', '{"cached":null,"ignore_cache":false}'), +(12489, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.499+00', '{"cached":null,"ignore_cache":false}'), +(12490, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.532+00', '{"cached":null,"ignore_cache":false}'), +(12491, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.552+00', '{"cached":null,"ignore_cache":false}'), +(12492, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.58+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12493, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.586+00', '{"cached":null,"ignore_cache":false}'), +(12494, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.647+00', '{"cached":null,"ignore_cache":false}'), +(12495, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.661+00', '{"cached":null,"ignore_cache":false}'), +(12496, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.722+00', '{"cached":null,"ignore_cache":false}'), +(12497, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:22.802+00', '{"cached":null,"ignore_cache":false}'), +(12498, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.347+00', '{"cached":null,"ignore_cache":false}'), +(12499, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.489+00', '{"cached":null,"ignore_cache":false}'), +(12500, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.608+00', '{"cached":null,"ignore_cache":false}'), +(12501, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.642+00', '{"cached":null,"ignore_cache":false}'), +(12502, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.664+00', '{"cached":null,"ignore_cache":false}'), +(12503, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.669+00', '{"cached":null,"ignore_cache":false}'), +(12504, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:52.746+00', '{"cached":null,"ignore_cache":false}'), +(12505, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.327+00', '{"cached":null,"ignore_cache":false}'), +(12506, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.34+00', '{"cached":null,"ignore_cache":false}'), +(12507, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.379+00', '{"cached":null,"ignore_cache":false}'), +(12508, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.461+00', '{"cached":null,"ignore_cache":false}'), +(12509, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.485+00', '{"cached":null,"ignore_cache":false}'), +(12510, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.522+00', '{"cached":null,"ignore_cache":false}'), +(12511, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.532+00', '{"cached":null,"ignore_cache":false}'), +(12512, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.592+00', '{"cached":null,"ignore_cache":false}'), +(12513, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:10:53.76+00', '{"cached":null,"ignore_cache":false}'), +(12514, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.549+00', '{"cached":null,"ignore_cache":false}'), +(12515, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.604+00', '{"cached":null,"ignore_cache":false}'), +(12516, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.661+00', '{"cached":null,"ignore_cache":false}'), +(12517, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.677+00', '{"cached":null,"ignore_cache":false}'), +(12518, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.692+00', '{"cached":null,"ignore_cache":false}'), +(12519, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.724+00', '{"cached":null,"ignore_cache":false}'), +(12520, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:21.74+00', '{"cached":null,"ignore_cache":false}'), +(12521, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.297+00', '{"cached":null,"ignore_cache":false}'), +(12522, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.36+00', '{"cached":null,"ignore_cache":false}'), +(12523, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.393+00', '{"cached":null,"ignore_cache":false}'), +(12524, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.445+00', '{"cached":null,"ignore_cache":false}'), +(12525, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.466+00', '{"cached":null,"ignore_cache":false}'), +(12526, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.504+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12527, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.534+00', '{"cached":null,"ignore_cache":false}'), +(12528, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.566+00', '{"cached":null,"ignore_cache":false}'), +(12529, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:22.568+00', '{"cached":null,"ignore_cache":false}'), +(12530, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.44+00', '{"cached":null,"ignore_cache":false}'), +(12531, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.447+00', '{"cached":null,"ignore_cache":false}'), +(12532, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.497+00', '{"cached":null,"ignore_cache":false}'), +(12533, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.51+00', '{"cached":null,"ignore_cache":false}'), +(12534, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.544+00', '{"cached":null,"ignore_cache":false}'), +(12535, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.55+00', '{"cached":null,"ignore_cache":false}'), +(12536, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:51.587+00', '{"cached":null,"ignore_cache":false}'), +(12537, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.294+00', '{"cached":null,"ignore_cache":false}'), +(12538, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.374+00', '{"cached":null,"ignore_cache":false}'), +(12539, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.421+00', '{"cached":null,"ignore_cache":false}'), +(12540, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.422+00', '{"cached":null,"ignore_cache":false}'), +(12541, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.562+00', '{"cached":null,"ignore_cache":false}'), +(12542, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.584+00', '{"cached":null,"ignore_cache":false}'), +(12543, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.647+00', '{"cached":null,"ignore_cache":false}'), +(12544, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.656+00', '{"cached":null,"ignore_cache":false}'), +(12545, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:11:52.73+00', '{"cached":null,"ignore_cache":false}'), +(12546, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.195+00', '{"cached":null,"ignore_cache":false}'), +(12547, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.353+00', '{"cached":null,"ignore_cache":false}'), +(12548, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.392+00', '{"cached":null,"ignore_cache":false}'), +(12549, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.404+00', '{"cached":null,"ignore_cache":false}'), +(12550, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.426+00', '{"cached":null,"ignore_cache":false}'), +(12551, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.44+00', '{"cached":null,"ignore_cache":false}'), +(12552, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:21.48+00', '{"cached":null,"ignore_cache":false}'), +(12553, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.486+00', '{"cached":null,"ignore_cache":false}'), +(12554, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.627+00', '{"cached":null,"ignore_cache":false}'), +(12555, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.631+00', '{"cached":null,"ignore_cache":false}'), +(12556, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.653+00', '{"cached":null,"ignore_cache":false}'), +(12557, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.689+00', '{"cached":null,"ignore_cache":false}'), +(12558, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.69+00', '{"cached":null,"ignore_cache":false}'), +(12559, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.789+00', '{"cached":null,"ignore_cache":false}'), +(12560, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.82+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12561, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:22.884+00', '{"cached":null,"ignore_cache":false}'), +(12562, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:34.794+00', '{"cached":null,"ignore_cache":null}'), +(12563, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:35.506+00', '{"cached":null,"ignore_cache":false}'), +(12564, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.532+00', '{"cached":null,"ignore_cache":false}'), +(12565, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.602+00', '{"cached":null,"ignore_cache":false}'), +(12566, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.636+00', '{"cached":null,"ignore_cache":false}'), +(12567, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.636+00', '{"cached":null,"ignore_cache":false}'), +(12568, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.656+00', '{"cached":null,"ignore_cache":false}'), +(12569, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.658+00', '{"cached":null,"ignore_cache":false}'), +(12570, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:51.661+00', '{"cached":null,"ignore_cache":false}'), +(12571, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.427+00', '{"cached":null,"ignore_cache":false}'), +(12572, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.495+00', '{"cached":null,"ignore_cache":false}'), +(12573, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.528+00', '{"cached":null,"ignore_cache":false}'), +(12574, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.566+00', '{"cached":null,"ignore_cache":false}'), +(12575, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.582+00', '{"cached":null,"ignore_cache":false}'), +(12576, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.592+00', '{"cached":null,"ignore_cache":false}'), +(12577, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.596+00', '{"cached":null,"ignore_cache":false}'), +(12578, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.68+00', '{"cached":null,"ignore_cache":false}'), +(12579, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:12:52.738+00', '{"cached":null,"ignore_cache":false}'), +(12580, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:08.319+00', '{"cached":null,"ignore_cache":null}'), +(12581, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:08.823+00', '{"cached":null,"ignore_cache":false}'), +(12582, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:13.521+00', '{"cached":null,"ignore_cache":null}'), +(12583, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:13.998+00', '{"cached":null,"ignore_cache":false}'), +(12584, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:14.229+00', '{"cached":null,"ignore_cache":false}'), +(12585, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:14.238+00', '{"cached":null,"ignore_cache":false}'), +(12586, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:14.255+00', '{"cached":null,"ignore_cache":false}'), +(12587, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:15.106+00', '{"cached":null,"ignore_cache":false}'), +(12588, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:15.132+00', '{"cached":null,"ignore_cache":false}'), +(12589, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:15.142+00', '{"cached":null,"ignore_cache":false}'), +(12590, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.5+00', '{"cached":null,"ignore_cache":false}'), +(12591, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.507+00', '{"cached":null,"ignore_cache":false}'), +(12592, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.566+00', '{"cached":null,"ignore_cache":false}'), +(12593, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.591+00', '{"cached":null,"ignore_cache":false}'), +(12594, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.592+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12595, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.608+00', '{"cached":null,"ignore_cache":false}'), +(12596, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:21.647+00', '{"cached":null,"ignore_cache":false}'), +(12597, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.419+00', '{"cached":null,"ignore_cache":false}'), +(12598, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.498+00', '{"cached":null,"ignore_cache":false}'), +(12599, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.506+00', '{"cached":null,"ignore_cache":false}'), +(12600, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.522+00', '{"cached":null,"ignore_cache":false}'), +(12601, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.566+00', '{"cached":null,"ignore_cache":false}'), +(12602, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.599+00', '{"cached":null,"ignore_cache":false}'), +(12603, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.683+00', '{"cached":null,"ignore_cache":false}'), +(12604, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.71+00', '{"cached":null,"ignore_cache":false}'), +(12605, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:22.733+00', '{"cached":null,"ignore_cache":false}'), +(12606, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.279+00', '{"cached":null,"ignore_cache":false}'), +(12607, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.338+00', '{"cached":null,"ignore_cache":false}'), +(12608, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.35+00', '{"cached":null,"ignore_cache":false}'), +(12609, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.372+00', '{"cached":null,"ignore_cache":false}'), +(12610, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.4+00', '{"cached":null,"ignore_cache":false}'), +(12611, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.406+00', '{"cached":null,"ignore_cache":false}'), +(12612, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:51.45+00', '{"cached":null,"ignore_cache":false}'), +(12613, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.334+00', '{"cached":null,"ignore_cache":false}'), +(12614, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.399+00', '{"cached":null,"ignore_cache":false}'), +(12615, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.432+00', '{"cached":null,"ignore_cache":false}'), +(12616, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.448+00', '{"cached":null,"ignore_cache":false}'), +(12617, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.506+00', '{"cached":null,"ignore_cache":false}'), +(12618, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.558+00', '{"cached":null,"ignore_cache":false}'), +(12619, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.585+00', '{"cached":null,"ignore_cache":false}'), +(12620, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.606+00', '{"cached":null,"ignore_cache":false}'), +(12621, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:13:52.79+00', '{"cached":null,"ignore_cache":false}'), +(12622, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:21:25.527+00', '{"cached":null,"ignore_cache":null}'), +(12623, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:21:26.362+00', '{"cached":null,"ignore_cache":false}'), +(12624, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:21:48.01+00', '{"cached":null,"ignore_cache":null}'), +(12625, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:22:04.869+00', '{"cached":null,"ignore_cache":null}'), +(12626, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:22:06.098+00', '{"cached":null,"ignore_cache":false}'), +(12627, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:22:27.652+00', '{"cached":null,"ignore_cache":null}'), +(12628, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:22:28.129+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12629, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:24:08.594+00', '{"cached":null,"ignore_cache":null}'), +(12630, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:24:09.186+00', '{"cached":null,"ignore_cache":false}'), +(12631, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:24:50.626+00', '{"cached":null,"ignore_cache":null}'), +(12632, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:24:51.874+00', '{"cached":null,"ignore_cache":false}'), +(12633, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:00.695+00', '{"cached":null,"ignore_cache":null}'), +(12634, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.495+00', '{"cached":null,"ignore_cache":false}'), +(12635, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.865+00', '{"cached":null,"ignore_cache":false}'), +(12636, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.915+00', '{"cached":null,"ignore_cache":false}'), +(12637, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.936+00', '{"cached":null,"ignore_cache":false}'), +(12638, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.948+00', '{"cached":null,"ignore_cache":false}'), +(12639, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:01.968+00', '{"cached":null,"ignore_cache":false}'), +(12640, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:02.022+00', '{"cached":null,"ignore_cache":false}'), +(12641, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:25.293+00', '{"cached":null,"ignore_cache":null}'), +(12642, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:25.741+00', '{"cached":null,"ignore_cache":false}'), +(12643, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:25:27.611+00', '{"cached":null,"ignore_cache":false}'), +(12644, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:26:06.2+00', '{"cached":null,"ignore_cache":null}'), +(12645, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:26:08.701+00', '{"cached":null,"ignore_cache":null}'), +(12646, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:26:09.185+00', '{"cached":null,"ignore_cache":false}'), +(12647, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:53.862+00', '{"cached":null,"ignore_cache":null}'), +(12648, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.151+00', '{"cached":null,"ignore_cache":false}'), +(12649, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.198+00', '{"cached":null,"ignore_cache":false}'), +(12650, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.259+00', '{"cached":null,"ignore_cache":false}'), +(12651, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.261+00', '{"cached":null,"ignore_cache":false}'), +(12652, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.363+00', '{"cached":null,"ignore_cache":false}'), +(12653, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.857+00', '{"cached":null,"ignore_cache":false}'), +(12654, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.898+00', '{"cached":null,"ignore_cache":false}'), +(12655, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.905+00', '{"cached":null,"ignore_cache":false}'), +(12656, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:27:55.943+00', '{"cached":null,"ignore_cache":false}'), +(12657, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:30:29.405+00', '{"cached":null,"ignore_cache":null}'), +(12658, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:31:16.078+00', '{"cached":null,"ignore_cache":null}'), +(12659, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:31:41.87+00', '{"cached":null,"ignore_cache":null}'), +(12660, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-21 07:31:42.309+00', '{"cached":null,"ignore_cache":null}'), +(12661, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:08.543+00', '{"cached":null,"ignore_cache":false}'), +(12662, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:15.794+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12663, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.305+00', '{"cached":null,"ignore_cache":false}'), +(12664, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.354+00', '{"cached":null,"ignore_cache":false}'), +(12665, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.587+00', '{"cached":null,"ignore_cache":false}'), +(12666, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.604+00', '{"cached":null,"ignore_cache":false}'), +(12667, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:16.655+00', '{"cached":null,"ignore_cache":false}'), +(12668, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:17.106+00', '{"cached":null,"ignore_cache":false}'), +(12669, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:17.11+00', '{"cached":null,"ignore_cache":false}'), +(12670, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:17.17+00', '{"cached":null,"ignore_cache":false}'), +(12671, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:17.262+00', '{"cached":null,"ignore_cache":false}'), +(12672, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:25.227+00', '{"cached":null,"ignore_cache":null}'), +(12673, 1, 'table', 68, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:25.854+00', '{"cached":null,"ignore_cache":null}'), +(12674, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:39.928+00', '{"cached":null,"ignore_cache":false}'), +(12675, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.118+00', '{"cached":null,"ignore_cache":null}'), +(12676, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.729+00', '{"cached":null,"ignore_cache":false}'), +(12677, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:45.777+00', '{"cached":null,"ignore_cache":false}'), +(12678, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.002+00', '{"cached":null,"ignore_cache":false}'), +(12679, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.026+00', '{"cached":null,"ignore_cache":false}'), +(12680, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.026+00', '{"cached":null,"ignore_cache":false}'), +(12681, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.357+00', '{"cached":null,"ignore_cache":false}'), +(12682, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.459+00', '{"cached":null,"ignore_cache":false}'), +(12683, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.494+00', '{"cached":null,"ignore_cache":false}'), +(12684, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:46.578+00', '{"cached":null,"ignore_cache":false}'), +(12685, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:33:28.109+00', '{"cached":null,"ignore_cache":null}'), +(12686, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:03.143+00', '{"cached":null,"ignore_cache":null}'), +(12687, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:18.93+00', '{"cached":null,"ignore_cache":null}'), +(12688, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.647+00', '{"cached":null,"ignore_cache":false}'), +(12689, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.721+00', '{"cached":null,"ignore_cache":false}'), +(12690, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.861+00', '{"cached":null,"ignore_cache":false}'), +(12691, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.864+00', '{"cached":null,"ignore_cache":false}'), +(12692, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.869+00', '{"cached":null,"ignore_cache":false}'), +(12693, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.87+00', '{"cached":null,"ignore_cache":false}'), +(12694, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.874+00', '{"cached":null,"ignore_cache":false}'), +(12695, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:33.881+00', '{"cached":null,"ignore_cache":false}'), +(12696, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:34:34.01+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12697, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.19+00', '{"cached":null,"ignore_cache":false}'), +(12698, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.195+00', '{"cached":null,"ignore_cache":false}'), +(12699, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.306+00', '{"cached":null,"ignore_cache":false}'), +(12700, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.375+00', '{"cached":null,"ignore_cache":false}'), +(12701, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.379+00', '{"cached":null,"ignore_cache":false}'), +(12702, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.39+00', '{"cached":null,"ignore_cache":false}'), +(12703, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.417+00', '{"cached":null,"ignore_cache":false}'), +(12704, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.424+00', '{"cached":null,"ignore_cache":false}'), +(12705, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:35:18.622+00', '{"cached":null,"ignore_cache":false}'), +(12706, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:20.683+00', '{"cached":null,"ignore_cache":null}'), +(12707, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.49+00', '{"cached":null,"ignore_cache":false}'), +(12708, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.538+00', '{"cached":null,"ignore_cache":false}'), +(12709, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.538+00', '{"cached":null,"ignore_cache":false}'), +(12710, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.655+00', '{"cached":null,"ignore_cache":false}'), +(12711, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:21.667+00', '{"cached":null,"ignore_cache":false}'), +(12712, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:22.955+00', '{"cached":null,"ignore_cache":false}'), +(12713, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:22.974+00', '{"cached":null,"ignore_cache":false}'), +(12714, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:23.034+00', '{"cached":null,"ignore_cache":false}'), +(12715, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:23.049+00', '{"cached":null,"ignore_cache":false}'), +(12716, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:34.203+00', '{"cached":null,"ignore_cache":null}'), +(12717, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:34.62+00', '{"cached":null,"ignore_cache":false}'), +(12718, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.401+00', '{"cached":null,"ignore_cache":false}'), +(12719, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.422+00', '{"cached":null,"ignore_cache":false}'), +(12720, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.439+00', '{"cached":null,"ignore_cache":false}'), +(12721, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.542+00', '{"cached":null,"ignore_cache":false}'), +(12722, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.546+00', '{"cached":null,"ignore_cache":false}'), +(12723, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 07:40:35.57+00', '{"cached":null,"ignore_cache":false}'), +(12724, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 07:59:13.762+00', '{"cached":null,"ignore_cache":null}'), +(12725, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-21 07:59:14.186+00', '{"cached":null,"ignore_cache":null}'), +(12726, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:13.782+00', '{"cached":null,"ignore_cache":null}'), +(12727, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.269+00', '{"cached":null,"ignore_cache":false}'), +(12728, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.271+00', '{"cached":null,"ignore_cache":false}'), +(12729, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.281+00', '{"cached":null,"ignore_cache":false}'), +(12730, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.322+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12731, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.55+00', '{"cached":null,"ignore_cache":false}'), +(12732, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.552+00', '{"cached":null,"ignore_cache":false}'), +(12733, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:14.578+00', '{"cached":null,"ignore_cache":false}'), +(12734, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:19.21+00', '{"cached":null,"ignore_cache":null}'), +(12735, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:19.722+00', '{"cached":null,"ignore_cache":false}'), +(12736, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.405+00', '{"cached":null,"ignore_cache":null}'), +(12737, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.847+00', '{"cached":null,"ignore_cache":false}'), +(12738, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.855+00', '{"cached":null,"ignore_cache":false}'), +(12739, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.878+00', '{"cached":null,"ignore_cache":false}'), +(12740, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:34.892+00', '{"cached":null,"ignore_cache":false}'), +(12741, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:35.132+00', '{"cached":null,"ignore_cache":false}'), +(12742, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:35.167+00', '{"cached":null,"ignore_cache":false}'), +(12743, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 08:00:35.194+00', '{"cached":null,"ignore_cache":false}'), +(12744, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:49.923+00', '{"cached":null,"ignore_cache":null}'), +(12745, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.662+00', '{"cached":null,"ignore_cache":false}'), +(12746, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.746+00', '{"cached":null,"ignore_cache":false}'), +(12747, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.785+00', '{"cached":null,"ignore_cache":false}'), +(12748, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.788+00', '{"cached":null,"ignore_cache":false}'), +(12749, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.833+00', '{"cached":null,"ignore_cache":false}'), +(12750, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.852+00', '{"cached":null,"ignore_cache":false}'), +(12751, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.881+00', '{"cached":null,"ignore_cache":false}'), +(12752, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:50.935+00', '{"cached":null,"ignore_cache":false}'), +(12753, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 08:04:51.024+00', '{"cached":null,"ignore_cache":false}'), +(12754, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.244+00', '{"cached":null,"ignore_cache":null}'), +(12755, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.735+00', '{"cached":null,"ignore_cache":false}'), +(12756, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.747+00', '{"cached":null,"ignore_cache":false}'), +(12757, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.75+00', '{"cached":null,"ignore_cache":false}'), +(12758, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.76+00', '{"cached":null,"ignore_cache":false}'), +(12759, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:38.78+00', '{"cached":null,"ignore_cache":false}'), +(12760, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:39.716+00', '{"cached":null,"ignore_cache":false}'), +(12761, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 08:13:39.732+00', '{"cached":null,"ignore_cache":false}'), +(12762, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.221+00', '{"cached":null,"ignore_cache":null}'), +(12763, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.789+00', '{"cached":null,"ignore_cache":false}'), +(12764, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.79+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12765, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.793+00', '{"cached":null,"ignore_cache":false}'), +(12766, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:28.802+00', '{"cached":null,"ignore_cache":false}'), +(12767, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:29.028+00', '{"cached":null,"ignore_cache":false}'), +(12768, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:29.033+00', '{"cached":null,"ignore_cache":false}'), +(12769, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:29.105+00', '{"cached":null,"ignore_cache":false}'), +(12770, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:31.826+00', '{"cached":null,"ignore_cache":null}'), +(12771, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:06:32.41+00', '{"cached":null,"ignore_cache":false}'), +(12772, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:30.952+00', '{"cached":null,"ignore_cache":null}'), +(12773, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:31.439+00', '{"cached":null,"ignore_cache":false}'), +(12774, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:42.838+00', '{"cached":null,"ignore_cache":null}'), +(12775, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:43.311+00', '{"cached":null,"ignore_cache":false}'), +(12776, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.298+00', '{"cached":null,"ignore_cache":null}'), +(12777, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.899+00', '{"cached":null,"ignore_cache":false}'), +(12778, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.904+00', '{"cached":null,"ignore_cache":false}'), +(12779, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:58.916+00', '{"cached":null,"ignore_cache":false}'), +(12780, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.08+00', '{"cached":null,"ignore_cache":false}'), +(12781, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.093+00', '{"cached":null,"ignore_cache":false}'), +(12782, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.307+00', '{"cached":null,"ignore_cache":false}'), +(12783, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.333+00', '{"cached":null,"ignore_cache":false}'), +(12784, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.361+00', '{"cached":null,"ignore_cache":false}'), +(12785, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:07:59.425+00', '{"cached":null,"ignore_cache":false}'), +(12786, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:30.041+00', '{"cached":null,"ignore_cache":null}'), +(12787, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:30.574+00', '{"cached":null,"ignore_cache":false}'), +(12788, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:56.979+00', '{"cached":null,"ignore_cache":null}'), +(12789, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.458+00', '{"cached":null,"ignore_cache":false}'), +(12790, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.49+00', '{"cached":null,"ignore_cache":false}'), +(12791, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.568+00', '{"cached":null,"ignore_cache":false}'), +(12792, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:57.969+00', '{"cached":null,"ignore_cache":false}'), +(12793, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:58.066+00', '{"cached":null,"ignore_cache":false}'), +(12794, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:58.067+00', '{"cached":null,"ignore_cache":false}'), +(12795, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:58.109+00', '{"cached":null,"ignore_cache":false}'), +(12796, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:58.145+00', '{"cached":null,"ignore_cache":false}'), +(12797, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:58.207+00', '{"cached":null,"ignore_cache":false}'), +(12798, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:08:59.468+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12799, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:09:01.135+00', '{"cached":null,"ignore_cache":false}'), +(12800, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:01.058+00', '{"cached":null,"ignore_cache":null}'), +(12801, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:01.552+00', '{"cached":null,"ignore_cache":false}'), +(12802, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:13.807+00', '{"cached":null,"ignore_cache":null}'), +(12803, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.401+00', '{"cached":null,"ignore_cache":false}'), +(12804, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.402+00', '{"cached":null,"ignore_cache":false}'), +(12805, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.427+00', '{"cached":null,"ignore_cache":false}'), +(12806, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.91+00', '{"cached":null,"ignore_cache":false}'), +(12807, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:14.994+00', '{"cached":null,"ignore_cache":false}'), +(12808, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:15.005+00', '{"cached":null,"ignore_cache":false}'), +(12809, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:15.022+00', '{"cached":null,"ignore_cache":false}'), +(12810, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:15.031+00', '{"cached":null,"ignore_cache":false}'), +(12811, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:15.066+00', '{"cached":null,"ignore_cache":false}'), +(12812, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:22.112+00', '{"cached":null,"ignore_cache":null}'), +(12813, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:22.518+00', '{"cached":null,"ignore_cache":null}'), +(12814, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.107+00', '{"cached":null,"ignore_cache":null}'), +(12815, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.578+00', '{"cached":null,"ignore_cache":false}'), +(12816, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:25.674+00', '{"cached":null,"ignore_cache":false}'), +(12817, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.12+00', '{"cached":null,"ignore_cache":false}'), +(12818, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.237+00', '{"cached":null,"ignore_cache":false}'), +(12819, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.242+00', '{"cached":null,"ignore_cache":false}'), +(12820, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.251+00', '{"cached":null,"ignore_cache":false}'), +(12821, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.3+00', '{"cached":null,"ignore_cache":false}'), +(12822, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.374+00', '{"cached":null,"ignore_cache":false}'), +(12823, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:26.466+00', '{"cached":null,"ignore_cache":false}'), +(12824, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:27.481+00', '{"cached":null,"ignore_cache":null}'), +(12825, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:28.056+00', '{"cached":null,"ignore_cache":false}'), +(12826, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:43.499+00', '{"cached":null,"ignore_cache":null}'), +(12827, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.129+00', '{"cached":null,"ignore_cache":false}'), +(12828, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.137+00', '{"cached":null,"ignore_cache":false}'), +(12829, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.182+00', '{"cached":null,"ignore_cache":false}'), +(12830, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.73+00', '{"cached":null,"ignore_cache":false}'), +(12831, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.799+00', '{"cached":null,"ignore_cache":false}'), +(12832, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.874+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12833, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.885+00', '{"cached":null,"ignore_cache":false}'), +(12834, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:44.932+00', '{"cached":null,"ignore_cache":false}'), +(12835, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:45.115+00', '{"cached":null,"ignore_cache":false}'), +(12836, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.241+00', '{"cached":null,"ignore_cache":null}'), +(12837, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.712+00', '{"cached":null,"ignore_cache":false}'), +(12838, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.764+00', '{"cached":null,"ignore_cache":false}'), +(12839, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.83+00', '{"cached":null,"ignore_cache":false}'), +(12840, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:47.855+00', '{"cached":null,"ignore_cache":false}'), +(12841, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.229+00', '{"cached":null,"ignore_cache":false}'), +(12842, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.264+00', '{"cached":null,"ignore_cache":false}'), +(12843, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.298+00', '{"cached":null,"ignore_cache":false}'), +(12844, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:48.857+00', '{"cached":null,"ignore_cache":false}'), +(12845, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:49.008+00', '{"cached":null,"ignore_cache":false}'), +(12846, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:54.541+00', '{"cached":null,"ignore_cache":null}'), +(12847, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:12:55.016+00', '{"cached":null,"ignore_cache":false}'), +(12848, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.056+00', '{"cached":null,"ignore_cache":null}'), +(12849, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.617+00', '{"cached":null,"ignore_cache":false}'), +(12850, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.643+00', '{"cached":null,"ignore_cache":false}'), +(12851, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.723+00', '{"cached":null,"ignore_cache":false}'), +(12852, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.728+00', '{"cached":null,"ignore_cache":false}'), +(12853, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.852+00', '{"cached":null,"ignore_cache":false}'), +(12854, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.886+00', '{"cached":null,"ignore_cache":false}'), +(12855, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.911+00', '{"cached":null,"ignore_cache":false}'), +(12856, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:14.957+00', '{"cached":null,"ignore_cache":false}'), +(12857, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:15.012+00', '{"cached":null,"ignore_cache":false}'), +(12858, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:17.906+00', '{"cached":null,"ignore_cache":null}'), +(12859, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:18.31+00', '{"cached":null,"ignore_cache":null}'), +(12860, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.397+00', '{"cached":null,"ignore_cache":null}'), +(12861, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.827+00', '{"cached":null,"ignore_cache":false}'), +(12862, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.847+00', '{"cached":null,"ignore_cache":false}'), +(12863, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.848+00', '{"cached":null,"ignore_cache":false}'), +(12864, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:20.862+00', '{"cached":null,"ignore_cache":false}'), +(12865, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.137+00', '{"cached":null,"ignore_cache":false}'), +(12866, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.152+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12867, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.167+00', '{"cached":null,"ignore_cache":false}'), +(12868, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.203+00', '{"cached":null,"ignore_cache":false}'), +(12869, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:17:21.267+00', '{"cached":null,"ignore_cache":false}'), +(12870, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:20:04.216+00', '{"cached":null,"ignore_cache":null}'), +(12871, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:20:04.732+00', '{"cached":null,"ignore_cache":false}'), +(12872, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:51.359+00', '{"cached":null,"ignore_cache":false}'), +(12873, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.838+00', '{"cached":null,"ignore_cache":false}'), +(12874, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.839+00', '{"cached":null,"ignore_cache":false}'), +(12875, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.84+00', '{"cached":null,"ignore_cache":false}'), +(12876, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.841+00', '{"cached":null,"ignore_cache":false}'), +(12877, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.842+00', '{"cached":null,"ignore_cache":false}'), +(12878, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.844+00', '{"cached":null,"ignore_cache":false}'), +(12879, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.845+00', '{"cached":null,"ignore_cache":false}'), +(12880, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.846+00', '{"cached":null,"ignore_cache":false}'), +(12881, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.846+00', '{"cached":null,"ignore_cache":false}'), +(12882, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:52.847+00', '{"cached":null,"ignore_cache":false}'), +(12883, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.042+00', '{"cached":null,"ignore_cache":false}'), +(12884, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.108+00', '{"cached":null,"ignore_cache":false}'), +(12885, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.139+00', '{"cached":null,"ignore_cache":false}'), +(12886, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.14+00', '{"cached":null,"ignore_cache":false}'), +(12887, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.159+00', '{"cached":null,"ignore_cache":false}'), +(12888, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.16+00', '{"cached":null,"ignore_cache":false}'), +(12889, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.23+00', '{"cached":null,"ignore_cache":false}'), +(12890, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.249+00', '{"cached":null,"ignore_cache":false}'), +(12891, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.394+00', '{"cached":null,"ignore_cache":false}'), +(12892, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.498+00', '{"cached":null,"ignore_cache":false}'), +(12893, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.516+00', '{"cached":null,"ignore_cache":false}'), +(12894, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.534+00', '{"cached":null,"ignore_cache":false}'), +(12895, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:34:53.607+00', '{"cached":null,"ignore_cache":false}'), +(12896, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.718+00', '{"cached":null,"ignore_cache":false}'), +(12897, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.785+00', '{"cached":null,"ignore_cache":false}'), +(12898, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.917+00', '{"cached":null,"ignore_cache":false}'), +(12899, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:21.994+00', '{"cached":null,"ignore_cache":false}'), +(12900, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.034+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12901, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.064+00', '{"cached":null,"ignore_cache":false}'), +(12902, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.261+00', '{"cached":null,"ignore_cache":false}'), +(12903, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.29+00', '{"cached":null,"ignore_cache":false}'), +(12904, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.29+00', '{"cached":null,"ignore_cache":false}'), +(12905, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.341+00', '{"cached":null,"ignore_cache":false}'), +(12906, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.349+00', '{"cached":null,"ignore_cache":false}'), +(12907, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.383+00', '{"cached":null,"ignore_cache":false}'), +(12908, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.413+00', '{"cached":null,"ignore_cache":false}'), +(12909, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.434+00', '{"cached":null,"ignore_cache":false}'), +(12910, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.438+00', '{"cached":null,"ignore_cache":false}'), +(12911, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:22.453+00', '{"cached":null,"ignore_cache":false}'), +(12912, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:35.126+00', '{"cached":null,"ignore_cache":null}'), +(12913, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:35.61+00', '{"cached":null,"ignore_cache":false}'), +(12914, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:39.558+00', '{"cached":null,"ignore_cache":null}'), +(12915, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.358+00', '{"cached":null,"ignore_cache":false}'), +(12916, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.39+00', '{"cached":null,"ignore_cache":false}'), +(12917, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.455+00', '{"cached":null,"ignore_cache":false}'), +(12918, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.488+00', '{"cached":null,"ignore_cache":false}'), +(12919, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.505+00', '{"cached":null,"ignore_cache":false}'), +(12920, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.701+00', '{"cached":null,"ignore_cache":false}'), +(12921, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:40.783+00', '{"cached":null,"ignore_cache":false}'), +(12922, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.026+00', '{"cached":null,"ignore_cache":false}'), +(12923, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.036+00', '{"cached":null,"ignore_cache":false}'), +(12924, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.202+00', '{"cached":null,"ignore_cache":false}'), +(12925, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.299+00', '{"cached":null,"ignore_cache":false}'), +(12926, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.334+00', '{"cached":null,"ignore_cache":false}'), +(12927, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.39+00', '{"cached":null,"ignore_cache":false}'), +(12928, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.617+00', '{"cached":null,"ignore_cache":false}'), +(12929, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.758+00', '{"cached":null,"ignore_cache":false}'), +(12930, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.85+00', '{"cached":null,"ignore_cache":false}'), +(12931, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.873+00', '{"cached":null,"ignore_cache":false}'), +(12932, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.873+00', '{"cached":null,"ignore_cache":false}'), +(12933, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.901+00', '{"cached":null,"ignore_cache":false}'), +(12934, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.958+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12935, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.978+00', '{"cached":null,"ignore_cache":false}'), +(12936, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:51.998+00', '{"cached":null,"ignore_cache":false}'), +(12937, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:35:52.021+00', '{"cached":null,"ignore_cache":false}'), +(12938, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.721+00', '{"cached":null,"ignore_cache":false}'), +(12939, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.773+00', '{"cached":null,"ignore_cache":false}'), +(12940, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.775+00', '{"cached":null,"ignore_cache":false}'), +(12941, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.8+00', '{"cached":null,"ignore_cache":false}'), +(12942, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.838+00', '{"cached":null,"ignore_cache":false}'), +(12943, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.948+00', '{"cached":null,"ignore_cache":false}'), +(12944, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.971+00', '{"cached":null,"ignore_cache":false}'), +(12945, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:20.99+00', '{"cached":null,"ignore_cache":false}'), +(12946, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.247+00', '{"cached":null,"ignore_cache":false}'), +(12947, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.279+00', '{"cached":null,"ignore_cache":false}'), +(12948, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.325+00', '{"cached":null,"ignore_cache":false}'), +(12949, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.35+00', '{"cached":null,"ignore_cache":false}'), +(12950, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.364+00', '{"cached":null,"ignore_cache":false}'), +(12951, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.401+00', '{"cached":null,"ignore_cache":false}'), +(12952, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.402+00', '{"cached":null,"ignore_cache":false}'), +(12953, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:21.403+00', '{"cached":null,"ignore_cache":false}'), +(12954, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.031+00', '{"cached":null,"ignore_cache":false}'), +(12955, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.138+00', '{"cached":null,"ignore_cache":false}'), +(12956, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.191+00', '{"cached":null,"ignore_cache":false}'), +(12957, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.205+00', '{"cached":null,"ignore_cache":false}'), +(12958, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.33+00', '{"cached":null,"ignore_cache":false}'), +(12959, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.353+00', '{"cached":null,"ignore_cache":false}'), +(12960, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.41+00', '{"cached":null,"ignore_cache":false}'), +(12961, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.414+00', '{"cached":null,"ignore_cache":false}'), +(12962, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.541+00', '{"cached":null,"ignore_cache":false}'), +(12963, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.604+00', '{"cached":null,"ignore_cache":false}'), +(12964, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.619+00', '{"cached":null,"ignore_cache":false}'), +(12965, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.757+00', '{"cached":null,"ignore_cache":false}'), +(12966, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.832+00', '{"cached":null,"ignore_cache":false}'), +(12967, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.833+00', '{"cached":null,"ignore_cache":false}'), +(12968, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.885+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(12969, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:36:51.891+00', '{"cached":null,"ignore_cache":false}'), +(12970, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.786+00', '{"cached":null,"ignore_cache":false}'), +(12971, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.959+00', '{"cached":null,"ignore_cache":false}'), +(12972, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:20.992+00', '{"cached":null,"ignore_cache":false}'), +(12973, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.055+00', '{"cached":null,"ignore_cache":false}'), +(12974, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.121+00', '{"cached":null,"ignore_cache":false}'), +(12975, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.27+00', '{"cached":null,"ignore_cache":false}'), +(12976, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.3+00', '{"cached":null,"ignore_cache":false}'), +(12977, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.57+00', '{"cached":null,"ignore_cache":false}'), +(12978, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.572+00', '{"cached":null,"ignore_cache":false}'), +(12979, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.6+00', '{"cached":null,"ignore_cache":false}'), +(12980, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.601+00', '{"cached":null,"ignore_cache":false}'), +(12981, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.623+00', '{"cached":null,"ignore_cache":false}'), +(12982, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.698+00', '{"cached":null,"ignore_cache":false}'), +(12983, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.707+00', '{"cached":null,"ignore_cache":false}'), +(12984, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.729+00', '{"cached":null,"ignore_cache":false}'), +(12985, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:21.73+00', '{"cached":null,"ignore_cache":false}'), +(12986, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.792+00', '{"cached":null,"ignore_cache":false}'), +(12987, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.811+00', '{"cached":null,"ignore_cache":false}'), +(12988, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.83+00', '{"cached":null,"ignore_cache":false}'), +(12989, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.842+00', '{"cached":null,"ignore_cache":false}'), +(12990, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.847+00', '{"cached":null,"ignore_cache":false}'), +(12991, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.86+00', '{"cached":null,"ignore_cache":false}'), +(12992, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.863+00', '{"cached":null,"ignore_cache":false}'), +(12993, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.889+00', '{"cached":null,"ignore_cache":false}'), +(12994, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:50.898+00', '{"cached":null,"ignore_cache":false}'), +(12995, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.065+00', '{"cached":null,"ignore_cache":false}'), +(12996, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.069+00', '{"cached":null,"ignore_cache":false}'), +(12997, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.088+00', '{"cached":null,"ignore_cache":false}'), +(12998, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.11+00', '{"cached":null,"ignore_cache":false}'), +(12999, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.111+00', '{"cached":null,"ignore_cache":false}'), +(13000, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.116+00', '{"cached":null,"ignore_cache":false}'), +(13001, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:37:51.123+00', '{"cached":null,"ignore_cache":false}'), +(13002, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.892+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13003, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.931+00', '{"cached":null,"ignore_cache":false}'), +(13004, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.965+00', '{"cached":null,"ignore_cache":false}'), +(13005, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.968+00', '{"cached":null,"ignore_cache":false}'), +(13006, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:20.985+00', '{"cached":null,"ignore_cache":false}'), +(13007, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.165+00', '{"cached":null,"ignore_cache":false}'), +(13008, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.203+00', '{"cached":null,"ignore_cache":false}'), +(13009, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.34+00', '{"cached":null,"ignore_cache":false}'), +(13010, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.38+00', '{"cached":null,"ignore_cache":false}'), +(13011, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.387+00', '{"cached":null,"ignore_cache":false}'), +(13012, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.431+00', '{"cached":null,"ignore_cache":false}'), +(13013, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.439+00', '{"cached":null,"ignore_cache":false}'), +(13014, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.448+00', '{"cached":null,"ignore_cache":false}'), +(13015, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.456+00', '{"cached":null,"ignore_cache":false}'), +(13016, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.484+00', '{"cached":null,"ignore_cache":false}'), +(13017, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:21.518+00', '{"cached":null,"ignore_cache":false}'), +(13018, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:50.868+00', '{"cached":null,"ignore_cache":false}'), +(13019, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.025+00', '{"cached":null,"ignore_cache":false}'), +(13020, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.03+00', '{"cached":null,"ignore_cache":false}'), +(13021, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.078+00', '{"cached":null,"ignore_cache":false}'), +(13022, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.121+00', '{"cached":null,"ignore_cache":false}'), +(13023, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.122+00', '{"cached":null,"ignore_cache":false}'), +(13024, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.305+00', '{"cached":null,"ignore_cache":false}'), +(13025, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.386+00', '{"cached":null,"ignore_cache":false}'), +(13026, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.447+00', '{"cached":null,"ignore_cache":false}'), +(13027, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.528+00', '{"cached":null,"ignore_cache":false}'), +(13028, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.592+00', '{"cached":null,"ignore_cache":false}'), +(13029, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.602+00', '{"cached":null,"ignore_cache":false}'), +(13030, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.603+00', '{"cached":null,"ignore_cache":false}'), +(13031, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.624+00', '{"cached":null,"ignore_cache":false}'), +(13032, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.675+00', '{"cached":null,"ignore_cache":false}'), +(13033, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:38:51.698+00', '{"cached":null,"ignore_cache":false}'), +(13034, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:20.879+00', '{"cached":null,"ignore_cache":false}'), +(13035, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.041+00', '{"cached":null,"ignore_cache":false}'), +(13036, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.063+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13037, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.079+00', '{"cached":null,"ignore_cache":false}'), +(13038, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.087+00', '{"cached":null,"ignore_cache":false}'), +(13039, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.133+00', '{"cached":null,"ignore_cache":false}'), +(13040, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.229+00', '{"cached":null,"ignore_cache":false}'), +(13041, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.23+00', '{"cached":null,"ignore_cache":false}'), +(13042, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.309+00', '{"cached":null,"ignore_cache":false}'), +(13043, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.329+00', '{"cached":null,"ignore_cache":false}'), +(13044, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.337+00', '{"cached":null,"ignore_cache":false}'), +(13045, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.342+00', '{"cached":null,"ignore_cache":false}'), +(13046, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.349+00', '{"cached":null,"ignore_cache":false}'), +(13047, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.35+00', '{"cached":null,"ignore_cache":false}'), +(13048, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.355+00', '{"cached":null,"ignore_cache":false}'), +(13049, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:21.358+00', '{"cached":null,"ignore_cache":false}'), +(13050, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.071+00', '{"cached":null,"ignore_cache":false}'), +(13051, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.081+00', '{"cached":null,"ignore_cache":false}'), +(13052, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.159+00', '{"cached":null,"ignore_cache":false}'), +(13053, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.185+00', '{"cached":null,"ignore_cache":false}'), +(13054, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.213+00', '{"cached":null,"ignore_cache":false}'), +(13055, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.333+00', '{"cached":null,"ignore_cache":false}'), +(13056, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.349+00', '{"cached":null,"ignore_cache":false}'), +(13057, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.59+00', '{"cached":null,"ignore_cache":false}'), +(13058, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.622+00', '{"cached":null,"ignore_cache":false}'), +(13059, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.63+00', '{"cached":null,"ignore_cache":false}'), +(13060, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.699+00', '{"cached":null,"ignore_cache":false}'), +(13061, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.735+00', '{"cached":null,"ignore_cache":false}'), +(13062, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.75+00', '{"cached":null,"ignore_cache":false}'), +(13063, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.774+00', '{"cached":null,"ignore_cache":false}'), +(13064, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.824+00', '{"cached":null,"ignore_cache":false}'), +(13065, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:39:51.851+00', '{"cached":null,"ignore_cache":false}'), +(13066, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.914+00', '{"cached":null,"ignore_cache":false}'), +(13067, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.969+00', '{"cached":null,"ignore_cache":false}'), +(13068, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.98+00', '{"cached":null,"ignore_cache":false}'), +(13069, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:20.987+00', '{"cached":null,"ignore_cache":false}'), +(13070, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.006+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13071, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.007+00', '{"cached":null,"ignore_cache":false}'), +(13072, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.029+00', '{"cached":null,"ignore_cache":false}'), +(13073, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.066+00', '{"cached":null,"ignore_cache":false}'), +(13074, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.107+00', '{"cached":null,"ignore_cache":false}'), +(13075, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.261+00', '{"cached":null,"ignore_cache":false}'), +(13076, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.282+00', '{"cached":null,"ignore_cache":false}'), +(13077, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.294+00', '{"cached":null,"ignore_cache":false}'), +(13078, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.323+00', '{"cached":null,"ignore_cache":false}'), +(13079, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.355+00', '{"cached":null,"ignore_cache":false}'), +(13080, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.357+00', '{"cached":null,"ignore_cache":false}'), +(13081, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:21.381+00', '{"cached":null,"ignore_cache":false}'), +(13082, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.068+00', '{"cached":null,"ignore_cache":false}'), +(13083, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.09+00', '{"cached":null,"ignore_cache":false}'), +(13084, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.107+00', '{"cached":null,"ignore_cache":false}'), +(13085, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.113+00', '{"cached":null,"ignore_cache":false}'), +(13086, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.206+00', '{"cached":null,"ignore_cache":false}'), +(13087, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.252+00', '{"cached":null,"ignore_cache":false}'), +(13088, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.259+00', '{"cached":null,"ignore_cache":false}'), +(13089, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.324+00', '{"cached":null,"ignore_cache":false}'), +(13090, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.356+00', '{"cached":null,"ignore_cache":false}'), +(13091, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.412+00', '{"cached":null,"ignore_cache":false}'), +(13092, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.424+00', '{"cached":null,"ignore_cache":false}'), +(13093, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.458+00', '{"cached":null,"ignore_cache":false}'), +(13094, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.461+00', '{"cached":null,"ignore_cache":false}'), +(13095, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.49+00', '{"cached":null,"ignore_cache":false}'), +(13096, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.496+00', '{"cached":null,"ignore_cache":false}'), +(13097, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:40:51.506+00', '{"cached":null,"ignore_cache":false}'), +(13098, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.671+00', '{"cached":null,"ignore_cache":false}'), +(13099, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.724+00', '{"cached":null,"ignore_cache":false}'), +(13100, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.769+00', '{"cached":null,"ignore_cache":false}'), +(13101, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.778+00', '{"cached":null,"ignore_cache":false}'), +(13102, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.786+00', '{"cached":null,"ignore_cache":false}'), +(13103, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.794+00', '{"cached":null,"ignore_cache":false}'), +(13104, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.799+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13105, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.808+00', '{"cached":null,"ignore_cache":false}'), +(13106, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:20.889+00', '{"cached":null,"ignore_cache":false}'), +(13107, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.048+00', '{"cached":null,"ignore_cache":false}'), +(13108, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.066+00', '{"cached":null,"ignore_cache":false}'), +(13109, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.077+00', '{"cached":null,"ignore_cache":false}'), +(13110, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.081+00', '{"cached":null,"ignore_cache":false}'), +(13111, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.091+00', '{"cached":null,"ignore_cache":false}'), +(13112, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.098+00', '{"cached":null,"ignore_cache":false}'), +(13113, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:21.109+00', '{"cached":null,"ignore_cache":false}'), +(13114, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.743+00', '{"cached":null,"ignore_cache":false}'), +(13115, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.801+00', '{"cached":null,"ignore_cache":false}'), +(13116, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.829+00', '{"cached":null,"ignore_cache":false}'), +(13117, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.868+00', '{"cached":null,"ignore_cache":false}'), +(13118, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.877+00', '{"cached":null,"ignore_cache":false}'), +(13119, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.884+00', '{"cached":null,"ignore_cache":false}'), +(13120, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.904+00', '{"cached":null,"ignore_cache":false}'), +(13121, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:50.944+00', '{"cached":null,"ignore_cache":false}'), +(13122, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.049+00', '{"cached":null,"ignore_cache":false}'), +(13123, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.079+00', '{"cached":null,"ignore_cache":false}'), +(13124, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.116+00', '{"cached":null,"ignore_cache":false}'), +(13125, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.126+00', '{"cached":null,"ignore_cache":false}'), +(13126, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.127+00', '{"cached":null,"ignore_cache":false}'), +(13127, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.13+00', '{"cached":null,"ignore_cache":false}'), +(13128, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.141+00', '{"cached":null,"ignore_cache":false}'), +(13129, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:41:51.149+00', '{"cached":null,"ignore_cache":false}'), +(13130, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.743+00', '{"cached":null,"ignore_cache":false}'), +(13131, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.762+00', '{"cached":null,"ignore_cache":false}'), +(13132, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.77+00', '{"cached":null,"ignore_cache":false}'), +(13133, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.779+00', '{"cached":null,"ignore_cache":false}'), +(13134, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.809+00', '{"cached":null,"ignore_cache":false}'), +(13135, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.856+00', '{"cached":null,"ignore_cache":false}'), +(13136, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.881+00', '{"cached":null,"ignore_cache":false}'), +(13137, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.924+00', '{"cached":null,"ignore_cache":false}'), +(13138, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:20.959+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13139, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.287+00', '{"cached":null,"ignore_cache":false}'), +(13140, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.307+00', '{"cached":null,"ignore_cache":false}'), +(13141, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.328+00', '{"cached":null,"ignore_cache":false}'), +(13142, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.389+00', '{"cached":null,"ignore_cache":false}'), +(13143, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.408+00', '{"cached":null,"ignore_cache":false}'), +(13144, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.436+00', '{"cached":null,"ignore_cache":false}'), +(13145, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:21.448+00', '{"cached":null,"ignore_cache":false}'), +(13146, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.885+00', '{"cached":null,"ignore_cache":false}'), +(13147, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.938+00', '{"cached":null,"ignore_cache":false}'), +(13148, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.943+00', '{"cached":null,"ignore_cache":false}'), +(13149, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:50.957+00', '{"cached":null,"ignore_cache":false}'), +(13150, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51+00', '{"cached":null,"ignore_cache":false}'), +(13151, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.013+00', '{"cached":null,"ignore_cache":false}'), +(13152, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.044+00', '{"cached":null,"ignore_cache":false}'), +(13153, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.069+00', '{"cached":null,"ignore_cache":false}'), +(13154, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.138+00', '{"cached":null,"ignore_cache":false}'), +(13155, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.516+00', '{"cached":null,"ignore_cache":false}'), +(13156, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.522+00', '{"cached":null,"ignore_cache":false}'), +(13157, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.578+00', '{"cached":null,"ignore_cache":false}'), +(13158, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.64+00', '{"cached":null,"ignore_cache":false}'), +(13159, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.676+00', '{"cached":null,"ignore_cache":false}'), +(13160, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.724+00', '{"cached":null,"ignore_cache":false}'), +(13161, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:42:51.752+00', '{"cached":null,"ignore_cache":false}'), +(13162, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.723+00', '{"cached":null,"ignore_cache":false}'), +(13163, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.826+00', '{"cached":null,"ignore_cache":false}'), +(13164, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.864+00', '{"cached":null,"ignore_cache":false}'), +(13165, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.895+00', '{"cached":null,"ignore_cache":false}'), +(13166, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.898+00', '{"cached":null,"ignore_cache":false}'), +(13167, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.909+00', '{"cached":null,"ignore_cache":false}'), +(13168, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.932+00', '{"cached":null,"ignore_cache":false}'), +(13169, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:20.939+00', '{"cached":null,"ignore_cache":false}'), +(13170, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.128+00', '{"cached":null,"ignore_cache":false}'), +(13171, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.148+00', '{"cached":null,"ignore_cache":false}'), +(13172, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.158+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13173, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.178+00', '{"cached":null,"ignore_cache":false}'), +(13174, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.201+00', '{"cached":null,"ignore_cache":false}'), +(13175, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.221+00', '{"cached":null,"ignore_cache":false}'), +(13176, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.224+00', '{"cached":null,"ignore_cache":false}'), +(13177, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:21.239+00', '{"cached":null,"ignore_cache":false}'), +(13178, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.06+00', '{"cached":null,"ignore_cache":false}'), +(13179, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.119+00', '{"cached":null,"ignore_cache":false}'), +(13180, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.185+00', '{"cached":null,"ignore_cache":false}'), +(13181, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.206+00', '{"cached":null,"ignore_cache":false}'), +(13182, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.277+00', '{"cached":null,"ignore_cache":false}'), +(13183, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.33+00', '{"cached":null,"ignore_cache":false}'), +(13184, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.334+00', '{"cached":null,"ignore_cache":false}'), +(13185, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.354+00', '{"cached":null,"ignore_cache":false}'), +(13186, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.407+00', '{"cached":null,"ignore_cache":false}'), +(13187, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.423+00', '{"cached":null,"ignore_cache":false}'), +(13188, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.428+00', '{"cached":null,"ignore_cache":false}'), +(13189, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.475+00', '{"cached":null,"ignore_cache":false}'), +(13190, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.488+00', '{"cached":null,"ignore_cache":false}'), +(13191, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.496+00', '{"cached":null,"ignore_cache":false}'), +(13192, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.499+00', '{"cached":null,"ignore_cache":false}'), +(13193, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:43:51.694+00', '{"cached":null,"ignore_cache":false}'), +(13194, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.131+00', '{"cached":null,"ignore_cache":false}'), +(13195, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.136+00', '{"cached":null,"ignore_cache":false}'), +(13196, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.21+00', '{"cached":null,"ignore_cache":false}'), +(13197, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.229+00', '{"cached":null,"ignore_cache":false}'), +(13198, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.242+00', '{"cached":null,"ignore_cache":false}'), +(13199, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.272+00', '{"cached":null,"ignore_cache":false}'), +(13200, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.31+00', '{"cached":null,"ignore_cache":false}'), +(13201, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.322+00', '{"cached":null,"ignore_cache":false}'), +(13202, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.347+00', '{"cached":null,"ignore_cache":false}'), +(13203, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.361+00', '{"cached":null,"ignore_cache":false}'), +(13204, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.418+00', '{"cached":null,"ignore_cache":false}'), +(13205, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.423+00', '{"cached":null,"ignore_cache":false}'), +(13206, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.427+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13207, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.433+00', '{"cached":null,"ignore_cache":false}'), +(13208, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.446+00', '{"cached":null,"ignore_cache":false}'), +(13209, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:21.458+00', '{"cached":null,"ignore_cache":false}'), +(13210, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.064+00', '{"cached":null,"ignore_cache":false}'), +(13211, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.104+00', '{"cached":null,"ignore_cache":false}'), +(13212, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.141+00', '{"cached":null,"ignore_cache":false}'), +(13213, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.17+00', '{"cached":null,"ignore_cache":false}'), +(13214, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.19+00', '{"cached":null,"ignore_cache":false}'), +(13215, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.216+00', '{"cached":null,"ignore_cache":false}'), +(13216, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.261+00', '{"cached":null,"ignore_cache":false}'), +(13217, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.315+00', '{"cached":null,"ignore_cache":false}'), +(13218, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.334+00', '{"cached":null,"ignore_cache":false}'), +(13219, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.404+00', '{"cached":null,"ignore_cache":false}'), +(13220, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.418+00', '{"cached":null,"ignore_cache":false}'), +(13221, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.439+00', '{"cached":null,"ignore_cache":false}'), +(13222, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.482+00', '{"cached":null,"ignore_cache":false}'), +(13223, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.491+00', '{"cached":null,"ignore_cache":false}'), +(13224, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.507+00', '{"cached":null,"ignore_cache":false}'), +(13225, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:44:51.518+00', '{"cached":null,"ignore_cache":false}'), +(13226, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.823+00', '{"cached":null,"ignore_cache":false}'), +(13227, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:20.864+00', '{"cached":null,"ignore_cache":false}'), +(13228, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.041+00', '{"cached":null,"ignore_cache":false}'), +(13229, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.046+00', '{"cached":null,"ignore_cache":false}'), +(13230, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.062+00', '{"cached":null,"ignore_cache":false}'), +(13231, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.124+00', '{"cached":null,"ignore_cache":false}'), +(13232, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.179+00', '{"cached":null,"ignore_cache":false}'), +(13233, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.19+00', '{"cached":null,"ignore_cache":false}'), +(13234, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.224+00', '{"cached":null,"ignore_cache":false}'), +(13235, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.29+00', '{"cached":null,"ignore_cache":false}'), +(13236, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.316+00', '{"cached":null,"ignore_cache":false}'), +(13237, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.321+00', '{"cached":null,"ignore_cache":false}'), +(13238, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.339+00', '{"cached":null,"ignore_cache":false}'), +(13239, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.347+00', '{"cached":null,"ignore_cache":false}'), +(13240, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.368+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13241, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:21.415+00', '{"cached":null,"ignore_cache":false}'), +(13242, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.822+00', '{"cached":null,"ignore_cache":false}'), +(13243, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.838+00', '{"cached":null,"ignore_cache":false}'), +(13244, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.862+00', '{"cached":null,"ignore_cache":false}'), +(13245, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.884+00', '{"cached":null,"ignore_cache":false}'), +(13246, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.886+00', '{"cached":null,"ignore_cache":false}'), +(13247, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.892+00', '{"cached":null,"ignore_cache":false}'), +(13248, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.896+00', '{"cached":null,"ignore_cache":false}'), +(13249, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:50.905+00', '{"cached":null,"ignore_cache":false}'), +(13250, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.1+00', '{"cached":null,"ignore_cache":false}'), +(13251, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.205+00', '{"cached":null,"ignore_cache":false}'), +(13252, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.284+00', '{"cached":null,"ignore_cache":false}'), +(13253, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.293+00', '{"cached":null,"ignore_cache":false}'), +(13254, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.334+00', '{"cached":null,"ignore_cache":false}'), +(13255, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.335+00', '{"cached":null,"ignore_cache":false}'), +(13256, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.349+00', '{"cached":null,"ignore_cache":false}'), +(13257, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:45:51.367+00', '{"cached":null,"ignore_cache":false}'), +(13258, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.852+00', '{"cached":null,"ignore_cache":false}'), +(13259, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.904+00', '{"cached":null,"ignore_cache":false}'), +(13260, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:20.92+00', '{"cached":null,"ignore_cache":false}'), +(13261, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.151+00', '{"cached":null,"ignore_cache":false}'), +(13262, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.221+00', '{"cached":null,"ignore_cache":false}'), +(13263, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.232+00', '{"cached":null,"ignore_cache":false}'), +(13264, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.347+00', '{"cached":null,"ignore_cache":false}'), +(13265, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.387+00', '{"cached":null,"ignore_cache":false}'), +(13266, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.448+00', '{"cached":null,"ignore_cache":false}'), +(13267, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.449+00', '{"cached":null,"ignore_cache":false}'), +(13268, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.468+00', '{"cached":null,"ignore_cache":false}'), +(13269, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.492+00', '{"cached":null,"ignore_cache":false}'), +(13270, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.519+00', '{"cached":null,"ignore_cache":false}'), +(13271, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.54+00', '{"cached":null,"ignore_cache":false}'), +(13272, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.564+00', '{"cached":null,"ignore_cache":false}'), +(13273, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:21.568+00', '{"cached":null,"ignore_cache":false}'), +(13274, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:50.981+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13275, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.106+00', '{"cached":null,"ignore_cache":false}'), +(13276, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.116+00', '{"cached":null,"ignore_cache":false}'), +(13277, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.123+00', '{"cached":null,"ignore_cache":false}'), +(13278, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.283+00', '{"cached":null,"ignore_cache":false}'), +(13279, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.354+00', '{"cached":null,"ignore_cache":false}'), +(13280, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.439+00', '{"cached":null,"ignore_cache":false}'), +(13281, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.47+00', '{"cached":null,"ignore_cache":false}'), +(13282, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.474+00', '{"cached":null,"ignore_cache":false}'), +(13283, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.498+00', '{"cached":null,"ignore_cache":false}'), +(13284, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.642+00', '{"cached":null,"ignore_cache":false}'), +(13285, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.646+00', '{"cached":null,"ignore_cache":false}'), +(13286, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.671+00', '{"cached":null,"ignore_cache":false}'), +(13287, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.692+00', '{"cached":null,"ignore_cache":false}'), +(13288, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.71+00', '{"cached":null,"ignore_cache":false}'), +(13289, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:46:51.777+00', '{"cached":null,"ignore_cache":false}'), +(13290, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.945+00', '{"cached":null,"ignore_cache":false}'), +(13291, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:20.981+00', '{"cached":null,"ignore_cache":false}'), +(13292, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.062+00', '{"cached":null,"ignore_cache":false}'), +(13293, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.129+00', '{"cached":null,"ignore_cache":false}'), +(13294, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.143+00', '{"cached":null,"ignore_cache":false}'), +(13295, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.145+00', '{"cached":null,"ignore_cache":false}'), +(13296, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.203+00', '{"cached":null,"ignore_cache":false}'), +(13297, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.268+00', '{"cached":null,"ignore_cache":false}'), +(13298, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.273+00', '{"cached":null,"ignore_cache":false}'), +(13299, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.327+00', '{"cached":null,"ignore_cache":false}'), +(13300, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.328+00', '{"cached":null,"ignore_cache":false}'), +(13301, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.355+00', '{"cached":null,"ignore_cache":false}'), +(13302, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.392+00', '{"cached":null,"ignore_cache":false}'), +(13303, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.428+00', '{"cached":null,"ignore_cache":false}'), +(13304, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.431+00', '{"cached":null,"ignore_cache":false}'), +(13305, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:21.443+00', '{"cached":null,"ignore_cache":false}'), +(13306, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.802+00', '{"cached":null,"ignore_cache":false}'), +(13307, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.838+00', '{"cached":null,"ignore_cache":false}'), +(13308, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:50.987+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13309, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.08+00', '{"cached":null,"ignore_cache":false}'), +(13310, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.166+00', '{"cached":null,"ignore_cache":false}'), +(13311, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.236+00', '{"cached":null,"ignore_cache":false}'), +(13312, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.314+00', '{"cached":null,"ignore_cache":false}'), +(13313, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.361+00', '{"cached":null,"ignore_cache":false}'), +(13314, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.41+00', '{"cached":null,"ignore_cache":false}'), +(13315, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.419+00', '{"cached":null,"ignore_cache":false}'), +(13316, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.434+00', '{"cached":null,"ignore_cache":false}'), +(13317, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.448+00', '{"cached":null,"ignore_cache":false}'), +(13318, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.464+00', '{"cached":null,"ignore_cache":false}'), +(13319, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.499+00', '{"cached":null,"ignore_cache":false}'), +(13320, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.511+00', '{"cached":null,"ignore_cache":false}'), +(13321, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:47:51.608+00', '{"cached":null,"ignore_cache":false}'), +(13322, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:20.884+00', '{"cached":null,"ignore_cache":false}'), +(13323, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.028+00', '{"cached":null,"ignore_cache":false}'), +(13324, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.11+00', '{"cached":null,"ignore_cache":false}'), +(13325, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.288+00', '{"cached":null,"ignore_cache":false}'), +(13326, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.317+00', '{"cached":null,"ignore_cache":false}'), +(13327, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.506+00', '{"cached":null,"ignore_cache":false}'), +(13328, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.642+00', '{"cached":null,"ignore_cache":false}'), +(13329, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.643+00', '{"cached":null,"ignore_cache":false}'), +(13330, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.763+00', '{"cached":null,"ignore_cache":false}'), +(13331, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.916+00', '{"cached":null,"ignore_cache":false}'), +(13332, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:21.944+00', '{"cached":null,"ignore_cache":false}'), +(13333, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:22+00', '{"cached":null,"ignore_cache":false}'), +(13334, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:22.005+00', '{"cached":null,"ignore_cache":false}'), +(13335, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:22.036+00', '{"cached":null,"ignore_cache":false}'), +(13336, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:22.073+00', '{"cached":null,"ignore_cache":false}'), +(13337, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:22.089+00', '{"cached":null,"ignore_cache":false}'), +(13338, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51+00', '{"cached":null,"ignore_cache":false}'), +(13339, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.244+00', '{"cached":null,"ignore_cache":false}'), +(13340, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.446+00', '{"cached":null,"ignore_cache":false}'), +(13341, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.451+00', '{"cached":null,"ignore_cache":false}'), +(13342, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.512+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13343, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.559+00', '{"cached":null,"ignore_cache":false}'), +(13344, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.648+00', '{"cached":null,"ignore_cache":false}'), +(13345, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.841+00', '{"cached":null,"ignore_cache":false}'), +(13346, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.89+00', '{"cached":null,"ignore_cache":false}'), +(13347, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.925+00', '{"cached":null,"ignore_cache":false}'), +(13348, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.961+00', '{"cached":null,"ignore_cache":false}'), +(13349, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.983+00', '{"cached":null,"ignore_cache":false}'), +(13350, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:51.989+00', '{"cached":null,"ignore_cache":false}'), +(13351, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:52.01+00', '{"cached":null,"ignore_cache":false}'), +(13352, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:52.018+00', '{"cached":null,"ignore_cache":false}'), +(13353, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:48:52.085+00', '{"cached":null,"ignore_cache":false}'), +(13354, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.768+00', '{"cached":null,"ignore_cache":false}'), +(13355, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.838+00', '{"cached":null,"ignore_cache":false}'), +(13356, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.843+00', '{"cached":null,"ignore_cache":false}'), +(13357, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.88+00', '{"cached":null,"ignore_cache":false}'), +(13358, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.883+00', '{"cached":null,"ignore_cache":false}'), +(13359, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.9+00', '{"cached":null,"ignore_cache":false}'), +(13360, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:20.947+00', '{"cached":null,"ignore_cache":false}'), +(13361, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.025+00', '{"cached":null,"ignore_cache":false}'), +(13362, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.122+00', '{"cached":null,"ignore_cache":false}'), +(13363, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.123+00', '{"cached":null,"ignore_cache":false}'), +(13364, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.16+00', '{"cached":null,"ignore_cache":false}'), +(13365, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.194+00', '{"cached":null,"ignore_cache":false}'), +(13366, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.196+00', '{"cached":null,"ignore_cache":false}'), +(13367, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.206+00', '{"cached":null,"ignore_cache":false}'), +(13368, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.212+00', '{"cached":null,"ignore_cache":false}'), +(13369, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:21.22+00', '{"cached":null,"ignore_cache":false}'), +(13370, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.562+00', '{"cached":null,"ignore_cache":false}'), +(13371, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.615+00', '{"cached":null,"ignore_cache":false}'), +(13372, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.637+00', '{"cached":null,"ignore_cache":false}'), +(13373, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.652+00', '{"cached":null,"ignore_cache":false}'), +(13374, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.658+00', '{"cached":null,"ignore_cache":false}'), +(13375, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.663+00', '{"cached":null,"ignore_cache":false}'), +(13376, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.668+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13377, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:42.867+00', '{"cached":null,"ignore_cache":false}'), +(13378, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43+00', '{"cached":null,"ignore_cache":false}'), +(13379, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.18+00', '{"cached":null,"ignore_cache":false}'), +(13380, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.219+00', '{"cached":null,"ignore_cache":false}'), +(13381, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.351+00', '{"cached":null,"ignore_cache":false}'), +(13382, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.755+00', '{"cached":null,"ignore_cache":false}'), +(13383, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.821+00', '{"cached":null,"ignore_cache":false}'), +(13384, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.825+00', '{"cached":null,"ignore_cache":false}'), +(13385, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.844+00', '{"cached":null,"ignore_cache":false}'), +(13386, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.854+00', '{"cached":null,"ignore_cache":false}'), +(13387, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.881+00', '{"cached":null,"ignore_cache":false}'), +(13388, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.94+00', '{"cached":null,"ignore_cache":false}'), +(13389, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.972+00', '{"cached":null,"ignore_cache":false}'), +(13390, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:43.978+00', '{"cached":null,"ignore_cache":false}'), +(13391, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:44.014+00', '{"cached":null,"ignore_cache":false}'), +(13392, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:44.08+00', '{"cached":null,"ignore_cache":false}'), +(13393, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:44.083+00', '{"cached":null,"ignore_cache":false}'), +(13394, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:44.096+00', '{"cached":null,"ignore_cache":false}'), +(13395, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:44.118+00', '{"cached":null,"ignore_cache":false}'), +(13396, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:44.13+00', '{"cached":null,"ignore_cache":false}'), +(13397, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:49.809+00', '{"cached":null,"ignore_cache":null}'), +(13398, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.297+00', '{"cached":null,"ignore_cache":false}'), +(13399, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.743+00', '{"cached":null,"ignore_cache":false}'), +(13400, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.769+00', '{"cached":null,"ignore_cache":false}'), +(13401, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.769+00', '{"cached":null,"ignore_cache":false}'), +(13402, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.824+00', '{"cached":null,"ignore_cache":false}'), +(13403, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.904+00', '{"cached":null,"ignore_cache":false}'), +(13404, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:50.948+00', '{"cached":null,"ignore_cache":false}'), +(13405, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.023+00', '{"cached":null,"ignore_cache":false}'), +(13406, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.178+00', '{"cached":null,"ignore_cache":false}'), +(13407, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.179+00', '{"cached":null,"ignore_cache":false}'), +(13408, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.214+00', '{"cached":null,"ignore_cache":false}'), +(13409, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.259+00', '{"cached":null,"ignore_cache":false}'), +(13410, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.306+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13411, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.334+00', '{"cached":null,"ignore_cache":false}'), +(13412, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.377+00', '{"cached":null,"ignore_cache":false}'), +(13413, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.382+00', '{"cached":null,"ignore_cache":false}'), +(13414, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:49:51.4+00', '{"cached":null,"ignore_cache":false}'), +(13415, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:09.406+00', '{"cached":null,"ignore_cache":false}'), +(13416, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.496+00', '{"cached":null,"ignore_cache":false}'), +(13417, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.518+00', '{"cached":null,"ignore_cache":false}'), +(13418, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.524+00', '{"cached":null,"ignore_cache":false}'), +(13419, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.534+00', '{"cached":null,"ignore_cache":false}'), +(13420, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.535+00', '{"cached":null,"ignore_cache":false}'), +(13421, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.546+00', '{"cached":null,"ignore_cache":false}'), +(13422, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.691+00', '{"cached":null,"ignore_cache":false}'), +(13423, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.766+00', '{"cached":null,"ignore_cache":false}'), +(13424, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.767+00', '{"cached":null,"ignore_cache":false}'), +(13425, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.827+00', '{"cached":null,"ignore_cache":false}'), +(13426, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.847+00', '{"cached":null,"ignore_cache":false}'), +(13427, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.95+00', '{"cached":null,"ignore_cache":false}'), +(13428, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.951+00', '{"cached":null,"ignore_cache":false}'), +(13429, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:12.974+00', '{"cached":null,"ignore_cache":false}'), +(13430, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:13.11+00', '{"cached":null,"ignore_cache":false}'), +(13431, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:13.142+00', '{"cached":null,"ignore_cache":false}'), +(13432, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:17.986+00', '{"cached":null,"ignore_cache":null}'), +(13433, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.459+00', '{"cached":null,"ignore_cache":false}'), +(13434, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.489+00', '{"cached":null,"ignore_cache":false}'), +(13435, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.754+00', '{"cached":null,"ignore_cache":false}'), +(13436, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.768+00', '{"cached":null,"ignore_cache":false}'), +(13437, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:18.802+00', '{"cached":null,"ignore_cache":false}'), +(13438, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:19.632+00', '{"cached":null,"ignore_cache":false}'), +(13439, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:19.66+00', '{"cached":null,"ignore_cache":false}'), +(13440, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:20.969+00', '{"cached":null,"ignore_cache":false}'), +(13441, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.015+00', '{"cached":null,"ignore_cache":false}'), +(13442, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.097+00', '{"cached":null,"ignore_cache":false}'), +(13443, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.276+00', '{"cached":null,"ignore_cache":false}'), +(13444, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.347+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13445, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.376+00', '{"cached":null,"ignore_cache":false}'), +(13446, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.402+00', '{"cached":null,"ignore_cache":false}'), +(13447, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.422+00', '{"cached":null,"ignore_cache":false}'), +(13448, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.441+00', '{"cached":null,"ignore_cache":false}'), +(13449, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.448+00', '{"cached":null,"ignore_cache":false}'), +(13450, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.504+00', '{"cached":null,"ignore_cache":false}'), +(13451, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.505+00', '{"cached":null,"ignore_cache":false}'), +(13452, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.517+00', '{"cached":null,"ignore_cache":false}'), +(13453, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.52+00', '{"cached":null,"ignore_cache":false}'), +(13454, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.541+00', '{"cached":null,"ignore_cache":false}'), +(13455, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:21.558+00', '{"cached":null,"ignore_cache":false}'), +(13456, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:33.642+00', '{"cached":null,"ignore_cache":null}'), +(13457, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:34.332+00', '{"cached":null,"ignore_cache":false}'), +(13458, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.668+00', '{"cached":null,"ignore_cache":false}'), +(13459, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.725+00', '{"cached":null,"ignore_cache":false}'), +(13460, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.743+00', '{"cached":null,"ignore_cache":false}'), +(13461, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.799+00', '{"cached":null,"ignore_cache":false}'), +(13462, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:42.976+00', '{"cached":null,"ignore_cache":false}'), +(13463, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.012+00', '{"cached":null,"ignore_cache":false}'), +(13464, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.023+00', '{"cached":null,"ignore_cache":false}'), +(13465, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.039+00', '{"cached":null,"ignore_cache":false}'), +(13466, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.135+00', '{"cached":null,"ignore_cache":false}'), +(13467, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.139+00', '{"cached":null,"ignore_cache":false}'), +(13468, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.202+00', '{"cached":null,"ignore_cache":false}'), +(13469, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.214+00', '{"cached":null,"ignore_cache":false}'), +(13470, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.226+00', '{"cached":null,"ignore_cache":false}'), +(13471, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.232+00', '{"cached":null,"ignore_cache":false}'), +(13472, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.249+00', '{"cached":null,"ignore_cache":false}'), +(13473, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:43.282+00', '{"cached":null,"ignore_cache":false}'), +(13474, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.771+00', '{"cached":null,"ignore_cache":false}'), +(13475, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.812+00', '{"cached":null,"ignore_cache":false}'), +(13476, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.814+00', '{"cached":null,"ignore_cache":false}'), +(13477, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.862+00', '{"cached":null,"ignore_cache":false}'), +(13478, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.863+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13479, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.866+00', '{"cached":null,"ignore_cache":false}'), +(13480, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.88+00', '{"cached":null,"ignore_cache":false}'), +(13481, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.899+00', '{"cached":null,"ignore_cache":false}'), +(13482, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:50.971+00', '{"cached":null,"ignore_cache":false}'), +(13483, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.163+00', '{"cached":null,"ignore_cache":false}'), +(13484, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.182+00', '{"cached":null,"ignore_cache":false}'), +(13485, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.219+00', '{"cached":null,"ignore_cache":false}'), +(13486, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.243+00', '{"cached":null,"ignore_cache":false}'), +(13487, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.256+00', '{"cached":null,"ignore_cache":false}'), +(13488, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.279+00', '{"cached":null,"ignore_cache":false}'), +(13489, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:51.292+00', '{"cached":null,"ignore_cache":false}'), +(13490, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.743+00', '{"cached":null,"ignore_cache":false}'), +(13491, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.759+00', '{"cached":null,"ignore_cache":false}'), +(13492, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.832+00', '{"cached":null,"ignore_cache":false}'), +(13493, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:12.966+00', '{"cached":null,"ignore_cache":false}'), +(13494, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.147+00', '{"cached":null,"ignore_cache":null}'), +(13495, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.354+00', '{"cached":null,"ignore_cache":false}'), +(13496, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.409+00', '{"cached":null,"ignore_cache":false}'), +(13497, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.454+00', '{"cached":null,"ignore_cache":false}'), +(13498, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.527+00', '{"cached":null,"ignore_cache":false}'), +(13499, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.567+00', '{"cached":null,"ignore_cache":false}'), +(13500, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.645+00', '{"cached":null,"ignore_cache":false}'), +(13501, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.686+00', '{"cached":null,"ignore_cache":false}'), +(13502, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.713+00', '{"cached":null,"ignore_cache":false}'), +(13503, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.732+00', '{"cached":null,"ignore_cache":false}'), +(13504, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.749+00', '{"cached":null,"ignore_cache":false}'), +(13505, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.755+00', '{"cached":null,"ignore_cache":false}'), +(13506, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:13.839+00', '{"cached":null,"ignore_cache":false}'), +(13507, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.358+00', '{"cached":null,"ignore_cache":false}'), +(13508, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.395+00', '{"cached":null,"ignore_cache":false}'), +(13509, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.397+00', '{"cached":null,"ignore_cache":false}'), +(13510, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.451+00', '{"cached":null,"ignore_cache":false}'), +(13511, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.452+00', '{"cached":null,"ignore_cache":false}'), +(13512, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.482+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13513, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:14.501+00', '{"cached":null,"ignore_cache":false}'), +(13514, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:19.098+00', '{"cached":null,"ignore_cache":null}'), +(13515, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.312+00', '{"cached":null,"ignore_cache":false}'), +(13516, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.522+00', '{"cached":null,"ignore_cache":false}'), +(13517, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.567+00', '{"cached":null,"ignore_cache":false}'), +(13518, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.609+00', '{"cached":null,"ignore_cache":false}'), +(13519, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.695+00', '{"cached":null,"ignore_cache":false}'), +(13520, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.702+00', '{"cached":null,"ignore_cache":false}'), +(13521, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.703+00', '{"cached":null,"ignore_cache":false}'), +(13522, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.707+00', '{"cached":null,"ignore_cache":false}'), +(13523, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:20.723+00', '{"cached":null,"ignore_cache":false}'), +(13524, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.194+00', '{"cached":null,"ignore_cache":false}'), +(13525, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.337+00', '{"cached":null,"ignore_cache":false}'), +(13526, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.356+00', '{"cached":null,"ignore_cache":false}'), +(13527, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.396+00', '{"cached":null,"ignore_cache":false}'), +(13528, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.426+00', '{"cached":null,"ignore_cache":false}'), +(13529, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.435+00', '{"cached":null,"ignore_cache":false}'), +(13530, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.436+00', '{"cached":null,"ignore_cache":false}'), +(13531, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.461+00', '{"cached":null,"ignore_cache":false}'), +(13532, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.48+00', '{"cached":null,"ignore_cache":false}'), +(13533, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.491+00', '{"cached":null,"ignore_cache":false}'), +(13534, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.51+00', '{"cached":null,"ignore_cache":false}'), +(13535, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.519+00', '{"cached":null,"ignore_cache":false}'), +(13536, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.547+00', '{"cached":null,"ignore_cache":false}'), +(13537, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.553+00', '{"cached":null,"ignore_cache":false}'), +(13538, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.573+00', '{"cached":null,"ignore_cache":false}'), +(13539, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:21.635+00', '{"cached":null,"ignore_cache":false}'), +(13540, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:37.819+00', '{"cached":null,"ignore_cache":null}'), +(13541, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:39.415+00', '{"cached":null,"ignore_cache":false}'), +(13542, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.694+00', '{"cached":null,"ignore_cache":false}'), +(13543, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.726+00', '{"cached":null,"ignore_cache":false}'), +(13544, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.751+00', '{"cached":null,"ignore_cache":false}'), +(13545, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.768+00', '{"cached":null,"ignore_cache":false}'), +(13546, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.796+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13547, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:40.824+00', '{"cached":null,"ignore_cache":false}'), +(13548, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.415+00', '{"cached":null,"ignore_cache":false}'), +(13549, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.483+00', '{"cached":null,"ignore_cache":false}'), +(13550, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.51+00', '{"cached":null,"ignore_cache":false}'), +(13551, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.553+00', '{"cached":null,"ignore_cache":false}'), +(13552, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.617+00', '{"cached":null,"ignore_cache":false}'), +(13553, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.624+00', '{"cached":null,"ignore_cache":false}'), +(13554, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.65+00', '{"cached":null,"ignore_cache":false}'), +(13555, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.699+00', '{"cached":null,"ignore_cache":false}'), +(13556, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.72+00', '{"cached":null,"ignore_cache":false}'), +(13557, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.765+00', '{"cached":null,"ignore_cache":false}'), +(13558, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.791+00', '{"cached":null,"ignore_cache":false}'), +(13559, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.814+00', '{"cached":null,"ignore_cache":false}'), +(13560, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.865+00', '{"cached":null,"ignore_cache":false}'), +(13561, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.873+00', '{"cached":null,"ignore_cache":false}'), +(13562, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.875+00', '{"cached":null,"ignore_cache":false}'), +(13563, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:43.884+00', '{"cached":null,"ignore_cache":false}'), +(13564, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:50.815+00', '{"cached":null,"ignore_cache":false}'), +(13565, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.046+00', '{"cached":null,"ignore_cache":false}'), +(13566, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.112+00', '{"cached":null,"ignore_cache":false}'), +(13567, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.13+00', '{"cached":null,"ignore_cache":false}'), +(13568, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.146+00', '{"cached":null,"ignore_cache":false}'), +(13569, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.226+00', '{"cached":null,"ignore_cache":false}'), +(13570, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.238+00', '{"cached":null,"ignore_cache":false}'), +(13571, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.265+00', '{"cached":null,"ignore_cache":false}'), +(13572, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.273+00', '{"cached":null,"ignore_cache":false}'), +(13573, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.286+00', '{"cached":null,"ignore_cache":false}'), +(13574, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.3+00', '{"cached":null,"ignore_cache":false}'), +(13575, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.312+00', '{"cached":null,"ignore_cache":false}'), +(13576, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.349+00', '{"cached":null,"ignore_cache":false}'), +(13577, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.359+00', '{"cached":null,"ignore_cache":false}'), +(13578, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.366+00', '{"cached":null,"ignore_cache":false}'), +(13579, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:51.368+00', '{"cached":null,"ignore_cache":false}'), +(13580, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.746+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13581, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.802+00', '{"cached":null,"ignore_cache":false}'), +(13582, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.914+00', '{"cached":null,"ignore_cache":false}'), +(13583, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.947+00', '{"cached":null,"ignore_cache":false}'), +(13584, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.985+00', '{"cached":null,"ignore_cache":false}'), +(13585, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:20.989+00', '{"cached":null,"ignore_cache":false}'), +(13586, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.026+00', '{"cached":null,"ignore_cache":false}'), +(13587, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.244+00', '{"cached":null,"ignore_cache":false}'), +(13588, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.313+00', '{"cached":null,"ignore_cache":false}'), +(13589, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.315+00', '{"cached":null,"ignore_cache":false}'), +(13590, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.356+00', '{"cached":null,"ignore_cache":false}'), +(13591, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.387+00', '{"cached":null,"ignore_cache":false}'), +(13592, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.418+00', '{"cached":null,"ignore_cache":false}'), +(13593, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.442+00', '{"cached":null,"ignore_cache":false}'), +(13594, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.457+00', '{"cached":null,"ignore_cache":false}'), +(13595, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.483+00', '{"cached":null,"ignore_cache":false}'), +(13596, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.75+00', '{"cached":null,"ignore_cache":false}'), +(13597, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.774+00', '{"cached":null,"ignore_cache":false}'), +(13598, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.815+00', '{"cached":null,"ignore_cache":false}'), +(13599, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.887+00', '{"cached":null,"ignore_cache":false}'), +(13600, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.888+00', '{"cached":null,"ignore_cache":false}'), +(13601, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.897+00', '{"cached":null,"ignore_cache":false}'), +(13602, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:21.914+00', '{"cached":null,"ignore_cache":false}'), +(13603, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.89+00', '{"cached":null,"ignore_cache":false}'), +(13604, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.918+00', '{"cached":null,"ignore_cache":false}'), +(13605, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.947+00', '{"cached":null,"ignore_cache":false}'), +(13606, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:26.949+00', '{"cached":null,"ignore_cache":false}'), +(13607, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:27.006+00', '{"cached":null,"ignore_cache":false}'), +(13608, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:27.018+00', '{"cached":null,"ignore_cache":false}'), +(13609, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:27.028+00', '{"cached":null,"ignore_cache":false}'), +(13610, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:27.09+00', '{"cached":null,"ignore_cache":false}'), +(13611, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:27.104+00', '{"cached":null,"ignore_cache":false}'), +(13612, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.8+00', '{"cached":null,"ignore_cache":false}'), +(13613, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.866+00', '{"cached":null,"ignore_cache":false}'), +(13614, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.935+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13615, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:50.947+00', '{"cached":null,"ignore_cache":false}'), +(13616, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.039+00', '{"cached":null,"ignore_cache":false}'), +(13617, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.053+00', '{"cached":null,"ignore_cache":false}'), +(13618, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.141+00', '{"cached":null,"ignore_cache":false}'), +(13619, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.158+00', '{"cached":null,"ignore_cache":false}'), +(13620, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.218+00', '{"cached":null,"ignore_cache":false}'), +(13621, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.232+00', '{"cached":null,"ignore_cache":false}'), +(13622, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.261+00', '{"cached":null,"ignore_cache":false}'), +(13623, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.291+00', '{"cached":null,"ignore_cache":false}'), +(13624, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.335+00', '{"cached":null,"ignore_cache":false}'), +(13625, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.347+00', '{"cached":null,"ignore_cache":false}'), +(13626, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.363+00', '{"cached":null,"ignore_cache":false}'), +(13627, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:51.385+00', '{"cached":null,"ignore_cache":false}'), +(13628, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.769+00', '{"cached":null,"ignore_cache":false}'), +(13629, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.831+00', '{"cached":null,"ignore_cache":false}'), +(13630, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.837+00', '{"cached":null,"ignore_cache":false}'), +(13631, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.871+00', '{"cached":null,"ignore_cache":false}'), +(13632, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.932+00', '{"cached":null,"ignore_cache":false}'), +(13633, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.933+00', '{"cached":null,"ignore_cache":false}'), +(13634, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:52:56.953+00', '{"cached":null,"ignore_cache":false}'), +(13635, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.754+00', '{"cached":null,"ignore_cache":false}'), +(13636, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.787+00', '{"cached":null,"ignore_cache":false}'), +(13637, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.817+00', '{"cached":null,"ignore_cache":false}'), +(13638, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.823+00', '{"cached":null,"ignore_cache":false}'), +(13639, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.845+00', '{"cached":null,"ignore_cache":false}'), +(13640, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.857+00', '{"cached":null,"ignore_cache":false}'), +(13641, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.867+00', '{"cached":null,"ignore_cache":false}'), +(13642, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.889+00', '{"cached":null,"ignore_cache":false}'), +(13643, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:02.893+00', '{"cached":null,"ignore_cache":false}'), +(13644, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.789+00', '{"cached":null,"ignore_cache":false}'), +(13645, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.912+00', '{"cached":null,"ignore_cache":false}'), +(13646, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.936+00', '{"cached":null,"ignore_cache":false}'), +(13647, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.945+00', '{"cached":null,"ignore_cache":false}'), +(13648, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.965+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13649, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.967+00', '{"cached":null,"ignore_cache":false}'), +(13650, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:20.994+00', '{"cached":null,"ignore_cache":false}'), +(13651, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.002+00', '{"cached":null,"ignore_cache":false}'), +(13652, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.045+00', '{"cached":null,"ignore_cache":false}'), +(13653, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.221+00', '{"cached":null,"ignore_cache":false}'), +(13654, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.252+00', '{"cached":null,"ignore_cache":false}'), +(13655, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.258+00', '{"cached":null,"ignore_cache":false}'), +(13656, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.267+00', '{"cached":null,"ignore_cache":false}'), +(13657, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.291+00', '{"cached":null,"ignore_cache":false}'), +(13658, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.315+00', '{"cached":null,"ignore_cache":false}'), +(13659, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:21.319+00', '{"cached":null,"ignore_cache":false}'), +(13660, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.765+00', '{"cached":null,"ignore_cache":false}'), +(13661, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.782+00', '{"cached":null,"ignore_cache":false}'), +(13662, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.784+00', '{"cached":null,"ignore_cache":false}'), +(13663, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.794+00', '{"cached":null,"ignore_cache":false}'), +(13664, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.834+00', '{"cached":null,"ignore_cache":false}'), +(13665, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.868+00', '{"cached":null,"ignore_cache":false}'), +(13666, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:30.917+00', '{"cached":null,"ignore_cache":false}'), +(13667, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:38.125+00', '{"cached":null,"ignore_cache":null}'), +(13668, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:38.812+00', '{"cached":null,"ignore_cache":false}'), +(13669, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.673+00', '{"cached":null,"ignore_cache":false}'), +(13670, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.781+00', '{"cached":null,"ignore_cache":false}'), +(13671, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.796+00', '{"cached":null,"ignore_cache":false}'), +(13672, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.821+00', '{"cached":null,"ignore_cache":false}'), +(13673, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.834+00', '{"cached":null,"ignore_cache":false}'), +(13674, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.839+00', '{"cached":null,"ignore_cache":false}'), +(13675, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.85+00', '{"cached":null,"ignore_cache":false}'), +(13676, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.853+00', '{"cached":null,"ignore_cache":false}'), +(13677, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:39.862+00', '{"cached":null,"ignore_cache":false}'), +(13678, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.851+00', '{"cached":null,"ignore_cache":false}'), +(13679, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.898+00', '{"cached":null,"ignore_cache":false}'), +(13680, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.934+00', '{"cached":null,"ignore_cache":false}'), +(13681, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.978+00', '{"cached":null,"ignore_cache":false}'), +(13682, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:50.983+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13683, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.151+00', '{"cached":null,"ignore_cache":false}'), +(13684, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.277+00', '{"cached":null,"ignore_cache":false}'), +(13685, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.326+00', '{"cached":null,"ignore_cache":false}'), +(13686, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.36+00', '{"cached":null,"ignore_cache":false}'), +(13687, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.382+00', '{"cached":null,"ignore_cache":false}'), +(13688, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.413+00', '{"cached":null,"ignore_cache":false}'), +(13689, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.485+00', '{"cached":null,"ignore_cache":false}'), +(13690, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.504+00', '{"cached":null,"ignore_cache":false}'), +(13691, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.504+00', '{"cached":null,"ignore_cache":false}'), +(13692, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.555+00', '{"cached":null,"ignore_cache":false}'), +(13693, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:53:51.64+00', '{"cached":null,"ignore_cache":false}'), +(13694, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.557+00', '{"cached":null,"ignore_cache":false}'), +(13695, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.59+00', '{"cached":null,"ignore_cache":false}'), +(13696, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.617+00', '{"cached":null,"ignore_cache":false}'), +(13697, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.644+00', '{"cached":null,"ignore_cache":false}'), +(13698, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.682+00', '{"cached":null,"ignore_cache":false}'), +(13699, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.69+00', '{"cached":null,"ignore_cache":false}'), +(13700, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:04.723+00', '{"cached":null,"ignore_cache":false}'), +(13701, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:13.168+00', '{"cached":null,"ignore_cache":null}'), +(13702, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:13.634+00', '{"cached":null,"ignore_cache":false}'), +(13703, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:13.932+00', '{"cached":null,"ignore_cache":false}'), +(13704, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:14.005+00', '{"cached":null,"ignore_cache":false}'), +(13705, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:14.025+00', '{"cached":null,"ignore_cache":false}'), +(13706, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:16.039+00', '{"cached":null,"ignore_cache":false}'), +(13707, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:16.051+00', '{"cached":null,"ignore_cache":false}'), +(13708, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:16.064+00', '{"cached":null,"ignore_cache":false}'), +(13709, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.84+00', '{"cached":null,"ignore_cache":false}'), +(13710, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.944+00', '{"cached":null,"ignore_cache":false}'), +(13711, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:18.992+00', '{"cached":null,"ignore_cache":false}'), +(13712, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:19.06+00', '{"cached":null,"ignore_cache":false}'), +(13713, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:19.068+00', '{"cached":null,"ignore_cache":false}'), +(13714, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:19.071+00', '{"cached":null,"ignore_cache":false}'), +(13715, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:19.091+00', '{"cached":null,"ignore_cache":false}'), +(13716, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:19.164+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13717, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:19.19+00', '{"cached":null,"ignore_cache":false}'), +(13718, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.382+00', '{"cached":null,"ignore_cache":false}'), +(13719, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.448+00', '{"cached":null,"ignore_cache":false}'), +(13720, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.47+00', '{"cached":null,"ignore_cache":false}'), +(13721, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.499+00', '{"cached":null,"ignore_cache":false}'), +(13722, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.602+00', '{"cached":null,"ignore_cache":false}'), +(13723, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.658+00', '{"cached":null,"ignore_cache":false}'), +(13724, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.698+00', '{"cached":null,"ignore_cache":false}'), +(13725, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.736+00', '{"cached":null,"ignore_cache":false}'), +(13726, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.77+00', '{"cached":null,"ignore_cache":false}'), +(13727, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.806+00', '{"cached":null,"ignore_cache":false}'), +(13728, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.829+00', '{"cached":null,"ignore_cache":false}'), +(13729, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.875+00', '{"cached":null,"ignore_cache":false}'), +(13730, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.915+00', '{"cached":null,"ignore_cache":false}'), +(13731, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.945+00', '{"cached":null,"ignore_cache":false}'), +(13732, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:21.97+00', '{"cached":null,"ignore_cache":false}'), +(13733, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:22.088+00', '{"cached":null,"ignore_cache":false}'), +(13734, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:24.004+00', '{"cached":null,"ignore_cache":null}'), +(13735, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:24.712+00', '{"cached":null,"ignore_cache":false}'), +(13736, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:41.83+00', '{"cached":null,"ignore_cache":false}'), +(13737, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:42.072+00', '{"cached":null,"ignore_cache":false}'), +(13738, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:42.078+00', '{"cached":null,"ignore_cache":false}'), +(13739, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:42.106+00', '{"cached":null,"ignore_cache":false}'), +(13740, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:42.109+00', '{"cached":null,"ignore_cache":false}'), +(13741, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:42.112+00', '{"cached":null,"ignore_cache":false}'), +(13742, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:42.12+00', '{"cached":null,"ignore_cache":false}'), +(13743, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:50.962+00', '{"cached":null,"ignore_cache":false}'), +(13744, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.067+00', '{"cached":null,"ignore_cache":false}'), +(13745, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.091+00', '{"cached":null,"ignore_cache":false}'), +(13746, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.147+00', '{"cached":null,"ignore_cache":false}'), +(13747, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.244+00', '{"cached":null,"ignore_cache":false}'), +(13748, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.284+00', '{"cached":null,"ignore_cache":false}'), +(13749, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.286+00', '{"cached":null,"ignore_cache":false}'), +(13750, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.333+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13751, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.381+00', '{"cached":null,"ignore_cache":false}'), +(13752, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.429+00', '{"cached":null,"ignore_cache":false}'), +(13753, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.504+00', '{"cached":null,"ignore_cache":false}'), +(13754, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.51+00', '{"cached":null,"ignore_cache":false}'), +(13755, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.543+00', '{"cached":null,"ignore_cache":false}'), +(13756, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.554+00', '{"cached":null,"ignore_cache":false}'), +(13757, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.557+00', '{"cached":null,"ignore_cache":false}'), +(13758, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.575+00', '{"cached":null,"ignore_cache":false}'), +(13759, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:57.352+00', '{"cached":null,"ignore_cache":null}'), +(13760, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:57.819+00', '{"cached":null,"ignore_cache":false}'), +(13761, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.292+00', '{"cached":null,"ignore_cache":false}'), +(13762, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.302+00', '{"cached":null,"ignore_cache":false}'), +(13763, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.307+00', '{"cached":null,"ignore_cache":false}'), +(13764, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.786+00', '{"cached":null,"ignore_cache":false}'), +(13765, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.891+00', '{"cached":null,"ignore_cache":false}'), +(13766, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.909+00', '{"cached":null,"ignore_cache":false}'), +(13767, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.943+00', '{"cached":null,"ignore_cache":false}'), +(13768, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.953+00', '{"cached":null,"ignore_cache":false}'), +(13769, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.977+00', '{"cached":null,"ignore_cache":false}'), +(13770, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:59.993+00', '{"cached":null,"ignore_cache":false}'), +(13771, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:00.04+00', '{"cached":null,"ignore_cache":false}'), +(13772, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:00.104+00', '{"cached":null,"ignore_cache":false}'), +(13773, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:01.125+00', '{"cached":null,"ignore_cache":false}'), +(13774, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:01.127+00', '{"cached":null,"ignore_cache":false}'), +(13775, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:01.19+00', '{"cached":null,"ignore_cache":false}'), +(13776, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:09.393+00', '{"cached":null,"ignore_cache":null}'), +(13777, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:10.12+00', '{"cached":null,"ignore_cache":false}'), +(13778, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.58+00', '{"cached":null,"ignore_cache":false}'), +(13779, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.65+00', '{"cached":null,"ignore_cache":false}'), +(13780, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.672+00', '{"cached":null,"ignore_cache":false}'), +(13781, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.697+00', '{"cached":null,"ignore_cache":false}'), +(13782, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.711+00', '{"cached":null,"ignore_cache":false}'), +(13783, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.759+00', '{"cached":null,"ignore_cache":false}'), +(13784, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:15.765+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13785, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.811+00', '{"cached":null,"ignore_cache":false}'), +(13786, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.855+00', '{"cached":null,"ignore_cache":false}'), +(13787, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.859+00', '{"cached":null,"ignore_cache":false}'), +(13788, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.861+00', '{"cached":null,"ignore_cache":false}'), +(13789, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.911+00', '{"cached":null,"ignore_cache":false}'), +(13790, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.917+00', '{"cached":null,"ignore_cache":false}'), +(13791, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.947+00', '{"cached":null,"ignore_cache":false}'), +(13792, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:20.995+00', '{"cached":null,"ignore_cache":false}'), +(13793, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.04+00', '{"cached":null,"ignore_cache":false}'), +(13794, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.045+00', '{"cached":null,"ignore_cache":false}'), +(13795, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.071+00', '{"cached":null,"ignore_cache":false}'), +(13796, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.078+00', '{"cached":null,"ignore_cache":false}'), +(13797, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.09+00', '{"cached":null,"ignore_cache":false}'), +(13798, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.094+00', '{"cached":null,"ignore_cache":false}'), +(13799, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.096+00', '{"cached":null,"ignore_cache":false}'), +(13800, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:21.112+00', '{"cached":null,"ignore_cache":false}'), +(13801, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.788+00', '{"cached":null,"ignore_cache":false}'), +(13802, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.818+00', '{"cached":null,"ignore_cache":false}'), +(13803, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.857+00', '{"cached":null,"ignore_cache":false}'), +(13804, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.87+00', '{"cached":null,"ignore_cache":false}'), +(13805, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.898+00', '{"cached":null,"ignore_cache":false}'), +(13806, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.952+00', '{"cached":null,"ignore_cache":false}'), +(13807, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.955+00', '{"cached":null,"ignore_cache":false}'), +(13808, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:35.989+00', '{"cached":null,"ignore_cache":false}'), +(13809, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:36.066+00', '{"cached":null,"ignore_cache":false}'), +(13810, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.823+00', '{"cached":null,"ignore_cache":false}'), +(13811, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.876+00', '{"cached":null,"ignore_cache":false}'), +(13812, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.923+00', '{"cached":null,"ignore_cache":false}'), +(13813, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.95+00', '{"cached":null,"ignore_cache":false}'), +(13814, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.974+00', '{"cached":null,"ignore_cache":false}'), +(13815, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.984+00', '{"cached":null,"ignore_cache":false}'), +(13816, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:49.984+00', '{"cached":null,"ignore_cache":false}'), +(13817, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.975+00', '{"cached":null,"ignore_cache":false}'), +(13818, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.979+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13819, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:50.982+00', '{"cached":null,"ignore_cache":false}'), +(13820, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.019+00', '{"cached":null,"ignore_cache":false}'), +(13821, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.056+00', '{"cached":null,"ignore_cache":false}'), +(13822, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.413+00', '{"cached":null,"ignore_cache":false}'), +(13823, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.423+00', '{"cached":null,"ignore_cache":false}'), +(13824, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.498+00', '{"cached":null,"ignore_cache":false}'), +(13825, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.587+00', '{"cached":null,"ignore_cache":false}'), +(13826, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.596+00', '{"cached":null,"ignore_cache":false}'), +(13827, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.599+00', '{"cached":null,"ignore_cache":false}'), +(13828, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.607+00', '{"cached":null,"ignore_cache":false}'), +(13829, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.623+00', '{"cached":null,"ignore_cache":false}'), +(13830, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.648+00', '{"cached":null,"ignore_cache":false}'), +(13831, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.714+00', '{"cached":null,"ignore_cache":false}'), +(13832, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:55:51.748+00', '{"cached":null,"ignore_cache":false}'), +(13833, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.131+00', '{"cached":null,"ignore_cache":false}'), +(13834, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.189+00', '{"cached":null,"ignore_cache":false}'), +(13835, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.232+00', '{"cached":null,"ignore_cache":false}'), +(13836, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.274+00', '{"cached":null,"ignore_cache":false}'), +(13837, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.429+00', '{"cached":null,"ignore_cache":false}'), +(13838, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.442+00', '{"cached":null,"ignore_cache":false}'), +(13839, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.469+00', '{"cached":null,"ignore_cache":false}'), +(13840, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.495+00', '{"cached":null,"ignore_cache":false}'), +(13841, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:13.539+00', '{"cached":null,"ignore_cache":false}'), +(13842, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.735+00', '{"cached":null,"ignore_cache":false}'), +(13843, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.824+00', '{"cached":null,"ignore_cache":false}'), +(13844, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.902+00', '{"cached":null,"ignore_cache":false}'), +(13845, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.919+00', '{"cached":null,"ignore_cache":false}'), +(13846, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:20.939+00', '{"cached":null,"ignore_cache":false}'), +(13847, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.083+00', '{"cached":null,"ignore_cache":false}'), +(13848, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.085+00', '{"cached":null,"ignore_cache":false}'), +(13849, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.091+00', '{"cached":null,"ignore_cache":false}'), +(13850, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.142+00', '{"cached":null,"ignore_cache":false}'), +(13851, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.203+00', '{"cached":null,"ignore_cache":false}'), +(13852, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.228+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13853, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.237+00', '{"cached":null,"ignore_cache":false}'), +(13854, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.256+00', '{"cached":null,"ignore_cache":false}'), +(13855, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.278+00', '{"cached":null,"ignore_cache":false}'), +(13856, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.284+00', '{"cached":null,"ignore_cache":false}'), +(13857, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:21.291+00', '{"cached":null,"ignore_cache":false}'), +(13858, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.73+00', '{"cached":null,"ignore_cache":false}'), +(13859, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.866+00', '{"cached":null,"ignore_cache":false}'), +(13860, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.902+00', '{"cached":null,"ignore_cache":false}'), +(13861, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.938+00', '{"cached":null,"ignore_cache":false}'), +(13862, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.95+00', '{"cached":null,"ignore_cache":false}'), +(13863, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.954+00', '{"cached":null,"ignore_cache":false}'), +(13864, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:26.97+00', '{"cached":null,"ignore_cache":false}'), +(13865, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:50.799+00', '{"cached":null,"ignore_cache":false}'), +(13866, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.026+00', '{"cached":null,"ignore_cache":false}'), +(13867, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.03+00', '{"cached":null,"ignore_cache":false}'), +(13868, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.087+00', '{"cached":null,"ignore_cache":false}'), +(13869, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.102+00', '{"cached":null,"ignore_cache":false}'), +(13870, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.178+00', '{"cached":null,"ignore_cache":false}'), +(13871, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.203+00', '{"cached":null,"ignore_cache":false}'), +(13872, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.235+00', '{"cached":null,"ignore_cache":false}'), +(13873, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.357+00', '{"cached":null,"ignore_cache":false}'), +(13874, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.373+00', '{"cached":null,"ignore_cache":false}'), +(13875, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.376+00', '{"cached":null,"ignore_cache":false}'), +(13876, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.389+00', '{"cached":null,"ignore_cache":false}'), +(13877, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.434+00', '{"cached":null,"ignore_cache":false}'), +(13878, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.438+00', '{"cached":null,"ignore_cache":false}'), +(13879, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.456+00', '{"cached":null,"ignore_cache":false}'), +(13880, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:56:51.515+00', '{"cached":null,"ignore_cache":false}'), +(13881, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.833+00', '{"cached":null,"ignore_cache":false}'), +(13882, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.835+00', '{"cached":null,"ignore_cache":false}'), +(13883, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.869+00', '{"cached":null,"ignore_cache":false}'), +(13884, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.877+00', '{"cached":null,"ignore_cache":false}'), +(13885, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.878+00', '{"cached":null,"ignore_cache":false}'), +(13886, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.948+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13887, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:20.979+00', '{"cached":null,"ignore_cache":false}'), +(13888, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.021+00', '{"cached":null,"ignore_cache":false}'), +(13889, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.16+00', '{"cached":null,"ignore_cache":false}'), +(13890, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.517+00', '{"cached":null,"ignore_cache":false}'), +(13891, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.546+00', '{"cached":null,"ignore_cache":false}'), +(13892, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.548+00', '{"cached":null,"ignore_cache":false}'), +(13893, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.568+00', '{"cached":null,"ignore_cache":false}'), +(13894, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.61+00', '{"cached":null,"ignore_cache":false}'), +(13895, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.68+00', '{"cached":null,"ignore_cache":false}'), +(13896, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:21.741+00', '{"cached":null,"ignore_cache":false}'), +(13897, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:25.804+00', '{"cached":null,"ignore_cache":null}'), +(13898, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:26.885+00', '{"cached":null,"ignore_cache":false}'), +(13899, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:27.008+00', '{"cached":null,"ignore_cache":false}'), +(13900, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:27.169+00', '{"cached":null,"ignore_cache":false}'), +(13901, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:27.774+00', '{"cached":null,"ignore_cache":false}'), +(13902, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:27.831+00', '{"cached":null,"ignore_cache":false}'), +(13903, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:27.933+00', '{"cached":null,"ignore_cache":false}'), +(13904, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:28.299+00', '{"cached":null,"ignore_cache":false}'), +(13905, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:28.463+00', '{"cached":null,"ignore_cache":false}'), +(13906, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.572+00', '{"cached":null,"ignore_cache":false}'), +(13907, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.586+00', '{"cached":null,"ignore_cache":false}'), +(13908, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.67+00', '{"cached":null,"ignore_cache":false}'), +(13909, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.676+00', '{"cached":null,"ignore_cache":false}'), +(13910, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.69+00', '{"cached":null,"ignore_cache":false}'), +(13911, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.713+00', '{"cached":null,"ignore_cache":false}'), +(13912, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.718+00', '{"cached":null,"ignore_cache":false}'), +(13913, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:29.731+00', '{"cached":null,"ignore_cache":false}'), +(13914, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:32.286+00', '{"cached":null,"ignore_cache":null}'), +(13915, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.531+00', '{"cached":null,"ignore_cache":false}'), +(13916, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.551+00', '{"cached":null,"ignore_cache":false}'), +(13917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.555+00', '{"cached":null,"ignore_cache":false}'), +(13918, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.561+00', '{"cached":null,"ignore_cache":false}'), +(13919, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.568+00', '{"cached":null,"ignore_cache":false}'), +(13920, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.57+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13921, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:33.583+00', '{"cached":null,"ignore_cache":false}'), +(13922, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:44.636+00', '{"cached":null,"ignore_cache":null}'), +(13923, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:45.139+00', '{"cached":null,"ignore_cache":false}'), +(13924, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.71+00', '{"cached":null,"ignore_cache":false}'), +(13925, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.753+00', '{"cached":null,"ignore_cache":false}'), +(13926, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:51.923+00', '{"cached":null,"ignore_cache":false}'), +(13927, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.005+00', '{"cached":null,"ignore_cache":false}'), +(13928, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.055+00', '{"cached":null,"ignore_cache":false}'), +(13929, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.126+00', '{"cached":null,"ignore_cache":false}'), +(13930, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.154+00', '{"cached":null,"ignore_cache":false}'), +(13931, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.302+00', '{"cached":null,"ignore_cache":false}'), +(13932, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.328+00', '{"cached":null,"ignore_cache":false}'), +(13933, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.383+00', '{"cached":null,"ignore_cache":false}'), +(13934, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.463+00', '{"cached":null,"ignore_cache":false}'), +(13935, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.57+00', '{"cached":null,"ignore_cache":false}'), +(13936, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.58+00', '{"cached":null,"ignore_cache":false}'), +(13937, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.588+00', '{"cached":null,"ignore_cache":false}'), +(13938, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.599+00', '{"cached":null,"ignore_cache":false}'), +(13939, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:52.623+00', '{"cached":null,"ignore_cache":false}'), +(13940, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.388+00', '{"cached":null,"ignore_cache":false}'), +(13941, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.569+00', '{"cached":null,"ignore_cache":false}'), +(13942, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.609+00', '{"cached":null,"ignore_cache":false}'), +(13943, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.637+00', '{"cached":null,"ignore_cache":false}'), +(13944, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.649+00', '{"cached":null,"ignore_cache":false}'), +(13945, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.662+00', '{"cached":null,"ignore_cache":false}'), +(13946, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.664+00', '{"cached":null,"ignore_cache":false}'), +(13947, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.682+00', '{"cached":null,"ignore_cache":false}'), +(13948, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:53.747+00', '{"cached":null,"ignore_cache":false}'), +(13949, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.644+00', '{"cached":null,"ignore_cache":false}'), +(13950, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.755+00', '{"cached":null,"ignore_cache":false}'), +(13951, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.777+00', '{"cached":null,"ignore_cache":false}'), +(13952, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.804+00', '{"cached":null,"ignore_cache":false}'), +(13953, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.808+00', '{"cached":null,"ignore_cache":false}'), +(13954, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.817+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13955, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:03.819+00', '{"cached":null,"ignore_cache":false}'), +(13956, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.874+00', '{"cached":null,"ignore_cache":false}'), +(13957, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.91+00', '{"cached":null,"ignore_cache":false}'), +(13958, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.927+00', '{"cached":null,"ignore_cache":false}'), +(13959, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.952+00', '{"cached":null,"ignore_cache":false}'), +(13960, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:20.978+00', '{"cached":null,"ignore_cache":false}'), +(13961, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.003+00', '{"cached":null,"ignore_cache":false}'), +(13962, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.058+00', '{"cached":null,"ignore_cache":false}'), +(13963, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.084+00', '{"cached":null,"ignore_cache":false}'), +(13964, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.125+00', '{"cached":null,"ignore_cache":false}'), +(13965, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.158+00', '{"cached":null,"ignore_cache":false}'), +(13966, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.185+00', '{"cached":null,"ignore_cache":false}'), +(13967, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.206+00', '{"cached":null,"ignore_cache":false}'), +(13968, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.243+00', '{"cached":null,"ignore_cache":false}'), +(13969, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.252+00', '{"cached":null,"ignore_cache":false}'), +(13970, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.256+00', '{"cached":null,"ignore_cache":false}'), +(13971, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:21.259+00', '{"cached":null,"ignore_cache":false}'), +(13972, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.118+00', '{"cached":null,"ignore_cache":false}'), +(13973, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.119+00', '{"cached":null,"ignore_cache":false}'), +(13974, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.126+00', '{"cached":null,"ignore_cache":false}'), +(13975, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.16+00', '{"cached":null,"ignore_cache":false}'), +(13976, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.195+00', '{"cached":null,"ignore_cache":false}'), +(13977, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.318+00', '{"cached":null,"ignore_cache":false}'), +(13978, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.334+00', '{"cached":null,"ignore_cache":false}'), +(13979, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.345+00', '{"cached":null,"ignore_cache":false}'), +(13980, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:23.353+00', '{"cached":null,"ignore_cache":false}'), +(13981, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.621+00', '{"cached":null,"ignore_cache":false}'), +(13982, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.661+00', '{"cached":null,"ignore_cache":false}'), +(13983, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.704+00', '{"cached":null,"ignore_cache":false}'), +(13984, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.731+00', '{"cached":null,"ignore_cache":false}'), +(13985, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.757+00', '{"cached":null,"ignore_cache":false}'), +(13986, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.761+00', '{"cached":null,"ignore_cache":false}'), +(13987, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:33.762+00', '{"cached":null,"ignore_cache":false}'), +(13988, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:40.606+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(13989, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.093+00', '{"cached":null,"ignore_cache":false}'), +(13990, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.138+00', '{"cached":null,"ignore_cache":false}'), +(13991, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.447+00', '{"cached":null,"ignore_cache":false}'), +(13992, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.456+00', '{"cached":null,"ignore_cache":false}'), +(13993, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.463+00', '{"cached":null,"ignore_cache":false}'), +(13994, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.484+00', '{"cached":null,"ignore_cache":false}'), +(13995, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:41.487+00', '{"cached":null,"ignore_cache":false}'), +(13996, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:45.068+00', '{"cached":null,"ignore_cache":null}'), +(13997, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.312+00', '{"cached":null,"ignore_cache":false}'), +(13998, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.476+00', '{"cached":null,"ignore_cache":false}'), +(13999, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.51+00', '{"cached":null,"ignore_cache":false}'), +(14000, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.561+00', '{"cached":null,"ignore_cache":false}'), +(14001, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.591+00', '{"cached":null,"ignore_cache":false}'), +(14002, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.606+00', '{"cached":null,"ignore_cache":false}'), +(14003, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.612+00', '{"cached":null,"ignore_cache":false}'), +(14004, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.628+00', '{"cached":null,"ignore_cache":false}'), +(14005, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.656+00', '{"cached":null,"ignore_cache":false}'), +(14006, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.676+00', '{"cached":null,"ignore_cache":false}'), +(14007, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.768+00', '{"cached":null,"ignore_cache":false}'), +(14008, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.771+00', '{"cached":null,"ignore_cache":false}'), +(14009, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.798+00', '{"cached":null,"ignore_cache":false}'), +(14010, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.811+00', '{"cached":null,"ignore_cache":false}'), +(14011, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.815+00', '{"cached":null,"ignore_cache":false}'), +(14012, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:51.873+00', '{"cached":null,"ignore_cache":false}'), +(14013, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.893+00', '{"cached":null,"ignore_cache":false}'), +(14014, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.935+00', '{"cached":null,"ignore_cache":false}'), +(14015, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.936+00', '{"cached":null,"ignore_cache":false}'), +(14016, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.962+00', '{"cached":null,"ignore_cache":false}'), +(14017, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.967+00', '{"cached":null,"ignore_cache":false}'), +(14018, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:53.985+00', '{"cached":null,"ignore_cache":false}'), +(14019, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:54.005+00', '{"cached":null,"ignore_cache":false}'), +(14020, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:54.015+00', '{"cached":null,"ignore_cache":false}'), +(14021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:54.026+00', '{"cached":null,"ignore_cache":false}'), +(14022, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.746+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14023, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.798+00', '{"cached":null,"ignore_cache":false}'), +(14024, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.808+00', '{"cached":null,"ignore_cache":false}'), +(14025, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.826+00', '{"cached":null,"ignore_cache":false}'), +(14026, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.834+00', '{"cached":null,"ignore_cache":false}'), +(14027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.855+00', '{"cached":null,"ignore_cache":false}'), +(14028, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:04.864+00', '{"cached":null,"ignore_cache":false}'), +(14029, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.898+00', '{"cached":null,"ignore_cache":false}'), +(14030, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.919+00', '{"cached":null,"ignore_cache":false}'), +(14031, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.971+00', '{"cached":null,"ignore_cache":false}'), +(14032, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.982+00', '{"cached":null,"ignore_cache":false}'), +(14033, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:20.988+00', '{"cached":null,"ignore_cache":false}'), +(14034, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.01+00', '{"cached":null,"ignore_cache":false}'), +(14035, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.022+00', '{"cached":null,"ignore_cache":false}'), +(14036, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.027+00', '{"cached":null,"ignore_cache":false}'), +(14037, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.109+00', '{"cached":null,"ignore_cache":false}'), +(14038, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.336+00', '{"cached":null,"ignore_cache":false}'), +(14039, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.356+00', '{"cached":null,"ignore_cache":false}'), +(14040, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.385+00', '{"cached":null,"ignore_cache":false}'), +(14041, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.415+00', '{"cached":null,"ignore_cache":false}'), +(14042, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.524+00', '{"cached":null,"ignore_cache":false}'), +(14043, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.576+00', '{"cached":null,"ignore_cache":false}'), +(14044, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:21.584+00', '{"cached":null,"ignore_cache":false}'), +(14045, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:23.97+00', '{"cached":null,"ignore_cache":false}'), +(14046, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.007+00', '{"cached":null,"ignore_cache":false}'), +(14047, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.014+00', '{"cached":null,"ignore_cache":false}'), +(14048, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.032+00', '{"cached":null,"ignore_cache":false}'), +(14049, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.064+00', '{"cached":null,"ignore_cache":false}'), +(14050, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.128+00', '{"cached":null,"ignore_cache":false}'), +(14051, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.129+00', '{"cached":null,"ignore_cache":false}'), +(14052, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.13+00', '{"cached":null,"ignore_cache":false}'), +(14053, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:24.162+00', '{"cached":null,"ignore_cache":false}'), +(14054, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.533+00', '{"cached":null,"ignore_cache":false}'), +(14055, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.538+00', '{"cached":null,"ignore_cache":false}'), +(14056, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.582+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14057, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.603+00', '{"cached":null,"ignore_cache":false}'), +(14058, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.673+00', '{"cached":null,"ignore_cache":false}'), +(14059, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.703+00', '{"cached":null,"ignore_cache":false}'), +(14060, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:34.726+00', '{"cached":null,"ignore_cache":false}'), +(14061, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:50.931+00', '{"cached":null,"ignore_cache":false}'), +(14062, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.031+00', '{"cached":null,"ignore_cache":false}'), +(14063, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.108+00', '{"cached":null,"ignore_cache":false}'), +(14064, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.13+00', '{"cached":null,"ignore_cache":false}'), +(14065, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.203+00', '{"cached":null,"ignore_cache":false}'), +(14066, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.274+00', '{"cached":null,"ignore_cache":false}'), +(14067, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.29+00', '{"cached":null,"ignore_cache":false}'), +(14068, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.49+00', '{"cached":null,"ignore_cache":false}'), +(14069, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.553+00', '{"cached":null,"ignore_cache":false}'), +(14070, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.576+00', '{"cached":null,"ignore_cache":false}'), +(14071, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.61+00', '{"cached":null,"ignore_cache":false}'), +(14072, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.619+00', '{"cached":null,"ignore_cache":false}'), +(14073, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.651+00', '{"cached":null,"ignore_cache":false}'), +(14074, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.661+00', '{"cached":null,"ignore_cache":false}'), +(14075, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.679+00', '{"cached":null,"ignore_cache":false}'), +(14076, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:51.68+00', '{"cached":null,"ignore_cache":false}'), +(14077, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.845+00', '{"cached":null,"ignore_cache":false}'), +(14078, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.908+00', '{"cached":null,"ignore_cache":false}'), +(14079, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.969+00', '{"cached":null,"ignore_cache":false}'), +(14080, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:53.983+00', '{"cached":null,"ignore_cache":false}'), +(14081, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:54.012+00', '{"cached":null,"ignore_cache":false}'), +(14082, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:54.044+00', '{"cached":null,"ignore_cache":false}'), +(14083, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:54.084+00', '{"cached":null,"ignore_cache":false}'), +(14084, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:54.086+00', '{"cached":null,"ignore_cache":false}'), +(14085, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:54.168+00', '{"cached":null,"ignore_cache":false}'), +(14086, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:58.455+00', '{"cached":null,"ignore_cache":null}'), +(14087, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:59:59.142+00', '{"cached":null,"ignore_cache":false}'), +(14088, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.559+00', '{"cached":null,"ignore_cache":false}'), +(14089, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.564+00', '{"cached":null,"ignore_cache":false}'), +(14090, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.565+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14091, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.592+00', '{"cached":null,"ignore_cache":false}'), +(14092, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.6+00', '{"cached":null,"ignore_cache":false}'), +(14093, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.602+00', '{"cached":null,"ignore_cache":false}'), +(14094, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:04.611+00', '{"cached":null,"ignore_cache":false}'), +(14095, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.271+00', '{"cached":null,"ignore_cache":null}'), +(14096, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.731+00', '{"cached":null,"ignore_cache":false}'), +(14097, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:05.78+00', '{"cached":null,"ignore_cache":false}'), +(14098, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:06.06+00', '{"cached":null,"ignore_cache":false}'), +(14099, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:06.077+00', '{"cached":null,"ignore_cache":false}'), +(14100, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:06.084+00', '{"cached":null,"ignore_cache":false}'), +(14101, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:06.101+00', '{"cached":null,"ignore_cache":false}'), +(14102, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:06.13+00', '{"cached":null,"ignore_cache":false}'), +(14103, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:17.969+00', '{"cached":null,"ignore_cache":null}'), +(14104, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.617+00', '{"cached":null,"ignore_cache":false}'), +(14105, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.816+00', '{"cached":null,"ignore_cache":false}'), +(14106, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.832+00', '{"cached":null,"ignore_cache":false}'), +(14107, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:21.902+00', '{"cached":null,"ignore_cache":false}'), +(14108, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.003+00', '{"cached":null,"ignore_cache":false}'), +(14109, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.009+00', '{"cached":null,"ignore_cache":false}'), +(14110, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.172+00', '{"cached":null,"ignore_cache":false}'), +(14111, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.179+00', '{"cached":null,"ignore_cache":false}'), +(14112, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.322+00', '{"cached":null,"ignore_cache":false}'), +(14113, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.334+00', '{"cached":null,"ignore_cache":false}'), +(14114, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.335+00', '{"cached":null,"ignore_cache":false}'), +(14115, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.375+00', '{"cached":null,"ignore_cache":false}'), +(14116, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.394+00', '{"cached":null,"ignore_cache":false}'), +(14117, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.398+00', '{"cached":null,"ignore_cache":false}'), +(14118, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.463+00', '{"cached":null,"ignore_cache":false}'), +(14119, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:22.614+00', '{"cached":null,"ignore_cache":false}'), +(14120, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.791+00', '{"cached":null,"ignore_cache":false}'), +(14121, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.898+00', '{"cached":null,"ignore_cache":false}'), +(14122, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.912+00', '{"cached":null,"ignore_cache":false}'), +(14123, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:23.989+00', '{"cached":null,"ignore_cache":false}'), +(14124, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:24.02+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14125, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:24.024+00', '{"cached":null,"ignore_cache":false}'), +(14126, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:24.048+00', '{"cached":null,"ignore_cache":false}'), +(14127, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:24.062+00', '{"cached":null,"ignore_cache":false}'), +(14128, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:24.103+00', '{"cached":null,"ignore_cache":false}'), +(14129, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.596+00', '{"cached":null,"ignore_cache":false}'), +(14130, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.619+00', '{"cached":null,"ignore_cache":false}'), +(14131, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.62+00', '{"cached":null,"ignore_cache":false}'), +(14132, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:34.63+00', '{"cached":null,"ignore_cache":false}'), +(14133, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:35.094+00', '{"cached":null,"ignore_cache":false}'), +(14134, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:35.098+00', '{"cached":null,"ignore_cache":false}'), +(14135, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:35.115+00', '{"cached":null,"ignore_cache":false}'), +(14136, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.55+00', '{"cached":null,"ignore_cache":false}'), +(14137, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.679+00', '{"cached":null,"ignore_cache":false}'), +(14138, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.806+00', '{"cached":null,"ignore_cache":false}'), +(14139, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.918+00', '{"cached":null,"ignore_cache":false}'), +(14140, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.979+00', '{"cached":null,"ignore_cache":false}'), +(14141, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:51.98+00', '{"cached":null,"ignore_cache":false}'), +(14142, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.039+00', '{"cached":null,"ignore_cache":false}'), +(14143, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.043+00', '{"cached":null,"ignore_cache":false}'), +(14144, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.053+00', '{"cached":null,"ignore_cache":false}'), +(14145, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.094+00', '{"cached":null,"ignore_cache":false}'), +(14146, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.124+00', '{"cached":null,"ignore_cache":false}'), +(14147, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.148+00', '{"cached":null,"ignore_cache":false}'), +(14148, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.23+00', '{"cached":null,"ignore_cache":false}'), +(14149, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.269+00', '{"cached":null,"ignore_cache":false}'), +(14150, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.303+00', '{"cached":null,"ignore_cache":false}'), +(14151, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:52.306+00', '{"cached":null,"ignore_cache":false}'), +(14152, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.671+00', '{"cached":null,"ignore_cache":false}'), +(14153, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.672+00', '{"cached":null,"ignore_cache":false}'), +(14154, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.783+00', '{"cached":null,"ignore_cache":false}'), +(14155, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.808+00', '{"cached":null,"ignore_cache":false}'), +(14156, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.828+00', '{"cached":null,"ignore_cache":false}'), +(14157, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.843+00', '{"cached":null,"ignore_cache":false}'), +(14158, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.908+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14159, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.949+00', '{"cached":null,"ignore_cache":false}'), +(14160, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:00:53.972+00', '{"cached":null,"ignore_cache":false}'), +(14161, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.639+00', '{"cached":null,"ignore_cache":false}'), +(14162, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.648+00', '{"cached":null,"ignore_cache":false}'), +(14163, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.733+00', '{"cached":null,"ignore_cache":false}'), +(14164, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.768+00', '{"cached":null,"ignore_cache":false}'), +(14165, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.771+00', '{"cached":null,"ignore_cache":false}'), +(14166, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.792+00', '{"cached":null,"ignore_cache":false}'), +(14167, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:04.842+00', '{"cached":null,"ignore_cache":false}'), +(14168, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.43+00', '{"cached":null,"ignore_cache":false}'), +(14169, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.598+00', '{"cached":null,"ignore_cache":false}'), +(14170, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.646+00', '{"cached":null,"ignore_cache":false}'), +(14171, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.707+00', '{"cached":null,"ignore_cache":false}'), +(14172, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.708+00', '{"cached":null,"ignore_cache":false}'), +(14173, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.729+00', '{"cached":null,"ignore_cache":false}'), +(14174, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.773+00', '{"cached":null,"ignore_cache":false}'), +(14175, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.81+00', '{"cached":null,"ignore_cache":false}'), +(14176, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.868+00', '{"cached":null,"ignore_cache":false}'), +(14177, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.897+00', '{"cached":null,"ignore_cache":false}'), +(14178, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.939+00', '{"cached":null,"ignore_cache":false}'), +(14179, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:21.982+00', '{"cached":null,"ignore_cache":false}'), +(14180, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:22.013+00', '{"cached":null,"ignore_cache":false}'), +(14181, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:22.014+00', '{"cached":null,"ignore_cache":false}'), +(14182, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:22.018+00', '{"cached":null,"ignore_cache":false}'), +(14183, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:22.027+00', '{"cached":null,"ignore_cache":false}'), +(14184, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.175+00', '{"cached":null,"ignore_cache":false}'), +(14185, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.178+00', '{"cached":null,"ignore_cache":false}'), +(14186, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.206+00', '{"cached":null,"ignore_cache":false}'), +(14187, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.308+00', '{"cached":null,"ignore_cache":false}'), +(14188, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.342+00', '{"cached":null,"ignore_cache":false}'), +(14189, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.367+00', '{"cached":null,"ignore_cache":false}'), +(14190, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.391+00', '{"cached":null,"ignore_cache":false}'), +(14191, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.457+00', '{"cached":null,"ignore_cache":false}'), +(14192, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:24.496+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14193, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.786+00', '{"cached":null,"ignore_cache":false}'), +(14194, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.855+00', '{"cached":null,"ignore_cache":false}'), +(14195, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.866+00', '{"cached":null,"ignore_cache":false}'), +(14196, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.888+00', '{"cached":null,"ignore_cache":false}'), +(14197, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.904+00', '{"cached":null,"ignore_cache":false}'), +(14198, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.939+00', '{"cached":null,"ignore_cache":false}'), +(14199, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:34.941+00', '{"cached":null,"ignore_cache":false}'), +(14200, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.924+00', '{"cached":null,"ignore_cache":false}'), +(14201, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.956+00', '{"cached":null,"ignore_cache":false}'), +(14202, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:51.99+00', '{"cached":null,"ignore_cache":false}'), +(14203, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.017+00', '{"cached":null,"ignore_cache":false}'), +(14204, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.044+00', '{"cached":null,"ignore_cache":false}'), +(14205, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.061+00', '{"cached":null,"ignore_cache":false}'), +(14206, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.091+00', '{"cached":null,"ignore_cache":false}'), +(14207, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.104+00', '{"cached":null,"ignore_cache":false}'), +(14208, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.125+00', '{"cached":null,"ignore_cache":false}'), +(14209, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.177+00', '{"cached":null,"ignore_cache":false}'), +(14210, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.202+00', '{"cached":null,"ignore_cache":false}'), +(14211, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.203+00', '{"cached":null,"ignore_cache":false}'), +(14212, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.256+00', '{"cached":null,"ignore_cache":false}'), +(14213, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.281+00', '{"cached":null,"ignore_cache":false}'), +(14214, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.309+00', '{"cached":null,"ignore_cache":false}'), +(14215, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:52.397+00', '{"cached":null,"ignore_cache":false}'), +(14216, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.046+00', '{"cached":null,"ignore_cache":false}'), +(14217, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.059+00', '{"cached":null,"ignore_cache":false}'), +(14218, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.159+00', '{"cached":null,"ignore_cache":false}'), +(14219, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.195+00', '{"cached":null,"ignore_cache":false}'), +(14220, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.199+00', '{"cached":null,"ignore_cache":false}'), +(14221, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.199+00', '{"cached":null,"ignore_cache":false}'), +(14222, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.208+00', '{"cached":null,"ignore_cache":false}'), +(14223, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.208+00', '{"cached":null,"ignore_cache":false}'), +(14224, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:01:57.245+00', '{"cached":null,"ignore_cache":false}'), +(14225, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.514+00', '{"cached":null,"ignore_cache":false}'), +(14226, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.543+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14227, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.553+00', '{"cached":null,"ignore_cache":false}'), +(14228, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.613+00', '{"cached":null,"ignore_cache":false}'), +(14229, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.73+00', '{"cached":null,"ignore_cache":false}'), +(14230, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.751+00', '{"cached":null,"ignore_cache":false}'), +(14231, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:10.759+00', '{"cached":null,"ignore_cache":false}'), +(14232, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.471+00', '{"cached":null,"ignore_cache":false}'), +(14233, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.489+00', '{"cached":null,"ignore_cache":false}'), +(14234, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.542+00', '{"cached":null,"ignore_cache":false}'), +(14235, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.552+00', '{"cached":null,"ignore_cache":false}'), +(14236, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.562+00', '{"cached":null,"ignore_cache":false}'), +(14237, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.619+00', '{"cached":null,"ignore_cache":false}'), +(14238, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:21.661+00', '{"cached":null,"ignore_cache":false}'), +(14239, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.471+00', '{"cached":null,"ignore_cache":false}'), +(14240, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.523+00', '{"cached":null,"ignore_cache":false}'), +(14241, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.539+00', '{"cached":null,"ignore_cache":false}'), +(14242, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.586+00', '{"cached":null,"ignore_cache":false}'), +(14243, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.587+00', '{"cached":null,"ignore_cache":false}'), +(14244, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.588+00', '{"cached":null,"ignore_cache":false}'), +(14245, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.623+00', '{"cached":null,"ignore_cache":false}'), +(14246, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.683+00', '{"cached":null,"ignore_cache":false}'), +(14247, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:22.798+00', '{"cached":null,"ignore_cache":false}'), +(14248, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.228+00', '{"cached":null,"ignore_cache":false}'), +(14249, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.249+00', '{"cached":null,"ignore_cache":false}'), +(14250, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.268+00', '{"cached":null,"ignore_cache":false}'), +(14251, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.286+00', '{"cached":null,"ignore_cache":false}'), +(14252, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.314+00', '{"cached":null,"ignore_cache":false}'), +(14253, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.451+00', '{"cached":null,"ignore_cache":false}'), +(14254, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.483+00', '{"cached":null,"ignore_cache":false}'), +(14255, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.529+00', '{"cached":null,"ignore_cache":false}'), +(14256, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:31.577+00', '{"cached":null,"ignore_cache":false}'), +(14257, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.613+00', '{"cached":null,"ignore_cache":false}'), +(14258, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.631+00', '{"cached":null,"ignore_cache":false}'), +(14259, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.693+00', '{"cached":null,"ignore_cache":false}'), +(14260, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.729+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14261, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.748+00', '{"cached":null,"ignore_cache":false}'), +(14262, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.755+00', '{"cached":null,"ignore_cache":false}'), +(14263, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:40.763+00', '{"cached":null,"ignore_cache":false}'), +(14264, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.412+00', '{"cached":null,"ignore_cache":false}'), +(14265, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.427+00', '{"cached":null,"ignore_cache":false}'), +(14266, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.457+00', '{"cached":null,"ignore_cache":false}'), +(14267, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.465+00', '{"cached":null,"ignore_cache":false}'), +(14268, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.482+00', '{"cached":null,"ignore_cache":false}'), +(14269, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.494+00', '{"cached":null,"ignore_cache":false}'), +(14270, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:51.518+00', '{"cached":null,"ignore_cache":false}'), +(14271, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.614+00', '{"cached":null,"ignore_cache":false}'), +(14272, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:52.689+00', '{"cached":null,"ignore_cache":false}'), +(14273, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:53.145+00', '{"cached":null,"ignore_cache":false}'), +(14274, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:53.18+00', '{"cached":null,"ignore_cache":false}'), +(14275, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:53.191+00', '{"cached":null,"ignore_cache":false}'), +(14276, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:53.254+00', '{"cached":null,"ignore_cache":false}'), +(14277, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:53.298+00', '{"cached":null,"ignore_cache":false}'), +(14278, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:53.362+00', '{"cached":null,"ignore_cache":false}'), +(14279, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:02:53.519+00', '{"cached":null,"ignore_cache":false}'), +(14280, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.234+00', '{"cached":null,"ignore_cache":false}'), +(14281, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.384+00', '{"cached":null,"ignore_cache":false}'), +(14282, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.427+00', '{"cached":null,"ignore_cache":false}'), +(14283, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.447+00', '{"cached":null,"ignore_cache":false}'), +(14284, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.475+00', '{"cached":null,"ignore_cache":false}'), +(14285, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.476+00', '{"cached":null,"ignore_cache":false}'), +(14286, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.5+00', '{"cached":null,"ignore_cache":false}'), +(14287, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.533+00', '{"cached":null,"ignore_cache":false}'), +(14288, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:01.542+00', '{"cached":null,"ignore_cache":false}'), +(14289, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.515+00', '{"cached":null,"ignore_cache":false}'), +(14290, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.541+00', '{"cached":null,"ignore_cache":false}'), +(14291, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.562+00', '{"cached":null,"ignore_cache":false}'), +(14292, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.573+00', '{"cached":null,"ignore_cache":false}'), +(14293, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.605+00', '{"cached":null,"ignore_cache":false}'), +(14294, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.61+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14295, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:10.633+00', '{"cached":null,"ignore_cache":false}'), +(14296, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.472+00', '{"cached":null,"ignore_cache":false}'), +(14297, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.552+00', '{"cached":null,"ignore_cache":false}'), +(14298, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.586+00', '{"cached":null,"ignore_cache":false}'), +(14299, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.656+00', '{"cached":null,"ignore_cache":false}'), +(14300, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.658+00', '{"cached":null,"ignore_cache":false}'), +(14301, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.671+00', '{"cached":null,"ignore_cache":false}'), +(14302, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:21.685+00', '{"cached":null,"ignore_cache":false}'), +(14303, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.399+00', '{"cached":null,"ignore_cache":false}'), +(14304, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.433+00', '{"cached":null,"ignore_cache":false}'), +(14305, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.594+00', '{"cached":null,"ignore_cache":false}'), +(14306, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.666+00', '{"cached":null,"ignore_cache":false}'), +(14307, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.671+00', '{"cached":null,"ignore_cache":false}'), +(14308, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.74+00', '{"cached":null,"ignore_cache":false}'), +(14309, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.776+00', '{"cached":null,"ignore_cache":false}'), +(14310, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.847+00', '{"cached":null,"ignore_cache":false}'), +(14311, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:22.944+00', '{"cached":null,"ignore_cache":false}'), +(14312, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.758+00', '{"cached":null,"ignore_cache":false}'), +(14313, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.88+00', '{"cached":null,"ignore_cache":false}'), +(14314, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.935+00', '{"cached":null,"ignore_cache":false}'), +(14315, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.976+00', '{"cached":null,"ignore_cache":false}'), +(14316, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:30.979+00', '{"cached":null,"ignore_cache":false}'), +(14317, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:31.009+00', '{"cached":null,"ignore_cache":false}'), +(14318, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:31.049+00', '{"cached":null,"ignore_cache":false}'), +(14319, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:31.11+00', '{"cached":null,"ignore_cache":false}'), +(14320, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:31.153+00', '{"cached":null,"ignore_cache":false}'), +(14321, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.549+00', '{"cached":null,"ignore_cache":false}'), +(14322, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.57+00', '{"cached":null,"ignore_cache":false}'), +(14323, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.612+00', '{"cached":null,"ignore_cache":false}'), +(14324, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.638+00', '{"cached":null,"ignore_cache":false}'), +(14325, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.669+00', '{"cached":null,"ignore_cache":false}'), +(14326, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.674+00', '{"cached":null,"ignore_cache":false}'), +(14327, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:40.678+00', '{"cached":null,"ignore_cache":false}'), +(14328, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.633+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14329, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.666+00', '{"cached":null,"ignore_cache":false}'), +(14330, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.728+00', '{"cached":null,"ignore_cache":false}'), +(14331, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.73+00', '{"cached":null,"ignore_cache":false}'), +(14332, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.743+00', '{"cached":null,"ignore_cache":false}'), +(14333, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.772+00', '{"cached":null,"ignore_cache":false}'), +(14334, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:51.821+00', '{"cached":null,"ignore_cache":false}'), +(14335, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.806+00', '{"cached":null,"ignore_cache":false}'), +(14336, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.875+00', '{"cached":null,"ignore_cache":false}'), +(14337, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:52.958+00', '{"cached":null,"ignore_cache":false}'), +(14338, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:53.027+00', '{"cached":null,"ignore_cache":false}'), +(14339, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:53.03+00', '{"cached":null,"ignore_cache":false}'), +(14340, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:53.048+00', '{"cached":null,"ignore_cache":false}'), +(14341, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:53.062+00', '{"cached":null,"ignore_cache":false}'), +(14342, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:53.086+00', '{"cached":null,"ignore_cache":false}'), +(14343, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:03:53.292+00', '{"cached":null,"ignore_cache":false}'), +(14344, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.643+00', '{"cached":null,"ignore_cache":false}'), +(14345, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.738+00', '{"cached":null,"ignore_cache":false}'), +(14346, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.791+00', '{"cached":null,"ignore_cache":false}'), +(14347, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.801+00', '{"cached":null,"ignore_cache":false}'), +(14348, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.959+00', '{"cached":null,"ignore_cache":false}'), +(14349, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.982+00', '{"cached":null,"ignore_cache":false}'), +(14350, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:00.993+00', '{"cached":null,"ignore_cache":false}'), +(14351, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:01.017+00', '{"cached":null,"ignore_cache":false}'), +(14352, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:01.045+00', '{"cached":null,"ignore_cache":false}'), +(14353, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.603+00', '{"cached":null,"ignore_cache":false}'), +(14354, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.697+00', '{"cached":null,"ignore_cache":false}'), +(14355, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.724+00', '{"cached":null,"ignore_cache":false}'), +(14356, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.76+00', '{"cached":null,"ignore_cache":false}'), +(14357, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.788+00', '{"cached":null,"ignore_cache":false}'), +(14358, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.797+00', '{"cached":null,"ignore_cache":false}'), +(14359, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:10.826+00', '{"cached":null,"ignore_cache":false}'), +(14360, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.419+00', '{"cached":null,"ignore_cache":false}'), +(14361, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.527+00', '{"cached":null,"ignore_cache":false}'), +(14362, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.607+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14363, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.617+00', '{"cached":null,"ignore_cache":false}'), +(14364, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.629+00', '{"cached":null,"ignore_cache":false}'), +(14365, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.632+00', '{"cached":null,"ignore_cache":false}'), +(14366, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:21.638+00', '{"cached":null,"ignore_cache":false}'), +(14367, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.168+00', '{"cached":null,"ignore_cache":false}'), +(14368, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.2+00', '{"cached":null,"ignore_cache":false}'), +(14369, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.228+00', '{"cached":null,"ignore_cache":false}'), +(14370, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.236+00', '{"cached":null,"ignore_cache":false}'), +(14371, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.241+00', '{"cached":null,"ignore_cache":false}'), +(14372, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.278+00', '{"cached":null,"ignore_cache":false}'), +(14373, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.29+00', '{"cached":null,"ignore_cache":false}'), +(14374, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.3+00', '{"cached":null,"ignore_cache":false}'), +(14375, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:22.358+00', '{"cached":null,"ignore_cache":false}'), +(14376, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.71+00', '{"cached":null,"ignore_cache":false}'), +(14377, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.806+00', '{"cached":null,"ignore_cache":false}'), +(14378, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.817+00', '{"cached":null,"ignore_cache":false}'), +(14379, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.836+00', '{"cached":null,"ignore_cache":false}'), +(14380, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.937+00', '{"cached":null,"ignore_cache":false}'), +(14381, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.945+00', '{"cached":null,"ignore_cache":false}'), +(14382, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.959+00', '{"cached":null,"ignore_cache":false}'), +(14383, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.964+00', '{"cached":null,"ignore_cache":false}'), +(14384, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:34.981+00', '{"cached":null,"ignore_cache":false}'), +(14385, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:46.905+00', '{"cached":null,"ignore_cache":null}'), +(14386, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.019+00', '{"cached":null,"ignore_cache":false}'), +(14387, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.032+00', '{"cached":null,"ignore_cache":false}'), +(14388, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.065+00', '{"cached":null,"ignore_cache":false}'), +(14389, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.065+00', '{"cached":null,"ignore_cache":false}'), +(14390, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.074+00', '{"cached":null,"ignore_cache":false}'), +(14391, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.077+00', '{"cached":null,"ignore_cache":false}'), +(14392, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:48.085+00', '{"cached":null,"ignore_cache":false}'), +(14393, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.175+00', '{"cached":null,"ignore_cache":false}'), +(14394, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.19+00', '{"cached":null,"ignore_cache":false}'), +(14395, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.219+00', '{"cached":null,"ignore_cache":false}'), +(14396, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.291+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.3+00', '{"cached":null,"ignore_cache":false}'), +(14398, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.323+00', '{"cached":null,"ignore_cache":false}'), +(14399, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:50.326+00', '{"cached":null,"ignore_cache":false}'), +(14400, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.402+00', '{"cached":null,"ignore_cache":false}'), +(14401, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.407+00', '{"cached":null,"ignore_cache":false}'), +(14402, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.451+00', '{"cached":null,"ignore_cache":false}'), +(14403, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.468+00', '{"cached":null,"ignore_cache":false}'), +(14404, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.497+00', '{"cached":null,"ignore_cache":false}'), +(14405, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.5+00', '{"cached":null,"ignore_cache":false}'), +(14406, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:51.529+00', '{"cached":null,"ignore_cache":false}'), +(14407, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.258+00', '{"cached":null,"ignore_cache":false}'), +(14408, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.303+00', '{"cached":null,"ignore_cache":false}'), +(14409, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.306+00', '{"cached":null,"ignore_cache":false}'), +(14410, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.383+00', '{"cached":null,"ignore_cache":false}'), +(14411, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.398+00', '{"cached":null,"ignore_cache":false}'), +(14412, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.404+00', '{"cached":null,"ignore_cache":false}'), +(14413, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.423+00', '{"cached":null,"ignore_cache":false}'), +(14414, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.48+00', '{"cached":null,"ignore_cache":false}'), +(14415, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:52.505+00', '{"cached":null,"ignore_cache":false}'), +(14416, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:15.927+00', '{"cached":null,"ignore_cache":false}'), +(14417, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.064+00', '{"cached":null,"ignore_cache":false}'), +(14418, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.104+00', '{"cached":null,"ignore_cache":false}'), +(14419, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.12+00', '{"cached":null,"ignore_cache":false}'), +(14420, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.249+00', '{"cached":null,"ignore_cache":false}'), +(14421, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.286+00', '{"cached":null,"ignore_cache":false}'), +(14422, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.289+00', '{"cached":null,"ignore_cache":false}'), +(14423, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.302+00', '{"cached":null,"ignore_cache":false}'), +(14424, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:16.313+00', '{"cached":null,"ignore_cache":false}'), +(14425, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.461+00', '{"cached":null,"ignore_cache":false}'), +(14426, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.48+00', '{"cached":null,"ignore_cache":false}'), +(14427, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.487+00', '{"cached":null,"ignore_cache":false}'), +(14428, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.488+00', '{"cached":null,"ignore_cache":false}'), +(14429, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.5+00', '{"cached":null,"ignore_cache":false}'), +(14430, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.503+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14431, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:28.509+00', '{"cached":null,"ignore_cache":false}'), +(14432, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.86+00', '{"cached":null,"ignore_cache":false}'), +(14433, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.972+00', '{"cached":null,"ignore_cache":false}'), +(14434, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:52.988+00', '{"cached":null,"ignore_cache":false}'), +(14435, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:53.013+00', '{"cached":null,"ignore_cache":false}'), +(14436, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:53.038+00', '{"cached":null,"ignore_cache":false}'), +(14437, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:53.043+00', '{"cached":null,"ignore_cache":false}'), +(14438, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:53.058+00', '{"cached":null,"ignore_cache":false}'), +(14439, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:53.085+00', '{"cached":null,"ignore_cache":false}'), +(14440, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:05:53.098+00', '{"cached":null,"ignore_cache":false}'), +(14441, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.82+00', '{"cached":null,"ignore_cache":false}'), +(14442, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.84+00', '{"cached":null,"ignore_cache":false}'), +(14443, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.876+00', '{"cached":null,"ignore_cache":false}'), +(14444, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.884+00', '{"cached":null,"ignore_cache":false}'), +(14445, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.922+00', '{"cached":null,"ignore_cache":false}'), +(14446, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.935+00', '{"cached":null,"ignore_cache":false}'), +(14447, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:08.96+00', '{"cached":null,"ignore_cache":false}'), +(14448, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.707+00', '{"cached":null,"ignore_cache":false}'), +(14449, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.773+00', '{"cached":null,"ignore_cache":false}'), +(14450, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.804+00', '{"cached":null,"ignore_cache":false}'), +(14451, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.814+00', '{"cached":null,"ignore_cache":false}'), +(14452, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.837+00', '{"cached":null,"ignore_cache":false}'), +(14453, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.868+00', '{"cached":null,"ignore_cache":false}'), +(14454, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.917+00', '{"cached":null,"ignore_cache":false}'), +(14455, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:29.983+00', '{"cached":null,"ignore_cache":false}'), +(14456, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:30.002+00', '{"cached":null,"ignore_cache":false}'), +(14457, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.899+00', '{"cached":null,"ignore_cache":false}'), +(14458, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.955+00', '{"cached":null,"ignore_cache":false}'), +(14459, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:42.955+00', '{"cached":null,"ignore_cache":false}'), +(14460, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:43.009+00', '{"cached":null,"ignore_cache":false}'), +(14461, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:43.032+00', '{"cached":null,"ignore_cache":false}'), +(14462, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:43.053+00', '{"cached":null,"ignore_cache":false}'), +(14463, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:06:43.07+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14464, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.171+00', '{"cached":null,"ignore_cache":false}'), +(14465, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.172+00', '{"cached":null,"ignore_cache":false}'), +(14466, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.211+00', '{"cached":null,"ignore_cache":false}'), +(14467, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.22+00', '{"cached":null,"ignore_cache":false}'), +(14468, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.254+00', '{"cached":null,"ignore_cache":false}'), +(14469, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.33+00', '{"cached":null,"ignore_cache":false}'), +(14470, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.358+00', '{"cached":null,"ignore_cache":false}'), +(14471, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.363+00', '{"cached":null,"ignore_cache":false}'), +(14472, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:02.384+00', '{"cached":null,"ignore_cache":false}'), +(14473, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.582+00', '{"cached":null,"ignore_cache":false}'), +(14474, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.613+00', '{"cached":null,"ignore_cache":false}'), +(14475, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.62+00', '{"cached":null,"ignore_cache":false}'), +(14476, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.623+00', '{"cached":null,"ignore_cache":false}'), +(14477, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.631+00', '{"cached":null,"ignore_cache":false}'), +(14478, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.641+00', '{"cached":null,"ignore_cache":false}'), +(14479, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:12.669+00', '{"cached":null,"ignore_cache":false}'), +(14480, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.242+00', '{"cached":null,"ignore_cache":false}'), +(14481, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.243+00', '{"cached":null,"ignore_cache":false}'), +(14482, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.273+00', '{"cached":null,"ignore_cache":false}'), +(14483, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.278+00', '{"cached":null,"ignore_cache":false}'), +(14484, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.298+00', '{"cached":null,"ignore_cache":false}'), +(14485, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.306+00', '{"cached":null,"ignore_cache":false}'), +(14486, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:24.338+00', '{"cached":null,"ignore_cache":false}'), +(14487, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.833+00', '{"cached":null,"ignore_cache":false}'), +(14488, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.845+00', '{"cached":null,"ignore_cache":false}'), +(14489, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.862+00', '{"cached":null,"ignore_cache":false}'), +(14490, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.877+00', '{"cached":null,"ignore_cache":false}'), +(14491, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.887+00', '{"cached":null,"ignore_cache":false}'), +(14492, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.914+00', '{"cached":null,"ignore_cache":false}'), +(14493, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.924+00', '{"cached":null,"ignore_cache":false}'), +(14494, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.926+00', '{"cached":null,"ignore_cache":false}'), +(14495, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:31.927+00', '{"cached":null,"ignore_cache":false}'), +(14496, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.662+00', '{"cached":null,"ignore_cache":false}'), +(14497, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.701+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14498, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.714+00', '{"cached":null,"ignore_cache":false}'), +(14499, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.753+00', '{"cached":null,"ignore_cache":false}'), +(14500, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.773+00', '{"cached":null,"ignore_cache":false}'), +(14501, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.778+00', '{"cached":null,"ignore_cache":false}'), +(14502, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:07:42.784+00', '{"cached":null,"ignore_cache":false}'), +(14503, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.867+00', '{"cached":null,"ignore_cache":false}'), +(14504, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.888+00', '{"cached":null,"ignore_cache":false}'), +(14505, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.902+00', '{"cached":null,"ignore_cache":false}'), +(14506, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.927+00', '{"cached":null,"ignore_cache":false}'), +(14507, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:01.989+00', '{"cached":null,"ignore_cache":false}'), +(14508, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:02.014+00', '{"cached":null,"ignore_cache":false}'), +(14509, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:02.045+00', '{"cached":null,"ignore_cache":false}'), +(14510, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:02.05+00', '{"cached":null,"ignore_cache":false}'), +(14511, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:02.073+00', '{"cached":null,"ignore_cache":false}'), +(14512, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.538+00', '{"cached":null,"ignore_cache":false}'), +(14513, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.687+00', '{"cached":null,"ignore_cache":false}'), +(14514, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.706+00', '{"cached":null,"ignore_cache":false}'), +(14515, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.722+00', '{"cached":null,"ignore_cache":false}'), +(14516, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.723+00', '{"cached":null,"ignore_cache":false}'), +(14517, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:10.768+00', '{"cached":null,"ignore_cache":false}'), +(14518, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.129+00', '{"cached":null,"ignore_cache":false}'), +(14519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.233+00', '{"cached":null,"ignore_cache":false}'), +(14520, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.585+00', '{"cached":null,"ignore_cache":false}'), +(14521, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.622+00', '{"cached":null,"ignore_cache":false}'), +(14522, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.679+00', '{"cached":null,"ignore_cache":false}'), +(14523, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.779+00', '{"cached":null,"ignore_cache":false}'), +(14524, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:11.827+00', '{"cached":null,"ignore_cache":false}'), +(14525, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.546+00', '{"cached":null,"ignore_cache":false}'), +(14526, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.584+00', '{"cached":null,"ignore_cache":false}'), +(14527, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.654+00', '{"cached":null,"ignore_cache":false}'), +(14528, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.84+00', '{"cached":null,"ignore_cache":false}'), +(14529, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:12.998+00', '{"cached":null,"ignore_cache":false}'), +(14530, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.112+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14531, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.113+00', '{"cached":null,"ignore_cache":false}'), +(14532, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.571+00', '{"cached":null,"ignore_cache":false}'), +(14533, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.602+00', '{"cached":null,"ignore_cache":false}'), +(14534, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.691+00', '{"cached":null,"ignore_cache":false}'), +(14535, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.726+00', '{"cached":null,"ignore_cache":false}'), +(14536, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:13.986+00', '{"cached":null,"ignore_cache":false}'), +(14537, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.073+00', '{"cached":null,"ignore_cache":false}'), +(14538, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.245+00', '{"cached":null,"ignore_cache":false}'), +(14539, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.309+00', '{"cached":null,"ignore_cache":false}'), +(14540, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.522+00', '{"cached":null,"ignore_cache":false}'), +(14541, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.54+00', '{"cached":null,"ignore_cache":false}'), +(14542, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.734+00', '{"cached":null,"ignore_cache":false}'), +(14543, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.74+00', '{"cached":null,"ignore_cache":false}'), +(14544, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:14.925+00', '{"cached":null,"ignore_cache":false}'), +(14545, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.521+00', '{"cached":null,"ignore_cache":false}'), +(14546, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.662+00', '{"cached":null,"ignore_cache":false}'), +(14547, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.737+00', '{"cached":null,"ignore_cache":false}'), +(14548, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.786+00', '{"cached":null,"ignore_cache":false}'), +(14549, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.852+00', '{"cached":null,"ignore_cache":false}'), +(14550, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.872+00', '{"cached":null,"ignore_cache":false}'), +(14551, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:24.873+00', '{"cached":null,"ignore_cache":false}'), +(14552, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:25.041+00', '{"cached":null,"ignore_cache":false}'), +(14553, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:25.054+00', '{"cached":null,"ignore_cache":false}'), +(14554, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.07+00', '{"cached":null,"ignore_cache":false}'), +(14555, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.081+00', '{"cached":null,"ignore_cache":false}'), +(14556, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.09+00', '{"cached":null,"ignore_cache":false}'), +(14557, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.102+00', '{"cached":null,"ignore_cache":false}'), +(14558, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.152+00', '{"cached":null,"ignore_cache":false}'), +(14559, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.167+00', '{"cached":null,"ignore_cache":false}'), +(14560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.175+00', '{"cached":null,"ignore_cache":false}'), +(14561, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.179+00', '{"cached":null,"ignore_cache":false}'), +(14562, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:32.186+00', '{"cached":null,"ignore_cache":false}'), +(14563, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.491+00', '{"cached":null,"ignore_cache":false}'), +(14564, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.561+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14565, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.729+00', '{"cached":null,"ignore_cache":false}'), +(14566, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.748+00', '{"cached":null,"ignore_cache":false}'), +(14567, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.769+00', '{"cached":null,"ignore_cache":false}'), +(14568, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.776+00', '{"cached":null,"ignore_cache":false}'), +(14569, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.786+00', '{"cached":null,"ignore_cache":false}'), +(14570, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.828+00', '{"cached":null,"ignore_cache":false}'), +(14571, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.842+00', '{"cached":null,"ignore_cache":false}'), +(14572, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.857+00', '{"cached":null,"ignore_cache":false}'), +(14573, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.862+00', '{"cached":null,"ignore_cache":false}'), +(14574, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.894+00', '{"cached":null,"ignore_cache":false}'), +(14575, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.895+00', '{"cached":null,"ignore_cache":false}'), +(14576, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.924+00', '{"cached":null,"ignore_cache":false}'), +(14577, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.973+00', '{"cached":null,"ignore_cache":false}'), +(14578, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:40.984+00', '{"cached":null,"ignore_cache":false}'), +(14579, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.645+00', '{"cached":null,"ignore_cache":false}'), +(14580, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.693+00', '{"cached":null,"ignore_cache":false}'), +(14581, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.718+00', '{"cached":null,"ignore_cache":false}'), +(14582, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.751+00', '{"cached":null,"ignore_cache":false}'), +(14583, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.754+00', '{"cached":null,"ignore_cache":false}'), +(14584, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.774+00', '{"cached":null,"ignore_cache":false}'), +(14585, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:08:42.788+00', '{"cached":null,"ignore_cache":false}'), +(14586, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.557+00', '{"cached":null,"ignore_cache":false}'), +(14587, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.59+00', '{"cached":null,"ignore_cache":false}'), +(14588, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.605+00', '{"cached":null,"ignore_cache":false}'), +(14589, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.654+00', '{"cached":null,"ignore_cache":false}'), +(14590, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.668+00', '{"cached":null,"ignore_cache":false}'), +(14591, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.682+00', '{"cached":null,"ignore_cache":false}'), +(14592, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.706+00', '{"cached":null,"ignore_cache":false}'), +(14593, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.712+00', '{"cached":null,"ignore_cache":false}'), +(14594, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:01.713+00', '{"cached":null,"ignore_cache":false}'), +(14595, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.423+00', '{"cached":null,"ignore_cache":false}'), +(14596, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.454+00', '{"cached":null,"ignore_cache":false}'), +(14597, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.493+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14598, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.501+00', '{"cached":null,"ignore_cache":false}'), +(14599, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.514+00', '{"cached":null,"ignore_cache":false}'), +(14600, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.567+00', '{"cached":null,"ignore_cache":false}'), +(14601, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.722+00', '{"cached":null,"ignore_cache":false}'), +(14602, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.73+00', '{"cached":null,"ignore_cache":false}'), +(14603, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.787+00', '{"cached":null,"ignore_cache":false}'), +(14604, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.813+00', '{"cached":null,"ignore_cache":false}'), +(14605, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.824+00', '{"cached":null,"ignore_cache":false}'), +(14606, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.921+00', '{"cached":null,"ignore_cache":false}'), +(14607, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.928+00', '{"cached":null,"ignore_cache":false}'), +(14608, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:10.957+00', '{"cached":null,"ignore_cache":false}'), +(14609, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:11.006+00', '{"cached":null,"ignore_cache":false}'), +(14610, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:11.008+00', '{"cached":null,"ignore_cache":false}'), +(14611, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.607+00', '{"cached":null,"ignore_cache":false}'), +(14612, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.649+00', '{"cached":null,"ignore_cache":false}'), +(14613, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.703+00', '{"cached":null,"ignore_cache":false}'), +(14614, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.725+00', '{"cached":null,"ignore_cache":false}'), +(14615, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.731+00', '{"cached":null,"ignore_cache":false}'), +(14616, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.764+00', '{"cached":null,"ignore_cache":false}'), +(14617, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:12.811+00', '{"cached":null,"ignore_cache":false}'), +(14618, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.819+00', '{"cached":null,"ignore_cache":false}'), +(14619, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.859+00', '{"cached":null,"ignore_cache":false}'), +(14620, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.873+00', '{"cached":null,"ignore_cache":false}'), +(14621, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.883+00', '{"cached":null,"ignore_cache":false}'), +(14622, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.92+00', '{"cached":null,"ignore_cache":false}'), +(14623, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.921+00', '{"cached":null,"ignore_cache":false}'), +(14624, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.93+00', '{"cached":null,"ignore_cache":false}'), +(14625, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.95+00', '{"cached":null,"ignore_cache":false}'), +(14626, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:31.953+00', '{"cached":null,"ignore_cache":false}'), +(14627, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.192+00', '{"cached":null,"ignore_cache":false}'), +(14628, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.26+00', '{"cached":null,"ignore_cache":false}'), +(14629, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.261+00', '{"cached":null,"ignore_cache":false}'), +(14630, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.293+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14631, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.307+00', '{"cached":null,"ignore_cache":false}'), +(14632, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.32+00', '{"cached":null,"ignore_cache":false}'), +(14633, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.32+00', '{"cached":null,"ignore_cache":false}'), +(14634, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.325+00', '{"cached":null,"ignore_cache":false}'), +(14635, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.328+00', '{"cached":null,"ignore_cache":false}'), +(14636, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.385+00', '{"cached":null,"ignore_cache":false}'), +(14637, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.403+00', '{"cached":null,"ignore_cache":false}'), +(14638, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.452+00', '{"cached":null,"ignore_cache":false}'), +(14639, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.478+00', '{"cached":null,"ignore_cache":false}'), +(14640, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.483+00', '{"cached":null,"ignore_cache":false}'), +(14641, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.521+00', '{"cached":null,"ignore_cache":false}'), +(14642, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:40.534+00', '{"cached":null,"ignore_cache":false}'), +(14643, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.508+00', '{"cached":null,"ignore_cache":false}'), +(14644, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.518+00', '{"cached":null,"ignore_cache":false}'), +(14645, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.539+00', '{"cached":null,"ignore_cache":false}'), +(14646, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.555+00', '{"cached":null,"ignore_cache":false}'), +(14647, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.576+00', '{"cached":null,"ignore_cache":false}'), +(14648, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.587+00', '{"cached":null,"ignore_cache":false}'), +(14649, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:09:42.594+00', '{"cached":null,"ignore_cache":false}'), +(14650, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.752+00', '{"cached":null,"ignore_cache":false}'), +(14651, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.754+00', '{"cached":null,"ignore_cache":false}'), +(14652, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.767+00', '{"cached":null,"ignore_cache":false}'), +(14653, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.767+00', '{"cached":null,"ignore_cache":false}'), +(14654, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.784+00', '{"cached":null,"ignore_cache":false}'), +(14655, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.785+00', '{"cached":null,"ignore_cache":false}'), +(14656, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.792+00', '{"cached":null,"ignore_cache":false}'), +(14657, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.81+00', '{"cached":null,"ignore_cache":false}'), +(14658, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:01.823+00', '{"cached":null,"ignore_cache":false}'), +(14659, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.574+00', '{"cached":null,"ignore_cache":false}'), +(14660, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.623+00', '{"cached":null,"ignore_cache":false}'), +(14661, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.627+00', '{"cached":null,"ignore_cache":false}'), +(14662, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.679+00', '{"cached":null,"ignore_cache":false}'), +(14663, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.683+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14664, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.737+00', '{"cached":null,"ignore_cache":false}'), +(14665, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.768+00', '{"cached":null,"ignore_cache":false}'), +(14666, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.771+00', '{"cached":null,"ignore_cache":false}'), +(14667, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.792+00', '{"cached":null,"ignore_cache":false}'), +(14668, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.827+00', '{"cached":null,"ignore_cache":false}'), +(14669, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.846+00', '{"cached":null,"ignore_cache":false}'), +(14670, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.849+00', '{"cached":null,"ignore_cache":false}'), +(14671, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.854+00', '{"cached":null,"ignore_cache":false}'), +(14672, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.854+00', '{"cached":null,"ignore_cache":false}'), +(14673, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.855+00', '{"cached":null,"ignore_cache":false}'), +(14674, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:10.862+00', '{"cached":null,"ignore_cache":false}'), +(14675, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.615+00', '{"cached":null,"ignore_cache":false}'), +(14676, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.637+00', '{"cached":null,"ignore_cache":false}'), +(14677, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.655+00', '{"cached":null,"ignore_cache":false}'), +(14678, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.695+00', '{"cached":null,"ignore_cache":false}'), +(14679, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.713+00', '{"cached":null,"ignore_cache":false}'), +(14680, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.723+00', '{"cached":null,"ignore_cache":false}'), +(14681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:12.73+00', '{"cached":null,"ignore_cache":false}'), +(14682, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.585+00', '{"cached":null,"ignore_cache":false}'), +(14683, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.725+00', '{"cached":null,"ignore_cache":false}'), +(14684, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.772+00', '{"cached":null,"ignore_cache":false}'), +(14685, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.8+00', '{"cached":null,"ignore_cache":false}'), +(14686, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.848+00', '{"cached":null,"ignore_cache":false}'), +(14687, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.864+00', '{"cached":null,"ignore_cache":false}'), +(14688, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.882+00', '{"cached":null,"ignore_cache":false}'), +(14689, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.898+00', '{"cached":null,"ignore_cache":false}'), +(14690, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:31.922+00', '{"cached":null,"ignore_cache":false}'), +(14691, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.275+00', '{"cached":null,"ignore_cache":false}'), +(14692, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.289+00', '{"cached":null,"ignore_cache":false}'), +(14693, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.326+00', '{"cached":null,"ignore_cache":false}'), +(14694, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.418+00', '{"cached":null,"ignore_cache":false}'), +(14695, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.447+00', '{"cached":null,"ignore_cache":false}'), +(14696, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.517+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14697, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.529+00', '{"cached":null,"ignore_cache":false}'), +(14698, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.531+00', '{"cached":null,"ignore_cache":false}'), +(14699, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.595+00', '{"cached":null,"ignore_cache":false}'), +(14700, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.598+00', '{"cached":null,"ignore_cache":false}'), +(14701, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.599+00', '{"cached":null,"ignore_cache":false}'), +(14702, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.627+00', '{"cached":null,"ignore_cache":false}'), +(14703, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.646+00', '{"cached":null,"ignore_cache":false}'), +(14704, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.738+00', '{"cached":null,"ignore_cache":false}'), +(14705, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.755+00', '{"cached":null,"ignore_cache":false}'), +(14706, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:41.783+00', '{"cached":null,"ignore_cache":false}'), +(14707, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.723+00', '{"cached":null,"ignore_cache":false}'), +(14708, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.742+00', '{"cached":null,"ignore_cache":false}'), +(14709, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.78+00', '{"cached":null,"ignore_cache":false}'), +(14710, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.795+00', '{"cached":null,"ignore_cache":false}'), +(14711, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.808+00', '{"cached":null,"ignore_cache":false}'), +(14712, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.859+00', '{"cached":null,"ignore_cache":false}'), +(14713, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:10:42.917+00', '{"cached":null,"ignore_cache":false}'), +(14714, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.714+00', '{"cached":null,"ignore_cache":false}'), +(14715, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.775+00', '{"cached":null,"ignore_cache":false}'), +(14716, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.783+00', '{"cached":null,"ignore_cache":false}'), +(14717, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.798+00', '{"cached":null,"ignore_cache":false}'), +(14718, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.881+00', '{"cached":null,"ignore_cache":false}'), +(14719, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.888+00', '{"cached":null,"ignore_cache":false}'), +(14720, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.911+00', '{"cached":null,"ignore_cache":false}'), +(14721, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.919+00', '{"cached":null,"ignore_cache":false}'), +(14722, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:01.923+00', '{"cached":null,"ignore_cache":false}'), +(14723, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.342+00', '{"cached":null,"ignore_cache":false}'), +(14724, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.462+00', '{"cached":null,"ignore_cache":false}'), +(14725, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.545+00', '{"cached":null,"ignore_cache":false}'), +(14726, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.587+00', '{"cached":null,"ignore_cache":false}'), +(14727, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.623+00', '{"cached":null,"ignore_cache":false}'), +(14728, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.632+00', '{"cached":null,"ignore_cache":false}'), +(14729, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.648+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14730, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.685+00', '{"cached":null,"ignore_cache":false}'), +(14731, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.693+00', '{"cached":null,"ignore_cache":false}'), +(14732, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.696+00', '{"cached":null,"ignore_cache":false}'), +(14733, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.733+00', '{"cached":null,"ignore_cache":false}'), +(14734, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.751+00', '{"cached":null,"ignore_cache":false}'), +(14735, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.786+00', '{"cached":null,"ignore_cache":false}'), +(14736, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.786+00', '{"cached":null,"ignore_cache":false}'), +(14737, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.79+00', '{"cached":null,"ignore_cache":false}'), +(14738, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:11.81+00', '{"cached":null,"ignore_cache":false}'), +(14739, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.476+00', '{"cached":null,"ignore_cache":false}'), +(14740, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.522+00', '{"cached":null,"ignore_cache":false}'), +(14741, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.526+00', '{"cached":null,"ignore_cache":false}'), +(14742, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.556+00', '{"cached":null,"ignore_cache":false}'), +(14743, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.561+00', '{"cached":null,"ignore_cache":false}'), +(14744, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.581+00', '{"cached":null,"ignore_cache":false}'), +(14745, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:12.589+00', '{"cached":null,"ignore_cache":false}'), +(14746, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.704+00', '{"cached":null,"ignore_cache":false}'), +(14747, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.712+00', '{"cached":null,"ignore_cache":false}'), +(14748, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.733+00', '{"cached":null,"ignore_cache":false}'), +(14749, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.771+00', '{"cached":null,"ignore_cache":false}'), +(14750, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.777+00', '{"cached":null,"ignore_cache":false}'), +(14751, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.781+00', '{"cached":null,"ignore_cache":false}'), +(14752, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.783+00', '{"cached":null,"ignore_cache":false}'), +(14753, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.795+00', '{"cached":null,"ignore_cache":false}'), +(14754, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:31.876+00', '{"cached":null,"ignore_cache":false}'), +(14755, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.528+00', '{"cached":null,"ignore_cache":false}'), +(14756, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.563+00', '{"cached":null,"ignore_cache":false}'), +(14757, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.641+00', '{"cached":null,"ignore_cache":false}'), +(14758, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.666+00', '{"cached":null,"ignore_cache":false}'), +(14759, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.685+00', '{"cached":null,"ignore_cache":false}'), +(14760, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.7+00', '{"cached":null,"ignore_cache":false}'), +(14761, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.706+00', '{"cached":null,"ignore_cache":false}'), +(14762, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.712+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14763, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.743+00', '{"cached":null,"ignore_cache":false}'), +(14764, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.753+00', '{"cached":null,"ignore_cache":false}'), +(14765, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.76+00', '{"cached":null,"ignore_cache":false}'), +(14766, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.806+00', '{"cached":null,"ignore_cache":false}'), +(14767, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.832+00', '{"cached":null,"ignore_cache":false}'), +(14768, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.838+00', '{"cached":null,"ignore_cache":false}'), +(14769, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.852+00', '{"cached":null,"ignore_cache":false}'), +(14770, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:41.864+00', '{"cached":null,"ignore_cache":false}'), +(14771, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.454+00', '{"cached":null,"ignore_cache":false}'), +(14772, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.498+00', '{"cached":null,"ignore_cache":false}'), +(14773, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.521+00', '{"cached":null,"ignore_cache":false}'), +(14774, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.534+00', '{"cached":null,"ignore_cache":false}'), +(14775, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.551+00', '{"cached":null,"ignore_cache":false}'), +(14776, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.554+00', '{"cached":null,"ignore_cache":false}'), +(14777, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:11:42.563+00', '{"cached":null,"ignore_cache":false}'), +(14778, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.726+00', '{"cached":null,"ignore_cache":false}'), +(14779, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.761+00', '{"cached":null,"ignore_cache":false}'), +(14780, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.765+00', '{"cached":null,"ignore_cache":false}'), +(14781, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.776+00', '{"cached":null,"ignore_cache":false}'), +(14782, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.778+00', '{"cached":null,"ignore_cache":false}'), +(14783, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.782+00', '{"cached":null,"ignore_cache":false}'), +(14784, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.8+00', '{"cached":null,"ignore_cache":false}'), +(14785, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.81+00', '{"cached":null,"ignore_cache":false}'), +(14786, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:01.815+00', '{"cached":null,"ignore_cache":false}'), +(14787, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.126+00', '{"cached":null,"ignore_cache":false}'), +(14788, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.213+00', '{"cached":null,"ignore_cache":false}'), +(14789, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.275+00', '{"cached":null,"ignore_cache":false}'), +(14790, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.302+00', '{"cached":null,"ignore_cache":false}'), +(14791, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.333+00', '{"cached":null,"ignore_cache":false}'), +(14792, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.354+00', '{"cached":null,"ignore_cache":false}'), +(14793, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.368+00', '{"cached":null,"ignore_cache":false}'), +(14794, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.414+00', '{"cached":null,"ignore_cache":false}'), +(14795, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.42+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14796, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.513+00', '{"cached":null,"ignore_cache":false}'), +(14797, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.547+00', '{"cached":null,"ignore_cache":false}'), +(14798, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.561+00', '{"cached":null,"ignore_cache":false}'), +(14799, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.585+00', '{"cached":null,"ignore_cache":false}'), +(14800, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.588+00', '{"cached":null,"ignore_cache":false}'), +(14801, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.59+00', '{"cached":null,"ignore_cache":false}'), +(14802, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:11.594+00', '{"cached":null,"ignore_cache":false}'), +(14803, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.421+00', '{"cached":null,"ignore_cache":false}'), +(14804, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.451+00', '{"cached":null,"ignore_cache":false}'), +(14805, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.458+00', '{"cached":null,"ignore_cache":false}'), +(14806, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.464+00', '{"cached":null,"ignore_cache":false}'), +(14807, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.486+00', '{"cached":null,"ignore_cache":false}'), +(14808, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.488+00', '{"cached":null,"ignore_cache":false}'), +(14809, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:12.503+00', '{"cached":null,"ignore_cache":false}'), +(14810, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.705+00', '{"cached":null,"ignore_cache":false}'), +(14811, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.727+00', '{"cached":null,"ignore_cache":false}'), +(14812, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.737+00', '{"cached":null,"ignore_cache":false}'), +(14813, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.753+00', '{"cached":null,"ignore_cache":false}'), +(14814, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.756+00', '{"cached":null,"ignore_cache":false}'), +(14815, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.804+00', '{"cached":null,"ignore_cache":false}'), +(14816, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.807+00', '{"cached":null,"ignore_cache":false}'), +(14817, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.884+00', '{"cached":null,"ignore_cache":false}'), +(14818, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:31.888+00', '{"cached":null,"ignore_cache":false}'), +(14819, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.048+00', '{"cached":null,"ignore_cache":false}'), +(14820, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.099+00', '{"cached":null,"ignore_cache":false}'), +(14821, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.122+00', '{"cached":null,"ignore_cache":false}'), +(14822, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.188+00', '{"cached":null,"ignore_cache":false}'), +(14823, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.192+00', '{"cached":null,"ignore_cache":false}'), +(14824, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.202+00', '{"cached":null,"ignore_cache":false}'), +(14825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.205+00', '{"cached":null,"ignore_cache":false}'), +(14826, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.235+00', '{"cached":null,"ignore_cache":false}'), +(14827, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.247+00', '{"cached":null,"ignore_cache":false}'), +(14828, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.301+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14829, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.315+00', '{"cached":null,"ignore_cache":false}'), +(14830, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.341+00', '{"cached":null,"ignore_cache":false}'), +(14831, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.343+00', '{"cached":null,"ignore_cache":false}'), +(14832, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.363+00', '{"cached":null,"ignore_cache":false}'), +(14833, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.364+00', '{"cached":null,"ignore_cache":false}'), +(14834, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:41.431+00', '{"cached":null,"ignore_cache":false}'), +(14835, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.605+00', '{"cached":null,"ignore_cache":false}'), +(14836, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.638+00', '{"cached":null,"ignore_cache":false}'), +(14837, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.676+00', '{"cached":null,"ignore_cache":false}'), +(14838, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.682+00', '{"cached":null,"ignore_cache":false}'), +(14839, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.697+00', '{"cached":null,"ignore_cache":false}'), +(14840, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.708+00', '{"cached":null,"ignore_cache":false}'), +(14841, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:12:42.728+00', '{"cached":null,"ignore_cache":false}'), +(14842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.675+00', '{"cached":null,"ignore_cache":false}'), +(14843, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.781+00', '{"cached":null,"ignore_cache":false}'), +(14844, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.784+00', '{"cached":null,"ignore_cache":false}'), +(14845, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.814+00', '{"cached":null,"ignore_cache":false}'), +(14846, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.819+00', '{"cached":null,"ignore_cache":false}'), +(14847, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.836+00', '{"cached":null,"ignore_cache":false}'), +(14848, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.888+00', '{"cached":null,"ignore_cache":false}'), +(14849, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.918+00', '{"cached":null,"ignore_cache":false}'), +(14850, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:01.969+00', '{"cached":null,"ignore_cache":false}'), +(14851, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.166+00', '{"cached":null,"ignore_cache":false}'), +(14852, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.371+00', '{"cached":null,"ignore_cache":false}'), +(14853, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.43+00', '{"cached":null,"ignore_cache":false}'), +(14854, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.435+00', '{"cached":null,"ignore_cache":false}'), +(14855, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.443+00', '{"cached":null,"ignore_cache":false}'), +(14856, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.449+00', '{"cached":null,"ignore_cache":false}'), +(14857, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.472+00', '{"cached":null,"ignore_cache":false}'), +(14858, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.492+00', '{"cached":null,"ignore_cache":false}'), +(14859, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.512+00', '{"cached":null,"ignore_cache":false}'), +(14860, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.526+00', '{"cached":null,"ignore_cache":false}'), +(14861, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.599+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14862, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.632+00', '{"cached":null,"ignore_cache":false}'), +(14863, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.65+00', '{"cached":null,"ignore_cache":false}'), +(14864, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.743+00', '{"cached":null,"ignore_cache":false}'), +(14865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.743+00', '{"cached":null,"ignore_cache":false}'), +(14866, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:11.758+00', '{"cached":null,"ignore_cache":false}'), +(14867, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.735+00', '{"cached":null,"ignore_cache":false}'), +(14868, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.736+00', '{"cached":null,"ignore_cache":false}'), +(14869, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.754+00', '{"cached":null,"ignore_cache":false}'), +(14870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.768+00', '{"cached":null,"ignore_cache":false}'), +(14871, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.769+00', '{"cached":null,"ignore_cache":false}'), +(14872, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.812+00', '{"cached":null,"ignore_cache":false}'), +(14873, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:12.83+00', '{"cached":null,"ignore_cache":false}'), +(14874, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.656+00', '{"cached":null,"ignore_cache":false}'), +(14875, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.752+00', '{"cached":null,"ignore_cache":false}'), +(14876, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.803+00', '{"cached":null,"ignore_cache":false}'), +(14877, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.87+00', '{"cached":null,"ignore_cache":false}'), +(14878, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.879+00', '{"cached":null,"ignore_cache":false}'), +(14879, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.885+00', '{"cached":null,"ignore_cache":false}'), +(14880, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.891+00', '{"cached":null,"ignore_cache":false}'), +(14881, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.899+00', '{"cached":null,"ignore_cache":false}'), +(14882, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:31.905+00', '{"cached":null,"ignore_cache":false}'), +(14883, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.078+00', '{"cached":null,"ignore_cache":false}'), +(14884, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.209+00', '{"cached":null,"ignore_cache":false}'), +(14885, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.271+00', '{"cached":null,"ignore_cache":false}'), +(14886, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.285+00', '{"cached":null,"ignore_cache":false}'), +(14887, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.313+00', '{"cached":null,"ignore_cache":false}'), +(14888, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.321+00', '{"cached":null,"ignore_cache":false}'), +(14889, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.326+00', '{"cached":null,"ignore_cache":false}'), +(14890, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.329+00', '{"cached":null,"ignore_cache":false}'), +(14891, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.333+00', '{"cached":null,"ignore_cache":false}'), +(14892, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.35+00', '{"cached":null,"ignore_cache":false}'), +(14893, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.367+00', '{"cached":null,"ignore_cache":false}'), +(14894, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.372+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14895, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.376+00', '{"cached":null,"ignore_cache":false}'), +(14896, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.389+00', '{"cached":null,"ignore_cache":false}'), +(14897, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.392+00', '{"cached":null,"ignore_cache":false}'), +(14898, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:41.395+00', '{"cached":null,"ignore_cache":false}'), +(14899, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.466+00', '{"cached":null,"ignore_cache":false}'), +(14900, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.556+00', '{"cached":null,"ignore_cache":false}'), +(14901, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.566+00', '{"cached":null,"ignore_cache":false}'), +(14902, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.579+00', '{"cached":null,"ignore_cache":false}'), +(14903, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.594+00', '{"cached":null,"ignore_cache":false}'), +(14904, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.601+00', '{"cached":null,"ignore_cache":false}'), +(14905, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:13:42.683+00', '{"cached":null,"ignore_cache":false}'), +(14906, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.722+00', '{"cached":null,"ignore_cache":false}'), +(14907, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.793+00', '{"cached":null,"ignore_cache":false}'), +(14908, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.815+00', '{"cached":null,"ignore_cache":false}'), +(14909, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.895+00', '{"cached":null,"ignore_cache":false}'), +(14910, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.895+00', '{"cached":null,"ignore_cache":false}'), +(14911, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.938+00', '{"cached":null,"ignore_cache":false}'), +(14912, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.948+00', '{"cached":null,"ignore_cache":false}'), +(14913, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.949+00', '{"cached":null,"ignore_cache":false}'), +(14914, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:01.964+00', '{"cached":null,"ignore_cache":false}'), +(14915, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.549+00', '{"cached":null,"ignore_cache":false}'), +(14916, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.565+00', '{"cached":null,"ignore_cache":false}'), +(14917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.653+00', '{"cached":null,"ignore_cache":false}'), +(14918, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.687+00', '{"cached":null,"ignore_cache":false}'), +(14919, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.694+00', '{"cached":null,"ignore_cache":false}'), +(14920, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.719+00', '{"cached":null,"ignore_cache":false}'), +(14921, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.748+00', '{"cached":null,"ignore_cache":false}'), +(14922, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.757+00', '{"cached":null,"ignore_cache":false}'), +(14923, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.762+00', '{"cached":null,"ignore_cache":false}'), +(14924, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.802+00', '{"cached":null,"ignore_cache":false}'), +(14925, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.828+00', '{"cached":null,"ignore_cache":false}'), +(14926, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.834+00', '{"cached":null,"ignore_cache":false}'), +(14927, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.844+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14928, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.909+00', '{"cached":null,"ignore_cache":false}'), +(14929, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.946+00', '{"cached":null,"ignore_cache":false}'), +(14930, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:11.961+00', '{"cached":null,"ignore_cache":false}'), +(14931, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.474+00', '{"cached":null,"ignore_cache":false}'), +(14932, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.639+00', '{"cached":null,"ignore_cache":false}'), +(14933, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.687+00', '{"cached":null,"ignore_cache":false}'), +(14934, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.766+00', '{"cached":null,"ignore_cache":false}'), +(14935, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.77+00', '{"cached":null,"ignore_cache":false}'), +(14936, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.807+00', '{"cached":null,"ignore_cache":false}'), +(14937, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:12.836+00', '{"cached":null,"ignore_cache":false}'), +(14938, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.843+00', '{"cached":null,"ignore_cache":false}'), +(14939, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.914+00', '{"cached":null,"ignore_cache":false}'), +(14940, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.944+00', '{"cached":null,"ignore_cache":false}'), +(14941, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.971+00', '{"cached":null,"ignore_cache":false}'), +(14942, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.973+00', '{"cached":null,"ignore_cache":false}'), +(14943, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:31.995+00', '{"cached":null,"ignore_cache":false}'), +(14944, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:32.033+00', '{"cached":null,"ignore_cache":false}'), +(14945, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:32.042+00', '{"cached":null,"ignore_cache":false}'), +(14946, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:32.069+00', '{"cached":null,"ignore_cache":false}'), +(14947, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.575+00', '{"cached":null,"ignore_cache":false}'), +(14948, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.608+00', '{"cached":null,"ignore_cache":false}'), +(14949, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.731+00', '{"cached":null,"ignore_cache":false}'), +(14950, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.732+00', '{"cached":null,"ignore_cache":false}'), +(14951, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.79+00', '{"cached":null,"ignore_cache":false}'), +(14952, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.838+00', '{"cached":null,"ignore_cache":false}'), +(14953, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.91+00', '{"cached":null,"ignore_cache":false}'), +(14954, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.911+00', '{"cached":null,"ignore_cache":false}'), +(14955, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.924+00', '{"cached":null,"ignore_cache":false}'), +(14956, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.958+00', '{"cached":null,"ignore_cache":false}'), +(14957, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.971+00', '{"cached":null,"ignore_cache":false}'), +(14958, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.993+00', '{"cached":null,"ignore_cache":false}'), +(14959, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:41.994+00', '{"cached":null,"ignore_cache":false}'), +(14960, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.004+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14961, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.021+00', '{"cached":null,"ignore_cache":false}'), +(14962, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.06+00', '{"cached":null,"ignore_cache":false}'), +(14963, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.449+00', '{"cached":null,"ignore_cache":false}'), +(14964, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.54+00', '{"cached":null,"ignore_cache":false}'), +(14965, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.591+00', '{"cached":null,"ignore_cache":false}'), +(14966, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.618+00', '{"cached":null,"ignore_cache":false}'), +(14967, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.65+00', '{"cached":null,"ignore_cache":false}'), +(14968, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.661+00', '{"cached":null,"ignore_cache":false}'), +(14969, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:14:42.67+00', '{"cached":null,"ignore_cache":false}'), +(14970, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.869+00', '{"cached":null,"ignore_cache":false}'), +(14971, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.922+00', '{"cached":null,"ignore_cache":false}'), +(14972, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:01.955+00', '{"cached":null,"ignore_cache":false}'), +(14973, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:02.04+00', '{"cached":null,"ignore_cache":false}'), +(14974, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:02.062+00', '{"cached":null,"ignore_cache":false}'), +(14975, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:02.07+00', '{"cached":null,"ignore_cache":false}'), +(14976, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:02.093+00', '{"cached":null,"ignore_cache":false}'), +(14977, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:02.097+00', '{"cached":null,"ignore_cache":false}'), +(14978, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:02.129+00', '{"cached":null,"ignore_cache":false}'), +(14979, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.205+00', '{"cached":null,"ignore_cache":false}'), +(14980, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.213+00', '{"cached":null,"ignore_cache":false}'), +(14981, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.24+00', '{"cached":null,"ignore_cache":false}'), +(14982, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.291+00', '{"cached":null,"ignore_cache":false}'), +(14983, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.302+00', '{"cached":null,"ignore_cache":false}'), +(14984, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.322+00', '{"cached":null,"ignore_cache":false}'), +(14985, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.325+00', '{"cached":null,"ignore_cache":false}'), +(14986, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.335+00', '{"cached":null,"ignore_cache":false}'), +(14987, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.36+00', '{"cached":null,"ignore_cache":false}'), +(14988, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.383+00', '{"cached":null,"ignore_cache":false}'), +(14989, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.39+00', '{"cached":null,"ignore_cache":false}'), +(14990, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.393+00', '{"cached":null,"ignore_cache":false}'), +(14991, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.398+00', '{"cached":null,"ignore_cache":false}'), +(14992, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.404+00', '{"cached":null,"ignore_cache":false}'), +(14993, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.408+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(14994, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:11.422+00', '{"cached":null,"ignore_cache":false}'), +(14995, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.407+00', '{"cached":null,"ignore_cache":false}'), +(14996, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.412+00', '{"cached":null,"ignore_cache":false}'), +(14997, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.426+00', '{"cached":null,"ignore_cache":false}'), +(14998, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.432+00', '{"cached":null,"ignore_cache":false}'), +(14999, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.475+00', '{"cached":null,"ignore_cache":false}'), +(15000, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.479+00', '{"cached":null,"ignore_cache":false}'), +(15001, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:12.482+00', '{"cached":null,"ignore_cache":false}'), +(15002, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.677+00', '{"cached":null,"ignore_cache":false}'), +(15003, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.682+00', '{"cached":null,"ignore_cache":false}'), +(15004, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.689+00', '{"cached":null,"ignore_cache":false}'), +(15005, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.73+00', '{"cached":null,"ignore_cache":false}'), +(15006, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.742+00', '{"cached":null,"ignore_cache":false}'), +(15007, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.757+00', '{"cached":null,"ignore_cache":false}'), +(15008, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.761+00', '{"cached":null,"ignore_cache":false}'), +(15009, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.763+00', '{"cached":null,"ignore_cache":false}'), +(15010, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:31.783+00', '{"cached":null,"ignore_cache":false}'), +(15011, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.535+00', '{"cached":null,"ignore_cache":false}'), +(15012, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.642+00', '{"cached":null,"ignore_cache":false}'), +(15013, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.649+00', '{"cached":null,"ignore_cache":false}'), +(15014, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.649+00', '{"cached":null,"ignore_cache":false}'), +(15015, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.664+00', '{"cached":null,"ignore_cache":false}'), +(15016, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.682+00', '{"cached":null,"ignore_cache":false}'), +(15017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:15:42.713+00', '{"cached":null,"ignore_cache":false}'), +(15018, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.701+00', '{"cached":null,"ignore_cache":false}'), +(15019, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.711+00', '{"cached":null,"ignore_cache":false}'), +(15020, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.726+00', '{"cached":null,"ignore_cache":false}'), +(15021, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.734+00', '{"cached":null,"ignore_cache":false}'), +(15022, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.769+00', '{"cached":null,"ignore_cache":false}'), +(15023, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.777+00', '{"cached":null,"ignore_cache":false}'), +(15024, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.781+00', '{"cached":null,"ignore_cache":false}'), +(15025, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.79+00', '{"cached":null,"ignore_cache":false}'), +(15026, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:01.794+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15027, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.618+00', '{"cached":null,"ignore_cache":false}'), +(15028, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.717+00', '{"cached":null,"ignore_cache":false}'), +(15029, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.73+00', '{"cached":null,"ignore_cache":false}'), +(15030, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.77+00', '{"cached":null,"ignore_cache":false}'), +(15031, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.818+00', '{"cached":null,"ignore_cache":false}'), +(15032, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.857+00', '{"cached":null,"ignore_cache":false}'), +(15033, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:12.866+00', '{"cached":null,"ignore_cache":false}'), +(15034, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.649+00', '{"cached":null,"ignore_cache":false}'), +(15035, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.816+00', '{"cached":null,"ignore_cache":false}'), +(15036, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.839+00', '{"cached":null,"ignore_cache":false}'), +(15037, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.887+00', '{"cached":null,"ignore_cache":false}'), +(15038, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.898+00', '{"cached":null,"ignore_cache":false}'), +(15039, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.955+00', '{"cached":null,"ignore_cache":false}'), +(15040, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:31.99+00', '{"cached":null,"ignore_cache":false}'), +(15041, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:32.023+00', '{"cached":null,"ignore_cache":false}'), +(15042, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:32.028+00', '{"cached":null,"ignore_cache":false}'), +(15043, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.622+00', '{"cached":null,"ignore_cache":false}'), +(15044, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.733+00', '{"cached":null,"ignore_cache":false}'), +(15045, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.755+00', '{"cached":null,"ignore_cache":false}'), +(15046, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.759+00', '{"cached":null,"ignore_cache":false}'), +(15047, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.77+00', '{"cached":null,"ignore_cache":false}'), +(15048, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.827+00', '{"cached":null,"ignore_cache":false}'), +(15049, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:16:42.84+00', '{"cached":null,"ignore_cache":false}'), +(15050, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.698+00', '{"cached":null,"ignore_cache":false}'), +(15051, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.859+00', '{"cached":null,"ignore_cache":false}'), +(15052, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.89+00', '{"cached":null,"ignore_cache":false}'), +(15053, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.905+00', '{"cached":null,"ignore_cache":false}'), +(15054, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:01.987+00', '{"cached":null,"ignore_cache":false}'), +(15055, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:02.035+00', '{"cached":null,"ignore_cache":false}'), +(15056, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:02.123+00', '{"cached":null,"ignore_cache":false}'), +(15057, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:02.124+00', '{"cached":null,"ignore_cache":false}'), +(15058, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:02.132+00', '{"cached":null,"ignore_cache":false}'), +(15059, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.497+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15060, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.498+00', '{"cached":null,"ignore_cache":false}'), +(15061, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.518+00', '{"cached":null,"ignore_cache":false}'), +(15062, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.525+00', '{"cached":null,"ignore_cache":false}'), +(15063, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.543+00', '{"cached":null,"ignore_cache":false}'), +(15064, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.554+00', '{"cached":null,"ignore_cache":false}'), +(15065, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:12.558+00', '{"cached":null,"ignore_cache":false}'), +(15066, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.807+00', '{"cached":null,"ignore_cache":false}'), +(15067, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.857+00', '{"cached":null,"ignore_cache":false}'), +(15068, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.859+00', '{"cached":null,"ignore_cache":false}'), +(15069, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.878+00', '{"cached":null,"ignore_cache":false}'), +(15070, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.886+00', '{"cached":null,"ignore_cache":false}'), +(15071, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.895+00', '{"cached":null,"ignore_cache":false}'), +(15072, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.901+00', '{"cached":null,"ignore_cache":false}'), +(15073, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.91+00', '{"cached":null,"ignore_cache":false}'), +(15074, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:31.925+00', '{"cached":null,"ignore_cache":false}'), +(15075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.643+00', '{"cached":null,"ignore_cache":false}'), +(15076, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.658+00', '{"cached":null,"ignore_cache":false}'), +(15077, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.677+00', '{"cached":null,"ignore_cache":false}'), +(15078, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.685+00', '{"cached":null,"ignore_cache":false}'), +(15079, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.708+00', '{"cached":null,"ignore_cache":false}'), +(15080, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.72+00', '{"cached":null,"ignore_cache":false}'), +(15081, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:17:42.731+00', '{"cached":null,"ignore_cache":false}'), +(15082, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.524+00', '{"cached":null,"ignore_cache":false}'), +(15083, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.54+00', '{"cached":null,"ignore_cache":false}'), +(15084, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.551+00', '{"cached":null,"ignore_cache":false}'), +(15085, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.568+00', '{"cached":null,"ignore_cache":false}'), +(15086, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.581+00', '{"cached":null,"ignore_cache":false}'), +(15087, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.584+00', '{"cached":null,"ignore_cache":false}'), +(15088, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.618+00', '{"cached":null,"ignore_cache":false}'), +(15089, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.635+00', '{"cached":null,"ignore_cache":false}'), +(15090, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:01.641+00', '{"cached":null,"ignore_cache":false}'), +(15091, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.482+00', '{"cached":null,"ignore_cache":false}'), +(15092, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.497+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15093, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.523+00', '{"cached":null,"ignore_cache":false}'), +(15094, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.53+00', '{"cached":null,"ignore_cache":false}'), +(15095, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.531+00', '{"cached":null,"ignore_cache":false}'), +(15096, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.548+00', '{"cached":null,"ignore_cache":false}'), +(15097, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:12.553+00', '{"cached":null,"ignore_cache":false}'), +(15098, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.848+00', '{"cached":null,"ignore_cache":false}'), +(15099, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.894+00', '{"cached":null,"ignore_cache":false}'), +(15100, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.962+00', '{"cached":null,"ignore_cache":false}'), +(15101, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:32.979+00', '{"cached":null,"ignore_cache":false}'), +(15102, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:33.01+00', '{"cached":null,"ignore_cache":false}'), +(15103, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:33.013+00', '{"cached":null,"ignore_cache":false}'), +(15104, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:33.032+00', '{"cached":null,"ignore_cache":false}'), +(15105, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:33.055+00', '{"cached":null,"ignore_cache":false}'), +(15106, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:33.058+00', '{"cached":null,"ignore_cache":false}'), +(15107, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.198+00', '{"cached":null,"ignore_cache":false}'), +(15108, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.231+00', '{"cached":null,"ignore_cache":false}'), +(15109, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.244+00', '{"cached":null,"ignore_cache":false}'), +(15110, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.716+00', '{"cached":null,"ignore_cache":false}'), +(15111, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.734+00', '{"cached":null,"ignore_cache":false}'), +(15112, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.768+00', '{"cached":null,"ignore_cache":false}'), +(15113, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:18:45.811+00', '{"cached":null,"ignore_cache":false}'), +(15114, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.427+00', '{"cached":null,"ignore_cache":false}'), +(15115, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.622+00', '{"cached":null,"ignore_cache":false}'), +(15116, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.645+00', '{"cached":null,"ignore_cache":false}'), +(15117, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.647+00', '{"cached":null,"ignore_cache":false}'), +(15118, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.674+00', '{"cached":null,"ignore_cache":false}'), +(15119, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.704+00', '{"cached":null,"ignore_cache":false}'), +(15120, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.731+00', '{"cached":null,"ignore_cache":false}'), +(15121, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.752+00', '{"cached":null,"ignore_cache":false}'), +(15122, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:03.785+00', '{"cached":null,"ignore_cache":false}'), +(15123, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.538+00', '{"cached":null,"ignore_cache":false}'), +(15124, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.544+00', '{"cached":null,"ignore_cache":false}'), +(15125, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.612+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15126, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.639+00', '{"cached":null,"ignore_cache":false}'), +(15127, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.641+00', '{"cached":null,"ignore_cache":false}'), +(15128, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.676+00', '{"cached":null,"ignore_cache":false}'), +(15129, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:15.681+00', '{"cached":null,"ignore_cache":false}'), +(15130, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.576+00', '{"cached":null,"ignore_cache":false}'), +(15131, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.594+00', '{"cached":null,"ignore_cache":false}'), +(15132, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.682+00', '{"cached":null,"ignore_cache":false}'), +(15133, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.691+00', '{"cached":null,"ignore_cache":false}'), +(15134, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.692+00', '{"cached":null,"ignore_cache":false}'), +(15135, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.692+00', '{"cached":null,"ignore_cache":false}'), +(15136, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.702+00', '{"cached":null,"ignore_cache":false}'), +(15137, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.739+00', '{"cached":null,"ignore_cache":false}'), +(15138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:34.761+00', '{"cached":null,"ignore_cache":false}'), +(15139, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.489+00', '{"cached":null,"ignore_cache":false}'), +(15140, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.57+00', '{"cached":null,"ignore_cache":false}'), +(15141, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.591+00', '{"cached":null,"ignore_cache":false}'), +(15142, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.658+00', '{"cached":null,"ignore_cache":false}'), +(15143, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.664+00', '{"cached":null,"ignore_cache":false}'), +(15144, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.672+00', '{"cached":null,"ignore_cache":false}'), +(15145, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:19:46.679+00', '{"cached":null,"ignore_cache":false}'), +(15146, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.646+00', '{"cached":null,"ignore_cache":false}'), +(15147, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.705+00', '{"cached":null,"ignore_cache":false}'), +(15148, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.804+00', '{"cached":null,"ignore_cache":false}'), +(15149, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.805+00', '{"cached":null,"ignore_cache":false}'), +(15150, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.814+00', '{"cached":null,"ignore_cache":false}'), +(15151, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.861+00', '{"cached":null,"ignore_cache":false}'), +(15152, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.879+00', '{"cached":null,"ignore_cache":false}'), +(15153, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.923+00', '{"cached":null,"ignore_cache":false}'), +(15154, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:05.942+00', '{"cached":null,"ignore_cache":false}'), +(15155, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.355+00', '{"cached":null,"ignore_cache":false}'), +(15156, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.402+00', '{"cached":null,"ignore_cache":false}'), +(15157, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.459+00', '{"cached":null,"ignore_cache":false}'), +(15158, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.48+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15159, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.501+00', '{"cached":null,"ignore_cache":false}'), +(15160, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.576+00', '{"cached":null,"ignore_cache":false}'), +(15161, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:17.618+00', '{"cached":null,"ignore_cache":false}'), +(15162, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.339+00', '{"cached":null,"ignore_cache":false}'), +(15163, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.366+00', '{"cached":null,"ignore_cache":false}'), +(15164, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.416+00', '{"cached":null,"ignore_cache":false}'), +(15165, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.439+00', '{"cached":null,"ignore_cache":false}'), +(15166, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.452+00', '{"cached":null,"ignore_cache":false}'), +(15167, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.501+00', '{"cached":null,"ignore_cache":false}'), +(15168, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.514+00', '{"cached":null,"ignore_cache":false}'), +(15169, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.542+00', '{"cached":null,"ignore_cache":false}'), +(15170, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.611+00', '{"cached":null,"ignore_cache":false}'), +(15171, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.769+00', '{"cached":null,"ignore_cache":false}'), +(15172, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.771+00', '{"cached":null,"ignore_cache":false}'), +(15173, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.872+00', '{"cached":null,"ignore_cache":false}'), +(15174, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.912+00', '{"cached":null,"ignore_cache":false}'), +(15175, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.949+00', '{"cached":null,"ignore_cache":false}'), +(15176, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:36.965+00', '{"cached":null,"ignore_cache":false}'), +(15177, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.046+00', '{"cached":null,"ignore_cache":false}'), +(15178, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.192+00', '{"cached":null,"ignore_cache":false}'), +(15179, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.248+00', '{"cached":null,"ignore_cache":false}'), +(15180, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.294+00', '{"cached":null,"ignore_cache":false}'), +(15181, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.316+00', '{"cached":null,"ignore_cache":false}'), +(15182, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.332+00', '{"cached":null,"ignore_cache":false}'), +(15183, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.338+00', '{"cached":null,"ignore_cache":false}'), +(15184, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.339+00', '{"cached":null,"ignore_cache":false}'), +(15185, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.367+00', '{"cached":null,"ignore_cache":false}'), +(15186, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:37.377+00', '{"cached":null,"ignore_cache":false}'), +(15187, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.468+00', '{"cached":null,"ignore_cache":false}'), +(15188, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.471+00', '{"cached":null,"ignore_cache":false}'), +(15189, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.506+00', '{"cached":null,"ignore_cache":false}'), +(15190, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.54+00', '{"cached":null,"ignore_cache":false}'), +(15191, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.56+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15192, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.584+00', '{"cached":null,"ignore_cache":false}'), +(15193, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:20:48.587+00', '{"cached":null,"ignore_cache":false}'), +(15194, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.705+00', '{"cached":null,"ignore_cache":false}'), +(15195, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.851+00', '{"cached":null,"ignore_cache":false}'), +(15196, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.854+00', '{"cached":null,"ignore_cache":false}'), +(15197, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.877+00', '{"cached":null,"ignore_cache":false}'), +(15198, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.883+00', '{"cached":null,"ignore_cache":false}'), +(15199, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.934+00', '{"cached":null,"ignore_cache":false}'), +(15200, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.951+00', '{"cached":null,"ignore_cache":false}'), +(15201, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:06.993+00', '{"cached":null,"ignore_cache":false}'), +(15202, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:07.068+00', '{"cached":null,"ignore_cache":false}'), +(15203, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.507+00', '{"cached":null,"ignore_cache":false}'), +(15204, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.53+00', '{"cached":null,"ignore_cache":false}'), +(15205, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.567+00', '{"cached":null,"ignore_cache":false}'), +(15206, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.589+00', '{"cached":null,"ignore_cache":false}'), +(15207, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.598+00', '{"cached":null,"ignore_cache":false}'), +(15208, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.655+00', '{"cached":null,"ignore_cache":false}'), +(15209, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:19.669+00', '{"cached":null,"ignore_cache":false}'), +(15210, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.688+00', '{"cached":null,"ignore_cache":false}'), +(15211, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.759+00', '{"cached":null,"ignore_cache":false}'), +(15212, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.768+00', '{"cached":null,"ignore_cache":false}'), +(15213, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.769+00', '{"cached":null,"ignore_cache":false}'), +(15214, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.822+00', '{"cached":null,"ignore_cache":false}'), +(15215, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.848+00', '{"cached":null,"ignore_cache":false}'), +(15216, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.855+00', '{"cached":null,"ignore_cache":false}'), +(15217, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.873+00', '{"cached":null,"ignore_cache":false}'), +(15218, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:37.883+00', '{"cached":null,"ignore_cache":false}'), +(15219, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.546+00', '{"cached":null,"ignore_cache":false}'), +(15220, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.549+00', '{"cached":null,"ignore_cache":false}'), +(15221, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.553+00', '{"cached":null,"ignore_cache":false}'), +(15222, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.57+00', '{"cached":null,"ignore_cache":false}'), +(15223, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.582+00', '{"cached":null,"ignore_cache":false}'), +(15224, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.588+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15225, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:21:49.59+00', '{"cached":null,"ignore_cache":false}'), +(15226, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.327+00', '{"cached":null,"ignore_cache":false}'), +(15227, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.386+00', '{"cached":null,"ignore_cache":false}'), +(15228, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.422+00', '{"cached":null,"ignore_cache":false}'), +(15229, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.435+00', '{"cached":null,"ignore_cache":false}'), +(15230, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.439+00', '{"cached":null,"ignore_cache":false}'), +(15231, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.447+00', '{"cached":null,"ignore_cache":false}'), +(15232, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.469+00', '{"cached":null,"ignore_cache":false}'), +(15233, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.475+00', '{"cached":null,"ignore_cache":false}'), +(15234, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:08.479+00', '{"cached":null,"ignore_cache":false}'), +(15235, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.625+00', '{"cached":null,"ignore_cache":false}'), +(15236, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.67+00', '{"cached":null,"ignore_cache":false}'), +(15237, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.671+00', '{"cached":null,"ignore_cache":false}'), +(15238, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.692+00', '{"cached":null,"ignore_cache":false}'), +(15239, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.719+00', '{"cached":null,"ignore_cache":false}'), +(15240, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.742+00', '{"cached":null,"ignore_cache":false}'), +(15241, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:20.769+00', '{"cached":null,"ignore_cache":false}'), +(15242, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.551+00', '{"cached":null,"ignore_cache":false}'), +(15243, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.658+00', '{"cached":null,"ignore_cache":false}'), +(15244, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.663+00', '{"cached":null,"ignore_cache":false}'), +(15245, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.696+00', '{"cached":null,"ignore_cache":false}'), +(15246, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.704+00', '{"cached":null,"ignore_cache":false}'), +(15247, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.765+00', '{"cached":null,"ignore_cache":false}'), +(15248, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.769+00', '{"cached":null,"ignore_cache":false}'), +(15249, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.784+00', '{"cached":null,"ignore_cache":false}'), +(15250, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:38.808+00', '{"cached":null,"ignore_cache":false}'), +(15251, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.247+00', '{"cached":null,"ignore_cache":false}'), +(15252, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.263+00', '{"cached":null,"ignore_cache":false}'), +(15253, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.266+00', '{"cached":null,"ignore_cache":false}'), +(15254, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.276+00', '{"cached":null,"ignore_cache":false}'), +(15255, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.298+00', '{"cached":null,"ignore_cache":false}'), +(15256, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.301+00', '{"cached":null,"ignore_cache":false}'), +(15257, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:22:51.305+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15258, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.781+00', '{"cached":null,"ignore_cache":false}'), +(15259, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.816+00', '{"cached":null,"ignore_cache":false}'), +(15260, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.834+00', '{"cached":null,"ignore_cache":false}'), +(15261, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.866+00', '{"cached":null,"ignore_cache":false}'), +(15262, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:08.976+00', '{"cached":null,"ignore_cache":false}'), +(15263, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:09.018+00', '{"cached":null,"ignore_cache":false}'), +(15264, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:09.048+00', '{"cached":null,"ignore_cache":false}'), +(15265, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:09.054+00', '{"cached":null,"ignore_cache":false}'), +(15266, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:09.064+00', '{"cached":null,"ignore_cache":false}'), +(15267, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.488+00', '{"cached":null,"ignore_cache":false}'), +(15268, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.682+00', '{"cached":null,"ignore_cache":false}'), +(15269, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.718+00', '{"cached":null,"ignore_cache":false}'), +(15270, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.738+00', '{"cached":null,"ignore_cache":false}'), +(15271, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.864+00', '{"cached":null,"ignore_cache":false}'), +(15272, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.865+00', '{"cached":null,"ignore_cache":false}'), +(15273, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:22.897+00', '{"cached":null,"ignore_cache":false}'), +(15274, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.478+00', '{"cached":null,"ignore_cache":false}'), +(15275, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.534+00', '{"cached":null,"ignore_cache":false}'), +(15276, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.536+00', '{"cached":null,"ignore_cache":false}'), +(15277, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.554+00', '{"cached":null,"ignore_cache":false}'), +(15278, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.584+00', '{"cached":null,"ignore_cache":false}'), +(15279, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.635+00', '{"cached":null,"ignore_cache":false}'), +(15280, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.636+00', '{"cached":null,"ignore_cache":false}'), +(15281, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.641+00', '{"cached":null,"ignore_cache":false}'), +(15282, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:39.657+00', '{"cached":null,"ignore_cache":false}'), +(15283, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.387+00', '{"cached":null,"ignore_cache":false}'), +(15284, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.496+00', '{"cached":null,"ignore_cache":false}'), +(15285, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.578+00', '{"cached":null,"ignore_cache":false}'), +(15286, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.585+00', '{"cached":null,"ignore_cache":false}'), +(15287, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.636+00', '{"cached":null,"ignore_cache":false}'), +(15288, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.66+00', '{"cached":null,"ignore_cache":false}'), +(15289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:23:53.691+00', '{"cached":null,"ignore_cache":false}'), +(15290, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.601+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15291, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.731+00', '{"cached":null,"ignore_cache":false}'), +(15292, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.743+00', '{"cached":null,"ignore_cache":false}'), +(15293, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.753+00', '{"cached":null,"ignore_cache":false}'), +(15294, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.754+00', '{"cached":null,"ignore_cache":false}'), +(15295, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.788+00', '{"cached":null,"ignore_cache":false}'), +(15296, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.794+00', '{"cached":null,"ignore_cache":false}'), +(15297, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.803+00', '{"cached":null,"ignore_cache":false}'), +(15298, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:10.811+00', '{"cached":null,"ignore_cache":false}'), +(15299, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.54+00', '{"cached":null,"ignore_cache":false}'), +(15300, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.614+00', '{"cached":null,"ignore_cache":false}'), +(15301, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.721+00', '{"cached":null,"ignore_cache":false}'), +(15302, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.761+00', '{"cached":null,"ignore_cache":false}'), +(15303, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.764+00', '{"cached":null,"ignore_cache":false}'), +(15304, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.786+00', '{"cached":null,"ignore_cache":false}'), +(15305, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:24.786+00', '{"cached":null,"ignore_cache":false}'), +(15306, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.521+00', '{"cached":null,"ignore_cache":false}'), +(15307, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.607+00', '{"cached":null,"ignore_cache":false}'), +(15308, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.658+00', '{"cached":null,"ignore_cache":false}'), +(15309, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.688+00', '{"cached":null,"ignore_cache":false}'), +(15310, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.714+00', '{"cached":null,"ignore_cache":false}'), +(15311, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.718+00', '{"cached":null,"ignore_cache":false}'), +(15312, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.751+00', '{"cached":null,"ignore_cache":false}'), +(15313, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.796+00', '{"cached":null,"ignore_cache":false}'), +(15314, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:42.804+00', '{"cached":null,"ignore_cache":false}'), +(15315, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.405+00', '{"cached":null,"ignore_cache":false}'), +(15316, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.435+00', '{"cached":null,"ignore_cache":false}'), +(15317, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.443+00', '{"cached":null,"ignore_cache":false}'), +(15318, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.447+00', '{"cached":null,"ignore_cache":false}'), +(15319, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.479+00', '{"cached":null,"ignore_cache":false}'), +(15320, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.491+00', '{"cached":null,"ignore_cache":false}'), +(15321, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:24:56.5+00', '{"cached":null,"ignore_cache":false}'), +(15322, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.504+00', '{"cached":null,"ignore_cache":false}'), +(15323, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.583+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15324, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.59+00', '{"cached":null,"ignore_cache":false}'), +(15325, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.594+00', '{"cached":null,"ignore_cache":false}'), +(15326, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.627+00', '{"cached":null,"ignore_cache":false}'), +(15327, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.646+00', '{"cached":null,"ignore_cache":false}'), +(15328, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.658+00', '{"cached":null,"ignore_cache":false}'), +(15329, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.66+00', '{"cached":null,"ignore_cache":false}'), +(15330, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:13.675+00', '{"cached":null,"ignore_cache":false}'), +(15331, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.562+00', '{"cached":null,"ignore_cache":false}'), +(15332, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.574+00', '{"cached":null,"ignore_cache":false}'), +(15333, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.614+00', '{"cached":null,"ignore_cache":false}'), +(15334, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.637+00', '{"cached":null,"ignore_cache":false}'), +(15335, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.652+00', '{"cached":null,"ignore_cache":false}'), +(15336, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.656+00', '{"cached":null,"ignore_cache":false}'), +(15337, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:27.675+00', '{"cached":null,"ignore_cache":false}'), +(15338, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.564+00', '{"cached":null,"ignore_cache":false}'), +(15339, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.575+00', '{"cached":null,"ignore_cache":false}'), +(15340, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.668+00', '{"cached":null,"ignore_cache":false}'), +(15341, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.682+00', '{"cached":null,"ignore_cache":false}'), +(15342, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.733+00', '{"cached":null,"ignore_cache":false}'), +(15343, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.751+00', '{"cached":null,"ignore_cache":false}'), +(15344, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.791+00', '{"cached":null,"ignore_cache":false}'), +(15345, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.821+00', '{"cached":null,"ignore_cache":false}'), +(15346, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:44.847+00', '{"cached":null,"ignore_cache":false}'), +(15347, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.499+00', '{"cached":null,"ignore_cache":false}'), +(15348, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.515+00', '{"cached":null,"ignore_cache":false}'), +(15349, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.526+00', '{"cached":null,"ignore_cache":false}'), +(15350, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.555+00', '{"cached":null,"ignore_cache":false}'), +(15351, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.585+00', '{"cached":null,"ignore_cache":false}'), +(15352, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.591+00', '{"cached":null,"ignore_cache":false}'), +(15353, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:25:58.608+00', '{"cached":null,"ignore_cache":false}'), +(15354, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.496+00', '{"cached":null,"ignore_cache":false}'), +(15355, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.535+00', '{"cached":null,"ignore_cache":false}'), +(15356, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.546+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15357, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.57+00', '{"cached":null,"ignore_cache":false}'), +(15358, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.662+00', '{"cached":null,"ignore_cache":false}'), +(15359, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.686+00', '{"cached":null,"ignore_cache":false}'), +(15360, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.705+00', '{"cached":null,"ignore_cache":false}'), +(15361, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.739+00', '{"cached":null,"ignore_cache":false}'), +(15362, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:15.743+00', '{"cached":null,"ignore_cache":false}'), +(15363, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.334+00', '{"cached":null,"ignore_cache":false}'), +(15364, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.393+00', '{"cached":null,"ignore_cache":false}'), +(15365, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.436+00', '{"cached":null,"ignore_cache":false}'), +(15366, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.446+00', '{"cached":null,"ignore_cache":false}'), +(15367, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.461+00', '{"cached":null,"ignore_cache":false}'), +(15368, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.471+00', '{"cached":null,"ignore_cache":false}'), +(15369, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:29.488+00', '{"cached":null,"ignore_cache":false}'), +(15370, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.214+00', '{"cached":null,"ignore_cache":false}'), +(15371, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.306+00', '{"cached":null,"ignore_cache":false}'), +(15372, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.325+00', '{"cached":null,"ignore_cache":false}'), +(15373, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.368+00', '{"cached":null,"ignore_cache":false}'), +(15374, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.481+00', '{"cached":null,"ignore_cache":false}'), +(15375, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.526+00', '{"cached":null,"ignore_cache":false}'), +(15376, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.575+00', '{"cached":null,"ignore_cache":false}'), +(15377, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.599+00', '{"cached":null,"ignore_cache":false}'), +(15378, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:26:47.6+00', '{"cached":null,"ignore_cache":false}'), +(15379, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.59+00', '{"cached":null,"ignore_cache":false}'), +(15380, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.596+00', '{"cached":null,"ignore_cache":false}'), +(15381, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.615+00', '{"cached":null,"ignore_cache":false}'), +(15382, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.617+00', '{"cached":null,"ignore_cache":false}'), +(15383, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.63+00', '{"cached":null,"ignore_cache":false}'), +(15384, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.631+00', '{"cached":null,"ignore_cache":false}'), +(15385, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:28.637+00', '{"cached":null,"ignore_cache":false}'), +(15386, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.635+00', '{"cached":null,"ignore_cache":false}'), +(15387, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.637+00', '{"cached":null,"ignore_cache":false}'), +(15388, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.643+00', '{"cached":null,"ignore_cache":false}'), +(15389, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.674+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15390, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.678+00', '{"cached":null,"ignore_cache":false}'), +(15391, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.681+00', '{"cached":null,"ignore_cache":false}'), +(15392, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.689+00', '{"cached":null,"ignore_cache":false}'), +(15393, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.694+00', '{"cached":null,"ignore_cache":false}'), +(15394, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:45.699+00', '{"cached":null,"ignore_cache":false}'), +(15395, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.624+00', '{"cached":null,"ignore_cache":false}'), +(15396, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.7+00', '{"cached":null,"ignore_cache":false}'), +(15397, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.712+00', '{"cached":null,"ignore_cache":false}'), +(15398, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.713+00', '{"cached":null,"ignore_cache":false}'), +(15399, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.744+00', '{"cached":null,"ignore_cache":false}'), +(15400, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.748+00', '{"cached":null,"ignore_cache":false}'), +(15401, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:28:58.767+00', '{"cached":null,"ignore_cache":false}'), +(15402, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:16.945+00', '{"cached":null,"ignore_cache":false}'), +(15403, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.011+00', '{"cached":null,"ignore_cache":false}'), +(15404, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.108+00', '{"cached":null,"ignore_cache":false}'), +(15405, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.313+00', '{"cached":null,"ignore_cache":false}'), +(15406, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.335+00', '{"cached":null,"ignore_cache":false}'), +(15407, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.358+00', '{"cached":null,"ignore_cache":false}'), +(15408, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.369+00', '{"cached":null,"ignore_cache":false}'), +(15409, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.377+00', '{"cached":null,"ignore_cache":false}'), +(15410, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:17.454+00', '{"cached":null,"ignore_cache":false}'), +(15411, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.66+00', '{"cached":null,"ignore_cache":false}'), +(15412, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.714+00', '{"cached":null,"ignore_cache":false}'), +(15413, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.745+00', '{"cached":null,"ignore_cache":false}'), +(15414, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.746+00', '{"cached":null,"ignore_cache":false}'), +(15415, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.754+00', '{"cached":null,"ignore_cache":false}'), +(15416, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.78+00', '{"cached":null,"ignore_cache":false}'), +(15417, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:30.793+00', '{"cached":null,"ignore_cache":false}'), +(15418, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.62+00', '{"cached":null,"ignore_cache":false}'), +(15419, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.659+00', '{"cached":null,"ignore_cache":false}'), +(15420, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.89+00', '{"cached":null,"ignore_cache":false}'), +(15421, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.907+00', '{"cached":null,"ignore_cache":false}'), +(15422, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.93+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15423, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.969+00', '{"cached":null,"ignore_cache":false}'), +(15424, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:48.978+00', '{"cached":null,"ignore_cache":false}'), +(15425, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:49.064+00', '{"cached":null,"ignore_cache":false}'), +(15426, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:29:49.168+00', '{"cached":null,"ignore_cache":false}'), +(15427, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.424+00', '{"cached":null,"ignore_cache":false}'), +(15428, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.462+00', '{"cached":null,"ignore_cache":false}'), +(15429, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.479+00', '{"cached":null,"ignore_cache":false}'), +(15430, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.495+00', '{"cached":null,"ignore_cache":false}'), +(15431, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.516+00', '{"cached":null,"ignore_cache":false}'), +(15432, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.525+00', '{"cached":null,"ignore_cache":false}'), +(15433, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:02.538+00', '{"cached":null,"ignore_cache":false}'), +(15434, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.425+00', '{"cached":null,"ignore_cache":false}'), +(15435, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.461+00', '{"cached":null,"ignore_cache":false}'), +(15436, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.545+00', '{"cached":null,"ignore_cache":false}'), +(15437, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.583+00', '{"cached":null,"ignore_cache":false}'), +(15438, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.586+00', '{"cached":null,"ignore_cache":false}'), +(15439, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.621+00', '{"cached":null,"ignore_cache":false}'), +(15440, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.63+00', '{"cached":null,"ignore_cache":false}'), +(15441, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.641+00', '{"cached":null,"ignore_cache":false}'), +(15442, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:19.646+00', '{"cached":null,"ignore_cache":false}'), +(15443, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.522+00', '{"cached":null,"ignore_cache":false}'), +(15444, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.543+00', '{"cached":null,"ignore_cache":false}'), +(15445, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.551+00', '{"cached":null,"ignore_cache":false}'), +(15446, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.559+00', '{"cached":null,"ignore_cache":false}'), +(15447, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.572+00', '{"cached":null,"ignore_cache":false}'), +(15448, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.612+00', '{"cached":null,"ignore_cache":false}'), +(15449, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:34.623+00', '{"cached":null,"ignore_cache":false}'), +(15450, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.601+00', '{"cached":null,"ignore_cache":false}'), +(15451, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.665+00', '{"cached":null,"ignore_cache":false}'), +(15452, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.698+00', '{"cached":null,"ignore_cache":false}'), +(15453, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.746+00', '{"cached":null,"ignore_cache":false}'), +(15454, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.766+00', '{"cached":null,"ignore_cache":false}'), +(15455, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.784+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15456, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.801+00', '{"cached":null,"ignore_cache":false}'), +(15457, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.812+00', '{"cached":null,"ignore_cache":false}'), +(15458, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:30:51.827+00', '{"cached":null,"ignore_cache":false}'), +(15459, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.417+00', '{"cached":null,"ignore_cache":false}'), +(15460, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.439+00', '{"cached":null,"ignore_cache":false}'), +(15461, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.443+00', '{"cached":null,"ignore_cache":false}'), +(15462, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.478+00', '{"cached":null,"ignore_cache":false}'), +(15463, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.537+00', '{"cached":null,"ignore_cache":false}'), +(15464, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.544+00', '{"cached":null,"ignore_cache":false}'), +(15465, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:06.576+00', '{"cached":null,"ignore_cache":false}'), +(15466, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.826+00', '{"cached":null,"ignore_cache":false}'), +(15467, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.911+00', '{"cached":null,"ignore_cache":false}'), +(15468, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.92+00', '{"cached":null,"ignore_cache":false}'), +(15469, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:22.987+00', '{"cached":null,"ignore_cache":false}'), +(15470, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:23.011+00', '{"cached":null,"ignore_cache":false}'), +(15471, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:23.025+00', '{"cached":null,"ignore_cache":false}'), +(15472, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:23.032+00', '{"cached":null,"ignore_cache":false}'), +(15473, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:23.07+00', '{"cached":null,"ignore_cache":false}'), +(15474, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:23.085+00', '{"cached":null,"ignore_cache":false}'), +(15475, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.756+00', '{"cached":null,"ignore_cache":false}'), +(15476, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.778+00', '{"cached":null,"ignore_cache":false}'), +(15477, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.779+00', '{"cached":null,"ignore_cache":false}'), +(15478, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.79+00', '{"cached":null,"ignore_cache":false}'), +(15479, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.797+00', '{"cached":null,"ignore_cache":false}'), +(15480, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.816+00', '{"cached":null,"ignore_cache":false}'), +(15481, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:36.831+00', '{"cached":null,"ignore_cache":false}'), +(15482, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:53.805+00', '{"cached":null,"ignore_cache":false}'), +(15483, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.02+00', '{"cached":null,"ignore_cache":false}'), +(15484, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.106+00', '{"cached":null,"ignore_cache":false}'), +(15485, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.268+00', '{"cached":null,"ignore_cache":false}'), +(15486, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.271+00', '{"cached":null,"ignore_cache":false}'), +(15487, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.33+00', '{"cached":null,"ignore_cache":false}'), +(15488, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.78+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15489, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.846+00', '{"cached":null,"ignore_cache":false}'), +(15490, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:31:54.89+00', '{"cached":null,"ignore_cache":false}'), +(15491, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.727+00', '{"cached":null,"ignore_cache":false}'), +(15492, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:12.883+00', '{"cached":null,"ignore_cache":false}'), +(15493, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:13.042+00', '{"cached":null,"ignore_cache":false}'), +(15494, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:13.042+00', '{"cached":null,"ignore_cache":false}'), +(15495, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:13.044+00', '{"cached":null,"ignore_cache":false}'), +(15496, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:13.058+00', '{"cached":null,"ignore_cache":false}'), +(15497, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:13.064+00', '{"cached":null,"ignore_cache":false}'), +(15498, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.791+00', '{"cached":null,"ignore_cache":false}'), +(15499, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.835+00', '{"cached":null,"ignore_cache":false}'), +(15500, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.85+00', '{"cached":null,"ignore_cache":false}'), +(15501, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.876+00', '{"cached":null,"ignore_cache":false}'), +(15502, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.91+00', '{"cached":null,"ignore_cache":false}'), +(15503, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.911+00', '{"cached":null,"ignore_cache":false}'), +(15504, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.911+00', '{"cached":null,"ignore_cache":false}'), +(15505, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.954+00', '{"cached":null,"ignore_cache":false}'), +(15506, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:23.975+00', '{"cached":null,"ignore_cache":false}'), +(15507, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.379+00', '{"cached":null,"ignore_cache":false}'), +(15508, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.406+00', '{"cached":null,"ignore_cache":false}'), +(15509, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.422+00', '{"cached":null,"ignore_cache":false}'), +(15510, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.428+00', '{"cached":null,"ignore_cache":false}'), +(15511, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.433+00', '{"cached":null,"ignore_cache":false}'), +(15512, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.464+00', '{"cached":null,"ignore_cache":false}'), +(15513, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:38.477+00', '{"cached":null,"ignore_cache":false}'), +(15514, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.586+00', '{"cached":null,"ignore_cache":false}'), +(15515, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.588+00', '{"cached":null,"ignore_cache":false}'), +(15516, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.619+00', '{"cached":null,"ignore_cache":false}'), +(15517, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.621+00', '{"cached":null,"ignore_cache":false}'), +(15518, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.635+00', '{"cached":null,"ignore_cache":false}'), +(15519, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.646+00', '{"cached":null,"ignore_cache":false}'), +(15520, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.651+00', '{"cached":null,"ignore_cache":false}'), +(15521, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.664+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15522, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:32:54.68+00', '{"cached":null,"ignore_cache":false}'), +(15523, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.316+00', '{"cached":null,"ignore_cache":false}'), +(15524, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.429+00', '{"cached":null,"ignore_cache":false}'), +(15525, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.493+00', '{"cached":null,"ignore_cache":false}'), +(15526, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.531+00', '{"cached":null,"ignore_cache":false}'), +(15527, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.548+00', '{"cached":null,"ignore_cache":false}'), +(15528, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.589+00', '{"cached":null,"ignore_cache":false}'), +(15529, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:09.591+00', '{"cached":null,"ignore_cache":false}'), +(15530, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.766+00', '{"cached":null,"ignore_cache":false}'), +(15531, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.769+00', '{"cached":null,"ignore_cache":false}'), +(15532, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.886+00', '{"cached":null,"ignore_cache":false}'), +(15533, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.918+00', '{"cached":null,"ignore_cache":false}'), +(15534, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.936+00', '{"cached":null,"ignore_cache":false}'), +(15535, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.946+00', '{"cached":null,"ignore_cache":false}'), +(15536, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.967+00', '{"cached":null,"ignore_cache":false}'), +(15537, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.967+00', '{"cached":null,"ignore_cache":false}'), +(15538, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:33.979+00', '{"cached":null,"ignore_cache":false}'), +(15539, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.427+00', '{"cached":null,"ignore_cache":false}'), +(15540, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.444+00', '{"cached":null,"ignore_cache":false}'), +(15541, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.499+00', '{"cached":null,"ignore_cache":false}'), +(15542, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.505+00', '{"cached":null,"ignore_cache":false}'), +(15543, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.513+00', '{"cached":null,"ignore_cache":false}'), +(15544, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.529+00', '{"cached":null,"ignore_cache":false}'), +(15545, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:33:39.531+00', '{"cached":null,"ignore_cache":false}'), +(15546, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:12.013+00', '{"cached":null,"ignore_cache":false}'), +(15547, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:12.047+00', '{"cached":null,"ignore_cache":false}'), +(15548, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:12.065+00', '{"cached":null,"ignore_cache":false}'), +(15549, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:12.096+00', '{"cached":null,"ignore_cache":false}'), +(15550, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:12.131+00', '{"cached":null,"ignore_cache":false}'), +(15551, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:12.133+00', '{"cached":null,"ignore_cache":false}'), +(15552, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:34:12.134+00', '{"cached":null,"ignore_cache":false}'), +(15553, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.593+00', '{"cached":null,"ignore_cache":false}'), +(15554, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.594+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15555, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.622+00', '{"cached":null,"ignore_cache":false}'), +(15556, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.684+00', '{"cached":null,"ignore_cache":false}'), +(15557, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.693+00', '{"cached":null,"ignore_cache":false}'), +(15558, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.693+00', '{"cached":null,"ignore_cache":false}'), +(15559, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.712+00', '{"cached":null,"ignore_cache":false}'), +(15560, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.714+00', '{"cached":null,"ignore_cache":false}'), +(15561, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:05.77+00', '{"cached":null,"ignore_cache":false}'), +(15562, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.498+00', '{"cached":null,"ignore_cache":false}'), +(15563, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.558+00', '{"cached":null,"ignore_cache":false}'), +(15564, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.566+00', '{"cached":null,"ignore_cache":false}'), +(15565, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.593+00', '{"cached":null,"ignore_cache":false}'), +(15566, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.623+00', '{"cached":null,"ignore_cache":false}'), +(15567, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.643+00', '{"cached":null,"ignore_cache":false}'), +(15568, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:25.647+00', '{"cached":null,"ignore_cache":false}'), +(15569, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.797+00', '{"cached":null,"ignore_cache":false}'), +(15570, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.848+00', '{"cached":null,"ignore_cache":false}'), +(15571, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.857+00', '{"cached":null,"ignore_cache":false}'), +(15572, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.89+00', '{"cached":null,"ignore_cache":false}'), +(15573, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.89+00', '{"cached":null,"ignore_cache":false}'), +(15574, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.896+00', '{"cached":null,"ignore_cache":false}'), +(15575, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.899+00', '{"cached":null,"ignore_cache":false}'), +(15576, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.905+00', '{"cached":null,"ignore_cache":false}'), +(15577, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:40:48.915+00', '{"cached":null,"ignore_cache":false}'), +(15578, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.893+00', '{"cached":null,"ignore_cache":false}'), +(15579, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.981+00', '{"cached":null,"ignore_cache":false}'), +(15580, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:01.983+00', '{"cached":null,"ignore_cache":false}'), +(15581, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:02.031+00', '{"cached":null,"ignore_cache":false}'), +(15582, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:02.035+00', '{"cached":null,"ignore_cache":false}'), +(15583, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:02.053+00', '{"cached":null,"ignore_cache":false}'), +(15584, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:02.075+00', '{"cached":null,"ignore_cache":false}'), +(15585, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.96+00', '{"cached":null,"ignore_cache":false}'), +(15586, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:24.983+00', '{"cached":null,"ignore_cache":false}'), +(15587, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.027+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15588, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.037+00', '{"cached":null,"ignore_cache":false}'), +(15589, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.159+00', '{"cached":null,"ignore_cache":false}'), +(15590, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.172+00', '{"cached":null,"ignore_cache":false}'), +(15591, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.173+00', '{"cached":null,"ignore_cache":false}'), +(15592, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.182+00', '{"cached":null,"ignore_cache":false}'), +(15593, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:25.233+00', '{"cached":null,"ignore_cache":false}'), +(15594, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.469+00', '{"cached":null,"ignore_cache":false}'), +(15595, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.49+00', '{"cached":null,"ignore_cache":false}'), +(15596, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.52+00', '{"cached":null,"ignore_cache":false}'), +(15597, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.529+00', '{"cached":null,"ignore_cache":false}'), +(15598, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.565+00', '{"cached":null,"ignore_cache":false}'), +(15599, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.575+00', '{"cached":null,"ignore_cache":false}'), +(15600, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:41:37.593+00', '{"cached":null,"ignore_cache":false}'), +(15601, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.558+00', '{"cached":null,"ignore_cache":false}'), +(15602, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.614+00', '{"cached":null,"ignore_cache":false}'), +(15603, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.654+00', '{"cached":null,"ignore_cache":false}'), +(15604, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.655+00', '{"cached":null,"ignore_cache":false}'), +(15605, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.664+00', '{"cached":null,"ignore_cache":false}'), +(15606, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.669+00', '{"cached":null,"ignore_cache":false}'), +(15607, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.683+00', '{"cached":null,"ignore_cache":false}'), +(15608, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.69+00', '{"cached":null,"ignore_cache":false}'), +(15609, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:04.697+00', '{"cached":null,"ignore_cache":false}'), +(15610, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.548+00', '{"cached":null,"ignore_cache":false}'), +(15611, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.583+00', '{"cached":null,"ignore_cache":false}'), +(15612, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.667+00', '{"cached":null,"ignore_cache":false}'), +(15613, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.702+00', '{"cached":null,"ignore_cache":false}'), +(15614, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.709+00', '{"cached":null,"ignore_cache":false}'), +(15615, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.734+00', '{"cached":null,"ignore_cache":false}'), +(15616, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:18.75+00', '{"cached":null,"ignore_cache":false}'), +(15617, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:42.827+00', '{"cached":null,"ignore_cache":false}'), +(15618, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.051+00', '{"cached":null,"ignore_cache":false}'), +(15619, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.074+00', '{"cached":null,"ignore_cache":false}'), +(15620, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.134+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15621, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.269+00', '{"cached":null,"ignore_cache":false}'), +(15622, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.278+00', '{"cached":null,"ignore_cache":false}'), +(15623, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.278+00', '{"cached":null,"ignore_cache":false}'), +(15624, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.285+00', '{"cached":null,"ignore_cache":false}'), +(15625, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:43.32+00', '{"cached":null,"ignore_cache":false}'), +(15626, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.5+00', '{"cached":null,"ignore_cache":false}'), +(15627, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.507+00', '{"cached":null,"ignore_cache":false}'), +(15628, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.534+00', '{"cached":null,"ignore_cache":false}'), +(15629, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.537+00', '{"cached":null,"ignore_cache":false}'), +(15630, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.539+00', '{"cached":null,"ignore_cache":false}'), +(15631, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.547+00', '{"cached":null,"ignore_cache":false}'), +(15632, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:42:55.566+00', '{"cached":null,"ignore_cache":false}'), +(15633, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.127+00', '{"cached":null,"ignore_cache":false}'), +(15634, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.152+00', '{"cached":null,"ignore_cache":false}'), +(15635, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.176+00', '{"cached":null,"ignore_cache":false}'), +(15636, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.25+00', '{"cached":null,"ignore_cache":false}'), +(15637, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.282+00', '{"cached":null,"ignore_cache":false}'), +(15638, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.308+00', '{"cached":null,"ignore_cache":false}'), +(15639, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.324+00', '{"cached":null,"ignore_cache":false}'), +(15640, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.329+00', '{"cached":null,"ignore_cache":false}'), +(15641, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:19.348+00', '{"cached":null,"ignore_cache":false}'), +(15642, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.722+00', '{"cached":null,"ignore_cache":false}'), +(15643, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.831+00', '{"cached":null,"ignore_cache":false}'), +(15644, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.834+00', '{"cached":null,"ignore_cache":false}'), +(15645, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.883+00', '{"cached":null,"ignore_cache":false}'), +(15646, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.888+00', '{"cached":null,"ignore_cache":false}'), +(15647, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.892+00', '{"cached":null,"ignore_cache":false}'), +(15648, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:32.928+00', '{"cached":null,"ignore_cache":false}'), +(15649, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.639+00', '{"cached":null,"ignore_cache":false}'), +(15650, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.647+00', '{"cached":null,"ignore_cache":false}'), +(15651, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.662+00', '{"cached":null,"ignore_cache":false}'), +(15652, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.711+00', '{"cached":null,"ignore_cache":false}'), +(15653, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.715+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15654, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.728+00', '{"cached":null,"ignore_cache":false}'), +(15655, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.748+00', '{"cached":null,"ignore_cache":false}'), +(15656, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.779+00', '{"cached":null,"ignore_cache":false}'), +(15657, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:43:58.796+00', '{"cached":null,"ignore_cache":false}'), +(15658, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.773+00', '{"cached":null,"ignore_cache":false}'), +(15659, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.811+00', '{"cached":null,"ignore_cache":false}'), +(15660, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.863+00', '{"cached":null,"ignore_cache":false}'), +(15661, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.95+00', '{"cached":null,"ignore_cache":false}'), +(15662, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:16.98+00', '{"cached":null,"ignore_cache":false}'), +(15663, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:17.053+00', '{"cached":null,"ignore_cache":false}'), +(15664, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:17.069+00', '{"cached":null,"ignore_cache":false}'), +(15665, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.724+00', '{"cached":null,"ignore_cache":false}'), +(15666, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.745+00', '{"cached":null,"ignore_cache":false}'), +(15667, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.765+00', '{"cached":null,"ignore_cache":false}'), +(15668, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.817+00', '{"cached":null,"ignore_cache":false}'), +(15669, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.833+00', '{"cached":null,"ignore_cache":false}'), +(15670, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.856+00', '{"cached":null,"ignore_cache":false}'), +(15671, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.883+00', '{"cached":null,"ignore_cache":false}'), +(15672, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.888+00', '{"cached":null,"ignore_cache":false}'), +(15673, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:34.938+00', '{"cached":null,"ignore_cache":false}'), +(15674, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.601+00', '{"cached":null,"ignore_cache":false}'), +(15675, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.667+00', '{"cached":null,"ignore_cache":false}'), +(15676, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.778+00', '{"cached":null,"ignore_cache":false}'), +(15677, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.822+00', '{"cached":null,"ignore_cache":false}'), +(15678, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.846+00', '{"cached":null,"ignore_cache":false}'), +(15679, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.847+00', '{"cached":null,"ignore_cache":false}'), +(15680, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:44:47.872+00', '{"cached":null,"ignore_cache":false}'), +(15681, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:04.954+00', '{"cached":null,"ignore_cache":false}'), +(15682, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.076+00', '{"cached":null,"ignore_cache":false}'), +(15683, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.138+00', '{"cached":null,"ignore_cache":false}'), +(15684, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.177+00', '{"cached":null,"ignore_cache":false}'), +(15685, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.182+00', '{"cached":null,"ignore_cache":false}'), +(15686, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.2+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15687, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.202+00', '{"cached":null,"ignore_cache":false}'), +(15688, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.219+00', '{"cached":null,"ignore_cache":false}'), +(15689, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:05.236+00', '{"cached":null,"ignore_cache":false}'), +(15690, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.432+00', '{"cached":null,"ignore_cache":false}'), +(15691, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.464+00', '{"cached":null,"ignore_cache":false}'), +(15692, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.476+00', '{"cached":null,"ignore_cache":false}'), +(15693, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.488+00', '{"cached":null,"ignore_cache":false}'), +(15694, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.498+00', '{"cached":null,"ignore_cache":false}'), +(15695, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.5+00', '{"cached":null,"ignore_cache":false}'), +(15696, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:17.503+00', '{"cached":null,"ignore_cache":false}'), +(15697, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.7+00', '{"cached":null,"ignore_cache":false}'), +(15698, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.733+00', '{"cached":null,"ignore_cache":false}'), +(15699, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.768+00', '{"cached":null,"ignore_cache":false}'), +(15700, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.778+00', '{"cached":null,"ignore_cache":false}'), +(15701, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.786+00', '{"cached":null,"ignore_cache":false}'), +(15702, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.836+00', '{"cached":null,"ignore_cache":false}'), +(15703, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.859+00', '{"cached":null,"ignore_cache":false}'), +(15704, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.875+00', '{"cached":null,"ignore_cache":false}'), +(15705, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:34.93+00', '{"cached":null,"ignore_cache":false}'), +(15706, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.632+00', '{"cached":null,"ignore_cache":false}'), +(15707, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.714+00', '{"cached":null,"ignore_cache":false}'), +(15708, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.777+00', '{"cached":null,"ignore_cache":false}'), +(15709, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.781+00', '{"cached":null,"ignore_cache":false}'), +(15710, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.819+00', '{"cached":null,"ignore_cache":false}'), +(15711, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.834+00', '{"cached":null,"ignore_cache":false}'), +(15712, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:45:47.854+00', '{"cached":null,"ignore_cache":false}'), +(15713, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.605+00', '{"cached":null,"ignore_cache":false}'), +(15714, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.627+00', '{"cached":null,"ignore_cache":false}'), +(15715, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.689+00', '{"cached":null,"ignore_cache":false}'), +(15716, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.715+00', '{"cached":null,"ignore_cache":false}'), +(15717, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.751+00', '{"cached":null,"ignore_cache":false}'), +(15718, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.789+00', '{"cached":null,"ignore_cache":false}'), +(15719, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.807+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15720, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.821+00', '{"cached":null,"ignore_cache":false}'), +(15721, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:04.875+00', '{"cached":null,"ignore_cache":false}'), +(15722, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.42+00', '{"cached":null,"ignore_cache":false}'), +(15723, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.468+00', '{"cached":null,"ignore_cache":false}'), +(15724, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.476+00', '{"cached":null,"ignore_cache":false}'), +(15725, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.481+00', '{"cached":null,"ignore_cache":false}'), +(15726, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.483+00', '{"cached":null,"ignore_cache":false}'), +(15727, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.492+00', '{"cached":null,"ignore_cache":false}'), +(15728, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:17.493+00', '{"cached":null,"ignore_cache":false}'), +(15729, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.692+00', '{"cached":null,"ignore_cache":false}'), +(15730, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.726+00', '{"cached":null,"ignore_cache":false}'), +(15731, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.782+00', '{"cached":null,"ignore_cache":false}'), +(15732, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.782+00', '{"cached":null,"ignore_cache":false}'), +(15733, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.789+00', '{"cached":null,"ignore_cache":false}'), +(15734, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.798+00', '{"cached":null,"ignore_cache":false}'), +(15735, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.813+00', '{"cached":null,"ignore_cache":false}'), +(15736, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.822+00', '{"cached":null,"ignore_cache":false}'), +(15737, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:34.839+00', '{"cached":null,"ignore_cache":false}'), +(15738, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.51+00', '{"cached":null,"ignore_cache":false}'), +(15739, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.556+00', '{"cached":null,"ignore_cache":false}'), +(15740, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.737+00', '{"cached":null,"ignore_cache":false}'), +(15741, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.751+00', '{"cached":null,"ignore_cache":false}'), +(15742, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.794+00', '{"cached":null,"ignore_cache":false}'), +(15743, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.809+00', '{"cached":null,"ignore_cache":false}'), +(15744, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:46:47.832+00', '{"cached":null,"ignore_cache":false}'), +(15745, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.783+00', '{"cached":null,"ignore_cache":false}'), +(15746, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.833+00', '{"cached":null,"ignore_cache":false}'), +(15747, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.934+00', '{"cached":null,"ignore_cache":false}'), +(15748, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.947+00', '{"cached":null,"ignore_cache":false}'), +(15749, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:04.977+00', '{"cached":null,"ignore_cache":false}'), +(15750, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:05.021+00', '{"cached":null,"ignore_cache":false}'), +(15751, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:05.029+00', '{"cached":null,"ignore_cache":false}'), +(15752, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:05.037+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15753, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:05.067+00', '{"cached":null,"ignore_cache":false}'), +(15754, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.543+00', '{"cached":null,"ignore_cache":false}'), +(15755, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.567+00', '{"cached":null,"ignore_cache":false}'), +(15756, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.571+00', '{"cached":null,"ignore_cache":false}'), +(15757, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.605+00', '{"cached":null,"ignore_cache":false}'), +(15758, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.617+00', '{"cached":null,"ignore_cache":false}'), +(15759, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.627+00', '{"cached":null,"ignore_cache":false}'), +(15760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:17.638+00', '{"cached":null,"ignore_cache":false}'), +(15761, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.601+00', '{"cached":null,"ignore_cache":false}'), +(15762, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.629+00', '{"cached":null,"ignore_cache":false}'), +(15763, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.732+00', '{"cached":null,"ignore_cache":false}'), +(15764, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.766+00', '{"cached":null,"ignore_cache":false}'), +(15765, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.793+00', '{"cached":null,"ignore_cache":false}'), +(15766, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.81+00', '{"cached":null,"ignore_cache":false}'), +(15767, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.848+00', '{"cached":null,"ignore_cache":false}'), +(15768, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.884+00', '{"cached":null,"ignore_cache":false}'), +(15769, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:34.926+00', '{"cached":null,"ignore_cache":false}'), +(15770, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.509+00', '{"cached":null,"ignore_cache":false}'), +(15771, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.517+00', '{"cached":null,"ignore_cache":false}'), +(15772, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.573+00', '{"cached":null,"ignore_cache":false}'), +(15773, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.619+00', '{"cached":null,"ignore_cache":false}'), +(15774, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.628+00', '{"cached":null,"ignore_cache":false}'), +(15775, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.637+00', '{"cached":null,"ignore_cache":false}'), +(15776, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:47:47.647+00', '{"cached":null,"ignore_cache":false}'), +(15777, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:04.971+00', '{"cached":null,"ignore_cache":false}'), +(15778, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.032+00', '{"cached":null,"ignore_cache":false}'), +(15779, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.068+00', '{"cached":null,"ignore_cache":false}'), +(15780, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.082+00', '{"cached":null,"ignore_cache":false}'), +(15781, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.09+00', '{"cached":null,"ignore_cache":false}'), +(15782, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.114+00', '{"cached":null,"ignore_cache":false}'), +(15783, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.127+00', '{"cached":null,"ignore_cache":false}'), +(15784, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.134+00', '{"cached":null,"ignore_cache":false}'), +(15785, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:05.159+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15786, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.485+00', '{"cached":null,"ignore_cache":false}'), +(15787, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.492+00', '{"cached":null,"ignore_cache":false}'), +(15788, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.497+00', '{"cached":null,"ignore_cache":false}'), +(15789, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.533+00', '{"cached":null,"ignore_cache":false}'), +(15790, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.548+00', '{"cached":null,"ignore_cache":false}'), +(15791, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.559+00', '{"cached":null,"ignore_cache":false}'), +(15792, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:17.566+00', '{"cached":null,"ignore_cache":false}'), +(15793, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.917+00', '{"cached":null,"ignore_cache":false}'), +(15794, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.938+00', '{"cached":null,"ignore_cache":false}'), +(15795, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:34.977+00', '{"cached":null,"ignore_cache":false}'), +(15796, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:35.006+00', '{"cached":null,"ignore_cache":false}'), +(15797, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:35.037+00', '{"cached":null,"ignore_cache":false}'), +(15798, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:35.047+00', '{"cached":null,"ignore_cache":false}'), +(15799, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:35.06+00', '{"cached":null,"ignore_cache":false}'), +(15800, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:35.123+00', '{"cached":null,"ignore_cache":false}'), +(15801, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:35.147+00', '{"cached":null,"ignore_cache":false}'), +(15802, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.488+00', '{"cached":null,"ignore_cache":false}'), +(15803, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.524+00', '{"cached":null,"ignore_cache":false}'), +(15804, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.538+00', '{"cached":null,"ignore_cache":false}'), +(15805, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.625+00', '{"cached":null,"ignore_cache":false}'), +(15806, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.635+00', '{"cached":null,"ignore_cache":false}'), +(15807, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.697+00', '{"cached":null,"ignore_cache":false}'), +(15808, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:48:47.713+00', '{"cached":null,"ignore_cache":false}'), +(15809, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.763+00', '{"cached":null,"ignore_cache":false}'), +(15810, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.88+00', '{"cached":null,"ignore_cache":false}'), +(15811, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:04.891+00', '{"cached":null,"ignore_cache":false}'), +(15812, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:05.018+00', '{"cached":null,"ignore_cache":false}'), +(15813, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:05.052+00', '{"cached":null,"ignore_cache":false}'), +(15814, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:05.071+00', '{"cached":null,"ignore_cache":false}'), +(15815, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:05.097+00', '{"cached":null,"ignore_cache":false}'), +(15816, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:05.172+00', '{"cached":null,"ignore_cache":false}'), +(15817, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:05.27+00', '{"cached":null,"ignore_cache":false}'), +(15818, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.568+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15819, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.594+00', '{"cached":null,"ignore_cache":false}'), +(15820, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.595+00', '{"cached":null,"ignore_cache":false}'), +(15821, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.603+00', '{"cached":null,"ignore_cache":false}'), +(15822, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.606+00', '{"cached":null,"ignore_cache":false}'), +(15823, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.608+00', '{"cached":null,"ignore_cache":false}'), +(15824, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:17.613+00', '{"cached":null,"ignore_cache":false}'), +(15825, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.775+00', '{"cached":null,"ignore_cache":false}'), +(15826, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.805+00', '{"cached":null,"ignore_cache":false}'), +(15827, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.816+00', '{"cached":null,"ignore_cache":false}'), +(15828, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.857+00', '{"cached":null,"ignore_cache":false}'), +(15829, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.86+00', '{"cached":null,"ignore_cache":false}'), +(15830, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.876+00', '{"cached":null,"ignore_cache":false}'), +(15831, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.916+00', '{"cached":null,"ignore_cache":false}'), +(15832, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.926+00', '{"cached":null,"ignore_cache":false}'), +(15833, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:34.935+00', '{"cached":null,"ignore_cache":false}'), +(15834, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:47.824+00', '{"cached":null,"ignore_cache":false}'), +(15835, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.214+00', '{"cached":null,"ignore_cache":false}'), +(15836, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.215+00', '{"cached":null,"ignore_cache":false}'), +(15837, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.262+00', '{"cached":null,"ignore_cache":false}'), +(15838, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.333+00', '{"cached":null,"ignore_cache":false}'), +(15839, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.392+00', '{"cached":null,"ignore_cache":false}'), +(15840, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:49:48.433+00', '{"cached":null,"ignore_cache":false}'), +(15841, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.663+00', '{"cached":null,"ignore_cache":false}'), +(15842, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.716+00', '{"cached":null,"ignore_cache":false}'), +(15843, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.743+00', '{"cached":null,"ignore_cache":false}'), +(15844, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.775+00', '{"cached":null,"ignore_cache":false}'), +(15845, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.788+00', '{"cached":null,"ignore_cache":false}'), +(15846, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.797+00', '{"cached":null,"ignore_cache":false}'), +(15847, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.805+00', '{"cached":null,"ignore_cache":false}'), +(15848, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.815+00', '{"cached":null,"ignore_cache":false}'), +(15849, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:04.825+00', '{"cached":null,"ignore_cache":false}'), +(15850, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.483+00', '{"cached":null,"ignore_cache":false}'), +(15851, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.504+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15852, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.537+00', '{"cached":null,"ignore_cache":false}'), +(15853, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.547+00', '{"cached":null,"ignore_cache":false}'), +(15854, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.56+00', '{"cached":null,"ignore_cache":false}'), +(15855, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.565+00', '{"cached":null,"ignore_cache":false}'), +(15856, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:17.582+00', '{"cached":null,"ignore_cache":false}'), +(15857, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.87+00', '{"cached":null,"ignore_cache":false}'), +(15858, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.902+00', '{"cached":null,"ignore_cache":false}'), +(15859, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.923+00', '{"cached":null,"ignore_cache":false}'), +(15860, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:34.966+00', '{"cached":null,"ignore_cache":false}'), +(15861, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:35.008+00', '{"cached":null,"ignore_cache":false}'), +(15862, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:35.018+00', '{"cached":null,"ignore_cache":false}'), +(15863, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:35.024+00', '{"cached":null,"ignore_cache":false}'), +(15864, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:35.077+00', '{"cached":null,"ignore_cache":false}'), +(15865, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:35.079+00', '{"cached":null,"ignore_cache":false}'), +(15866, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.54+00', '{"cached":null,"ignore_cache":false}'), +(15867, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.567+00', '{"cached":null,"ignore_cache":false}'), +(15868, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.62+00', '{"cached":null,"ignore_cache":false}'), +(15869, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.626+00', '{"cached":null,"ignore_cache":false}'), +(15870, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.639+00', '{"cached":null,"ignore_cache":false}'), +(15871, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.644+00', '{"cached":null,"ignore_cache":false}'), +(15872, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:50:47.658+00', '{"cached":null,"ignore_cache":false}'), +(15873, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.746+00', '{"cached":null,"ignore_cache":false}'), +(15874, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.827+00', '{"cached":null,"ignore_cache":false}'), +(15875, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.845+00', '{"cached":null,"ignore_cache":false}'), +(15876, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.912+00', '{"cached":null,"ignore_cache":false}'), +(15877, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.947+00', '{"cached":null,"ignore_cache":false}'), +(15878, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.971+00', '{"cached":null,"ignore_cache":false}'), +(15879, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.983+00', '{"cached":null,"ignore_cache":false}'), +(15880, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:04.994+00', '{"cached":null,"ignore_cache":false}'), +(15881, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:05.02+00', '{"cached":null,"ignore_cache":false}'), +(15882, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.517+00', '{"cached":null,"ignore_cache":false}'), +(15883, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.554+00', '{"cached":null,"ignore_cache":false}'), +(15884, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.582+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15885, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.593+00', '{"cached":null,"ignore_cache":false}'), +(15886, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.63+00', '{"cached":null,"ignore_cache":false}'), +(15887, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.648+00', '{"cached":null,"ignore_cache":false}'), +(15888, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:17.657+00', '{"cached":null,"ignore_cache":false}'), +(15889, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.68+00', '{"cached":null,"ignore_cache":false}'), +(15890, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.85+00', '{"cached":null,"ignore_cache":false}'), +(15891, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.864+00', '{"cached":null,"ignore_cache":false}'), +(15892, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.865+00', '{"cached":null,"ignore_cache":false}'), +(15893, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.906+00', '{"cached":null,"ignore_cache":false}'), +(15894, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.961+00', '{"cached":null,"ignore_cache":false}'), +(15895, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:34.969+00', '{"cached":null,"ignore_cache":false}'), +(15896, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:35.01+00', '{"cached":null,"ignore_cache":false}'), +(15897, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:35.039+00', '{"cached":null,"ignore_cache":false}'), +(15898, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.48+00', '{"cached":null,"ignore_cache":false}'), +(15899, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.503+00', '{"cached":null,"ignore_cache":false}'), +(15900, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.504+00', '{"cached":null,"ignore_cache":false}'), +(15901, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.519+00', '{"cached":null,"ignore_cache":false}'), +(15902, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.574+00', '{"cached":null,"ignore_cache":false}'), +(15903, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.581+00', '{"cached":null,"ignore_cache":false}'), +(15904, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:51:47.598+00', '{"cached":null,"ignore_cache":false}'), +(15905, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.583+00', '{"cached":null,"ignore_cache":false}'), +(15906, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.698+00', '{"cached":null,"ignore_cache":false}'), +(15907, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.735+00', '{"cached":null,"ignore_cache":false}'), +(15908, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.745+00', '{"cached":null,"ignore_cache":false}'), +(15909, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.753+00', '{"cached":null,"ignore_cache":false}'), +(15910, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.801+00', '{"cached":null,"ignore_cache":false}'), +(15911, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.806+00', '{"cached":null,"ignore_cache":false}'), +(15912, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.814+00', '{"cached":null,"ignore_cache":false}'), +(15913, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:04.895+00', '{"cached":null,"ignore_cache":false}'), +(15914, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.515+00', '{"cached":null,"ignore_cache":false}'), +(15915, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.519+00', '{"cached":null,"ignore_cache":false}'), +(15916, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.562+00', '{"cached":null,"ignore_cache":false}'), +(15917, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.581+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15918, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.66+00', '{"cached":null,"ignore_cache":false}'), +(15919, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.692+00', '{"cached":null,"ignore_cache":false}'), +(15920, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:17.706+00', '{"cached":null,"ignore_cache":false}'), +(15921, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.581+00', '{"cached":null,"ignore_cache":false}'), +(15922, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.668+00', '{"cached":null,"ignore_cache":false}'), +(15923, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.695+00', '{"cached":null,"ignore_cache":false}'), +(15924, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.7+00', '{"cached":null,"ignore_cache":false}'), +(15925, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.749+00', '{"cached":null,"ignore_cache":false}'), +(15926, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.762+00', '{"cached":null,"ignore_cache":false}'), +(15927, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.765+00', '{"cached":null,"ignore_cache":false}'), +(15928, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.789+00', '{"cached":null,"ignore_cache":false}'), +(15929, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:34.844+00', '{"cached":null,"ignore_cache":false}'), +(15930, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.517+00', '{"cached":null,"ignore_cache":false}'), +(15931, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.55+00', '{"cached":null,"ignore_cache":false}'), +(15932, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.637+00', '{"cached":null,"ignore_cache":false}'), +(15933, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.652+00', '{"cached":null,"ignore_cache":false}'), +(15934, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.664+00', '{"cached":null,"ignore_cache":false}'), +(15935, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.674+00', '{"cached":null,"ignore_cache":false}'), +(15936, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:52:47.68+00', '{"cached":null,"ignore_cache":false}'), +(15937, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.724+00', '{"cached":null,"ignore_cache":false}'), +(15938, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.745+00', '{"cached":null,"ignore_cache":false}'), +(15939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.759+00', '{"cached":null,"ignore_cache":false}'), +(15940, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.789+00', '{"cached":null,"ignore_cache":false}'), +(15941, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.807+00', '{"cached":null,"ignore_cache":false}'), +(15942, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.836+00', '{"cached":null,"ignore_cache":false}'), +(15943, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.844+00', '{"cached":null,"ignore_cache":false}'), +(15944, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.862+00', '{"cached":null,"ignore_cache":false}'), +(15945, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:04.893+00', '{"cached":null,"ignore_cache":false}'), +(15946, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.552+00', '{"cached":null,"ignore_cache":false}'), +(15947, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.565+00', '{"cached":null,"ignore_cache":false}'), +(15948, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.582+00', '{"cached":null,"ignore_cache":false}'), +(15949, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.621+00', '{"cached":null,"ignore_cache":false}'), +(15950, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.636+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15951, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.639+00', '{"cached":null,"ignore_cache":false}'), +(15952, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:17.667+00', '{"cached":null,"ignore_cache":false}'), +(15953, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.73+00', '{"cached":null,"ignore_cache":false}'), +(15954, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.766+00', '{"cached":null,"ignore_cache":false}'), +(15955, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.79+00', '{"cached":null,"ignore_cache":false}'), +(15956, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.825+00', '{"cached":null,"ignore_cache":false}'), +(15957, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.83+00', '{"cached":null,"ignore_cache":false}'), +(15958, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.845+00', '{"cached":null,"ignore_cache":false}'), +(15959, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.855+00', '{"cached":null,"ignore_cache":false}'), +(15960, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.869+00', '{"cached":null,"ignore_cache":false}'), +(15961, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:34.874+00', '{"cached":null,"ignore_cache":false}'), +(15962, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.519+00', '{"cached":null,"ignore_cache":false}'), +(15963, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.569+00', '{"cached":null,"ignore_cache":false}'), +(15964, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.583+00', '{"cached":null,"ignore_cache":false}'), +(15965, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.593+00', '{"cached":null,"ignore_cache":false}'), +(15966, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.618+00', '{"cached":null,"ignore_cache":false}'), +(15967, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.627+00', '{"cached":null,"ignore_cache":false}'), +(15968, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:53:47.652+00', '{"cached":null,"ignore_cache":false}'), +(15969, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.747+00', '{"cached":null,"ignore_cache":false}'), +(15970, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.909+00', '{"cached":null,"ignore_cache":false}'), +(15971, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.97+00', '{"cached":null,"ignore_cache":false}'), +(15972, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.989+00', '{"cached":null,"ignore_cache":false}'), +(15973, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:04.993+00', '{"cached":null,"ignore_cache":false}'), +(15974, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:05.012+00', '{"cached":null,"ignore_cache":false}'), +(15975, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:05.068+00', '{"cached":null,"ignore_cache":false}'), +(15976, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:05.084+00', '{"cached":null,"ignore_cache":false}'), +(15977, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:05.129+00', '{"cached":null,"ignore_cache":false}'), +(15978, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.587+00', '{"cached":null,"ignore_cache":false}'), +(15979, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.617+00', '{"cached":null,"ignore_cache":false}'), +(15980, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.65+00', '{"cached":null,"ignore_cache":false}'), +(15981, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.678+00', '{"cached":null,"ignore_cache":false}'), +(15982, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.679+00', '{"cached":null,"ignore_cache":false}'), +(15983, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.681+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(15984, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:17.682+00', '{"cached":null,"ignore_cache":false}'), +(15985, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.609+00', '{"cached":null,"ignore_cache":false}'), +(15986, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.638+00', '{"cached":null,"ignore_cache":false}'), +(15987, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.667+00', '{"cached":null,"ignore_cache":false}'), +(15988, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.669+00', '{"cached":null,"ignore_cache":false}'), +(15989, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.683+00', '{"cached":null,"ignore_cache":false}'), +(15990, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.689+00', '{"cached":null,"ignore_cache":false}'), +(15991, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.693+00', '{"cached":null,"ignore_cache":false}'), +(15992, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.707+00', '{"cached":null,"ignore_cache":false}'), +(15993, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:34.718+00', '{"cached":null,"ignore_cache":false}'), +(15994, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.534+00', '{"cached":null,"ignore_cache":false}'), +(15995, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.611+00', '{"cached":null,"ignore_cache":false}'), +(15996, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.667+00', '{"cached":null,"ignore_cache":false}'), +(15997, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.681+00', '{"cached":null,"ignore_cache":false}'), +(15998, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.7+00', '{"cached":null,"ignore_cache":false}'), +(15999, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.716+00', '{"cached":null,"ignore_cache":false}'), +(16000, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:54:47.732+00', '{"cached":null,"ignore_cache":false}'), +(16001, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.696+00', '{"cached":null,"ignore_cache":false}'), +(16002, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.81+00', '{"cached":null,"ignore_cache":false}'), +(16003, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.93+00', '{"cached":null,"ignore_cache":false}'), +(16004, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.936+00', '{"cached":null,"ignore_cache":false}'), +(16005, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.946+00', '{"cached":null,"ignore_cache":false}'), +(16006, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.955+00', '{"cached":null,"ignore_cache":false}'), +(16007, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:04.967+00', '{"cached":null,"ignore_cache":false}'), +(16008, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:05.017+00', '{"cached":null,"ignore_cache":false}'), +(16009, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:05.042+00', '{"cached":null,"ignore_cache":false}'), +(16010, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.574+00', '{"cached":null,"ignore_cache":false}'), +(16011, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.63+00', '{"cached":null,"ignore_cache":false}'), +(16012, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.63+00', '{"cached":null,"ignore_cache":false}'), +(16013, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.635+00', '{"cached":null,"ignore_cache":false}'), +(16014, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.652+00', '{"cached":null,"ignore_cache":false}'), +(16015, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.682+00', '{"cached":null,"ignore_cache":false}'), +(16016, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:17.754+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16017, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.635+00', '{"cached":null,"ignore_cache":false}'), +(16018, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.655+00', '{"cached":null,"ignore_cache":false}'), +(16019, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.685+00', '{"cached":null,"ignore_cache":false}'), +(16020, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.692+00', '{"cached":null,"ignore_cache":false}'), +(16021, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.731+00', '{"cached":null,"ignore_cache":false}'), +(16022, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.744+00', '{"cached":null,"ignore_cache":false}'), +(16023, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.746+00', '{"cached":null,"ignore_cache":false}'), +(16024, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.757+00', '{"cached":null,"ignore_cache":false}'), +(16025, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:34.777+00', '{"cached":null,"ignore_cache":false}'), +(16026, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.476+00', '{"cached":null,"ignore_cache":false}'), +(16027, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.515+00', '{"cached":null,"ignore_cache":false}'), +(16028, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.563+00', '{"cached":null,"ignore_cache":false}'), +(16029, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.613+00', '{"cached":null,"ignore_cache":false}'), +(16030, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.624+00', '{"cached":null,"ignore_cache":false}'), +(16031, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.639+00', '{"cached":null,"ignore_cache":false}'), +(16032, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:55:47.65+00', '{"cached":null,"ignore_cache":false}'), +(16033, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.858+00', '{"cached":null,"ignore_cache":false}'), +(16034, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.947+00', '{"cached":null,"ignore_cache":false}'), +(16035, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.947+00', '{"cached":null,"ignore_cache":false}'), +(16036, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:04.969+00', '{"cached":null,"ignore_cache":false}'), +(16037, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.018+00', '{"cached":null,"ignore_cache":false}'), +(16038, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.065+00', '{"cached":null,"ignore_cache":false}'), +(16039, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.087+00', '{"cached":null,"ignore_cache":false}'), +(16040, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.1+00', '{"cached":null,"ignore_cache":false}'), +(16041, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:05.125+00', '{"cached":null,"ignore_cache":false}'), +(16042, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.513+00', '{"cached":null,"ignore_cache":false}'), +(16043, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.521+00', '{"cached":null,"ignore_cache":false}'), +(16044, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.53+00', '{"cached":null,"ignore_cache":false}'), +(16045, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.541+00', '{"cached":null,"ignore_cache":false}'), +(16046, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.559+00', '{"cached":null,"ignore_cache":false}'), +(16047, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.586+00', '{"cached":null,"ignore_cache":false}'), +(16048, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:18.594+00', '{"cached":null,"ignore_cache":false}'), +(16049, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.946+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16050, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:35.955+00', '{"cached":null,"ignore_cache":false}'), +(16051, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:36.066+00', '{"cached":null,"ignore_cache":false}'), +(16052, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:36.088+00', '{"cached":null,"ignore_cache":false}'), +(16053, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:36.133+00', '{"cached":null,"ignore_cache":false}'), +(16054, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:36.159+00', '{"cached":null,"ignore_cache":false}'), +(16055, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:36.198+00', '{"cached":null,"ignore_cache":false}'), +(16056, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:36.218+00', '{"cached":null,"ignore_cache":false}'), +(16057, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:36.227+00', '{"cached":null,"ignore_cache":false}'), +(16058, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.487+00', '{"cached":null,"ignore_cache":false}'), +(16059, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.535+00', '{"cached":null,"ignore_cache":false}'), +(16060, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.55+00', '{"cached":null,"ignore_cache":false}'), +(16061, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.567+00', '{"cached":null,"ignore_cache":false}'), +(16062, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.603+00', '{"cached":null,"ignore_cache":false}'), +(16063, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.618+00', '{"cached":null,"ignore_cache":false}'), +(16064, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:56:48.619+00', '{"cached":null,"ignore_cache":false}'), +(16065, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.828+00', '{"cached":null,"ignore_cache":false}'), +(16066, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.846+00', '{"cached":null,"ignore_cache":false}'), +(16067, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.855+00', '{"cached":null,"ignore_cache":false}'), +(16068, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.876+00', '{"cached":null,"ignore_cache":false}'), +(16069, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.943+00', '{"cached":null,"ignore_cache":false}'), +(16070, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.953+00', '{"cached":null,"ignore_cache":false}'), +(16071, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.98+00', '{"cached":null,"ignore_cache":false}'), +(16072, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.99+00', '{"cached":null,"ignore_cache":false}'), +(16073, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:05.994+00', '{"cached":null,"ignore_cache":false}'), +(16074, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.42+00', '{"cached":null,"ignore_cache":false}'), +(16075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.421+00', '{"cached":null,"ignore_cache":false}'), +(16076, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.43+00', '{"cached":null,"ignore_cache":false}'), +(16077, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.439+00', '{"cached":null,"ignore_cache":false}'), +(16078, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.454+00', '{"cached":null,"ignore_cache":false}'), +(16079, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.455+00', '{"cached":null,"ignore_cache":false}'), +(16080, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:18.457+00', '{"cached":null,"ignore_cache":false}'), +(16081, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.742+00', '{"cached":null,"ignore_cache":false}'), +(16082, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.753+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16083, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.816+00', '{"cached":null,"ignore_cache":false}'), +(16084, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.827+00', '{"cached":null,"ignore_cache":false}'), +(16085, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.851+00', '{"cached":null,"ignore_cache":false}'), +(16086, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.851+00', '{"cached":null,"ignore_cache":false}'), +(16087, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.858+00', '{"cached":null,"ignore_cache":false}'), +(16088, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.886+00', '{"cached":null,"ignore_cache":false}'), +(16089, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:35.944+00', '{"cached":null,"ignore_cache":false}'), +(16090, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:44.479+00', '{"cached":null,"ignore_cache":null}'), +(16091, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.354+00', '{"cached":null,"ignore_cache":false}'), +(16092, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.36+00', '{"cached":null,"ignore_cache":false}'), +(16093, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.367+00', '{"cached":null,"ignore_cache":false}'), +(16094, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.385+00', '{"cached":null,"ignore_cache":false}'), +(16095, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.388+00', '{"cached":null,"ignore_cache":false}'), +(16096, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.389+00', '{"cached":null,"ignore_cache":false}'), +(16097, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:45.392+00', '{"cached":null,"ignore_cache":false}'), +(16098, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.618+00', '{"cached":null,"ignore_cache":false}'), +(16099, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.643+00', '{"cached":null,"ignore_cache":false}'), +(16100, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.7+00', '{"cached":null,"ignore_cache":false}'), +(16101, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.708+00', '{"cached":null,"ignore_cache":false}'), +(16102, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.743+00', '{"cached":null,"ignore_cache":false}'), +(16103, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.789+00', '{"cached":null,"ignore_cache":false}'), +(16104, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:57:48.799+00', '{"cached":null,"ignore_cache":false}'), +(16105, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.583+00', '{"cached":null,"ignore_cache":false}'), +(16106, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.588+00', '{"cached":null,"ignore_cache":false}'), +(16107, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.617+00', '{"cached":null,"ignore_cache":false}'), +(16108, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.658+00', '{"cached":null,"ignore_cache":false}'), +(16109, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.663+00', '{"cached":null,"ignore_cache":false}'), +(16110, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.677+00', '{"cached":null,"ignore_cache":false}'), +(16111, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.683+00', '{"cached":null,"ignore_cache":false}'), +(16112, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.693+00', '{"cached":null,"ignore_cache":false}'), +(16113, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:05.703+00', '{"cached":null,"ignore_cache":false}'), +(16114, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.463+00', '{"cached":null,"ignore_cache":false}'), +(16115, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.476+00', '{"cached":null,"ignore_cache":false}'), +(16116, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.511+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16117, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.515+00', '{"cached":null,"ignore_cache":false}'), +(16118, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.518+00', '{"cached":null,"ignore_cache":false}'), +(16119, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.527+00', '{"cached":null,"ignore_cache":false}'), +(16120, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:18.531+00', '{"cached":null,"ignore_cache":false}'), +(16121, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.737+00', '{"cached":null,"ignore_cache":false}'), +(16122, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.783+00', '{"cached":null,"ignore_cache":false}'), +(16123, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.802+00', '{"cached":null,"ignore_cache":false}'), +(16124, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.827+00', '{"cached":null,"ignore_cache":false}'), +(16125, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.86+00', '{"cached":null,"ignore_cache":false}'), +(16126, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.868+00', '{"cached":null,"ignore_cache":false}'), +(16127, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.903+00', '{"cached":null,"ignore_cache":false}'), +(16128, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:35.94+00', '{"cached":null,"ignore_cache":false}'), +(16129, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:36.005+00', '{"cached":null,"ignore_cache":false}'), +(16130, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.585+00', '{"cached":null,"ignore_cache":false}'), +(16131, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.591+00', '{"cached":null,"ignore_cache":false}'), +(16132, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.606+00', '{"cached":null,"ignore_cache":false}'), +(16133, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.641+00', '{"cached":null,"ignore_cache":false}'), +(16134, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.663+00', '{"cached":null,"ignore_cache":false}'), +(16135, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.666+00', '{"cached":null,"ignore_cache":false}'), +(16136, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:58:48.673+00', '{"cached":null,"ignore_cache":false}'), +(16137, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.569+00', '{"cached":null,"ignore_cache":false}'), +(16138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.587+00', '{"cached":null,"ignore_cache":false}'), +(16139, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.59+00', '{"cached":null,"ignore_cache":false}'), +(16140, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.628+00', '{"cached":null,"ignore_cache":false}'), +(16141, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.639+00', '{"cached":null,"ignore_cache":false}'), +(16142, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.656+00', '{"cached":null,"ignore_cache":false}'), +(16143, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.664+00', '{"cached":null,"ignore_cache":false}'), +(16144, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.677+00', '{"cached":null,"ignore_cache":false}'), +(16145, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:06.715+00', '{"cached":null,"ignore_cache":false}'), +(16146, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.548+00', '{"cached":null,"ignore_cache":false}'), +(16147, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.586+00', '{"cached":null,"ignore_cache":false}'), +(16148, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.626+00', '{"cached":null,"ignore_cache":false}'), +(16149, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.672+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16150, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.679+00', '{"cached":null,"ignore_cache":false}'), +(16151, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.698+00', '{"cached":null,"ignore_cache":false}'), +(16152, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:18.704+00', '{"cached":null,"ignore_cache":false}'), +(16153, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.328+00', '{"cached":null,"ignore_cache":false}'), +(16154, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.86+00', '{"cached":null,"ignore_cache":false}'), +(16155, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.905+00', '{"cached":null,"ignore_cache":false}'), +(16156, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:37.979+00', '{"cached":null,"ignore_cache":false}'), +(16157, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:38.011+00', '{"cached":null,"ignore_cache":false}'), +(16158, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:38.037+00', '{"cached":null,"ignore_cache":false}'), +(16159, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:38.062+00', '{"cached":null,"ignore_cache":false}'), +(16160, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:38.078+00', '{"cached":null,"ignore_cache":false}'), +(16161, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:38.086+00', '{"cached":null,"ignore_cache":false}'), +(16162, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.504+00', '{"cached":null,"ignore_cache":false}'), +(16163, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.53+00', '{"cached":null,"ignore_cache":false}'), +(16164, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.544+00', '{"cached":null,"ignore_cache":false}'), +(16165, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.553+00', '{"cached":null,"ignore_cache":false}'), +(16166, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.556+00', '{"cached":null,"ignore_cache":false}'), +(16167, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.556+00', '{"cached":null,"ignore_cache":false}'), +(16168, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 11:59:48.558+00', '{"cached":null,"ignore_cache":false}'), +(16169, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.925+00', '{"cached":null,"ignore_cache":false}'), +(16170, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:05.951+00', '{"cached":null,"ignore_cache":false}'), +(16171, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:06.021+00', '{"cached":null,"ignore_cache":false}'), +(16172, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:06.05+00', '{"cached":null,"ignore_cache":false}'), +(16173, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:06.116+00', '{"cached":null,"ignore_cache":false}'), +(16174, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:06.119+00', '{"cached":null,"ignore_cache":false}'), +(16175, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:06.123+00', '{"cached":null,"ignore_cache":false}'), +(16176, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:06.166+00', '{"cached":null,"ignore_cache":false}'), +(16177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:06.191+00', '{"cached":null,"ignore_cache":false}'), +(16178, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.456+00', '{"cached":null,"ignore_cache":false}'), +(16179, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.464+00', '{"cached":null,"ignore_cache":false}'), +(16180, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.466+00', '{"cached":null,"ignore_cache":false}'), +(16181, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.469+00', '{"cached":null,"ignore_cache":false}'), +(16182, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.471+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16183, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.476+00', '{"cached":null,"ignore_cache":false}'), +(16184, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:18.484+00', '{"cached":null,"ignore_cache":false}'), +(16185, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.839+00', '{"cached":null,"ignore_cache":false}'), +(16186, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.86+00', '{"cached":null,"ignore_cache":false}'), +(16187, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.875+00', '{"cached":null,"ignore_cache":false}'), +(16188, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:35.992+00', '{"cached":null,"ignore_cache":false}'), +(16189, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:36.008+00', '{"cached":null,"ignore_cache":false}'), +(16190, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:36.014+00', '{"cached":null,"ignore_cache":false}'), +(16191, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:36.087+00', '{"cached":null,"ignore_cache":false}'), +(16192, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:36.119+00', '{"cached":null,"ignore_cache":false}'), +(16193, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:36.214+00', '{"cached":null,"ignore_cache":false}'), +(16194, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.527+00', '{"cached":null,"ignore_cache":false}'), +(16195, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.582+00', '{"cached":null,"ignore_cache":false}'), +(16196, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.589+00', '{"cached":null,"ignore_cache":false}'), +(16197, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.593+00', '{"cached":null,"ignore_cache":false}'), +(16198, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.601+00', '{"cached":null,"ignore_cache":false}'), +(16199, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.609+00', '{"cached":null,"ignore_cache":false}'), +(16200, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:00:48.61+00', '{"cached":null,"ignore_cache":false}'), +(16201, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.54+00', '{"cached":null,"ignore_cache":false}'), +(16202, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.605+00', '{"cached":null,"ignore_cache":false}'), +(16203, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.726+00', '{"cached":null,"ignore_cache":false}'), +(16204, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.727+00', '{"cached":null,"ignore_cache":false}'), +(16205, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.742+00', '{"cached":null,"ignore_cache":false}'), +(16206, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.771+00', '{"cached":null,"ignore_cache":false}'), +(16207, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.788+00', '{"cached":null,"ignore_cache":false}'), +(16208, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.828+00', '{"cached":null,"ignore_cache":false}'), +(16209, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:06.873+00', '{"cached":null,"ignore_cache":false}'), +(16210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.52+00', '{"cached":null,"ignore_cache":false}'), +(16211, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.521+00', '{"cached":null,"ignore_cache":false}'), +(16212, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.528+00', '{"cached":null,"ignore_cache":false}'), +(16213, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.535+00', '{"cached":null,"ignore_cache":false}'), +(16214, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.544+00', '{"cached":null,"ignore_cache":false}'), +(16215, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.55+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16216, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:18.555+00', '{"cached":null,"ignore_cache":false}'), +(16217, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.707+00', '{"cached":null,"ignore_cache":false}'), +(16218, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.72+00', '{"cached":null,"ignore_cache":false}'), +(16219, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.751+00', '{"cached":null,"ignore_cache":false}'), +(16220, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.787+00', '{"cached":null,"ignore_cache":false}'), +(16221, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.807+00', '{"cached":null,"ignore_cache":false}'), +(16222, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.835+00', '{"cached":null,"ignore_cache":false}'), +(16223, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.841+00', '{"cached":null,"ignore_cache":false}'), +(16224, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.842+00', '{"cached":null,"ignore_cache":false}'), +(16225, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:35.847+00', '{"cached":null,"ignore_cache":false}'), +(16226, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.416+00', '{"cached":null,"ignore_cache":false}'), +(16227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.422+00', '{"cached":null,"ignore_cache":false}'), +(16228, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.431+00', '{"cached":null,"ignore_cache":false}'), +(16229, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.439+00', '{"cached":null,"ignore_cache":false}'), +(16230, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.461+00', '{"cached":null,"ignore_cache":false}'), +(16231, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.468+00', '{"cached":null,"ignore_cache":false}'), +(16232, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:01:48.471+00', '{"cached":null,"ignore_cache":false}'), +(16233, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.681+00', '{"cached":null,"ignore_cache":false}'), +(16234, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.697+00', '{"cached":null,"ignore_cache":false}'), +(16235, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.72+00', '{"cached":null,"ignore_cache":false}'), +(16236, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.745+00', '{"cached":null,"ignore_cache":false}'), +(16237, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.751+00', '{"cached":null,"ignore_cache":false}'), +(16238, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.753+00', '{"cached":null,"ignore_cache":false}'), +(16239, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.757+00', '{"cached":null,"ignore_cache":false}'), +(16240, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.775+00', '{"cached":null,"ignore_cache":false}'), +(16241, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:05.787+00', '{"cached":null,"ignore_cache":false}'), +(16242, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.523+00', '{"cached":null,"ignore_cache":false}'), +(16243, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.539+00', '{"cached":null,"ignore_cache":false}'), +(16244, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.583+00', '{"cached":null,"ignore_cache":false}'), +(16245, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.589+00', '{"cached":null,"ignore_cache":false}'), +(16246, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.604+00', '{"cached":null,"ignore_cache":false}'), +(16247, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.632+00', '{"cached":null,"ignore_cache":false}'), +(16248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:18.655+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16249, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.707+00', '{"cached":null,"ignore_cache":false}'), +(16250, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.753+00', '{"cached":null,"ignore_cache":false}'), +(16251, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.796+00', '{"cached":null,"ignore_cache":false}'), +(16252, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.814+00', '{"cached":null,"ignore_cache":false}'), +(16253, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.859+00', '{"cached":null,"ignore_cache":false}'), +(16254, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.882+00', '{"cached":null,"ignore_cache":false}'), +(16255, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:35.95+00', '{"cached":null,"ignore_cache":false}'), +(16256, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:36.008+00', '{"cached":null,"ignore_cache":false}'), +(16257, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:36.014+00', '{"cached":null,"ignore_cache":false}'), +(16258, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.611+00', '{"cached":null,"ignore_cache":false}'), +(16259, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.618+00', '{"cached":null,"ignore_cache":false}'), +(16260, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.659+00', '{"cached":null,"ignore_cache":false}'), +(16261, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.67+00', '{"cached":null,"ignore_cache":false}'), +(16262, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.678+00', '{"cached":null,"ignore_cache":false}'), +(16263, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.687+00', '{"cached":null,"ignore_cache":false}'), +(16264, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:02:48.688+00', '{"cached":null,"ignore_cache":false}'), +(16265, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.743+00', '{"cached":null,"ignore_cache":false}'), +(16266, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.786+00', '{"cached":null,"ignore_cache":false}'), +(16267, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.827+00', '{"cached":null,"ignore_cache":false}'), +(16268, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.878+00', '{"cached":null,"ignore_cache":false}'), +(16269, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.891+00', '{"cached":null,"ignore_cache":false}'), +(16270, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.906+00', '{"cached":null,"ignore_cache":false}'), +(16271, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.912+00', '{"cached":null,"ignore_cache":false}'), +(16272, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.914+00', '{"cached":null,"ignore_cache":false}'), +(16273, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:05.926+00', '{"cached":null,"ignore_cache":false}'), +(16274, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.526+00', '{"cached":null,"ignore_cache":false}'), +(16275, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.554+00', '{"cached":null,"ignore_cache":false}'), +(16276, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.564+00', '{"cached":null,"ignore_cache":false}'), +(16277, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.577+00', '{"cached":null,"ignore_cache":false}'), +(16278, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.598+00', '{"cached":null,"ignore_cache":false}'), +(16279, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.633+00', '{"cached":null,"ignore_cache":false}'), +(16280, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:18.676+00', '{"cached":null,"ignore_cache":false}'), +(16281, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.484+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16282, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.595+00', '{"cached":null,"ignore_cache":false}'), +(16283, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.649+00', '{"cached":null,"ignore_cache":false}'), +(16284, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.68+00', '{"cached":null,"ignore_cache":false}'), +(16285, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.749+00', '{"cached":null,"ignore_cache":false}'), +(16286, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.789+00', '{"cached":null,"ignore_cache":false}'), +(16287, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.797+00', '{"cached":null,"ignore_cache":false}'), +(16288, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.799+00', '{"cached":null,"ignore_cache":false}'), +(16289, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:35.804+00', '{"cached":null,"ignore_cache":false}'), +(16290, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.625+00', '{"cached":null,"ignore_cache":false}'), +(16291, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.639+00', '{"cached":null,"ignore_cache":false}'), +(16292, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.705+00', '{"cached":null,"ignore_cache":false}'), +(16293, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.774+00', '{"cached":null,"ignore_cache":false}'), +(16294, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.776+00', '{"cached":null,"ignore_cache":false}'), +(16295, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.783+00', '{"cached":null,"ignore_cache":false}'), +(16296, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:03:48.793+00', '{"cached":null,"ignore_cache":false}'), +(16297, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.816+00', '{"cached":null,"ignore_cache":false}'), +(16298, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.928+00', '{"cached":null,"ignore_cache":false}'), +(16299, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.949+00', '{"cached":null,"ignore_cache":false}'), +(16300, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.978+00', '{"cached":null,"ignore_cache":false}'), +(16301, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:05.994+00', '{"cached":null,"ignore_cache":false}'), +(16302, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:06+00', '{"cached":null,"ignore_cache":false}'), +(16303, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:06.04+00', '{"cached":null,"ignore_cache":false}'), +(16304, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:06.044+00', '{"cached":null,"ignore_cache":false}'), +(16305, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:06.063+00', '{"cached":null,"ignore_cache":false}'), +(16306, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.631+00', '{"cached":null,"ignore_cache":false}'), +(16307, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.672+00', '{"cached":null,"ignore_cache":false}'), +(16308, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.681+00', '{"cached":null,"ignore_cache":false}'), +(16309, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.688+00', '{"cached":null,"ignore_cache":false}'), +(16310, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.712+00', '{"cached":null,"ignore_cache":false}'), +(16311, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.723+00', '{"cached":null,"ignore_cache":false}'), +(16312, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:18.756+00', '{"cached":null,"ignore_cache":false}'), +(16313, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.596+00', '{"cached":null,"ignore_cache":false}'), +(16314, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.623+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16315, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.639+00', '{"cached":null,"ignore_cache":false}'), +(16316, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.643+00', '{"cached":null,"ignore_cache":false}'), +(16317, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.667+00', '{"cached":null,"ignore_cache":false}'), +(16318, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.673+00', '{"cached":null,"ignore_cache":false}'), +(16319, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.674+00', '{"cached":null,"ignore_cache":false}'), +(16320, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.676+00', '{"cached":null,"ignore_cache":false}'), +(16321, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:35.681+00', '{"cached":null,"ignore_cache":false}'), +(16322, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.442+00', '{"cached":null,"ignore_cache":false}'), +(16323, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.448+00', '{"cached":null,"ignore_cache":false}'), +(16324, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.504+00', '{"cached":null,"ignore_cache":false}'), +(16325, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.506+00', '{"cached":null,"ignore_cache":false}'), +(16326, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.535+00', '{"cached":null,"ignore_cache":false}'), +(16327, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.549+00', '{"cached":null,"ignore_cache":false}'), +(16328, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:04:48.575+00', '{"cached":null,"ignore_cache":false}'), +(16329, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.938+00', '{"cached":null,"ignore_cache":false}'), +(16330, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:05.974+00', '{"cached":null,"ignore_cache":false}'), +(16331, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:06.013+00', '{"cached":null,"ignore_cache":false}'), +(16332, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:06.031+00', '{"cached":null,"ignore_cache":false}'), +(16333, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:06.032+00', '{"cached":null,"ignore_cache":false}'), +(16334, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:06.042+00', '{"cached":null,"ignore_cache":false}'), +(16335, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:06.052+00', '{"cached":null,"ignore_cache":false}'), +(16336, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:06.054+00', '{"cached":null,"ignore_cache":false}'), +(16337, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:06.07+00', '{"cached":null,"ignore_cache":false}'), +(16338, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.386+00', '{"cached":null,"ignore_cache":false}'), +(16339, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.435+00', '{"cached":null,"ignore_cache":false}'), +(16340, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.448+00', '{"cached":null,"ignore_cache":false}'), +(16341, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.457+00', '{"cached":null,"ignore_cache":false}'), +(16342, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.465+00', '{"cached":null,"ignore_cache":false}'), +(16343, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.471+00', '{"cached":null,"ignore_cache":false}'), +(16344, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:18.475+00', '{"cached":null,"ignore_cache":false}'), +(16345, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.703+00', '{"cached":null,"ignore_cache":false}'), +(16346, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.782+00', '{"cached":null,"ignore_cache":false}'), +(16347, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.81+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16348, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.832+00', '{"cached":null,"ignore_cache":false}'), +(16349, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.84+00', '{"cached":null,"ignore_cache":false}'), +(16350, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.851+00', '{"cached":null,"ignore_cache":false}'), +(16351, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.916+00', '{"cached":null,"ignore_cache":false}'), +(16352, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.924+00', '{"cached":null,"ignore_cache":false}'), +(16353, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:35.972+00', '{"cached":null,"ignore_cache":false}'), +(16354, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.407+00', '{"cached":null,"ignore_cache":false}'), +(16355, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.464+00', '{"cached":null,"ignore_cache":false}'), +(16356, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.492+00', '{"cached":null,"ignore_cache":false}'), +(16357, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.506+00', '{"cached":null,"ignore_cache":false}'), +(16358, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.523+00', '{"cached":null,"ignore_cache":false}'), +(16359, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.53+00', '{"cached":null,"ignore_cache":false}'), +(16360, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:05:48.536+00', '{"cached":null,"ignore_cache":false}'), +(16361, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.889+00', '{"cached":null,"ignore_cache":false}'), +(16362, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:05.89+00', '{"cached":null,"ignore_cache":false}'), +(16363, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:06.003+00', '{"cached":null,"ignore_cache":false}'), +(16364, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:06.061+00', '{"cached":null,"ignore_cache":false}'), +(16365, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:06.133+00', '{"cached":null,"ignore_cache":false}'), +(16366, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:06.141+00', '{"cached":null,"ignore_cache":false}'), +(16367, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:06.152+00', '{"cached":null,"ignore_cache":false}'), +(16368, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:06.154+00', '{"cached":null,"ignore_cache":false}'), +(16369, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:06.163+00', '{"cached":null,"ignore_cache":false}'), +(16370, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.511+00', '{"cached":null,"ignore_cache":false}'), +(16371, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.544+00', '{"cached":null,"ignore_cache":false}'), +(16372, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.559+00', '{"cached":null,"ignore_cache":false}'), +(16373, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.566+00', '{"cached":null,"ignore_cache":false}'), +(16374, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.576+00', '{"cached":null,"ignore_cache":false}'), +(16375, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.588+00', '{"cached":null,"ignore_cache":false}'), +(16376, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:18.597+00', '{"cached":null,"ignore_cache":false}'), +(16377, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.864+00', '{"cached":null,"ignore_cache":false}'), +(16378, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.879+00', '{"cached":null,"ignore_cache":false}'), +(16379, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.913+00', '{"cached":null,"ignore_cache":false}'), +(16380, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.917+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16381, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.923+00', '{"cached":null,"ignore_cache":false}'), +(16382, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.945+00', '{"cached":null,"ignore_cache":false}'), +(16383, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.95+00', '{"cached":null,"ignore_cache":false}'), +(16384, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.96+00', '{"cached":null,"ignore_cache":false}'), +(16385, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:35.993+00', '{"cached":null,"ignore_cache":false}'), +(16386, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.658+00', '{"cached":null,"ignore_cache":false}'), +(16387, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.696+00', '{"cached":null,"ignore_cache":false}'), +(16388, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.702+00', '{"cached":null,"ignore_cache":false}'), +(16389, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.715+00', '{"cached":null,"ignore_cache":false}'), +(16390, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.76+00', '{"cached":null,"ignore_cache":false}'), +(16391, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.775+00', '{"cached":null,"ignore_cache":false}'), +(16392, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:06:48.801+00', '{"cached":null,"ignore_cache":false}'), +(16393, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.602+00', '{"cached":null,"ignore_cache":false}'), +(16394, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.633+00', '{"cached":null,"ignore_cache":false}'), +(16395, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.639+00', '{"cached":null,"ignore_cache":false}'), +(16396, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.656+00', '{"cached":null,"ignore_cache":false}'), +(16397, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.681+00', '{"cached":null,"ignore_cache":false}'), +(16398, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.706+00', '{"cached":null,"ignore_cache":false}'), +(16399, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.707+00', '{"cached":null,"ignore_cache":false}'), +(16400, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.732+00', '{"cached":null,"ignore_cache":false}'), +(16401, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:05.763+00', '{"cached":null,"ignore_cache":false}'), +(16402, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.561+00', '{"cached":null,"ignore_cache":false}'), +(16403, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.575+00', '{"cached":null,"ignore_cache":false}'), +(16404, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.673+00', '{"cached":null,"ignore_cache":false}'), +(16405, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.766+00', '{"cached":null,"ignore_cache":false}'), +(16406, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.799+00', '{"cached":null,"ignore_cache":false}'), +(16407, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.831+00', '{"cached":null,"ignore_cache":false}'), +(16408, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:18.833+00', '{"cached":null,"ignore_cache":false}'), +(16409, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.602+00', '{"cached":null,"ignore_cache":false}'), +(16410, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.715+00', '{"cached":null,"ignore_cache":false}'), +(16411, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.813+00', '{"cached":null,"ignore_cache":false}'), +(16412, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.842+00', '{"cached":null,"ignore_cache":false}'), +(16413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.851+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16414, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.865+00', '{"cached":null,"ignore_cache":false}'), +(16415, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.875+00', '{"cached":null,"ignore_cache":false}'), +(16416, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.88+00', '{"cached":null,"ignore_cache":false}'), +(16417, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:35.939+00', '{"cached":null,"ignore_cache":false}'), +(16418, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.637+00', '{"cached":null,"ignore_cache":false}'), +(16419, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.645+00', '{"cached":null,"ignore_cache":false}'), +(16420, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.656+00', '{"cached":null,"ignore_cache":false}'), +(16421, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.682+00', '{"cached":null,"ignore_cache":false}'), +(16422, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.686+00', '{"cached":null,"ignore_cache":false}'), +(16423, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.704+00', '{"cached":null,"ignore_cache":false}'), +(16424, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:07:48.714+00', '{"cached":null,"ignore_cache":false}'), +(16425, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.547+00', '{"cached":null,"ignore_cache":false}'), +(16426, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.667+00', '{"cached":null,"ignore_cache":false}'), +(16427, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.67+00', '{"cached":null,"ignore_cache":false}'), +(16428, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.684+00', '{"cached":null,"ignore_cache":false}'), +(16429, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.698+00', '{"cached":null,"ignore_cache":false}'), +(16430, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.731+00', '{"cached":null,"ignore_cache":false}'), +(16431, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.744+00', '{"cached":null,"ignore_cache":false}'), +(16432, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.747+00', '{"cached":null,"ignore_cache":false}'), +(16433, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:05.789+00', '{"cached":null,"ignore_cache":false}'), +(16434, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.417+00', '{"cached":null,"ignore_cache":false}'), +(16435, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.481+00', '{"cached":null,"ignore_cache":false}'), +(16436, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.504+00', '{"cached":null,"ignore_cache":false}'), +(16437, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.512+00', '{"cached":null,"ignore_cache":false}'), +(16438, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.515+00', '{"cached":null,"ignore_cache":false}'), +(16439, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.546+00', '{"cached":null,"ignore_cache":false}'), +(16440, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:18.552+00', '{"cached":null,"ignore_cache":false}'), +(16441, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.778+00', '{"cached":null,"ignore_cache":false}'), +(16442, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.899+00', '{"cached":null,"ignore_cache":false}'), +(16443, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.945+00', '{"cached":null,"ignore_cache":false}'), +(16444, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.965+00', '{"cached":null,"ignore_cache":false}'), +(16445, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.984+00', '{"cached":null,"ignore_cache":false}'), +(16446, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.99+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16447, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:35.991+00', '{"cached":null,"ignore_cache":false}'), +(16448, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:36.045+00', '{"cached":null,"ignore_cache":false}'), +(16449, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:36.07+00', '{"cached":null,"ignore_cache":false}'), +(16450, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.677+00', '{"cached":null,"ignore_cache":false}'), +(16451, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.682+00', '{"cached":null,"ignore_cache":false}'), +(16452, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.702+00', '{"cached":null,"ignore_cache":false}'), +(16453, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.723+00', '{"cached":null,"ignore_cache":false}'), +(16454, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.75+00', '{"cached":null,"ignore_cache":false}'), +(16455, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.76+00', '{"cached":null,"ignore_cache":false}'), +(16456, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:48.762+00', '{"cached":null,"ignore_cache":false}'), +(16457, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.01+00', '{"cached":null,"ignore_cache":false}'), +(16458, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.01+00', '{"cached":null,"ignore_cache":false}'), +(16459, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.034+00', '{"cached":null,"ignore_cache":false}'), +(16460, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.12+00', '{"cached":null,"ignore_cache":false}'), +(16461, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.695+00', '{"cached":null,"ignore_cache":false}'), +(16462, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.712+00', '{"cached":null,"ignore_cache":false}'), +(16463, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.957+00', '{"cached":null,"ignore_cache":false}'), +(16464, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:51.964+00', '{"cached":null,"ignore_cache":false}'), +(16465, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.012+00', '{"cached":null,"ignore_cache":false}'), +(16466, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.033+00', '{"cached":null,"ignore_cache":false}'), +(16467, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.144+00', '{"cached":null,"ignore_cache":false}'), +(16468, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.167+00', '{"cached":null,"ignore_cache":false}'), +(16469, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.269+00', '{"cached":null,"ignore_cache":false}'), +(16470, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.331+00', '{"cached":null,"ignore_cache":false}'), +(16471, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.364+00', '{"cached":null,"ignore_cache":false}'), +(16472, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.375+00', '{"cached":null,"ignore_cache":false}'), +(16473, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.466+00', '{"cached":null,"ignore_cache":false}'), +(16474, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.59+00', '{"cached":null,"ignore_cache":false}'), +(16475, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:08:52.64+00', '{"cached":null,"ignore_cache":false}'), +(16476, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.615+00', '{"cached":null,"ignore_cache":false}'), +(16477, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.643+00', '{"cached":null,"ignore_cache":false}'), +(16478, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.652+00', '{"cached":null,"ignore_cache":false}'), +(16479, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.67+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16480, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.691+00', '{"cached":null,"ignore_cache":false}'), +(16481, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.694+00', '{"cached":null,"ignore_cache":false}'), +(16482, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.702+00', '{"cached":null,"ignore_cache":false}'), +(16483, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.71+00', '{"cached":null,"ignore_cache":false}'), +(16484, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:05.727+00', '{"cached":null,"ignore_cache":false}'), +(16485, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.503+00', '{"cached":null,"ignore_cache":false}'), +(16486, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.558+00', '{"cached":null,"ignore_cache":false}'), +(16487, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.587+00', '{"cached":null,"ignore_cache":false}'), +(16488, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.618+00', '{"cached":null,"ignore_cache":false}'), +(16489, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.619+00', '{"cached":null,"ignore_cache":false}'), +(16490, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.627+00', '{"cached":null,"ignore_cache":false}'), +(16491, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:18.63+00', '{"cached":null,"ignore_cache":false}'), +(16492, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.016+00', '{"cached":null,"ignore_cache":false}'), +(16493, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.059+00', '{"cached":null,"ignore_cache":false}'), +(16494, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.124+00', '{"cached":null,"ignore_cache":false}'), +(16495, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.186+00', '{"cached":null,"ignore_cache":false}'), +(16496, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.194+00', '{"cached":null,"ignore_cache":false}'), +(16497, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.227+00', '{"cached":null,"ignore_cache":false}'), +(16498, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.26+00', '{"cached":null,"ignore_cache":false}'), +(16499, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.303+00', '{"cached":null,"ignore_cache":false}'), +(16500, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.333+00', '{"cached":null,"ignore_cache":false}'), +(16501, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.375+00', '{"cached":null,"ignore_cache":false}'), +(16502, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.394+00', '{"cached":null,"ignore_cache":false}'), +(16503, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.407+00', '{"cached":null,"ignore_cache":false}'), +(16504, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.415+00', '{"cached":null,"ignore_cache":false}'), +(16505, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.432+00', '{"cached":null,"ignore_cache":false}'), +(16506, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.435+00', '{"cached":null,"ignore_cache":false}'), +(16507, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:21.487+00', '{"cached":null,"ignore_cache":false}'), +(16508, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.651+00', '{"cached":null,"ignore_cache":false}'), +(16509, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.684+00', '{"cached":null,"ignore_cache":false}'), +(16510, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.701+00', '{"cached":null,"ignore_cache":false}'), +(16511, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.704+00', '{"cached":null,"ignore_cache":false}'), +(16512, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.732+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16513, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.737+00', '{"cached":null,"ignore_cache":false}'), +(16514, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.747+00', '{"cached":null,"ignore_cache":false}'), +(16515, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.752+00', '{"cached":null,"ignore_cache":false}'), +(16516, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:35.756+00', '{"cached":null,"ignore_cache":false}'), +(16517, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.55+00', '{"cached":null,"ignore_cache":false}'), +(16518, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.568+00', '{"cached":null,"ignore_cache":false}'), +(16519, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.588+00', '{"cached":null,"ignore_cache":false}'), +(16520, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.595+00', '{"cached":null,"ignore_cache":false}'), +(16521, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.629+00', '{"cached":null,"ignore_cache":false}'), +(16522, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.637+00', '{"cached":null,"ignore_cache":false}'), +(16523, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:48.655+00', '{"cached":null,"ignore_cache":false}'), +(16524, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.331+00', '{"cached":null,"ignore_cache":false}'), +(16525, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.402+00', '{"cached":null,"ignore_cache":false}'), +(16526, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.458+00', '{"cached":null,"ignore_cache":false}'), +(16527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.479+00', '{"cached":null,"ignore_cache":false}'), +(16528, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.579+00', '{"cached":null,"ignore_cache":false}'), +(16529, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.592+00', '{"cached":null,"ignore_cache":false}'), +(16530, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.61+00', '{"cached":null,"ignore_cache":false}'), +(16531, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.69+00', '{"cached":null,"ignore_cache":false}'), +(16532, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.762+00', '{"cached":null,"ignore_cache":false}'), +(16533, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.766+00', '{"cached":null,"ignore_cache":false}'), +(16534, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.858+00', '{"cached":null,"ignore_cache":false}'), +(16535, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.872+00', '{"cached":null,"ignore_cache":false}'), +(16536, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.903+00', '{"cached":null,"ignore_cache":false}'), +(16537, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.957+00', '{"cached":null,"ignore_cache":false}'), +(16538, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.962+00', '{"cached":null,"ignore_cache":false}'), +(16539, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:09:51.978+00', '{"cached":null,"ignore_cache":false}'), +(16540, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.759+00', '{"cached":null,"ignore_cache":false}'), +(16541, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.781+00', '{"cached":null,"ignore_cache":false}'), +(16542, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.814+00', '{"cached":null,"ignore_cache":false}'), +(16543, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.831+00', '{"cached":null,"ignore_cache":false}'), +(16544, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.846+00', '{"cached":null,"ignore_cache":false}'), +(16545, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.849+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16546, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.851+00', '{"cached":null,"ignore_cache":false}'), +(16547, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.857+00', '{"cached":null,"ignore_cache":false}'), +(16548, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:05.885+00', '{"cached":null,"ignore_cache":false}'), +(16549, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.495+00', '{"cached":null,"ignore_cache":false}'), +(16550, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.52+00', '{"cached":null,"ignore_cache":false}'), +(16551, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.526+00', '{"cached":null,"ignore_cache":false}'), +(16552, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.556+00', '{"cached":null,"ignore_cache":false}'), +(16553, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.576+00', '{"cached":null,"ignore_cache":false}'), +(16554, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.585+00', '{"cached":null,"ignore_cache":false}'), +(16555, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:18.601+00', '{"cached":null,"ignore_cache":false}'), +(16556, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:20.96+00', '{"cached":null,"ignore_cache":false}'), +(16557, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.139+00', '{"cached":null,"ignore_cache":false}'), +(16558, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.158+00', '{"cached":null,"ignore_cache":false}'), +(16559, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.174+00', '{"cached":null,"ignore_cache":false}'), +(16560, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.336+00', '{"cached":null,"ignore_cache":false}'), +(16561, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.341+00', '{"cached":null,"ignore_cache":false}'), +(16562, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.398+00', '{"cached":null,"ignore_cache":false}'), +(16563, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.436+00', '{"cached":null,"ignore_cache":false}'), +(16564, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.453+00', '{"cached":null,"ignore_cache":false}'), +(16565, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.483+00', '{"cached":null,"ignore_cache":false}'), +(16566, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.485+00', '{"cached":null,"ignore_cache":false}'), +(16567, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.488+00', '{"cached":null,"ignore_cache":false}'), +(16568, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.499+00', '{"cached":null,"ignore_cache":false}'), +(16569, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.515+00', '{"cached":null,"ignore_cache":false}'), +(16570, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.519+00', '{"cached":null,"ignore_cache":false}'), +(16571, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:21.528+00', '{"cached":null,"ignore_cache":false}'), +(16572, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.069+00', '{"cached":null,"ignore_cache":false}'), +(16573, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.111+00', '{"cached":null,"ignore_cache":false}'), +(16574, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.137+00', '{"cached":null,"ignore_cache":false}'), +(16575, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.17+00', '{"cached":null,"ignore_cache":false}'), +(16576, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.179+00', '{"cached":null,"ignore_cache":false}'), +(16577, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.193+00', '{"cached":null,"ignore_cache":false}'), +(16578, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.264+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16579, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.283+00', '{"cached":null,"ignore_cache":false}'), +(16580, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:29.318+00', '{"cached":null,"ignore_cache":false}'), +(16581, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.728+00', '{"cached":null,"ignore_cache":false}'), +(16582, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.82+00', '{"cached":null,"ignore_cache":false}'), +(16583, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.838+00', '{"cached":null,"ignore_cache":false}'), +(16584, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.838+00', '{"cached":null,"ignore_cache":false}'), +(16585, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.845+00', '{"cached":null,"ignore_cache":false}'), +(16586, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.869+00', '{"cached":null,"ignore_cache":false}'), +(16587, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.872+00', '{"cached":null,"ignore_cache":false}'), +(16588, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.873+00', '{"cached":null,"ignore_cache":false}'), +(16589, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:35.9+00', '{"cached":null,"ignore_cache":false}'), +(16590, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.36+00', '{"cached":null,"ignore_cache":false}'), +(16591, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.427+00', '{"cached":null,"ignore_cache":false}'), +(16592, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.44+00', '{"cached":null,"ignore_cache":false}'), +(16593, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.452+00', '{"cached":null,"ignore_cache":false}'), +(16594, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.458+00', '{"cached":null,"ignore_cache":false}'), +(16595, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.462+00', '{"cached":null,"ignore_cache":false}'), +(16596, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:48.466+00', '{"cached":null,"ignore_cache":false}'), +(16597, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.255+00', '{"cached":null,"ignore_cache":false}'), +(16598, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.297+00', '{"cached":null,"ignore_cache":false}'), +(16599, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.323+00', '{"cached":null,"ignore_cache":false}'), +(16600, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.36+00', '{"cached":null,"ignore_cache":false}'), +(16601, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.366+00', '{"cached":null,"ignore_cache":false}'), +(16602, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.392+00', '{"cached":null,"ignore_cache":false}'), +(16603, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.455+00', '{"cached":null,"ignore_cache":false}'), +(16604, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.507+00', '{"cached":null,"ignore_cache":false}'), +(16605, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.531+00', '{"cached":null,"ignore_cache":false}'), +(16606, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.549+00', '{"cached":null,"ignore_cache":false}'), +(16607, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.57+00', '{"cached":null,"ignore_cache":false}'), +(16608, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.59+00', '{"cached":null,"ignore_cache":false}'), +(16609, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.675+00', '{"cached":null,"ignore_cache":false}'), +(16610, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.681+00', '{"cached":null,"ignore_cache":false}'), +(16611, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.692+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16612, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:10:51.774+00', '{"cached":null,"ignore_cache":false}'), +(16613, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.497+00', '{"cached":null,"ignore_cache":false}'), +(16614, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.731+00', '{"cached":null,"ignore_cache":false}'), +(16615, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.732+00', '{"cached":null,"ignore_cache":false}'), +(16616, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.738+00', '{"cached":null,"ignore_cache":false}'), +(16617, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.743+00', '{"cached":null,"ignore_cache":false}'), +(16618, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.78+00', '{"cached":null,"ignore_cache":false}'), +(16619, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.786+00', '{"cached":null,"ignore_cache":false}'), +(16620, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.802+00', '{"cached":null,"ignore_cache":false}'), +(16621, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:05.804+00', '{"cached":null,"ignore_cache":false}'), +(16622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.471+00', '{"cached":null,"ignore_cache":false}'), +(16623, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.49+00', '{"cached":null,"ignore_cache":false}'), +(16624, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.563+00', '{"cached":null,"ignore_cache":false}'), +(16625, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.575+00', '{"cached":null,"ignore_cache":false}'), +(16626, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.584+00', '{"cached":null,"ignore_cache":false}'), +(16627, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.587+00', '{"cached":null,"ignore_cache":false}'), +(16628, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:18.604+00', '{"cached":null,"ignore_cache":false}'), +(16629, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.232+00', '{"cached":null,"ignore_cache":false}'), +(16630, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.239+00', '{"cached":null,"ignore_cache":false}'), +(16631, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.334+00', '{"cached":null,"ignore_cache":false}'), +(16632, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.492+00', '{"cached":null,"ignore_cache":false}'), +(16633, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.498+00', '{"cached":null,"ignore_cache":false}'), +(16634, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.53+00', '{"cached":null,"ignore_cache":false}'), +(16635, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.541+00', '{"cached":null,"ignore_cache":false}'), +(16636, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.55+00', '{"cached":null,"ignore_cache":false}'), +(16637, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.562+00', '{"cached":null,"ignore_cache":false}'), +(16638, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.64+00', '{"cached":null,"ignore_cache":false}'), +(16639, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.654+00', '{"cached":null,"ignore_cache":false}'), +(16640, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.7+00', '{"cached":null,"ignore_cache":false}'), +(16641, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.771+00', '{"cached":null,"ignore_cache":false}'), +(16642, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.791+00', '{"cached":null,"ignore_cache":false}'), +(16643, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.806+00', '{"cached":null,"ignore_cache":false}'), +(16644, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:21.839+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16645, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.522+00', '{"cached":null,"ignore_cache":false}'), +(16646, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.556+00', '{"cached":null,"ignore_cache":false}'), +(16647, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.587+00', '{"cached":null,"ignore_cache":false}'), +(16648, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.606+00', '{"cached":null,"ignore_cache":false}'), +(16649, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.612+00', '{"cached":null,"ignore_cache":false}'), +(16650, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.642+00', '{"cached":null,"ignore_cache":false}'), +(16651, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.647+00', '{"cached":null,"ignore_cache":false}'), +(16652, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.661+00', '{"cached":null,"ignore_cache":false}'), +(16653, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:35.666+00', '{"cached":null,"ignore_cache":false}'), +(16654, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.421+00', '{"cached":null,"ignore_cache":false}'), +(16655, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.537+00', '{"cached":null,"ignore_cache":false}'), +(16656, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.583+00', '{"cached":null,"ignore_cache":false}'), +(16657, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.588+00', '{"cached":null,"ignore_cache":false}'), +(16658, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.594+00', '{"cached":null,"ignore_cache":false}'), +(16659, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.609+00', '{"cached":null,"ignore_cache":false}'), +(16660, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:48.61+00', '{"cached":null,"ignore_cache":false}'), +(16661, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.326+00', '{"cached":null,"ignore_cache":false}'), +(16662, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.347+00', '{"cached":null,"ignore_cache":false}'), +(16663, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.349+00', '{"cached":null,"ignore_cache":false}'), +(16664, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.66+00', '{"cached":null,"ignore_cache":false}'), +(16665, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.661+00', '{"cached":null,"ignore_cache":false}'), +(16666, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.695+00', '{"cached":null,"ignore_cache":false}'), +(16667, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.742+00', '{"cached":null,"ignore_cache":false}'), +(16668, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.748+00', '{"cached":null,"ignore_cache":false}'), +(16669, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.814+00', '{"cached":null,"ignore_cache":false}'), +(16670, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.857+00', '{"cached":null,"ignore_cache":false}'), +(16671, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.92+00', '{"cached":null,"ignore_cache":false}'), +(16672, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.926+00', '{"cached":null,"ignore_cache":false}'), +(16673, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.926+00', '{"cached":null,"ignore_cache":false}'), +(16674, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.952+00', '{"cached":null,"ignore_cache":false}'), +(16675, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.959+00', '{"cached":null,"ignore_cache":false}'), +(16676, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:11:51.987+00', '{"cached":null,"ignore_cache":false}'), +(16677, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.548+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16678, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.558+00', '{"cached":null,"ignore_cache":false}'), +(16679, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.62+00', '{"cached":null,"ignore_cache":false}'), +(16680, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.654+00', '{"cached":null,"ignore_cache":false}'), +(16681, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.711+00', '{"cached":null,"ignore_cache":false}'), +(16682, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.715+00', '{"cached":null,"ignore_cache":false}'), +(16683, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.734+00', '{"cached":null,"ignore_cache":false}'), +(16684, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.735+00', '{"cached":null,"ignore_cache":false}'), +(16685, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:05.753+00', '{"cached":null,"ignore_cache":false}'), +(16686, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.572+00', '{"cached":null,"ignore_cache":false}'), +(16687, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.584+00', '{"cached":null,"ignore_cache":false}'), +(16688, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.638+00', '{"cached":null,"ignore_cache":false}'), +(16689, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.64+00', '{"cached":null,"ignore_cache":false}'), +(16690, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.65+00', '{"cached":null,"ignore_cache":false}'), +(16691, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.685+00', '{"cached":null,"ignore_cache":false}'), +(16692, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:18.69+00', '{"cached":null,"ignore_cache":false}'), +(16693, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.698+00', '{"cached":null,"ignore_cache":false}'), +(16694, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.802+00', '{"cached":null,"ignore_cache":false}'), +(16695, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.813+00', '{"cached":null,"ignore_cache":false}'), +(16696, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.896+00', '{"cached":null,"ignore_cache":false}'), +(16697, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.933+00', '{"cached":null,"ignore_cache":false}'), +(16698, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:21.971+00', '{"cached":null,"ignore_cache":false}'), +(16699, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.052+00', '{"cached":null,"ignore_cache":false}'), +(16700, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.075+00', '{"cached":null,"ignore_cache":false}'), +(16701, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.09+00', '{"cached":null,"ignore_cache":false}'), +(16702, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.189+00', '{"cached":null,"ignore_cache":false}'), +(16703, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.219+00', '{"cached":null,"ignore_cache":false}'), +(16704, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.253+00', '{"cached":null,"ignore_cache":false}'), +(16705, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.255+00', '{"cached":null,"ignore_cache":false}'), +(16706, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.263+00', '{"cached":null,"ignore_cache":false}'), +(16707, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.272+00', '{"cached":null,"ignore_cache":false}'), +(16708, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:22.351+00', '{"cached":null,"ignore_cache":false}'), +(16709, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.549+00', '{"cached":null,"ignore_cache":false}'), +(16710, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.61+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16711, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.668+00', '{"cached":null,"ignore_cache":false}'), +(16712, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.67+00', '{"cached":null,"ignore_cache":false}'), +(16713, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.673+00', '{"cached":null,"ignore_cache":false}'), +(16714, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.681+00', '{"cached":null,"ignore_cache":false}'), +(16715, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.682+00', '{"cached":null,"ignore_cache":false}'), +(16716, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.682+00', '{"cached":null,"ignore_cache":false}'), +(16717, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:35.683+00', '{"cached":null,"ignore_cache":false}'), +(16718, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.471+00', '{"cached":null,"ignore_cache":false}'), +(16719, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.523+00', '{"cached":null,"ignore_cache":false}'), +(16720, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.535+00', '{"cached":null,"ignore_cache":false}'), +(16721, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.538+00', '{"cached":null,"ignore_cache":false}'), +(16722, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.56+00', '{"cached":null,"ignore_cache":false}'), +(16723, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.586+00', '{"cached":null,"ignore_cache":false}'), +(16724, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:48.596+00', '{"cached":null,"ignore_cache":false}'), +(16725, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.294+00', '{"cached":null,"ignore_cache":false}'), +(16726, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.336+00', '{"cached":null,"ignore_cache":false}'), +(16727, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.353+00', '{"cached":null,"ignore_cache":false}'), +(16728, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.454+00', '{"cached":null,"ignore_cache":false}'), +(16729, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.496+00', '{"cached":null,"ignore_cache":false}'), +(16730, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.553+00', '{"cached":null,"ignore_cache":false}'), +(16731, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.562+00', '{"cached":null,"ignore_cache":false}'), +(16732, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.628+00', '{"cached":null,"ignore_cache":false}'), +(16733, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.632+00', '{"cached":null,"ignore_cache":false}'), +(16734, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.659+00', '{"cached":null,"ignore_cache":false}'), +(16735, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.713+00', '{"cached":null,"ignore_cache":false}'), +(16736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.715+00', '{"cached":null,"ignore_cache":false}'), +(16737, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.742+00', '{"cached":null,"ignore_cache":false}'), +(16738, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.749+00', '{"cached":null,"ignore_cache":false}'), +(16739, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.75+00', '{"cached":null,"ignore_cache":false}'), +(16740, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:12:51.782+00', '{"cached":null,"ignore_cache":false}'), +(16741, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.766+00', '{"cached":null,"ignore_cache":false}'), +(16742, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.769+00', '{"cached":null,"ignore_cache":false}'), +(16743, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.815+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16744, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.877+00', '{"cached":null,"ignore_cache":false}'), +(16745, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.883+00', '{"cached":null,"ignore_cache":false}'), +(16746, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.925+00', '{"cached":null,"ignore_cache":false}'), +(16747, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.929+00', '{"cached":null,"ignore_cache":false}'), +(16748, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.938+00', '{"cached":null,"ignore_cache":false}'), +(16749, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:05.956+00', '{"cached":null,"ignore_cache":false}'), +(16750, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.786+00', '{"cached":null,"ignore_cache":false}'), +(16751, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.802+00', '{"cached":null,"ignore_cache":false}'), +(16752, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.84+00', '{"cached":null,"ignore_cache":false}'), +(16753, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.89+00', '{"cached":null,"ignore_cache":false}'), +(16754, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.924+00', '{"cached":null,"ignore_cache":false}'), +(16755, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.944+00', '{"cached":null,"ignore_cache":false}'), +(16756, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.956+00', '{"cached":null,"ignore_cache":false}'), +(16757, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.973+00', '{"cached":null,"ignore_cache":false}'), +(16758, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:21.989+00', '{"cached":null,"ignore_cache":false}'), +(16759, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.012+00', '{"cached":null,"ignore_cache":false}'), +(16760, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.013+00', '{"cached":null,"ignore_cache":false}'), +(16761, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.037+00', '{"cached":null,"ignore_cache":false}'), +(16762, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.04+00', '{"cached":null,"ignore_cache":false}'), +(16763, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.09+00', '{"cached":null,"ignore_cache":false}'), +(16764, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.102+00', '{"cached":null,"ignore_cache":false}'), +(16765, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:22.116+00', '{"cached":null,"ignore_cache":false}'), +(16766, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.416+00', '{"cached":null,"ignore_cache":false}'), +(16767, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.501+00', '{"cached":null,"ignore_cache":false}'), +(16768, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.502+00', '{"cached":null,"ignore_cache":false}'), +(16769, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.538+00', '{"cached":null,"ignore_cache":false}'), +(16770, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.57+00', '{"cached":null,"ignore_cache":false}'), +(16771, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.629+00', '{"cached":null,"ignore_cache":false}'), +(16772, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.663+00', '{"cached":null,"ignore_cache":false}'), +(16773, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.665+00', '{"cached":null,"ignore_cache":false}'), +(16774, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.704+00', '{"cached":null,"ignore_cache":false}'), +(16775, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.738+00', '{"cached":null,"ignore_cache":false}'), +(16776, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.753+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16777, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.761+00', '{"cached":null,"ignore_cache":false}'), +(16778, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.776+00', '{"cached":null,"ignore_cache":false}'), +(16779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.83+00', '{"cached":null,"ignore_cache":false}'), +(16780, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.84+00', '{"cached":null,"ignore_cache":false}'), +(16781, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:13:51.847+00', '{"cached":null,"ignore_cache":false}'), +(16782, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.182+00', '{"cached":null,"ignore_cache":false}'), +(16783, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.2+00', '{"cached":null,"ignore_cache":false}'), +(16784, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.201+00', '{"cached":null,"ignore_cache":false}'), +(16785, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:23.209+00', '{"cached":null,"ignore_cache":false}'), +(16786, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.086+00', '{"cached":null,"ignore_cache":false}'), +(16787, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.087+00', '{"cached":null,"ignore_cache":false}'), +(16788, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.104+00', '{"cached":null,"ignore_cache":false}'), +(16789, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.115+00', '{"cached":null,"ignore_cache":false}'), +(16790, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.144+00', '{"cached":null,"ignore_cache":false}'), +(16791, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:24.175+00', '{"cached":null,"ignore_cache":false}'), +(16792, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.234+00', '{"cached":null,"ignore_cache":false}'), +(16793, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.298+00', '{"cached":null,"ignore_cache":false}'), +(16794, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.317+00', '{"cached":null,"ignore_cache":false}'), +(16795, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.318+00', '{"cached":null,"ignore_cache":false}'), +(16796, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.329+00', '{"cached":null,"ignore_cache":false}'), +(16797, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:25.334+00', '{"cached":null,"ignore_cache":false}'), +(16798, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.163+00', '{"cached":null,"ignore_cache":false}'), +(16799, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.242+00', '{"cached":null,"ignore_cache":false}'), +(16800, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.333+00', '{"cached":null,"ignore_cache":false}'), +(16801, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.363+00', '{"cached":null,"ignore_cache":false}'), +(16802, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.428+00', '{"cached":null,"ignore_cache":false}'), +(16803, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.446+00', '{"cached":null,"ignore_cache":false}'), +(16804, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.512+00', '{"cached":null,"ignore_cache":false}'), +(16805, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.522+00', '{"cached":null,"ignore_cache":false}'), +(16806, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.619+00', '{"cached":null,"ignore_cache":false}'), +(16807, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.621+00', '{"cached":null,"ignore_cache":false}'), +(16808, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.645+00', '{"cached":null,"ignore_cache":false}'), +(16809, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.684+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16810, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.694+00', '{"cached":null,"ignore_cache":false}'), +(16811, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.707+00', '{"cached":null,"ignore_cache":false}'), +(16812, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.744+00', '{"cached":null,"ignore_cache":false}'), +(16813, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:14:51.793+00', '{"cached":null,"ignore_cache":false}'), +(16814, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.169+00', '{"cached":null,"ignore_cache":false}'), +(16815, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.226+00', '{"cached":null,"ignore_cache":false}'), +(16816, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.264+00', '{"cached":null,"ignore_cache":false}'), +(16817, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.286+00', '{"cached":null,"ignore_cache":false}'), +(16818, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.365+00', '{"cached":null,"ignore_cache":false}'), +(16819, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.365+00', '{"cached":null,"ignore_cache":false}'), +(16820, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.383+00', '{"cached":null,"ignore_cache":false}'), +(16821, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.408+00', '{"cached":null,"ignore_cache":false}'), +(16822, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.44+00', '{"cached":null,"ignore_cache":false}'), +(16823, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.497+00', '{"cached":null,"ignore_cache":false}'), +(16824, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.562+00', '{"cached":null,"ignore_cache":false}'), +(16825, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.606+00', '{"cached":null,"ignore_cache":false}'), +(16826, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.613+00', '{"cached":null,"ignore_cache":false}'), +(16827, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.614+00', '{"cached":null,"ignore_cache":false}'), +(16828, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.63+00', '{"cached":null,"ignore_cache":false}'), +(16829, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:21.631+00', '{"cached":null,"ignore_cache":false}'), +(16830, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.169+00', '{"cached":null,"ignore_cache":false}'), +(16831, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.293+00', '{"cached":null,"ignore_cache":false}'), +(16832, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.323+00', '{"cached":null,"ignore_cache":false}'), +(16833, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.357+00', '{"cached":null,"ignore_cache":false}'), +(16834, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.387+00', '{"cached":null,"ignore_cache":false}'), +(16835, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.492+00', '{"cached":null,"ignore_cache":false}'), +(16836, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.53+00', '{"cached":null,"ignore_cache":false}'), +(16837, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.546+00', '{"cached":null,"ignore_cache":false}'), +(16838, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.567+00', '{"cached":null,"ignore_cache":false}'), +(16839, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.583+00', '{"cached":null,"ignore_cache":false}'), +(16840, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.622+00', '{"cached":null,"ignore_cache":false}'), +(16841, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.643+00', '{"cached":null,"ignore_cache":false}'), +(16842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.67+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16843, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.671+00', '{"cached":null,"ignore_cache":false}'), +(16844, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.681+00', '{"cached":null,"ignore_cache":false}'), +(16845, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:15:51.686+00', '{"cached":null,"ignore_cache":false}'), +(16846, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.554+00', '{"cached":null,"ignore_cache":false}'), +(16847, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.555+00', '{"cached":null,"ignore_cache":false}'), +(16848, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.622+00', '{"cached":null,"ignore_cache":false}'), +(16849, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.655+00', '{"cached":null,"ignore_cache":false}'), +(16850, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.691+00', '{"cached":null,"ignore_cache":false}'), +(16851, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.695+00', '{"cached":null,"ignore_cache":false}'), +(16852, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.713+00', '{"cached":null,"ignore_cache":false}'), +(16853, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.83+00', '{"cached":null,"ignore_cache":false}'), +(16854, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.834+00', '{"cached":null,"ignore_cache":false}'), +(16855, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.85+00', '{"cached":null,"ignore_cache":false}'), +(16856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.871+00', '{"cached":null,"ignore_cache":false}'), +(16857, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.892+00', '{"cached":null,"ignore_cache":false}'), +(16858, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.907+00', '{"cached":null,"ignore_cache":false}'), +(16859, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.909+00', '{"cached":null,"ignore_cache":false}'), +(16860, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.94+00', '{"cached":null,"ignore_cache":false}'), +(16861, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:21.949+00', '{"cached":null,"ignore_cache":false}'), +(16862, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.612+00', '{"cached":null,"ignore_cache":false}'), +(16863, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.654+00', '{"cached":null,"ignore_cache":false}'), +(16864, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.667+00', '{"cached":null,"ignore_cache":false}'), +(16865, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.668+00', '{"cached":null,"ignore_cache":false}'), +(16866, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.684+00', '{"cached":null,"ignore_cache":false}'), +(16867, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.688+00', '{"cached":null,"ignore_cache":false}'), +(16868, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.696+00', '{"cached":null,"ignore_cache":false}'), +(16869, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.828+00', '{"cached":null,"ignore_cache":false}'), +(16870, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.852+00', '{"cached":null,"ignore_cache":false}'), +(16871, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.861+00', '{"cached":null,"ignore_cache":false}'), +(16872, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.91+00', '{"cached":null,"ignore_cache":false}'), +(16873, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:51.971+00', '{"cached":null,"ignore_cache":false}'), +(16874, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:52.028+00', '{"cached":null,"ignore_cache":false}'), +(16875, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:52.043+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16876, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:52.06+00', '{"cached":null,"ignore_cache":false}'), +(16877, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:16:52.114+00', '{"cached":null,"ignore_cache":false}'), +(16878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.372+00', '{"cached":null,"ignore_cache":false}'), +(16879, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.374+00', '{"cached":null,"ignore_cache":false}'), +(16880, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.398+00', '{"cached":null,"ignore_cache":false}'), +(16881, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.468+00', '{"cached":null,"ignore_cache":false}'), +(16882, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.481+00', '{"cached":null,"ignore_cache":false}'), +(16883, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.532+00', '{"cached":null,"ignore_cache":false}'), +(16884, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.567+00', '{"cached":null,"ignore_cache":false}'), +(16885, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.578+00', '{"cached":null,"ignore_cache":false}'), +(16886, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.585+00', '{"cached":null,"ignore_cache":false}'), +(16887, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.602+00', '{"cached":null,"ignore_cache":false}'), +(16888, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.607+00', '{"cached":null,"ignore_cache":false}'), +(16889, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.637+00', '{"cached":null,"ignore_cache":false}'), +(16890, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.645+00', '{"cached":null,"ignore_cache":false}'), +(16891, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.652+00', '{"cached":null,"ignore_cache":false}'), +(16892, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.666+00', '{"cached":null,"ignore_cache":false}'), +(16893, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:21.668+00', '{"cached":null,"ignore_cache":false}'), +(16894, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.407+00', '{"cached":null,"ignore_cache":false}'), +(16895, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.451+00', '{"cached":null,"ignore_cache":false}'), +(16896, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.461+00', '{"cached":null,"ignore_cache":false}'), +(16897, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.53+00', '{"cached":null,"ignore_cache":false}'), +(16898, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.532+00', '{"cached":null,"ignore_cache":false}'), +(16899, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.566+00', '{"cached":null,"ignore_cache":false}'), +(16900, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.578+00', '{"cached":null,"ignore_cache":false}'), +(16901, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.578+00', '{"cached":null,"ignore_cache":false}'), +(16902, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.582+00', '{"cached":null,"ignore_cache":false}'), +(16903, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.591+00', '{"cached":null,"ignore_cache":false}'), +(16904, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.61+00', '{"cached":null,"ignore_cache":false}'), +(16905, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.634+00', '{"cached":null,"ignore_cache":false}'), +(16906, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.643+00', '{"cached":null,"ignore_cache":false}'), +(16907, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.646+00', '{"cached":null,"ignore_cache":false}'), +(16908, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.66+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16909, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:17:51.66+00', '{"cached":null,"ignore_cache":false}'), +(16910, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.347+00', '{"cached":null,"ignore_cache":false}'), +(16911, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.529+00', '{"cached":null,"ignore_cache":false}'), +(16912, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.536+00', '{"cached":null,"ignore_cache":false}'), +(16913, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.537+00', '{"cached":null,"ignore_cache":false}'), +(16914, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.623+00', '{"cached":null,"ignore_cache":false}'), +(16915, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.658+00', '{"cached":null,"ignore_cache":false}'), +(16916, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.71+00', '{"cached":null,"ignore_cache":false}'), +(16917, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.714+00', '{"cached":null,"ignore_cache":false}'), +(16918, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.74+00', '{"cached":null,"ignore_cache":false}'), +(16919, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.774+00', '{"cached":null,"ignore_cache":false}'), +(16920, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.822+00', '{"cached":null,"ignore_cache":false}'), +(16921, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.851+00', '{"cached":null,"ignore_cache":false}'), +(16922, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.87+00', '{"cached":null,"ignore_cache":false}'), +(16923, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.886+00', '{"cached":null,"ignore_cache":false}'), +(16924, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.895+00', '{"cached":null,"ignore_cache":false}'), +(16925, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:21.918+00', '{"cached":null,"ignore_cache":false}'), +(16926, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.358+00', '{"cached":null,"ignore_cache":false}'), +(16927, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.513+00', '{"cached":null,"ignore_cache":false}'), +(16928, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.712+00', '{"cached":null,"ignore_cache":false}'), +(16929, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.774+00', '{"cached":null,"ignore_cache":false}'), +(16930, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.795+00', '{"cached":null,"ignore_cache":false}'), +(16931, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.833+00', '{"cached":null,"ignore_cache":false}'), +(16932, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.844+00', '{"cached":null,"ignore_cache":false}'), +(16933, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.847+00', '{"cached":null,"ignore_cache":false}'), +(16934, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.86+00', '{"cached":null,"ignore_cache":false}'), +(16935, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.864+00', '{"cached":null,"ignore_cache":false}'), +(16936, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.865+00', '{"cached":null,"ignore_cache":false}'), +(16937, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.935+00', '{"cached":null,"ignore_cache":false}'), +(16938, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.936+00', '{"cached":null,"ignore_cache":false}'), +(16939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.956+00', '{"cached":null,"ignore_cache":false}'), +(16940, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.964+00', '{"cached":null,"ignore_cache":false}'), +(16941, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:18:51.989+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16942, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.478+00', '{"cached":null,"ignore_cache":false}'), +(16943, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.511+00', '{"cached":null,"ignore_cache":false}'), +(16944, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.67+00', '{"cached":null,"ignore_cache":false}'), +(16945, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.749+00', '{"cached":null,"ignore_cache":false}'), +(16946, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.783+00', '{"cached":null,"ignore_cache":false}'), +(16947, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.793+00', '{"cached":null,"ignore_cache":false}'), +(16948, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.821+00', '{"cached":null,"ignore_cache":false}'), +(16949, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.851+00', '{"cached":null,"ignore_cache":false}'), +(16950, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.862+00', '{"cached":null,"ignore_cache":false}'), +(16951, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.873+00', '{"cached":null,"ignore_cache":false}'), +(16952, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.894+00', '{"cached":null,"ignore_cache":false}'), +(16953, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.914+00', '{"cached":null,"ignore_cache":false}'), +(16954, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.947+00', '{"cached":null,"ignore_cache":false}'), +(16955, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.99+00', '{"cached":null,"ignore_cache":false}'), +(16956, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.996+00', '{"cached":null,"ignore_cache":false}'), +(16957, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:21.997+00', '{"cached":null,"ignore_cache":false}'), +(16958, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.358+00', '{"cached":null,"ignore_cache":false}'), +(16959, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.435+00', '{"cached":null,"ignore_cache":false}'), +(16960, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.444+00', '{"cached":null,"ignore_cache":false}'), +(16961, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.475+00', '{"cached":null,"ignore_cache":false}'), +(16962, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.487+00', '{"cached":null,"ignore_cache":false}'), +(16963, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.489+00', '{"cached":null,"ignore_cache":false}'), +(16964, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.52+00', '{"cached":null,"ignore_cache":false}'), +(16965, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.532+00', '{"cached":null,"ignore_cache":false}'), +(16966, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.567+00', '{"cached":null,"ignore_cache":false}'), +(16967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.582+00', '{"cached":null,"ignore_cache":false}'), +(16968, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.587+00', '{"cached":null,"ignore_cache":false}'), +(16969, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.588+00', '{"cached":null,"ignore_cache":false}'), +(16970, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.6+00', '{"cached":null,"ignore_cache":false}'), +(16971, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.63+00', '{"cached":null,"ignore_cache":false}'), +(16972, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.659+00', '{"cached":null,"ignore_cache":false}'), +(16973, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:19:51.685+00', '{"cached":null,"ignore_cache":false}'), +(16974, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.265+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(16975, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.353+00', '{"cached":null,"ignore_cache":false}'), +(16976, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.389+00', '{"cached":null,"ignore_cache":false}'), +(16977, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.464+00', '{"cached":null,"ignore_cache":false}'), +(16978, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.467+00', '{"cached":null,"ignore_cache":false}'), +(16979, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.482+00', '{"cached":null,"ignore_cache":false}'), +(16980, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.483+00', '{"cached":null,"ignore_cache":false}'), +(16981, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.491+00', '{"cached":null,"ignore_cache":false}'), +(16982, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.566+00', '{"cached":null,"ignore_cache":false}'), +(16983, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.568+00', '{"cached":null,"ignore_cache":false}'), +(16984, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.572+00', '{"cached":null,"ignore_cache":false}'), +(16985, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.575+00', '{"cached":null,"ignore_cache":false}'), +(16986, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.587+00', '{"cached":null,"ignore_cache":false}'), +(16987, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.641+00', '{"cached":null,"ignore_cache":false}'), +(16988, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.641+00', '{"cached":null,"ignore_cache":false}'), +(16989, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:21.726+00', '{"cached":null,"ignore_cache":false}'), +(16990, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.062+00', '{"cached":null,"ignore_cache":false}'), +(16991, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.272+00', '{"cached":null,"ignore_cache":false}'), +(16992, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.274+00', '{"cached":null,"ignore_cache":false}'), +(16993, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.318+00', '{"cached":null,"ignore_cache":false}'), +(16994, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.348+00', '{"cached":null,"ignore_cache":false}'), +(16995, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.362+00', '{"cached":null,"ignore_cache":false}'), +(16996, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.371+00', '{"cached":null,"ignore_cache":false}'), +(16997, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.421+00', '{"cached":null,"ignore_cache":false}'), +(16998, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.429+00', '{"cached":null,"ignore_cache":false}'), +(16999, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.451+00', '{"cached":null,"ignore_cache":false}'), +(17000, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.485+00', '{"cached":null,"ignore_cache":false}'), +(17001, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.489+00', '{"cached":null,"ignore_cache":false}'), +(17002, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.49+00', '{"cached":null,"ignore_cache":false}'), +(17003, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.492+00', '{"cached":null,"ignore_cache":false}'), +(17004, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.509+00', '{"cached":null,"ignore_cache":false}'), +(17005, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:20:51.523+00', '{"cached":null,"ignore_cache":false}'), +(17006, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.061+00', '{"cached":null,"ignore_cache":false}'), +(17007, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.216+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17008, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.218+00', '{"cached":null,"ignore_cache":false}'), +(17009, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.236+00', '{"cached":null,"ignore_cache":false}'), +(17010, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.267+00', '{"cached":null,"ignore_cache":false}'), +(17011, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.288+00', '{"cached":null,"ignore_cache":false}'), +(17012, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.319+00', '{"cached":null,"ignore_cache":false}'), +(17013, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.327+00', '{"cached":null,"ignore_cache":false}'), +(17014, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:27.349+00', '{"cached":null,"ignore_cache":false}'), +(17015, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.906+00', '{"cached":null,"ignore_cache":false}'), +(17016, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.928+00', '{"cached":null,"ignore_cache":false}'), +(17017, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.943+00', '{"cached":null,"ignore_cache":false}'), +(17018, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:28.976+00', '{"cached":null,"ignore_cache":false}'), +(17019, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.015+00', '{"cached":null,"ignore_cache":false}'), +(17020, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.029+00', '{"cached":null,"ignore_cache":false}'), +(17021, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.03+00', '{"cached":null,"ignore_cache":false}'), +(17022, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.764+00', '{"cached":null,"ignore_cache":false}'), +(17023, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.807+00', '{"cached":null,"ignore_cache":false}'), +(17024, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.936+00', '{"cached":null,"ignore_cache":false}'), +(17025, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.954+00', '{"cached":null,"ignore_cache":false}'), +(17026, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.963+00', '{"cached":null,"ignore_cache":false}'), +(17027, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:29.972+00', '{"cached":null,"ignore_cache":false}'), +(17028, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:30.026+00', '{"cached":null,"ignore_cache":false}'), +(17029, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:30.03+00', '{"cached":null,"ignore_cache":false}'), +(17030, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:30.05+00', '{"cached":null,"ignore_cache":false}'), +(17031, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.315+00', '{"cached":null,"ignore_cache":false}'), +(17032, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.543+00', '{"cached":null,"ignore_cache":false}'), +(17033, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.589+00', '{"cached":null,"ignore_cache":false}'), +(17034, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.59+00', '{"cached":null,"ignore_cache":false}'), +(17035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.612+00', '{"cached":null,"ignore_cache":false}'), +(17036, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.681+00', '{"cached":null,"ignore_cache":false}'), +(17037, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.699+00', '{"cached":null,"ignore_cache":false}'), +(17038, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.759+00', '{"cached":null,"ignore_cache":false}'), +(17039, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.779+00', '{"cached":null,"ignore_cache":false}'), +(17040, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.808+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17041, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.847+00', '{"cached":null,"ignore_cache":false}'), +(17042, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.973+00', '{"cached":null,"ignore_cache":false}'), +(17043, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.99+00', '{"cached":null,"ignore_cache":false}'), +(17044, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:25:59.993+00', '{"cached":null,"ignore_cache":false}'), +(17045, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:00.06+00', '{"cached":null,"ignore_cache":false}'), +(17046, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:00.091+00', '{"cached":null,"ignore_cache":false}'), +(17047, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.034+00', '{"cached":null,"ignore_cache":false}'), +(17048, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.186+00', '{"cached":null,"ignore_cache":false}'), +(17049, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.227+00', '{"cached":null,"ignore_cache":false}'), +(17050, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.277+00', '{"cached":null,"ignore_cache":false}'), +(17051, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.287+00', '{"cached":null,"ignore_cache":false}'), +(17052, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.328+00', '{"cached":null,"ignore_cache":false}'), +(17053, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.363+00', '{"cached":null,"ignore_cache":false}'), +(17054, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.368+00', '{"cached":null,"ignore_cache":false}'), +(17055, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.41+00', '{"cached":null,"ignore_cache":false}'), +(17056, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.435+00', '{"cached":null,"ignore_cache":false}'), +(17057, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.436+00', '{"cached":null,"ignore_cache":false}'), +(17058, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.44+00', '{"cached":null,"ignore_cache":false}'), +(17059, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.445+00', '{"cached":null,"ignore_cache":false}'), +(17060, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.463+00', '{"cached":null,"ignore_cache":false}'), +(17061, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.468+00', '{"cached":null,"ignore_cache":false}'), +(17062, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:29.493+00', '{"cached":null,"ignore_cache":false}'), +(17063, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:58.999+00', '{"cached":null,"ignore_cache":false}'), +(17064, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.023+00', '{"cached":null,"ignore_cache":false}'), +(17065, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.103+00', '{"cached":null,"ignore_cache":false}'), +(17066, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.149+00', '{"cached":null,"ignore_cache":false}'), +(17067, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.159+00', '{"cached":null,"ignore_cache":false}'), +(17068, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.174+00', '{"cached":null,"ignore_cache":false}'), +(17069, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.209+00', '{"cached":null,"ignore_cache":false}'), +(17070, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.211+00', '{"cached":null,"ignore_cache":false}'), +(17071, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.216+00', '{"cached":null,"ignore_cache":false}'), +(17072, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.229+00', '{"cached":null,"ignore_cache":false}'), +(17073, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.243+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17074, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.255+00', '{"cached":null,"ignore_cache":false}'), +(17075, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.276+00', '{"cached":null,"ignore_cache":false}'), +(17076, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.301+00', '{"cached":null,"ignore_cache":false}'), +(17077, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.301+00', '{"cached":null,"ignore_cache":false}'), +(17078, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:26:59.306+00', '{"cached":null,"ignore_cache":false}'), +(17079, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.166+00', '{"cached":null,"ignore_cache":false}'), +(17080, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.182+00', '{"cached":null,"ignore_cache":false}'), +(17081, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.184+00', '{"cached":null,"ignore_cache":false}'), +(17082, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.201+00', '{"cached":null,"ignore_cache":false}'), +(17083, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.204+00', '{"cached":null,"ignore_cache":false}'), +(17084, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.208+00', '{"cached":null,"ignore_cache":false}'), +(17085, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:06.221+00', '{"cached":null,"ignore_cache":false}'), +(17086, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:28.897+00', '{"cached":null,"ignore_cache":false}'), +(17087, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.17+00', '{"cached":null,"ignore_cache":false}'), +(17088, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.183+00', '{"cached":null,"ignore_cache":false}'), +(17089, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.194+00', '{"cached":null,"ignore_cache":false}'), +(17090, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.204+00', '{"cached":null,"ignore_cache":false}'), +(17091, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.223+00', '{"cached":null,"ignore_cache":false}'), +(17092, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.232+00', '{"cached":null,"ignore_cache":false}'), +(17093, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.234+00', '{"cached":null,"ignore_cache":false}'), +(17094, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.238+00', '{"cached":null,"ignore_cache":false}'), +(17095, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.246+00', '{"cached":null,"ignore_cache":false}'), +(17096, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.26+00', '{"cached":null,"ignore_cache":false}'), +(17097, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.288+00', '{"cached":null,"ignore_cache":false}'), +(17098, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.315+00', '{"cached":null,"ignore_cache":false}'), +(17099, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.322+00', '{"cached":null,"ignore_cache":false}'), +(17100, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.328+00', '{"cached":null,"ignore_cache":false}'), +(17101, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:29.376+00', '{"cached":null,"ignore_cache":false}'), +(17102, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:58.975+00', '{"cached":null,"ignore_cache":false}'), +(17103, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.001+00', '{"cached":null,"ignore_cache":false}'), +(17104, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.13+00', '{"cached":null,"ignore_cache":false}'), +(17105, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.217+00', '{"cached":null,"ignore_cache":false}'), +(17106, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.233+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17107, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.272+00', '{"cached":null,"ignore_cache":false}'), +(17108, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.274+00', '{"cached":null,"ignore_cache":false}'), +(17109, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.288+00', '{"cached":null,"ignore_cache":false}'), +(17110, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.294+00', '{"cached":null,"ignore_cache":false}'), +(17111, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.304+00', '{"cached":null,"ignore_cache":false}'), +(17112, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.322+00', '{"cached":null,"ignore_cache":false}'), +(17113, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.323+00', '{"cached":null,"ignore_cache":false}'), +(17114, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.325+00', '{"cached":null,"ignore_cache":false}'), +(17115, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.337+00', '{"cached":null,"ignore_cache":false}'), +(17116, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.347+00', '{"cached":null,"ignore_cache":false}'), +(17117, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:27:59.354+00', '{"cached":null,"ignore_cache":false}'), +(17118, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.232+00', '{"cached":null,"ignore_cache":false}'), +(17119, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.272+00', '{"cached":null,"ignore_cache":false}'), +(17120, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.312+00', '{"cached":null,"ignore_cache":false}'), +(17121, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.334+00', '{"cached":null,"ignore_cache":false}'), +(17122, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.342+00', '{"cached":null,"ignore_cache":false}'), +(17123, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.343+00', '{"cached":null,"ignore_cache":false}'), +(17124, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.357+00', '{"cached":null,"ignore_cache":false}'), +(17125, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.816+00', '{"cached":null,"ignore_cache":false}'), +(17126, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.823+00', '{"cached":null,"ignore_cache":false}'), +(17127, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.831+00', '{"cached":null,"ignore_cache":false}'), +(17128, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.85+00', '{"cached":null,"ignore_cache":false}'), +(17129, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.86+00', '{"cached":null,"ignore_cache":false}'), +(17130, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.872+00', '{"cached":null,"ignore_cache":false}'), +(17131, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:16.874+00', '{"cached":null,"ignore_cache":false}'), +(17132, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.721+00', '{"cached":null,"ignore_cache":false}'), +(17133, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.735+00', '{"cached":null,"ignore_cache":false}'), +(17134, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.775+00', '{"cached":null,"ignore_cache":false}'), +(17135, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.804+00', '{"cached":null,"ignore_cache":false}'), +(17136, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.805+00', '{"cached":null,"ignore_cache":false}'), +(17137, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.823+00', '{"cached":null,"ignore_cache":false}'), +(17138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.83+00', '{"cached":null,"ignore_cache":false}'), +(17139, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:17.869+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17140, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.115+00', '{"cached":null,"ignore_cache":false}'), +(17141, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.186+00', '{"cached":null,"ignore_cache":false}'), +(17142, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.228+00', '{"cached":null,"ignore_cache":false}'), +(17143, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.455+00', '{"cached":null,"ignore_cache":false}'), +(17144, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.53+00', '{"cached":null,"ignore_cache":false}'), +(17145, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.543+00', '{"cached":null,"ignore_cache":false}'), +(17146, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.588+00', '{"cached":null,"ignore_cache":false}'), +(17147, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.656+00', '{"cached":null,"ignore_cache":false}'), +(17148, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.693+00', '{"cached":null,"ignore_cache":false}'), +(17149, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:18.768+00', '{"cached":null,"ignore_cache":false}'), +(17150, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.476+00', '{"cached":null,"ignore_cache":false}'), +(17151, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.605+00', '{"cached":null,"ignore_cache":false}'), +(17152, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.696+00', '{"cached":null,"ignore_cache":false}'), +(17153, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.755+00', '{"cached":null,"ignore_cache":false}'), +(17154, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.859+00', '{"cached":null,"ignore_cache":false}'), +(17155, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.926+00', '{"cached":null,"ignore_cache":false}'), +(17156, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:29.983+00', '{"cached":null,"ignore_cache":false}'), +(17157, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.085+00', '{"cached":null,"ignore_cache":false}'), +(17158, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.107+00', '{"cached":null,"ignore_cache":false}'), +(17159, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.115+00', '{"cached":null,"ignore_cache":false}'), +(17160, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.133+00', '{"cached":null,"ignore_cache":false}'), +(17161, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.157+00', '{"cached":null,"ignore_cache":false}'), +(17162, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.16+00', '{"cached":null,"ignore_cache":false}'), +(17163, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.177+00', '{"cached":null,"ignore_cache":false}'), +(17164, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.192+00', '{"cached":null,"ignore_cache":false}'), +(17165, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:30.205+00', '{"cached":null,"ignore_cache":false}'), +(17166, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.399+00', '{"cached":null,"ignore_cache":false}'), +(17167, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.483+00', '{"cached":null,"ignore_cache":false}'), +(17168, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.525+00', '{"cached":null,"ignore_cache":false}'), +(17169, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.566+00', '{"cached":null,"ignore_cache":false}'), +(17170, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.59+00', '{"cached":null,"ignore_cache":false}'), +(17171, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.602+00', '{"cached":null,"ignore_cache":false}'), +(17172, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.618+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17173, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.626+00', '{"cached":null,"ignore_cache":false}'), +(17174, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.637+00', '{"cached":null,"ignore_cache":false}'), +(17175, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.648+00', '{"cached":null,"ignore_cache":false}'), +(17176, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.652+00', '{"cached":null,"ignore_cache":false}'), +(17177, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.666+00', '{"cached":null,"ignore_cache":false}'), +(17178, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.676+00', '{"cached":null,"ignore_cache":false}'), +(17179, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.679+00', '{"cached":null,"ignore_cache":false}'), +(17180, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.68+00', '{"cached":null,"ignore_cache":false}'), +(17181, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:28:59.688+00', '{"cached":null,"ignore_cache":false}'), +(17182, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.374+00', '{"cached":null,"ignore_cache":false}'), +(17183, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.598+00', '{"cached":null,"ignore_cache":false}'), +(17184, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.646+00', '{"cached":null,"ignore_cache":false}'), +(17185, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.696+00', '{"cached":null,"ignore_cache":false}'), +(17186, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.723+00', '{"cached":null,"ignore_cache":false}'), +(17187, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.752+00', '{"cached":null,"ignore_cache":false}'), +(17188, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.833+00', '{"cached":null,"ignore_cache":false}'), +(17189, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.854+00', '{"cached":null,"ignore_cache":false}'), +(17190, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:02.863+00', '{"cached":null,"ignore_cache":false}'), +(17191, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.704+00', '{"cached":null,"ignore_cache":false}'), +(17192, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.709+00', '{"cached":null,"ignore_cache":false}'), +(17193, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.739+00', '{"cached":null,"ignore_cache":false}'), +(17194, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.81+00', '{"cached":null,"ignore_cache":false}'), +(17195, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.827+00', '{"cached":null,"ignore_cache":false}'), +(17196, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.852+00', '{"cached":null,"ignore_cache":false}'), +(17197, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:13.854+00', '{"cached":null,"ignore_cache":false}'), +(17198, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.39+00', '{"cached":null,"ignore_cache":false}'), +(17199, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.448+00', '{"cached":null,"ignore_cache":false}'), +(17200, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.505+00', '{"cached":null,"ignore_cache":false}'), +(17201, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.506+00', '{"cached":null,"ignore_cache":false}'), +(17202, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.53+00', '{"cached":null,"ignore_cache":false}'), +(17203, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.545+00', '{"cached":null,"ignore_cache":false}'), +(17204, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.626+00', '{"cached":null,"ignore_cache":false}'), +(17205, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.634+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17206, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.647+00', '{"cached":null,"ignore_cache":false}'), +(17207, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.647+00', '{"cached":null,"ignore_cache":false}'), +(17208, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.704+00', '{"cached":null,"ignore_cache":false}'), +(17209, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.708+00', '{"cached":null,"ignore_cache":false}'), +(17210, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.72+00', '{"cached":null,"ignore_cache":false}'), +(17211, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.721+00', '{"cached":null,"ignore_cache":false}'), +(17212, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.728+00', '{"cached":null,"ignore_cache":false}'), +(17213, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:29.746+00', '{"cached":null,"ignore_cache":false}'), +(17214, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.219+00', '{"cached":null,"ignore_cache":false}'), +(17215, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.234+00', '{"cached":null,"ignore_cache":false}'), +(17216, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.238+00', '{"cached":null,"ignore_cache":false}'), +(17217, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.281+00', '{"cached":null,"ignore_cache":false}'), +(17218, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.4+00', '{"cached":null,"ignore_cache":false}'), +(17219, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.416+00', '{"cached":null,"ignore_cache":false}'), +(17220, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.434+00', '{"cached":null,"ignore_cache":false}'), +(17221, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.449+00', '{"cached":null,"ignore_cache":false}'), +(17222, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:45.45+00', '{"cached":null,"ignore_cache":false}'), +(17223, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.831+00', '{"cached":null,"ignore_cache":false}'), +(17224, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.85+00', '{"cached":null,"ignore_cache":false}'), +(17225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.913+00', '{"cached":null,"ignore_cache":false}'), +(17226, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.938+00', '{"cached":null,"ignore_cache":false}'), +(17227, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.939+00', '{"cached":null,"ignore_cache":false}'), +(17228, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.954+00', '{"cached":null,"ignore_cache":false}'), +(17229, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:55.975+00', '{"cached":null,"ignore_cache":false}'), +(17230, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.439+00', '{"cached":null,"ignore_cache":false}'), +(17231, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.439+00', '{"cached":null,"ignore_cache":false}'), +(17232, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.563+00', '{"cached":null,"ignore_cache":false}'), +(17233, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.663+00', '{"cached":null,"ignore_cache":false}'), +(17234, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.679+00', '{"cached":null,"ignore_cache":false}'), +(17235, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.688+00', '{"cached":null,"ignore_cache":false}'), +(17236, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.699+00', '{"cached":null,"ignore_cache":false}'), +(17237, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.72+00', '{"cached":null,"ignore_cache":false}'), +(17238, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.741+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17239, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.746+00', '{"cached":null,"ignore_cache":false}'), +(17240, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.79+00', '{"cached":null,"ignore_cache":false}'), +(17241, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.81+00', '{"cached":null,"ignore_cache":false}'), +(17242, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.844+00', '{"cached":null,"ignore_cache":false}'), +(17243, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.853+00', '{"cached":null,"ignore_cache":false}'), +(17244, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.854+00', '{"cached":null,"ignore_cache":false}'), +(17245, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:29:59.901+00', '{"cached":null,"ignore_cache":false}'), +(17246, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.443+00', '{"cached":null,"ignore_cache":false}'), +(17247, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.472+00', '{"cached":null,"ignore_cache":false}'), +(17248, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:26.643+00', '{"cached":null,"ignore_cache":false}'), +(17249, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:27.733+00', '{"cached":null,"ignore_cache":false}'), +(17250, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:27.852+00', '{"cached":null,"ignore_cache":false}'), +(17251, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:27.852+00', '{"cached":null,"ignore_cache":false}'), +(17252, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:27.853+00', '{"cached":null,"ignore_cache":false}'), +(17253, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:27.854+00', '{"cached":null,"ignore_cache":false}'), +(17254, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:27.902+00', '{"cached":null,"ignore_cache":false}'), +(17255, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.337+00', '{"cached":null,"ignore_cache":false}'), +(17256, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.394+00', '{"cached":null,"ignore_cache":false}'), +(17257, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.42+00', '{"cached":null,"ignore_cache":false}'), +(17258, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.429+00', '{"cached":null,"ignore_cache":false}'), +(17259, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.491+00', '{"cached":null,"ignore_cache":false}'), +(17260, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.53+00', '{"cached":null,"ignore_cache":false}'), +(17261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.533+00', '{"cached":null,"ignore_cache":false}'), +(17262, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.552+00', '{"cached":null,"ignore_cache":false}'), +(17263, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.591+00', '{"cached":null,"ignore_cache":false}'), +(17264, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.591+00', '{"cached":null,"ignore_cache":false}'), +(17265, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.61+00', '{"cached":null,"ignore_cache":false}'), +(17266, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.632+00', '{"cached":null,"ignore_cache":false}'), +(17267, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.639+00', '{"cached":null,"ignore_cache":false}'), +(17268, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.655+00', '{"cached":null,"ignore_cache":false}'), +(17269, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.666+00', '{"cached":null,"ignore_cache":false}'), +(17270, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:29.695+00', '{"cached":null,"ignore_cache":false}'), +(17271, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.528+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17272, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.6+00', '{"cached":null,"ignore_cache":false}'), +(17273, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.631+00', '{"cached":null,"ignore_cache":false}'), +(17274, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.633+00', '{"cached":null,"ignore_cache":false}'), +(17275, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.674+00', '{"cached":null,"ignore_cache":false}'), +(17276, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.68+00', '{"cached":null,"ignore_cache":false}'), +(17277, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:37.717+00', '{"cached":null,"ignore_cache":false}'), +(17278, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.092+00', '{"cached":null,"ignore_cache":false}'), +(17279, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.113+00', '{"cached":null,"ignore_cache":false}'), +(17280, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.151+00', '{"cached":null,"ignore_cache":false}'), +(17281, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.152+00', '{"cached":null,"ignore_cache":false}'), +(17282, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.175+00', '{"cached":null,"ignore_cache":false}'), +(17283, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.176+00', '{"cached":null,"ignore_cache":false}'), +(17284, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.195+00', '{"cached":null,"ignore_cache":false}'), +(17285, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.198+00', '{"cached":null,"ignore_cache":false}'), +(17286, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.241+00', '{"cached":null,"ignore_cache":false}'), +(17287, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.246+00', '{"cached":null,"ignore_cache":false}'), +(17288, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.256+00', '{"cached":null,"ignore_cache":false}'), +(17289, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.272+00', '{"cached":null,"ignore_cache":false}'), +(17290, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.273+00', '{"cached":null,"ignore_cache":false}'), +(17291, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.288+00', '{"cached":null,"ignore_cache":false}'), +(17292, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.29+00', '{"cached":null,"ignore_cache":false}'), +(17293, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:30:59.299+00', '{"cached":null,"ignore_cache":false}'), +(17294, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.479+00', '{"cached":null,"ignore_cache":false}'), +(17295, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.499+00', '{"cached":null,"ignore_cache":false}'), +(17296, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.519+00', '{"cached":null,"ignore_cache":false}'), +(17297, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.525+00', '{"cached":null,"ignore_cache":false}'), +(17298, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.529+00', '{"cached":null,"ignore_cache":false}'), +(17299, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.547+00', '{"cached":null,"ignore_cache":false}'), +(17300, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.559+00', '{"cached":null,"ignore_cache":false}'), +(17301, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.568+00', '{"cached":null,"ignore_cache":false}'), +(17302, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:07.577+00', '{"cached":null,"ignore_cache":false}'), +(17303, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.355+00', '{"cached":null,"ignore_cache":false}'), +(17304, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.38+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17305, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.472+00', '{"cached":null,"ignore_cache":false}'), +(17306, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.505+00', '{"cached":null,"ignore_cache":false}'), +(17307, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.519+00', '{"cached":null,"ignore_cache":false}'), +(17308, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.523+00', '{"cached":null,"ignore_cache":false}'), +(17309, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:18.541+00', '{"cached":null,"ignore_cache":false}'), +(17310, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.163+00', '{"cached":null,"ignore_cache":false}'), +(17311, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.324+00', '{"cached":null,"ignore_cache":false}'), +(17312, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.341+00', '{"cached":null,"ignore_cache":false}'), +(17313, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.349+00', '{"cached":null,"ignore_cache":false}'), +(17314, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.373+00', '{"cached":null,"ignore_cache":false}'), +(17315, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.38+00', '{"cached":null,"ignore_cache":false}'), +(17316, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.393+00', '{"cached":null,"ignore_cache":false}'), +(17317, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.415+00', '{"cached":null,"ignore_cache":false}'), +(17318, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.431+00', '{"cached":null,"ignore_cache":false}'), +(17319, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.447+00', '{"cached":null,"ignore_cache":false}'), +(17320, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.469+00', '{"cached":null,"ignore_cache":false}'), +(17321, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.483+00', '{"cached":null,"ignore_cache":false}'), +(17322, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.5+00', '{"cached":null,"ignore_cache":false}'), +(17323, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.513+00', '{"cached":null,"ignore_cache":false}'), +(17324, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.514+00', '{"cached":null,"ignore_cache":false}'), +(17325, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:29.545+00', '{"cached":null,"ignore_cache":false}'), +(17326, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.805+00', '{"cached":null,"ignore_cache":false}'), +(17327, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.838+00', '{"cached":null,"ignore_cache":false}'), +(17328, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.843+00', '{"cached":null,"ignore_cache":false}'), +(17329, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.853+00', '{"cached":null,"ignore_cache":false}'), +(17330, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.965+00', '{"cached":null,"ignore_cache":false}'), +(17331, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:31:59.968+00', '{"cached":null,"ignore_cache":false}'), +(17332, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.069+00', '{"cached":null,"ignore_cache":false}'), +(17333, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.08+00', '{"cached":null,"ignore_cache":false}'), +(17334, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.093+00', '{"cached":null,"ignore_cache":false}'), +(17335, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.115+00', '{"cached":null,"ignore_cache":false}'), +(17336, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.15+00', '{"cached":null,"ignore_cache":false}'), +(17337, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.17+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17338, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.249+00', '{"cached":null,"ignore_cache":false}'), +(17339, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.249+00', '{"cached":null,"ignore_cache":false}'), +(17340, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.279+00', '{"cached":null,"ignore_cache":false}'), +(17341, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:00.294+00', '{"cached":null,"ignore_cache":false}'), +(17342, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.562+00', '{"cached":null,"ignore_cache":false}'), +(17343, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.654+00', '{"cached":null,"ignore_cache":false}'), +(17344, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.659+00', '{"cached":null,"ignore_cache":false}'), +(17345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.677+00', '{"cached":null,"ignore_cache":false}'), +(17346, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.685+00', '{"cached":null,"ignore_cache":false}'), +(17347, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.723+00', '{"cached":null,"ignore_cache":false}'), +(17348, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.744+00', '{"cached":null,"ignore_cache":false}'), +(17349, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.831+00', '{"cached":null,"ignore_cache":false}'), +(17350, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.849+00', '{"cached":null,"ignore_cache":false}'), +(17351, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.888+00', '{"cached":null,"ignore_cache":false}'), +(17352, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:24.991+00', '{"cached":null,"ignore_cache":false}'), +(17353, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.025+00', '{"cached":null,"ignore_cache":false}'), +(17354, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.039+00', '{"cached":null,"ignore_cache":false}'), +(17355, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.048+00', '{"cached":null,"ignore_cache":false}'), +(17356, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.066+00', '{"cached":null,"ignore_cache":false}'), +(17357, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.464+00', '{"cached":null,"ignore_cache":false}'), +(17358, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.516+00', '{"cached":null,"ignore_cache":false}'), +(17359, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.531+00', '{"cached":null,"ignore_cache":false}'), +(17360, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.574+00', '{"cached":null,"ignore_cache":false}'), +(17361, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.594+00', '{"cached":null,"ignore_cache":false}'), +(17362, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.716+00', '{"cached":null,"ignore_cache":false}'), +(17363, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.742+00', '{"cached":null,"ignore_cache":false}'), +(17364, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.78+00', '{"cached":null,"ignore_cache":false}'), +(17365, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.874+00', '{"cached":null,"ignore_cache":false}'), +(17366, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.904+00', '{"cached":null,"ignore_cache":false}'), +(17367, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.918+00', '{"cached":null,"ignore_cache":false}'), +(17368, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.922+00', '{"cached":null,"ignore_cache":false}'), +(17369, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.937+00', '{"cached":null,"ignore_cache":false}'), +(17370, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.971+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17371, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:25.983+00', '{"cached":null,"ignore_cache":false}'), +(17372, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:26.005+00', '{"cached":null,"ignore_cache":false}'), +(17373, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:26.026+00', '{"cached":null,"ignore_cache":false}'), +(17374, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:29.974+00', '{"cached":null,"ignore_cache":false}'), +(17375, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.032+00', '{"cached":null,"ignore_cache":false}'), +(17376, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.052+00', '{"cached":null,"ignore_cache":false}'), +(17377, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.101+00', '{"cached":null,"ignore_cache":false}'), +(17378, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.15+00', '{"cached":null,"ignore_cache":false}'), +(17379, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.16+00', '{"cached":null,"ignore_cache":false}'), +(17380, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.183+00', '{"cached":null,"ignore_cache":false}'), +(17381, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.262+00', '{"cached":null,"ignore_cache":false}'), +(17382, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.265+00', '{"cached":null,"ignore_cache":false}'), +(17383, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.281+00', '{"cached":null,"ignore_cache":false}'), +(17384, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.299+00', '{"cached":null,"ignore_cache":false}'), +(17385, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.329+00', '{"cached":null,"ignore_cache":false}'), +(17386, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.381+00', '{"cached":null,"ignore_cache":false}'), +(17387, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.424+00', '{"cached":null,"ignore_cache":false}'), +(17388, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.525+00', '{"cached":null,"ignore_cache":false}'), +(17389, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:30.539+00', '{"cached":null,"ignore_cache":false}'), +(17390, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.889+00', '{"cached":null,"ignore_cache":false}'), +(17391, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.913+00', '{"cached":null,"ignore_cache":false}'), +(17392, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.916+00', '{"cached":null,"ignore_cache":false}'), +(17393, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.959+00', '{"cached":null,"ignore_cache":false}'), +(17394, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:32:59.979+00', '{"cached":null,"ignore_cache":false}'), +(17395, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.004+00', '{"cached":null,"ignore_cache":false}'), +(17396, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.038+00', '{"cached":null,"ignore_cache":false}'), +(17397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.071+00', '{"cached":null,"ignore_cache":false}'), +(17398, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.147+00', '{"cached":null,"ignore_cache":false}'), +(17399, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.158+00', '{"cached":null,"ignore_cache":false}'), +(17400, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.16+00', '{"cached":null,"ignore_cache":false}'), +(17401, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.188+00', '{"cached":null,"ignore_cache":false}'), +(17402, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.188+00', '{"cached":null,"ignore_cache":false}'), +(17403, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.193+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17404, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.214+00', '{"cached":null,"ignore_cache":false}'), +(17405, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:00.228+00', '{"cached":null,"ignore_cache":false}'), +(17406, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.482+00', '{"cached":null,"ignore_cache":false}'), +(17407, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.601+00', '{"cached":null,"ignore_cache":false}'), +(17408, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.61+00', '{"cached":null,"ignore_cache":false}'), +(17409, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.663+00', '{"cached":null,"ignore_cache":false}'), +(17410, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.726+00', '{"cached":null,"ignore_cache":false}'), +(17411, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.734+00', '{"cached":null,"ignore_cache":false}'), +(17412, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.737+00', '{"cached":null,"ignore_cache":false}'), +(17413, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.747+00', '{"cached":null,"ignore_cache":false}'), +(17414, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.754+00', '{"cached":null,"ignore_cache":false}'), +(17415, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.817+00', '{"cached":null,"ignore_cache":false}'), +(17416, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.824+00', '{"cached":null,"ignore_cache":false}'), +(17417, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.893+00', '{"cached":null,"ignore_cache":false}'), +(17418, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.914+00', '{"cached":null,"ignore_cache":false}'), +(17419, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.934+00', '{"cached":null,"ignore_cache":false}'), +(17420, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.955+00', '{"cached":null,"ignore_cache":false}'), +(17421, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:29.994+00', '{"cached":null,"ignore_cache":false}'), +(17422, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.34+00', '{"cached":null,"ignore_cache":false}'), +(17423, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.342+00', '{"cached":null,"ignore_cache":false}'), +(17424, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.396+00', '{"cached":null,"ignore_cache":false}'), +(17425, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.417+00', '{"cached":null,"ignore_cache":false}'), +(17426, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.421+00', '{"cached":null,"ignore_cache":false}'), +(17427, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.441+00', '{"cached":null,"ignore_cache":false}'), +(17428, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.459+00', '{"cached":null,"ignore_cache":false}'), +(17429, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.46+00', '{"cached":null,"ignore_cache":false}'), +(17430, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.466+00', '{"cached":null,"ignore_cache":false}'), +(17431, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.466+00', '{"cached":null,"ignore_cache":false}'), +(17432, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.477+00', '{"cached":null,"ignore_cache":false}'), +(17433, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.494+00', '{"cached":null,"ignore_cache":false}'), +(17434, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.503+00', '{"cached":null,"ignore_cache":false}'), +(17435, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.51+00', '{"cached":null,"ignore_cache":false}'), +(17436, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.522+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17437, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:33:59.525+00', '{"cached":null,"ignore_cache":false}'), +(17438, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.36+00', '{"cached":null,"ignore_cache":false}'), +(17439, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.419+00', '{"cached":null,"ignore_cache":false}'), +(17440, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.441+00', '{"cached":null,"ignore_cache":false}'), +(17441, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.452+00', '{"cached":null,"ignore_cache":false}'), +(17442, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.519+00', '{"cached":null,"ignore_cache":false}'), +(17443, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.556+00', '{"cached":null,"ignore_cache":false}'), +(17444, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.605+00', '{"cached":null,"ignore_cache":false}'), +(17445, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.615+00', '{"cached":null,"ignore_cache":false}'), +(17446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.642+00', '{"cached":null,"ignore_cache":false}'), +(17447, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.678+00', '{"cached":null,"ignore_cache":false}'), +(17448, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.698+00', '{"cached":null,"ignore_cache":false}'), +(17449, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.726+00', '{"cached":null,"ignore_cache":false}'), +(17450, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.75+00', '{"cached":null,"ignore_cache":false}'), +(17451, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.759+00', '{"cached":null,"ignore_cache":false}'), +(17452, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.798+00', '{"cached":null,"ignore_cache":false}'), +(17453, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:34:29.799+00', '{"cached":null,"ignore_cache":false}'), +(17454, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.082+00', '{"cached":null,"ignore_cache":false}'), +(17455, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.099+00', '{"cached":null,"ignore_cache":false}'), +(17456, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.165+00', '{"cached":null,"ignore_cache":false}'), +(17457, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.168+00', '{"cached":null,"ignore_cache":false}'), +(17458, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.205+00', '{"cached":null,"ignore_cache":false}'), +(17459, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.28+00', '{"cached":null,"ignore_cache":false}'), +(17460, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.281+00', '{"cached":null,"ignore_cache":false}'), +(17461, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.323+00', '{"cached":null,"ignore_cache":false}'), +(17462, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.325+00', '{"cached":null,"ignore_cache":false}'), +(17463, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.368+00', '{"cached":null,"ignore_cache":false}'), +(17464, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.399+00', '{"cached":null,"ignore_cache":false}'), +(17465, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.404+00', '{"cached":null,"ignore_cache":false}'), +(17466, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.425+00', '{"cached":null,"ignore_cache":false}'), +(17467, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.496+00', '{"cached":null,"ignore_cache":false}'), +(17468, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.52+00', '{"cached":null,"ignore_cache":false}'), +(17469, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:00.524+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17470, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.312+00', '{"cached":null,"ignore_cache":false}'), +(17471, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.384+00', '{"cached":null,"ignore_cache":false}'), +(17472, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.393+00', '{"cached":null,"ignore_cache":false}'), +(17473, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.458+00', '{"cached":null,"ignore_cache":false}'), +(17474, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.466+00', '{"cached":null,"ignore_cache":false}'), +(17475, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.509+00', '{"cached":null,"ignore_cache":false}'), +(17476, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.527+00', '{"cached":null,"ignore_cache":false}'), +(17477, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.56+00', '{"cached":null,"ignore_cache":false}'), +(17478, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.584+00', '{"cached":null,"ignore_cache":false}'), +(17479, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.589+00', '{"cached":null,"ignore_cache":false}'), +(17480, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.604+00', '{"cached":null,"ignore_cache":false}'), +(17481, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.68+00', '{"cached":null,"ignore_cache":false}'), +(17482, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.705+00', '{"cached":null,"ignore_cache":false}'), +(17483, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.706+00', '{"cached":null,"ignore_cache":false}'), +(17484, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.714+00', '{"cached":null,"ignore_cache":false}'), +(17485, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:29.734+00', '{"cached":null,"ignore_cache":false}'), +(17486, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.811+00', '{"cached":null,"ignore_cache":false}'), +(17487, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.897+00', '{"cached":null,"ignore_cache":false}'), +(17488, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:35:59.927+00', '{"cached":null,"ignore_cache":false}'), +(17489, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.041+00', '{"cached":null,"ignore_cache":false}'), +(17490, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.049+00', '{"cached":null,"ignore_cache":false}'), +(17491, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.09+00', '{"cached":null,"ignore_cache":false}'), +(17492, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.128+00', '{"cached":null,"ignore_cache":false}'), +(17493, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.174+00', '{"cached":null,"ignore_cache":false}'), +(17494, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.216+00', '{"cached":null,"ignore_cache":false}'), +(17495, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.234+00', '{"cached":null,"ignore_cache":false}'), +(17496, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.239+00', '{"cached":null,"ignore_cache":false}'), +(17497, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.251+00', '{"cached":null,"ignore_cache":false}'), +(17498, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.253+00', '{"cached":null,"ignore_cache":false}'), +(17499, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.266+00', '{"cached":null,"ignore_cache":false}'), +(17500, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.272+00', '{"cached":null,"ignore_cache":false}'), +(17501, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:00.29+00', '{"cached":null,"ignore_cache":false}'), +(17502, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.388+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17503, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.625+00', '{"cached":null,"ignore_cache":false}'), +(17504, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.682+00', '{"cached":null,"ignore_cache":false}'), +(17505, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.727+00', '{"cached":null,"ignore_cache":false}'), +(17506, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.751+00', '{"cached":null,"ignore_cache":false}'), +(17507, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.757+00', '{"cached":null,"ignore_cache":false}'), +(17508, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.883+00', '{"cached":null,"ignore_cache":false}'), +(17509, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.965+00', '{"cached":null,"ignore_cache":false}'), +(17510, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.974+00', '{"cached":null,"ignore_cache":false}'), +(17511, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:29.99+00', '{"cached":null,"ignore_cache":false}'), +(17512, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:30.022+00', '{"cached":null,"ignore_cache":false}'), +(17513, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:30.024+00', '{"cached":null,"ignore_cache":false}'), +(17514, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:30.048+00', '{"cached":null,"ignore_cache":false}'), +(17515, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:30.12+00', '{"cached":null,"ignore_cache":false}'), +(17516, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:30.126+00', '{"cached":null,"ignore_cache":false}'), +(17517, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:30.136+00', '{"cached":null,"ignore_cache":false}'), +(17518, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:37.104+00', '{"cached":null,"ignore_cache":null}'), +(17519, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.312+00', '{"cached":null,"ignore_cache":false}'), +(17520, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.347+00', '{"cached":null,"ignore_cache":false}'), +(17521, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.359+00', '{"cached":null,"ignore_cache":false}'), +(17522, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.359+00', '{"cached":null,"ignore_cache":false}'), +(17523, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.378+00', '{"cached":null,"ignore_cache":false}'), +(17524, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.583+00', '{"cached":null,"ignore_cache":false}'), +(17525, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:38.619+00', '{"cached":null,"ignore_cache":false}'), +(17526, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:45.341+00', '{"cached":null,"ignore_cache":null}'), +(17527, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.227+00', '{"cached":null,"ignore_cache":false}'), +(17528, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.241+00', '{"cached":null,"ignore_cache":false}'), +(17529, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.257+00', '{"cached":null,"ignore_cache":false}'), +(17530, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.309+00', '{"cached":null,"ignore_cache":false}'), +(17531, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.323+00', '{"cached":null,"ignore_cache":false}'), +(17532, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.715+00', '{"cached":null,"ignore_cache":false}'), +(17533, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.811+00', '{"cached":null,"ignore_cache":false}'), +(17534, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.884+00', '{"cached":null,"ignore_cache":false}'), +(17535, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:46.942+00', '{"cached":null,"ignore_cache":false}'), +(17536, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.06+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17537, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.522+00', '{"cached":null,"ignore_cache":false}'), +(17538, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.539+00', '{"cached":null,"ignore_cache":false}'), +(17539, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.569+00', '{"cached":null,"ignore_cache":false}'), +(17540, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.606+00', '{"cached":null,"ignore_cache":false}'), +(17541, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.628+00', '{"cached":null,"ignore_cache":false}'), +(17542, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.809+00', '{"cached":null,"ignore_cache":false}'), +(17543, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:36:58.814+00', '{"cached":null,"ignore_cache":false}'), +(17544, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.404+00', '{"cached":null,"ignore_cache":false}'), +(17545, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.457+00', '{"cached":null,"ignore_cache":false}'), +(17546, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.498+00', '{"cached":null,"ignore_cache":false}'), +(17547, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.509+00', '{"cached":null,"ignore_cache":false}'), +(17548, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.528+00', '{"cached":null,"ignore_cache":false}'), +(17549, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.531+00', '{"cached":null,"ignore_cache":false}'), +(17550, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:36.549+00', '{"cached":null,"ignore_cache":false}'), +(17551, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.044+00', '{"cached":null,"ignore_cache":false}'), +(17552, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.08+00', '{"cached":null,"ignore_cache":false}'), +(17553, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.16+00', '{"cached":null,"ignore_cache":false}'), +(17554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.208+00', '{"cached":null,"ignore_cache":false}'), +(17555, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.221+00', '{"cached":null,"ignore_cache":false}'), +(17556, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.234+00', '{"cached":null,"ignore_cache":false}'), +(17557, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.241+00', '{"cached":null,"ignore_cache":false}'), +(17558, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.259+00', '{"cached":null,"ignore_cache":false}'), +(17559, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.267+00', '{"cached":null,"ignore_cache":false}'), +(17560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.303+00', '{"cached":null,"ignore_cache":false}'), +(17561, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.323+00', '{"cached":null,"ignore_cache":false}'), +(17562, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.331+00', '{"cached":null,"ignore_cache":false}'), +(17563, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.367+00', '{"cached":null,"ignore_cache":false}'), +(17564, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.375+00', '{"cached":null,"ignore_cache":false}'), +(17565, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.396+00', '{"cached":null,"ignore_cache":false}'), +(17566, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:37:56.408+00', '{"cached":null,"ignore_cache":false}'), +(17567, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.597+00', '{"cached":null,"ignore_cache":false}'), +(17568, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.776+00', '{"cached":null,"ignore_cache":false}'), +(17569, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.859+00', '{"cached":null,"ignore_cache":false}'), +(17570, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.908+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17571, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:26.969+00', '{"cached":null,"ignore_cache":false}'), +(17572, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.071+00', '{"cached":null,"ignore_cache":false}'), +(17573, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.075+00', '{"cached":null,"ignore_cache":false}'), +(17574, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.078+00', '{"cached":null,"ignore_cache":false}'), +(17575, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.083+00', '{"cached":null,"ignore_cache":false}'), +(17576, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.102+00', '{"cached":null,"ignore_cache":false}'), +(17577, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.125+00', '{"cached":null,"ignore_cache":false}'), +(17578, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.132+00', '{"cached":null,"ignore_cache":false}'), +(17579, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.143+00', '{"cached":null,"ignore_cache":false}'), +(17580, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.145+00', '{"cached":null,"ignore_cache":false}'), +(17581, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.178+00', '{"cached":null,"ignore_cache":false}'), +(17582, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:27.201+00', '{"cached":null,"ignore_cache":false}'), +(17583, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.484+00', '{"cached":null,"ignore_cache":false}'), +(17584, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.497+00', '{"cached":null,"ignore_cache":false}'), +(17585, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.513+00', '{"cached":null,"ignore_cache":false}'), +(17586, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.526+00', '{"cached":null,"ignore_cache":false}'), +(17587, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.531+00', '{"cached":null,"ignore_cache":false}'), +(17588, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.544+00', '{"cached":null,"ignore_cache":false}'), +(17589, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.544+00', '{"cached":null,"ignore_cache":false}'), +(17590, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.681+00', '{"cached":null,"ignore_cache":false}'), +(17591, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.707+00', '{"cached":null,"ignore_cache":false}'), +(17592, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.707+00', '{"cached":null,"ignore_cache":false}'), +(17593, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.726+00', '{"cached":null,"ignore_cache":false}'), +(17594, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.746+00', '{"cached":null,"ignore_cache":false}'), +(17595, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.752+00', '{"cached":null,"ignore_cache":false}'), +(17596, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:28.758+00', '{"cached":null,"ignore_cache":false}'), +(17597, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.469+00', '{"cached":null,"ignore_cache":false}'), +(17598, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.485+00', '{"cached":null,"ignore_cache":false}'), +(17599, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.523+00', '{"cached":null,"ignore_cache":false}'), +(17600, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.541+00', '{"cached":null,"ignore_cache":false}'), +(17601, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.546+00', '{"cached":null,"ignore_cache":false}'), +(17602, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.55+00', '{"cached":null,"ignore_cache":false}'), +(17603, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.552+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17604, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.573+00', '{"cached":null,"ignore_cache":false}'), +(17605, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.577+00', '{"cached":null,"ignore_cache":false}'), +(17606, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.794+00', '{"cached":null,"ignore_cache":false}'), +(17607, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.835+00', '{"cached":null,"ignore_cache":false}'), +(17608, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.859+00', '{"cached":null,"ignore_cache":false}'), +(17609, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.877+00', '{"cached":null,"ignore_cache":false}'), +(17610, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.895+00', '{"cached":null,"ignore_cache":false}'), +(17611, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.895+00', '{"cached":null,"ignore_cache":false}'), +(17612, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.915+00', '{"cached":null,"ignore_cache":false}'), +(17613, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.917+00', '{"cached":null,"ignore_cache":false}'), +(17614, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:29.924+00', '{"cached":null,"ignore_cache":false}'), +(17615, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.17+00', '{"cached":null,"ignore_cache":null}'), +(17616, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.623+00', '{"cached":null,"ignore_cache":false}'), +(17617, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.629+00', '{"cached":null,"ignore_cache":false}'), +(17618, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.651+00', '{"cached":null,"ignore_cache":false}'), +(17619, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.653+00', '{"cached":null,"ignore_cache":false}'), +(17620, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.666+00', '{"cached":null,"ignore_cache":false}'), +(17621, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.914+00', '{"cached":null,"ignore_cache":false}'), +(17622, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.936+00', '{"cached":null,"ignore_cache":false}'), +(17623, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:47.963+00', '{"cached":null,"ignore_cache":false}'), +(17624, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:48.02+00', '{"cached":null,"ignore_cache":false}'), +(17625, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:54.335+00', '{"cached":null,"ignore_cache":null}'), +(17626, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:54.872+00', '{"cached":null,"ignore_cache":false}'), +(17627, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.102+00', '{"cached":null,"ignore_cache":false}'), +(17628, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.158+00', '{"cached":null,"ignore_cache":false}'), +(17629, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.295+00', '{"cached":null,"ignore_cache":false}'), +(17630, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.348+00', '{"cached":null,"ignore_cache":false}'), +(17631, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.383+00', '{"cached":null,"ignore_cache":false}'), +(17632, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.397+00', '{"cached":null,"ignore_cache":false}'), +(17633, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.567+00', '{"cached":null,"ignore_cache":false}'), +(17634, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.567+00', '{"cached":null,"ignore_cache":false}'), +(17635, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.63+00', '{"cached":null,"ignore_cache":false}'), +(17636, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.633+00', '{"cached":null,"ignore_cache":false}'), +(17637, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.96+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17638, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.976+00', '{"cached":null,"ignore_cache":false}'), +(17639, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.976+00', '{"cached":null,"ignore_cache":false}'), +(17640, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.992+00', '{"cached":null,"ignore_cache":false}'), +(17641, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:56.994+00', '{"cached":null,"ignore_cache":false}'), +(17642, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:38:57.032+00', '{"cached":null,"ignore_cache":false}'), +(17643, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:09.966+00', '{"cached":null,"ignore_cache":null}'), +(17644, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.509+00', '{"cached":null,"ignore_cache":false}'), +(17645, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.555+00', '{"cached":null,"ignore_cache":false}'), +(17646, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.688+00', '{"cached":null,"ignore_cache":false}'), +(17647, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.743+00', '{"cached":null,"ignore_cache":false}'), +(17648, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.758+00', '{"cached":null,"ignore_cache":false}'), +(17649, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.848+00', '{"cached":null,"ignore_cache":false}'), +(17650, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:10.899+00', '{"cached":null,"ignore_cache":false}'), +(17651, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:16.846+00', '{"cached":null,"ignore_cache":null}'), +(17652, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.394+00', '{"cached":null,"ignore_cache":false}'), +(17653, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.448+00', '{"cached":null,"ignore_cache":false}'), +(17654, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.496+00', '{"cached":null,"ignore_cache":false}'), +(17655, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.572+00', '{"cached":null,"ignore_cache":false}'), +(17656, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.654+00', '{"cached":null,"ignore_cache":false}'), +(17657, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.774+00', '{"cached":null,"ignore_cache":false}'), +(17658, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.883+00', '{"cached":null,"ignore_cache":false}'), +(17659, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.884+00', '{"cached":null,"ignore_cache":false}'), +(17660, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:17.982+00', '{"cached":null,"ignore_cache":false}'), +(17661, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.879+00', '{"cached":null,"ignore_cache":false}'), +(17662, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:26.902+00', '{"cached":null,"ignore_cache":false}'), +(17663, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.1+00', '{"cached":null,"ignore_cache":false}'), +(17664, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.151+00', '{"cached":null,"ignore_cache":false}'), +(17665, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.262+00', '{"cached":null,"ignore_cache":false}'), +(17666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.362+00', '{"cached":null,"ignore_cache":false}'), +(17667, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.388+00', '{"cached":null,"ignore_cache":false}'), +(17668, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.571+00', '{"cached":null,"ignore_cache":false}'), +(17669, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.606+00', '{"cached":null,"ignore_cache":false}'), +(17670, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.688+00', '{"cached":null,"ignore_cache":false}'), +(17671, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.716+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17672, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.742+00', '{"cached":null,"ignore_cache":false}'), +(17673, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.869+00', '{"cached":null,"ignore_cache":false}'), +(17674, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.891+00', '{"cached":null,"ignore_cache":false}'), +(17675, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.966+00', '{"cached":null,"ignore_cache":false}'), +(17676, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:27.994+00', '{"cached":null,"ignore_cache":false}'), +(17677, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.198+00', '{"cached":null,"ignore_cache":false}'), +(17678, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.202+00', '{"cached":null,"ignore_cache":false}'), +(17679, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.208+00', '{"cached":null,"ignore_cache":false}'), +(17680, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.321+00', '{"cached":null,"ignore_cache":false}'), +(17681, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.328+00', '{"cached":null,"ignore_cache":false}'), +(17682, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.328+00', '{"cached":null,"ignore_cache":false}'), +(17683, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.434+00', '{"cached":null,"ignore_cache":false}'), +(17684, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.538+00', '{"cached":null,"ignore_cache":false}'), +(17685, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.606+00', '{"cached":null,"ignore_cache":false}'), +(17686, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.621+00', '{"cached":null,"ignore_cache":false}'), +(17687, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.646+00', '{"cached":null,"ignore_cache":false}'), +(17688, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.656+00', '{"cached":null,"ignore_cache":false}'), +(17689, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.701+00', '{"cached":null,"ignore_cache":false}'), +(17690, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:30.704+00', '{"cached":null,"ignore_cache":false}'), +(17691, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.103+00', '{"cached":null,"ignore_cache":false}'), +(17692, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.129+00', '{"cached":null,"ignore_cache":false}'), +(17693, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.186+00', '{"cached":null,"ignore_cache":false}'), +(17694, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.21+00', '{"cached":null,"ignore_cache":false}'), +(17695, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.261+00', '{"cached":null,"ignore_cache":false}'), +(17696, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.306+00', '{"cached":null,"ignore_cache":false}'), +(17697, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.417+00', '{"cached":null,"ignore_cache":false}'), +(17698, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.444+00', '{"cached":null,"ignore_cache":false}'), +(17699, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.497+00', '{"cached":null,"ignore_cache":false}'), +(17700, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.508+00', '{"cached":null,"ignore_cache":false}'), +(17701, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.521+00', '{"cached":null,"ignore_cache":false}'), +(17702, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.593+00', '{"cached":null,"ignore_cache":false}'), +(17703, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.6+00', '{"cached":null,"ignore_cache":false}'), +(17704, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.603+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17705, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.677+00', '{"cached":null,"ignore_cache":false}'), +(17706, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.746+00', '{"cached":null,"ignore_cache":false}'), +(17707, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.816+00', '{"cached":null,"ignore_cache":false}'), +(17708, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:31.836+00', '{"cached":null,"ignore_cache":false}'), +(17709, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:56.969+00', '{"cached":null,"ignore_cache":false}'), +(17710, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.011+00', '{"cached":null,"ignore_cache":false}'), +(17711, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.065+00', '{"cached":null,"ignore_cache":false}'), +(17712, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.123+00', '{"cached":null,"ignore_cache":false}'), +(17713, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.207+00', '{"cached":null,"ignore_cache":false}'), +(17714, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.207+00', '{"cached":null,"ignore_cache":false}'), +(17715, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.288+00', '{"cached":null,"ignore_cache":false}'), +(17716, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.382+00', '{"cached":null,"ignore_cache":false}'), +(17717, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.432+00', '{"cached":null,"ignore_cache":false}'), +(17718, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.496+00', '{"cached":null,"ignore_cache":false}'), +(17719, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.528+00', '{"cached":null,"ignore_cache":false}'), +(17720, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.532+00', '{"cached":null,"ignore_cache":false}'), +(17721, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.552+00', '{"cached":null,"ignore_cache":false}'), +(17722, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.591+00', '{"cached":null,"ignore_cache":false}'), +(17723, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.614+00', '{"cached":null,"ignore_cache":false}'), +(17724, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:39:57.657+00', '{"cached":null,"ignore_cache":false}'), +(17725, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.569+00', '{"cached":null,"ignore_cache":false}'), +(17726, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.636+00', '{"cached":null,"ignore_cache":false}'), +(17727, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.636+00', '{"cached":null,"ignore_cache":false}'), +(17728, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.742+00', '{"cached":null,"ignore_cache":false}'), +(17729, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.764+00', '{"cached":null,"ignore_cache":false}'), +(17730, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.802+00', '{"cached":null,"ignore_cache":false}'), +(17731, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.821+00', '{"cached":null,"ignore_cache":false}'), +(17732, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.85+00', '{"cached":null,"ignore_cache":false}'), +(17733, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.915+00', '{"cached":null,"ignore_cache":false}'), +(17734, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:23.976+00', '{"cached":null,"ignore_cache":false}'), +(17735, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.154+00', '{"cached":null,"ignore_cache":false}'), +(17736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.211+00', '{"cached":null,"ignore_cache":false}'), +(17737, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.336+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17738, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.377+00', '{"cached":null,"ignore_cache":false}'), +(17739, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.39+00', '{"cached":null,"ignore_cache":false}'), +(17740, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.463+00', '{"cached":null,"ignore_cache":false}'), +(17741, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.636+00', '{"cached":null,"ignore_cache":false}'), +(17742, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.65+00', '{"cached":null,"ignore_cache":false}'), +(17743, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.679+00', '{"cached":null,"ignore_cache":false}'), +(17744, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.707+00', '{"cached":null,"ignore_cache":false}'), +(17745, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.714+00', '{"cached":null,"ignore_cache":false}'), +(17746, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.724+00', '{"cached":null,"ignore_cache":false}'), +(17747, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.795+00', '{"cached":null,"ignore_cache":false}'), +(17748, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.818+00', '{"cached":null,"ignore_cache":false}'), +(17749, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.829+00', '{"cached":null,"ignore_cache":false}'), +(17750, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:24.98+00', '{"cached":null,"ignore_cache":false}'), +(17751, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:25.05+00', '{"cached":null,"ignore_cache":false}'), +(17752, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:25.092+00', '{"cached":null,"ignore_cache":false}'), +(17753, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:25.114+00', '{"cached":null,"ignore_cache":false}'), +(17754, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:25.13+00', '{"cached":null,"ignore_cache":false}'), +(17755, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:25.185+00', '{"cached":null,"ignore_cache":false}'), +(17756, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:25.218+00', '{"cached":null,"ignore_cache":false}'), +(17757, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.251+00', '{"cached":null,"ignore_cache":false}'), +(17758, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.342+00', '{"cached":null,"ignore_cache":false}'), +(17759, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.368+00', '{"cached":null,"ignore_cache":false}'), +(17760, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.384+00', '{"cached":null,"ignore_cache":false}'), +(17761, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.405+00', '{"cached":null,"ignore_cache":false}'), +(17762, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.504+00', '{"cached":null,"ignore_cache":false}'), +(17763, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.52+00', '{"cached":null,"ignore_cache":false}'), +(17764, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.531+00', '{"cached":null,"ignore_cache":false}'), +(17765, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.698+00', '{"cached":null,"ignore_cache":false}'), +(17766, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.846+00', '{"cached":null,"ignore_cache":false}'), +(17767, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.877+00', '{"cached":null,"ignore_cache":false}'), +(17768, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.897+00', '{"cached":null,"ignore_cache":false}'), +(17769, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:26.914+00', '{"cached":null,"ignore_cache":false}'), +(17770, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:27.044+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17771, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:27.1+00', '{"cached":null,"ignore_cache":false}'), +(17772, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:27.112+00', '{"cached":null,"ignore_cache":false}'), +(17773, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.761+00', '{"cached":null,"ignore_cache":false}'), +(17774, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.883+00', '{"cached":null,"ignore_cache":false}'), +(17775, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:56.944+00', '{"cached":null,"ignore_cache":false}'), +(17776, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.216+00', '{"cached":null,"ignore_cache":false}'), +(17777, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.234+00', '{"cached":null,"ignore_cache":false}'), +(17778, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.261+00', '{"cached":null,"ignore_cache":false}'), +(17779, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.268+00', '{"cached":null,"ignore_cache":false}'), +(17780, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.271+00', '{"cached":null,"ignore_cache":false}'), +(17781, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.372+00', '{"cached":null,"ignore_cache":false}'), +(17782, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.397+00', '{"cached":null,"ignore_cache":false}'), +(17783, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.457+00', '{"cached":null,"ignore_cache":false}'), +(17784, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.476+00', '{"cached":null,"ignore_cache":false}'), +(17785, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.494+00', '{"cached":null,"ignore_cache":false}'), +(17786, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.514+00', '{"cached":null,"ignore_cache":false}'), +(17787, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.523+00', '{"cached":null,"ignore_cache":false}'), +(17788, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:40:57.543+00', '{"cached":null,"ignore_cache":false}'), +(17789, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.097+00', '{"cached":null,"ignore_cache":false}'), +(17790, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.101+00', '{"cached":null,"ignore_cache":false}'), +(17791, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.132+00', '{"cached":null,"ignore_cache":false}'), +(17792, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.146+00', '{"cached":null,"ignore_cache":false}'), +(17793, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.152+00', '{"cached":null,"ignore_cache":false}'), +(17794, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.166+00', '{"cached":null,"ignore_cache":false}'), +(17795, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.184+00', '{"cached":null,"ignore_cache":false}'), +(17796, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.344+00', '{"cached":null,"ignore_cache":false}'), +(17797, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.363+00', '{"cached":null,"ignore_cache":false}'), +(17798, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.395+00', '{"cached":null,"ignore_cache":false}'), +(17799, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.494+00', '{"cached":null,"ignore_cache":false}'), +(17800, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.6+00', '{"cached":null,"ignore_cache":false}'), +(17801, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.606+00', '{"cached":null,"ignore_cache":false}'), +(17802, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:05.616+00', '{"cached":null,"ignore_cache":false}'), +(17803, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.458+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17804, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.841+00', '{"cached":null,"ignore_cache":false}'), +(17805, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.923+00', '{"cached":null,"ignore_cache":false}'), +(17806, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.961+00', '{"cached":null,"ignore_cache":false}'), +(17807, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:06.983+00', '{"cached":null,"ignore_cache":false}'), +(17808, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.022+00', '{"cached":null,"ignore_cache":false}'), +(17809, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.162+00', '{"cached":null,"ignore_cache":false}'), +(17810, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.255+00', '{"cached":null,"ignore_cache":false}'), +(17811, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.423+00', '{"cached":null,"ignore_cache":false}'), +(17812, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.626+00', '{"cached":null,"ignore_cache":false}'), +(17813, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.834+00', '{"cached":null,"ignore_cache":false}'), +(17814, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.883+00', '{"cached":null,"ignore_cache":false}'), +(17815, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:07.947+00', '{"cached":null,"ignore_cache":false}'), +(17816, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:08.008+00', '{"cached":null,"ignore_cache":false}'), +(17817, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:08.109+00', '{"cached":null,"ignore_cache":false}'), +(17818, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:08.236+00', '{"cached":null,"ignore_cache":false}'), +(17819, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:08.243+00', '{"cached":null,"ignore_cache":false}'), +(17820, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:08.317+00', '{"cached":null,"ignore_cache":false}'), +(17821, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.488+00', '{"cached":null,"ignore_cache":false}'), +(17822, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.516+00', '{"cached":null,"ignore_cache":false}'), +(17823, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.581+00', '{"cached":null,"ignore_cache":false}'), +(17824, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.599+00', '{"cached":null,"ignore_cache":false}'), +(17825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.659+00', '{"cached":null,"ignore_cache":false}'), +(17826, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.661+00', '{"cached":null,"ignore_cache":false}'), +(17827, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.674+00', '{"cached":null,"ignore_cache":false}'), +(17828, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.724+00', '{"cached":null,"ignore_cache":false}'), +(17829, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.727+00', '{"cached":null,"ignore_cache":false}'), +(17830, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.732+00', '{"cached":null,"ignore_cache":false}'), +(17831, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.747+00', '{"cached":null,"ignore_cache":false}'), +(17832, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.775+00', '{"cached":null,"ignore_cache":false}'), +(17833, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.777+00', '{"cached":null,"ignore_cache":false}'), +(17834, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.783+00', '{"cached":null,"ignore_cache":false}'), +(17835, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.792+00', '{"cached":null,"ignore_cache":false}'), +(17836, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:26.792+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17837, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.224+00', '{"cached":null,"ignore_cache":false}'), +(17838, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.265+00', '{"cached":null,"ignore_cache":false}'), +(17839, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.278+00', '{"cached":null,"ignore_cache":false}'), +(17840, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.319+00', '{"cached":null,"ignore_cache":false}'), +(17841, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.34+00', '{"cached":null,"ignore_cache":false}'), +(17842, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.345+00', '{"cached":null,"ignore_cache":false}'), +(17843, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:45.452+00', '{"cached":null,"ignore_cache":false}'), +(17844, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.883+00', '{"cached":null,"ignore_cache":false}'), +(17845, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.908+00', '{"cached":null,"ignore_cache":false}'), +(17846, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.928+00', '{"cached":null,"ignore_cache":false}'), +(17847, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.94+00', '{"cached":null,"ignore_cache":false}'), +(17848, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.949+00', '{"cached":null,"ignore_cache":false}'), +(17849, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:49.995+00', '{"cached":null,"ignore_cache":false}'), +(17850, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:50.012+00', '{"cached":null,"ignore_cache":false}'), +(17851, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:50.012+00', '{"cached":null,"ignore_cache":false}'), +(17852, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:50.013+00', '{"cached":null,"ignore_cache":false}'), +(17853, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.264+00', '{"cached":null,"ignore_cache":false}'), +(17854, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.282+00', '{"cached":null,"ignore_cache":false}'), +(17855, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.355+00', '{"cached":null,"ignore_cache":false}'), +(17856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.448+00', '{"cached":null,"ignore_cache":false}'), +(17857, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.448+00', '{"cached":null,"ignore_cache":false}'), +(17858, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.449+00', '{"cached":null,"ignore_cache":false}'), +(17859, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.458+00', '{"cached":null,"ignore_cache":false}'), +(17860, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.481+00', '{"cached":null,"ignore_cache":false}'), +(17861, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.49+00', '{"cached":null,"ignore_cache":false}'), +(17862, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.501+00', '{"cached":null,"ignore_cache":false}'), +(17863, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.539+00', '{"cached":null,"ignore_cache":false}'), +(17864, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.545+00', '{"cached":null,"ignore_cache":false}'), +(17865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.562+00', '{"cached":null,"ignore_cache":false}'), +(17866, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.578+00', '{"cached":null,"ignore_cache":false}'), +(17867, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.578+00', '{"cached":null,"ignore_cache":false}'), +(17868, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:41:56.588+00', '{"cached":null,"ignore_cache":false}'), +(17869, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:15.24+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17870, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:15.68+00', '{"cached":null,"ignore_cache":false}'), +(17871, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:15.697+00', '{"cached":null,"ignore_cache":false}'), +(17872, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:15.7+00', '{"cached":null,"ignore_cache":false}'), +(17873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.417+00', '{"cached":null,"ignore_cache":false}'), +(17874, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.474+00', '{"cached":null,"ignore_cache":false}'), +(17875, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.534+00', '{"cached":null,"ignore_cache":false}'), +(17876, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.559+00', '{"cached":null,"ignore_cache":false}'), +(17877, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.59+00', '{"cached":null,"ignore_cache":false}'), +(17878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.637+00', '{"cached":null,"ignore_cache":false}'), +(17879, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.669+00', '{"cached":null,"ignore_cache":false}'), +(17880, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.677+00', '{"cached":null,"ignore_cache":false}'), +(17881, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.709+00', '{"cached":null,"ignore_cache":false}'), +(17882, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.731+00', '{"cached":null,"ignore_cache":false}'), +(17883, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.734+00', '{"cached":null,"ignore_cache":false}'), +(17884, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.749+00', '{"cached":null,"ignore_cache":false}'), +(17885, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.751+00', '{"cached":null,"ignore_cache":false}'), +(17886, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.763+00', '{"cached":null,"ignore_cache":false}'), +(17887, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.771+00', '{"cached":null,"ignore_cache":false}'), +(17888, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:26.78+00', '{"cached":null,"ignore_cache":false}'), +(17889, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.095+00', '{"cached":null,"ignore_cache":false}'), +(17890, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.131+00', '{"cached":null,"ignore_cache":false}'), +(17891, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.165+00', '{"cached":null,"ignore_cache":false}'), +(17892, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.18+00', '{"cached":null,"ignore_cache":false}'), +(17893, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.184+00', '{"cached":null,"ignore_cache":false}'), +(17894, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.188+00', '{"cached":null,"ignore_cache":false}'), +(17895, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.193+00', '{"cached":null,"ignore_cache":false}'), +(17896, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.454+00', '{"cached":null,"ignore_cache":null}'), +(17897, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.935+00', '{"cached":null,"ignore_cache":false}'), +(17898, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.96+00', '{"cached":null,"ignore_cache":false}'), +(17899, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.965+00', '{"cached":null,"ignore_cache":false}'), +(17900, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.967+00', '{"cached":null,"ignore_cache":false}'), +(17901, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:28.979+00', '{"cached":null,"ignore_cache":false}'), +(17902, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.393+00', '{"cached":null,"ignore_cache":false}'), +(17903, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.409+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17904, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.502+00', '{"cached":null,"ignore_cache":false}'), +(17905, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.523+00', '{"cached":null,"ignore_cache":false}'), +(17906, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.529+00', '{"cached":null,"ignore_cache":false}'), +(17907, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.579+00', '{"cached":null,"ignore_cache":false}'), +(17908, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.579+00', '{"cached":null,"ignore_cache":false}'), +(17909, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.587+00', '{"cached":null,"ignore_cache":false}'), +(17910, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.61+00', '{"cached":null,"ignore_cache":false}'), +(17911, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.623+00', '{"cached":null,"ignore_cache":false}'), +(17912, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:29.635+00', '{"cached":null,"ignore_cache":false}'), +(17913, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.294+00', '{"cached":null,"ignore_cache":null}'), +(17914, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.944+00', '{"cached":null,"ignore_cache":false}'), +(17915, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.952+00', '{"cached":null,"ignore_cache":false}'), +(17916, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:45.963+00', '{"cached":null,"ignore_cache":false}'), +(17917, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.035+00', '{"cached":null,"ignore_cache":false}'), +(17918, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.052+00', '{"cached":null,"ignore_cache":false}'), +(17919, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.226+00', '{"cached":null,"ignore_cache":false}'), +(17920, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.371+00', '{"cached":null,"ignore_cache":false}'), +(17921, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.503+00', '{"cached":null,"ignore_cache":false}'), +(17922, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:46.609+00', '{"cached":null,"ignore_cache":false}'), +(17923, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.391+00', '{"cached":null,"ignore_cache":false}'), +(17924, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.503+00', '{"cached":null,"ignore_cache":false}'), +(17925, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.563+00', '{"cached":null,"ignore_cache":false}'), +(17926, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.571+00', '{"cached":null,"ignore_cache":false}'), +(17927, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.583+00', '{"cached":null,"ignore_cache":false}'), +(17928, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.657+00', '{"cached":null,"ignore_cache":false}'), +(17929, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.701+00', '{"cached":null,"ignore_cache":false}'), +(17930, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.707+00', '{"cached":null,"ignore_cache":false}'), +(17931, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.721+00', '{"cached":null,"ignore_cache":false}'), +(17932, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.745+00', '{"cached":null,"ignore_cache":false}'), +(17933, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.801+00', '{"cached":null,"ignore_cache":false}'), +(17934, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.836+00', '{"cached":null,"ignore_cache":false}'), +(17935, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.88+00', '{"cached":null,"ignore_cache":false}'), +(17936, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.886+00', '{"cached":null,"ignore_cache":false}'), +(17937, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.928+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17938, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:42:56.976+00', '{"cached":null,"ignore_cache":false}'), +(17939, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.663+00', '{"cached":null,"ignore_cache":false}'), +(17940, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.687+00', '{"cached":null,"ignore_cache":false}'), +(17941, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.694+00', '{"cached":null,"ignore_cache":false}'), +(17942, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.731+00', '{"cached":null,"ignore_cache":false}'), +(17943, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.742+00', '{"cached":null,"ignore_cache":false}'), +(17944, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.746+00', '{"cached":null,"ignore_cache":false}'), +(17945, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.75+00', '{"cached":null,"ignore_cache":false}'), +(17946, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.751+00', '{"cached":null,"ignore_cache":false}'), +(17947, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:08.769+00', '{"cached":null,"ignore_cache":false}'), +(17948, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:16.074+00', '{"cached":null,"ignore_cache":false}'), +(17949, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:16.076+00', '{"cached":null,"ignore_cache":false}'), +(17950, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:16.082+00', '{"cached":null,"ignore_cache":false}'), +(17951, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:16.115+00', '{"cached":null,"ignore_cache":false}'), +(17952, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:16.122+00', '{"cached":null,"ignore_cache":false}'), +(17953, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:16.153+00', '{"cached":null,"ignore_cache":false}'), +(17954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:43:16.164+00', '{"cached":null,"ignore_cache":false}'), +(17955, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.485+00', '{"cached":null,"ignore_cache":false}'), +(17956, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.847+00', '{"cached":null,"ignore_cache":false}'), +(17957, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.886+00', '{"cached":null,"ignore_cache":false}'), +(17958, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.944+00', '{"cached":null,"ignore_cache":false}'), +(17959, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.975+00', '{"cached":null,"ignore_cache":false}'), +(17960, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:37.98+00', '{"cached":null,"ignore_cache":false}'), +(17961, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.014+00', '{"cached":null,"ignore_cache":false}'), +(17962, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.015+00', '{"cached":null,"ignore_cache":false}'), +(17963, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.018+00', '{"cached":null,"ignore_cache":false}'), +(17964, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.074+00', '{"cached":null,"ignore_cache":false}'), +(17965, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.28+00', '{"cached":null,"ignore_cache":false}'), +(17966, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.477+00', '{"cached":null,"ignore_cache":false}'), +(17967, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.581+00', '{"cached":null,"ignore_cache":false}'), +(17968, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.591+00', '{"cached":null,"ignore_cache":false}'), +(17969, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.611+00', '{"cached":null,"ignore_cache":false}'), +(17970, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.643+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(17971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.717+00', '{"cached":null,"ignore_cache":false}'), +(17972, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.727+00', '{"cached":null,"ignore_cache":false}'), +(17973, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.734+00', '{"cached":null,"ignore_cache":false}'), +(17974, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.753+00', '{"cached":null,"ignore_cache":false}'), +(17975, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.796+00', '{"cached":null,"ignore_cache":false}'), +(17976, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.84+00', '{"cached":null,"ignore_cache":false}'), +(17977, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.916+00', '{"cached":null,"ignore_cache":false}'), +(17978, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.922+00', '{"cached":null,"ignore_cache":false}'), +(17979, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:38.937+00', '{"cached":null,"ignore_cache":false}'), +(17980, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.032+00', '{"cached":null,"ignore_cache":false}'), +(17981, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.261+00', '{"cached":null,"ignore_cache":false}'), +(17982, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.276+00', '{"cached":null,"ignore_cache":false}'), +(17983, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.322+00', '{"cached":null,"ignore_cache":false}'), +(17984, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.386+00', '{"cached":null,"ignore_cache":false}'), +(17985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.398+00', '{"cached":null,"ignore_cache":false}'), +(17986, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:44:39.406+00', '{"cached":null,"ignore_cache":false}'), +(17987, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.036+00', '{"cached":null,"ignore_cache":false}'), +(17988, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.038+00', '{"cached":null,"ignore_cache":false}'), +(17989, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.092+00', '{"cached":null,"ignore_cache":false}'), +(17990, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.114+00', '{"cached":null,"ignore_cache":false}'), +(17991, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.181+00', '{"cached":null,"ignore_cache":false}'), +(17992, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.23+00', '{"cached":null,"ignore_cache":false}'), +(17993, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.305+00', '{"cached":null,"ignore_cache":false}'), +(17994, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.342+00', '{"cached":null,"ignore_cache":false}'), +(17995, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.568+00', '{"cached":null,"ignore_cache":false}'), +(17996, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.606+00', '{"cached":null,"ignore_cache":false}'), +(17997, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.677+00', '{"cached":null,"ignore_cache":false}'), +(17998, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.712+00', '{"cached":null,"ignore_cache":false}'), +(17999, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.791+00', '{"cached":null,"ignore_cache":false}'), +(18000, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.791+00', '{"cached":null,"ignore_cache":false}'), +(18001, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.814+00', '{"cached":null,"ignore_cache":false}'), +(18002, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.82+00', '{"cached":null,"ignore_cache":false}'), +(18003, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.981+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18004, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:22.993+00', '{"cached":null,"ignore_cache":false}'), +(18005, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.025+00', '{"cached":null,"ignore_cache":false}'), +(18006, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.029+00', '{"cached":null,"ignore_cache":false}'), +(18007, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.039+00', '{"cached":null,"ignore_cache":false}'), +(18008, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.04+00', '{"cached":null,"ignore_cache":false}'), +(18009, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.057+00', '{"cached":null,"ignore_cache":false}'), +(18010, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.086+00', '{"cached":null,"ignore_cache":false}'), +(18011, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.092+00', '{"cached":null,"ignore_cache":false}'), +(18012, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.344+00', '{"cached":null,"ignore_cache":false}'), +(18013, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.431+00', '{"cached":null,"ignore_cache":false}'), +(18014, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.782+00', '{"cached":null,"ignore_cache":false}'), +(18015, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.854+00', '{"cached":null,"ignore_cache":false}'), +(18016, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.859+00', '{"cached":null,"ignore_cache":false}'), +(18017, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:23.893+00', '{"cached":null,"ignore_cache":false}'), +(18018, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:24.016+00', '{"cached":null,"ignore_cache":false}'), +(18019, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:45:24.035+00', '{"cached":null,"ignore_cache":false}'), +(18020, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.624+00', '{"cached":null,"ignore_cache":false}'), +(18021, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.76+00', '{"cached":null,"ignore_cache":false}'), +(18022, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.773+00', '{"cached":null,"ignore_cache":false}'), +(18023, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.796+00', '{"cached":null,"ignore_cache":false}'), +(18024, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.821+00', '{"cached":null,"ignore_cache":false}'), +(18025, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.855+00', '{"cached":null,"ignore_cache":false}'), +(18026, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:02.866+00', '{"cached":null,"ignore_cache":false}'), +(18027, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.876+00', '{"cached":null,"ignore_cache":false}'), +(18028, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.878+00', '{"cached":null,"ignore_cache":false}'), +(18029, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.905+00', '{"cached":null,"ignore_cache":false}'), +(18030, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.941+00', '{"cached":null,"ignore_cache":false}'), +(18031, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.964+00', '{"cached":null,"ignore_cache":false}'), +(18032, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.988+00', '{"cached":null,"ignore_cache":false}'), +(18033, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:03.996+00', '{"cached":null,"ignore_cache":false}'), +(18034, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:04.008+00', '{"cached":null,"ignore_cache":false}'), +(18035, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:04.017+00', '{"cached":null,"ignore_cache":false}'), +(18036, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.959+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18037, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.978+00', '{"cached":null,"ignore_cache":false}'), +(18038, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:42.991+00', '{"cached":null,"ignore_cache":false}'), +(18039, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:43.046+00', '{"cached":null,"ignore_cache":false}'), +(18040, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:43.05+00', '{"cached":null,"ignore_cache":false}'), +(18041, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:43.072+00', '{"cached":null,"ignore_cache":false}'), +(18042, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:43.08+00', '{"cached":null,"ignore_cache":false}'), +(18043, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:43.095+00', '{"cached":null,"ignore_cache":false}'), +(18044, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:43.113+00', '{"cached":null,"ignore_cache":false}'), +(18045, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.34+00', '{"cached":null,"ignore_cache":false}'), +(18046, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.409+00', '{"cached":null,"ignore_cache":false}'), +(18047, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.423+00', '{"cached":null,"ignore_cache":false}'), +(18048, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.447+00', '{"cached":null,"ignore_cache":false}'), +(18049, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.477+00', '{"cached":null,"ignore_cache":false}'), +(18050, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.489+00', '{"cached":null,"ignore_cache":false}'), +(18051, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:51.526+00', '{"cached":null,"ignore_cache":false}'), +(18052, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.11+00', '{"cached":null,"ignore_cache":null}'), +(18053, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.65+00', '{"cached":null,"ignore_cache":false}'), +(18054, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.657+00', '{"cached":null,"ignore_cache":false}'), +(18055, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.666+00', '{"cached":null,"ignore_cache":false}'), +(18056, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:58.963+00', '{"cached":null,"ignore_cache":false}'), +(18057, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:59.142+00', '{"cached":null,"ignore_cache":false}'), +(18058, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:59.162+00', '{"cached":null,"ignore_cache":false}'), +(18059, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:46:59.211+00', '{"cached":null,"ignore_cache":false}'), +(18060, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:06.879+00', '{"cached":null,"ignore_cache":null}'), +(18061, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.361+00', '{"cached":null,"ignore_cache":false}'), +(18062, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.497+00', '{"cached":null,"ignore_cache":false}'), +(18063, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.698+00', '{"cached":null,"ignore_cache":false}'), +(18064, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.839+00', '{"cached":null,"ignore_cache":false}'), +(18065, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.857+00', '{"cached":null,"ignore_cache":false}'), +(18066, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.885+00', '{"cached":null,"ignore_cache":false}'), +(18067, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.905+00', '{"cached":null,"ignore_cache":false}'), +(18068, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:07.942+00', '{"cached":null,"ignore_cache":false}'), +(18069, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:08.068+00', '{"cached":null,"ignore_cache":false}'), +(18070, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.377+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18071, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.455+00', '{"cached":null,"ignore_cache":false}'), +(18072, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.463+00', '{"cached":null,"ignore_cache":false}'), +(18073, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.498+00', '{"cached":null,"ignore_cache":false}'), +(18074, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.506+00', '{"cached":null,"ignore_cache":false}'), +(18075, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.546+00', '{"cached":null,"ignore_cache":false}'), +(18076, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.703+00', '{"cached":null,"ignore_cache":false}'), +(18077, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.739+00', '{"cached":null,"ignore_cache":false}'), +(18078, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:22.74+00', '{"cached":null,"ignore_cache":false}'), +(18079, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.059+00', '{"cached":null,"ignore_cache":false}'), +(18080, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.112+00', '{"cached":null,"ignore_cache":false}'), +(18081, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.123+00', '{"cached":null,"ignore_cache":false}'), +(18082, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.168+00', '{"cached":null,"ignore_cache":false}'), +(18083, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.18+00', '{"cached":null,"ignore_cache":false}'), +(18084, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.216+00', '{"cached":null,"ignore_cache":false}'), +(18085, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:47:30.22+00', '{"cached":null,"ignore_cache":false}'), +(18086, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.813+00', '{"cached":null,"ignore_cache":false}'), +(18087, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.826+00', '{"cached":null,"ignore_cache":false}'), +(18088, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.898+00', '{"cached":null,"ignore_cache":false}'), +(18089, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.918+00', '{"cached":null,"ignore_cache":false}'), +(18090, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.933+00', '{"cached":null,"ignore_cache":false}'), +(18091, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.946+00', '{"cached":null,"ignore_cache":false}'), +(18092, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.949+00', '{"cached":null,"ignore_cache":false}'), +(18093, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:00.98+00', '{"cached":null,"ignore_cache":false}'), +(18094, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:01.034+00', '{"cached":null,"ignore_cache":false}'), +(18095, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.472+00', '{"cached":null,"ignore_cache":false}'), +(18096, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.494+00', '{"cached":null,"ignore_cache":false}'), +(18097, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.506+00', '{"cached":null,"ignore_cache":false}'), +(18098, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.51+00', '{"cached":null,"ignore_cache":false}'), +(18099, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.543+00', '{"cached":null,"ignore_cache":false}'), +(18100, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.548+00', '{"cached":null,"ignore_cache":false}'), +(18101, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:17.549+00', '{"cached":null,"ignore_cache":false}'), +(18102, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.467+00', '{"cached":null,"ignore_cache":false}'), +(18103, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.476+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18104, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.512+00', '{"cached":null,"ignore_cache":false}'), +(18105, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.552+00', '{"cached":null,"ignore_cache":false}'), +(18106, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.581+00', '{"cached":null,"ignore_cache":false}'), +(18107, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.59+00', '{"cached":null,"ignore_cache":false}'), +(18108, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.606+00', '{"cached":null,"ignore_cache":false}'), +(18109, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.732+00', '{"cached":null,"ignore_cache":false}'), +(18110, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:46.915+00', '{"cached":null,"ignore_cache":false}'), +(18111, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.08+00', '{"cached":null,"ignore_cache":false}'), +(18112, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.188+00', '{"cached":null,"ignore_cache":false}'), +(18113, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.206+00', '{"cached":null,"ignore_cache":false}'), +(18114, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.352+00', '{"cached":null,"ignore_cache":false}'), +(18115, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.448+00', '{"cached":null,"ignore_cache":false}'), +(18116, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:47.991+00', '{"cached":null,"ignore_cache":false}'), +(18117, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.145+00', '{"cached":null,"ignore_cache":false}'), +(18118, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.149+00', '{"cached":null,"ignore_cache":false}'), +(18119, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.248+00', '{"cached":null,"ignore_cache":false}'), +(18120, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.284+00', '{"cached":null,"ignore_cache":false}'), +(18121, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.298+00', '{"cached":null,"ignore_cache":false}'), +(18122, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.303+00', '{"cached":null,"ignore_cache":false}'), +(18123, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.319+00', '{"cached":null,"ignore_cache":false}'), +(18124, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.336+00', '{"cached":null,"ignore_cache":false}'), +(18125, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.82+00', '{"cached":null,"ignore_cache":false}'), +(18126, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.84+00', '{"cached":null,"ignore_cache":false}'), +(18127, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.882+00', '{"cached":null,"ignore_cache":false}'), +(18128, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.886+00', '{"cached":null,"ignore_cache":false}'), +(18129, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.89+00', '{"cached":null,"ignore_cache":false}'), +(18130, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.917+00', '{"cached":null,"ignore_cache":false}'), +(18131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.922+00', '{"cached":null,"ignore_cache":false}'), +(18132, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.932+00', '{"cached":null,"ignore_cache":false}'), +(18133, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:48:48.974+00', '{"cached":null,"ignore_cache":false}'), +(18134, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.867+00', '{"cached":null,"ignore_cache":false}'), +(18135, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.943+00', '{"cached":null,"ignore_cache":false}'), +(18136, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.952+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18137, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.959+00', '{"cached":null,"ignore_cache":false}'), +(18138, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.971+00', '{"cached":null,"ignore_cache":false}'), +(18139, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.985+00', '{"cached":null,"ignore_cache":false}'), +(18140, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:28.992+00', '{"cached":null,"ignore_cache":false}'), +(18141, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.665+00', '{"cached":null,"ignore_cache":false}'), +(18142, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.718+00', '{"cached":null,"ignore_cache":false}'), +(18143, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.721+00', '{"cached":null,"ignore_cache":false}'), +(18144, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.784+00', '{"cached":null,"ignore_cache":false}'), +(18145, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.789+00', '{"cached":null,"ignore_cache":false}'), +(18146, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.793+00', '{"cached":null,"ignore_cache":false}'), +(18147, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.821+00', '{"cached":null,"ignore_cache":false}'), +(18148, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.848+00', '{"cached":null,"ignore_cache":false}'), +(18149, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:49:29.863+00', '{"cached":null,"ignore_cache":false}'), +(18150, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.882+00', '{"cached":null,"ignore_cache":false}'), +(18151, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.898+00', '{"cached":null,"ignore_cache":false}'), +(18152, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.92+00', '{"cached":null,"ignore_cache":false}'), +(18153, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.941+00', '{"cached":null,"ignore_cache":false}'), +(18154, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.948+00', '{"cached":null,"ignore_cache":false}'), +(18155, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.954+00', '{"cached":null,"ignore_cache":false}'), +(18156, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:15.962+00', '{"cached":null,"ignore_cache":false}'), +(18157, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.019+00', '{"cached":null,"ignore_cache":false}'), +(18158, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.022+00', '{"cached":null,"ignore_cache":false}'), +(18159, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.174+00', '{"cached":null,"ignore_cache":false}'), +(18160, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.183+00', '{"cached":null,"ignore_cache":false}'), +(18161, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.195+00', '{"cached":null,"ignore_cache":false}'), +(18162, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.219+00', '{"cached":null,"ignore_cache":false}'), +(18163, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.273+00', '{"cached":null,"ignore_cache":false}'), +(18164, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.676+00', '{"cached":null,"ignore_cache":false}'), +(18165, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.72+00', '{"cached":null,"ignore_cache":false}'), +(18166, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.862+00', '{"cached":null,"ignore_cache":false}'), +(18167, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.971+00', '{"cached":null,"ignore_cache":false}'), +(18168, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:16.985+00', '{"cached":null,"ignore_cache":false}'), +(18169, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.056+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18170, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.142+00', '{"cached":null,"ignore_cache":false}'), +(18171, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.152+00', '{"cached":null,"ignore_cache":false}'), +(18172, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.153+00', '{"cached":null,"ignore_cache":false}'), +(18173, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.172+00', '{"cached":null,"ignore_cache":false}'), +(18174, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.182+00', '{"cached":null,"ignore_cache":false}'), +(18175, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.192+00', '{"cached":null,"ignore_cache":false}'), +(18176, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.836+00', '{"cached":null,"ignore_cache":false}'), +(18177, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.844+00', '{"cached":null,"ignore_cache":false}'), +(18178, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.86+00', '{"cached":null,"ignore_cache":false}'), +(18179, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.878+00', '{"cached":null,"ignore_cache":false}'), +(18180, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.907+00', '{"cached":null,"ignore_cache":false}'), +(18181, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:50:17.917+00', '{"cached":null,"ignore_cache":false}'), +(18182, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.09+00', '{"cached":null,"ignore_cache":false}'), +(18183, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.155+00', '{"cached":null,"ignore_cache":false}'), +(18184, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.175+00', '{"cached":null,"ignore_cache":false}'), +(18185, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.179+00', '{"cached":null,"ignore_cache":false}'), +(18186, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.191+00', '{"cached":null,"ignore_cache":false}'), +(18187, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.2+00', '{"cached":null,"ignore_cache":false}'), +(18188, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.208+00', '{"cached":null,"ignore_cache":false}'), +(18189, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.215+00', '{"cached":null,"ignore_cache":false}'), +(18190, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.219+00', '{"cached":null,"ignore_cache":false}'), +(18191, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.366+00', '{"cached":null,"ignore_cache":false}'), +(18192, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.61+00', '{"cached":null,"ignore_cache":false}'), +(18193, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.649+00', '{"cached":null,"ignore_cache":false}'), +(18194, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.695+00', '{"cached":null,"ignore_cache":false}'), +(18195, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.706+00', '{"cached":null,"ignore_cache":false}'), +(18196, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.71+00', '{"cached":null,"ignore_cache":false}'), +(18197, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.719+00', '{"cached":null,"ignore_cache":false}'), +(18198, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.752+00', '{"cached":null,"ignore_cache":false}'), +(18199, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.784+00', '{"cached":null,"ignore_cache":false}'), +(18200, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:08.993+00', '{"cached":null,"ignore_cache":false}'), +(18201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.053+00', '{"cached":null,"ignore_cache":false}'), +(18202, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.058+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18203, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.076+00', '{"cached":null,"ignore_cache":false}'), +(18204, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.086+00', '{"cached":null,"ignore_cache":false}'), +(18205, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.108+00', '{"cached":null,"ignore_cache":false}'), +(18206, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.12+00', '{"cached":null,"ignore_cache":false}'), +(18207, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.212+00', '{"cached":null,"ignore_cache":false}'), +(18208, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.329+00', '{"cached":null,"ignore_cache":false}'), +(18209, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.418+00', '{"cached":null,"ignore_cache":false}'), +(18210, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.434+00', '{"cached":null,"ignore_cache":false}'), +(18211, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.466+00', '{"cached":null,"ignore_cache":false}'), +(18212, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.498+00', '{"cached":null,"ignore_cache":false}'), +(18213, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:51:09.504+00', '{"cached":null,"ignore_cache":false}'), +(18214, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.777+00', '{"cached":null,"ignore_cache":false}'), +(18215, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:01.933+00', '{"cached":null,"ignore_cache":false}'), +(18216, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:02.018+00', '{"cached":null,"ignore_cache":false}'), +(18217, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:02.252+00', '{"cached":null,"ignore_cache":false}'), +(18218, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:02.37+00', '{"cached":null,"ignore_cache":false}'), +(18219, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.717+00', '{"cached":null,"ignore_cache":false}'), +(18220, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.857+00', '{"cached":null,"ignore_cache":false}'), +(18221, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:03.857+00', '{"cached":null,"ignore_cache":false}'), +(18222, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.037+00', '{"cached":null,"ignore_cache":false}'), +(18223, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.358+00', '{"cached":null,"ignore_cache":false}'), +(18224, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.513+00', '{"cached":null,"ignore_cache":false}'), +(18225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.75+00', '{"cached":null,"ignore_cache":false}'), +(18226, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.831+00', '{"cached":null,"ignore_cache":false}'), +(18227, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.87+00', '{"cached":null,"ignore_cache":false}'), +(18228, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.921+00', '{"cached":null,"ignore_cache":false}'), +(18229, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.945+00', '{"cached":null,"ignore_cache":false}'), +(18230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:04.993+00', '{"cached":null,"ignore_cache":false}'), +(18231, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.07+00', '{"cached":null,"ignore_cache":false}'), +(18232, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.098+00', '{"cached":null,"ignore_cache":false}'), +(18233, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.193+00', '{"cached":null,"ignore_cache":false}'), +(18234, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.223+00', '{"cached":null,"ignore_cache":false}'), +(18235, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.377+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18236, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.424+00', '{"cached":null,"ignore_cache":false}'), +(18237, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.511+00', '{"cached":null,"ignore_cache":false}'), +(18238, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.622+00', '{"cached":null,"ignore_cache":false}'), +(18239, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.639+00', '{"cached":null,"ignore_cache":false}'), +(18240, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.669+00', '{"cached":null,"ignore_cache":false}'), +(18241, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.876+00', '{"cached":null,"ignore_cache":false}'), +(18242, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:05.982+00', '{"cached":null,"ignore_cache":false}'), +(18243, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:06.087+00', '{"cached":null,"ignore_cache":false}'), +(18244, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.457+00', '{"cached":null,"ignore_cache":false}'), +(18245, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.644+00', '{"cached":null,"ignore_cache":false}'), +(18246, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.687+00', '{"cached":null,"ignore_cache":false}'), +(18247, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.694+00', '{"cached":null,"ignore_cache":false}'), +(18248, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.702+00', '{"cached":null,"ignore_cache":false}'), +(18249, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.752+00', '{"cached":null,"ignore_cache":false}'), +(18250, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.836+00', '{"cached":null,"ignore_cache":false}'), +(18251, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.849+00', '{"cached":null,"ignore_cache":false}'), +(18252, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:46.943+00', '{"cached":null,"ignore_cache":false}'), +(18253, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.056+00', '{"cached":null,"ignore_cache":false}'), +(18254, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.129+00', '{"cached":null,"ignore_cache":false}'), +(18255, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.298+00', '{"cached":null,"ignore_cache":false}'), +(18256, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.339+00', '{"cached":null,"ignore_cache":false}'), +(18257, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.428+00', '{"cached":null,"ignore_cache":false}'), +(18258, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.431+00', '{"cached":null,"ignore_cache":false}'), +(18259, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.482+00', '{"cached":null,"ignore_cache":false}'), +(18260, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.489+00', '{"cached":null,"ignore_cache":false}'), +(18261, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.533+00', '{"cached":null,"ignore_cache":false}'), +(18262, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.551+00', '{"cached":null,"ignore_cache":false}'), +(18263, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.566+00', '{"cached":null,"ignore_cache":false}'), +(18264, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.59+00', '{"cached":null,"ignore_cache":false}'), +(18265, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.598+00', '{"cached":null,"ignore_cache":false}'), +(18266, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.613+00', '{"cached":null,"ignore_cache":false}'), +(18267, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.622+00', '{"cached":null,"ignore_cache":false}'), +(18268, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.643+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18269, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.717+00', '{"cached":null,"ignore_cache":false}'), +(18270, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.751+00', '{"cached":null,"ignore_cache":false}'), +(18271, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.774+00', '{"cached":null,"ignore_cache":false}'), +(18272, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.788+00', '{"cached":null,"ignore_cache":false}'), +(18273, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.799+00', '{"cached":null,"ignore_cache":false}'), +(18274, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.838+00', '{"cached":null,"ignore_cache":false}'), +(18275, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 12:52:47.884+00', '{"cached":null,"ignore_cache":false}'), +(18276, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:28.818+00', '{"cached":null,"ignore_cache":null}'), +(18277, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:29.978+00', '{"cached":null,"ignore_cache":false}'), +(18278, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.018+00', '{"cached":null,"ignore_cache":false}'), +(18279, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.121+00', '{"cached":null,"ignore_cache":false}'), +(18280, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.442+00', '{"cached":null,"ignore_cache":false}'), +(18281, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.518+00', '{"cached":null,"ignore_cache":false}'), +(18282, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.558+00', '{"cached":null,"ignore_cache":false}'), +(18283, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.622+00', '{"cached":null,"ignore_cache":false}'), +(18284, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.646+00', '{"cached":null,"ignore_cache":false}'), +(18285, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:13:30.703+00', '{"cached":null,"ignore_cache":false}'), +(18286, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.323+00', '{"cached":null,"ignore_cache":false}'), +(18287, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.636+00', '{"cached":null,"ignore_cache":false}'), +(18288, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.693+00', '{"cached":null,"ignore_cache":false}'), +(18289, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:31.993+00', '{"cached":null,"ignore_cache":false}'), +(18290, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.002+00', '{"cached":null,"ignore_cache":false}'), +(18291, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.04+00', '{"cached":null,"ignore_cache":false}'), +(18292, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.192+00', '{"cached":null,"ignore_cache":false}'), +(18293, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.195+00', '{"cached":null,"ignore_cache":false}'), +(18294, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.249+00', '{"cached":null,"ignore_cache":false}'), +(18295, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.259+00', '{"cached":null,"ignore_cache":false}'), +(18296, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.265+00', '{"cached":null,"ignore_cache":false}'), +(18297, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.592+00', '{"cached":null,"ignore_cache":false}'), +(18298, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.623+00', '{"cached":null,"ignore_cache":false}'), +(18299, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.724+00', '{"cached":null,"ignore_cache":false}'), +(18300, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.879+00', '{"cached":null,"ignore_cache":false}'), +(18301, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.915+00', '{"cached":null,"ignore_cache":false}'), +(18302, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.927+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18303, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:32.959+00', '{"cached":null,"ignore_cache":false}'), +(18304, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:33.226+00', '{"cached":null,"ignore_cache":false}'), +(18305, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:25:33.544+00', '{"cached":null,"ignore_cache":false}'), +(18306, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.221+00', '{"cached":null,"ignore_cache":false}'), +(18307, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.29+00', '{"cached":null,"ignore_cache":false}'), +(18308, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.364+00', '{"cached":null,"ignore_cache":false}'), +(18309, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.399+00', '{"cached":null,"ignore_cache":false}'), +(18310, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.423+00', '{"cached":null,"ignore_cache":false}'), +(18311, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.432+00', '{"cached":null,"ignore_cache":false}'), +(18312, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.471+00', '{"cached":null,"ignore_cache":false}'), +(18313, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.533+00', '{"cached":null,"ignore_cache":false}'), +(18314, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.548+00', '{"cached":null,"ignore_cache":false}'), +(18315, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.559+00', '{"cached":null,"ignore_cache":false}'), +(18316, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.566+00', '{"cached":null,"ignore_cache":false}'), +(18317, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.585+00', '{"cached":null,"ignore_cache":false}'), +(18318, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.591+00', '{"cached":null,"ignore_cache":false}'), +(18319, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.591+00', '{"cached":null,"ignore_cache":false}'), +(18320, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.598+00', '{"cached":null,"ignore_cache":false}'), +(18321, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:00.669+00', '{"cached":null,"ignore_cache":false}'), +(18322, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.372+00', '{"cached":null,"ignore_cache":false}'), +(18323, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.429+00', '{"cached":null,"ignore_cache":false}'), +(18324, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.433+00', '{"cached":null,"ignore_cache":false}'), +(18325, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.44+00', '{"cached":null,"ignore_cache":false}'), +(18326, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.47+00', '{"cached":null,"ignore_cache":false}'), +(18327, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.481+00', '{"cached":null,"ignore_cache":false}'), +(18328, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.492+00', '{"cached":null,"ignore_cache":false}'), +(18329, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.505+00', '{"cached":null,"ignore_cache":false}'), +(18330, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:30.568+00', '{"cached":null,"ignore_cache":false}'), +(18331, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.447+00', '{"cached":null,"ignore_cache":false}'), +(18332, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.503+00', '{"cached":null,"ignore_cache":false}'), +(18333, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.514+00', '{"cached":null,"ignore_cache":false}'), +(18334, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.557+00', '{"cached":null,"ignore_cache":false}'), +(18335, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.569+00', '{"cached":null,"ignore_cache":false}'), +(18336, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.601+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18337, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:26:40.621+00', '{"cached":null,"ignore_cache":false}'), +(18338, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.884+00', '{"cached":null,"ignore_cache":false}'), +(18339, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.973+00', '{"cached":null,"ignore_cache":false}'), +(18340, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:00.99+00', '{"cached":null,"ignore_cache":false}'), +(18341, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:01.025+00', '{"cached":null,"ignore_cache":false}'), +(18342, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:01.027+00', '{"cached":null,"ignore_cache":false}'), +(18343, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:01.099+00', '{"cached":null,"ignore_cache":false}'), +(18344, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:01.148+00', '{"cached":null,"ignore_cache":false}'), +(18345, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:01.34+00', '{"cached":null,"ignore_cache":false}'), +(18346, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:01.367+00', '{"cached":null,"ignore_cache":false}'), +(18347, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.331+00', '{"cached":null,"ignore_cache":false}'), +(18348, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.331+00', '{"cached":null,"ignore_cache":false}'), +(18349, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.347+00', '{"cached":null,"ignore_cache":false}'), +(18350, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.413+00', '{"cached":null,"ignore_cache":false}'), +(18351, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.43+00', '{"cached":null,"ignore_cache":false}'), +(18352, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.481+00', '{"cached":null,"ignore_cache":false}'), +(18353, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:23.544+00', '{"cached":null,"ignore_cache":false}'), +(18354, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.642+00', '{"cached":null,"ignore_cache":false}'), +(18355, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.644+00', '{"cached":null,"ignore_cache":false}'), +(18356, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.71+00', '{"cached":null,"ignore_cache":false}'), +(18357, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.721+00', '{"cached":null,"ignore_cache":false}'), +(18358, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.74+00', '{"cached":null,"ignore_cache":false}'), +(18359, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.753+00', '{"cached":null,"ignore_cache":false}'), +(18360, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.776+00', '{"cached":null,"ignore_cache":false}'), +(18361, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.784+00', '{"cached":null,"ignore_cache":false}'), +(18362, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:27:30.784+00', '{"cached":null,"ignore_cache":false}'), +(18363, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.584+00', '{"cached":null,"ignore_cache":false}'), +(18364, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.633+00', '{"cached":null,"ignore_cache":false}'), +(18365, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.651+00', '{"cached":null,"ignore_cache":false}'), +(18366, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.67+00', '{"cached":null,"ignore_cache":false}'), +(18367, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.673+00', '{"cached":null,"ignore_cache":false}'), +(18368, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.688+00', '{"cached":null,"ignore_cache":false}'), +(18369, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.719+00', '{"cached":null,"ignore_cache":false}'), +(18370, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.725+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18371, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.729+00', '{"cached":null,"ignore_cache":false}'), +(18372, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.743+00', '{"cached":null,"ignore_cache":false}'), +(18373, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.759+00', '{"cached":null,"ignore_cache":false}'), +(18374, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.767+00', '{"cached":null,"ignore_cache":false}'), +(18375, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.776+00', '{"cached":null,"ignore_cache":false}'), +(18376, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.776+00', '{"cached":null,"ignore_cache":false}'), +(18377, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.791+00', '{"cached":null,"ignore_cache":false}'), +(18378, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:00.8+00', '{"cached":null,"ignore_cache":false}'), +(18379, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.281+00', '{"cached":null,"ignore_cache":false}'), +(18380, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.371+00', '{"cached":null,"ignore_cache":false}'), +(18381, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.372+00', '{"cached":null,"ignore_cache":false}'), +(18382, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.379+00', '{"cached":null,"ignore_cache":false}'), +(18383, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.428+00', '{"cached":null,"ignore_cache":false}'), +(18384, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.5+00', '{"cached":null,"ignore_cache":false}'), +(18385, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.639+00', '{"cached":null,"ignore_cache":false}'), +(18386, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.664+00', '{"cached":null,"ignore_cache":false}'), +(18387, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:30.798+00', '{"cached":null,"ignore_cache":false}'), +(18388, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.456+00', '{"cached":null,"ignore_cache":false}'), +(18389, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.546+00', '{"cached":null,"ignore_cache":false}'), +(18390, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.63+00', '{"cached":null,"ignore_cache":false}'), +(18391, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.685+00', '{"cached":null,"ignore_cache":false}'), +(18392, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.71+00', '{"cached":null,"ignore_cache":false}'), +(18393, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.723+00', '{"cached":null,"ignore_cache":false}'), +(18394, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:28:32.737+00', '{"cached":null,"ignore_cache":false}'), +(18395, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.339+00', '{"cached":null,"ignore_cache":false}'), +(18396, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.495+00', '{"cached":null,"ignore_cache":false}'), +(18397, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.536+00', '{"cached":null,"ignore_cache":false}'), +(18398, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.576+00', '{"cached":null,"ignore_cache":false}'), +(18399, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.654+00', '{"cached":null,"ignore_cache":false}'), +(18400, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.67+00', '{"cached":null,"ignore_cache":false}'), +(18401, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.698+00', '{"cached":null,"ignore_cache":false}'), +(18402, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.706+00', '{"cached":null,"ignore_cache":false}'), +(18403, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:00.778+00', '{"cached":null,"ignore_cache":false}'), +(18404, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.361+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18405, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.383+00', '{"cached":null,"ignore_cache":false}'), +(18406, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.397+00', '{"cached":null,"ignore_cache":false}'), +(18407, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.418+00', '{"cached":null,"ignore_cache":false}'), +(18408, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.461+00', '{"cached":null,"ignore_cache":false}'), +(18409, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.48+00', '{"cached":null,"ignore_cache":false}'), +(18410, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:02.505+00', '{"cached":null,"ignore_cache":false}'), +(18411, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.272+00', '{"cached":null,"ignore_cache":false}'), +(18412, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.352+00', '{"cached":null,"ignore_cache":false}'), +(18413, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.363+00', '{"cached":null,"ignore_cache":false}'), +(18414, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.459+00', '{"cached":null,"ignore_cache":false}'), +(18415, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.597+00', '{"cached":null,"ignore_cache":false}'), +(18416, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.678+00', '{"cached":null,"ignore_cache":false}'), +(18417, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.69+00', '{"cached":null,"ignore_cache":false}'), +(18418, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.711+00', '{"cached":null,"ignore_cache":false}'), +(18419, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:30.779+00', '{"cached":null,"ignore_cache":false}'), +(18420, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.303+00', '{"cached":null,"ignore_cache":false}'), +(18421, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.306+00', '{"cached":null,"ignore_cache":false}'), +(18422, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.375+00', '{"cached":null,"ignore_cache":false}'), +(18423, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.396+00', '{"cached":null,"ignore_cache":false}'), +(18424, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.418+00', '{"cached":null,"ignore_cache":false}'), +(18425, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.426+00', '{"cached":null,"ignore_cache":false}'), +(18426, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:29:32.454+00', '{"cached":null,"ignore_cache":false}'), +(18427, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.184+00', '{"cached":null,"ignore_cache":false}'), +(18428, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.237+00', '{"cached":null,"ignore_cache":false}'), +(18429, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.268+00', '{"cached":null,"ignore_cache":false}'), +(18430, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.306+00', '{"cached":null,"ignore_cache":false}'), +(18431, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.333+00', '{"cached":null,"ignore_cache":false}'), +(18432, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.343+00', '{"cached":null,"ignore_cache":false}'), +(18433, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.38+00', '{"cached":null,"ignore_cache":false}'), +(18434, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.419+00', '{"cached":null,"ignore_cache":false}'), +(18435, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:00.478+00', '{"cached":null,"ignore_cache":false}'), +(18436, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.308+00', '{"cached":null,"ignore_cache":false}'), +(18437, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.399+00', '{"cached":null,"ignore_cache":false}'), +(18438, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.426+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18439, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.453+00', '{"cached":null,"ignore_cache":false}'), +(18440, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.503+00', '{"cached":null,"ignore_cache":false}'), +(18441, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.586+00', '{"cached":null,"ignore_cache":false}'), +(18442, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:02.594+00', '{"cached":null,"ignore_cache":false}'), +(18443, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.198+00', '{"cached":null,"ignore_cache":false}'), +(18444, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.38+00', '{"cached":null,"ignore_cache":false}'), +(18445, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.435+00', '{"cached":null,"ignore_cache":false}'), +(18446, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.443+00', '{"cached":null,"ignore_cache":false}'), +(18447, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.484+00', '{"cached":null,"ignore_cache":false}'), +(18448, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.587+00', '{"cached":null,"ignore_cache":false}'), +(18449, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.621+00', '{"cached":null,"ignore_cache":false}'), +(18450, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.622+00', '{"cached":null,"ignore_cache":false}'), +(18451, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:30.63+00', '{"cached":null,"ignore_cache":false}'), +(18452, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.308+00', '{"cached":null,"ignore_cache":false}'), +(18453, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.337+00', '{"cached":null,"ignore_cache":false}'), +(18454, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.41+00', '{"cached":null,"ignore_cache":false}'), +(18455, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.474+00', '{"cached":null,"ignore_cache":false}'), +(18456, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.482+00', '{"cached":null,"ignore_cache":false}'), +(18457, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.486+00', '{"cached":null,"ignore_cache":false}'), +(18458, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:30:32.502+00', '{"cached":null,"ignore_cache":false}'), +(18459, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.244+00', '{"cached":null,"ignore_cache":false}'), +(18460, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.324+00', '{"cached":null,"ignore_cache":false}'), +(18461, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.333+00', '{"cached":null,"ignore_cache":false}'), +(18462, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.338+00', '{"cached":null,"ignore_cache":false}'), +(18463, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.373+00', '{"cached":null,"ignore_cache":false}'), +(18464, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.376+00', '{"cached":null,"ignore_cache":false}'), +(18465, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.552+00', '{"cached":null,"ignore_cache":false}'), +(18466, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.567+00', '{"cached":null,"ignore_cache":false}'), +(18467, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:00.652+00', '{"cached":null,"ignore_cache":false}'), +(18468, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.842+00', '{"cached":null,"ignore_cache":false}'), +(18469, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.847+00', '{"cached":null,"ignore_cache":false}'), +(18470, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.858+00', '{"cached":null,"ignore_cache":false}'), +(18471, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.859+00', '{"cached":null,"ignore_cache":false}'), +(18472, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.862+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18473, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.88+00', '{"cached":null,"ignore_cache":false}'), +(18474, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:02.926+00', '{"cached":null,"ignore_cache":false}'), +(18475, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.779+00', '{"cached":null,"ignore_cache":false}'), +(18476, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.862+00', '{"cached":null,"ignore_cache":false}'), +(18477, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.899+00', '{"cached":null,"ignore_cache":false}'), +(18478, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.91+00', '{"cached":null,"ignore_cache":false}'), +(18479, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.937+00', '{"cached":null,"ignore_cache":false}'), +(18480, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.947+00', '{"cached":null,"ignore_cache":false}'), +(18481, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.964+00', '{"cached":null,"ignore_cache":false}'), +(18482, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:30.968+00', '{"cached":null,"ignore_cache":false}'), +(18483, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:31.033+00', '{"cached":null,"ignore_cache":false}'), +(18484, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.467+00', '{"cached":null,"ignore_cache":false}'), +(18485, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.494+00', '{"cached":null,"ignore_cache":false}'), +(18486, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.507+00', '{"cached":null,"ignore_cache":false}'), +(18487, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.507+00', '{"cached":null,"ignore_cache":false}'), +(18488, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.508+00', '{"cached":null,"ignore_cache":false}'), +(18489, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.527+00', '{"cached":null,"ignore_cache":false}'), +(18490, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:31:36.546+00', '{"cached":null,"ignore_cache":false}'), +(18491, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.95+00', '{"cached":null,"ignore_cache":false}'), +(18492, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:00.968+00', '{"cached":null,"ignore_cache":false}'), +(18493, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:01.038+00', '{"cached":null,"ignore_cache":false}'), +(18494, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:01.046+00', '{"cached":null,"ignore_cache":false}'), +(18495, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:01.071+00', '{"cached":null,"ignore_cache":false}'), +(18496, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:01.153+00', '{"cached":null,"ignore_cache":false}'), +(18497, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:01.17+00', '{"cached":null,"ignore_cache":false}'), +(18498, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:01.22+00', '{"cached":null,"ignore_cache":false}'), +(18499, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:01.329+00', '{"cached":null,"ignore_cache":false}'), +(18500, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.389+00', '{"cached":null,"ignore_cache":false}'), +(18501, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.392+00', '{"cached":null,"ignore_cache":false}'), +(18502, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.424+00', '{"cached":null,"ignore_cache":false}'), +(18503, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.426+00', '{"cached":null,"ignore_cache":false}'), +(18504, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.435+00', '{"cached":null,"ignore_cache":false}'), +(18505, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.438+00', '{"cached":null,"ignore_cache":false}'), +(18506, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:14.443+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18507, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.848+00', '{"cached":null,"ignore_cache":false}'), +(18508, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.867+00', '{"cached":null,"ignore_cache":false}'), +(18509, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:30.915+00', '{"cached":null,"ignore_cache":false}'), +(18510, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:31.079+00', '{"cached":null,"ignore_cache":false}'), +(18511, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:31.08+00', '{"cached":null,"ignore_cache":false}'), +(18512, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:31.122+00', '{"cached":null,"ignore_cache":false}'), +(18513, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:31.122+00', '{"cached":null,"ignore_cache":false}'), +(18514, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:31.149+00', '{"cached":null,"ignore_cache":false}'), +(18515, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:31.192+00', '{"cached":null,"ignore_cache":false}'), +(18516, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.438+00', '{"cached":null,"ignore_cache":false}'), +(18517, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.453+00', '{"cached":null,"ignore_cache":false}'), +(18518, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.461+00', '{"cached":null,"ignore_cache":false}'), +(18519, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.466+00', '{"cached":null,"ignore_cache":false}'), +(18520, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.48+00', '{"cached":null,"ignore_cache":false}'), +(18521, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.488+00', '{"cached":null,"ignore_cache":false}'), +(18522, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:32:55.526+00', '{"cached":null,"ignore_cache":false}'), +(18523, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.677+00', '{"cached":null,"ignore_cache":false}'), +(18524, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.692+00', '{"cached":null,"ignore_cache":false}'), +(18525, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.885+00', '{"cached":null,"ignore_cache":false}'), +(18526, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.936+00', '{"cached":null,"ignore_cache":false}'), +(18527, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.951+00', '{"cached":null,"ignore_cache":false}'), +(18528, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.981+00', '{"cached":null,"ignore_cache":false}'), +(18529, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:00.986+00', '{"cached":null,"ignore_cache":false}'), +(18530, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:01.012+00', '{"cached":null,"ignore_cache":false}'), +(18531, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:01.022+00', '{"cached":null,"ignore_cache":false}'), +(18532, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.59+00', '{"cached":null,"ignore_cache":false}'), +(18533, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.745+00', '{"cached":null,"ignore_cache":false}'), +(18534, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.887+00', '{"cached":null,"ignore_cache":false}'), +(18535, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.901+00', '{"cached":null,"ignore_cache":false}'), +(18536, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.91+00', '{"cached":null,"ignore_cache":false}'), +(18537, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.918+00', '{"cached":null,"ignore_cache":false}'), +(18538, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:30.959+00', '{"cached":null,"ignore_cache":false}'), +(18539, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:31.001+00', '{"cached":null,"ignore_cache":false}'), +(18540, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:31.086+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18541, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.271+00', '{"cached":null,"ignore_cache":false}'), +(18542, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.281+00', '{"cached":null,"ignore_cache":false}'), +(18543, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.295+00', '{"cached":null,"ignore_cache":false}'), +(18544, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.297+00', '{"cached":null,"ignore_cache":false}'), +(18545, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.298+00', '{"cached":null,"ignore_cache":false}'), +(18546, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.32+00', '{"cached":null,"ignore_cache":false}'), +(18547, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:33:32.396+00', '{"cached":null,"ignore_cache":false}'), +(18548, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.504+00', '{"cached":null,"ignore_cache":false}'), +(18549, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.645+00', '{"cached":null,"ignore_cache":false}'), +(18550, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.695+00', '{"cached":null,"ignore_cache":false}'), +(18551, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.695+00', '{"cached":null,"ignore_cache":false}'), +(18552, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.748+00', '{"cached":null,"ignore_cache":false}'), +(18553, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.78+00', '{"cached":null,"ignore_cache":false}'), +(18554, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.869+00', '{"cached":null,"ignore_cache":false}'), +(18555, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.87+00', '{"cached":null,"ignore_cache":false}'), +(18556, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:00.921+00', '{"cached":null,"ignore_cache":false}'), +(18557, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.49+00', '{"cached":null,"ignore_cache":false}'), +(18558, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.494+00', '{"cached":null,"ignore_cache":false}'), +(18559, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.543+00', '{"cached":null,"ignore_cache":false}'), +(18560, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.55+00', '{"cached":null,"ignore_cache":false}'), +(18561, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.562+00', '{"cached":null,"ignore_cache":false}'), +(18562, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.587+00', '{"cached":null,"ignore_cache":false}'), +(18563, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:11.613+00', '{"cached":null,"ignore_cache":false}'), +(18564, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.468+00', '{"cached":null,"ignore_cache":false}'), +(18565, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.621+00', '{"cached":null,"ignore_cache":false}'), +(18566, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.698+00', '{"cached":null,"ignore_cache":false}'), +(18567, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.737+00', '{"cached":null,"ignore_cache":false}'), +(18568, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.905+00', '{"cached":null,"ignore_cache":false}'), +(18569, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.932+00', '{"cached":null,"ignore_cache":false}'), +(18570, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.945+00', '{"cached":null,"ignore_cache":false}'), +(18571, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:30.981+00', '{"cached":null,"ignore_cache":false}'), +(18572, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:31.001+00', '{"cached":null,"ignore_cache":false}'), +(18573, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.616+00', '{"cached":null,"ignore_cache":false}'), +(18574, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.62+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18575, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.657+00', '{"cached":null,"ignore_cache":false}'), +(18576, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.676+00', '{"cached":null,"ignore_cache":false}'), +(18577, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.701+00', '{"cached":null,"ignore_cache":false}'), +(18578, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.742+00', '{"cached":null,"ignore_cache":false}'), +(18579, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:34:52.752+00', '{"cached":null,"ignore_cache":false}'), +(18580, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.685+00', '{"cached":null,"ignore_cache":false}'), +(18581, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.795+00', '{"cached":null,"ignore_cache":false}'), +(18582, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.877+00', '{"cached":null,"ignore_cache":false}'), +(18583, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.895+00', '{"cached":null,"ignore_cache":false}'), +(18584, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.941+00', '{"cached":null,"ignore_cache":false}'), +(18585, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:01.977+00', '{"cached":null,"ignore_cache":false}'), +(18586, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:02.007+00', '{"cached":null,"ignore_cache":false}'), +(18587, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:02.028+00', '{"cached":null,"ignore_cache":false}'), +(18588, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:02.12+00', '{"cached":null,"ignore_cache":false}'), +(18589, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.654+00', '{"cached":null,"ignore_cache":false}'), +(18590, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.69+00', '{"cached":null,"ignore_cache":false}'), +(18591, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.696+00', '{"cached":null,"ignore_cache":false}'), +(18592, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.711+00', '{"cached":null,"ignore_cache":false}'), +(18593, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.724+00', '{"cached":null,"ignore_cache":false}'), +(18594, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.729+00', '{"cached":null,"ignore_cache":false}'), +(18595, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:30.739+00', '{"cached":null,"ignore_cache":false}'), +(18596, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.625+00', '{"cached":null,"ignore_cache":false}'), +(18597, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.678+00', '{"cached":null,"ignore_cache":false}'), +(18598, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.845+00', '{"cached":null,"ignore_cache":false}'), +(18599, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.865+00', '{"cached":null,"ignore_cache":false}'), +(18600, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.875+00', '{"cached":null,"ignore_cache":false}'), +(18601, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.899+00', '{"cached":null,"ignore_cache":false}'), +(18602, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.935+00', '{"cached":null,"ignore_cache":false}'), +(18603, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.949+00', '{"cached":null,"ignore_cache":false}'), +(18604, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:35:31.971+00', '{"cached":null,"ignore_cache":false}'), +(18605, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.819+00', '{"cached":null,"ignore_cache":false}'), +(18606, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.916+00', '{"cached":null,"ignore_cache":false}'), +(18607, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.962+00', '{"cached":null,"ignore_cache":false}'), +(18608, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:02.973+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18609, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:03.004+00', '{"cached":null,"ignore_cache":false}'), +(18610, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:03.082+00', '{"cached":null,"ignore_cache":false}'), +(18611, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:03.097+00', '{"cached":null,"ignore_cache":false}'), +(18612, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:03.107+00', '{"cached":null,"ignore_cache":false}'), +(18613, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:03.163+00', '{"cached":null,"ignore_cache":false}'), +(18614, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.23+00', '{"cached":null,"ignore_cache":false}'), +(18615, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.231+00', '{"cached":null,"ignore_cache":false}'), +(18616, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.245+00', '{"cached":null,"ignore_cache":false}'), +(18617, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.252+00', '{"cached":null,"ignore_cache":false}'), +(18618, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.263+00', '{"cached":null,"ignore_cache":false}'), +(18619, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.271+00', '{"cached":null,"ignore_cache":false}'), +(18620, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:36:05.28+00', '{"cached":null,"ignore_cache":false}'), +(18621, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.57+00', '{"cached":null,"ignore_cache":false}'), +(18622, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.576+00', '{"cached":null,"ignore_cache":false}'), +(18623, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.589+00', '{"cached":null,"ignore_cache":false}'), +(18624, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.61+00', '{"cached":null,"ignore_cache":false}'), +(18625, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.613+00', '{"cached":null,"ignore_cache":false}'), +(18626, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.646+00', '{"cached":null,"ignore_cache":false}'), +(18627, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.659+00', '{"cached":null,"ignore_cache":false}'), +(18628, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.669+00', '{"cached":null,"ignore_cache":false}'), +(18629, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.693+00', '{"cached":null,"ignore_cache":false}'), +(18630, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.801+00', '{"cached":null,"ignore_cache":false}'), +(18631, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.803+00', '{"cached":null,"ignore_cache":false}'), +(18632, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:07.819+00', '{"cached":null,"ignore_cache":false}'), +(18633, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.088+00', '{"cached":null,"ignore_cache":false}'), +(18634, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.13+00', '{"cached":null,"ignore_cache":false}'), +(18635, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.152+00', '{"cached":null,"ignore_cache":false}'), +(18636, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.159+00', '{"cached":null,"ignore_cache":false}'), +(18637, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.164+00', '{"cached":null,"ignore_cache":false}'), +(18638, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.188+00', '{"cached":null,"ignore_cache":false}'), +(18639, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.834+00', '{"cached":null,"ignore_cache":false}'), +(18640, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.835+00', '{"cached":null,"ignore_cache":false}'), +(18641, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:08.969+00', '{"cached":null,"ignore_cache":false}'), +(18642, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.003+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18643, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.004+00', '{"cached":null,"ignore_cache":false}'), +(18644, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.057+00', '{"cached":null,"ignore_cache":false}'), +(18645, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.074+00', '{"cached":null,"ignore_cache":false}'), +(18646, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.12+00', '{"cached":null,"ignore_cache":false}'), +(18647, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.15+00', '{"cached":null,"ignore_cache":false}'), +(18648, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.559+00', '{"cached":null,"ignore_cache":false}'), +(18649, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.575+00', '{"cached":null,"ignore_cache":false}'), +(18650, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.602+00', '{"cached":null,"ignore_cache":false}'), +(18651, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.79+00', '{"cached":null,"ignore_cache":false}'), +(18652, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:09.82+00', '{"cached":null,"ignore_cache":false}'), +(18653, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.495+00', '{"cached":null,"ignore_cache":false}'), +(18654, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.684+00', '{"cached":null,"ignore_cache":false}'), +(18655, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.735+00', '{"cached":null,"ignore_cache":false}'), +(18656, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.814+00', '{"cached":null,"ignore_cache":false}'), +(18657, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.85+00', '{"cached":null,"ignore_cache":false}'), +(18658, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.88+00', '{"cached":null,"ignore_cache":false}'), +(18659, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.897+00', '{"cached":null,"ignore_cache":false}'), +(18660, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.91+00', '{"cached":null,"ignore_cache":false}'), +(18661, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:52.918+00', '{"cached":null,"ignore_cache":false}'), +(18662, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.707+00', '{"cached":null,"ignore_cache":false}'), +(18663, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.748+00', '{"cached":null,"ignore_cache":false}'), +(18664, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.753+00', '{"cached":null,"ignore_cache":false}'), +(18665, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.762+00', '{"cached":null,"ignore_cache":false}'), +(18666, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.8+00', '{"cached":null,"ignore_cache":false}'), +(18667, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.816+00', '{"cached":null,"ignore_cache":false}'), +(18668, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:50:53.83+00', '{"cached":null,"ignore_cache":false}'), +(18669, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.749+00', '{"cached":null,"ignore_cache":false}'), +(18670, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.872+00', '{"cached":null,"ignore_cache":false}'), +(18671, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.898+00', '{"cached":null,"ignore_cache":false}'), +(18672, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:31.961+00', '{"cached":null,"ignore_cache":false}'), +(18673, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:32.018+00', '{"cached":null,"ignore_cache":false}'), +(18674, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:32.039+00', '{"cached":null,"ignore_cache":false}'), +(18675, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:32.065+00', '{"cached":null,"ignore_cache":false}'), +(18676, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.845+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18677, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.893+00', '{"cached":null,"ignore_cache":false}'), +(18678, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.912+00', '{"cached":null,"ignore_cache":false}'), +(18679, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.935+00', '{"cached":null,"ignore_cache":false}'), +(18680, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.968+00', '{"cached":null,"ignore_cache":false}'), +(18681, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.97+00', '{"cached":null,"ignore_cache":false}'), +(18682, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:35.985+00', '{"cached":null,"ignore_cache":false}'), +(18683, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:36.003+00', '{"cached":null,"ignore_cache":false}'), +(18684, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:51:36.026+00', '{"cached":null,"ignore_cache":false}'), +(18685, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.273+00', '{"cached":null,"ignore_cache":false}'), +(18686, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.341+00', '{"cached":null,"ignore_cache":false}'), +(18687, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.357+00', '{"cached":null,"ignore_cache":false}'), +(18688, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.388+00', '{"cached":null,"ignore_cache":false}'), +(18689, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.408+00', '{"cached":null,"ignore_cache":false}'), +(18690, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.415+00', '{"cached":null,"ignore_cache":false}'), +(18691, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.433+00', '{"cached":null,"ignore_cache":false}'), +(18692, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.436+00', '{"cached":null,"ignore_cache":false}'), +(18693, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:14.454+00', '{"cached":null,"ignore_cache":false}'), +(18694, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.676+00', '{"cached":null,"ignore_cache":false}'), +(18695, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.679+00', '{"cached":null,"ignore_cache":false}'), +(18696, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.738+00', '{"cached":null,"ignore_cache":false}'), +(18697, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.75+00', '{"cached":null,"ignore_cache":false}'), +(18698, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.762+00', '{"cached":null,"ignore_cache":false}'), +(18699, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.77+00', '{"cached":null,"ignore_cache":false}'), +(18700, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:22.797+00', '{"cached":null,"ignore_cache":false}'), +(18701, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.89+00', '{"cached":null,"ignore_cache":false}'), +(18702, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.953+00', '{"cached":null,"ignore_cache":false}'), +(18703, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.96+00', '{"cached":null,"ignore_cache":false}'), +(18704, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.965+00', '{"cached":null,"ignore_cache":false}'), +(18705, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.97+00', '{"cached":null,"ignore_cache":false}'), +(18706, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.98+00', '{"cached":null,"ignore_cache":false}'), +(18707, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:51.998+00', '{"cached":null,"ignore_cache":false}'), +(18708, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:52.012+00', '{"cached":null,"ignore_cache":false}'), +(18709, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:52.015+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18710, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.882+00', '{"cached":null,"ignore_cache":false}'), +(18711, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.888+00', '{"cached":null,"ignore_cache":false}'), +(18712, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.902+00', '{"cached":null,"ignore_cache":false}'), +(18713, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.91+00', '{"cached":null,"ignore_cache":false}'), +(18714, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:52:59.915+00', '{"cached":null,"ignore_cache":false}'), +(18715, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:00.139+00', '{"cached":null,"ignore_cache":false}'), +(18716, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:00.144+00', '{"cached":null,"ignore_cache":false}'), +(18717, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.948+00', '{"cached":null,"ignore_cache":false}'), +(18718, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:28.976+00', '{"cached":null,"ignore_cache":false}'), +(18719, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.008+00', '{"cached":null,"ignore_cache":false}'), +(18720, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.101+00', '{"cached":null,"ignore_cache":false}'), +(18721, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.132+00', '{"cached":null,"ignore_cache":false}'), +(18722, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.146+00', '{"cached":null,"ignore_cache":false}'), +(18723, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.226+00', '{"cached":null,"ignore_cache":false}'), +(18724, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.226+00', '{"cached":null,"ignore_cache":false}'), +(18725, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:29.244+00', '{"cached":null,"ignore_cache":false}'), +(18726, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.733+00', '{"cached":null,"ignore_cache":false}'), +(18727, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.756+00', '{"cached":null,"ignore_cache":false}'), +(18728, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.763+00', '{"cached":null,"ignore_cache":false}'), +(18729, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.764+00', '{"cached":null,"ignore_cache":false}'), +(18730, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.772+00', '{"cached":null,"ignore_cache":false}'), +(18731, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.78+00', '{"cached":null,"ignore_cache":false}'), +(18732, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:53:37.786+00', '{"cached":null,"ignore_cache":false}'), +(18733, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.91+00', '{"cached":null,"ignore_cache":false}'), +(18734, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.911+00', '{"cached":null,"ignore_cache":false}'), +(18735, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.935+00', '{"cached":null,"ignore_cache":false}'), +(18736, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.955+00', '{"cached":null,"ignore_cache":false}'), +(18737, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.985+00', '{"cached":null,"ignore_cache":false}'), +(18738, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:06.998+00', '{"cached":null,"ignore_cache":false}'), +(18739, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:07.002+00', '{"cached":null,"ignore_cache":false}'), +(18740, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:07.066+00', '{"cached":null,"ignore_cache":false}'), +(18741, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:07.087+00', '{"cached":null,"ignore_cache":false}'), +(18742, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.77+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18743, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.862+00', '{"cached":null,"ignore_cache":false}'), +(18744, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.874+00', '{"cached":null,"ignore_cache":false}'), +(18745, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.876+00', '{"cached":null,"ignore_cache":false}'), +(18746, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.922+00', '{"cached":null,"ignore_cache":false}'), +(18747, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.962+00', '{"cached":null,"ignore_cache":false}'), +(18748, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:16.97+00', '{"cached":null,"ignore_cache":false}'), +(18749, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.354+00', '{"cached":null,"ignore_cache":false}'), +(18750, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.694+00', '{"cached":null,"ignore_cache":false}'), +(18751, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.778+00', '{"cached":null,"ignore_cache":false}'), +(18752, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.792+00', '{"cached":null,"ignore_cache":false}'), +(18753, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.799+00', '{"cached":null,"ignore_cache":false}'), +(18754, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.842+00', '{"cached":null,"ignore_cache":false}'), +(18755, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.851+00', '{"cached":null,"ignore_cache":false}'), +(18756, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.852+00', '{"cached":null,"ignore_cache":false}'), +(18757, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:46.887+00', '{"cached":null,"ignore_cache":false}'), +(18758, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.7+00', '{"cached":null,"ignore_cache":false}'), +(18759, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.709+00', '{"cached":null,"ignore_cache":false}'), +(18760, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.727+00', '{"cached":null,"ignore_cache":false}'), +(18761, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.733+00', '{"cached":null,"ignore_cache":false}'), +(18762, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.748+00', '{"cached":null,"ignore_cache":false}'), +(18763, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.755+00', '{"cached":null,"ignore_cache":false}'), +(18764, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:54:54.759+00', '{"cached":null,"ignore_cache":false}'), +(18765, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.598+00', '{"cached":null,"ignore_cache":false}'), +(18766, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.691+00', '{"cached":null,"ignore_cache":false}'), +(18767, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.722+00', '{"cached":null,"ignore_cache":false}'), +(18768, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.792+00', '{"cached":null,"ignore_cache":false}'), +(18769, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.817+00', '{"cached":null,"ignore_cache":false}'), +(18770, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.817+00', '{"cached":null,"ignore_cache":false}'), +(18771, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.822+00', '{"cached":null,"ignore_cache":false}'), +(18772, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.843+00', '{"cached":null,"ignore_cache":false}'), +(18773, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:23.853+00', '{"cached":null,"ignore_cache":false}'), +(18774, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.852+00', '{"cached":null,"ignore_cache":false}'), +(18775, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.872+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18776, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.879+00', '{"cached":null,"ignore_cache":false}'), +(18777, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.882+00', '{"cached":null,"ignore_cache":false}'), +(18778, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.894+00', '{"cached":null,"ignore_cache":false}'), +(18779, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.896+00', '{"cached":null,"ignore_cache":false}'), +(18780, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:55:31.901+00', '{"cached":null,"ignore_cache":false}'), +(18781, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.394+00', '{"cached":null,"ignore_cache":false}'), +(18782, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.422+00', '{"cached":null,"ignore_cache":false}'), +(18783, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.43+00', '{"cached":null,"ignore_cache":false}'), +(18784, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.435+00', '{"cached":null,"ignore_cache":false}'), +(18785, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.455+00', '{"cached":null,"ignore_cache":false}'), +(18786, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.457+00', '{"cached":null,"ignore_cache":false}'), +(18787, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.499+00', '{"cached":null,"ignore_cache":false}'), +(18788, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.571+00', '{"cached":null,"ignore_cache":false}'), +(18789, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:00.607+00', '{"cached":null,"ignore_cache":false}'), +(18790, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.563+00', '{"cached":null,"ignore_cache":false}'), +(18791, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.587+00', '{"cached":null,"ignore_cache":false}'), +(18792, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.607+00', '{"cached":null,"ignore_cache":false}'), +(18793, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.638+00', '{"cached":null,"ignore_cache":false}'), +(18794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.697+00', '{"cached":null,"ignore_cache":false}'), +(18795, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.717+00', '{"cached":null,"ignore_cache":false}'), +(18796, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:08.734+00', '{"cached":null,"ignore_cache":false}'), +(18797, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.952+00', '{"cached":null,"ignore_cache":false}'), +(18798, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.978+00', '{"cached":null,"ignore_cache":false}'), +(18799, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:44.992+00', '{"cached":null,"ignore_cache":false}'), +(18800, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:45.069+00', '{"cached":null,"ignore_cache":false}'), +(18801, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:45.08+00', '{"cached":null,"ignore_cache":false}'), +(18802, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:45.12+00', '{"cached":null,"ignore_cache":false}'), +(18803, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:45.132+00', '{"cached":null,"ignore_cache":false}'), +(18804, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.062+00', '{"cached":null,"ignore_cache":false}'), +(18805, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.096+00', '{"cached":null,"ignore_cache":false}'), +(18806, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.157+00', '{"cached":null,"ignore_cache":false}'), +(18807, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.16+00', '{"cached":null,"ignore_cache":false}'), +(18808, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.206+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18809, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.207+00', '{"cached":null,"ignore_cache":false}'), +(18810, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.207+00', '{"cached":null,"ignore_cache":false}'), +(18811, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.217+00', '{"cached":null,"ignore_cache":false}'), +(18812, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:56:46.248+00', '{"cached":null,"ignore_cache":false}'), +(18813, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.27+00', '{"cached":null,"ignore_cache":false}'), +(18814, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.34+00', '{"cached":null,"ignore_cache":false}'), +(18815, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.355+00', '{"cached":null,"ignore_cache":false}'), +(18816, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.368+00', '{"cached":null,"ignore_cache":false}'), +(18817, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.406+00', '{"cached":null,"ignore_cache":false}'), +(18818, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.435+00', '{"cached":null,"ignore_cache":false}'), +(18819, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:57.454+00', '{"cached":null,"ignore_cache":false}'), +(18820, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.074+00', '{"cached":null,"ignore_cache":false}'), +(18821, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.168+00', '{"cached":null,"ignore_cache":false}'), +(18822, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.176+00', '{"cached":null,"ignore_cache":false}'), +(18823, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.287+00', '{"cached":null,"ignore_cache":false}'), +(18824, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.29+00', '{"cached":null,"ignore_cache":false}'), +(18825, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.317+00', '{"cached":null,"ignore_cache":false}'), +(18826, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.371+00', '{"cached":null,"ignore_cache":false}'), +(18827, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.406+00', '{"cached":null,"ignore_cache":false}'), +(18828, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 13:59:59.446+00', '{"cached":null,"ignore_cache":false}'), +(18829, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.75+00', '{"cached":null,"ignore_cache":false}'), +(18830, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.849+00', '{"cached":null,"ignore_cache":false}'), +(18831, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.863+00', '{"cached":null,"ignore_cache":false}'), +(18832, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.889+00', '{"cached":null,"ignore_cache":false}'), +(18833, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.927+00', '{"cached":null,"ignore_cache":false}'), +(18834, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.934+00', '{"cached":null,"ignore_cache":false}'), +(18835, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.956+00', '{"cached":null,"ignore_cache":false}'), +(18836, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.984+00', '{"cached":null,"ignore_cache":false}'), +(18837, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:48.985+00', '{"cached":null,"ignore_cache":false}'), +(18838, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.019+00', '{"cached":null,"ignore_cache":false}'), +(18839, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.037+00', '{"cached":null,"ignore_cache":false}'), +(18840, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.075+00', '{"cached":null,"ignore_cache":false}'), +(18841, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.152+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18842, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.174+00', '{"cached":null,"ignore_cache":false}'), +(18843, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.191+00', '{"cached":null,"ignore_cache":false}'), +(18844, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.217+00', '{"cached":null,"ignore_cache":false}'), +(18845, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.253+00', '{"cached":null,"ignore_cache":false}'), +(18846, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:49.286+00', '{"cached":null,"ignore_cache":false}'), +(18847, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.361+00', '{"cached":null,"ignore_cache":false}'), +(18848, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.375+00', '{"cached":null,"ignore_cache":false}'), +(18849, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.388+00', '{"cached":null,"ignore_cache":false}'), +(18850, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.397+00', '{"cached":null,"ignore_cache":false}'), +(18851, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.467+00', '{"cached":null,"ignore_cache":false}'), +(18852, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.53+00', '{"cached":null,"ignore_cache":false}'), +(18853, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.557+00', '{"cached":null,"ignore_cache":false}'), +(18854, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.641+00', '{"cached":null,"ignore_cache":false}'), +(18855, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.897+00', '{"cached":null,"ignore_cache":false}'), +(18856, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.945+00', '{"cached":null,"ignore_cache":false}'), +(18857, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.963+00', '{"cached":null,"ignore_cache":false}'), +(18858, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.966+00', '{"cached":null,"ignore_cache":false}'), +(18859, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:50.986+00', '{"cached":null,"ignore_cache":false}'), +(18860, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:33:51+00', '{"cached":null,"ignore_cache":false}'), +(18861, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.116+00', '{"cached":null,"ignore_cache":false}'), +(18862, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.18+00', '{"cached":null,"ignore_cache":false}'), +(18863, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.218+00', '{"cached":null,"ignore_cache":false}'), +(18864, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.23+00', '{"cached":null,"ignore_cache":false}'), +(18865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.231+00', '{"cached":null,"ignore_cache":false}'), +(18866, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.234+00', '{"cached":null,"ignore_cache":false}'), +(18867, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.284+00', '{"cached":null,"ignore_cache":false}'), +(18868, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.295+00', '{"cached":null,"ignore_cache":false}'), +(18869, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.314+00', '{"cached":null,"ignore_cache":false}'), +(18870, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.516+00', '{"cached":null,"ignore_cache":false}'), +(18871, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.638+00', '{"cached":null,"ignore_cache":false}'), +(18872, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.669+00', '{"cached":null,"ignore_cache":false}'), +(18873, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.683+00', '{"cached":null,"ignore_cache":false}'), +(18874, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.743+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18875, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.746+00', '{"cached":null,"ignore_cache":false}'), +(18876, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.755+00', '{"cached":null,"ignore_cache":false}'), +(18877, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.774+00', '{"cached":null,"ignore_cache":false}'), +(18878, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:45.844+00', '{"cached":null,"ignore_cache":false}'), +(18879, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.078+00', '{"cached":null,"ignore_cache":false}'), +(18880, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.094+00', '{"cached":null,"ignore_cache":false}'), +(18881, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.131+00', '{"cached":null,"ignore_cache":false}'), +(18882, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.144+00', '{"cached":null,"ignore_cache":false}'), +(18883, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.151+00', '{"cached":null,"ignore_cache":false}'), +(18884, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.16+00', '{"cached":null,"ignore_cache":false}'), +(18885, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.167+00', '{"cached":null,"ignore_cache":false}'), +(18886, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.323+00', '{"cached":null,"ignore_cache":false}'), +(18887, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.366+00', '{"cached":null,"ignore_cache":false}'), +(18888, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.445+00', '{"cached":null,"ignore_cache":false}'), +(18889, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.458+00', '{"cached":null,"ignore_cache":false}'), +(18890, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.464+00', '{"cached":null,"ignore_cache":false}'), +(18891, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.468+00', '{"cached":null,"ignore_cache":false}'), +(18892, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:34:46.476+00', '{"cached":null,"ignore_cache":false}'), +(18893, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.225+00', '{"cached":null,"ignore_cache":false}'), +(18894, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.553+00', '{"cached":null,"ignore_cache":false}'), +(18895, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.596+00', '{"cached":null,"ignore_cache":false}'), +(18896, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.668+00', '{"cached":null,"ignore_cache":false}'), +(18897, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.68+00', '{"cached":null,"ignore_cache":false}'), +(18898, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.755+00', '{"cached":null,"ignore_cache":false}'), +(18899, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.755+00', '{"cached":null,"ignore_cache":false}'), +(18900, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.764+00', '{"cached":null,"ignore_cache":false}'), +(18901, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.791+00', '{"cached":null,"ignore_cache":false}'), +(18902, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:37.804+00', '{"cached":null,"ignore_cache":false}'), +(18903, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.142+00', '{"cached":null,"ignore_cache":false}'), +(18904, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.227+00', '{"cached":null,"ignore_cache":false}'), +(18905, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.257+00', '{"cached":null,"ignore_cache":false}'), +(18906, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.288+00', '{"cached":null,"ignore_cache":false}'), +(18907, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.355+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18908, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.399+00', '{"cached":null,"ignore_cache":false}'), +(18909, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.403+00', '{"cached":null,"ignore_cache":false}'), +(18910, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.43+00', '{"cached":null,"ignore_cache":false}'), +(18911, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.458+00', '{"cached":null,"ignore_cache":false}'), +(18912, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.469+00', '{"cached":null,"ignore_cache":false}'), +(18913, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.477+00', '{"cached":null,"ignore_cache":false}'), +(18914, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.494+00', '{"cached":null,"ignore_cache":false}'), +(18915, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.58+00', '{"cached":null,"ignore_cache":false}'), +(18916, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.583+00', '{"cached":null,"ignore_cache":false}'), +(18917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.673+00', '{"cached":null,"ignore_cache":false}'), +(18918, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.741+00', '{"cached":null,"ignore_cache":false}'), +(18919, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.743+00', '{"cached":null,"ignore_cache":false}'), +(18920, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.781+00', '{"cached":null,"ignore_cache":false}'), +(18921, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.789+00', '{"cached":null,"ignore_cache":false}'), +(18922, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.822+00', '{"cached":null,"ignore_cache":false}'), +(18923, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.844+00', '{"cached":null,"ignore_cache":false}'), +(18924, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:38.849+00', '{"cached":null,"ignore_cache":false}'), +(18925, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:35:39.586+00', '{"cached":null,"ignore_cache":false}'), +(18926, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:00.898+00', '{"cached":null,"ignore_cache":false}'), +(18927, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.026+00', '{"cached":null,"ignore_cache":false}'), +(18928, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.052+00', '{"cached":null,"ignore_cache":false}'), +(18929, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.126+00', '{"cached":null,"ignore_cache":false}'), +(18930, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.131+00', '{"cached":null,"ignore_cache":false}'), +(18931, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.207+00', '{"cached":null,"ignore_cache":false}'), +(18932, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.666+00', '{"cached":null,"ignore_cache":false}'), +(18933, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.798+00', '{"cached":null,"ignore_cache":false}'), +(18934, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.864+00', '{"cached":null,"ignore_cache":false}'), +(18935, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:01.9+00', '{"cached":null,"ignore_cache":false}'), +(18936, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.005+00', '{"cached":null,"ignore_cache":false}'), +(18937, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.076+00', '{"cached":null,"ignore_cache":false}'), +(18938, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.286+00', '{"cached":null,"ignore_cache":false}'), +(18939, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.289+00', '{"cached":null,"ignore_cache":false}'), +(18940, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.292+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18941, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.292+00', '{"cached":null,"ignore_cache":false}'), +(18942, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.435+00', '{"cached":null,"ignore_cache":false}'), +(18943, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.455+00', '{"cached":null,"ignore_cache":false}'), +(18944, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.467+00', '{"cached":null,"ignore_cache":false}'), +(18945, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.508+00', '{"cached":null,"ignore_cache":false}'), +(18946, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.525+00', '{"cached":null,"ignore_cache":false}'), +(18947, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.621+00', '{"cached":null,"ignore_cache":false}'), +(18948, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:02.642+00', '{"cached":null,"ignore_cache":false}'), +(18949, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.179+00', '{"cached":null,"ignore_cache":false}'), +(18950, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.196+00', '{"cached":null,"ignore_cache":false}'), +(18951, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.208+00', '{"cached":null,"ignore_cache":false}'), +(18952, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.218+00', '{"cached":null,"ignore_cache":false}'), +(18953, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.231+00', '{"cached":null,"ignore_cache":false}'), +(18954, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.231+00', '{"cached":null,"ignore_cache":false}'), +(18955, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.253+00', '{"cached":null,"ignore_cache":false}'), +(18956, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.258+00', '{"cached":null,"ignore_cache":false}'), +(18957, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.314+00', '{"cached":null,"ignore_cache":false}'), +(18958, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.44+00', '{"cached":null,"ignore_cache":false}'), +(18959, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.456+00', '{"cached":null,"ignore_cache":false}'), +(18960, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.464+00', '{"cached":null,"ignore_cache":false}'), +(18961, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.469+00', '{"cached":null,"ignore_cache":false}'), +(18962, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.478+00', '{"cached":null,"ignore_cache":false}'), +(18963, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.498+00', '{"cached":null,"ignore_cache":false}'), +(18964, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:55:31.499+00', '{"cached":null,"ignore_cache":false}'), +(18965, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.285+00', '{"cached":null,"ignore_cache":false}'), +(18966, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.319+00', '{"cached":null,"ignore_cache":false}'), +(18967, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.33+00', '{"cached":null,"ignore_cache":false}'), +(18968, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.345+00', '{"cached":null,"ignore_cache":false}'), +(18969, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.364+00', '{"cached":null,"ignore_cache":false}'), +(18970, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.393+00', '{"cached":null,"ignore_cache":false}'), +(18971, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.418+00', '{"cached":null,"ignore_cache":false}'), +(18972, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.461+00', '{"cached":null,"ignore_cache":false}'), +(18973, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.491+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(18974, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.613+00', '{"cached":null,"ignore_cache":false}'), +(18975, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.62+00', '{"cached":null,"ignore_cache":false}'), +(18976, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.637+00', '{"cached":null,"ignore_cache":false}'), +(18977, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.676+00', '{"cached":null,"ignore_cache":false}'), +(18978, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.685+00', '{"cached":null,"ignore_cache":false}'), +(18979, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.696+00', '{"cached":null,"ignore_cache":false}'), +(18980, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:02.707+00', '{"cached":null,"ignore_cache":false}'), +(18981, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.364+00', '{"cached":null,"ignore_cache":false}'), +(18982, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.515+00', '{"cached":null,"ignore_cache":false}'), +(18983, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.518+00', '{"cached":null,"ignore_cache":false}'), +(18984, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.625+00', '{"cached":null,"ignore_cache":false}'), +(18985, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.63+00', '{"cached":null,"ignore_cache":false}'), +(18986, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.646+00', '{"cached":null,"ignore_cache":false}'), +(18987, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.661+00', '{"cached":null,"ignore_cache":false}'), +(18988, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.699+00', '{"cached":null,"ignore_cache":false}'), +(18989, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.741+00', '{"cached":null,"ignore_cache":false}'), +(18990, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.757+00', '{"cached":null,"ignore_cache":false}'), +(18991, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.777+00', '{"cached":null,"ignore_cache":false}'), +(18992, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.83+00', '{"cached":null,"ignore_cache":false}'), +(18993, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.845+00', '{"cached":null,"ignore_cache":false}'), +(18994, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.845+00', '{"cached":null,"ignore_cache":false}'), +(18995, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.854+00', '{"cached":null,"ignore_cache":false}'), +(18996, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:56:33.956+00', '{"cached":null,"ignore_cache":false}'), +(18997, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.47+00', '{"cached":null,"ignore_cache":false}'), +(18998, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.51+00', '{"cached":null,"ignore_cache":false}'), +(18999, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.668+00', '{"cached":null,"ignore_cache":false}'), +(19000, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.69+00', '{"cached":null,"ignore_cache":false}'), +(19001, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.744+00', '{"cached":null,"ignore_cache":false}'), +(19002, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.819+00', '{"cached":null,"ignore_cache":false}'), +(19003, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.839+00', '{"cached":null,"ignore_cache":false}'), +(19004, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.867+00', '{"cached":null,"ignore_cache":false}'), +(19005, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.916+00', '{"cached":null,"ignore_cache":false}'), +(19006, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.982+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19007, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:04.994+00', '{"cached":null,"ignore_cache":false}'), +(19008, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:05.085+00', '{"cached":null,"ignore_cache":false}'), +(19009, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:05.108+00', '{"cached":null,"ignore_cache":false}'), +(19010, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:05.115+00', '{"cached":null,"ignore_cache":false}'), +(19011, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:05.173+00', '{"cached":null,"ignore_cache":false}'), +(19012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:05.184+00', '{"cached":null,"ignore_cache":false}'), +(19013, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.481+00', '{"cached":null,"ignore_cache":false}'), +(19014, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.571+00', '{"cached":null,"ignore_cache":false}'), +(19015, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.63+00', '{"cached":null,"ignore_cache":false}'), +(19016, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.643+00', '{"cached":null,"ignore_cache":false}'), +(19017, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.653+00', '{"cached":null,"ignore_cache":false}'), +(19018, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.694+00', '{"cached":null,"ignore_cache":false}'), +(19019, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.77+00', '{"cached":null,"ignore_cache":false}'), +(19020, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.782+00', '{"cached":null,"ignore_cache":false}'), +(19021, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.885+00', '{"cached":null,"ignore_cache":false}'), +(19022, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.894+00', '{"cached":null,"ignore_cache":false}'), +(19023, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.898+00', '{"cached":null,"ignore_cache":false}'), +(19024, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.902+00', '{"cached":null,"ignore_cache":false}'), +(19025, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.93+00', '{"cached":null,"ignore_cache":false}'), +(19026, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.931+00', '{"cached":null,"ignore_cache":false}'), +(19027, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.931+00', '{"cached":null,"ignore_cache":false}'), +(19028, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:57:35.95+00', '{"cached":null,"ignore_cache":false}'), +(19029, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.605+00', '{"cached":null,"ignore_cache":false}'), +(19030, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.658+00', '{"cached":null,"ignore_cache":false}'), +(19031, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.663+00', '{"cached":null,"ignore_cache":false}'), +(19032, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.702+00', '{"cached":null,"ignore_cache":false}'), +(19033, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.703+00', '{"cached":null,"ignore_cache":false}'), +(19034, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.723+00', '{"cached":null,"ignore_cache":false}'), +(19035, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.735+00', '{"cached":null,"ignore_cache":false}'), +(19036, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.931+00', '{"cached":null,"ignore_cache":false}'), +(19037, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:06.975+00', '{"cached":null,"ignore_cache":false}'), +(19038, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.001+00', '{"cached":null,"ignore_cache":false}'), +(19039, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.006+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19040, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.031+00', '{"cached":null,"ignore_cache":false}'), +(19041, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.057+00', '{"cached":null,"ignore_cache":false}'), +(19042, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.067+00', '{"cached":null,"ignore_cache":false}'), +(19043, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.074+00', '{"cached":null,"ignore_cache":false}'), +(19044, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:07.099+00', '{"cached":null,"ignore_cache":false}'), +(19045, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.527+00', '{"cached":null,"ignore_cache":false}'), +(19046, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.562+00', '{"cached":null,"ignore_cache":false}'), +(19047, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.597+00', '{"cached":null,"ignore_cache":false}'), +(19048, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.623+00', '{"cached":null,"ignore_cache":false}'), +(19049, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.676+00', '{"cached":null,"ignore_cache":false}'), +(19050, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.685+00', '{"cached":null,"ignore_cache":false}'), +(19051, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.692+00', '{"cached":null,"ignore_cache":false}'), +(19052, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.707+00', '{"cached":null,"ignore_cache":false}'), +(19053, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:39.713+00', '{"cached":null,"ignore_cache":false}'), +(19054, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.042+00', '{"cached":null,"ignore_cache":false}'), +(19055, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.082+00', '{"cached":null,"ignore_cache":false}'), +(19056, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.214+00', '{"cached":null,"ignore_cache":false}'), +(19057, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.245+00', '{"cached":null,"ignore_cache":false}'), +(19058, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.258+00', '{"cached":null,"ignore_cache":false}'), +(19059, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.278+00', '{"cached":null,"ignore_cache":false}'), +(19060, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:58:43.287+00', '{"cached":null,"ignore_cache":false}'), +(19061, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.919+00', '{"cached":null,"ignore_cache":false}'), +(19062, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:12.941+00', '{"cached":null,"ignore_cache":false}'), +(19063, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.085+00', '{"cached":null,"ignore_cache":false}'), +(19064, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.181+00', '{"cached":null,"ignore_cache":false}'), +(19065, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.23+00', '{"cached":null,"ignore_cache":false}'), +(19066, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.277+00', '{"cached":null,"ignore_cache":false}'), +(19067, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.294+00', '{"cached":null,"ignore_cache":false}'), +(19068, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.345+00', '{"cached":null,"ignore_cache":false}'), +(19069, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.358+00', '{"cached":null,"ignore_cache":false}'), +(19070, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.39+00', '{"cached":null,"ignore_cache":false}'), +(19071, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.605+00', '{"cached":null,"ignore_cache":false}'), +(19072, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.615+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19073, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.615+00', '{"cached":null,"ignore_cache":false}'), +(19074, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.63+00', '{"cached":null,"ignore_cache":false}'), +(19075, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.642+00', '{"cached":null,"ignore_cache":false}'), +(19076, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:13.655+00', '{"cached":null,"ignore_cache":false}'), +(19077, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.247+00', '{"cached":null,"ignore_cache":false}'), +(19078, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.266+00', '{"cached":null,"ignore_cache":false}'), +(19079, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.315+00', '{"cached":null,"ignore_cache":false}'), +(19080, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.342+00', '{"cached":null,"ignore_cache":false}'), +(19081, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.48+00', '{"cached":null,"ignore_cache":false}'), +(19082, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.504+00', '{"cached":null,"ignore_cache":false}'), +(19083, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.541+00', '{"cached":null,"ignore_cache":false}'), +(19084, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.561+00', '{"cached":null,"ignore_cache":false}'), +(19085, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.588+00', '{"cached":null,"ignore_cache":false}'), +(19086, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.626+00', '{"cached":null,"ignore_cache":false}'), +(19087, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.634+00', '{"cached":null,"ignore_cache":false}'), +(19088, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.646+00', '{"cached":null,"ignore_cache":false}'), +(19089, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.653+00', '{"cached":null,"ignore_cache":false}'), +(19090, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.666+00', '{"cached":null,"ignore_cache":false}'), +(19091, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.68+00', '{"cached":null,"ignore_cache":false}'), +(19092, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 14:59:44.694+00', '{"cached":null,"ignore_cache":false}'), +(19093, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.695+00', '{"cached":null,"ignore_cache":false}'), +(19094, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.695+00', '{"cached":null,"ignore_cache":false}'), +(19095, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.698+00', '{"cached":null,"ignore_cache":false}'), +(19096, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.731+00', '{"cached":null,"ignore_cache":false}'), +(19097, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.755+00', '{"cached":null,"ignore_cache":false}'), +(19098, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.816+00', '{"cached":null,"ignore_cache":false}'), +(19099, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:32.816+00', '{"cached":null,"ignore_cache":false}'), +(19100, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.636+00', '{"cached":null,"ignore_cache":false}'), +(19101, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.774+00', '{"cached":null,"ignore_cache":false}'), +(19102, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.861+00', '{"cached":null,"ignore_cache":false}'), +(19103, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.971+00', '{"cached":null,"ignore_cache":false}'), +(19104, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:33.995+00', '{"cached":null,"ignore_cache":false}'), +(19105, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.104+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19106, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.169+00', '{"cached":null,"ignore_cache":false}'), +(19107, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.202+00', '{"cached":null,"ignore_cache":false}'), +(19108, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.226+00', '{"cached":null,"ignore_cache":false}'), +(19109, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.323+00', '{"cached":null,"ignore_cache":false}'), +(19110, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.329+00', '{"cached":null,"ignore_cache":false}'), +(19111, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.438+00', '{"cached":null,"ignore_cache":false}'), +(19112, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.521+00', '{"cached":null,"ignore_cache":false}'), +(19113, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.625+00', '{"cached":null,"ignore_cache":false}'), +(19114, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.627+00', '{"cached":null,"ignore_cache":false}'), +(19115, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.669+00', '{"cached":null,"ignore_cache":false}'), +(19116, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.673+00', '{"cached":null,"ignore_cache":false}'), +(19117, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:34.679+00', '{"cached":null,"ignore_cache":false}'), +(19118, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.428+00', '{"cached":null,"ignore_cache":false}'), +(19119, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.432+00', '{"cached":null,"ignore_cache":false}'), +(19120, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.435+00', '{"cached":null,"ignore_cache":false}'), +(19121, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.44+00', '{"cached":null,"ignore_cache":false}'), +(19122, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.447+00', '{"cached":null,"ignore_cache":false}'), +(19123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.45+00', '{"cached":null,"ignore_cache":false}'), +(19124, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.459+00', '{"cached":null,"ignore_cache":false}'), +(19125, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.727+00', '{"cached":null,"ignore_cache":false}'), +(19126, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.761+00', '{"cached":null,"ignore_cache":false}'), +(19127, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.777+00', '{"cached":null,"ignore_cache":false}'), +(19128, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.782+00', '{"cached":null,"ignore_cache":false}'), +(19129, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.831+00', '{"cached":null,"ignore_cache":false}'), +(19130, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.846+00', '{"cached":null,"ignore_cache":false}'), +(19131, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.915+00', '{"cached":null,"ignore_cache":false}'), +(19132, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.945+00', '{"cached":null,"ignore_cache":false}'), +(19133, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:45.991+00', '{"cached":null,"ignore_cache":false}'), +(19134, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.02+00', '{"cached":null,"ignore_cache":false}'), +(19135, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.055+00', '{"cached":null,"ignore_cache":false}'), +(19136, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.091+00', '{"cached":null,"ignore_cache":false}'), +(19137, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.116+00', '{"cached":null,"ignore_cache":false}'), +(19138, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.117+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19139, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.138+00', '{"cached":null,"ignore_cache":false}'), +(19140, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.178+00', '{"cached":null,"ignore_cache":false}'), +(19141, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.193+00', '{"cached":null,"ignore_cache":false}'), +(19142, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.246+00', '{"cached":null,"ignore_cache":false}'), +(19143, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.257+00', '{"cached":null,"ignore_cache":false}'), +(19144, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:00:46.284+00', '{"cached":null,"ignore_cache":false}'), +(19145, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.486+00', '{"cached":null,"ignore_cache":false}'), +(19146, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.563+00', '{"cached":null,"ignore_cache":false}'), +(19147, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.579+00', '{"cached":null,"ignore_cache":false}'), +(19148, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.596+00', '{"cached":null,"ignore_cache":false}'), +(19149, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.613+00', '{"cached":null,"ignore_cache":false}'), +(19150, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.617+00', '{"cached":null,"ignore_cache":false}'), +(19151, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:18.658+00', '{"cached":null,"ignore_cache":false}'), +(19152, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.901+00', '{"cached":null,"ignore_cache":false}'), +(19153, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:19.98+00', '{"cached":null,"ignore_cache":false}'), +(19154, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:20.021+00', '{"cached":null,"ignore_cache":false}'), +(19155, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:20.051+00', '{"cached":null,"ignore_cache":false}'), +(19156, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:20.067+00', '{"cached":null,"ignore_cache":false}'), +(19157, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:20.085+00', '{"cached":null,"ignore_cache":false}'), +(19158, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:20.094+00', '{"cached":null,"ignore_cache":false}'), +(19159, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:20.115+00', '{"cached":null,"ignore_cache":false}'), +(19160, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:20.167+00', '{"cached":null,"ignore_cache":false}'), +(19161, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.391+00', '{"cached":null,"ignore_cache":false}'), +(19162, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.429+00', '{"cached":null,"ignore_cache":false}'), +(19163, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.519+00', '{"cached":null,"ignore_cache":false}'), +(19164, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.58+00', '{"cached":null,"ignore_cache":false}'), +(19165, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.588+00', '{"cached":null,"ignore_cache":false}'), +(19166, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.591+00', '{"cached":null,"ignore_cache":false}'), +(19167, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.596+00', '{"cached":null,"ignore_cache":false}'), +(19168, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.602+00', '{"cached":null,"ignore_cache":false}'), +(19169, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:52.649+00', '{"cached":null,"ignore_cache":false}'), +(19170, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.65+00', '{"cached":null,"ignore_cache":false}'), +(19171, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.701+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19172, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.773+00', '{"cached":null,"ignore_cache":false}'), +(19173, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.779+00', '{"cached":null,"ignore_cache":false}'), +(19174, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.791+00', '{"cached":null,"ignore_cache":false}'), +(19175, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.795+00', '{"cached":null,"ignore_cache":false}'), +(19176, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:01:54.804+00', '{"cached":null,"ignore_cache":false}'), +(19177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.309+00', '{"cached":null,"ignore_cache":false}'), +(19178, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.356+00', '{"cached":null,"ignore_cache":false}'), +(19179, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.374+00', '{"cached":null,"ignore_cache":false}'), +(19180, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.395+00', '{"cached":null,"ignore_cache":false}'), +(19181, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.406+00', '{"cached":null,"ignore_cache":false}'), +(19182, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.417+00', '{"cached":null,"ignore_cache":false}'), +(19183, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.421+00', '{"cached":null,"ignore_cache":false}'), +(19184, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.432+00', '{"cached":null,"ignore_cache":false}'), +(19185, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:22.442+00', '{"cached":null,"ignore_cache":false}'), +(19186, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.183+00', '{"cached":null,"ignore_cache":false}'), +(19187, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.217+00', '{"cached":null,"ignore_cache":false}'), +(19188, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.234+00', '{"cached":null,"ignore_cache":false}'), +(19189, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.247+00', '{"cached":null,"ignore_cache":false}'), +(19190, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.275+00', '{"cached":null,"ignore_cache":false}'), +(19191, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.277+00', '{"cached":null,"ignore_cache":false}'), +(19192, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:02:25.314+00', '{"cached":null,"ignore_cache":false}'), +(19193, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.711+00', '{"cached":null,"ignore_cache":false}'), +(19194, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.712+00', '{"cached":null,"ignore_cache":false}'), +(19195, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.728+00', '{"cached":null,"ignore_cache":false}'), +(19196, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.729+00', '{"cached":null,"ignore_cache":false}'), +(19197, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.766+00', '{"cached":null,"ignore_cache":false}'), +(19198, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.77+00', '{"cached":null,"ignore_cache":false}'), +(19199, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.803+00', '{"cached":null,"ignore_cache":false}'), +(19200, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:29.929+00', '{"cached":null,"ignore_cache":false}'), +(19201, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.036+00', '{"cached":null,"ignore_cache":false}'), +(19202, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.115+00', '{"cached":null,"ignore_cache":false}'), +(19203, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.394+00', '{"cached":null,"ignore_cache":false}'), +(19204, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.421+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19205, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.563+00', '{"cached":null,"ignore_cache":false}'), +(19206, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.776+00', '{"cached":null,"ignore_cache":false}'), +(19207, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.777+00', '{"cached":null,"ignore_cache":false}'), +(19208, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.797+00', '{"cached":null,"ignore_cache":false}'), +(19209, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.865+00', '{"cached":null,"ignore_cache":false}'), +(19210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:30.926+00', '{"cached":null,"ignore_cache":false}'), +(19211, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.023+00', '{"cached":null,"ignore_cache":false}'), +(19212, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.024+00', '{"cached":null,"ignore_cache":false}'), +(19213, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.069+00', '{"cached":null,"ignore_cache":false}'), +(19214, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.129+00', '{"cached":null,"ignore_cache":false}'), +(19215, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.13+00', '{"cached":null,"ignore_cache":false}'), +(19216, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.262+00', '{"cached":null,"ignore_cache":false}'), +(19217, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.265+00', '{"cached":null,"ignore_cache":false}'), +(19218, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:08:31.373+00', '{"cached":null,"ignore_cache":false}'), +(19219, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.227+00', '{"cached":null,"ignore_cache":false}'), +(19220, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.252+00', '{"cached":null,"ignore_cache":false}'), +(19221, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.268+00', '{"cached":null,"ignore_cache":false}'), +(19222, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.272+00', '{"cached":null,"ignore_cache":false}'), +(19223, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.283+00', '{"cached":null,"ignore_cache":false}'), +(19224, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.284+00', '{"cached":null,"ignore_cache":false}'), +(19225, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.288+00', '{"cached":null,"ignore_cache":false}'), +(19226, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.538+00', '{"cached":null,"ignore_cache":false}'), +(19227, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.544+00', '{"cached":null,"ignore_cache":false}'), +(19228, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.58+00', '{"cached":null,"ignore_cache":false}'), +(19229, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.615+00', '{"cached":null,"ignore_cache":false}'), +(19230, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.627+00', '{"cached":null,"ignore_cache":false}'), +(19231, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.642+00', '{"cached":null,"ignore_cache":false}'), +(19232, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.66+00', '{"cached":null,"ignore_cache":false}'), +(19233, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.663+00', '{"cached":null,"ignore_cache":false}'), +(19234, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:01.667+00', '{"cached":null,"ignore_cache":false}'), +(19235, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.531+00', '{"cached":null,"ignore_cache":false}'), +(19236, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.665+00', '{"cached":null,"ignore_cache":false}'), +(19237, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.714+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19238, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.744+00', '{"cached":null,"ignore_cache":false}'), +(19239, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.764+00', '{"cached":null,"ignore_cache":false}'), +(19240, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.786+00', '{"cached":null,"ignore_cache":false}'), +(19241, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.812+00', '{"cached":null,"ignore_cache":false}'), +(19242, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.886+00', '{"cached":null,"ignore_cache":false}'), +(19243, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:32.913+00', '{"cached":null,"ignore_cache":false}'), +(19244, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.242+00', '{"cached":null,"ignore_cache":false}'), +(19245, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.37+00', '{"cached":null,"ignore_cache":false}'), +(19246, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.428+00', '{"cached":null,"ignore_cache":false}'), +(19247, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.477+00', '{"cached":null,"ignore_cache":false}'), +(19248, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.484+00', '{"cached":null,"ignore_cache":false}'), +(19249, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.496+00', '{"cached":null,"ignore_cache":false}'), +(19250, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:09:34.5+00', '{"cached":null,"ignore_cache":false}'), +(19251, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.667+00', '{"cached":null,"ignore_cache":false}'), +(19252, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.786+00', '{"cached":null,"ignore_cache":false}'), +(19253, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.896+00', '{"cached":null,"ignore_cache":false}'), +(19254, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.908+00', '{"cached":null,"ignore_cache":false}'), +(19255, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.922+00', '{"cached":null,"ignore_cache":false}'), +(19256, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.949+00', '{"cached":null,"ignore_cache":false}'), +(19257, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:03.974+00', '{"cached":null,"ignore_cache":false}'), +(19258, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.009+00', '{"cached":null,"ignore_cache":false}'), +(19259, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.042+00', '{"cached":null,"ignore_cache":false}'), +(19260, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.85+00', '{"cached":null,"ignore_cache":false}'), +(19261, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.877+00', '{"cached":null,"ignore_cache":false}'), +(19262, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.879+00', '{"cached":null,"ignore_cache":false}'), +(19263, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.932+00', '{"cached":null,"ignore_cache":false}'), +(19264, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.945+00', '{"cached":null,"ignore_cache":false}'), +(19265, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.954+00', '{"cached":null,"ignore_cache":false}'), +(19266, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:10:04.973+00', '{"cached":null,"ignore_cache":false}'), +(19267, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.509+00', '{"cached":null,"ignore_cache":false}'), +(19268, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.58+00', '{"cached":null,"ignore_cache":false}'), +(19269, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.64+00', '{"cached":null,"ignore_cache":false}'), +(19270, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.656+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19271, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.85+00', '{"cached":null,"ignore_cache":false}'), +(19272, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.865+00', '{"cached":null,"ignore_cache":false}'), +(19273, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.911+00', '{"cached":null,"ignore_cache":false}'), +(19274, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:49.97+00', '{"cached":null,"ignore_cache":false}'), +(19275, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.005+00', '{"cached":null,"ignore_cache":false}'), +(19276, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.088+00', '{"cached":null,"ignore_cache":false}'), +(19277, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.095+00', '{"cached":null,"ignore_cache":false}'), +(19278, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.843+00', '{"cached":null,"ignore_cache":false}'), +(19279, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:50.919+00', '{"cached":null,"ignore_cache":false}'), +(19280, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.04+00', '{"cached":null,"ignore_cache":false}'), +(19281, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.078+00', '{"cached":null,"ignore_cache":false}'), +(19282, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.096+00', '{"cached":null,"ignore_cache":false}'), +(19283, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.129+00', '{"cached":null,"ignore_cache":false}'), +(19284, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.167+00', '{"cached":null,"ignore_cache":false}'), +(19285, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.747+00', '{"cached":null,"ignore_cache":false}'), +(19286, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.748+00', '{"cached":null,"ignore_cache":false}'), +(19287, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.774+00', '{"cached":null,"ignore_cache":false}'), +(19288, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.926+00', '{"cached":null,"ignore_cache":false}'), +(19289, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.927+00', '{"cached":null,"ignore_cache":false}'), +(19290, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.936+00', '{"cached":null,"ignore_cache":false}'), +(19291, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:51.986+00', '{"cached":null,"ignore_cache":false}'), +(19292, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:52.063+00', '{"cached":null,"ignore_cache":false}'), +(19293, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:12:52.07+00', '{"cached":null,"ignore_cache":false}'), +(19294, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.408+00', '{"cached":null,"ignore_cache":false}'), +(19295, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.435+00', '{"cached":null,"ignore_cache":false}'), +(19296, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.446+00', '{"cached":null,"ignore_cache":false}'), +(19297, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.488+00', '{"cached":null,"ignore_cache":false}'), +(19298, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.49+00', '{"cached":null,"ignore_cache":false}'), +(19299, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.523+00', '{"cached":null,"ignore_cache":false}'), +(19300, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:23.652+00', '{"cached":null,"ignore_cache":false}'), +(19301, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.259+00', '{"cached":null,"ignore_cache":false}'), +(19302, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.378+00', '{"cached":null,"ignore_cache":false}'), +(19303, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.499+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19304, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.5+00', '{"cached":null,"ignore_cache":false}'), +(19305, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.541+00', '{"cached":null,"ignore_cache":false}'), +(19306, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.582+00', '{"cached":null,"ignore_cache":false}'), +(19307, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.616+00', '{"cached":null,"ignore_cache":false}'), +(19308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.738+00', '{"cached":null,"ignore_cache":false}'), +(19309, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:24.993+00', '{"cached":null,"ignore_cache":false}'), +(19310, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.009+00', '{"cached":null,"ignore_cache":false}'), +(19311, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.017+00', '{"cached":null,"ignore_cache":false}'), +(19312, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.033+00', '{"cached":null,"ignore_cache":false}'), +(19313, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.033+00', '{"cached":null,"ignore_cache":false}'), +(19314, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.036+00', '{"cached":null,"ignore_cache":false}'), +(19315, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.039+00', '{"cached":null,"ignore_cache":false}'), +(19316, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.065+00', '{"cached":null,"ignore_cache":false}'), +(19317, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:25.103+00', '{"cached":null,"ignore_cache":false}'), +(19318, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.425+00', '{"cached":null,"ignore_cache":false}'), +(19319, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.525+00', '{"cached":null,"ignore_cache":false}'), +(19320, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.548+00', '{"cached":null,"ignore_cache":false}'), +(19321, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.629+00', '{"cached":null,"ignore_cache":false}'), +(19322, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.643+00', '{"cached":null,"ignore_cache":false}'), +(19323, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.701+00', '{"cached":null,"ignore_cache":false}'), +(19324, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.731+00', '{"cached":null,"ignore_cache":false}'), +(19325, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.77+00', '{"cached":null,"ignore_cache":false}'), +(19326, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.782+00', '{"cached":null,"ignore_cache":false}'), +(19327, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.786+00', '{"cached":null,"ignore_cache":false}'), +(19328, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.797+00', '{"cached":null,"ignore_cache":false}'), +(19329, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.82+00', '{"cached":null,"ignore_cache":false}'), +(19330, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.827+00', '{"cached":null,"ignore_cache":false}'), +(19331, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.829+00', '{"cached":null,"ignore_cache":false}'), +(19332, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.838+00', '{"cached":null,"ignore_cache":false}'), +(19333, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:17:54.848+00', '{"cached":null,"ignore_cache":false}'), +(19334, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:12.991+00', '{"cached":null,"ignore_cache":false}'), +(19335, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.393+00', '{"cached":null,"ignore_cache":false}'), +(19336, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.587+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19337, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.595+00', '{"cached":null,"ignore_cache":false}'), +(19338, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.634+00', '{"cached":null,"ignore_cache":false}'), +(19339, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.642+00', '{"cached":null,"ignore_cache":false}'), +(19340, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.75+00', '{"cached":null,"ignore_cache":false}'), +(19341, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:13.891+00', '{"cached":null,"ignore_cache":false}'), +(19342, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.142+00', '{"cached":null,"ignore_cache":false}'), +(19343, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.22+00', '{"cached":null,"ignore_cache":false}'), +(19344, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.379+00', '{"cached":null,"ignore_cache":false}'), +(19345, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.466+00', '{"cached":null,"ignore_cache":false}'), +(19346, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.546+00', '{"cached":null,"ignore_cache":false}'), +(19347, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.557+00', '{"cached":null,"ignore_cache":false}'), +(19348, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.65+00', '{"cached":null,"ignore_cache":false}'), +(19349, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.776+00', '{"cached":null,"ignore_cache":false}'), +(19350, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:14.805+00', '{"cached":null,"ignore_cache":false}'), +(19351, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:15.094+00', '{"cached":null,"ignore_cache":false}'), +(19352, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:15.237+00', '{"cached":null,"ignore_cache":false}'), +(19353, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:15.28+00', '{"cached":null,"ignore_cache":false}'), +(19354, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:15.344+00', '{"cached":null,"ignore_cache":false}'), +(19355, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:15.446+00', '{"cached":null,"ignore_cache":false}'), +(19356, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:15.502+00', '{"cached":null,"ignore_cache":false}'), +(19357, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:43.675+00', '{"cached":null,"ignore_cache":false}'), +(19358, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:44.048+00', '{"cached":null,"ignore_cache":false}'), +(19359, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:44.195+00', '{"cached":null,"ignore_cache":false}'), +(19360, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:44.33+00', '{"cached":null,"ignore_cache":false}'), +(19361, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.319+00', '{"cached":null,"ignore_cache":false}'), +(19362, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.33+00', '{"cached":null,"ignore_cache":false}'), +(19363, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.345+00', '{"cached":null,"ignore_cache":false}'), +(19364, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.357+00', '{"cached":null,"ignore_cache":false}'), +(19365, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.42+00', '{"cached":null,"ignore_cache":false}'), +(19366, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.448+00', '{"cached":null,"ignore_cache":false}'), +(19367, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.451+00', '{"cached":null,"ignore_cache":false}'), +(19368, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.465+00', '{"cached":null,"ignore_cache":false}'), +(19369, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.475+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19370, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.513+00', '{"cached":null,"ignore_cache":false}'), +(19371, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.518+00', '{"cached":null,"ignore_cache":false}'), +(19372, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:20:45.524+00', '{"cached":null,"ignore_cache":false}'), +(19373, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.428+00', '{"cached":null,"ignore_cache":false}'), +(19374, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.479+00', '{"cached":null,"ignore_cache":false}'), +(19375, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.557+00', '{"cached":null,"ignore_cache":false}'), +(19376, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.558+00', '{"cached":null,"ignore_cache":false}'), +(19377, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.771+00', '{"cached":null,"ignore_cache":false}'), +(19378, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.814+00', '{"cached":null,"ignore_cache":false}'), +(19379, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.839+00', '{"cached":null,"ignore_cache":false}'), +(19380, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.844+00', '{"cached":null,"ignore_cache":false}'), +(19381, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.844+00', '{"cached":null,"ignore_cache":false}'), +(19382, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.85+00', '{"cached":null,"ignore_cache":false}'), +(19383, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.877+00', '{"cached":null,"ignore_cache":false}'), +(19384, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.916+00', '{"cached":null,"ignore_cache":false}'), +(19385, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.917+00', '{"cached":null,"ignore_cache":false}'), +(19386, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.925+00', '{"cached":null,"ignore_cache":false}'), +(19387, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.942+00', '{"cached":null,"ignore_cache":false}'), +(19388, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:13.948+00', '{"cached":null,"ignore_cache":false}'), +(19389, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.631+00', '{"cached":null,"ignore_cache":false}'), +(19390, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.78+00', '{"cached":null,"ignore_cache":false}'), +(19391, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.833+00', '{"cached":null,"ignore_cache":false}'), +(19392, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.884+00', '{"cached":null,"ignore_cache":false}'), +(19393, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.944+00', '{"cached":null,"ignore_cache":false}'), +(19394, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:43.994+00', '{"cached":null,"ignore_cache":false}'), +(19395, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.018+00', '{"cached":null,"ignore_cache":false}'), +(19396, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.061+00', '{"cached":null,"ignore_cache":false}'), +(19397, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.063+00', '{"cached":null,"ignore_cache":false}'), +(19398, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.077+00', '{"cached":null,"ignore_cache":false}'), +(19399, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.119+00', '{"cached":null,"ignore_cache":false}'), +(19400, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.147+00', '{"cached":null,"ignore_cache":false}'), +(19401, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.169+00', '{"cached":null,"ignore_cache":false}'), +(19402, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.186+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19403, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.195+00', '{"cached":null,"ignore_cache":false}'), +(19404, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:21:44.236+00', '{"cached":null,"ignore_cache":false}'), +(19405, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.182+00', '{"cached":null,"ignore_cache":false}'), +(19406, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.2+00', '{"cached":null,"ignore_cache":false}'), +(19407, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.236+00', '{"cached":null,"ignore_cache":false}'), +(19408, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.264+00', '{"cached":null,"ignore_cache":false}'), +(19409, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.274+00', '{"cached":null,"ignore_cache":false}'), +(19410, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.286+00', '{"cached":null,"ignore_cache":false}'), +(19411, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.299+00', '{"cached":null,"ignore_cache":false}'), +(19412, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.735+00', '{"cached":null,"ignore_cache":false}'), +(19413, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.832+00', '{"cached":null,"ignore_cache":false}'), +(19414, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.85+00', '{"cached":null,"ignore_cache":false}'), +(19415, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.853+00', '{"cached":null,"ignore_cache":false}'), +(19416, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.868+00', '{"cached":null,"ignore_cache":false}'), +(19417, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.875+00', '{"cached":null,"ignore_cache":false}'), +(19418, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.886+00', '{"cached":null,"ignore_cache":false}'), +(19419, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.894+00', '{"cached":null,"ignore_cache":false}'), +(19420, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:15.92+00', '{"cached":null,"ignore_cache":false}'), +(19421, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.91+00', '{"cached":null,"ignore_cache":false}'), +(19422, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.938+00', '{"cached":null,"ignore_cache":false}'), +(19423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:54.988+00', '{"cached":null,"ignore_cache":false}'), +(19424, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.167+00', '{"cached":null,"ignore_cache":false}'), +(19425, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.211+00', '{"cached":null,"ignore_cache":false}'), +(19426, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.233+00', '{"cached":null,"ignore_cache":false}'), +(19427, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.235+00', '{"cached":null,"ignore_cache":false}'), +(19428, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.257+00', '{"cached":null,"ignore_cache":false}'), +(19429, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.376+00', '{"cached":null,"ignore_cache":false}'), +(19430, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.44+00', '{"cached":null,"ignore_cache":false}'), +(19431, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.459+00', '{"cached":null,"ignore_cache":false}'), +(19432, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.467+00', '{"cached":null,"ignore_cache":false}'), +(19433, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.468+00', '{"cached":null,"ignore_cache":false}'), +(19434, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.514+00', '{"cached":null,"ignore_cache":false}'), +(19435, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.527+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19436, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:22:55.541+00', '{"cached":null,"ignore_cache":false}'), +(19437, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.576+00', '{"cached":null,"ignore_cache":false}'), +(19438, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.636+00', '{"cached":null,"ignore_cache":false}'), +(19439, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.646+00', '{"cached":null,"ignore_cache":false}'), +(19440, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.757+00', '{"cached":null,"ignore_cache":false}'), +(19441, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.761+00', '{"cached":null,"ignore_cache":false}'), +(19442, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.774+00', '{"cached":null,"ignore_cache":false}'), +(19443, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.803+00', '{"cached":null,"ignore_cache":false}'), +(19444, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.859+00', '{"cached":null,"ignore_cache":false}'), +(19445, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.924+00', '{"cached":null,"ignore_cache":false}'), +(19446, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.952+00', '{"cached":null,"ignore_cache":false}'), +(19447, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.964+00', '{"cached":null,"ignore_cache":false}'), +(19448, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.974+00', '{"cached":null,"ignore_cache":false}'), +(19449, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:13.976+00', '{"cached":null,"ignore_cache":false}'), +(19450, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:14.057+00', '{"cached":null,"ignore_cache":false}'), +(19451, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:14.071+00', '{"cached":null,"ignore_cache":false}'), +(19452, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:14.095+00', '{"cached":null,"ignore_cache":false}'), +(19453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.53+00', '{"cached":null,"ignore_cache":false}'), +(19454, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.617+00', '{"cached":null,"ignore_cache":false}'), +(19455, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.702+00', '{"cached":null,"ignore_cache":false}'), +(19456, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.729+00', '{"cached":null,"ignore_cache":false}'), +(19457, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.869+00', '{"cached":null,"ignore_cache":false}'), +(19458, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.916+00', '{"cached":null,"ignore_cache":false}'), +(19459, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.971+00', '{"cached":null,"ignore_cache":false}'), +(19460, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.971+00', '{"cached":null,"ignore_cache":false}'), +(19461, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:43.978+00', '{"cached":null,"ignore_cache":false}'), +(19462, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:44.061+00', '{"cached":null,"ignore_cache":false}'), +(19463, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:44.084+00', '{"cached":null,"ignore_cache":false}'), +(19464, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:44.084+00', '{"cached":null,"ignore_cache":false}'), +(19465, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:44.096+00', '{"cached":null,"ignore_cache":false}'), +(19466, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:44.113+00', '{"cached":null,"ignore_cache":false}'), +(19467, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:44.12+00', '{"cached":null,"ignore_cache":false}'), +(19468, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:23:44.136+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19469, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.461+00', '{"cached":null,"ignore_cache":false}'), +(19470, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.585+00', '{"cached":null,"ignore_cache":false}'), +(19471, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.68+00', '{"cached":null,"ignore_cache":false}'), +(19472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.766+00', '{"cached":null,"ignore_cache":false}'), +(19473, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.773+00', '{"cached":null,"ignore_cache":false}'), +(19474, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.783+00', '{"cached":null,"ignore_cache":false}'), +(19475, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.799+00', '{"cached":null,"ignore_cache":false}'), +(19476, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.836+00', '{"cached":null,"ignore_cache":false}'), +(19477, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:13.959+00', '{"cached":null,"ignore_cache":false}'), +(19478, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:14.004+00', '{"cached":null,"ignore_cache":false}'), +(19479, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:14.022+00', '{"cached":null,"ignore_cache":false}'), +(19480, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:14.065+00', '{"cached":null,"ignore_cache":false}'), +(19481, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:14.071+00', '{"cached":null,"ignore_cache":false}'), +(19482, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:14.086+00', '{"cached":null,"ignore_cache":false}'), +(19483, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:14.111+00', '{"cached":null,"ignore_cache":false}'), +(19484, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:14.132+00', '{"cached":null,"ignore_cache":false}'), +(19485, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.527+00', '{"cached":null,"ignore_cache":false}'), +(19486, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.618+00', '{"cached":null,"ignore_cache":false}'), +(19487, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.77+00', '{"cached":null,"ignore_cache":false}'), +(19488, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.787+00', '{"cached":null,"ignore_cache":false}'), +(19489, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.818+00', '{"cached":null,"ignore_cache":false}'), +(19490, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.849+00', '{"cached":null,"ignore_cache":false}'), +(19491, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.864+00', '{"cached":null,"ignore_cache":false}'), +(19492, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:43.971+00', '{"cached":null,"ignore_cache":false}'), +(19493, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.088+00', '{"cached":null,"ignore_cache":false}'), +(19494, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.105+00', '{"cached":null,"ignore_cache":false}'), +(19495, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.125+00', '{"cached":null,"ignore_cache":false}'), +(19496, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.157+00', '{"cached":null,"ignore_cache":false}'), +(19497, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.172+00', '{"cached":null,"ignore_cache":false}'), +(19498, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.204+00', '{"cached":null,"ignore_cache":false}'), +(19499, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.247+00', '{"cached":null,"ignore_cache":false}'), +(19500, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:24:44.263+00', '{"cached":null,"ignore_cache":false}'), +(19501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.399+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19502, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.412+00', '{"cached":null,"ignore_cache":false}'), +(19503, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.49+00', '{"cached":null,"ignore_cache":false}'), +(19504, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.543+00', '{"cached":null,"ignore_cache":false}'), +(19505, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.579+00', '{"cached":null,"ignore_cache":false}'), +(19506, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.582+00', '{"cached":null,"ignore_cache":false}'), +(19507, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.611+00', '{"cached":null,"ignore_cache":false}'), +(19508, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.788+00', '{"cached":null,"ignore_cache":false}'), +(19509, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.829+00', '{"cached":null,"ignore_cache":false}'), +(19510, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.918+00', '{"cached":null,"ignore_cache":false}'), +(19511, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:13.927+00', '{"cached":null,"ignore_cache":false}'), +(19512, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:14.052+00', '{"cached":null,"ignore_cache":false}'), +(19513, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:14.089+00', '{"cached":null,"ignore_cache":false}'), +(19514, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:14.09+00', '{"cached":null,"ignore_cache":false}'), +(19515, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:14.102+00', '{"cached":null,"ignore_cache":false}'), +(19516, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:14.158+00', '{"cached":null,"ignore_cache":false}'), +(19517, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.382+00', '{"cached":null,"ignore_cache":false}'), +(19518, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.403+00', '{"cached":null,"ignore_cache":false}'), +(19519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.41+00', '{"cached":null,"ignore_cache":false}'), +(19520, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.412+00', '{"cached":null,"ignore_cache":false}'), +(19521, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.432+00', '{"cached":null,"ignore_cache":false}'), +(19522, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.434+00', '{"cached":null,"ignore_cache":false}'), +(19523, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.439+00', '{"cached":null,"ignore_cache":false}'), +(19524, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.778+00', '{"cached":null,"ignore_cache":false}'), +(19525, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.779+00', '{"cached":null,"ignore_cache":false}'), +(19526, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.78+00', '{"cached":null,"ignore_cache":false}'), +(19527, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.798+00', '{"cached":null,"ignore_cache":false}'), +(19528, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.811+00', '{"cached":null,"ignore_cache":false}'), +(19529, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.838+00', '{"cached":null,"ignore_cache":false}'), +(19530, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.852+00', '{"cached":null,"ignore_cache":false}'), +(19531, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.86+00', '{"cached":null,"ignore_cache":false}'), +(19532, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:25:43.868+00', '{"cached":null,"ignore_cache":false}'), +(19533, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:20.961+00', '{"cached":null,"ignore_cache":false}'), +(19534, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.034+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19535, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.039+00', '{"cached":null,"ignore_cache":false}'), +(19536, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.051+00', '{"cached":null,"ignore_cache":false}'), +(19537, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.064+00', '{"cached":null,"ignore_cache":false}'), +(19538, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.208+00', '{"cached":null,"ignore_cache":false}'), +(19539, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.777+00', '{"cached":null,"ignore_cache":false}'), +(19540, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:21.845+00', '{"cached":null,"ignore_cache":false}'), +(19541, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.406+00', '{"cached":null,"ignore_cache":false}'), +(19542, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.422+00', '{"cached":null,"ignore_cache":false}'), +(19543, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.433+00', '{"cached":null,"ignore_cache":false}'), +(19544, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.445+00', '{"cached":null,"ignore_cache":false}'), +(19545, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.567+00', '{"cached":null,"ignore_cache":false}'), +(19546, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.583+00', '{"cached":null,"ignore_cache":false}'), +(19547, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.588+00', '{"cached":null,"ignore_cache":false}'), +(19548, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.589+00', '{"cached":null,"ignore_cache":false}'), +(19549, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.612+00', '{"cached":null,"ignore_cache":false}'), +(19550, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.628+00', '{"cached":null,"ignore_cache":false}'), +(19551, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.68+00', '{"cached":null,"ignore_cache":false}'), +(19552, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.684+00', '{"cached":null,"ignore_cache":false}'), +(19553, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.695+00', '{"cached":null,"ignore_cache":false}'), +(19554, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.737+00', '{"cached":null,"ignore_cache":false}'), +(19555, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.772+00', '{"cached":null,"ignore_cache":false}'), +(19556, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.824+00', '{"cached":null,"ignore_cache":false}'), +(19557, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:22.853+00', '{"cached":null,"ignore_cache":false}'), +(19558, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.403+00', '{"cached":null,"ignore_cache":false}'), +(19559, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.62+00', '{"cached":null,"ignore_cache":false}'), +(19560, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.744+00', '{"cached":null,"ignore_cache":false}'), +(19561, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.815+00', '{"cached":null,"ignore_cache":false}'), +(19562, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.94+00', '{"cached":null,"ignore_cache":false}'), +(19563, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.948+00', '{"cached":null,"ignore_cache":false}'), +(19564, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:58.949+00', '{"cached":null,"ignore_cache":false}'), +(19565, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.144+00', '{"cached":null,"ignore_cache":false}'), +(19566, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.187+00', '{"cached":null,"ignore_cache":false}'), +(19567, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.187+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19568, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.431+00', '{"cached":null,"ignore_cache":false}'), +(19569, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.508+00', '{"cached":null,"ignore_cache":false}'), +(19570, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.612+00', '{"cached":null,"ignore_cache":false}'), +(19571, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.631+00', '{"cached":null,"ignore_cache":false}'), +(19572, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.775+00', '{"cached":null,"ignore_cache":false}'), +(19573, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.85+00', '{"cached":null,"ignore_cache":false}'), +(19574, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.904+00', '{"cached":null,"ignore_cache":false}'), +(19575, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.93+00', '{"cached":null,"ignore_cache":false}'), +(19576, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:33:59.941+00', '{"cached":null,"ignore_cache":false}'), +(19577, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.349+00', '{"cached":null,"ignore_cache":false}'), +(19578, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.407+00', '{"cached":null,"ignore_cache":false}'), +(19579, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.47+00', '{"cached":null,"ignore_cache":false}'), +(19580, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.479+00', '{"cached":null,"ignore_cache":false}'), +(19581, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.503+00', '{"cached":null,"ignore_cache":false}'), +(19582, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.517+00', '{"cached":null,"ignore_cache":false}'), +(19583, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.519+00', '{"cached":null,"ignore_cache":false}'), +(19584, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.539+00', '{"cached":null,"ignore_cache":false}'), +(19585, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:33.664+00', '{"cached":null,"ignore_cache":false}'), +(19586, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.837+00', '{"cached":null,"ignore_cache":false}'), +(19587, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.841+00', '{"cached":null,"ignore_cache":false}'), +(19588, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.85+00', '{"cached":null,"ignore_cache":false}'), +(19589, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.892+00', '{"cached":null,"ignore_cache":false}'), +(19590, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.927+00', '{"cached":null,"ignore_cache":false}'), +(19591, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.933+00', '{"cached":null,"ignore_cache":false}'), +(19592, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:34:36.958+00', '{"cached":null,"ignore_cache":false}'), +(19593, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.329+00', '{"cached":null,"ignore_cache":false}'), +(19594, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.54+00', '{"cached":null,"ignore_cache":false}'), +(19595, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.636+00', '{"cached":null,"ignore_cache":false}'), +(19596, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.659+00', '{"cached":null,"ignore_cache":false}'), +(19597, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.662+00', '{"cached":null,"ignore_cache":false}'), +(19598, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.674+00', '{"cached":null,"ignore_cache":false}'), +(19599, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.718+00', '{"cached":null,"ignore_cache":false}'), +(19600, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.745+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19601, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:07.787+00', '{"cached":null,"ignore_cache":false}'), +(19602, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.58+00', '{"cached":null,"ignore_cache":false}'), +(19603, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.703+00', '{"cached":null,"ignore_cache":false}'), +(19604, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.75+00', '{"cached":null,"ignore_cache":false}'), +(19605, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.788+00', '{"cached":null,"ignore_cache":false}'), +(19606, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.83+00', '{"cached":null,"ignore_cache":false}'), +(19607, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.859+00', '{"cached":null,"ignore_cache":false}'), +(19608, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:16.869+00', '{"cached":null,"ignore_cache":false}'), +(19609, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.834+00', '{"cached":null,"ignore_cache":false}'), +(19610, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.844+00', '{"cached":null,"ignore_cache":false}'), +(19611, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.886+00', '{"cached":null,"ignore_cache":false}'), +(19612, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.932+00', '{"cached":null,"ignore_cache":false}'), +(19613, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.946+00', '{"cached":null,"ignore_cache":false}'), +(19614, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:46.975+00', '{"cached":null,"ignore_cache":false}'), +(19615, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:47.032+00', '{"cached":null,"ignore_cache":false}'), +(19616, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:47.046+00', '{"cached":null,"ignore_cache":false}'), +(19617, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:47.049+00', '{"cached":null,"ignore_cache":false}'), +(19618, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.487+00', '{"cached":null,"ignore_cache":false}'), +(19619, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.552+00', '{"cached":null,"ignore_cache":false}'), +(19620, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.614+00', '{"cached":null,"ignore_cache":false}'), +(19621, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.694+00', '{"cached":null,"ignore_cache":false}'), +(19622, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.695+00', '{"cached":null,"ignore_cache":false}'), +(19623, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.716+00', '{"cached":null,"ignore_cache":false}'), +(19624, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:35:55.736+00', '{"cached":null,"ignore_cache":false}'), +(19625, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.168+00', '{"cached":null,"ignore_cache":false}'), +(19626, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.216+00', '{"cached":null,"ignore_cache":false}'), +(19627, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.252+00', '{"cached":null,"ignore_cache":false}'), +(19628, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.27+00', '{"cached":null,"ignore_cache":false}'), +(19629, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.412+00', '{"cached":null,"ignore_cache":false}'), +(19630, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.419+00', '{"cached":null,"ignore_cache":false}'), +(19631, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.446+00', '{"cached":null,"ignore_cache":false}'), +(19632, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.54+00', '{"cached":null,"ignore_cache":false}'), +(19633, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:23.581+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19634, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.309+00', '{"cached":null,"ignore_cache":false}'), +(19635, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.421+00', '{"cached":null,"ignore_cache":false}'), +(19636, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.427+00', '{"cached":null,"ignore_cache":false}'), +(19637, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.433+00', '{"cached":null,"ignore_cache":false}'), +(19638, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.447+00', '{"cached":null,"ignore_cache":false}'), +(19639, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.466+00', '{"cached":null,"ignore_cache":false}'), +(19640, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:36:34.475+00', '{"cached":null,"ignore_cache":false}'), +(19641, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.449+00', '{"cached":null,"ignore_cache":false}'), +(19642, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.457+00', '{"cached":null,"ignore_cache":false}'), +(19643, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.457+00', '{"cached":null,"ignore_cache":false}'), +(19644, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.489+00', '{"cached":null,"ignore_cache":false}'), +(19645, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.5+00', '{"cached":null,"ignore_cache":false}'), +(19646, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.585+00', '{"cached":null,"ignore_cache":false}'), +(19647, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.612+00', '{"cached":null,"ignore_cache":false}'), +(19648, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.683+00', '{"cached":null,"ignore_cache":false}'), +(19649, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:02.704+00', '{"cached":null,"ignore_cache":false}'), +(19650, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.038+00', '{"cached":null,"ignore_cache":false}'), +(19651, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.108+00', '{"cached":null,"ignore_cache":false}'), +(19652, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.15+00', '{"cached":null,"ignore_cache":false}'), +(19653, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.161+00', '{"cached":null,"ignore_cache":false}'), +(19654, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.185+00', '{"cached":null,"ignore_cache":false}'), +(19655, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.201+00', '{"cached":null,"ignore_cache":false}'), +(19656, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:08.225+00', '{"cached":null,"ignore_cache":false}'), +(19657, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.03+00', '{"cached":null,"ignore_cache":false}'), +(19658, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.04+00', '{"cached":null,"ignore_cache":false}'), +(19659, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.072+00', '{"cached":null,"ignore_cache":false}'), +(19660, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.117+00', '{"cached":null,"ignore_cache":false}'), +(19661, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.137+00', '{"cached":null,"ignore_cache":false}'), +(19662, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.156+00', '{"cached":null,"ignore_cache":false}'), +(19663, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.176+00', '{"cached":null,"ignore_cache":false}'), +(19664, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.218+00', '{"cached":null,"ignore_cache":false}'), +(19665, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:33.226+00', '{"cached":null,"ignore_cache":false}'), +(19666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.401+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19667, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.401+00', '{"cached":null,"ignore_cache":false}'), +(19668, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.47+00', '{"cached":null,"ignore_cache":false}'), +(19669, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.494+00', '{"cached":null,"ignore_cache":false}'), +(19670, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.537+00', '{"cached":null,"ignore_cache":false}'), +(19671, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.552+00', '{"cached":null,"ignore_cache":false}'), +(19672, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:37:44.566+00', '{"cached":null,"ignore_cache":false}'), +(19673, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.032+00', '{"cached":null,"ignore_cache":false}'), +(19674, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.094+00', '{"cached":null,"ignore_cache":false}'), +(19675, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.116+00', '{"cached":null,"ignore_cache":false}'), +(19676, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.509+00', '{"cached":null,"ignore_cache":false}'), +(19677, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.635+00', '{"cached":null,"ignore_cache":false}'), +(19678, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.883+00', '{"cached":null,"ignore_cache":false}'), +(19679, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.898+00', '{"cached":null,"ignore_cache":false}'), +(19680, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.899+00', '{"cached":null,"ignore_cache":false}'), +(19681, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:11.903+00', '{"cached":null,"ignore_cache":false}'), +(19682, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.015+00', '{"cached":null,"ignore_cache":false}'), +(19683, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.123+00', '{"cached":null,"ignore_cache":false}'), +(19684, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.14+00', '{"cached":null,"ignore_cache":false}'), +(19685, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.37+00', '{"cached":null,"ignore_cache":false}'), +(19686, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.457+00', '{"cached":null,"ignore_cache":false}'), +(19687, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.565+00', '{"cached":null,"ignore_cache":false}'), +(19688, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:12.993+00', '{"cached":null,"ignore_cache":false}'), +(19689, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:13.078+00', '{"cached":null,"ignore_cache":false}'), +(19690, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:13.171+00', '{"cached":null,"ignore_cache":false}'), +(19691, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:13.189+00', '{"cached":null,"ignore_cache":false}'), +(19692, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:13.268+00', '{"cached":null,"ignore_cache":false}'), +(19693, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:13.33+00', '{"cached":null,"ignore_cache":false}'), +(19694, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.539+00', '{"cached":null,"ignore_cache":false}'), +(19695, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.553+00', '{"cached":null,"ignore_cache":false}'), +(19696, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.659+00', '{"cached":null,"ignore_cache":false}'), +(19697, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.664+00', '{"cached":null,"ignore_cache":false}'), +(19698, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.786+00', '{"cached":null,"ignore_cache":false}'), +(19699, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.787+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19700, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.788+00', '{"cached":null,"ignore_cache":false}'), +(19701, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.805+00', '{"cached":null,"ignore_cache":false}'), +(19702, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.813+00', '{"cached":null,"ignore_cache":false}'), +(19703, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.891+00', '{"cached":null,"ignore_cache":false}'), +(19704, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.986+00', '{"cached":null,"ignore_cache":false}'), +(19705, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:44.987+00', '{"cached":null,"ignore_cache":false}'), +(19706, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:45.01+00', '{"cached":null,"ignore_cache":false}'), +(19707, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:45.013+00', '{"cached":null,"ignore_cache":false}'), +(19708, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:45.026+00', '{"cached":null,"ignore_cache":false}'), +(19709, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:38:45.046+00', '{"cached":null,"ignore_cache":false}'), +(19710, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.074+00', '{"cached":null,"ignore_cache":false}'), +(19711, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.096+00', '{"cached":null,"ignore_cache":false}'), +(19712, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.105+00', '{"cached":null,"ignore_cache":false}'), +(19713, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.124+00', '{"cached":null,"ignore_cache":false}'), +(19714, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.15+00', '{"cached":null,"ignore_cache":false}'), +(19715, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.155+00', '{"cached":null,"ignore_cache":false}'), +(19716, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.174+00', '{"cached":null,"ignore_cache":false}'), +(19717, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.2+00', '{"cached":null,"ignore_cache":false}'), +(19718, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:16.213+00', '{"cached":null,"ignore_cache":false}'), +(19719, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.174+00', '{"cached":null,"ignore_cache":false}'), +(19720, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.195+00', '{"cached":null,"ignore_cache":false}'), +(19721, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.198+00', '{"cached":null,"ignore_cache":false}'), +(19722, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.229+00', '{"cached":null,"ignore_cache":false}'), +(19723, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.256+00', '{"cached":null,"ignore_cache":false}'), +(19724, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.261+00', '{"cached":null,"ignore_cache":false}'), +(19725, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:24.273+00', '{"cached":null,"ignore_cache":false}'), +(19726, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.931+00', '{"cached":null,"ignore_cache":false}'), +(19727, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.964+00', '{"cached":null,"ignore_cache":false}'), +(19728, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.969+00', '{"cached":null,"ignore_cache":false}'), +(19729, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.996+00', '{"cached":null,"ignore_cache":false}'), +(19730, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:55.996+00', '{"cached":null,"ignore_cache":false}'), +(19731, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:56.03+00', '{"cached":null,"ignore_cache":false}'), +(19732, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:56.03+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19733, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:56.04+00', '{"cached":null,"ignore_cache":false}'), +(19734, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:39:56.045+00', '{"cached":null,"ignore_cache":false}'), +(19735, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.959+00', '{"cached":null,"ignore_cache":false}'), +(19736, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.963+00', '{"cached":null,"ignore_cache":false}'), +(19737, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.978+00', '{"cached":null,"ignore_cache":false}'), +(19738, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.981+00', '{"cached":null,"ignore_cache":false}'), +(19739, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:03.984+00', '{"cached":null,"ignore_cache":false}'), +(19740, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:04.003+00', '{"cached":null,"ignore_cache":false}'), +(19741, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:40:04.004+00', '{"cached":null,"ignore_cache":false}'), +(19742, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.679+00', '{"cached":null,"ignore_cache":false}'), +(19743, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.775+00', '{"cached":null,"ignore_cache":false}'), +(19744, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:33.863+00', '{"cached":null,"ignore_cache":false}'), +(19745, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.433+00', '{"cached":null,"ignore_cache":false}'), +(19746, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:34.614+00', '{"cached":null,"ignore_cache":false}'), +(19747, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.043+00', '{"cached":null,"ignore_cache":false}'), +(19748, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.22+00', '{"cached":null,"ignore_cache":false}'), +(19749, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.227+00', '{"cached":null,"ignore_cache":false}'), +(19750, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.242+00', '{"cached":null,"ignore_cache":false}'), +(19751, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.614+00', '{"cached":null,"ignore_cache":false}'), +(19752, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.748+00', '{"cached":null,"ignore_cache":false}'), +(19753, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.777+00', '{"cached":null,"ignore_cache":false}'), +(19754, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.807+00', '{"cached":null,"ignore_cache":false}'), +(19755, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.847+00', '{"cached":null,"ignore_cache":false}'), +(19756, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.887+00', '{"cached":null,"ignore_cache":false}'), +(19757, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.946+00', '{"cached":null,"ignore_cache":false}'), +(19758, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:35.972+00', '{"cached":null,"ignore_cache":false}'), +(19759, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:36.023+00', '{"cached":null,"ignore_cache":false}'), +(19760, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:36.058+00', '{"cached":null,"ignore_cache":false}'), +(19761, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:36.095+00', '{"cached":null,"ignore_cache":false}'), +(19762, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:43:36.107+00', '{"cached":null,"ignore_cache":false}'), +(19763, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.035+00', '{"cached":null,"ignore_cache":false}'), +(19764, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.622+00', '{"cached":null,"ignore_cache":false}'), +(19765, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.622+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19766, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:47.64+00', '{"cached":null,"ignore_cache":false}'), +(19767, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.438+00', '{"cached":null,"ignore_cache":false}'), +(19768, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.438+00', '{"cached":null,"ignore_cache":false}'), +(19769, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.439+00', '{"cached":null,"ignore_cache":false}'), +(19770, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.44+00', '{"cached":null,"ignore_cache":false}'), +(19771, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.44+00', '{"cached":null,"ignore_cache":false}'), +(19772, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.48+00', '{"cached":null,"ignore_cache":false}'), +(19773, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.551+00', '{"cached":null,"ignore_cache":false}'), +(19774, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.598+00', '{"cached":null,"ignore_cache":false}'), +(19775, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.64+00', '{"cached":null,"ignore_cache":false}'), +(19776, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.746+00', '{"cached":null,"ignore_cache":false}'), +(19777, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.846+00', '{"cached":null,"ignore_cache":false}'), +(19778, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.879+00', '{"cached":null,"ignore_cache":false}'), +(19779, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:48.908+00', '{"cached":null,"ignore_cache":false}'), +(19780, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.013+00', '{"cached":null,"ignore_cache":false}'), +(19781, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.234+00', '{"cached":null,"ignore_cache":false}'), +(19782, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.291+00', '{"cached":null,"ignore_cache":false}'), +(19783, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.398+00', '{"cached":null,"ignore_cache":false}'), +(19784, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.398+00', '{"cached":null,"ignore_cache":false}'), +(19785, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.419+00', '{"cached":null,"ignore_cache":false}'), +(19786, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:45:49.539+00', '{"cached":null,"ignore_cache":false}'), +(19787, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.125+00', '{"cached":null,"ignore_cache":false}'), +(19788, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.126+00', '{"cached":null,"ignore_cache":false}'), +(19789, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.211+00', '{"cached":null,"ignore_cache":false}'), +(19790, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.289+00', '{"cached":null,"ignore_cache":false}'), +(19791, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.307+00', '{"cached":null,"ignore_cache":false}'), +(19792, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.334+00', '{"cached":null,"ignore_cache":false}'), +(19793, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.337+00', '{"cached":null,"ignore_cache":false}'), +(19794, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.634+00', '{"cached":null,"ignore_cache":false}'), +(19795, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.68+00', '{"cached":null,"ignore_cache":false}'), +(19796, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.705+00', '{"cached":null,"ignore_cache":false}'), +(19797, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.742+00', '{"cached":null,"ignore_cache":false}'), +(19798, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.76+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19799, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.768+00', '{"cached":null,"ignore_cache":false}'), +(19800, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.779+00', '{"cached":null,"ignore_cache":false}'), +(19801, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.783+00', '{"cached":null,"ignore_cache":false}'), +(19802, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:18.787+00', '{"cached":null,"ignore_cache":false}'), +(19803, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.683+00', '{"cached":null,"ignore_cache":false}'), +(19804, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.732+00', '{"cached":null,"ignore_cache":false}'), +(19805, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.736+00', '{"cached":null,"ignore_cache":false}'), +(19806, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.74+00', '{"cached":null,"ignore_cache":false}'), +(19807, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.752+00', '{"cached":null,"ignore_cache":false}'), +(19808, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.767+00', '{"cached":null,"ignore_cache":false}'), +(19809, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:48.774+00', '{"cached":null,"ignore_cache":false}'), +(19810, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.267+00', '{"cached":null,"ignore_cache":false}'), +(19811, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.364+00', '{"cached":null,"ignore_cache":false}'), +(19812, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.38+00', '{"cached":null,"ignore_cache":false}'), +(19813, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.401+00', '{"cached":null,"ignore_cache":false}'), +(19814, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.508+00', '{"cached":null,"ignore_cache":false}'), +(19815, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.517+00', '{"cached":null,"ignore_cache":false}'), +(19816, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.524+00', '{"cached":null,"ignore_cache":false}'), +(19817, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.567+00', '{"cached":null,"ignore_cache":false}'), +(19818, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:46:50.6+00', '{"cached":null,"ignore_cache":false}'), +(19819, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.065+00', '{"cached":null,"ignore_cache":false}'), +(19820, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.114+00', '{"cached":null,"ignore_cache":false}'), +(19821, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.123+00', '{"cached":null,"ignore_cache":false}'), +(19822, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.169+00', '{"cached":null,"ignore_cache":false}'), +(19823, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.174+00', '{"cached":null,"ignore_cache":false}'), +(19824, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.174+00', '{"cached":null,"ignore_cache":false}'), +(19825, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.23+00', '{"cached":null,"ignore_cache":false}'), +(19826, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.24+00', '{"cached":null,"ignore_cache":false}'), +(19827, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.254+00', '{"cached":null,"ignore_cache":false}'), +(19828, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.888+00', '{"cached":null,"ignore_cache":false}'), +(19829, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.91+00', '{"cached":null,"ignore_cache":false}'), +(19830, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.925+00', '{"cached":null,"ignore_cache":false}'), +(19831, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.946+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19832, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.971+00', '{"cached":null,"ignore_cache":false}'), +(19833, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.976+00', '{"cached":null,"ignore_cache":false}'), +(19834, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:47:29.977+00', '{"cached":null,"ignore_cache":false}'), +(19835, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.266+00', '{"cached":null,"ignore_cache":false}'), +(19836, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.344+00', '{"cached":null,"ignore_cache":false}'), +(19837, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.349+00', '{"cached":null,"ignore_cache":false}'), +(19838, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.366+00', '{"cached":null,"ignore_cache":false}'), +(19839, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.407+00', '{"cached":null,"ignore_cache":false}'), +(19840, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.428+00', '{"cached":null,"ignore_cache":false}'), +(19841, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.45+00', '{"cached":null,"ignore_cache":false}'), +(19842, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.466+00', '{"cached":null,"ignore_cache":false}'), +(19843, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.476+00', '{"cached":null,"ignore_cache":false}'), +(19844, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:14.97+00', '{"cached":null,"ignore_cache":false}'), +(19845, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:15.019+00', '{"cached":null,"ignore_cache":false}'), +(19846, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:15.03+00', '{"cached":null,"ignore_cache":false}'), +(19847, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:15.035+00', '{"cached":null,"ignore_cache":false}'), +(19848, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:15.148+00', '{"cached":null,"ignore_cache":false}'), +(19849, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:15.153+00', '{"cached":null,"ignore_cache":false}'), +(19850, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:48:15.164+00', '{"cached":null,"ignore_cache":false}'), +(19851, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.819+00', '{"cached":null,"ignore_cache":false}'), +(19852, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.885+00', '{"cached":null,"ignore_cache":false}'), +(19853, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.947+00', '{"cached":null,"ignore_cache":false}'), +(19854, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.951+00', '{"cached":null,"ignore_cache":false}'), +(19855, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.962+00', '{"cached":null,"ignore_cache":false}'), +(19856, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:21.965+00', '{"cached":null,"ignore_cache":false}'), +(19857, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.017+00', '{"cached":null,"ignore_cache":false}'), +(19858, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.023+00', '{"cached":null,"ignore_cache":false}'), +(19859, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.037+00', '{"cached":null,"ignore_cache":false}'), +(19860, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.626+00', '{"cached":null,"ignore_cache":false}'), +(19861, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.632+00', '{"cached":null,"ignore_cache":false}'), +(19862, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.642+00', '{"cached":null,"ignore_cache":false}'), +(19863, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.644+00', '{"cached":null,"ignore_cache":false}'), +(19864, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.706+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19865, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.742+00', '{"cached":null,"ignore_cache":false}'), +(19866, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:22.751+00', '{"cached":null,"ignore_cache":false}'), +(19867, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.249+00', '{"cached":null,"ignore_cache":false}'), +(19868, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.266+00', '{"cached":null,"ignore_cache":false}'), +(19869, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.339+00', '{"cached":null,"ignore_cache":false}'), +(19870, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.382+00', '{"cached":null,"ignore_cache":false}'), +(19871, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.437+00', '{"cached":null,"ignore_cache":false}'), +(19872, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.468+00', '{"cached":null,"ignore_cache":false}'), +(19873, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.484+00', '{"cached":null,"ignore_cache":false}'), +(19874, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.496+00', '{"cached":null,"ignore_cache":false}'), +(19875, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:51:59.507+00', '{"cached":null,"ignore_cache":false}'), +(19876, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.058+00', '{"cached":null,"ignore_cache":false}'), +(19877, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.149+00', '{"cached":null,"ignore_cache":false}'), +(19878, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.207+00', '{"cached":null,"ignore_cache":false}'), +(19879, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.218+00', '{"cached":null,"ignore_cache":false}'), +(19880, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.242+00', '{"cached":null,"ignore_cache":false}'), +(19881, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.278+00', '{"cached":null,"ignore_cache":false}'), +(19882, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:00.33+00', '{"cached":null,"ignore_cache":false}'), +(19883, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.213+00', '{"cached":null,"ignore_cache":false}'), +(19884, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.256+00', '{"cached":null,"ignore_cache":false}'), +(19885, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.313+00', '{"cached":null,"ignore_cache":false}'), +(19886, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.318+00', '{"cached":null,"ignore_cache":false}'), +(19887, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.343+00', '{"cached":null,"ignore_cache":false}'), +(19888, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.35+00', '{"cached":null,"ignore_cache":false}'), +(19889, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.357+00', '{"cached":null,"ignore_cache":false}'), +(19890, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.363+00', '{"cached":null,"ignore_cache":false}'), +(19891, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:37.382+00', '{"cached":null,"ignore_cache":false}'), +(19892, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.112+00', '{"cached":null,"ignore_cache":false}'), +(19893, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.125+00', '{"cached":null,"ignore_cache":false}'), +(19894, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.125+00', '{"cached":null,"ignore_cache":false}'), +(19895, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.197+00', '{"cached":null,"ignore_cache":false}'), +(19896, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.222+00', '{"cached":null,"ignore_cache":false}'), +(19897, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.239+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19898, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 15:52:38.262+00', '{"cached":null,"ignore_cache":false}'), +(19899, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.307+00', '{"cached":null,"ignore_cache":false}'), +(19900, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.38+00', '{"cached":null,"ignore_cache":false}'), +(19901, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.406+00', '{"cached":null,"ignore_cache":false}'), +(19902, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.417+00', '{"cached":null,"ignore_cache":false}'), +(19903, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.447+00', '{"cached":null,"ignore_cache":false}'), +(19904, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.478+00', '{"cached":null,"ignore_cache":false}'), +(19905, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:50.503+00', '{"cached":null,"ignore_cache":false}'), +(19906, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.573+00', '{"cached":null,"ignore_cache":false}'), +(19907, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.641+00', '{"cached":null,"ignore_cache":false}'), +(19908, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.652+00', '{"cached":null,"ignore_cache":false}'), +(19909, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.691+00', '{"cached":null,"ignore_cache":false}'), +(19910, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.703+00', '{"cached":null,"ignore_cache":false}'), +(19911, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.738+00', '{"cached":null,"ignore_cache":false}'), +(19912, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.748+00', '{"cached":null,"ignore_cache":false}'), +(19913, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.759+00', '{"cached":null,"ignore_cache":false}'), +(19914, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 16:02:51.772+00', '{"cached":null,"ignore_cache":false}'), +(19915, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.618+00', '{"cached":null,"ignore_cache":false}'), +(19916, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.62+00', '{"cached":null,"ignore_cache":false}'), +(19917, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.632+00', '{"cached":null,"ignore_cache":false}'), +(19918, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.695+00', '{"cached":null,"ignore_cache":false}'), +(19919, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.697+00', '{"cached":null,"ignore_cache":false}'), +(19920, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.755+00', '{"cached":null,"ignore_cache":false}'), +(19921, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.775+00', '{"cached":null,"ignore_cache":false}'), +(19922, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.784+00', '{"cached":null,"ignore_cache":false}'), +(19923, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:48.788+00', '{"cached":null,"ignore_cache":false}'), +(19924, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.424+00', '{"cached":null,"ignore_cache":false}'), +(19925, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.435+00', '{"cached":null,"ignore_cache":false}'), +(19926, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.444+00', '{"cached":null,"ignore_cache":false}'), +(19927, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.453+00', '{"cached":null,"ignore_cache":false}'), +(19928, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.455+00', '{"cached":null,"ignore_cache":false}'), +(19929, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.463+00', '{"cached":null,"ignore_cache":false}'), +(19930, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-21 16:07:49.465+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19931, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:50.551+00', '{"cached":null,"ignore_cache":null}'), +(19932, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:51.919+00', '{"cached":null,"ignore_cache":false}'), +(19933, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.255+00', '{"cached":null,"ignore_cache":false}'), +(19934, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.261+00', '{"cached":null,"ignore_cache":false}'), +(19935, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.262+00', '{"cached":null,"ignore_cache":false}'), +(19936, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.355+00', '{"cached":null,"ignore_cache":false}'), +(19937, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.406+00', '{"cached":null,"ignore_cache":false}'), +(19938, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.412+00', '{"cached":null,"ignore_cache":false}'), +(19939, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.416+00', '{"cached":null,"ignore_cache":false}'), +(19940, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-21 16:57:52.438+00', '{"cached":null,"ignore_cache":false}'), +(19941, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:07.403+00', '{"cached":null,"ignore_cache":null}'), +(19942, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.33+00', '{"cached":null,"ignore_cache":false}'), +(19943, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.378+00', '{"cached":null,"ignore_cache":false}'), +(19944, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.402+00', '{"cached":null,"ignore_cache":false}'), +(19945, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.413+00', '{"cached":null,"ignore_cache":false}'), +(19946, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.436+00', '{"cached":null,"ignore_cache":false}'), +(19947, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.466+00', '{"cached":null,"ignore_cache":false}'), +(19948, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 07:04:08.47+00', '{"cached":null,"ignore_cache":false}'), +(19949, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:40.121+00', '{"cached":null,"ignore_cache":null}'), +(19950, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.111+00', '{"cached":null,"ignore_cache":false}'), +(19951, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.127+00', '{"cached":null,"ignore_cache":false}'), +(19952, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.164+00', '{"cached":null,"ignore_cache":false}'), +(19953, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.185+00', '{"cached":null,"ignore_cache":false}'), +(19954, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.278+00', '{"cached":null,"ignore_cache":false}'), +(19955, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.331+00', '{"cached":null,"ignore_cache":false}'), +(19956, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.378+00', '{"cached":null,"ignore_cache":false}'), +(19957, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.387+00', '{"cached":null,"ignore_cache":false}'), +(19958, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 07:08:41.469+00', '{"cached":null,"ignore_cache":false}'), +(19959, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:01.621+00', '{"cached":null,"ignore_cache":null}'), +(19960, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:02.17+00', '{"cached":null,"ignore_cache":false}'), +(19961, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:24.324+00', '{"cached":null,"ignore_cache":null}'), +(19962, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:24.84+00', '{"cached":null,"ignore_cache":false}'), +(19963, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:28.886+00', '{"cached":null,"ignore_cache":null}'), +(19964, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.515+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19965, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.531+00', '{"cached":null,"ignore_cache":false}'), +(19966, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.547+00', '{"cached":null,"ignore_cache":false}'), +(19967, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.56+00', '{"cached":null,"ignore_cache":false}'), +(19968, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.644+00', '{"cached":null,"ignore_cache":false}'), +(19969, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.82+00', '{"cached":null,"ignore_cache":false}'), +(19970, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 07:09:29.885+00', '{"cached":null,"ignore_cache":false}'), +(19971, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:47.874+00', '{"cached":null,"ignore_cache":null}'), +(19972, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.63+00', '{"cached":null,"ignore_cache":false}'), +(19973, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.633+00', '{"cached":null,"ignore_cache":false}'), +(19974, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.637+00', '{"cached":null,"ignore_cache":false}'), +(19975, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.652+00', '{"cached":null,"ignore_cache":false}'), +(19976, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.659+00', '{"cached":null,"ignore_cache":false}'), +(19977, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.664+00', '{"cached":null,"ignore_cache":false}'), +(19978, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:48.705+00', '{"cached":null,"ignore_cache":false}'), +(19979, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:54.404+00', '{"cached":null,"ignore_cache":null}'), +(19980, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:16:54.726+00', '{"cached":null,"ignore_cache":false}'), +(19981, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:42.858+00', '{"cached":null,"ignore_cache":null}'), +(19982, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.391+00', '{"cached":null,"ignore_cache":false}'), +(19983, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.416+00', '{"cached":null,"ignore_cache":false}'), +(19984, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.418+00', '{"cached":null,"ignore_cache":false}'), +(19985, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.419+00', '{"cached":null,"ignore_cache":false}'), +(19986, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.505+00', '{"cached":null,"ignore_cache":false}'), +(19987, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.549+00', '{"cached":null,"ignore_cache":false}'), +(19988, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:43.556+00', '{"cached":null,"ignore_cache":false}'), +(19989, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:18:08.074+00', '{"cached":null,"ignore_cache":null}'), +(19990, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:18:08.401+00', '{"cached":null,"ignore_cache":false}'), +(19991, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:23:12.997+00', '{"cached":null,"ignore_cache":null}'), +(19992, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:23:13.329+00', '{"cached":null,"ignore_cache":false}'), +(19993, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:27.628+00', '{"cached":null,"ignore_cache":false}'), +(19994, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.163+00', '{"cached":null,"ignore_cache":false}'), +(19995, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.617+00', '{"cached":null,"ignore_cache":false}'), +(19996, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.837+00', '{"cached":null,"ignore_cache":false}'), +(19997, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.838+00', '{"cached":null,"ignore_cache":false}'), +(19998, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:28.842+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(19999, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.178+00', '{"cached":null,"ignore_cache":false}'), +(20000, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.185+00', '{"cached":null,"ignore_cache":false}'), +(20001, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.22+00', '{"cached":null,"ignore_cache":false}'), +(20002, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.278+00', '{"cached":null,"ignore_cache":false}'), +(20003, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.279+00', '{"cached":null,"ignore_cache":false}'), +(20004, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.445+00', '{"cached":null,"ignore_cache":false}'), +(20005, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.503+00', '{"cached":null,"ignore_cache":false}'), +(20006, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.67+00', '{"cached":null,"ignore_cache":false}'), +(20007, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:29.683+00', '{"cached":null,"ignore_cache":false}'), +(20008, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:30.337+00', '{"cached":null,"ignore_cache":false}'), +(20009, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:30.382+00', '{"cached":null,"ignore_cache":false}'), +(20010, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:30.427+00', '{"cached":null,"ignore_cache":false}'), +(20011, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:30.576+00', '{"cached":null,"ignore_cache":false}'), +(20012, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:30.683+00', '{"cached":null,"ignore_cache":false}'), +(20013, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:30.714+00', '{"cached":null,"ignore_cache":false}'), +(20014, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:30.779+00', '{"cached":null,"ignore_cache":false}'), +(20015, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:31.036+00', '{"cached":null,"ignore_cache":false}'), +(20016, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:31.697+00', '{"cached":null,"ignore_cache":false}'), +(20017, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:31.81+00', '{"cached":null,"ignore_cache":false}'), +(20018, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.211+00', '{"cached":null,"ignore_cache":false}'), +(20019, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.239+00', '{"cached":null,"ignore_cache":false}'), +(20020, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.247+00', '{"cached":null,"ignore_cache":false}'), +(20021, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.248+00', '{"cached":null,"ignore_cache":false}'), +(20022, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.278+00', '{"cached":null,"ignore_cache":false}'), +(20023, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.279+00', '{"cached":null,"ignore_cache":false}'), +(20024, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.565+00', '{"cached":null,"ignore_cache":false}'), +(20025, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.581+00', '{"cached":null,"ignore_cache":false}'), +(20026, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.598+00', '{"cached":null,"ignore_cache":false}'), +(20027, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.613+00', '{"cached":null,"ignore_cache":false}'), +(20028, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.619+00', '{"cached":null,"ignore_cache":false}'), +(20029, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.625+00', '{"cached":null,"ignore_cache":false}'), +(20030, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.641+00', '{"cached":null,"ignore_cache":false}'), +(20031, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.647+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20032, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.652+00', '{"cached":null,"ignore_cache":false}'), +(20033, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:31:57.658+00', '{"cached":null,"ignore_cache":false}'), +(20034, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.25+00', '{"cached":null,"ignore_cache":false}'), +(20035, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.253+00', '{"cached":null,"ignore_cache":false}'), +(20036, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.314+00', '{"cached":null,"ignore_cache":false}'), +(20037, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.349+00', '{"cached":null,"ignore_cache":false}'), +(20038, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.359+00', '{"cached":null,"ignore_cache":false}'), +(20039, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.366+00', '{"cached":null,"ignore_cache":false}'), +(20040, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.385+00', '{"cached":null,"ignore_cache":false}'), +(20041, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.594+00', '{"cached":null,"ignore_cache":false}'), +(20042, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.621+00', '{"cached":null,"ignore_cache":false}'), +(20043, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:27.655+00', '{"cached":null,"ignore_cache":false}'), +(20044, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.339+00', '{"cached":null,"ignore_cache":false}'), +(20045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.414+00', '{"cached":null,"ignore_cache":false}'), +(20046, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.428+00', '{"cached":null,"ignore_cache":false}'), +(20047, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.466+00', '{"cached":null,"ignore_cache":false}'), +(20048, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.467+00', '{"cached":null,"ignore_cache":false}'), +(20049, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:32:29.472+00', '{"cached":null,"ignore_cache":false}'), +(20050, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:05.769+00', '{"cached":null,"ignore_cache":false}'), +(20051, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:05.978+00', '{"cached":null,"ignore_cache":false}'), +(20052, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:06.007+00', '{"cached":null,"ignore_cache":false}'), +(20053, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:06.028+00', '{"cached":null,"ignore_cache":false}'), +(20054, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.681+00', '{"cached":null,"ignore_cache":false}'), +(20055, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.702+00', '{"cached":null,"ignore_cache":false}'), +(20056, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.709+00', '{"cached":null,"ignore_cache":false}'), +(20057, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.939+00', '{"cached":null,"ignore_cache":false}'), +(20058, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.959+00', '{"cached":null,"ignore_cache":false}'), +(20059, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:12.961+00', '{"cached":null,"ignore_cache":false}'), +(20060, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.405+00', '{"cached":null,"ignore_cache":false}'), +(20061, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.427+00', '{"cached":null,"ignore_cache":false}'), +(20062, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.432+00', '{"cached":null,"ignore_cache":false}'), +(20063, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.449+00', '{"cached":null,"ignore_cache":false}'), +(20064, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.461+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20065, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:13.474+00', '{"cached":null,"ignore_cache":false}'), +(20066, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.453+00', '{"cached":null,"ignore_cache":false}'), +(20067, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.533+00', '{"cached":null,"ignore_cache":false}'), +(20068, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.589+00', '{"cached":null,"ignore_cache":false}'), +(20069, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.615+00', '{"cached":null,"ignore_cache":false}'), +(20070, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.621+00', '{"cached":null,"ignore_cache":false}'), +(20071, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.818+00', '{"cached":null,"ignore_cache":false}'), +(20072, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.822+00', '{"cached":null,"ignore_cache":false}'), +(20073, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.876+00', '{"cached":null,"ignore_cache":false}'), +(20074, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:49.941+00', '{"cached":null,"ignore_cache":false}'), +(20075, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.598+00', '{"cached":null,"ignore_cache":false}'), +(20076, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.632+00', '{"cached":null,"ignore_cache":false}'), +(20077, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.656+00', '{"cached":null,"ignore_cache":false}'), +(20078, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.675+00', '{"cached":null,"ignore_cache":false}'), +(20079, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.691+00', '{"cached":null,"ignore_cache":false}'), +(20080, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.711+00', '{"cached":null,"ignore_cache":false}'), +(20081, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:33:53.723+00', '{"cached":null,"ignore_cache":false}'), +(20082, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.743+00', '{"cached":null,"ignore_cache":false}'), +(20083, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.768+00', '{"cached":null,"ignore_cache":false}'), +(20084, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.87+00', '{"cached":null,"ignore_cache":false}'), +(20085, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.886+00', '{"cached":null,"ignore_cache":false}'), +(20086, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.904+00', '{"cached":null,"ignore_cache":false}'), +(20087, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.915+00', '{"cached":null,"ignore_cache":false}'), +(20088, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.918+00', '{"cached":null,"ignore_cache":false}'), +(20089, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.92+00', '{"cached":null,"ignore_cache":false}'), +(20090, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:34.941+00', '{"cached":null,"ignore_cache":false}'), +(20091, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.173+00', '{"cached":null,"ignore_cache":false}'), +(20092, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.185+00', '{"cached":null,"ignore_cache":false}'), +(20093, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.211+00', '{"cached":null,"ignore_cache":false}'), +(20094, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.211+00', '{"cached":null,"ignore_cache":false}'), +(20095, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.22+00', '{"cached":null,"ignore_cache":false}'), +(20096, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.22+00', '{"cached":null,"ignore_cache":false}'), +(20097, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:34:42.221+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20098, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.325+00', '{"cached":null,"ignore_cache":false}'), +(20099, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.391+00', '{"cached":null,"ignore_cache":false}'), +(20100, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.435+00', '{"cached":null,"ignore_cache":false}'), +(20101, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.453+00', '{"cached":null,"ignore_cache":false}'), +(20102, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.464+00', '{"cached":null,"ignore_cache":false}'), +(20103, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.489+00', '{"cached":null,"ignore_cache":false}'), +(20104, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.514+00', '{"cached":null,"ignore_cache":false}'), +(20105, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.567+00', '{"cached":null,"ignore_cache":false}'), +(20106, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:20.642+00', '{"cached":null,"ignore_cache":false}'), +(20107, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.172+00', '{"cached":null,"ignore_cache":null}'), +(20108, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.496+00', '{"cached":null,"ignore_cache":false}'), +(20109, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.593+00', '{"cached":null,"ignore_cache":false}'), +(20110, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.594+00', '{"cached":null,"ignore_cache":false}'), +(20111, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.609+00', '{"cached":null,"ignore_cache":false}'), +(20112, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.616+00', '{"cached":null,"ignore_cache":false}'), +(20113, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.64+00', '{"cached":null,"ignore_cache":false}'), +(20114, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:25.652+00', '{"cached":null,"ignore_cache":false}'), +(20115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.598+00', '{"cached":null,"ignore_cache":false}'), +(20116, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.628+00', '{"cached":null,"ignore_cache":false}'), +(20117, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.69+00', '{"cached":null,"ignore_cache":false}'), +(20118, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.721+00', '{"cached":null,"ignore_cache":false}'), +(20119, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.726+00', '{"cached":null,"ignore_cache":false}'), +(20120, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.756+00', '{"cached":null,"ignore_cache":false}'), +(20121, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:35:27.761+00', '{"cached":null,"ignore_cache":false}'), +(20122, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.276+00', '{"cached":null,"ignore_cache":false}'), +(20123, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.283+00', '{"cached":null,"ignore_cache":false}'), +(20124, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.313+00', '{"cached":null,"ignore_cache":false}'), +(20125, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.316+00', '{"cached":null,"ignore_cache":false}'), +(20126, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.324+00', '{"cached":null,"ignore_cache":false}'), +(20127, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.331+00', '{"cached":null,"ignore_cache":false}'), +(20128, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.882+00', '{"cached":null,"ignore_cache":false}'), +(20129, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.912+00', '{"cached":null,"ignore_cache":false}'), +(20130, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:10.933+00', '{"cached":null,"ignore_cache":false}'), +(20131, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.979+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20132, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.979+00', '{"cached":null,"ignore_cache":false}'), +(20133, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:17.985+00', '{"cached":null,"ignore_cache":false}'), +(20134, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:18.021+00', '{"cached":null,"ignore_cache":false}'), +(20135, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:18.022+00', '{"cached":null,"ignore_cache":false}'), +(20136, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:18.024+00', '{"cached":null,"ignore_cache":false}'), +(20137, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:36:18.037+00', '{"cached":null,"ignore_cache":false}'), +(20138, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.522+00', '{"cached":null,"ignore_cache":false}'), +(20139, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.645+00', '{"cached":null,"ignore_cache":false}'), +(20140, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.709+00', '{"cached":null,"ignore_cache":false}'), +(20141, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.722+00', '{"cached":null,"ignore_cache":false}'), +(20142, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.742+00', '{"cached":null,"ignore_cache":false}'), +(20143, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.796+00', '{"cached":null,"ignore_cache":false}'), +(20144, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.807+00', '{"cached":null,"ignore_cache":false}'), +(20145, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.826+00', '{"cached":null,"ignore_cache":false}'), +(20146, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:01.884+00', '{"cached":null,"ignore_cache":false}'), +(20147, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.042+00', '{"cached":null,"ignore_cache":false}'), +(20148, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.105+00', '{"cached":null,"ignore_cache":false}'), +(20149, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.107+00', '{"cached":null,"ignore_cache":false}'), +(20150, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.153+00', '{"cached":null,"ignore_cache":false}'), +(20151, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.158+00', '{"cached":null,"ignore_cache":false}'), +(20152, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.184+00', '{"cached":null,"ignore_cache":false}'), +(20153, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:37:07.187+00', '{"cached":null,"ignore_cache":false}'), +(20154, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.134+00', '{"cached":null,"ignore_cache":false}'), +(20155, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.265+00', '{"cached":null,"ignore_cache":false}'), +(20156, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.276+00', '{"cached":null,"ignore_cache":false}'), +(20157, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.346+00', '{"cached":null,"ignore_cache":false}'), +(20158, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.355+00', '{"cached":null,"ignore_cache":false}'), +(20159, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.386+00', '{"cached":null,"ignore_cache":false}'), +(20160, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.441+00', '{"cached":null,"ignore_cache":false}'), +(20161, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.519+00', '{"cached":null,"ignore_cache":false}'), +(20162, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 08:43:55.567+00', '{"cached":null,"ignore_cache":false}'), +(20163, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.102+00', '{"cached":null,"ignore_cache":null}'), +(20164, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.747+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20165, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.781+00', '{"cached":null,"ignore_cache":false}'), +(20166, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.825+00', '{"cached":null,"ignore_cache":false}'), +(20167, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.88+00', '{"cached":null,"ignore_cache":false}'), +(20168, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.945+00', '{"cached":null,"ignore_cache":false}'), +(20169, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.953+00', '{"cached":null,"ignore_cache":false}'), +(20170, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 08:52:55.963+00', '{"cached":null,"ignore_cache":false}'), +(20171, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:53:26.026+00', '{"cached":null,"ignore_cache":null}'), +(20172, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 08:53:26.423+00', '{"cached":null,"ignore_cache":false}'), +(20173, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 09:03:19.866+00', '{"cached":null,"ignore_cache":null}'), +(20174, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 09:03:20.088+00', '{"cached":null,"ignore_cache":null}'), +(20175, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:17.97+00', '{"cached":null,"ignore_cache":false}'), +(20176, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.087+00', '{"cached":null,"ignore_cache":false}'), +(20177, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.145+00', '{"cached":null,"ignore_cache":false}'), +(20178, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.172+00', '{"cached":null,"ignore_cache":false}'), +(20179, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.175+00', '{"cached":null,"ignore_cache":false}'), +(20180, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.214+00', '{"cached":null,"ignore_cache":false}'), +(20181, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.275+00', '{"cached":null,"ignore_cache":false}'), +(20182, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.283+00', '{"cached":null,"ignore_cache":false}'), +(20183, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.336+00', '{"cached":null,"ignore_cache":false}'), +(20184, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.343+00', '{"cached":null,"ignore_cache":false}'), +(20185, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.563+00', '{"cached":null,"ignore_cache":false}'), +(20186, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.588+00', '{"cached":null,"ignore_cache":false}'), +(20187, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.738+00', '{"cached":null,"ignore_cache":false}'), +(20188, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.75+00', '{"cached":null,"ignore_cache":false}'), +(20189, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.914+00', '{"cached":null,"ignore_cache":false}'), +(20190, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:18.935+00', '{"cached":null,"ignore_cache":false}'), +(20191, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.044+00', '{"cached":null,"ignore_cache":false}'), +(20192, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.121+00', '{"cached":null,"ignore_cache":false}'), +(20193, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.194+00', '{"cached":null,"ignore_cache":false}'), +(20194, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.357+00', '{"cached":null,"ignore_cache":false}'), +(20195, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.504+00', '{"cached":null,"ignore_cache":false}'), +(20196, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.586+00', '{"cached":null,"ignore_cache":false}'), +(20197, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.61+00', '{"cached":null,"ignore_cache":false}'), +(20198, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.675+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20199, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.877+00', '{"cached":null,"ignore_cache":false}'), +(20200, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:19.916+00', '{"cached":null,"ignore_cache":false}'), +(20201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:20.094+00', '{"cached":null,"ignore_cache":false}'), +(20202, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:20.172+00', '{"cached":null,"ignore_cache":false}'), +(20203, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:20.93+00', '{"cached":null,"ignore_cache":false}'), +(20204, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.933+00', '{"cached":null,"ignore_cache":false}'), +(20205, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.936+00', '{"cached":null,"ignore_cache":false}'), +(20206, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:58.999+00', '{"cached":null,"ignore_cache":false}'), +(20207, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.012+00', '{"cached":null,"ignore_cache":false}'), +(20208, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.53+00', '{"cached":null,"ignore_cache":false}'), +(20209, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.598+00', '{"cached":null,"ignore_cache":false}'), +(20210, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.641+00', '{"cached":null,"ignore_cache":false}'), +(20211, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.691+00', '{"cached":null,"ignore_cache":false}'), +(20212, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.726+00', '{"cached":null,"ignore_cache":false}'), +(20213, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.843+00', '{"cached":null,"ignore_cache":false}'), +(20214, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.844+00', '{"cached":null,"ignore_cache":false}'), +(20215, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:55:59.854+00', '{"cached":null,"ignore_cache":false}'), +(20216, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.069+00', '{"cached":null,"ignore_cache":false}'), +(20217, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.781+00', '{"cached":null,"ignore_cache":false}'), +(20218, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:00.817+00', '{"cached":null,"ignore_cache":false}'), +(20219, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.07+00', '{"cached":null,"ignore_cache":false}'), +(20220, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.258+00', '{"cached":null,"ignore_cache":false}'), +(20221, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.264+00', '{"cached":null,"ignore_cache":false}'), +(20222, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.284+00', '{"cached":null,"ignore_cache":false}'), +(20223, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.741+00', '{"cached":null,"ignore_cache":false}'), +(20224, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:01.886+00', '{"cached":null,"ignore_cache":false}'), +(20225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:02.007+00', '{"cached":null,"ignore_cache":false}'), +(20226, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:02.129+00', '{"cached":null,"ignore_cache":false}'), +(20227, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:02.411+00', '{"cached":null,"ignore_cache":false}'), +(20228, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:02.596+00', '{"cached":null,"ignore_cache":false}'), +(20229, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:02.714+00', '{"cached":null,"ignore_cache":false}'), +(20230, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:02.966+00', '{"cached":null,"ignore_cache":false}'), +(20231, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:03.086+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20232, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:04.493+00', '{"cached":null,"ignore_cache":false}'), +(20233, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.095+00', '{"cached":null,"ignore_cache":false}'), +(20234, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.107+00', '{"cached":null,"ignore_cache":false}'), +(20235, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.112+00', '{"cached":null,"ignore_cache":false}'), +(20236, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.127+00', '{"cached":null,"ignore_cache":false}'), +(20237, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.128+00', '{"cached":null,"ignore_cache":false}'), +(20238, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.148+00', '{"cached":null,"ignore_cache":false}'), +(20239, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.187+00', '{"cached":null,"ignore_cache":false}'), +(20240, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.209+00', '{"cached":null,"ignore_cache":false}'), +(20241, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:37.244+00', '{"cached":null,"ignore_cache":false}'), +(20242, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.639+00', '{"cached":null,"ignore_cache":false}'), +(20243, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.666+00', '{"cached":null,"ignore_cache":false}'), +(20244, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.677+00', '{"cached":null,"ignore_cache":false}'), +(20245, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.699+00', '{"cached":null,"ignore_cache":false}'), +(20246, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.741+00', '{"cached":null,"ignore_cache":false}'), +(20247, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.935+00', '{"cached":null,"ignore_cache":false}'), +(20248, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:49.985+00', '{"cached":null,"ignore_cache":false}'), +(20249, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.61+00', '{"cached":null,"ignore_cache":null}'), +(20250, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:58.98+00', '{"cached":null,"ignore_cache":false}'), +(20251, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:59.144+00', '{"cached":null,"ignore_cache":false}'), +(20252, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:59.159+00', '{"cached":null,"ignore_cache":false}'), +(20253, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:59.178+00', '{"cached":null,"ignore_cache":false}'), +(20254, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:59.237+00', '{"cached":null,"ignore_cache":false}'), +(20255, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:59.559+00', '{"cached":null,"ignore_cache":false}'), +(20256, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:56:59.671+00', '{"cached":null,"ignore_cache":false}'), +(20257, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:18.598+00', '{"cached":null,"ignore_cache":null}'), +(20258, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:19.934+00', '{"cached":null,"ignore_cache":null}'), +(20259, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:20.745+00', '{"cached":null,"ignore_cache":false}'), +(20260, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.509+00', '{"cached":null,"ignore_cache":false}'), +(20261, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.51+00', '{"cached":null,"ignore_cache":false}'), +(20262, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.539+00', '{"cached":null,"ignore_cache":false}'), +(20263, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.553+00', '{"cached":null,"ignore_cache":false}'), +(20264, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.554+00', '{"cached":null,"ignore_cache":false}'), +(20265, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.756+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20266, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:31.769+00', '{"cached":null,"ignore_cache":false}'), +(20267, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.84+00', '{"cached":null,"ignore_cache":false}'), +(20268, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.955+00', '{"cached":null,"ignore_cache":false}'), +(20269, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.958+00', '{"cached":null,"ignore_cache":false}'), +(20270, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.963+00', '{"cached":null,"ignore_cache":false}'), +(20271, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.976+00', '{"cached":null,"ignore_cache":false}'), +(20272, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:36.984+00', '{"cached":null,"ignore_cache":false}'), +(20273, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:37.002+00', '{"cached":null,"ignore_cache":false}'), +(20274, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:37.024+00', '{"cached":null,"ignore_cache":false}'), +(20275, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:57:37.057+00', '{"cached":null,"ignore_cache":false}'), +(20276, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.92+00', '{"cached":null,"ignore_cache":false}'), +(20277, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.942+00', '{"cached":null,"ignore_cache":false}'), +(20278, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:14.96+00', '{"cached":null,"ignore_cache":false}'), +(20279, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:15.091+00', '{"cached":null,"ignore_cache":false}'), +(20280, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:15.103+00', '{"cached":null,"ignore_cache":false}'), +(20281, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:15.312+00', '{"cached":null,"ignore_cache":false}'), +(20282, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:15.353+00', '{"cached":null,"ignore_cache":false}'), +(20283, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:19.142+00', '{"cached":null,"ignore_cache":false}'), +(20284, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.686+00', '{"cached":null,"ignore_cache":false}'), +(20285, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.719+00', '{"cached":null,"ignore_cache":false}'), +(20286, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.772+00', '{"cached":null,"ignore_cache":false}'), +(20287, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.81+00', '{"cached":null,"ignore_cache":false}'), +(20288, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.847+00', '{"cached":null,"ignore_cache":false}'), +(20289, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.854+00', '{"cached":null,"ignore_cache":false}'), +(20290, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.891+00', '{"cached":null,"ignore_cache":false}'), +(20291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.911+00', '{"cached":null,"ignore_cache":false}'), +(20292, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:20.954+00', '{"cached":null,"ignore_cache":false}'), +(20293, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.511+00', '{"cached":null,"ignore_cache":false}'), +(20294, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.525+00', '{"cached":null,"ignore_cache":false}'), +(20295, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.541+00', '{"cached":null,"ignore_cache":false}'), +(20296, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.544+00', '{"cached":null,"ignore_cache":false}'), +(20297, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.548+00', '{"cached":null,"ignore_cache":false}'), +(20298, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.552+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20299, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:58:57.869+00', '{"cached":null,"ignore_cache":false}'), +(20300, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.094+00', '{"cached":null,"ignore_cache":false}'), +(20301, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.312+00', '{"cached":null,"ignore_cache":false}'), +(20302, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.347+00', '{"cached":null,"ignore_cache":false}'), +(20303, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.383+00', '{"cached":null,"ignore_cache":false}'), +(20304, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.387+00', '{"cached":null,"ignore_cache":false}'), +(20305, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.45+00', '{"cached":null,"ignore_cache":false}'), +(20306, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.458+00', '{"cached":null,"ignore_cache":false}'), +(20307, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.474+00', '{"cached":null,"ignore_cache":false}'), +(20308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:04.492+00', '{"cached":null,"ignore_cache":false}'), +(20309, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.091+00', '{"cached":null,"ignore_cache":null}'), +(20310, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.655+00', '{"cached":null,"ignore_cache":false}'), +(20311, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.71+00', '{"cached":null,"ignore_cache":false}'), +(20312, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.711+00', '{"cached":null,"ignore_cache":false}'), +(20313, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.727+00', '{"cached":null,"ignore_cache":false}'), +(20314, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.751+00', '{"cached":null,"ignore_cache":false}'), +(20315, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.773+00', '{"cached":null,"ignore_cache":false}'), +(20316, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:34.967+00', '{"cached":null,"ignore_cache":false}'), +(20317, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:38.886+00', '{"cached":null,"ignore_cache":null}'), +(20318, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:39.291+00', '{"cached":null,"ignore_cache":false}'), +(20319, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.723+00', '{"cached":null,"ignore_cache":false}'), +(20320, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.75+00', '{"cached":null,"ignore_cache":false}'), +(20321, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.759+00', '{"cached":null,"ignore_cache":false}'), +(20322, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.768+00', '{"cached":null,"ignore_cache":false}'), +(20323, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.829+00', '{"cached":null,"ignore_cache":false}'), +(20324, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:48.866+00', '{"cached":null,"ignore_cache":false}'), +(20325, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:49.091+00', '{"cached":null,"ignore_cache":false}'), +(20326, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.099+00', '{"cached":null,"ignore_cache":false}'), +(20327, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.33+00', '{"cached":null,"ignore_cache":false}'), +(20328, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.397+00', '{"cached":null,"ignore_cache":false}'), +(20329, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.403+00', '{"cached":null,"ignore_cache":false}'), +(20330, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.403+00', '{"cached":null,"ignore_cache":false}'), +(20331, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.43+00', '{"cached":null,"ignore_cache":false}'), +(20332, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.459+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20333, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.507+00', '{"cached":null,"ignore_cache":false}'), +(20334, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.525+00', '{"cached":null,"ignore_cache":false}'), +(20335, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 11:59:55.616+00', '{"cached":null,"ignore_cache":false}'), +(20336, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.37+00', '{"cached":null,"ignore_cache":false}'), +(20337, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.475+00', '{"cached":null,"ignore_cache":false}'), +(20338, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.502+00', '{"cached":null,"ignore_cache":false}'), +(20339, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.552+00', '{"cached":null,"ignore_cache":false}'), +(20340, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.576+00', '{"cached":null,"ignore_cache":false}'), +(20341, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.605+00', '{"cached":null,"ignore_cache":false}'), +(20342, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.656+00', '{"cached":null,"ignore_cache":false}'), +(20343, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.743+00', '{"cached":null,"ignore_cache":false}'), +(20344, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.827+00', '{"cached":null,"ignore_cache":false}'), +(20345, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.898+00', '{"cached":null,"ignore_cache":false}'), +(20346, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.913+00', '{"cached":null,"ignore_cache":false}'), +(20347, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.921+00', '{"cached":null,"ignore_cache":false}'), +(20348, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:25.939+00', '{"cached":null,"ignore_cache":false}'), +(20349, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.306+00', '{"cached":null,"ignore_cache":false}'), +(20350, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.399+00', '{"cached":null,"ignore_cache":false}'), +(20351, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.418+00', '{"cached":null,"ignore_cache":false}'), +(20352, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.601+00', '{"cached":null,"ignore_cache":false}'), +(20353, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.601+00', '{"cached":null,"ignore_cache":false}'), +(20354, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.637+00', '{"cached":null,"ignore_cache":false}'), +(20355, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.641+00', '{"cached":null,"ignore_cache":false}'), +(20356, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.775+00', '{"cached":null,"ignore_cache":false}'), +(20357, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.796+00', '{"cached":null,"ignore_cache":false}'), +(20358, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:26.939+00', '{"cached":null,"ignore_cache":false}'), +(20359, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.044+00', '{"cached":null,"ignore_cache":false}'), +(20360, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.268+00', '{"cached":null,"ignore_cache":false}'), +(20361, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.349+00', '{"cached":null,"ignore_cache":false}'), +(20362, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.415+00', '{"cached":null,"ignore_cache":false}'), +(20363, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.432+00', '{"cached":null,"ignore_cache":false}'), +(20364, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.492+00', '{"cached":null,"ignore_cache":false}'), +(20365, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.504+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20366, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.515+00', '{"cached":null,"ignore_cache":false}'), +(20367, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:27.538+00', '{"cached":null,"ignore_cache":false}'), +(20368, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.546+00', '{"cached":null,"ignore_cache":false}'), +(20369, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.66+00', '{"cached":null,"ignore_cache":false}'), +(20370, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.715+00', '{"cached":null,"ignore_cache":false}'), +(20371, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.737+00', '{"cached":null,"ignore_cache":false}'), +(20372, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.746+00', '{"cached":null,"ignore_cache":false}'), +(20373, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.761+00', '{"cached":null,"ignore_cache":false}'), +(20374, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:30.939+00', '{"cached":null,"ignore_cache":false}'), +(20375, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.056+00', '{"cached":null,"ignore_cache":false}'), +(20376, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.097+00', '{"cached":null,"ignore_cache":false}'), +(20377, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.174+00', '{"cached":null,"ignore_cache":false}'), +(20378, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.203+00', '{"cached":null,"ignore_cache":false}'), +(20379, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.315+00', '{"cached":null,"ignore_cache":false}'), +(20380, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.333+00', '{"cached":null,"ignore_cache":false}'), +(20381, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.341+00', '{"cached":null,"ignore_cache":false}'), +(20382, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.356+00', '{"cached":null,"ignore_cache":false}'), +(20383, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:00:37.399+00', '{"cached":null,"ignore_cache":false}'), +(20384, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.467+00', '{"cached":null,"ignore_cache":false}'), +(20385, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.489+00', '{"cached":null,"ignore_cache":false}'), +(20386, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.491+00', '{"cached":null,"ignore_cache":false}'), +(20387, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.494+00', '{"cached":null,"ignore_cache":false}'), +(20388, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.508+00', '{"cached":null,"ignore_cache":false}'), +(20389, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.513+00', '{"cached":null,"ignore_cache":false}'), +(20390, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:11.708+00', '{"cached":null,"ignore_cache":false}'), +(20391, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.747+00', '{"cached":null,"ignore_cache":false}'), +(20392, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.784+00', '{"cached":null,"ignore_cache":false}'), +(20393, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.797+00', '{"cached":null,"ignore_cache":false}'), +(20394, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.811+00', '{"cached":null,"ignore_cache":false}'), +(20395, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.82+00', '{"cached":null,"ignore_cache":false}'), +(20396, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.835+00', '{"cached":null,"ignore_cache":false}'), +(20397, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.839+00', '{"cached":null,"ignore_cache":false}'), +(20398, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.847+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20399, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:19.867+00', '{"cached":null,"ignore_cache":false}'), +(20400, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.626+00', '{"cached":null,"ignore_cache":false}'), +(20401, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.697+00', '{"cached":null,"ignore_cache":false}'), +(20402, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.725+00', '{"cached":null,"ignore_cache":false}'), +(20403, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.747+00', '{"cached":null,"ignore_cache":false}'), +(20404, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.754+00', '{"cached":null,"ignore_cache":false}'), +(20405, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:52.807+00', '{"cached":null,"ignore_cache":false}'), +(20406, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:01:53.038+00', '{"cached":null,"ignore_cache":false}'), +(20407, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.134+00', '{"cached":null,"ignore_cache":false}'), +(20408, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.296+00', '{"cached":null,"ignore_cache":false}'), +(20409, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.487+00', '{"cached":null,"ignore_cache":false}'), +(20410, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.507+00', '{"cached":null,"ignore_cache":false}'), +(20411, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.543+00', '{"cached":null,"ignore_cache":false}'), +(20412, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.544+00', '{"cached":null,"ignore_cache":false}'), +(20413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.583+00', '{"cached":null,"ignore_cache":false}'), +(20414, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.592+00', '{"cached":null,"ignore_cache":false}'), +(20415, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:02.638+00', '{"cached":null,"ignore_cache":false}'), +(20416, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.632+00', '{"cached":null,"ignore_cache":false}'), +(20417, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.634+00', '{"cached":null,"ignore_cache":false}'), +(20418, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.635+00', '{"cached":null,"ignore_cache":false}'), +(20419, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.666+00', '{"cached":null,"ignore_cache":false}'), +(20420, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.677+00', '{"cached":null,"ignore_cache":false}'), +(20421, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.726+00', '{"cached":null,"ignore_cache":false}'), +(20422, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:19.956+00', '{"cached":null,"ignore_cache":false}'), +(20423, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.088+00', '{"cached":null,"ignore_cache":false}'), +(20424, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.11+00', '{"cached":null,"ignore_cache":false}'), +(20425, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.164+00', '{"cached":null,"ignore_cache":false}'), +(20426, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.274+00', '{"cached":null,"ignore_cache":false}'), +(20427, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.366+00', '{"cached":null,"ignore_cache":false}'), +(20428, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.478+00', '{"cached":null,"ignore_cache":false}'), +(20429, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.675+00', '{"cached":null,"ignore_cache":false}'), +(20430, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.698+00', '{"cached":null,"ignore_cache":false}'), +(20431, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.836+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20432, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.886+00', '{"cached":null,"ignore_cache":false}'), +(20433, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:20.887+00', '{"cached":null,"ignore_cache":false}'), +(20434, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.136+00', '{"cached":null,"ignore_cache":false}'), +(20435, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.206+00', '{"cached":null,"ignore_cache":false}'), +(20436, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.237+00', '{"cached":null,"ignore_cache":false}'), +(20437, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.297+00', '{"cached":null,"ignore_cache":false}'), +(20438, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.365+00', '{"cached":null,"ignore_cache":false}'), +(20439, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.454+00', '{"cached":null,"ignore_cache":false}'), +(20440, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.624+00', '{"cached":null,"ignore_cache":false}'), +(20441, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.63+00', '{"cached":null,"ignore_cache":false}'), +(20442, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.678+00', '{"cached":null,"ignore_cache":false}'), +(20443, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.679+00', '{"cached":null,"ignore_cache":false}'), +(20444, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.798+00', '{"cached":null,"ignore_cache":false}'), +(20445, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.812+00', '{"cached":null,"ignore_cache":false}'), +(20446, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.922+00', '{"cached":null,"ignore_cache":false}'), +(20447, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:21.938+00', '{"cached":null,"ignore_cache":false}'), +(20448, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:31.226+00', '{"cached":null,"ignore_cache":null}'), +(20449, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.138+00', '{"cached":null,"ignore_cache":false}'), +(20450, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.175+00', '{"cached":null,"ignore_cache":false}'), +(20451, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.18+00', '{"cached":null,"ignore_cache":false}'), +(20452, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.192+00', '{"cached":null,"ignore_cache":false}'), +(20453, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.198+00', '{"cached":null,"ignore_cache":false}'), +(20454, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.204+00', '{"cached":null,"ignore_cache":false}'), +(20455, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.235+00', '{"cached":null,"ignore_cache":false}'), +(20456, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.294+00', '{"cached":null,"ignore_cache":false}'), +(20457, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:32.312+00', '{"cached":null,"ignore_cache":false}'), +(20458, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:33.42+00', '{"cached":null,"ignore_cache":null}'), +(20459, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.051+00', '{"cached":null,"ignore_cache":false}'), +(20460, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.097+00', '{"cached":null,"ignore_cache":false}'), +(20461, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.116+00', '{"cached":null,"ignore_cache":false}'), +(20462, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.165+00', '{"cached":null,"ignore_cache":false}'), +(20463, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.182+00', '{"cached":null,"ignore_cache":false}'), +(20464, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.216+00', '{"cached":null,"ignore_cache":false}'), +(20465, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.451+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20466, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.82+00', '{"cached":null,"ignore_cache":false}'), +(20467, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.838+00', '{"cached":null,"ignore_cache":false}'), +(20468, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.923+00', '{"cached":null,"ignore_cache":false}'), +(20469, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:34.948+00', '{"cached":null,"ignore_cache":false}'), +(20470, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:35.091+00', '{"cached":null,"ignore_cache":false}'), +(20471, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:35.101+00', '{"cached":null,"ignore_cache":false}'), +(20472, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:35.306+00', '{"cached":null,"ignore_cache":false}'), +(20473, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:36.004+00', '{"cached":null,"ignore_cache":null}'), +(20474, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:36.332+00', '{"cached":null,"ignore_cache":false}'), +(20475, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.199+00', '{"cached":null,"ignore_cache":false}'), +(20476, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.231+00', '{"cached":null,"ignore_cache":false}'), +(20477, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.276+00', '{"cached":null,"ignore_cache":false}'), +(20478, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.332+00', '{"cached":null,"ignore_cache":false}'), +(20479, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.357+00', '{"cached":null,"ignore_cache":false}'), +(20480, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.397+00', '{"cached":null,"ignore_cache":false}'), +(20481, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.44+00', '{"cached":null,"ignore_cache":false}'), +(20482, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.447+00', '{"cached":null,"ignore_cache":false}'), +(20483, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:44.485+00', '{"cached":null,"ignore_cache":false}'), +(20484, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:45.794+00', '{"cached":null,"ignore_cache":null}'), +(20485, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.165+00', '{"cached":null,"ignore_cache":false}'), +(20486, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.169+00', '{"cached":null,"ignore_cache":false}'), +(20487, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.242+00', '{"cached":null,"ignore_cache":false}'), +(20488, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.285+00', '{"cached":null,"ignore_cache":false}'), +(20489, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.291+00', '{"cached":null,"ignore_cache":false}'), +(20490, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.309+00', '{"cached":null,"ignore_cache":false}'), +(20491, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:46.413+00', '{"cached":null,"ignore_cache":false}'), +(20492, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:53.629+00', '{"cached":null,"ignore_cache":null}'), +(20493, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:58.898+00', '{"cached":null,"ignore_cache":null}'), +(20494, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:02:59.243+00', '{"cached":null,"ignore_cache":false}'), +(20495, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.147+00', '{"cached":null,"ignore_cache":false}'), +(20496, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.218+00', '{"cached":null,"ignore_cache":false}'), +(20497, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.298+00', '{"cached":null,"ignore_cache":false}'), +(20498, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.376+00', '{"cached":null,"ignore_cache":false}'), +(20499, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.447+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20500, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.456+00', '{"cached":null,"ignore_cache":false}'), +(20501, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:03.68+00', '{"cached":null,"ignore_cache":false}'), +(20502, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:04.651+00', '{"cached":null,"ignore_cache":true}'), +(20503, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.014+00', '{"cached":null,"ignore_cache":false}'), +(20504, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.015+00', '{"cached":null,"ignore_cache":false}'), +(20505, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.034+00', '{"cached":null,"ignore_cache":false}'), +(20506, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.05+00', '{"cached":null,"ignore_cache":false}'), +(20507, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.055+00', '{"cached":null,"ignore_cache":false}'), +(20508, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.066+00', '{"cached":null,"ignore_cache":false}'), +(20509, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.075+00', '{"cached":null,"ignore_cache":false}'), +(20510, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.078+00', '{"cached":null,"ignore_cache":false}'), +(20511, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:07.102+00', '{"cached":null,"ignore_cache":false}'), +(20512, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.76+00', '{"cached":null,"ignore_cache":false}'), +(20513, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.881+00', '{"cached":null,"ignore_cache":false}'), +(20514, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.891+00', '{"cached":null,"ignore_cache":false}'), +(20515, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.91+00', '{"cached":null,"ignore_cache":false}'), +(20516, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.92+00', '{"cached":null,"ignore_cache":false}'), +(20517, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:17.963+00', '{"cached":null,"ignore_cache":false}'), +(20518, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:18.169+00', '{"cached":null,"ignore_cache":false}'), +(20519, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.021+00', '{"cached":null,"ignore_cache":false}'), +(20520, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.146+00', '{"cached":null,"ignore_cache":false}'), +(20521, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.154+00', '{"cached":null,"ignore_cache":false}'), +(20522, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.167+00', '{"cached":null,"ignore_cache":false}'), +(20523, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.168+00', '{"cached":null,"ignore_cache":false}'), +(20524, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.179+00', '{"cached":null,"ignore_cache":false}'), +(20525, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.201+00', '{"cached":null,"ignore_cache":false}'), +(20526, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.213+00', '{"cached":null,"ignore_cache":false}'), +(20527, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:30.221+00', '{"cached":null,"ignore_cache":false}'), +(20528, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:34.525+00', '{"cached":null,"ignore_cache":false}'), +(20529, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.285+00', '{"cached":null,"ignore_cache":null}'), +(20530, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.686+00', '{"cached":null,"ignore_cache":false}'), +(20531, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.78+00', '{"cached":null,"ignore_cache":false}'), +(20532, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.824+00', '{"cached":null,"ignore_cache":false}'), +(20533, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.864+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20534, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.876+00', '{"cached":null,"ignore_cache":false}'), +(20535, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:49.877+00', '{"cached":null,"ignore_cache":false}'), +(20536, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.159+00', '{"cached":null,"ignore_cache":false}'), +(20537, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.897+00', '{"cached":null,"ignore_cache":false}'), +(20538, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:50.992+00', '{"cached":null,"ignore_cache":false}'), +(20539, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.052+00', '{"cached":null,"ignore_cache":false}'), +(20540, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.153+00', '{"cached":null,"ignore_cache":false}'), +(20541, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.218+00', '{"cached":null,"ignore_cache":false}'), +(20542, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.252+00', '{"cached":null,"ignore_cache":false}'), +(20543, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.281+00', '{"cached":null,"ignore_cache":false}'), +(20544, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.373+00', '{"cached":null,"ignore_cache":false}'), +(20545, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.517+00', '{"cached":null,"ignore_cache":false}'), +(20546, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.549+00', '{"cached":null,"ignore_cache":false}'), +(20547, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.56+00', '{"cached":null,"ignore_cache":false}'), +(20548, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.579+00', '{"cached":null,"ignore_cache":false}'), +(20549, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:51.722+00', '{"cached":null,"ignore_cache":false}'), +(20550, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.834+00', '{"cached":null,"ignore_cache":false}'), +(20551, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.923+00', '{"cached":null,"ignore_cache":false}'), +(20552, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:52.967+00', '{"cached":null,"ignore_cache":false}'), +(20553, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.098+00', '{"cached":null,"ignore_cache":false}'), +(20554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.128+00', '{"cached":null,"ignore_cache":false}'), +(20555, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.196+00', '{"cached":null,"ignore_cache":false}'), +(20556, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.28+00', '{"cached":null,"ignore_cache":false}'), +(20557, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.36+00', '{"cached":null,"ignore_cache":false}'), +(20558, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.384+00', '{"cached":null,"ignore_cache":false}'), +(20559, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.402+00', '{"cached":null,"ignore_cache":false}'), +(20560, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.404+00', '{"cached":null,"ignore_cache":false}'), +(20561, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.446+00', '{"cached":null,"ignore_cache":false}'), +(20562, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.641+00', '{"cached":null,"ignore_cache":false}'), +(20563, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.669+00', '{"cached":null,"ignore_cache":false}'), +(20564, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.704+00', '{"cached":null,"ignore_cache":false}'), +(20565, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.782+00', '{"cached":null,"ignore_cache":false}'), +(20566, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.846+00', '{"cached":null,"ignore_cache":false}'), +(20567, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.848+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20568, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.884+00', '{"cached":null,"ignore_cache":false}'), +(20569, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:53.961+00', '{"cached":null,"ignore_cache":false}'), +(20570, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.031+00', '{"cached":null,"ignore_cache":false}'), +(20571, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.07+00', '{"cached":null,"ignore_cache":false}'), +(20572, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.085+00', '{"cached":null,"ignore_cache":false}'), +(20573, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.107+00', '{"cached":null,"ignore_cache":false}'), +(20574, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.199+00', '{"cached":null,"ignore_cache":false}'), +(20575, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:54.233+00', '{"cached":null,"ignore_cache":false}'), +(20576, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.362+00', '{"cached":null,"ignore_cache":false}'), +(20577, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.375+00', '{"cached":null,"ignore_cache":false}'), +(20578, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.397+00', '{"cached":null,"ignore_cache":false}'), +(20579, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.408+00', '{"cached":null,"ignore_cache":false}'), +(20580, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.445+00', '{"cached":null,"ignore_cache":false}'), +(20581, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.448+00', '{"cached":null,"ignore_cache":false}'), +(20582, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:02.615+00', '{"cached":null,"ignore_cache":false}'), +(20583, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.407+00', '{"cached":null,"ignore_cache":false}'), +(20584, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.454+00', '{"cached":null,"ignore_cache":false}'), +(20585, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.484+00', '{"cached":null,"ignore_cache":false}'), +(20586, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.506+00', '{"cached":null,"ignore_cache":false}'), +(20587, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.53+00', '{"cached":null,"ignore_cache":false}'), +(20588, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.685+00', '{"cached":null,"ignore_cache":false}'), +(20589, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.693+00', '{"cached":null,"ignore_cache":false}'), +(20590, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.693+00', '{"cached":null,"ignore_cache":false}'), +(20591, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:13.766+00', '{"cached":null,"ignore_cache":false}'), +(20592, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.822+00', '{"cached":null,"ignore_cache":false}'), +(20593, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.855+00', '{"cached":null,"ignore_cache":false}'), +(20594, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.876+00', '{"cached":null,"ignore_cache":false}'), +(20595, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.915+00', '{"cached":null,"ignore_cache":false}'), +(20596, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.981+00', '{"cached":null,"ignore_cache":false}'), +(20597, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:34.988+00', '{"cached":null,"ignore_cache":false}'), +(20598, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:35.166+00', '{"cached":null,"ignore_cache":false}'), +(20599, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.448+00', '{"cached":null,"ignore_cache":false}'), +(20600, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.536+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20601, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.55+00', '{"cached":null,"ignore_cache":false}'), +(20602, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.631+00', '{"cached":null,"ignore_cache":false}'), +(20603, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.649+00', '{"cached":null,"ignore_cache":false}'), +(20604, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.65+00', '{"cached":null,"ignore_cache":false}'), +(20605, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.65+00', '{"cached":null,"ignore_cache":false}'), +(20606, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.659+00', '{"cached":null,"ignore_cache":false}'), +(20607, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:04:36.665+00', '{"cached":null,"ignore_cache":false}'), +(20608, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.96+00', '{"cached":null,"ignore_cache":false}'), +(20609, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:25.986+00', '{"cached":null,"ignore_cache":false}'), +(20610, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:26.013+00', '{"cached":null,"ignore_cache":false}'), +(20611, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:26.032+00', '{"cached":null,"ignore_cache":false}'), +(20612, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:26.076+00', '{"cached":null,"ignore_cache":false}'), +(20613, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:26.086+00', '{"cached":null,"ignore_cache":false}'), +(20614, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:26.092+00', '{"cached":null,"ignore_cache":false}'), +(20615, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:26.097+00', '{"cached":null,"ignore_cache":false}'), +(20616, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:26.103+00', '{"cached":null,"ignore_cache":false}'), +(20617, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.52+00', '{"cached":null,"ignore_cache":false}'), +(20618, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.521+00', '{"cached":null,"ignore_cache":false}'), +(20619, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.531+00', '{"cached":null,"ignore_cache":false}'), +(20620, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.532+00', '{"cached":null,"ignore_cache":false}'), +(20621, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.554+00', '{"cached":null,"ignore_cache":false}'), +(20622, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.566+00', '{"cached":null,"ignore_cache":false}'), +(20623, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:05:36.861+00', '{"cached":null,"ignore_cache":false}'), +(20624, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.523+00', '{"cached":null,"ignore_cache":false}'), +(20625, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.743+00', '{"cached":null,"ignore_cache":false}'), +(20626, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.775+00', '{"cached":null,"ignore_cache":false}'), +(20627, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:31.804+00', '{"cached":null,"ignore_cache":false}'), +(20628, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.083+00', '{"cached":null,"ignore_cache":false}'), +(20629, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.103+00', '{"cached":null,"ignore_cache":false}'), +(20630, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.315+00', '{"cached":null,"ignore_cache":false}'), +(20631, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.386+00', '{"cached":null,"ignore_cache":false}'), +(20632, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.821+00', '{"cached":null,"ignore_cache":false}'), +(20633, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.881+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20634, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.899+00', '{"cached":null,"ignore_cache":false}'), +(20635, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:32.903+00', '{"cached":null,"ignore_cache":false}'), +(20636, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.123+00', '{"cached":null,"ignore_cache":false}'), +(20637, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.178+00', '{"cached":null,"ignore_cache":false}'), +(20638, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.312+00', '{"cached":null,"ignore_cache":false}'), +(20639, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.354+00', '{"cached":null,"ignore_cache":false}'), +(20640, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.386+00', '{"cached":null,"ignore_cache":false}'), +(20641, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.398+00', '{"cached":null,"ignore_cache":false}'), +(20642, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.454+00', '{"cached":null,"ignore_cache":false}'), +(20643, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.523+00', '{"cached":null,"ignore_cache":false}'), +(20644, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.578+00', '{"cached":null,"ignore_cache":false}'), +(20645, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.579+00', '{"cached":null,"ignore_cache":false}'), +(20646, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:31:33.861+00', '{"cached":null,"ignore_cache":false}'), +(20647, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.768+00', '{"cached":null,"ignore_cache":false}'), +(20648, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.79+00', '{"cached":null,"ignore_cache":false}'), +(20649, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.799+00', '{"cached":null,"ignore_cache":false}'), +(20650, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.807+00', '{"cached":null,"ignore_cache":false}'), +(20651, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.809+00', '{"cached":null,"ignore_cache":false}'), +(20652, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.84+00', '{"cached":null,"ignore_cache":false}'), +(20653, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.855+00', '{"cached":null,"ignore_cache":false}'), +(20654, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.868+00', '{"cached":null,"ignore_cache":false}'), +(20655, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.896+00', '{"cached":null,"ignore_cache":false}'), +(20656, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.903+00', '{"cached":null,"ignore_cache":false}'), +(20657, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.906+00', '{"cached":null,"ignore_cache":false}'), +(20658, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.914+00', '{"cached":null,"ignore_cache":false}'), +(20659, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.927+00', '{"cached":null,"ignore_cache":false}'), +(20660, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.931+00', '{"cached":null,"ignore_cache":false}'), +(20661, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:00.936+00', '{"cached":null,"ignore_cache":false}'), +(20662, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:01.088+00', '{"cached":null,"ignore_cache":false}'), +(20663, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.726+00', '{"cached":null,"ignore_cache":false}'), +(20664, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.829+00', '{"cached":null,"ignore_cache":false}'), +(20665, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.832+00', '{"cached":null,"ignore_cache":false}'), +(20666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.861+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20667, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.893+00', '{"cached":null,"ignore_cache":false}'), +(20668, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.897+00', '{"cached":null,"ignore_cache":false}'), +(20669, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.907+00', '{"cached":null,"ignore_cache":false}'), +(20670, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.938+00', '{"cached":null,"ignore_cache":false}'), +(20671, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.941+00', '{"cached":null,"ignore_cache":false}'), +(20672, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.946+00', '{"cached":null,"ignore_cache":false}'), +(20673, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.948+00', '{"cached":null,"ignore_cache":false}'), +(20674, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.957+00', '{"cached":null,"ignore_cache":false}'), +(20675, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.978+00', '{"cached":null,"ignore_cache":false}'), +(20676, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.981+00', '{"cached":null,"ignore_cache":false}'), +(20677, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:30.994+00', '{"cached":null,"ignore_cache":false}'), +(20678, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:32:31.178+00', '{"cached":null,"ignore_cache":false}'), +(20679, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:00.928+00', '{"cached":null,"ignore_cache":false}'), +(20680, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.072+00', '{"cached":null,"ignore_cache":false}'), +(20681, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.112+00', '{"cached":null,"ignore_cache":false}'), +(20682, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.116+00', '{"cached":null,"ignore_cache":false}'), +(20683, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.117+00', '{"cached":null,"ignore_cache":false}'), +(20684, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.222+00', '{"cached":null,"ignore_cache":false}'), +(20685, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.241+00', '{"cached":null,"ignore_cache":false}'), +(20686, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.421+00', '{"cached":null,"ignore_cache":false}'), +(20687, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.515+00', '{"cached":null,"ignore_cache":false}'), +(20688, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.536+00', '{"cached":null,"ignore_cache":false}'), +(20689, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.55+00', '{"cached":null,"ignore_cache":false}'), +(20690, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.563+00', '{"cached":null,"ignore_cache":false}'), +(20691, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.566+00', '{"cached":null,"ignore_cache":false}'), +(20692, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.593+00', '{"cached":null,"ignore_cache":false}'), +(20693, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.651+00', '{"cached":null,"ignore_cache":false}'), +(20694, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:01.956+00', '{"cached":null,"ignore_cache":false}'), +(20695, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:31.965+00', '{"cached":null,"ignore_cache":false}'), +(20696, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.128+00', '{"cached":null,"ignore_cache":false}'), +(20697, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.157+00', '{"cached":null,"ignore_cache":false}'), +(20698, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.16+00', '{"cached":null,"ignore_cache":false}'), +(20699, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.204+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20700, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.254+00', '{"cached":null,"ignore_cache":false}'), +(20701, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.26+00', '{"cached":null,"ignore_cache":false}'), +(20702, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.26+00', '{"cached":null,"ignore_cache":false}'), +(20703, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.262+00', '{"cached":null,"ignore_cache":false}'), +(20704, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.285+00', '{"cached":null,"ignore_cache":false}'), +(20705, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.328+00', '{"cached":null,"ignore_cache":false}'), +(20706, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.342+00', '{"cached":null,"ignore_cache":false}'), +(20707, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.37+00', '{"cached":null,"ignore_cache":false}'), +(20708, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.406+00', '{"cached":null,"ignore_cache":false}'), +(20709, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.415+00', '{"cached":null,"ignore_cache":false}'), +(20710, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:33:32.597+00', '{"cached":null,"ignore_cache":false}'), +(20711, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.262+00', '{"cached":null,"ignore_cache":false}'), +(20712, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.446+00', '{"cached":null,"ignore_cache":false}'), +(20713, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.459+00', '{"cached":null,"ignore_cache":false}'), +(20714, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.467+00', '{"cached":null,"ignore_cache":false}'), +(20715, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.526+00', '{"cached":null,"ignore_cache":false}'), +(20716, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.56+00', '{"cached":null,"ignore_cache":false}'), +(20717, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.594+00', '{"cached":null,"ignore_cache":false}'), +(20718, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.62+00', '{"cached":null,"ignore_cache":false}'), +(20719, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.703+00', '{"cached":null,"ignore_cache":false}'), +(20720, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.75+00', '{"cached":null,"ignore_cache":false}'), +(20721, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.761+00', '{"cached":null,"ignore_cache":false}'), +(20722, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.766+00', '{"cached":null,"ignore_cache":false}'), +(20723, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.775+00', '{"cached":null,"ignore_cache":false}'), +(20724, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.779+00', '{"cached":null,"ignore_cache":false}'), +(20725, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:01.793+00', '{"cached":null,"ignore_cache":false}'), +(20726, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:02.085+00', '{"cached":null,"ignore_cache":false}'), +(20727, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.587+00', '{"cached":null,"ignore_cache":false}'), +(20728, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.765+00', '{"cached":null,"ignore_cache":false}'), +(20729, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.81+00', '{"cached":null,"ignore_cache":false}'), +(20730, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.853+00', '{"cached":null,"ignore_cache":false}'), +(20731, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.883+00', '{"cached":null,"ignore_cache":false}'), +(20732, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.892+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20733, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.92+00', '{"cached":null,"ignore_cache":false}'), +(20734, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.924+00', '{"cached":null,"ignore_cache":false}'), +(20735, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:30.965+00', '{"cached":null,"ignore_cache":false}'), +(20736, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:31.009+00', '{"cached":null,"ignore_cache":false}'), +(20737, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:31.016+00', '{"cached":null,"ignore_cache":false}'), +(20738, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:31.019+00', '{"cached":null,"ignore_cache":false}'), +(20739, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:31.056+00', '{"cached":null,"ignore_cache":false}'), +(20740, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:31.071+00', '{"cached":null,"ignore_cache":false}'), +(20741, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:31.107+00', '{"cached":null,"ignore_cache":false}'), +(20742, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:34:31.121+00', '{"cached":null,"ignore_cache":false}'), +(20743, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.177+00', '{"cached":null,"ignore_cache":false}'), +(20744, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.341+00', '{"cached":null,"ignore_cache":false}'), +(20745, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.358+00', '{"cached":null,"ignore_cache":false}'), +(20746, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.387+00', '{"cached":null,"ignore_cache":false}'), +(20747, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.416+00', '{"cached":null,"ignore_cache":false}'), +(20748, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.438+00', '{"cached":null,"ignore_cache":false}'), +(20749, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.464+00', '{"cached":null,"ignore_cache":false}'), +(20750, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.504+00', '{"cached":null,"ignore_cache":false}'), +(20751, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.51+00', '{"cached":null,"ignore_cache":false}'), +(20752, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.6+00', '{"cached":null,"ignore_cache":false}'), +(20753, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.601+00', '{"cached":null,"ignore_cache":false}'), +(20754, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.609+00', '{"cached":null,"ignore_cache":false}'), +(20755, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.643+00', '{"cached":null,"ignore_cache":false}'), +(20756, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.649+00', '{"cached":null,"ignore_cache":false}'), +(20757, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.65+00', '{"cached":null,"ignore_cache":false}'), +(20758, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:01.803+00', '{"cached":null,"ignore_cache":false}'), +(20759, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.837+00', '{"cached":null,"ignore_cache":false}'), +(20760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.902+00', '{"cached":null,"ignore_cache":false}'), +(20761, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.93+00', '{"cached":null,"ignore_cache":false}'), +(20762, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:31.995+00', '{"cached":null,"ignore_cache":false}'), +(20763, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.006+00', '{"cached":null,"ignore_cache":false}'), +(20764, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.018+00', '{"cached":null,"ignore_cache":false}'), +(20765, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.034+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20766, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.048+00', '{"cached":null,"ignore_cache":false}'), +(20767, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.064+00', '{"cached":null,"ignore_cache":false}'), +(20768, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.077+00', '{"cached":null,"ignore_cache":false}'), +(20769, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.141+00', '{"cached":null,"ignore_cache":false}'), +(20770, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.152+00', '{"cached":null,"ignore_cache":false}'), +(20771, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.156+00', '{"cached":null,"ignore_cache":false}'), +(20772, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.166+00', '{"cached":null,"ignore_cache":false}'), +(20773, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.2+00', '{"cached":null,"ignore_cache":false}'), +(20774, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:35:32.508+00', '{"cached":null,"ignore_cache":false}'), +(20775, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.141+00', '{"cached":null,"ignore_cache":false}'), +(20776, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.156+00', '{"cached":null,"ignore_cache":false}'), +(20777, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.342+00', '{"cached":null,"ignore_cache":false}'), +(20778, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.399+00', '{"cached":null,"ignore_cache":false}'), +(20779, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.419+00', '{"cached":null,"ignore_cache":false}'), +(20780, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.468+00', '{"cached":null,"ignore_cache":false}'), +(20781, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.517+00', '{"cached":null,"ignore_cache":false}'), +(20782, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.537+00', '{"cached":null,"ignore_cache":false}'), +(20783, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.574+00', '{"cached":null,"ignore_cache":false}'), +(20784, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.609+00', '{"cached":null,"ignore_cache":false}'), +(20785, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.668+00', '{"cached":null,"ignore_cache":false}'), +(20786, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.682+00', '{"cached":null,"ignore_cache":false}'), +(20787, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.695+00', '{"cached":null,"ignore_cache":false}'), +(20788, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.709+00', '{"cached":null,"ignore_cache":false}'), +(20789, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.766+00', '{"cached":null,"ignore_cache":false}'), +(20790, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:01.857+00', '{"cached":null,"ignore_cache":false}'), +(20791, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.837+00', '{"cached":null,"ignore_cache":false}'), +(20792, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.905+00', '{"cached":null,"ignore_cache":false}'), +(20793, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.919+00', '{"cached":null,"ignore_cache":false}'), +(20794, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:30.935+00', '{"cached":null,"ignore_cache":false}'), +(20795, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.065+00', '{"cached":null,"ignore_cache":false}'), +(20796, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.072+00', '{"cached":null,"ignore_cache":false}'), +(20797, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.078+00', '{"cached":null,"ignore_cache":false}'), +(20798, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.094+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20799, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.12+00', '{"cached":null,"ignore_cache":false}'), +(20800, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.133+00', '{"cached":null,"ignore_cache":false}'), +(20801, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.155+00', '{"cached":null,"ignore_cache":false}'), +(20802, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.188+00', '{"cached":null,"ignore_cache":false}'), +(20803, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.192+00', '{"cached":null,"ignore_cache":false}'), +(20804, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.194+00', '{"cached":null,"ignore_cache":false}'), +(20805, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.206+00', '{"cached":null,"ignore_cache":false}'), +(20806, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:36:31.41+00', '{"cached":null,"ignore_cache":false}'), +(20807, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.79+00', '{"cached":null,"ignore_cache":false}'), +(20808, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.806+00', '{"cached":null,"ignore_cache":false}'), +(20809, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.867+00', '{"cached":null,"ignore_cache":false}'), +(20810, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.886+00', '{"cached":null,"ignore_cache":false}'), +(20811, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:01.955+00', '{"cached":null,"ignore_cache":false}'), +(20812, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.036+00', '{"cached":null,"ignore_cache":false}'), +(20813, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.137+00', '{"cached":null,"ignore_cache":false}'), +(20814, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.195+00', '{"cached":null,"ignore_cache":false}'), +(20815, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.218+00', '{"cached":null,"ignore_cache":false}'), +(20816, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.246+00', '{"cached":null,"ignore_cache":false}'), +(20817, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.3+00', '{"cached":null,"ignore_cache":false}'), +(20818, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.361+00', '{"cached":null,"ignore_cache":false}'), +(20819, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.362+00', '{"cached":null,"ignore_cache":false}'), +(20820, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.371+00', '{"cached":null,"ignore_cache":false}'), +(20821, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.424+00', '{"cached":null,"ignore_cache":false}'), +(20822, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:02.467+00', '{"cached":null,"ignore_cache":false}'), +(20823, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.372+00', '{"cached":null,"ignore_cache":false}'), +(20824, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.451+00', '{"cached":null,"ignore_cache":false}'), +(20825, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.502+00', '{"cached":null,"ignore_cache":false}'), +(20826, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.526+00', '{"cached":null,"ignore_cache":false}'), +(20827, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.549+00', '{"cached":null,"ignore_cache":false}'), +(20828, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.566+00', '{"cached":null,"ignore_cache":false}'), +(20829, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.614+00', '{"cached":null,"ignore_cache":false}'), +(20830, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.807+00', '{"cached":null,"ignore_cache":false}'), +(20831, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.807+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20832, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.819+00', '{"cached":null,"ignore_cache":false}'), +(20833, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.876+00', '{"cached":null,"ignore_cache":false}'), +(20834, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.881+00', '{"cached":null,"ignore_cache":false}'), +(20835, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.882+00', '{"cached":null,"ignore_cache":false}'), +(20836, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.899+00', '{"cached":null,"ignore_cache":false}'), +(20837, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:31.929+00', '{"cached":null,"ignore_cache":false}'), +(20838, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:37:32.142+00', '{"cached":null,"ignore_cache":false}'), +(20839, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.551+00', '{"cached":null,"ignore_cache":false}'), +(20840, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.607+00', '{"cached":null,"ignore_cache":false}'), +(20841, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.612+00', '{"cached":null,"ignore_cache":false}'), +(20842, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.615+00', '{"cached":null,"ignore_cache":false}'), +(20843, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.621+00', '{"cached":null,"ignore_cache":false}'), +(20844, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.699+00', '{"cached":null,"ignore_cache":false}'), +(20845, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.7+00', '{"cached":null,"ignore_cache":false}'), +(20846, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.731+00', '{"cached":null,"ignore_cache":false}'), +(20847, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.765+00', '{"cached":null,"ignore_cache":false}'), +(20848, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.842+00', '{"cached":null,"ignore_cache":false}'), +(20849, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.89+00', '{"cached":null,"ignore_cache":false}'), +(20850, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.945+00', '{"cached":null,"ignore_cache":false}'), +(20851, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.974+00', '{"cached":null,"ignore_cache":false}'), +(20852, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.979+00', '{"cached":null,"ignore_cache":false}'), +(20853, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:01.984+00', '{"cached":null,"ignore_cache":false}'), +(20854, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:02.337+00', '{"cached":null,"ignore_cache":false}'), +(20855, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.5+00', '{"cached":null,"ignore_cache":false}'), +(20856, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.529+00', '{"cached":null,"ignore_cache":false}'), +(20857, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.83+00', '{"cached":null,"ignore_cache":false}'), +(20858, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.942+00', '{"cached":null,"ignore_cache":false}'), +(20859, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.948+00', '{"cached":null,"ignore_cache":false}'), +(20860, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:31.949+00', '{"cached":null,"ignore_cache":false}'), +(20861, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.026+00', '{"cached":null,"ignore_cache":false}'), +(20862, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.027+00', '{"cached":null,"ignore_cache":false}'), +(20863, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.038+00', '{"cached":null,"ignore_cache":false}'), +(20864, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.144+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20865, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.167+00', '{"cached":null,"ignore_cache":false}'), +(20866, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.168+00', '{"cached":null,"ignore_cache":false}'), +(20867, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.202+00', '{"cached":null,"ignore_cache":false}'), +(20868, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.218+00', '{"cached":null,"ignore_cache":false}'), +(20869, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.237+00', '{"cached":null,"ignore_cache":false}'), +(20870, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:38:32.579+00', '{"cached":null,"ignore_cache":false}'), +(20871, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.415+00', '{"cached":null,"ignore_cache":false}'), +(20872, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.476+00', '{"cached":null,"ignore_cache":false}'), +(20873, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.496+00', '{"cached":null,"ignore_cache":false}'), +(20874, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.52+00', '{"cached":null,"ignore_cache":false}'), +(20875, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.548+00', '{"cached":null,"ignore_cache":false}'), +(20876, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.556+00', '{"cached":null,"ignore_cache":false}'), +(20877, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.659+00', '{"cached":null,"ignore_cache":false}'), +(20878, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.664+00', '{"cached":null,"ignore_cache":false}'), +(20879, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.667+00', '{"cached":null,"ignore_cache":false}'), +(20880, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.672+00', '{"cached":null,"ignore_cache":false}'), +(20881, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.682+00', '{"cached":null,"ignore_cache":false}'), +(20882, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.694+00', '{"cached":null,"ignore_cache":false}'), +(20883, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.695+00', '{"cached":null,"ignore_cache":false}'), +(20884, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.705+00', '{"cached":null,"ignore_cache":false}'), +(20885, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.712+00', '{"cached":null,"ignore_cache":false}'), +(20886, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:01.714+00', '{"cached":null,"ignore_cache":false}'), +(20887, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.373+00', '{"cached":null,"ignore_cache":false}'), +(20888, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.521+00', '{"cached":null,"ignore_cache":false}'), +(20889, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.696+00', '{"cached":null,"ignore_cache":false}'), +(20890, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.861+00', '{"cached":null,"ignore_cache":false}'), +(20891, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.89+00', '{"cached":null,"ignore_cache":false}'), +(20892, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.958+00', '{"cached":null,"ignore_cache":false}'), +(20893, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:31.966+00', '{"cached":null,"ignore_cache":false}'), +(20894, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.022+00', '{"cached":null,"ignore_cache":false}'), +(20895, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.061+00', '{"cached":null,"ignore_cache":false}'), +(20896, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.186+00', '{"cached":null,"ignore_cache":false}'), +(20897, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.206+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20898, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.214+00', '{"cached":null,"ignore_cache":false}'), +(20899, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.24+00', '{"cached":null,"ignore_cache":false}'), +(20900, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.25+00', '{"cached":null,"ignore_cache":false}'), +(20901, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.267+00', '{"cached":null,"ignore_cache":false}'), +(20902, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:39:32.443+00', '{"cached":null,"ignore_cache":false}'), +(20903, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.499+00', '{"cached":null,"ignore_cache":false}'), +(20904, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.51+00', '{"cached":null,"ignore_cache":false}'), +(20905, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.602+00', '{"cached":null,"ignore_cache":false}'), +(20906, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.675+00', '{"cached":null,"ignore_cache":false}'), +(20907, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.726+00', '{"cached":null,"ignore_cache":false}'), +(20908, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.745+00', '{"cached":null,"ignore_cache":false}'), +(20909, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.773+00', '{"cached":null,"ignore_cache":false}'), +(20910, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.782+00', '{"cached":null,"ignore_cache":false}'), +(20911, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.792+00', '{"cached":null,"ignore_cache":false}'), +(20912, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.803+00', '{"cached":null,"ignore_cache":false}'), +(20913, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.831+00', '{"cached":null,"ignore_cache":false}'), +(20914, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.851+00', '{"cached":null,"ignore_cache":false}'), +(20915, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.887+00', '{"cached":null,"ignore_cache":false}'), +(20916, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.9+00', '{"cached":null,"ignore_cache":false}'), +(20917, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:01.96+00', '{"cached":null,"ignore_cache":false}'), +(20918, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:02.085+00', '{"cached":null,"ignore_cache":false}'), +(20919, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.719+00', '{"cached":null,"ignore_cache":false}'), +(20920, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.784+00', '{"cached":null,"ignore_cache":false}'), +(20921, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.837+00', '{"cached":null,"ignore_cache":false}'), +(20922, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.837+00', '{"cached":null,"ignore_cache":false}'), +(20923, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:31.952+00', '{"cached":null,"ignore_cache":false}'), +(20924, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.002+00', '{"cached":null,"ignore_cache":false}'), +(20925, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.049+00', '{"cached":null,"ignore_cache":false}'), +(20926, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.197+00', '{"cached":null,"ignore_cache":false}'), +(20927, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.253+00', '{"cached":null,"ignore_cache":false}'), +(20928, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.339+00', '{"cached":null,"ignore_cache":false}'), +(20929, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.411+00', '{"cached":null,"ignore_cache":false}'), +(20930, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.415+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20931, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.435+00', '{"cached":null,"ignore_cache":false}'), +(20932, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.476+00', '{"cached":null,"ignore_cache":false}'), +(20933, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.51+00', '{"cached":null,"ignore_cache":false}'), +(20934, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:40:32.511+00', '{"cached":null,"ignore_cache":false}'), +(20935, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.258+00', '{"cached":null,"ignore_cache":false}'), +(20936, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.501+00', '{"cached":null,"ignore_cache":false}'), +(20937, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.526+00', '{"cached":null,"ignore_cache":false}'), +(20938, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.547+00', '{"cached":null,"ignore_cache":false}'), +(20939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.773+00', '{"cached":null,"ignore_cache":false}'), +(20940, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.776+00', '{"cached":null,"ignore_cache":false}'), +(20941, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.812+00', '{"cached":null,"ignore_cache":false}'), +(20942, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.856+00', '{"cached":null,"ignore_cache":false}'), +(20943, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.862+00', '{"cached":null,"ignore_cache":false}'), +(20944, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.88+00', '{"cached":null,"ignore_cache":false}'), +(20945, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.971+00', '{"cached":null,"ignore_cache":false}'), +(20946, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.977+00', '{"cached":null,"ignore_cache":false}'), +(20947, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:01.979+00', '{"cached":null,"ignore_cache":false}'), +(20948, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:02.024+00', '{"cached":null,"ignore_cache":false}'), +(20949, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:02.044+00', '{"cached":null,"ignore_cache":false}'), +(20950, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:02.208+00', '{"cached":null,"ignore_cache":false}'), +(20951, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.515+00', '{"cached":null,"ignore_cache":false}'), +(20952, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.702+00', '{"cached":null,"ignore_cache":false}'), +(20953, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.75+00', '{"cached":null,"ignore_cache":false}'), +(20954, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.75+00', '{"cached":null,"ignore_cache":false}'), +(20955, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.771+00', '{"cached":null,"ignore_cache":false}'), +(20956, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.846+00', '{"cached":null,"ignore_cache":false}'), +(20957, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.89+00', '{"cached":null,"ignore_cache":false}'), +(20958, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:31.959+00', '{"cached":null,"ignore_cache":false}'), +(20959, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.113+00', '{"cached":null,"ignore_cache":false}'), +(20960, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.121+00', '{"cached":null,"ignore_cache":false}'), +(20961, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.13+00', '{"cached":null,"ignore_cache":false}'), +(20962, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.151+00', '{"cached":null,"ignore_cache":false}'), +(20963, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.163+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20964, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.212+00', '{"cached":null,"ignore_cache":false}'), +(20965, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.227+00', '{"cached":null,"ignore_cache":false}'), +(20966, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:41:32.253+00', '{"cached":null,"ignore_cache":false}'), +(20967, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:05.944+00', '{"cached":null,"ignore_cache":false}'), +(20968, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:05.95+00', '{"cached":null,"ignore_cache":false}'), +(20969, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.107+00', '{"cached":null,"ignore_cache":false}'), +(20970, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.294+00', '{"cached":null,"ignore_cache":false}'), +(20971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.323+00', '{"cached":null,"ignore_cache":false}'), +(20972, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.347+00', '{"cached":null,"ignore_cache":false}'), +(20973, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.35+00', '{"cached":null,"ignore_cache":false}'), +(20974, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.407+00', '{"cached":null,"ignore_cache":false}'), +(20975, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.415+00', '{"cached":null,"ignore_cache":false}'), +(20976, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.433+00', '{"cached":null,"ignore_cache":false}'), +(20977, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.452+00', '{"cached":null,"ignore_cache":false}'), +(20978, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.477+00', '{"cached":null,"ignore_cache":false}'), +(20979, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.493+00', '{"cached":null,"ignore_cache":false}'), +(20980, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.546+00', '{"cached":null,"ignore_cache":false}'), +(20981, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.558+00', '{"cached":null,"ignore_cache":false}'), +(20982, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:46:06.842+00', '{"cached":null,"ignore_cache":false}'), +(20983, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.772+00', '{"cached":null,"ignore_cache":false}'), +(20984, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.785+00', '{"cached":null,"ignore_cache":false}'), +(20985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.903+00', '{"cached":null,"ignore_cache":false}'), +(20986, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:26.909+00', '{"cached":null,"ignore_cache":false}'), +(20987, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.083+00', '{"cached":null,"ignore_cache":false}'), +(20988, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.127+00', '{"cached":null,"ignore_cache":false}'), +(20989, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.171+00', '{"cached":null,"ignore_cache":false}'), +(20990, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.172+00', '{"cached":null,"ignore_cache":false}'), +(20991, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.222+00', '{"cached":null,"ignore_cache":false}'), +(20992, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.267+00', '{"cached":null,"ignore_cache":false}'), +(20993, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.279+00', '{"cached":null,"ignore_cache":false}'), +(20994, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.286+00', '{"cached":null,"ignore_cache":false}'), +(20995, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.294+00', '{"cached":null,"ignore_cache":false}'), +(20996, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.362+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(20997, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.465+00', '{"cached":null,"ignore_cache":false}'), +(20998, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:49:27.479+00', '{"cached":null,"ignore_cache":false}'), +(20999, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:06.948+00', '{"cached":null,"ignore_cache":false}'), +(21000, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.094+00', '{"cached":null,"ignore_cache":false}'), +(21001, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.119+00', '{"cached":null,"ignore_cache":false}'), +(21002, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.126+00', '{"cached":null,"ignore_cache":false}'), +(21003, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.138+00', '{"cached":null,"ignore_cache":false}'), +(21004, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:07.424+00', '{"cached":null,"ignore_cache":false}'), +(21005, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.023+00', '{"cached":null,"ignore_cache":false}'), +(21006, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.033+00', '{"cached":null,"ignore_cache":false}'), +(21007, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.065+00', '{"cached":null,"ignore_cache":false}'), +(21008, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.112+00', '{"cached":null,"ignore_cache":false}'), +(21009, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.234+00', '{"cached":null,"ignore_cache":false}'), +(21010, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.235+00', '{"cached":null,"ignore_cache":false}'), +(21011, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.475+00', '{"cached":null,"ignore_cache":false}'), +(21012, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.518+00', '{"cached":null,"ignore_cache":false}'), +(21013, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.675+00', '{"cached":null,"ignore_cache":false}'), +(21014, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.762+00', '{"cached":null,"ignore_cache":false}'), +(21015, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.788+00', '{"cached":null,"ignore_cache":false}'), +(21016, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.802+00', '{"cached":null,"ignore_cache":false}'), +(21017, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.865+00', '{"cached":null,"ignore_cache":false}'), +(21018, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.901+00', '{"cached":null,"ignore_cache":false}'), +(21019, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.91+00', '{"cached":null,"ignore_cache":false}'), +(21020, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:08.927+00', '{"cached":null,"ignore_cache":false}'), +(21021, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:09.582+00', '{"cached":null,"ignore_cache":false}'), +(21022, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.128+00', '{"cached":null,"ignore_cache":false}'), +(21023, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.187+00', '{"cached":null,"ignore_cache":false}'), +(21024, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.247+00', '{"cached":null,"ignore_cache":false}'), +(21025, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.261+00', '{"cached":null,"ignore_cache":false}'), +(21026, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.38+00', '{"cached":null,"ignore_cache":false}'), +(21027, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.388+00', '{"cached":null,"ignore_cache":false}'), +(21028, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.396+00', '{"cached":null,"ignore_cache":false}'), +(21029, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.404+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21030, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.484+00', '{"cached":null,"ignore_cache":false}'), +(21031, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.522+00', '{"cached":null,"ignore_cache":false}'), +(21032, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.564+00', '{"cached":null,"ignore_cache":false}'), +(21033, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.585+00', '{"cached":null,"ignore_cache":false}'), +(21034, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.589+00', '{"cached":null,"ignore_cache":false}'), +(21035, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.595+00', '{"cached":null,"ignore_cache":false}'), +(21036, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.617+00', '{"cached":null,"ignore_cache":false}'), +(21037, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:27.799+00', '{"cached":null,"ignore_cache":false}'), +(21038, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.057+00', '{"cached":null,"ignore_cache":false}'), +(21039, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.193+00', '{"cached":null,"ignore_cache":false}'), +(21040, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.286+00', '{"cached":null,"ignore_cache":false}'), +(21041, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.326+00', '{"cached":null,"ignore_cache":false}'), +(21042, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.342+00', '{"cached":null,"ignore_cache":false}'), +(21043, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.472+00', '{"cached":null,"ignore_cache":false}'), +(21044, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.491+00', '{"cached":null,"ignore_cache":false}'), +(21045, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.535+00', '{"cached":null,"ignore_cache":false}'), +(21046, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.543+00', '{"cached":null,"ignore_cache":false}'), +(21047, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.612+00', '{"cached":null,"ignore_cache":false}'), +(21048, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.719+00', '{"cached":null,"ignore_cache":false}'), +(21049, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.73+00', '{"cached":null,"ignore_cache":false}'), +(21050, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.762+00', '{"cached":null,"ignore_cache":false}'), +(21051, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.791+00', '{"cached":null,"ignore_cache":false}'), +(21052, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:57.797+00', '{"cached":null,"ignore_cache":false}'), +(21053, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:50:58.173+00', '{"cached":null,"ignore_cache":false}'), +(21054, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.569+00', '{"cached":null,"ignore_cache":false}'), +(21055, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.597+00', '{"cached":null,"ignore_cache":false}'), +(21056, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.616+00', '{"cached":null,"ignore_cache":false}'), +(21057, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.662+00', '{"cached":null,"ignore_cache":false}'), +(21058, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.676+00', '{"cached":null,"ignore_cache":false}'), +(21059, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.694+00', '{"cached":null,"ignore_cache":false}'), +(21060, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:26.946+00', '{"cached":null,"ignore_cache":false}'), +(21061, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.02+00', '{"cached":null,"ignore_cache":false}'), +(21062, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.072+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21063, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.077+00', '{"cached":null,"ignore_cache":false}'), +(21064, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.105+00', '{"cached":null,"ignore_cache":false}'), +(21065, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.19+00', '{"cached":null,"ignore_cache":false}'), +(21066, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.203+00', '{"cached":null,"ignore_cache":false}'), +(21067, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.203+00', '{"cached":null,"ignore_cache":false}'), +(21068, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.21+00', '{"cached":null,"ignore_cache":false}'), +(21069, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:29.218+00', '{"cached":null,"ignore_cache":false}'), +(21070, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.144+00', '{"cached":null,"ignore_cache":false}'), +(21071, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.15+00', '{"cached":null,"ignore_cache":false}'), +(21072, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.162+00', '{"cached":null,"ignore_cache":false}'), +(21073, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.296+00', '{"cached":null,"ignore_cache":false}'), +(21074, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.375+00', '{"cached":null,"ignore_cache":false}'), +(21075, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.403+00', '{"cached":null,"ignore_cache":false}'), +(21076, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.482+00', '{"cached":null,"ignore_cache":false}'), +(21077, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.504+00', '{"cached":null,"ignore_cache":false}'), +(21078, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.515+00', '{"cached":null,"ignore_cache":false}'), +(21079, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.54+00', '{"cached":null,"ignore_cache":false}'), +(21080, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.62+00', '{"cached":null,"ignore_cache":false}'), +(21081, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.635+00', '{"cached":null,"ignore_cache":false}'), +(21082, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.655+00', '{"cached":null,"ignore_cache":false}'), +(21083, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.659+00', '{"cached":null,"ignore_cache":false}'), +(21084, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.678+00', '{"cached":null,"ignore_cache":false}'), +(21085, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:51:57.886+00', '{"cached":null,"ignore_cache":false}'), +(21086, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.982+00', '{"cached":null,"ignore_cache":false}'), +(21087, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:26.995+00', '{"cached":null,"ignore_cache":false}'), +(21088, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.016+00', '{"cached":null,"ignore_cache":false}'), +(21089, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.065+00', '{"cached":null,"ignore_cache":false}'), +(21090, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.104+00', '{"cached":null,"ignore_cache":false}'), +(21091, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.229+00', '{"cached":null,"ignore_cache":false}'), +(21092, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.23+00', '{"cached":null,"ignore_cache":false}'), +(21093, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.253+00', '{"cached":null,"ignore_cache":false}'), +(21094, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.295+00', '{"cached":null,"ignore_cache":false}'), +(21095, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.383+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21096, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.407+00', '{"cached":null,"ignore_cache":false}'), +(21097, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.416+00', '{"cached":null,"ignore_cache":false}'), +(21098, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.427+00', '{"cached":null,"ignore_cache":false}'), +(21099, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.448+00', '{"cached":null,"ignore_cache":false}'), +(21100, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.454+00', '{"cached":null,"ignore_cache":false}'), +(21101, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:27.455+00', '{"cached":null,"ignore_cache":false}'), +(21102, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.838+00', '{"cached":null,"ignore_cache":false}'), +(21103, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.866+00', '{"cached":null,"ignore_cache":false}'), +(21104, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.949+00', '{"cached":null,"ignore_cache":false}'), +(21105, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:56.964+00', '{"cached":null,"ignore_cache":false}'), +(21106, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.011+00', '{"cached":null,"ignore_cache":false}'), +(21107, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.019+00', '{"cached":null,"ignore_cache":false}'), +(21108, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.02+00', '{"cached":null,"ignore_cache":false}'), +(21109, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.023+00', '{"cached":null,"ignore_cache":false}'), +(21110, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.046+00', '{"cached":null,"ignore_cache":false}'), +(21111, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.063+00', '{"cached":null,"ignore_cache":false}'), +(21112, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.068+00', '{"cached":null,"ignore_cache":false}'), +(21113, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.091+00', '{"cached":null,"ignore_cache":false}'), +(21114, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.094+00', '{"cached":null,"ignore_cache":false}'), +(21115, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.111+00', '{"cached":null,"ignore_cache":false}'), +(21116, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.116+00', '{"cached":null,"ignore_cache":false}'), +(21117, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:52:57.323+00', '{"cached":null,"ignore_cache":false}'), +(21118, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.545+00', '{"cached":null,"ignore_cache":false}'), +(21119, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.55+00', '{"cached":null,"ignore_cache":false}'), +(21120, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.588+00', '{"cached":null,"ignore_cache":false}'), +(21121, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.772+00', '{"cached":null,"ignore_cache":false}'), +(21122, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.8+00', '{"cached":null,"ignore_cache":false}'), +(21123, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.824+00', '{"cached":null,"ignore_cache":false}'), +(21124, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.844+00', '{"cached":null,"ignore_cache":false}'), +(21125, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.847+00', '{"cached":null,"ignore_cache":false}'), +(21126, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.901+00', '{"cached":null,"ignore_cache":false}'), +(21127, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.916+00', '{"cached":null,"ignore_cache":false}'), +(21128, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.922+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21129, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.93+00', '{"cached":null,"ignore_cache":false}'), +(21130, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.945+00', '{"cached":null,"ignore_cache":false}'), +(21131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.985+00', '{"cached":null,"ignore_cache":false}'), +(21132, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:26.996+00', '{"cached":null,"ignore_cache":false}'), +(21133, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:27.077+00', '{"cached":null,"ignore_cache":false}'), +(21134, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.541+00', '{"cached":null,"ignore_cache":false}'), +(21135, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.647+00', '{"cached":null,"ignore_cache":false}'), +(21136, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.713+00', '{"cached":null,"ignore_cache":false}'), +(21137, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.72+00', '{"cached":null,"ignore_cache":false}'), +(21138, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.748+00', '{"cached":null,"ignore_cache":false}'), +(21139, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.794+00', '{"cached":null,"ignore_cache":false}'), +(21140, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.805+00', '{"cached":null,"ignore_cache":false}'), +(21141, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.864+00', '{"cached":null,"ignore_cache":false}'), +(21142, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.89+00', '{"cached":null,"ignore_cache":false}'), +(21143, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.906+00', '{"cached":null,"ignore_cache":false}'), +(21144, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:57.945+00', '{"cached":null,"ignore_cache":false}'), +(21145, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:58.002+00', '{"cached":null,"ignore_cache":false}'), +(21146, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:58.027+00', '{"cached":null,"ignore_cache":false}'), +(21147, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:58.03+00', '{"cached":null,"ignore_cache":false}'), +(21148, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:58.041+00', '{"cached":null,"ignore_cache":false}'), +(21149, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:53:58.163+00', '{"cached":null,"ignore_cache":false}'), +(21150, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.592+00', '{"cached":null,"ignore_cache":false}'), +(21151, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.634+00', '{"cached":null,"ignore_cache":false}'), +(21152, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.672+00', '{"cached":null,"ignore_cache":false}'), +(21153, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.714+00', '{"cached":null,"ignore_cache":false}'), +(21154, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.725+00', '{"cached":null,"ignore_cache":false}'), +(21155, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.748+00', '{"cached":null,"ignore_cache":false}'), +(21156, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.768+00', '{"cached":null,"ignore_cache":false}'), +(21157, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.799+00', '{"cached":null,"ignore_cache":false}'), +(21158, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.803+00', '{"cached":null,"ignore_cache":false}'), +(21159, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.813+00', '{"cached":null,"ignore_cache":false}'), +(21160, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.838+00', '{"cached":null,"ignore_cache":false}'), +(21161, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.868+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21162, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.891+00', '{"cached":null,"ignore_cache":false}'), +(21163, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.948+00', '{"cached":null,"ignore_cache":false}'), +(21164, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:27.97+00', '{"cached":null,"ignore_cache":false}'), +(21165, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:28.089+00', '{"cached":null,"ignore_cache":false}'), +(21166, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.78+00', '{"cached":null,"ignore_cache":false}'), +(21167, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.892+00', '{"cached":null,"ignore_cache":false}'), +(21168, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.911+00', '{"cached":null,"ignore_cache":false}'), +(21169, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.945+00', '{"cached":null,"ignore_cache":false}'), +(21170, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:57.976+00', '{"cached":null,"ignore_cache":false}'), +(21171, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.015+00', '{"cached":null,"ignore_cache":false}'), +(21172, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.076+00', '{"cached":null,"ignore_cache":false}'), +(21173, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.111+00', '{"cached":null,"ignore_cache":false}'), +(21174, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.138+00', '{"cached":null,"ignore_cache":false}'), +(21175, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.176+00', '{"cached":null,"ignore_cache":false}'), +(21176, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.18+00', '{"cached":null,"ignore_cache":false}'), +(21177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.195+00', '{"cached":null,"ignore_cache":false}'), +(21178, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.26+00', '{"cached":null,"ignore_cache":false}'), +(21179, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.264+00', '{"cached":null,"ignore_cache":false}'), +(21180, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.309+00', '{"cached":null,"ignore_cache":false}'), +(21181, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:54:58.471+00', '{"cached":null,"ignore_cache":false}'), +(21182, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.554+00', '{"cached":null,"ignore_cache":false}'), +(21183, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.73+00', '{"cached":null,"ignore_cache":false}'), +(21184, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.798+00', '{"cached":null,"ignore_cache":false}'), +(21185, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.97+00', '{"cached":null,"ignore_cache":false}'), +(21186, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:27.999+00', '{"cached":null,"ignore_cache":false}'), +(21187, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.027+00', '{"cached":null,"ignore_cache":false}'), +(21188, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.048+00', '{"cached":null,"ignore_cache":false}'), +(21189, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.072+00', '{"cached":null,"ignore_cache":false}'), +(21190, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.079+00', '{"cached":null,"ignore_cache":false}'), +(21191, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.09+00', '{"cached":null,"ignore_cache":false}'), +(21192, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.114+00', '{"cached":null,"ignore_cache":false}'), +(21193, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.13+00', '{"cached":null,"ignore_cache":false}'), +(21194, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.136+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21195, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.194+00', '{"cached":null,"ignore_cache":false}'), +(21196, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.201+00', '{"cached":null,"ignore_cache":false}'), +(21197, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:28.631+00', '{"cached":null,"ignore_cache":false}'), +(21198, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.835+00', '{"cached":null,"ignore_cache":false}'), +(21199, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:57.91+00', '{"cached":null,"ignore_cache":false}'), +(21200, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.031+00', '{"cached":null,"ignore_cache":false}'), +(21201, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.097+00', '{"cached":null,"ignore_cache":false}'), +(21202, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.166+00', '{"cached":null,"ignore_cache":false}'), +(21203, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.172+00', '{"cached":null,"ignore_cache":false}'), +(21204, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.179+00', '{"cached":null,"ignore_cache":false}'), +(21205, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.221+00', '{"cached":null,"ignore_cache":false}'), +(21206, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.355+00', '{"cached":null,"ignore_cache":false}'), +(21207, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.399+00', '{"cached":null,"ignore_cache":false}'), +(21208, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.404+00', '{"cached":null,"ignore_cache":false}'), +(21209, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.416+00', '{"cached":null,"ignore_cache":false}'), +(21210, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.427+00', '{"cached":null,"ignore_cache":false}'), +(21211, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.433+00', '{"cached":null,"ignore_cache":false}'), +(21212, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.475+00', '{"cached":null,"ignore_cache":false}'), +(21213, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:55:58.551+00', '{"cached":null,"ignore_cache":false}'), +(21214, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.593+00', '{"cached":null,"ignore_cache":false}'), +(21215, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.852+00', '{"cached":null,"ignore_cache":false}'), +(21216, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:27.946+00', '{"cached":null,"ignore_cache":false}'), +(21217, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.021+00', '{"cached":null,"ignore_cache":false}'), +(21218, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.024+00', '{"cached":null,"ignore_cache":false}'), +(21219, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.031+00', '{"cached":null,"ignore_cache":false}'), +(21220, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.065+00', '{"cached":null,"ignore_cache":false}'), +(21221, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.08+00', '{"cached":null,"ignore_cache":false}'), +(21222, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.122+00', '{"cached":null,"ignore_cache":false}'), +(21223, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.14+00', '{"cached":null,"ignore_cache":false}'), +(21224, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.154+00', '{"cached":null,"ignore_cache":false}'), +(21225, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.163+00', '{"cached":null,"ignore_cache":false}'), +(21226, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.164+00', '{"cached":null,"ignore_cache":false}'), +(21227, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.165+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21228, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.202+00', '{"cached":null,"ignore_cache":false}'), +(21229, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:28.477+00', '{"cached":null,"ignore_cache":false}'), +(21230, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.585+00', '{"cached":null,"ignore_cache":false}'), +(21231, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.625+00', '{"cached":null,"ignore_cache":false}'), +(21232, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.743+00', '{"cached":null,"ignore_cache":false}'), +(21233, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.757+00', '{"cached":null,"ignore_cache":false}'), +(21234, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.758+00', '{"cached":null,"ignore_cache":false}'), +(21235, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.779+00', '{"cached":null,"ignore_cache":false}'), +(21236, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.873+00', '{"cached":null,"ignore_cache":false}'), +(21237, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:57.974+00', '{"cached":null,"ignore_cache":false}'), +(21238, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.085+00', '{"cached":null,"ignore_cache":false}'), +(21239, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.111+00', '{"cached":null,"ignore_cache":false}'), +(21240, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.143+00', '{"cached":null,"ignore_cache":false}'), +(21241, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.155+00', '{"cached":null,"ignore_cache":false}'), +(21242, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.163+00', '{"cached":null,"ignore_cache":false}'), +(21243, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.235+00', '{"cached":null,"ignore_cache":false}'), +(21244, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.251+00', '{"cached":null,"ignore_cache":false}'), +(21245, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:56:58.409+00', '{"cached":null,"ignore_cache":false}'), +(21246, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.94+00', '{"cached":null,"ignore_cache":false}'), +(21247, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:27.97+00', '{"cached":null,"ignore_cache":false}'), +(21248, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.043+00', '{"cached":null,"ignore_cache":false}'), +(21249, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.062+00', '{"cached":null,"ignore_cache":false}'), +(21250, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.076+00', '{"cached":null,"ignore_cache":false}'), +(21251, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.108+00', '{"cached":null,"ignore_cache":false}'), +(21252, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.138+00', '{"cached":null,"ignore_cache":false}'), +(21253, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.141+00', '{"cached":null,"ignore_cache":false}'), +(21254, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.19+00', '{"cached":null,"ignore_cache":false}'), +(21255, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.288+00', '{"cached":null,"ignore_cache":false}'), +(21256, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.311+00', '{"cached":null,"ignore_cache":false}'), +(21257, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.313+00', '{"cached":null,"ignore_cache":false}'), +(21258, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.359+00', '{"cached":null,"ignore_cache":false}'), +(21259, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.363+00', '{"cached":null,"ignore_cache":false}'), +(21260, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.373+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:28.43+00', '{"cached":null,"ignore_cache":false}'), +(21262, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.613+00', '{"cached":null,"ignore_cache":false}'), +(21263, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.625+00', '{"cached":null,"ignore_cache":false}'), +(21264, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.667+00', '{"cached":null,"ignore_cache":false}'), +(21265, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.731+00', '{"cached":null,"ignore_cache":false}'), +(21266, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.784+00', '{"cached":null,"ignore_cache":false}'), +(21267, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.822+00', '{"cached":null,"ignore_cache":false}'), +(21268, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.851+00', '{"cached":null,"ignore_cache":false}'), +(21269, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.961+00', '{"cached":null,"ignore_cache":false}'), +(21270, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:57.988+00', '{"cached":null,"ignore_cache":false}'), +(21271, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:58.028+00', '{"cached":null,"ignore_cache":false}'), +(21272, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:58.035+00', '{"cached":null,"ignore_cache":false}'), +(21273, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:58.047+00', '{"cached":null,"ignore_cache":false}'), +(21274, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:58.07+00', '{"cached":null,"ignore_cache":false}'), +(21275, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:58.094+00', '{"cached":null,"ignore_cache":false}'), +(21276, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:58.114+00', '{"cached":null,"ignore_cache":false}'), +(21277, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:57:58.403+00', '{"cached":null,"ignore_cache":false}'), +(21278, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.691+00', '{"cached":null,"ignore_cache":false}'), +(21279, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.706+00', '{"cached":null,"ignore_cache":false}'), +(21280, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.726+00', '{"cached":null,"ignore_cache":false}'), +(21281, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.736+00', '{"cached":null,"ignore_cache":false}'), +(21282, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.739+00', '{"cached":null,"ignore_cache":false}'), +(21283, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.766+00', '{"cached":null,"ignore_cache":false}'), +(21284, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.781+00', '{"cached":null,"ignore_cache":false}'), +(21285, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.828+00', '{"cached":null,"ignore_cache":false}'), +(21286, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.861+00', '{"cached":null,"ignore_cache":false}'), +(21287, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.887+00', '{"cached":null,"ignore_cache":false}'), +(21288, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.919+00', '{"cached":null,"ignore_cache":false}'), +(21289, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.952+00', '{"cached":null,"ignore_cache":false}'), +(21290, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:27.963+00', '{"cached":null,"ignore_cache":false}'), +(21291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:28.002+00', '{"cached":null,"ignore_cache":false}'), +(21292, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:28.023+00', '{"cached":null,"ignore_cache":false}'), +(21293, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 12:58:28.104+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21294, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:21:30.601+00', '{"cached":null,"ignore_cache":null}'), +(21295, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:21:31.43+00', '{"cached":null,"ignore_cache":false}'), +(21296, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:23.657+00', '{"cached":null,"ignore_cache":null}'), +(21297, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.008+00', '{"cached":null,"ignore_cache":false}'), +(21298, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.112+00', '{"cached":null,"ignore_cache":false}'), +(21299, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.299+00', '{"cached":null,"ignore_cache":false}'), +(21300, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.331+00', '{"cached":null,"ignore_cache":false}'), +(21301, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.347+00', '{"cached":null,"ignore_cache":false}'), +(21302, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.369+00', '{"cached":null,"ignore_cache":false}'), +(21303, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:25.39+00', '{"cached":null,"ignore_cache":false}'), +(21304, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:33.556+00', '{"cached":null,"ignore_cache":null}'), +(21305, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:35.776+00', '{"cached":null,"ignore_cache":false}'), +(21306, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:24:44.298+00', '{"cached":null,"ignore_cache":true}'), +(21307, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:17.813+00', '{"cached":null,"ignore_cache":false}'), +(21308, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.15+00', '{"cached":null,"ignore_cache":false}'), +(21309, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.539+00', '{"cached":null,"ignore_cache":false}'), +(21310, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.638+00', '{"cached":null,"ignore_cache":false}'), +(21311, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.943+00', '{"cached":null,"ignore_cache":false}'), +(21312, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:18.944+00', '{"cached":null,"ignore_cache":false}'), +(21313, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.061+00', '{"cached":null,"ignore_cache":false}'), +(21314, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.124+00', '{"cached":null,"ignore_cache":false}'), +(21315, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.215+00', '{"cached":null,"ignore_cache":false}'), +(21316, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.229+00', '{"cached":null,"ignore_cache":false}'), +(21317, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.315+00', '{"cached":null,"ignore_cache":false}'), +(21318, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.486+00', '{"cached":null,"ignore_cache":false}'), +(21319, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.541+00', '{"cached":null,"ignore_cache":false}'), +(21320, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.724+00', '{"cached":null,"ignore_cache":false}'), +(21321, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.753+00', '{"cached":null,"ignore_cache":false}'), +(21322, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.85+00', '{"cached":null,"ignore_cache":false}'), +(21323, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:19.956+00', '{"cached":null,"ignore_cache":false}'), +(21324, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:20.333+00', '{"cached":null,"ignore_cache":false}'), +(21325, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:20.369+00', '{"cached":null,"ignore_cache":false}'), +(21326, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:20.389+00', '{"cached":null,"ignore_cache":false}'), +(21327, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:21.896+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21328, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.515+00', '{"cached":null,"ignore_cache":false}'), +(21329, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.892+00', '{"cached":null,"ignore_cache":false}'), +(21330, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.896+00', '{"cached":null,"ignore_cache":false}'), +(21331, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.9+00', '{"cached":null,"ignore_cache":false}'), +(21332, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.912+00', '{"cached":null,"ignore_cache":false}'), +(21333, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.918+00', '{"cached":null,"ignore_cache":false}'), +(21334, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:48.989+00', '{"cached":null,"ignore_cache":false}'), +(21335, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.024+00', '{"cached":null,"ignore_cache":false}'), +(21336, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.081+00', '{"cached":null,"ignore_cache":false}'), +(21337, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.206+00', '{"cached":null,"ignore_cache":false}'), +(21338, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.224+00', '{"cached":null,"ignore_cache":false}'), +(21339, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.253+00', '{"cached":null,"ignore_cache":false}'), +(21340, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.288+00', '{"cached":null,"ignore_cache":false}'), +(21341, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.34+00', '{"cached":null,"ignore_cache":false}'), +(21342, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.402+00', '{"cached":null,"ignore_cache":false}'), +(21343, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:31:49.533+00', '{"cached":null,"ignore_cache":false}'), +(21344, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.392+00', '{"cached":null,"ignore_cache":false}'), +(21345, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.398+00', '{"cached":null,"ignore_cache":false}'), +(21346, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.473+00', '{"cached":null,"ignore_cache":false}'), +(21347, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.476+00', '{"cached":null,"ignore_cache":false}'), +(21348, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.503+00', '{"cached":null,"ignore_cache":false}'), +(21349, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.718+00', '{"cached":null,"ignore_cache":false}'), +(21350, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.79+00', '{"cached":null,"ignore_cache":false}'), +(21351, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.79+00', '{"cached":null,"ignore_cache":false}'), +(21352, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.906+00', '{"cached":null,"ignore_cache":false}'), +(21353, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.93+00', '{"cached":null,"ignore_cache":false}'), +(21354, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:18.983+00', '{"cached":null,"ignore_cache":false}'), +(21355, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:19.041+00', '{"cached":null,"ignore_cache":false}'), +(21356, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:19.576+00', '{"cached":null,"ignore_cache":false}'), +(21357, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:19.661+00', '{"cached":null,"ignore_cache":false}'), +(21358, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:19.664+00', '{"cached":null,"ignore_cache":false}'), +(21359, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:19.758+00', '{"cached":null,"ignore_cache":false}'), +(21360, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.242+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21361, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.284+00', '{"cached":null,"ignore_cache":false}'), +(21362, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.438+00', '{"cached":null,"ignore_cache":false}'), +(21363, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.443+00', '{"cached":null,"ignore_cache":false}'), +(21364, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.525+00', '{"cached":null,"ignore_cache":false}'), +(21365, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.527+00', '{"cached":null,"ignore_cache":false}'), +(21366, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.586+00', '{"cached":null,"ignore_cache":false}'), +(21367, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.639+00', '{"cached":null,"ignore_cache":false}'), +(21368, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.657+00', '{"cached":null,"ignore_cache":false}'), +(21369, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.712+00', '{"cached":null,"ignore_cache":false}'), +(21370, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.759+00', '{"cached":null,"ignore_cache":false}'), +(21371, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.803+00', '{"cached":null,"ignore_cache":false}'), +(21372, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.815+00', '{"cached":null,"ignore_cache":false}'), +(21373, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.819+00', '{"cached":null,"ignore_cache":false}'), +(21374, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.826+00', '{"cached":null,"ignore_cache":false}'), +(21375, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:32:48.968+00', '{"cached":null,"ignore_cache":false}'), +(21376, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.828+00', '{"cached":null,"ignore_cache":false}'), +(21377, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.895+00', '{"cached":null,"ignore_cache":false}'), +(21378, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:17.97+00', '{"cached":null,"ignore_cache":false}'), +(21379, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.014+00', '{"cached":null,"ignore_cache":false}'), +(21380, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.03+00', '{"cached":null,"ignore_cache":false}'), +(21381, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.066+00', '{"cached":null,"ignore_cache":false}'), +(21382, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.083+00', '{"cached":null,"ignore_cache":false}'), +(21383, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.117+00', '{"cached":null,"ignore_cache":false}'), +(21384, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.123+00', '{"cached":null,"ignore_cache":false}'), +(21385, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.137+00', '{"cached":null,"ignore_cache":false}'), +(21386, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.176+00', '{"cached":null,"ignore_cache":false}'), +(21387, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.192+00', '{"cached":null,"ignore_cache":false}'), +(21388, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.24+00', '{"cached":null,"ignore_cache":false}'), +(21389, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.247+00', '{"cached":null,"ignore_cache":false}'), +(21390, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.268+00', '{"cached":null,"ignore_cache":false}'), +(21391, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:18.277+00', '{"cached":null,"ignore_cache":false}'), +(21392, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.777+00', '{"cached":null,"ignore_cache":false}'), +(21393, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.781+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21394, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.86+00', '{"cached":null,"ignore_cache":false}'), +(21395, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.861+00', '{"cached":null,"ignore_cache":false}'), +(21396, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.879+00', '{"cached":null,"ignore_cache":false}'), +(21397, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.905+00', '{"cached":null,"ignore_cache":false}'), +(21398, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:47.966+00', '{"cached":null,"ignore_cache":false}'), +(21399, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.27+00', '{"cached":null,"ignore_cache":false}'), +(21400, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.45+00', '{"cached":null,"ignore_cache":false}'), +(21401, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.472+00', '{"cached":null,"ignore_cache":false}'), +(21402, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.497+00', '{"cached":null,"ignore_cache":false}'), +(21403, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.537+00', '{"cached":null,"ignore_cache":false}'), +(21404, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.542+00', '{"cached":null,"ignore_cache":false}'), +(21405, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.551+00', '{"cached":null,"ignore_cache":false}'), +(21406, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.575+00', '{"cached":null,"ignore_cache":false}'), +(21407, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:33:48.829+00', '{"cached":null,"ignore_cache":false}'), +(21408, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.14+00', '{"cached":null,"ignore_cache":false}'), +(21409, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.279+00', '{"cached":null,"ignore_cache":false}'), +(21410, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.428+00', '{"cached":null,"ignore_cache":false}'), +(21411, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.471+00', '{"cached":null,"ignore_cache":false}'), +(21412, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.486+00', '{"cached":null,"ignore_cache":false}'), +(21413, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.507+00', '{"cached":null,"ignore_cache":false}'), +(21414, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.78+00', '{"cached":null,"ignore_cache":false}'), +(21415, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.8+00', '{"cached":null,"ignore_cache":false}'), +(21416, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.802+00', '{"cached":null,"ignore_cache":false}'), +(21417, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.908+00', '{"cached":null,"ignore_cache":false}'), +(21418, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.945+00', '{"cached":null,"ignore_cache":false}'), +(21419, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.95+00', '{"cached":null,"ignore_cache":false}'), +(21420, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.963+00', '{"cached":null,"ignore_cache":false}'), +(21421, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.97+00', '{"cached":null,"ignore_cache":false}'), +(21422, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:18.995+00', '{"cached":null,"ignore_cache":false}'), +(21423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:19.002+00', '{"cached":null,"ignore_cache":false}'), +(21424, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.89+00', '{"cached":null,"ignore_cache":false}'), +(21425, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.924+00', '{"cached":null,"ignore_cache":false}'), +(21426, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.926+00', '{"cached":null,"ignore_cache":false}'), +(21427, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.94+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21428, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.954+00', '{"cached":null,"ignore_cache":false}'), +(21429, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:47.974+00', '{"cached":null,"ignore_cache":false}'), +(21430, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.063+00', '{"cached":null,"ignore_cache":false}'), +(21431, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.088+00', '{"cached":null,"ignore_cache":false}'), +(21432, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.125+00', '{"cached":null,"ignore_cache":false}'), +(21433, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.147+00', '{"cached":null,"ignore_cache":false}'), +(21434, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.164+00', '{"cached":null,"ignore_cache":false}'), +(21435, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.212+00', '{"cached":null,"ignore_cache":false}'), +(21436, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.216+00', '{"cached":null,"ignore_cache":false}'), +(21437, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.228+00', '{"cached":null,"ignore_cache":false}'), +(21438, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.242+00', '{"cached":null,"ignore_cache":false}'), +(21439, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:34:48.316+00', '{"cached":null,"ignore_cache":false}'), +(21440, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:17.999+00', '{"cached":null,"ignore_cache":false}'), +(21441, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.141+00', '{"cached":null,"ignore_cache":false}'), +(21442, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.203+00', '{"cached":null,"ignore_cache":false}'), +(21443, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.394+00', '{"cached":null,"ignore_cache":false}'), +(21444, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.423+00', '{"cached":null,"ignore_cache":false}'), +(21445, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.443+00', '{"cached":null,"ignore_cache":false}'), +(21446, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.463+00', '{"cached":null,"ignore_cache":false}'), +(21447, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.503+00', '{"cached":null,"ignore_cache":false}'), +(21448, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.517+00', '{"cached":null,"ignore_cache":false}'), +(21449, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.62+00', '{"cached":null,"ignore_cache":false}'), +(21450, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.639+00', '{"cached":null,"ignore_cache":false}'), +(21451, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.644+00', '{"cached":null,"ignore_cache":false}'), +(21452, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.644+00', '{"cached":null,"ignore_cache":false}'), +(21453, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.688+00', '{"cached":null,"ignore_cache":false}'), +(21454, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.717+00', '{"cached":null,"ignore_cache":false}'), +(21455, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:18.855+00', '{"cached":null,"ignore_cache":false}'), +(21456, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.84+00', '{"cached":null,"ignore_cache":false}'), +(21457, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:47.935+00', '{"cached":null,"ignore_cache":false}'), +(21458, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.062+00', '{"cached":null,"ignore_cache":false}'), +(21459, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.105+00', '{"cached":null,"ignore_cache":false}'), +(21460, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.12+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21461, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.161+00', '{"cached":null,"ignore_cache":false}'), +(21462, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.17+00', '{"cached":null,"ignore_cache":false}'), +(21463, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.236+00', '{"cached":null,"ignore_cache":false}'), +(21464, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.378+00', '{"cached":null,"ignore_cache":false}'), +(21465, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.382+00', '{"cached":null,"ignore_cache":false}'), +(21466, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.41+00', '{"cached":null,"ignore_cache":false}'), +(21467, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.445+00', '{"cached":null,"ignore_cache":false}'), +(21468, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.449+00', '{"cached":null,"ignore_cache":false}'), +(21469, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.45+00', '{"cached":null,"ignore_cache":false}'), +(21470, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.457+00', '{"cached":null,"ignore_cache":false}'), +(21471, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:35:48.462+00', '{"cached":null,"ignore_cache":false}'), +(21472, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:17.923+00', '{"cached":null,"ignore_cache":false}'), +(21473, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.283+00', '{"cached":null,"ignore_cache":false}'), +(21474, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.285+00', '{"cached":null,"ignore_cache":false}'), +(21475, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.285+00', '{"cached":null,"ignore_cache":false}'), +(21476, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.329+00', '{"cached":null,"ignore_cache":false}'), +(21477, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.364+00', '{"cached":null,"ignore_cache":false}'), +(21478, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.386+00', '{"cached":null,"ignore_cache":false}'), +(21479, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.458+00', '{"cached":null,"ignore_cache":false}'), +(21480, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.492+00', '{"cached":null,"ignore_cache":false}'), +(21481, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.502+00', '{"cached":null,"ignore_cache":false}'), +(21482, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.613+00', '{"cached":null,"ignore_cache":false}'), +(21483, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.659+00', '{"cached":null,"ignore_cache":false}'), +(21484, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.675+00', '{"cached":null,"ignore_cache":false}'), +(21485, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.678+00', '{"cached":null,"ignore_cache":false}'), +(21486, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.679+00', '{"cached":null,"ignore_cache":false}'), +(21487, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:18.698+00', '{"cached":null,"ignore_cache":false}'), +(21488, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.165+00', '{"cached":null,"ignore_cache":false}'), +(21489, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.428+00', '{"cached":null,"ignore_cache":false}'), +(21490, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.491+00', '{"cached":null,"ignore_cache":false}'), +(21491, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.622+00', '{"cached":null,"ignore_cache":false}'), +(21492, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.624+00', '{"cached":null,"ignore_cache":false}'), +(21493, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.626+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21494, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.701+00', '{"cached":null,"ignore_cache":false}'), +(21495, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.718+00', '{"cached":null,"ignore_cache":false}'), +(21496, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.749+00', '{"cached":null,"ignore_cache":false}'), +(21497, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.76+00', '{"cached":null,"ignore_cache":false}'), +(21498, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.843+00', '{"cached":null,"ignore_cache":false}'), +(21499, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.865+00', '{"cached":null,"ignore_cache":false}'), +(21500, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.875+00', '{"cached":null,"ignore_cache":false}'), +(21501, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.91+00', '{"cached":null,"ignore_cache":false}'), +(21502, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.925+00', '{"cached":null,"ignore_cache":false}'), +(21503, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:36:48.938+00', '{"cached":null,"ignore_cache":false}'), +(21504, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.676+00', '{"cached":null,"ignore_cache":false}'), +(21505, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.715+00', '{"cached":null,"ignore_cache":false}'), +(21506, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:18.909+00', '{"cached":null,"ignore_cache":false}'), +(21507, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.011+00', '{"cached":null,"ignore_cache":false}'), +(21508, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.022+00', '{"cached":null,"ignore_cache":false}'), +(21509, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.062+00', '{"cached":null,"ignore_cache":false}'), +(21510, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.087+00', '{"cached":null,"ignore_cache":false}'), +(21511, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.103+00', '{"cached":null,"ignore_cache":false}'), +(21512, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.122+00', '{"cached":null,"ignore_cache":false}'), +(21513, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.173+00', '{"cached":null,"ignore_cache":false}'), +(21514, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.273+00', '{"cached":null,"ignore_cache":false}'), +(21515, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.276+00', '{"cached":null,"ignore_cache":false}'), +(21516, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.292+00', '{"cached":null,"ignore_cache":false}'), +(21517, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.294+00', '{"cached":null,"ignore_cache":false}'), +(21518, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.302+00', '{"cached":null,"ignore_cache":false}'), +(21519, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:19.307+00', '{"cached":null,"ignore_cache":false}'), +(21520, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.046+00', '{"cached":null,"ignore_cache":false}'), +(21521, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.224+00', '{"cached":null,"ignore_cache":false}'), +(21522, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.262+00', '{"cached":null,"ignore_cache":false}'), +(21523, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.355+00', '{"cached":null,"ignore_cache":false}'), +(21524, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.374+00', '{"cached":null,"ignore_cache":false}'), +(21525, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.387+00', '{"cached":null,"ignore_cache":false}'), +(21526, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.388+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.403+00', '{"cached":null,"ignore_cache":false}'), +(21528, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.415+00', '{"cached":null,"ignore_cache":false}'), +(21529, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.434+00', '{"cached":null,"ignore_cache":false}'), +(21530, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.442+00', '{"cached":null,"ignore_cache":false}'), +(21531, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.499+00', '{"cached":null,"ignore_cache":false}'), +(21532, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.51+00', '{"cached":null,"ignore_cache":false}'), +(21533, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.541+00', '{"cached":null,"ignore_cache":false}'), +(21534, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.605+00', '{"cached":null,"ignore_cache":false}'), +(21535, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:37:50.61+00', '{"cached":null,"ignore_cache":false}'), +(21536, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.776+00', '{"cached":null,"ignore_cache":false}'), +(21537, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.807+00', '{"cached":null,"ignore_cache":false}'), +(21538, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.884+00', '{"cached":null,"ignore_cache":false}'), +(21539, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.906+00', '{"cached":null,"ignore_cache":false}'), +(21540, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:18.997+00', '{"cached":null,"ignore_cache":false}'), +(21541, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.033+00', '{"cached":null,"ignore_cache":false}'), +(21542, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.053+00', '{"cached":null,"ignore_cache":false}'), +(21543, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.12+00', '{"cached":null,"ignore_cache":false}'), +(21544, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.12+00', '{"cached":null,"ignore_cache":false}'), +(21545, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.158+00', '{"cached":null,"ignore_cache":false}'), +(21546, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.187+00', '{"cached":null,"ignore_cache":false}'), +(21547, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.228+00', '{"cached":null,"ignore_cache":false}'), +(21548, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.251+00', '{"cached":null,"ignore_cache":false}'), +(21549, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.255+00', '{"cached":null,"ignore_cache":false}'), +(21550, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.289+00', '{"cached":null,"ignore_cache":false}'), +(21551, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:19.305+00', '{"cached":null,"ignore_cache":false}'), +(21552, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:49.554+00', '{"cached":null,"ignore_cache":false}'), +(21553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.003+00', '{"cached":null,"ignore_cache":false}'), +(21554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.121+00', '{"cached":null,"ignore_cache":false}'), +(21555, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.231+00', '{"cached":null,"ignore_cache":false}'), +(21556, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.292+00', '{"cached":null,"ignore_cache":false}'), +(21557, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.295+00', '{"cached":null,"ignore_cache":false}'), +(21558, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.297+00', '{"cached":null,"ignore_cache":false}'), +(21559, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.324+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21560, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.371+00', '{"cached":null,"ignore_cache":false}'), +(21561, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.386+00', '{"cached":null,"ignore_cache":false}'), +(21562, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.461+00', '{"cached":null,"ignore_cache":false}'), +(21563, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.463+00', '{"cached":null,"ignore_cache":false}'), +(21564, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.491+00', '{"cached":null,"ignore_cache":false}'), +(21565, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.564+00', '{"cached":null,"ignore_cache":false}'), +(21566, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.622+00', '{"cached":null,"ignore_cache":false}'), +(21567, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:38:50.636+00', '{"cached":null,"ignore_cache":false}'), +(21568, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.302+00', '{"cached":null,"ignore_cache":false}'), +(21569, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.327+00', '{"cached":null,"ignore_cache":false}'), +(21570, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.372+00', '{"cached":null,"ignore_cache":false}'), +(21571, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.405+00', '{"cached":null,"ignore_cache":false}'), +(21572, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.458+00', '{"cached":null,"ignore_cache":false}'), +(21573, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.492+00', '{"cached":null,"ignore_cache":false}'), +(21574, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.578+00', '{"cached":null,"ignore_cache":false}'), +(21575, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.631+00', '{"cached":null,"ignore_cache":false}'), +(21576, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.647+00', '{"cached":null,"ignore_cache":false}'), +(21577, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.772+00', '{"cached":null,"ignore_cache":false}'), +(21578, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.79+00', '{"cached":null,"ignore_cache":false}'), +(21579, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.798+00', '{"cached":null,"ignore_cache":false}'), +(21580, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.815+00', '{"cached":null,"ignore_cache":false}'), +(21581, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.829+00', '{"cached":null,"ignore_cache":false}'), +(21582, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.852+00', '{"cached":null,"ignore_cache":false}'), +(21583, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:19.871+00', '{"cached":null,"ignore_cache":false}'), +(21584, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.057+00', '{"cached":null,"ignore_cache":false}'), +(21585, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.067+00', '{"cached":null,"ignore_cache":false}'), +(21586, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.088+00', '{"cached":null,"ignore_cache":false}'), +(21587, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.132+00', '{"cached":null,"ignore_cache":false}'), +(21588, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.145+00', '{"cached":null,"ignore_cache":false}'), +(21589, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.15+00', '{"cached":null,"ignore_cache":false}'), +(21590, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.169+00', '{"cached":null,"ignore_cache":false}'), +(21591, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.18+00', '{"cached":null,"ignore_cache":false}'), +(21592, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.192+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21593, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.207+00', '{"cached":null,"ignore_cache":false}'), +(21594, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.231+00', '{"cached":null,"ignore_cache":false}'), +(21595, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.236+00', '{"cached":null,"ignore_cache":false}'), +(21596, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.239+00', '{"cached":null,"ignore_cache":false}'), +(21597, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.245+00', '{"cached":null,"ignore_cache":false}'), +(21598, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.251+00', '{"cached":null,"ignore_cache":false}'), +(21599, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:39:50.277+00', '{"cached":null,"ignore_cache":false}'), +(21600, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.57+00', '{"cached":null,"ignore_cache":false}'), +(21601, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.626+00', '{"cached":null,"ignore_cache":false}'), +(21602, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.657+00', '{"cached":null,"ignore_cache":false}'), +(21603, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.696+00', '{"cached":null,"ignore_cache":false}'), +(21604, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.704+00', '{"cached":null,"ignore_cache":false}'), +(21605, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.714+00', '{"cached":null,"ignore_cache":false}'), +(21606, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.722+00', '{"cached":null,"ignore_cache":false}'), +(21607, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.756+00', '{"cached":null,"ignore_cache":false}'), +(21608, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.76+00', '{"cached":null,"ignore_cache":false}'), +(21609, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.838+00', '{"cached":null,"ignore_cache":false}'), +(21610, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.849+00', '{"cached":null,"ignore_cache":false}'), +(21611, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.868+00', '{"cached":null,"ignore_cache":false}'), +(21612, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.87+00', '{"cached":null,"ignore_cache":false}'), +(21613, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.893+00', '{"cached":null,"ignore_cache":false}'), +(21614, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.918+00', '{"cached":null,"ignore_cache":false}'), +(21615, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:19.922+00', '{"cached":null,"ignore_cache":false}'), +(21616, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.361+00', '{"cached":null,"ignore_cache":false}'), +(21617, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.497+00', '{"cached":null,"ignore_cache":false}'), +(21618, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.505+00', '{"cached":null,"ignore_cache":false}'), +(21619, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.552+00', '{"cached":null,"ignore_cache":false}'), +(21620, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.572+00', '{"cached":null,"ignore_cache":false}'), +(21621, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.64+00', '{"cached":null,"ignore_cache":false}'), +(21622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.674+00', '{"cached":null,"ignore_cache":false}'), +(21623, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.683+00', '{"cached":null,"ignore_cache":false}'), +(21624, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.735+00', '{"cached":null,"ignore_cache":false}'), +(21625, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.762+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21626, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.787+00', '{"cached":null,"ignore_cache":false}'), +(21627, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.793+00', '{"cached":null,"ignore_cache":false}'), +(21628, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.829+00', '{"cached":null,"ignore_cache":false}'), +(21629, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.863+00', '{"cached":null,"ignore_cache":false}'), +(21630, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.873+00', '{"cached":null,"ignore_cache":false}'), +(21631, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:40:49.881+00', '{"cached":null,"ignore_cache":false}'), +(21632, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.699+00', '{"cached":null,"ignore_cache":false}'), +(21633, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.822+00', '{"cached":null,"ignore_cache":false}'), +(21634, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.888+00', '{"cached":null,"ignore_cache":false}'), +(21635, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.967+00', '{"cached":null,"ignore_cache":false}'), +(21636, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:19.999+00', '{"cached":null,"ignore_cache":false}'), +(21637, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.073+00', '{"cached":null,"ignore_cache":false}'), +(21638, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.109+00', '{"cached":null,"ignore_cache":false}'), +(21639, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.202+00', '{"cached":null,"ignore_cache":false}'), +(21640, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.214+00', '{"cached":null,"ignore_cache":false}'), +(21641, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.217+00', '{"cached":null,"ignore_cache":false}'), +(21642, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.235+00', '{"cached":null,"ignore_cache":false}'), +(21643, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.252+00', '{"cached":null,"ignore_cache":false}'), +(21644, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.253+00', '{"cached":null,"ignore_cache":false}'), +(21645, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.276+00', '{"cached":null,"ignore_cache":false}'), +(21646, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.282+00', '{"cached":null,"ignore_cache":false}'), +(21647, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:20.29+00', '{"cached":null,"ignore_cache":false}'), +(21648, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:42.168+00', '{"cached":null,"ignore_cache":null}'), +(21649, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.194+00', '{"cached":null,"ignore_cache":false}'), +(21650, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.21+00', '{"cached":null,"ignore_cache":false}'), +(21651, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.23+00', '{"cached":null,"ignore_cache":false}'), +(21652, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.258+00', '{"cached":null,"ignore_cache":false}'), +(21653, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.355+00', '{"cached":null,"ignore_cache":false}'), +(21654, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.468+00', '{"cached":null,"ignore_cache":false}'), +(21655, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.634+00', '{"cached":null,"ignore_cache":false}'), +(21656, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.716+00', '{"cached":null,"ignore_cache":false}'), +(21657, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:43.956+00', '{"cached":null,"ignore_cache":false}'), +(21658, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:47.337+00', '{"cached":null,"ignore_cache":null}'), +(21659, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.658+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21660, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.725+00', '{"cached":null,"ignore_cache":false}'), +(21661, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.74+00', '{"cached":null,"ignore_cache":false}'), +(21662, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.76+00', '{"cached":null,"ignore_cache":false}'), +(21663, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.796+00', '{"cached":null,"ignore_cache":false}'), +(21664, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:48.8+00', '{"cached":null,"ignore_cache":false}'), +(21665, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.129+00', '{"cached":null,"ignore_cache":false}'), +(21666, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.852+00', '{"cached":null,"ignore_cache":false}'), +(21667, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.9+00', '{"cached":null,"ignore_cache":false}'), +(21668, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.906+00', '{"cached":null,"ignore_cache":false}'), +(21669, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.913+00', '{"cached":null,"ignore_cache":false}'), +(21670, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:49.98+00', '{"cached":null,"ignore_cache":false}'), +(21671, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.027+00', '{"cached":null,"ignore_cache":false}'), +(21672, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.045+00', '{"cached":null,"ignore_cache":false}'), +(21673, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.046+00', '{"cached":null,"ignore_cache":false}'), +(21674, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.047+00', '{"cached":null,"ignore_cache":false}'), +(21675, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.062+00', '{"cached":null,"ignore_cache":false}'), +(21676, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.072+00', '{"cached":null,"ignore_cache":false}'), +(21677, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.092+00', '{"cached":null,"ignore_cache":false}'), +(21678, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.096+00', '{"cached":null,"ignore_cache":false}'), +(21679, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.103+00', '{"cached":null,"ignore_cache":false}'), +(21680, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.139+00', '{"cached":null,"ignore_cache":false}'), +(21681, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:50.174+00', '{"cached":null,"ignore_cache":false}'), +(21682, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.939+00', '{"cached":null,"ignore_cache":false}'), +(21683, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.949+00', '{"cached":null,"ignore_cache":false}'), +(21684, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.952+00', '{"cached":null,"ignore_cache":false}'), +(21685, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:54.98+00', '{"cached":null,"ignore_cache":false}'), +(21686, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:55.041+00', '{"cached":null,"ignore_cache":false}'), +(21687, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:55.061+00', '{"cached":null,"ignore_cache":false}'), +(21688, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:41:56.479+00', '{"cached":null,"ignore_cache":false}'), +(21689, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.03+00', '{"cached":null,"ignore_cache":false}'), +(21690, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.052+00', '{"cached":null,"ignore_cache":false}'), +(21691, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.098+00', '{"cached":null,"ignore_cache":false}'), +(21692, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.119+00', '{"cached":null,"ignore_cache":false}'), +(21693, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.151+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21694, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.156+00', '{"cached":null,"ignore_cache":false}'), +(21695, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:03.184+00', '{"cached":null,"ignore_cache":false}'), +(21696, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.235+00', '{"cached":null,"ignore_cache":false}'), +(21697, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.24+00', '{"cached":null,"ignore_cache":false}'), +(21698, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.254+00', '{"cached":null,"ignore_cache":false}'), +(21699, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.308+00', '{"cached":null,"ignore_cache":false}'), +(21700, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.358+00', '{"cached":null,"ignore_cache":false}'), +(21701, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.375+00', '{"cached":null,"ignore_cache":false}'), +(21702, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:07.463+00', '{"cached":null,"ignore_cache":false}'), +(21703, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:14.087+00', '{"cached":null,"ignore_cache":null}'), +(21704, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:14.956+00', '{"cached":null,"ignore_cache":null}'), +(21705, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:15.728+00', '{"cached":null,"ignore_cache":false}'), +(21706, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.76+00', '{"cached":null,"ignore_cache":false}'), +(21707, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.78+00', '{"cached":null,"ignore_cache":false}'), +(21708, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.86+00', '{"cached":null,"ignore_cache":false}'), +(21709, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.864+00', '{"cached":null,"ignore_cache":false}'), +(21710, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.866+00', '{"cached":null,"ignore_cache":false}'), +(21711, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.868+00', '{"cached":null,"ignore_cache":false}'), +(21712, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.898+00', '{"cached":null,"ignore_cache":false}'), +(21713, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.923+00', '{"cached":null,"ignore_cache":false}'), +(21714, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.93+00', '{"cached":null,"ignore_cache":false}'), +(21715, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.959+00', '{"cached":null,"ignore_cache":false}'), +(21716, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.991+00', '{"cached":null,"ignore_cache":false}'), +(21717, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:19.992+00', '{"cached":null,"ignore_cache":false}'), +(21718, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:20.021+00', '{"cached":null,"ignore_cache":false}'), +(21719, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:20.038+00', '{"cached":null,"ignore_cache":false}'), +(21720, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:20.062+00', '{"cached":null,"ignore_cache":false}'), +(21721, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:20.07+00', '{"cached":null,"ignore_cache":false}'), +(21722, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.93+00', '{"cached":null,"ignore_cache":false}'), +(21723, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:48.972+00', '{"cached":null,"ignore_cache":false}'), +(21724, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.011+00', '{"cached":null,"ignore_cache":false}'), +(21725, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.015+00', '{"cached":null,"ignore_cache":false}'), +(21726, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.105+00', '{"cached":null,"ignore_cache":false}'), +(21727, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.122+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21728, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.125+00', '{"cached":null,"ignore_cache":false}'), +(21729, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.134+00', '{"cached":null,"ignore_cache":false}'), +(21730, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.155+00', '{"cached":null,"ignore_cache":false}'), +(21731, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.203+00', '{"cached":null,"ignore_cache":false}'), +(21732, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.219+00', '{"cached":null,"ignore_cache":false}'), +(21733, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.283+00', '{"cached":null,"ignore_cache":false}'), +(21734, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.286+00', '{"cached":null,"ignore_cache":false}'), +(21735, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.291+00', '{"cached":null,"ignore_cache":false}'), +(21736, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.294+00', '{"cached":null,"ignore_cache":false}'), +(21737, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:42:49.313+00', '{"cached":null,"ignore_cache":false}'), +(21738, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.933+00', '{"cached":null,"ignore_cache":false}'), +(21739, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.969+00', '{"cached":null,"ignore_cache":false}'), +(21740, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.976+00', '{"cached":null,"ignore_cache":false}'), +(21741, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.984+00', '{"cached":null,"ignore_cache":false}'), +(21742, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:18.99+00', '{"cached":null,"ignore_cache":false}'), +(21743, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.013+00', '{"cached":null,"ignore_cache":false}'), +(21744, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.058+00', '{"cached":null,"ignore_cache":false}'), +(21745, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.138+00', '{"cached":null,"ignore_cache":false}'), +(21746, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.176+00', '{"cached":null,"ignore_cache":false}'), +(21747, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.189+00', '{"cached":null,"ignore_cache":false}'), +(21748, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.201+00', '{"cached":null,"ignore_cache":false}'), +(21749, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.214+00', '{"cached":null,"ignore_cache":false}'), +(21750, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.223+00', '{"cached":null,"ignore_cache":false}'), +(21751, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.252+00', '{"cached":null,"ignore_cache":false}'), +(21752, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.258+00', '{"cached":null,"ignore_cache":false}'), +(21753, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:19.269+00', '{"cached":null,"ignore_cache":false}'), +(21754, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.712+00', '{"cached":null,"ignore_cache":false}'), +(21755, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.797+00', '{"cached":null,"ignore_cache":false}'), +(21756, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.828+00', '{"cached":null,"ignore_cache":false}'), +(21757, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.845+00', '{"cached":null,"ignore_cache":false}'), +(21758, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.86+00', '{"cached":null,"ignore_cache":false}'), +(21759, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.925+00', '{"cached":null,"ignore_cache":false}'), +(21760, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.947+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21761, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:49.986+00', '{"cached":null,"ignore_cache":false}'), +(21762, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.065+00', '{"cached":null,"ignore_cache":false}'), +(21763, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.143+00', '{"cached":null,"ignore_cache":false}'), +(21764, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.148+00', '{"cached":null,"ignore_cache":false}'), +(21765, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.25+00', '{"cached":null,"ignore_cache":false}'), +(21766, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.267+00', '{"cached":null,"ignore_cache":false}'), +(21767, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.279+00', '{"cached":null,"ignore_cache":false}'), +(21768, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.304+00', '{"cached":null,"ignore_cache":false}'), +(21769, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:43:50.309+00', '{"cached":null,"ignore_cache":false}'), +(21770, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.142+00', '{"cached":null,"ignore_cache":false}'), +(21771, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.277+00', '{"cached":null,"ignore_cache":false}'), +(21772, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.401+00', '{"cached":null,"ignore_cache":false}'), +(21773, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.43+00', '{"cached":null,"ignore_cache":false}'), +(21774, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.444+00', '{"cached":null,"ignore_cache":false}'), +(21775, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.451+00', '{"cached":null,"ignore_cache":false}'), +(21776, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.464+00', '{"cached":null,"ignore_cache":false}'), +(21777, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.488+00', '{"cached":null,"ignore_cache":false}'), +(21778, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.49+00', '{"cached":null,"ignore_cache":false}'), +(21779, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.555+00', '{"cached":null,"ignore_cache":false}'), +(21780, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.565+00', '{"cached":null,"ignore_cache":false}'), +(21781, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.573+00', '{"cached":null,"ignore_cache":false}'), +(21782, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.595+00', '{"cached":null,"ignore_cache":false}'), +(21783, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.614+00', '{"cached":null,"ignore_cache":false}'), +(21784, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.62+00', '{"cached":null,"ignore_cache":false}'), +(21785, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:19.631+00', '{"cached":null,"ignore_cache":false}'), +(21786, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.63+00', '{"cached":null,"ignore_cache":false}'), +(21787, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.687+00', '{"cached":null,"ignore_cache":false}'), +(21788, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.749+00', '{"cached":null,"ignore_cache":false}'), +(21789, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.762+00', '{"cached":null,"ignore_cache":false}'), +(21790, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.827+00', '{"cached":null,"ignore_cache":false}'), +(21791, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.846+00', '{"cached":null,"ignore_cache":false}'), +(21792, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.859+00', '{"cached":null,"ignore_cache":false}'), +(21793, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.872+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21794, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.892+00', '{"cached":null,"ignore_cache":false}'), +(21795, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.917+00', '{"cached":null,"ignore_cache":false}'), +(21796, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.93+00', '{"cached":null,"ignore_cache":false}'), +(21797, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.937+00', '{"cached":null,"ignore_cache":false}'), +(21798, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.938+00', '{"cached":null,"ignore_cache":false}'), +(21799, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.944+00', '{"cached":null,"ignore_cache":false}'), +(21800, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.95+00', '{"cached":null,"ignore_cache":false}'), +(21801, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:44:49.959+00', '{"cached":null,"ignore_cache":false}'), +(21802, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.773+00', '{"cached":null,"ignore_cache":false}'), +(21803, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.791+00', '{"cached":null,"ignore_cache":false}'), +(21804, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.802+00', '{"cached":null,"ignore_cache":false}'), +(21805, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.817+00', '{"cached":null,"ignore_cache":false}'), +(21806, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.823+00', '{"cached":null,"ignore_cache":false}'), +(21807, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.827+00', '{"cached":null,"ignore_cache":false}'), +(21808, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.847+00', '{"cached":null,"ignore_cache":false}'), +(21809, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.858+00', '{"cached":null,"ignore_cache":false}'), +(21810, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.859+00', '{"cached":null,"ignore_cache":false}'), +(21811, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.874+00', '{"cached":null,"ignore_cache":false}'), +(21812, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.884+00', '{"cached":null,"ignore_cache":false}'), +(21813, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.892+00', '{"cached":null,"ignore_cache":false}'), +(21814, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.908+00', '{"cached":null,"ignore_cache":false}'), +(21815, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.921+00', '{"cached":null,"ignore_cache":false}'), +(21816, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.925+00', '{"cached":null,"ignore_cache":false}'), +(21817, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:18.93+00', '{"cached":null,"ignore_cache":false}'), +(21818, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.221+00', '{"cached":null,"ignore_cache":false}'), +(21819, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.543+00', '{"cached":null,"ignore_cache":false}'), +(21820, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.597+00', '{"cached":null,"ignore_cache":false}'), +(21821, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.641+00', '{"cached":null,"ignore_cache":false}'), +(21822, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.641+00', '{"cached":null,"ignore_cache":false}'), +(21823, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.66+00', '{"cached":null,"ignore_cache":false}'), +(21824, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.75+00', '{"cached":null,"ignore_cache":false}'), +(21825, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.787+00', '{"cached":null,"ignore_cache":false}'), +(21826, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.79+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21827, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.814+00', '{"cached":null,"ignore_cache":false}'), +(21828, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:49.84+00', '{"cached":null,"ignore_cache":false}'), +(21829, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:50.101+00', '{"cached":null,"ignore_cache":false}'), +(21830, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:50.156+00', '{"cached":null,"ignore_cache":false}'), +(21831, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:50.237+00', '{"cached":null,"ignore_cache":false}'), +(21832, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:50.257+00', '{"cached":null,"ignore_cache":false}'), +(21833, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:50.283+00', '{"cached":null,"ignore_cache":false}'), +(21834, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:58.01+00', '{"cached":null,"ignore_cache":null}'), +(21835, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:58.74+00', '{"cached":null,"ignore_cache":false}'), +(21836, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:59.033+00', '{"cached":null,"ignore_cache":false}'), +(21837, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:59.048+00', '{"cached":null,"ignore_cache":false}'), +(21838, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:59.078+00', '{"cached":null,"ignore_cache":false}'), +(21839, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:59.144+00', '{"cached":null,"ignore_cache":false}'), +(21840, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:59.21+00', '{"cached":null,"ignore_cache":false}'), +(21841, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:00.248+00', '{"cached":null,"ignore_cache":false}'), +(21842, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:03.431+00', '{"cached":null,"ignore_cache":null}'), +(21843, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.365+00', '{"cached":null,"ignore_cache":false}'), +(21844, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.938+00', '{"cached":null,"ignore_cache":false}'), +(21845, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:19.977+00', '{"cached":null,"ignore_cache":false}'), +(21846, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.035+00', '{"cached":null,"ignore_cache":false}'), +(21847, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.055+00', '{"cached":null,"ignore_cache":false}'), +(21848, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.206+00', '{"cached":null,"ignore_cache":false}'), +(21849, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.49+00', '{"cached":null,"ignore_cache":false}'), +(21850, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.666+00', '{"cached":null,"ignore_cache":false}'), +(21851, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.691+00', '{"cached":null,"ignore_cache":false}'), +(21852, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.704+00', '{"cached":null,"ignore_cache":false}'), +(21853, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.726+00', '{"cached":null,"ignore_cache":false}'), +(21854, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.731+00', '{"cached":null,"ignore_cache":false}'), +(21855, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.75+00', '{"cached":null,"ignore_cache":false}'), +(21856, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.781+00', '{"cached":null,"ignore_cache":false}'), +(21857, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:20.875+00', '{"cached":null,"ignore_cache":false}'), +(21858, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:21.085+00', '{"cached":null,"ignore_cache":true}'), +(21859, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:22.345+00', '{"cached":null,"ignore_cache":false}'), +(21860, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.62+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21861, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.692+00', '{"cached":null,"ignore_cache":false}'), +(21862, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.836+00', '{"cached":null,"ignore_cache":false}'), +(21863, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.856+00', '{"cached":null,"ignore_cache":false}'), +(21864, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.87+00', '{"cached":null,"ignore_cache":false}'), +(21865, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.951+00', '{"cached":null,"ignore_cache":false}'), +(21866, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:49.989+00', '{"cached":null,"ignore_cache":false}'), +(21867, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.02+00', '{"cached":null,"ignore_cache":false}'), +(21868, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.09+00', '{"cached":null,"ignore_cache":false}'), +(21869, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.105+00', '{"cached":null,"ignore_cache":false}'), +(21870, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.122+00', '{"cached":null,"ignore_cache":false}'), +(21871, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.146+00', '{"cached":null,"ignore_cache":false}'), +(21872, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.149+00', '{"cached":null,"ignore_cache":false}'), +(21873, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.152+00', '{"cached":null,"ignore_cache":false}'), +(21874, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:50.158+00', '{"cached":null,"ignore_cache":false}'), +(21875, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:52+00', '{"cached":null,"ignore_cache":false}'), +(21876, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:54.855+00', '{"cached":null,"ignore_cache":null}'), +(21877, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.842+00', '{"cached":null,"ignore_cache":false}'), +(21878, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.848+00', '{"cached":null,"ignore_cache":false}'), +(21879, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.861+00', '{"cached":null,"ignore_cache":false}'), +(21880, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.873+00', '{"cached":null,"ignore_cache":false}'), +(21881, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.883+00', '{"cached":null,"ignore_cache":false}'), +(21882, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:55.884+00', '{"cached":null,"ignore_cache":false}'), +(21883, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:46:57.222+00', '{"cached":null,"ignore_cache":false}'), +(21884, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:01.395+00', '{"cached":null,"ignore_cache":null}'), +(21885, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.575+00', '{"cached":null,"ignore_cache":false}'), +(21886, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.661+00', '{"cached":null,"ignore_cache":false}'), +(21887, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.739+00', '{"cached":null,"ignore_cache":false}'), +(21888, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.762+00', '{"cached":null,"ignore_cache":false}'), +(21889, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.778+00', '{"cached":null,"ignore_cache":false}'), +(21890, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.8+00', '{"cached":null,"ignore_cache":false}'), +(21891, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.824+00', '{"cached":null,"ignore_cache":false}'), +(21892, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.829+00', '{"cached":null,"ignore_cache":false}'), +(21893, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.885+00', '{"cached":null,"ignore_cache":false}'), +(21894, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.888+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21895, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:19.907+00', '{"cached":null,"ignore_cache":false}'), +(21896, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:20.013+00', '{"cached":null,"ignore_cache":false}'), +(21897, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:20.02+00', '{"cached":null,"ignore_cache":false}'), +(21898, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:20.03+00', '{"cached":null,"ignore_cache":false}'), +(21899, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:20.046+00', '{"cached":null,"ignore_cache":false}'), +(21900, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:21.386+00', '{"cached":null,"ignore_cache":false}'), +(21901, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:49.73+00', '{"cached":null,"ignore_cache":false}'), +(21902, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.058+00', '{"cached":null,"ignore_cache":false}'), +(21903, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.157+00', '{"cached":null,"ignore_cache":false}'), +(21904, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.176+00', '{"cached":null,"ignore_cache":false}'), +(21905, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.199+00', '{"cached":null,"ignore_cache":false}'), +(21906, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.239+00', '{"cached":null,"ignore_cache":false}'), +(21907, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.304+00', '{"cached":null,"ignore_cache":false}'), +(21908, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.357+00', '{"cached":null,"ignore_cache":false}'), +(21909, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.361+00', '{"cached":null,"ignore_cache":false}'), +(21910, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.392+00', '{"cached":null,"ignore_cache":false}'), +(21911, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.407+00', '{"cached":null,"ignore_cache":false}'), +(21912, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.492+00', '{"cached":null,"ignore_cache":false}'), +(21913, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.507+00', '{"cached":null,"ignore_cache":false}'), +(21914, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.516+00', '{"cached":null,"ignore_cache":false}'), +(21915, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:50.525+00', '{"cached":null,"ignore_cache":false}'), +(21916, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:47:51.757+00', '{"cached":null,"ignore_cache":false}'), +(21917, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.875+00', '{"cached":null,"ignore_cache":false}'), +(21918, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.952+00', '{"cached":null,"ignore_cache":false}'), +(21919, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:18.969+00', '{"cached":null,"ignore_cache":false}'), +(21920, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.018+00', '{"cached":null,"ignore_cache":false}'), +(21921, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.045+00', '{"cached":null,"ignore_cache":false}'), +(21922, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.1+00', '{"cached":null,"ignore_cache":false}'), +(21923, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.118+00', '{"cached":null,"ignore_cache":false}'), +(21924, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.121+00', '{"cached":null,"ignore_cache":false}'), +(21925, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.13+00', '{"cached":null,"ignore_cache":false}'), +(21926, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.131+00', '{"cached":null,"ignore_cache":false}'), +(21927, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.135+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21928, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.145+00', '{"cached":null,"ignore_cache":false}'), +(21929, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.153+00', '{"cached":null,"ignore_cache":false}'), +(21930, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.154+00', '{"cached":null,"ignore_cache":false}'), +(21931, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:19.166+00', '{"cached":null,"ignore_cache":false}'), +(21932, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:20.236+00', '{"cached":null,"ignore_cache":false}'), +(21933, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.379+00', '{"cached":null,"ignore_cache":false}'), +(21934, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.397+00', '{"cached":null,"ignore_cache":false}'), +(21935, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.4+00', '{"cached":null,"ignore_cache":false}'), +(21936, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.502+00', '{"cached":null,"ignore_cache":false}'), +(21937, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.551+00', '{"cached":null,"ignore_cache":false}'), +(21938, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.682+00', '{"cached":null,"ignore_cache":false}'), +(21939, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.69+00', '{"cached":null,"ignore_cache":false}'), +(21940, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.768+00', '{"cached":null,"ignore_cache":false}'), +(21941, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.883+00', '{"cached":null,"ignore_cache":false}'), +(21942, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.898+00', '{"cached":null,"ignore_cache":false}'), +(21943, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.918+00', '{"cached":null,"ignore_cache":false}'), +(21944, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:49.971+00', '{"cached":null,"ignore_cache":false}'), +(21945, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:50.026+00', '{"cached":null,"ignore_cache":false}'), +(21946, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:50.078+00', '{"cached":null,"ignore_cache":false}'), +(21947, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:50.125+00', '{"cached":null,"ignore_cache":false}'), +(21948, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:48:51.628+00', '{"cached":null,"ignore_cache":false}'), +(21949, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.174+00', '{"cached":null,"ignore_cache":false}'), +(21950, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.209+00', '{"cached":null,"ignore_cache":false}'), +(21951, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.286+00', '{"cached":null,"ignore_cache":false}'), +(21952, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.331+00', '{"cached":null,"ignore_cache":false}'), +(21953, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.378+00', '{"cached":null,"ignore_cache":false}'), +(21954, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.399+00', '{"cached":null,"ignore_cache":false}'), +(21955, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.406+00', '{"cached":null,"ignore_cache":false}'), +(21956, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.437+00', '{"cached":null,"ignore_cache":false}'), +(21957, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.448+00', '{"cached":null,"ignore_cache":false}'), +(21958, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.449+00', '{"cached":null,"ignore_cache":false}'), +(21959, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.449+00', '{"cached":null,"ignore_cache":false}'), +(21960, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.475+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21961, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.484+00', '{"cached":null,"ignore_cache":false}'), +(21962, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.497+00', '{"cached":null,"ignore_cache":false}'), +(21963, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:19.524+00', '{"cached":null,"ignore_cache":false}'), +(21964, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:20.608+00', '{"cached":null,"ignore_cache":false}'), +(21965, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.48+00', '{"cached":null,"ignore_cache":false}'), +(21966, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.482+00', '{"cached":null,"ignore_cache":false}'), +(21967, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.569+00', '{"cached":null,"ignore_cache":false}'), +(21968, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.613+00', '{"cached":null,"ignore_cache":false}'), +(21969, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.622+00', '{"cached":null,"ignore_cache":false}'), +(21970, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.629+00', '{"cached":null,"ignore_cache":false}'), +(21971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.668+00', '{"cached":null,"ignore_cache":false}'), +(21972, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.69+00', '{"cached":null,"ignore_cache":false}'), +(21973, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.704+00', '{"cached":null,"ignore_cache":false}'), +(21974, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.724+00', '{"cached":null,"ignore_cache":false}'), +(21975, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.743+00', '{"cached":null,"ignore_cache":false}'), +(21976, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.747+00', '{"cached":null,"ignore_cache":false}'), +(21977, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.754+00', '{"cached":null,"ignore_cache":false}'), +(21978, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.77+00', '{"cached":null,"ignore_cache":false}'), +(21979, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:49.776+00', '{"cached":null,"ignore_cache":false}'), +(21980, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:49:50.823+00', '{"cached":null,"ignore_cache":false}'), +(21981, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.217+00', '{"cached":null,"ignore_cache":false}'), +(21982, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.367+00', '{"cached":null,"ignore_cache":false}'), +(21983, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.438+00', '{"cached":null,"ignore_cache":false}'), +(21984, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.491+00', '{"cached":null,"ignore_cache":false}'), +(21985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.496+00', '{"cached":null,"ignore_cache":false}'), +(21986, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.531+00', '{"cached":null,"ignore_cache":false}'), +(21987, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.545+00', '{"cached":null,"ignore_cache":false}'), +(21988, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.549+00', '{"cached":null,"ignore_cache":false}'), +(21989, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.585+00', '{"cached":null,"ignore_cache":false}'), +(21990, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.596+00', '{"cached":null,"ignore_cache":false}'), +(21991, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.657+00', '{"cached":null,"ignore_cache":false}'), +(21992, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.675+00', '{"cached":null,"ignore_cache":false}'), +(21993, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.69+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(21994, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.697+00', '{"cached":null,"ignore_cache":false}'), +(21995, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.721+00', '{"cached":null,"ignore_cache":false}'), +(21996, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:19.744+00', '{"cached":null,"ignore_cache":false}'), +(21997, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:20.994+00', '{"cached":null,"ignore_cache":false}'), +(21998, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:39.936+00', '{"cached":null,"ignore_cache":null}'), +(21999, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.37+00', '{"cached":null,"ignore_cache":false}'), +(22000, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.371+00', '{"cached":null,"ignore_cache":false}'), +(22001, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.378+00', '{"cached":null,"ignore_cache":false}'), +(22002, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.403+00', '{"cached":null,"ignore_cache":false}'), +(22003, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.409+00', '{"cached":null,"ignore_cache":false}'), +(22004, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.45+00', '{"cached":null,"ignore_cache":false}'), +(22005, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:40.558+00', '{"cached":null,"ignore_cache":false}'), +(22006, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.6+00', '{"cached":null,"ignore_cache":false}'), +(22007, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.618+00', '{"cached":null,"ignore_cache":false}'), +(22008, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.629+00', '{"cached":null,"ignore_cache":false}'), +(22009, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.679+00', '{"cached":null,"ignore_cache":false}'), +(22010, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.722+00', '{"cached":null,"ignore_cache":false}'), +(22011, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:44.737+00', '{"cached":null,"ignore_cache":false}'), +(22012, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:46.378+00', '{"cached":null,"ignore_cache":false}'), +(22013, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.537+00', '{"cached":null,"ignore_cache":false}'), +(22014, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.62+00', '{"cached":null,"ignore_cache":false}'), +(22015, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.653+00', '{"cached":null,"ignore_cache":false}'), +(22016, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.691+00', '{"cached":null,"ignore_cache":false}'), +(22017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.736+00', '{"cached":null,"ignore_cache":false}'), +(22018, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.744+00', '{"cached":null,"ignore_cache":false}'), +(22019, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.798+00', '{"cached":null,"ignore_cache":false}'), +(22020, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.848+00', '{"cached":null,"ignore_cache":false}'), +(22021, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.864+00', '{"cached":null,"ignore_cache":false}'), +(22022, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.881+00', '{"cached":null,"ignore_cache":false}'), +(22023, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.921+00', '{"cached":null,"ignore_cache":false}'), +(22024, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.923+00', '{"cached":null,"ignore_cache":false}'), +(22025, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.944+00', '{"cached":null,"ignore_cache":false}'), +(22026, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.962+00', '{"cached":null,"ignore_cache":false}'), +(22027, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.965+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22028, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.978+00', '{"cached":null,"ignore_cache":false}'), +(22029, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:49.99+00', '{"cached":null,"ignore_cache":false}'), +(22030, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:50.031+00', '{"cached":null,"ignore_cache":false}'), +(22031, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:50.047+00', '{"cached":null,"ignore_cache":false}'), +(22032, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:50.058+00', '{"cached":null,"ignore_cache":false}'), +(22033, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:50.066+00', '{"cached":null,"ignore_cache":false}'), +(22034, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:50.068+00', '{"cached":null,"ignore_cache":false}'), +(22035, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:50.137+00', '{"cached":null,"ignore_cache":false}'), +(22036, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.205+00', '{"cached":null,"ignore_cache":false}'), +(22037, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.269+00', '{"cached":null,"ignore_cache":false}'), +(22038, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.31+00', '{"cached":null,"ignore_cache":false}'), +(22039, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.317+00', '{"cached":null,"ignore_cache":false}'), +(22040, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.326+00', '{"cached":null,"ignore_cache":false}'), +(22041, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.353+00', '{"cached":null,"ignore_cache":false}'), +(22042, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:52.469+00', '{"cached":null,"ignore_cache":false}'), +(22043, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.718+00', '{"cached":null,"ignore_cache":false}'), +(22044, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.813+00', '{"cached":null,"ignore_cache":false}'), +(22045, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.839+00', '{"cached":null,"ignore_cache":false}'), +(22046, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.871+00', '{"cached":null,"ignore_cache":false}'), +(22047, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.872+00', '{"cached":null,"ignore_cache":false}'), +(22048, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.903+00', '{"cached":null,"ignore_cache":false}'), +(22049, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:19.954+00', '{"cached":null,"ignore_cache":false}'), +(22050, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.04+00', '{"cached":null,"ignore_cache":false}'), +(22051, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.102+00', '{"cached":null,"ignore_cache":false}'), +(22052, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.122+00', '{"cached":null,"ignore_cache":false}'), +(22053, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.136+00', '{"cached":null,"ignore_cache":false}'), +(22054, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.142+00', '{"cached":null,"ignore_cache":false}'), +(22055, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.203+00', '{"cached":null,"ignore_cache":false}'), +(22056, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.219+00', '{"cached":null,"ignore_cache":false}'), +(22057, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.222+00', '{"cached":null,"ignore_cache":false}'), +(22058, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:20.251+00', '{"cached":null,"ignore_cache":false}'), +(22059, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:25.248+00', '{"cached":null,"ignore_cache":null}'), +(22060, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:27.241+00', '{"cached":null,"ignore_cache":null}'), +(22061, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:27.814+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22062, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.736+00', '{"cached":null,"ignore_cache":false}'), +(22063, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.784+00', '{"cached":null,"ignore_cache":false}'), +(22064, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.812+00', '{"cached":null,"ignore_cache":false}'), +(22065, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.87+00', '{"cached":null,"ignore_cache":false}'), +(22066, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.985+00', '{"cached":null,"ignore_cache":false}'), +(22067, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.99+00', '{"cached":null,"ignore_cache":false}'), +(22068, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:49.99+00', '{"cached":null,"ignore_cache":false}'), +(22069, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.087+00', '{"cached":null,"ignore_cache":false}'), +(22070, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.102+00', '{"cached":null,"ignore_cache":false}'), +(22071, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.105+00', '{"cached":null,"ignore_cache":false}'), +(22072, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.126+00', '{"cached":null,"ignore_cache":false}'), +(22073, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.162+00', '{"cached":null,"ignore_cache":false}'), +(22074, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.274+00', '{"cached":null,"ignore_cache":false}'), +(22075, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.291+00', '{"cached":null,"ignore_cache":false}'), +(22076, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.336+00', '{"cached":null,"ignore_cache":false}'), +(22077, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:51:50.341+00', '{"cached":null,"ignore_cache":false}'), +(22078, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:02.476+00', '{"cached":null,"ignore_cache":false}'), +(22079, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:13.035+00', '{"cached":null,"ignore_cache":false}'), +(22080, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.019+00', '{"cached":null,"ignore_cache":false}'), +(22081, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.028+00', '{"cached":null,"ignore_cache":false}'), +(22082, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.075+00', '{"cached":null,"ignore_cache":false}'), +(22083, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.081+00', '{"cached":null,"ignore_cache":false}'), +(22084, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.095+00', '{"cached":null,"ignore_cache":false}'), +(22085, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.131+00', '{"cached":null,"ignore_cache":false}'), +(22086, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.149+00', '{"cached":null,"ignore_cache":false}'), +(22087, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.152+00', '{"cached":null,"ignore_cache":false}'), +(22088, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.154+00', '{"cached":null,"ignore_cache":false}'), +(22089, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.157+00', '{"cached":null,"ignore_cache":false}'), +(22090, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.17+00', '{"cached":null,"ignore_cache":false}'), +(22091, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.184+00', '{"cached":null,"ignore_cache":false}'), +(22092, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.188+00', '{"cached":null,"ignore_cache":false}'), +(22093, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.195+00', '{"cached":null,"ignore_cache":false}'), +(22094, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.198+00', '{"cached":null,"ignore_cache":false}'), +(22095, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:19.288+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22096, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:20.863+00', '{"cached":null,"ignore_cache":false}'), +(22097, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.707+00', '{"cached":null,"ignore_cache":false}'), +(22098, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.716+00', '{"cached":null,"ignore_cache":false}'), +(22099, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.75+00', '{"cached":null,"ignore_cache":false}'), +(22100, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.768+00', '{"cached":null,"ignore_cache":false}'), +(22101, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.775+00', '{"cached":null,"ignore_cache":false}'), +(22102, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.784+00', '{"cached":null,"ignore_cache":false}'), +(22103, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.788+00', '{"cached":null,"ignore_cache":false}'), +(22104, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.792+00', '{"cached":null,"ignore_cache":false}'), +(22105, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.835+00', '{"cached":null,"ignore_cache":false}'), +(22106, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.836+00', '{"cached":null,"ignore_cache":false}'), +(22107, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.838+00', '{"cached":null,"ignore_cache":false}'), +(22108, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.851+00', '{"cached":null,"ignore_cache":false}'), +(22109, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.865+00', '{"cached":null,"ignore_cache":false}'), +(22110, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.872+00', '{"cached":null,"ignore_cache":false}'), +(22111, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.872+00', '{"cached":null,"ignore_cache":false}'), +(22112, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:52:48.994+00', '{"cached":null,"ignore_cache":false}'), +(22113, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:19.956+00', '{"cached":null,"ignore_cache":false}'), +(22114, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.059+00', '{"cached":null,"ignore_cache":false}'), +(22115, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.109+00', '{"cached":null,"ignore_cache":false}'), +(22116, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.155+00', '{"cached":null,"ignore_cache":false}'), +(22117, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.179+00', '{"cached":null,"ignore_cache":false}'), +(22118, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.192+00', '{"cached":null,"ignore_cache":false}'), +(22119, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.229+00', '{"cached":null,"ignore_cache":false}'), +(22120, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.247+00', '{"cached":null,"ignore_cache":false}'), +(22121, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.249+00', '{"cached":null,"ignore_cache":false}'), +(22122, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.339+00', '{"cached":null,"ignore_cache":false}'), +(22123, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.377+00', '{"cached":null,"ignore_cache":false}'), +(22124, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.404+00', '{"cached":null,"ignore_cache":false}'), +(22125, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.405+00', '{"cached":null,"ignore_cache":false}'), +(22126, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.406+00', '{"cached":null,"ignore_cache":false}'), +(22127, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.442+00', '{"cached":null,"ignore_cache":false}'), +(22128, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:20.447+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22129, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.277+00', '{"cached":null,"ignore_cache":false}'), +(22130, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.42+00', '{"cached":null,"ignore_cache":false}'), +(22131, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.469+00', '{"cached":null,"ignore_cache":false}'), +(22132, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.519+00', '{"cached":null,"ignore_cache":false}'), +(22133, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.541+00', '{"cached":null,"ignore_cache":false}'), +(22134, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.555+00', '{"cached":null,"ignore_cache":false}'), +(22135, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.576+00', '{"cached":null,"ignore_cache":false}'), +(22136, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.593+00', '{"cached":null,"ignore_cache":false}'), +(22137, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.612+00', '{"cached":null,"ignore_cache":false}'), +(22138, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.622+00', '{"cached":null,"ignore_cache":false}'), +(22139, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.657+00', '{"cached":null,"ignore_cache":false}'), +(22140, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.681+00', '{"cached":null,"ignore_cache":false}'), +(22141, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.699+00', '{"cached":null,"ignore_cache":false}'), +(22142, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.715+00', '{"cached":null,"ignore_cache":false}'), +(22143, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.745+00', '{"cached":null,"ignore_cache":false}'), +(22144, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:53:49.751+00', '{"cached":null,"ignore_cache":false}'), +(22145, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.005+00', '{"cached":null,"ignore_cache":false}'), +(22146, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.064+00', '{"cached":null,"ignore_cache":false}'), +(22147, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.092+00', '{"cached":null,"ignore_cache":false}'), +(22148, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.161+00', '{"cached":null,"ignore_cache":false}'), +(22149, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.172+00', '{"cached":null,"ignore_cache":false}'), +(22150, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.28+00', '{"cached":null,"ignore_cache":false}'), +(22151, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.328+00', '{"cached":null,"ignore_cache":false}'), +(22152, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.362+00', '{"cached":null,"ignore_cache":false}'), +(22153, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.382+00', '{"cached":null,"ignore_cache":false}'), +(22154, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.387+00', '{"cached":null,"ignore_cache":false}'), +(22155, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.392+00', '{"cached":null,"ignore_cache":false}'), +(22156, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.429+00', '{"cached":null,"ignore_cache":false}'), +(22157, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.437+00', '{"cached":null,"ignore_cache":false}'), +(22158, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.439+00', '{"cached":null,"ignore_cache":false}'), +(22159, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.439+00', '{"cached":null,"ignore_cache":false}'), +(22160, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:19.46+00', '{"cached":null,"ignore_cache":false}'), +(22161, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.585+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22162, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.786+00', '{"cached":null,"ignore_cache":false}'), +(22163, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.88+00', '{"cached":null,"ignore_cache":false}'), +(22164, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.897+00', '{"cached":null,"ignore_cache":false}'), +(22165, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.921+00', '{"cached":null,"ignore_cache":false}'), +(22166, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.929+00', '{"cached":null,"ignore_cache":false}'), +(22167, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.934+00', '{"cached":null,"ignore_cache":false}'), +(22168, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.935+00', '{"cached":null,"ignore_cache":false}'), +(22169, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.944+00', '{"cached":null,"ignore_cache":false}'), +(22170, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:49.965+00', '{"cached":null,"ignore_cache":false}'), +(22171, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:50.017+00', '{"cached":null,"ignore_cache":false}'), +(22172, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:50.026+00', '{"cached":null,"ignore_cache":false}'), +(22173, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:50.031+00', '{"cached":null,"ignore_cache":false}'), +(22174, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:50.056+00', '{"cached":null,"ignore_cache":false}'), +(22175, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:50.062+00', '{"cached":null,"ignore_cache":false}'), +(22176, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:54:50.063+00', '{"cached":null,"ignore_cache":false}'), +(22177, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:10.497+00', '{"cached":null,"ignore_cache":null}'), +(22178, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.1+00', '{"cached":null,"ignore_cache":false}'), +(22179, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.16+00', '{"cached":null,"ignore_cache":false}'), +(22180, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.191+00', '{"cached":null,"ignore_cache":false}'), +(22181, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.351+00', '{"cached":null,"ignore_cache":false}'), +(22182, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.393+00', '{"cached":null,"ignore_cache":false}'), +(22183, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.398+00', '{"cached":null,"ignore_cache":false}'), +(22184, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:11.403+00', '{"cached":null,"ignore_cache":false}'), +(22185, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:13.879+00', '{"cached":null,"ignore_cache":null}'), +(22186, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:16.159+00', '{"cached":null,"ignore_cache":false}'), +(22187, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.215+00', '{"cached":null,"ignore_cache":false}'), +(22188, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.281+00', '{"cached":null,"ignore_cache":false}'), +(22189, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.316+00', '{"cached":null,"ignore_cache":false}'), +(22190, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.317+00', '{"cached":null,"ignore_cache":false}'), +(22191, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.365+00', '{"cached":null,"ignore_cache":false}'), +(22192, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.379+00', '{"cached":null,"ignore_cache":false}'), +(22193, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.404+00', '{"cached":null,"ignore_cache":false}'), +(22194, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.454+00', '{"cached":null,"ignore_cache":false}'), +(22195, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.468+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22196, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.492+00', '{"cached":null,"ignore_cache":false}'), +(22197, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.492+00', '{"cached":null,"ignore_cache":false}'), +(22198, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.505+00', '{"cached":null,"ignore_cache":false}'), +(22199, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.509+00', '{"cached":null,"ignore_cache":false}'), +(22200, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.525+00', '{"cached":null,"ignore_cache":false}'), +(22201, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.529+00', '{"cached":null,"ignore_cache":false}'), +(22202, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:19.53+00', '{"cached":null,"ignore_cache":false}'), +(22203, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.486+00', '{"cached":null,"ignore_cache":false}'), +(22204, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.532+00', '{"cached":null,"ignore_cache":false}'), +(22205, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.554+00', '{"cached":null,"ignore_cache":false}'), +(22206, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.575+00', '{"cached":null,"ignore_cache":false}'), +(22207, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.592+00', '{"cached":null,"ignore_cache":false}'), +(22208, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.597+00', '{"cached":null,"ignore_cache":false}'), +(22209, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.604+00', '{"cached":null,"ignore_cache":false}'), +(22210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.612+00', '{"cached":null,"ignore_cache":false}'), +(22211, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.62+00', '{"cached":null,"ignore_cache":false}'), +(22212, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.643+00', '{"cached":null,"ignore_cache":false}'), +(22213, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.662+00', '{"cached":null,"ignore_cache":false}'), +(22214, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.663+00', '{"cached":null,"ignore_cache":false}'), +(22215, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.686+00', '{"cached":null,"ignore_cache":false}'), +(22216, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.69+00', '{"cached":null,"ignore_cache":false}'), +(22217, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.691+00', '{"cached":null,"ignore_cache":false}'), +(22218, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:55:49.755+00', '{"cached":null,"ignore_cache":false}'), +(22219, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.549+00', '{"cached":null,"ignore_cache":false}'), +(22220, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.723+00', '{"cached":null,"ignore_cache":false}'), +(22221, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.809+00', '{"cached":null,"ignore_cache":false}'), +(22222, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.873+00', '{"cached":null,"ignore_cache":false}'), +(22223, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:19.928+00', '{"cached":null,"ignore_cache":false}'), +(22224, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.05+00', '{"cached":null,"ignore_cache":false}'), +(22225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.189+00', '{"cached":null,"ignore_cache":false}'), +(22226, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.259+00', '{"cached":null,"ignore_cache":false}'), +(22227, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.347+00', '{"cached":null,"ignore_cache":false}'), +(22228, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.351+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22229, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.369+00', '{"cached":null,"ignore_cache":false}'), +(22230, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.375+00', '{"cached":null,"ignore_cache":false}'), +(22231, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.535+00', '{"cached":null,"ignore_cache":false}'), +(22232, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.536+00', '{"cached":null,"ignore_cache":false}'), +(22233, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.559+00', '{"cached":null,"ignore_cache":false}'), +(22234, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:20.56+00', '{"cached":null,"ignore_cache":false}'), +(22235, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.571+00', '{"cached":null,"ignore_cache":false}'), +(22236, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.613+00', '{"cached":null,"ignore_cache":false}'), +(22237, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.661+00', '{"cached":null,"ignore_cache":false}'), +(22238, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.705+00', '{"cached":null,"ignore_cache":false}'), +(22239, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.735+00', '{"cached":null,"ignore_cache":false}'), +(22240, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.741+00', '{"cached":null,"ignore_cache":false}'), +(22241, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.745+00', '{"cached":null,"ignore_cache":false}'), +(22242, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.759+00', '{"cached":null,"ignore_cache":false}'), +(22243, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.767+00', '{"cached":null,"ignore_cache":false}'), +(22244, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.794+00', '{"cached":null,"ignore_cache":false}'), +(22245, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.795+00', '{"cached":null,"ignore_cache":false}'), +(22246, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.804+00', '{"cached":null,"ignore_cache":false}'), +(22247, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.809+00', '{"cached":null,"ignore_cache":false}'), +(22248, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.818+00', '{"cached":null,"ignore_cache":false}'), +(22249, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.841+00', '{"cached":null,"ignore_cache":false}'), +(22250, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:56:49.965+00', '{"cached":null,"ignore_cache":false}'), +(22251, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.435+00', '{"cached":null,"ignore_cache":false}'), +(22252, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.682+00', '{"cached":null,"ignore_cache":false}'), +(22253, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.69+00', '{"cached":null,"ignore_cache":false}'), +(22254, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.768+00', '{"cached":null,"ignore_cache":false}'), +(22255, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.788+00', '{"cached":null,"ignore_cache":false}'), +(22256, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.82+00', '{"cached":null,"ignore_cache":false}'), +(22257, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.836+00', '{"cached":null,"ignore_cache":false}'), +(22258, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.887+00', '{"cached":null,"ignore_cache":false}'), +(22259, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.914+00', '{"cached":null,"ignore_cache":false}'), +(22260, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.926+00', '{"cached":null,"ignore_cache":false}'), +(22261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.946+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22262, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.95+00', '{"cached":null,"ignore_cache":false}'), +(22263, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.969+00', '{"cached":null,"ignore_cache":false}'), +(22264, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.986+00', '{"cached":null,"ignore_cache":false}'), +(22265, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.99+00', '{"cached":null,"ignore_cache":false}'), +(22266, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:19.999+00', '{"cached":null,"ignore_cache":false}'), +(22267, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.73+00', '{"cached":null,"ignore_cache":false}'), +(22268, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.778+00', '{"cached":null,"ignore_cache":false}'), +(22269, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:49.918+00', '{"cached":null,"ignore_cache":false}'), +(22270, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.029+00', '{"cached":null,"ignore_cache":false}'), +(22271, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.038+00', '{"cached":null,"ignore_cache":false}'), +(22272, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.053+00', '{"cached":null,"ignore_cache":false}'), +(22273, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.07+00', '{"cached":null,"ignore_cache":false}'), +(22274, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.073+00', '{"cached":null,"ignore_cache":false}'), +(22275, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.085+00', '{"cached":null,"ignore_cache":false}'), +(22276, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.095+00', '{"cached":null,"ignore_cache":false}'), +(22277, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.098+00', '{"cached":null,"ignore_cache":false}'), +(22278, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.104+00', '{"cached":null,"ignore_cache":false}'), +(22279, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.113+00', '{"cached":null,"ignore_cache":false}'), +(22280, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.123+00', '{"cached":null,"ignore_cache":false}'), +(22281, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.136+00', '{"cached":null,"ignore_cache":false}'), +(22282, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:57:50.561+00', '{"cached":null,"ignore_cache":false}'), +(22283, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.396+00', '{"cached":null,"ignore_cache":false}'), +(22284, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.502+00', '{"cached":null,"ignore_cache":false}'), +(22285, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.517+00', '{"cached":null,"ignore_cache":false}'), +(22286, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.523+00', '{"cached":null,"ignore_cache":false}'), +(22287, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.62+00', '{"cached":null,"ignore_cache":false}'), +(22288, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.636+00', '{"cached":null,"ignore_cache":false}'), +(22289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.667+00', '{"cached":null,"ignore_cache":false}'), +(22290, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.671+00', '{"cached":null,"ignore_cache":false}'), +(22291, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.699+00', '{"cached":null,"ignore_cache":false}'), +(22292, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.712+00', '{"cached":null,"ignore_cache":false}'), +(22293, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.715+00', '{"cached":null,"ignore_cache":false}'), +(22294, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.724+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22295, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.726+00', '{"cached":null,"ignore_cache":false}'), +(22296, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.758+00', '{"cached":null,"ignore_cache":false}'), +(22297, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.763+00', '{"cached":null,"ignore_cache":false}'), +(22298, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:19.935+00', '{"cached":null,"ignore_cache":false}'), +(22299, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.326+00', '{"cached":null,"ignore_cache":false}'), +(22300, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.372+00', '{"cached":null,"ignore_cache":false}'), +(22301, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.405+00', '{"cached":null,"ignore_cache":false}'), +(22302, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.406+00', '{"cached":null,"ignore_cache":false}'), +(22303, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.416+00', '{"cached":null,"ignore_cache":false}'), +(22304, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.442+00', '{"cached":null,"ignore_cache":false}'), +(22305, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.459+00', '{"cached":null,"ignore_cache":false}'), +(22306, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.484+00', '{"cached":null,"ignore_cache":false}'), +(22307, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.494+00', '{"cached":null,"ignore_cache":false}'), +(22308, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.528+00', '{"cached":null,"ignore_cache":false}'), +(22309, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.531+00', '{"cached":null,"ignore_cache":false}'), +(22310, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.555+00', '{"cached":null,"ignore_cache":false}'), +(22311, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.564+00', '{"cached":null,"ignore_cache":false}'), +(22312, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.574+00', '{"cached":null,"ignore_cache":false}'), +(22313, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.577+00', '{"cached":null,"ignore_cache":false}'), +(22314, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:49.593+00', '{"cached":null,"ignore_cache":false}'), +(22315, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:54.786+00', '{"cached":null,"ignore_cache":null}'), +(22316, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.028+00', '{"cached":null,"ignore_cache":false}'), +(22317, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.098+00', '{"cached":null,"ignore_cache":false}'), +(22318, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.16+00', '{"cached":null,"ignore_cache":false}'), +(22319, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.175+00', '{"cached":null,"ignore_cache":false}'), +(22320, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.204+00', '{"cached":null,"ignore_cache":false}'), +(22321, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.36+00', '{"cached":null,"ignore_cache":false}'), +(22322, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:56.371+00', '{"cached":null,"ignore_cache":false}'), +(22323, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:03.181+00', '{"cached":null,"ignore_cache":null}'), +(22324, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:03.983+00', '{"cached":null,"ignore_cache":false}'), +(22325, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.366+00', '{"cached":null,"ignore_cache":false}'), +(22326, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.432+00', '{"cached":null,"ignore_cache":false}'), +(22327, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.503+00', '{"cached":null,"ignore_cache":false}'), +(22328, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.545+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22329, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.546+00', '{"cached":null,"ignore_cache":false}'), +(22330, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.583+00', '{"cached":null,"ignore_cache":false}'), +(22331, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.592+00', '{"cached":null,"ignore_cache":false}'), +(22332, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.596+00', '{"cached":null,"ignore_cache":false}'), +(22333, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.606+00', '{"cached":null,"ignore_cache":false}'), +(22334, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.638+00', '{"cached":null,"ignore_cache":false}'), +(22335, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.647+00', '{"cached":null,"ignore_cache":false}'), +(22336, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.649+00', '{"cached":null,"ignore_cache":false}'), +(22337, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.654+00', '{"cached":null,"ignore_cache":false}'), +(22338, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.675+00', '{"cached":null,"ignore_cache":false}'), +(22339, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.678+00', '{"cached":null,"ignore_cache":false}'), +(22340, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 13:59:19.714+00', '{"cached":null,"ignore_cache":false}'), +(22341, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:52.932+00', '{"cached":null,"ignore_cache":null}'), +(22342, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:55.992+00', '{"cached":null,"ignore_cache":false}'), +(22343, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:56.189+00', '{"cached":null,"ignore_cache":false}'), +(22344, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:56.195+00', '{"cached":null,"ignore_cache":false}'), +(22345, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:56.29+00', '{"cached":null,"ignore_cache":false}'), +(22346, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:56.293+00', '{"cached":null,"ignore_cache":false}'), +(22347, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:56.294+00', '{"cached":null,"ignore_cache":false}'), +(22348, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:56.367+00', '{"cached":null,"ignore_cache":false}'), +(22349, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:03:00.262+00', '{"cached":null,"ignore_cache":null}'), +(22350, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:03:01.386+00', '{"cached":null,"ignore_cache":false}'), +(22351, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.313+00', '{"cached":null,"ignore_cache":false}'), +(22352, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.377+00', '{"cached":null,"ignore_cache":false}'), +(22353, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.403+00', '{"cached":null,"ignore_cache":false}'), +(22354, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.428+00', '{"cached":null,"ignore_cache":false}'), +(22355, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.437+00', '{"cached":null,"ignore_cache":false}'), +(22356, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.515+00', '{"cached":null,"ignore_cache":false}'), +(22357, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.537+00', '{"cached":null,"ignore_cache":false}'), +(22358, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.55+00', '{"cached":null,"ignore_cache":false}'), +(22359, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.579+00', '{"cached":null,"ignore_cache":false}'), +(22360, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.62+00', '{"cached":null,"ignore_cache":false}'), +(22361, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.642+00', '{"cached":null,"ignore_cache":false}'), +(22362, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.648+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22363, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.657+00', '{"cached":null,"ignore_cache":false}'), +(22364, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.671+00', '{"cached":null,"ignore_cache":false}'), +(22365, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.68+00', '{"cached":null,"ignore_cache":false}'), +(22366, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:08.68+00', '{"cached":null,"ignore_cache":false}'), +(22367, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.102+00', '{"cached":null,"ignore_cache":false}'), +(22368, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.135+00', '{"cached":null,"ignore_cache":false}'), +(22369, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.147+00', '{"cached":null,"ignore_cache":false}'), +(22370, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.168+00', '{"cached":null,"ignore_cache":false}'), +(22371, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.274+00', '{"cached":null,"ignore_cache":false}'), +(22372, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.304+00', '{"cached":null,"ignore_cache":false}'), +(22373, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.314+00', '{"cached":null,"ignore_cache":false}'), +(22374, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.34+00', '{"cached":null,"ignore_cache":false}'), +(22375, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.405+00', '{"cached":null,"ignore_cache":false}'), +(22376, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.45+00', '{"cached":null,"ignore_cache":false}'), +(22377, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.465+00', '{"cached":null,"ignore_cache":false}'), +(22378, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.513+00', '{"cached":null,"ignore_cache":false}'), +(22379, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.515+00', '{"cached":null,"ignore_cache":false}'), +(22380, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.535+00', '{"cached":null,"ignore_cache":false}'), +(22381, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.549+00', '{"cached":null,"ignore_cache":false}'), +(22382, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:04:38.586+00', '{"cached":null,"ignore_cache":false}'), +(22383, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.218+00', '{"cached":null,"ignore_cache":false}'), +(22384, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.232+00', '{"cached":null,"ignore_cache":false}'), +(22385, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.39+00', '{"cached":null,"ignore_cache":false}'), +(22386, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.392+00', '{"cached":null,"ignore_cache":false}'), +(22387, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.406+00', '{"cached":null,"ignore_cache":false}'), +(22388, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.438+00', '{"cached":null,"ignore_cache":false}'), +(22389, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.444+00', '{"cached":null,"ignore_cache":false}'), +(22390, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.475+00', '{"cached":null,"ignore_cache":false}'), +(22391, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.479+00', '{"cached":null,"ignore_cache":false}'), +(22392, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.496+00', '{"cached":null,"ignore_cache":false}'), +(22393, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.501+00', '{"cached":null,"ignore_cache":false}'), +(22394, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.511+00', '{"cached":null,"ignore_cache":false}'), +(22395, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.511+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22396, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.572+00', '{"cached":null,"ignore_cache":false}'), +(22397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.597+00', '{"cached":null,"ignore_cache":false}'), +(22398, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:08.636+00', '{"cached":null,"ignore_cache":false}'), +(22399, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.85+00', '{"cached":null,"ignore_cache":false}'), +(22400, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:37.918+00', '{"cached":null,"ignore_cache":false}'), +(22401, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.145+00', '{"cached":null,"ignore_cache":false}'), +(22402, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.197+00', '{"cached":null,"ignore_cache":false}'), +(22403, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.264+00', '{"cached":null,"ignore_cache":false}'), +(22404, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.305+00', '{"cached":null,"ignore_cache":false}'), +(22405, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.311+00', '{"cached":null,"ignore_cache":false}'), +(22406, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.324+00', '{"cached":null,"ignore_cache":false}'), +(22407, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.331+00', '{"cached":null,"ignore_cache":false}'), +(22408, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.334+00', '{"cached":null,"ignore_cache":false}'), +(22409, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.346+00', '{"cached":null,"ignore_cache":false}'), +(22410, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.358+00', '{"cached":null,"ignore_cache":false}'), +(22411, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.368+00', '{"cached":null,"ignore_cache":false}'), +(22412, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.374+00', '{"cached":null,"ignore_cache":false}'), +(22413, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.383+00', '{"cached":null,"ignore_cache":false}'), +(22414, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:05:38.407+00', '{"cached":null,"ignore_cache":false}'), +(22415, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.752+00', '{"cached":null,"ignore_cache":false}'), +(22416, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:08.757+00', '{"cached":null,"ignore_cache":false}'), +(22417, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.115+00', '{"cached":null,"ignore_cache":false}'), +(22418, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.115+00', '{"cached":null,"ignore_cache":false}'), +(22419, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.198+00', '{"cached":null,"ignore_cache":false}'), +(22420, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.238+00', '{"cached":null,"ignore_cache":false}'), +(22421, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.241+00', '{"cached":null,"ignore_cache":false}'), +(22422, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.276+00', '{"cached":null,"ignore_cache":false}'), +(22423, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.321+00', '{"cached":null,"ignore_cache":false}'), +(22424, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.33+00', '{"cached":null,"ignore_cache":false}'), +(22425, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.348+00', '{"cached":null,"ignore_cache":false}'), +(22426, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.352+00', '{"cached":null,"ignore_cache":false}'), +(22427, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.382+00', '{"cached":null,"ignore_cache":false}'), +(22428, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.422+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22429, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.433+00', '{"cached":null,"ignore_cache":false}'), +(22430, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:09.503+00', '{"cached":null,"ignore_cache":false}'), +(22431, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.412+00', '{"cached":null,"ignore_cache":false}'), +(22432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.5+00', '{"cached":null,"ignore_cache":false}'), +(22433, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.512+00', '{"cached":null,"ignore_cache":false}'), +(22434, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.97+00', '{"cached":null,"ignore_cache":false}'), +(22435, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:38.982+00', '{"cached":null,"ignore_cache":false}'), +(22436, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.017+00', '{"cached":null,"ignore_cache":false}'), +(22437, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.058+00', '{"cached":null,"ignore_cache":false}'), +(22438, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.104+00', '{"cached":null,"ignore_cache":false}'), +(22439, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.118+00', '{"cached":null,"ignore_cache":false}'), +(22440, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.142+00', '{"cached":null,"ignore_cache":false}'), +(22441, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.154+00', '{"cached":null,"ignore_cache":false}'), +(22442, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.179+00', '{"cached":null,"ignore_cache":false}'), +(22443, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.191+00', '{"cached":null,"ignore_cache":false}'), +(22444, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.194+00', '{"cached":null,"ignore_cache":false}'), +(22445, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.216+00', '{"cached":null,"ignore_cache":false}'), +(22446, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:06:39.303+00', '{"cached":null,"ignore_cache":false}'), +(22447, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.193+00', '{"cached":null,"ignore_cache":false}'), +(22448, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.194+00', '{"cached":null,"ignore_cache":false}'), +(22449, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.202+00', '{"cached":null,"ignore_cache":false}'), +(22450, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.209+00', '{"cached":null,"ignore_cache":false}'), +(22451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.214+00', '{"cached":null,"ignore_cache":false}'), +(22452, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.264+00', '{"cached":null,"ignore_cache":false}'), +(22453, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.301+00', '{"cached":null,"ignore_cache":false}'), +(22454, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.912+00', '{"cached":null,"ignore_cache":false}'), +(22455, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.925+00', '{"cached":null,"ignore_cache":false}'), +(22456, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:08.945+00', '{"cached":null,"ignore_cache":false}'), +(22457, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.685+00', '{"cached":null,"ignore_cache":false}'), +(22458, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.71+00', '{"cached":null,"ignore_cache":false}'), +(22459, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.727+00', '{"cached":null,"ignore_cache":false}'), +(22460, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:09.733+00', '{"cached":null,"ignore_cache":false}'), +(22461, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:10.435+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22462, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:10.496+00', '{"cached":null,"ignore_cache":false}'), +(22463, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.345+00', '{"cached":null,"ignore_cache":false}'), +(22464, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.352+00', '{"cached":null,"ignore_cache":false}'), +(22465, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.354+00', '{"cached":null,"ignore_cache":false}'), +(22466, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.368+00', '{"cached":null,"ignore_cache":false}'), +(22467, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.453+00', '{"cached":null,"ignore_cache":false}'), +(22468, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.464+00', '{"cached":null,"ignore_cache":false}'), +(22469, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.491+00', '{"cached":null,"ignore_cache":false}'), +(22470, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.503+00', '{"cached":null,"ignore_cache":false}'), +(22471, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.506+00', '{"cached":null,"ignore_cache":false}'), +(22472, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.536+00', '{"cached":null,"ignore_cache":false}'), +(22473, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.551+00', '{"cached":null,"ignore_cache":false}'), +(22474, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.556+00', '{"cached":null,"ignore_cache":false}'), +(22475, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.557+00', '{"cached":null,"ignore_cache":false}'), +(22476, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.569+00', '{"cached":null,"ignore_cache":false}'), +(22477, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.577+00', '{"cached":null,"ignore_cache":false}'), +(22478, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:07:38.592+00', '{"cached":null,"ignore_cache":false}'), +(22479, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.787+00', '{"cached":null,"ignore_cache":false}'), +(22480, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.863+00', '{"cached":null,"ignore_cache":false}'), +(22481, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.869+00', '{"cached":null,"ignore_cache":false}'), +(22482, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.882+00', '{"cached":null,"ignore_cache":false}'), +(22483, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.954+00', '{"cached":null,"ignore_cache":false}'), +(22484, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.993+00', '{"cached":null,"ignore_cache":false}'), +(22485, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:07.999+00', '{"cached":null,"ignore_cache":false}'), +(22486, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.019+00', '{"cached":null,"ignore_cache":false}'), +(22487, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.027+00', '{"cached":null,"ignore_cache":false}'), +(22488, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.035+00', '{"cached":null,"ignore_cache":false}'), +(22489, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.053+00', '{"cached":null,"ignore_cache":false}'), +(22490, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.058+00', '{"cached":null,"ignore_cache":false}'), +(22491, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.066+00', '{"cached":null,"ignore_cache":false}'), +(22492, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.071+00', '{"cached":null,"ignore_cache":false}'), +(22493, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.072+00', '{"cached":null,"ignore_cache":false}'), +(22494, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:08.195+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22495, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.071+00', '{"cached":null,"ignore_cache":false}'), +(22496, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.139+00', '{"cached":null,"ignore_cache":false}'), +(22497, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.156+00', '{"cached":null,"ignore_cache":false}'), +(22498, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.193+00', '{"cached":null,"ignore_cache":false}'), +(22499, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.255+00', '{"cached":null,"ignore_cache":false}'), +(22500, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.271+00', '{"cached":null,"ignore_cache":false}'), +(22501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.271+00', '{"cached":null,"ignore_cache":false}'), +(22502, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.31+00', '{"cached":null,"ignore_cache":false}'), +(22503, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.404+00', '{"cached":null,"ignore_cache":false}'), +(22504, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.435+00', '{"cached":null,"ignore_cache":false}'), +(22505, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.491+00', '{"cached":null,"ignore_cache":false}'), +(22506, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.492+00', '{"cached":null,"ignore_cache":false}'), +(22507, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.515+00', '{"cached":null,"ignore_cache":false}'), +(22508, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.546+00', '{"cached":null,"ignore_cache":false}'), +(22509, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.566+00', '{"cached":null,"ignore_cache":false}'), +(22510, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:08:38.629+00', '{"cached":null,"ignore_cache":false}'), +(22511, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.897+00', '{"cached":null,"ignore_cache":false}'), +(22512, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:07.987+00', '{"cached":null,"ignore_cache":false}'), +(22513, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.022+00', '{"cached":null,"ignore_cache":false}'), +(22514, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.05+00', '{"cached":null,"ignore_cache":false}'), +(22515, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.098+00', '{"cached":null,"ignore_cache":false}'), +(22516, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.23+00', '{"cached":null,"ignore_cache":false}'), +(22517, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.271+00', '{"cached":null,"ignore_cache":false}'), +(22518, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.275+00', '{"cached":null,"ignore_cache":false}'), +(22519, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.304+00', '{"cached":null,"ignore_cache":false}'), +(22520, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.324+00', '{"cached":null,"ignore_cache":false}'), +(22521, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.328+00', '{"cached":null,"ignore_cache":false}'), +(22522, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.352+00', '{"cached":null,"ignore_cache":false}'), +(22523, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.371+00', '{"cached":null,"ignore_cache":false}'), +(22524, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.372+00', '{"cached":null,"ignore_cache":false}'), +(22525, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.375+00', '{"cached":null,"ignore_cache":false}'), +(22526, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:08.383+00', '{"cached":null,"ignore_cache":false}'), +(22527, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:37.806+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22528, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.159+00', '{"cached":null,"ignore_cache":false}'), +(22529, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.172+00', '{"cached":null,"ignore_cache":false}'), +(22530, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.184+00', '{"cached":null,"ignore_cache":false}'), +(22531, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.212+00', '{"cached":null,"ignore_cache":false}'), +(22532, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.222+00', '{"cached":null,"ignore_cache":false}'), +(22533, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.224+00', '{"cached":null,"ignore_cache":false}'), +(22534, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.238+00', '{"cached":null,"ignore_cache":false}'), +(22535, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.306+00', '{"cached":null,"ignore_cache":false}'), +(22536, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.342+00', '{"cached":null,"ignore_cache":false}'), +(22537, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.356+00', '{"cached":null,"ignore_cache":false}'), +(22538, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.362+00', '{"cached":null,"ignore_cache":false}'), +(22539, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.403+00', '{"cached":null,"ignore_cache":false}'), +(22540, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.423+00', '{"cached":null,"ignore_cache":false}'), +(22541, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.519+00', '{"cached":null,"ignore_cache":false}'), +(22542, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:09:38.583+00', '{"cached":null,"ignore_cache":false}'), +(22543, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.038+00', '{"cached":null,"ignore_cache":false}'), +(22544, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.078+00', '{"cached":null,"ignore_cache":false}'), +(22545, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.166+00', '{"cached":null,"ignore_cache":false}'), +(22546, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.195+00', '{"cached":null,"ignore_cache":false}'), +(22547, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.253+00', '{"cached":null,"ignore_cache":false}'), +(22548, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.335+00', '{"cached":null,"ignore_cache":false}'), +(22549, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.335+00', '{"cached":null,"ignore_cache":false}'), +(22550, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.408+00', '{"cached":null,"ignore_cache":false}'), +(22551, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.416+00', '{"cached":null,"ignore_cache":false}'), +(22552, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.464+00', '{"cached":null,"ignore_cache":false}'), +(22553, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.488+00', '{"cached":null,"ignore_cache":false}'), +(22554, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.508+00', '{"cached":null,"ignore_cache":false}'), +(22555, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.529+00', '{"cached":null,"ignore_cache":false}'), +(22556, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.533+00', '{"cached":null,"ignore_cache":false}'), +(22557, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.638+00', '{"cached":null,"ignore_cache":false}'), +(22558, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:08.658+00', '{"cached":null,"ignore_cache":false}'), +(22559, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.448+00', '{"cached":null,"ignore_cache":false}'), +(22560, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.454+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22561, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.522+00', '{"cached":null,"ignore_cache":false}'), +(22562, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.524+00', '{"cached":null,"ignore_cache":false}'), +(22563, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.547+00', '{"cached":null,"ignore_cache":false}'), +(22564, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.712+00', '{"cached":null,"ignore_cache":false}'), +(22565, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.75+00', '{"cached":null,"ignore_cache":false}'), +(22566, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.754+00', '{"cached":null,"ignore_cache":false}'), +(22567, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.793+00', '{"cached":null,"ignore_cache":false}'), +(22568, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.802+00', '{"cached":null,"ignore_cache":false}'), +(22569, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.81+00', '{"cached":null,"ignore_cache":false}'), +(22570, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.82+00', '{"cached":null,"ignore_cache":false}'), +(22571, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.83+00', '{"cached":null,"ignore_cache":false}'), +(22572, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.845+00', '{"cached":null,"ignore_cache":false}'), +(22573, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.858+00', '{"cached":null,"ignore_cache":false}'), +(22574, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:10:38.861+00', '{"cached":null,"ignore_cache":false}'), +(22575, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.756+00', '{"cached":null,"ignore_cache":false}'), +(22576, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.808+00', '{"cached":null,"ignore_cache":false}'), +(22577, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.822+00', '{"cached":null,"ignore_cache":false}'), +(22578, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.848+00', '{"cached":null,"ignore_cache":false}'), +(22579, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.859+00', '{"cached":null,"ignore_cache":false}'), +(22580, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.906+00', '{"cached":null,"ignore_cache":false}'), +(22581, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:07.918+00', '{"cached":null,"ignore_cache":false}'), +(22582, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.136+00', '{"cached":null,"ignore_cache":false}'), +(22583, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.207+00', '{"cached":null,"ignore_cache":false}'), +(22584, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.287+00', '{"cached":null,"ignore_cache":false}'), +(22585, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.299+00', '{"cached":null,"ignore_cache":false}'), +(22586, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.32+00', '{"cached":null,"ignore_cache":false}'), +(22587, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.351+00', '{"cached":null,"ignore_cache":false}'), +(22588, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.364+00', '{"cached":null,"ignore_cache":false}'), +(22589, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.384+00', '{"cached":null,"ignore_cache":false}'), +(22590, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:08.389+00', '{"cached":null,"ignore_cache":false}'), +(22591, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.395+00', '{"cached":null,"ignore_cache":false}'), +(22592, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.439+00', '{"cached":null,"ignore_cache":false}'), +(22593, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.659+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22594, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.678+00', '{"cached":null,"ignore_cache":false}'), +(22595, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.684+00', '{"cached":null,"ignore_cache":false}'), +(22596, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.809+00', '{"cached":null,"ignore_cache":false}'), +(22597, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.841+00', '{"cached":null,"ignore_cache":false}'), +(22598, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.845+00', '{"cached":null,"ignore_cache":false}'), +(22599, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.891+00', '{"cached":null,"ignore_cache":false}'), +(22600, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.899+00', '{"cached":null,"ignore_cache":false}'), +(22601, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.902+00', '{"cached":null,"ignore_cache":false}'), +(22602, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.924+00', '{"cached":null,"ignore_cache":false}'), +(22603, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.926+00', '{"cached":null,"ignore_cache":false}'), +(22604, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.967+00', '{"cached":null,"ignore_cache":false}'), +(22605, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.971+00', '{"cached":null,"ignore_cache":false}'), +(22606, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:11:38.993+00', '{"cached":null,"ignore_cache":false}'), +(22607, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.838+00', '{"cached":null,"ignore_cache":false}'), +(22608, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.878+00', '{"cached":null,"ignore_cache":false}'), +(22609, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.972+00', '{"cached":null,"ignore_cache":false}'), +(22610, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:07.975+00', '{"cached":null,"ignore_cache":false}'), +(22611, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.001+00', '{"cached":null,"ignore_cache":false}'), +(22612, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.032+00', '{"cached":null,"ignore_cache":false}'), +(22613, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.054+00', '{"cached":null,"ignore_cache":false}'), +(22614, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.22+00', '{"cached":null,"ignore_cache":false}'), +(22615, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.226+00', '{"cached":null,"ignore_cache":false}'), +(22616, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.248+00', '{"cached":null,"ignore_cache":false}'), +(22617, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.254+00', '{"cached":null,"ignore_cache":false}'), +(22618, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.339+00', '{"cached":null,"ignore_cache":false}'), +(22619, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.348+00', '{"cached":null,"ignore_cache":false}'), +(22620, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.351+00', '{"cached":null,"ignore_cache":false}'), +(22621, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.466+00', '{"cached":null,"ignore_cache":false}'), +(22622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:08.507+00', '{"cached":null,"ignore_cache":false}'), +(22623, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.855+00', '{"cached":null,"ignore_cache":false}'), +(22624, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.902+00', '{"cached":null,"ignore_cache":false}'), +(22625, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:37.966+00', '{"cached":null,"ignore_cache":false}'), +(22626, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.051+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22627, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.112+00', '{"cached":null,"ignore_cache":false}'), +(22628, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.146+00', '{"cached":null,"ignore_cache":false}'), +(22629, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.193+00', '{"cached":null,"ignore_cache":false}'), +(22630, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.2+00', '{"cached":null,"ignore_cache":false}'), +(22631, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.239+00', '{"cached":null,"ignore_cache":false}'), +(22632, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.248+00', '{"cached":null,"ignore_cache":false}'), +(22633, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.275+00', '{"cached":null,"ignore_cache":false}'), +(22634, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.295+00', '{"cached":null,"ignore_cache":false}'), +(22635, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.302+00', '{"cached":null,"ignore_cache":false}'), +(22636, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.308+00', '{"cached":null,"ignore_cache":false}'), +(22637, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.312+00', '{"cached":null,"ignore_cache":false}'), +(22638, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:12:38.326+00', '{"cached":null,"ignore_cache":false}'), +(22639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.819+00', '{"cached":null,"ignore_cache":false}'), +(22640, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.865+00', '{"cached":null,"ignore_cache":false}'), +(22641, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.954+00', '{"cached":null,"ignore_cache":false}'), +(22642, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.964+00', '{"cached":null,"ignore_cache":false}'), +(22643, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:07.99+00', '{"cached":null,"ignore_cache":false}'), +(22644, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.001+00', '{"cached":null,"ignore_cache":false}'), +(22645, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.006+00', '{"cached":null,"ignore_cache":false}'), +(22646, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.032+00', '{"cached":null,"ignore_cache":false}'), +(22647, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.058+00', '{"cached":null,"ignore_cache":false}'), +(22648, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.061+00', '{"cached":null,"ignore_cache":false}'), +(22649, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.098+00', '{"cached":null,"ignore_cache":false}'), +(22650, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.106+00', '{"cached":null,"ignore_cache":false}'), +(22651, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.114+00', '{"cached":null,"ignore_cache":false}'), +(22652, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.131+00', '{"cached":null,"ignore_cache":false}'), +(22653, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.135+00', '{"cached":null,"ignore_cache":false}'), +(22654, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:08.282+00', '{"cached":null,"ignore_cache":false}'), +(22655, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.677+00', '{"cached":null,"ignore_cache":false}'), +(22656, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.876+00', '{"cached":null,"ignore_cache":false}'), +(22657, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.9+00', '{"cached":null,"ignore_cache":false}'), +(22658, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.929+00', '{"cached":null,"ignore_cache":false}'), +(22659, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.957+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22660, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.965+00', '{"cached":null,"ignore_cache":false}'), +(22661, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.975+00', '{"cached":null,"ignore_cache":false}'), +(22662, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:37.98+00', '{"cached":null,"ignore_cache":false}'), +(22663, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.008+00', '{"cached":null,"ignore_cache":false}'), +(22664, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.047+00', '{"cached":null,"ignore_cache":false}'), +(22665, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.05+00', '{"cached":null,"ignore_cache":false}'), +(22666, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.086+00', '{"cached":null,"ignore_cache":false}'), +(22667, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.092+00', '{"cached":null,"ignore_cache":false}'), +(22668, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.103+00', '{"cached":null,"ignore_cache":false}'), +(22669, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.141+00', '{"cached":null,"ignore_cache":false}'), +(22670, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:13:38.153+00', '{"cached":null,"ignore_cache":false}'), +(22671, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.844+00', '{"cached":null,"ignore_cache":false}'), +(22672, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.945+00', '{"cached":null,"ignore_cache":false}'), +(22673, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.987+00', '{"cached":null,"ignore_cache":false}'), +(22674, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:07.997+00', '{"cached":null,"ignore_cache":false}'), +(22675, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.04+00', '{"cached":null,"ignore_cache":false}'), +(22676, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.049+00', '{"cached":null,"ignore_cache":false}'), +(22677, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.068+00', '{"cached":null,"ignore_cache":false}'), +(22678, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.145+00', '{"cached":null,"ignore_cache":false}'), +(22679, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.198+00', '{"cached":null,"ignore_cache":false}'), +(22680, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.219+00', '{"cached":null,"ignore_cache":false}'), +(22681, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.224+00', '{"cached":null,"ignore_cache":false}'), +(22682, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.293+00', '{"cached":null,"ignore_cache":false}'), +(22683, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.325+00', '{"cached":null,"ignore_cache":false}'), +(22684, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.349+00', '{"cached":null,"ignore_cache":false}'), +(22685, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.366+00', '{"cached":null,"ignore_cache":false}'), +(22686, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:08.378+00', '{"cached":null,"ignore_cache":false}'), +(22687, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.301+00', '{"cached":null,"ignore_cache":false}'), +(22688, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.35+00', '{"cached":null,"ignore_cache":false}'), +(22689, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.354+00', '{"cached":null,"ignore_cache":false}'), +(22690, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.456+00', '{"cached":null,"ignore_cache":false}'), +(22691, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.466+00', '{"cached":null,"ignore_cache":false}'), +(22692, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.479+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22693, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.484+00', '{"cached":null,"ignore_cache":false}'), +(22694, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.502+00', '{"cached":null,"ignore_cache":false}'), +(22695, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.513+00', '{"cached":null,"ignore_cache":false}'), +(22696, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.546+00', '{"cached":null,"ignore_cache":false}'), +(22697, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.55+00', '{"cached":null,"ignore_cache":false}'), +(22698, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.562+00', '{"cached":null,"ignore_cache":false}'), +(22699, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.585+00', '{"cached":null,"ignore_cache":false}'), +(22700, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.643+00', '{"cached":null,"ignore_cache":false}'), +(22701, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.652+00', '{"cached":null,"ignore_cache":false}'), +(22702, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:14:38.663+00', '{"cached":null,"ignore_cache":false}'), +(22703, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.777+00', '{"cached":null,"ignore_cache":false}'), +(22704, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:07.977+00', '{"cached":null,"ignore_cache":false}'), +(22705, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.018+00', '{"cached":null,"ignore_cache":false}'), +(22706, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.096+00', '{"cached":null,"ignore_cache":false}'), +(22707, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.101+00', '{"cached":null,"ignore_cache":false}'), +(22708, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.174+00', '{"cached":null,"ignore_cache":false}'), +(22709, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.183+00', '{"cached":null,"ignore_cache":false}'), +(22710, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.185+00', '{"cached":null,"ignore_cache":false}'), +(22711, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.204+00', '{"cached":null,"ignore_cache":false}'), +(22712, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.218+00', '{"cached":null,"ignore_cache":false}'), +(22713, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.226+00', '{"cached":null,"ignore_cache":false}'), +(22714, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.25+00', '{"cached":null,"ignore_cache":false}'), +(22715, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.266+00', '{"cached":null,"ignore_cache":false}'), +(22716, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.271+00', '{"cached":null,"ignore_cache":false}'), +(22717, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.367+00', '{"cached":null,"ignore_cache":false}'), +(22718, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:08.422+00', '{"cached":null,"ignore_cache":false}'), +(22719, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:37.88+00', '{"cached":null,"ignore_cache":false}'), +(22720, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.079+00', '{"cached":null,"ignore_cache":false}'), +(22721, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.08+00', '{"cached":null,"ignore_cache":false}'), +(22722, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.103+00', '{"cached":null,"ignore_cache":false}'), +(22723, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.124+00', '{"cached":null,"ignore_cache":false}'), +(22724, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.135+00', '{"cached":null,"ignore_cache":false}'), +(22725, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.176+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22726, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.246+00', '{"cached":null,"ignore_cache":false}'), +(22727, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.247+00', '{"cached":null,"ignore_cache":false}'), +(22728, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.344+00', '{"cached":null,"ignore_cache":false}'), +(22729, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.364+00', '{"cached":null,"ignore_cache":false}'), +(22730, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.402+00', '{"cached":null,"ignore_cache":false}'), +(22731, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.415+00', '{"cached":null,"ignore_cache":false}'), +(22732, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.417+00', '{"cached":null,"ignore_cache":false}'), +(22733, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.417+00', '{"cached":null,"ignore_cache":false}'), +(22734, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:15:38.443+00', '{"cached":null,"ignore_cache":false}'), +(22735, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.828+00', '{"cached":null,"ignore_cache":false}'), +(22736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.839+00', '{"cached":null,"ignore_cache":false}'), +(22737, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.865+00', '{"cached":null,"ignore_cache":false}'), +(22738, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.892+00', '{"cached":null,"ignore_cache":false}'), +(22739, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.916+00', '{"cached":null,"ignore_cache":false}'), +(22740, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:08.919+00', '{"cached":null,"ignore_cache":false}'), +(22741, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.022+00', '{"cached":null,"ignore_cache":false}'), +(22742, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.035+00', '{"cached":null,"ignore_cache":false}'), +(22743, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.052+00', '{"cached":null,"ignore_cache":false}'), +(22744, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.09+00', '{"cached":null,"ignore_cache":false}'), +(22745, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.108+00', '{"cached":null,"ignore_cache":false}'), +(22746, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.143+00', '{"cached":null,"ignore_cache":false}'), +(22747, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.149+00', '{"cached":null,"ignore_cache":false}'), +(22748, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.207+00', '{"cached":null,"ignore_cache":false}'), +(22749, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.241+00', '{"cached":null,"ignore_cache":false}'), +(22750, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:09.278+00', '{"cached":null,"ignore_cache":false}'), +(22751, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.008+00', '{"cached":null,"ignore_cache":false}'), +(22752, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.118+00', '{"cached":null,"ignore_cache":false}'), +(22753, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.169+00', '{"cached":null,"ignore_cache":false}'), +(22754, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.406+00', '{"cached":null,"ignore_cache":false}'), +(22755, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.414+00', '{"cached":null,"ignore_cache":false}'), +(22756, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.42+00', '{"cached":null,"ignore_cache":false}'), +(22757, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.494+00', '{"cached":null,"ignore_cache":false}'), +(22758, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.507+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22759, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.508+00', '{"cached":null,"ignore_cache":false}'), +(22760, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.537+00', '{"cached":null,"ignore_cache":false}'), +(22761, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.544+00', '{"cached":null,"ignore_cache":false}'), +(22762, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.589+00', '{"cached":null,"ignore_cache":false}'), +(22763, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.611+00', '{"cached":null,"ignore_cache":false}'), +(22764, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.622+00', '{"cached":null,"ignore_cache":false}'), +(22765, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.624+00', '{"cached":null,"ignore_cache":false}'), +(22766, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:16:38.684+00', '{"cached":null,"ignore_cache":false}'), +(22767, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:07.964+00', '{"cached":null,"ignore_cache":false}'), +(22768, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.011+00', '{"cached":null,"ignore_cache":false}'), +(22769, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.022+00', '{"cached":null,"ignore_cache":false}'), +(22770, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.166+00', '{"cached":null,"ignore_cache":false}'), +(22771, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.182+00', '{"cached":null,"ignore_cache":false}'), +(22772, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.183+00', '{"cached":null,"ignore_cache":false}'), +(22773, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.209+00', '{"cached":null,"ignore_cache":false}'), +(22774, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.212+00', '{"cached":null,"ignore_cache":false}'), +(22775, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.234+00', '{"cached":null,"ignore_cache":false}'), +(22776, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.251+00', '{"cached":null,"ignore_cache":false}'), +(22777, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.266+00', '{"cached":null,"ignore_cache":false}'), +(22778, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.274+00', '{"cached":null,"ignore_cache":false}'), +(22779, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.281+00', '{"cached":null,"ignore_cache":false}'), +(22780, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.289+00', '{"cached":null,"ignore_cache":false}'), +(22781, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.291+00', '{"cached":null,"ignore_cache":false}'), +(22782, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:08.296+00', '{"cached":null,"ignore_cache":false}'), +(22783, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.493+00', '{"cached":null,"ignore_cache":false}'), +(22784, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.588+00', '{"cached":null,"ignore_cache":false}'), +(22785, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.607+00', '{"cached":null,"ignore_cache":false}'), +(22786, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.715+00', '{"cached":null,"ignore_cache":false}'), +(22787, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.794+00', '{"cached":null,"ignore_cache":false}'), +(22788, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.801+00', '{"cached":null,"ignore_cache":false}'), +(22789, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.802+00', '{"cached":null,"ignore_cache":false}'), +(22790, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.822+00', '{"cached":null,"ignore_cache":false}'), +(22791, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.918+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22792, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.946+00', '{"cached":null,"ignore_cache":false}'), +(22793, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:38.96+00', '{"cached":null,"ignore_cache":false}'), +(22794, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:39.014+00', '{"cached":null,"ignore_cache":false}'), +(22795, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:39.024+00', '{"cached":null,"ignore_cache":false}'), +(22796, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:39.042+00', '{"cached":null,"ignore_cache":false}'), +(22797, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:39.075+00', '{"cached":null,"ignore_cache":false}'), +(22798, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:17:39.075+00', '{"cached":null,"ignore_cache":false}'), +(22799, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:07.971+00', '{"cached":null,"ignore_cache":false}'), +(22800, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.016+00', '{"cached":null,"ignore_cache":false}'), +(22801, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.044+00', '{"cached":null,"ignore_cache":false}'), +(22802, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.087+00', '{"cached":null,"ignore_cache":false}'), +(22803, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.095+00', '{"cached":null,"ignore_cache":false}'), +(22804, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.096+00', '{"cached":null,"ignore_cache":false}'), +(22805, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.122+00', '{"cached":null,"ignore_cache":false}'), +(22806, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.186+00', '{"cached":null,"ignore_cache":false}'), +(22807, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.206+00', '{"cached":null,"ignore_cache":false}'), +(22808, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.227+00', '{"cached":null,"ignore_cache":false}'), +(22809, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.238+00', '{"cached":null,"ignore_cache":false}'), +(22810, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.239+00', '{"cached":null,"ignore_cache":false}'), +(22811, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.244+00', '{"cached":null,"ignore_cache":false}'), +(22812, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.256+00', '{"cached":null,"ignore_cache":false}'), +(22813, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.361+00', '{"cached":null,"ignore_cache":false}'), +(22814, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:08.396+00', '{"cached":null,"ignore_cache":false}'), +(22815, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.638+00', '{"cached":null,"ignore_cache":false}'), +(22816, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.672+00', '{"cached":null,"ignore_cache":false}'), +(22817, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.71+00', '{"cached":null,"ignore_cache":false}'), +(22818, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.721+00', '{"cached":null,"ignore_cache":false}'), +(22819, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.722+00', '{"cached":null,"ignore_cache":false}'), +(22820, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.756+00', '{"cached":null,"ignore_cache":false}'), +(22821, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.829+00', '{"cached":null,"ignore_cache":false}'), +(22822, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.843+00', '{"cached":null,"ignore_cache":false}'), +(22823, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.862+00', '{"cached":null,"ignore_cache":false}'), +(22824, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.904+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22825, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.914+00', '{"cached":null,"ignore_cache":false}'), +(22826, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.936+00', '{"cached":null,"ignore_cache":false}'), +(22827, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:37.984+00', '{"cached":null,"ignore_cache":false}'), +(22828, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:38.044+00', '{"cached":null,"ignore_cache":false}'), +(22829, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:38.119+00', '{"cached":null,"ignore_cache":false}'), +(22830, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:18:38.158+00', '{"cached":null,"ignore_cache":false}'), +(22831, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.088+00', '{"cached":null,"ignore_cache":false}'), +(22832, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.154+00', '{"cached":null,"ignore_cache":false}'), +(22833, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.161+00', '{"cached":null,"ignore_cache":false}'), +(22834, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.218+00', '{"cached":null,"ignore_cache":false}'), +(22835, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.268+00', '{"cached":null,"ignore_cache":false}'), +(22836, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.275+00', '{"cached":null,"ignore_cache":false}'), +(22837, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.326+00', '{"cached":null,"ignore_cache":false}'), +(22838, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.356+00', '{"cached":null,"ignore_cache":false}'), +(22839, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.366+00', '{"cached":null,"ignore_cache":false}'), +(22840, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.419+00', '{"cached":null,"ignore_cache":false}'), +(22841, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.43+00', '{"cached":null,"ignore_cache":false}'), +(22842, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.445+00', '{"cached":null,"ignore_cache":false}'), +(22843, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.462+00', '{"cached":null,"ignore_cache":false}'), +(22844, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.478+00', '{"cached":null,"ignore_cache":false}'), +(22845, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.53+00', '{"cached":null,"ignore_cache":false}'), +(22846, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:09.542+00', '{"cached":null,"ignore_cache":false}'), +(22847, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.591+00', '{"cached":null,"ignore_cache":false}'), +(22848, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.591+00', '{"cached":null,"ignore_cache":false}'), +(22849, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.603+00', '{"cached":null,"ignore_cache":false}'), +(22850, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.641+00', '{"cached":null,"ignore_cache":false}'), +(22851, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.654+00', '{"cached":null,"ignore_cache":false}'), +(22852, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.7+00', '{"cached":null,"ignore_cache":false}'), +(22853, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.706+00', '{"cached":null,"ignore_cache":false}'), +(22854, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.722+00', '{"cached":null,"ignore_cache":false}'), +(22855, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.76+00', '{"cached":null,"ignore_cache":false}'), +(22856, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.823+00', '{"cached":null,"ignore_cache":false}'), +(22857, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.831+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22858, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.897+00', '{"cached":null,"ignore_cache":false}'), +(22859, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.926+00', '{"cached":null,"ignore_cache":false}'), +(22860, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:38.936+00', '{"cached":null,"ignore_cache":false}'), +(22861, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:39.058+00', '{"cached":null,"ignore_cache":false}'), +(22862, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:19:39.128+00', '{"cached":null,"ignore_cache":false}'), +(22863, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.338+00', '{"cached":null,"ignore_cache":false}'), +(22864, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.357+00', '{"cached":null,"ignore_cache":false}'), +(22865, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.366+00', '{"cached":null,"ignore_cache":false}'), +(22866, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.376+00', '{"cached":null,"ignore_cache":false}'), +(22867, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.71+00', '{"cached":null,"ignore_cache":false}'), +(22868, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.767+00', '{"cached":null,"ignore_cache":false}'), +(22869, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.769+00', '{"cached":null,"ignore_cache":false}'), +(22870, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.779+00', '{"cached":null,"ignore_cache":false}'), +(22871, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.858+00', '{"cached":null,"ignore_cache":false}'), +(22872, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.862+00', '{"cached":null,"ignore_cache":false}'), +(22873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.872+00', '{"cached":null,"ignore_cache":false}'), +(22874, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.947+00', '{"cached":null,"ignore_cache":false}'), +(22875, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.962+00', '{"cached":null,"ignore_cache":false}'), +(22876, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.968+00', '{"cached":null,"ignore_cache":false}'), +(22877, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:08.97+00', '{"cached":null,"ignore_cache":false}'), +(22878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:09.102+00', '{"cached":null,"ignore_cache":false}'), +(22879, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.402+00', '{"cached":null,"ignore_cache":false}'), +(22880, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.474+00', '{"cached":null,"ignore_cache":false}'), +(22881, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.495+00', '{"cached":null,"ignore_cache":false}'), +(22882, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.519+00', '{"cached":null,"ignore_cache":false}'), +(22883, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.519+00', '{"cached":null,"ignore_cache":false}'), +(22884, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.59+00', '{"cached":null,"ignore_cache":false}'), +(22885, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.694+00', '{"cached":null,"ignore_cache":false}'), +(22886, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.721+00', '{"cached":null,"ignore_cache":false}'), +(22887, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.769+00', '{"cached":null,"ignore_cache":false}'), +(22888, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.806+00', '{"cached":null,"ignore_cache":false}'), +(22889, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.814+00', '{"cached":null,"ignore_cache":false}'), +(22890, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.837+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22891, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.856+00', '{"cached":null,"ignore_cache":false}'), +(22892, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.867+00', '{"cached":null,"ignore_cache":false}'), +(22893, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.876+00', '{"cached":null,"ignore_cache":false}'), +(22894, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:20:38.891+00', '{"cached":null,"ignore_cache":false}'), +(22895, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.05+00', '{"cached":null,"ignore_cache":false}'), +(22896, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.112+00', '{"cached":null,"ignore_cache":false}'), +(22897, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.124+00', '{"cached":null,"ignore_cache":false}'), +(22898, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.272+00', '{"cached":null,"ignore_cache":false}'), +(22899, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.309+00', '{"cached":null,"ignore_cache":false}'), +(22900, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.33+00', '{"cached":null,"ignore_cache":false}'), +(22901, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.343+00', '{"cached":null,"ignore_cache":false}'), +(22902, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.401+00', '{"cached":null,"ignore_cache":false}'), +(22903, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.44+00', '{"cached":null,"ignore_cache":false}'), +(22904, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.456+00', '{"cached":null,"ignore_cache":false}'), +(22905, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.457+00', '{"cached":null,"ignore_cache":false}'), +(22906, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.458+00', '{"cached":null,"ignore_cache":false}'), +(22907, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.486+00', '{"cached":null,"ignore_cache":false}'), +(22908, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.529+00', '{"cached":null,"ignore_cache":false}'), +(22909, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.655+00', '{"cached":null,"ignore_cache":false}'), +(22910, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:08.75+00', '{"cached":null,"ignore_cache":false}'), +(22911, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.661+00', '{"cached":null,"ignore_cache":false}'), +(22912, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.872+00', '{"cached":null,"ignore_cache":false}'), +(22913, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.985+00', '{"cached":null,"ignore_cache":false}'), +(22914, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.987+00', '{"cached":null,"ignore_cache":false}'), +(22915, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:37.995+00', '{"cached":null,"ignore_cache":false}'), +(22916, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.008+00', '{"cached":null,"ignore_cache":false}'), +(22917, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.052+00', '{"cached":null,"ignore_cache":false}'), +(22918, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.053+00', '{"cached":null,"ignore_cache":false}'), +(22919, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.073+00', '{"cached":null,"ignore_cache":false}'), +(22920, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.079+00', '{"cached":null,"ignore_cache":false}'), +(22921, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.11+00', '{"cached":null,"ignore_cache":false}'), +(22922, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.14+00', '{"cached":null,"ignore_cache":false}'), +(22923, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.145+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22924, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.15+00', '{"cached":null,"ignore_cache":false}'), +(22925, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.153+00', '{"cached":null,"ignore_cache":false}'), +(22926, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:21:38.177+00', '{"cached":null,"ignore_cache":false}'), +(22927, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.137+00', '{"cached":null,"ignore_cache":false}'), +(22928, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.159+00', '{"cached":null,"ignore_cache":false}'), +(22929, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.279+00', '{"cached":null,"ignore_cache":false}'), +(22930, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.334+00', '{"cached":null,"ignore_cache":false}'), +(22931, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.356+00', '{"cached":null,"ignore_cache":false}'), +(22932, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.356+00', '{"cached":null,"ignore_cache":false}'), +(22933, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.377+00', '{"cached":null,"ignore_cache":false}'), +(22934, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.463+00', '{"cached":null,"ignore_cache":false}'), +(22935, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.513+00', '{"cached":null,"ignore_cache":false}'), +(22936, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.514+00', '{"cached":null,"ignore_cache":false}'), +(22937, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.639+00', '{"cached":null,"ignore_cache":false}'), +(22938, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.647+00', '{"cached":null,"ignore_cache":false}'), +(22939, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.661+00', '{"cached":null,"ignore_cache":false}'), +(22940, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.665+00', '{"cached":null,"ignore_cache":false}'), +(22941, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.679+00', '{"cached":null,"ignore_cache":false}'), +(22942, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:11.777+00', '{"cached":null,"ignore_cache":false}'), +(22943, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.103+00', '{"cached":null,"ignore_cache":false}'), +(22944, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.13+00', '{"cached":null,"ignore_cache":false}'), +(22945, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.209+00', '{"cached":null,"ignore_cache":false}'), +(22946, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.286+00', '{"cached":null,"ignore_cache":false}'), +(22947, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.312+00', '{"cached":null,"ignore_cache":false}'), +(22948, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.316+00', '{"cached":null,"ignore_cache":false}'), +(22949, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.322+00', '{"cached":null,"ignore_cache":false}'), +(22950, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.376+00', '{"cached":null,"ignore_cache":false}'), +(22951, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.386+00', '{"cached":null,"ignore_cache":false}'), +(22952, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.457+00', '{"cached":null,"ignore_cache":false}'), +(22953, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.489+00', '{"cached":null,"ignore_cache":false}'), +(22954, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.538+00', '{"cached":null,"ignore_cache":false}'), +(22955, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.549+00', '{"cached":null,"ignore_cache":false}'), +(22956, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.572+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22957, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.576+00', '{"cached":null,"ignore_cache":false}'), +(22958, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:22:40.584+00', '{"cached":null,"ignore_cache":false}'), +(22959, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.844+00', '{"cached":null,"ignore_cache":false}'), +(22960, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.846+00', '{"cached":null,"ignore_cache":false}'), +(22961, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.873+00', '{"cached":null,"ignore_cache":false}'), +(22962, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.878+00', '{"cached":null,"ignore_cache":false}'), +(22963, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.906+00', '{"cached":null,"ignore_cache":false}'), +(22964, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:09.949+00', '{"cached":null,"ignore_cache":false}'), +(22965, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.019+00', '{"cached":null,"ignore_cache":false}'), +(22966, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.032+00', '{"cached":null,"ignore_cache":false}'), +(22967, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.051+00', '{"cached":null,"ignore_cache":false}'), +(22968, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.052+00', '{"cached":null,"ignore_cache":false}'), +(22969, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.077+00', '{"cached":null,"ignore_cache":false}'), +(22970, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.09+00', '{"cached":null,"ignore_cache":false}'), +(22971, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.095+00', '{"cached":null,"ignore_cache":false}'), +(22972, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.117+00', '{"cached":null,"ignore_cache":false}'), +(22973, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.132+00', '{"cached":null,"ignore_cache":false}'), +(22974, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:10.195+00', '{"cached":null,"ignore_cache":false}'), +(22975, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.63+00', '{"cached":null,"ignore_cache":false}'), +(22976, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.656+00', '{"cached":null,"ignore_cache":false}'), +(22977, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.67+00', '{"cached":null,"ignore_cache":false}'), +(22978, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.681+00', '{"cached":null,"ignore_cache":false}'), +(22979, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.69+00', '{"cached":null,"ignore_cache":false}'), +(22980, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.737+00', '{"cached":null,"ignore_cache":false}'), +(22981, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.81+00', '{"cached":null,"ignore_cache":false}'), +(22982, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.885+00', '{"cached":null,"ignore_cache":false}'), +(22983, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.91+00', '{"cached":null,"ignore_cache":false}'), +(22984, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.925+00', '{"cached":null,"ignore_cache":false}'), +(22985, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.933+00', '{"cached":null,"ignore_cache":false}'), +(22986, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.944+00', '{"cached":null,"ignore_cache":false}'), +(22987, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.954+00', '{"cached":null,"ignore_cache":false}'), +(22988, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:39.987+00', '{"cached":null,"ignore_cache":false}'), +(22989, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:40.02+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(22990, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:23:40.112+00', '{"cached":null,"ignore_cache":false}'), +(22991, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.617+00', '{"cached":null,"ignore_cache":false}'), +(22992, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.707+00', '{"cached":null,"ignore_cache":false}'), +(22993, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.774+00', '{"cached":null,"ignore_cache":false}'), +(22994, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.835+00', '{"cached":null,"ignore_cache":false}'), +(22995, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.854+00', '{"cached":null,"ignore_cache":false}'), +(22996, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.925+00', '{"cached":null,"ignore_cache":false}'), +(22997, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.938+00', '{"cached":null,"ignore_cache":false}'), +(22998, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.968+00', '{"cached":null,"ignore_cache":false}'), +(22999, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:10.972+00', '{"cached":null,"ignore_cache":false}'), +(23000, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:11.006+00', '{"cached":null,"ignore_cache":false}'), +(23001, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:11.011+00', '{"cached":null,"ignore_cache":false}'), +(23002, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:11.026+00', '{"cached":null,"ignore_cache":false}'), +(23003, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:11.036+00', '{"cached":null,"ignore_cache":false}'), +(23004, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:11.039+00', '{"cached":null,"ignore_cache":false}'), +(23005, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:11.043+00', '{"cached":null,"ignore_cache":false}'), +(23006, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:11.055+00', '{"cached":null,"ignore_cache":false}'), +(23007, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.783+00', '{"cached":null,"ignore_cache":false}'), +(23008, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:40.999+00', '{"cached":null,"ignore_cache":false}'), +(23009, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.029+00', '{"cached":null,"ignore_cache":false}'), +(23010, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.067+00', '{"cached":null,"ignore_cache":false}'), +(23011, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.143+00', '{"cached":null,"ignore_cache":false}'), +(23012, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.199+00', '{"cached":null,"ignore_cache":false}'), +(23013, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.254+00', '{"cached":null,"ignore_cache":false}'), +(23014, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.271+00', '{"cached":null,"ignore_cache":false}'), +(23015, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.284+00', '{"cached":null,"ignore_cache":false}'), +(23016, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.298+00', '{"cached":null,"ignore_cache":false}'), +(23017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.322+00', '{"cached":null,"ignore_cache":false}'), +(23018, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.324+00', '{"cached":null,"ignore_cache":false}'), +(23019, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.357+00', '{"cached":null,"ignore_cache":false}'), +(23020, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.379+00', '{"cached":null,"ignore_cache":false}'), +(23021, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.39+00', '{"cached":null,"ignore_cache":false}'), +(23022, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:24:41.488+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23023, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:10.672+00', '{"cached":null,"ignore_cache":false}'), +(23024, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.079+00', '{"cached":null,"ignore_cache":false}'), +(23025, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.133+00', '{"cached":null,"ignore_cache":false}'), +(23026, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.186+00', '{"cached":null,"ignore_cache":false}'), +(23027, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.271+00', '{"cached":null,"ignore_cache":false}'), +(23028, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.337+00', '{"cached":null,"ignore_cache":false}'), +(23029, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.348+00', '{"cached":null,"ignore_cache":false}'), +(23030, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.361+00', '{"cached":null,"ignore_cache":false}'), +(23031, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.364+00', '{"cached":null,"ignore_cache":false}'), +(23032, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.375+00', '{"cached":null,"ignore_cache":false}'), +(23033, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.379+00', '{"cached":null,"ignore_cache":false}'), +(23034, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.4+00', '{"cached":null,"ignore_cache":false}'), +(23035, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.432+00', '{"cached":null,"ignore_cache":false}'), +(23036, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.434+00', '{"cached":null,"ignore_cache":false}'), +(23037, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.498+00', '{"cached":null,"ignore_cache":false}'), +(23038, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:11.502+00', '{"cached":null,"ignore_cache":false}'), +(23039, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.229+00', '{"cached":null,"ignore_cache":false}'), +(23040, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.229+00', '{"cached":null,"ignore_cache":false}'), +(23041, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.282+00', '{"cached":null,"ignore_cache":false}'), +(23042, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.331+00', '{"cached":null,"ignore_cache":false}'), +(23043, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.359+00', '{"cached":null,"ignore_cache":false}'), +(23044, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.374+00', '{"cached":null,"ignore_cache":false}'), +(23045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.393+00', '{"cached":null,"ignore_cache":false}'), +(23046, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.399+00', '{"cached":null,"ignore_cache":false}'), +(23047, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.414+00', '{"cached":null,"ignore_cache":false}'), +(23048, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.418+00', '{"cached":null,"ignore_cache":false}'), +(23049, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.45+00', '{"cached":null,"ignore_cache":false}'), +(23050, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.458+00', '{"cached":null,"ignore_cache":false}'), +(23051, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.496+00', '{"cached":null,"ignore_cache":false}'), +(23052, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.51+00', '{"cached":null,"ignore_cache":false}'), +(23053, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.516+00', '{"cached":null,"ignore_cache":false}'), +(23054, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:25:40.546+00', '{"cached":null,"ignore_cache":false}'), +(23055, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.618+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23056, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.662+00', '{"cached":null,"ignore_cache":false}'), +(23057, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.699+00', '{"cached":null,"ignore_cache":false}'), +(23058, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.709+00', '{"cached":null,"ignore_cache":false}'), +(23059, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.72+00', '{"cached":null,"ignore_cache":false}'), +(23060, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.746+00', '{"cached":null,"ignore_cache":false}'), +(23061, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.764+00', '{"cached":null,"ignore_cache":false}'), +(23062, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.769+00', '{"cached":null,"ignore_cache":false}'), +(23063, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.783+00', '{"cached":null,"ignore_cache":false}'), +(23064, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.787+00', '{"cached":null,"ignore_cache":false}'), +(23065, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.793+00', '{"cached":null,"ignore_cache":false}'), +(23066, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.82+00', '{"cached":null,"ignore_cache":false}'), +(23067, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.829+00', '{"cached":null,"ignore_cache":false}'), +(23068, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.841+00', '{"cached":null,"ignore_cache":false}'), +(23069, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.877+00', '{"cached":null,"ignore_cache":false}'), +(23070, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:09.972+00', '{"cached":null,"ignore_cache":false}'), +(23071, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.774+00', '{"cached":null,"ignore_cache":false}'), +(23072, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.846+00', '{"cached":null,"ignore_cache":false}'), +(23073, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.851+00', '{"cached":null,"ignore_cache":false}'), +(23074, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.868+00', '{"cached":null,"ignore_cache":false}'), +(23075, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.903+00', '{"cached":null,"ignore_cache":false}'), +(23076, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.907+00', '{"cached":null,"ignore_cache":false}'), +(23077, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.922+00', '{"cached":null,"ignore_cache":false}'), +(23078, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.926+00', '{"cached":null,"ignore_cache":false}'), +(23079, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.94+00', '{"cached":null,"ignore_cache":false}'), +(23080, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.952+00', '{"cached":null,"ignore_cache":false}'), +(23081, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.971+00', '{"cached":null,"ignore_cache":false}'), +(23082, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.986+00', '{"cached":null,"ignore_cache":false}'), +(23083, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:39.996+00', '{"cached":null,"ignore_cache":false}'), +(23084, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:40.035+00', '{"cached":null,"ignore_cache":false}'), +(23085, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:40.051+00', '{"cached":null,"ignore_cache":false}'), +(23086, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:26:40.074+00', '{"cached":null,"ignore_cache":false}'), +(23087, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.742+00', '{"cached":null,"ignore_cache":false}'), +(23088, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.785+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23089, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.786+00', '{"cached":null,"ignore_cache":false}'), +(23090, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.799+00', '{"cached":null,"ignore_cache":false}'), +(23091, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.845+00', '{"cached":null,"ignore_cache":false}'), +(23092, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.85+00', '{"cached":null,"ignore_cache":false}'), +(23093, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.859+00', '{"cached":null,"ignore_cache":false}'), +(23094, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.872+00', '{"cached":null,"ignore_cache":false}'), +(23095, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.897+00', '{"cached":null,"ignore_cache":false}'), +(23096, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.913+00', '{"cached":null,"ignore_cache":false}'), +(23097, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.928+00', '{"cached":null,"ignore_cache":false}'), +(23098, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.951+00', '{"cached":null,"ignore_cache":false}'), +(23099, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.974+00', '{"cached":null,"ignore_cache":false}'), +(23100, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:09.996+00', '{"cached":null,"ignore_cache":false}'), +(23101, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:10.132+00', '{"cached":null,"ignore_cache":false}'), +(23102, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:10.139+00', '{"cached":null,"ignore_cache":false}'), +(23103, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.709+00', '{"cached":null,"ignore_cache":false}'), +(23104, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.875+00', '{"cached":null,"ignore_cache":false}'), +(23105, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.936+00', '{"cached":null,"ignore_cache":false}'), +(23106, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.973+00', '{"cached":null,"ignore_cache":false}'), +(23107, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:39.977+00', '{"cached":null,"ignore_cache":false}'), +(23108, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.015+00', '{"cached":null,"ignore_cache":false}'), +(23109, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.039+00', '{"cached":null,"ignore_cache":false}'), +(23110, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.042+00', '{"cached":null,"ignore_cache":false}'), +(23111, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.048+00', '{"cached":null,"ignore_cache":false}'), +(23112, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.06+00', '{"cached":null,"ignore_cache":false}'), +(23113, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.073+00', '{"cached":null,"ignore_cache":false}'), +(23114, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.093+00', '{"cached":null,"ignore_cache":false}'), +(23115, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.104+00', '{"cached":null,"ignore_cache":false}'), +(23116, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.123+00', '{"cached":null,"ignore_cache":false}'), +(23117, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.155+00', '{"cached":null,"ignore_cache":false}'), +(23118, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:27:40.207+00', '{"cached":null,"ignore_cache":false}'), +(23119, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.255+00', '{"cached":null,"ignore_cache":false}'), +(23120, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.329+00', '{"cached":null,"ignore_cache":false}'), +(23121, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.427+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23122, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.461+00', '{"cached":null,"ignore_cache":false}'), +(23123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.483+00', '{"cached":null,"ignore_cache":false}'), +(23124, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.543+00', '{"cached":null,"ignore_cache":false}'), +(23125, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.56+00', '{"cached":null,"ignore_cache":false}'), +(23126, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.737+00', '{"cached":null,"ignore_cache":false}'), +(23127, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.752+00', '{"cached":null,"ignore_cache":false}'), +(23128, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.764+00', '{"cached":null,"ignore_cache":false}'), +(23129, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.778+00', '{"cached":null,"ignore_cache":false}'), +(23130, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.793+00', '{"cached":null,"ignore_cache":false}'), +(23131, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.811+00', '{"cached":null,"ignore_cache":false}'), +(23132, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.817+00', '{"cached":null,"ignore_cache":false}'), +(23133, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.824+00', '{"cached":null,"ignore_cache":false}'), +(23134, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:10.831+00', '{"cached":null,"ignore_cache":false}'), +(23135, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.791+00', '{"cached":null,"ignore_cache":false}'), +(23136, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.926+00', '{"cached":null,"ignore_cache":false}'), +(23137, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.966+00', '{"cached":null,"ignore_cache":false}'), +(23138, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:39.979+00', '{"cached":null,"ignore_cache":false}'), +(23139, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.006+00', '{"cached":null,"ignore_cache":false}'), +(23140, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.091+00', '{"cached":null,"ignore_cache":false}'), +(23141, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.106+00', '{"cached":null,"ignore_cache":false}'), +(23142, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.117+00', '{"cached":null,"ignore_cache":false}'), +(23143, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.193+00', '{"cached":null,"ignore_cache":false}'), +(23144, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.266+00', '{"cached":null,"ignore_cache":false}'), +(23145, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.29+00', '{"cached":null,"ignore_cache":false}'), +(23146, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.343+00', '{"cached":null,"ignore_cache":false}'), +(23147, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.388+00', '{"cached":null,"ignore_cache":false}'), +(23148, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.4+00', '{"cached":null,"ignore_cache":false}'), +(23149, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.536+00', '{"cached":null,"ignore_cache":false}'), +(23150, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:28:40.605+00', '{"cached":null,"ignore_cache":false}'), +(23151, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.03+00', '{"cached":null,"ignore_cache":false}'), +(23152, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.148+00', '{"cached":null,"ignore_cache":false}'), +(23153, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.224+00', '{"cached":null,"ignore_cache":false}'), +(23154, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.256+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23155, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.262+00', '{"cached":null,"ignore_cache":false}'), +(23156, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.345+00', '{"cached":null,"ignore_cache":false}'), +(23157, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.473+00', '{"cached":null,"ignore_cache":false}'), +(23158, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.475+00', '{"cached":null,"ignore_cache":false}'), +(23159, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.494+00', '{"cached":null,"ignore_cache":false}'), +(23160, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.537+00', '{"cached":null,"ignore_cache":false}'), +(23161, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.554+00', '{"cached":null,"ignore_cache":false}'), +(23162, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.645+00', '{"cached":null,"ignore_cache":false}'), +(23163, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.651+00', '{"cached":null,"ignore_cache":false}'), +(23164, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.651+00', '{"cached":null,"ignore_cache":false}'), +(23165, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.666+00', '{"cached":null,"ignore_cache":false}'), +(23166, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:10.843+00', '{"cached":null,"ignore_cache":false}'), +(23167, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.61+00', '{"cached":null,"ignore_cache":false}'), +(23168, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.83+00', '{"cached":null,"ignore_cache":false}'), +(23169, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.93+00', '{"cached":null,"ignore_cache":false}'), +(23170, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.947+00', '{"cached":null,"ignore_cache":false}'), +(23171, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:40.973+00', '{"cached":null,"ignore_cache":false}'), +(23172, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.027+00', '{"cached":null,"ignore_cache":false}'), +(23173, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.132+00', '{"cached":null,"ignore_cache":false}'), +(23174, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.139+00', '{"cached":null,"ignore_cache":false}'), +(23175, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.171+00', '{"cached":null,"ignore_cache":false}'), +(23176, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.195+00', '{"cached":null,"ignore_cache":false}'), +(23177, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.239+00', '{"cached":null,"ignore_cache":false}'), +(23178, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.248+00', '{"cached":null,"ignore_cache":false}'), +(23179, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.285+00', '{"cached":null,"ignore_cache":false}'), +(23180, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.377+00', '{"cached":null,"ignore_cache":false}'), +(23181, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.414+00', '{"cached":null,"ignore_cache":false}'), +(23182, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:29:41.471+00', '{"cached":null,"ignore_cache":false}'), +(23183, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.022+00', '{"cached":null,"ignore_cache":false}'), +(23184, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.213+00', '{"cached":null,"ignore_cache":false}'), +(23185, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.374+00', '{"cached":null,"ignore_cache":false}'), +(23186, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.451+00', '{"cached":null,"ignore_cache":false}'), +(23187, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.489+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23188, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.513+00', '{"cached":null,"ignore_cache":false}'), +(23189, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.542+00', '{"cached":null,"ignore_cache":false}'), +(23190, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.606+00', '{"cached":null,"ignore_cache":false}'), +(23191, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.618+00', '{"cached":null,"ignore_cache":false}'), +(23192, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.653+00', '{"cached":null,"ignore_cache":false}'), +(23193, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.674+00', '{"cached":null,"ignore_cache":false}'), +(23194, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.702+00', '{"cached":null,"ignore_cache":false}'), +(23195, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.735+00', '{"cached":null,"ignore_cache":false}'), +(23196, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.736+00', '{"cached":null,"ignore_cache":false}'), +(23197, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.765+00', '{"cached":null,"ignore_cache":false}'), +(23198, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:10.793+00', '{"cached":null,"ignore_cache":false}'), +(23199, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.843+00', '{"cached":null,"ignore_cache":false}'), +(23200, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:40.978+00', '{"cached":null,"ignore_cache":false}'), +(23201, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.003+00', '{"cached":null,"ignore_cache":false}'), +(23202, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.016+00', '{"cached":null,"ignore_cache":false}'), +(23203, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.039+00', '{"cached":null,"ignore_cache":false}'), +(23204, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.061+00', '{"cached":null,"ignore_cache":false}'), +(23205, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.086+00', '{"cached":null,"ignore_cache":false}'), +(23206, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.101+00', '{"cached":null,"ignore_cache":false}'), +(23207, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.112+00', '{"cached":null,"ignore_cache":false}'), +(23208, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.12+00', '{"cached":null,"ignore_cache":false}'), +(23209, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.128+00', '{"cached":null,"ignore_cache":false}'), +(23210, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.133+00', '{"cached":null,"ignore_cache":false}'), +(23211, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.195+00', '{"cached":null,"ignore_cache":false}'), +(23212, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.215+00', '{"cached":null,"ignore_cache":false}'), +(23213, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.306+00', '{"cached":null,"ignore_cache":false}'), +(23214, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:30:41.318+00', '{"cached":null,"ignore_cache":false}'), +(23215, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.729+00', '{"cached":null,"ignore_cache":false}'), +(23216, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.756+00', '{"cached":null,"ignore_cache":false}'), +(23217, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.757+00', '{"cached":null,"ignore_cache":false}'), +(23218, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.861+00', '{"cached":null,"ignore_cache":false}'), +(23219, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.866+00', '{"cached":null,"ignore_cache":false}'), +(23220, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.879+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23221, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.888+00', '{"cached":null,"ignore_cache":false}'), +(23222, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.927+00', '{"cached":null,"ignore_cache":false}'), +(23223, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.95+00', '{"cached":null,"ignore_cache":false}'), +(23224, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:10.962+00', '{"cached":null,"ignore_cache":false}'), +(23225, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:11.02+00', '{"cached":null,"ignore_cache":false}'), +(23226, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:11.037+00', '{"cached":null,"ignore_cache":false}'), +(23227, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:11.044+00', '{"cached":null,"ignore_cache":false}'), +(23228, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:11.048+00', '{"cached":null,"ignore_cache":false}'), +(23229, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:11.083+00', '{"cached":null,"ignore_cache":false}'), +(23230, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:11.143+00', '{"cached":null,"ignore_cache":false}'), +(23231, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.894+00', '{"cached":null,"ignore_cache":false}'), +(23232, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:40.928+00', '{"cached":null,"ignore_cache":false}'), +(23233, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.028+00', '{"cached":null,"ignore_cache":false}'), +(23234, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.074+00', '{"cached":null,"ignore_cache":false}'), +(23235, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.112+00', '{"cached":null,"ignore_cache":false}'), +(23236, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.171+00', '{"cached":null,"ignore_cache":false}'), +(23237, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.173+00', '{"cached":null,"ignore_cache":false}'), +(23238, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.218+00', '{"cached":null,"ignore_cache":false}'), +(23239, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.271+00', '{"cached":null,"ignore_cache":false}'), +(23240, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.284+00', '{"cached":null,"ignore_cache":false}'), +(23241, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.299+00', '{"cached":null,"ignore_cache":false}'), +(23242, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.327+00', '{"cached":null,"ignore_cache":false}'), +(23243, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.411+00', '{"cached":null,"ignore_cache":false}'), +(23244, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.445+00', '{"cached":null,"ignore_cache":false}'), +(23245, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.446+00', '{"cached":null,"ignore_cache":false}'), +(23246, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:31:41.524+00', '{"cached":null,"ignore_cache":false}'), +(23247, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.066+00', '{"cached":null,"ignore_cache":false}'), +(23248, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.307+00', '{"cached":null,"ignore_cache":false}'), +(23249, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.309+00', '{"cached":null,"ignore_cache":false}'), +(23250, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.418+00', '{"cached":null,"ignore_cache":false}'), +(23251, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.467+00', '{"cached":null,"ignore_cache":false}'), +(23252, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.516+00', '{"cached":null,"ignore_cache":false}'), +(23253, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.538+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23254, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.538+00', '{"cached":null,"ignore_cache":false}'), +(23255, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.605+00', '{"cached":null,"ignore_cache":false}'), +(23256, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.624+00', '{"cached":null,"ignore_cache":false}'), +(23257, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.663+00', '{"cached":null,"ignore_cache":false}'), +(23258, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.674+00', '{"cached":null,"ignore_cache":false}'), +(23259, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.678+00', '{"cached":null,"ignore_cache":false}'), +(23260, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.71+00', '{"cached":null,"ignore_cache":false}'), +(23261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.713+00', '{"cached":null,"ignore_cache":false}'), +(23262, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:10.846+00', '{"cached":null,"ignore_cache":false}'), +(23263, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.111+00', '{"cached":null,"ignore_cache":false}'), +(23264, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.171+00', '{"cached":null,"ignore_cache":false}'), +(23265, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.301+00', '{"cached":null,"ignore_cache":false}'), +(23266, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.389+00', '{"cached":null,"ignore_cache":false}'), +(23267, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.451+00', '{"cached":null,"ignore_cache":false}'), +(23268, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.52+00', '{"cached":null,"ignore_cache":false}'), +(23269, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.534+00', '{"cached":null,"ignore_cache":false}'), +(23270, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.597+00', '{"cached":null,"ignore_cache":false}'), +(23271, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.754+00', '{"cached":null,"ignore_cache":false}'), +(23272, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.755+00', '{"cached":null,"ignore_cache":false}'), +(23273, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.769+00', '{"cached":null,"ignore_cache":false}'), +(23274, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.78+00', '{"cached":null,"ignore_cache":false}'), +(23275, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.844+00', '{"cached":null,"ignore_cache":false}'), +(23276, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.862+00', '{"cached":null,"ignore_cache":false}'), +(23277, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:40.932+00', '{"cached":null,"ignore_cache":false}'), +(23278, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:32:41.033+00', '{"cached":null,"ignore_cache":false}'), +(23279, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.749+00', '{"cached":null,"ignore_cache":false}'), +(23280, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.801+00', '{"cached":null,"ignore_cache":false}'), +(23281, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:10.943+00', '{"cached":null,"ignore_cache":false}'), +(23282, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.101+00', '{"cached":null,"ignore_cache":false}'), +(23283, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.128+00', '{"cached":null,"ignore_cache":false}'), +(23284, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.169+00', '{"cached":null,"ignore_cache":false}'), +(23285, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.169+00', '{"cached":null,"ignore_cache":false}'), +(23286, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.202+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23287, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.22+00', '{"cached":null,"ignore_cache":false}'), +(23288, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.255+00', '{"cached":null,"ignore_cache":false}'), +(23289, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.266+00', '{"cached":null,"ignore_cache":false}'), +(23290, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.327+00', '{"cached":null,"ignore_cache":false}'), +(23291, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.342+00', '{"cached":null,"ignore_cache":false}'), +(23292, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.352+00', '{"cached":null,"ignore_cache":false}'), +(23293, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.362+00', '{"cached":null,"ignore_cache":false}'), +(23294, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:11.367+00', '{"cached":null,"ignore_cache":false}'), +(23295, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.383+00', '{"cached":null,"ignore_cache":false}'), +(23296, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.415+00', '{"cached":null,"ignore_cache":false}'), +(23297, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.461+00', '{"cached":null,"ignore_cache":false}'), +(23298, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.493+00', '{"cached":null,"ignore_cache":false}'), +(23299, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.526+00', '{"cached":null,"ignore_cache":false}'), +(23300, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.527+00', '{"cached":null,"ignore_cache":false}'), +(23301, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.564+00', '{"cached":null,"ignore_cache":false}'), +(23302, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.609+00', '{"cached":null,"ignore_cache":false}'), +(23303, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.611+00', '{"cached":null,"ignore_cache":false}'), +(23304, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.623+00', '{"cached":null,"ignore_cache":false}'), +(23305, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.648+00', '{"cached":null,"ignore_cache":false}'), +(23306, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.649+00', '{"cached":null,"ignore_cache":false}'), +(23307, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.656+00', '{"cached":null,"ignore_cache":false}'), +(23308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.662+00', '{"cached":null,"ignore_cache":false}'), +(23309, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.713+00', '{"cached":null,"ignore_cache":false}'), +(23310, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:33:40.73+00', '{"cached":null,"ignore_cache":false}'), +(23311, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.544+00', '{"cached":null,"ignore_cache":false}'), +(23312, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.648+00', '{"cached":null,"ignore_cache":false}'), +(23313, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.649+00', '{"cached":null,"ignore_cache":false}'), +(23314, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.659+00', '{"cached":null,"ignore_cache":false}'), +(23315, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.663+00', '{"cached":null,"ignore_cache":false}'), +(23316, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.678+00', '{"cached":null,"ignore_cache":false}'), +(23317, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.695+00', '{"cached":null,"ignore_cache":false}'), +(23318, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.703+00', '{"cached":null,"ignore_cache":false}'), +(23319, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.733+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23320, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.769+00', '{"cached":null,"ignore_cache":false}'), +(23321, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.797+00', '{"cached":null,"ignore_cache":false}'), +(23322, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.804+00', '{"cached":null,"ignore_cache":false}'), +(23323, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.81+00', '{"cached":null,"ignore_cache":false}'), +(23324, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.818+00', '{"cached":null,"ignore_cache":false}'), +(23325, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.823+00', '{"cached":null,"ignore_cache":false}'), +(23326, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:34:10.836+00', '{"cached":null,"ignore_cache":false}'), +(23327, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.22+00', '{"cached":null,"ignore_cache":false}'), +(23328, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.349+00', '{"cached":null,"ignore_cache":false}'), +(23329, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.422+00', '{"cached":null,"ignore_cache":false}'), +(23330, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.484+00', '{"cached":null,"ignore_cache":false}'), +(23331, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.556+00', '{"cached":null,"ignore_cache":false}'), +(23332, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.582+00', '{"cached":null,"ignore_cache":false}'), +(23333, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.659+00', '{"cached":null,"ignore_cache":false}'), +(23334, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.72+00', '{"cached":null,"ignore_cache":false}'), +(23335, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.778+00', '{"cached":null,"ignore_cache":false}'), +(23336, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.869+00', '{"cached":null,"ignore_cache":false}'), +(23337, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.879+00', '{"cached":null,"ignore_cache":false}'), +(23338, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.92+00', '{"cached":null,"ignore_cache":false}'), +(23339, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:02.981+00', '{"cached":null,"ignore_cache":false}'), +(23340, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:03.001+00', '{"cached":null,"ignore_cache":false}'), +(23341, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:03.107+00', '{"cached":null,"ignore_cache":false}'), +(23342, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:43:03.218+00', '{"cached":null,"ignore_cache":false}'), +(23343, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.89+00', '{"cached":null,"ignore_cache":false}'), +(23344, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:15.938+00', '{"cached":null,"ignore_cache":false}'), +(23345, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.468+00', '{"cached":null,"ignore_cache":false}'), +(23346, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.47+00', '{"cached":null,"ignore_cache":false}'), +(23347, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.474+00', '{"cached":null,"ignore_cache":false}'), +(23348, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.474+00', '{"cached":null,"ignore_cache":false}'), +(23349, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.475+00', '{"cached":null,"ignore_cache":false}'), +(23350, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.475+00', '{"cached":null,"ignore_cache":false}'), +(23351, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.475+00', '{"cached":null,"ignore_cache":false}'), +(23352, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.476+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23353, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.493+00', '{"cached":null,"ignore_cache":false}'), +(23354, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.554+00', '{"cached":null,"ignore_cache":false}'), +(23355, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.555+00', '{"cached":null,"ignore_cache":false}'), +(23356, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.603+00', '{"cached":null,"ignore_cache":false}'), +(23357, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.614+00', '{"cached":null,"ignore_cache":false}'), +(23358, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:16.808+00', '{"cached":null,"ignore_cache":false}'), +(23359, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:17.033+00', '{"cached":null,"ignore_cache":false}'), +(23360, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:17.186+00', '{"cached":null,"ignore_cache":false}'), +(23361, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:17.2+00', '{"cached":null,"ignore_cache":false}'), +(23362, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:17.255+00', '{"cached":null,"ignore_cache":false}'), +(23363, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.314+00', '{"cached":null,"ignore_cache":false}'), +(23364, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.348+00', '{"cached":null,"ignore_cache":false}'), +(23365, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.404+00', '{"cached":null,"ignore_cache":false}'), +(23366, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.436+00', '{"cached":null,"ignore_cache":false}'), +(23367, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.464+00', '{"cached":null,"ignore_cache":false}'), +(23368, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.465+00', '{"cached":null,"ignore_cache":false}'), +(23369, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.486+00', '{"cached":null,"ignore_cache":false}'), +(23370, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.602+00', '{"cached":null,"ignore_cache":false}'), +(23371, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.603+00', '{"cached":null,"ignore_cache":false}'), +(23372, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.605+00', '{"cached":null,"ignore_cache":false}'), +(23373, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.638+00', '{"cached":null,"ignore_cache":false}'), +(23374, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.653+00', '{"cached":null,"ignore_cache":false}'), +(23375, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.694+00', '{"cached":null,"ignore_cache":false}'), +(23376, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.707+00', '{"cached":null,"ignore_cache":false}'), +(23377, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.766+00', '{"cached":null,"ignore_cache":false}'), +(23378, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:46:45.779+00', '{"cached":null,"ignore_cache":false}'), +(23379, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.869+00', '{"cached":null,"ignore_cache":false}'), +(23380, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:16.924+00', '{"cached":null,"ignore_cache":false}'), +(23381, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.015+00', '{"cached":null,"ignore_cache":false}'), +(23382, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.037+00', '{"cached":null,"ignore_cache":false}'), +(23383, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.04+00', '{"cached":null,"ignore_cache":false}'), +(23384, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.06+00', '{"cached":null,"ignore_cache":false}'), +(23385, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.099+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23386, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.151+00', '{"cached":null,"ignore_cache":false}'), +(23387, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.193+00', '{"cached":null,"ignore_cache":false}'), +(23388, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.206+00', '{"cached":null,"ignore_cache":false}'), +(23389, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.226+00', '{"cached":null,"ignore_cache":false}'), +(23390, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.283+00', '{"cached":null,"ignore_cache":false}'), +(23391, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.302+00', '{"cached":null,"ignore_cache":false}'), +(23392, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.307+00', '{"cached":null,"ignore_cache":false}'), +(23393, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.314+00', '{"cached":null,"ignore_cache":false}'), +(23394, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:17.326+00', '{"cached":null,"ignore_cache":false}'), +(23395, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.387+00', '{"cached":null,"ignore_cache":false}'), +(23396, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.387+00', '{"cached":null,"ignore_cache":false}'), +(23397, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.389+00', '{"cached":null,"ignore_cache":false}'), +(23398, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.398+00', '{"cached":null,"ignore_cache":false}'), +(23399, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.403+00', '{"cached":null,"ignore_cache":false}'), +(23400, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.469+00', '{"cached":null,"ignore_cache":false}'), +(23401, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:49.614+00', '{"cached":null,"ignore_cache":false}'), +(23402, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.349+00', '{"cached":null,"ignore_cache":false}'), +(23403, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.402+00', '{"cached":null,"ignore_cache":false}'), +(23404, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.412+00', '{"cached":null,"ignore_cache":false}'), +(23405, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.449+00', '{"cached":null,"ignore_cache":false}'), +(23406, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.451+00', '{"cached":null,"ignore_cache":false}'), +(23407, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.463+00', '{"cached":null,"ignore_cache":false}'), +(23408, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.469+00', '{"cached":null,"ignore_cache":false}'), +(23409, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.477+00', '{"cached":null,"ignore_cache":false}'), +(23410, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:47:51.48+00', '{"cached":null,"ignore_cache":false}'), +(23411, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.313+00', '{"cached":null,"ignore_cache":false}'), +(23412, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.348+00', '{"cached":null,"ignore_cache":false}'), +(23413, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.41+00', '{"cached":null,"ignore_cache":false}'), +(23414, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.451+00', '{"cached":null,"ignore_cache":false}'), +(23415, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.471+00', '{"cached":null,"ignore_cache":false}'), +(23416, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.482+00', '{"cached":null,"ignore_cache":false}'), +(23417, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:24.508+00', '{"cached":null,"ignore_cache":false}'), +(23418, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.493+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23419, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.543+00', '{"cached":null,"ignore_cache":false}'), +(23420, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.558+00', '{"cached":null,"ignore_cache":false}'), +(23421, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.562+00', '{"cached":null,"ignore_cache":false}'), +(23422, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.567+00', '{"cached":null,"ignore_cache":false}'), +(23423, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.593+00', '{"cached":null,"ignore_cache":false}'), +(23424, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.613+00', '{"cached":null,"ignore_cache":false}'), +(23425, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.665+00', '{"cached":null,"ignore_cache":false}'), +(23426, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:26.674+00', '{"cached":null,"ignore_cache":false}'), +(23427, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.507+00', '{"cached":null,"ignore_cache":false}'), +(23428, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.52+00', '{"cached":null,"ignore_cache":false}'), +(23429, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.538+00', '{"cached":null,"ignore_cache":false}'), +(23430, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.544+00', '{"cached":null,"ignore_cache":false}'), +(23431, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.561+00', '{"cached":null,"ignore_cache":false}'), +(23432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.648+00', '{"cached":null,"ignore_cache":false}'), +(23433, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:57.684+00', '{"cached":null,"ignore_cache":false}'), +(23434, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.512+00', '{"cached":null,"ignore_cache":false}'), +(23435, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.584+00', '{"cached":null,"ignore_cache":false}'), +(23436, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.588+00', '{"cached":null,"ignore_cache":false}'), +(23437, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.594+00', '{"cached":null,"ignore_cache":false}'), +(23438, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.599+00', '{"cached":null,"ignore_cache":false}'), +(23439, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.622+00', '{"cached":null,"ignore_cache":false}'), +(23440, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.632+00', '{"cached":null,"ignore_cache":false}'), +(23441, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.635+00', '{"cached":null,"ignore_cache":false}'), +(23442, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:48:58.649+00', '{"cached":null,"ignore_cache":false}'), +(23443, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.365+00', '{"cached":null,"ignore_cache":false}'), +(23444, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.39+00', '{"cached":null,"ignore_cache":false}'), +(23445, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.417+00', '{"cached":null,"ignore_cache":false}'), +(23446, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.457+00', '{"cached":null,"ignore_cache":false}'), +(23447, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.461+00', '{"cached":null,"ignore_cache":false}'), +(23448, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.504+00', '{"cached":null,"ignore_cache":false}'), +(23449, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:27.611+00', '{"cached":null,"ignore_cache":false}'), +(23450, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.294+00', '{"cached":null,"ignore_cache":false}'), +(23451, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.326+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23452, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.35+00', '{"cached":null,"ignore_cache":false}'), +(23453, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.37+00', '{"cached":null,"ignore_cache":false}'), +(23454, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.379+00', '{"cached":null,"ignore_cache":false}'), +(23455, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.415+00', '{"cached":null,"ignore_cache":false}'), +(23456, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.441+00', '{"cached":null,"ignore_cache":false}'), +(23457, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.478+00', '{"cached":null,"ignore_cache":false}'), +(23458, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:49:29.515+00', '{"cached":null,"ignore_cache":false}'), +(23459, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.785+00', '{"cached":null,"ignore_cache":false}'), +(23460, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.826+00', '{"cached":null,"ignore_cache":false}'), +(23461, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:02.904+00', '{"cached":null,"ignore_cache":false}'), +(23462, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:03.028+00', '{"cached":null,"ignore_cache":false}'), +(23463, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:03.073+00', '{"cached":null,"ignore_cache":false}'), +(23464, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:03.092+00', '{"cached":null,"ignore_cache":false}'), +(23465, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:03.169+00', '{"cached":null,"ignore_cache":false}'), +(23466, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.085+00', '{"cached":null,"ignore_cache":false}'), +(23467, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.11+00', '{"cached":null,"ignore_cache":false}'), +(23468, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.123+00', '{"cached":null,"ignore_cache":false}'), +(23469, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.146+00', '{"cached":null,"ignore_cache":false}'), +(23470, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.159+00', '{"cached":null,"ignore_cache":false}'), +(23471, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.182+00', '{"cached":null,"ignore_cache":false}'), +(23472, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.184+00', '{"cached":null,"ignore_cache":false}'), +(23473, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.189+00', '{"cached":null,"ignore_cache":false}'), +(23474, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:06.232+00', '{"cached":null,"ignore_cache":false}'), +(23475, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.305+00', '{"cached":null,"ignore_cache":false}'), +(23476, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.34+00', '{"cached":null,"ignore_cache":false}'), +(23477, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.363+00', '{"cached":null,"ignore_cache":false}'), +(23478, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.37+00', '{"cached":null,"ignore_cache":false}'), +(23479, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.38+00', '{"cached":null,"ignore_cache":false}'), +(23480, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.489+00', '{"cached":null,"ignore_cache":false}'), +(23481, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:38.585+00', '{"cached":null,"ignore_cache":false}'), +(23482, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.515+00', '{"cached":null,"ignore_cache":false}'), +(23483, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.548+00', '{"cached":null,"ignore_cache":false}'), +(23484, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.648+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23485, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.714+00', '{"cached":null,"ignore_cache":false}'), +(23486, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.792+00', '{"cached":null,"ignore_cache":false}'), +(23487, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.805+00', '{"cached":null,"ignore_cache":false}'), +(23488, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.835+00', '{"cached":null,"ignore_cache":false}'), +(23489, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.849+00', '{"cached":null,"ignore_cache":false}'), +(23490, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:50:41.863+00', '{"cached":null,"ignore_cache":false}'), +(23491, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.418+00', '{"cached":null,"ignore_cache":false}'), +(23492, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.479+00', '{"cached":null,"ignore_cache":false}'), +(23493, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.508+00', '{"cached":null,"ignore_cache":false}'), +(23494, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.52+00', '{"cached":null,"ignore_cache":false}'), +(23495, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.529+00', '{"cached":null,"ignore_cache":false}'), +(23496, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.653+00', '{"cached":null,"ignore_cache":false}'), +(23497, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:12.728+00', '{"cached":null,"ignore_cache":false}'), +(23498, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.529+00', '{"cached":null,"ignore_cache":false}'), +(23499, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.543+00', '{"cached":null,"ignore_cache":false}'), +(23500, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.646+00', '{"cached":null,"ignore_cache":false}'), +(23501, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.647+00', '{"cached":null,"ignore_cache":false}'), +(23502, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.656+00', '{"cached":null,"ignore_cache":false}'), +(23503, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.682+00', '{"cached":null,"ignore_cache":false}'), +(23504, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.709+00', '{"cached":null,"ignore_cache":false}'), +(23505, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.751+00', '{"cached":null,"ignore_cache":false}'), +(23506, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:15.797+00', '{"cached":null,"ignore_cache":false}'), +(23507, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.313+00', '{"cached":null,"ignore_cache":false}'), +(23508, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.407+00', '{"cached":null,"ignore_cache":false}'), +(23509, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.501+00', '{"cached":null,"ignore_cache":false}'), +(23510, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.522+00', '{"cached":null,"ignore_cache":false}'), +(23511, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.563+00', '{"cached":null,"ignore_cache":false}'), +(23512, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.564+00', '{"cached":null,"ignore_cache":false}'), +(23513, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.601+00', '{"cached":null,"ignore_cache":false}'), +(23514, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.635+00', '{"cached":null,"ignore_cache":false}'), +(23515, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.659+00', '{"cached":null,"ignore_cache":false}'), +(23516, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.679+00', '{"cached":null,"ignore_cache":false}'), +(23517, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.685+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23518, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.694+00', '{"cached":null,"ignore_cache":false}'), +(23519, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.733+00', '{"cached":null,"ignore_cache":false}'), +(23520, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.742+00', '{"cached":null,"ignore_cache":false}'), +(23521, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.759+00', '{"cached":null,"ignore_cache":false}'), +(23522, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:51:46.807+00', '{"cached":null,"ignore_cache":false}'), +(23523, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.49+00', '{"cached":null,"ignore_cache":false}'), +(23524, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.532+00', '{"cached":null,"ignore_cache":false}'), +(23525, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.65+00', '{"cached":null,"ignore_cache":false}'), +(23526, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.668+00', '{"cached":null,"ignore_cache":false}'), +(23527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.689+00', '{"cached":null,"ignore_cache":false}'), +(23528, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.751+00', '{"cached":null,"ignore_cache":false}'), +(23529, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:17.862+00', '{"cached":null,"ignore_cache":false}'), +(23530, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.361+00', '{"cached":null,"ignore_cache":false}'), +(23531, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.366+00', '{"cached":null,"ignore_cache":false}'), +(23532, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.382+00', '{"cached":null,"ignore_cache":false}'), +(23533, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.383+00', '{"cached":null,"ignore_cache":false}'), +(23534, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.391+00', '{"cached":null,"ignore_cache":false}'), +(23535, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.401+00', '{"cached":null,"ignore_cache":false}'), +(23536, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.415+00', '{"cached":null,"ignore_cache":false}'), +(23537, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.425+00', '{"cached":null,"ignore_cache":false}'), +(23538, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:19.431+00', '{"cached":null,"ignore_cache":false}'), +(23539, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.415+00', '{"cached":null,"ignore_cache":false}'), +(23540, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.527+00', '{"cached":null,"ignore_cache":false}'), +(23541, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.634+00', '{"cached":null,"ignore_cache":false}'), +(23542, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.657+00', '{"cached":null,"ignore_cache":false}'), +(23543, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.691+00', '{"cached":null,"ignore_cache":false}'), +(23544, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.819+00', '{"cached":null,"ignore_cache":false}'), +(23545, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:53.853+00', '{"cached":null,"ignore_cache":false}'), +(23546, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.719+00', '{"cached":null,"ignore_cache":false}'), +(23547, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.779+00', '{"cached":null,"ignore_cache":false}'), +(23548, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.819+00', '{"cached":null,"ignore_cache":false}'), +(23549, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.87+00', '{"cached":null,"ignore_cache":false}'), +(23550, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.886+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23551, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.893+00', '{"cached":null,"ignore_cache":false}'), +(23552, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.922+00', '{"cached":null,"ignore_cache":false}'), +(23553, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.93+00', '{"cached":null,"ignore_cache":false}'), +(23554, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:52:55.984+00', '{"cached":null,"ignore_cache":false}'), +(23555, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:28.019+00', '{"cached":null,"ignore_cache":false}'), +(23556, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:28.046+00', '{"cached":null,"ignore_cache":false}'), +(23557, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:28.054+00', '{"cached":null,"ignore_cache":false}'), +(23558, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:28.064+00', '{"cached":null,"ignore_cache":false}'), +(23559, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:28.069+00', '{"cached":null,"ignore_cache":false}'), +(23560, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:28.14+00', '{"cached":null,"ignore_cache":false}'), +(23561, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:28.168+00', '{"cached":null,"ignore_cache":false}'), +(23562, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.444+00', '{"cached":null,"ignore_cache":false}'), +(23563, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.446+00', '{"cached":null,"ignore_cache":false}'), +(23564, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.496+00', '{"cached":null,"ignore_cache":false}'), +(23565, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.51+00', '{"cached":null,"ignore_cache":false}'), +(23566, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.518+00', '{"cached":null,"ignore_cache":false}'), +(23567, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.576+00', '{"cached":null,"ignore_cache":false}'), +(23568, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.583+00', '{"cached":null,"ignore_cache":false}'), +(23569, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.592+00', '{"cached":null,"ignore_cache":false}'), +(23570, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:31.695+00', '{"cached":null,"ignore_cache":false}'), +(23571, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.145+00', '{"cached":null,"ignore_cache":false}'), +(23572, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.303+00', '{"cached":null,"ignore_cache":false}'), +(23573, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.376+00', '{"cached":null,"ignore_cache":false}'), +(23574, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.384+00', '{"cached":null,"ignore_cache":false}'), +(23575, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.394+00', '{"cached":null,"ignore_cache":false}'), +(23576, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.576+00', '{"cached":null,"ignore_cache":false}'), +(23577, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:53:58.651+00', '{"cached":null,"ignore_cache":false}'), +(23578, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.334+00', '{"cached":null,"ignore_cache":false}'), +(23579, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.341+00', '{"cached":null,"ignore_cache":false}'), +(23580, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.381+00', '{"cached":null,"ignore_cache":false}'), +(23581, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.408+00', '{"cached":null,"ignore_cache":false}'), +(23582, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.419+00', '{"cached":null,"ignore_cache":false}'), +(23583, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.426+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23584, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.432+00', '{"cached":null,"ignore_cache":false}'), +(23585, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.434+00', '{"cached":null,"ignore_cache":false}'), +(23586, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:01.474+00', '{"cached":null,"ignore_cache":false}'), +(23587, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.235+00', '{"cached":null,"ignore_cache":false}'), +(23588, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.278+00', '{"cached":null,"ignore_cache":false}'), +(23589, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.291+00', '{"cached":null,"ignore_cache":false}'), +(23590, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.292+00', '{"cached":null,"ignore_cache":false}'), +(23591, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.313+00', '{"cached":null,"ignore_cache":false}'), +(23592, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.354+00', '{"cached":null,"ignore_cache":false}'), +(23593, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:28.425+00', '{"cached":null,"ignore_cache":false}'), +(23594, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.331+00', '{"cached":null,"ignore_cache":false}'), +(23595, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.339+00', '{"cached":null,"ignore_cache":false}'), +(23596, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.36+00', '{"cached":null,"ignore_cache":false}'), +(23597, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.397+00', '{"cached":null,"ignore_cache":false}'), +(23598, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.409+00', '{"cached":null,"ignore_cache":false}'), +(23599, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.482+00', '{"cached":null,"ignore_cache":false}'), +(23600, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.485+00', '{"cached":null,"ignore_cache":false}'), +(23601, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.488+00', '{"cached":null,"ignore_cache":false}'), +(23602, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:31.551+00', '{"cached":null,"ignore_cache":false}'), +(23603, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.108+00', '{"cached":null,"ignore_cache":false}'), +(23604, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.119+00', '{"cached":null,"ignore_cache":false}'), +(23605, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.153+00', '{"cached":null,"ignore_cache":false}'), +(23606, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.161+00', '{"cached":null,"ignore_cache":false}'), +(23607, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.177+00', '{"cached":null,"ignore_cache":false}'), +(23608, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.384+00', '{"cached":null,"ignore_cache":false}'), +(23609, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:54:58.588+00', '{"cached":null,"ignore_cache":false}'), +(23610, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.239+00', '{"cached":null,"ignore_cache":false}'), +(23611, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.283+00', '{"cached":null,"ignore_cache":false}'), +(23612, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.287+00', '{"cached":null,"ignore_cache":false}'), +(23613, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.295+00', '{"cached":null,"ignore_cache":false}'), +(23614, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.321+00', '{"cached":null,"ignore_cache":false}'), +(23615, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.34+00', '{"cached":null,"ignore_cache":false}'), +(23616, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.343+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23617, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.351+00', '{"cached":null,"ignore_cache":false}'), +(23618, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:01.375+00', '{"cached":null,"ignore_cache":false}'), +(23619, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.084+00', '{"cached":null,"ignore_cache":false}'), +(23620, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.127+00', '{"cached":null,"ignore_cache":false}'), +(23621, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.156+00', '{"cached":null,"ignore_cache":false}'), +(23622, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.181+00', '{"cached":null,"ignore_cache":false}'), +(23623, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.19+00', '{"cached":null,"ignore_cache":false}'), +(23624, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.315+00', '{"cached":null,"ignore_cache":false}'), +(23625, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:28.338+00', '{"cached":null,"ignore_cache":false}'), +(23626, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.14+00', '{"cached":null,"ignore_cache":false}'), +(23627, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.145+00', '{"cached":null,"ignore_cache":false}'), +(23628, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.146+00', '{"cached":null,"ignore_cache":false}'), +(23629, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.147+00', '{"cached":null,"ignore_cache":false}'), +(23630, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.172+00', '{"cached":null,"ignore_cache":false}'), +(23631, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.198+00', '{"cached":null,"ignore_cache":false}'), +(23632, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.238+00', '{"cached":null,"ignore_cache":false}'), +(23633, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.238+00', '{"cached":null,"ignore_cache":false}'), +(23634, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:31.265+00', '{"cached":null,"ignore_cache":false}'), +(23635, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.183+00', '{"cached":null,"ignore_cache":false}'), +(23636, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.191+00', '{"cached":null,"ignore_cache":false}'), +(23637, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.197+00', '{"cached":null,"ignore_cache":false}'), +(23638, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.198+00', '{"cached":null,"ignore_cache":false}'), +(23639, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.212+00', '{"cached":null,"ignore_cache":false}'), +(23640, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.336+00', '{"cached":null,"ignore_cache":false}'), +(23641, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:55:58.347+00', '{"cached":null,"ignore_cache":false}'), +(23642, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.215+00', '{"cached":null,"ignore_cache":false}'), +(23643, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:01.395+00', '{"cached":null,"ignore_cache":false}'), +(23644, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.309+00', '{"cached":null,"ignore_cache":false}'), +(23645, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.343+00', '{"cached":null,"ignore_cache":false}'), +(23646, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.357+00', '{"cached":null,"ignore_cache":false}'), +(23647, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.358+00', '{"cached":null,"ignore_cache":false}'), +(23648, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.374+00', '{"cached":null,"ignore_cache":false}'), +(23649, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.49+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23650, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:28.502+00', '{"cached":null,"ignore_cache":false}'), +(23651, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.335+00', '{"cached":null,"ignore_cache":false}'), +(23652, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.397+00', '{"cached":null,"ignore_cache":false}'), +(23653, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.399+00', '{"cached":null,"ignore_cache":false}'), +(23654, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.408+00', '{"cached":null,"ignore_cache":false}'), +(23655, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.427+00', '{"cached":null,"ignore_cache":false}'), +(23656, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.429+00', '{"cached":null,"ignore_cache":false}'), +(23657, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.439+00', '{"cached":null,"ignore_cache":false}'), +(23658, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.445+00', '{"cached":null,"ignore_cache":false}'), +(23659, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:31.457+00', '{"cached":null,"ignore_cache":false}'), +(23660, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.044+00', '{"cached":null,"ignore_cache":false}'), +(23661, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.086+00', '{"cached":null,"ignore_cache":false}'), +(23662, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.096+00', '{"cached":null,"ignore_cache":false}'), +(23663, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.1+00', '{"cached":null,"ignore_cache":false}'), +(23664, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.112+00', '{"cached":null,"ignore_cache":false}'), +(23665, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.199+00', '{"cached":null,"ignore_cache":false}'), +(23666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:56:58.234+00', '{"cached":null,"ignore_cache":false}'), +(23667, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.163+00', '{"cached":null,"ignore_cache":false}'), +(23668, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.224+00', '{"cached":null,"ignore_cache":false}'), +(23669, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.333+00', '{"cached":null,"ignore_cache":false}'), +(23670, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.334+00', '{"cached":null,"ignore_cache":false}'), +(23671, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.34+00', '{"cached":null,"ignore_cache":false}'), +(23672, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.388+00', '{"cached":null,"ignore_cache":false}'), +(23673, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.411+00', '{"cached":null,"ignore_cache":false}'), +(23674, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.419+00', '{"cached":null,"ignore_cache":false}'), +(23675, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:01.437+00', '{"cached":null,"ignore_cache":false}'), +(23676, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.043+00', '{"cached":null,"ignore_cache":false}'), +(23677, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.104+00', '{"cached":null,"ignore_cache":false}'), +(23678, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.11+00', '{"cached":null,"ignore_cache":false}'), +(23679, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.119+00', '{"cached":null,"ignore_cache":false}'), +(23680, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.12+00', '{"cached":null,"ignore_cache":false}'), +(23681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.176+00', '{"cached":null,"ignore_cache":false}'), +(23682, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:28.252+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23683, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.218+00', '{"cached":null,"ignore_cache":false}'), +(23684, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.306+00', '{"cached":null,"ignore_cache":false}'), +(23685, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.36+00', '{"cached":null,"ignore_cache":false}'), +(23686, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.442+00', '{"cached":null,"ignore_cache":false}'), +(23687, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.468+00', '{"cached":null,"ignore_cache":false}'), +(23688, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.485+00', '{"cached":null,"ignore_cache":false}'), +(23689, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.506+00', '{"cached":null,"ignore_cache":false}'), +(23690, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.547+00', '{"cached":null,"ignore_cache":false}'), +(23691, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:31.553+00', '{"cached":null,"ignore_cache":false}'), +(23692, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:58.043+00', '{"cached":null,"ignore_cache":false}'), +(23693, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:58.102+00', '{"cached":null,"ignore_cache":false}'), +(23694, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:58.125+00', '{"cached":null,"ignore_cache":false}'), +(23695, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:58.129+00', '{"cached":null,"ignore_cache":false}'), +(23696, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:58.138+00', '{"cached":null,"ignore_cache":false}'), +(23697, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:58.202+00', '{"cached":null,"ignore_cache":false}'), +(23698, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:57:58.307+00', '{"cached":null,"ignore_cache":false}'), +(23699, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.1+00', '{"cached":null,"ignore_cache":false}'), +(23700, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.134+00', '{"cached":null,"ignore_cache":false}'), +(23701, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.165+00', '{"cached":null,"ignore_cache":false}'), +(23702, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.191+00', '{"cached":null,"ignore_cache":false}'), +(23703, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.21+00', '{"cached":null,"ignore_cache":false}'), +(23704, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.219+00', '{"cached":null,"ignore_cache":false}'), +(23705, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.232+00', '{"cached":null,"ignore_cache":false}'), +(23706, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.246+00', '{"cached":null,"ignore_cache":false}'), +(23707, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:01.318+00', '{"cached":null,"ignore_cache":false}'), +(23708, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.109+00', '{"cached":null,"ignore_cache":false}'), +(23709, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.146+00', '{"cached":null,"ignore_cache":false}'), +(23710, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.171+00', '{"cached":null,"ignore_cache":false}'), +(23711, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.184+00', '{"cached":null,"ignore_cache":false}'), +(23712, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.204+00', '{"cached":null,"ignore_cache":false}'), +(23713, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.338+00', '{"cached":null,"ignore_cache":false}'), +(23714, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:28.378+00', '{"cached":null,"ignore_cache":false}'), +(23715, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.277+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23716, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.535+00', '{"cached":null,"ignore_cache":false}'), +(23717, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.556+00', '{"cached":null,"ignore_cache":false}'), +(23718, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.563+00', '{"cached":null,"ignore_cache":false}'), +(23719, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.571+00', '{"cached":null,"ignore_cache":false}'), +(23720, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.579+00', '{"cached":null,"ignore_cache":false}'), +(23721, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.584+00', '{"cached":null,"ignore_cache":false}'), +(23722, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.636+00', '{"cached":null,"ignore_cache":false}'), +(23723, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:31.645+00', '{"cached":null,"ignore_cache":false}'), +(23724, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.054+00', '{"cached":null,"ignore_cache":false}'), +(23725, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.071+00', '{"cached":null,"ignore_cache":false}'), +(23726, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.141+00', '{"cached":null,"ignore_cache":false}'), +(23727, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.182+00', '{"cached":null,"ignore_cache":false}'), +(23728, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.183+00', '{"cached":null,"ignore_cache":false}'), +(23729, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.455+00', '{"cached":null,"ignore_cache":false}'), +(23730, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:58:58.46+00', '{"cached":null,"ignore_cache":false}'), +(23731, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.125+00', '{"cached":null,"ignore_cache":false}'), +(23732, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.268+00', '{"cached":null,"ignore_cache":false}'), +(23733, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.273+00', '{"cached":null,"ignore_cache":false}'), +(23734, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.299+00', '{"cached":null,"ignore_cache":false}'), +(23735, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.35+00', '{"cached":null,"ignore_cache":false}'), +(23736, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.361+00', '{"cached":null,"ignore_cache":false}'), +(23737, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.373+00', '{"cached":null,"ignore_cache":false}'), +(23738, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.377+00', '{"cached":null,"ignore_cache":false}'), +(23739, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:01.38+00', '{"cached":null,"ignore_cache":false}'), +(23740, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.143+00', '{"cached":null,"ignore_cache":false}'), +(23741, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.238+00', '{"cached":null,"ignore_cache":false}'), +(23742, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.277+00', '{"cached":null,"ignore_cache":false}'), +(23743, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.296+00', '{"cached":null,"ignore_cache":false}'), +(23744, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.353+00', '{"cached":null,"ignore_cache":false}'), +(23745, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.421+00', '{"cached":null,"ignore_cache":false}'), +(23746, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:28.461+00', '{"cached":null,"ignore_cache":false}'), +(23747, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.171+00', '{"cached":null,"ignore_cache":false}'), +(23748, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.203+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23749, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.225+00', '{"cached":null,"ignore_cache":false}'), +(23750, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.239+00', '{"cached":null,"ignore_cache":false}'), +(23751, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.242+00', '{"cached":null,"ignore_cache":false}'), +(23752, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.255+00', '{"cached":null,"ignore_cache":false}'), +(23753, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.257+00', '{"cached":null,"ignore_cache":false}'), +(23754, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.273+00', '{"cached":null,"ignore_cache":false}'), +(23755, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:31.276+00', '{"cached":null,"ignore_cache":false}'), +(23756, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.146+00', '{"cached":null,"ignore_cache":false}'), +(23757, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.215+00', '{"cached":null,"ignore_cache":false}'), +(23758, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.215+00', '{"cached":null,"ignore_cache":false}'), +(23759, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.222+00', '{"cached":null,"ignore_cache":false}'), +(23760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.239+00', '{"cached":null,"ignore_cache":false}'), +(23761, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.272+00', '{"cached":null,"ignore_cache":false}'), +(23762, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 14:59:58.357+00', '{"cached":null,"ignore_cache":false}'), +(23763, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.364+00', '{"cached":null,"ignore_cache":false}'), +(23764, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.41+00', '{"cached":null,"ignore_cache":false}'), +(23765, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.447+00', '{"cached":null,"ignore_cache":false}'), +(23766, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.448+00', '{"cached":null,"ignore_cache":false}'), +(23767, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.453+00', '{"cached":null,"ignore_cache":false}'), +(23768, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.476+00', '{"cached":null,"ignore_cache":false}'), +(23769, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.49+00', '{"cached":null,"ignore_cache":false}'), +(23770, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.524+00', '{"cached":null,"ignore_cache":false}'), +(23771, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:01.53+00', '{"cached":null,"ignore_cache":false}'), +(23772, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.22+00', '{"cached":null,"ignore_cache":false}'), +(23773, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.252+00', '{"cached":null,"ignore_cache":false}'), +(23774, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.263+00', '{"cached":null,"ignore_cache":false}'), +(23775, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.278+00', '{"cached":null,"ignore_cache":false}'), +(23776, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.287+00', '{"cached":null,"ignore_cache":false}'), +(23777, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.39+00', '{"cached":null,"ignore_cache":false}'), +(23778, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:28.412+00', '{"cached":null,"ignore_cache":false}'), +(23779, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.204+00', '{"cached":null,"ignore_cache":false}'), +(23780, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.236+00', '{"cached":null,"ignore_cache":false}'), +(23781, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.332+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23782, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.349+00', '{"cached":null,"ignore_cache":false}'), +(23783, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.407+00', '{"cached":null,"ignore_cache":false}'), +(23784, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.418+00', '{"cached":null,"ignore_cache":false}'), +(23785, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.426+00', '{"cached":null,"ignore_cache":false}'), +(23786, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.444+00', '{"cached":null,"ignore_cache":false}'), +(23787, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:31.465+00', '{"cached":null,"ignore_cache":false}'), +(23788, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.396+00', '{"cached":null,"ignore_cache":false}'), +(23789, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.426+00', '{"cached":null,"ignore_cache":false}'), +(23790, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.434+00', '{"cached":null,"ignore_cache":false}'), +(23791, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.47+00', '{"cached":null,"ignore_cache":false}'), +(23792, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.488+00', '{"cached":null,"ignore_cache":false}'), +(23793, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.542+00', '{"cached":null,"ignore_cache":false}'), +(23794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:00:58.617+00', '{"cached":null,"ignore_cache":false}'), +(23795, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.366+00', '{"cached":null,"ignore_cache":false}'), +(23796, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.403+00', '{"cached":null,"ignore_cache":false}'), +(23797, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.451+00', '{"cached":null,"ignore_cache":false}'), +(23798, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.455+00', '{"cached":null,"ignore_cache":false}'), +(23799, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.529+00', '{"cached":null,"ignore_cache":false}'), +(23800, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.543+00', '{"cached":null,"ignore_cache":false}'), +(23801, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.555+00', '{"cached":null,"ignore_cache":false}'), +(23802, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.566+00', '{"cached":null,"ignore_cache":false}'), +(23803, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:01.625+00', '{"cached":null,"ignore_cache":false}'), +(23804, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.369+00', '{"cached":null,"ignore_cache":false}'), +(23805, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.427+00', '{"cached":null,"ignore_cache":false}'), +(23806, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.499+00', '{"cached":null,"ignore_cache":false}'), +(23807, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.515+00', '{"cached":null,"ignore_cache":false}'), +(23808, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.534+00', '{"cached":null,"ignore_cache":false}'), +(23809, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.547+00', '{"cached":null,"ignore_cache":false}'), +(23810, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:28.676+00', '{"cached":null,"ignore_cache":false}'), +(23811, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.195+00', '{"cached":null,"ignore_cache":false}'), +(23812, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.269+00', '{"cached":null,"ignore_cache":false}'), +(23813, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.29+00', '{"cached":null,"ignore_cache":false}'), +(23814, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.31+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23815, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.345+00', '{"cached":null,"ignore_cache":false}'), +(23816, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.373+00', '{"cached":null,"ignore_cache":false}'), +(23817, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.423+00', '{"cached":null,"ignore_cache":false}'), +(23818, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.439+00', '{"cached":null,"ignore_cache":false}'), +(23819, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:31.466+00', '{"cached":null,"ignore_cache":false}'), +(23820, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.306+00', '{"cached":null,"ignore_cache":false}'), +(23821, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.351+00', '{"cached":null,"ignore_cache":false}'), +(23822, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.412+00', '{"cached":null,"ignore_cache":false}'), +(23823, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.418+00', '{"cached":null,"ignore_cache":false}'), +(23824, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.418+00', '{"cached":null,"ignore_cache":false}'), +(23825, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.464+00', '{"cached":null,"ignore_cache":false}'), +(23826, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:01:58.573+00', '{"cached":null,"ignore_cache":false}'), +(23827, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:01.883+00', '{"cached":null,"ignore_cache":false}'), +(23828, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:01.912+00', '{"cached":null,"ignore_cache":false}'), +(23829, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:01.935+00', '{"cached":null,"ignore_cache":false}'), +(23830, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.448+00', '{"cached":null,"ignore_cache":false}'), +(23831, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.457+00', '{"cached":null,"ignore_cache":false}'), +(23832, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.472+00', '{"cached":null,"ignore_cache":false}'), +(23833, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.507+00', '{"cached":null,"ignore_cache":false}'), +(23834, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.539+00', '{"cached":null,"ignore_cache":false}'), +(23835, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:02.548+00', '{"cached":null,"ignore_cache":false}'), +(23836, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.765+00', '{"cached":null,"ignore_cache":false}'), +(23837, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.766+00', '{"cached":null,"ignore_cache":false}'), +(23838, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.773+00', '{"cached":null,"ignore_cache":false}'), +(23839, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.778+00', '{"cached":null,"ignore_cache":false}'), +(23840, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:28.783+00', '{"cached":null,"ignore_cache":false}'), +(23841, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:29.061+00', '{"cached":null,"ignore_cache":false}'), +(23842, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:29.099+00', '{"cached":null,"ignore_cache":false}'), +(23843, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.368+00', '{"cached":null,"ignore_cache":false}'), +(23844, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.41+00', '{"cached":null,"ignore_cache":false}'), +(23845, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.426+00', '{"cached":null,"ignore_cache":false}'), +(23846, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.436+00', '{"cached":null,"ignore_cache":false}'), +(23847, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.462+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23848, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.472+00', '{"cached":null,"ignore_cache":false}'), +(23849, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.492+00', '{"cached":null,"ignore_cache":false}'), +(23850, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.498+00', '{"cached":null,"ignore_cache":false}'), +(23851, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:31.513+00', '{"cached":null,"ignore_cache":false}'), +(23852, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.172+00', '{"cached":null,"ignore_cache":false}'), +(23853, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.177+00', '{"cached":null,"ignore_cache":false}'), +(23854, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.209+00', '{"cached":null,"ignore_cache":false}'), +(23855, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.222+00', '{"cached":null,"ignore_cache":false}'), +(23856, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.228+00', '{"cached":null,"ignore_cache":false}'), +(23857, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.287+00', '{"cached":null,"ignore_cache":false}'), +(23858, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:02:58.332+00', '{"cached":null,"ignore_cache":false}'), +(23859, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.215+00', '{"cached":null,"ignore_cache":false}'), +(23860, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.294+00', '{"cached":null,"ignore_cache":false}'), +(23861, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.329+00', '{"cached":null,"ignore_cache":false}'), +(23862, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.398+00', '{"cached":null,"ignore_cache":false}'), +(23863, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.41+00', '{"cached":null,"ignore_cache":false}'), +(23864, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.415+00', '{"cached":null,"ignore_cache":false}'), +(23865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.436+00', '{"cached":null,"ignore_cache":false}'), +(23866, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.453+00', '{"cached":null,"ignore_cache":false}'), +(23867, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:01.539+00', '{"cached":null,"ignore_cache":false}'), +(23868, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.209+00', '{"cached":null,"ignore_cache":false}'), +(23869, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.258+00', '{"cached":null,"ignore_cache":false}'), +(23870, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.266+00', '{"cached":null,"ignore_cache":false}'), +(23871, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.277+00', '{"cached":null,"ignore_cache":false}'), +(23872, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.286+00', '{"cached":null,"ignore_cache":false}'), +(23873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.45+00', '{"cached":null,"ignore_cache":false}'), +(23874, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:29.471+00', '{"cached":null,"ignore_cache":false}'), +(23875, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.242+00', '{"cached":null,"ignore_cache":false}'), +(23876, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.327+00', '{"cached":null,"ignore_cache":false}'), +(23877, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.339+00', '{"cached":null,"ignore_cache":false}'), +(23878, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.399+00', '{"cached":null,"ignore_cache":false}'), +(23879, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.399+00', '{"cached":null,"ignore_cache":false}'), +(23880, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.419+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23881, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.447+00', '{"cached":null,"ignore_cache":false}'), +(23882, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.489+00', '{"cached":null,"ignore_cache":false}'), +(23883, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:03:32.506+00', '{"cached":null,"ignore_cache":false}'), +(23884, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.229+00', '{"cached":null,"ignore_cache":false}'), +(23885, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.246+00', '{"cached":null,"ignore_cache":false}'), +(23886, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.278+00', '{"cached":null,"ignore_cache":false}'), +(23887, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.293+00', '{"cached":null,"ignore_cache":false}'), +(23888, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.298+00', '{"cached":null,"ignore_cache":false}'), +(23889, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.451+00', '{"cached":null,"ignore_cache":false}'), +(23890, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:00.511+00', '{"cached":null,"ignore_cache":false}'), +(23891, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.148+00', '{"cached":null,"ignore_cache":false}'), +(23892, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.165+00', '{"cached":null,"ignore_cache":false}'), +(23893, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.197+00', '{"cached":null,"ignore_cache":false}'), +(23894, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.202+00', '{"cached":null,"ignore_cache":false}'), +(23895, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.284+00', '{"cached":null,"ignore_cache":false}'), +(23896, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.287+00', '{"cached":null,"ignore_cache":false}'), +(23897, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.299+00', '{"cached":null,"ignore_cache":false}'), +(23898, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.304+00', '{"cached":null,"ignore_cache":false}'), +(23899, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:03.315+00', '{"cached":null,"ignore_cache":false}'), +(23900, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.138+00', '{"cached":null,"ignore_cache":false}'), +(23901, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.161+00', '{"cached":null,"ignore_cache":false}'), +(23902, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.19+00', '{"cached":null,"ignore_cache":false}'), +(23903, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.198+00', '{"cached":null,"ignore_cache":false}'), +(23904, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.204+00', '{"cached":null,"ignore_cache":false}'), +(23905, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.278+00', '{"cached":null,"ignore_cache":false}'), +(23906, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:32.34+00', '{"cached":null,"ignore_cache":false}'), +(23907, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.249+00', '{"cached":null,"ignore_cache":false}'), +(23908, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.286+00', '{"cached":null,"ignore_cache":false}'), +(23909, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.31+00', '{"cached":null,"ignore_cache":false}'), +(23910, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.359+00', '{"cached":null,"ignore_cache":false}'), +(23911, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.37+00', '{"cached":null,"ignore_cache":false}'), +(23912, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.387+00', '{"cached":null,"ignore_cache":false}'), +(23913, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.436+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23914, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.445+00', '{"cached":null,"ignore_cache":false}'), +(23915, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:04:34.448+00', '{"cached":null,"ignore_cache":false}'), +(23916, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.026+00', '{"cached":null,"ignore_cache":false}'), +(23917, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.065+00', '{"cached":null,"ignore_cache":false}'), +(23918, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.086+00', '{"cached":null,"ignore_cache":false}'), +(23919, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.107+00', '{"cached":null,"ignore_cache":false}'), +(23920, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.161+00', '{"cached":null,"ignore_cache":false}'), +(23921, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.188+00', '{"cached":null,"ignore_cache":false}'), +(23922, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:03.392+00', '{"cached":null,"ignore_cache":false}'), +(23923, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.319+00', '{"cached":null,"ignore_cache":false}'), +(23924, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.331+00', '{"cached":null,"ignore_cache":false}'), +(23925, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.343+00', '{"cached":null,"ignore_cache":false}'), +(23926, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.347+00', '{"cached":null,"ignore_cache":false}'), +(23927, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.453+00', '{"cached":null,"ignore_cache":false}'), +(23928, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.473+00', '{"cached":null,"ignore_cache":false}'), +(23929, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.521+00', '{"cached":null,"ignore_cache":false}'), +(23930, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.57+00', '{"cached":null,"ignore_cache":false}'), +(23931, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:05.62+00', '{"cached":null,"ignore_cache":false}'), +(23932, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.081+00', '{"cached":null,"ignore_cache":false}'), +(23933, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.181+00', '{"cached":null,"ignore_cache":false}'), +(23934, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.194+00', '{"cached":null,"ignore_cache":false}'), +(23935, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.195+00', '{"cached":null,"ignore_cache":false}'), +(23936, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.217+00', '{"cached":null,"ignore_cache":false}'), +(23937, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.366+00', '{"cached":null,"ignore_cache":false}'), +(23938, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:34.394+00', '{"cached":null,"ignore_cache":false}'), +(23939, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.261+00', '{"cached":null,"ignore_cache":false}'), +(23940, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.267+00', '{"cached":null,"ignore_cache":false}'), +(23941, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.32+00', '{"cached":null,"ignore_cache":false}'), +(23942, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.343+00', '{"cached":null,"ignore_cache":false}'), +(23943, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.369+00', '{"cached":null,"ignore_cache":false}'), +(23944, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.411+00', '{"cached":null,"ignore_cache":false}'), +(23945, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.414+00', '{"cached":null,"ignore_cache":false}'), +(23946, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.427+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23947, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:05:36.487+00', '{"cached":null,"ignore_cache":false}'), +(23948, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.074+00', '{"cached":null,"ignore_cache":false}'), +(23949, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.172+00', '{"cached":null,"ignore_cache":false}'), +(23950, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.227+00', '{"cached":null,"ignore_cache":false}'), +(23951, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.235+00', '{"cached":null,"ignore_cache":false}'), +(23952, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.262+00', '{"cached":null,"ignore_cache":false}'), +(23953, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.279+00', '{"cached":null,"ignore_cache":false}'), +(23954, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:06.515+00', '{"cached":null,"ignore_cache":false}'), +(23955, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.369+00', '{"cached":null,"ignore_cache":false}'), +(23956, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.386+00', '{"cached":null,"ignore_cache":false}'), +(23957, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.413+00', '{"cached":null,"ignore_cache":false}'), +(23958, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.42+00', '{"cached":null,"ignore_cache":false}'), +(23959, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.434+00', '{"cached":null,"ignore_cache":false}'), +(23960, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.499+00', '{"cached":null,"ignore_cache":false}'), +(23961, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.529+00', '{"cached":null,"ignore_cache":false}'), +(23962, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.543+00', '{"cached":null,"ignore_cache":false}'), +(23963, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:07.552+00', '{"cached":null,"ignore_cache":false}'), +(23964, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.17+00', '{"cached":null,"ignore_cache":false}'), +(23965, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.178+00', '{"cached":null,"ignore_cache":false}'), +(23966, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.214+00', '{"cached":null,"ignore_cache":false}'), +(23967, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.226+00', '{"cached":null,"ignore_cache":false}'), +(23968, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.254+00', '{"cached":null,"ignore_cache":false}'), +(23969, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.301+00', '{"cached":null,"ignore_cache":false}'), +(23970, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:37.423+00', '{"cached":null,"ignore_cache":false}'), +(23971, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.201+00', '{"cached":null,"ignore_cache":false}'), +(23972, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.269+00', '{"cached":null,"ignore_cache":false}'), +(23973, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.322+00', '{"cached":null,"ignore_cache":false}'), +(23974, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.356+00', '{"cached":null,"ignore_cache":false}'), +(23975, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.379+00', '{"cached":null,"ignore_cache":false}'), +(23976, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.386+00', '{"cached":null,"ignore_cache":false}'), +(23977, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.397+00', '{"cached":null,"ignore_cache":false}'), +(23978, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.4+00', '{"cached":null,"ignore_cache":false}'), +(23979, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:06:38.415+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(23980, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.739+00', '{"cached":null,"ignore_cache":false}'), +(23981, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.763+00', '{"cached":null,"ignore_cache":false}'), +(23982, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.796+00', '{"cached":null,"ignore_cache":false}'), +(23983, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.837+00', '{"cached":null,"ignore_cache":false}'), +(23984, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.84+00', '{"cached":null,"ignore_cache":false}'), +(23985, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:09.965+00', '{"cached":null,"ignore_cache":false}'), +(23986, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.036+00', '{"cached":null,"ignore_cache":false}'), +(23987, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.304+00', '{"cached":null,"ignore_cache":false}'), +(23988, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.324+00', '{"cached":null,"ignore_cache":false}'), +(23989, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.343+00', '{"cached":null,"ignore_cache":false}'), +(23990, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.357+00', '{"cached":null,"ignore_cache":false}'), +(23991, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.404+00', '{"cached":null,"ignore_cache":false}'), +(23992, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.447+00', '{"cached":null,"ignore_cache":false}'), +(23993, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.458+00', '{"cached":null,"ignore_cache":false}'), +(23994, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.477+00', '{"cached":null,"ignore_cache":false}'), +(23995, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:10.502+00', '{"cached":null,"ignore_cache":false}'), +(23996, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.038+00', '{"cached":null,"ignore_cache":false}'), +(23997, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.055+00', '{"cached":null,"ignore_cache":false}'), +(23998, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.078+00', '{"cached":null,"ignore_cache":false}'), +(23999, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.088+00', '{"cached":null,"ignore_cache":false}'), +(24000, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.101+00', '{"cached":null,"ignore_cache":false}'), +(24001, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.29+00', '{"cached":null,"ignore_cache":false}'), +(24002, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:41.304+00', '{"cached":null,"ignore_cache":false}'), +(24003, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.075+00', '{"cached":null,"ignore_cache":false}'), +(24004, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.193+00', '{"cached":null,"ignore_cache":false}'), +(24005, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.199+00', '{"cached":null,"ignore_cache":false}'), +(24006, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.209+00', '{"cached":null,"ignore_cache":false}'), +(24007, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.247+00', '{"cached":null,"ignore_cache":false}'), +(24008, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.255+00', '{"cached":null,"ignore_cache":false}'), +(24009, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.263+00', '{"cached":null,"ignore_cache":false}'), +(24010, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.276+00', '{"cached":null,"ignore_cache":false}'), +(24011, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:07:42.318+00', '{"cached":null,"ignore_cache":false}'), +(24012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.219+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24013, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.268+00', '{"cached":null,"ignore_cache":false}'), +(24014, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.332+00', '{"cached":null,"ignore_cache":false}'), +(24015, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.357+00', '{"cached":null,"ignore_cache":false}'), +(24016, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.384+00', '{"cached":null,"ignore_cache":false}'), +(24017, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.457+00', '{"cached":null,"ignore_cache":false}'), +(24018, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.497+00', '{"cached":null,"ignore_cache":false}'), +(24019, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:13.999+00', '{"cached":null,"ignore_cache":false}'), +(24020, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.061+00', '{"cached":null,"ignore_cache":false}'), +(24021, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.135+00', '{"cached":null,"ignore_cache":false}'), +(24022, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.183+00', '{"cached":null,"ignore_cache":false}'), +(24023, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.183+00', '{"cached":null,"ignore_cache":false}'), +(24024, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.236+00', '{"cached":null,"ignore_cache":false}'), +(24025, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.25+00', '{"cached":null,"ignore_cache":false}'), +(24026, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.285+00', '{"cached":null,"ignore_cache":false}'), +(24027, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:14.329+00', '{"cached":null,"ignore_cache":false}'), +(24028, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.155+00', '{"cached":null,"ignore_cache":false}'), +(24029, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.221+00', '{"cached":null,"ignore_cache":false}'), +(24030, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.28+00', '{"cached":null,"ignore_cache":false}'), +(24031, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.3+00', '{"cached":null,"ignore_cache":false}'), +(24032, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.348+00', '{"cached":null,"ignore_cache":false}'), +(24033, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.519+00', '{"cached":null,"ignore_cache":false}'), +(24034, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:42.564+00', '{"cached":null,"ignore_cache":false}'), +(24035, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.369+00', '{"cached":null,"ignore_cache":false}'), +(24036, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.572+00', '{"cached":null,"ignore_cache":false}'), +(24037, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.626+00', '{"cached":null,"ignore_cache":false}'), +(24038, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.66+00', '{"cached":null,"ignore_cache":false}'), +(24039, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.665+00', '{"cached":null,"ignore_cache":false}'), +(24040, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.712+00', '{"cached":null,"ignore_cache":false}'), +(24041, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.722+00', '{"cached":null,"ignore_cache":false}'), +(24042, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.729+00', '{"cached":null,"ignore_cache":false}'), +(24043, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:08:43.8+00', '{"cached":null,"ignore_cache":false}'), +(24044, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.074+00', '{"cached":null,"ignore_cache":false}'), +(24045, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.103+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24046, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.136+00', '{"cached":null,"ignore_cache":false}'), +(24047, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.149+00', '{"cached":null,"ignore_cache":false}'), +(24048, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.162+00', '{"cached":null,"ignore_cache":false}'), +(24049, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.292+00', '{"cached":null,"ignore_cache":false}'), +(24050, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:12.379+00', '{"cached":null,"ignore_cache":false}'), +(24051, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.152+00', '{"cached":null,"ignore_cache":false}'), +(24052, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.218+00', '{"cached":null,"ignore_cache":false}'), +(24053, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.228+00', '{"cached":null,"ignore_cache":false}'), +(24054, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.331+00', '{"cached":null,"ignore_cache":false}'), +(24055, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.457+00', '{"cached":null,"ignore_cache":false}'), +(24056, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.464+00', '{"cached":null,"ignore_cache":false}'), +(24057, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.541+00', '{"cached":null,"ignore_cache":false}'), +(24058, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.559+00', '{"cached":null,"ignore_cache":false}'), +(24059, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:13.633+00', '{"cached":null,"ignore_cache":false}'), +(24060, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.662+00', '{"cached":null,"ignore_cache":false}'), +(24061, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.732+00', '{"cached":null,"ignore_cache":false}'), +(24062, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.806+00', '{"cached":null,"ignore_cache":false}'), +(24063, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.808+00', '{"cached":null,"ignore_cache":false}'), +(24064, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.843+00', '{"cached":null,"ignore_cache":false}'), +(24065, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:43.986+00', '{"cached":null,"ignore_cache":false}'), +(24066, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.138+00', '{"cached":null,"ignore_cache":false}'), +(24067, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.806+00', '{"cached":null,"ignore_cache":false}'), +(24068, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.868+00', '{"cached":null,"ignore_cache":false}'), +(24069, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.894+00', '{"cached":null,"ignore_cache":false}'), +(24070, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.956+00', '{"cached":null,"ignore_cache":false}'), +(24071, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.973+00', '{"cached":null,"ignore_cache":false}'), +(24072, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:44.989+00', '{"cached":null,"ignore_cache":false}'), +(24073, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:45.006+00', '{"cached":null,"ignore_cache":false}'), +(24074, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:45.028+00', '{"cached":null,"ignore_cache":false}'), +(24075, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:09:45.044+00', '{"cached":null,"ignore_cache":false}'), +(24076, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.022+00', '{"cached":null,"ignore_cache":false}'), +(24077, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.047+00', '{"cached":null,"ignore_cache":false}'), +(24078, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.064+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24079, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.104+00', '{"cached":null,"ignore_cache":false}'), +(24080, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.141+00', '{"cached":null,"ignore_cache":false}'), +(24081, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.289+00', '{"cached":null,"ignore_cache":false}'), +(24082, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:14.389+00', '{"cached":null,"ignore_cache":false}'), +(24083, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.085+00', '{"cached":null,"ignore_cache":false}'), +(24084, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.129+00', '{"cached":null,"ignore_cache":false}'), +(24085, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.152+00', '{"cached":null,"ignore_cache":false}'), +(24086, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.189+00', '{"cached":null,"ignore_cache":false}'), +(24087, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.289+00', '{"cached":null,"ignore_cache":false}'), +(24088, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.305+00', '{"cached":null,"ignore_cache":false}'), +(24089, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.328+00', '{"cached":null,"ignore_cache":false}'), +(24090, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.329+00', '{"cached":null,"ignore_cache":false}'), +(24091, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:15.353+00', '{"cached":null,"ignore_cache":false}'), +(24092, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.201+00', '{"cached":null,"ignore_cache":false}'), +(24093, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.302+00', '{"cached":null,"ignore_cache":false}'), +(24094, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.315+00', '{"cached":null,"ignore_cache":false}'), +(24095, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.389+00', '{"cached":null,"ignore_cache":false}'), +(24096, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.407+00', '{"cached":null,"ignore_cache":false}'), +(24097, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.451+00', '{"cached":null,"ignore_cache":false}'), +(24098, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:44.496+00', '{"cached":null,"ignore_cache":false}'), +(24099, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.598+00', '{"cached":null,"ignore_cache":false}'), +(24100, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.67+00', '{"cached":null,"ignore_cache":false}'), +(24101, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.684+00', '{"cached":null,"ignore_cache":false}'), +(24102, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.744+00', '{"cached":null,"ignore_cache":false}'), +(24103, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.772+00', '{"cached":null,"ignore_cache":false}'), +(24104, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.786+00', '{"cached":null,"ignore_cache":false}'), +(24105, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.813+00', '{"cached":null,"ignore_cache":false}'), +(24106, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.817+00', '{"cached":null,"ignore_cache":false}'), +(24107, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:10:45.848+00', '{"cached":null,"ignore_cache":false}'), +(24108, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.062+00', '{"cached":null,"ignore_cache":false}'), +(24109, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.114+00', '{"cached":null,"ignore_cache":false}'), +(24110, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.15+00', '{"cached":null,"ignore_cache":false}'), +(24111, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.153+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24112, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.175+00', '{"cached":null,"ignore_cache":false}'), +(24113, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.221+00', '{"cached":null,"ignore_cache":false}'), +(24114, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.238+00', '{"cached":null,"ignore_cache":false}'), +(24115, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.246+00', '{"cached":null,"ignore_cache":false}'), +(24116, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.286+00', '{"cached":null,"ignore_cache":false}'), +(24117, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.287+00', '{"cached":null,"ignore_cache":false}'), +(24118, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.287+00', '{"cached":null,"ignore_cache":false}'), +(24119, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.329+00', '{"cached":null,"ignore_cache":false}'), +(24120, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.337+00', '{"cached":null,"ignore_cache":false}'), +(24121, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.342+00', '{"cached":null,"ignore_cache":false}'), +(24122, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.366+00', '{"cached":null,"ignore_cache":false}'), +(24123, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:15.423+00', '{"cached":null,"ignore_cache":false}'), +(24124, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.137+00', '{"cached":null,"ignore_cache":false}'), +(24125, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.141+00', '{"cached":null,"ignore_cache":false}'), +(24126, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.159+00', '{"cached":null,"ignore_cache":false}'), +(24127, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.278+00', '{"cached":null,"ignore_cache":false}'), +(24128, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.288+00', '{"cached":null,"ignore_cache":false}'), +(24129, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.335+00', '{"cached":null,"ignore_cache":false}'), +(24130, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.344+00', '{"cached":null,"ignore_cache":false}'), +(24131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.364+00', '{"cached":null,"ignore_cache":false}'), +(24132, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.399+00', '{"cached":null,"ignore_cache":false}'), +(24133, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.409+00', '{"cached":null,"ignore_cache":false}'), +(24134, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.416+00', '{"cached":null,"ignore_cache":false}'), +(24135, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.418+00', '{"cached":null,"ignore_cache":false}'), +(24136, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.433+00', '{"cached":null,"ignore_cache":false}'), +(24137, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.452+00', '{"cached":null,"ignore_cache":false}'), +(24138, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.46+00', '{"cached":null,"ignore_cache":false}'), +(24139, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:11:45.501+00', '{"cached":null,"ignore_cache":false}'), +(24140, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.017+00', '{"cached":null,"ignore_cache":false}'), +(24141, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.065+00', '{"cached":null,"ignore_cache":false}'), +(24142, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.084+00', '{"cached":null,"ignore_cache":false}'), +(24143, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.085+00', '{"cached":null,"ignore_cache":false}'), +(24144, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.108+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24145, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.111+00', '{"cached":null,"ignore_cache":false}'), +(24146, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.128+00', '{"cached":null,"ignore_cache":false}'), +(24147, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.13+00', '{"cached":null,"ignore_cache":false}'), +(24148, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:16.133+00', '{"cached":null,"ignore_cache":false}'), +(24149, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.238+00', '{"cached":null,"ignore_cache":false}'), +(24150, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.309+00', '{"cached":null,"ignore_cache":false}'), +(24151, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.313+00', '{"cached":null,"ignore_cache":false}'), +(24152, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.329+00', '{"cached":null,"ignore_cache":false}'), +(24153, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.348+00', '{"cached":null,"ignore_cache":false}'), +(24154, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.353+00', '{"cached":null,"ignore_cache":false}'), +(24155, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:17.533+00', '{"cached":null,"ignore_cache":false}'), +(24156, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.416+00', '{"cached":null,"ignore_cache":false}'), +(24157, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.458+00', '{"cached":null,"ignore_cache":false}'), +(24158, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.469+00', '{"cached":null,"ignore_cache":false}'), +(24159, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.625+00', '{"cached":null,"ignore_cache":false}'), +(24160, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.645+00', '{"cached":null,"ignore_cache":false}'), +(24161, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.646+00', '{"cached":null,"ignore_cache":false}'), +(24162, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.662+00', '{"cached":null,"ignore_cache":false}'), +(24163, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.676+00', '{"cached":null,"ignore_cache":false}'), +(24164, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:47.695+00', '{"cached":null,"ignore_cache":false}'), +(24165, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.214+00', '{"cached":null,"ignore_cache":false}'), +(24166, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.277+00', '{"cached":null,"ignore_cache":false}'), +(24167, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.278+00', '{"cached":null,"ignore_cache":false}'), +(24168, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.411+00', '{"cached":null,"ignore_cache":false}'), +(24169, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.441+00', '{"cached":null,"ignore_cache":false}'), +(24170, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.548+00', '{"cached":null,"ignore_cache":false}'), +(24171, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:12:48.588+00', '{"cached":null,"ignore_cache":false}'), +(24172, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.019+00', '{"cached":null,"ignore_cache":false}'), +(24173, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.052+00', '{"cached":null,"ignore_cache":false}'), +(24174, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.117+00', '{"cached":null,"ignore_cache":false}'), +(24175, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.143+00', '{"cached":null,"ignore_cache":false}'), +(24176, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.162+00', '{"cached":null,"ignore_cache":false}'), +(24177, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.189+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24178, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.19+00', '{"cached":null,"ignore_cache":false}'), +(24179, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.193+00', '{"cached":null,"ignore_cache":false}'), +(24180, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:19.207+00', '{"cached":null,"ignore_cache":false}'), +(24181, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.168+00', '{"cached":null,"ignore_cache":false}'), +(24182, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.222+00', '{"cached":null,"ignore_cache":false}'), +(24183, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.268+00', '{"cached":null,"ignore_cache":false}'), +(24184, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.298+00', '{"cached":null,"ignore_cache":false}'), +(24185, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.299+00', '{"cached":null,"ignore_cache":false}'), +(24186, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.359+00', '{"cached":null,"ignore_cache":false}'), +(24187, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:20.412+00', '{"cached":null,"ignore_cache":false}'), +(24188, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.352+00', '{"cached":null,"ignore_cache":false}'), +(24189, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.442+00', '{"cached":null,"ignore_cache":false}'), +(24190, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.5+00', '{"cached":null,"ignore_cache":false}'), +(24191, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.526+00', '{"cached":null,"ignore_cache":false}'), +(24192, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.546+00', '{"cached":null,"ignore_cache":false}'), +(24193, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.56+00', '{"cached":null,"ignore_cache":false}'), +(24194, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.638+00', '{"cached":null,"ignore_cache":false}'), +(24195, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.657+00', '{"cached":null,"ignore_cache":false}'), +(24196, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:50.661+00', '{"cached":null,"ignore_cache":false}'), +(24197, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.275+00', '{"cached":null,"ignore_cache":false}'), +(24198, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.298+00', '{"cached":null,"ignore_cache":false}'), +(24199, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.312+00', '{"cached":null,"ignore_cache":false}'), +(24200, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.326+00', '{"cached":null,"ignore_cache":false}'), +(24201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.348+00', '{"cached":null,"ignore_cache":false}'), +(24202, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.536+00', '{"cached":null,"ignore_cache":false}'), +(24203, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:13:51.542+00', '{"cached":null,"ignore_cache":false}'), +(24204, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.41+00', '{"cached":null,"ignore_cache":false}'), +(24205, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.441+00', '{"cached":null,"ignore_cache":false}'), +(24206, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.583+00', '{"cached":null,"ignore_cache":false}'), +(24207, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.646+00', '{"cached":null,"ignore_cache":false}'), +(24208, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.661+00', '{"cached":null,"ignore_cache":false}'), +(24209, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.662+00', '{"cached":null,"ignore_cache":false}'), +(24210, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.667+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24211, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.725+00', '{"cached":null,"ignore_cache":false}'), +(24212, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:20.794+00', '{"cached":null,"ignore_cache":false}'), +(24213, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:21.948+00', '{"cached":null,"ignore_cache":false}'), +(24214, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:22.005+00', '{"cached":null,"ignore_cache":false}'), +(24215, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:22.014+00', '{"cached":null,"ignore_cache":false}'), +(24216, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:22.071+00', '{"cached":null,"ignore_cache":false}'), +(24217, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:22.11+00', '{"cached":null,"ignore_cache":false}'), +(24218, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:22.168+00', '{"cached":null,"ignore_cache":false}'), +(24219, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:22.243+00', '{"cached":null,"ignore_cache":false}'), +(24220, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.047+00', '{"cached":null,"ignore_cache":false}'), +(24221, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.172+00', '{"cached":null,"ignore_cache":false}'), +(24222, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.18+00', '{"cached":null,"ignore_cache":false}'), +(24223, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.189+00', '{"cached":null,"ignore_cache":false}'), +(24224, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.204+00', '{"cached":null,"ignore_cache":false}'), +(24225, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.243+00', '{"cached":null,"ignore_cache":false}'), +(24226, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.272+00', '{"cached":null,"ignore_cache":false}'), +(24227, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.273+00', '{"cached":null,"ignore_cache":false}'), +(24228, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:50.289+00', '{"cached":null,"ignore_cache":false}'), +(24229, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.002+00', '{"cached":null,"ignore_cache":false}'), +(24230, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.008+00', '{"cached":null,"ignore_cache":false}'), +(24231, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.084+00', '{"cached":null,"ignore_cache":false}'), +(24232, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.087+00', '{"cached":null,"ignore_cache":false}'), +(24233, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.122+00', '{"cached":null,"ignore_cache":false}'), +(24234, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.214+00', '{"cached":null,"ignore_cache":false}'), +(24235, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:14:53.245+00', '{"cached":null,"ignore_cache":false}'), +(24236, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:20.988+00', '{"cached":null,"ignore_cache":false}'), +(24237, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.005+00', '{"cached":null,"ignore_cache":false}'), +(24238, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.034+00', '{"cached":null,"ignore_cache":false}'), +(24239, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.088+00', '{"cached":null,"ignore_cache":false}'), +(24240, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.109+00', '{"cached":null,"ignore_cache":false}'), +(24241, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.117+00', '{"cached":null,"ignore_cache":false}'), +(24242, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.117+00', '{"cached":null,"ignore_cache":false}'), +(24243, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.175+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24244, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:21.201+00', '{"cached":null,"ignore_cache":false}'), +(24245, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:24.02+00', '{"cached":null,"ignore_cache":false}'), +(24246, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:24.132+00', '{"cached":null,"ignore_cache":false}'), +(24247, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:24.151+00', '{"cached":null,"ignore_cache":false}'), +(24248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:24.182+00', '{"cached":null,"ignore_cache":false}'), +(24249, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:24.182+00', '{"cached":null,"ignore_cache":false}'), +(24250, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:24.239+00', '{"cached":null,"ignore_cache":false}'), +(24251, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:24.381+00', '{"cached":null,"ignore_cache":false}'), +(24252, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.166+00', '{"cached":null,"ignore_cache":false}'), +(24253, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.177+00', '{"cached":null,"ignore_cache":false}'), +(24254, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.251+00', '{"cached":null,"ignore_cache":false}'), +(24255, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.275+00', '{"cached":null,"ignore_cache":false}'), +(24256, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.34+00', '{"cached":null,"ignore_cache":false}'), +(24257, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.364+00', '{"cached":null,"ignore_cache":false}'), +(24258, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.38+00', '{"cached":null,"ignore_cache":false}'), +(24259, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.41+00', '{"cached":null,"ignore_cache":false}'), +(24260, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:51.438+00', '{"cached":null,"ignore_cache":false}'), +(24261, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.098+00', '{"cached":null,"ignore_cache":false}'), +(24262, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.138+00', '{"cached":null,"ignore_cache":false}'), +(24263, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.151+00', '{"cached":null,"ignore_cache":false}'), +(24264, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.165+00', '{"cached":null,"ignore_cache":false}'), +(24265, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.174+00', '{"cached":null,"ignore_cache":false}'), +(24266, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.216+00', '{"cached":null,"ignore_cache":false}'), +(24267, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:15:55.311+00', '{"cached":null,"ignore_cache":false}'), +(24268, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.49+00', '{"cached":null,"ignore_cache":false}'), +(24269, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.534+00', '{"cached":null,"ignore_cache":false}'), +(24270, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.537+00', '{"cached":null,"ignore_cache":false}'), +(24271, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.54+00', '{"cached":null,"ignore_cache":false}'), +(24272, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.553+00', '{"cached":null,"ignore_cache":false}'), +(24273, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.567+00', '{"cached":null,"ignore_cache":false}'), +(24274, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.589+00', '{"cached":null,"ignore_cache":false}'), +(24275, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.663+00', '{"cached":null,"ignore_cache":false}'), +(24276, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:23.68+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24277, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:26.031+00', '{"cached":null,"ignore_cache":false}'), +(24278, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:26.102+00', '{"cached":null,"ignore_cache":false}'), +(24279, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:26.174+00', '{"cached":null,"ignore_cache":false}'), +(24280, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:26.175+00', '{"cached":null,"ignore_cache":false}'), +(24281, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:26.199+00', '{"cached":null,"ignore_cache":false}'), +(24282, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:26.285+00', '{"cached":null,"ignore_cache":false}'), +(24283, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:26.371+00', '{"cached":null,"ignore_cache":false}'), +(24284, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.352+00', '{"cached":null,"ignore_cache":false}'), +(24285, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.42+00', '{"cached":null,"ignore_cache":false}'), +(24286, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.432+00', '{"cached":null,"ignore_cache":false}'), +(24287, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.434+00', '{"cached":null,"ignore_cache":false}'), +(24288, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.471+00', '{"cached":null,"ignore_cache":false}'), +(24289, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.477+00', '{"cached":null,"ignore_cache":false}'), +(24290, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.539+00', '{"cached":null,"ignore_cache":false}'), +(24291, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.547+00', '{"cached":null,"ignore_cache":false}'), +(24292, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:52.553+00', '{"cached":null,"ignore_cache":false}'), +(24293, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:56.954+00', '{"cached":null,"ignore_cache":false}'), +(24294, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:57.041+00', '{"cached":null,"ignore_cache":false}'), +(24295, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:57.06+00', '{"cached":null,"ignore_cache":false}'), +(24296, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:57.098+00', '{"cached":null,"ignore_cache":false}'), +(24297, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:57.108+00', '{"cached":null,"ignore_cache":false}'), +(24298, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:57.17+00', '{"cached":null,"ignore_cache":false}'), +(24299, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:16:57.541+00', '{"cached":null,"ignore_cache":false}'), +(24300, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.59+00', '{"cached":null,"ignore_cache":false}'), +(24301, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.715+00', '{"cached":null,"ignore_cache":false}'), +(24302, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.725+00', '{"cached":null,"ignore_cache":false}'), +(24303, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.768+00', '{"cached":null,"ignore_cache":false}'), +(24304, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.784+00', '{"cached":null,"ignore_cache":false}'), +(24305, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.787+00', '{"cached":null,"ignore_cache":false}'), +(24306, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.803+00', '{"cached":null,"ignore_cache":false}'), +(24307, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.811+00', '{"cached":null,"ignore_cache":false}'), +(24308, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:23.824+00', '{"cached":null,"ignore_cache":false}'), +(24309, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.984+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24310, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:27.997+00', '{"cached":null,"ignore_cache":false}'), +(24311, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:28.097+00', '{"cached":null,"ignore_cache":false}'), +(24312, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:28.111+00', '{"cached":null,"ignore_cache":false}'), +(24313, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:28.113+00', '{"cached":null,"ignore_cache":false}'), +(24314, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:28.187+00', '{"cached":null,"ignore_cache":false}'), +(24315, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:28.268+00', '{"cached":null,"ignore_cache":false}'), +(24316, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.056+00', '{"cached":null,"ignore_cache":false}'), +(24317, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.064+00', '{"cached":null,"ignore_cache":false}'), +(24318, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.101+00', '{"cached":null,"ignore_cache":false}'), +(24319, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.133+00', '{"cached":null,"ignore_cache":false}'), +(24320, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.139+00', '{"cached":null,"ignore_cache":false}'), +(24321, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.16+00', '{"cached":null,"ignore_cache":false}'), +(24322, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.168+00', '{"cached":null,"ignore_cache":false}'), +(24323, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.184+00', '{"cached":null,"ignore_cache":false}'), +(24324, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:53.193+00', '{"cached":null,"ignore_cache":false}'), +(24325, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.094+00', '{"cached":null,"ignore_cache":false}'), +(24326, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.164+00', '{"cached":null,"ignore_cache":false}'), +(24327, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.239+00', '{"cached":null,"ignore_cache":false}'), +(24328, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.31+00', '{"cached":null,"ignore_cache":false}'), +(24329, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.321+00', '{"cached":null,"ignore_cache":false}'), +(24330, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.51+00', '{"cached":null,"ignore_cache":false}'), +(24331, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:17:59.548+00', '{"cached":null,"ignore_cache":false}'), +(24332, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.213+00', '{"cached":null,"ignore_cache":false}'), +(24333, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.274+00', '{"cached":null,"ignore_cache":false}'), +(24334, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.275+00', '{"cached":null,"ignore_cache":false}'), +(24335, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.314+00', '{"cached":null,"ignore_cache":false}'), +(24336, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.317+00', '{"cached":null,"ignore_cache":false}'), +(24337, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.403+00', '{"cached":null,"ignore_cache":false}'), +(24338, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.416+00', '{"cached":null,"ignore_cache":false}'), +(24339, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.443+00', '{"cached":null,"ignore_cache":false}'), +(24340, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:23.452+00', '{"cached":null,"ignore_cache":false}'), +(24341, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.94+00', '{"cached":null,"ignore_cache":false}'), +(24342, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.945+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24343, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.96+00', '{"cached":null,"ignore_cache":false}'), +(24344, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.967+00', '{"cached":null,"ignore_cache":false}'), +(24345, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:29.982+00', '{"cached":null,"ignore_cache":false}'), +(24346, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:30.005+00', '{"cached":null,"ignore_cache":false}'), +(24347, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:30.104+00', '{"cached":null,"ignore_cache":false}'), +(24348, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.241+00', '{"cached":null,"ignore_cache":false}'), +(24349, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.251+00', '{"cached":null,"ignore_cache":false}'), +(24350, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.263+00', '{"cached":null,"ignore_cache":false}'), +(24351, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.312+00', '{"cached":null,"ignore_cache":false}'), +(24352, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.35+00', '{"cached":null,"ignore_cache":false}'), +(24353, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.357+00', '{"cached":null,"ignore_cache":false}'), +(24354, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.399+00', '{"cached":null,"ignore_cache":false}'), +(24355, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.413+00', '{"cached":null,"ignore_cache":false}'), +(24356, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:18:54.559+00', '{"cached":null,"ignore_cache":false}'), +(24357, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.041+00', '{"cached":null,"ignore_cache":false}'), +(24358, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.058+00', '{"cached":null,"ignore_cache":false}'), +(24359, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.066+00', '{"cached":null,"ignore_cache":false}'), +(24360, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.067+00', '{"cached":null,"ignore_cache":false}'), +(24361, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.138+00', '{"cached":null,"ignore_cache":false}'), +(24362, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.141+00', '{"cached":null,"ignore_cache":false}'), +(24363, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:01.191+00', '{"cached":null,"ignore_cache":false}'), +(24364, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.253+00', '{"cached":null,"ignore_cache":false}'), +(24365, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.266+00', '{"cached":null,"ignore_cache":false}'), +(24366, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.298+00', '{"cached":null,"ignore_cache":false}'), +(24367, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.332+00', '{"cached":null,"ignore_cache":false}'), +(24368, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.366+00', '{"cached":null,"ignore_cache":false}'), +(24369, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.381+00', '{"cached":null,"ignore_cache":false}'), +(24370, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.396+00', '{"cached":null,"ignore_cache":false}'), +(24371, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.408+00', '{"cached":null,"ignore_cache":false}'), +(24372, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:25.455+00', '{"cached":null,"ignore_cache":false}'), +(24373, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.267+00', '{"cached":null,"ignore_cache":false}'), +(24374, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.374+00', '{"cached":null,"ignore_cache":false}'), +(24375, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.446+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24376, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.457+00', '{"cached":null,"ignore_cache":false}'), +(24377, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.459+00', '{"cached":null,"ignore_cache":false}'), +(24378, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.508+00', '{"cached":null,"ignore_cache":false}'), +(24379, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:32.6+00', '{"cached":null,"ignore_cache":false}'), +(24380, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.138+00', '{"cached":null,"ignore_cache":false}'), +(24381, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.179+00', '{"cached":null,"ignore_cache":false}'), +(24382, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.203+00', '{"cached":null,"ignore_cache":false}'), +(24383, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.207+00', '{"cached":null,"ignore_cache":false}'), +(24384, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.208+00', '{"cached":null,"ignore_cache":false}'), +(24385, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.222+00', '{"cached":null,"ignore_cache":false}'), +(24386, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.223+00', '{"cached":null,"ignore_cache":false}'), +(24387, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.226+00', '{"cached":null,"ignore_cache":false}'), +(24388, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:19:56.235+00', '{"cached":null,"ignore_cache":false}'), +(24389, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.526+00', '{"cached":null,"ignore_cache":false}'), +(24390, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.531+00', '{"cached":null,"ignore_cache":false}'), +(24391, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.554+00', '{"cached":null,"ignore_cache":false}'), +(24392, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.56+00', '{"cached":null,"ignore_cache":false}'), +(24393, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.616+00', '{"cached":null,"ignore_cache":false}'), +(24394, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.697+00', '{"cached":null,"ignore_cache":false}'), +(24395, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:03.815+00', '{"cached":null,"ignore_cache":false}'), +(24396, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.228+00', '{"cached":null,"ignore_cache":false}'), +(24397, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.254+00', '{"cached":null,"ignore_cache":false}'), +(24398, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.334+00', '{"cached":null,"ignore_cache":false}'), +(24399, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.345+00', '{"cached":null,"ignore_cache":false}'), +(24400, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.347+00', '{"cached":null,"ignore_cache":false}'), +(24401, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.385+00', '{"cached":null,"ignore_cache":false}'), +(24402, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.42+00', '{"cached":null,"ignore_cache":false}'), +(24403, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.427+00', '{"cached":null,"ignore_cache":false}'), +(24404, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:28.466+00', '{"cached":null,"ignore_cache":false}'), +(24405, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.974+00', '{"cached":null,"ignore_cache":false}'), +(24406, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.993+00', '{"cached":null,"ignore_cache":false}'), +(24407, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:33.998+00', '{"cached":null,"ignore_cache":false}'), +(24408, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:34.042+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24409, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:34.05+00', '{"cached":null,"ignore_cache":false}'), +(24410, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:34.147+00', '{"cached":null,"ignore_cache":false}'), +(24411, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:34.223+00', '{"cached":null,"ignore_cache":false}'), +(24412, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.131+00', '{"cached":null,"ignore_cache":false}'), +(24413, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.222+00', '{"cached":null,"ignore_cache":false}'), +(24414, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.287+00', '{"cached":null,"ignore_cache":false}'), +(24415, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.302+00', '{"cached":null,"ignore_cache":false}'), +(24416, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.344+00', '{"cached":null,"ignore_cache":false}'), +(24417, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.399+00', '{"cached":null,"ignore_cache":false}'), +(24418, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.403+00', '{"cached":null,"ignore_cache":false}'), +(24419, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.407+00', '{"cached":null,"ignore_cache":false}'), +(24420, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:20:59.42+00', '{"cached":null,"ignore_cache":false}'), +(24421, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.155+00', '{"cached":null,"ignore_cache":false}'), +(24422, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.166+00', '{"cached":null,"ignore_cache":false}'), +(24423, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.169+00', '{"cached":null,"ignore_cache":false}'), +(24424, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.183+00', '{"cached":null,"ignore_cache":false}'), +(24425, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.197+00', '{"cached":null,"ignore_cache":false}'), +(24426, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.314+00', '{"cached":null,"ignore_cache":false}'), +(24427, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:05.324+00', '{"cached":null,"ignore_cache":false}'), +(24428, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.284+00', '{"cached":null,"ignore_cache":false}'), +(24429, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.291+00', '{"cached":null,"ignore_cache":false}'), +(24430, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.298+00', '{"cached":null,"ignore_cache":false}'), +(24431, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.323+00', '{"cached":null,"ignore_cache":false}'), +(24432, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.348+00', '{"cached":null,"ignore_cache":false}'), +(24433, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.39+00', '{"cached":null,"ignore_cache":false}'), +(24434, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.598+00', '{"cached":null,"ignore_cache":false}'), +(24435, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.642+00', '{"cached":null,"ignore_cache":false}'), +(24436, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:30.659+00', '{"cached":null,"ignore_cache":false}'), +(24437, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.921+00', '{"cached":null,"ignore_cache":false}'), +(24438, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.923+00', '{"cached":null,"ignore_cache":false}'), +(24439, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.941+00', '{"cached":null,"ignore_cache":false}'), +(24440, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.947+00', '{"cached":null,"ignore_cache":false}'), +(24441, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:35.961+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24442, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:36.046+00', '{"cached":null,"ignore_cache":false}'), +(24443, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:21:36.063+00', '{"cached":null,"ignore_cache":false}'), +(24444, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.258+00', '{"cached":null,"ignore_cache":false}'), +(24445, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.278+00', '{"cached":null,"ignore_cache":false}'), +(24446, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.294+00', '{"cached":null,"ignore_cache":false}'), +(24447, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.295+00', '{"cached":null,"ignore_cache":false}'), +(24448, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.318+00', '{"cached":null,"ignore_cache":false}'), +(24449, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.32+00', '{"cached":null,"ignore_cache":false}'), +(24450, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.324+00', '{"cached":null,"ignore_cache":false}'), +(24451, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.328+00', '{"cached":null,"ignore_cache":false}'), +(24452, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:01.338+00', '{"cached":null,"ignore_cache":false}'), +(24453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.073+00', '{"cached":null,"ignore_cache":false}'), +(24454, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.09+00', '{"cached":null,"ignore_cache":false}'), +(24455, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.106+00', '{"cached":null,"ignore_cache":false}'), +(24456, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.175+00', '{"cached":null,"ignore_cache":false}'), +(24457, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.215+00', '{"cached":null,"ignore_cache":false}'), +(24458, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.304+00', '{"cached":null,"ignore_cache":false}'), +(24459, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:07.348+00', '{"cached":null,"ignore_cache":false}'), +(24460, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.239+00', '{"cached":null,"ignore_cache":false}'), +(24461, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.24+00', '{"cached":null,"ignore_cache":false}'), +(24462, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.242+00', '{"cached":null,"ignore_cache":false}'), +(24463, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.244+00', '{"cached":null,"ignore_cache":false}'), +(24464, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.253+00', '{"cached":null,"ignore_cache":false}'), +(24465, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.263+00', '{"cached":null,"ignore_cache":false}'), +(24466, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.274+00', '{"cached":null,"ignore_cache":false}'), +(24467, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.28+00', '{"cached":null,"ignore_cache":false}'), +(24468, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:32.329+00', '{"cached":null,"ignore_cache":false}'), +(24469, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.122+00', '{"cached":null,"ignore_cache":false}'), +(24470, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.136+00', '{"cached":null,"ignore_cache":false}'), +(24471, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.181+00', '{"cached":null,"ignore_cache":false}'), +(24472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.184+00', '{"cached":null,"ignore_cache":false}'), +(24473, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.206+00', '{"cached":null,"ignore_cache":false}'), +(24474, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.303+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24475, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:22:38.387+00', '{"cached":null,"ignore_cache":false}'), +(24476, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.456+00', '{"cached":null,"ignore_cache":false}'), +(24477, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.473+00', '{"cached":null,"ignore_cache":false}'), +(24478, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.496+00', '{"cached":null,"ignore_cache":false}'), +(24479, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.585+00', '{"cached":null,"ignore_cache":false}'), +(24480, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.672+00', '{"cached":null,"ignore_cache":false}'), +(24481, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.719+00', '{"cached":null,"ignore_cache":false}'), +(24482, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.726+00', '{"cached":null,"ignore_cache":false}'), +(24483, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.728+00', '{"cached":null,"ignore_cache":false}'), +(24484, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:03.737+00', '{"cached":null,"ignore_cache":false}'), +(24485, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.976+00', '{"cached":null,"ignore_cache":false}'), +(24486, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:09.983+00', '{"cached":null,"ignore_cache":false}'), +(24487, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:10.101+00', '{"cached":null,"ignore_cache":false}'), +(24488, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:10.106+00', '{"cached":null,"ignore_cache":false}'), +(24489, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:10.125+00', '{"cached":null,"ignore_cache":false}'), +(24490, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:10.176+00', '{"cached":null,"ignore_cache":false}'), +(24491, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:10.265+00', '{"cached":null,"ignore_cache":false}'), +(24492, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.188+00', '{"cached":null,"ignore_cache":false}'), +(24493, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.269+00', '{"cached":null,"ignore_cache":false}'), +(24494, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.278+00', '{"cached":null,"ignore_cache":false}'), +(24495, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.294+00', '{"cached":null,"ignore_cache":false}'), +(24496, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.337+00', '{"cached":null,"ignore_cache":false}'), +(24497, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.357+00', '{"cached":null,"ignore_cache":false}'), +(24498, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.431+00', '{"cached":null,"ignore_cache":false}'), +(24499, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.444+00', '{"cached":null,"ignore_cache":false}'), +(24500, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:34.454+00', '{"cached":null,"ignore_cache":false}'), +(24501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.175+00', '{"cached":null,"ignore_cache":false}'), +(24502, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.192+00', '{"cached":null,"ignore_cache":false}'), +(24503, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.201+00', '{"cached":null,"ignore_cache":false}'), +(24504, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.241+00', '{"cached":null,"ignore_cache":false}'), +(24505, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.259+00', '{"cached":null,"ignore_cache":false}'), +(24506, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.368+00', '{"cached":null,"ignore_cache":false}'), +(24507, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:23:41.485+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24508, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.117+00', '{"cached":null,"ignore_cache":false}'), +(24509, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.147+00', '{"cached":null,"ignore_cache":false}'), +(24510, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.162+00', '{"cached":null,"ignore_cache":false}'), +(24511, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.207+00', '{"cached":null,"ignore_cache":false}'), +(24512, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.232+00', '{"cached":null,"ignore_cache":false}'), +(24513, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.242+00', '{"cached":null,"ignore_cache":false}'), +(24514, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.256+00', '{"cached":null,"ignore_cache":false}'), +(24515, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.271+00', '{"cached":null,"ignore_cache":false}'), +(24516, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:05.286+00', '{"cached":null,"ignore_cache":false}'), +(24517, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.051+00', '{"cached":null,"ignore_cache":false}'), +(24518, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.168+00', '{"cached":null,"ignore_cache":false}'), +(24519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.204+00', '{"cached":null,"ignore_cache":false}'), +(24520, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.224+00', '{"cached":null,"ignore_cache":false}'), +(24521, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.231+00', '{"cached":null,"ignore_cache":false}'), +(24522, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.287+00', '{"cached":null,"ignore_cache":false}'), +(24523, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 15:24:13.421+00', '{"cached":null,"ignore_cache":false}'), +(24524, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:54.246+00', '{"cached":null,"ignore_cache":null}'), +(24525, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.313+00', '{"cached":null,"ignore_cache":false}'), +(24526, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.363+00', '{"cached":null,"ignore_cache":false}'), +(24527, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.369+00', '{"cached":null,"ignore_cache":false}'), +(24528, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.384+00', '{"cached":null,"ignore_cache":false}'), +(24529, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.399+00', '{"cached":null,"ignore_cache":false}'), +(24530, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.444+00', '{"cached":null,"ignore_cache":false}'), +(24531, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:21:55.478+00', '{"cached":null,"ignore_cache":false}'), +(24532, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:31.443+00', '{"cached":null,"ignore_cache":null}'), +(24533, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.291+00', '{"cached":null,"ignore_cache":false}'), +(24534, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.312+00', '{"cached":null,"ignore_cache":false}'), +(24535, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.315+00', '{"cached":null,"ignore_cache":false}'), +(24536, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.366+00', '{"cached":null,"ignore_cache":false}'), +(24537, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.408+00', '{"cached":null,"ignore_cache":false}'), +(24538, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.448+00', '{"cached":null,"ignore_cache":false}'), +(24539, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:32.524+00', '{"cached":null,"ignore_cache":false}'), +(24540, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:42.965+00', '{"cached":null,"ignore_cache":null}'), +(24541, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:43.627+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24542, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:29:58.844+00', '{"cached":null,"ignore_cache":false}'), +(24543, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:30:39.683+00', '{"cached":null,"ignore_cache":false}'), +(24544, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.167+00', '{"cached":null,"ignore_cache":null}'), +(24545, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:46.923+00', '{"cached":null,"ignore_cache":false}'), +(24546, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:47.058+00', '{"cached":null,"ignore_cache":false}'), +(24547, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:47.098+00', '{"cached":null,"ignore_cache":false}'), +(24548, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:47.099+00', '{"cached":null,"ignore_cache":false}'), +(24549, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:47.116+00', '{"cached":null,"ignore_cache":false}'), +(24550, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:47.244+00', '{"cached":null,"ignore_cache":false}'), +(24551, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:47.35+00', '{"cached":null,"ignore_cache":false}'), +(24552, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:49.184+00', '{"cached":null,"ignore_cache":null}'), +(24553, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:32:49.89+00', '{"cached":null,"ignore_cache":false}'), +(24554, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.004+00', '{"cached":null,"ignore_cache":null}'), +(24555, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.48+00', '{"cached":null,"ignore_cache":false}'), +(24556, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.551+00', '{"cached":null,"ignore_cache":false}'), +(24557, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.568+00', '{"cached":null,"ignore_cache":false}'), +(24558, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.588+00', '{"cached":null,"ignore_cache":false}'), +(24559, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.652+00', '{"cached":null,"ignore_cache":false}'), +(24560, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.689+00', '{"cached":null,"ignore_cache":false}'), +(24561, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:53.699+00', '{"cached":null,"ignore_cache":false}'), +(24562, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:55.518+00', '{"cached":null,"ignore_cache":null}'), +(24563, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:39:55.956+00', '{"cached":null,"ignore_cache":false}'), +(24564, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.082+00', '{"cached":null,"ignore_cache":null}'), +(24565, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.5+00', '{"cached":null,"ignore_cache":false}'), +(24566, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.568+00', '{"cached":null,"ignore_cache":false}'), +(24567, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.588+00', '{"cached":null,"ignore_cache":false}'), +(24568, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.67+00', '{"cached":null,"ignore_cache":false}'), +(24569, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.725+00', '{"cached":null,"ignore_cache":false}'), +(24570, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.878+00', '{"cached":null,"ignore_cache":false}'), +(24571, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:11.889+00', '{"cached":null,"ignore_cache":false}'), +(24572, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:13.077+00', '{"cached":null,"ignore_cache":null}'), +(24573, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:40:13.551+00', '{"cached":null,"ignore_cache":false}'), +(24574, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.089+00', '{"cached":null,"ignore_cache":null}'), +(24575, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.529+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24576, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.542+00', '{"cached":null,"ignore_cache":false}'), +(24577, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.608+00', '{"cached":null,"ignore_cache":false}'), +(24578, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.641+00', '{"cached":null,"ignore_cache":false}'), +(24579, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.688+00', '{"cached":null,"ignore_cache":false}'), +(24580, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:49.69+00', '{"cached":null,"ignore_cache":false}'), +(24581, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:50.59+00', '{"cached":null,"ignore_cache":false}'), +(24582, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.028+00', '{"cached":null,"ignore_cache":false}'), +(24583, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.035+00', '{"cached":null,"ignore_cache":false}'), +(24584, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.064+00', '{"cached":null,"ignore_cache":false}'), +(24585, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.067+00', '{"cached":null,"ignore_cache":false}'), +(24586, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.1+00', '{"cached":null,"ignore_cache":false}'), +(24587, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.129+00', '{"cached":null,"ignore_cache":false}'), +(24588, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:24.216+00', '{"cached":null,"ignore_cache":false}'), +(24589, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.639+00', '{"cached":null,"ignore_cache":false}'), +(24590, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.692+00', '{"cached":null,"ignore_cache":false}'), +(24591, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.719+00', '{"cached":null,"ignore_cache":false}'), +(24592, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.746+00', '{"cached":null,"ignore_cache":false}'), +(24593, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.751+00', '{"cached":null,"ignore_cache":false}'), +(24594, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.826+00', '{"cached":null,"ignore_cache":false}'), +(24595, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 17:43:26.961+00', '{"cached":null,"ignore_cache":false}'), +(24596, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:14.587+00', '{"cached":null,"ignore_cache":null}'), +(24597, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.243+00', '{"cached":null,"ignore_cache":false}'), +(24598, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.273+00', '{"cached":null,"ignore_cache":false}'), +(24599, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.335+00', '{"cached":null,"ignore_cache":false}'), +(24600, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.387+00', '{"cached":null,"ignore_cache":false}'), +(24601, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.395+00', '{"cached":null,"ignore_cache":false}'), +(24602, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.41+00', '{"cached":null,"ignore_cache":false}'), +(24603, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.435+00', '{"cached":null,"ignore_cache":false}'), +(24604, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.464+00', '{"cached":null,"ignore_cache":false}'), +(24605, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 17:44:15.476+00', '{"cached":null,"ignore_cache":false}'), +(24606, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:44.688+00', '{"cached":null,"ignore_cache":null}'), +(24607, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:48.942+00', '{"cached":null,"ignore_cache":null}'), +(24608, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:49.752+00', '{"cached":null,"ignore_cache":false}'), +(24609, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:50.033+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24610, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:50.605+00', '{"cached":null,"ignore_cache":null}'), +(24611, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:50.961+00', '{"cached":null,"ignore_cache":null}'), +(24612, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:51.701+00', '{"cached":null,"ignore_cache":false}'), +(24613, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:51.883+00', '{"cached":null,"ignore_cache":null}'), +(24614, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:52.664+00', '{"cached":null,"ignore_cache":false}'), +(24615, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:53.068+00', '{"cached":null,"ignore_cache":null}'), +(24616, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:53.654+00', '{"cached":null,"ignore_cache":null}'), +(24617, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:54.051+00', '{"cached":null,"ignore_cache":null}'), +(24618, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:54.84+00', '{"cached":null,"ignore_cache":false}'), +(24619, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:55.578+00', '{"cached":null,"ignore_cache":null}'), +(24620, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:56.302+00', '{"cached":null,"ignore_cache":false}'), +(24621, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:56.377+00', '{"cached":null,"ignore_cache":null}'), +(24622, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:56.994+00', '{"cached":null,"ignore_cache":null}'), +(24623, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:57.445+00', '{"cached":null,"ignore_cache":null}'), +(24624, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 17:46:58.294+00', '{"cached":null,"ignore_cache":false}'), +(24625, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:53.226+00', '{"cached":null,"ignore_cache":null}'), +(24626, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.056+00', '{"cached":null,"ignore_cache":false}'), +(24627, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.114+00', '{"cached":null,"ignore_cache":false}'), +(24628, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.258+00', '{"cached":null,"ignore_cache":false}'), +(24629, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.286+00', '{"cached":null,"ignore_cache":false}'), +(24630, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.298+00', '{"cached":null,"ignore_cache":false}'), +(24631, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.315+00', '{"cached":null,"ignore_cache":false}'), +(24632, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.328+00', '{"cached":null,"ignore_cache":false}'), +(24633, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.357+00', '{"cached":null,"ignore_cache":false}'), +(24634, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 17:47:54.407+00', '{"cached":null,"ignore_cache":false}'), +(24635, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 18:01:31.052+00', '{"cached":null,"ignore_cache":null}'), +(24636, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:27.494+00', '{"cached":null,"ignore_cache":null}'), +(24637, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.351+00', '{"cached":null,"ignore_cache":false}'), +(24638, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.442+00', '{"cached":null,"ignore_cache":false}'), +(24639, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.5+00', '{"cached":null,"ignore_cache":false}'), +(24640, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.611+00', '{"cached":null,"ignore_cache":false}'), +(24641, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.622+00', '{"cached":null,"ignore_cache":false}'), +(24642, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:28.629+00', '{"cached":null,"ignore_cache":false}'), +(24643, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:29.536+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24644, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:37.85+00', '{"cached":null,"ignore_cache":null}'), +(24645, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.428+00', '{"cached":null,"ignore_cache":false}'), +(24646, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.515+00', '{"cached":null,"ignore_cache":false}'), +(24647, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.521+00', '{"cached":null,"ignore_cache":false}'), +(24648, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.543+00', '{"cached":null,"ignore_cache":false}'), +(24649, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.565+00', '{"cached":null,"ignore_cache":false}'), +(24650, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.661+00', '{"cached":null,"ignore_cache":false}'), +(24651, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.667+00', '{"cached":null,"ignore_cache":false}'), +(24652, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.68+00', '{"cached":null,"ignore_cache":false}'), +(24653, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 18:02:38.75+00', '{"cached":null,"ignore_cache":false}'), +(24654, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 18:04:01.706+00', '{"cached":null,"ignore_cache":null}'), +(24655, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 18:05:36.639+00', '{"cached":null,"ignore_cache":null}'), +(24656, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 18:05:37.111+00', '{"cached":null,"ignore_cache":false}'), +(24657, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:20.592+00', '{"cached":null,"ignore_cache":null}'), +(24658, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.142+00', '{"cached":null,"ignore_cache":false}'), +(24659, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.285+00', '{"cached":null,"ignore_cache":false}'), +(24660, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.329+00', '{"cached":null,"ignore_cache":false}'), +(24661, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.396+00', '{"cached":null,"ignore_cache":false}'), +(24662, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.399+00', '{"cached":null,"ignore_cache":false}'), +(24663, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.4+00', '{"cached":null,"ignore_cache":false}'), +(24664, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.406+00', '{"cached":null,"ignore_cache":false}'), +(24665, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.531+00', '{"cached":null,"ignore_cache":false}'), +(24666, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:21.608+00', '{"cached":null,"ignore_cache":false}'), +(24667, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-22 18:07:52.577+00', '{"cached":null,"ignore_cache":null}'), +(24668, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.708+00', '{"cached":null,"ignore_cache":false}'), +(24669, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.746+00', '{"cached":null,"ignore_cache":false}'), +(24670, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.764+00', '{"cached":null,"ignore_cache":false}'), +(24671, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.91+00', '{"cached":null,"ignore_cache":false}'), +(24672, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.949+00', '{"cached":null,"ignore_cache":false}'), +(24673, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:00.967+00', '{"cached":null,"ignore_cache":false}'), +(24674, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:01.019+00', '{"cached":null,"ignore_cache":false}'), +(24675, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:01.057+00', '{"cached":null,"ignore_cache":false}'), +(24676, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-22 18:08:01.067+00', '{"cached":null,"ignore_cache":false}'), +(24677, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.031+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24678, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.647+00', '{"cached":null,"ignore_cache":false}'), +(24679, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.75+00', '{"cached":null,"ignore_cache":false}'), +(24680, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:35.983+00', '{"cached":null,"ignore_cache":false}'), +(24681, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.075+00', '{"cached":null,"ignore_cache":false}'), +(24682, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.249+00', '{"cached":null,"ignore_cache":false}'), +(24683, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.263+00', '{"cached":null,"ignore_cache":false}'), +(24684, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.35+00', '{"cached":null,"ignore_cache":false}'), +(24685, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.353+00', '{"cached":null,"ignore_cache":false}'), +(24686, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.483+00', '{"cached":null,"ignore_cache":false}'), +(24687, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.556+00', '{"cached":null,"ignore_cache":false}'), +(24688, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.813+00', '{"cached":null,"ignore_cache":false}'), +(24689, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.931+00', '{"cached":null,"ignore_cache":false}'), +(24690, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.932+00', '{"cached":null,"ignore_cache":false}'), +(24691, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.934+00', '{"cached":null,"ignore_cache":false}'), +(24692, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:36.99+00', '{"cached":null,"ignore_cache":false}'), +(24693, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:37.057+00', '{"cached":null,"ignore_cache":false}'), +(24694, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:37.058+00', '{"cached":null,"ignore_cache":false}'), +(24695, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:37.408+00', '{"cached":null,"ignore_cache":false}'), +(24696, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:37.409+00', '{"cached":null,"ignore_cache":false}'), +(24697, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:37.769+00', '{"cached":null,"ignore_cache":false}'), +(24698, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:37.905+00', '{"cached":null,"ignore_cache":false}'), +(24699, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:53:38.51+00', '{"cached":null,"ignore_cache":false}'), +(24700, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.693+00', '{"cached":null,"ignore_cache":false}'), +(24701, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.703+00', '{"cached":null,"ignore_cache":false}'), +(24702, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.704+00', '{"cached":null,"ignore_cache":false}'), +(24703, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:05.742+00', '{"cached":null,"ignore_cache":false}'), +(24704, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.059+00', '{"cached":null,"ignore_cache":false}'), +(24705, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.1+00', '{"cached":null,"ignore_cache":false}'), +(24706, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.18+00', '{"cached":null,"ignore_cache":false}'), +(24707, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.306+00', '{"cached":null,"ignore_cache":false}'), +(24708, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.351+00', '{"cached":null,"ignore_cache":false}'), +(24709, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.391+00', '{"cached":null,"ignore_cache":false}'), +(24710, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.404+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24711, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.448+00', '{"cached":null,"ignore_cache":false}'), +(24712, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.48+00', '{"cached":null,"ignore_cache":false}'), +(24713, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.489+00', '{"cached":null,"ignore_cache":false}'), +(24714, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:06.528+00', '{"cached":null,"ignore_cache":false}'), +(24715, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:07.063+00', '{"cached":null,"ignore_cache":false}'), +(24716, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.839+00', '{"cached":null,"ignore_cache":false}'), +(24717, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:39.974+00', '{"cached":null,"ignore_cache":false}'), +(24718, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.037+00', '{"cached":null,"ignore_cache":false}'), +(24719, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.055+00', '{"cached":null,"ignore_cache":false}'), +(24720, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.078+00', '{"cached":null,"ignore_cache":false}'), +(24721, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.111+00', '{"cached":null,"ignore_cache":false}'), +(24722, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.225+00', '{"cached":null,"ignore_cache":false}'), +(24723, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.238+00', '{"cached":null,"ignore_cache":false}'), +(24724, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:40.239+00', '{"cached":null,"ignore_cache":false}'), +(24725, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.573+00', '{"cached":null,"ignore_cache":false}'), +(24726, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.602+00', '{"cached":null,"ignore_cache":false}'), +(24727, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.621+00', '{"cached":null,"ignore_cache":false}'), +(24728, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.635+00', '{"cached":null,"ignore_cache":false}'), +(24729, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.657+00', '{"cached":null,"ignore_cache":false}'), +(24730, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:43.751+00', '{"cached":null,"ignore_cache":false}'), +(24731, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:54:44.426+00', '{"cached":null,"ignore_cache":false}'), +(24732, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.726+00', '{"cached":null,"ignore_cache":false}'), +(24733, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:16.921+00', '{"cached":null,"ignore_cache":false}'), +(24734, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.093+00', '{"cached":null,"ignore_cache":false}'), +(24735, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.119+00', '{"cached":null,"ignore_cache":false}'), +(24736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.138+00', '{"cached":null,"ignore_cache":false}'), +(24737, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.161+00', '{"cached":null,"ignore_cache":false}'), +(24738, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.216+00', '{"cached":null,"ignore_cache":false}'), +(24739, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.284+00', '{"cached":null,"ignore_cache":false}'), +(24740, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:17.298+00', '{"cached":null,"ignore_cache":false}'), +(24741, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.376+00', '{"cached":null,"ignore_cache":false}'), +(24742, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.377+00', '{"cached":null,"ignore_cache":false}'), +(24743, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.387+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24744, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.443+00', '{"cached":null,"ignore_cache":false}'), +(24745, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.452+00', '{"cached":null,"ignore_cache":false}'), +(24746, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:20.458+00', '{"cached":null,"ignore_cache":false}'), +(24747, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:21.216+00', '{"cached":null,"ignore_cache":false}'), +(24748, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.508+00', '{"cached":null,"ignore_cache":false}'), +(24749, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.529+00', '{"cached":null,"ignore_cache":false}'), +(24750, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.56+00', '{"cached":null,"ignore_cache":false}'), +(24751, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.57+00', '{"cached":null,"ignore_cache":false}'), +(24752, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.595+00', '{"cached":null,"ignore_cache":false}'), +(24753, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.605+00', '{"cached":null,"ignore_cache":false}'), +(24754, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.615+00', '{"cached":null,"ignore_cache":false}'), +(24755, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.616+00', '{"cached":null,"ignore_cache":false}'), +(24756, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:49.618+00', '{"cached":null,"ignore_cache":false}'), +(24757, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.668+00', '{"cached":null,"ignore_cache":false}'), +(24758, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.694+00', '{"cached":null,"ignore_cache":false}'), +(24759, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.71+00', '{"cached":null,"ignore_cache":false}'), +(24760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.729+00', '{"cached":null,"ignore_cache":false}'), +(24761, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.756+00', '{"cached":null,"ignore_cache":false}'), +(24762, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:55.828+00', '{"cached":null,"ignore_cache":false}'), +(24763, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:55:56.596+00', '{"cached":null,"ignore_cache":false}'), +(24764, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.271+00', '{"cached":null,"ignore_cache":false}'), +(24765, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.347+00', '{"cached":null,"ignore_cache":false}'), +(24766, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.352+00', '{"cached":null,"ignore_cache":false}'), +(24767, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.398+00', '{"cached":null,"ignore_cache":false}'), +(24768, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.449+00', '{"cached":null,"ignore_cache":false}'), +(24769, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.451+00', '{"cached":null,"ignore_cache":false}'), +(24770, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.461+00', '{"cached":null,"ignore_cache":false}'), +(24771, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.473+00', '{"cached":null,"ignore_cache":false}'), +(24772, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:22.482+00', '{"cached":null,"ignore_cache":false}'), +(24773, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.668+00', '{"cached":null,"ignore_cache":false}'), +(24774, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.734+00', '{"cached":null,"ignore_cache":false}'), +(24775, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.771+00', '{"cached":null,"ignore_cache":false}'), +(24776, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.797+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24777, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.818+00', '{"cached":null,"ignore_cache":false}'), +(24778, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:27.852+00', '{"cached":null,"ignore_cache":false}'), +(24779, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:28.658+00', '{"cached":null,"ignore_cache":false}'), +(24780, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.994+00', '{"cached":null,"ignore_cache":false}'), +(24781, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:58.995+00', '{"cached":null,"ignore_cache":false}'), +(24782, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:59.001+00', '{"cached":null,"ignore_cache":false}'), +(24783, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:59.034+00', '{"cached":null,"ignore_cache":false}'), +(24784, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:59.048+00', '{"cached":null,"ignore_cache":false}'), +(24785, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:59.061+00', '{"cached":null,"ignore_cache":false}'), +(24786, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:59.084+00', '{"cached":null,"ignore_cache":false}'), +(24787, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:59.139+00', '{"cached":null,"ignore_cache":false}'), +(24788, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:56:59.161+00', '{"cached":null,"ignore_cache":false}'), +(24789, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.467+00', '{"cached":null,"ignore_cache":false}'), +(24790, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.485+00', '{"cached":null,"ignore_cache":false}'), +(24791, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.545+00', '{"cached":null,"ignore_cache":false}'), +(24792, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.553+00', '{"cached":null,"ignore_cache":false}'), +(24793, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.574+00', '{"cached":null,"ignore_cache":false}'), +(24794, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:05.662+00', '{"cached":null,"ignore_cache":false}'), +(24795, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:06.206+00', '{"cached":null,"ignore_cache":false}'), +(24796, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:36.943+00', '{"cached":null,"ignore_cache":false}'), +(24797, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.134+00', '{"cached":null,"ignore_cache":false}'), +(24798, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.173+00', '{"cached":null,"ignore_cache":false}'), +(24799, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.189+00', '{"cached":null,"ignore_cache":false}'), +(24800, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.2+00', '{"cached":null,"ignore_cache":false}'), +(24801, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.346+00', '{"cached":null,"ignore_cache":false}'), +(24802, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.347+00', '{"cached":null,"ignore_cache":false}'), +(24803, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.499+00', '{"cached":null,"ignore_cache":false}'), +(24804, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:37.519+00', '{"cached":null,"ignore_cache":false}'), +(24805, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.165+00', '{"cached":null,"ignore_cache":false}'), +(24806, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.184+00', '{"cached":null,"ignore_cache":false}'), +(24807, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.202+00', '{"cached":null,"ignore_cache":false}'), +(24808, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.243+00', '{"cached":null,"ignore_cache":false}'), +(24809, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.288+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24810, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.407+00', '{"cached":null,"ignore_cache":false}'), +(24811, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:57:47.991+00', '{"cached":null,"ignore_cache":false}'), +(24812, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:16.976+00', '{"cached":null,"ignore_cache":false}'), +(24813, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.324+00', '{"cached":null,"ignore_cache":false}'), +(24814, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.33+00', '{"cached":null,"ignore_cache":false}'), +(24815, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.34+00', '{"cached":null,"ignore_cache":false}'), +(24816, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.359+00', '{"cached":null,"ignore_cache":false}'), +(24817, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.382+00', '{"cached":null,"ignore_cache":false}'), +(24818, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.394+00', '{"cached":null,"ignore_cache":false}'), +(24819, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.41+00', '{"cached":null,"ignore_cache":false}'), +(24820, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:17.427+00', '{"cached":null,"ignore_cache":false}'), +(24821, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.645+00', '{"cached":null,"ignore_cache":false}'), +(24822, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.683+00', '{"cached":null,"ignore_cache":false}'), +(24823, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.689+00', '{"cached":null,"ignore_cache":false}'), +(24824, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.702+00', '{"cached":null,"ignore_cache":false}'), +(24825, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.715+00', '{"cached":null,"ignore_cache":false}'), +(24826, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:29.789+00', '{"cached":null,"ignore_cache":false}'), +(24827, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:58:30.324+00', '{"cached":null,"ignore_cache":false}'), +(24828, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.118+00', '{"cached":null,"ignore_cache":false}'), +(24829, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.285+00', '{"cached":null,"ignore_cache":false}'), +(24830, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.294+00', '{"cached":null,"ignore_cache":false}'), +(24831, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.333+00', '{"cached":null,"ignore_cache":false}'), +(24832, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.361+00', '{"cached":null,"ignore_cache":false}'), +(24833, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.381+00', '{"cached":null,"ignore_cache":false}'), +(24834, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.433+00', '{"cached":null,"ignore_cache":false}'), +(24835, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.434+00', '{"cached":null,"ignore_cache":false}'), +(24836, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:40.55+00', '{"cached":null,"ignore_cache":false}'), +(24837, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.653+00', '{"cached":null,"ignore_cache":false}'), +(24838, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.702+00', '{"cached":null,"ignore_cache":false}'), +(24839, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.778+00', '{"cached":null,"ignore_cache":false}'), +(24840, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.782+00', '{"cached":null,"ignore_cache":false}'), +(24841, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.803+00', '{"cached":null,"ignore_cache":false}'), +(24842, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:51.851+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24843, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 01:59:52.473+00', '{"cached":null,"ignore_cache":false}'), +(24844, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.913+00', '{"cached":null,"ignore_cache":false}'), +(24845, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.921+00', '{"cached":null,"ignore_cache":false}'), +(24846, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.936+00', '{"cached":null,"ignore_cache":false}'), +(24847, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.969+00', '{"cached":null,"ignore_cache":false}'), +(24848, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.976+00', '{"cached":null,"ignore_cache":false}'), +(24849, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.986+00', '{"cached":null,"ignore_cache":false}'), +(24850, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:20.989+00', '{"cached":null,"ignore_cache":false}'), +(24851, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:21.018+00', '{"cached":null,"ignore_cache":false}'), +(24852, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:21.057+00', '{"cached":null,"ignore_cache":false}'), +(24853, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.767+00', '{"cached":null,"ignore_cache":false}'), +(24854, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.871+00', '{"cached":null,"ignore_cache":false}'), +(24855, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.876+00', '{"cached":null,"ignore_cache":false}'), +(24856, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.878+00', '{"cached":null,"ignore_cache":false}'), +(24857, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:30.919+00', '{"cached":null,"ignore_cache":false}'), +(24858, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:31.027+00', '{"cached":null,"ignore_cache":false}'), +(24859, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:00:31.769+00', '{"cached":null,"ignore_cache":false}'), +(24860, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.513+00', '{"cached":null,"ignore_cache":false}'), +(24861, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.528+00', '{"cached":null,"ignore_cache":false}'), +(24862, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.532+00', '{"cached":null,"ignore_cache":false}'), +(24863, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.594+00', '{"cached":null,"ignore_cache":false}'), +(24864, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.621+00', '{"cached":null,"ignore_cache":false}'), +(24865, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.635+00', '{"cached":null,"ignore_cache":false}'), +(24866, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.646+00', '{"cached":null,"ignore_cache":false}'), +(24867, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.655+00', '{"cached":null,"ignore_cache":false}'), +(24868, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:05:32.68+00', '{"cached":null,"ignore_cache":false}'), +(24869, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.663+00', '{"cached":null,"ignore_cache":false}'), +(24870, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.676+00', '{"cached":null,"ignore_cache":false}'), +(24871, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.722+00', '{"cached":null,"ignore_cache":false}'), +(24872, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.734+00', '{"cached":null,"ignore_cache":false}'), +(24873, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.742+00', '{"cached":null,"ignore_cache":false}'), +(24874, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:08.857+00', '{"cached":null,"ignore_cache":false}'), +(24875, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:09.525+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24876, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.797+00', '{"cached":null,"ignore_cache":false}'), +(24877, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.872+00', '{"cached":null,"ignore_cache":false}'), +(24878, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.884+00', '{"cached":null,"ignore_cache":false}'), +(24879, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.885+00', '{"cached":null,"ignore_cache":false}'), +(24880, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.903+00', '{"cached":null,"ignore_cache":false}'), +(24881, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:33.945+00', '{"cached":null,"ignore_cache":false}'), +(24882, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:34.037+00', '{"cached":null,"ignore_cache":false}'), +(24883, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:34.067+00', '{"cached":null,"ignore_cache":false}'), +(24884, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:34.08+00', '{"cached":null,"ignore_cache":false}'), +(24885, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.266+00', '{"cached":null,"ignore_cache":false}'), +(24886, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.291+00', '{"cached":null,"ignore_cache":false}'), +(24887, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.298+00', '{"cached":null,"ignore_cache":false}'), +(24888, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.324+00', '{"cached":null,"ignore_cache":false}'), +(24889, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.333+00', '{"cached":null,"ignore_cache":false}'), +(24890, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.386+00', '{"cached":null,"ignore_cache":false}'), +(24891, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:08:41.957+00', '{"cached":null,"ignore_cache":false}'), +(24892, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.818+00', '{"cached":null,"ignore_cache":false}'), +(24893, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.871+00', '{"cached":null,"ignore_cache":false}'), +(24894, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.889+00', '{"cached":null,"ignore_cache":false}'), +(24895, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.915+00', '{"cached":null,"ignore_cache":false}'), +(24896, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.93+00', '{"cached":null,"ignore_cache":false}'), +(24897, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.934+00', '{"cached":null,"ignore_cache":false}'), +(24898, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.976+00', '{"cached":null,"ignore_cache":false}'), +(24899, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.984+00', '{"cached":null,"ignore_cache":false}'), +(24900, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:03.996+00', '{"cached":null,"ignore_cache":false}'), +(24901, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.107+00', '{"cached":null,"ignore_cache":false}'), +(24902, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.202+00', '{"cached":null,"ignore_cache":false}'), +(24903, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.209+00', '{"cached":null,"ignore_cache":false}'), +(24904, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.24+00', '{"cached":null,"ignore_cache":false}'), +(24905, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.27+00', '{"cached":null,"ignore_cache":false}'), +(24906, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.276+00', '{"cached":null,"ignore_cache":false}'), +(24907, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:15.965+00', '{"cached":null,"ignore_cache":false}'), +(24908, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.626+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24909, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.683+00', '{"cached":null,"ignore_cache":false}'), +(24910, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.718+00', '{"cached":null,"ignore_cache":false}'), +(24911, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.724+00', '{"cached":null,"ignore_cache":false}'), +(24912, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.729+00', '{"cached":null,"ignore_cache":false}'), +(24913, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.732+00', '{"cached":null,"ignore_cache":false}'), +(24914, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.733+00', '{"cached":null,"ignore_cache":false}'), +(24915, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.743+00', '{"cached":null,"ignore_cache":false}'), +(24916, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:39.747+00', '{"cached":null,"ignore_cache":false}'), +(24917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.791+00', '{"cached":null,"ignore_cache":false}'), +(24918, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.809+00', '{"cached":null,"ignore_cache":false}'), +(24919, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.822+00', '{"cached":null,"ignore_cache":false}'), +(24920, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.826+00', '{"cached":null,"ignore_cache":false}'), +(24921, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.831+00', '{"cached":null,"ignore_cache":false}'), +(24922, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:49.921+00', '{"cached":null,"ignore_cache":false}'), +(24923, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:09:50.495+00', '{"cached":null,"ignore_cache":false}'), +(24924, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.793+00', '{"cached":null,"ignore_cache":false}'), +(24925, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.983+00', '{"cached":null,"ignore_cache":false}'), +(24926, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:12.989+00', '{"cached":null,"ignore_cache":false}'), +(24927, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:13.082+00', '{"cached":null,"ignore_cache":false}'), +(24928, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:13.099+00', '{"cached":null,"ignore_cache":false}'), +(24929, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:13.133+00', '{"cached":null,"ignore_cache":false}'), +(24930, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:13.149+00', '{"cached":null,"ignore_cache":false}'), +(24931, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:13.173+00', '{"cached":null,"ignore_cache":false}'), +(24932, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:13.181+00', '{"cached":null,"ignore_cache":false}'), +(24933, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.725+00', '{"cached":null,"ignore_cache":false}'), +(24934, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.755+00', '{"cached":null,"ignore_cache":false}'), +(24935, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.756+00', '{"cached":null,"ignore_cache":false}'), +(24936, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.777+00', '{"cached":null,"ignore_cache":false}'), +(24937, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.792+00', '{"cached":null,"ignore_cache":false}'), +(24938, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:24.949+00', '{"cached":null,"ignore_cache":false}'), +(24939, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:25.492+00', '{"cached":null,"ignore_cache":false}'), +(24940, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.677+00', '{"cached":null,"ignore_cache":false}'), +(24941, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.683+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24942, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.69+00', '{"cached":null,"ignore_cache":false}'), +(24943, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.694+00', '{"cached":null,"ignore_cache":false}'), +(24944, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.729+00', '{"cached":null,"ignore_cache":false}'), +(24945, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.731+00', '{"cached":null,"ignore_cache":false}'), +(24946, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.737+00', '{"cached":null,"ignore_cache":false}'), +(24947, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.758+00', '{"cached":null,"ignore_cache":false}'), +(24948, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:10:50.768+00', '{"cached":null,"ignore_cache":false}'), +(24949, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.329+00', '{"cached":null,"ignore_cache":false}'), +(24950, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.333+00', '{"cached":null,"ignore_cache":false}'), +(24951, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.373+00', '{"cached":null,"ignore_cache":false}'), +(24952, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.39+00', '{"cached":null,"ignore_cache":false}'), +(24953, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.396+00', '{"cached":null,"ignore_cache":false}'), +(24954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:01.469+00', '{"cached":null,"ignore_cache":false}'), +(24955, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:02.045+00', '{"cached":null,"ignore_cache":false}'), +(24956, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.538+00', '{"cached":null,"ignore_cache":false}'), +(24957, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.614+00', '{"cached":null,"ignore_cache":false}'), +(24958, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.632+00', '{"cached":null,"ignore_cache":false}'), +(24959, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.634+00', '{"cached":null,"ignore_cache":false}'), +(24960, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.681+00', '{"cached":null,"ignore_cache":false}'), +(24961, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.695+00', '{"cached":null,"ignore_cache":false}'), +(24962, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.725+00', '{"cached":null,"ignore_cache":false}'), +(24963, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.726+00', '{"cached":null,"ignore_cache":false}'), +(24964, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:21.733+00', '{"cached":null,"ignore_cache":false}'), +(24965, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.926+00', '{"cached":null,"ignore_cache":false}'), +(24966, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:34.953+00', '{"cached":null,"ignore_cache":false}'), +(24967, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:35.124+00', '{"cached":null,"ignore_cache":false}'), +(24968, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:35.14+00', '{"cached":null,"ignore_cache":false}'), +(24969, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:35.178+00', '{"cached":null,"ignore_cache":false}'), +(24970, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:35.221+00', '{"cached":null,"ignore_cache":false}'), +(24971, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:36.124+00', '{"cached":null,"ignore_cache":false}'), +(24972, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.94+00', '{"cached":null,"ignore_cache":false}'), +(24973, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:55.987+00', '{"cached":null,"ignore_cache":false}'), +(24974, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.004+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(24975, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.05+00', '{"cached":null,"ignore_cache":false}'), +(24976, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.06+00', '{"cached":null,"ignore_cache":false}'), +(24977, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.126+00', '{"cached":null,"ignore_cache":false}'), +(24978, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.147+00', '{"cached":null,"ignore_cache":false}'), +(24979, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.148+00', '{"cached":null,"ignore_cache":false}'), +(24980, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:11:56.174+00', '{"cached":null,"ignore_cache":false}'), +(24981, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.67+00', '{"cached":null,"ignore_cache":false}'), +(24982, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.679+00', '{"cached":null,"ignore_cache":false}'), +(24983, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.792+00', '{"cached":null,"ignore_cache":false}'), +(24984, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.846+00', '{"cached":null,"ignore_cache":false}'), +(24985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.852+00', '{"cached":null,"ignore_cache":false}'), +(24986, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:10.948+00', '{"cached":null,"ignore_cache":false}'), +(24987, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:11.705+00', '{"cached":null,"ignore_cache":false}'), +(24988, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.81+00', '{"cached":null,"ignore_cache":false}'), +(24989, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.812+00', '{"cached":null,"ignore_cache":false}'), +(24990, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.824+00', '{"cached":null,"ignore_cache":false}'), +(24991, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.964+00', '{"cached":null,"ignore_cache":false}'), +(24992, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.967+00', '{"cached":null,"ignore_cache":false}'), +(24993, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:32.991+00', '{"cached":null,"ignore_cache":false}'), +(24994, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:33.006+00', '{"cached":null,"ignore_cache":false}'), +(24995, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:33.016+00', '{"cached":null,"ignore_cache":false}'), +(24996, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:33.018+00', '{"cached":null,"ignore_cache":false}'), +(24997, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.869+00', '{"cached":null,"ignore_cache":false}'), +(24998, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.944+00', '{"cached":null,"ignore_cache":false}'), +(24999, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:46.958+00', '{"cached":null,"ignore_cache":false}'), +(25000, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:47.048+00', '{"cached":null,"ignore_cache":false}'), +(25001, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:47.093+00', '{"cached":null,"ignore_cache":false}'), +(25002, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:47.177+00', '{"cached":null,"ignore_cache":false}'), +(25003, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:12:47.915+00', '{"cached":null,"ignore_cache":false}'), +(25004, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07+00', '{"cached":null,"ignore_cache":false}'), +(25005, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.035+00', '{"cached":null,"ignore_cache":false}'), +(25006, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.065+00', '{"cached":null,"ignore_cache":false}'), +(25007, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.127+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25008, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.168+00', '{"cached":null,"ignore_cache":false}'), +(25009, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.2+00', '{"cached":null,"ignore_cache":false}'), +(25010, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.256+00', '{"cached":null,"ignore_cache":false}'), +(25011, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.267+00', '{"cached":null,"ignore_cache":false}'), +(25012, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:07.344+00', '{"cached":null,"ignore_cache":false}'), +(25013, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.682+00', '{"cached":null,"ignore_cache":false}'), +(25014, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.738+00', '{"cached":null,"ignore_cache":false}'), +(25015, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.789+00', '{"cached":null,"ignore_cache":false}'), +(25016, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.801+00', '{"cached":null,"ignore_cache":false}'), +(25017, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.865+00', '{"cached":null,"ignore_cache":false}'), +(25018, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:21.951+00', '{"cached":null,"ignore_cache":false}'), +(25019, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:22.555+00', '{"cached":null,"ignore_cache":false}'), +(25020, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.565+00', '{"cached":null,"ignore_cache":false}'), +(25021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.638+00', '{"cached":null,"ignore_cache":false}'), +(25022, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.668+00', '{"cached":null,"ignore_cache":false}'), +(25023, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.686+00', '{"cached":null,"ignore_cache":false}'), +(25024, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.739+00', '{"cached":null,"ignore_cache":false}'), +(25025, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.742+00', '{"cached":null,"ignore_cache":false}'), +(25026, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.759+00', '{"cached":null,"ignore_cache":false}'), +(25027, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.765+00', '{"cached":null,"ignore_cache":false}'), +(25028, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:41.783+00', '{"cached":null,"ignore_cache":false}'), +(25029, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.231+00', '{"cached":null,"ignore_cache":false}'), +(25030, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.253+00', '{"cached":null,"ignore_cache":false}'), +(25031, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.341+00', '{"cached":null,"ignore_cache":false}'), +(25032, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.372+00', '{"cached":null,"ignore_cache":false}'), +(25033, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.378+00', '{"cached":null,"ignore_cache":false}'), +(25034, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:54.442+00', '{"cached":null,"ignore_cache":false}'), +(25035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:13:55.221+00', '{"cached":null,"ignore_cache":false}'), +(25036, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.803+00', '{"cached":null,"ignore_cache":false}'), +(25037, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.874+00', '{"cached":null,"ignore_cache":false}'), +(25038, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.906+00', '{"cached":null,"ignore_cache":false}'), +(25039, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.943+00', '{"cached":null,"ignore_cache":false}'), +(25040, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.967+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25041, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.994+00', '{"cached":null,"ignore_cache":false}'), +(25042, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:28.995+00', '{"cached":null,"ignore_cache":false}'), +(25043, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:29.005+00', '{"cached":null,"ignore_cache":false}'), +(25044, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:29.1+00', '{"cached":null,"ignore_cache":false}'), +(25045, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.861+00', '{"cached":null,"ignore_cache":false}'), +(25046, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.887+00', '{"cached":null,"ignore_cache":false}'), +(25047, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.915+00', '{"cached":null,"ignore_cache":false}'), +(25048, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:41.98+00', '{"cached":null,"ignore_cache":false}'), +(25049, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:42.009+00', '{"cached":null,"ignore_cache":false}'), +(25050, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:42.162+00', '{"cached":null,"ignore_cache":false}'), +(25051, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:21:42.901+00', '{"cached":null,"ignore_cache":false}'), +(25052, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.533+00', '{"cached":null,"ignore_cache":false}'), +(25053, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.577+00', '{"cached":null,"ignore_cache":false}'), +(25054, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.582+00', '{"cached":null,"ignore_cache":false}'), +(25055, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.583+00', '{"cached":null,"ignore_cache":false}'), +(25056, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.624+00', '{"cached":null,"ignore_cache":false}'), +(25057, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.652+00', '{"cached":null,"ignore_cache":false}'), +(25058, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.668+00', '{"cached":null,"ignore_cache":false}'), +(25059, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.684+00', '{"cached":null,"ignore_cache":false}'), +(25060, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:05.722+00', '{"cached":null,"ignore_cache":false}'), +(25061, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.756+00', '{"cached":null,"ignore_cache":false}'), +(25062, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.8+00', '{"cached":null,"ignore_cache":false}'), +(25063, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.842+00', '{"cached":null,"ignore_cache":false}'), +(25064, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.91+00', '{"cached":null,"ignore_cache":false}'), +(25065, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:19.926+00', '{"cached":null,"ignore_cache":false}'), +(25066, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:20.094+00', '{"cached":null,"ignore_cache":false}'), +(25067, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:20.705+00', '{"cached":null,"ignore_cache":false}'), +(25068, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.984+00', '{"cached":null,"ignore_cache":false}'), +(25069, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.988+00', '{"cached":null,"ignore_cache":false}'), +(25070, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.99+00', '{"cached":null,"ignore_cache":false}'), +(25071, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:41.991+00', '{"cached":null,"ignore_cache":false}'), +(25072, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:42.016+00', '{"cached":null,"ignore_cache":false}'), +(25073, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:42.019+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25074, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:42.03+00', '{"cached":null,"ignore_cache":false}'), +(25075, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:42.033+00', '{"cached":null,"ignore_cache":false}'), +(25076, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:42.063+00', '{"cached":null,"ignore_cache":false}'), +(25077, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.828+00', '{"cached":null,"ignore_cache":false}'), +(25078, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.933+00', '{"cached":null,"ignore_cache":false}'), +(25079, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.939+00', '{"cached":null,"ignore_cache":false}'), +(25080, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:58.988+00', '{"cached":null,"ignore_cache":false}'), +(25081, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:59.092+00', '{"cached":null,"ignore_cache":false}'), +(25082, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:59.105+00', '{"cached":null,"ignore_cache":false}'), +(25083, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:22:59.769+00', '{"cached":null,"ignore_cache":false}'), +(25084, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.63+00', '{"cached":null,"ignore_cache":false}'), +(25085, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.661+00', '{"cached":null,"ignore_cache":false}'), +(25086, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.679+00', '{"cached":null,"ignore_cache":false}'), +(25087, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.702+00', '{"cached":null,"ignore_cache":false}'), +(25088, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.712+00', '{"cached":null,"ignore_cache":false}'), +(25089, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.746+00', '{"cached":null,"ignore_cache":false}'), +(25090, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.782+00', '{"cached":null,"ignore_cache":false}'), +(25091, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.82+00', '{"cached":null,"ignore_cache":false}'), +(25092, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:17.846+00', '{"cached":null,"ignore_cache":false}'), +(25093, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.667+00', '{"cached":null,"ignore_cache":false}'), +(25094, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.684+00', '{"cached":null,"ignore_cache":false}'), +(25095, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.745+00', '{"cached":null,"ignore_cache":false}'), +(25096, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.775+00', '{"cached":null,"ignore_cache":false}'), +(25097, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.785+00', '{"cached":null,"ignore_cache":false}'), +(25098, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:34.929+00', '{"cached":null,"ignore_cache":false}'), +(25099, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:35.629+00', '{"cached":null,"ignore_cache":false}'), +(25100, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.78+00', '{"cached":null,"ignore_cache":false}'), +(25101, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:51.967+00', '{"cached":null,"ignore_cache":false}'), +(25102, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.002+00', '{"cached":null,"ignore_cache":false}'), +(25103, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.077+00', '{"cached":null,"ignore_cache":false}'), +(25104, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.112+00', '{"cached":null,"ignore_cache":false}'), +(25105, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.143+00', '{"cached":null,"ignore_cache":false}'), +(25106, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.177+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25107, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.234+00', '{"cached":null,"ignore_cache":false}'), +(25108, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:23:52.284+00', '{"cached":null,"ignore_cache":false}'), +(25109, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.613+00', '{"cached":null,"ignore_cache":false}'), +(25110, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.639+00', '{"cached":null,"ignore_cache":false}'), +(25111, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.643+00', '{"cached":null,"ignore_cache":false}'), +(25112, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.667+00', '{"cached":null,"ignore_cache":false}'), +(25113, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.675+00', '{"cached":null,"ignore_cache":false}'), +(25114, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:07.735+00', '{"cached":null,"ignore_cache":false}'), +(25115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:08.389+00', '{"cached":null,"ignore_cache":false}'), +(25116, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.67+00', '{"cached":null,"ignore_cache":false}'), +(25117, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.679+00', '{"cached":null,"ignore_cache":false}'), +(25118, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.696+00', '{"cached":null,"ignore_cache":false}'), +(25119, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.74+00', '{"cached":null,"ignore_cache":false}'), +(25120, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.75+00', '{"cached":null,"ignore_cache":false}'), +(25121, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.758+00', '{"cached":null,"ignore_cache":false}'), +(25122, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.762+00', '{"cached":null,"ignore_cache":false}'), +(25123, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.771+00', '{"cached":null,"ignore_cache":false}'), +(25124, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:25.807+00', '{"cached":null,"ignore_cache":false}'), +(25125, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.779+00', '{"cached":null,"ignore_cache":false}'), +(25126, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.8+00', '{"cached":null,"ignore_cache":false}'), +(25127, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.838+00', '{"cached":null,"ignore_cache":false}'), +(25128, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.843+00', '{"cached":null,"ignore_cache":false}'), +(25129, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.847+00', '{"cached":null,"ignore_cache":false}'), +(25130, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:45.898+00', '{"cached":null,"ignore_cache":false}'), +(25131, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:24:46.483+00', '{"cached":null,"ignore_cache":false}'), +(25132, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:03.974+00', '{"cached":null,"ignore_cache":false}'), +(25133, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.079+00', '{"cached":null,"ignore_cache":false}'), +(25134, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.096+00', '{"cached":null,"ignore_cache":false}'), +(25135, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.14+00', '{"cached":null,"ignore_cache":false}'), +(25136, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.159+00', '{"cached":null,"ignore_cache":false}'), +(25137, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.184+00', '{"cached":null,"ignore_cache":false}'), +(25138, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.202+00', '{"cached":null,"ignore_cache":false}'), +(25139, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.228+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25140, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:04.23+00', '{"cached":null,"ignore_cache":false}'), +(25141, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.635+00', '{"cached":null,"ignore_cache":false}'), +(25142, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.639+00', '{"cached":null,"ignore_cache":false}'), +(25143, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.793+00', '{"cached":null,"ignore_cache":false}'), +(25144, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.798+00', '{"cached":null,"ignore_cache":false}'), +(25145, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.81+00', '{"cached":null,"ignore_cache":false}'), +(25146, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:24.831+00', '{"cached":null,"ignore_cache":false}'), +(25147, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:25.527+00', '{"cached":null,"ignore_cache":false}'), +(25148, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.725+00', '{"cached":null,"ignore_cache":false}'), +(25149, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.789+00', '{"cached":null,"ignore_cache":false}'), +(25150, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.795+00', '{"cached":null,"ignore_cache":false}'), +(25151, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.799+00', '{"cached":null,"ignore_cache":false}'), +(25152, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.802+00', '{"cached":null,"ignore_cache":false}'), +(25153, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.838+00', '{"cached":null,"ignore_cache":false}'), +(25154, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.84+00', '{"cached":null,"ignore_cache":false}'), +(25155, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.84+00', '{"cached":null,"ignore_cache":false}'), +(25156, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:25:44.866+00', '{"cached":null,"ignore_cache":false}'), +(25157, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.359+00', '{"cached":null,"ignore_cache":false}'), +(25158, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.517+00', '{"cached":null,"ignore_cache":false}'), +(25159, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.569+00', '{"cached":null,"ignore_cache":false}'), +(25160, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.588+00', '{"cached":null,"ignore_cache":false}'), +(25161, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.611+00', '{"cached":null,"ignore_cache":false}'), +(25162, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:04.62+00', '{"cached":null,"ignore_cache":false}'), +(25163, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:05.519+00', '{"cached":null,"ignore_cache":false}'), +(25164, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.381+00', '{"cached":null,"ignore_cache":false}'), +(25165, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.413+00', '{"cached":null,"ignore_cache":false}'), +(25166, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.442+00', '{"cached":null,"ignore_cache":false}'), +(25167, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.45+00', '{"cached":null,"ignore_cache":false}'), +(25168, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.453+00', '{"cached":null,"ignore_cache":false}'), +(25169, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.468+00', '{"cached":null,"ignore_cache":false}'), +(25170, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.489+00', '{"cached":null,"ignore_cache":false}'), +(25171, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.496+00', '{"cached":null,"ignore_cache":false}'), +(25172, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:18.499+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25173, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.729+00', '{"cached":null,"ignore_cache":false}'), +(25174, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.774+00', '{"cached":null,"ignore_cache":false}'), +(25175, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.785+00', '{"cached":null,"ignore_cache":false}'), +(25176, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.802+00', '{"cached":null,"ignore_cache":false}'), +(25177, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:34.916+00', '{"cached":null,"ignore_cache":false}'), +(25178, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:35.055+00', '{"cached":null,"ignore_cache":false}'), +(25179, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:35.947+00', '{"cached":null,"ignore_cache":false}'), +(25180, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.707+00', '{"cached":null,"ignore_cache":false}'), +(25181, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.726+00', '{"cached":null,"ignore_cache":false}'), +(25182, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.804+00', '{"cached":null,"ignore_cache":false}'), +(25183, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.817+00', '{"cached":null,"ignore_cache":false}'), +(25184, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.83+00', '{"cached":null,"ignore_cache":false}'), +(25185, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.849+00', '{"cached":null,"ignore_cache":false}'), +(25186, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.85+00', '{"cached":null,"ignore_cache":false}'), +(25187, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.878+00', '{"cached":null,"ignore_cache":false}'), +(25188, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:26:49.892+00', '{"cached":null,"ignore_cache":false}'), +(25189, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.643+00', '{"cached":null,"ignore_cache":false}'), +(25190, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.695+00', '{"cached":null,"ignore_cache":false}'), +(25191, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.734+00', '{"cached":null,"ignore_cache":false}'), +(25192, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.746+00', '{"cached":null,"ignore_cache":false}'), +(25193, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.852+00', '{"cached":null,"ignore_cache":false}'), +(25194, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:09.887+00', '{"cached":null,"ignore_cache":false}'), +(25195, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:10.885+00', '{"cached":null,"ignore_cache":false}'), +(25196, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.886+00', '{"cached":null,"ignore_cache":false}'), +(25197, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:25.947+00', '{"cached":null,"ignore_cache":false}'), +(25198, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:26.03+00', '{"cached":null,"ignore_cache":false}'), +(25199, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:26.066+00', '{"cached":null,"ignore_cache":false}'), +(25200, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:26.094+00', '{"cached":null,"ignore_cache":false}'), +(25201, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:26.11+00', '{"cached":null,"ignore_cache":false}'), +(25202, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:26.138+00', '{"cached":null,"ignore_cache":false}'), +(25203, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:26.162+00', '{"cached":null,"ignore_cache":false}'), +(25204, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:26.209+00', '{"cached":null,"ignore_cache":false}'), +(25205, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.321+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25206, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.382+00', '{"cached":null,"ignore_cache":false}'), +(25207, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.413+00', '{"cached":null,"ignore_cache":false}'), +(25208, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.453+00', '{"cached":null,"ignore_cache":false}'), +(25209, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.515+00', '{"cached":null,"ignore_cache":false}'), +(25210, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:43.549+00', '{"cached":null,"ignore_cache":false}'), +(25211, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:44.387+00', '{"cached":null,"ignore_cache":false}'), +(25212, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.258+00', '{"cached":null,"ignore_cache":false}'), +(25213, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.382+00', '{"cached":null,"ignore_cache":false}'), +(25214, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.408+00', '{"cached":null,"ignore_cache":false}'), +(25215, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.418+00', '{"cached":null,"ignore_cache":false}'), +(25216, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.535+00', '{"cached":null,"ignore_cache":false}'), +(25217, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.536+00', '{"cached":null,"ignore_cache":false}'), +(25218, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.553+00', '{"cached":null,"ignore_cache":false}'), +(25219, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.579+00', '{"cached":null,"ignore_cache":false}'), +(25220, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:27:58.58+00', '{"cached":null,"ignore_cache":false}'), +(25221, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.599+00', '{"cached":null,"ignore_cache":false}'), +(25222, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.61+00', '{"cached":null,"ignore_cache":false}'), +(25223, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.629+00', '{"cached":null,"ignore_cache":false}'), +(25224, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.636+00', '{"cached":null,"ignore_cache":false}'), +(25225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.648+00', '{"cached":null,"ignore_cache":false}'), +(25226, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:17.755+00', '{"cached":null,"ignore_cache":false}'), +(25227, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:18.303+00', '{"cached":null,"ignore_cache":false}'), +(25228, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.101+00', '{"cached":null,"ignore_cache":false}'), +(25229, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.106+00', '{"cached":null,"ignore_cache":false}'), +(25230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.193+00', '{"cached":null,"ignore_cache":false}'), +(25231, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.199+00', '{"cached":null,"ignore_cache":false}'), +(25232, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.209+00', '{"cached":null,"ignore_cache":false}'), +(25233, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.23+00', '{"cached":null,"ignore_cache":false}'), +(25234, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.253+00', '{"cached":null,"ignore_cache":false}'), +(25235, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.356+00', '{"cached":null,"ignore_cache":false}'), +(25236, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:34.407+00', '{"cached":null,"ignore_cache":false}'), +(25237, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:53.845+00', '{"cached":null,"ignore_cache":false}'), +(25238, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:54.016+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25239, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:54.03+00', '{"cached":null,"ignore_cache":false}'), +(25240, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:54.053+00', '{"cached":null,"ignore_cache":false}'), +(25241, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:54.064+00', '{"cached":null,"ignore_cache":false}'), +(25242, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:54.105+00', '{"cached":null,"ignore_cache":false}'), +(25243, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:28:55.048+00', '{"cached":null,"ignore_cache":false}'), +(25244, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.671+00', '{"cached":null,"ignore_cache":false}'), +(25245, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.76+00', '{"cached":null,"ignore_cache":false}'), +(25246, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.778+00', '{"cached":null,"ignore_cache":false}'), +(25247, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.832+00', '{"cached":null,"ignore_cache":false}'), +(25248, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.851+00', '{"cached":null,"ignore_cache":false}'), +(25249, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.859+00', '{"cached":null,"ignore_cache":false}'), +(25250, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.867+00', '{"cached":null,"ignore_cache":false}'), +(25251, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.889+00', '{"cached":null,"ignore_cache":false}'), +(25252, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:07.913+00', '{"cached":null,"ignore_cache":false}'), +(25253, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.875+00', '{"cached":null,"ignore_cache":false}'), +(25254, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.9+00', '{"cached":null,"ignore_cache":false}'), +(25255, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.917+00', '{"cached":null,"ignore_cache":false}'), +(25256, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:28.956+00', '{"cached":null,"ignore_cache":false}'), +(25257, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:29+00', '{"cached":null,"ignore_cache":false}'), +(25258, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:29.066+00', '{"cached":null,"ignore_cache":false}'), +(25259, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:29.757+00', '{"cached":null,"ignore_cache":false}'), +(25260, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.509+00', '{"cached":null,"ignore_cache":false}'), +(25261, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.56+00', '{"cached":null,"ignore_cache":false}'), +(25262, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.597+00', '{"cached":null,"ignore_cache":false}'), +(25263, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.616+00', '{"cached":null,"ignore_cache":false}'), +(25264, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.62+00', '{"cached":null,"ignore_cache":false}'), +(25265, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.637+00', '{"cached":null,"ignore_cache":false}'), +(25266, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.654+00', '{"cached":null,"ignore_cache":false}'), +(25267, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.661+00', '{"cached":null,"ignore_cache":false}'), +(25268, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:29:43.687+00', '{"cached":null,"ignore_cache":false}'), +(25269, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.503+00', '{"cached":null,"ignore_cache":false}'), +(25270, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.644+00', '{"cached":null,"ignore_cache":false}'), +(25271, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.706+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25272, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.727+00', '{"cached":null,"ignore_cache":false}'), +(25273, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.747+00', '{"cached":null,"ignore_cache":false}'), +(25274, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:09.898+00', '{"cached":null,"ignore_cache":false}'), +(25275, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:10.802+00', '{"cached":null,"ignore_cache":false}'), +(25276, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.856+00', '{"cached":null,"ignore_cache":false}'), +(25277, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.939+00', '{"cached":null,"ignore_cache":false}'), +(25278, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.953+00', '{"cached":null,"ignore_cache":false}'), +(25279, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.961+00', '{"cached":null,"ignore_cache":false}'), +(25280, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.968+00', '{"cached":null,"ignore_cache":false}'), +(25281, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.989+00', '{"cached":null,"ignore_cache":false}'), +(25282, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:22.998+00', '{"cached":null,"ignore_cache":false}'), +(25283, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:23.003+00', '{"cached":null,"ignore_cache":false}'), +(25284, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:23.017+00', '{"cached":null,"ignore_cache":false}'), +(25285, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.72+00', '{"cached":null,"ignore_cache":false}'), +(25286, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.789+00', '{"cached":null,"ignore_cache":false}'), +(25287, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.792+00', '{"cached":null,"ignore_cache":false}'), +(25288, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.813+00', '{"cached":null,"ignore_cache":false}'), +(25289, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.813+00', '{"cached":null,"ignore_cache":false}'), +(25290, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:46.977+00', '{"cached":null,"ignore_cache":false}'), +(25291, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:30:47.732+00', '{"cached":null,"ignore_cache":false}'), +(25292, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.832+00', '{"cached":null,"ignore_cache":false}'), +(25293, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.861+00', '{"cached":null,"ignore_cache":false}'), +(25294, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.879+00', '{"cached":null,"ignore_cache":false}'), +(25295, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.9+00', '{"cached":null,"ignore_cache":false}'), +(25296, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.908+00', '{"cached":null,"ignore_cache":false}'), +(25297, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.913+00', '{"cached":null,"ignore_cache":false}'), +(25298, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.922+00', '{"cached":null,"ignore_cache":false}'), +(25299, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.923+00', '{"cached":null,"ignore_cache":false}'), +(25300, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:00.945+00', '{"cached":null,"ignore_cache":false}'), +(25301, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.659+00', '{"cached":null,"ignore_cache":false}'), +(25302, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.676+00', '{"cached":null,"ignore_cache":false}'), +(25303, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.693+00', '{"cached":null,"ignore_cache":false}'), +(25304, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.702+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25305, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.702+00', '{"cached":null,"ignore_cache":false}'), +(25306, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:24.782+00', '{"cached":null,"ignore_cache":false}'), +(25307, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:25.447+00', '{"cached":null,"ignore_cache":false}'), +(25308, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.059+00', '{"cached":null,"ignore_cache":false}'), +(25309, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.178+00', '{"cached":null,"ignore_cache":false}'), +(25310, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.249+00', '{"cached":null,"ignore_cache":false}'), +(25311, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.305+00', '{"cached":null,"ignore_cache":false}'), +(25312, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.34+00', '{"cached":null,"ignore_cache":false}'), +(25313, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.403+00', '{"cached":null,"ignore_cache":false}'), +(25314, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.445+00', '{"cached":null,"ignore_cache":false}'), +(25315, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.457+00', '{"cached":null,"ignore_cache":false}'), +(25316, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:31:38.515+00', '{"cached":null,"ignore_cache":false}'), +(25317, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.978+00', '{"cached":null,"ignore_cache":false}'), +(25318, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:01.99+00', '{"cached":null,"ignore_cache":false}'), +(25319, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:02.07+00', '{"cached":null,"ignore_cache":false}'), +(25320, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:02.088+00', '{"cached":null,"ignore_cache":false}'), +(25321, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:02.094+00', '{"cached":null,"ignore_cache":false}'), +(25322, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:02.111+00', '{"cached":null,"ignore_cache":false}'), +(25323, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:02.72+00', '{"cached":null,"ignore_cache":false}'), +(25324, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.728+00', '{"cached":null,"ignore_cache":false}'), +(25325, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.874+00', '{"cached":null,"ignore_cache":false}'), +(25326, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.919+00', '{"cached":null,"ignore_cache":false}'), +(25327, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.927+00', '{"cached":null,"ignore_cache":false}'), +(25328, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.935+00', '{"cached":null,"ignore_cache":false}'), +(25329, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.953+00', '{"cached":null,"ignore_cache":false}'), +(25330, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:14.981+00', '{"cached":null,"ignore_cache":false}'), +(25331, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:15.005+00', '{"cached":null,"ignore_cache":false}'), +(25332, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:15.008+00', '{"cached":null,"ignore_cache":false}'), +(25333, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.774+00', '{"cached":null,"ignore_cache":false}'), +(25334, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.798+00', '{"cached":null,"ignore_cache":false}'), +(25335, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.81+00', '{"cached":null,"ignore_cache":false}'), +(25336, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.816+00', '{"cached":null,"ignore_cache":false}'), +(25337, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.817+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25338, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:38.878+00', '{"cached":null,"ignore_cache":false}'), +(25339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 02:32:39.533+00', '{"cached":null,"ignore_cache":false}'), +(25340, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.871+00', '{"cached":null,"ignore_cache":false}'), +(25341, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.896+00', '{"cached":null,"ignore_cache":false}'), +(25342, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.902+00', '{"cached":null,"ignore_cache":false}'), +(25343, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.906+00', '{"cached":null,"ignore_cache":false}'), +(25344, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.934+00', '{"cached":null,"ignore_cache":false}'), +(25345, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.941+00', '{"cached":null,"ignore_cache":false}'), +(25346, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.944+00', '{"cached":null,"ignore_cache":false}'), +(25347, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.948+00', '{"cached":null,"ignore_cache":false}'), +(25348, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 02:35:31.96+00', '{"cached":null,"ignore_cache":false}'), +(25349, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:23.343+00', '{"cached":null,"ignore_cache":null}'), +(25350, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.546+00', '{"cached":null,"ignore_cache":false}'), +(25351, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.562+00', '{"cached":null,"ignore_cache":false}'), +(25352, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.567+00', '{"cached":null,"ignore_cache":false}'), +(25353, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.58+00', '{"cached":null,"ignore_cache":false}'), +(25354, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.582+00', '{"cached":null,"ignore_cache":false}'), +(25355, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:24.707+00', '{"cached":null,"ignore_cache":false}'), +(25356, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:25.373+00', '{"cached":null,"ignore_cache":false}'), +(25357, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:47.683+00', '{"cached":null,"ignore_cache":null}'), +(25358, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:37:48.773+00', '{"cached":null,"ignore_cache":false}'), +(25359, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.299+00', '{"cached":null,"ignore_cache":null}'), +(25360, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.83+00', '{"cached":null,"ignore_cache":false}'), +(25361, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.853+00', '{"cached":null,"ignore_cache":false}'), +(25362, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.92+00', '{"cached":null,"ignore_cache":false}'), +(25363, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.95+00', '{"cached":null,"ignore_cache":false}'), +(25364, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:54.991+00', '{"cached":null,"ignore_cache":false}'), +(25365, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:55.022+00', '{"cached":null,"ignore_cache":false}'), +(25366, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:41:55.679+00', '{"cached":null,"ignore_cache":false}'), +(25367, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:42:00.293+00', '{"cached":null,"ignore_cache":null}'), +(25368, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:42:01.5+00', '{"cached":null,"ignore_cache":false}'), +(25369, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.171+00', '{"cached":null,"ignore_cache":null}'), +(25370, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.779+00', '{"cached":null,"ignore_cache":false}'), +(25371, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.797+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25372, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:47.949+00', '{"cached":null,"ignore_cache":false}'), +(25373, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:48.006+00', '{"cached":null,"ignore_cache":false}'), +(25374, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:48.025+00', '{"cached":null,"ignore_cache":false}'), +(25375, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:48.039+00', '{"cached":null,"ignore_cache":false}'), +(25376, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:43:48.748+00', '{"cached":null,"ignore_cache":false}'), +(25377, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.248+00', '{"cached":null,"ignore_cache":false}'), +(25378, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.291+00', '{"cached":null,"ignore_cache":false}'), +(25379, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.317+00', '{"cached":null,"ignore_cache":false}'), +(25380, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.337+00', '{"cached":null,"ignore_cache":false}'), +(25381, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.344+00', '{"cached":null,"ignore_cache":false}'), +(25382, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.364+00', '{"cached":null,"ignore_cache":false}'), +(25383, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:47.378+00', '{"cached":null,"ignore_cache":false}'), +(25384, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.56+00', '{"cached":null,"ignore_cache":false}'), +(25385, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.561+00', '{"cached":null,"ignore_cache":false}'), +(25386, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.577+00', '{"cached":null,"ignore_cache":false}'), +(25387, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.593+00', '{"cached":null,"ignore_cache":false}'), +(25388, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.608+00', '{"cached":null,"ignore_cache":false}'), +(25389, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:50.657+00', '{"cached":null,"ignore_cache":false}'), +(25390, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:44:51.402+00', '{"cached":null,"ignore_cache":false}'), +(25391, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.631+00', '{"cached":null,"ignore_cache":false}'), +(25392, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.75+00', '{"cached":null,"ignore_cache":false}'), +(25393, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.808+00', '{"cached":null,"ignore_cache":false}'), +(25394, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.809+00', '{"cached":null,"ignore_cache":false}'), +(25395, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.835+00', '{"cached":null,"ignore_cache":false}'), +(25396, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.922+00', '{"cached":null,"ignore_cache":false}'), +(25397, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 07:45:51.94+00', '{"cached":null,"ignore_cache":false}'), +(25398, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:51:43.145+00', '{"cached":null,"ignore_cache":null}'), +(25399, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 07:51:43.689+00', '{"cached":null,"ignore_cache":false}'), +(25400, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.242+00', '{"cached":null,"ignore_cache":false}'), +(25401, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:42.982+00', '{"cached":null,"ignore_cache":false}'), +(25402, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.001+00', '{"cached":null,"ignore_cache":false}'), +(25403, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.362+00', '{"cached":null,"ignore_cache":false}'), +(25404, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.618+00', '{"cached":null,"ignore_cache":false}'), +(25405, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:43.653+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25406, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.095+00', '{"cached":null,"ignore_cache":false}'), +(25407, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.095+00', '{"cached":null,"ignore_cache":false}'), +(25408, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.098+00', '{"cached":null,"ignore_cache":false}'), +(25409, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.099+00', '{"cached":null,"ignore_cache":false}'), +(25410, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.184+00', '{"cached":null,"ignore_cache":false}'), +(25411, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.322+00', '{"cached":null,"ignore_cache":false}'), +(25412, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.566+00', '{"cached":null,"ignore_cache":false}'), +(25413, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.864+00', '{"cached":null,"ignore_cache":false}'), +(25414, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.88+00', '{"cached":null,"ignore_cache":false}'), +(25415, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.957+00', '{"cached":null,"ignore_cache":false}'), +(25416, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:44.982+00', '{"cached":null,"ignore_cache":false}'), +(25417, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:45.037+00', '{"cached":null,"ignore_cache":false}'), +(25418, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:45.078+00', '{"cached":null,"ignore_cache":false}'), +(25419, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:45.11+00', '{"cached":null,"ignore_cache":false}'), +(25420, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:45.126+00', '{"cached":null,"ignore_cache":false}'), +(25421, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:07:45.248+00', '{"cached":null,"ignore_cache":false}'), +(25422, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:12.957+00', '{"cached":null,"ignore_cache":false}'), +(25423, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.016+00', '{"cached":null,"ignore_cache":false}'), +(25424, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.17+00', '{"cached":null,"ignore_cache":false}'), +(25425, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.287+00', '{"cached":null,"ignore_cache":false}'), +(25426, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.482+00', '{"cached":null,"ignore_cache":false}'), +(25427, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.511+00', '{"cached":null,"ignore_cache":false}'), +(25428, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.536+00', '{"cached":null,"ignore_cache":false}'), +(25429, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.56+00', '{"cached":null,"ignore_cache":false}'), +(25430, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.566+00', '{"cached":null,"ignore_cache":false}'), +(25431, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.573+00', '{"cached":null,"ignore_cache":false}'), +(25432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.588+00', '{"cached":null,"ignore_cache":false}'), +(25433, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.618+00', '{"cached":null,"ignore_cache":false}'), +(25434, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.655+00', '{"cached":null,"ignore_cache":false}'), +(25435, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.664+00', '{"cached":null,"ignore_cache":false}'), +(25436, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:13.669+00', '{"cached":null,"ignore_cache":false}'), +(25437, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:14.146+00', '{"cached":null,"ignore_cache":false}'), +(25438, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.303+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25439, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.545+00', '{"cached":null,"ignore_cache":false}'), +(25440, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.62+00', '{"cached":null,"ignore_cache":false}'), +(25441, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.812+00', '{"cached":null,"ignore_cache":false}'), +(25442, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.858+00', '{"cached":null,"ignore_cache":false}'), +(25443, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.877+00', '{"cached":null,"ignore_cache":false}'), +(25444, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.925+00', '{"cached":null,"ignore_cache":false}'), +(25445, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.935+00', '{"cached":null,"ignore_cache":false}'), +(25446, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.936+00', '{"cached":null,"ignore_cache":false}'), +(25447, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.95+00', '{"cached":null,"ignore_cache":false}'), +(25448, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.956+00', '{"cached":null,"ignore_cache":false}'), +(25449, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.965+00', '{"cached":null,"ignore_cache":false}'), +(25450, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.974+00', '{"cached":null,"ignore_cache":false}'), +(25451, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:42.981+00', '{"cached":null,"ignore_cache":false}'), +(25452, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:43.023+00', '{"cached":null,"ignore_cache":false}'), +(25453, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:08:43.92+00', '{"cached":null,"ignore_cache":false}'), +(25454, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:12.954+00', '{"cached":null,"ignore_cache":false}'), +(25455, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.279+00', '{"cached":null,"ignore_cache":false}'), +(25456, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.28+00', '{"cached":null,"ignore_cache":false}'), +(25457, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.281+00', '{"cached":null,"ignore_cache":false}'), +(25458, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.281+00', '{"cached":null,"ignore_cache":false}'), +(25459, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.308+00', '{"cached":null,"ignore_cache":false}'), +(25460, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.374+00', '{"cached":null,"ignore_cache":false}'), +(25461, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.375+00', '{"cached":null,"ignore_cache":false}'), +(25462, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.384+00', '{"cached":null,"ignore_cache":false}'), +(25463, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.412+00', '{"cached":null,"ignore_cache":false}'), +(25464, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.502+00', '{"cached":null,"ignore_cache":false}'), +(25465, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.529+00', '{"cached":null,"ignore_cache":false}'), +(25466, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.565+00', '{"cached":null,"ignore_cache":false}'), +(25467, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.612+00', '{"cached":null,"ignore_cache":false}'), +(25468, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:13.626+00', '{"cached":null,"ignore_cache":false}'), +(25469, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:14.357+00', '{"cached":null,"ignore_cache":false}'), +(25470, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.547+00', '{"cached":null,"ignore_cache":false}'), +(25471, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.63+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25472, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.657+00', '{"cached":null,"ignore_cache":false}'), +(25473, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.736+00', '{"cached":null,"ignore_cache":false}'), +(25474, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.863+00', '{"cached":null,"ignore_cache":false}'), +(25475, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.88+00', '{"cached":null,"ignore_cache":false}'), +(25476, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.912+00', '{"cached":null,"ignore_cache":false}'), +(25477, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:42.924+00', '{"cached":null,"ignore_cache":false}'), +(25478, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.01+00', '{"cached":null,"ignore_cache":false}'), +(25479, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.027+00', '{"cached":null,"ignore_cache":false}'), +(25480, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.072+00', '{"cached":null,"ignore_cache":false}'), +(25481, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.077+00', '{"cached":null,"ignore_cache":false}'), +(25482, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.101+00', '{"cached":null,"ignore_cache":false}'), +(25483, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.129+00', '{"cached":null,"ignore_cache":false}'), +(25484, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.186+00', '{"cached":null,"ignore_cache":false}'), +(25485, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:09:43.757+00', '{"cached":null,"ignore_cache":false}'), +(25486, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.128+00', '{"cached":null,"ignore_cache":false}'), +(25487, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.171+00', '{"cached":null,"ignore_cache":false}'), +(25488, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.295+00', '{"cached":null,"ignore_cache":false}'), +(25489, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.326+00', '{"cached":null,"ignore_cache":false}'), +(25490, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.379+00', '{"cached":null,"ignore_cache":false}'), +(25491, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.411+00', '{"cached":null,"ignore_cache":false}'), +(25492, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.424+00', '{"cached":null,"ignore_cache":false}'), +(25493, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.485+00', '{"cached":null,"ignore_cache":false}'), +(25494, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.526+00', '{"cached":null,"ignore_cache":false}'), +(25495, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.562+00', '{"cached":null,"ignore_cache":false}'), +(25496, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.602+00', '{"cached":null,"ignore_cache":false}'), +(25497, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.619+00', '{"cached":null,"ignore_cache":false}'), +(25498, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.622+00', '{"cached":null,"ignore_cache":false}'), +(25499, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.661+00', '{"cached":null,"ignore_cache":false}'), +(25500, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:13.709+00', '{"cached":null,"ignore_cache":false}'), +(25501, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:14.535+00', '{"cached":null,"ignore_cache":false}'), +(25502, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.286+00', '{"cached":null,"ignore_cache":false}'), +(25503, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.547+00', '{"cached":null,"ignore_cache":false}'), +(25504, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.549+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25505, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.655+00', '{"cached":null,"ignore_cache":false}'), +(25506, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.675+00', '{"cached":null,"ignore_cache":false}'), +(25507, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.706+00', '{"cached":null,"ignore_cache":false}'), +(25508, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.724+00', '{"cached":null,"ignore_cache":false}'), +(25509, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.763+00', '{"cached":null,"ignore_cache":false}'), +(25510, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.771+00', '{"cached":null,"ignore_cache":false}'), +(25511, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.821+00', '{"cached":null,"ignore_cache":false}'), +(25512, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.838+00', '{"cached":null,"ignore_cache":false}'), +(25513, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.867+00', '{"cached":null,"ignore_cache":false}'), +(25514, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.874+00', '{"cached":null,"ignore_cache":false}'), +(25515, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.931+00', '{"cached":null,"ignore_cache":false}'), +(25516, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:43.971+00', '{"cached":null,"ignore_cache":false}'), +(25517, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:10:44.523+00', '{"cached":null,"ignore_cache":false}'), +(25518, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:12.993+00', '{"cached":null,"ignore_cache":false}'), +(25519, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.016+00', '{"cached":null,"ignore_cache":false}'), +(25520, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.038+00', '{"cached":null,"ignore_cache":false}'), +(25521, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.055+00', '{"cached":null,"ignore_cache":false}'), +(25522, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.076+00', '{"cached":null,"ignore_cache":false}'), +(25523, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.085+00', '{"cached":null,"ignore_cache":false}'), +(25524, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.148+00', '{"cached":null,"ignore_cache":false}'), +(25525, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.23+00', '{"cached":null,"ignore_cache":false}'), +(25526, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.252+00', '{"cached":null,"ignore_cache":false}'), +(25527, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.291+00', '{"cached":null,"ignore_cache":false}'), +(25528, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.302+00', '{"cached":null,"ignore_cache":false}'), +(25529, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.326+00', '{"cached":null,"ignore_cache":false}'), +(25530, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.36+00', '{"cached":null,"ignore_cache":false}'), +(25531, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.443+00', '{"cached":null,"ignore_cache":false}'), +(25532, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:13.506+00', '{"cached":null,"ignore_cache":false}'), +(25533, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:14.233+00', '{"cached":null,"ignore_cache":false}'), +(25534, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.82+00', '{"cached":null,"ignore_cache":false}'), +(25535, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:42.917+00', '{"cached":null,"ignore_cache":false}'), +(25536, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.004+00', '{"cached":null,"ignore_cache":false}'), +(25537, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.056+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25538, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.141+00', '{"cached":null,"ignore_cache":false}'), +(25539, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.157+00', '{"cached":null,"ignore_cache":false}'), +(25540, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.212+00', '{"cached":null,"ignore_cache":false}'), +(25541, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.257+00', '{"cached":null,"ignore_cache":false}'), +(25542, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.284+00', '{"cached":null,"ignore_cache":false}'), +(25543, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.337+00', '{"cached":null,"ignore_cache":false}'), +(25544, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.338+00', '{"cached":null,"ignore_cache":false}'), +(25545, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.357+00', '{"cached":null,"ignore_cache":false}'), +(25546, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.4+00', '{"cached":null,"ignore_cache":false}'), +(25547, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.416+00', '{"cached":null,"ignore_cache":false}'), +(25548, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:43.45+00', '{"cached":null,"ignore_cache":false}'), +(25549, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:11:44.205+00', '{"cached":null,"ignore_cache":false}'), +(25550, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.774+00', '{"cached":null,"ignore_cache":false}'), +(25551, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.803+00', '{"cached":null,"ignore_cache":false}'), +(25552, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:12.875+00', '{"cached":null,"ignore_cache":false}'), +(25553, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.087+00', '{"cached":null,"ignore_cache":false}'), +(25554, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.151+00', '{"cached":null,"ignore_cache":false}'), +(25555, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.153+00', '{"cached":null,"ignore_cache":false}'), +(25556, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.416+00', '{"cached":null,"ignore_cache":false}'), +(25557, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.444+00', '{"cached":null,"ignore_cache":false}'), +(25558, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.466+00', '{"cached":null,"ignore_cache":false}'), +(25559, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.628+00', '{"cached":null,"ignore_cache":false}'), +(25560, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.652+00', '{"cached":null,"ignore_cache":false}'), +(25561, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.688+00', '{"cached":null,"ignore_cache":false}'), +(25562, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.721+00', '{"cached":null,"ignore_cache":false}'), +(25563, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.728+00', '{"cached":null,"ignore_cache":false}'), +(25564, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:13.748+00', '{"cached":null,"ignore_cache":false}'), +(25565, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:14.556+00', '{"cached":null,"ignore_cache":false}'), +(25566, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.346+00', '{"cached":null,"ignore_cache":false}'), +(25567, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.43+00', '{"cached":null,"ignore_cache":false}'), +(25568, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.437+00', '{"cached":null,"ignore_cache":false}'), +(25569, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.456+00', '{"cached":null,"ignore_cache":false}'), +(25570, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.473+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25571, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.486+00', '{"cached":null,"ignore_cache":false}'), +(25572, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.496+00', '{"cached":null,"ignore_cache":false}'), +(25573, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.501+00', '{"cached":null,"ignore_cache":false}'), +(25574, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.515+00', '{"cached":null,"ignore_cache":false}'), +(25575, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.517+00', '{"cached":null,"ignore_cache":false}'), +(25576, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.522+00', '{"cached":null,"ignore_cache":false}'), +(25577, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.523+00', '{"cached":null,"ignore_cache":false}'), +(25578, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.535+00', '{"cached":null,"ignore_cache":false}'), +(25579, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.579+00', '{"cached":null,"ignore_cache":false}'), +(25580, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:43.634+00', '{"cached":null,"ignore_cache":false}'), +(25581, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:12:44.473+00', '{"cached":null,"ignore_cache":false}'), +(25582, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:12.713+00', '{"cached":null,"ignore_cache":false}'), +(25583, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.021+00', '{"cached":null,"ignore_cache":false}'), +(25584, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.129+00', '{"cached":null,"ignore_cache":false}'), +(25585, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.189+00', '{"cached":null,"ignore_cache":false}'), +(25586, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.198+00', '{"cached":null,"ignore_cache":false}'), +(25587, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.282+00', '{"cached":null,"ignore_cache":false}'), +(25588, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.298+00', '{"cached":null,"ignore_cache":false}'), +(25589, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.363+00', '{"cached":null,"ignore_cache":false}'), +(25590, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.391+00', '{"cached":null,"ignore_cache":false}'), +(25591, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.399+00', '{"cached":null,"ignore_cache":false}'), +(25592, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.426+00', '{"cached":null,"ignore_cache":false}'), +(25593, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.493+00', '{"cached":null,"ignore_cache":false}'), +(25594, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.503+00', '{"cached":null,"ignore_cache":false}'), +(25595, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.508+00', '{"cached":null,"ignore_cache":false}'), +(25596, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:13.585+00', '{"cached":null,"ignore_cache":false}'), +(25597, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:14.163+00', '{"cached":null,"ignore_cache":false}'), +(25598, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.481+00', '{"cached":null,"ignore_cache":false}'), +(25599, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.59+00', '{"cached":null,"ignore_cache":false}'), +(25600, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.629+00', '{"cached":null,"ignore_cache":false}'), +(25601, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.675+00', '{"cached":null,"ignore_cache":false}'), +(25602, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.708+00', '{"cached":null,"ignore_cache":false}'), +(25603, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.709+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25604, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.725+00', '{"cached":null,"ignore_cache":false}'), +(25605, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.817+00', '{"cached":null,"ignore_cache":false}'), +(25606, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.836+00', '{"cached":null,"ignore_cache":false}'), +(25607, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.845+00', '{"cached":null,"ignore_cache":false}'), +(25608, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.886+00', '{"cached":null,"ignore_cache":false}'), +(25609, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.904+00', '{"cached":null,"ignore_cache":false}'), +(25610, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.909+00', '{"cached":null,"ignore_cache":false}'), +(25611, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.912+00', '{"cached":null,"ignore_cache":false}'), +(25612, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:42.987+00', '{"cached":null,"ignore_cache":false}'), +(25613, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:13:43.514+00', '{"cached":null,"ignore_cache":false}'), +(25614, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.417+00', '{"cached":null,"ignore_cache":false}'), +(25615, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.819+00', '{"cached":null,"ignore_cache":false}'), +(25616, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.971+00', '{"cached":null,"ignore_cache":false}'), +(25617, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.972+00', '{"cached":null,"ignore_cache":false}'), +(25618, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:12.986+00', '{"cached":null,"ignore_cache":false}'), +(25619, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.106+00', '{"cached":null,"ignore_cache":false}'), +(25620, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.15+00', '{"cached":null,"ignore_cache":false}'), +(25621, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.227+00', '{"cached":null,"ignore_cache":false}'), +(25622, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.252+00', '{"cached":null,"ignore_cache":false}'), +(25623, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.342+00', '{"cached":null,"ignore_cache":false}'), +(25624, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.373+00', '{"cached":null,"ignore_cache":false}'), +(25625, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.427+00', '{"cached":null,"ignore_cache":false}'), +(25626, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.475+00', '{"cached":null,"ignore_cache":false}'), +(25627, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.574+00', '{"cached":null,"ignore_cache":false}'), +(25628, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.592+00', '{"cached":null,"ignore_cache":false}'), +(25629, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:13.873+00', '{"cached":null,"ignore_cache":false}'), +(25630, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:42.943+00', '{"cached":null,"ignore_cache":false}'), +(25631, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.012+00', '{"cached":null,"ignore_cache":false}'), +(25632, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.202+00', '{"cached":null,"ignore_cache":false}'), +(25633, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.218+00', '{"cached":null,"ignore_cache":false}'), +(25634, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.259+00', '{"cached":null,"ignore_cache":false}'), +(25635, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.305+00', '{"cached":null,"ignore_cache":false}'), +(25636, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.355+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25637, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.359+00', '{"cached":null,"ignore_cache":false}'), +(25638, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.366+00', '{"cached":null,"ignore_cache":false}'), +(25639, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.416+00', '{"cached":null,"ignore_cache":false}'), +(25640, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.441+00', '{"cached":null,"ignore_cache":false}'), +(25641, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.474+00', '{"cached":null,"ignore_cache":false}'), +(25642, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.482+00', '{"cached":null,"ignore_cache":false}'), +(25643, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.494+00', '{"cached":null,"ignore_cache":false}'), +(25644, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:43.504+00', '{"cached":null,"ignore_cache":false}'), +(25645, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:14:44.148+00', '{"cached":null,"ignore_cache":false}'), +(25646, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.825+00', '{"cached":null,"ignore_cache":false}'), +(25647, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.865+00', '{"cached":null,"ignore_cache":false}'), +(25648, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.918+00', '{"cached":null,"ignore_cache":false}'), +(25649, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.926+00', '{"cached":null,"ignore_cache":false}'), +(25650, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.93+00', '{"cached":null,"ignore_cache":false}'), +(25651, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.965+00', '{"cached":null,"ignore_cache":false}'), +(25652, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:12.97+00', '{"cached":null,"ignore_cache":false}'), +(25653, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.029+00', '{"cached":null,"ignore_cache":false}'), +(25654, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.051+00', '{"cached":null,"ignore_cache":false}'), +(25655, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.093+00', '{"cached":null,"ignore_cache":false}'), +(25656, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.104+00', '{"cached":null,"ignore_cache":false}'), +(25657, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.118+00', '{"cached":null,"ignore_cache":false}'), +(25658, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.139+00', '{"cached":null,"ignore_cache":false}'), +(25659, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.146+00', '{"cached":null,"ignore_cache":false}'), +(25660, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.148+00', '{"cached":null,"ignore_cache":false}'), +(25661, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:13.767+00', '{"cached":null,"ignore_cache":false}'), +(25662, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.808+00', '{"cached":null,"ignore_cache":false}'), +(25663, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.823+00', '{"cached":null,"ignore_cache":false}'), +(25664, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.824+00', '{"cached":null,"ignore_cache":false}'), +(25665, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.841+00', '{"cached":null,"ignore_cache":false}'), +(25666, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.954+00', '{"cached":null,"ignore_cache":false}'), +(25667, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:42.996+00', '{"cached":null,"ignore_cache":false}'), +(25668, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.021+00', '{"cached":null,"ignore_cache":false}'), +(25669, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.315+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25670, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.334+00', '{"cached":null,"ignore_cache":false}'), +(25671, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.335+00', '{"cached":null,"ignore_cache":false}'), +(25672, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.46+00', '{"cached":null,"ignore_cache":false}'), +(25673, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.526+00', '{"cached":null,"ignore_cache":false}'), +(25674, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.54+00', '{"cached":null,"ignore_cache":false}'), +(25675, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.643+00', '{"cached":null,"ignore_cache":false}'), +(25676, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:43.671+00', '{"cached":null,"ignore_cache":false}'), +(25677, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:15:44.256+00', '{"cached":null,"ignore_cache":false}'), +(25678, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.865+00', '{"cached":null,"ignore_cache":false}'), +(25679, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.886+00', '{"cached":null,"ignore_cache":false}'), +(25680, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.953+00', '{"cached":null,"ignore_cache":false}'), +(25681, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:12.961+00', '{"cached":null,"ignore_cache":false}'), +(25682, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.024+00', '{"cached":null,"ignore_cache":false}'), +(25683, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.044+00', '{"cached":null,"ignore_cache":false}'), +(25684, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.065+00', '{"cached":null,"ignore_cache":false}'), +(25685, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.152+00', '{"cached":null,"ignore_cache":false}'), +(25686, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.213+00', '{"cached":null,"ignore_cache":false}'), +(25687, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.278+00', '{"cached":null,"ignore_cache":false}'), +(25688, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.322+00', '{"cached":null,"ignore_cache":false}'), +(25689, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.355+00', '{"cached":null,"ignore_cache":false}'), +(25690, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.396+00', '{"cached":null,"ignore_cache":false}'), +(25691, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.45+00', '{"cached":null,"ignore_cache":false}'), +(25692, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:13.473+00', '{"cached":null,"ignore_cache":false}'), +(25693, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:14.138+00', '{"cached":null,"ignore_cache":false}'), +(25694, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.138+00', '{"cached":null,"ignore_cache":false}'), +(25695, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.422+00', '{"cached":null,"ignore_cache":false}'), +(25696, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.449+00', '{"cached":null,"ignore_cache":false}'), +(25697, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.498+00', '{"cached":null,"ignore_cache":false}'), +(25698, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.568+00', '{"cached":null,"ignore_cache":false}'), +(25699, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.59+00', '{"cached":null,"ignore_cache":false}'), +(25700, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.616+00', '{"cached":null,"ignore_cache":false}'), +(25701, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.652+00', '{"cached":null,"ignore_cache":false}'), +(25702, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.761+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25703, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.779+00', '{"cached":null,"ignore_cache":false}'), +(25704, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.848+00', '{"cached":null,"ignore_cache":false}'), +(25705, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.887+00', '{"cached":null,"ignore_cache":false}'), +(25706, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.911+00', '{"cached":null,"ignore_cache":false}'), +(25707, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.938+00', '{"cached":null,"ignore_cache":false}'), +(25708, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:43.959+00', '{"cached":null,"ignore_cache":false}'), +(25709, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:16:44.608+00', '{"cached":null,"ignore_cache":false}'), +(25710, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.383+00', '{"cached":null,"ignore_cache":false}'), +(25711, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.535+00', '{"cached":null,"ignore_cache":false}'), +(25712, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.661+00', '{"cached":null,"ignore_cache":false}'), +(25713, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.664+00', '{"cached":null,"ignore_cache":false}'), +(25714, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.685+00', '{"cached":null,"ignore_cache":false}'), +(25715, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.701+00', '{"cached":null,"ignore_cache":false}'), +(25716, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.802+00', '{"cached":null,"ignore_cache":false}'), +(25717, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.803+00', '{"cached":null,"ignore_cache":false}'), +(25718, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.814+00', '{"cached":null,"ignore_cache":false}'), +(25719, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.833+00', '{"cached":null,"ignore_cache":false}'), +(25720, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.857+00', '{"cached":null,"ignore_cache":false}'), +(25721, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.862+00', '{"cached":null,"ignore_cache":false}'), +(25722, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.877+00', '{"cached":null,"ignore_cache":false}'), +(25723, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:13.878+00', '{"cached":null,"ignore_cache":false}'), +(25724, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:14.052+00', '{"cached":null,"ignore_cache":false}'), +(25725, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:14.544+00', '{"cached":null,"ignore_cache":false}'), +(25726, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.773+00', '{"cached":null,"ignore_cache":false}'), +(25727, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:42.969+00', '{"cached":null,"ignore_cache":false}'), +(25728, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.003+00', '{"cached":null,"ignore_cache":false}'), +(25729, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.068+00', '{"cached":null,"ignore_cache":false}'), +(25730, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.106+00', '{"cached":null,"ignore_cache":false}'), +(25731, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.135+00', '{"cached":null,"ignore_cache":false}'), +(25732, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.142+00', '{"cached":null,"ignore_cache":false}'), +(25733, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.166+00', '{"cached":null,"ignore_cache":false}'), +(25734, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.221+00', '{"cached":null,"ignore_cache":false}'), +(25735, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.237+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25736, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.294+00', '{"cached":null,"ignore_cache":false}'), +(25737, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.311+00', '{"cached":null,"ignore_cache":false}'), +(25738, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.338+00', '{"cached":null,"ignore_cache":false}'), +(25739, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.36+00', '{"cached":null,"ignore_cache":false}'), +(25740, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:43.406+00', '{"cached":null,"ignore_cache":false}'), +(25741, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:17:44.09+00', '{"cached":null,"ignore_cache":false}'), +(25742, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.759+00', '{"cached":null,"ignore_cache":false}'), +(25743, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:12.889+00', '{"cached":null,"ignore_cache":false}'), +(25744, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.071+00', '{"cached":null,"ignore_cache":false}'), +(25745, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.093+00', '{"cached":null,"ignore_cache":false}'), +(25746, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.122+00', '{"cached":null,"ignore_cache":false}'), +(25747, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.141+00', '{"cached":null,"ignore_cache":false}'), +(25748, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.206+00', '{"cached":null,"ignore_cache":false}'), +(25749, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.342+00', '{"cached":null,"ignore_cache":false}'), +(25750, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.419+00', '{"cached":null,"ignore_cache":false}'), +(25751, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.428+00', '{"cached":null,"ignore_cache":false}'), +(25752, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.442+00', '{"cached":null,"ignore_cache":false}'), +(25753, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.447+00', '{"cached":null,"ignore_cache":false}'), +(25754, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.494+00', '{"cached":null,"ignore_cache":false}'), +(25755, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.55+00', '{"cached":null,"ignore_cache":false}'), +(25756, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:13.561+00', '{"cached":null,"ignore_cache":false}'), +(25757, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:14.335+00', '{"cached":null,"ignore_cache":false}'), +(25758, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.278+00', '{"cached":null,"ignore_cache":false}'), +(25759, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.34+00', '{"cached":null,"ignore_cache":false}'), +(25760, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.442+00', '{"cached":null,"ignore_cache":false}'), +(25761, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.464+00', '{"cached":null,"ignore_cache":false}'), +(25762, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.507+00', '{"cached":null,"ignore_cache":false}'), +(25763, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.523+00', '{"cached":null,"ignore_cache":false}'), +(25764, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.547+00', '{"cached":null,"ignore_cache":false}'), +(25765, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.658+00', '{"cached":null,"ignore_cache":false}'), +(25766, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.662+00', '{"cached":null,"ignore_cache":false}'), +(25767, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.677+00', '{"cached":null,"ignore_cache":false}'), +(25768, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.702+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25769, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.716+00', '{"cached":null,"ignore_cache":false}'), +(25770, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.744+00', '{"cached":null,"ignore_cache":false}'), +(25771, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.761+00', '{"cached":null,"ignore_cache":false}'), +(25772, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:43.774+00', '{"cached":null,"ignore_cache":false}'), +(25773, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:18:44.568+00', '{"cached":null,"ignore_cache":false}'), +(25774, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.716+00', '{"cached":null,"ignore_cache":false}'), +(25775, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.776+00', '{"cached":null,"ignore_cache":false}'), +(25776, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.835+00', '{"cached":null,"ignore_cache":false}'), +(25777, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.916+00', '{"cached":null,"ignore_cache":false}'), +(25778, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.962+00', '{"cached":null,"ignore_cache":false}'), +(25779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.962+00', '{"cached":null,"ignore_cache":false}'), +(25780, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:12.97+00', '{"cached":null,"ignore_cache":false}'), +(25781, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.13+00', '{"cached":null,"ignore_cache":false}'), +(25782, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.152+00', '{"cached":null,"ignore_cache":false}'), +(25783, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.181+00', '{"cached":null,"ignore_cache":false}'), +(25784, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.258+00', '{"cached":null,"ignore_cache":false}'), +(25785, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.279+00', '{"cached":null,"ignore_cache":false}'), +(25786, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.282+00', '{"cached":null,"ignore_cache":false}'), +(25787, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.289+00', '{"cached":null,"ignore_cache":false}'), +(25788, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:13.322+00', '{"cached":null,"ignore_cache":false}'), +(25789, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:19:14.016+00', '{"cached":null,"ignore_cache":false}'), +(25790, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.188+00', '{"cached":null,"ignore_cache":false}'), +(25791, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.197+00', '{"cached":null,"ignore_cache":false}'), +(25792, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.221+00', '{"cached":null,"ignore_cache":false}'), +(25793, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.225+00', '{"cached":null,"ignore_cache":false}'), +(25794, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.289+00', '{"cached":null,"ignore_cache":false}'), +(25795, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.367+00', '{"cached":null,"ignore_cache":false}'), +(25796, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.377+00', '{"cached":null,"ignore_cache":false}'), +(25797, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.4+00', '{"cached":null,"ignore_cache":false}'), +(25798, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.504+00', '{"cached":null,"ignore_cache":false}'), +(25799, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.509+00', '{"cached":null,"ignore_cache":false}'), +(25800, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.52+00', '{"cached":null,"ignore_cache":false}'), +(25801, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.529+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25802, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.546+00', '{"cached":null,"ignore_cache":false}'), +(25803, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.563+00', '{"cached":null,"ignore_cache":false}'), +(25804, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:43.564+00', '{"cached":null,"ignore_cache":false}'), +(25805, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:23:44.332+00', '{"cached":null,"ignore_cache":false}'), +(25806, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:38.156+00', '{"cached":null,"ignore_cache":null}'), +(25807, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.188+00', '{"cached":null,"ignore_cache":false}'), +(25808, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.207+00', '{"cached":null,"ignore_cache":false}'), +(25809, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.208+00', '{"cached":null,"ignore_cache":false}'), +(25810, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.234+00', '{"cached":null,"ignore_cache":false}'), +(25811, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.29+00', '{"cached":null,"ignore_cache":false}'), +(25812, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:39.408+00', '{"cached":null,"ignore_cache":false}'), +(25813, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 08:57:40.112+00', '{"cached":null,"ignore_cache":false}'), +(25814, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:46.25+00', '{"cached":null,"ignore_cache":null}'), +(25815, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.113+00', '{"cached":null,"ignore_cache":false}'), +(25816, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.142+00', '{"cached":null,"ignore_cache":false}'), +(25817, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.312+00', '{"cached":null,"ignore_cache":false}'), +(25818, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.322+00', '{"cached":null,"ignore_cache":false}'), +(25819, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.357+00', '{"cached":null,"ignore_cache":false}'), +(25820, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.446+00', '{"cached":null,"ignore_cache":false}'), +(25821, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.446+00', '{"cached":null,"ignore_cache":false}'), +(25822, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.478+00', '{"cached":null,"ignore_cache":false}'), +(25823, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:47.52+00', '{"cached":null,"ignore_cache":false}'), +(25824, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.916+00', '{"cached":null,"ignore_cache":false}'), +(25825, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:55.937+00', '{"cached":null,"ignore_cache":false}'), +(25826, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:56.019+00', '{"cached":null,"ignore_cache":false}'), +(25827, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:56.15+00', '{"cached":null,"ignore_cache":false}'), +(25828, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:56.158+00', '{"cached":null,"ignore_cache":false}'), +(25829, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:56.169+00', '{"cached":null,"ignore_cache":false}'), +(25830, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:56.186+00', '{"cached":null,"ignore_cache":false}'), +(25831, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:56.255+00', '{"cached":null,"ignore_cache":false}'), +(25832, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 09:00:56.349+00', '{"cached":null,"ignore_cache":false}'), +(25833, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:00.942+00', '{"cached":null,"ignore_cache":null}'), +(25834, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.367+00', '{"cached":null,"ignore_cache":false}'), +(25835, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.399+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25836, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.406+00', '{"cached":null,"ignore_cache":false}'), +(25837, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.428+00', '{"cached":null,"ignore_cache":false}'), +(25838, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.433+00', '{"cached":null,"ignore_cache":false}'), +(25839, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:01.47+00', '{"cached":null,"ignore_cache":false}'), +(25840, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:02.089+00', '{"cached":null,"ignore_cache":false}'), +(25841, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.555+00', '{"cached":null,"ignore_cache":false}'), +(25842, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.568+00', '{"cached":null,"ignore_cache":false}'), +(25843, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.572+00', '{"cached":null,"ignore_cache":false}'), +(25844, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.585+00', '{"cached":null,"ignore_cache":false}'), +(25845, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.606+00', '{"cached":null,"ignore_cache":false}'), +(25846, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.619+00', '{"cached":null,"ignore_cache":false}'), +(25847, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:06.675+00', '{"cached":null,"ignore_cache":false}'), +(25848, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:13.155+00', '{"cached":null,"ignore_cache":null}'), +(25849, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:13.598+00', '{"cached":null,"ignore_cache":false}'), +(25850, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:01:38.074+00', '{"cached":null,"ignore_cache":false}'), +(25851, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:04:52.773+00', '{"cached":null,"ignore_cache":null}'), +(25852, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:02.742+00', '{"cached":null,"ignore_cache":null}'), +(25853, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.37+00', '{"cached":null,"ignore_cache":false}'), +(25854, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.438+00', '{"cached":null,"ignore_cache":false}'), +(25855, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.469+00', '{"cached":null,"ignore_cache":false}'), +(25856, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.485+00', '{"cached":null,"ignore_cache":false}'), +(25857, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.505+00', '{"cached":null,"ignore_cache":false}'), +(25858, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:03.618+00', '{"cached":null,"ignore_cache":false}'), +(25859, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:04.209+00', '{"cached":null,"ignore_cache":false}'), +(25860, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:05.677+00', '{"cached":null,"ignore_cache":null}'), +(25861, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:07.638+00', '{"cached":null,"ignore_cache":false}'), +(25862, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:35.426+00', '{"cached":null,"ignore_cache":false}'), +(25863, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:59.599+00', '{"cached":null,"ignore_cache":null}'), +(25864, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.362+00', '{"cached":null,"ignore_cache":false}'), +(25865, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.384+00', '{"cached":null,"ignore_cache":false}'), +(25866, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.399+00', '{"cached":null,"ignore_cache":false}'), +(25867, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.431+00', '{"cached":null,"ignore_cache":false}'), +(25868, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.449+00', '{"cached":null,"ignore_cache":false}'), +(25869, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:00.638+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25870, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:01.342+00', '{"cached":null,"ignore_cache":false}'), +(25871, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.101+00', '{"cached":null,"ignore_cache":false}'), +(25872, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.133+00', '{"cached":null,"ignore_cache":false}'), +(25873, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.157+00', '{"cached":null,"ignore_cache":false}'), +(25874, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.205+00', '{"cached":null,"ignore_cache":false}'), +(25875, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.253+00', '{"cached":null,"ignore_cache":false}'), +(25876, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.282+00', '{"cached":null,"ignore_cache":false}'), +(25877, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:08.304+00', '{"cached":null,"ignore_cache":false}'), +(25878, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:16.428+00', '{"cached":null,"ignore_cache":null}'), +(25879, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:06:17.104+00', '{"cached":null,"ignore_cache":false}'), +(25880, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:18.435+00', '{"cached":null,"ignore_cache":null}'), +(25881, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.322+00', '{"cached":null,"ignore_cache":false}'), +(25882, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.323+00', '{"cached":null,"ignore_cache":false}'), +(25883, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.35+00', '{"cached":null,"ignore_cache":false}'), +(25884, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.371+00', '{"cached":null,"ignore_cache":false}'), +(25885, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.374+00', '{"cached":null,"ignore_cache":false}'), +(25886, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.433+00', '{"cached":null,"ignore_cache":false}'), +(25887, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:19.966+00', '{"cached":null,"ignore_cache":false}'), +(25888, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.854+00', '{"cached":null,"ignore_cache":false}'), +(25889, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.861+00', '{"cached":null,"ignore_cache":false}'), +(25890, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.88+00', '{"cached":null,"ignore_cache":false}'), +(25891, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.888+00', '{"cached":null,"ignore_cache":false}'), +(25892, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.892+00', '{"cached":null,"ignore_cache":false}'), +(25893, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.897+00', '{"cached":null,"ignore_cache":false}'), +(25894, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:18:29.9+00', '{"cached":null,"ignore_cache":false}'), +(25895, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:05.54+00', '{"cached":null,"ignore_cache":null}'), +(25896, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.685+00', '{"cached":null,"ignore_cache":false}'), +(25897, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.711+00', '{"cached":null,"ignore_cache":false}'), +(25898, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.753+00', '{"cached":null,"ignore_cache":false}'), +(25899, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.757+00', '{"cached":null,"ignore_cache":false}'), +(25900, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.766+00', '{"cached":null,"ignore_cache":false}'), +(25901, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.858+00', '{"cached":null,"ignore_cache":false}'), +(25902, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:07.899+00', '{"cached":null,"ignore_cache":false}'), +(25903, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:18.018+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25904, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:20:18.453+00', '{"cached":null,"ignore_cache":false}'), +(25905, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:50.282+00', '{"cached":null,"ignore_cache":null}'), +(25906, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.108+00', '{"cached":null,"ignore_cache":false}'), +(25907, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.148+00', '{"cached":null,"ignore_cache":false}'), +(25908, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.152+00', '{"cached":null,"ignore_cache":false}'), +(25909, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.161+00', '{"cached":null,"ignore_cache":false}'), +(25910, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.209+00', '{"cached":null,"ignore_cache":false}'), +(25911, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.309+00', '{"cached":null,"ignore_cache":false}'), +(25912, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:51.905+00', '{"cached":null,"ignore_cache":false}'), +(25913, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:52.015+00', '{"cached":null,"ignore_cache":null}'), +(25914, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:21:53.211+00', '{"cached":null,"ignore_cache":false}'), +(25915, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:24:23.45+00', '{"cached":null,"ignore_cache":null}'), +(25916, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:24:25.327+00', '{"cached":null,"ignore_cache":false}'), +(25917, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:30:18.683+00', '{"cached":null,"ignore_cache":null}'), +(25918, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:30:24.985+00', '{"cached":null,"ignore_cache":false}'), +(25919, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:38:02.193+00', '{"cached":null,"ignore_cache":null}'), +(25920, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:38:03.922+00', '{"cached":null,"ignore_cache":false}'), +(25921, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:53.995+00', '{"cached":null,"ignore_cache":null}'), +(25922, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.922+00', '{"cached":null,"ignore_cache":false}'), +(25923, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.946+00', '{"cached":null,"ignore_cache":false}'), +(25924, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.962+00', '{"cached":null,"ignore_cache":false}'), +(25925, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.963+00', '{"cached":null,"ignore_cache":false}'), +(25926, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:54.975+00', '{"cached":null,"ignore_cache":false}'), +(25927, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:56.007+00', '{"cached":null,"ignore_cache":false}'), +(25928, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:56.089+00', '{"cached":null,"ignore_cache":false}'), +(25929, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.107+00', '{"cached":null,"ignore_cache":false}'), +(25930, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:44.163+00', '{"cached":null,"ignore_cache":false}'), +(25931, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.089+00', '{"cached":null,"ignore_cache":false}'), +(25932, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:45.176+00', '{"cached":null,"ignore_cache":false}'), +(25933, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.047+00', '{"cached":null,"ignore_cache":false}'), +(25934, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.048+00', '{"cached":null,"ignore_cache":false}'), +(25935, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.048+00', '{"cached":null,"ignore_cache":false}'), +(25936, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.049+00', '{"cached":null,"ignore_cache":false}'), +(25937, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.151+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25938, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.382+00', '{"cached":null,"ignore_cache":false}'), +(25939, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.467+00', '{"cached":null,"ignore_cache":false}'), +(25940, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.487+00', '{"cached":null,"ignore_cache":false}'), +(25941, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.608+00', '{"cached":null,"ignore_cache":false}'), +(25942, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.93+00', '{"cached":null,"ignore_cache":false}'), +(25943, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:46.946+00', '{"cached":null,"ignore_cache":false}'), +(25944, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:47.025+00', '{"cached":null,"ignore_cache":false}'), +(25945, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:47.083+00', '{"cached":null,"ignore_cache":false}'), +(25946, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:47.09+00', '{"cached":null,"ignore_cache":false}'), +(25947, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:47.198+00', '{"cached":null,"ignore_cache":false}'), +(25948, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:24:47.501+00', '{"cached":null,"ignore_cache":false}'), +(25949, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:15.999+00', '{"cached":null,"ignore_cache":false}'), +(25950, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.01+00', '{"cached":null,"ignore_cache":false}'), +(25951, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.353+00', '{"cached":null,"ignore_cache":false}'), +(25952, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.358+00', '{"cached":null,"ignore_cache":false}'), +(25953, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.625+00', '{"cached":null,"ignore_cache":false}'), +(25954, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.674+00', '{"cached":null,"ignore_cache":false}'), +(25955, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.72+00', '{"cached":null,"ignore_cache":false}'), +(25956, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.727+00', '{"cached":null,"ignore_cache":false}'), +(25957, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.748+00', '{"cached":null,"ignore_cache":false}'), +(25958, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:16.775+00', '{"cached":null,"ignore_cache":false}'), +(25959, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.336+00', '{"cached":null,"ignore_cache":false}'), +(25960, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.499+00', '{"cached":null,"ignore_cache":false}'), +(25961, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.529+00', '{"cached":null,"ignore_cache":false}'), +(25962, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.536+00', '{"cached":null,"ignore_cache":false}'), +(25963, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:17.56+00', '{"cached":null,"ignore_cache":false}'), +(25964, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:18.233+00', '{"cached":null,"ignore_cache":false}'), +(25965, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.244+00', '{"cached":null,"ignore_cache":false}'), +(25966, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.315+00', '{"cached":null,"ignore_cache":false}'), +(25967, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.37+00', '{"cached":null,"ignore_cache":false}'), +(25968, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.407+00', '{"cached":null,"ignore_cache":false}'), +(25969, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.417+00', '{"cached":null,"ignore_cache":false}'), +(25970, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.429+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(25971, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.43+00', '{"cached":null,"ignore_cache":false}'), +(25972, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.494+00', '{"cached":null,"ignore_cache":false}'), +(25973, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:44.538+00', '{"cached":null,"ignore_cache":false}'), +(25974, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:45.007+00', '{"cached":null,"ignore_cache":false}'), +(25975, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:45.015+00', '{"cached":null,"ignore_cache":false}'), +(25976, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:45.035+00', '{"cached":null,"ignore_cache":false}'), +(25977, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:45.059+00', '{"cached":null,"ignore_cache":false}'), +(25978, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:45.079+00', '{"cached":null,"ignore_cache":false}'), +(25979, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:46.121+00', '{"cached":null,"ignore_cache":false}'), +(25980, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:25:46.44+00', '{"cached":null,"ignore_cache":false}'), +(25981, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.16+00', '{"cached":null,"ignore_cache":false}'), +(25982, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.184+00', '{"cached":null,"ignore_cache":false}'), +(25983, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.22+00', '{"cached":null,"ignore_cache":false}'), +(25984, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.228+00', '{"cached":null,"ignore_cache":false}'), +(25985, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.29+00', '{"cached":null,"ignore_cache":false}'), +(25986, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.301+00', '{"cached":null,"ignore_cache":false}'), +(25987, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.302+00', '{"cached":null,"ignore_cache":false}'), +(25988, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.307+00', '{"cached":null,"ignore_cache":false}'), +(25989, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:14.341+00', '{"cached":null,"ignore_cache":false}'), +(25990, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:15.992+00', '{"cached":null,"ignore_cache":false}'), +(25991, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:16.006+00', '{"cached":null,"ignore_cache":false}'), +(25992, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:16.062+00', '{"cached":null,"ignore_cache":false}'), +(25993, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:16.081+00', '{"cached":null,"ignore_cache":false}'), +(25994, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:16.093+00', '{"cached":null,"ignore_cache":false}'), +(25995, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:16.944+00', '{"cached":null,"ignore_cache":false}'), +(25996, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:17.246+00', '{"cached":null,"ignore_cache":false}'), +(25997, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.468+00', '{"cached":null,"ignore_cache":false}'), +(25998, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.538+00', '{"cached":null,"ignore_cache":false}'), +(25999, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.564+00', '{"cached":null,"ignore_cache":false}'), +(26000, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.62+00', '{"cached":null,"ignore_cache":false}'), +(26001, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.69+00', '{"cached":null,"ignore_cache":false}'), +(26002, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.709+00', '{"cached":null,"ignore_cache":false}'), +(26003, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.719+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26004, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.73+00', '{"cached":null,"ignore_cache":false}'), +(26005, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:44.744+00', '{"cached":null,"ignore_cache":false}'), +(26006, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.572+00', '{"cached":null,"ignore_cache":false}'), +(26007, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.662+00', '{"cached":null,"ignore_cache":false}'), +(26008, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.685+00', '{"cached":null,"ignore_cache":false}'), +(26009, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.809+00', '{"cached":null,"ignore_cache":false}'), +(26010, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:50.828+00', '{"cached":null,"ignore_cache":false}'), +(26011, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:52.287+00', '{"cached":null,"ignore_cache":false}'), +(26012, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:26:52.449+00', '{"cached":null,"ignore_cache":false}'), +(26013, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.586+00', '{"cached":null,"ignore_cache":false}'), +(26014, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.677+00', '{"cached":null,"ignore_cache":false}'), +(26015, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.694+00', '{"cached":null,"ignore_cache":false}'), +(26016, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.712+00', '{"cached":null,"ignore_cache":false}'), +(26017, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.724+00', '{"cached":null,"ignore_cache":false}'), +(26018, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.745+00', '{"cached":null,"ignore_cache":false}'), +(26019, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.753+00', '{"cached":null,"ignore_cache":false}'), +(26020, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.757+00', '{"cached":null,"ignore_cache":false}'), +(26021, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:14.761+00', '{"cached":null,"ignore_cache":false}'), +(26022, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.148+00', '{"cached":null,"ignore_cache":false}'), +(26023, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.228+00', '{"cached":null,"ignore_cache":false}'), +(26024, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.242+00', '{"cached":null,"ignore_cache":false}'), +(26025, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.257+00', '{"cached":null,"ignore_cache":false}'), +(26026, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:20.291+00', '{"cached":null,"ignore_cache":false}'), +(26027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:21.146+00', '{"cached":null,"ignore_cache":false}'), +(26028, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:21.18+00', '{"cached":null,"ignore_cache":false}'), +(26029, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.259+00', '{"cached":null,"ignore_cache":false}'), +(26030, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.441+00', '{"cached":null,"ignore_cache":false}'), +(26031, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.531+00', '{"cached":null,"ignore_cache":false}'), +(26032, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.532+00', '{"cached":null,"ignore_cache":false}'), +(26033, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.535+00', '{"cached":null,"ignore_cache":false}'), +(26034, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.535+00', '{"cached":null,"ignore_cache":false}'), +(26035, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.588+00', '{"cached":null,"ignore_cache":false}'), +(26036, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.623+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26037, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:44.707+00', '{"cached":null,"ignore_cache":false}'), +(26038, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.192+00', '{"cached":null,"ignore_cache":false}'), +(26039, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.289+00', '{"cached":null,"ignore_cache":false}'), +(26040, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.336+00', '{"cached":null,"ignore_cache":false}'), +(26041, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.395+00', '{"cached":null,"ignore_cache":false}'), +(26042, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:52.415+00', '{"cached":null,"ignore_cache":false}'), +(26043, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:53.553+00', '{"cached":null,"ignore_cache":false}'), +(26044, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:27:53.593+00', '{"cached":null,"ignore_cache":false}'), +(26045, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.582+00', '{"cached":null,"ignore_cache":false}'), +(26046, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.59+00', '{"cached":null,"ignore_cache":false}'), +(26047, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.677+00', '{"cached":null,"ignore_cache":false}'), +(26048, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.71+00', '{"cached":null,"ignore_cache":false}'), +(26049, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.743+00', '{"cached":null,"ignore_cache":false}'), +(26050, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.747+00', '{"cached":null,"ignore_cache":false}'), +(26051, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.758+00', '{"cached":null,"ignore_cache":false}'), +(26052, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.769+00', '{"cached":null,"ignore_cache":false}'), +(26053, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:14.781+00', '{"cached":null,"ignore_cache":false}'), +(26054, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.309+00', '{"cached":null,"ignore_cache":false}'), +(26055, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.338+00', '{"cached":null,"ignore_cache":false}'), +(26056, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.347+00', '{"cached":null,"ignore_cache":false}'), +(26057, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.363+00', '{"cached":null,"ignore_cache":false}'), +(26058, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:25.371+00', '{"cached":null,"ignore_cache":false}'), +(26059, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:26.793+00', '{"cached":null,"ignore_cache":false}'), +(26060, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:26.856+00', '{"cached":null,"ignore_cache":false}'), +(26061, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.651+00', '{"cached":null,"ignore_cache":false}'), +(26062, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.696+00', '{"cached":null,"ignore_cache":false}'), +(26063, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.72+00', '{"cached":null,"ignore_cache":false}'), +(26064, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.735+00', '{"cached":null,"ignore_cache":false}'), +(26065, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.794+00', '{"cached":null,"ignore_cache":false}'), +(26066, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.815+00', '{"cached":null,"ignore_cache":false}'), +(26067, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.824+00', '{"cached":null,"ignore_cache":false}'), +(26068, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.839+00', '{"cached":null,"ignore_cache":false}'), +(26069, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:44.891+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26070, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.087+00', '{"cached":null,"ignore_cache":false}'), +(26071, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.097+00', '{"cached":null,"ignore_cache":false}'), +(26072, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.117+00', '{"cached":null,"ignore_cache":false}'), +(26073, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.13+00', '{"cached":null,"ignore_cache":false}'), +(26074, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.138+00', '{"cached":null,"ignore_cache":false}'), +(26075, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.782+00', '{"cached":null,"ignore_cache":false}'), +(26076, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:28:58.827+00', '{"cached":null,"ignore_cache":false}'), +(26077, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.502+00', '{"cached":null,"ignore_cache":false}'), +(26078, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.567+00', '{"cached":null,"ignore_cache":false}'), +(26079, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.588+00', '{"cached":null,"ignore_cache":false}'), +(26080, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.601+00', '{"cached":null,"ignore_cache":false}'), +(26081, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.614+00', '{"cached":null,"ignore_cache":false}'), +(26082, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.631+00', '{"cached":null,"ignore_cache":false}'), +(26083, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.687+00', '{"cached":null,"ignore_cache":false}'), +(26084, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.691+00', '{"cached":null,"ignore_cache":false}'), +(26085, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:14.707+00', '{"cached":null,"ignore_cache":false}'), +(26086, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.177+00', '{"cached":null,"ignore_cache":false}'), +(26087, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.19+00', '{"cached":null,"ignore_cache":false}'), +(26088, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.22+00', '{"cached":null,"ignore_cache":false}'), +(26089, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.241+00', '{"cached":null,"ignore_cache":false}'), +(26090, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.263+00', '{"cached":null,"ignore_cache":false}'), +(26091, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:30.943+00', '{"cached":null,"ignore_cache":false}'), +(26092, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:31.022+00', '{"cached":null,"ignore_cache":false}'), +(26093, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.364+00', '{"cached":null,"ignore_cache":false}'), +(26094, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.411+00', '{"cached":null,"ignore_cache":false}'), +(26095, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.457+00', '{"cached":null,"ignore_cache":false}'), +(26096, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.48+00', '{"cached":null,"ignore_cache":false}'), +(26097, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.488+00', '{"cached":null,"ignore_cache":false}'), +(26098, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.489+00', '{"cached":null,"ignore_cache":false}'), +(26099, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.513+00', '{"cached":null,"ignore_cache":false}'), +(26100, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.518+00', '{"cached":null,"ignore_cache":false}'), +(26101, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:29:44.553+00', '{"cached":null,"ignore_cache":false}'), +(26102, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.545+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26103, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.631+00', '{"cached":null,"ignore_cache":false}'), +(26104, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.635+00', '{"cached":null,"ignore_cache":false}'), +(26105, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.781+00', '{"cached":null,"ignore_cache":false}'), +(26106, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:00.832+00', '{"cached":null,"ignore_cache":false}'), +(26107, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:01.685+00', '{"cached":null,"ignore_cache":false}'), +(26108, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:01.791+00', '{"cached":null,"ignore_cache":false}'), +(26109, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.745+00', '{"cached":null,"ignore_cache":false}'), +(26110, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.782+00', '{"cached":null,"ignore_cache":false}'), +(26111, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.805+00', '{"cached":null,"ignore_cache":false}'), +(26112, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.85+00', '{"cached":null,"ignore_cache":false}'), +(26113, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.855+00', '{"cached":null,"ignore_cache":false}'), +(26114, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.9+00', '{"cached":null,"ignore_cache":false}'), +(26115, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.905+00', '{"cached":null,"ignore_cache":false}'), +(26116, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.934+00', '{"cached":null,"ignore_cache":false}'), +(26117, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:13.961+00', '{"cached":null,"ignore_cache":false}'), +(26118, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.468+00', '{"cached":null,"ignore_cache":false}'), +(26119, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.471+00', '{"cached":null,"ignore_cache":false}'), +(26120, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.488+00', '{"cached":null,"ignore_cache":false}'), +(26121, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.586+00', '{"cached":null,"ignore_cache":false}'), +(26122, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:30.587+00', '{"cached":null,"ignore_cache":false}'), +(26123, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:31.59+00', '{"cached":null,"ignore_cache":false}'), +(26124, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:31.815+00', '{"cached":null,"ignore_cache":false}'), +(26125, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.814+00', '{"cached":null,"ignore_cache":false}'), +(26126, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.871+00', '{"cached":null,"ignore_cache":false}'), +(26127, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.878+00', '{"cached":null,"ignore_cache":false}'), +(26128, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.901+00', '{"cached":null,"ignore_cache":false}'), +(26129, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.913+00', '{"cached":null,"ignore_cache":false}'), +(26130, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.926+00', '{"cached":null,"ignore_cache":false}'), +(26131, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.934+00', '{"cached":null,"ignore_cache":false}'), +(26132, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.951+00', '{"cached":null,"ignore_cache":false}'), +(26133, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:30:43.955+00', '{"cached":null,"ignore_cache":false}'), +(26134, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.167+00', '{"cached":null,"ignore_cache":false}'), +(26135, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.186+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26136, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.186+00', '{"cached":null,"ignore_cache":false}'), +(26137, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.206+00', '{"cached":null,"ignore_cache":false}'), +(26138, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.21+00', '{"cached":null,"ignore_cache":false}'), +(26139, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.845+00', '{"cached":null,"ignore_cache":false}'), +(26140, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:03.859+00', '{"cached":null,"ignore_cache":false}'), +(26141, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.006+00', '{"cached":null,"ignore_cache":false}'), +(26142, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.103+00', '{"cached":null,"ignore_cache":false}'), +(26143, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.148+00', '{"cached":null,"ignore_cache":false}'), +(26144, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.186+00', '{"cached":null,"ignore_cache":false}'), +(26145, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.189+00', '{"cached":null,"ignore_cache":false}'), +(26146, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.199+00', '{"cached":null,"ignore_cache":false}'), +(26147, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.201+00', '{"cached":null,"ignore_cache":false}'), +(26148, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.207+00', '{"cached":null,"ignore_cache":false}'), +(26149, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:14.218+00', '{"cached":null,"ignore_cache":false}'), +(26150, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.26+00', '{"cached":null,"ignore_cache":false}'), +(26151, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.376+00', '{"cached":null,"ignore_cache":false}'), +(26152, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.386+00', '{"cached":null,"ignore_cache":false}'), +(26153, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.404+00', '{"cached":null,"ignore_cache":false}'), +(26154, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:35.566+00', '{"cached":null,"ignore_cache":false}'), +(26155, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:36.873+00', '{"cached":null,"ignore_cache":false}'), +(26156, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:37.38+00', '{"cached":null,"ignore_cache":false}'), +(26157, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.774+00', '{"cached":null,"ignore_cache":false}'), +(26158, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.815+00', '{"cached":null,"ignore_cache":false}'), +(26159, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.845+00', '{"cached":null,"ignore_cache":false}'), +(26160, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.852+00', '{"cached":null,"ignore_cache":false}'), +(26161, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.859+00', '{"cached":null,"ignore_cache":false}'), +(26162, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.912+00', '{"cached":null,"ignore_cache":false}'), +(26163, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.946+00', '{"cached":null,"ignore_cache":false}'), +(26164, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.965+00', '{"cached":null,"ignore_cache":false}'), +(26165, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:31:44.998+00', '{"cached":null,"ignore_cache":false}'), +(26166, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.112+00', '{"cached":null,"ignore_cache":false}'), +(26167, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.17+00', '{"cached":null,"ignore_cache":false}'), +(26168, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.181+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26169, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.211+00', '{"cached":null,"ignore_cache":false}'), +(26170, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:08.249+00', '{"cached":null,"ignore_cache":false}'), +(26171, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:09.065+00', '{"cached":null,"ignore_cache":false}'), +(26172, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:09.214+00', '{"cached":null,"ignore_cache":false}'), +(26173, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.399+00', '{"cached":null,"ignore_cache":false}'), +(26174, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.424+00', '{"cached":null,"ignore_cache":false}'), +(26175, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.442+00', '{"cached":null,"ignore_cache":false}'), +(26176, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.446+00', '{"cached":null,"ignore_cache":false}'), +(26177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.481+00', '{"cached":null,"ignore_cache":false}'), +(26178, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.494+00', '{"cached":null,"ignore_cache":false}'), +(26179, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.515+00', '{"cached":null,"ignore_cache":false}'), +(26180, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.54+00', '{"cached":null,"ignore_cache":false}'), +(26181, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:14.543+00', '{"cached":null,"ignore_cache":false}'), +(26182, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.116+00', '{"cached":null,"ignore_cache":false}'), +(26183, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.154+00', '{"cached":null,"ignore_cache":false}'), +(26184, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.17+00', '{"cached":null,"ignore_cache":false}'), +(26185, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.203+00', '{"cached":null,"ignore_cache":false}'), +(26186, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:39.214+00', '{"cached":null,"ignore_cache":false}'), +(26187, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:40.141+00', '{"cached":null,"ignore_cache":false}'), +(26188, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:40.149+00', '{"cached":null,"ignore_cache":false}'), +(26189, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.278+00', '{"cached":null,"ignore_cache":false}'), +(26190, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.287+00', '{"cached":null,"ignore_cache":false}'), +(26191, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.39+00', '{"cached":null,"ignore_cache":false}'), +(26192, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.442+00', '{"cached":null,"ignore_cache":false}'), +(26193, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.464+00', '{"cached":null,"ignore_cache":false}'), +(26194, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.476+00', '{"cached":null,"ignore_cache":false}'), +(26195, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.476+00', '{"cached":null,"ignore_cache":false}'), +(26196, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.485+00', '{"cached":null,"ignore_cache":false}'), +(26197, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:32:44.554+00', '{"cached":null,"ignore_cache":false}'), +(26198, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.104+00', '{"cached":null,"ignore_cache":false}'), +(26199, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.117+00', '{"cached":null,"ignore_cache":false}'), +(26200, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.136+00', '{"cached":null,"ignore_cache":false}'), +(26201, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.142+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26202, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.143+00', '{"cached":null,"ignore_cache":false}'), +(26203, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.867+00', '{"cached":null,"ignore_cache":false}'), +(26204, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:11.87+00', '{"cached":null,"ignore_cache":false}'), +(26205, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.019+00', '{"cached":null,"ignore_cache":false}'), +(26206, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.15+00', '{"cached":null,"ignore_cache":false}'), +(26207, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.169+00', '{"cached":null,"ignore_cache":false}'), +(26208, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.2+00', '{"cached":null,"ignore_cache":false}'), +(26209, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.23+00', '{"cached":null,"ignore_cache":false}'), +(26210, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.231+00', '{"cached":null,"ignore_cache":false}'), +(26211, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.236+00', '{"cached":null,"ignore_cache":false}'), +(26212, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.243+00', '{"cached":null,"ignore_cache":false}'), +(26213, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:14.26+00', '{"cached":null,"ignore_cache":false}'), +(26214, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.389+00', '{"cached":null,"ignore_cache":false}'), +(26215, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.419+00', '{"cached":null,"ignore_cache":false}'), +(26216, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.447+00', '{"cached":null,"ignore_cache":false}'), +(26217, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.456+00', '{"cached":null,"ignore_cache":false}'), +(26218, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.483+00', '{"cached":null,"ignore_cache":false}'), +(26219, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.49+00', '{"cached":null,"ignore_cache":false}'), +(26220, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.492+00', '{"cached":null,"ignore_cache":false}'), +(26221, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.508+00', '{"cached":null,"ignore_cache":false}'), +(26222, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:44.52+00', '{"cached":null,"ignore_cache":false}'), +(26223, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.87+00', '{"cached":null,"ignore_cache":false}'), +(26224, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.94+00', '{"cached":null,"ignore_cache":false}'), +(26225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.943+00', '{"cached":null,"ignore_cache":false}'), +(26226, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.975+00', '{"cached":null,"ignore_cache":false}'), +(26227, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:45.985+00', '{"cached":null,"ignore_cache":false}'), +(26228, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:47.178+00', '{"cached":null,"ignore_cache":false}'), +(26229, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:33:47.225+00', '{"cached":null,"ignore_cache":false}'), +(26230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.086+00', '{"cached":null,"ignore_cache":false}'), +(26231, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.223+00', '{"cached":null,"ignore_cache":false}'), +(26232, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.286+00', '{"cached":null,"ignore_cache":false}'), +(26233, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.286+00', '{"cached":null,"ignore_cache":false}'), +(26234, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.301+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26235, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.303+00', '{"cached":null,"ignore_cache":false}'), +(26236, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.447+00', '{"cached":null,"ignore_cache":false}'), +(26237, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.469+00', '{"cached":null,"ignore_cache":false}'), +(26238, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:14.533+00', '{"cached":null,"ignore_cache":false}'), +(26239, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.091+00', '{"cached":null,"ignore_cache":false}'), +(26240, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.157+00', '{"cached":null,"ignore_cache":false}'), +(26241, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.175+00', '{"cached":null,"ignore_cache":false}'), +(26242, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.192+00', '{"cached":null,"ignore_cache":false}'), +(26243, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:18.242+00', '{"cached":null,"ignore_cache":false}'), +(26244, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:19.423+00', '{"cached":null,"ignore_cache":false}'), +(26245, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:19.613+00', '{"cached":null,"ignore_cache":false}'), +(26246, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:43.948+00', '{"cached":null,"ignore_cache":false}'), +(26247, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.006+00', '{"cached":null,"ignore_cache":false}'), +(26248, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.033+00', '{"cached":null,"ignore_cache":false}'), +(26249, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.05+00', '{"cached":null,"ignore_cache":false}'), +(26250, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.055+00', '{"cached":null,"ignore_cache":false}'), +(26251, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.065+00', '{"cached":null,"ignore_cache":false}'), +(26252, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.067+00', '{"cached":null,"ignore_cache":false}'), +(26253, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.07+00', '{"cached":null,"ignore_cache":false}'), +(26254, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:44.079+00', '{"cached":null,"ignore_cache":false}'), +(26255, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.285+00', '{"cached":null,"ignore_cache":false}'), +(26256, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.294+00', '{"cached":null,"ignore_cache":false}'), +(26257, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.371+00', '{"cached":null,"ignore_cache":false}'), +(26258, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.464+00', '{"cached":null,"ignore_cache":false}'), +(26259, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:51.474+00', '{"cached":null,"ignore_cache":false}'), +(26260, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:52.494+00', '{"cached":null,"ignore_cache":false}'), +(26261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:34:52.675+00', '{"cached":null,"ignore_cache":false}'), +(26262, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.85+00', '{"cached":null,"ignore_cache":false}'), +(26263, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.864+00', '{"cached":null,"ignore_cache":false}'), +(26264, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.883+00', '{"cached":null,"ignore_cache":false}'), +(26265, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.924+00', '{"cached":null,"ignore_cache":false}'), +(26266, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:13.948+00', '{"cached":null,"ignore_cache":false}'), +(26267, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:14.041+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26268, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:14.043+00', '{"cached":null,"ignore_cache":false}'), +(26269, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:14.053+00', '{"cached":null,"ignore_cache":false}'), +(26270, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:14.068+00', '{"cached":null,"ignore_cache":false}'), +(26271, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.83+00', '{"cached":null,"ignore_cache":false}'), +(26272, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:27.904+00', '{"cached":null,"ignore_cache":false}'), +(26273, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.732+00', '{"cached":null,"ignore_cache":false}'), +(26274, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.732+00', '{"cached":null,"ignore_cache":false}'), +(26275, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.733+00', '{"cached":null,"ignore_cache":false}'), +(26276, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.734+00', '{"cached":null,"ignore_cache":false}'), +(26277, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.734+00', '{"cached":null,"ignore_cache":false}'), +(26278, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.735+00', '{"cached":null,"ignore_cache":false}'), +(26279, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.735+00', '{"cached":null,"ignore_cache":false}'), +(26280, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.735+00', '{"cached":null,"ignore_cache":false}'), +(26281, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.827+00', '{"cached":null,"ignore_cache":false}'), +(26282, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.837+00', '{"cached":null,"ignore_cache":false}'), +(26283, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:29.976+00', '{"cached":null,"ignore_cache":false}'), +(26284, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:30.107+00', '{"cached":null,"ignore_cache":false}'), +(26285, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:30.119+00', '{"cached":null,"ignore_cache":false}'), +(26286, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:30.255+00', '{"cached":null,"ignore_cache":false}'), +(26287, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:30.933+00', '{"cached":null,"ignore_cache":false}'), +(26288, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:31.079+00', '{"cached":null,"ignore_cache":false}'), +(26289, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:31.092+00', '{"cached":null,"ignore_cache":false}'), +(26290, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:31.165+00', '{"cached":null,"ignore_cache":false}'), +(26291, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:31.211+00', '{"cached":null,"ignore_cache":false}'), +(26292, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:31.562+00', '{"cached":null,"ignore_cache":false}'), +(26293, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:31.615+00', '{"cached":null,"ignore_cache":false}'), +(26294, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:31.652+00', '{"cached":null,"ignore_cache":false}'), +(26295, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:32.735+00', '{"cached":null,"ignore_cache":false}'), +(26296, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:33.13+00', '{"cached":null,"ignore_cache":false}'), +(26297, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:33.459+00', '{"cached":null,"ignore_cache":false}'), +(26298, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.824+00', '{"cached":null,"ignore_cache":false}'), +(26299, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.89+00', '{"cached":null,"ignore_cache":false}'), +(26300, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.938+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26301, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.939+00', '{"cached":null,"ignore_cache":false}'), +(26302, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:57.957+00', '{"cached":null,"ignore_cache":false}'), +(26303, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.041+00', '{"cached":null,"ignore_cache":false}'), +(26304, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.085+00', '{"cached":null,"ignore_cache":false}'), +(26305, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.116+00', '{"cached":null,"ignore_cache":false}'), +(26306, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.16+00', '{"cached":null,"ignore_cache":false}'), +(26307, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.175+00', '{"cached":null,"ignore_cache":false}'), +(26308, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.192+00', '{"cached":null,"ignore_cache":false}'), +(26309, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.209+00', '{"cached":null,"ignore_cache":false}'), +(26310, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.21+00', '{"cached":null,"ignore_cache":false}'), +(26311, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.233+00', '{"cached":null,"ignore_cache":false}'), +(26312, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.234+00', '{"cached":null,"ignore_cache":false}'), +(26313, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:35:59.249+00', '{"cached":null,"ignore_cache":false}'), +(26314, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.248+00', '{"cached":null,"ignore_cache":false}'), +(26315, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.254+00', '{"cached":null,"ignore_cache":false}'), +(26316, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.288+00', '{"cached":null,"ignore_cache":false}'), +(26317, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.292+00', '{"cached":null,"ignore_cache":false}'), +(26318, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:28.324+00', '{"cached":null,"ignore_cache":false}'), +(26319, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:29.525+00', '{"cached":null,"ignore_cache":false}'), +(26320, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:29.528+00', '{"cached":null,"ignore_cache":false}'), +(26321, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.14+00', '{"cached":null,"ignore_cache":false}'), +(26322, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.148+00', '{"cached":null,"ignore_cache":false}'), +(26323, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.195+00', '{"cached":null,"ignore_cache":false}'), +(26324, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.212+00', '{"cached":null,"ignore_cache":false}'), +(26325, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.22+00', '{"cached":null,"ignore_cache":false}'), +(26326, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.226+00', '{"cached":null,"ignore_cache":false}'), +(26327, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.232+00', '{"cached":null,"ignore_cache":false}'), +(26328, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.264+00', '{"cached":null,"ignore_cache":false}'), +(26329, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:31.27+00', '{"cached":null,"ignore_cache":false}'), +(26330, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.247+00', '{"cached":null,"ignore_cache":false}'), +(26331, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.268+00', '{"cached":null,"ignore_cache":false}'), +(26332, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.33+00', '{"cached":null,"ignore_cache":false}'), +(26333, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.335+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26334, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:58.373+00', '{"cached":null,"ignore_cache":false}'), +(26335, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:59.051+00', '{"cached":null,"ignore_cache":false}'), +(26336, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:36:59.3+00', '{"cached":null,"ignore_cache":false}'), +(26337, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.022+00', '{"cached":null,"ignore_cache":false}'), +(26338, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.023+00', '{"cached":null,"ignore_cache":false}'), +(26339, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.116+00', '{"cached":null,"ignore_cache":false}'), +(26340, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.147+00', '{"cached":null,"ignore_cache":false}'), +(26341, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.187+00', '{"cached":null,"ignore_cache":false}'), +(26342, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.193+00', '{"cached":null,"ignore_cache":false}'), +(26343, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.201+00', '{"cached":null,"ignore_cache":false}'), +(26344, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.207+00', '{"cached":null,"ignore_cache":false}'), +(26345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:01.238+00', '{"cached":null,"ignore_cache":false}'), +(26346, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.34+00', '{"cached":null,"ignore_cache":false}'), +(26347, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.702+00', '{"cached":null,"ignore_cache":false}'), +(26348, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:08.88+00', '{"cached":null,"ignore_cache":false}'), +(26349, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.01+00', '{"cached":null,"ignore_cache":false}'), +(26350, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.232+00', '{"cached":null,"ignore_cache":false}'), +(26351, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.246+00', '{"cached":null,"ignore_cache":false}'), +(26352, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.338+00', '{"cached":null,"ignore_cache":false}'), +(26353, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.343+00', '{"cached":null,"ignore_cache":false}'), +(26354, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.451+00', '{"cached":null,"ignore_cache":false}'), +(26355, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.496+00', '{"cached":null,"ignore_cache":false}'), +(26356, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.667+00', '{"cached":null,"ignore_cache":false}'), +(26357, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.742+00', '{"cached":null,"ignore_cache":false}'), +(26358, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.912+00', '{"cached":null,"ignore_cache":false}'), +(26359, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:09.947+00', '{"cached":null,"ignore_cache":false}'), +(26360, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.085+00', '{"cached":null,"ignore_cache":false}'), +(26361, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.087+00', '{"cached":null,"ignore_cache":false}'), +(26362, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.115+00', '{"cached":null,"ignore_cache":false}'), +(26363, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.134+00', '{"cached":null,"ignore_cache":false}'), +(26364, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.144+00', '{"cached":null,"ignore_cache":false}'), +(26365, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.173+00', '{"cached":null,"ignore_cache":false}'), +(26366, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.262+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26367, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.317+00', '{"cached":null,"ignore_cache":false}'), +(26368, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.774+00', '{"cached":null,"ignore_cache":false}'), +(26369, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:10.958+00', '{"cached":null,"ignore_cache":false}'), +(26370, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.51+00', '{"cached":null,"ignore_cache":false}'), +(26371, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.537+00', '{"cached":null,"ignore_cache":false}'), +(26372, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.557+00', '{"cached":null,"ignore_cache":false}'), +(26373, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.563+00', '{"cached":null,"ignore_cache":false}'), +(26374, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:27.578+00', '{"cached":null,"ignore_cache":false}'), +(26375, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:28.49+00', '{"cached":null,"ignore_cache":false}'), +(26376, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:28.592+00', '{"cached":null,"ignore_cache":false}'), +(26377, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.391+00', '{"cached":null,"ignore_cache":false}'), +(26378, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.411+00', '{"cached":null,"ignore_cache":false}'), +(26379, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.446+00', '{"cached":null,"ignore_cache":false}'), +(26380, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.506+00', '{"cached":null,"ignore_cache":false}'), +(26381, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.516+00', '{"cached":null,"ignore_cache":false}'), +(26382, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.599+00', '{"cached":null,"ignore_cache":false}'), +(26383, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.616+00', '{"cached":null,"ignore_cache":false}'), +(26384, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.632+00', '{"cached":null,"ignore_cache":false}'), +(26385, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:30.641+00', '{"cached":null,"ignore_cache":false}'), +(26386, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.189+00', '{"cached":null,"ignore_cache":false}'), +(26387, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.212+00', '{"cached":null,"ignore_cache":false}'), +(26388, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.224+00', '{"cached":null,"ignore_cache":false}'), +(26389, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.342+00', '{"cached":null,"ignore_cache":false}'), +(26390, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.394+00', '{"cached":null,"ignore_cache":false}'), +(26391, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.406+00', '{"cached":null,"ignore_cache":false}'), +(26392, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.424+00', '{"cached":null,"ignore_cache":false}'), +(26393, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.466+00', '{"cached":null,"ignore_cache":false}'), +(26394, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.521+00', '{"cached":null,"ignore_cache":false}'), +(26395, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.531+00', '{"cached":null,"ignore_cache":false}'), +(26396, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.605+00', '{"cached":null,"ignore_cache":false}'), +(26397, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.643+00', '{"cached":null,"ignore_cache":false}'), +(26398, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.658+00', '{"cached":null,"ignore_cache":false}'), +(26399, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:38.674+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26400, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:39.241+00', '{"cached":null,"ignore_cache":false}'), +(26401, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:39.351+00', '{"cached":null,"ignore_cache":false}'), +(26402, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.518+00', '{"cached":null,"ignore_cache":false}'), +(26403, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.535+00', '{"cached":null,"ignore_cache":false}'), +(26404, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.576+00', '{"cached":null,"ignore_cache":false}'), +(26405, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.614+00', '{"cached":null,"ignore_cache":false}'), +(26406, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.625+00', '{"cached":null,"ignore_cache":false}'), +(26407, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.641+00', '{"cached":null,"ignore_cache":false}'), +(26408, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.662+00', '{"cached":null,"ignore_cache":false}'), +(26409, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.688+00', '{"cached":null,"ignore_cache":false}'), +(26410, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:42.695+00', '{"cached":null,"ignore_cache":false}'), +(26411, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.877+00', '{"cached":null,"ignore_cache":false}'), +(26412, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.88+00', '{"cached":null,"ignore_cache":false}'), +(26413, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.919+00', '{"cached":null,"ignore_cache":false}'), +(26414, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.921+00', '{"cached":null,"ignore_cache":false}'), +(26415, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.933+00', '{"cached":null,"ignore_cache":false}'), +(26416, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.939+00', '{"cached":null,"ignore_cache":false}'), +(26417, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.944+00', '{"cached":null,"ignore_cache":false}'), +(26418, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:47.959+00', '{"cached":null,"ignore_cache":false}'), +(26419, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:48.006+00', '{"cached":null,"ignore_cache":false}'), +(26420, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.99+00', '{"cached":null,"ignore_cache":false}'), +(26421, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:57.998+00', '{"cached":null,"ignore_cache":false}'), +(26422, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:58.014+00', '{"cached":null,"ignore_cache":false}'), +(26423, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:58.019+00', '{"cached":null,"ignore_cache":false}'), +(26424, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:58.028+00', '{"cached":null,"ignore_cache":false}'), +(26425, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:58.655+00', '{"cached":null,"ignore_cache":false}'), +(26426, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:37:58.704+00', '{"cached":null,"ignore_cache":false}'), +(26427, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.347+00', '{"cached":null,"ignore_cache":false}'), +(26428, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.348+00', '{"cached":null,"ignore_cache":false}'), +(26429, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.377+00', '{"cached":null,"ignore_cache":false}'), +(26430, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.443+00', '{"cached":null,"ignore_cache":false}'), +(26431, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.456+00', '{"cached":null,"ignore_cache":false}'), +(26432, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.463+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26433, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.48+00', '{"cached":null,"ignore_cache":false}'), +(26434, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.505+00', '{"cached":null,"ignore_cache":false}'), +(26435, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:02.514+00', '{"cached":null,"ignore_cache":false}'), +(26436, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.628+00', '{"cached":null,"ignore_cache":false}'), +(26437, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.722+00', '{"cached":null,"ignore_cache":false}'), +(26438, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.774+00', '{"cached":null,"ignore_cache":false}'), +(26439, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.792+00', '{"cached":null,"ignore_cache":false}'), +(26440, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.864+00', '{"cached":null,"ignore_cache":false}'), +(26441, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.874+00', '{"cached":null,"ignore_cache":false}'), +(26442, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.884+00', '{"cached":null,"ignore_cache":false}'), +(26443, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.885+00', '{"cached":null,"ignore_cache":false}'), +(26444, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.896+00', '{"cached":null,"ignore_cache":false}'), +(26445, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.922+00', '{"cached":null,"ignore_cache":false}'), +(26446, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.928+00', '{"cached":null,"ignore_cache":false}'), +(26447, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.937+00', '{"cached":null,"ignore_cache":false}'), +(26448, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.941+00', '{"cached":null,"ignore_cache":false}'), +(26449, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:07.963+00', '{"cached":null,"ignore_cache":false}'), +(26450, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:08.474+00', '{"cached":null,"ignore_cache":false}'), +(26451, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:08.531+00', '{"cached":null,"ignore_cache":false}'), +(26452, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.527+00', '{"cached":null,"ignore_cache":false}'), +(26453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.562+00', '{"cached":null,"ignore_cache":false}'), +(26454, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.569+00', '{"cached":null,"ignore_cache":false}'), +(26455, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.597+00', '{"cached":null,"ignore_cache":false}'), +(26456, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:27.665+00', '{"cached":null,"ignore_cache":false}'), +(26457, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:28.434+00', '{"cached":null,"ignore_cache":false}'), +(26458, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:28.548+00', '{"cached":null,"ignore_cache":false}'), +(26459, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.296+00', '{"cached":null,"ignore_cache":false}'), +(26460, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.424+00', '{"cached":null,"ignore_cache":false}'), +(26461, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.436+00', '{"cached":null,"ignore_cache":false}'), +(26462, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.485+00', '{"cached":null,"ignore_cache":false}'), +(26463, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.491+00', '{"cached":null,"ignore_cache":false}'), +(26464, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.506+00', '{"cached":null,"ignore_cache":false}'), +(26465, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.594+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26466, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.627+00', '{"cached":null,"ignore_cache":false}'), +(26467, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:35.654+00', '{"cached":null,"ignore_cache":false}'), +(26468, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.023+00', '{"cached":null,"ignore_cache":false}'), +(26469, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.131+00', '{"cached":null,"ignore_cache":false}'), +(26470, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.131+00', '{"cached":null,"ignore_cache":false}'), +(26471, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.173+00', '{"cached":null,"ignore_cache":false}'), +(26472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.231+00', '{"cached":null,"ignore_cache":false}'), +(26473, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.242+00', '{"cached":null,"ignore_cache":false}'), +(26474, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.305+00', '{"cached":null,"ignore_cache":false}'), +(26475, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.348+00', '{"cached":null,"ignore_cache":false}'), +(26476, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.354+00', '{"cached":null,"ignore_cache":false}'), +(26477, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.356+00', '{"cached":null,"ignore_cache":false}'), +(26478, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.363+00', '{"cached":null,"ignore_cache":false}'), +(26479, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.364+00', '{"cached":null,"ignore_cache":false}'), +(26480, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.372+00', '{"cached":null,"ignore_cache":false}'), +(26481, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.376+00', '{"cached":null,"ignore_cache":false}'), +(26482, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:38.957+00', '{"cached":null,"ignore_cache":false}'), +(26483, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:39.029+00', '{"cached":null,"ignore_cache":false}'), +(26484, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.551+00', '{"cached":null,"ignore_cache":false}'), +(26485, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.576+00', '{"cached":null,"ignore_cache":false}'), +(26486, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.578+00', '{"cached":null,"ignore_cache":false}'), +(26487, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.587+00', '{"cached":null,"ignore_cache":false}'), +(26488, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:57.603+00', '{"cached":null,"ignore_cache":false}'), +(26489, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:58.274+00', '{"cached":null,"ignore_cache":false}'), +(26490, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:38:58.323+00', '{"cached":null,"ignore_cache":false}'), +(26491, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.198+00', '{"cached":null,"ignore_cache":false}'), +(26492, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.249+00', '{"cached":null,"ignore_cache":false}'), +(26493, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.261+00', '{"cached":null,"ignore_cache":false}'), +(26494, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.275+00', '{"cached":null,"ignore_cache":false}'), +(26495, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.307+00', '{"cached":null,"ignore_cache":false}'), +(26496, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.312+00', '{"cached":null,"ignore_cache":false}'), +(26497, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.329+00', '{"cached":null,"ignore_cache":false}'), +(26498, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.346+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26499, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:06.369+00', '{"cached":null,"ignore_cache":false}'), +(26500, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:08.761+00', '{"cached":null,"ignore_cache":false}'), +(26501, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.02+00', '{"cached":null,"ignore_cache":false}'), +(26502, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.054+00', '{"cached":null,"ignore_cache":false}'), +(26503, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.145+00', '{"cached":null,"ignore_cache":false}'), +(26504, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.159+00', '{"cached":null,"ignore_cache":false}'), +(26505, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.184+00', '{"cached":null,"ignore_cache":false}'), +(26506, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.187+00', '{"cached":null,"ignore_cache":false}'), +(26507, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.205+00', '{"cached":null,"ignore_cache":false}'), +(26508, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.217+00', '{"cached":null,"ignore_cache":false}'), +(26509, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.226+00', '{"cached":null,"ignore_cache":false}'), +(26510, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.27+00', '{"cached":null,"ignore_cache":false}'), +(26511, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.274+00', '{"cached":null,"ignore_cache":false}'), +(26512, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.346+00', '{"cached":null,"ignore_cache":false}'), +(26513, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:09.44+00', '{"cached":null,"ignore_cache":false}'), +(26514, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:10.171+00', '{"cached":null,"ignore_cache":false}'), +(26515, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:10.238+00', '{"cached":null,"ignore_cache":false}'), +(26516, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.776+00', '{"cached":null,"ignore_cache":false}'), +(26517, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.851+00', '{"cached":null,"ignore_cache":false}'), +(26518, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.88+00', '{"cached":null,"ignore_cache":false}'), +(26519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.908+00', '{"cached":null,"ignore_cache":false}'), +(26520, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:27.939+00', '{"cached":null,"ignore_cache":false}'), +(26521, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:28.652+00', '{"cached":null,"ignore_cache":false}'), +(26522, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:28.842+00', '{"cached":null,"ignore_cache":false}'), +(26523, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.297+00', '{"cached":null,"ignore_cache":false}'), +(26524, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.315+00', '{"cached":null,"ignore_cache":false}'), +(26525, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.412+00', '{"cached":null,"ignore_cache":false}'), +(26526, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.48+00', '{"cached":null,"ignore_cache":false}'), +(26527, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.53+00', '{"cached":null,"ignore_cache":false}'), +(26528, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.53+00', '{"cached":null,"ignore_cache":false}'), +(26529, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.545+00', '{"cached":null,"ignore_cache":false}'), +(26530, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.553+00', '{"cached":null,"ignore_cache":false}'), +(26531, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.571+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26532, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.577+00', '{"cached":null,"ignore_cache":false}'), +(26533, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.598+00', '{"cached":null,"ignore_cache":false}'), +(26534, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.64+00', '{"cached":null,"ignore_cache":false}'), +(26535, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.719+00', '{"cached":null,"ignore_cache":false}'), +(26536, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:38.73+00', '{"cached":null,"ignore_cache":false}'), +(26537, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:39.6+00', '{"cached":null,"ignore_cache":false}'), +(26538, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:39.662+00', '{"cached":null,"ignore_cache":false}'), +(26539, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.645+00', '{"cached":null,"ignore_cache":false}'), +(26540, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.745+00', '{"cached":null,"ignore_cache":false}'), +(26541, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.766+00', '{"cached":null,"ignore_cache":false}'), +(26542, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.824+00', '{"cached":null,"ignore_cache":false}'), +(26543, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.853+00', '{"cached":null,"ignore_cache":false}'), +(26544, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.865+00', '{"cached":null,"ignore_cache":false}'), +(26545, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.875+00', '{"cached":null,"ignore_cache":false}'), +(26546, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.898+00', '{"cached":null,"ignore_cache":false}'), +(26547, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:41.913+00', '{"cached":null,"ignore_cache":false}'), +(26548, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.55+00', '{"cached":null,"ignore_cache":false}'), +(26549, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.567+00', '{"cached":null,"ignore_cache":false}'), +(26550, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.578+00', '{"cached":null,"ignore_cache":false}'), +(26551, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.599+00', '{"cached":null,"ignore_cache":false}'), +(26552, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:57.608+00', '{"cached":null,"ignore_cache":false}'), +(26553, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:58.585+00', '{"cached":null,"ignore_cache":false}'), +(26554, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:39:58.834+00', '{"cached":null,"ignore_cache":false}'), +(26555, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.265+00', '{"cached":null,"ignore_cache":false}'), +(26556, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.295+00', '{"cached":null,"ignore_cache":false}'), +(26557, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.354+00', '{"cached":null,"ignore_cache":false}'), +(26558, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.393+00', '{"cached":null,"ignore_cache":false}'), +(26559, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.445+00', '{"cached":null,"ignore_cache":false}'), +(26560, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.469+00', '{"cached":null,"ignore_cache":false}'), +(26561, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.478+00', '{"cached":null,"ignore_cache":false}'), +(26562, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.499+00', '{"cached":null,"ignore_cache":false}'), +(26563, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.537+00', '{"cached":null,"ignore_cache":false}'), +(26564, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.556+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26565, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.559+00', '{"cached":null,"ignore_cache":false}'), +(26566, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.561+00', '{"cached":null,"ignore_cache":false}'), +(26567, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.565+00', '{"cached":null,"ignore_cache":false}'), +(26568, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:08.579+00', '{"cached":null,"ignore_cache":false}'), +(26569, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:09.099+00', '{"cached":null,"ignore_cache":false}'), +(26570, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:09.215+00', '{"cached":null,"ignore_cache":false}'), +(26571, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.306+00', '{"cached":null,"ignore_cache":false}'), +(26572, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.408+00', '{"cached":null,"ignore_cache":false}'), +(26573, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.409+00', '{"cached":null,"ignore_cache":false}'), +(26574, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.433+00', '{"cached":null,"ignore_cache":false}'), +(26575, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.571+00', '{"cached":null,"ignore_cache":false}'), +(26576, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.571+00', '{"cached":null,"ignore_cache":false}'), +(26577, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.614+00', '{"cached":null,"ignore_cache":false}'), +(26578, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.631+00', '{"cached":null,"ignore_cache":false}'), +(26579, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:11.682+00', '{"cached":null,"ignore_cache":false}'), +(26580, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.765+00', '{"cached":null,"ignore_cache":false}'), +(26581, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.792+00', '{"cached":null,"ignore_cache":false}'), +(26582, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.863+00', '{"cached":null,"ignore_cache":false}'), +(26583, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.866+00', '{"cached":null,"ignore_cache":false}'), +(26584, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:27.888+00', '{"cached":null,"ignore_cache":false}'), +(26585, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:28.667+00', '{"cached":null,"ignore_cache":false}'), +(26586, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:28.94+00', '{"cached":null,"ignore_cache":false}'), +(26587, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:38.67+00', '{"cached":null,"ignore_cache":false}'), +(26588, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.187+00', '{"cached":null,"ignore_cache":false}'), +(26589, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.19+00', '{"cached":null,"ignore_cache":false}'), +(26590, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.432+00', '{"cached":null,"ignore_cache":false}'), +(26591, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.501+00', '{"cached":null,"ignore_cache":false}'), +(26592, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.537+00', '{"cached":null,"ignore_cache":false}'), +(26593, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.582+00', '{"cached":null,"ignore_cache":false}'), +(26594, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.585+00', '{"cached":null,"ignore_cache":false}'), +(26595, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.619+00', '{"cached":null,"ignore_cache":false}'), +(26596, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.645+00', '{"cached":null,"ignore_cache":false}'), +(26597, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.68+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26598, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.687+00', '{"cached":null,"ignore_cache":false}'), +(26599, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.731+00', '{"cached":null,"ignore_cache":false}'), +(26600, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.748+00', '{"cached":null,"ignore_cache":false}'), +(26601, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:39.755+00', '{"cached":null,"ignore_cache":false}'), +(26602, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:40.447+00', '{"cached":null,"ignore_cache":false}'), +(26603, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.541+00', '{"cached":null,"ignore_cache":false}'), +(26604, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.659+00', '{"cached":null,"ignore_cache":false}'), +(26605, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.959+00', '{"cached":null,"ignore_cache":false}'), +(26606, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:42.996+00', '{"cached":null,"ignore_cache":false}'), +(26607, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:43.145+00', '{"cached":null,"ignore_cache":false}'), +(26608, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:43.219+00', '{"cached":null,"ignore_cache":false}'), +(26609, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:43.413+00', '{"cached":null,"ignore_cache":false}'), +(26610, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:43.521+00', '{"cached":null,"ignore_cache":false}'), +(26611, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:43.6+00', '{"cached":null,"ignore_cache":false}'), +(26612, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.24+00', '{"cached":null,"ignore_cache":false}'), +(26613, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.257+00', '{"cached":null,"ignore_cache":false}'), +(26614, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.262+00', '{"cached":null,"ignore_cache":false}'), +(26615, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.268+00', '{"cached":null,"ignore_cache":false}'), +(26616, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:40:59.318+00', '{"cached":null,"ignore_cache":false}'), +(26617, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:00.482+00', '{"cached":null,"ignore_cache":false}'), +(26618, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:00.837+00', '{"cached":null,"ignore_cache":false}'), +(26619, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.533+00', '{"cached":null,"ignore_cache":false}'), +(26620, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.617+00', '{"cached":null,"ignore_cache":false}'), +(26621, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.673+00', '{"cached":null,"ignore_cache":false}'), +(26622, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.723+00', '{"cached":null,"ignore_cache":false}'), +(26623, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.751+00', '{"cached":null,"ignore_cache":false}'), +(26624, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.764+00', '{"cached":null,"ignore_cache":false}'), +(26625, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.865+00', '{"cached":null,"ignore_cache":false}'), +(26626, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.885+00', '{"cached":null,"ignore_cache":false}'), +(26627, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.904+00', '{"cached":null,"ignore_cache":false}'), +(26628, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.925+00', '{"cached":null,"ignore_cache":false}'), +(26629, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.943+00', '{"cached":null,"ignore_cache":false}'), +(26630, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:08.992+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26631, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:09.017+00', '{"cached":null,"ignore_cache":false}'), +(26632, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:09.025+00', '{"cached":null,"ignore_cache":false}'), +(26633, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:10.022+00', '{"cached":null,"ignore_cache":false}'), +(26634, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:10.047+00', '{"cached":null,"ignore_cache":false}'), +(26635, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.025+00', '{"cached":null,"ignore_cache":false}'), +(26636, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.081+00', '{"cached":null,"ignore_cache":false}'), +(26637, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.084+00', '{"cached":null,"ignore_cache":false}'), +(26638, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.096+00', '{"cached":null,"ignore_cache":false}'), +(26639, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.101+00', '{"cached":null,"ignore_cache":false}'), +(26640, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.118+00', '{"cached":null,"ignore_cache":false}'), +(26641, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.123+00', '{"cached":null,"ignore_cache":false}'), +(26642, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.137+00', '{"cached":null,"ignore_cache":false}'), +(26643, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:15.159+00', '{"cached":null,"ignore_cache":false}'), +(26644, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:28.036+00', '{"cached":null,"ignore_cache":false}'), +(26645, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:28.098+00', '{"cached":null,"ignore_cache":false}'), +(26646, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:28.112+00', '{"cached":null,"ignore_cache":false}'), +(26647, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:28.133+00', '{"cached":null,"ignore_cache":false}'), +(26648, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:28.144+00', '{"cached":null,"ignore_cache":false}'), +(26649, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:29.182+00', '{"cached":null,"ignore_cache":false}'), +(26650, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:29.338+00', '{"cached":null,"ignore_cache":false}'), +(26651, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.026+00', '{"cached":null,"ignore_cache":false}'), +(26652, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.161+00', '{"cached":null,"ignore_cache":false}'), +(26653, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.254+00', '{"cached":null,"ignore_cache":false}'), +(26654, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.293+00', '{"cached":null,"ignore_cache":false}'), +(26655, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.326+00', '{"cached":null,"ignore_cache":false}'), +(26656, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.4+00', '{"cached":null,"ignore_cache":false}'), +(26657, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.487+00', '{"cached":null,"ignore_cache":false}'), +(26658, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.531+00', '{"cached":null,"ignore_cache":false}'), +(26659, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.575+00', '{"cached":null,"ignore_cache":false}'), +(26660, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.579+00', '{"cached":null,"ignore_cache":false}'), +(26661, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.592+00', '{"cached":null,"ignore_cache":false}'), +(26662, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.601+00', '{"cached":null,"ignore_cache":false}'), +(26663, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.615+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26664, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:38.64+00', '{"cached":null,"ignore_cache":false}'), +(26665, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:39.24+00', '{"cached":null,"ignore_cache":false}'), +(26666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:39.639+00', '{"cached":null,"ignore_cache":false}'), +(26667, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.583+00', '{"cached":null,"ignore_cache":false}'), +(26668, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.683+00', '{"cached":null,"ignore_cache":false}'), +(26669, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.712+00', '{"cached":null,"ignore_cache":false}'), +(26670, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.74+00', '{"cached":null,"ignore_cache":false}'), +(26671, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.759+00', '{"cached":null,"ignore_cache":false}'), +(26672, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.762+00', '{"cached":null,"ignore_cache":false}'), +(26673, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.777+00', '{"cached":null,"ignore_cache":false}'), +(26674, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.801+00', '{"cached":null,"ignore_cache":false}'), +(26675, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:47.834+00', '{"cached":null,"ignore_cache":false}'), +(26676, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.552+00', '{"cached":null,"ignore_cache":false}'), +(26677, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.663+00', '{"cached":null,"ignore_cache":false}'), +(26678, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.68+00', '{"cached":null,"ignore_cache":false}'), +(26679, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.686+00', '{"cached":null,"ignore_cache":false}'), +(26680, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:57.73+00', '{"cached":null,"ignore_cache":false}'), +(26681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:58.449+00', '{"cached":null,"ignore_cache":false}'), +(26682, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:41:58.607+00', '{"cached":null,"ignore_cache":false}'), +(26683, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.344+00', '{"cached":null,"ignore_cache":false}'), +(26684, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.371+00', '{"cached":null,"ignore_cache":false}'), +(26685, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.43+00', '{"cached":null,"ignore_cache":false}'), +(26686, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.469+00', '{"cached":null,"ignore_cache":false}'), +(26687, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.499+00', '{"cached":null,"ignore_cache":false}'), +(26688, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.562+00', '{"cached":null,"ignore_cache":false}'), +(26689, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.625+00', '{"cached":null,"ignore_cache":false}'), +(26690, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.632+00', '{"cached":null,"ignore_cache":false}'), +(26691, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.646+00', '{"cached":null,"ignore_cache":false}'), +(26692, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.659+00', '{"cached":null,"ignore_cache":false}'), +(26693, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.717+00', '{"cached":null,"ignore_cache":false}'), +(26694, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.724+00', '{"cached":null,"ignore_cache":false}'), +(26695, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.751+00', '{"cached":null,"ignore_cache":false}'), +(26696, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:08.811+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26697, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:09.625+00', '{"cached":null,"ignore_cache":false}'), +(26698, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:09.71+00', '{"cached":null,"ignore_cache":false}'), +(26699, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.312+00', '{"cached":null,"ignore_cache":false}'), +(26700, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.383+00', '{"cached":null,"ignore_cache":false}'), +(26701, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.405+00', '{"cached":null,"ignore_cache":false}'), +(26702, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.446+00', '{"cached":null,"ignore_cache":false}'), +(26703, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.479+00', '{"cached":null,"ignore_cache":false}'), +(26704, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.487+00', '{"cached":null,"ignore_cache":false}'), +(26705, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.493+00', '{"cached":null,"ignore_cache":false}'), +(26706, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.506+00', '{"cached":null,"ignore_cache":false}'), +(26707, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:17.588+00', '{"cached":null,"ignore_cache":false}'), +(26708, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.966+00', '{"cached":null,"ignore_cache":false}'), +(26709, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:27.998+00', '{"cached":null,"ignore_cache":false}'), +(26710, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:28.019+00', '{"cached":null,"ignore_cache":false}'), +(26711, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:28.027+00', '{"cached":null,"ignore_cache":false}'), +(26712, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:28.062+00', '{"cached":null,"ignore_cache":false}'), +(26713, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:29.052+00', '{"cached":null,"ignore_cache":false}'), +(26714, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:29.25+00', '{"cached":null,"ignore_cache":false}'), +(26715, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.514+00', '{"cached":null,"ignore_cache":false}'), +(26716, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.639+00', '{"cached":null,"ignore_cache":false}'), +(26717, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.642+00', '{"cached":null,"ignore_cache":false}'), +(26718, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.737+00', '{"cached":null,"ignore_cache":false}'), +(26719, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.745+00', '{"cached":null,"ignore_cache":false}'), +(26720, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.779+00', '{"cached":null,"ignore_cache":false}'), +(26721, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.811+00', '{"cached":null,"ignore_cache":false}'), +(26722, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.831+00', '{"cached":null,"ignore_cache":false}'), +(26723, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.896+00', '{"cached":null,"ignore_cache":false}'), +(26724, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.909+00', '{"cached":null,"ignore_cache":false}'), +(26725, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.927+00', '{"cached":null,"ignore_cache":false}'), +(26726, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.937+00', '{"cached":null,"ignore_cache":false}'), +(26727, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:38.964+00', '{"cached":null,"ignore_cache":false}'), +(26728, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:39+00', '{"cached":null,"ignore_cache":false}'), +(26729, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:39.794+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26730, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:39.854+00', '{"cached":null,"ignore_cache":false}'), +(26731, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.41+00', '{"cached":null,"ignore_cache":false}'), +(26732, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.556+00', '{"cached":null,"ignore_cache":false}'), +(26733, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.611+00', '{"cached":null,"ignore_cache":false}'), +(26734, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.689+00', '{"cached":null,"ignore_cache":false}'), +(26735, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.695+00', '{"cached":null,"ignore_cache":false}'), +(26736, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.696+00', '{"cached":null,"ignore_cache":false}'), +(26737, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.709+00', '{"cached":null,"ignore_cache":false}'), +(26738, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.72+00', '{"cached":null,"ignore_cache":false}'), +(26739, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:48.735+00', '{"cached":null,"ignore_cache":false}'), +(26740, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.926+00', '{"cached":null,"ignore_cache":false}'), +(26741, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.971+00', '{"cached":null,"ignore_cache":false}'), +(26742, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:57.995+00', '{"cached":null,"ignore_cache":false}'), +(26743, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:58.021+00', '{"cached":null,"ignore_cache":false}'), +(26744, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:58.037+00', '{"cached":null,"ignore_cache":false}'), +(26745, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:59.038+00', '{"cached":null,"ignore_cache":false}'), +(26746, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:42:59.33+00', '{"cached":null,"ignore_cache":false}'), +(26747, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.438+00', '{"cached":null,"ignore_cache":false}'), +(26748, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.467+00', '{"cached":null,"ignore_cache":false}'), +(26749, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.506+00', '{"cached":null,"ignore_cache":false}'), +(26750, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.53+00', '{"cached":null,"ignore_cache":false}'), +(26751, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.566+00', '{"cached":null,"ignore_cache":false}'), +(26752, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.623+00', '{"cached":null,"ignore_cache":false}'), +(26753, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.63+00', '{"cached":null,"ignore_cache":false}'), +(26754, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.635+00', '{"cached":null,"ignore_cache":false}'), +(26755, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.658+00', '{"cached":null,"ignore_cache":false}'), +(26756, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.703+00', '{"cached":null,"ignore_cache":false}'), +(26757, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.726+00', '{"cached":null,"ignore_cache":false}'), +(26758, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.743+00', '{"cached":null,"ignore_cache":false}'), +(26759, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.744+00', '{"cached":null,"ignore_cache":false}'), +(26760, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:08.752+00', '{"cached":null,"ignore_cache":false}'), +(26761, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:09.762+00', '{"cached":null,"ignore_cache":false}'), +(26762, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:09.847+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26763, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.574+00', '{"cached":null,"ignore_cache":false}'), +(26764, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.599+00', '{"cached":null,"ignore_cache":false}'), +(26765, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.639+00', '{"cached":null,"ignore_cache":false}'), +(26766, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.645+00', '{"cached":null,"ignore_cache":false}'), +(26767, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.724+00', '{"cached":null,"ignore_cache":false}'), +(26768, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.762+00', '{"cached":null,"ignore_cache":false}'), +(26769, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.765+00', '{"cached":null,"ignore_cache":false}'), +(26770, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.826+00', '{"cached":null,"ignore_cache":false}'), +(26771, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:18.872+00', '{"cached":null,"ignore_cache":false}'), +(26772, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.149+00', '{"cached":null,"ignore_cache":false}'), +(26773, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.232+00', '{"cached":null,"ignore_cache":false}'), +(26774, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.236+00', '{"cached":null,"ignore_cache":false}'), +(26775, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.241+00', '{"cached":null,"ignore_cache":false}'), +(26776, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:28.247+00', '{"cached":null,"ignore_cache":false}'), +(26777, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:29.164+00', '{"cached":null,"ignore_cache":false}'), +(26778, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:29.216+00', '{"cached":null,"ignore_cache":false}'), +(26779, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:37.962+00', '{"cached":null,"ignore_cache":false}'), +(26780, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.108+00', '{"cached":null,"ignore_cache":false}'), +(26781, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.121+00', '{"cached":null,"ignore_cache":false}'), +(26782, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.133+00', '{"cached":null,"ignore_cache":false}'), +(26783, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.169+00', '{"cached":null,"ignore_cache":false}'), +(26784, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.194+00', '{"cached":null,"ignore_cache":false}'), +(26785, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.22+00', '{"cached":null,"ignore_cache":false}'), +(26786, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.257+00', '{"cached":null,"ignore_cache":false}'), +(26787, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.258+00', '{"cached":null,"ignore_cache":false}'), +(26788, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.348+00', '{"cached":null,"ignore_cache":false}'), +(26789, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.386+00', '{"cached":null,"ignore_cache":false}'), +(26790, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.461+00', '{"cached":null,"ignore_cache":false}'), +(26791, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.474+00', '{"cached":null,"ignore_cache":false}'), +(26792, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:38.507+00', '{"cached":null,"ignore_cache":false}'), +(26793, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:39.675+00', '{"cached":null,"ignore_cache":false}'), +(26794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:39.703+00', '{"cached":null,"ignore_cache":false}'), +(26795, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.297+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26796, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.364+00', '{"cached":null,"ignore_cache":false}'), +(26797, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.46+00', '{"cached":null,"ignore_cache":false}'), +(26798, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.463+00', '{"cached":null,"ignore_cache":false}'), +(26799, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.468+00', '{"cached":null,"ignore_cache":false}'), +(26800, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.477+00', '{"cached":null,"ignore_cache":false}'), +(26801, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.482+00', '{"cached":null,"ignore_cache":false}'), +(26802, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.494+00', '{"cached":null,"ignore_cache":false}'), +(26803, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:50.503+00', '{"cached":null,"ignore_cache":false}'), +(26804, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.263+00', '{"cached":null,"ignore_cache":false}'), +(26805, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.275+00', '{"cached":null,"ignore_cache":false}'), +(26806, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.3+00', '{"cached":null,"ignore_cache":false}'), +(26807, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.377+00', '{"cached":null,"ignore_cache":false}'), +(26808, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:58.395+00', '{"cached":null,"ignore_cache":false}'), +(26809, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:59.417+00', '{"cached":null,"ignore_cache":false}'), +(26810, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:43:59.444+00', '{"cached":null,"ignore_cache":false}'), +(26811, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.757+00', '{"cached":null,"ignore_cache":false}'), +(26812, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.823+00', '{"cached":null,"ignore_cache":false}'), +(26813, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.894+00', '{"cached":null,"ignore_cache":false}'), +(26814, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.973+00', '{"cached":null,"ignore_cache":false}'), +(26815, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:08.978+00', '{"cached":null,"ignore_cache":false}'), +(26816, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.004+00', '{"cached":null,"ignore_cache":false}'), +(26817, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.036+00', '{"cached":null,"ignore_cache":false}'), +(26818, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.057+00', '{"cached":null,"ignore_cache":false}'), +(26819, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.08+00', '{"cached":null,"ignore_cache":false}'), +(26820, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.091+00', '{"cached":null,"ignore_cache":false}'), +(26821, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.112+00', '{"cached":null,"ignore_cache":false}'), +(26822, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.152+00', '{"cached":null,"ignore_cache":false}'), +(26823, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.156+00', '{"cached":null,"ignore_cache":false}'), +(26824, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:09.227+00', '{"cached":null,"ignore_cache":false}'), +(26825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:10.099+00', '{"cached":null,"ignore_cache":false}'), +(26826, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:10.251+00', '{"cached":null,"ignore_cache":false}'), +(26827, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.382+00', '{"cached":null,"ignore_cache":false}'), +(26828, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.455+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26829, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.467+00', '{"cached":null,"ignore_cache":false}'), +(26830, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.624+00', '{"cached":null,"ignore_cache":false}'), +(26831, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.629+00', '{"cached":null,"ignore_cache":false}'), +(26832, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.638+00', '{"cached":null,"ignore_cache":false}'), +(26833, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.655+00', '{"cached":null,"ignore_cache":false}'), +(26834, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.659+00', '{"cached":null,"ignore_cache":false}'), +(26835, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:22.736+00', '{"cached":null,"ignore_cache":false}'), +(26836, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.195+00', '{"cached":null,"ignore_cache":false}'), +(26837, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.213+00', '{"cached":null,"ignore_cache":false}'), +(26838, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.229+00', '{"cached":null,"ignore_cache":false}'), +(26839, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.302+00', '{"cached":null,"ignore_cache":false}'), +(26840, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:28.341+00', '{"cached":null,"ignore_cache":false}'), +(26841, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:29.109+00', '{"cached":null,"ignore_cache":false}'), +(26842, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:29.26+00', '{"cached":null,"ignore_cache":false}'), +(26843, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.494+00', '{"cached":null,"ignore_cache":false}'), +(26844, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.628+00', '{"cached":null,"ignore_cache":false}'), +(26845, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.656+00', '{"cached":null,"ignore_cache":false}'), +(26846, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.878+00', '{"cached":null,"ignore_cache":false}'), +(26847, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.889+00', '{"cached":null,"ignore_cache":false}'), +(26848, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.928+00', '{"cached":null,"ignore_cache":false}'), +(26849, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:38.929+00', '{"cached":null,"ignore_cache":false}'), +(26850, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:39.075+00', '{"cached":null,"ignore_cache":false}'), +(26851, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:39.11+00', '{"cached":null,"ignore_cache":false}'), +(26852, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:39.118+00', '{"cached":null,"ignore_cache":false}'), +(26853, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:39.125+00', '{"cached":null,"ignore_cache":false}'), +(26854, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:39.134+00', '{"cached":null,"ignore_cache":false}'), +(26855, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:39.146+00', '{"cached":null,"ignore_cache":false}'), +(26856, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:39.153+00', '{"cached":null,"ignore_cache":false}'), +(26857, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:40.203+00', '{"cached":null,"ignore_cache":false}'), +(26858, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:40.636+00', '{"cached":null,"ignore_cache":false}'), +(26859, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.19+00', '{"cached":null,"ignore_cache":false}'), +(26860, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.255+00', '{"cached":null,"ignore_cache":false}'), +(26861, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.292+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26862, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.321+00', '{"cached":null,"ignore_cache":false}'), +(26863, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.324+00', '{"cached":null,"ignore_cache":false}'), +(26864, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.393+00', '{"cached":null,"ignore_cache":false}'), +(26865, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.404+00', '{"cached":null,"ignore_cache":false}'), +(26866, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.413+00', '{"cached":null,"ignore_cache":false}'), +(26867, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:56.49+00', '{"cached":null,"ignore_cache":false}'), +(26868, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.258+00', '{"cached":null,"ignore_cache":false}'), +(26869, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.291+00', '{"cached":null,"ignore_cache":false}'), +(26870, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.311+00', '{"cached":null,"ignore_cache":false}'), +(26871, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.344+00', '{"cached":null,"ignore_cache":false}'), +(26872, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:58.38+00', '{"cached":null,"ignore_cache":false}'), +(26873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:59.376+00', '{"cached":null,"ignore_cache":false}'), +(26874, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:44:59.759+00', '{"cached":null,"ignore_cache":false}'), +(26875, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.279+00', '{"cached":null,"ignore_cache":false}'), +(26876, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.36+00', '{"cached":null,"ignore_cache":false}'), +(26877, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.446+00', '{"cached":null,"ignore_cache":false}'), +(26878, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.467+00', '{"cached":null,"ignore_cache":false}'), +(26879, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.612+00', '{"cached":null,"ignore_cache":false}'), +(26880, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.63+00', '{"cached":null,"ignore_cache":false}'), +(26881, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.669+00', '{"cached":null,"ignore_cache":false}'), +(26882, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.694+00', '{"cached":null,"ignore_cache":false}'), +(26883, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.723+00', '{"cached":null,"ignore_cache":false}'), +(26884, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.779+00', '{"cached":null,"ignore_cache":false}'), +(26885, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.796+00', '{"cached":null,"ignore_cache":false}'), +(26886, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.937+00', '{"cached":null,"ignore_cache":false}'), +(26887, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.959+00', '{"cached":null,"ignore_cache":false}'), +(26888, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:08.966+00', '{"cached":null,"ignore_cache":false}'), +(26889, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:09.527+00', '{"cached":null,"ignore_cache":false}'), +(26890, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:09.749+00', '{"cached":null,"ignore_cache":false}'), +(26891, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.166+00', '{"cached":null,"ignore_cache":false}'), +(26892, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.378+00', '{"cached":null,"ignore_cache":false}'), +(26893, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.417+00', '{"cached":null,"ignore_cache":false}'), +(26894, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.419+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26895, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:28.431+00', '{"cached":null,"ignore_cache":false}'), +(26896, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:29.704+00', '{"cached":null,"ignore_cache":false}'), +(26897, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:29.768+00', '{"cached":null,"ignore_cache":false}'), +(26898, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.307+00', '{"cached":null,"ignore_cache":false}'), +(26899, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.401+00', '{"cached":null,"ignore_cache":false}'), +(26900, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.402+00', '{"cached":null,"ignore_cache":false}'), +(26901, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.418+00', '{"cached":null,"ignore_cache":false}'), +(26902, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.424+00', '{"cached":null,"ignore_cache":false}'), +(26903, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.458+00', '{"cached":null,"ignore_cache":false}'), +(26904, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.502+00', '{"cached":null,"ignore_cache":false}'), +(26905, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.506+00', '{"cached":null,"ignore_cache":false}'), +(26906, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:32.507+00', '{"cached":null,"ignore_cache":false}'), +(26907, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.261+00', '{"cached":null,"ignore_cache":false}'), +(26908, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.306+00', '{"cached":null,"ignore_cache":false}'), +(26909, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.416+00', '{"cached":null,"ignore_cache":false}'), +(26910, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.417+00', '{"cached":null,"ignore_cache":false}'), +(26911, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.418+00', '{"cached":null,"ignore_cache":false}'), +(26912, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.44+00', '{"cached":null,"ignore_cache":false}'), +(26913, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.452+00', '{"cached":null,"ignore_cache":false}'), +(26914, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.47+00', '{"cached":null,"ignore_cache":false}'), +(26915, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.5+00', '{"cached":null,"ignore_cache":false}'), +(26916, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.502+00', '{"cached":null,"ignore_cache":false}'), +(26917, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.523+00', '{"cached":null,"ignore_cache":false}'), +(26918, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.546+00', '{"cached":null,"ignore_cache":false}'), +(26919, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.567+00', '{"cached":null,"ignore_cache":false}'), +(26920, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:38.579+00', '{"cached":null,"ignore_cache":false}'), +(26921, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:39.492+00', '{"cached":null,"ignore_cache":false}'), +(26922, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:39.561+00', '{"cached":null,"ignore_cache":false}'), +(26923, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.535+00', '{"cached":null,"ignore_cache":false}'), +(26924, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.557+00', '{"cached":null,"ignore_cache":false}'), +(26925, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.576+00', '{"cached":null,"ignore_cache":false}'), +(26926, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.583+00', '{"cached":null,"ignore_cache":false}'), +(26927, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:57.591+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26928, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:58.805+00', '{"cached":null,"ignore_cache":false}'), +(26929, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:45:58.925+00', '{"cached":null,"ignore_cache":false}'), +(26930, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.759+00', '{"cached":null,"ignore_cache":false}'), +(26931, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.793+00', '{"cached":null,"ignore_cache":false}'), +(26932, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.829+00', '{"cached":null,"ignore_cache":false}'), +(26933, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.859+00', '{"cached":null,"ignore_cache":false}'), +(26934, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.889+00', '{"cached":null,"ignore_cache":false}'), +(26935, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.902+00', '{"cached":null,"ignore_cache":false}'), +(26936, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.907+00', '{"cached":null,"ignore_cache":false}'), +(26937, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.975+00', '{"cached":null,"ignore_cache":false}'), +(26938, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:03.976+00', '{"cached":null,"ignore_cache":false}'), +(26939, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.897+00', '{"cached":null,"ignore_cache":false}'), +(26940, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:07.948+00', '{"cached":null,"ignore_cache":false}'), +(26941, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.047+00', '{"cached":null,"ignore_cache":false}'), +(26942, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.093+00', '{"cached":null,"ignore_cache":false}'), +(26943, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.11+00', '{"cached":null,"ignore_cache":false}'), +(26944, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.149+00', '{"cached":null,"ignore_cache":false}'), +(26945, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.15+00', '{"cached":null,"ignore_cache":false}'), +(26946, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.158+00', '{"cached":null,"ignore_cache":false}'), +(26947, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.172+00', '{"cached":null,"ignore_cache":false}'), +(26948, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.182+00', '{"cached":null,"ignore_cache":false}'), +(26949, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.222+00', '{"cached":null,"ignore_cache":false}'), +(26950, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.232+00', '{"cached":null,"ignore_cache":false}'), +(26951, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.234+00', '{"cached":null,"ignore_cache":false}'), +(26952, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.236+00', '{"cached":null,"ignore_cache":false}'), +(26953, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.708+00', '{"cached":null,"ignore_cache":false}'), +(26954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:08.843+00', '{"cached":null,"ignore_cache":false}'), +(26955, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:27.96+00', '{"cached":null,"ignore_cache":false}'), +(26956, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:28+00', '{"cached":null,"ignore_cache":false}'), +(26957, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:28.071+00', '{"cached":null,"ignore_cache":false}'), +(26958, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:28.084+00', '{"cached":null,"ignore_cache":false}'), +(26959, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:28.09+00', '{"cached":null,"ignore_cache":false}'), +(26960, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:29.707+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26961, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:29.869+00', '{"cached":null,"ignore_cache":false}'), +(26962, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:32.874+00', '{"cached":null,"ignore_cache":false}'), +(26963, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.07+00', '{"cached":null,"ignore_cache":false}'), +(26964, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.08+00', '{"cached":null,"ignore_cache":false}'), +(26965, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.104+00', '{"cached":null,"ignore_cache":false}'), +(26966, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.127+00', '{"cached":null,"ignore_cache":false}'), +(26967, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.197+00', '{"cached":null,"ignore_cache":false}'), +(26968, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.252+00', '{"cached":null,"ignore_cache":false}'), +(26969, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.298+00', '{"cached":null,"ignore_cache":false}'), +(26970, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:33.311+00', '{"cached":null,"ignore_cache":false}'), +(26971, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.541+00', '{"cached":null,"ignore_cache":false}'), +(26972, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.56+00', '{"cached":null,"ignore_cache":false}'), +(26973, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.783+00', '{"cached":null,"ignore_cache":false}'), +(26974, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.792+00', '{"cached":null,"ignore_cache":false}'), +(26975, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.839+00', '{"cached":null,"ignore_cache":false}'), +(26976, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.869+00', '{"cached":null,"ignore_cache":false}'), +(26977, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.903+00', '{"cached":null,"ignore_cache":false}'), +(26978, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.919+00', '{"cached":null,"ignore_cache":false}'), +(26979, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.927+00', '{"cached":null,"ignore_cache":false}'), +(26980, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.928+00', '{"cached":null,"ignore_cache":false}'), +(26981, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.944+00', '{"cached":null,"ignore_cache":false}'), +(26982, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.963+00', '{"cached":null,"ignore_cache":false}'), +(26983, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.972+00', '{"cached":null,"ignore_cache":false}'), +(26984, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:38.981+00', '{"cached":null,"ignore_cache":false}'), +(26985, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:39.709+00', '{"cached":null,"ignore_cache":false}'), +(26986, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:39.875+00', '{"cached":null,"ignore_cache":false}'), +(26987, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:57.991+00', '{"cached":null,"ignore_cache":false}'), +(26988, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:58.043+00', '{"cached":null,"ignore_cache":false}'), +(26989, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:58.054+00', '{"cached":null,"ignore_cache":false}'), +(26990, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:58.151+00', '{"cached":null,"ignore_cache":false}'), +(26991, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:58.169+00', '{"cached":null,"ignore_cache":false}'), +(26992, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:59.637+00', '{"cached":null,"ignore_cache":false}'), +(26993, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:46:59.649+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(26994, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.303+00', '{"cached":null,"ignore_cache":false}'), +(26995, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.382+00', '{"cached":null,"ignore_cache":false}'), +(26996, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.387+00', '{"cached":null,"ignore_cache":false}'), +(26997, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.439+00', '{"cached":null,"ignore_cache":false}'), +(26998, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.44+00', '{"cached":null,"ignore_cache":false}'), +(26999, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.441+00', '{"cached":null,"ignore_cache":false}'), +(27000, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.443+00', '{"cached":null,"ignore_cache":false}'), +(27001, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.456+00', '{"cached":null,"ignore_cache":false}'), +(27002, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:02.466+00', '{"cached":null,"ignore_cache":false}'), +(27003, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:28.021+00', '{"cached":null,"ignore_cache":false}'), +(27004, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:28.044+00', '{"cached":null,"ignore_cache":false}'), +(27005, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:28.085+00', '{"cached":null,"ignore_cache":false}'), +(27006, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:28.139+00', '{"cached":null,"ignore_cache":false}'), +(27007, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:28.168+00', '{"cached":null,"ignore_cache":false}'), +(27008, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:29.703+00', '{"cached":null,"ignore_cache":false}'), +(27009, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:30.044+00', '{"cached":null,"ignore_cache":false}'), +(27010, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.249+00', '{"cached":null,"ignore_cache":false}'), +(27011, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.25+00', '{"cached":null,"ignore_cache":false}'), +(27012, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.276+00', '{"cached":null,"ignore_cache":false}'), +(27013, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.32+00', '{"cached":null,"ignore_cache":false}'), +(27014, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.357+00', '{"cached":null,"ignore_cache":false}'), +(27015, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.359+00', '{"cached":null,"ignore_cache":false}'), +(27016, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.388+00', '{"cached":null,"ignore_cache":false}'), +(27017, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.388+00', '{"cached":null,"ignore_cache":false}'), +(27018, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:33.432+00', '{"cached":null,"ignore_cache":false}'), +(27019, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.06+00', '{"cached":null,"ignore_cache":false}'), +(27020, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.106+00', '{"cached":null,"ignore_cache":false}'), +(27021, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.139+00', '{"cached":null,"ignore_cache":false}'), +(27022, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.148+00', '{"cached":null,"ignore_cache":false}'), +(27023, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:58.151+00', '{"cached":null,"ignore_cache":false}'), +(27024, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:59.063+00', '{"cached":null,"ignore_cache":false}'), +(27025, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:47:59.064+00', '{"cached":null,"ignore_cache":false}'), +(27026, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.082+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27027, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.188+00', '{"cached":null,"ignore_cache":false}'), +(27028, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.191+00', '{"cached":null,"ignore_cache":false}'), +(27029, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.272+00', '{"cached":null,"ignore_cache":false}'), +(27030, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.316+00', '{"cached":null,"ignore_cache":false}'), +(27031, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.342+00', '{"cached":null,"ignore_cache":false}'), +(27032, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.35+00', '{"cached":null,"ignore_cache":false}'), +(27033, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.432+00', '{"cached":null,"ignore_cache":false}'), +(27034, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:03.472+00', '{"cached":null,"ignore_cache":false}'), +(27035, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.78+00', '{"cached":null,"ignore_cache":false}'), +(27036, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.861+00', '{"cached":null,"ignore_cache":false}'), +(27037, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:27.988+00', '{"cached":null,"ignore_cache":false}'), +(27038, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:28.029+00', '{"cached":null,"ignore_cache":false}'), +(27039, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:28.044+00', '{"cached":null,"ignore_cache":false}'), +(27040, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:29.174+00', '{"cached":null,"ignore_cache":false}'), +(27041, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:29.247+00', '{"cached":null,"ignore_cache":false}'), +(27042, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.627+00', '{"cached":null,"ignore_cache":false}'), +(27043, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.659+00', '{"cached":null,"ignore_cache":false}'), +(27044, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.706+00', '{"cached":null,"ignore_cache":false}'), +(27045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.772+00', '{"cached":null,"ignore_cache":false}'), +(27046, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.827+00', '{"cached":null,"ignore_cache":false}'), +(27047, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.86+00', '{"cached":null,"ignore_cache":false}'), +(27048, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.865+00', '{"cached":null,"ignore_cache":false}'), +(27049, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.874+00', '{"cached":null,"ignore_cache":false}'), +(27050, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:32.973+00', '{"cached":null,"ignore_cache":false}'), +(27051, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.877+00', '{"cached":null,"ignore_cache":false}'), +(27052, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.882+00', '{"cached":null,"ignore_cache":false}'), +(27053, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.892+00', '{"cached":null,"ignore_cache":false}'), +(27054, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.935+00', '{"cached":null,"ignore_cache":false}'), +(27055, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:57.937+00', '{"cached":null,"ignore_cache":false}'), +(27056, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:58.511+00', '{"cached":null,"ignore_cache":false}'), +(27057, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:48:58.791+00', '{"cached":null,"ignore_cache":false}'), +(27058, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.384+00', '{"cached":null,"ignore_cache":false}'), +(27059, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.498+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27060, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.508+00', '{"cached":null,"ignore_cache":false}'), +(27061, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.56+00', '{"cached":null,"ignore_cache":false}'), +(27062, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.651+00', '{"cached":null,"ignore_cache":false}'), +(27063, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.674+00', '{"cached":null,"ignore_cache":false}'), +(27064, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.693+00', '{"cached":null,"ignore_cache":false}'), +(27065, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.694+00', '{"cached":null,"ignore_cache":false}'), +(27066, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:02.718+00', '{"cached":null,"ignore_cache":false}'), +(27067, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.604+00', '{"cached":null,"ignore_cache":false}'), +(27068, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.684+00', '{"cached":null,"ignore_cache":false}'), +(27069, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.705+00', '{"cached":null,"ignore_cache":false}'), +(27070, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.707+00', '{"cached":null,"ignore_cache":false}'), +(27071, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:27.733+00', '{"cached":null,"ignore_cache":false}'), +(27072, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:28.858+00', '{"cached":null,"ignore_cache":false}'), +(27073, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:28.983+00', '{"cached":null,"ignore_cache":false}'), +(27074, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.36+00', '{"cached":null,"ignore_cache":false}'), +(27075, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.378+00', '{"cached":null,"ignore_cache":false}'), +(27076, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.385+00', '{"cached":null,"ignore_cache":false}'), +(27077, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.395+00', '{"cached":null,"ignore_cache":false}'), +(27078, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.439+00', '{"cached":null,"ignore_cache":false}'), +(27079, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.446+00', '{"cached":null,"ignore_cache":false}'), +(27080, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.45+00', '{"cached":null,"ignore_cache":false}'), +(27081, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.459+00', '{"cached":null,"ignore_cache":false}'), +(27082, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:32.469+00', '{"cached":null,"ignore_cache":false}'), +(27083, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.644+00', '{"cached":null,"ignore_cache":false}'), +(27084, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.658+00', '{"cached":null,"ignore_cache":false}'), +(27085, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.662+00', '{"cached":null,"ignore_cache":false}'), +(27086, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.666+00', '{"cached":null,"ignore_cache":false}'), +(27087, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:57.713+00', '{"cached":null,"ignore_cache":false}'), +(27088, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:58.377+00', '{"cached":null,"ignore_cache":false}'), +(27089, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:49:58.405+00', '{"cached":null,"ignore_cache":false}'), +(27090, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.167+00', '{"cached":null,"ignore_cache":false}'), +(27091, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.185+00', '{"cached":null,"ignore_cache":false}'), +(27092, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.26+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27093, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.491+00', '{"cached":null,"ignore_cache":false}'), +(27094, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.502+00', '{"cached":null,"ignore_cache":false}'), +(27095, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.532+00', '{"cached":null,"ignore_cache":false}'), +(27096, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.548+00', '{"cached":null,"ignore_cache":false}'), +(27097, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.604+00', '{"cached":null,"ignore_cache":false}'), +(27098, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:03.701+00', '{"cached":null,"ignore_cache":false}'), +(27099, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.061+00', '{"cached":null,"ignore_cache":false}'), +(27100, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.076+00', '{"cached":null,"ignore_cache":false}'), +(27101, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.088+00', '{"cached":null,"ignore_cache":false}'), +(27102, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.101+00', '{"cached":null,"ignore_cache":false}'), +(27103, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.12+00', '{"cached":null,"ignore_cache":false}'), +(27104, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.759+00', '{"cached":null,"ignore_cache":false}'), +(27105, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:28.838+00', '{"cached":null,"ignore_cache":false}'), +(27106, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.139+00', '{"cached":null,"ignore_cache":false}'), +(27107, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.148+00', '{"cached":null,"ignore_cache":false}'), +(27108, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.179+00', '{"cached":null,"ignore_cache":false}'), +(27109, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.186+00', '{"cached":null,"ignore_cache":false}'), +(27110, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.248+00', '{"cached":null,"ignore_cache":false}'), +(27111, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.261+00', '{"cached":null,"ignore_cache":false}'), +(27112, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.285+00', '{"cached":null,"ignore_cache":false}'), +(27113, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.305+00', '{"cached":null,"ignore_cache":false}'), +(27114, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:34.319+00', '{"cached":null,"ignore_cache":false}'), +(27115, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.183+00', '{"cached":null,"ignore_cache":false}'), +(27116, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.316+00', '{"cached":null,"ignore_cache":false}'), +(27117, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.522+00', '{"cached":null,"ignore_cache":false}'), +(27118, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.527+00', '{"cached":null,"ignore_cache":false}'), +(27119, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:50:58.628+00', '{"cached":null,"ignore_cache":false}'), +(27120, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:00.231+00', '{"cached":null,"ignore_cache":false}'), +(27121, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:00.402+00', '{"cached":null,"ignore_cache":false}'), +(27122, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.16+00', '{"cached":null,"ignore_cache":false}'), +(27123, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.254+00', '{"cached":null,"ignore_cache":false}'), +(27124, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.315+00', '{"cached":null,"ignore_cache":false}'), +(27125, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.342+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27126, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.381+00', '{"cached":null,"ignore_cache":false}'), +(27127, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.392+00', '{"cached":null,"ignore_cache":false}'), +(27128, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.422+00', '{"cached":null,"ignore_cache":false}'), +(27129, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.47+00', '{"cached":null,"ignore_cache":false}'), +(27130, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:06.499+00', '{"cached":null,"ignore_cache":false}'), +(27131, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.489+00', '{"cached":null,"ignore_cache":false}'), +(27132, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.576+00', '{"cached":null,"ignore_cache":false}'), +(27133, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.595+00', '{"cached":null,"ignore_cache":false}'), +(27134, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.601+00', '{"cached":null,"ignore_cache":false}'), +(27135, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.621+00', '{"cached":null,"ignore_cache":false}'), +(27136, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.829+00', '{"cached":null,"ignore_cache":false}'), +(27137, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.838+00', '{"cached":null,"ignore_cache":false}'), +(27138, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.874+00', '{"cached":null,"ignore_cache":false}'), +(27139, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.912+00', '{"cached":null,"ignore_cache":false}'), +(27140, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.923+00', '{"cached":null,"ignore_cache":false}'), +(27141, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.94+00', '{"cached":null,"ignore_cache":false}'), +(27142, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.976+00', '{"cached":null,"ignore_cache":false}'), +(27143, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:23.993+00', '{"cached":null,"ignore_cache":false}'), +(27144, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:24.046+00', '{"cached":null,"ignore_cache":false}'), +(27145, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:24.953+00', '{"cached":null,"ignore_cache":false}'), +(27146, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:24.971+00', '{"cached":null,"ignore_cache":false}'), +(27147, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.538+00', '{"cached":null,"ignore_cache":false}'), +(27148, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.636+00', '{"cached":null,"ignore_cache":false}'), +(27149, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.647+00', '{"cached":null,"ignore_cache":false}'), +(27150, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.696+00', '{"cached":null,"ignore_cache":false}'), +(27151, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:28.706+00', '{"cached":null,"ignore_cache":false}'), +(27152, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:29.638+00', '{"cached":null,"ignore_cache":false}'), +(27153, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:29.644+00', '{"cached":null,"ignore_cache":false}'), +(27154, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.252+00', '{"cached":null,"ignore_cache":false}'), +(27155, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.301+00', '{"cached":null,"ignore_cache":false}'), +(27156, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.393+00', '{"cached":null,"ignore_cache":false}'), +(27157, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.409+00', '{"cached":null,"ignore_cache":false}'), +(27158, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.417+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27159, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.418+00', '{"cached":null,"ignore_cache":false}'), +(27160, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.429+00', '{"cached":null,"ignore_cache":false}'), +(27161, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.44+00', '{"cached":null,"ignore_cache":false}'), +(27162, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:37.462+00', '{"cached":null,"ignore_cache":false}'), +(27163, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.219+00', '{"cached":null,"ignore_cache":false}'), +(27164, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.259+00', '{"cached":null,"ignore_cache":false}'), +(27165, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.298+00', '{"cached":null,"ignore_cache":false}'), +(27166, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.299+00', '{"cached":null,"ignore_cache":false}'), +(27167, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.313+00', '{"cached":null,"ignore_cache":false}'), +(27168, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:58.885+00', '{"cached":null,"ignore_cache":false}'), +(27169, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:51:59.189+00', '{"cached":null,"ignore_cache":false}'), +(27170, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.495+00', '{"cached":null,"ignore_cache":false}'), +(27171, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.538+00', '{"cached":null,"ignore_cache":false}'), +(27172, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.589+00', '{"cached":null,"ignore_cache":false}'), +(27173, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.602+00', '{"cached":null,"ignore_cache":false}'), +(27174, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.63+00', '{"cached":null,"ignore_cache":false}'), +(27175, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.651+00', '{"cached":null,"ignore_cache":false}'), +(27176, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.665+00', '{"cached":null,"ignore_cache":false}'), +(27177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.67+00', '{"cached":null,"ignore_cache":false}'), +(27178, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:07.677+00', '{"cached":null,"ignore_cache":false}'), +(27179, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.641+00', '{"cached":null,"ignore_cache":false}'), +(27180, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.751+00', '{"cached":null,"ignore_cache":false}'), +(27181, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.825+00', '{"cached":null,"ignore_cache":false}'), +(27182, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.889+00', '{"cached":null,"ignore_cache":false}'), +(27183, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:27.891+00', '{"cached":null,"ignore_cache":false}'), +(27184, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:28.973+00', '{"cached":null,"ignore_cache":false}'), +(27185, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:29.146+00', '{"cached":null,"ignore_cache":false}'), +(27186, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.569+00', '{"cached":null,"ignore_cache":false}'), +(27187, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.764+00', '{"cached":null,"ignore_cache":false}'), +(27188, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.836+00', '{"cached":null,"ignore_cache":false}'), +(27189, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.905+00', '{"cached":null,"ignore_cache":false}'), +(27190, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.913+00', '{"cached":null,"ignore_cache":false}'), +(27191, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.942+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27192, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.977+00', '{"cached":null,"ignore_cache":false}'), +(27193, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:38.981+00', '{"cached":null,"ignore_cache":false}'), +(27194, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:39.032+00', '{"cached":null,"ignore_cache":false}'), +(27195, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.783+00', '{"cached":null,"ignore_cache":false}'), +(27196, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.906+00', '{"cached":null,"ignore_cache":false}'), +(27197, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.929+00', '{"cached":null,"ignore_cache":false}'), +(27198, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:57.983+00', '{"cached":null,"ignore_cache":false}'), +(27199, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:58.013+00', '{"cached":null,"ignore_cache":false}'), +(27200, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:59.277+00', '{"cached":null,"ignore_cache":false}'), +(27201, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:52:59.322+00', '{"cached":null,"ignore_cache":false}'), +(27202, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.446+00', '{"cached":null,"ignore_cache":false}'), +(27203, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.482+00', '{"cached":null,"ignore_cache":false}'), +(27204, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.56+00', '{"cached":null,"ignore_cache":false}'), +(27205, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.587+00', '{"cached":null,"ignore_cache":false}'), +(27206, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.62+00', '{"cached":null,"ignore_cache":false}'), +(27207, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.706+00', '{"cached":null,"ignore_cache":false}'), +(27208, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.712+00', '{"cached":null,"ignore_cache":false}'), +(27209, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.747+00', '{"cached":null,"ignore_cache":false}'), +(27210, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:07.762+00', '{"cached":null,"ignore_cache":false}'), +(27211, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.226+00', '{"cached":null,"ignore_cache":false}'), +(27212, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.589+00', '{"cached":null,"ignore_cache":false}'), +(27213, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.601+00', '{"cached":null,"ignore_cache":false}'), +(27214, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.663+00', '{"cached":null,"ignore_cache":false}'), +(27215, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.665+00', '{"cached":null,"ignore_cache":false}'), +(27216, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.79+00', '{"cached":null,"ignore_cache":false}'), +(27217, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.866+00', '{"cached":null,"ignore_cache":false}'), +(27218, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:21.929+00', '{"cached":null,"ignore_cache":false}'), +(27219, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.038+00', '{"cached":null,"ignore_cache":false}'), +(27220, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.05+00', '{"cached":null,"ignore_cache":false}'), +(27221, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.059+00', '{"cached":null,"ignore_cache":false}'), +(27222, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.105+00', '{"cached":null,"ignore_cache":false}'), +(27223, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.184+00', '{"cached":null,"ignore_cache":false}'), +(27224, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.233+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27225, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.413+00', '{"cached":null,"ignore_cache":false}'), +(27226, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.421+00', '{"cached":null,"ignore_cache":false}'), +(27227, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.595+00', '{"cached":null,"ignore_cache":false}'), +(27228, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.681+00', '{"cached":null,"ignore_cache":false}'), +(27229, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:22.996+00', '{"cached":null,"ignore_cache":false}'), +(27230, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:23.195+00', '{"cached":null,"ignore_cache":false}'), +(27231, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:23.726+00', '{"cached":null,"ignore_cache":false}'), +(27232, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:24.132+00', '{"cached":null,"ignore_cache":false}'), +(27233, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.858+00', '{"cached":null,"ignore_cache":false}'), +(27234, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:27.912+00', '{"cached":null,"ignore_cache":false}'), +(27235, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:28.007+00', '{"cached":null,"ignore_cache":false}'), +(27236, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:28.069+00', '{"cached":null,"ignore_cache":false}'), +(27237, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:28.135+00', '{"cached":null,"ignore_cache":false}'), +(27238, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:29.362+00', '{"cached":null,"ignore_cache":false}'), +(27239, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:29.377+00', '{"cached":null,"ignore_cache":false}'), +(27240, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.43+00', '{"cached":null,"ignore_cache":false}'), +(27241, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.458+00', '{"cached":null,"ignore_cache":false}'), +(27242, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.472+00', '{"cached":null,"ignore_cache":false}'), +(27243, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.495+00', '{"cached":null,"ignore_cache":false}'), +(27244, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.513+00', '{"cached":null,"ignore_cache":false}'), +(27245, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.515+00', '{"cached":null,"ignore_cache":false}'), +(27246, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.527+00', '{"cached":null,"ignore_cache":false}'), +(27247, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.575+00', '{"cached":null,"ignore_cache":false}'), +(27248, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:37.604+00', '{"cached":null,"ignore_cache":false}'), +(27249, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:58.021+00', '{"cached":null,"ignore_cache":false}'), +(27250, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:58.059+00', '{"cached":null,"ignore_cache":false}'), +(27251, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:58.084+00', '{"cached":null,"ignore_cache":false}'), +(27252, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:58.094+00', '{"cached":null,"ignore_cache":false}'), +(27253, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:58.116+00', '{"cached":null,"ignore_cache":false}'), +(27254, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:58.776+00', '{"cached":null,"ignore_cache":false}'), +(27255, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:58.78+00', '{"cached":null,"ignore_cache":false}'), +(27256, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.667+00', '{"cached":null,"ignore_cache":false}'), +(27257, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.678+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27258, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.74+00', '{"cached":null,"ignore_cache":false}'), +(27259, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.792+00', '{"cached":null,"ignore_cache":false}'), +(27260, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:53:59.826+00', '{"cached":null,"ignore_cache":false}'), +(27261, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:00.406+00', '{"cached":null,"ignore_cache":false}'), +(27262, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.111+00', '{"cached":null,"ignore_cache":false}'), +(27263, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.18+00', '{"cached":null,"ignore_cache":false}'), +(27264, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.245+00', '{"cached":null,"ignore_cache":false}'), +(27265, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.262+00', '{"cached":null,"ignore_cache":false}'), +(27266, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.286+00', '{"cached":null,"ignore_cache":false}'), +(27267, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.349+00', '{"cached":null,"ignore_cache":false}'), +(27268, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.374+00', '{"cached":null,"ignore_cache":false}'), +(27269, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.493+00', '{"cached":null,"ignore_cache":false}'), +(27270, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:01.894+00', '{"cached":null,"ignore_cache":false}'), +(27271, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:02.007+00', '{"cached":null,"ignore_cache":false}'), +(27272, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.046+00', '{"cached":null,"ignore_cache":false}'), +(27273, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.241+00', '{"cached":null,"ignore_cache":false}'), +(27274, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.303+00', '{"cached":null,"ignore_cache":false}'), +(27275, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.323+00', '{"cached":null,"ignore_cache":false}'), +(27276, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.334+00', '{"cached":null,"ignore_cache":false}'), +(27277, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.35+00', '{"cached":null,"ignore_cache":false}'), +(27278, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.354+00', '{"cached":null,"ignore_cache":false}'), +(27279, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.378+00', '{"cached":null,"ignore_cache":false}'), +(27280, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:08.387+00', '{"cached":null,"ignore_cache":false}'), +(27281, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.825+00', '{"cached":null,"ignore_cache":false}'), +(27282, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:21.994+00', '{"cached":null,"ignore_cache":false}'), +(27283, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.108+00', '{"cached":null,"ignore_cache":false}'), +(27284, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.15+00', '{"cached":null,"ignore_cache":false}'), +(27285, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.248+00', '{"cached":null,"ignore_cache":false}'), +(27286, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.427+00', '{"cached":null,"ignore_cache":false}'), +(27287, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.53+00', '{"cached":null,"ignore_cache":false}'), +(27288, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.564+00', '{"cached":null,"ignore_cache":false}'), +(27289, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.569+00', '{"cached":null,"ignore_cache":false}'), +(27290, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.599+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.615+00', '{"cached":null,"ignore_cache":false}'), +(27292, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.774+00', '{"cached":null,"ignore_cache":false}'), +(27293, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.78+00', '{"cached":null,"ignore_cache":false}'), +(27294, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:22.781+00', '{"cached":null,"ignore_cache":false}'), +(27295, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:23.785+00', '{"cached":null,"ignore_cache":false}'), +(27296, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:23.855+00', '{"cached":null,"ignore_cache":false}'), +(27297, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.117+00', '{"cached":null,"ignore_cache":false}'), +(27298, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.122+00', '{"cached":null,"ignore_cache":false}'), +(27299, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.127+00', '{"cached":null,"ignore_cache":false}'), +(27300, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.148+00', '{"cached":null,"ignore_cache":false}'), +(27301, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:28.189+00', '{"cached":null,"ignore_cache":false}'), +(27302, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:29.162+00', '{"cached":null,"ignore_cache":false}'), +(27303, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:29.247+00', '{"cached":null,"ignore_cache":false}'), +(27304, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.388+00', '{"cached":null,"ignore_cache":false}'), +(27305, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.418+00', '{"cached":null,"ignore_cache":false}'), +(27306, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.453+00', '{"cached":null,"ignore_cache":false}'), +(27307, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.469+00', '{"cached":null,"ignore_cache":false}'), +(27308, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.524+00', '{"cached":null,"ignore_cache":false}'), +(27309, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.541+00', '{"cached":null,"ignore_cache":false}'), +(27310, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.542+00', '{"cached":null,"ignore_cache":false}'), +(27311, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.547+00', '{"cached":null,"ignore_cache":false}'), +(27312, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:38.571+00', '{"cached":null,"ignore_cache":false}'), +(27313, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.571+00', '{"cached":null,"ignore_cache":false}'), +(27314, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.593+00', '{"cached":null,"ignore_cache":false}'), +(27315, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.605+00', '{"cached":null,"ignore_cache":false}'), +(27316, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.641+00', '{"cached":null,"ignore_cache":false}'), +(27317, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.683+00', '{"cached":null,"ignore_cache":false}'), +(27318, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.895+00', '{"cached":null,"ignore_cache":false}'), +(27319, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.903+00', '{"cached":null,"ignore_cache":false}'), +(27320, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.972+00', '{"cached":null,"ignore_cache":false}'), +(27321, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.976+00', '{"cached":null,"ignore_cache":false}'), +(27322, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:51.99+00', '{"cached":null,"ignore_cache":false}'), +(27323, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:52.036+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27324, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:52.04+00', '{"cached":null,"ignore_cache":false}'), +(27325, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:52.096+00', '{"cached":null,"ignore_cache":false}'), +(27326, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:52.108+00', '{"cached":null,"ignore_cache":false}'), +(27327, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:52.688+00', '{"cached":null,"ignore_cache":false}'), +(27328, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:54:52.774+00', '{"cached":null,"ignore_cache":false}'), +(27329, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:04.882+00', '{"cached":null,"ignore_cache":false}'), +(27330, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.607+00', '{"cached":null,"ignore_cache":false}'), +(27331, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.644+00', '{"cached":null,"ignore_cache":false}'), +(27332, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.646+00', '{"cached":null,"ignore_cache":false}'), +(27333, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:05.846+00', '{"cached":null,"ignore_cache":false}'), +(27334, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.019+00', '{"cached":null,"ignore_cache":false}'), +(27335, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.037+00', '{"cached":null,"ignore_cache":false}'), +(27336, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.106+00', '{"cached":null,"ignore_cache":false}'), +(27337, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.183+00', '{"cached":null,"ignore_cache":false}'), +(27338, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.198+00', '{"cached":null,"ignore_cache":false}'), +(27339, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.33+00', '{"cached":null,"ignore_cache":false}'), +(27340, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.344+00', '{"cached":null,"ignore_cache":false}'), +(27341, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.422+00', '{"cached":null,"ignore_cache":false}'), +(27342, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.429+00', '{"cached":null,"ignore_cache":false}'), +(27343, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.442+00', '{"cached":null,"ignore_cache":false}'), +(27344, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.473+00', '{"cached":null,"ignore_cache":false}'), +(27345, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.519+00', '{"cached":null,"ignore_cache":false}'), +(27346, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.893+00', '{"cached":null,"ignore_cache":false}'), +(27347, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:06.894+00', '{"cached":null,"ignore_cache":false}'), +(27348, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:07.047+00', '{"cached":null,"ignore_cache":false}'), +(27349, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:07.125+00', '{"cached":null,"ignore_cache":false}'), +(27350, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:07.236+00', '{"cached":null,"ignore_cache":false}'), +(27351, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:07.331+00', '{"cached":null,"ignore_cache":false}'), +(27352, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:07.423+00', '{"cached":null,"ignore_cache":false}'), +(27353, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:07.772+00', '{"cached":null,"ignore_cache":false}'), +(27354, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:08.01+00', '{"cached":null,"ignore_cache":false}'), +(27355, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:08.175+00', '{"cached":null,"ignore_cache":false}'), +(27356, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.098+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27357, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.295+00', '{"cached":null,"ignore_cache":false}'), +(27358, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.304+00', '{"cached":null,"ignore_cache":false}'), +(27359, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.349+00', '{"cached":null,"ignore_cache":false}'), +(27360, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.413+00', '{"cached":null,"ignore_cache":false}'), +(27361, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.436+00', '{"cached":null,"ignore_cache":false}'), +(27362, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.479+00', '{"cached":null,"ignore_cache":false}'), +(27363, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.58+00', '{"cached":null,"ignore_cache":false}'), +(27364, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.639+00', '{"cached":null,"ignore_cache":false}'), +(27365, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.651+00', '{"cached":null,"ignore_cache":false}'), +(27366, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.66+00', '{"cached":null,"ignore_cache":false}'), +(27367, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.672+00', '{"cached":null,"ignore_cache":false}'), +(27368, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.708+00', '{"cached":null,"ignore_cache":false}'), +(27369, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:23.746+00', '{"cached":null,"ignore_cache":false}'), +(27370, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:24.588+00', '{"cached":null,"ignore_cache":false}'), +(27371, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:24.657+00', '{"cached":null,"ignore_cache":false}'), +(27372, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.616+00', '{"cached":null,"ignore_cache":false}'), +(27373, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.621+00', '{"cached":null,"ignore_cache":false}'), +(27374, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.63+00', '{"cached":null,"ignore_cache":false}'), +(27375, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.689+00', '{"cached":null,"ignore_cache":false}'), +(27376, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.707+00', '{"cached":null,"ignore_cache":false}'), +(27377, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.726+00', '{"cached":null,"ignore_cache":false}'), +(27378, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.74+00', '{"cached":null,"ignore_cache":false}'), +(27379, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.743+00', '{"cached":null,"ignore_cache":false}'), +(27380, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.76+00', '{"cached":null,"ignore_cache":false}'), +(27381, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.776+00', '{"cached":null,"ignore_cache":false}'), +(27382, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.79+00', '{"cached":null,"ignore_cache":false}'), +(27383, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.795+00', '{"cached":null,"ignore_cache":false}'), +(27384, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.812+00', '{"cached":null,"ignore_cache":false}'), +(27385, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:34.82+00', '{"cached":null,"ignore_cache":false}'), +(27386, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:35.256+00', '{"cached":null,"ignore_cache":false}'), +(27387, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:55:35.325+00', '{"cached":null,"ignore_cache":false}'), +(27388, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.583+00', '{"cached":null,"ignore_cache":false}'), +(27389, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.688+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27390, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.701+00', '{"cached":null,"ignore_cache":false}'), +(27391, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.727+00', '{"cached":null,"ignore_cache":false}'), +(27392, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:03.731+00', '{"cached":null,"ignore_cache":false}'), +(27393, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.643+00', '{"cached":null,"ignore_cache":false}'), +(27394, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.788+00', '{"cached":null,"ignore_cache":false}'), +(27395, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.801+00', '{"cached":null,"ignore_cache":false}'), +(27396, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.858+00', '{"cached":null,"ignore_cache":false}'), +(27397, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.906+00', '{"cached":null,"ignore_cache":false}'), +(27398, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.909+00', '{"cached":null,"ignore_cache":false}'), +(27399, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.914+00', '{"cached":null,"ignore_cache":false}'), +(27400, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.921+00', '{"cached":null,"ignore_cache":false}'), +(27401, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.941+00', '{"cached":null,"ignore_cache":false}'), +(27402, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.946+00', '{"cached":null,"ignore_cache":false}'), +(27403, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:04.969+00', '{"cached":null,"ignore_cache":false}'), +(27404, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.927+00', '{"cached":null,"ignore_cache":false}'), +(27405, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:05.994+00', '{"cached":null,"ignore_cache":false}'), +(27406, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.025+00', '{"cached":null,"ignore_cache":false}'), +(27407, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.072+00', '{"cached":null,"ignore_cache":false}'), +(27408, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.103+00', '{"cached":null,"ignore_cache":false}'), +(27409, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.12+00', '{"cached":null,"ignore_cache":false}'), +(27410, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.157+00', '{"cached":null,"ignore_cache":false}'), +(27411, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.229+00', '{"cached":null,"ignore_cache":false}'), +(27412, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.341+00', '{"cached":null,"ignore_cache":false}'), +(27413, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.399+00', '{"cached":null,"ignore_cache":false}'), +(27414, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.457+00', '{"cached":null,"ignore_cache":false}'), +(27415, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.515+00', '{"cached":null,"ignore_cache":false}'), +(27416, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.548+00', '{"cached":null,"ignore_cache":false}'), +(27417, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:06.589+00', '{"cached":null,"ignore_cache":false}'), +(27418, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:07.516+00', '{"cached":null,"ignore_cache":false}'), +(27419, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:07.914+00', '{"cached":null,"ignore_cache":false}'), +(27420, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.984+00', '{"cached":null,"ignore_cache":false}'), +(27421, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:23.991+00', '{"cached":null,"ignore_cache":false}'), +(27422, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:24.025+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27423, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:24.037+00', '{"cached":null,"ignore_cache":false}'), +(27424, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:24.04+00', '{"cached":null,"ignore_cache":false}'), +(27425, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.048+00', '{"cached":null,"ignore_cache":false}'), +(27426, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.096+00', '{"cached":null,"ignore_cache":false}'), +(27427, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.798+00', '{"cached":null,"ignore_cache":false}'), +(27428, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.834+00', '{"cached":null,"ignore_cache":false}'), +(27429, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.86+00', '{"cached":null,"ignore_cache":false}'), +(27430, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.891+00', '{"cached":null,"ignore_cache":false}'), +(27431, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.931+00', '{"cached":null,"ignore_cache":false}'), +(27432, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.935+00', '{"cached":null,"ignore_cache":false}'), +(27433, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.943+00', '{"cached":null,"ignore_cache":false}'), +(27434, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.957+00', '{"cached":null,"ignore_cache":false}'), +(27435, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:25.972+00', '{"cached":null,"ignore_cache":false}'), +(27436, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.018+00', '{"cached":null,"ignore_cache":false}'), +(27437, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.082+00', '{"cached":null,"ignore_cache":false}'), +(27438, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.243+00', '{"cached":null,"ignore_cache":false}'), +(27439, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.325+00', '{"cached":null,"ignore_cache":false}'), +(27440, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.457+00', '{"cached":null,"ignore_cache":false}'), +(27441, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.506+00', '{"cached":null,"ignore_cache":false}'), +(27442, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.526+00', '{"cached":null,"ignore_cache":false}'), +(27443, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.54+00', '{"cached":null,"ignore_cache":false}'), +(27444, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.546+00', '{"cached":null,"ignore_cache":false}'), +(27445, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.619+00', '{"cached":null,"ignore_cache":false}'), +(27446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.622+00', '{"cached":null,"ignore_cache":false}'), +(27447, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.623+00', '{"cached":null,"ignore_cache":false}'), +(27448, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.644+00', '{"cached":null,"ignore_cache":false}'), +(27449, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:36.799+00', '{"cached":null,"ignore_cache":false}'), +(27450, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:37.513+00', '{"cached":null,"ignore_cache":false}'), +(27451, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:37.734+00', '{"cached":null,"ignore_cache":false}'), +(27452, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.189+00', '{"cached":null,"ignore_cache":false}'), +(27453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.352+00', '{"cached":null,"ignore_cache":false}'), +(27454, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.356+00', '{"cached":null,"ignore_cache":false}'), +(27455, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.357+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27456, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.373+00', '{"cached":null,"ignore_cache":false}'), +(27457, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.936+00', '{"cached":null,"ignore_cache":false}'), +(27458, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:54.949+00', '{"cached":null,"ignore_cache":false}'), +(27459, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.526+00', '{"cached":null,"ignore_cache":false}'), +(27460, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.582+00', '{"cached":null,"ignore_cache":false}'), +(27461, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.598+00', '{"cached":null,"ignore_cache":false}'), +(27462, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.637+00', '{"cached":null,"ignore_cache":false}'), +(27463, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.638+00', '{"cached":null,"ignore_cache":false}'), +(27464, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.643+00', '{"cached":null,"ignore_cache":false}'), +(27465, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.651+00', '{"cached":null,"ignore_cache":false}'), +(27466, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.667+00', '{"cached":null,"ignore_cache":false}'), +(27467, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:56:55.671+00', '{"cached":null,"ignore_cache":false}'), +(27468, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.226+00', '{"cached":null,"ignore_cache":false}'), +(27469, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.262+00', '{"cached":null,"ignore_cache":false}'), +(27470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.339+00', '{"cached":null,"ignore_cache":false}'), +(27471, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.387+00', '{"cached":null,"ignore_cache":false}'), +(27472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.429+00', '{"cached":null,"ignore_cache":false}'), +(27473, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.446+00', '{"cached":null,"ignore_cache":false}'), +(27474, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.479+00', '{"cached":null,"ignore_cache":false}'), +(27475, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.48+00', '{"cached":null,"ignore_cache":false}'), +(27476, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.487+00', '{"cached":null,"ignore_cache":false}'), +(27477, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.5+00', '{"cached":null,"ignore_cache":false}'), +(27478, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.518+00', '{"cached":null,"ignore_cache":false}'), +(27479, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.52+00', '{"cached":null,"ignore_cache":false}'), +(27480, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.54+00', '{"cached":null,"ignore_cache":false}'), +(27481, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:05.543+00', '{"cached":null,"ignore_cache":false}'), +(27482, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:06.027+00', '{"cached":null,"ignore_cache":false}'), +(27483, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:06.077+00', '{"cached":null,"ignore_cache":false}'), +(27484, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.588+00', '{"cached":null,"ignore_cache":false}'), +(27485, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.607+00', '{"cached":null,"ignore_cache":false}'), +(27486, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.615+00', '{"cached":null,"ignore_cache":false}'), +(27487, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.631+00', '{"cached":null,"ignore_cache":false}'), +(27488, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:23.641+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27489, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:24.273+00', '{"cached":null,"ignore_cache":false}'), +(27490, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:24.302+00', '{"cached":null,"ignore_cache":false}'), +(27491, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.544+00', '{"cached":null,"ignore_cache":false}'), +(27492, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.619+00', '{"cached":null,"ignore_cache":false}'), +(27493, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.626+00', '{"cached":null,"ignore_cache":false}'), +(27494, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.664+00', '{"cached":null,"ignore_cache":false}'), +(27495, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.674+00', '{"cached":null,"ignore_cache":false}'), +(27496, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.682+00', '{"cached":null,"ignore_cache":false}'), +(27497, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.699+00', '{"cached":null,"ignore_cache":false}'), +(27498, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.715+00', '{"cached":null,"ignore_cache":false}'), +(27499, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:25.772+00', '{"cached":null,"ignore_cache":false}'), +(27500, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.053+00', '{"cached":null,"ignore_cache":false}'), +(27501, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.069+00', '{"cached":null,"ignore_cache":false}'), +(27502, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.18+00', '{"cached":null,"ignore_cache":false}'), +(27503, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.227+00', '{"cached":null,"ignore_cache":false}'), +(27504, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.246+00', '{"cached":null,"ignore_cache":false}'), +(27505, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.418+00', '{"cached":null,"ignore_cache":false}'), +(27506, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.468+00', '{"cached":null,"ignore_cache":false}'), +(27507, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.526+00', '{"cached":null,"ignore_cache":false}'), +(27508, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.526+00', '{"cached":null,"ignore_cache":false}'), +(27509, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.608+00', '{"cached":null,"ignore_cache":false}'), +(27510, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.654+00', '{"cached":null,"ignore_cache":false}'), +(27511, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.693+00', '{"cached":null,"ignore_cache":false}'), +(27512, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.703+00', '{"cached":null,"ignore_cache":false}'), +(27513, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:35.762+00', '{"cached":null,"ignore_cache":false}'), +(27514, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:36.46+00', '{"cached":null,"ignore_cache":false}'), +(27515, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:36.461+00', '{"cached":null,"ignore_cache":false}'), +(27516, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.816+00', '{"cached":null,"ignore_cache":false}'), +(27517, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.836+00', '{"cached":null,"ignore_cache":false}'), +(27518, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.858+00', '{"cached":null,"ignore_cache":false}'), +(27519, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.868+00', '{"cached":null,"ignore_cache":false}'), +(27520, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:53.882+00', '{"cached":null,"ignore_cache":false}'), +(27521, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:54.722+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27522, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:54.93+00', '{"cached":null,"ignore_cache":false}'), +(27523, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.567+00', '{"cached":null,"ignore_cache":false}'), +(27524, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.91+00', '{"cached":null,"ignore_cache":false}'), +(27525, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.926+00', '{"cached":null,"ignore_cache":false}'), +(27526, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.927+00', '{"cached":null,"ignore_cache":false}'), +(27527, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.978+00', '{"cached":null,"ignore_cache":false}'), +(27528, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:55.994+00', '{"cached":null,"ignore_cache":false}'), +(27529, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:56.014+00', '{"cached":null,"ignore_cache":false}'), +(27530, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:56.014+00', '{"cached":null,"ignore_cache":false}'), +(27531, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:57:56.025+00', '{"cached":null,"ignore_cache":false}'), +(27532, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.298+00', '{"cached":null,"ignore_cache":false}'), +(27533, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.325+00', '{"cached":null,"ignore_cache":false}'), +(27534, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.393+00', '{"cached":null,"ignore_cache":false}'), +(27535, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.429+00', '{"cached":null,"ignore_cache":false}'), +(27536, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.437+00', '{"cached":null,"ignore_cache":false}'), +(27537, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.456+00', '{"cached":null,"ignore_cache":false}'), +(27538, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.541+00', '{"cached":null,"ignore_cache":false}'), +(27539, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.542+00', '{"cached":null,"ignore_cache":false}'), +(27540, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.562+00', '{"cached":null,"ignore_cache":false}'), +(27541, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.57+00', '{"cached":null,"ignore_cache":false}'), +(27542, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.606+00', '{"cached":null,"ignore_cache":false}'), +(27543, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.607+00', '{"cached":null,"ignore_cache":false}'), +(27544, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.631+00', '{"cached":null,"ignore_cache":false}'), +(27545, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:05.643+00', '{"cached":null,"ignore_cache":false}'), +(27546, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:06.555+00', '{"cached":null,"ignore_cache":false}'), +(27547, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:06.668+00', '{"cached":null,"ignore_cache":false}'), +(27548, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.832+00', '{"cached":null,"ignore_cache":false}'), +(27549, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:23.982+00', '{"cached":null,"ignore_cache":false}'), +(27550, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:24.053+00', '{"cached":null,"ignore_cache":false}'), +(27551, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:24.064+00', '{"cached":null,"ignore_cache":false}'), +(27552, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:24.068+00', '{"cached":null,"ignore_cache":false}'), +(27553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:24.884+00', '{"cached":null,"ignore_cache":false}'), +(27554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:24.936+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27555, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.634+00', '{"cached":null,"ignore_cache":false}'), +(27556, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.832+00', '{"cached":null,"ignore_cache":false}'), +(27557, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.864+00', '{"cached":null,"ignore_cache":false}'), +(27558, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:26.953+00', '{"cached":null,"ignore_cache":false}'), +(27559, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:27+00', '{"cached":null,"ignore_cache":false}'), +(27560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:27.01+00', '{"cached":null,"ignore_cache":false}'), +(27561, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:27.042+00', '{"cached":null,"ignore_cache":false}'), +(27562, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:27.082+00', '{"cached":null,"ignore_cache":false}'), +(27563, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:27.119+00', '{"cached":null,"ignore_cache":false}'), +(27564, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.283+00', '{"cached":null,"ignore_cache":false}'), +(27565, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.348+00', '{"cached":null,"ignore_cache":false}'), +(27566, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.376+00', '{"cached":null,"ignore_cache":false}'), +(27567, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.402+00', '{"cached":null,"ignore_cache":false}'), +(27568, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.449+00', '{"cached":null,"ignore_cache":false}'), +(27569, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.513+00', '{"cached":null,"ignore_cache":false}'), +(27570, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.544+00', '{"cached":null,"ignore_cache":false}'), +(27571, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.603+00', '{"cached":null,"ignore_cache":false}'), +(27572, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.623+00', '{"cached":null,"ignore_cache":false}'), +(27573, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.666+00', '{"cached":null,"ignore_cache":false}'), +(27574, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.67+00', '{"cached":null,"ignore_cache":false}'), +(27575, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.68+00', '{"cached":null,"ignore_cache":false}'), +(27576, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.686+00', '{"cached":null,"ignore_cache":false}'), +(27577, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:35.709+00', '{"cached":null,"ignore_cache":false}'), +(27578, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:36.506+00', '{"cached":null,"ignore_cache":false}'), +(27579, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:36.617+00', '{"cached":null,"ignore_cache":false}'), +(27580, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.716+00', '{"cached":null,"ignore_cache":false}'), +(27581, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.752+00', '{"cached":null,"ignore_cache":false}'), +(27582, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.767+00', '{"cached":null,"ignore_cache":false}'), +(27583, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.776+00', '{"cached":null,"ignore_cache":false}'), +(27584, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:53.817+00', '{"cached":null,"ignore_cache":false}'), +(27585, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:54.861+00', '{"cached":null,"ignore_cache":false}'), +(27586, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:54.974+00', '{"cached":null,"ignore_cache":false}'), +(27587, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.836+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27588, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:55.938+00', '{"cached":null,"ignore_cache":false}'), +(27589, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.041+00', '{"cached":null,"ignore_cache":false}'), +(27590, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.111+00', '{"cached":null,"ignore_cache":false}'), +(27591, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.172+00', '{"cached":null,"ignore_cache":false}'), +(27592, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.18+00', '{"cached":null,"ignore_cache":false}'), +(27593, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.212+00', '{"cached":null,"ignore_cache":false}'), +(27594, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.222+00', '{"cached":null,"ignore_cache":false}'), +(27595, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:58:56.252+00', '{"cached":null,"ignore_cache":false}'), +(27596, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.472+00', '{"cached":null,"ignore_cache":false}'), +(27597, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.479+00', '{"cached":null,"ignore_cache":false}'), +(27598, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.533+00', '{"cached":null,"ignore_cache":false}'), +(27599, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.551+00', '{"cached":null,"ignore_cache":false}'), +(27600, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.562+00', '{"cached":null,"ignore_cache":false}'), +(27601, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.582+00', '{"cached":null,"ignore_cache":false}'), +(27602, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.651+00', '{"cached":null,"ignore_cache":false}'), +(27603, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.699+00', '{"cached":null,"ignore_cache":false}'), +(27604, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.726+00', '{"cached":null,"ignore_cache":false}'), +(27605, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.796+00', '{"cached":null,"ignore_cache":false}'), +(27606, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.806+00', '{"cached":null,"ignore_cache":false}'), +(27607, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.828+00', '{"cached":null,"ignore_cache":false}'), +(27608, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.884+00', '{"cached":null,"ignore_cache":false}'), +(27609, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:05.922+00', '{"cached":null,"ignore_cache":false}'), +(27610, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:06.68+00', '{"cached":null,"ignore_cache":false}'), +(27611, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:06.78+00', '{"cached":null,"ignore_cache":false}'), +(27612, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.657+00', '{"cached":null,"ignore_cache":false}'), +(27613, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.69+00', '{"cached":null,"ignore_cache":false}'), +(27614, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.789+00', '{"cached":null,"ignore_cache":false}'), +(27615, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.806+00', '{"cached":null,"ignore_cache":false}'), +(27616, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:23.84+00', '{"cached":null,"ignore_cache":false}'), +(27617, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.153+00', '{"cached":null,"ignore_cache":false}'), +(27618, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.373+00', '{"cached":null,"ignore_cache":false}'), +(27619, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.518+00', '{"cached":null,"ignore_cache":false}'), +(27620, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.633+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27621, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.634+00', '{"cached":null,"ignore_cache":false}'), +(27622, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.638+00', '{"cached":null,"ignore_cache":false}'), +(27623, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.669+00', '{"cached":null,"ignore_cache":false}'), +(27624, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.685+00', '{"cached":null,"ignore_cache":false}'), +(27625, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.7+00', '{"cached":null,"ignore_cache":false}'), +(27626, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.737+00', '{"cached":null,"ignore_cache":false}'), +(27627, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:25.76+00', '{"cached":null,"ignore_cache":false}'), +(27628, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.077+00', '{"cached":null,"ignore_cache":false}'), +(27629, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.089+00', '{"cached":null,"ignore_cache":false}'), +(27630, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.181+00', '{"cached":null,"ignore_cache":false}'), +(27631, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.281+00', '{"cached":null,"ignore_cache":false}'), +(27632, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.354+00', '{"cached":null,"ignore_cache":false}'), +(27633, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.504+00', '{"cached":null,"ignore_cache":false}'), +(27634, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.541+00', '{"cached":null,"ignore_cache":false}'), +(27635, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.545+00', '{"cached":null,"ignore_cache":false}'), +(27636, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.568+00', '{"cached":null,"ignore_cache":false}'), +(27637, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.581+00', '{"cached":null,"ignore_cache":false}'), +(27638, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.651+00', '{"cached":null,"ignore_cache":false}'), +(27639, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.664+00', '{"cached":null,"ignore_cache":false}'), +(27640, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.668+00', '{"cached":null,"ignore_cache":false}'), +(27641, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:35.683+00', '{"cached":null,"ignore_cache":false}'), +(27642, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:36.127+00', '{"cached":null,"ignore_cache":false}'), +(27643, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:36.302+00', '{"cached":null,"ignore_cache":false}'), +(27644, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.719+00', '{"cached":null,"ignore_cache":false}'), +(27645, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.742+00', '{"cached":null,"ignore_cache":false}'), +(27646, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.754+00', '{"cached":null,"ignore_cache":false}'), +(27647, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.778+00', '{"cached":null,"ignore_cache":false}'), +(27648, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:53.783+00', '{"cached":null,"ignore_cache":false}'), +(27649, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:54.805+00', '{"cached":null,"ignore_cache":false}'), +(27650, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:54.846+00', '{"cached":null,"ignore_cache":false}'), +(27651, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.33+00', '{"cached":null,"ignore_cache":false}'), +(27652, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.353+00', '{"cached":null,"ignore_cache":false}'), +(27653, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.376+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27654, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.388+00', '{"cached":null,"ignore_cache":false}'), +(27655, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.484+00', '{"cached":null,"ignore_cache":false}'), +(27656, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.493+00', '{"cached":null,"ignore_cache":false}'), +(27657, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.511+00', '{"cached":null,"ignore_cache":false}'), +(27658, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.512+00', '{"cached":null,"ignore_cache":false}'), +(27659, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 10:59:56.56+00', '{"cached":null,"ignore_cache":false}'), +(27660, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.31+00', '{"cached":null,"ignore_cache":false}'), +(27661, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.362+00', '{"cached":null,"ignore_cache":false}'), +(27662, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.456+00', '{"cached":null,"ignore_cache":false}'), +(27663, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.478+00', '{"cached":null,"ignore_cache":false}'), +(27664, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.487+00', '{"cached":null,"ignore_cache":false}'), +(27665, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.514+00', '{"cached":null,"ignore_cache":false}'), +(27666, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.523+00', '{"cached":null,"ignore_cache":false}'), +(27667, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.539+00', '{"cached":null,"ignore_cache":false}'), +(27668, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.566+00', '{"cached":null,"ignore_cache":false}'), +(27669, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.598+00', '{"cached":null,"ignore_cache":false}'), +(27670, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.602+00', '{"cached":null,"ignore_cache":false}'), +(27671, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.625+00', '{"cached":null,"ignore_cache":false}'), +(27672, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.646+00', '{"cached":null,"ignore_cache":false}'), +(27673, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:04.649+00', '{"cached":null,"ignore_cache":false}'), +(27674, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:05.032+00', '{"cached":null,"ignore_cache":false}'), +(27675, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:05.299+00', '{"cached":null,"ignore_cache":false}'), +(27676, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.362+00', '{"cached":null,"ignore_cache":false}'), +(27677, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.369+00', '{"cached":null,"ignore_cache":false}'), +(27678, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.402+00', '{"cached":null,"ignore_cache":false}'), +(27679, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.41+00', '{"cached":null,"ignore_cache":false}'), +(27680, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:23.423+00', '{"cached":null,"ignore_cache":false}'), +(27681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:24.039+00', '{"cached":null,"ignore_cache":false}'), +(27682, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:24.072+00', '{"cached":null,"ignore_cache":false}'), +(27683, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.48+00', '{"cached":null,"ignore_cache":false}'), +(27684, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.54+00', '{"cached":null,"ignore_cache":false}'), +(27685, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.543+00', '{"cached":null,"ignore_cache":false}'), +(27686, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.559+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27687, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.575+00', '{"cached":null,"ignore_cache":false}'), +(27688, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.6+00', '{"cached":null,"ignore_cache":false}'), +(27689, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.61+00', '{"cached":null,"ignore_cache":false}'), +(27690, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.627+00', '{"cached":null,"ignore_cache":false}'), +(27691, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:25.634+00', '{"cached":null,"ignore_cache":false}'), +(27692, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.465+00', '{"cached":null,"ignore_cache":false}'), +(27693, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.47+00', '{"cached":null,"ignore_cache":false}'), +(27694, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.528+00', '{"cached":null,"ignore_cache":false}'), +(27695, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.556+00', '{"cached":null,"ignore_cache":false}'), +(27696, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.568+00', '{"cached":null,"ignore_cache":false}'), +(27697, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.591+00', '{"cached":null,"ignore_cache":false}'), +(27698, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.622+00', '{"cached":null,"ignore_cache":false}'), +(27699, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.628+00', '{"cached":null,"ignore_cache":false}'), +(27700, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.629+00', '{"cached":null,"ignore_cache":false}'), +(27701, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.664+00', '{"cached":null,"ignore_cache":false}'), +(27702, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.665+00', '{"cached":null,"ignore_cache":false}'), +(27703, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.683+00', '{"cached":null,"ignore_cache":false}'), +(27704, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.689+00', '{"cached":null,"ignore_cache":false}'), +(27705, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:34.703+00', '{"cached":null,"ignore_cache":false}'), +(27706, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:35.551+00', '{"cached":null,"ignore_cache":false}'), +(27707, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:35.677+00', '{"cached":null,"ignore_cache":false}'), +(27708, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.436+00', '{"cached":null,"ignore_cache":false}'), +(27709, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.477+00', '{"cached":null,"ignore_cache":false}'), +(27710, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.499+00', '{"cached":null,"ignore_cache":false}'), +(27711, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.557+00', '{"cached":null,"ignore_cache":false}'), +(27712, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:53.581+00', '{"cached":null,"ignore_cache":false}'), +(27713, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:54.349+00', '{"cached":null,"ignore_cache":false}'), +(27714, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:54.449+00', '{"cached":null,"ignore_cache":false}'), +(27715, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.581+00', '{"cached":null,"ignore_cache":false}'), +(27716, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.587+00', '{"cached":null,"ignore_cache":false}'), +(27717, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.631+00', '{"cached":null,"ignore_cache":false}'), +(27718, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.633+00', '{"cached":null,"ignore_cache":false}'), +(27719, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.65+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27720, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.657+00', '{"cached":null,"ignore_cache":false}'), +(27721, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.66+00', '{"cached":null,"ignore_cache":false}'), +(27722, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.678+00', '{"cached":null,"ignore_cache":false}'), +(27723, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:00:55.679+00', '{"cached":null,"ignore_cache":false}'), +(27724, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.623+00', '{"cached":null,"ignore_cache":false}'), +(27725, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.86+00', '{"cached":null,"ignore_cache":false}'), +(27726, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.887+00', '{"cached":null,"ignore_cache":false}'), +(27727, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.899+00', '{"cached":null,"ignore_cache":false}'), +(27728, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.942+00', '{"cached":null,"ignore_cache":false}'), +(27729, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:04.999+00', '{"cached":null,"ignore_cache":false}'), +(27730, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.019+00', '{"cached":null,"ignore_cache":false}'), +(27731, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.163+00', '{"cached":null,"ignore_cache":false}'), +(27732, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.173+00', '{"cached":null,"ignore_cache":false}'), +(27733, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.198+00', '{"cached":null,"ignore_cache":false}'), +(27734, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.229+00', '{"cached":null,"ignore_cache":false}'), +(27735, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.243+00', '{"cached":null,"ignore_cache":false}'), +(27736, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.255+00', '{"cached":null,"ignore_cache":false}'), +(27737, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:05.299+00', '{"cached":null,"ignore_cache":false}'), +(27738, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:06.011+00', '{"cached":null,"ignore_cache":false}'), +(27739, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:06.117+00', '{"cached":null,"ignore_cache":false}'), +(27740, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:23.902+00', '{"cached":null,"ignore_cache":false}'), +(27741, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:24.021+00', '{"cached":null,"ignore_cache":false}'), +(27742, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:24.023+00', '{"cached":null,"ignore_cache":false}'), +(27743, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:24.033+00', '{"cached":null,"ignore_cache":false}'), +(27744, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:24.061+00', '{"cached":null,"ignore_cache":false}'), +(27745, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:24.919+00', '{"cached":null,"ignore_cache":false}'), +(27746, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.195+00', '{"cached":null,"ignore_cache":false}'), +(27747, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.579+00', '{"cached":null,"ignore_cache":false}'), +(27748, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.64+00', '{"cached":null,"ignore_cache":false}'), +(27749, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.663+00', '{"cached":null,"ignore_cache":false}'), +(27750, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.687+00', '{"cached":null,"ignore_cache":false}'), +(27751, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.774+00', '{"cached":null,"ignore_cache":false}'), +(27752, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.794+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27753, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.809+00', '{"cached":null,"ignore_cache":false}'), +(27754, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.813+00', '{"cached":null,"ignore_cache":false}'), +(27755, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:25.858+00', '{"cached":null,"ignore_cache":false}'), +(27756, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.658+00', '{"cached":null,"ignore_cache":false}'), +(27757, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.714+00', '{"cached":null,"ignore_cache":false}'), +(27758, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.816+00', '{"cached":null,"ignore_cache":false}'), +(27759, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.873+00', '{"cached":null,"ignore_cache":false}'), +(27760, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.897+00', '{"cached":null,"ignore_cache":false}'), +(27761, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.909+00', '{"cached":null,"ignore_cache":false}'), +(27762, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.924+00', '{"cached":null,"ignore_cache":false}'), +(27763, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:34.99+00', '{"cached":null,"ignore_cache":false}'), +(27764, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.007+00', '{"cached":null,"ignore_cache":false}'), +(27765, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.023+00', '{"cached":null,"ignore_cache":false}'), +(27766, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.039+00', '{"cached":null,"ignore_cache":false}'), +(27767, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.039+00', '{"cached":null,"ignore_cache":false}'), +(27768, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.078+00', '{"cached":null,"ignore_cache":false}'), +(27769, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.116+00', '{"cached":null,"ignore_cache":false}'), +(27770, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.81+00', '{"cached":null,"ignore_cache":false}'), +(27771, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:35.892+00', '{"cached":null,"ignore_cache":false}'), +(27772, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.497+00', '{"cached":null,"ignore_cache":false}'), +(27773, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.53+00', '{"cached":null,"ignore_cache":false}'), +(27774, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.585+00', '{"cached":null,"ignore_cache":false}'), +(27775, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.607+00', '{"cached":null,"ignore_cache":false}'), +(27776, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:53.625+00', '{"cached":null,"ignore_cache":false}'), +(27777, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:54.7+00', '{"cached":null,"ignore_cache":false}'), +(27778, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:54.816+00', '{"cached":null,"ignore_cache":false}'), +(27779, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.201+00', '{"cached":null,"ignore_cache":false}'), +(27780, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.216+00', '{"cached":null,"ignore_cache":false}'), +(27781, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.322+00', '{"cached":null,"ignore_cache":false}'), +(27782, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.327+00', '{"cached":null,"ignore_cache":false}'), +(27783, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.335+00', '{"cached":null,"ignore_cache":false}'), +(27784, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.383+00', '{"cached":null,"ignore_cache":false}'), +(27785, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.395+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27786, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.416+00', '{"cached":null,"ignore_cache":false}'), +(27787, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:01:56.483+00', '{"cached":null,"ignore_cache":false}'), +(27788, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.076+00', '{"cached":null,"ignore_cache":false}'), +(27789, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.104+00', '{"cached":null,"ignore_cache":false}'), +(27790, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.128+00', '{"cached":null,"ignore_cache":false}'), +(27791, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.237+00', '{"cached":null,"ignore_cache":false}'), +(27792, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.319+00', '{"cached":null,"ignore_cache":false}'), +(27793, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.418+00', '{"cached":null,"ignore_cache":false}'), +(27794, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.464+00', '{"cached":null,"ignore_cache":false}'), +(27795, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.515+00', '{"cached":null,"ignore_cache":false}'), +(27796, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.534+00', '{"cached":null,"ignore_cache":false}'), +(27797, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.56+00', '{"cached":null,"ignore_cache":false}'), +(27798, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.566+00', '{"cached":null,"ignore_cache":false}'), +(27799, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.634+00', '{"cached":null,"ignore_cache":false}'), +(27800, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.652+00', '{"cached":null,"ignore_cache":false}'), +(27801, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:05.661+00', '{"cached":null,"ignore_cache":false}'), +(27802, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:06.734+00', '{"cached":null,"ignore_cache":false}'), +(27803, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:06.797+00', '{"cached":null,"ignore_cache":false}'), +(27804, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.452+00', '{"cached":null,"ignore_cache":false}'), +(27805, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.474+00', '{"cached":null,"ignore_cache":false}'), +(27806, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.48+00', '{"cached":null,"ignore_cache":false}'), +(27807, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.501+00', '{"cached":null,"ignore_cache":false}'), +(27808, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:23.529+00', '{"cached":null,"ignore_cache":false}'), +(27809, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:24.479+00', '{"cached":null,"ignore_cache":false}'), +(27810, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:24.51+00', '{"cached":null,"ignore_cache":false}'), +(27811, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.615+00', '{"cached":null,"ignore_cache":false}'), +(27812, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.619+00', '{"cached":null,"ignore_cache":false}'), +(27813, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.623+00', '{"cached":null,"ignore_cache":false}'), +(27814, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.652+00', '{"cached":null,"ignore_cache":false}'), +(27815, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.659+00', '{"cached":null,"ignore_cache":false}'), +(27816, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.666+00', '{"cached":null,"ignore_cache":false}'), +(27817, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.667+00', '{"cached":null,"ignore_cache":false}'), +(27818, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.671+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27819, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:25.682+00', '{"cached":null,"ignore_cache":false}'), +(27820, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.66+00', '{"cached":null,"ignore_cache":false}'), +(27821, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.724+00', '{"cached":null,"ignore_cache":false}'), +(27822, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.753+00', '{"cached":null,"ignore_cache":false}'), +(27823, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.789+00', '{"cached":null,"ignore_cache":false}'), +(27824, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.796+00', '{"cached":null,"ignore_cache":false}'), +(27825, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.807+00', '{"cached":null,"ignore_cache":false}'), +(27826, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.92+00', '{"cached":null,"ignore_cache":false}'), +(27827, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.931+00', '{"cached":null,"ignore_cache":false}'), +(27828, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:34.932+00', '{"cached":null,"ignore_cache":false}'), +(27829, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:35.027+00', '{"cached":null,"ignore_cache":false}'), +(27830, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:35.048+00', '{"cached":null,"ignore_cache":false}'), +(27831, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:35.054+00', '{"cached":null,"ignore_cache":false}'), +(27832, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:35.06+00', '{"cached":null,"ignore_cache":false}'), +(27833, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:35.068+00', '{"cached":null,"ignore_cache":false}'), +(27834, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:35.694+00', '{"cached":null,"ignore_cache":false}'), +(27835, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:35.881+00', '{"cached":null,"ignore_cache":false}'), +(27836, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:54.051+00', '{"cached":null,"ignore_cache":false}'), +(27837, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:54.053+00', '{"cached":null,"ignore_cache":false}'), +(27838, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:54.058+00', '{"cached":null,"ignore_cache":false}'), +(27839, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:54.072+00', '{"cached":null,"ignore_cache":false}'), +(27840, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:54.084+00', '{"cached":null,"ignore_cache":false}'), +(27841, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:54.711+00', '{"cached":null,"ignore_cache":false}'), +(27842, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:54.772+00', '{"cached":null,"ignore_cache":false}'), +(27843, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.917+00', '{"cached":null,"ignore_cache":false}'), +(27844, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.935+00', '{"cached":null,"ignore_cache":false}'), +(27845, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:55.981+00', '{"cached":null,"ignore_cache":false}'), +(27846, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:56.025+00', '{"cached":null,"ignore_cache":false}'), +(27847, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:56.025+00', '{"cached":null,"ignore_cache":false}'), +(27848, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:56.032+00', '{"cached":null,"ignore_cache":false}'), +(27849, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:56.033+00', '{"cached":null,"ignore_cache":false}'), +(27850, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:56.046+00', '{"cached":null,"ignore_cache":false}'), +(27851, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:02:56.059+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27852, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.384+00', '{"cached":null,"ignore_cache":false}'), +(27853, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.387+00', '{"cached":null,"ignore_cache":false}'), +(27854, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.399+00', '{"cached":null,"ignore_cache":false}'), +(27855, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.404+00', '{"cached":null,"ignore_cache":false}'), +(27856, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:06.454+00', '{"cached":null,"ignore_cache":false}'), +(27857, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.372+00', '{"cached":null,"ignore_cache":false}'), +(27858, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.502+00', '{"cached":null,"ignore_cache":false}'), +(27859, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.516+00', '{"cached":null,"ignore_cache":false}'), +(27860, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.607+00', '{"cached":null,"ignore_cache":false}'), +(27861, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.653+00', '{"cached":null,"ignore_cache":false}'), +(27862, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.656+00', '{"cached":null,"ignore_cache":false}'), +(27863, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.66+00', '{"cached":null,"ignore_cache":false}'), +(27864, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.687+00', '{"cached":null,"ignore_cache":false}'), +(27865, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.688+00', '{"cached":null,"ignore_cache":false}'), +(27866, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.892+00', '{"cached":null,"ignore_cache":false}'), +(27867, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:07.908+00', '{"cached":null,"ignore_cache":false}'), +(27868, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.791+00', '{"cached":null,"ignore_cache":false}'), +(27869, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.86+00', '{"cached":null,"ignore_cache":false}'), +(27870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.868+00', '{"cached":null,"ignore_cache":false}'), +(27871, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.872+00', '{"cached":null,"ignore_cache":false}'), +(27872, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:24.892+00', '{"cached":null,"ignore_cache":false}'), +(27873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:25.76+00', '{"cached":null,"ignore_cache":false}'), +(27874, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:25.873+00', '{"cached":null,"ignore_cache":false}'), +(27875, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.071+00', '{"cached":null,"ignore_cache":false}'), +(27876, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.135+00', '{"cached":null,"ignore_cache":false}'), +(27877, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.139+00', '{"cached":null,"ignore_cache":false}'), +(27878, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.208+00', '{"cached":null,"ignore_cache":false}'), +(27879, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.241+00', '{"cached":null,"ignore_cache":false}'), +(27880, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.261+00', '{"cached":null,"ignore_cache":false}'), +(27881, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.271+00', '{"cached":null,"ignore_cache":false}'), +(27882, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.275+00', '{"cached":null,"ignore_cache":false}'), +(27883, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:27.276+00', '{"cached":null,"ignore_cache":false}'), +(27884, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.856+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27885, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.869+00', '{"cached":null,"ignore_cache":false}'), +(27886, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.875+00', '{"cached":null,"ignore_cache":false}'), +(27887, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.889+00', '{"cached":null,"ignore_cache":false}'), +(27888, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:54.934+00', '{"cached":null,"ignore_cache":false}'), +(27889, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:55.781+00', '{"cached":null,"ignore_cache":false}'), +(27890, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:55.802+00', '{"cached":null,"ignore_cache":false}'), +(27891, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.441+00', '{"cached":null,"ignore_cache":false}'), +(27892, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.459+00', '{"cached":null,"ignore_cache":false}'), +(27893, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.533+00', '{"cached":null,"ignore_cache":false}'), +(27894, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.55+00', '{"cached":null,"ignore_cache":false}'), +(27895, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.579+00', '{"cached":null,"ignore_cache":false}'), +(27896, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.588+00', '{"cached":null,"ignore_cache":false}'), +(27897, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.619+00', '{"cached":null,"ignore_cache":false}'), +(27898, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.627+00', '{"cached":null,"ignore_cache":false}'), +(27899, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:03:57.636+00', '{"cached":null,"ignore_cache":false}'), +(27900, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.899+00', '{"cached":null,"ignore_cache":false}'), +(27901, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.902+00', '{"cached":null,"ignore_cache":false}'), +(27902, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:24.974+00', '{"cached":null,"ignore_cache":false}'), +(27903, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:25.055+00', '{"cached":null,"ignore_cache":false}'), +(27904, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:25.077+00', '{"cached":null,"ignore_cache":false}'), +(27905, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:25.967+00', '{"cached":null,"ignore_cache":false}'), +(27906, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:26.206+00', '{"cached":null,"ignore_cache":false}'), +(27907, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.078+00', '{"cached":null,"ignore_cache":false}'), +(27908, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.145+00', '{"cached":null,"ignore_cache":false}'), +(27909, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.215+00', '{"cached":null,"ignore_cache":false}'), +(27910, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.279+00', '{"cached":null,"ignore_cache":false}'), +(27911, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.29+00', '{"cached":null,"ignore_cache":false}'), +(27912, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.385+00', '{"cached":null,"ignore_cache":false}'), +(27913, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.424+00', '{"cached":null,"ignore_cache":false}'), +(27914, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.437+00', '{"cached":null,"ignore_cache":false}'), +(27915, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:27.438+00', '{"cached":null,"ignore_cache":false}'), +(27916, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:55.065+00', '{"cached":null,"ignore_cache":false}'), +(27917, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:55.068+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27918, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:55.088+00', '{"cached":null,"ignore_cache":false}'), +(27919, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:55.122+00', '{"cached":null,"ignore_cache":false}'), +(27920, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:55.15+00', '{"cached":null,"ignore_cache":false}'), +(27921, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:55.988+00', '{"cached":null,"ignore_cache":false}'), +(27922, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:56.062+00', '{"cached":null,"ignore_cache":false}'), +(27923, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.032+00', '{"cached":null,"ignore_cache":false}'), +(27924, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.054+00', '{"cached":null,"ignore_cache":false}'), +(27925, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.11+00', '{"cached":null,"ignore_cache":false}'), +(27926, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.116+00', '{"cached":null,"ignore_cache":false}'), +(27927, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.126+00', '{"cached":null,"ignore_cache":false}'), +(27928, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.184+00', '{"cached":null,"ignore_cache":false}'), +(27929, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.184+00', '{"cached":null,"ignore_cache":false}'), +(27930, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.213+00', '{"cached":null,"ignore_cache":false}'), +(27931, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:04:57.278+00', '{"cached":null,"ignore_cache":false}'), +(27932, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.73+00', '{"cached":null,"ignore_cache":false}'), +(27933, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.757+00', '{"cached":null,"ignore_cache":false}'), +(27934, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.846+00', '{"cached":null,"ignore_cache":false}'), +(27935, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.852+00', '{"cached":null,"ignore_cache":false}'), +(27936, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:24.858+00', '{"cached":null,"ignore_cache":false}'), +(27937, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:25.557+00', '{"cached":null,"ignore_cache":false}'), +(27938, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:25.654+00', '{"cached":null,"ignore_cache":false}'), +(27939, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.926+00', '{"cached":null,"ignore_cache":false}'), +(27940, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:26.966+00', '{"cached":null,"ignore_cache":false}'), +(27941, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.123+00', '{"cached":null,"ignore_cache":false}'), +(27942, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.163+00', '{"cached":null,"ignore_cache":false}'), +(27943, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.175+00', '{"cached":null,"ignore_cache":false}'), +(27944, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.197+00', '{"cached":null,"ignore_cache":false}'), +(27945, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.203+00', '{"cached":null,"ignore_cache":false}'), +(27946, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.231+00', '{"cached":null,"ignore_cache":false}'), +(27947, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:27.235+00', '{"cached":null,"ignore_cache":false}'), +(27948, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.196+00', '{"cached":null,"ignore_cache":false}'), +(27949, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.253+00', '{"cached":null,"ignore_cache":false}'), +(27950, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.263+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27951, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.288+00', '{"cached":null,"ignore_cache":false}'), +(27952, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:55.321+00', '{"cached":null,"ignore_cache":false}'), +(27953, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:56.025+00', '{"cached":null,"ignore_cache":false}'), +(27954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:56.081+00', '{"cached":null,"ignore_cache":false}'), +(27955, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.09+00', '{"cached":null,"ignore_cache":false}'), +(27956, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.172+00', '{"cached":null,"ignore_cache":false}'), +(27957, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.365+00', '{"cached":null,"ignore_cache":false}'), +(27958, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.389+00', '{"cached":null,"ignore_cache":false}'), +(27959, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.455+00', '{"cached":null,"ignore_cache":false}'), +(27960, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.457+00', '{"cached":null,"ignore_cache":false}'), +(27961, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.496+00', '{"cached":null,"ignore_cache":false}'), +(27962, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.507+00', '{"cached":null,"ignore_cache":false}'), +(27963, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:05:57.568+00', '{"cached":null,"ignore_cache":false}'), +(27964, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:24.95+00', '{"cached":null,"ignore_cache":false}'), +(27965, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:25.016+00', '{"cached":null,"ignore_cache":false}'), +(27966, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:25.041+00', '{"cached":null,"ignore_cache":false}'), +(27967, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:25.076+00', '{"cached":null,"ignore_cache":false}'), +(27968, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:25.08+00', '{"cached":null,"ignore_cache":false}'), +(27969, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.036+00', '{"cached":null,"ignore_cache":false}'), +(27970, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.297+00', '{"cached":null,"ignore_cache":false}'), +(27971, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.789+00', '{"cached":null,"ignore_cache":false}'), +(27972, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.811+00', '{"cached":null,"ignore_cache":false}'), +(27973, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.858+00', '{"cached":null,"ignore_cache":false}'), +(27974, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.921+00', '{"cached":null,"ignore_cache":false}'), +(27975, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.943+00', '{"cached":null,"ignore_cache":false}'), +(27976, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.957+00', '{"cached":null,"ignore_cache":false}'), +(27977, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.969+00', '{"cached":null,"ignore_cache":false}'), +(27978, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:26.975+00', '{"cached":null,"ignore_cache":false}'), +(27979, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:27.02+00', '{"cached":null,"ignore_cache":false}'), +(27980, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.08+00', '{"cached":null,"ignore_cache":false}'), +(27981, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.143+00', '{"cached":null,"ignore_cache":false}'), +(27982, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.152+00', '{"cached":null,"ignore_cache":false}'), +(27983, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.215+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(27984, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:55.251+00', '{"cached":null,"ignore_cache":false}'), +(27985, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:56.511+00', '{"cached":null,"ignore_cache":false}'), +(27986, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:56.666+00', '{"cached":null,"ignore_cache":false}'), +(27987, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:57.958+00', '{"cached":null,"ignore_cache":false}'), +(27988, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58+00', '{"cached":null,"ignore_cache":false}'), +(27989, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.057+00', '{"cached":null,"ignore_cache":false}'), +(27990, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.066+00', '{"cached":null,"ignore_cache":false}'), +(27991, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.095+00', '{"cached":null,"ignore_cache":false}'), +(27992, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.098+00', '{"cached":null,"ignore_cache":false}'), +(27993, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.113+00', '{"cached":null,"ignore_cache":false}'), +(27994, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.13+00', '{"cached":null,"ignore_cache":false}'), +(27995, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:06:58.131+00', '{"cached":null,"ignore_cache":false}'), +(27996, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:25.045+00', '{"cached":null,"ignore_cache":false}'), +(27997, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:25.065+00', '{"cached":null,"ignore_cache":false}'), +(27998, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:25.106+00', '{"cached":null,"ignore_cache":false}'), +(27999, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:25.122+00', '{"cached":null,"ignore_cache":false}'), +(28000, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:25.125+00', '{"cached":null,"ignore_cache":false}'), +(28001, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:26.024+00', '{"cached":null,"ignore_cache":false}'), +(28002, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:26.092+00', '{"cached":null,"ignore_cache":false}'), +(28003, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.142+00', '{"cached":null,"ignore_cache":false}'), +(28004, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.25+00', '{"cached":null,"ignore_cache":false}'), +(28005, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.423+00', '{"cached":null,"ignore_cache":false}'), +(28006, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.432+00', '{"cached":null,"ignore_cache":false}'), +(28007, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.446+00', '{"cached":null,"ignore_cache":false}'), +(28008, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.464+00', '{"cached":null,"ignore_cache":false}'), +(28009, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.477+00', '{"cached":null,"ignore_cache":false}'), +(28010, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.507+00', '{"cached":null,"ignore_cache":false}'), +(28011, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:28.531+00', '{"cached":null,"ignore_cache":false}'), +(28012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.804+00', '{"cached":null,"ignore_cache":false}'), +(28013, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.891+00', '{"cached":null,"ignore_cache":false}'), +(28014, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:53.962+00', '{"cached":null,"ignore_cache":false}'), +(28015, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.048+00', '{"cached":null,"ignore_cache":false}'), +(28016, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.074+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28017, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.154+00', '{"cached":null,"ignore_cache":false}'), +(28018, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.188+00', '{"cached":null,"ignore_cache":false}'), +(28019, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.203+00', '{"cached":null,"ignore_cache":false}'), +(28020, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.219+00', '{"cached":null,"ignore_cache":false}'), +(28021, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.32+00', '{"cached":null,"ignore_cache":false}'), +(28022, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.329+00', '{"cached":null,"ignore_cache":false}'), +(28023, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.332+00', '{"cached":null,"ignore_cache":false}'), +(28024, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.337+00', '{"cached":null,"ignore_cache":false}'), +(28025, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.36+00', '{"cached":null,"ignore_cache":false}'), +(28026, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:54.942+00', '{"cached":null,"ignore_cache":false}'), +(28027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:07:55.166+00', '{"cached":null,"ignore_cache":false}'), +(28028, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.101+00', '{"cached":null,"ignore_cache":false}'), +(28029, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.279+00', '{"cached":null,"ignore_cache":false}'), +(28030, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.279+00', '{"cached":null,"ignore_cache":false}'), +(28031, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.321+00', '{"cached":null,"ignore_cache":false}'), +(28032, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.364+00', '{"cached":null,"ignore_cache":false}'), +(28033, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.395+00', '{"cached":null,"ignore_cache":false}'), +(28034, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.424+00', '{"cached":null,"ignore_cache":false}'), +(28035, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.475+00', '{"cached":null,"ignore_cache":false}'), +(28036, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.486+00', '{"cached":null,"ignore_cache":false}'), +(28037, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.513+00', '{"cached":null,"ignore_cache":false}'), +(28038, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.543+00', '{"cached":null,"ignore_cache":false}'), +(28039, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.554+00', '{"cached":null,"ignore_cache":false}'), +(28040, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.571+00', '{"cached":null,"ignore_cache":false}'), +(28041, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.571+00', '{"cached":null,"ignore_cache":false}'), +(28042, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:15.88+00', '{"cached":null,"ignore_cache":false}'), +(28043, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:16.037+00', '{"cached":null,"ignore_cache":false}'), +(28044, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.197+00', '{"cached":null,"ignore_cache":false}'), +(28045, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.219+00', '{"cached":null,"ignore_cache":false}'), +(28046, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.302+00', '{"cached":null,"ignore_cache":false}'), +(28047, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.392+00', '{"cached":null,"ignore_cache":false}'), +(28048, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.526+00', '{"cached":null,"ignore_cache":false}'), +(28049, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.609+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28050, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.621+00', '{"cached":null,"ignore_cache":false}'), +(28051, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.631+00', '{"cached":null,"ignore_cache":false}'), +(28052, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.692+00', '{"cached":null,"ignore_cache":false}'), +(28053, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.712+00', '{"cached":null,"ignore_cache":false}'), +(28054, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.795+00', '{"cached":null,"ignore_cache":false}'), +(28055, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.821+00', '{"cached":null,"ignore_cache":false}'), +(28056, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.886+00', '{"cached":null,"ignore_cache":false}'), +(28057, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:46.915+00', '{"cached":null,"ignore_cache":false}'), +(28058, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:47.615+00', '{"cached":null,"ignore_cache":false}'), +(28059, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:08:47.97+00', '{"cached":null,"ignore_cache":false}'), +(28060, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.577+00', '{"cached":null,"ignore_cache":false}'), +(28061, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:26.796+00', '{"cached":null,"ignore_cache":false}'), +(28062, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.365+00', '{"cached":null,"ignore_cache":false}'), +(28063, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.394+00', '{"cached":null,"ignore_cache":false}'), +(28064, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.449+00', '{"cached":null,"ignore_cache":false}'), +(28065, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:27.973+00', '{"cached":null,"ignore_cache":false}'), +(28066, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.242+00', '{"cached":null,"ignore_cache":false}'), +(28067, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.393+00', '{"cached":null,"ignore_cache":false}'), +(28068, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.415+00', '{"cached":null,"ignore_cache":false}'), +(28069, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.445+00', '{"cached":null,"ignore_cache":false}'), +(28070, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.455+00', '{"cached":null,"ignore_cache":false}'), +(28071, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.466+00', '{"cached":null,"ignore_cache":false}'), +(28072, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.519+00', '{"cached":null,"ignore_cache":false}'), +(28073, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.569+00', '{"cached":null,"ignore_cache":false}'), +(28074, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.57+00', '{"cached":null,"ignore_cache":false}'), +(28075, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.607+00', '{"cached":null,"ignore_cache":false}'), +(28076, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.716+00', '{"cached":null,"ignore_cache":false}'), +(28077, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.782+00', '{"cached":null,"ignore_cache":false}'), +(28078, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.79+00', '{"cached":null,"ignore_cache":false}'), +(28079, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.91+00', '{"cached":null,"ignore_cache":false}'), +(28080, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.93+00', '{"cached":null,"ignore_cache":false}'), +(28081, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:28.992+00', '{"cached":null,"ignore_cache":false}'), +(28082, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:29.05+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28083, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:29.266+00', '{"cached":null,"ignore_cache":false}'), +(28084, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:29.583+00', '{"cached":null,"ignore_cache":false}'), +(28085, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:29.798+00', '{"cached":null,"ignore_cache":false}'), +(28086, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:30.211+00', '{"cached":null,"ignore_cache":false}'), +(28087, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:31.892+00', '{"cached":null,"ignore_cache":false}'), +(28088, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:32.171+00', '{"cached":null,"ignore_cache":false}'), +(28089, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.935+00', '{"cached":null,"ignore_cache":false}'), +(28090, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:55.975+00', '{"cached":null,"ignore_cache":false}'), +(28091, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.037+00', '{"cached":null,"ignore_cache":false}'), +(28092, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.106+00', '{"cached":null,"ignore_cache":false}'), +(28093, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.108+00', '{"cached":null,"ignore_cache":false}'), +(28094, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.199+00', '{"cached":null,"ignore_cache":false}'), +(28095, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.247+00', '{"cached":null,"ignore_cache":false}'), +(28096, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.3+00', '{"cached":null,"ignore_cache":false}'), +(28097, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.322+00', '{"cached":null,"ignore_cache":false}'), +(28098, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.345+00', '{"cached":null,"ignore_cache":false}'), +(28099, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.415+00', '{"cached":null,"ignore_cache":false}'), +(28100, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.451+00', '{"cached":null,"ignore_cache":false}'), +(28101, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.47+00', '{"cached":null,"ignore_cache":false}'), +(28102, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:56.481+00', '{"cached":null,"ignore_cache":false}'), +(28103, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:57.316+00', '{"cached":null,"ignore_cache":false}'), +(28104, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:09:57.685+00', '{"cached":null,"ignore_cache":false}'), +(28105, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.406+00', '{"cached":null,"ignore_cache":false}'), +(28106, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.424+00', '{"cached":null,"ignore_cache":false}'), +(28107, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.425+00', '{"cached":null,"ignore_cache":false}'), +(28108, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.443+00', '{"cached":null,"ignore_cache":false}'), +(28109, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.449+00', '{"cached":null,"ignore_cache":false}'), +(28110, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.539+00', '{"cached":null,"ignore_cache":false}'), +(28111, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.553+00', '{"cached":null,"ignore_cache":false}'), +(28112, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.571+00', '{"cached":null,"ignore_cache":false}'), +(28113, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.596+00', '{"cached":null,"ignore_cache":false}'), +(28114, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.689+00', '{"cached":null,"ignore_cache":false}'), +(28115, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.693+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28116, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.697+00', '{"cached":null,"ignore_cache":false}'), +(28117, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.721+00', '{"cached":null,"ignore_cache":false}'), +(28118, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:26.725+00', '{"cached":null,"ignore_cache":false}'), +(28119, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:27.299+00', '{"cached":null,"ignore_cache":false}'), +(28120, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:27.588+00', '{"cached":null,"ignore_cache":false}'), +(28121, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.499+00', '{"cached":null,"ignore_cache":false}'), +(28122, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.703+00', '{"cached":null,"ignore_cache":false}'), +(28123, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.716+00', '{"cached":null,"ignore_cache":false}'), +(28124, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.756+00', '{"cached":null,"ignore_cache":false}'), +(28125, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.838+00', '{"cached":null,"ignore_cache":false}'), +(28126, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.877+00', '{"cached":null,"ignore_cache":false}'), +(28127, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.905+00', '{"cached":null,"ignore_cache":false}'), +(28128, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.925+00', '{"cached":null,"ignore_cache":false}'), +(28129, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.951+00', '{"cached":null,"ignore_cache":false}'), +(28130, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.968+00', '{"cached":null,"ignore_cache":false}'), +(28131, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:56.99+00', '{"cached":null,"ignore_cache":false}'), +(28132, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:57.025+00', '{"cached":null,"ignore_cache":false}'), +(28133, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:57.054+00', '{"cached":null,"ignore_cache":false}'), +(28134, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:57.131+00', '{"cached":null,"ignore_cache":false}'), +(28135, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:58.104+00', '{"cached":null,"ignore_cache":false}'), +(28136, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:10:58.134+00', '{"cached":null,"ignore_cache":false}'), +(28137, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:26.966+00', '{"cached":null,"ignore_cache":false}'), +(28138, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.005+00', '{"cached":null,"ignore_cache":false}'), +(28139, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.318+00', '{"cached":null,"ignore_cache":false}'), +(28140, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.376+00', '{"cached":null,"ignore_cache":false}'), +(28141, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.415+00', '{"cached":null,"ignore_cache":false}'), +(28142, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.51+00', '{"cached":null,"ignore_cache":false}'), +(28143, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.511+00', '{"cached":null,"ignore_cache":false}'), +(28144, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.657+00', '{"cached":null,"ignore_cache":false}'), +(28145, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.682+00', '{"cached":null,"ignore_cache":false}'), +(28146, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.683+00', '{"cached":null,"ignore_cache":false}'), +(28147, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.751+00', '{"cached":null,"ignore_cache":false}'), +(28148, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.809+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28149, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.88+00', '{"cached":null,"ignore_cache":false}'), +(28150, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:27.95+00', '{"cached":null,"ignore_cache":false}'), +(28151, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:28.959+00', '{"cached":null,"ignore_cache":false}'), +(28152, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:29.142+00', '{"cached":null,"ignore_cache":false}'), +(28153, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.148+00', '{"cached":null,"ignore_cache":false}'), +(28154, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.317+00', '{"cached":null,"ignore_cache":false}'), +(28155, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.472+00', '{"cached":null,"ignore_cache":false}'), +(28156, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.518+00', '{"cached":null,"ignore_cache":false}'), +(28157, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.523+00', '{"cached":null,"ignore_cache":false}'), +(28158, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.539+00', '{"cached":null,"ignore_cache":false}'), +(28159, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.625+00', '{"cached":null,"ignore_cache":false}'), +(28160, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.675+00', '{"cached":null,"ignore_cache":false}'), +(28161, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.707+00', '{"cached":null,"ignore_cache":false}'), +(28162, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.804+00', '{"cached":null,"ignore_cache":false}'), +(28163, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.844+00', '{"cached":null,"ignore_cache":false}'), +(28164, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.863+00', '{"cached":null,"ignore_cache":false}'), +(28165, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.865+00', '{"cached":null,"ignore_cache":false}'), +(28166, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:56.879+00', '{"cached":null,"ignore_cache":false}'), +(28167, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:57.821+00', '{"cached":null,"ignore_cache":false}'), +(28168, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:11:57.939+00', '{"cached":null,"ignore_cache":false}'), +(28169, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.193+00', '{"cached":null,"ignore_cache":false}'), +(28170, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.587+00', '{"cached":null,"ignore_cache":false}'), +(28171, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.708+00', '{"cached":null,"ignore_cache":false}'), +(28172, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.841+00', '{"cached":null,"ignore_cache":false}'), +(28173, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.859+00', '{"cached":null,"ignore_cache":false}'), +(28174, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:26.9+00', '{"cached":null,"ignore_cache":false}'), +(28175, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.02+00', '{"cached":null,"ignore_cache":false}'), +(28176, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.05+00', '{"cached":null,"ignore_cache":false}'), +(28177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.056+00', '{"cached":null,"ignore_cache":false}'), +(28178, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.117+00', '{"cached":null,"ignore_cache":false}'), +(28179, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.118+00', '{"cached":null,"ignore_cache":false}'), +(28180, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.207+00', '{"cached":null,"ignore_cache":false}'), +(28181, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.302+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28182, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:27.423+00', '{"cached":null,"ignore_cache":false}'), +(28183, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:28.084+00', '{"cached":null,"ignore_cache":false}'), +(28184, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:28.427+00', '{"cached":null,"ignore_cache":false}'), +(28185, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.554+00', '{"cached":null,"ignore_cache":false}'), +(28186, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.602+00', '{"cached":null,"ignore_cache":false}'), +(28187, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.773+00', '{"cached":null,"ignore_cache":false}'), +(28188, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.879+00', '{"cached":null,"ignore_cache":false}'), +(28189, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.926+00', '{"cached":null,"ignore_cache":false}'), +(28190, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.929+00', '{"cached":null,"ignore_cache":false}'), +(28191, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:56.969+00', '{"cached":null,"ignore_cache":false}'), +(28192, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:57.041+00', '{"cached":null,"ignore_cache":false}'), +(28193, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:57.087+00', '{"cached":null,"ignore_cache":false}'), +(28194, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:57.099+00', '{"cached":null,"ignore_cache":false}'), +(28195, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:57.144+00', '{"cached":null,"ignore_cache":false}'), +(28196, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:57.147+00', '{"cached":null,"ignore_cache":false}'), +(28197, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:57.199+00', '{"cached":null,"ignore_cache":false}'), +(28198, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:57.22+00', '{"cached":null,"ignore_cache":false}'), +(28199, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:58.427+00', '{"cached":null,"ignore_cache":false}'), +(28200, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:12:58.865+00', '{"cached":null,"ignore_cache":false}'), +(28201, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.055+00', '{"cached":null,"ignore_cache":false}'), +(28202, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.096+00', '{"cached":null,"ignore_cache":false}'), +(28203, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.132+00', '{"cached":null,"ignore_cache":false}'), +(28204, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.141+00', '{"cached":null,"ignore_cache":false}'), +(28205, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.143+00', '{"cached":null,"ignore_cache":false}'), +(28206, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.713+00', '{"cached":null,"ignore_cache":false}'), +(28207, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:01.884+00', '{"cached":null,"ignore_cache":false}'), +(28208, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.112+00', '{"cached":null,"ignore_cache":false}'), +(28209, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.114+00', '{"cached":null,"ignore_cache":false}'), +(28210, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.138+00', '{"cached":null,"ignore_cache":false}'), +(28211, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.189+00', '{"cached":null,"ignore_cache":false}'), +(28212, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:27.217+00', '{"cached":null,"ignore_cache":false}'), +(28213, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.283+00', '{"cached":null,"ignore_cache":false}'), +(28214, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.327+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28215, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.355+00', '{"cached":null,"ignore_cache":false}'), +(28216, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.41+00', '{"cached":null,"ignore_cache":false}'), +(28217, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.411+00', '{"cached":null,"ignore_cache":false}'), +(28218, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.43+00', '{"cached":null,"ignore_cache":false}'), +(28219, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.526+00', '{"cached":null,"ignore_cache":false}'), +(28220, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.531+00', '{"cached":null,"ignore_cache":false}'), +(28221, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.54+00', '{"cached":null,"ignore_cache":false}'), +(28222, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.671+00', '{"cached":null,"ignore_cache":false}'), +(28223, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:28.703+00', '{"cached":null,"ignore_cache":false}'), +(28224, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.517+00', '{"cached":null,"ignore_cache":false}'), +(28225, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.533+00', '{"cached":null,"ignore_cache":false}'), +(28226, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:13:59.56+00', '{"cached":null,"ignore_cache":false}'), +(28227, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.018+00', '{"cached":null,"ignore_cache":false}'), +(28228, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.03+00', '{"cached":null,"ignore_cache":false}'), +(28229, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.255+00', '{"cached":null,"ignore_cache":false}'), +(28230, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.434+00', '{"cached":null,"ignore_cache":false}'), +(28231, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.763+00', '{"cached":null,"ignore_cache":false}'), +(28232, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.893+00', '{"cached":null,"ignore_cache":false}'), +(28233, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:00.983+00', '{"cached":null,"ignore_cache":false}'), +(28234, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:01.321+00', '{"cached":null,"ignore_cache":false}'), +(28235, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:01.435+00', '{"cached":null,"ignore_cache":false}'), +(28236, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:01.548+00', '{"cached":null,"ignore_cache":false}'), +(28237, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:01.751+00', '{"cached":null,"ignore_cache":false}'), +(28238, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:01.778+00', '{"cached":null,"ignore_cache":false}'), +(28239, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:01.834+00', '{"cached":null,"ignore_cache":false}'), +(28240, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:02.017+00', '{"cached":null,"ignore_cache":false}'), +(28241, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:02.02+00', '{"cached":null,"ignore_cache":false}'), +(28242, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:03.368+00', '{"cached":null,"ignore_cache":false}'), +(28243, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:03.531+00', '{"cached":null,"ignore_cache":false}'), +(28244, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:05.086+00', '{"cached":null,"ignore_cache":false}'), +(28245, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:05.146+00', '{"cached":null,"ignore_cache":false}'), +(28246, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.559+00', '{"cached":null,"ignore_cache":false}'), +(28247, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:28.968+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.024+00', '{"cached":null,"ignore_cache":false}'), +(28249, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.084+00', '{"cached":null,"ignore_cache":false}'), +(28250, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.158+00', '{"cached":null,"ignore_cache":false}'), +(28251, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.21+00', '{"cached":null,"ignore_cache":false}'), +(28252, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.213+00', '{"cached":null,"ignore_cache":false}'), +(28253, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.228+00', '{"cached":null,"ignore_cache":false}'), +(28254, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.236+00', '{"cached":null,"ignore_cache":false}'), +(28255, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.297+00', '{"cached":null,"ignore_cache":false}'), +(28256, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.314+00', '{"cached":null,"ignore_cache":false}'), +(28257, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.324+00', '{"cached":null,"ignore_cache":false}'), +(28258, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.348+00', '{"cached":null,"ignore_cache":false}'), +(28259, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.355+00', '{"cached":null,"ignore_cache":false}'), +(28260, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:29.981+00', '{"cached":null,"ignore_cache":false}'), +(28261, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:14:30.368+00', '{"cached":null,"ignore_cache":false}'), +(28262, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.677+00', '{"cached":null,"ignore_cache":false}'), +(28263, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:15.954+00', '{"cached":null,"ignore_cache":false}'), +(28264, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.066+00', '{"cached":null,"ignore_cache":false}'), +(28265, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.981+00', '{"cached":null,"ignore_cache":false}'), +(28266, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:16.981+00', '{"cached":null,"ignore_cache":false}'), +(28267, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.013+00', '{"cached":null,"ignore_cache":false}'), +(28268, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.213+00', '{"cached":null,"ignore_cache":false}'), +(28269, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.433+00', '{"cached":null,"ignore_cache":false}'), +(28270, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.482+00', '{"cached":null,"ignore_cache":false}'), +(28271, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.55+00', '{"cached":null,"ignore_cache":false}'), +(28272, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.612+00', '{"cached":null,"ignore_cache":false}'), +(28273, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.645+00', '{"cached":null,"ignore_cache":false}'), +(28274, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.757+00', '{"cached":null,"ignore_cache":false}'), +(28275, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:17.806+00', '{"cached":null,"ignore_cache":false}'), +(28276, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:18.166+00', '{"cached":null,"ignore_cache":false}'), +(28277, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:18.334+00', '{"cached":null,"ignore_cache":false}'), +(28278, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:18.46+00', '{"cached":null,"ignore_cache":false}'), +(28279, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:18.708+00', '{"cached":null,"ignore_cache":false}'), +(28280, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:18.83+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28281, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:18.896+00', '{"cached":null,"ignore_cache":false}'), +(28282, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:18.959+00', '{"cached":null,"ignore_cache":false}'), +(28283, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:19.103+00', '{"cached":null,"ignore_cache":false}'), +(28284, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:19.728+00', '{"cached":null,"ignore_cache":false}'), +(28285, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:20.229+00', '{"cached":null,"ignore_cache":false}'), +(28286, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:20.689+00', '{"cached":null,"ignore_cache":false}'), +(28287, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:21.007+00', '{"cached":null,"ignore_cache":false}'), +(28288, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.205+00', '{"cached":null,"ignore_cache":false}'), +(28289, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.269+00', '{"cached":null,"ignore_cache":false}'), +(28290, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.27+00', '{"cached":null,"ignore_cache":false}'), +(28291, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.5+00', '{"cached":null,"ignore_cache":false}'), +(28292, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.517+00', '{"cached":null,"ignore_cache":false}'), +(28293, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.59+00', '{"cached":null,"ignore_cache":false}'), +(28294, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.616+00', '{"cached":null,"ignore_cache":false}'), +(28295, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.715+00', '{"cached":null,"ignore_cache":false}'), +(28296, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.741+00', '{"cached":null,"ignore_cache":false}'), +(28297, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.762+00', '{"cached":null,"ignore_cache":false}'), +(28298, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.799+00', '{"cached":null,"ignore_cache":false}'), +(28299, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.946+00', '{"cached":null,"ignore_cache":false}'), +(28300, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.947+00', '{"cached":null,"ignore_cache":false}'), +(28301, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.947+00', '{"cached":null,"ignore_cache":false}'), +(28302, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.967+00', '{"cached":null,"ignore_cache":false}'), +(28303, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.989+00', '{"cached":null,"ignore_cache":false}'), +(28304, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:56.996+00', '{"cached":null,"ignore_cache":false}'), +(28305, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:15:59.639+00', '{"cached":null,"ignore_cache":false}'), +(28306, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:00.41+00', '{"cached":null,"ignore_cache":false}'), +(28307, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:00.469+00', '{"cached":null,"ignore_cache":false}'), +(28308, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:00.805+00', '{"cached":null,"ignore_cache":false}'), +(28309, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.955+00', '{"cached":null,"ignore_cache":false}'), +(28310, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:09.972+00', '{"cached":null,"ignore_cache":false}'), +(28311, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.269+00', '{"cached":null,"ignore_cache":false}'), +(28312, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.382+00', '{"cached":null,"ignore_cache":false}'), +(28313, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.531+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28314, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.658+00', '{"cached":null,"ignore_cache":false}'), +(28315, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.695+00', '{"cached":null,"ignore_cache":false}'), +(28316, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.775+00', '{"cached":null,"ignore_cache":false}'), +(28317, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.809+00', '{"cached":null,"ignore_cache":false}'), +(28318, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.824+00', '{"cached":null,"ignore_cache":false}'), +(28319, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.952+00', '{"cached":null,"ignore_cache":false}'), +(28320, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.955+00', '{"cached":null,"ignore_cache":false}'), +(28321, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.957+00', '{"cached":null,"ignore_cache":false}'), +(28322, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:10.997+00', '{"cached":null,"ignore_cache":false}'), +(28323, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:11.066+00', '{"cached":null,"ignore_cache":false}'), +(28324, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:11.231+00', '{"cached":null,"ignore_cache":false}'), +(28325, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:11.354+00', '{"cached":null,"ignore_cache":false}'), +(28326, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:13.184+00', '{"cached":null,"ignore_cache":false}'), +(28327, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:13.664+00', '{"cached":null,"ignore_cache":false}'), +(28328, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:14.197+00', '{"cached":null,"ignore_cache":false}'), +(28329, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:14.232+00', '{"cached":null,"ignore_cache":false}'), +(28330, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.814+00', '{"cached":null,"ignore_cache":false}'), +(28331, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.817+00', '{"cached":null,"ignore_cache":false}'), +(28332, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.824+00', '{"cached":null,"ignore_cache":false}'), +(28333, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.84+00', '{"cached":null,"ignore_cache":false}'), +(28334, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.853+00', '{"cached":null,"ignore_cache":false}'), +(28335, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.876+00', '{"cached":null,"ignore_cache":false}'), +(28336, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.889+00', '{"cached":null,"ignore_cache":false}'), +(28337, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.899+00', '{"cached":null,"ignore_cache":false}'), +(28338, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:23.912+00', '{"cached":null,"ignore_cache":false}'), +(28339, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.383+00', '{"cached":null,"ignore_cache":false}'), +(28340, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.413+00', '{"cached":null,"ignore_cache":false}'), +(28341, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.464+00', '{"cached":null,"ignore_cache":false}'), +(28342, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.507+00', '{"cached":null,"ignore_cache":false}'), +(28343, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.508+00', '{"cached":null,"ignore_cache":false}'), +(28344, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.519+00', '{"cached":null,"ignore_cache":false}'), +(28345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.533+00', '{"cached":null,"ignore_cache":false}'), +(28346, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.536+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28347, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.538+00', '{"cached":null,"ignore_cache":false}'), +(28348, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.708+00', '{"cached":null,"ignore_cache":false}'), +(28349, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.724+00', '{"cached":null,"ignore_cache":false}'), +(28350, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.739+00', '{"cached":null,"ignore_cache":false}'), +(28351, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.742+00', '{"cached":null,"ignore_cache":false}'), +(28352, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:39.748+00', '{"cached":null,"ignore_cache":false}'), +(28353, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:40.695+00', '{"cached":null,"ignore_cache":false}'), +(28354, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:16:40.705+00', '{"cached":null,"ignore_cache":false}'), +(28355, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.237+00', '{"cached":null,"ignore_cache":false}'), +(28356, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.454+00', '{"cached":null,"ignore_cache":false}'), +(28357, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:18.962+00', '{"cached":null,"ignore_cache":false}'), +(28358, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.03+00', '{"cached":null,"ignore_cache":false}'), +(28359, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.142+00', '{"cached":null,"ignore_cache":false}'), +(28360, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.326+00', '{"cached":null,"ignore_cache":false}'), +(28361, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.686+00', '{"cached":null,"ignore_cache":false}'), +(28362, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.724+00', '{"cached":null,"ignore_cache":false}'), +(28363, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:19.987+00', '{"cached":null,"ignore_cache":false}'), +(28364, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.332+00', '{"cached":null,"ignore_cache":false}'), +(28365, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.333+00', '{"cached":null,"ignore_cache":false}'), +(28366, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.571+00', '{"cached":null,"ignore_cache":false}'), +(28367, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.699+00', '{"cached":null,"ignore_cache":false}'), +(28368, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.714+00', '{"cached":null,"ignore_cache":false}'), +(28369, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.733+00', '{"cached":null,"ignore_cache":false}'), +(28370, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.747+00', '{"cached":null,"ignore_cache":false}'), +(28371, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.758+00', '{"cached":null,"ignore_cache":false}'), +(28372, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.807+00', '{"cached":null,"ignore_cache":false}'), +(28373, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:20.89+00', '{"cached":null,"ignore_cache":false}'), +(28374, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:21.116+00', '{"cached":null,"ignore_cache":false}'), +(28375, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:21.156+00', '{"cached":null,"ignore_cache":false}'), +(28376, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.873+00', '{"cached":null,"ignore_cache":false}'), +(28377, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:47.948+00', '{"cached":null,"ignore_cache":false}'), +(28378, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.028+00', '{"cached":null,"ignore_cache":false}'), +(28379, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.053+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28380, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.069+00', '{"cached":null,"ignore_cache":false}'), +(28381, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.473+00', '{"cached":null,"ignore_cache":false}'), +(28382, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.592+00', '{"cached":null,"ignore_cache":false}'), +(28383, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.856+00', '{"cached":null,"ignore_cache":false}'), +(28384, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.871+00', '{"cached":null,"ignore_cache":false}'), +(28385, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.901+00', '{"cached":null,"ignore_cache":false}'), +(28386, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.902+00', '{"cached":null,"ignore_cache":false}'), +(28387, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:48.969+00', '{"cached":null,"ignore_cache":false}'), +(28388, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:49.004+00', '{"cached":null,"ignore_cache":false}'), +(28389, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:49.099+00', '{"cached":null,"ignore_cache":false}'), +(28390, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:49.414+00', '{"cached":null,"ignore_cache":false}'), +(28391, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:17:49.693+00', '{"cached":null,"ignore_cache":false}'), +(28392, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.887+00', '{"cached":null,"ignore_cache":false}'), +(28393, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.89+00', '{"cached":null,"ignore_cache":false}'), +(28394, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.923+00', '{"cached":null,"ignore_cache":false}'), +(28395, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.939+00', '{"cached":null,"ignore_cache":false}'), +(28396, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:17.942+00', '{"cached":null,"ignore_cache":false}'), +(28397, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.344+00', '{"cached":null,"ignore_cache":false}'), +(28398, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.36+00', '{"cached":null,"ignore_cache":false}'), +(28399, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.442+00', '{"cached":null,"ignore_cache":false}'), +(28400, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.448+00', '{"cached":null,"ignore_cache":false}'), +(28401, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.485+00', '{"cached":null,"ignore_cache":false}'), +(28402, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.486+00', '{"cached":null,"ignore_cache":false}'), +(28403, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.487+00', '{"cached":null,"ignore_cache":false}'), +(28404, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.496+00', '{"cached":null,"ignore_cache":false}'), +(28405, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.502+00', '{"cached":null,"ignore_cache":false}'), +(28406, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.707+00', '{"cached":null,"ignore_cache":false}'), +(28407, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:18.866+00', '{"cached":null,"ignore_cache":false}'), +(28408, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:57.187+00', '{"cached":null,"ignore_cache":false}'), +(28409, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.032+00', '{"cached":null,"ignore_cache":false}'), +(28410, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.503+00', '{"cached":null,"ignore_cache":false}'), +(28411, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.525+00', '{"cached":null,"ignore_cache":false}'), +(28412, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.624+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28413, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.683+00', '{"cached":null,"ignore_cache":false}'), +(28414, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.872+00', '{"cached":null,"ignore_cache":false}'), +(28415, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:58.878+00', '{"cached":null,"ignore_cache":false}'), +(28416, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.02+00', '{"cached":null,"ignore_cache":false}'), +(28417, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:18:59.892+00', '{"cached":null,"ignore_cache":false}'), +(28418, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.011+00', '{"cached":null,"ignore_cache":false}'), +(28419, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.048+00', '{"cached":null,"ignore_cache":false}'), +(28420, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.495+00', '{"cached":null,"ignore_cache":false}'), +(28421, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.521+00', '{"cached":null,"ignore_cache":false}'), +(28422, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:00.917+00', '{"cached":null,"ignore_cache":false}'), +(28423, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:01.469+00', '{"cached":null,"ignore_cache":false}'), +(28424, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:01.685+00', '{"cached":null,"ignore_cache":false}'), +(28425, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:01.733+00', '{"cached":null,"ignore_cache":false}'), +(28426, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:01.798+00', '{"cached":null,"ignore_cache":false}'), +(28427, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:01.862+00', '{"cached":null,"ignore_cache":false}'), +(28428, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:01.95+00', '{"cached":null,"ignore_cache":false}'), +(28429, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:01.992+00', '{"cached":null,"ignore_cache":false}'), +(28430, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:02.206+00', '{"cached":null,"ignore_cache":false}'), +(28431, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:02.431+00', '{"cached":null,"ignore_cache":false}'), +(28432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:02.59+00', '{"cached":null,"ignore_cache":false}'), +(28433, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.069+00', '{"cached":null,"ignore_cache":false}'), +(28434, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.075+00', '{"cached":null,"ignore_cache":false}'), +(28435, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.079+00', '{"cached":null,"ignore_cache":false}'), +(28436, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.09+00', '{"cached":null,"ignore_cache":false}'), +(28437, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.098+00', '{"cached":null,"ignore_cache":false}'), +(28438, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.578+00', '{"cached":null,"ignore_cache":false}'), +(28439, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.627+00', '{"cached":null,"ignore_cache":false}'), +(28440, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.751+00', '{"cached":null,"ignore_cache":false}'), +(28441, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.767+00', '{"cached":null,"ignore_cache":false}'), +(28442, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.769+00', '{"cached":null,"ignore_cache":false}'), +(28443, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.805+00', '{"cached":null,"ignore_cache":false}'), +(28444, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.811+00', '{"cached":null,"ignore_cache":false}'), +(28445, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.836+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28446, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.873+00', '{"cached":null,"ignore_cache":false}'), +(28447, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.879+00', '{"cached":null,"ignore_cache":false}'), +(28448, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:27.893+00', '{"cached":null,"ignore_cache":false}'), +(28449, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.088+00', '{"cached":null,"ignore_cache":false}'), +(28450, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.111+00', '{"cached":null,"ignore_cache":false}'), +(28451, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.131+00', '{"cached":null,"ignore_cache":false}'), +(28452, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.132+00', '{"cached":null,"ignore_cache":false}'), +(28453, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.15+00', '{"cached":null,"ignore_cache":false}'), +(28454, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.656+00', '{"cached":null,"ignore_cache":false}'), +(28455, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.733+00', '{"cached":null,"ignore_cache":false}'), +(28456, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.77+00', '{"cached":null,"ignore_cache":false}'), +(28457, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.834+00', '{"cached":null,"ignore_cache":false}'), +(28458, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.862+00', '{"cached":null,"ignore_cache":false}'), +(28459, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.87+00', '{"cached":null,"ignore_cache":false}'), +(28460, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.876+00', '{"cached":null,"ignore_cache":false}'), +(28461, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.886+00', '{"cached":null,"ignore_cache":false}'), +(28462, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.933+00', '{"cached":null,"ignore_cache":false}'), +(28463, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:57.938+00', '{"cached":null,"ignore_cache":false}'), +(28464, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:19:58.024+00', '{"cached":null,"ignore_cache":false}'), +(28465, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.19+00', '{"cached":null,"ignore_cache":false}'), +(28466, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.302+00', '{"cached":null,"ignore_cache":false}'), +(28467, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.344+00', '{"cached":null,"ignore_cache":false}'), +(28468, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.354+00', '{"cached":null,"ignore_cache":false}'), +(28469, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.368+00', '{"cached":null,"ignore_cache":false}'), +(28470, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:27.998+00', '{"cached":null,"ignore_cache":false}'), +(28471, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.04+00', '{"cached":null,"ignore_cache":false}'), +(28472, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.054+00', '{"cached":null,"ignore_cache":false}'), +(28473, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.054+00', '{"cached":null,"ignore_cache":false}'), +(28474, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.066+00', '{"cached":null,"ignore_cache":false}'), +(28475, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.067+00', '{"cached":null,"ignore_cache":false}'), +(28476, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.124+00', '{"cached":null,"ignore_cache":false}'), +(28477, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.171+00', '{"cached":null,"ignore_cache":false}'), +(28478, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.203+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28479, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.789+00', '{"cached":null,"ignore_cache":false}'), +(28480, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:28.84+00', '{"cached":null,"ignore_cache":false}'), +(28481, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.281+00', '{"cached":null,"ignore_cache":false}'), +(28482, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.323+00', '{"cached":null,"ignore_cache":false}'), +(28483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.324+00', '{"cached":null,"ignore_cache":false}'), +(28484, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.358+00', '{"cached":null,"ignore_cache":false}'), +(28485, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.416+00', '{"cached":null,"ignore_cache":false}'), +(28486, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.666+00', '{"cached":null,"ignore_cache":false}'), +(28487, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.75+00', '{"cached":null,"ignore_cache":false}'), +(28488, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.802+00', '{"cached":null,"ignore_cache":false}'), +(28489, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.817+00', '{"cached":null,"ignore_cache":false}'), +(28490, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.824+00', '{"cached":null,"ignore_cache":false}'), +(28491, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.842+00', '{"cached":null,"ignore_cache":false}'), +(28492, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.869+00', '{"cached":null,"ignore_cache":false}'), +(28493, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.897+00', '{"cached":null,"ignore_cache":false}'), +(28494, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:57.93+00', '{"cached":null,"ignore_cache":false}'), +(28495, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:58.369+00', '{"cached":null,"ignore_cache":false}'), +(28496, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:20:58.478+00', '{"cached":null,"ignore_cache":false}'), +(28497, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.104+00', '{"cached":null,"ignore_cache":false}'), +(28498, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.125+00', '{"cached":null,"ignore_cache":false}'), +(28499, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.158+00', '{"cached":null,"ignore_cache":false}'), +(28500, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.167+00', '{"cached":null,"ignore_cache":false}'), +(28501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.181+00', '{"cached":null,"ignore_cache":false}'), +(28502, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.462+00', '{"cached":null,"ignore_cache":false}'), +(28503, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.486+00', '{"cached":null,"ignore_cache":false}'), +(28504, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.551+00', '{"cached":null,"ignore_cache":false}'), +(28505, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.58+00', '{"cached":null,"ignore_cache":false}'), +(28506, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.582+00', '{"cached":null,"ignore_cache":false}'), +(28507, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.618+00', '{"cached":null,"ignore_cache":false}'), +(28508, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.66+00', '{"cached":null,"ignore_cache":false}'), +(28509, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.67+00', '{"cached":null,"ignore_cache":false}'), +(28510, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:27.694+00', '{"cached":null,"ignore_cache":false}'), +(28511, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:28.068+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28512, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:28.115+00', '{"cached":null,"ignore_cache":false}'), +(28513, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.579+00', '{"cached":null,"ignore_cache":false}'), +(28514, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.605+00', '{"cached":null,"ignore_cache":false}'), +(28515, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.621+00', '{"cached":null,"ignore_cache":false}'), +(28516, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.651+00', '{"cached":null,"ignore_cache":false}'), +(28517, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.685+00', '{"cached":null,"ignore_cache":false}'), +(28518, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.719+00', '{"cached":null,"ignore_cache":false}'), +(28519, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.761+00', '{"cached":null,"ignore_cache":false}'), +(28520, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.762+00', '{"cached":null,"ignore_cache":false}'), +(28521, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:21:59.772+00', '{"cached":null,"ignore_cache":false}'), +(28522, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.49+00', '{"cached":null,"ignore_cache":false}'), +(28523, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.576+00', '{"cached":null,"ignore_cache":false}'), +(28524, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.67+00', '{"cached":null,"ignore_cache":false}'), +(28525, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.705+00', '{"cached":null,"ignore_cache":false}'), +(28526, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:04.736+00', '{"cached":null,"ignore_cache":false}'), +(28527, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:05.877+00', '{"cached":null,"ignore_cache":false}'), +(28528, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:06.006+00', '{"cached":null,"ignore_cache":false}'), +(28529, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.347+00', '{"cached":null,"ignore_cache":false}'), +(28530, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.446+00', '{"cached":null,"ignore_cache":false}'), +(28531, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.462+00', '{"cached":null,"ignore_cache":false}'), +(28532, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.462+00', '{"cached":null,"ignore_cache":false}'), +(28533, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.466+00', '{"cached":null,"ignore_cache":false}'), +(28534, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.503+00', '{"cached":null,"ignore_cache":false}'), +(28535, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.506+00', '{"cached":null,"ignore_cache":false}'), +(28536, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.529+00', '{"cached":null,"ignore_cache":false}'), +(28537, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:29.578+00', '{"cached":null,"ignore_cache":false}'), +(28538, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.254+00', '{"cached":null,"ignore_cache":false}'), +(28539, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.327+00', '{"cached":null,"ignore_cache":false}'), +(28540, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.367+00', '{"cached":null,"ignore_cache":false}'), +(28541, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.374+00', '{"cached":null,"ignore_cache":false}'), +(28542, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:39.387+00', '{"cached":null,"ignore_cache":false}'), +(28543, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:40.383+00', '{"cached":null,"ignore_cache":false}'), +(28544, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:40.482+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28545, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.682+00', '{"cached":null,"ignore_cache":false}'), +(28546, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.709+00', '{"cached":null,"ignore_cache":false}'), +(28547, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.762+00', '{"cached":null,"ignore_cache":false}'), +(28548, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.766+00', '{"cached":null,"ignore_cache":false}'), +(28549, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.77+00', '{"cached":null,"ignore_cache":false}'), +(28550, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.776+00', '{"cached":null,"ignore_cache":false}'), +(28551, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.79+00', '{"cached":null,"ignore_cache":false}'), +(28552, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.798+00', '{"cached":null,"ignore_cache":false}'), +(28553, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:22:59.81+00', '{"cached":null,"ignore_cache":false}'), +(28554, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.147+00', '{"cached":null,"ignore_cache":false}'), +(28555, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.206+00', '{"cached":null,"ignore_cache":false}'), +(28556, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.232+00', '{"cached":null,"ignore_cache":false}'), +(28557, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.254+00', '{"cached":null,"ignore_cache":false}'), +(28558, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:20.273+00', '{"cached":null,"ignore_cache":false}'), +(28559, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:21.036+00', '{"cached":null,"ignore_cache":false}'), +(28560, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:21.338+00', '{"cached":null,"ignore_cache":false}'), +(28561, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.589+00', '{"cached":null,"ignore_cache":false}'), +(28562, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.617+00', '{"cached":null,"ignore_cache":false}'), +(28563, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.738+00', '{"cached":null,"ignore_cache":false}'), +(28564, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.762+00', '{"cached":null,"ignore_cache":false}'), +(28565, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.763+00', '{"cached":null,"ignore_cache":false}'), +(28566, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.782+00', '{"cached":null,"ignore_cache":false}'), +(28567, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.783+00', '{"cached":null,"ignore_cache":false}'), +(28568, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.786+00', '{"cached":null,"ignore_cache":false}'), +(28569, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:30.817+00', '{"cached":null,"ignore_cache":false}'), +(28570, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.648+00', '{"cached":null,"ignore_cache":false}'), +(28571, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.67+00', '{"cached":null,"ignore_cache":false}'), +(28572, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.697+00', '{"cached":null,"ignore_cache":false}'), +(28573, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.737+00', '{"cached":null,"ignore_cache":false}'), +(28574, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:23:59.751+00', '{"cached":null,"ignore_cache":false}'), +(28575, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:00.54+00', '{"cached":null,"ignore_cache":false}'), +(28576, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:00.582+00', '{"cached":null,"ignore_cache":false}'), +(28577, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.414+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28578, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.429+00', '{"cached":null,"ignore_cache":false}'), +(28579, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.515+00', '{"cached":null,"ignore_cache":false}'), +(28580, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.52+00', '{"cached":null,"ignore_cache":false}'), +(28581, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.558+00', '{"cached":null,"ignore_cache":false}'), +(28582, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.563+00', '{"cached":null,"ignore_cache":false}'), +(28583, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.582+00', '{"cached":null,"ignore_cache":false}'), +(28584, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.601+00', '{"cached":null,"ignore_cache":false}'), +(28585, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:01.614+00', '{"cached":null,"ignore_cache":false}'), +(28586, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.092+00', '{"cached":null,"ignore_cache":false}'), +(28587, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.158+00', '{"cached":null,"ignore_cache":false}'), +(28588, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.219+00', '{"cached":null,"ignore_cache":false}'), +(28589, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.231+00', '{"cached":null,"ignore_cache":false}'), +(28590, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.27+00', '{"cached":null,"ignore_cache":false}'), +(28591, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.271+00', '{"cached":null,"ignore_cache":false}'), +(28592, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.281+00', '{"cached":null,"ignore_cache":false}'), +(28593, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.289+00', '{"cached":null,"ignore_cache":false}'), +(28594, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:31.292+00', '{"cached":null,"ignore_cache":false}'), +(28595, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.119+00', '{"cached":null,"ignore_cache":false}'), +(28596, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.157+00', '{"cached":null,"ignore_cache":false}'), +(28597, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.192+00', '{"cached":null,"ignore_cache":false}'), +(28598, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.201+00', '{"cached":null,"ignore_cache":false}'), +(28599, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:38.216+00', '{"cached":null,"ignore_cache":false}'), +(28600, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:39.19+00', '{"cached":null,"ignore_cache":false}'), +(28601, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:24:39.359+00', '{"cached":null,"ignore_cache":false}'), +(28602, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.698+00', '{"cached":null,"ignore_cache":false}'), +(28603, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.759+00', '{"cached":null,"ignore_cache":false}'), +(28604, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.76+00', '{"cached":null,"ignore_cache":false}'), +(28605, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.811+00', '{"cached":null,"ignore_cache":false}'), +(28606, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.842+00', '{"cached":null,"ignore_cache":false}'), +(28607, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.858+00', '{"cached":null,"ignore_cache":false}'), +(28608, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.872+00', '{"cached":null,"ignore_cache":false}'), +(28609, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.879+00', '{"cached":null,"ignore_cache":false}'), +(28610, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:04.892+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28611, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.169+00', '{"cached":null,"ignore_cache":false}'), +(28612, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.426+00', '{"cached":null,"ignore_cache":false}'), +(28613, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.448+00', '{"cached":null,"ignore_cache":false}'), +(28614, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.454+00', '{"cached":null,"ignore_cache":false}'), +(28615, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:20.46+00', '{"cached":null,"ignore_cache":false}'), +(28616, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:21.307+00', '{"cached":null,"ignore_cache":false}'), +(28617, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:21.321+00', '{"cached":null,"ignore_cache":false}'), +(28618, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.371+00', '{"cached":null,"ignore_cache":false}'), +(28619, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.404+00', '{"cached":null,"ignore_cache":false}'), +(28620, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.418+00', '{"cached":null,"ignore_cache":false}'), +(28621, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.421+00', '{"cached":null,"ignore_cache":false}'), +(28622, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.52+00', '{"cached":null,"ignore_cache":false}'), +(28623, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.52+00', '{"cached":null,"ignore_cache":false}'), +(28624, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.546+00', '{"cached":null,"ignore_cache":false}'), +(28625, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.592+00', '{"cached":null,"ignore_cache":false}'), +(28626, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:25:36.606+00', '{"cached":null,"ignore_cache":false}'), +(28627, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.408+00', '{"cached":null,"ignore_cache":false}'), +(28628, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.477+00', '{"cached":null,"ignore_cache":false}'), +(28629, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.477+00', '{"cached":null,"ignore_cache":false}'), +(28630, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.481+00', '{"cached":null,"ignore_cache":false}'), +(28631, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:02.527+00', '{"cached":null,"ignore_cache":false}'), +(28632, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:03.428+00', '{"cached":null,"ignore_cache":false}'), +(28633, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:03.442+00', '{"cached":null,"ignore_cache":false}'), +(28634, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.103+00', '{"cached":null,"ignore_cache":false}'), +(28635, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.143+00', '{"cached":null,"ignore_cache":false}'), +(28636, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.229+00', '{"cached":null,"ignore_cache":false}'), +(28637, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.231+00', '{"cached":null,"ignore_cache":false}'), +(28638, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.241+00', '{"cached":null,"ignore_cache":false}'), +(28639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.287+00', '{"cached":null,"ignore_cache":false}'), +(28640, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.294+00', '{"cached":null,"ignore_cache":false}'), +(28641, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.315+00', '{"cached":null,"ignore_cache":false}'), +(28642, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:08.322+00', '{"cached":null,"ignore_cache":false}'), +(28643, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.358+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28644, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.428+00', '{"cached":null,"ignore_cache":false}'), +(28645, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.434+00', '{"cached":null,"ignore_cache":false}'), +(28646, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.472+00', '{"cached":null,"ignore_cache":false}'), +(28647, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.484+00', '{"cached":null,"ignore_cache":false}'), +(28648, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.559+00', '{"cached":null,"ignore_cache":false}'), +(28649, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.571+00', '{"cached":null,"ignore_cache":false}'), +(28650, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.572+00', '{"cached":null,"ignore_cache":false}'), +(28651, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:39.579+00', '{"cached":null,"ignore_cache":false}'), +(28652, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.098+00', '{"cached":null,"ignore_cache":false}'), +(28653, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.119+00', '{"cached":null,"ignore_cache":false}'), +(28654, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.154+00', '{"cached":null,"ignore_cache":false}'), +(28655, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.166+00', '{"cached":null,"ignore_cache":false}'), +(28656, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:45.173+00', '{"cached":null,"ignore_cache":false}'), +(28657, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:46.089+00', '{"cached":null,"ignore_cache":false}'), +(28658, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:26:46.251+00', '{"cached":null,"ignore_cache":false}'), +(28659, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:11.49+00', '{"cached":null,"ignore_cache":false}'), +(28660, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.849+00', '{"cached":null,"ignore_cache":false}'), +(28661, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.851+00', '{"cached":null,"ignore_cache":false}'), +(28662, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.862+00', '{"cached":null,"ignore_cache":false}'), +(28663, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.864+00', '{"cached":null,"ignore_cache":false}'), +(28664, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.944+00', '{"cached":null,"ignore_cache":false}'), +(28665, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.945+00', '{"cached":null,"ignore_cache":false}'), +(28666, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.95+00', '{"cached":null,"ignore_cache":false}'), +(28667, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:12.951+00', '{"cached":null,"ignore_cache":false}'), +(28668, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.472+00', '{"cached":null,"ignore_cache":false}'), +(28669, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.481+00', '{"cached":null,"ignore_cache":false}'), +(28670, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.491+00', '{"cached":null,"ignore_cache":false}'), +(28671, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.509+00', '{"cached":null,"ignore_cache":false}'), +(28672, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:28.555+00', '{"cached":null,"ignore_cache":false}'), +(28673, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:29.447+00', '{"cached":null,"ignore_cache":false}'), +(28674, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:29.56+00', '{"cached":null,"ignore_cache":false}'), +(28675, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.412+00', '{"cached":null,"ignore_cache":false}'), +(28676, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.422+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28677, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.423+00', '{"cached":null,"ignore_cache":false}'), +(28678, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.449+00', '{"cached":null,"ignore_cache":false}'), +(28679, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.474+00', '{"cached":null,"ignore_cache":false}'), +(28680, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.484+00', '{"cached":null,"ignore_cache":false}'), +(28681, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.494+00', '{"cached":null,"ignore_cache":false}'), +(28682, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.509+00', '{"cached":null,"ignore_cache":false}'), +(28683, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:27:43.515+00', '{"cached":null,"ignore_cache":false}'), +(28684, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.254+00', '{"cached":null,"ignore_cache":false}'), +(28685, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.436+00', '{"cached":null,"ignore_cache":false}'), +(28686, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.449+00', '{"cached":null,"ignore_cache":false}'), +(28687, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.512+00', '{"cached":null,"ignore_cache":false}'), +(28688, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:10.602+00', '{"cached":null,"ignore_cache":false}'), +(28689, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:11.496+00', '{"cached":null,"ignore_cache":false}'), +(28690, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:11.538+00', '{"cached":null,"ignore_cache":false}'), +(28691, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.529+00', '{"cached":null,"ignore_cache":false}'), +(28692, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.561+00', '{"cached":null,"ignore_cache":false}'), +(28693, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.569+00', '{"cached":null,"ignore_cache":false}'), +(28694, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.597+00', '{"cached":null,"ignore_cache":false}'), +(28695, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.599+00', '{"cached":null,"ignore_cache":false}'), +(28696, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.609+00', '{"cached":null,"ignore_cache":false}'), +(28697, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.635+00', '{"cached":null,"ignore_cache":false}'), +(28698, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.639+00', '{"cached":null,"ignore_cache":false}'), +(28699, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:17.652+00', '{"cached":null,"ignore_cache":false}'), +(28700, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.473+00', '{"cached":null,"ignore_cache":false}'), +(28701, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.612+00', '{"cached":null,"ignore_cache":false}'), +(28702, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.684+00', '{"cached":null,"ignore_cache":false}'), +(28703, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.764+00', '{"cached":null,"ignore_cache":false}'), +(28704, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.855+00', '{"cached":null,"ignore_cache":false}'), +(28705, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.871+00', '{"cached":null,"ignore_cache":false}'), +(28706, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.893+00', '{"cached":null,"ignore_cache":false}'), +(28707, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.918+00', '{"cached":null,"ignore_cache":false}'), +(28708, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.92+00', '{"cached":null,"ignore_cache":false}'), +(28709, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.956+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28710, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.961+00', '{"cached":null,"ignore_cache":false}'), +(28711, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.967+00', '{"cached":null,"ignore_cache":false}'), +(28712, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.974+00', '{"cached":null,"ignore_cache":false}'), +(28713, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:48.988+00', '{"cached":null,"ignore_cache":false}'), +(28714, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:49.546+00', '{"cached":null,"ignore_cache":false}'), +(28715, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:28:49.654+00', '{"cached":null,"ignore_cache":false}'), +(28716, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:13.449+00', '{"cached":null,"ignore_cache":null}'), +(28717, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.297+00', '{"cached":null,"ignore_cache":false}'), +(28718, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.46+00', '{"cached":null,"ignore_cache":false}'), +(28719, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.486+00', '{"cached":null,"ignore_cache":false}'), +(28720, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.525+00', '{"cached":null,"ignore_cache":false}'), +(28721, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.562+00', '{"cached":null,"ignore_cache":false}'), +(28722, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.622+00', '{"cached":null,"ignore_cache":false}'), +(28723, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.637+00', '{"cached":null,"ignore_cache":false}'), +(28724, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.729+00', '{"cached":null,"ignore_cache":false}'), +(28725, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:14.768+00', '{"cached":null,"ignore_cache":false}'), +(28726, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:32.4+00', '{"cached":null,"ignore_cache":null}'), +(28727, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:54.775+00', '{"cached":null,"ignore_cache":null}'), +(28728, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:57.399+00', '{"cached":null,"ignore_cache":null}'), +(28729, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:58.215+00', '{"cached":null,"ignore_cache":false}'), +(28730, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:58.308+00', '{"cached":null,"ignore_cache":null}'), +(28731, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:59.169+00', '{"cached":null,"ignore_cache":null}'), +(28732, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:29:59.22+00', '{"cached":null,"ignore_cache":null}'), +(28733, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:00.009+00', '{"cached":null,"ignore_cache":null}'), +(28734, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:00.071+00', '{"cached":null,"ignore_cache":false}'), +(28735, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:00.802+00', '{"cached":null,"ignore_cache":false}'), +(28736, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:01.03+00', '{"cached":null,"ignore_cache":null}'), +(28737, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:01.607+00', '{"cached":null,"ignore_cache":null}'), +(28738, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:01.65+00', '{"cached":null,"ignore_cache":null}'), +(28739, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:02.405+00', '{"cached":null,"ignore_cache":false}'), +(28740, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:03.242+00', '{"cached":null,"ignore_cache":null}'), +(28741, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:03.928+00', '{"cached":null,"ignore_cache":false}'), +(28742, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:04.129+00', '{"cached":null,"ignore_cache":null}'), +(28743, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:04.736+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28744, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:05.025+00', '{"cached":null,"ignore_cache":null}'), +(28745, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:05.669+00', '{"cached":null,"ignore_cache":false}'), +(28746, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:39.703+00', '{"cached":null,"ignore_cache":false}'), +(28747, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:39.249+00', '{"cached":null,"ignore_cache":null}'), +(28748, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.296+00', '{"cached":null,"ignore_cache":false}'), +(28749, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.334+00', '{"cached":null,"ignore_cache":false}'), +(28750, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.462+00', '{"cached":null,"ignore_cache":false}'), +(28751, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.533+00', '{"cached":null,"ignore_cache":false}'), +(28752, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.534+00', '{"cached":null,"ignore_cache":false}'), +(28753, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.598+00', '{"cached":null,"ignore_cache":false}'), +(28754, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.604+00', '{"cached":null,"ignore_cache":false}'), +(28755, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.665+00', '{"cached":null,"ignore_cache":false}'), +(28756, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:31:40.695+00', '{"cached":null,"ignore_cache":false}'), +(28757, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.02+00', '{"cached":null,"ignore_cache":false}'), +(28758, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.042+00', '{"cached":null,"ignore_cache":false}'), +(28759, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.046+00', '{"cached":null,"ignore_cache":false}'), +(28760, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.059+00', '{"cached":null,"ignore_cache":false}'), +(28761, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.085+00', '{"cached":null,"ignore_cache":false}'), +(28762, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.095+00', '{"cached":null,"ignore_cache":false}'), +(28763, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.107+00', '{"cached":null,"ignore_cache":false}'), +(28764, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.116+00', '{"cached":null,"ignore_cache":false}'), +(28765, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:11.12+00', '{"cached":null,"ignore_cache":false}'), +(28766, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:18.829+00', '{"cached":null,"ignore_cache":false}'), +(28767, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:38.077+00', '{"cached":null,"ignore_cache":false}'), +(28768, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:54.778+00', '{"cached":null,"ignore_cache":false}'), +(28769, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:06.926+00', '{"cached":null,"ignore_cache":null}'), +(28770, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.906+00', '{"cached":null,"ignore_cache":false}'), +(28771, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.956+00', '{"cached":null,"ignore_cache":false}'), +(28772, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.966+00', '{"cached":null,"ignore_cache":false}'), +(28773, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:07.996+00', '{"cached":null,"ignore_cache":false}'), +(28774, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:08.058+00', '{"cached":null,"ignore_cache":false}'), +(28775, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:08.112+00', '{"cached":null,"ignore_cache":false}'), +(28776, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:08.142+00', '{"cached":null,"ignore_cache":false}'), +(28777, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:08.15+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28778, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:33:08.271+00', '{"cached":null,"ignore_cache":false}'), +(28779, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:07.72+00', '{"cached":null,"ignore_cache":null}'), +(28780, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.196+00', '{"cached":null,"ignore_cache":null}'), +(28781, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.666+00', '{"cached":null,"ignore_cache":false}'), +(28782, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.699+00', '{"cached":null,"ignore_cache":false}'), +(28783, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.705+00', '{"cached":null,"ignore_cache":false}'), +(28784, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.73+00', '{"cached":null,"ignore_cache":false}'), +(28785, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.746+00', '{"cached":null,"ignore_cache":false}'), +(28786, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.777+00', '{"cached":null,"ignore_cache":false}'), +(28787, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.798+00', '{"cached":null,"ignore_cache":false}'), +(28788, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.836+00', '{"cached":null,"ignore_cache":false}'), +(28789, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:28.89+00', '{"cached":null,"ignore_cache":false}'), +(28790, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:37.44+00', '{"cached":null,"ignore_cache":null}'), +(28791, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:53.926+00', '{"cached":null,"ignore_cache":null}'), +(28792, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:54.352+00', '{"cached":null,"ignore_cache":null}'), +(28793, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:54.858+00', '{"cached":null,"ignore_cache":false}'), +(28794, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:55.022+00', '{"cached":null,"ignore_cache":null}'), +(28795, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:55.215+00', '{"cached":null,"ignore_cache":null}'), +(28796, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:55.833+00', '{"cached":null,"ignore_cache":false}'), +(28797, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:55.969+00', '{"cached":null,"ignore_cache":null}'), +(28798, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:56.521+00', '{"cached":null,"ignore_cache":null}'), +(28799, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:56.875+00', '{"cached":null,"ignore_cache":false}'), +(28800, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:57.131+00', '{"cached":null,"ignore_cache":null}'), +(28801, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:57.234+00', '{"cached":null,"ignore_cache":null}'), +(28802, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:58.038+00', '{"cached":null,"ignore_cache":false}'), +(28803, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:59.118+00', '{"cached":null,"ignore_cache":null}'), +(28804, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:34:59.872+00', '{"cached":null,"ignore_cache":false}'), +(28805, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:00.533+00', '{"cached":null,"ignore_cache":null}'), +(28806, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:01.241+00', '{"cached":null,"ignore_cache":false}'), +(28807, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:40.415+00', '{"cached":null,"ignore_cache":null}'), +(28808, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.482+00', '{"cached":null,"ignore_cache":false}'), +(28809, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.506+00', '{"cached":null,"ignore_cache":false}'), +(28810, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.563+00', '{"cached":null,"ignore_cache":false}'), +(28811, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.584+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28812, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.615+00', '{"cached":null,"ignore_cache":false}'), +(28813, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.639+00', '{"cached":null,"ignore_cache":false}'), +(28814, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.682+00', '{"cached":null,"ignore_cache":false}'), +(28815, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.725+00', '{"cached":null,"ignore_cache":false}'), +(28816, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:35:41.806+00', '{"cached":null,"ignore_cache":false}'), +(28817, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:36:30.749+00', '{"cached":null,"ignore_cache":null}'), +(28818, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:36:42.31+00', '{"cached":null,"ignore_cache":null}'), +(28819, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:36:46.101+00', '{"cached":null,"ignore_cache":null}'), +(28820, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:36:47.025+00', '{"cached":null,"ignore_cache":false}'), +(28821, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:17.927+00', '{"cached":null,"ignore_cache":null}'), +(28822, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:18.521+00', '{"cached":null,"ignore_cache":null}'), +(28823, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:18.821+00', '{"cached":null,"ignore_cache":null}'), +(28824, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:19.656+00', '{"cached":null,"ignore_cache":false}'), +(28825, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:20.226+00', '{"cached":null,"ignore_cache":null}'), +(28826, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:21.013+00', '{"cached":null,"ignore_cache":false}'), +(28827, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:21.446+00', '{"cached":null,"ignore_cache":null}'), +(28828, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:22.1+00', '{"cached":null,"ignore_cache":null}'), +(28829, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:22.708+00', '{"cached":null,"ignore_cache":null}'), +(28830, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:23.447+00', '{"cached":null,"ignore_cache":false}'), +(28831, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:25.254+00', '{"cached":null,"ignore_cache":null}'), +(28832, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:25.956+00', '{"cached":null,"ignore_cache":false}'), +(28833, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:26.238+00', '{"cached":null,"ignore_cache":null}'), +(28834, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:27.012+00', '{"cached":null,"ignore_cache":null}'), +(28835, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:27.592+00', '{"cached":null,"ignore_cache":null}'), +(28836, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:28.261+00', '{"cached":null,"ignore_cache":false}'), +(28837, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.586+00', '{"cached":null,"ignore_cache":false}'), +(28838, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.62+00', '{"cached":null,"ignore_cache":false}'), +(28839, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.644+00', '{"cached":null,"ignore_cache":false}'), +(28840, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.662+00', '{"cached":null,"ignore_cache":false}'), +(28841, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:21.724+00', '{"cached":null,"ignore_cache":false}'), +(28842, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:22.294+00', '{"cached":null,"ignore_cache":false}'), +(28843, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:22.352+00', '{"cached":null,"ignore_cache":false}'), +(28844, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:29.92+00', '{"cached":null,"ignore_cache":null}'), +(28845, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.931+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28846, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.968+00', '{"cached":null,"ignore_cache":false}'), +(28847, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:30.99+00', '{"cached":null,"ignore_cache":false}'), +(28848, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:31.007+00', '{"cached":null,"ignore_cache":false}'), +(28849, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:31.019+00', '{"cached":null,"ignore_cache":false}'), +(28850, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:31.023+00', '{"cached":null,"ignore_cache":false}'), +(28851, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:31.028+00', '{"cached":null,"ignore_cache":false}'), +(28852, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:31.035+00', '{"cached":null,"ignore_cache":false}'), +(28853, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:38:31.139+00', '{"cached":null,"ignore_cache":false}'), +(28854, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:03.502+00', '{"cached":null,"ignore_cache":null}'), +(28855, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.335+00', '{"cached":null,"ignore_cache":false}'), +(28856, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.38+00', '{"cached":null,"ignore_cache":false}'), +(28857, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.381+00', '{"cached":null,"ignore_cache":false}'), +(28858, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.388+00', '{"cached":null,"ignore_cache":false}'), +(28859, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:04.399+00', '{"cached":null,"ignore_cache":false}'), +(28860, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:05.563+00', '{"cached":null,"ignore_cache":false}'), +(28861, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:05.719+00', '{"cached":null,"ignore_cache":false}'), +(28862, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:07.994+00', '{"cached":null,"ignore_cache":null}'), +(28863, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.464+00', '{"cached":null,"ignore_cache":false}'), +(28864, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.605+00', '{"cached":null,"ignore_cache":false}'), +(28865, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.65+00', '{"cached":null,"ignore_cache":false}'), +(28866, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.73+00', '{"cached":null,"ignore_cache":false}'), +(28867, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.769+00', '{"cached":null,"ignore_cache":false}'), +(28868, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.814+00', '{"cached":null,"ignore_cache":false}'), +(28869, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.832+00', '{"cached":null,"ignore_cache":false}'), +(28870, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.885+00', '{"cached":null,"ignore_cache":false}'), +(28871, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:08.93+00', '{"cached":null,"ignore_cache":false}'), +(28872, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:20.592+00', '{"cached":null,"ignore_cache":null}'), +(28873, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:20.969+00', '{"cached":null,"ignore_cache":false}'), +(28874, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.217+00', '{"cached":null,"ignore_cache":null}'), +(28875, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.604+00', '{"cached":null,"ignore_cache":false}'), +(28876, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.716+00', '{"cached":null,"ignore_cache":false}'), +(28877, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.722+00', '{"cached":null,"ignore_cache":false}'), +(28878, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.731+00', '{"cached":null,"ignore_cache":false}'), +(28879, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.771+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28880, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.817+00', '{"cached":null,"ignore_cache":false}'), +(28881, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.85+00', '{"cached":null,"ignore_cache":false}'), +(28882, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.905+00', '{"cached":null,"ignore_cache":false}'), +(28883, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:29.977+00', '{"cached":null,"ignore_cache":false}'), +(28884, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:45.839+00', '{"cached":null,"ignore_cache":false}'), +(28885, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.107+00', '{"cached":null,"ignore_cache":false}'), +(28886, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.246+00', '{"cached":null,"ignore_cache":false}'), +(28887, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.544+00', '{"cached":null,"ignore_cache":false}'), +(28888, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.575+00', '{"cached":null,"ignore_cache":false}'), +(28889, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.66+00', '{"cached":null,"ignore_cache":false}'), +(28890, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.844+00', '{"cached":null,"ignore_cache":false}'), +(28891, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.919+00', '{"cached":null,"ignore_cache":false}'), +(28892, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:46.976+00', '{"cached":null,"ignore_cache":false}'), +(28893, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.256+00', '{"cached":null,"ignore_cache":false}'), +(28894, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.285+00', '{"cached":null,"ignore_cache":false}'), +(28895, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.287+00', '{"cached":null,"ignore_cache":false}'), +(28896, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.45+00', '{"cached":null,"ignore_cache":false}'), +(28897, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.834+00', '{"cached":null,"ignore_cache":false}'), +(28898, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.858+00', '{"cached":null,"ignore_cache":false}'), +(28899, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.883+00', '{"cached":null,"ignore_cache":false}'), +(28900, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.886+00', '{"cached":null,"ignore_cache":false}'), +(28901, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:47.902+00', '{"cached":null,"ignore_cache":false}'), +(28902, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.048+00', '{"cached":null,"ignore_cache":false}'), +(28903, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.053+00', '{"cached":null,"ignore_cache":false}'), +(28904, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.086+00', '{"cached":null,"ignore_cache":false}'), +(28905, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.153+00', '{"cached":null,"ignore_cache":false}'), +(28906, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.175+00', '{"cached":null,"ignore_cache":false}'), +(28907, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.21+00', '{"cached":null,"ignore_cache":false}'), +(28908, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.436+00', '{"cached":null,"ignore_cache":false}'), +(28909, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.475+00', '{"cached":null,"ignore_cache":false}'), +(28910, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:48.612+00', '{"cached":null,"ignore_cache":false}'), +(28911, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:49.265+00', '{"cached":null,"ignore_cache":false}'), +(28912, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:49.332+00', '{"cached":null,"ignore_cache":false}'), +(28913, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:50.041+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28914, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-23 11:39:54.952+00', '{"cached":null,"ignore_cache":null}'), +(28915, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.297+00', '{"cached":null,"ignore_cache":false}'), +(28916, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.635+00', '{"cached":null,"ignore_cache":false}'), +(28917, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.667+00', '{"cached":null,"ignore_cache":false}'), +(28918, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.715+00', '{"cached":null,"ignore_cache":false}'), +(28919, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.717+00', '{"cached":null,"ignore_cache":false}'), +(28920, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.724+00', '{"cached":null,"ignore_cache":false}'), +(28921, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.73+00', '{"cached":null,"ignore_cache":false}'), +(28922, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.744+00', '{"cached":null,"ignore_cache":false}'), +(28923, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.759+00', '{"cached":null,"ignore_cache":false}'), +(28924, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.809+00', '{"cached":null,"ignore_cache":false}'), +(28925, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.818+00', '{"cached":null,"ignore_cache":false}'), +(28926, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.822+00', '{"cached":null,"ignore_cache":false}'), +(28927, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.838+00', '{"cached":null,"ignore_cache":false}'), +(28928, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:22.879+00', '{"cached":null,"ignore_cache":false}'), +(28929, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:23.612+00', '{"cached":null,"ignore_cache":false}'), +(28930, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:23.681+00', '{"cached":null,"ignore_cache":false}'), +(28931, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.381+00', '{"cached":null,"ignore_cache":false}'), +(28932, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.397+00', '{"cached":null,"ignore_cache":false}'), +(28933, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.424+00', '{"cached":null,"ignore_cache":false}'), +(28934, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.458+00', '{"cached":null,"ignore_cache":false}'), +(28935, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.495+00', '{"cached":null,"ignore_cache":false}'), +(28936, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.505+00', '{"cached":null,"ignore_cache":false}'), +(28937, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.519+00', '{"cached":null,"ignore_cache":false}'), +(28938, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.557+00', '{"cached":null,"ignore_cache":false}'), +(28939, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:39.57+00', '{"cached":null,"ignore_cache":false}'), +(28940, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.535+00', '{"cached":null,"ignore_cache":false}'), +(28941, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.597+00', '{"cached":null,"ignore_cache":false}'), +(28942, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.619+00', '{"cached":null,"ignore_cache":false}'), +(28943, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.659+00', '{"cached":null,"ignore_cache":false}'), +(28944, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.695+00', '{"cached":null,"ignore_cache":false}'), +(28945, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.752+00', '{"cached":null,"ignore_cache":false}'), +(28946, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.753+00', '{"cached":null,"ignore_cache":false}'), +(28947, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.782+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28948, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:46.92+00', '{"cached":null,"ignore_cache":false}'), +(28949, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.58+00', '{"cached":null,"ignore_cache":false}'), +(28950, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.586+00', '{"cached":null,"ignore_cache":false}'), +(28951, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.595+00', '{"cached":null,"ignore_cache":false}'), +(28952, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.613+00', '{"cached":null,"ignore_cache":false}'), +(28953, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:57.621+00', '{"cached":null,"ignore_cache":false}'), +(28954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:58.276+00', '{"cached":null,"ignore_cache":false}'), +(28955, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:58.304+00', '{"cached":null,"ignore_cache":false}'), +(28956, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.08+00', '{"cached":null,"ignore_cache":false}'), +(28957, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.201+00', '{"cached":null,"ignore_cache":false}'), +(28958, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.204+00', '{"cached":null,"ignore_cache":false}'), +(28959, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.213+00', '{"cached":null,"ignore_cache":false}'), +(28960, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.228+00', '{"cached":null,"ignore_cache":false}'), +(28961, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.234+00', '{"cached":null,"ignore_cache":false}'), +(28962, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.293+00', '{"cached":null,"ignore_cache":false}'), +(28963, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.314+00', '{"cached":null,"ignore_cache":false}'), +(28964, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:40:59.327+00', '{"cached":null,"ignore_cache":false}'), +(28965, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.984+00', '{"cached":null,"ignore_cache":false}'), +(28966, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:10.999+00', '{"cached":null,"ignore_cache":false}'), +(28967, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.229+00', '{"cached":null,"ignore_cache":false}'), +(28968, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:11.487+00', '{"cached":null,"ignore_cache":false}'), +(28969, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.069+00', '{"cached":null,"ignore_cache":false}'), +(28970, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.069+00', '{"cached":null,"ignore_cache":false}'), +(28971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.243+00', '{"cached":null,"ignore_cache":false}'), +(28972, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.273+00', '{"cached":null,"ignore_cache":false}'), +(28973, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.366+00', '{"cached":null,"ignore_cache":false}'), +(28974, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.372+00', '{"cached":null,"ignore_cache":false}'), +(28975, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.378+00', '{"cached":null,"ignore_cache":false}'), +(28976, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.387+00', '{"cached":null,"ignore_cache":false}'), +(28977, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.389+00', '{"cached":null,"ignore_cache":false}'), +(28978, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:12.808+00', '{"cached":null,"ignore_cache":false}'), +(28979, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:13.068+00', '{"cached":null,"ignore_cache":false}'), +(28980, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:13.11+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(28981, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:13.454+00', '{"cached":null,"ignore_cache":false}'), +(28982, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.389+00', '{"cached":null,"ignore_cache":false}'), +(28983, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.698+00', '{"cached":null,"ignore_cache":false}'), +(28984, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.739+00', '{"cached":null,"ignore_cache":false}'), +(28985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.748+00', '{"cached":null,"ignore_cache":false}'), +(28986, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.849+00', '{"cached":null,"ignore_cache":false}'), +(28987, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:22.949+00', '{"cached":null,"ignore_cache":false}'), +(28988, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.022+00', '{"cached":null,"ignore_cache":false}'), +(28989, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.028+00', '{"cached":null,"ignore_cache":false}'), +(28990, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.401+00', '{"cached":null,"ignore_cache":false}'), +(28991, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.432+00', '{"cached":null,"ignore_cache":false}'), +(28992, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.446+00', '{"cached":null,"ignore_cache":false}'), +(28993, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.465+00', '{"cached":null,"ignore_cache":false}'), +(28994, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.669+00', '{"cached":null,"ignore_cache":false}'), +(28995, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.764+00', '{"cached":null,"ignore_cache":false}'), +(28996, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.766+00', '{"cached":null,"ignore_cache":false}'), +(28997, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.811+00', '{"cached":null,"ignore_cache":false}'), +(28998, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.851+00', '{"cached":null,"ignore_cache":false}'), +(28999, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.855+00', '{"cached":null,"ignore_cache":false}'), +(29000, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.952+00', '{"cached":null,"ignore_cache":false}'), +(29001, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:23.966+00', '{"cached":null,"ignore_cache":false}'), +(29002, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:24.039+00', '{"cached":null,"ignore_cache":false}'), +(29003, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:24.315+00', '{"cached":null,"ignore_cache":false}'), +(29004, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:25.769+00', '{"cached":null,"ignore_cache":false}'), +(29005, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:25.863+00', '{"cached":null,"ignore_cache":false}'), +(29006, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:26.051+00', '{"cached":null,"ignore_cache":false}'), +(29007, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.16+00', '{"cached":null,"ignore_cache":false}'), +(29008, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.233+00', '{"cached":null,"ignore_cache":false}'), +(29009, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.282+00', '{"cached":null,"ignore_cache":false}'), +(29010, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.303+00', '{"cached":null,"ignore_cache":false}'), +(29011, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.321+00', '{"cached":null,"ignore_cache":false}'), +(29012, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.351+00', '{"cached":null,"ignore_cache":false}'), +(29013, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.426+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29014, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.439+00', '{"cached":null,"ignore_cache":false}'), +(29015, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:39.447+00', '{"cached":null,"ignore_cache":false}'), +(29016, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.723+00', '{"cached":null,"ignore_cache":false}'), +(29017, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.746+00', '{"cached":null,"ignore_cache":false}'), +(29018, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.866+00', '{"cached":null,"ignore_cache":false}'), +(29019, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.918+00', '{"cached":null,"ignore_cache":false}'), +(29020, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:42.934+00', '{"cached":null,"ignore_cache":false}'), +(29021, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:43.981+00', '{"cached":null,"ignore_cache":false}'), +(29022, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:44.518+00', '{"cached":null,"ignore_cache":false}'), +(29023, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:46.864+00', '{"cached":null,"ignore_cache":false}'), +(29024, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.035+00', '{"cached":null,"ignore_cache":false}'), +(29025, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.144+00', '{"cached":null,"ignore_cache":false}'), +(29026, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.236+00', '{"cached":null,"ignore_cache":false}'), +(29027, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.339+00', '{"cached":null,"ignore_cache":false}'), +(29028, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.413+00', '{"cached":null,"ignore_cache":false}'), +(29029, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.414+00', '{"cached":null,"ignore_cache":false}'), +(29030, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.43+00', '{"cached":null,"ignore_cache":false}'), +(29031, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:47.45+00', '{"cached":null,"ignore_cache":false}'), +(29032, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.006+00', '{"cached":null,"ignore_cache":false}'), +(29033, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.141+00', '{"cached":null,"ignore_cache":false}'), +(29034, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.2+00', '{"cached":null,"ignore_cache":false}'), +(29035, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.255+00', '{"cached":null,"ignore_cache":false}'), +(29036, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.261+00', '{"cached":null,"ignore_cache":false}'), +(29037, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.289+00', '{"cached":null,"ignore_cache":false}'), +(29038, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.31+00', '{"cached":null,"ignore_cache":false}'), +(29039, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.316+00', '{"cached":null,"ignore_cache":false}'), +(29040, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.318+00', '{"cached":null,"ignore_cache":false}'), +(29041, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.358+00', '{"cached":null,"ignore_cache":false}'), +(29042, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.368+00', '{"cached":null,"ignore_cache":false}'), +(29043, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.369+00', '{"cached":null,"ignore_cache":false}'), +(29044, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.421+00', '{"cached":null,"ignore_cache":false}'), +(29045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:51.437+00', '{"cached":null,"ignore_cache":false}'), +(29046, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:52.206+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29047, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:41:52.38+00', '{"cached":null,"ignore_cache":false}'), +(29048, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.94+00', '{"cached":null,"ignore_cache":false}'), +(29049, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.942+00', '{"cached":null,"ignore_cache":false}'), +(29050, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:20.996+00', '{"cached":null,"ignore_cache":false}'), +(29051, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.073+00', '{"cached":null,"ignore_cache":false}'), +(29052, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.124+00', '{"cached":null,"ignore_cache":false}'), +(29053, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.331+00', '{"cached":null,"ignore_cache":false}'), +(29054, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.352+00', '{"cached":null,"ignore_cache":false}'), +(29055, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.354+00', '{"cached":null,"ignore_cache":false}'), +(29056, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.385+00', '{"cached":null,"ignore_cache":false}'), +(29057, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.4+00', '{"cached":null,"ignore_cache":false}'), +(29058, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.409+00', '{"cached":null,"ignore_cache":false}'), +(29059, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.452+00', '{"cached":null,"ignore_cache":false}'), +(29060, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.458+00', '{"cached":null,"ignore_cache":false}'), +(29061, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.579+00', '{"cached":null,"ignore_cache":false}'), +(29062, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.662+00', '{"cached":null,"ignore_cache":false}'), +(29063, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.701+00', '{"cached":null,"ignore_cache":false}'), +(29064, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.739+00', '{"cached":null,"ignore_cache":false}'), +(29065, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.748+00', '{"cached":null,"ignore_cache":false}'), +(29066, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.776+00', '{"cached":null,"ignore_cache":false}'), +(29067, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.798+00', '{"cached":null,"ignore_cache":false}'), +(29068, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.808+00', '{"cached":null,"ignore_cache":false}'), +(29069, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.843+00', '{"cached":null,"ignore_cache":false}'), +(29070, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.847+00', '{"cached":null,"ignore_cache":false}'), +(29071, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.952+00', '{"cached":null,"ignore_cache":false}'), +(29072, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:21.995+00', '{"cached":null,"ignore_cache":false}'), +(29073, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.186+00', '{"cached":null,"ignore_cache":false}'), +(29074, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.195+00', '{"cached":null,"ignore_cache":false}'), +(29075, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.223+00', '{"cached":null,"ignore_cache":false}'), +(29076, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.242+00', '{"cached":null,"ignore_cache":false}'), +(29077, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:24.273+00', '{"cached":null,"ignore_cache":false}'), +(29078, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:25.293+00', '{"cached":null,"ignore_cache":false}'), +(29079, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:25.439+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29080, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.366+00', '{"cached":null,"ignore_cache":false}'), +(29081, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.398+00', '{"cached":null,"ignore_cache":false}'), +(29082, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.541+00', '{"cached":null,"ignore_cache":false}'), +(29083, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.546+00', '{"cached":null,"ignore_cache":false}'), +(29084, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.554+00', '{"cached":null,"ignore_cache":false}'), +(29085, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.587+00', '{"cached":null,"ignore_cache":false}'), +(29086, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.859+00', '{"cached":null,"ignore_cache":false}'), +(29087, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.878+00', '{"cached":null,"ignore_cache":false}'), +(29088, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.886+00', '{"cached":null,"ignore_cache":false}'), +(29089, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.91+00', '{"cached":null,"ignore_cache":false}'), +(29090, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.911+00', '{"cached":null,"ignore_cache":false}'), +(29091, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.929+00', '{"cached":null,"ignore_cache":false}'), +(29092, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.937+00', '{"cached":null,"ignore_cache":false}'), +(29093, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:51.945+00', '{"cached":null,"ignore_cache":false}'), +(29094, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:52.389+00', '{"cached":null,"ignore_cache":false}'), +(29095, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:52.521+00', '{"cached":null,"ignore_cache":false}'), +(29096, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.426+00', '{"cached":null,"ignore_cache":false}'), +(29097, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.524+00', '{"cached":null,"ignore_cache":false}'), +(29098, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.53+00', '{"cached":null,"ignore_cache":false}'), +(29099, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.544+00', '{"cached":null,"ignore_cache":false}'), +(29100, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.563+00', '{"cached":null,"ignore_cache":false}'), +(29101, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.567+00', '{"cached":null,"ignore_cache":false}'), +(29102, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.591+00', '{"cached":null,"ignore_cache":false}'), +(29103, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.602+00', '{"cached":null,"ignore_cache":false}'), +(29104, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:42:55.641+00', '{"cached":null,"ignore_cache":false}'), +(29105, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.812+00', '{"cached":null,"ignore_cache":false}'), +(29106, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.827+00', '{"cached":null,"ignore_cache":false}'), +(29107, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.853+00', '{"cached":null,"ignore_cache":false}'), +(29108, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.891+00', '{"cached":null,"ignore_cache":false}'), +(29109, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:02.902+00', '{"cached":null,"ignore_cache":false}'), +(29110, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:03.45+00', '{"cached":null,"ignore_cache":false}'), +(29111, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:03.568+00', '{"cached":null,"ignore_cache":false}'), +(29112, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:31.991+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29113, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.054+00', '{"cached":null,"ignore_cache":false}'), +(29114, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.162+00', '{"cached":null,"ignore_cache":false}'), +(29115, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.241+00', '{"cached":null,"ignore_cache":false}'), +(29116, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.286+00', '{"cached":null,"ignore_cache":false}'), +(29117, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.313+00', '{"cached":null,"ignore_cache":false}'), +(29118, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.361+00', '{"cached":null,"ignore_cache":false}'), +(29119, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.376+00', '{"cached":null,"ignore_cache":false}'), +(29120, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.392+00', '{"cached":null,"ignore_cache":false}'), +(29121, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.427+00', '{"cached":null,"ignore_cache":false}'), +(29122, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.458+00', '{"cached":null,"ignore_cache":false}'), +(29123, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.475+00', '{"cached":null,"ignore_cache":false}'), +(29124, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.494+00', '{"cached":null,"ignore_cache":false}'), +(29125, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:32.518+00', '{"cached":null,"ignore_cache":false}'), +(29126, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.496+00', '{"cached":null,"ignore_cache":false}'), +(29127, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.534+00', '{"cached":null,"ignore_cache":false}'), +(29128, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.582+00', '{"cached":null,"ignore_cache":false}'), +(29129, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.598+00', '{"cached":null,"ignore_cache":false}'), +(29130, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.629+00', '{"cached":null,"ignore_cache":false}'), +(29131, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.663+00', '{"cached":null,"ignore_cache":false}'), +(29132, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.687+00', '{"cached":null,"ignore_cache":false}'), +(29133, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.693+00', '{"cached":null,"ignore_cache":false}'), +(29134, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.798+00', '{"cached":null,"ignore_cache":false}'), +(29135, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.81+00', '{"cached":null,"ignore_cache":false}'), +(29136, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:33.867+00', '{"cached":null,"ignore_cache":false}'), +(29137, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.559+00', '{"cached":null,"ignore_cache":false}'), +(29138, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.608+00', '{"cached":null,"ignore_cache":false}'), +(29139, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.648+00', '{"cached":null,"ignore_cache":false}'), +(29140, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.695+00', '{"cached":null,"ignore_cache":false}'), +(29141, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:38.709+00', '{"cached":null,"ignore_cache":false}'), +(29142, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:39.573+00', '{"cached":null,"ignore_cache":false}'), +(29143, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:39.657+00', '{"cached":null,"ignore_cache":false}'), +(29144, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.693+00', '{"cached":null,"ignore_cache":false}'), +(29145, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.786+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29146, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.817+00', '{"cached":null,"ignore_cache":false}'), +(29147, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.825+00', '{"cached":null,"ignore_cache":false}'), +(29148, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:52.834+00', '{"cached":null,"ignore_cache":false}'), +(29149, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.034+00', '{"cached":null,"ignore_cache":false}'), +(29150, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.138+00', '{"cached":null,"ignore_cache":false}'), +(29151, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.148+00', '{"cached":null,"ignore_cache":false}'), +(29152, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.148+00', '{"cached":null,"ignore_cache":false}'), +(29153, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.156+00', '{"cached":null,"ignore_cache":false}'), +(29154, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.166+00', '{"cached":null,"ignore_cache":false}'), +(29155, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.181+00', '{"cached":null,"ignore_cache":false}'), +(29156, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.194+00', '{"cached":null,"ignore_cache":false}'), +(29157, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:53.216+00', '{"cached":null,"ignore_cache":false}'), +(29158, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:54.135+00', '{"cached":null,"ignore_cache":false}'), +(29159, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:43:54.249+00', '{"cached":null,"ignore_cache":false}'), +(29160, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.268+00', '{"cached":null,"ignore_cache":false}'), +(29161, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.346+00', '{"cached":null,"ignore_cache":false}'), +(29162, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.395+00', '{"cached":null,"ignore_cache":false}'), +(29163, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.404+00', '{"cached":null,"ignore_cache":false}'), +(29164, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.488+00', '{"cached":null,"ignore_cache":false}'), +(29165, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.527+00', '{"cached":null,"ignore_cache":false}'), +(29166, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.555+00', '{"cached":null,"ignore_cache":false}'), +(29167, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.556+00', '{"cached":null,"ignore_cache":false}'), +(29168, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:11.584+00', '{"cached":null,"ignore_cache":false}'), +(29169, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.234+00', '{"cached":null,"ignore_cache":false}'), +(29170, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.283+00', '{"cached":null,"ignore_cache":false}'), +(29171, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.339+00', '{"cached":null,"ignore_cache":false}'), +(29172, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.37+00', '{"cached":null,"ignore_cache":false}'), +(29173, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:15.398+00', '{"cached":null,"ignore_cache":false}'), +(29174, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:16.116+00', '{"cached":null,"ignore_cache":false}'), +(29175, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:16.402+00', '{"cached":null,"ignore_cache":false}'), +(29176, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.551+00', '{"cached":null,"ignore_cache":false}'), +(29177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.593+00', '{"cached":null,"ignore_cache":false}'), +(29178, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.594+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29179, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.873+00', '{"cached":null,"ignore_cache":false}'), +(29180, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.914+00', '{"cached":null,"ignore_cache":false}'), +(29181, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.934+00', '{"cached":null,"ignore_cache":false}'), +(29182, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:28.979+00', '{"cached":null,"ignore_cache":false}'), +(29183, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.035+00', '{"cached":null,"ignore_cache":false}'), +(29184, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.059+00', '{"cached":null,"ignore_cache":false}'), +(29185, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.065+00', '{"cached":null,"ignore_cache":false}'), +(29186, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.084+00', '{"cached":null,"ignore_cache":false}'), +(29187, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.138+00', '{"cached":null,"ignore_cache":false}'), +(29188, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.156+00', '{"cached":null,"ignore_cache":false}'), +(29189, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.161+00', '{"cached":null,"ignore_cache":false}'), +(29190, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.875+00', '{"cached":null,"ignore_cache":false}'), +(29191, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:29.942+00', '{"cached":null,"ignore_cache":false}'), +(29192, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.561+00', '{"cached":null,"ignore_cache":false}'), +(29193, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.687+00', '{"cached":null,"ignore_cache":false}'), +(29194, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.698+00', '{"cached":null,"ignore_cache":false}'), +(29195, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.751+00', '{"cached":null,"ignore_cache":false}'), +(29196, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.858+00', '{"cached":null,"ignore_cache":false}'), +(29197, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.871+00', '{"cached":null,"ignore_cache":false}'), +(29198, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.927+00', '{"cached":null,"ignore_cache":false}'), +(29199, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.931+00', '{"cached":null,"ignore_cache":false}'), +(29200, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:43.94+00', '{"cached":null,"ignore_cache":false}'), +(29201, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.156+00', '{"cached":null,"ignore_cache":false}'), +(29202, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.171+00', '{"cached":null,"ignore_cache":false}'), +(29203, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.182+00', '{"cached":null,"ignore_cache":false}'), +(29204, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.19+00', '{"cached":null,"ignore_cache":false}'), +(29205, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.218+00', '{"cached":null,"ignore_cache":false}'), +(29206, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.793+00', '{"cached":null,"ignore_cache":false}'), +(29207, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:51.796+00', '{"cached":null,"ignore_cache":false}'), +(29208, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.148+00', '{"cached":null,"ignore_cache":false}'), +(29209, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.206+00', '{"cached":null,"ignore_cache":false}'), +(29210, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.217+00', '{"cached":null,"ignore_cache":false}'), +(29211, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.229+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29212, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.24+00', '{"cached":null,"ignore_cache":false}'), +(29213, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.32+00', '{"cached":null,"ignore_cache":false}'), +(29214, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.341+00', '{"cached":null,"ignore_cache":false}'), +(29215, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.348+00', '{"cached":null,"ignore_cache":false}'), +(29216, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.378+00', '{"cached":null,"ignore_cache":false}'), +(29217, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.432+00', '{"cached":null,"ignore_cache":false}'), +(29218, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.457+00', '{"cached":null,"ignore_cache":false}'), +(29219, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:52.504+00', '{"cached":null,"ignore_cache":false}'), +(29220, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:53.022+00', '{"cached":null,"ignore_cache":false}'), +(29221, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:53.209+00', '{"cached":null,"ignore_cache":false}'), +(29222, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:54.046+00', '{"cached":null,"ignore_cache":false}'), +(29223, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:44:54.048+00', '{"cached":null,"ignore_cache":false}'), +(29224, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.401+00', '{"cached":null,"ignore_cache":false}'), +(29225, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.482+00', '{"cached":null,"ignore_cache":false}'), +(29226, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.5+00', '{"cached":null,"ignore_cache":false}'), +(29227, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.54+00', '{"cached":null,"ignore_cache":false}'), +(29228, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.566+00', '{"cached":null,"ignore_cache":false}'), +(29229, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.567+00', '{"cached":null,"ignore_cache":false}'), +(29230, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.57+00', '{"cached":null,"ignore_cache":false}'), +(29231, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.606+00', '{"cached":null,"ignore_cache":false}'), +(29232, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:17.607+00', '{"cached":null,"ignore_cache":false}'), +(29233, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.681+00', '{"cached":null,"ignore_cache":false}'), +(29234, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.725+00', '{"cached":null,"ignore_cache":false}'), +(29235, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:21.992+00', '{"cached":null,"ignore_cache":false}'), +(29236, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.125+00', '{"cached":null,"ignore_cache":false}'), +(29237, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.177+00', '{"cached":null,"ignore_cache":false}'), +(29238, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.319+00', '{"cached":null,"ignore_cache":false}'), +(29239, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.344+00', '{"cached":null,"ignore_cache":false}'), +(29240, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.345+00', '{"cached":null,"ignore_cache":false}'), +(29241, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.345+00', '{"cached":null,"ignore_cache":false}'), +(29242, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.412+00', '{"cached":null,"ignore_cache":false}'), +(29243, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.429+00', '{"cached":null,"ignore_cache":false}'), +(29244, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.449+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29245, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.46+00', '{"cached":null,"ignore_cache":false}'), +(29246, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:22.541+00', '{"cached":null,"ignore_cache":false}'), +(29247, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:23.66+00', '{"cached":null,"ignore_cache":false}'), +(29248, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:23.744+00', '{"cached":null,"ignore_cache":false}'), +(29249, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:25.13+00', '{"cached":null,"ignore_cache":false}'), +(29250, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:25.139+00', '{"cached":null,"ignore_cache":false}'), +(29251, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:25.153+00', '{"cached":null,"ignore_cache":false}'), +(29252, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:25.162+00', '{"cached":null,"ignore_cache":false}'), +(29253, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:25.18+00', '{"cached":null,"ignore_cache":false}'), +(29254, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:26.199+00', '{"cached":null,"ignore_cache":false}'), +(29255, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:26.288+00', '{"cached":null,"ignore_cache":false}'), +(29256, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.74+00', '{"cached":null,"ignore_cache":false}'), +(29257, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.756+00', '{"cached":null,"ignore_cache":false}'), +(29258, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.795+00', '{"cached":null,"ignore_cache":false}'), +(29259, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.834+00', '{"cached":null,"ignore_cache":false}'), +(29260, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:51.895+00', '{"cached":null,"ignore_cache":false}'), +(29261, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.123+00', '{"cached":null,"ignore_cache":false}'), +(29262, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.192+00', '{"cached":null,"ignore_cache":false}'), +(29263, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.248+00', '{"cached":null,"ignore_cache":false}'), +(29264, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.267+00', '{"cached":null,"ignore_cache":false}'), +(29265, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.275+00', '{"cached":null,"ignore_cache":false}'), +(29266, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.296+00', '{"cached":null,"ignore_cache":false}'), +(29267, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.308+00', '{"cached":null,"ignore_cache":false}'), +(29268, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.314+00', '{"cached":null,"ignore_cache":false}'), +(29269, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:52.41+00', '{"cached":null,"ignore_cache":false}'), +(29270, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.389+00', '{"cached":null,"ignore_cache":false}'), +(29271, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.536+00', '{"cached":null,"ignore_cache":false}'), +(29272, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.599+00', '{"cached":null,"ignore_cache":false}'), +(29273, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.629+00', '{"cached":null,"ignore_cache":false}'), +(29274, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.687+00', '{"cached":null,"ignore_cache":false}'), +(29275, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.702+00', '{"cached":null,"ignore_cache":false}'), +(29276, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.715+00', '{"cached":null,"ignore_cache":false}'), +(29277, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.722+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29278, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.723+00', '{"cached":null,"ignore_cache":false}'), +(29279, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.745+00', '{"cached":null,"ignore_cache":false}'), +(29280, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:45:53.776+00', '{"cached":null,"ignore_cache":false}'), +(29281, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.249+00', '{"cached":null,"ignore_cache":false}'), +(29282, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.264+00', '{"cached":null,"ignore_cache":false}'), +(29283, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.293+00', '{"cached":null,"ignore_cache":false}'), +(29284, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.31+00', '{"cached":null,"ignore_cache":false}'), +(29285, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:01.312+00', '{"cached":null,"ignore_cache":false}'), +(29286, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:02.159+00', '{"cached":null,"ignore_cache":false}'), +(29287, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:02.288+00', '{"cached":null,"ignore_cache":false}'), +(29288, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.238+00', '{"cached":null,"ignore_cache":false}'), +(29289, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.238+00', '{"cached":null,"ignore_cache":false}'), +(29290, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.277+00', '{"cached":null,"ignore_cache":false}'), +(29291, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.293+00', '{"cached":null,"ignore_cache":false}'), +(29292, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.308+00', '{"cached":null,"ignore_cache":false}'), +(29293, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.368+00', '{"cached":null,"ignore_cache":false}'), +(29294, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.434+00', '{"cached":null,"ignore_cache":false}'), +(29295, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.454+00', '{"cached":null,"ignore_cache":false}'), +(29296, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.473+00', '{"cached":null,"ignore_cache":false}'), +(29297, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.515+00', '{"cached":null,"ignore_cache":false}'), +(29298, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.562+00', '{"cached":null,"ignore_cache":false}'), +(29299, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.617+00', '{"cached":null,"ignore_cache":false}'), +(29300, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.652+00', '{"cached":null,"ignore_cache":false}'), +(29301, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:22.678+00', '{"cached":null,"ignore_cache":false}'), +(29302, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:23.809+00', '{"cached":null,"ignore_cache":false}'), +(29303, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:23.866+00', '{"cached":null,"ignore_cache":false}'), +(29304, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.861+00', '{"cached":null,"ignore_cache":false}'), +(29305, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.897+00', '{"cached":null,"ignore_cache":false}'), +(29306, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.902+00', '{"cached":null,"ignore_cache":false}'), +(29307, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.939+00', '{"cached":null,"ignore_cache":false}'), +(29308, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.941+00', '{"cached":null,"ignore_cache":false}'), +(29309, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.991+00', '{"cached":null,"ignore_cache":false}'), +(29310, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:31.994+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29311, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:32.046+00', '{"cached":null,"ignore_cache":false}'), +(29312, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:32.047+00', '{"cached":null,"ignore_cache":false}'), +(29313, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.5+00', '{"cached":null,"ignore_cache":false}'), +(29314, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.566+00', '{"cached":null,"ignore_cache":false}'), +(29315, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.57+00', '{"cached":null,"ignore_cache":false}'), +(29316, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.575+00', '{"cached":null,"ignore_cache":false}'), +(29317, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:40.584+00', '{"cached":null,"ignore_cache":false}'), +(29318, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:41.217+00', '{"cached":null,"ignore_cache":false}'), +(29319, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:41.272+00', '{"cached":null,"ignore_cache":false}'), +(29320, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.911+00', '{"cached":null,"ignore_cache":false}'), +(29321, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:53.937+00', '{"cached":null,"ignore_cache":false}'), +(29322, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.154+00', '{"cached":null,"ignore_cache":false}'), +(29323, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.174+00', '{"cached":null,"ignore_cache":false}'), +(29324, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.247+00', '{"cached":null,"ignore_cache":false}'), +(29325, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.273+00', '{"cached":null,"ignore_cache":false}'), +(29326, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.336+00', '{"cached":null,"ignore_cache":false}'), +(29327, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.358+00', '{"cached":null,"ignore_cache":false}'), +(29328, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.415+00', '{"cached":null,"ignore_cache":false}'), +(29329, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.437+00', '{"cached":null,"ignore_cache":false}'), +(29330, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.518+00', '{"cached":null,"ignore_cache":false}'), +(29331, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.534+00', '{"cached":null,"ignore_cache":false}'), +(29332, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.544+00', '{"cached":null,"ignore_cache":false}'), +(29333, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:54.573+00', '{"cached":null,"ignore_cache":false}'), +(29334, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:55.483+00', '{"cached":null,"ignore_cache":false}'), +(29335, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:46:55.519+00', '{"cached":null,"ignore_cache":false}'), +(29336, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.029+00', '{"cached":null,"ignore_cache":false}'), +(29337, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.107+00', '{"cached":null,"ignore_cache":false}'), +(29338, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.217+00', '{"cached":null,"ignore_cache":false}'), +(29339, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.224+00', '{"cached":null,"ignore_cache":false}'), +(29340, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.342+00', '{"cached":null,"ignore_cache":false}'), +(29341, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:45.349+00', '{"cached":null,"ignore_cache":false}'), +(29342, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:47.655+00', '{"cached":null,"ignore_cache":false}'), +(29343, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:47.705+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29344, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:47.837+00', '{"cached":null,"ignore_cache":false}'), +(29345, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:47:47.903+00', '{"cached":null,"ignore_cache":false}'), +(29346, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.594+00', '{"cached":null,"ignore_cache":false}'), +(29347, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.731+00', '{"cached":null,"ignore_cache":false}'), +(29348, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.736+00', '{"cached":null,"ignore_cache":false}'), +(29349, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.833+00', '{"cached":null,"ignore_cache":false}'), +(29350, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.868+00', '{"cached":null,"ignore_cache":false}'), +(29351, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.888+00', '{"cached":null,"ignore_cache":false}'), +(29352, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.908+00', '{"cached":null,"ignore_cache":false}'), +(29353, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.942+00', '{"cached":null,"ignore_cache":false}'), +(29354, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:49:09.97+00', '{"cached":null,"ignore_cache":false}'), +(29355, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.251+00', '{"cached":null,"ignore_cache":false}'), +(29356, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.763+00', '{"cached":null,"ignore_cache":false}'), +(29357, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.773+00', '{"cached":null,"ignore_cache":false}'), +(29358, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.85+00', '{"cached":null,"ignore_cache":false}'), +(29359, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.872+00', '{"cached":null,"ignore_cache":false}'), +(29360, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:57.88+00', '{"cached":null,"ignore_cache":false}'), +(29361, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:59.446+00', '{"cached":null,"ignore_cache":false}'), +(29362, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:59.469+00', '{"cached":null,"ignore_cache":false}'), +(29363, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:59.579+00', '{"cached":null,"ignore_cache":false}'), +(29364, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:52:59.884+00', '{"cached":null,"ignore_cache":false}'), +(29365, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.17+00', '{"cached":null,"ignore_cache":false}'), +(29366, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.265+00', '{"cached":null,"ignore_cache":false}'), +(29367, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.381+00', '{"cached":null,"ignore_cache":false}'), +(29368, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.384+00', '{"cached":null,"ignore_cache":false}'), +(29369, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.411+00', '{"cached":null,"ignore_cache":false}'), +(29370, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.613+00', '{"cached":null,"ignore_cache":false}'), +(29371, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:04.645+00', '{"cached":null,"ignore_cache":false}'), +(29372, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.127+00', '{"cached":null,"ignore_cache":false}'), +(29373, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.193+00', '{"cached":null,"ignore_cache":false}'), +(29374, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.22+00', '{"cached":null,"ignore_cache":false}'), +(29375, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.223+00', '{"cached":null,"ignore_cache":false}'), +(29376, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.231+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29377, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.32+00', '{"cached":null,"ignore_cache":false}'), +(29378, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.343+00', '{"cached":null,"ignore_cache":false}'), +(29379, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.358+00', '{"cached":null,"ignore_cache":false}'), +(29380, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:05.546+00', '{"cached":null,"ignore_cache":false}'), +(29381, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.539+00', '{"cached":null,"ignore_cache":false}'), +(29382, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.561+00', '{"cached":null,"ignore_cache":false}'), +(29383, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.636+00', '{"cached":null,"ignore_cache":false}'), +(29384, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.673+00', '{"cached":null,"ignore_cache":false}'), +(29385, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:07.702+00', '{"cached":null,"ignore_cache":false}'), +(29386, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:08.933+00', '{"cached":null,"ignore_cache":false}'), +(29387, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:56:09.014+00', '{"cached":null,"ignore_cache":false}'), +(29388, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:57.725+00', '{"cached":null,"ignore_cache":false}'), +(29389, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.15+00', '{"cached":null,"ignore_cache":false}'), +(29390, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.155+00', '{"cached":null,"ignore_cache":false}'), +(29391, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.159+00', '{"cached":null,"ignore_cache":false}'), +(29392, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.162+00', '{"cached":null,"ignore_cache":false}'), +(29393, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.227+00', '{"cached":null,"ignore_cache":false}'), +(29394, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.379+00', '{"cached":null,"ignore_cache":false}'), +(29395, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.397+00', '{"cached":null,"ignore_cache":false}'), +(29396, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.441+00', '{"cached":null,"ignore_cache":false}'), +(29397, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.527+00', '{"cached":null,"ignore_cache":false}'), +(29398, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.539+00', '{"cached":null,"ignore_cache":false}'), +(29399, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.706+00', '{"cached":null,"ignore_cache":false}'), +(29400, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.729+00', '{"cached":null,"ignore_cache":false}'), +(29401, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:58.914+00', '{"cached":null,"ignore_cache":false}'), +(29402, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:59.121+00', '{"cached":null,"ignore_cache":false}'), +(29403, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:59.154+00', '{"cached":null,"ignore_cache":false}'), +(29404, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:59.159+00', '{"cached":null,"ignore_cache":false}'), +(29405, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:59.251+00', '{"cached":null,"ignore_cache":false}'), +(29406, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:58:59.824+00', '{"cached":null,"ignore_cache":false}'), +(29407, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:00.143+00', '{"cached":null,"ignore_cache":false}'), +(29408, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.512+00', '{"cached":null,"ignore_cache":false}'), +(29409, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.605+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29410, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.764+00', '{"cached":null,"ignore_cache":false}'), +(29411, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.827+00', '{"cached":null,"ignore_cache":false}'), +(29412, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.837+00', '{"cached":null,"ignore_cache":false}'), +(29413, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.849+00', '{"cached":null,"ignore_cache":false}'), +(29414, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.938+00', '{"cached":null,"ignore_cache":false}'), +(29415, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.977+00', '{"cached":null,"ignore_cache":false}'), +(29416, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:27.998+00', '{"cached":null,"ignore_cache":false}'), +(29417, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:28.015+00', '{"cached":null,"ignore_cache":false}'), +(29418, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:28.022+00', '{"cached":null,"ignore_cache":false}'), +(29419, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:28.089+00', '{"cached":null,"ignore_cache":false}'), +(29420, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:28.169+00', '{"cached":null,"ignore_cache":false}'), +(29421, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:28.184+00', '{"cached":null,"ignore_cache":false}'), +(29422, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:28.612+00', '{"cached":null,"ignore_cache":false}'), +(29423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 11:59:28.919+00', '{"cached":null,"ignore_cache":false}'), +(29424, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.509+00', '{"cached":null,"ignore_cache":false}'), +(29425, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.546+00', '{"cached":null,"ignore_cache":false}'), +(29426, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.57+00', '{"cached":null,"ignore_cache":false}'), +(29427, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.584+00', '{"cached":null,"ignore_cache":false}'), +(29428, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.625+00', '{"cached":null,"ignore_cache":false}'), +(29429, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.733+00', '{"cached":null,"ignore_cache":false}'), +(29430, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.761+00', '{"cached":null,"ignore_cache":false}'), +(29431, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.8+00', '{"cached":null,"ignore_cache":false}'), +(29432, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.856+00', '{"cached":null,"ignore_cache":false}'), +(29433, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.867+00', '{"cached":null,"ignore_cache":false}'), +(29434, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.907+00', '{"cached":null,"ignore_cache":false}'), +(29435, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.987+00', '{"cached":null,"ignore_cache":false}'), +(29436, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:03.99+00', '{"cached":null,"ignore_cache":false}'), +(29437, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:04.024+00', '{"cached":null,"ignore_cache":false}'), +(29438, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:04.742+00', '{"cached":null,"ignore_cache":false}'), +(29439, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:04.805+00', '{"cached":null,"ignore_cache":false}'), +(29440, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.451+00', '{"cached":null,"ignore_cache":false}'), +(29441, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.457+00', '{"cached":null,"ignore_cache":false}'), +(29442, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.656+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29443, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.681+00', '{"cached":null,"ignore_cache":false}'), +(29444, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.694+00', '{"cached":null,"ignore_cache":false}'), +(29445, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.737+00', '{"cached":null,"ignore_cache":false}'), +(29446, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.742+00', '{"cached":null,"ignore_cache":false}'), +(29447, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.779+00', '{"cached":null,"ignore_cache":false}'), +(29448, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:40.784+00', '{"cached":null,"ignore_cache":false}'), +(29449, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:41.991+00', '{"cached":null,"ignore_cache":false}'), +(29450, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.088+00', '{"cached":null,"ignore_cache":false}'), +(29451, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.104+00', '{"cached":null,"ignore_cache":false}'), +(29452, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.11+00', '{"cached":null,"ignore_cache":false}'), +(29453, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.115+00', '{"cached":null,"ignore_cache":false}'), +(29454, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.76+00', '{"cached":null,"ignore_cache":false}'), +(29455, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:00:42.814+00', '{"cached":null,"ignore_cache":false}'), +(29456, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.577+00', '{"cached":null,"ignore_cache":false}'), +(29457, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.59+00', '{"cached":null,"ignore_cache":false}'), +(29458, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.634+00', '{"cached":null,"ignore_cache":false}'), +(29459, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.701+00', '{"cached":null,"ignore_cache":false}'), +(29460, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.722+00', '{"cached":null,"ignore_cache":false}'), +(29461, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.748+00', '{"cached":null,"ignore_cache":false}'), +(29462, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.759+00', '{"cached":null,"ignore_cache":false}'), +(29463, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.782+00', '{"cached":null,"ignore_cache":false}'), +(29464, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:17.822+00', '{"cached":null,"ignore_cache":false}'), +(29465, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:21.033+00', '{"cached":null,"ignore_cache":false}'), +(29466, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:21.04+00', '{"cached":null,"ignore_cache":false}'), +(29467, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:21.062+00', '{"cached":null,"ignore_cache":false}'), +(29468, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:21.081+00', '{"cached":null,"ignore_cache":false}'), +(29469, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:21.148+00', '{"cached":null,"ignore_cache":false}'), +(29470, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:22.382+00', '{"cached":null,"ignore_cache":false}'), +(29471, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:22.491+00', '{"cached":null,"ignore_cache":false}'), +(29472, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.739+00', '{"cached":null,"ignore_cache":false}'), +(29473, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:01:59.982+00', '{"cached":null,"ignore_cache":false}'), +(29474, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.033+00', '{"cached":null,"ignore_cache":false}'), +(29475, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.098+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29476, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.195+00', '{"cached":null,"ignore_cache":false}'), +(29477, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.293+00', '{"cached":null,"ignore_cache":false}'), +(29478, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.354+00', '{"cached":null,"ignore_cache":false}'), +(29479, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.505+00', '{"cached":null,"ignore_cache":false}'), +(29480, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.528+00', '{"cached":null,"ignore_cache":false}'), +(29481, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.544+00', '{"cached":null,"ignore_cache":false}'), +(29482, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.553+00', '{"cached":null,"ignore_cache":false}'), +(29483, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.576+00', '{"cached":null,"ignore_cache":false}'), +(29484, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.595+00', '{"cached":null,"ignore_cache":false}'), +(29485, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.627+00', '{"cached":null,"ignore_cache":false}'), +(29486, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:00.969+00', '{"cached":null,"ignore_cache":false}'), +(29487, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:01.054+00', '{"cached":null,"ignore_cache":false}'), +(29488, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.409+00', '{"cached":null,"ignore_cache":false}'), +(29489, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.484+00', '{"cached":null,"ignore_cache":false}'), +(29490, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.641+00', '{"cached":null,"ignore_cache":false}'), +(29491, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.656+00', '{"cached":null,"ignore_cache":false}'), +(29492, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.761+00', '{"cached":null,"ignore_cache":false}'), +(29493, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:14.926+00', '{"cached":null,"ignore_cache":false}'), +(29494, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:16.473+00', '{"cached":null,"ignore_cache":false}'), +(29495, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:17.075+00', '{"cached":null,"ignore_cache":false}'), +(29496, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:17.13+00', '{"cached":null,"ignore_cache":false}'), +(29497, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:24.995+00', '{"cached":null,"ignore_cache":false}'), +(29498, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:25.155+00', '{"cached":null,"ignore_cache":false}'), +(29499, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:25.364+00', '{"cached":null,"ignore_cache":false}'), +(29500, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:25.429+00', '{"cached":null,"ignore_cache":false}'), +(29501, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:25.438+00', '{"cached":null,"ignore_cache":false}'), +(29502, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:25.475+00', '{"cached":null,"ignore_cache":false}'), +(29503, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.413+00', '{"cached":null,"ignore_cache":false}'), +(29504, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.496+00', '{"cached":null,"ignore_cache":false}'), +(29505, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.556+00', '{"cached":null,"ignore_cache":false}'), +(29506, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.575+00', '{"cached":null,"ignore_cache":false}'), +(29507, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.608+00', '{"cached":null,"ignore_cache":false}'), +(29508, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.706+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29509, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.709+00', '{"cached":null,"ignore_cache":false}'), +(29510, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.789+00', '{"cached":null,"ignore_cache":false}'), +(29511, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.798+00', '{"cached":null,"ignore_cache":false}'), +(29512, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.828+00', '{"cached":null,"ignore_cache":false}'), +(29513, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.861+00', '{"cached":null,"ignore_cache":false}'), +(29514, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:26.922+00', '{"cached":null,"ignore_cache":false}'), +(29515, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:27.014+00', '{"cached":null,"ignore_cache":false}'), +(29516, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.182+00', '{"cached":null,"ignore_cache":false}'), +(29517, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.252+00', '{"cached":null,"ignore_cache":false}'), +(29518, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.399+00', '{"cached":null,"ignore_cache":false}'), +(29519, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.434+00', '{"cached":null,"ignore_cache":false}'), +(29520, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:33.517+00', '{"cached":null,"ignore_cache":false}'), +(29521, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:34.354+00', '{"cached":null,"ignore_cache":false}'), +(29522, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:34.435+00', '{"cached":null,"ignore_cache":false}'), +(29523, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.712+00', '{"cached":null,"ignore_cache":false}'), +(29524, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:54.807+00', '{"cached":null,"ignore_cache":false}'), +(29525, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:55.023+00', '{"cached":null,"ignore_cache":false}'), +(29526, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:55.031+00', '{"cached":null,"ignore_cache":false}'), +(29527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:55.088+00', '{"cached":null,"ignore_cache":false}'), +(29528, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:55.121+00', '{"cached":null,"ignore_cache":false}'), +(29529, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:56.307+00', '{"cached":null,"ignore_cache":false}'), +(29530, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:56.536+00', '{"cached":null,"ignore_cache":false}'), +(29531, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:56.557+00', '{"cached":null,"ignore_cache":false}'), +(29532, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:02:56.681+00', '{"cached":null,"ignore_cache":false}'), +(29533, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.668+00', '{"cached":null,"ignore_cache":false}'), +(29534, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.686+00', '{"cached":null,"ignore_cache":false}'), +(29535, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.845+00', '{"cached":null,"ignore_cache":false}'), +(29536, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:02.909+00', '{"cached":null,"ignore_cache":false}'), +(29537, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:03.006+00', '{"cached":null,"ignore_cache":false}'), +(29538, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:03.035+00', '{"cached":null,"ignore_cache":false}'), +(29539, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:03.06+00', '{"cached":null,"ignore_cache":false}'), +(29540, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:03.079+00', '{"cached":null,"ignore_cache":false}'), +(29541, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:03.135+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29542, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:09.025+00', '{"cached":null,"ignore_cache":false}'), +(29543, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:09.048+00', '{"cached":null,"ignore_cache":false}'), +(29544, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:09.084+00', '{"cached":null,"ignore_cache":false}'), +(29545, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:09.094+00', '{"cached":null,"ignore_cache":false}'), +(29546, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:09.177+00', '{"cached":null,"ignore_cache":false}'), +(29547, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:09.983+00', '{"cached":null,"ignore_cache":false}'), +(29548, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:10.154+00', '{"cached":null,"ignore_cache":false}'), +(29549, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.332+00', '{"cached":null,"ignore_cache":false}'), +(29550, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.365+00', '{"cached":null,"ignore_cache":false}'), +(29551, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.394+00', '{"cached":null,"ignore_cache":false}'), +(29552, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.424+00', '{"cached":null,"ignore_cache":false}'), +(29553, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.45+00', '{"cached":null,"ignore_cache":false}'), +(29554, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.455+00', '{"cached":null,"ignore_cache":false}'), +(29555, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.459+00', '{"cached":null,"ignore_cache":false}'), +(29556, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.462+00', '{"cached":null,"ignore_cache":false}'), +(29557, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:36.475+00', '{"cached":null,"ignore_cache":false}'), +(29558, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.219+00', '{"cached":null,"ignore_cache":false}'), +(29559, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.47+00', '{"cached":null,"ignore_cache":false}'), +(29560, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.475+00', '{"cached":null,"ignore_cache":false}'), +(29561, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.476+00', '{"cached":null,"ignore_cache":false}'), +(29562, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:46.501+00', '{"cached":null,"ignore_cache":false}'), +(29563, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:47.149+00', '{"cached":null,"ignore_cache":false}'), +(29564, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:03:47.26+00', '{"cached":null,"ignore_cache":false}'), +(29565, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.697+00', '{"cached":null,"ignore_cache":false}'), +(29566, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.754+00', '{"cached":null,"ignore_cache":false}'), +(29567, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.77+00', '{"cached":null,"ignore_cache":false}'), +(29568, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.821+00', '{"cached":null,"ignore_cache":false}'), +(29569, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.846+00', '{"cached":null,"ignore_cache":false}'), +(29570, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.866+00', '{"cached":null,"ignore_cache":false}'), +(29571, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.869+00', '{"cached":null,"ignore_cache":false}'), +(29572, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.899+00', '{"cached":null,"ignore_cache":false}'), +(29573, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:13.908+00', '{"cached":null,"ignore_cache":false}'), +(29574, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.766+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29575, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:21.997+00', '{"cached":null,"ignore_cache":false}'), +(29576, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:22.04+00', '{"cached":null,"ignore_cache":false}'), +(29577, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:22.247+00', '{"cached":null,"ignore_cache":false}'), +(29578, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:22.351+00', '{"cached":null,"ignore_cache":false}'), +(29579, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:22.408+00', '{"cached":null,"ignore_cache":false}'), +(29580, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:24.202+00', '{"cached":null,"ignore_cache":false}'), +(29581, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:24.322+00', '{"cached":null,"ignore_cache":false}'), +(29582, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:24.557+00', '{"cached":null,"ignore_cache":false}'), +(29583, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:24.703+00', '{"cached":null,"ignore_cache":false}'), +(29584, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.425+00', '{"cached":null,"ignore_cache":false}'), +(29585, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.5+00', '{"cached":null,"ignore_cache":false}'), +(29586, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.539+00', '{"cached":null,"ignore_cache":false}'), +(29587, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.561+00', '{"cached":null,"ignore_cache":false}'), +(29588, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:27.567+00', '{"cached":null,"ignore_cache":false}'), +(29589, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:28.627+00', '{"cached":null,"ignore_cache":false}'), +(29590, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:28.99+00', '{"cached":null,"ignore_cache":false}'), +(29591, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.166+00', '{"cached":null,"ignore_cache":false}'), +(29592, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.202+00', '{"cached":null,"ignore_cache":false}'), +(29593, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.211+00', '{"cached":null,"ignore_cache":false}'), +(29594, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.258+00', '{"cached":null,"ignore_cache":false}'), +(29595, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.279+00', '{"cached":null,"ignore_cache":false}'), +(29596, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.297+00', '{"cached":null,"ignore_cache":false}'), +(29597, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.344+00', '{"cached":null,"ignore_cache":false}'), +(29598, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.366+00', '{"cached":null,"ignore_cache":false}'), +(29599, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:50.426+00', '{"cached":null,"ignore_cache":false}'), +(29600, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.235+00', '{"cached":null,"ignore_cache":false}'), +(29601, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.258+00', '{"cached":null,"ignore_cache":false}'), +(29602, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.291+00', '{"cached":null,"ignore_cache":false}'), +(29603, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.3+00', '{"cached":null,"ignore_cache":false}'), +(29604, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:57.366+00', '{"cached":null,"ignore_cache":false}'), +(29605, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:58.874+00', '{"cached":null,"ignore_cache":false}'), +(29606, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:04:59.129+00', '{"cached":null,"ignore_cache":false}'), +(29607, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.289+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29608, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.306+00', '{"cached":null,"ignore_cache":false}'), +(29609, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.344+00', '{"cached":null,"ignore_cache":false}'), +(29610, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.406+00', '{"cached":null,"ignore_cache":false}'), +(29611, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.441+00', '{"cached":null,"ignore_cache":false}'), +(29612, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.446+00', '{"cached":null,"ignore_cache":false}'), +(29613, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.479+00', '{"cached":null,"ignore_cache":false}'), +(29614, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.493+00', '{"cached":null,"ignore_cache":false}'), +(29615, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:22.515+00', '{"cached":null,"ignore_cache":false}'), +(29616, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.038+00', '{"cached":null,"ignore_cache":false}'), +(29617, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.079+00', '{"cached":null,"ignore_cache":false}'), +(29618, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.084+00', '{"cached":null,"ignore_cache":false}'), +(29619, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.139+00', '{"cached":null,"ignore_cache":false}'), +(29620, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.15+00', '{"cached":null,"ignore_cache":false}'), +(29621, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.795+00', '{"cached":null,"ignore_cache":false}'), +(29622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:33.798+00', '{"cached":null,"ignore_cache":false}'), +(29623, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.538+00', '{"cached":null,"ignore_cache":false}'), +(29624, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.552+00', '{"cached":null,"ignore_cache":false}'), +(29625, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.588+00', '{"cached":null,"ignore_cache":false}'), +(29626, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.602+00', '{"cached":null,"ignore_cache":false}'), +(29627, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.642+00', '{"cached":null,"ignore_cache":false}'), +(29628, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.647+00', '{"cached":null,"ignore_cache":false}'), +(29629, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.664+00', '{"cached":null,"ignore_cache":false}'), +(29630, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.672+00', '{"cached":null,"ignore_cache":false}'), +(29631, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:05:59.69+00', '{"cached":null,"ignore_cache":false}'), +(29632, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.674+00', '{"cached":null,"ignore_cache":false}'), +(29633, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.772+00', '{"cached":null,"ignore_cache":false}'), +(29634, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.776+00', '{"cached":null,"ignore_cache":false}'), +(29635, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.809+00', '{"cached":null,"ignore_cache":false}'), +(29636, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:10.824+00', '{"cached":null,"ignore_cache":false}'), +(29637, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:11.791+00', '{"cached":null,"ignore_cache":false}'), +(29638, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:12.132+00', '{"cached":null,"ignore_cache":false}'), +(29639, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.701+00', '{"cached":null,"ignore_cache":false}'), +(29640, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.72+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29641, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:42.756+00', '{"cached":null,"ignore_cache":false}'), +(29642, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:43.161+00', '{"cached":null,"ignore_cache":false}'), +(29643, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:43.181+00', '{"cached":null,"ignore_cache":false}'), +(29644, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:43.201+00', '{"cached":null,"ignore_cache":false}'), +(29645, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:43.203+00', '{"cached":null,"ignore_cache":false}'), +(29646, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:43.226+00', '{"cached":null,"ignore_cache":false}'), +(29647, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:43.227+00', '{"cached":null,"ignore_cache":false}'), +(29648, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.535+00', '{"cached":null,"ignore_cache":false}'), +(29649, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.551+00', '{"cached":null,"ignore_cache":false}'), +(29650, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.73+00', '{"cached":null,"ignore_cache":false}'), +(29651, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.736+00', '{"cached":null,"ignore_cache":false}'), +(29652, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:51.868+00', '{"cached":null,"ignore_cache":false}'), +(29653, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:52.738+00', '{"cached":null,"ignore_cache":false}'), +(29654, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:06:52.847+00', '{"cached":null,"ignore_cache":false}'), +(29655, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.208+00', '{"cached":null,"ignore_cache":false}'), +(29656, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.246+00', '{"cached":null,"ignore_cache":false}'), +(29657, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.304+00', '{"cached":null,"ignore_cache":false}'), +(29658, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.332+00', '{"cached":null,"ignore_cache":false}'), +(29659, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.366+00', '{"cached":null,"ignore_cache":false}'), +(29660, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.387+00', '{"cached":null,"ignore_cache":false}'), +(29661, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.418+00', '{"cached":null,"ignore_cache":false}'), +(29662, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.421+00', '{"cached":null,"ignore_cache":false}'), +(29663, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:20.472+00', '{"cached":null,"ignore_cache":false}'), +(29664, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.176+00', '{"cached":null,"ignore_cache":false}'), +(29665, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.182+00', '{"cached":null,"ignore_cache":false}'), +(29666, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.196+00', '{"cached":null,"ignore_cache":false}'), +(29667, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.207+00', '{"cached":null,"ignore_cache":false}'), +(29668, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.224+00', '{"cached":null,"ignore_cache":false}'), +(29669, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.846+00', '{"cached":null,"ignore_cache":false}'), +(29670, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:26.886+00', '{"cached":null,"ignore_cache":false}'), +(29671, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.067+00', '{"cached":null,"ignore_cache":false}'), +(29672, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.072+00', '{"cached":null,"ignore_cache":false}'), +(29673, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.181+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29674, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.197+00', '{"cached":null,"ignore_cache":false}'), +(29675, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.26+00', '{"cached":null,"ignore_cache":false}'), +(29676, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.271+00', '{"cached":null,"ignore_cache":false}'), +(29677, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.271+00', '{"cached":null,"ignore_cache":false}'), +(29678, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.302+00', '{"cached":null,"ignore_cache":false}'), +(29679, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:50.308+00', '{"cached":null,"ignore_cache":false}'), +(29680, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.084+00', '{"cached":null,"ignore_cache":false}'), +(29681, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.198+00', '{"cached":null,"ignore_cache":false}'), +(29682, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.21+00', '{"cached":null,"ignore_cache":false}'), +(29683, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.215+00', '{"cached":null,"ignore_cache":false}'), +(29684, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:56.259+00', '{"cached":null,"ignore_cache":false}'), +(29685, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:57.047+00', '{"cached":null,"ignore_cache":false}'), +(29686, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:57.254+00', '{"cached":null,"ignore_cache":false}'), +(29687, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:58.814+00', '{"cached":null,"ignore_cache":false}'), +(29688, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.108+00', '{"cached":null,"ignore_cache":false}'), +(29689, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.247+00', '{"cached":null,"ignore_cache":false}'), +(29690, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.279+00', '{"cached":null,"ignore_cache":false}'), +(29691, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.335+00', '{"cached":null,"ignore_cache":false}'), +(29692, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:07:59.478+00', '{"cached":null,"ignore_cache":false}'), +(29693, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:00.788+00', '{"cached":null,"ignore_cache":false}'), +(29694, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:00.876+00', '{"cached":null,"ignore_cache":false}'), +(29695, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:01.171+00', '{"cached":null,"ignore_cache":false}'), +(29696, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:01.418+00', '{"cached":null,"ignore_cache":false}'), +(29697, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.012+00', '{"cached":null,"ignore_cache":false}'), +(29698, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.082+00', '{"cached":null,"ignore_cache":false}'), +(29699, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.087+00', '{"cached":null,"ignore_cache":false}'), +(29700, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.169+00', '{"cached":null,"ignore_cache":false}'), +(29701, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.194+00', '{"cached":null,"ignore_cache":false}'), +(29702, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.216+00', '{"cached":null,"ignore_cache":false}'), +(29703, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.219+00', '{"cached":null,"ignore_cache":false}'), +(29704, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.248+00', '{"cached":null,"ignore_cache":false}'), +(29705, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:21.278+00', '{"cached":null,"ignore_cache":false}'), +(29706, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.024+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29707, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.077+00', '{"cached":null,"ignore_cache":false}'), +(29708, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.244+00', '{"cached":null,"ignore_cache":false}'), +(29709, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.329+00', '{"cached":null,"ignore_cache":false}'), +(29710, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:27.368+00', '{"cached":null,"ignore_cache":false}'), +(29711, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:28.322+00', '{"cached":null,"ignore_cache":false}'), +(29712, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:28.391+00', '{"cached":null,"ignore_cache":false}'), +(29713, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.151+00', '{"cached":null,"ignore_cache":false}'), +(29714, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.27+00', '{"cached":null,"ignore_cache":false}'), +(29715, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.399+00', '{"cached":null,"ignore_cache":false}'), +(29716, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.407+00', '{"cached":null,"ignore_cache":false}'), +(29717, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.42+00', '{"cached":null,"ignore_cache":false}'), +(29718, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.426+00', '{"cached":null,"ignore_cache":false}'), +(29719, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.468+00', '{"cached":null,"ignore_cache":false}'), +(29720, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.497+00', '{"cached":null,"ignore_cache":false}'), +(29721, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:52.522+00', '{"cached":null,"ignore_cache":false}'), +(29722, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.121+00', '{"cached":null,"ignore_cache":false}'), +(29723, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.174+00', '{"cached":null,"ignore_cache":false}'), +(29724, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.213+00', '{"cached":null,"ignore_cache":false}'), +(29725, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.272+00', '{"cached":null,"ignore_cache":false}'), +(29726, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:58.358+00', '{"cached":null,"ignore_cache":false}'), +(29727, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:59.328+00', '{"cached":null,"ignore_cache":false}'), +(29728, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:08:59.389+00', '{"cached":null,"ignore_cache":false}'), +(29729, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.895+00', '{"cached":null,"ignore_cache":false}'), +(29730, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.943+00', '{"cached":null,"ignore_cache":false}'), +(29731, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:22.974+00', '{"cached":null,"ignore_cache":false}'), +(29732, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.024+00', '{"cached":null,"ignore_cache":false}'), +(29733, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.145+00', '{"cached":null,"ignore_cache":false}'), +(29734, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.162+00', '{"cached":null,"ignore_cache":false}'), +(29735, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.2+00', '{"cached":null,"ignore_cache":false}'), +(29736, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.265+00', '{"cached":null,"ignore_cache":false}'), +(29737, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:23.374+00', '{"cached":null,"ignore_cache":false}'), +(29738, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.057+00', '{"cached":null,"ignore_cache":false}'), +(29739, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.077+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29740, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.079+00', '{"cached":null,"ignore_cache":false}'), +(29741, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.133+00', '{"cached":null,"ignore_cache":false}'), +(29742, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:28.166+00', '{"cached":null,"ignore_cache":false}'), +(29743, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:29.246+00', '{"cached":null,"ignore_cache":false}'), +(29744, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:29.369+00', '{"cached":null,"ignore_cache":false}'), +(29745, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.844+00', '{"cached":null,"ignore_cache":false}'), +(29746, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.907+00', '{"cached":null,"ignore_cache":false}'), +(29747, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.938+00', '{"cached":null,"ignore_cache":false}'), +(29748, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.989+00', '{"cached":null,"ignore_cache":false}'), +(29749, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:54.99+00', '{"cached":null,"ignore_cache":false}'), +(29750, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:55.021+00', '{"cached":null,"ignore_cache":false}'), +(29751, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:55.058+00', '{"cached":null,"ignore_cache":false}'), +(29752, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:55.086+00', '{"cached":null,"ignore_cache":false}'), +(29753, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:09:55.117+00', '{"cached":null,"ignore_cache":false}'), +(29754, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.316+00', '{"cached":null,"ignore_cache":false}'), +(29755, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.341+00', '{"cached":null,"ignore_cache":false}'), +(29756, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.43+00', '{"cached":null,"ignore_cache":false}'), +(29757, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.476+00', '{"cached":null,"ignore_cache":false}'), +(29758, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:03.51+00', '{"cached":null,"ignore_cache":false}'), +(29759, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:04.556+00', '{"cached":null,"ignore_cache":false}'), +(29760, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:04.789+00', '{"cached":null,"ignore_cache":false}'), +(29761, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.469+00', '{"cached":null,"ignore_cache":false}'), +(29762, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.491+00', '{"cached":null,"ignore_cache":false}'), +(29763, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.509+00', '{"cached":null,"ignore_cache":false}'), +(29764, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.511+00', '{"cached":null,"ignore_cache":false}'), +(29765, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.512+00', '{"cached":null,"ignore_cache":false}'), +(29766, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.526+00', '{"cached":null,"ignore_cache":false}'), +(29767, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.533+00', '{"cached":null,"ignore_cache":false}'), +(29768, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.546+00', '{"cached":null,"ignore_cache":false}'), +(29769, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:32.579+00', '{"cached":null,"ignore_cache":false}'), +(29770, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.229+00', '{"cached":null,"ignore_cache":false}'), +(29771, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.241+00', '{"cached":null,"ignore_cache":false}'), +(29772, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.285+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29773, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.417+00', '{"cached":null,"ignore_cache":false}'), +(29774, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:41.489+00', '{"cached":null,"ignore_cache":false}'), +(29775, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:42.031+00', '{"cached":null,"ignore_cache":false}'), +(29776, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:10:42.181+00', '{"cached":null,"ignore_cache":false}'), +(29777, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.718+00', '{"cached":null,"ignore_cache":false}'), +(29778, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.845+00', '{"cached":null,"ignore_cache":false}'), +(29779, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.889+00', '{"cached":null,"ignore_cache":false}'), +(29780, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.904+00', '{"cached":null,"ignore_cache":false}'), +(29781, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.917+00', '{"cached":null,"ignore_cache":false}'), +(29782, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.941+00', '{"cached":null,"ignore_cache":false}'), +(29783, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.994+00', '{"cached":null,"ignore_cache":false}'), +(29784, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:08.998+00', '{"cached":null,"ignore_cache":false}'), +(29785, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:09.129+00', '{"cached":null,"ignore_cache":false}'), +(29786, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.32+00', '{"cached":null,"ignore_cache":false}'), +(29787, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.423+00', '{"cached":null,"ignore_cache":false}'), +(29788, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.435+00', '{"cached":null,"ignore_cache":false}'), +(29789, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.491+00', '{"cached":null,"ignore_cache":false}'), +(29790, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:18.51+00', '{"cached":null,"ignore_cache":false}'), +(29791, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:19.388+00', '{"cached":null,"ignore_cache":false}'), +(29792, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:19.417+00', '{"cached":null,"ignore_cache":false}'), +(29793, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.52+00', '{"cached":null,"ignore_cache":false}'), +(29794, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.521+00', '{"cached":null,"ignore_cache":false}'), +(29795, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.634+00', '{"cached":null,"ignore_cache":false}'), +(29796, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.652+00', '{"cached":null,"ignore_cache":false}'), +(29797, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.653+00', '{"cached":null,"ignore_cache":false}'), +(29798, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.685+00', '{"cached":null,"ignore_cache":false}'), +(29799, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.695+00', '{"cached":null,"ignore_cache":false}'), +(29800, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.715+00', '{"cached":null,"ignore_cache":false}'), +(29801, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:46.722+00', '{"cached":null,"ignore_cache":false}'), +(29802, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.079+00', '{"cached":null,"ignore_cache":false}'), +(29803, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.17+00', '{"cached":null,"ignore_cache":false}'), +(29804, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.19+00', '{"cached":null,"ignore_cache":false}'), +(29805, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.198+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29806, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:55.238+00', '{"cached":null,"ignore_cache":false}'), +(29807, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:56.031+00', '{"cached":null,"ignore_cache":false}'), +(29808, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:11:56.052+00', '{"cached":null,"ignore_cache":false}'), +(29809, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.574+00', '{"cached":null,"ignore_cache":false}'), +(29810, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.658+00', '{"cached":null,"ignore_cache":false}'), +(29811, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.683+00', '{"cached":null,"ignore_cache":false}'), +(29812, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.715+00', '{"cached":null,"ignore_cache":false}'), +(29813, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.716+00', '{"cached":null,"ignore_cache":false}'), +(29814, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.731+00', '{"cached":null,"ignore_cache":false}'), +(29815, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.738+00', '{"cached":null,"ignore_cache":false}'), +(29816, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.757+00', '{"cached":null,"ignore_cache":false}'), +(29817, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:23.759+00', '{"cached":null,"ignore_cache":false}'), +(29818, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.371+00', '{"cached":null,"ignore_cache":false}'), +(29819, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.445+00', '{"cached":null,"ignore_cache":false}'), +(29820, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.474+00', '{"cached":null,"ignore_cache":false}'), +(29821, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.502+00', '{"cached":null,"ignore_cache":false}'), +(29822, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:33.524+00', '{"cached":null,"ignore_cache":false}'), +(29823, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:34.203+00', '{"cached":null,"ignore_cache":false}'), +(29824, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:12:34.24+00', '{"cached":null,"ignore_cache":false}'), +(29825, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.189+00', '{"cached":null,"ignore_cache":false}'), +(29826, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.215+00', '{"cached":null,"ignore_cache":false}'), +(29827, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.237+00', '{"cached":null,"ignore_cache":false}'), +(29828, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.265+00', '{"cached":null,"ignore_cache":false}'), +(29829, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.297+00', '{"cached":null,"ignore_cache":false}'), +(29830, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.305+00', '{"cached":null,"ignore_cache":false}'), +(29831, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.323+00', '{"cached":null,"ignore_cache":false}'), +(29832, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.326+00', '{"cached":null,"ignore_cache":false}'), +(29833, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:00.334+00', '{"cached":null,"ignore_cache":false}'), +(29834, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.26+00', '{"cached":null,"ignore_cache":false}'), +(29835, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.343+00', '{"cached":null,"ignore_cache":false}'), +(29836, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.358+00', '{"cached":null,"ignore_cache":false}'), +(29837, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.4+00', '{"cached":null,"ignore_cache":false}'), +(29838, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:08.436+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29839, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:09.373+00', '{"cached":null,"ignore_cache":false}'), +(29840, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:09.504+00', '{"cached":null,"ignore_cache":false}'), +(29841, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.389+00', '{"cached":null,"ignore_cache":false}'), +(29842, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.417+00', '{"cached":null,"ignore_cache":false}'), +(29843, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.461+00', '{"cached":null,"ignore_cache":false}'), +(29844, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.47+00', '{"cached":null,"ignore_cache":false}'), +(29845, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.517+00', '{"cached":null,"ignore_cache":false}'), +(29846, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.534+00', '{"cached":null,"ignore_cache":false}'), +(29847, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.547+00', '{"cached":null,"ignore_cache":false}'), +(29848, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.567+00', '{"cached":null,"ignore_cache":false}'), +(29849, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:34.648+00', '{"cached":null,"ignore_cache":false}'), +(29850, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.489+00', '{"cached":null,"ignore_cache":false}'), +(29851, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.513+00', '{"cached":null,"ignore_cache":false}'), +(29852, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.55+00', '{"cached":null,"ignore_cache":false}'), +(29853, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.592+00', '{"cached":null,"ignore_cache":false}'), +(29854, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:47.593+00', '{"cached":null,"ignore_cache":false}'), +(29855, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:48.596+00', '{"cached":null,"ignore_cache":false}'), +(29856, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:48.817+00', '{"cached":null,"ignore_cache":false}'), +(29857, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.094+00', '{"cached":null,"ignore_cache":false}'), +(29858, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.164+00', '{"cached":null,"ignore_cache":false}'), +(29859, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.195+00', '{"cached":null,"ignore_cache":false}'), +(29860, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.223+00', '{"cached":null,"ignore_cache":false}'), +(29861, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.302+00', '{"cached":null,"ignore_cache":false}'), +(29862, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:51.475+00', '{"cached":null,"ignore_cache":false}'), +(29863, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:53.415+00', '{"cached":null,"ignore_cache":false}'), +(29864, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:53.419+00', '{"cached":null,"ignore_cache":false}'), +(29865, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:53.629+00', '{"cached":null,"ignore_cache":false}'), +(29866, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:13:53.651+00', '{"cached":null,"ignore_cache":false}'), +(29867, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.802+00', '{"cached":null,"ignore_cache":false}'), +(29868, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:08.857+00', '{"cached":null,"ignore_cache":false}'), +(29869, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:09.023+00', '{"cached":null,"ignore_cache":false}'), +(29870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:09.088+00', '{"cached":null,"ignore_cache":false}'), +(29871, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:09.159+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29872, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:09.306+00', '{"cached":null,"ignore_cache":false}'), +(29873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:11.251+00', '{"cached":null,"ignore_cache":false}'), +(29874, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:11.636+00', '{"cached":null,"ignore_cache":false}'), +(29875, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:11.663+00', '{"cached":null,"ignore_cache":false}'), +(29876, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:11.761+00', '{"cached":null,"ignore_cache":false}'), +(29877, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.294+00', '{"cached":null,"ignore_cache":false}'), +(29878, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.46+00', '{"cached":null,"ignore_cache":false}'), +(29879, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.461+00', '{"cached":null,"ignore_cache":false}'), +(29880, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.525+00', '{"cached":null,"ignore_cache":false}'), +(29881, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.532+00', '{"cached":null,"ignore_cache":false}'), +(29882, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.542+00', '{"cached":null,"ignore_cache":false}'), +(29883, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.572+00', '{"cached":null,"ignore_cache":false}'), +(29884, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.599+00', '{"cached":null,"ignore_cache":false}'), +(29885, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:14.607+00', '{"cached":null,"ignore_cache":false}'), +(29886, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.264+00', '{"cached":null,"ignore_cache":false}'), +(29887, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.555+00', '{"cached":null,"ignore_cache":false}'), +(29888, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.622+00', '{"cached":null,"ignore_cache":false}'), +(29889, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.651+00', '{"cached":null,"ignore_cache":false}'), +(29890, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:26.675+00', '{"cached":null,"ignore_cache":false}'), +(29891, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:27.432+00', '{"cached":null,"ignore_cache":false}'), +(29892, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:27.674+00', '{"cached":null,"ignore_cache":false}'), +(29893, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.335+00', '{"cached":null,"ignore_cache":false}'), +(29894, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.396+00', '{"cached":null,"ignore_cache":false}'), +(29895, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.41+00', '{"cached":null,"ignore_cache":false}'), +(29896, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.488+00', '{"cached":null,"ignore_cache":false}'), +(29897, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.503+00', '{"cached":null,"ignore_cache":false}'), +(29898, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.504+00', '{"cached":null,"ignore_cache":false}'), +(29899, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.799+00', '{"cached":null,"ignore_cache":false}'), +(29900, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.936+00', '{"cached":null,"ignore_cache":false}'), +(29901, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.957+00', '{"cached":null,"ignore_cache":false}'), +(29902, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:39.964+00', '{"cached":null,"ignore_cache":false}'), +(29903, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:41.134+00', '{"cached":null,"ignore_cache":false}'), +(29904, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:41.262+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29905, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:41.59+00', '{"cached":null,"ignore_cache":false}'), +(29906, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:41.681+00', '{"cached":null,"ignore_cache":false}'), +(29907, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.299+00', '{"cached":null,"ignore_cache":false}'), +(29908, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.366+00', '{"cached":null,"ignore_cache":false}'), +(29909, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.433+00', '{"cached":null,"ignore_cache":false}'), +(29910, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.477+00', '{"cached":null,"ignore_cache":false}'), +(29911, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.533+00', '{"cached":null,"ignore_cache":false}'), +(29912, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.539+00', '{"cached":null,"ignore_cache":false}'), +(29913, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.544+00', '{"cached":null,"ignore_cache":false}'), +(29914, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.566+00', '{"cached":null,"ignore_cache":false}'), +(29915, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:14:52.57+00', '{"cached":null,"ignore_cache":false}'), +(29916, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.259+00', '{"cached":null,"ignore_cache":false}'), +(29917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.371+00', '{"cached":null,"ignore_cache":false}'), +(29918, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.39+00', '{"cached":null,"ignore_cache":false}'), +(29919, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.411+00', '{"cached":null,"ignore_cache":false}'), +(29920, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:01.429+00', '{"cached":null,"ignore_cache":false}'), +(29921, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:02.364+00', '{"cached":null,"ignore_cache":false}'), +(29922, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:15:02.573+00', '{"cached":null,"ignore_cache":false}'), +(29923, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.328+00', '{"cached":null,"ignore_cache":false}'), +(29924, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.617+00', '{"cached":null,"ignore_cache":false}'), +(29925, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.624+00', '{"cached":null,"ignore_cache":false}'), +(29926, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.661+00', '{"cached":null,"ignore_cache":false}'), +(29927, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.705+00', '{"cached":null,"ignore_cache":false}'), +(29928, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.846+00', '{"cached":null,"ignore_cache":false}'), +(29929, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.847+00', '{"cached":null,"ignore_cache":false}'), +(29930, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.868+00', '{"cached":null,"ignore_cache":false}'), +(29931, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:36.93+00', '{"cached":null,"ignore_cache":false}'), +(29932, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.338+00', '{"cached":null,"ignore_cache":false}'), +(29933, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.805+00', '{"cached":null,"ignore_cache":false}'), +(29934, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.823+00', '{"cached":null,"ignore_cache":false}'), +(29935, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.837+00', '{"cached":null,"ignore_cache":false}'), +(29936, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:45.847+00', '{"cached":null,"ignore_cache":false}'), +(29937, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:47.971+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29938, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:16:48.036+00', '{"cached":null,"ignore_cache":false}'), +(29939, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.338+00', '{"cached":null,"ignore_cache":false}'), +(29940, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.393+00', '{"cached":null,"ignore_cache":false}'), +(29941, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.494+00', '{"cached":null,"ignore_cache":false}'), +(29942, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.496+00', '{"cached":null,"ignore_cache":false}'), +(29943, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.498+00', '{"cached":null,"ignore_cache":false}'), +(29944, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.53+00', '{"cached":null,"ignore_cache":false}'), +(29945, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:13.533+00', '{"cached":null,"ignore_cache":false}'), +(29946, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:14.176+00', '{"cached":null,"ignore_cache":false}'), +(29947, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:14.314+00', '{"cached":null,"ignore_cache":false}'), +(29948, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.576+00', '{"cached":null,"ignore_cache":false}'), +(29949, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.839+00', '{"cached":null,"ignore_cache":false}'), +(29950, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:24.845+00', '{"cached":null,"ignore_cache":false}'), +(29951, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:25.062+00', '{"cached":null,"ignore_cache":false}'), +(29952, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:25.088+00', '{"cached":null,"ignore_cache":false}'), +(29953, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:25.454+00', '{"cached":null,"ignore_cache":false}'), +(29954, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:25.794+00', '{"cached":null,"ignore_cache":false}'), +(29955, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.431+00', '{"cached":null,"ignore_cache":false}'), +(29956, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.451+00', '{"cached":null,"ignore_cache":false}'), +(29957, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.541+00', '{"cached":null,"ignore_cache":false}'), +(29958, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.636+00', '{"cached":null,"ignore_cache":false}'), +(29959, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.736+00', '{"cached":null,"ignore_cache":false}'), +(29960, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.825+00', '{"cached":null,"ignore_cache":false}'), +(29961, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.845+00', '{"cached":null,"ignore_cache":false}'), +(29962, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.857+00', '{"cached":null,"ignore_cache":false}'), +(29963, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:47.939+00', '{"cached":null,"ignore_cache":false}'), +(29964, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.232+00', '{"cached":null,"ignore_cache":false}'), +(29965, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.369+00', '{"cached":null,"ignore_cache":false}'), +(29966, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.382+00', '{"cached":null,"ignore_cache":false}'), +(29967, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.474+00', '{"cached":null,"ignore_cache":false}'), +(29968, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.496+00', '{"cached":null,"ignore_cache":false}'), +(29969, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:57.914+00', '{"cached":null,"ignore_cache":false}'), +(29970, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:17:58.095+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(29971, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.828+00', '{"cached":null,"ignore_cache":false}'), +(29972, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.84+00', '{"cached":null,"ignore_cache":false}'), +(29973, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.857+00', '{"cached":null,"ignore_cache":false}'), +(29974, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.879+00', '{"cached":null,"ignore_cache":false}'), +(29975, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.954+00', '{"cached":null,"ignore_cache":false}'), +(29976, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:27.998+00', '{"cached":null,"ignore_cache":false}'), +(29977, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:28.006+00', '{"cached":null,"ignore_cache":false}'), +(29978, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:28.017+00', '{"cached":null,"ignore_cache":false}'), +(29979, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:28.029+00', '{"cached":null,"ignore_cache":false}'), +(29980, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:39.074+00', '{"cached":null,"ignore_cache":false}'), +(29981, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:39.206+00', '{"cached":null,"ignore_cache":false}'), +(29982, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:39.234+00', '{"cached":null,"ignore_cache":false}'), +(29983, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:39.279+00', '{"cached":null,"ignore_cache":false}'), +(29984, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:39.332+00', '{"cached":null,"ignore_cache":false}'), +(29985, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:40.543+00', '{"cached":null,"ignore_cache":false}'), +(29986, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:18:40.792+00', '{"cached":null,"ignore_cache":false}'), +(29987, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.471+00', '{"cached":null,"ignore_cache":false}'), +(29988, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.563+00', '{"cached":null,"ignore_cache":false}'), +(29989, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.62+00', '{"cached":null,"ignore_cache":false}'), +(29990, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.669+00', '{"cached":null,"ignore_cache":false}'), +(29991, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.685+00', '{"cached":null,"ignore_cache":false}'), +(29992, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.72+00', '{"cached":null,"ignore_cache":false}'), +(29993, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.746+00', '{"cached":null,"ignore_cache":false}'), +(29994, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.751+00', '{"cached":null,"ignore_cache":false}'), +(29995, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:04.817+00', '{"cached":null,"ignore_cache":false}'), +(29996, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.528+00', '{"cached":null,"ignore_cache":false}'), +(29997, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.781+00', '{"cached":null,"ignore_cache":false}'), +(29998, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.812+00', '{"cached":null,"ignore_cache":false}'), +(29999, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.822+00', '{"cached":null,"ignore_cache":false}'), +(30000, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:18.858+00', '{"cached":null,"ignore_cache":false}'), +(30001, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:19.458+00', '{"cached":null,"ignore_cache":false}'), +(30002, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:19.724+00', '{"cached":null,"ignore_cache":false}'), +(30003, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.833+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30004, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.865+00', '{"cached":null,"ignore_cache":false}'), +(30005, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.925+00', '{"cached":null,"ignore_cache":false}'), +(30006, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.926+00', '{"cached":null,"ignore_cache":false}'), +(30007, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.927+00', '{"cached":null,"ignore_cache":false}'), +(30008, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.931+00', '{"cached":null,"ignore_cache":false}'), +(30009, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.994+00', '{"cached":null,"ignore_cache":false}'), +(30010, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:47.998+00', '{"cached":null,"ignore_cache":false}'), +(30011, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:19:48.037+00', '{"cached":null,"ignore_cache":false}'), +(30012, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.254+00', '{"cached":null,"ignore_cache":false}'), +(30013, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.306+00', '{"cached":null,"ignore_cache":false}'), +(30014, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.429+00', '{"cached":null,"ignore_cache":false}'), +(30015, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.449+00', '{"cached":null,"ignore_cache":false}'), +(30016, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.458+00', '{"cached":null,"ignore_cache":false}'), +(30017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:01.924+00', '{"cached":null,"ignore_cache":false}'), +(30018, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:02.046+00', '{"cached":null,"ignore_cache":false}'), +(30019, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.424+00', '{"cached":null,"ignore_cache":false}'), +(30020, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.495+00', '{"cached":null,"ignore_cache":false}'), +(30021, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.587+00', '{"cached":null,"ignore_cache":false}'), +(30022, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.591+00', '{"cached":null,"ignore_cache":false}'), +(30023, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.602+00', '{"cached":null,"ignore_cache":false}'), +(30024, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.636+00', '{"cached":null,"ignore_cache":false}'), +(30025, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.648+00', '{"cached":null,"ignore_cache":false}'), +(30026, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.653+00', '{"cached":null,"ignore_cache":false}'), +(30027, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:26.7+00', '{"cached":null,"ignore_cache":false}'), +(30028, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.305+00', '{"cached":null,"ignore_cache":false}'), +(30029, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.334+00', '{"cached":null,"ignore_cache":false}'), +(30030, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.378+00', '{"cached":null,"ignore_cache":false}'), +(30031, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.497+00', '{"cached":null,"ignore_cache":false}'), +(30032, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.532+00', '{"cached":null,"ignore_cache":false}'), +(30033, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.619+00', '{"cached":null,"ignore_cache":false}'), +(30034, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:38.634+00', '{"cached":null,"ignore_cache":false}'), +(30035, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.529+00', '{"cached":null,"ignore_cache":false}'), +(30036, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.702+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30037, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.818+00', '{"cached":null,"ignore_cache":false}'), +(30038, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.83+00', '{"cached":null,"ignore_cache":false}'), +(30039, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.905+00', '{"cached":null,"ignore_cache":false}'), +(30040, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.968+00', '{"cached":null,"ignore_cache":false}'), +(30041, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:39.994+00', '{"cached":null,"ignore_cache":false}'), +(30042, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.013+00', '{"cached":null,"ignore_cache":false}'), +(30043, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.031+00', '{"cached":null,"ignore_cache":false}'), +(30044, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.124+00', '{"cached":null,"ignore_cache":false}'), +(30045, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.302+00', '{"cached":null,"ignore_cache":false}'), +(30046, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.45+00', '{"cached":null,"ignore_cache":false}'), +(30047, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.622+00', '{"cached":null,"ignore_cache":false}'), +(30048, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:40.685+00', '{"cached":null,"ignore_cache":false}'), +(30049, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.015+00', '{"cached":null,"ignore_cache":false}'), +(30050, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.017+00', '{"cached":null,"ignore_cache":false}'), +(30051, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.227+00', '{"cached":null,"ignore_cache":false}'), +(30052, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.238+00', '{"cached":null,"ignore_cache":false}'), +(30053, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.512+00', '{"cached":null,"ignore_cache":false}'), +(30054, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.561+00', '{"cached":null,"ignore_cache":false}'), +(30055, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.604+00', '{"cached":null,"ignore_cache":false}'), +(30056, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.688+00', '{"cached":null,"ignore_cache":false}'), +(30057, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:41.781+00', '{"cached":null,"ignore_cache":false}'), +(30058, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:42.808+00', '{"cached":null,"ignore_cache":false}'), +(30059, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:43.27+00', '{"cached":null,"ignore_cache":false}'), +(30060, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:43.424+00', '{"cached":null,"ignore_cache":false}'), +(30061, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:20:43.477+00', '{"cached":null,"ignore_cache":false}'), +(30062, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.724+00', '{"cached":null,"ignore_cache":false}'), +(30063, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.907+00', '{"cached":null,"ignore_cache":false}'), +(30064, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.931+00', '{"cached":null,"ignore_cache":false}'), +(30065, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:04.972+00', '{"cached":null,"ignore_cache":false}'), +(30066, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:05.011+00', '{"cached":null,"ignore_cache":false}'), +(30067, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:05.063+00', '{"cached":null,"ignore_cache":false}'), +(30068, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:05.074+00', '{"cached":null,"ignore_cache":false}'), +(30069, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:05.1+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30070, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:05.163+00', '{"cached":null,"ignore_cache":false}'), +(30071, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.466+00', '{"cached":null,"ignore_cache":false}'), +(30072, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.827+00', '{"cached":null,"ignore_cache":false}'), +(30073, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.834+00', '{"cached":null,"ignore_cache":false}'), +(30074, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.869+00', '{"cached":null,"ignore_cache":false}'), +(30075, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:19.885+00', '{"cached":null,"ignore_cache":false}'), +(30076, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.474+00', '{"cached":null,"ignore_cache":false}'), +(30077, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.537+00', '{"cached":null,"ignore_cache":false}'), +(30078, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.693+00', '{"cached":null,"ignore_cache":false}'), +(30079, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.696+00', '{"cached":null,"ignore_cache":false}'), +(30080, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.7+00', '{"cached":null,"ignore_cache":false}'), +(30081, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:20.863+00', '{"cached":null,"ignore_cache":false}'), +(30082, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.218+00', '{"cached":null,"ignore_cache":false}'), +(30083, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.689+00', '{"cached":null,"ignore_cache":false}'), +(30084, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.708+00', '{"cached":null,"ignore_cache":false}'), +(30085, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.728+00', '{"cached":null,"ignore_cache":false}'), +(30086, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.753+00', '{"cached":null,"ignore_cache":false}'), +(30087, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.837+00', '{"cached":null,"ignore_cache":false}'), +(30088, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.846+00', '{"cached":null,"ignore_cache":false}'), +(30089, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.938+00', '{"cached":null,"ignore_cache":false}'), +(30090, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.958+00', '{"cached":null,"ignore_cache":false}'), +(30091, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:21.974+00', '{"cached":null,"ignore_cache":false}'), +(30092, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:22.006+00', '{"cached":null,"ignore_cache":false}'), +(30093, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:22.044+00', '{"cached":null,"ignore_cache":false}'), +(30094, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.254+00', '{"cached":null,"ignore_cache":false}'), +(30095, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.464+00', '{"cached":null,"ignore_cache":false}'), +(30096, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.605+00', '{"cached":null,"ignore_cache":false}'), +(30097, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.682+00', '{"cached":null,"ignore_cache":false}'), +(30098, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.704+00', '{"cached":null,"ignore_cache":false}'), +(30099, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.734+00', '{"cached":null,"ignore_cache":false}'), +(30100, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.751+00', '{"cached":null,"ignore_cache":false}'), +(30101, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.76+00', '{"cached":null,"ignore_cache":false}'), +(30102, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:21:42.767+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30103, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.767+00', '{"cached":null,"ignore_cache":false}'), +(30104, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.793+00', '{"cached":null,"ignore_cache":false}'), +(30105, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.826+00', '{"cached":null,"ignore_cache":false}'), +(30106, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.837+00', '{"cached":null,"ignore_cache":false}'), +(30107, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:16.937+00', '{"cached":null,"ignore_cache":false}'), +(30108, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:18.017+00', '{"cached":null,"ignore_cache":false}'), +(30109, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:18.252+00', '{"cached":null,"ignore_cache":false}'), +(30110, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.084+00', '{"cached":null,"ignore_cache":false}'), +(30111, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.169+00', '{"cached":null,"ignore_cache":false}'), +(30112, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.198+00', '{"cached":null,"ignore_cache":false}'), +(30113, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.3+00', '{"cached":null,"ignore_cache":false}'), +(30114, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.318+00', '{"cached":null,"ignore_cache":false}'), +(30115, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.32+00', '{"cached":null,"ignore_cache":false}'), +(30116, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.336+00', '{"cached":null,"ignore_cache":false}'), +(30117, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.343+00', '{"cached":null,"ignore_cache":false}'), +(30118, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:22:21.366+00', '{"cached":null,"ignore_cache":false}'), +(30119, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.833+00', '{"cached":null,"ignore_cache":false}'), +(30120, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.842+00', '{"cached":null,"ignore_cache":false}'), +(30121, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.851+00', '{"cached":null,"ignore_cache":false}'), +(30122, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.871+00', '{"cached":null,"ignore_cache":false}'), +(30123, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:00.883+00', '{"cached":null,"ignore_cache":false}'), +(30124, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:01.779+00', '{"cached":null,"ignore_cache":false}'), +(30125, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:01.97+00', '{"cached":null,"ignore_cache":false}'), +(30126, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.428+00', '{"cached":null,"ignore_cache":false}'), +(30127, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.438+00', '{"cached":null,"ignore_cache":false}'), +(30128, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.446+00', '{"cached":null,"ignore_cache":false}'), +(30129, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.48+00', '{"cached":null,"ignore_cache":false}'), +(30130, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.486+00', '{"cached":null,"ignore_cache":false}'), +(30131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.511+00', '{"cached":null,"ignore_cache":false}'), +(30132, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.53+00', '{"cached":null,"ignore_cache":false}'), +(30133, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.558+00', '{"cached":null,"ignore_cache":false}'), +(30134, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:06.591+00', '{"cached":null,"ignore_cache":false}'), +(30135, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.326+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30136, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.339+00', '{"cached":null,"ignore_cache":false}'), +(30137, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.386+00', '{"cached":null,"ignore_cache":false}'), +(30138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.446+00', '{"cached":null,"ignore_cache":false}'), +(30139, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.46+00', '{"cached":null,"ignore_cache":false}'), +(30140, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.517+00', '{"cached":null,"ignore_cache":false}'), +(30141, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.527+00', '{"cached":null,"ignore_cache":false}'), +(30142, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.55+00', '{"cached":null,"ignore_cache":false}'), +(30143, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:23:56.555+00', '{"cached":null,"ignore_cache":false}'), +(30144, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.861+00', '{"cached":null,"ignore_cache":false}'), +(30145, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.87+00', '{"cached":null,"ignore_cache":false}'), +(30146, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.963+00', '{"cached":null,"ignore_cache":false}'), +(30147, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.982+00', '{"cached":null,"ignore_cache":false}'), +(30148, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:06.991+00', '{"cached":null,"ignore_cache":false}'), +(30149, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:07.869+00', '{"cached":null,"ignore_cache":false}'), +(30150, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:08.106+00', '{"cached":null,"ignore_cache":false}'), +(30151, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:26.505+00', '{"cached":null,"ignore_cache":false}'), +(30152, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:27.841+00', '{"cached":null,"ignore_cache":false}'), +(30153, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.143+00', '{"cached":null,"ignore_cache":false}'), +(30154, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.251+00', '{"cached":null,"ignore_cache":false}'), +(30155, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.395+00', '{"cached":null,"ignore_cache":false}'), +(30156, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.511+00', '{"cached":null,"ignore_cache":false}'), +(30157, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.521+00', '{"cached":null,"ignore_cache":false}'), +(30158, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.558+00', '{"cached":null,"ignore_cache":false}'), +(30159, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.602+00', '{"cached":null,"ignore_cache":false}'), +(30160, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.913+00', '{"cached":null,"ignore_cache":false}'), +(30161, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:28.975+00', '{"cached":null,"ignore_cache":false}'), +(30162, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:29.089+00', '{"cached":null,"ignore_cache":false}'), +(30163, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:29.118+00', '{"cached":null,"ignore_cache":false}'), +(30164, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:29.165+00', '{"cached":null,"ignore_cache":false}'), +(30165, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:29.18+00', '{"cached":null,"ignore_cache":false}'), +(30166, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:29.319+00', '{"cached":null,"ignore_cache":false}'), +(30167, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:29.544+00', '{"cached":null,"ignore_cache":false}'), +(30168, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:31.059+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30169, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:31.081+00', '{"cached":null,"ignore_cache":false}'), +(30170, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:31.09+00', '{"cached":null,"ignore_cache":false}'), +(30171, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:31.109+00', '{"cached":null,"ignore_cache":false}'), +(30172, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:31.135+00', '{"cached":null,"ignore_cache":false}'), +(30173, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:31.135+00', '{"cached":null,"ignore_cache":false}'), +(30174, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.504+00', '{"cached":null,"ignore_cache":false}'), +(30175, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.509+00', '{"cached":null,"ignore_cache":false}'), +(30176, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.526+00', '{"cached":null,"ignore_cache":false}'), +(30177, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.678+00', '{"cached":null,"ignore_cache":false}'), +(30178, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.766+00', '{"cached":null,"ignore_cache":false}'), +(30179, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.8+00', '{"cached":null,"ignore_cache":false}'), +(30180, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.917+00', '{"cached":null,"ignore_cache":false}'), +(30181, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:57.997+00', '{"cached":null,"ignore_cache":false}'), +(30182, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.008+00', '{"cached":null,"ignore_cache":false}'), +(30183, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.01+00', '{"cached":null,"ignore_cache":false}'), +(30184, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.042+00', '{"cached":null,"ignore_cache":false}'), +(30185, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.055+00', '{"cached":null,"ignore_cache":false}'), +(30186, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.06+00', '{"cached":null,"ignore_cache":false}'), +(30187, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.1+00', '{"cached":null,"ignore_cache":false}'), +(30188, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.783+00', '{"cached":null,"ignore_cache":false}'), +(30189, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:24:58.862+00', '{"cached":null,"ignore_cache":false}'), +(30190, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:33.855+00', '{"cached":null,"ignore_cache":false}'), +(30191, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:33.987+00', '{"cached":null,"ignore_cache":false}'), +(30192, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:34.022+00', '{"cached":null,"ignore_cache":false}'), +(30193, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.226+00', '{"cached":null,"ignore_cache":false}'), +(30194, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.228+00', '{"cached":null,"ignore_cache":false}'), +(30195, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.286+00', '{"cached":null,"ignore_cache":false}'), +(30196, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.286+00', '{"cached":null,"ignore_cache":false}'), +(30197, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.297+00', '{"cached":null,"ignore_cache":false}'), +(30198, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:36.311+00', '{"cached":null,"ignore_cache":false}'), +(30199, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.257+00', '{"cached":null,"ignore_cache":false}'), +(30200, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.343+00', '{"cached":null,"ignore_cache":false}'), +(30201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.361+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30202, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.427+00', '{"cached":null,"ignore_cache":false}'), +(30203, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:41.47+00', '{"cached":null,"ignore_cache":false}'), +(30204, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:42.548+00', '{"cached":null,"ignore_cache":false}'), +(30205, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:25:42.601+00', '{"cached":null,"ignore_cache":false}'), +(30206, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.829+00', '{"cached":null,"ignore_cache":false}'), +(30207, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:02.962+00', '{"cached":null,"ignore_cache":false}'), +(30208, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:03.002+00', '{"cached":null,"ignore_cache":false}'), +(30209, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:03.008+00', '{"cached":null,"ignore_cache":false}'), +(30210, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:03.039+00', '{"cached":null,"ignore_cache":false}'), +(30211, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:03.055+00', '{"cached":null,"ignore_cache":false}'), +(30212, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:03.058+00', '{"cached":null,"ignore_cache":false}'), +(30213, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:05.553+00', '{"cached":null,"ignore_cache":false}'), +(30214, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:05.66+00', '{"cached":null,"ignore_cache":false}'), +(30215, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.646+00', '{"cached":null,"ignore_cache":false}'), +(30216, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.804+00', '{"cached":null,"ignore_cache":false}'), +(30217, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.808+00', '{"cached":null,"ignore_cache":false}'), +(30218, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.887+00', '{"cached":null,"ignore_cache":false}'), +(30219, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:08.896+00', '{"cached":null,"ignore_cache":false}'), +(30220, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:09.377+00', '{"cached":null,"ignore_cache":false}'), +(30221, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:09.509+00', '{"cached":null,"ignore_cache":false}'), +(30222, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.425+00', '{"cached":null,"ignore_cache":false}'), +(30223, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.529+00', '{"cached":null,"ignore_cache":false}'), +(30224, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.609+00', '{"cached":null,"ignore_cache":false}'), +(30225, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.636+00', '{"cached":null,"ignore_cache":false}'), +(30226, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.74+00', '{"cached":null,"ignore_cache":false}'), +(30227, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.808+00', '{"cached":null,"ignore_cache":false}'), +(30228, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.88+00', '{"cached":null,"ignore_cache":false}'), +(30229, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.903+00', '{"cached":null,"ignore_cache":false}'), +(30230, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:29.916+00', '{"cached":null,"ignore_cache":false}'), +(30231, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.394+00', '{"cached":null,"ignore_cache":false}'), +(30232, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.413+00', '{"cached":null,"ignore_cache":false}'), +(30233, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.413+00', '{"cached":null,"ignore_cache":false}'), +(30234, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.444+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30235, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:46.488+00', '{"cached":null,"ignore_cache":false}'), +(30236, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:47.347+00', '{"cached":null,"ignore_cache":false}'), +(30237, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:26:47.497+00', '{"cached":null,"ignore_cache":false}'), +(30238, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.693+00', '{"cached":null,"ignore_cache":false}'), +(30239, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.731+00', '{"cached":null,"ignore_cache":false}'), +(30240, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.753+00', '{"cached":null,"ignore_cache":false}'), +(30241, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.911+00', '{"cached":null,"ignore_cache":false}'), +(30242, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.922+00', '{"cached":null,"ignore_cache":false}'), +(30243, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.953+00', '{"cached":null,"ignore_cache":false}'), +(30244, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.963+00', '{"cached":null,"ignore_cache":false}'), +(30245, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.991+00', '{"cached":null,"ignore_cache":false}'), +(30246, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:00.991+00', '{"cached":null,"ignore_cache":false}'), +(30247, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.235+00', '{"cached":null,"ignore_cache":false}'), +(30248, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.281+00', '{"cached":null,"ignore_cache":false}'), +(30249, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.288+00', '{"cached":null,"ignore_cache":false}'), +(30250, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.307+00', '{"cached":null,"ignore_cache":false}'), +(30251, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:31.367+00', '{"cached":null,"ignore_cache":false}'), +(30252, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.039+00', '{"cached":null,"ignore_cache":false}'), +(30253, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.171+00', '{"cached":null,"ignore_cache":false}'), +(30254, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.228+00', '{"cached":null,"ignore_cache":false}'), +(30255, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.26+00', '{"cached":null,"ignore_cache":false}'), +(30256, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.264+00', '{"cached":null,"ignore_cache":false}'), +(30257, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.301+00', '{"cached":null,"ignore_cache":false}'), +(30258, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.319+00', '{"cached":null,"ignore_cache":false}'), +(30259, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.337+00', '{"cached":null,"ignore_cache":false}'), +(30260, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.338+00', '{"cached":null,"ignore_cache":false}'), +(30261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.358+00', '{"cached":null,"ignore_cache":false}'), +(30262, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:27:32.437+00', '{"cached":null,"ignore_cache":false}'), +(30263, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.34+00', '{"cached":null,"ignore_cache":false}'), +(30264, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.39+00', '{"cached":null,"ignore_cache":false}'), +(30265, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.448+00', '{"cached":null,"ignore_cache":false}'), +(30266, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.449+00', '{"cached":null,"ignore_cache":false}'), +(30267, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.458+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30268, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.498+00', '{"cached":null,"ignore_cache":false}'), +(30269, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.514+00', '{"cached":null,"ignore_cache":false}'), +(30270, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.521+00', '{"cached":null,"ignore_cache":false}'), +(30271, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:02.588+00', '{"cached":null,"ignore_cache":false}'), +(30272, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.288+00', '{"cached":null,"ignore_cache":false}'), +(30273, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.298+00', '{"cached":null,"ignore_cache":false}'), +(30274, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.311+00', '{"cached":null,"ignore_cache":false}'), +(30275, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.484+00', '{"cached":null,"ignore_cache":false}'), +(30276, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.527+00', '{"cached":null,"ignore_cache":false}'), +(30277, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:12.686+00', '{"cached":null,"ignore_cache":false}'), +(30278, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:14.366+00', '{"cached":null,"ignore_cache":false}'), +(30279, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:14.444+00', '{"cached":null,"ignore_cache":false}'), +(30280, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:14.484+00', '{"cached":null,"ignore_cache":false}'), +(30281, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:14.639+00', '{"cached":null,"ignore_cache":false}'), +(30282, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.28+00', '{"cached":null,"ignore_cache":false}'), +(30283, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.339+00', '{"cached":null,"ignore_cache":false}'), +(30284, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.442+00', '{"cached":null,"ignore_cache":false}'), +(30285, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.446+00', '{"cached":null,"ignore_cache":false}'), +(30286, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:20.454+00', '{"cached":null,"ignore_cache":false}'), +(30287, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:21.044+00', '{"cached":null,"ignore_cache":false}'), +(30288, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:21.163+00', '{"cached":null,"ignore_cache":false}'), +(30289, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.876+00', '{"cached":null,"ignore_cache":false}'), +(30290, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.965+00', '{"cached":null,"ignore_cache":false}'), +(30291, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.983+00', '{"cached":null,"ignore_cache":false}'), +(30292, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:31.995+00', '{"cached":null,"ignore_cache":false}'), +(30293, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.025+00', '{"cached":null,"ignore_cache":false}'), +(30294, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.088+00', '{"cached":null,"ignore_cache":false}'), +(30295, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.098+00', '{"cached":null,"ignore_cache":false}'), +(30296, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.103+00', '{"cached":null,"ignore_cache":false}'), +(30297, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:28:32.122+00', '{"cached":null,"ignore_cache":false}'), +(30298, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.12+00', '{"cached":null,"ignore_cache":false}'), +(30299, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.149+00', '{"cached":null,"ignore_cache":false}'), +(30300, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.169+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30301, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.261+00', '{"cached":null,"ignore_cache":false}'), +(30302, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.268+00', '{"cached":null,"ignore_cache":false}'), +(30303, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.296+00', '{"cached":null,"ignore_cache":false}'), +(30304, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.312+00', '{"cached":null,"ignore_cache":false}'), +(30305, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.33+00', '{"cached":null,"ignore_cache":false}'), +(30306, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:02.347+00', '{"cached":null,"ignore_cache":false}'), +(30307, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.156+00', '{"cached":null,"ignore_cache":false}'), +(30308, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.181+00', '{"cached":null,"ignore_cache":false}'), +(30309, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.289+00', '{"cached":null,"ignore_cache":false}'), +(30310, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.304+00', '{"cached":null,"ignore_cache":false}'), +(30311, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:08.334+00', '{"cached":null,"ignore_cache":false}'), +(30312, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:09.044+00', '{"cached":null,"ignore_cache":false}'), +(30313, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:09.136+00', '{"cached":null,"ignore_cache":false}'), +(30314, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.116+00', '{"cached":null,"ignore_cache":false}'), +(30315, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.198+00', '{"cached":null,"ignore_cache":false}'), +(30316, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.248+00', '{"cached":null,"ignore_cache":false}'), +(30317, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.261+00', '{"cached":null,"ignore_cache":false}'), +(30318, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.305+00', '{"cached":null,"ignore_cache":false}'), +(30319, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.308+00', '{"cached":null,"ignore_cache":false}'), +(30320, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.317+00', '{"cached":null,"ignore_cache":false}'), +(30321, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.384+00', '{"cached":null,"ignore_cache":false}'), +(30322, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:33.439+00', '{"cached":null,"ignore_cache":false}'), +(30323, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.281+00', '{"cached":null,"ignore_cache":false}'), +(30324, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.34+00', '{"cached":null,"ignore_cache":false}'), +(30325, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.344+00', '{"cached":null,"ignore_cache":false}'), +(30326, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.376+00', '{"cached":null,"ignore_cache":false}'), +(30327, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:54.422+00', '{"cached":null,"ignore_cache":false}'), +(30328, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:55.224+00', '{"cached":null,"ignore_cache":false}'), +(30329, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:29:55.272+00', '{"cached":null,"ignore_cache":false}'), +(30330, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.343+00', '{"cached":null,"ignore_cache":false}'), +(30331, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.357+00', '{"cached":null,"ignore_cache":false}'), +(30332, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.358+00', '{"cached":null,"ignore_cache":false}'), +(30333, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.371+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30334, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.417+00', '{"cached":null,"ignore_cache":false}'), +(30335, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.418+00', '{"cached":null,"ignore_cache":false}'), +(30336, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.419+00', '{"cached":null,"ignore_cache":false}'), +(30337, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.461+00', '{"cached":null,"ignore_cache":false}'), +(30338, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:02.48+00', '{"cached":null,"ignore_cache":false}'), +(30339, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.176+00', '{"cached":null,"ignore_cache":false}'), +(30340, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.246+00', '{"cached":null,"ignore_cache":false}'), +(30341, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.252+00', '{"cached":null,"ignore_cache":false}'), +(30342, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.384+00', '{"cached":null,"ignore_cache":false}'), +(30343, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.405+00', '{"cached":null,"ignore_cache":false}'), +(30344, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.469+00', '{"cached":null,"ignore_cache":false}'), +(30345, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.473+00', '{"cached":null,"ignore_cache":false}'), +(30346, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.486+00', '{"cached":null,"ignore_cache":false}'), +(30347, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:32.492+00', '{"cached":null,"ignore_cache":false}'), +(30348, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.764+00', '{"cached":null,"ignore_cache":false}'), +(30349, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.783+00', '{"cached":null,"ignore_cache":false}'), +(30350, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.825+00', '{"cached":null,"ignore_cache":false}'), +(30351, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.849+00', '{"cached":null,"ignore_cache":false}'), +(30352, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:34.852+00', '{"cached":null,"ignore_cache":false}'), +(30353, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.251+00', '{"cached":null,"ignore_cache":false}'), +(30354, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.334+00', '{"cached":null,"ignore_cache":false}'), +(30355, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.364+00', '{"cached":null,"ignore_cache":false}'), +(30356, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.412+00', '{"cached":null,"ignore_cache":false}'), +(30357, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:35.446+00', '{"cached":null,"ignore_cache":false}'), +(30358, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:36.297+00', '{"cached":null,"ignore_cache":false}'), +(30359, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:36.384+00', '{"cached":null,"ignore_cache":false}'), +(30360, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:36.928+00', '{"cached":null,"ignore_cache":false}'), +(30361, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:37.038+00', '{"cached":null,"ignore_cache":false}'), +(30362, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.23+00', '{"cached":null,"ignore_cache":false}'), +(30363, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.31+00', '{"cached":null,"ignore_cache":false}'), +(30364, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.364+00', '{"cached":null,"ignore_cache":false}'), +(30365, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.397+00', '{"cached":null,"ignore_cache":false}'), +(30366, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:46.446+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30367, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:47.424+00', '{"cached":null,"ignore_cache":false}'), +(30368, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:30:47.464+00', '{"cached":null,"ignore_cache":false}'), +(30369, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.391+00', '{"cached":null,"ignore_cache":false}'), +(30370, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.451+00', '{"cached":null,"ignore_cache":false}'), +(30371, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.51+00', '{"cached":null,"ignore_cache":false}'), +(30372, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.519+00', '{"cached":null,"ignore_cache":false}'), +(30373, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.544+00', '{"cached":null,"ignore_cache":false}'), +(30374, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.605+00', '{"cached":null,"ignore_cache":false}'), +(30375, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.625+00', '{"cached":null,"ignore_cache":false}'), +(30376, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.648+00', '{"cached":null,"ignore_cache":false}'), +(30377, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:31:02.668+00', '{"cached":null,"ignore_cache":false}'), +(30378, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.924+00', '{"cached":null,"ignore_cache":false}'), +(30379, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.991+00', '{"cached":null,"ignore_cache":false}'), +(30380, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:30.993+00', '{"cached":null,"ignore_cache":false}'), +(30381, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.027+00', '{"cached":null,"ignore_cache":false}'), +(30382, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.08+00', '{"cached":null,"ignore_cache":false}'), +(30383, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.221+00', '{"cached":null,"ignore_cache":false}'), +(30384, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.26+00', '{"cached":null,"ignore_cache":false}'), +(30385, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.297+00', '{"cached":null,"ignore_cache":false}'), +(30386, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:32:31.38+00', '{"cached":null,"ignore_cache":false}'), +(30387, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:15.047+00', '{"cached":null,"ignore_cache":false}'), +(30388, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:15.065+00', '{"cached":null,"ignore_cache":false}'), +(30389, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:15.096+00', '{"cached":null,"ignore_cache":false}'), +(30390, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:15.228+00', '{"cached":null,"ignore_cache":false}'), +(30391, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:15.309+00', '{"cached":null,"ignore_cache":false}'), +(30392, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:16.281+00', '{"cached":null,"ignore_cache":false}'), +(30393, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:16.551+00', '{"cached":null,"ignore_cache":false}'), +(30394, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.676+00', '{"cached":null,"ignore_cache":false}'), +(30395, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.769+00', '{"cached":null,"ignore_cache":false}'), +(30396, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.807+00', '{"cached":null,"ignore_cache":false}'), +(30397, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.837+00', '{"cached":null,"ignore_cache":false}'), +(30398, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.858+00', '{"cached":null,"ignore_cache":false}'), +(30399, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.861+00', '{"cached":null,"ignore_cache":false}'), +(30400, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.867+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30401, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.894+00', '{"cached":null,"ignore_cache":false}'), +(30402, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:21.895+00', '{"cached":null,"ignore_cache":false}'), +(30403, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.059+00', '{"cached":null,"ignore_cache":false}'), +(30404, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.192+00', '{"cached":null,"ignore_cache":false}'), +(30405, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.194+00', '{"cached":null,"ignore_cache":false}'), +(30406, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.196+00', '{"cached":null,"ignore_cache":false}'), +(30407, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.202+00', '{"cached":null,"ignore_cache":false}'), +(30408, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.792+00', '{"cached":null,"ignore_cache":false}'), +(30409, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:45.853+00', '{"cached":null,"ignore_cache":false}'), +(30410, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.617+00', '{"cached":null,"ignore_cache":false}'), +(30411, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.654+00', '{"cached":null,"ignore_cache":false}'), +(30412, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.73+00', '{"cached":null,"ignore_cache":false}'), +(30413, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.747+00', '{"cached":null,"ignore_cache":false}'), +(30414, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.753+00', '{"cached":null,"ignore_cache":false}'), +(30415, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.765+00', '{"cached":null,"ignore_cache":false}'), +(30416, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.817+00', '{"cached":null,"ignore_cache":false}'), +(30417, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.819+00', '{"cached":null,"ignore_cache":false}'), +(30418, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:34:52.825+00', '{"cached":null,"ignore_cache":false}'), +(30419, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.562+00', '{"cached":null,"ignore_cache":false}'), +(30420, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.584+00', '{"cached":null,"ignore_cache":false}'), +(30421, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.626+00', '{"cached":null,"ignore_cache":false}'), +(30422, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.64+00', '{"cached":null,"ignore_cache":false}'), +(30423, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:16.67+00', '{"cached":null,"ignore_cache":false}'), +(30424, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:17.862+00', '{"cached":null,"ignore_cache":false}'), +(30425, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:17.961+00', '{"cached":null,"ignore_cache":false}'), +(30426, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.817+00', '{"cached":null,"ignore_cache":false}'), +(30427, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.87+00', '{"cached":null,"ignore_cache":false}'), +(30428, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.882+00', '{"cached":null,"ignore_cache":false}'), +(30429, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.882+00', '{"cached":null,"ignore_cache":false}'), +(30430, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.934+00', '{"cached":null,"ignore_cache":false}'), +(30431, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.935+00', '{"cached":null,"ignore_cache":false}'), +(30432, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:21.936+00', '{"cached":null,"ignore_cache":false}'), +(30433, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:22.041+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30434, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:22.042+00', '{"cached":null,"ignore_cache":false}'), +(30435, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:46.947+00', '{"cached":null,"ignore_cache":false}'), +(30436, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:47.037+00', '{"cached":null,"ignore_cache":false}'), +(30437, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:47.1+00', '{"cached":null,"ignore_cache":false}'), +(30438, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:47.136+00', '{"cached":null,"ignore_cache":false}'), +(30439, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:47.19+00', '{"cached":null,"ignore_cache":false}'), +(30440, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:48.11+00', '{"cached":null,"ignore_cache":false}'), +(30441, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:48.168+00', '{"cached":null,"ignore_cache":false}'), +(30442, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:53.439+00', '{"cached":null,"ignore_cache":false}'), +(30443, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:53.471+00', '{"cached":null,"ignore_cache":false}'), +(30444, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:53.517+00', '{"cached":null,"ignore_cache":false}'), +(30445, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.389+00', '{"cached":null,"ignore_cache":false}'), +(30446, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.398+00', '{"cached":null,"ignore_cache":false}'), +(30447, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.431+00', '{"cached":null,"ignore_cache":false}'), +(30448, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.44+00', '{"cached":null,"ignore_cache":false}'), +(30449, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.456+00', '{"cached":null,"ignore_cache":false}'), +(30450, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:35:54.504+00', '{"cached":null,"ignore_cache":false}'), +(30451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.204+00', '{"cached":null,"ignore_cache":false}'), +(30452, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.361+00', '{"cached":null,"ignore_cache":false}'), +(30453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.364+00', '{"cached":null,"ignore_cache":false}'), +(30454, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.397+00', '{"cached":null,"ignore_cache":false}'), +(30455, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:16.405+00', '{"cached":null,"ignore_cache":false}'), +(30456, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:17.062+00', '{"cached":null,"ignore_cache":false}'), +(30457, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:17.255+00', '{"cached":null,"ignore_cache":false}'), +(30458, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.578+00', '{"cached":null,"ignore_cache":false}'), +(30459, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.641+00', '{"cached":null,"ignore_cache":false}'), +(30460, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.671+00', '{"cached":null,"ignore_cache":false}'), +(30461, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.674+00', '{"cached":null,"ignore_cache":false}'), +(30462, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.676+00', '{"cached":null,"ignore_cache":false}'), +(30463, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.742+00', '{"cached":null,"ignore_cache":false}'), +(30464, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.771+00', '{"cached":null,"ignore_cache":false}'), +(30465, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.792+00', '{"cached":null,"ignore_cache":false}'), +(30466, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:21.861+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30467, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.19+00', '{"cached":null,"ignore_cache":false}'), +(30468, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.439+00', '{"cached":null,"ignore_cache":false}'), +(30469, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.448+00', '{"cached":null,"ignore_cache":false}'), +(30470, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.46+00', '{"cached":null,"ignore_cache":false}'), +(30471, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.467+00', '{"cached":null,"ignore_cache":false}'), +(30472, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:46.978+00', '{"cached":null,"ignore_cache":false}'), +(30473, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:47.285+00', '{"cached":null,"ignore_cache":false}'), +(30474, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.507+00', '{"cached":null,"ignore_cache":false}'), +(30475, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.515+00', '{"cached":null,"ignore_cache":false}'), +(30476, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.694+00', '{"cached":null,"ignore_cache":false}'), +(30477, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.743+00', '{"cached":null,"ignore_cache":false}'), +(30478, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.755+00', '{"cached":null,"ignore_cache":false}'), +(30479, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.841+00', '{"cached":null,"ignore_cache":false}'), +(30480, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:51.885+00', '{"cached":null,"ignore_cache":false}'), +(30481, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:52.119+00', '{"cached":null,"ignore_cache":false}'), +(30482, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:36:52.207+00', '{"cached":null,"ignore_cache":false}'), +(30483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.38+00', '{"cached":null,"ignore_cache":false}'), +(30484, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.442+00', '{"cached":null,"ignore_cache":false}'), +(30485, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.529+00', '{"cached":null,"ignore_cache":false}'), +(30486, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.538+00', '{"cached":null,"ignore_cache":false}'), +(30487, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:17.544+00', '{"cached":null,"ignore_cache":false}'), +(30488, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:18.617+00', '{"cached":null,"ignore_cache":false}'), +(30489, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:18.65+00', '{"cached":null,"ignore_cache":false}'), +(30490, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.756+00', '{"cached":null,"ignore_cache":false}'), +(30491, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.793+00', '{"cached":null,"ignore_cache":false}'), +(30492, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.841+00', '{"cached":null,"ignore_cache":false}'), +(30493, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.896+00', '{"cached":null,"ignore_cache":false}'), +(30494, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.919+00', '{"cached":null,"ignore_cache":false}'), +(30495, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.921+00', '{"cached":null,"ignore_cache":false}'), +(30496, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:21.964+00', '{"cached":null,"ignore_cache":false}'), +(30497, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:22.065+00', '{"cached":null,"ignore_cache":false}'), +(30498, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:22.074+00', '{"cached":null,"ignore_cache":false}'), +(30499, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.305+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30500, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.314+00', '{"cached":null,"ignore_cache":false}'), +(30501, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.34+00', '{"cached":null,"ignore_cache":false}'), +(30502, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.363+00', '{"cached":null,"ignore_cache":false}'), +(30503, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:46.373+00', '{"cached":null,"ignore_cache":false}'), +(30504, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:47.312+00', '{"cached":null,"ignore_cache":false}'), +(30505, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:47.383+00', '{"cached":null,"ignore_cache":false}'), +(30506, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.598+00', '{"cached":null,"ignore_cache":false}'), +(30507, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.649+00', '{"cached":null,"ignore_cache":false}'), +(30508, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.777+00', '{"cached":null,"ignore_cache":false}'), +(30509, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.778+00', '{"cached":null,"ignore_cache":false}'), +(30510, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.789+00', '{"cached":null,"ignore_cache":false}'), +(30511, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.794+00', '{"cached":null,"ignore_cache":false}'), +(30512, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.811+00', '{"cached":null,"ignore_cache":false}'), +(30513, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.829+00', '{"cached":null,"ignore_cache":false}'), +(30514, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:37:51.834+00', '{"cached":null,"ignore_cache":false}'), +(30515, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:02.932+00', '{"cached":null,"ignore_cache":false}'), +(30516, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.01+00', '{"cached":null,"ignore_cache":false}'), +(30517, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.014+00', '{"cached":null,"ignore_cache":false}'), +(30518, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.016+00', '{"cached":null,"ignore_cache":false}'), +(30519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.017+00', '{"cached":null,"ignore_cache":false}'), +(30520, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.437+00', '{"cached":null,"ignore_cache":false}'), +(30521, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.481+00', '{"cached":null,"ignore_cache":false}'), +(30522, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.512+00', '{"cached":null,"ignore_cache":false}'), +(30523, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.513+00', '{"cached":null,"ignore_cache":false}'), +(30524, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:03.529+00', '{"cached":null,"ignore_cache":false}'), +(30525, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.006+00', '{"cached":null,"ignore_cache":false}'), +(30526, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.044+00', '{"cached":null,"ignore_cache":false}'), +(30527, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.066+00', '{"cached":null,"ignore_cache":false}'), +(30528, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.094+00', '{"cached":null,"ignore_cache":false}'), +(30529, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.132+00', '{"cached":null,"ignore_cache":false}'), +(30530, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.144+00', '{"cached":null,"ignore_cache":false}'), +(30531, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.152+00', '{"cached":null,"ignore_cache":false}'), +(30532, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.168+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30533, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.171+00', '{"cached":null,"ignore_cache":false}'), +(30534, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.182+00', '{"cached":null,"ignore_cache":false}'), +(30535, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.216+00', '{"cached":null,"ignore_cache":false}'), +(30536, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.693+00', '{"cached":null,"ignore_cache":false}'), +(30537, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.696+00', '{"cached":null,"ignore_cache":false}'), +(30538, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.778+00', '{"cached":null,"ignore_cache":false}'), +(30539, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.842+00', '{"cached":null,"ignore_cache":false}'), +(30540, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.914+00', '{"cached":null,"ignore_cache":false}'), +(30541, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.927+00', '{"cached":null,"ignore_cache":false}'), +(30542, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.935+00', '{"cached":null,"ignore_cache":false}'), +(30543, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:04.99+00', '{"cached":null,"ignore_cache":false}'), +(30544, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:05.013+00', '{"cached":null,"ignore_cache":false}'), +(30545, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:06.374+00', '{"cached":null,"ignore_cache":false}'), +(30546, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:06.452+00', '{"cached":null,"ignore_cache":false}'), +(30547, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.307+00', '{"cached":null,"ignore_cache":false}'), +(30548, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.419+00', '{"cached":null,"ignore_cache":false}'), +(30549, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.442+00', '{"cached":null,"ignore_cache":false}'), +(30550, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.513+00', '{"cached":null,"ignore_cache":false}'), +(30551, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:16.519+00', '{"cached":null,"ignore_cache":false}'), +(30552, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:17.369+00', '{"cached":null,"ignore_cache":false}'), +(30553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:17.544+00', '{"cached":null,"ignore_cache":false}'), +(30554, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.863+00', '{"cached":null,"ignore_cache":false}'), +(30555, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:21.973+00', '{"cached":null,"ignore_cache":false}'), +(30556, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:22.008+00', '{"cached":null,"ignore_cache":false}'), +(30557, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:22.023+00', '{"cached":null,"ignore_cache":false}'), +(30558, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:22.05+00', '{"cached":null,"ignore_cache":false}'), +(30559, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:22.051+00', '{"cached":null,"ignore_cache":false}'), +(30560, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:22.062+00', '{"cached":null,"ignore_cache":false}'), +(30561, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:22.107+00', '{"cached":null,"ignore_cache":false}'), +(30562, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:22.124+00', '{"cached":null,"ignore_cache":false}'), +(30563, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.631+00', '{"cached":null,"ignore_cache":false}'), +(30564, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.68+00', '{"cached":null,"ignore_cache":false}'), +(30565, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.685+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30566, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.72+00', '{"cached":null,"ignore_cache":false}'), +(30567, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:44.736+00', '{"cached":null,"ignore_cache":false}'), +(30568, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:45.941+00', '{"cached":null,"ignore_cache":false}'), +(30569, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:45.982+00', '{"cached":null,"ignore_cache":false}'), +(30570, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.37+00', '{"cached":null,"ignore_cache":false}'), +(30571, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.376+00', '{"cached":null,"ignore_cache":false}'), +(30572, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.429+00', '{"cached":null,"ignore_cache":false}'), +(30573, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.462+00', '{"cached":null,"ignore_cache":false}'), +(30574, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.468+00', '{"cached":null,"ignore_cache":false}'), +(30575, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.484+00', '{"cached":null,"ignore_cache":false}'), +(30576, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.515+00', '{"cached":null,"ignore_cache":false}'), +(30577, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.527+00', '{"cached":null,"ignore_cache":false}'), +(30578, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:46.591+00', '{"cached":null,"ignore_cache":false}'), +(30579, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.651+00', '{"cached":null,"ignore_cache":false}'), +(30580, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.699+00', '{"cached":null,"ignore_cache":false}'), +(30581, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.713+00', '{"cached":null,"ignore_cache":false}'), +(30582, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.72+00', '{"cached":null,"ignore_cache":false}'), +(30583, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.837+00', '{"cached":null,"ignore_cache":false}'), +(30584, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.87+00', '{"cached":null,"ignore_cache":false}'), +(30585, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.871+00', '{"cached":null,"ignore_cache":false}'), +(30586, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.903+00', '{"cached":null,"ignore_cache":false}'), +(30587, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:52.964+00', '{"cached":null,"ignore_cache":false}'), +(30588, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.148+00', '{"cached":null,"ignore_cache":false}'), +(30589, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.412+00', '{"cached":null,"ignore_cache":false}'), +(30590, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.503+00', '{"cached":null,"ignore_cache":false}'), +(30591, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.588+00', '{"cached":null,"ignore_cache":false}'), +(30592, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:57.592+00', '{"cached":null,"ignore_cache":false}'), +(30593, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:58.399+00', '{"cached":null,"ignore_cache":false}'), +(30594, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:38:58.687+00', '{"cached":null,"ignore_cache":false}'), +(30595, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.578+00', '{"cached":null,"ignore_cache":false}'), +(30596, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.827+00', '{"cached":null,"ignore_cache":false}'), +(30597, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.885+00', '{"cached":null,"ignore_cache":false}'), +(30598, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.888+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30599, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:22.916+00', '{"cached":null,"ignore_cache":false}'), +(30600, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:23.01+00', '{"cached":null,"ignore_cache":false}'), +(30601, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:23.045+00', '{"cached":null,"ignore_cache":false}'), +(30602, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:23.054+00', '{"cached":null,"ignore_cache":false}'), +(30603, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:23.11+00', '{"cached":null,"ignore_cache":false}'), +(30604, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.61+00', '{"cached":null,"ignore_cache":false}'), +(30605, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.644+00', '{"cached":null,"ignore_cache":false}'), +(30606, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.743+00', '{"cached":null,"ignore_cache":false}'), +(30607, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.768+00', '{"cached":null,"ignore_cache":false}'), +(30608, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.78+00', '{"cached":null,"ignore_cache":false}'), +(30609, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.791+00', '{"cached":null,"ignore_cache":false}'), +(30610, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.832+00', '{"cached":null,"ignore_cache":false}'), +(30611, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.839+00', '{"cached":null,"ignore_cache":false}'), +(30612, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:32.848+00', '{"cached":null,"ignore_cache":false}'), +(30613, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.142+00', '{"cached":null,"ignore_cache":false}'), +(30614, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.166+00', '{"cached":null,"ignore_cache":false}'), +(30615, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.225+00', '{"cached":null,"ignore_cache":false}'), +(30616, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.235+00', '{"cached":null,"ignore_cache":false}'), +(30617, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:34.347+00', '{"cached":null,"ignore_cache":false}'), +(30618, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:35.549+00', '{"cached":null,"ignore_cache":false}'), +(30619, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:35.731+00', '{"cached":null,"ignore_cache":false}'), +(30620, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.467+00', '{"cached":null,"ignore_cache":false}'), +(30621, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.499+00', '{"cached":null,"ignore_cache":false}'), +(30622, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.563+00', '{"cached":null,"ignore_cache":false}'), +(30623, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.697+00', '{"cached":null,"ignore_cache":false}'), +(30624, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:42.759+00', '{"cached":null,"ignore_cache":false}'), +(30625, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:43.592+00', '{"cached":null,"ignore_cache":false}'), +(30626, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:43.663+00', '{"cached":null,"ignore_cache":false}'), +(30627, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.411+00', '{"cached":null,"ignore_cache":false}'), +(30628, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.418+00', '{"cached":null,"ignore_cache":false}'), +(30629, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.426+00', '{"cached":null,"ignore_cache":false}'), +(30630, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.535+00', '{"cached":null,"ignore_cache":false}'), +(30631, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.561+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30632, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.613+00', '{"cached":null,"ignore_cache":false}'), +(30633, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.649+00', '{"cached":null,"ignore_cache":false}'), +(30634, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.684+00', '{"cached":null,"ignore_cache":false}'), +(30635, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:39:52.78+00', '{"cached":null,"ignore_cache":false}'), +(30636, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:22.927+00', '{"cached":null,"ignore_cache":false}'), +(30637, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.004+00', '{"cached":null,"ignore_cache":false}'), +(30638, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.073+00', '{"cached":null,"ignore_cache":false}'), +(30639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.096+00', '{"cached":null,"ignore_cache":false}'), +(30640, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.159+00', '{"cached":null,"ignore_cache":false}'), +(30641, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.18+00', '{"cached":null,"ignore_cache":false}'), +(30642, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.213+00', '{"cached":null,"ignore_cache":false}'), +(30643, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.276+00', '{"cached":null,"ignore_cache":false}'), +(30644, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:23.301+00', '{"cached":null,"ignore_cache":false}'), +(30645, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.062+00', '{"cached":null,"ignore_cache":false}'), +(30646, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.105+00', '{"cached":null,"ignore_cache":false}'), +(30647, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.17+00', '{"cached":null,"ignore_cache":false}'), +(30648, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.185+00', '{"cached":null,"ignore_cache":false}'), +(30649, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.261+00', '{"cached":null,"ignore_cache":false}'), +(30650, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.835+00', '{"cached":null,"ignore_cache":false}'), +(30651, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:25.882+00', '{"cached":null,"ignore_cache":false}'), +(30652, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.921+00', '{"cached":null,"ignore_cache":false}'), +(30653, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.938+00', '{"cached":null,"ignore_cache":false}'), +(30654, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:53.956+00', '{"cached":null,"ignore_cache":false}'), +(30655, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:54.018+00', '{"cached":null,"ignore_cache":false}'), +(30656, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:54.025+00', '{"cached":null,"ignore_cache":false}'), +(30657, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:54.028+00', '{"cached":null,"ignore_cache":false}'), +(30658, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:54.045+00', '{"cached":null,"ignore_cache":false}'), +(30659, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:54.087+00', '{"cached":null,"ignore_cache":false}'), +(30660, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:40:54.129+00', '{"cached":null,"ignore_cache":false}'), +(30661, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.271+00', '{"cached":null,"ignore_cache":false}'), +(30662, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.312+00', '{"cached":null,"ignore_cache":false}'), +(30663, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.333+00', '{"cached":null,"ignore_cache":false}'), +(30664, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.397+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30665, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:12.412+00', '{"cached":null,"ignore_cache":false}'), +(30666, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:13.344+00', '{"cached":null,"ignore_cache":false}'), +(30667, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:13.675+00', '{"cached":null,"ignore_cache":false}'), +(30668, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.611+00', '{"cached":null,"ignore_cache":false}'), +(30669, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.64+00', '{"cached":null,"ignore_cache":false}'), +(30670, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.766+00', '{"cached":null,"ignore_cache":false}'), +(30671, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.789+00', '{"cached":null,"ignore_cache":false}'), +(30672, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.795+00', '{"cached":null,"ignore_cache":false}'), +(30673, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.806+00', '{"cached":null,"ignore_cache":false}'), +(30674, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.818+00', '{"cached":null,"ignore_cache":false}'), +(30675, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.824+00', '{"cached":null,"ignore_cache":false}'), +(30676, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:23.835+00', '{"cached":null,"ignore_cache":false}'), +(30677, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.445+00', '{"cached":null,"ignore_cache":false}'), +(30678, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.449+00', '{"cached":null,"ignore_cache":false}'), +(30679, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.473+00', '{"cached":null,"ignore_cache":false}'), +(30680, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.477+00', '{"cached":null,"ignore_cache":false}'), +(30681, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.492+00', '{"cached":null,"ignore_cache":false}'), +(30682, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.522+00', '{"cached":null,"ignore_cache":false}'), +(30683, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.544+00', '{"cached":null,"ignore_cache":false}'), +(30684, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.577+00', '{"cached":null,"ignore_cache":false}'), +(30685, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:53.589+00', '{"cached":null,"ignore_cache":false}'), +(30686, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.085+00', '{"cached":null,"ignore_cache":false}'), +(30687, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.141+00', '{"cached":null,"ignore_cache":false}'), +(30688, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.181+00', '{"cached":null,"ignore_cache":false}'), +(30689, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.207+00', '{"cached":null,"ignore_cache":false}'), +(30690, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:56.261+00', '{"cached":null,"ignore_cache":false}'), +(30691, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:57.157+00', '{"cached":null,"ignore_cache":false}'), +(30692, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:41:57.24+00', '{"cached":null,"ignore_cache":false}'), +(30693, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.533+00', '{"cached":null,"ignore_cache":false}'), +(30694, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.617+00', '{"cached":null,"ignore_cache":false}'), +(30695, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.646+00', '{"cached":null,"ignore_cache":false}'), +(30696, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.655+00', '{"cached":null,"ignore_cache":false}'), +(30697, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.698+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30698, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.704+00', '{"cached":null,"ignore_cache":false}'), +(30699, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.762+00', '{"cached":null,"ignore_cache":false}'), +(30700, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.781+00', '{"cached":null,"ignore_cache":false}'), +(30701, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:23.783+00', '{"cached":null,"ignore_cache":false}'), +(30702, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.407+00', '{"cached":null,"ignore_cache":false}'), +(30703, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.44+00', '{"cached":null,"ignore_cache":false}'), +(30704, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.466+00', '{"cached":null,"ignore_cache":false}'), +(30705, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.488+00', '{"cached":null,"ignore_cache":false}'), +(30706, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:41.524+00', '{"cached":null,"ignore_cache":false}'), +(30707, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:42.654+00', '{"cached":null,"ignore_cache":false}'), +(30708, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:42.798+00', '{"cached":null,"ignore_cache":false}'), +(30709, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.121+00', '{"cached":null,"ignore_cache":false}'), +(30710, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.122+00', '{"cached":null,"ignore_cache":false}'), +(30711, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.124+00', '{"cached":null,"ignore_cache":false}'), +(30712, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.149+00', '{"cached":null,"ignore_cache":false}'), +(30713, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.156+00', '{"cached":null,"ignore_cache":false}'), +(30714, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.177+00', '{"cached":null,"ignore_cache":false}'), +(30715, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.199+00', '{"cached":null,"ignore_cache":false}'), +(30716, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.21+00', '{"cached":null,"ignore_cache":false}'), +(30717, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:42:53.234+00', '{"cached":null,"ignore_cache":false}'), +(30718, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.127+00', '{"cached":null,"ignore_cache":false}'), +(30719, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.216+00', '{"cached":null,"ignore_cache":false}'), +(30720, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.365+00', '{"cached":null,"ignore_cache":false}'), +(30721, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.483+00', '{"cached":null,"ignore_cache":false}'), +(30722, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.495+00', '{"cached":null,"ignore_cache":false}'), +(30723, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:21.782+00', '{"cached":null,"ignore_cache":false}'), +(30724, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.581+00', '{"cached":null,"ignore_cache":false}'), +(30725, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.869+00', '{"cached":null,"ignore_cache":false}'), +(30726, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:23.986+00', '{"cached":null,"ignore_cache":false}'), +(30727, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:24.362+00', '{"cached":null,"ignore_cache":false}'), +(30728, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:24.557+00', '{"cached":null,"ignore_cache":false}'), +(30729, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:24.59+00', '{"cached":null,"ignore_cache":false}'), +(30730, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:24.947+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30731, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.145+00', '{"cached":null,"ignore_cache":false}'), +(30732, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.186+00', '{"cached":null,"ignore_cache":false}'), +(30733, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.233+00', '{"cached":null,"ignore_cache":false}'), +(30734, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.65+00', '{"cached":null,"ignore_cache":false}'), +(30735, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.651+00', '{"cached":null,"ignore_cache":false}'), +(30736, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.664+00', '{"cached":null,"ignore_cache":false}'), +(30737, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.732+00', '{"cached":null,"ignore_cache":false}'), +(30738, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:25.851+00', '{"cached":null,"ignore_cache":false}'), +(30739, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.174+00', '{"cached":null,"ignore_cache":false}'), +(30740, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.217+00', '{"cached":null,"ignore_cache":false}'), +(30741, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.223+00', '{"cached":null,"ignore_cache":false}'), +(30742, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.256+00', '{"cached":null,"ignore_cache":false}'), +(30743, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.462+00', '{"cached":null,"ignore_cache":false}'), +(30744, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.497+00', '{"cached":null,"ignore_cache":false}'), +(30745, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.509+00', '{"cached":null,"ignore_cache":false}'), +(30746, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.554+00', '{"cached":null,"ignore_cache":false}'), +(30747, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.584+00', '{"cached":null,"ignore_cache":false}'), +(30748, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:43:26.679+00', '{"cached":null,"ignore_cache":false}'), +(30749, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.559+00', '{"cached":null,"ignore_cache":false}'), +(30750, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.658+00', '{"cached":null,"ignore_cache":false}'), +(30751, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.669+00', '{"cached":null,"ignore_cache":false}'), +(30752, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.677+00', '{"cached":null,"ignore_cache":false}'), +(30753, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.816+00', '{"cached":null,"ignore_cache":false}'), +(30754, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.879+00', '{"cached":null,"ignore_cache":false}'), +(30755, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:22.915+00', '{"cached":null,"ignore_cache":false}'), +(30756, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:23.017+00', '{"cached":null,"ignore_cache":false}'), +(30757, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:23.647+00', '{"cached":null,"ignore_cache":false}'), +(30758, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:44:24.286+00', '{"cached":null,"ignore_cache":false}'), +(30759, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.497+00', '{"cached":null,"ignore_cache":false}'), +(30760, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.646+00', '{"cached":null,"ignore_cache":false}'), +(30761, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.96+00', '{"cached":null,"ignore_cache":false}'), +(30762, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:13.965+00', '{"cached":null,"ignore_cache":false}'), +(30763, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:14.018+00', '{"cached":null,"ignore_cache":false}'), +(30764, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:14.066+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30765, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:14.07+00', '{"cached":null,"ignore_cache":false}'), +(30766, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:14.15+00', '{"cached":null,"ignore_cache":false}'), +(30767, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:14.158+00', '{"cached":null,"ignore_cache":false}'), +(30768, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.075+00', '{"cached":null,"ignore_cache":false}'), +(30769, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.192+00', '{"cached":null,"ignore_cache":false}'), +(30770, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.229+00', '{"cached":null,"ignore_cache":false}'), +(30771, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.242+00', '{"cached":null,"ignore_cache":false}'), +(30772, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.246+00', '{"cached":null,"ignore_cache":false}'), +(30773, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.265+00', '{"cached":null,"ignore_cache":false}'), +(30774, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.273+00', '{"cached":null,"ignore_cache":false}'), +(30775, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.281+00', '{"cached":null,"ignore_cache":false}'), +(30776, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:22.347+00', '{"cached":null,"ignore_cache":false}'), +(30777, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.446+00', '{"cached":null,"ignore_cache":false}'), +(30778, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.591+00', '{"cached":null,"ignore_cache":false}'), +(30779, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.604+00', '{"cached":null,"ignore_cache":false}'), +(30780, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.605+00', '{"cached":null,"ignore_cache":false}'), +(30781, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.666+00', '{"cached":null,"ignore_cache":false}'), +(30782, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.699+00', '{"cached":null,"ignore_cache":false}'), +(30783, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.699+00', '{"cached":null,"ignore_cache":false}'), +(30784, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.7+00', '{"cached":null,"ignore_cache":false}'), +(30785, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:29.816+00', '{"cached":null,"ignore_cache":false}'), +(30786, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.691+00', '{"cached":null,"ignore_cache":false}'), +(30787, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.734+00', '{"cached":null,"ignore_cache":false}'), +(30788, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.749+00', '{"cached":null,"ignore_cache":false}'), +(30789, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.77+00', '{"cached":null,"ignore_cache":false}'), +(30790, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.772+00', '{"cached":null,"ignore_cache":false}'), +(30791, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.838+00', '{"cached":null,"ignore_cache":false}'), +(30792, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.842+00', '{"cached":null,"ignore_cache":false}'), +(30793, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.878+00', '{"cached":null,"ignore_cache":false}'), +(30794, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:40.964+00', '{"cached":null,"ignore_cache":false}'), +(30795, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.516+00', '{"cached":null,"ignore_cache":false}'), +(30796, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.568+00', '{"cached":null,"ignore_cache":false}'), +(30797, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.663+00', '{"cached":null,"ignore_cache":false}'), +(30798, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.665+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30799, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.708+00', '{"cached":null,"ignore_cache":false}'), +(30800, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.724+00', '{"cached":null,"ignore_cache":false}'), +(30801, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.724+00', '{"cached":null,"ignore_cache":false}'), +(30802, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.764+00', '{"cached":null,"ignore_cache":false}'), +(30803, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:45:44.837+00', '{"cached":null,"ignore_cache":false}'), +(30804, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.042+00', '{"cached":null,"ignore_cache":false}'), +(30805, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.087+00', '{"cached":null,"ignore_cache":false}'), +(30806, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.153+00', '{"cached":null,"ignore_cache":false}'), +(30807, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.17+00', '{"cached":null,"ignore_cache":false}'), +(30808, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:05.196+00', '{"cached":null,"ignore_cache":false}'), +(30809, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:06.094+00', '{"cached":null,"ignore_cache":false}'), +(30810, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:47:06.166+00', '{"cached":null,"ignore_cache":false}'), +(30811, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.592+00', '{"cached":null,"ignore_cache":false}'), +(30812, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.653+00', '{"cached":null,"ignore_cache":false}'), +(30813, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.665+00', '{"cached":null,"ignore_cache":false}'), +(30814, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.672+00', '{"cached":null,"ignore_cache":false}'), +(30815, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.677+00', '{"cached":null,"ignore_cache":false}'), +(30816, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.689+00', '{"cached":null,"ignore_cache":false}'), +(30817, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.696+00', '{"cached":null,"ignore_cache":false}'), +(30818, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.698+00', '{"cached":null,"ignore_cache":false}'), +(30819, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:33.7+00', '{"cached":null,"ignore_cache":false}'), +(30820, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.068+00', '{"cached":null,"ignore_cache":false}'), +(30821, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.107+00', '{"cached":null,"ignore_cache":false}'), +(30822, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.123+00', '{"cached":null,"ignore_cache":false}'), +(30823, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.135+00', '{"cached":null,"ignore_cache":false}'), +(30824, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.186+00', '{"cached":null,"ignore_cache":false}'), +(30825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.792+00', '{"cached":null,"ignore_cache":false}'), +(30826, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:51:44.814+00', '{"cached":null,"ignore_cache":false}'), +(30827, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.231+00', '{"cached":null,"ignore_cache":false}'), +(30828, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.271+00', '{"cached":null,"ignore_cache":false}'), +(30829, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.302+00', '{"cached":null,"ignore_cache":false}'), +(30830, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.305+00', '{"cached":null,"ignore_cache":false}'), +(30831, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.326+00', '{"cached":null,"ignore_cache":false}'), +(30832, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.328+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30833, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.34+00', '{"cached":null,"ignore_cache":false}'), +(30834, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.348+00', '{"cached":null,"ignore_cache":false}'), +(30835, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:04.362+00', '{"cached":null,"ignore_cache":false}'), +(30836, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.667+00', '{"cached":null,"ignore_cache":false}'), +(30837, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.725+00', '{"cached":null,"ignore_cache":false}'), +(30838, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.782+00', '{"cached":null,"ignore_cache":false}'), +(30839, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.94+00', '{"cached":null,"ignore_cache":false}'), +(30840, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:06.982+00', '{"cached":null,"ignore_cache":false}'), +(30841, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:07.16+00', '{"cached":null,"ignore_cache":false}'), +(30842, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.339+00', '{"cached":null,"ignore_cache":false}'), +(30843, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.704+00', '{"cached":null,"ignore_cache":false}'), +(30844, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.714+00', '{"cached":null,"ignore_cache":false}'), +(30845, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.747+00', '{"cached":null,"ignore_cache":false}'), +(30846, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.837+00', '{"cached":null,"ignore_cache":false}'), +(30847, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:08.894+00', '{"cached":null,"ignore_cache":false}'), +(30848, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.153+00', '{"cached":null,"ignore_cache":false}'), +(30849, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.262+00', '{"cached":null,"ignore_cache":false}'), +(30850, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.327+00', '{"cached":null,"ignore_cache":false}'), +(30851, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.341+00', '{"cached":null,"ignore_cache":false}'), +(30852, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.385+00', '{"cached":null,"ignore_cache":false}'), +(30853, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.396+00', '{"cached":null,"ignore_cache":false}'), +(30854, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.453+00', '{"cached":null,"ignore_cache":false}'), +(30855, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.554+00', '{"cached":null,"ignore_cache":false}'), +(30856, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.574+00', '{"cached":null,"ignore_cache":false}'), +(30857, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.646+00', '{"cached":null,"ignore_cache":false}'), +(30858, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.653+00', '{"cached":null,"ignore_cache":false}'), +(30859, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.703+00', '{"cached":null,"ignore_cache":false}'), +(30860, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.812+00', '{"cached":null,"ignore_cache":false}'), +(30861, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:09.985+00', '{"cached":null,"ignore_cache":false}'), +(30862, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:10.35+00', '{"cached":null,"ignore_cache":false}'), +(30863, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.519+00', '{"cached":null,"ignore_cache":false}'), +(30864, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.525+00', '{"cached":null,"ignore_cache":false}'), +(30865, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.547+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30866, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.551+00', '{"cached":null,"ignore_cache":false}'), +(30867, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.557+00', '{"cached":null,"ignore_cache":false}'), +(30868, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.82+00', '{"cached":null,"ignore_cache":false}'), +(30869, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.877+00', '{"cached":null,"ignore_cache":false}'), +(30870, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.878+00', '{"cached":null,"ignore_cache":false}'), +(30871, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.882+00', '{"cached":null,"ignore_cache":false}'), +(30872, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.912+00', '{"cached":null,"ignore_cache":false}'), +(30873, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.915+00', '{"cached":null,"ignore_cache":false}'), +(30874, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.926+00', '{"cached":null,"ignore_cache":false}'), +(30875, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.94+00', '{"cached":null,"ignore_cache":false}'), +(30876, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:34.945+00', '{"cached":null,"ignore_cache":false}'), +(30877, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:35.298+00', '{"cached":null,"ignore_cache":false}'), +(30878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:35.391+00', '{"cached":null,"ignore_cache":false}'), +(30879, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:43.911+00', '{"cached":null,"ignore_cache":false}'), +(30880, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.025+00', '{"cached":null,"ignore_cache":false}'), +(30881, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.121+00', '{"cached":null,"ignore_cache":false}'), +(30882, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.162+00', '{"cached":null,"ignore_cache":false}'), +(30883, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.436+00', '{"cached":null,"ignore_cache":false}'), +(30884, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:44.611+00', '{"cached":null,"ignore_cache":false}'), +(30885, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.407+00', '{"cached":null,"ignore_cache":false}'), +(30886, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.55+00', '{"cached":null,"ignore_cache":false}'), +(30887, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.573+00', '{"cached":null,"ignore_cache":false}'), +(30888, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.615+00', '{"cached":null,"ignore_cache":false}'), +(30889, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.616+00', '{"cached":null,"ignore_cache":false}'), +(30890, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.651+00', '{"cached":null,"ignore_cache":false}'), +(30891, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.662+00', '{"cached":null,"ignore_cache":false}'), +(30892, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.681+00', '{"cached":null,"ignore_cache":false}'), +(30893, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.7+00', '{"cached":null,"ignore_cache":false}'), +(30894, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.737+00', '{"cached":null,"ignore_cache":false}'), +(30895, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.815+00', '{"cached":null,"ignore_cache":false}'), +(30896, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.868+00', '{"cached":null,"ignore_cache":false}'), +(30897, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:45.909+00', '{"cached":null,"ignore_cache":false}'), +(30898, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:52:46.244+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30899, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.117+00', '{"cached":null,"ignore_cache":false}'), +(30900, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.143+00', '{"cached":null,"ignore_cache":false}'), +(30901, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.154+00', '{"cached":null,"ignore_cache":false}'), +(30902, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.192+00', '{"cached":null,"ignore_cache":false}'), +(30903, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.224+00', '{"cached":null,"ignore_cache":false}'), +(30904, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.228+00', '{"cached":null,"ignore_cache":false}'), +(30905, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.247+00', '{"cached":null,"ignore_cache":false}'), +(30906, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.247+00', '{"cached":null,"ignore_cache":false}'), +(30907, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:06.272+00', '{"cached":null,"ignore_cache":false}'), +(30908, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.426+00', '{"cached":null,"ignore_cache":false}'), +(30909, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.457+00', '{"cached":null,"ignore_cache":false}'), +(30910, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.468+00', '{"cached":null,"ignore_cache":false}'), +(30911, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.487+00', '{"cached":null,"ignore_cache":false}'), +(30912, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:21.534+00', '{"cached":null,"ignore_cache":false}'), +(30913, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:22.328+00', '{"cached":null,"ignore_cache":false}'), +(30914, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:22.467+00', '{"cached":null,"ignore_cache":false}'), +(30915, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.075+00', '{"cached":null,"ignore_cache":false}'), +(30916, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.154+00', '{"cached":null,"ignore_cache":false}'), +(30917, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.178+00', '{"cached":null,"ignore_cache":false}'), +(30918, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.212+00', '{"cached":null,"ignore_cache":false}'), +(30919, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.218+00', '{"cached":null,"ignore_cache":false}'), +(30920, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.221+00', '{"cached":null,"ignore_cache":false}'), +(30921, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.246+00', '{"cached":null,"ignore_cache":false}'), +(30922, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.355+00', '{"cached":null,"ignore_cache":false}'), +(30923, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:53:39.401+00', '{"cached":null,"ignore_cache":false}'), +(30924, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.133+00', '{"cached":null,"ignore_cache":false}'), +(30925, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.176+00', '{"cached":null,"ignore_cache":false}'), +(30926, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.203+00', '{"cached":null,"ignore_cache":false}'), +(30927, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.219+00', '{"cached":null,"ignore_cache":false}'), +(30928, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:01.302+00', '{"cached":null,"ignore_cache":false}'), +(30929, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:02.095+00', '{"cached":null,"ignore_cache":false}'), +(30930, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:02.16+00', '{"cached":null,"ignore_cache":false}'), +(30931, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.448+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30932, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.475+00', '{"cached":null,"ignore_cache":false}'), +(30933, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.676+00', '{"cached":null,"ignore_cache":false}'), +(30934, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.791+00', '{"cached":null,"ignore_cache":false}'), +(30935, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.805+00', '{"cached":null,"ignore_cache":false}'), +(30936, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.816+00', '{"cached":null,"ignore_cache":false}'), +(30937, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.834+00', '{"cached":null,"ignore_cache":false}'), +(30938, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.845+00', '{"cached":null,"ignore_cache":false}'), +(30939, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:08.883+00', '{"cached":null,"ignore_cache":false}'), +(30940, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.882+00', '{"cached":null,"ignore_cache":false}'), +(30941, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.886+00', '{"cached":null,"ignore_cache":false}'), +(30942, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.929+00', '{"cached":null,"ignore_cache":false}'), +(30943, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.935+00', '{"cached":null,"ignore_cache":false}'), +(30944, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:34.943+00', '{"cached":null,"ignore_cache":false}'), +(30945, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:35.573+00', '{"cached":null,"ignore_cache":false}'), +(30946, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:35.618+00', '{"cached":null,"ignore_cache":false}'), +(30947, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:37.998+00', '{"cached":null,"ignore_cache":false}'), +(30948, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.174+00', '{"cached":null,"ignore_cache":false}'), +(30949, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.211+00', '{"cached":null,"ignore_cache":false}'), +(30950, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.262+00', '{"cached":null,"ignore_cache":false}'), +(30951, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.264+00', '{"cached":null,"ignore_cache":false}'), +(30952, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.294+00', '{"cached":null,"ignore_cache":false}'), +(30953, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.316+00', '{"cached":null,"ignore_cache":false}'), +(30954, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.337+00', '{"cached":null,"ignore_cache":false}'), +(30955, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:54:38.365+00', '{"cached":null,"ignore_cache":false}'), +(30956, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.455+00', '{"cached":null,"ignore_cache":false}'), +(30957, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.467+00', '{"cached":null,"ignore_cache":false}'), +(30958, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.53+00', '{"cached":null,"ignore_cache":false}'), +(30959, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.589+00', '{"cached":null,"ignore_cache":false}'), +(30960, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.59+00', '{"cached":null,"ignore_cache":false}'), +(30961, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.614+00', '{"cached":null,"ignore_cache":false}'), +(30962, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.615+00', '{"cached":null,"ignore_cache":false}'), +(30963, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.636+00', '{"cached":null,"ignore_cache":false}'), +(30964, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:09.644+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30965, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.524+00', '{"cached":null,"ignore_cache":false}'), +(30966, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.607+00', '{"cached":null,"ignore_cache":false}'), +(30967, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.645+00', '{"cached":null,"ignore_cache":false}'), +(30968, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.673+00', '{"cached":null,"ignore_cache":false}'), +(30969, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:13.676+00', '{"cached":null,"ignore_cache":false}'), +(30970, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:14.753+00', '{"cached":null,"ignore_cache":false}'), +(30971, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:14.773+00', '{"cached":null,"ignore_cache":false}'), +(30972, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.047+00', '{"cached":null,"ignore_cache":false}'), +(30973, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.146+00', '{"cached":null,"ignore_cache":false}'), +(30974, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.177+00', '{"cached":null,"ignore_cache":false}'), +(30975, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.217+00', '{"cached":null,"ignore_cache":false}'), +(30976, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.24+00', '{"cached":null,"ignore_cache":false}'), +(30977, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.248+00', '{"cached":null,"ignore_cache":false}'), +(30978, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.264+00', '{"cached":null,"ignore_cache":false}'), +(30979, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.274+00', '{"cached":null,"ignore_cache":false}'), +(30980, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:39.298+00', '{"cached":null,"ignore_cache":false}'), +(30981, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.459+00', '{"cached":null,"ignore_cache":false}'), +(30982, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.492+00', '{"cached":null,"ignore_cache":false}'), +(30983, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.494+00', '{"cached":null,"ignore_cache":false}'), +(30984, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.495+00', '{"cached":null,"ignore_cache":false}'), +(30985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:51.525+00', '{"cached":null,"ignore_cache":false}'), +(30986, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:52.551+00', '{"cached":null,"ignore_cache":false}'), +(30987, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 12:55:52.565+00', '{"cached":null,"ignore_cache":false}'), +(30988, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.135+00', '{"cached":null,"ignore_cache":false}'), +(30989, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.217+00', '{"cached":null,"ignore_cache":false}'), +(30990, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.23+00', '{"cached":null,"ignore_cache":false}'), +(30991, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.248+00', '{"cached":null,"ignore_cache":false}'), +(30992, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.25+00', '{"cached":null,"ignore_cache":false}'), +(30993, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.259+00', '{"cached":null,"ignore_cache":false}'), +(30994, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.262+00', '{"cached":null,"ignore_cache":false}'), +(30995, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.278+00', '{"cached":null,"ignore_cache":false}'), +(30996, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 12:56:09.326+00', '{"cached":null,"ignore_cache":false}'), +(30997, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.459+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(30998, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.482+00', '{"cached":null,"ignore_cache":false}'), +(30999, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.578+00', '{"cached":null,"ignore_cache":false}'), +(31000, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:05.658+00', '{"cached":null,"ignore_cache":false}'), +(31001, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.032+00', '{"cached":null,"ignore_cache":false}'), +(31002, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.07+00', '{"cached":null,"ignore_cache":false}'), +(31003, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.253+00', '{"cached":null,"ignore_cache":false}'), +(31004, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:06.948+00', '{"cached":null,"ignore_cache":false}'), +(31005, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.001+00', '{"cached":null,"ignore_cache":false}'), +(31006, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.078+00', '{"cached":null,"ignore_cache":false}'), +(31007, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.079+00', '{"cached":null,"ignore_cache":false}'), +(31008, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.09+00', '{"cached":null,"ignore_cache":false}'), +(31009, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.209+00', '{"cached":null,"ignore_cache":false}'), +(31010, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.312+00', '{"cached":null,"ignore_cache":false}'), +(31011, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.387+00', '{"cached":null,"ignore_cache":false}'), +(31012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.388+00', '{"cached":null,"ignore_cache":false}'), +(31013, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.403+00', '{"cached":null,"ignore_cache":false}'), +(31014, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.476+00', '{"cached":null,"ignore_cache":false}'), +(31015, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.583+00', '{"cached":null,"ignore_cache":false}'), +(31016, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:07.677+00', '{"cached":null,"ignore_cache":false}'), +(31017, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:08.867+00', '{"cached":null,"ignore_cache":false}'), +(31018, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:09.099+00', '{"cached":null,"ignore_cache":false}'), +(31019, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:09.106+00', '{"cached":null,"ignore_cache":false}'), +(31020, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:09.256+00', '{"cached":null,"ignore_cache":false}'), +(31021, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.173+00', '{"cached":null,"ignore_cache":false}'), +(31022, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.224+00', '{"cached":null,"ignore_cache":false}'), +(31023, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.325+00', '{"cached":null,"ignore_cache":false}'), +(31024, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.343+00', '{"cached":null,"ignore_cache":false}'), +(31025, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.369+00', '{"cached":null,"ignore_cache":false}'), +(31026, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.385+00', '{"cached":null,"ignore_cache":false}'), +(31027, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.437+00', '{"cached":null,"ignore_cache":false}'), +(31028, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.477+00', '{"cached":null,"ignore_cache":false}'), +(31029, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:35.513+00', '{"cached":null,"ignore_cache":false}'), +(31030, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.813+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31031, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.845+00', '{"cached":null,"ignore_cache":false}'), +(31032, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.85+00', '{"cached":null,"ignore_cache":false}'), +(31033, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.863+00', '{"cached":null,"ignore_cache":false}'), +(31034, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:38.868+00', '{"cached":null,"ignore_cache":false}'), +(31035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:39.562+00', '{"cached":null,"ignore_cache":false}'), +(31036, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:35:39.596+00', '{"cached":null,"ignore_cache":false}'), +(31037, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:37.551+00', '{"cached":null,"ignore_cache":false}'), +(31038, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.046+00', '{"cached":null,"ignore_cache":false}'), +(31039, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.192+00', '{"cached":null,"ignore_cache":false}'), +(31040, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.259+00', '{"cached":null,"ignore_cache":false}'), +(31041, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:38.609+00', '{"cached":null,"ignore_cache":false}'), +(31042, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.217+00', '{"cached":null,"ignore_cache":false}'), +(31043, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.377+00', '{"cached":null,"ignore_cache":false}'), +(31044, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.506+00', '{"cached":null,"ignore_cache":false}'), +(31045, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:39.956+00', '{"cached":null,"ignore_cache":false}'), +(31046, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.085+00', '{"cached":null,"ignore_cache":false}'), +(31047, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.367+00', '{"cached":null,"ignore_cache":false}'), +(31048, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.367+00', '{"cached":null,"ignore_cache":false}'), +(31049, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.39+00', '{"cached":null,"ignore_cache":false}'), +(31050, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.405+00', '{"cached":null,"ignore_cache":false}'), +(31051, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.48+00', '{"cached":null,"ignore_cache":false}'), +(31052, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.575+00', '{"cached":null,"ignore_cache":false}'), +(31053, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.652+00', '{"cached":null,"ignore_cache":false}'), +(31054, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.681+00', '{"cached":null,"ignore_cache":false}'), +(31055, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.749+00', '{"cached":null,"ignore_cache":false}'), +(31056, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:40.771+00', '{"cached":null,"ignore_cache":false}'), +(31057, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:41.112+00', '{"cached":null,"ignore_cache":false}'), +(31058, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:41.161+00', '{"cached":null,"ignore_cache":false}'), +(31059, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:41.467+00', '{"cached":null,"ignore_cache":false}'), +(31060, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:41:42.051+00', '{"cached":null,"ignore_cache":false}'), +(31061, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.485+00', '{"cached":null,"ignore_cache":false}'), +(31062, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.528+00', '{"cached":null,"ignore_cache":false}'), +(31063, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.572+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31064, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.582+00', '{"cached":null,"ignore_cache":false}'), +(31065, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:06.594+00', '{"cached":null,"ignore_cache":false}'), +(31066, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.785+00', '{"cached":null,"ignore_cache":false}'), +(31067, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.785+00', '{"cached":null,"ignore_cache":false}'), +(31068, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.834+00', '{"cached":null,"ignore_cache":false}'), +(31069, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.837+00', '{"cached":null,"ignore_cache":false}'), +(31070, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.891+00', '{"cached":null,"ignore_cache":false}'), +(31071, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.962+00', '{"cached":null,"ignore_cache":false}'), +(31072, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:07.994+00', '{"cached":null,"ignore_cache":false}'), +(31073, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:08.004+00', '{"cached":null,"ignore_cache":false}'), +(31074, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:08.009+00', '{"cached":null,"ignore_cache":false}'), +(31075, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:08.059+00', '{"cached":null,"ignore_cache":false}'), +(31076, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:08.135+00', '{"cached":null,"ignore_cache":false}'), +(31077, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.507+00', '{"cached":null,"ignore_cache":false}'), +(31078, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.576+00', '{"cached":null,"ignore_cache":false}'), +(31079, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.638+00', '{"cached":null,"ignore_cache":false}'), +(31080, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.659+00', '{"cached":null,"ignore_cache":false}'), +(31081, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:16.815+00', '{"cached":null,"ignore_cache":false}'), +(31082, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:17.228+00', '{"cached":null,"ignore_cache":false}'), +(31083, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:17.314+00', '{"cached":null,"ignore_cache":false}'), +(31084, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:17.48+00', '{"cached":null,"ignore_cache":false}'), +(31085, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:17.506+00', '{"cached":null,"ignore_cache":false}'), +(31086, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:17.567+00', '{"cached":null,"ignore_cache":false}'), +(31087, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:17.81+00', '{"cached":null,"ignore_cache":false}'), +(31088, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:17.991+00', '{"cached":null,"ignore_cache":false}'), +(31089, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.014+00', '{"cached":null,"ignore_cache":false}'), +(31090, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.064+00', '{"cached":null,"ignore_cache":false}'), +(31091, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.284+00', '{"cached":null,"ignore_cache":false}'), +(31092, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.284+00', '{"cached":null,"ignore_cache":false}'), +(31093, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.338+00', '{"cached":null,"ignore_cache":false}'), +(31094, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.338+00', '{"cached":null,"ignore_cache":false}'), +(31095, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.472+00', '{"cached":null,"ignore_cache":false}'), +(31096, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:18.483+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31097, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:19.951+00', '{"cached":null,"ignore_cache":false}'), +(31098, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:20.288+00', '{"cached":null,"ignore_cache":false}'), +(31099, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:20.447+00', '{"cached":null,"ignore_cache":false}'), +(31100, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.389+00', '{"cached":null,"ignore_cache":false}'), +(31101, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.409+00', '{"cached":null,"ignore_cache":false}'), +(31102, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.41+00', '{"cached":null,"ignore_cache":false}'), +(31103, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.442+00', '{"cached":null,"ignore_cache":false}'), +(31104, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.455+00', '{"cached":null,"ignore_cache":false}'), +(31105, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.457+00', '{"cached":null,"ignore_cache":false}'), +(31106, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.463+00', '{"cached":null,"ignore_cache":false}'), +(31107, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.471+00', '{"cached":null,"ignore_cache":false}'), +(31108, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.503+00', '{"cached":null,"ignore_cache":false}'), +(31109, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.616+00', '{"cached":null,"ignore_cache":false}'), +(31110, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.695+00', '{"cached":null,"ignore_cache":false}'), +(31111, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.711+00', '{"cached":null,"ignore_cache":false}'), +(31112, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.744+00', '{"cached":null,"ignore_cache":false}'), +(31113, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:45.752+00', '{"cached":null,"ignore_cache":false}'), +(31114, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:46.609+00', '{"cached":null,"ignore_cache":false}'), +(31115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:42:46.763+00', '{"cached":null,"ignore_cache":false}'), +(31116, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.288+00', '{"cached":null,"ignore_cache":false}'), +(31117, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.343+00', '{"cached":null,"ignore_cache":false}'), +(31118, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.347+00', '{"cached":null,"ignore_cache":false}'), +(31119, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.364+00', '{"cached":null,"ignore_cache":false}'), +(31120, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.37+00', '{"cached":null,"ignore_cache":false}'), +(31121, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.396+00', '{"cached":null,"ignore_cache":false}'), +(31122, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.402+00', '{"cached":null,"ignore_cache":false}'), +(31123, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.468+00', '{"cached":null,"ignore_cache":false}'), +(31124, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.482+00', '{"cached":null,"ignore_cache":false}'), +(31125, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.534+00', '{"cached":null,"ignore_cache":false}'), +(31126, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.574+00', '{"cached":null,"ignore_cache":false}'), +(31127, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.585+00', '{"cached":null,"ignore_cache":false}'), +(31128, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.588+00', '{"cached":null,"ignore_cache":false}'), +(31129, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:15.596+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31130, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:16.214+00', '{"cached":null,"ignore_cache":false}'), +(31131, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:16.252+00', '{"cached":null,"ignore_cache":false}'), +(31132, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.311+00', '{"cached":null,"ignore_cache":false}'), +(31133, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.392+00', '{"cached":null,"ignore_cache":false}'), +(31134, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.517+00', '{"cached":null,"ignore_cache":false}'), +(31135, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.54+00', '{"cached":null,"ignore_cache":false}'), +(31136, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.556+00', '{"cached":null,"ignore_cache":false}'), +(31137, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.56+00', '{"cached":null,"ignore_cache":false}'), +(31138, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.624+00', '{"cached":null,"ignore_cache":false}'), +(31139, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.66+00', '{"cached":null,"ignore_cache":false}'), +(31140, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.717+00', '{"cached":null,"ignore_cache":false}'), +(31141, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.729+00', '{"cached":null,"ignore_cache":false}'), +(31142, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.764+00', '{"cached":null,"ignore_cache":false}'), +(31143, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.772+00', '{"cached":null,"ignore_cache":false}'), +(31144, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.776+00', '{"cached":null,"ignore_cache":false}'), +(31145, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:45.79+00', '{"cached":null,"ignore_cache":false}'), +(31146, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:46.711+00', '{"cached":null,"ignore_cache":false}'), +(31147, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:43:46.987+00', '{"cached":null,"ignore_cache":false}'), +(31148, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.661+00', '{"cached":null,"ignore_cache":false}'), +(31149, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.691+00', '{"cached":null,"ignore_cache":false}'), +(31150, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.732+00', '{"cached":null,"ignore_cache":false}'), +(31151, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.744+00', '{"cached":null,"ignore_cache":false}'), +(31152, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.769+00', '{"cached":null,"ignore_cache":false}'), +(31153, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.824+00', '{"cached":null,"ignore_cache":false}'), +(31154, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.825+00', '{"cached":null,"ignore_cache":false}'), +(31155, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.852+00', '{"cached":null,"ignore_cache":false}'), +(31156, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:15.893+00', '{"cached":null,"ignore_cache":false}'), +(31157, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.141+00', '{"cached":null,"ignore_cache":false}'), +(31158, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.154+00', '{"cached":null,"ignore_cache":false}'), +(31159, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.167+00', '{"cached":null,"ignore_cache":false}'), +(31160, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.204+00', '{"cached":null,"ignore_cache":false}'), +(31161, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:16.256+00', '{"cached":null,"ignore_cache":false}'), +(31162, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:17.184+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31163, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:17.278+00', '{"cached":null,"ignore_cache":false}'), +(31164, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.346+00', '{"cached":null,"ignore_cache":false}'), +(31165, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.425+00', '{"cached":null,"ignore_cache":false}'), +(31166, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.636+00', '{"cached":null,"ignore_cache":false}'), +(31167, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.696+00', '{"cached":null,"ignore_cache":false}'), +(31168, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.708+00', '{"cached":null,"ignore_cache":false}'), +(31169, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.754+00', '{"cached":null,"ignore_cache":false}'), +(31170, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.797+00', '{"cached":null,"ignore_cache":false}'), +(31171, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.88+00', '{"cached":null,"ignore_cache":false}'), +(31172, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.885+00', '{"cached":null,"ignore_cache":false}'), +(31173, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.898+00', '{"cached":null,"ignore_cache":false}'), +(31174, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.92+00', '{"cached":null,"ignore_cache":false}'), +(31175, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.976+00', '{"cached":null,"ignore_cache":false}'), +(31176, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.992+00', '{"cached":null,"ignore_cache":false}'), +(31177, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:45.994+00', '{"cached":null,"ignore_cache":false}'), +(31178, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:46.826+00', '{"cached":null,"ignore_cache":false}'), +(31179, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:44:47+00', '{"cached":null,"ignore_cache":false}'), +(31180, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.459+00', '{"cached":null,"ignore_cache":false}'), +(31181, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.47+00', '{"cached":null,"ignore_cache":false}'), +(31182, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.575+00', '{"cached":null,"ignore_cache":false}'), +(31183, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.587+00', '{"cached":null,"ignore_cache":false}'), +(31184, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.653+00', '{"cached":null,"ignore_cache":false}'), +(31185, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.686+00', '{"cached":null,"ignore_cache":false}'), +(31186, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.696+00', '{"cached":null,"ignore_cache":false}'), +(31187, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.767+00', '{"cached":null,"ignore_cache":false}'), +(31188, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.772+00', '{"cached":null,"ignore_cache":false}'), +(31189, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.855+00', '{"cached":null,"ignore_cache":false}'), +(31190, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.975+00', '{"cached":null,"ignore_cache":false}'), +(31191, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:15.977+00', '{"cached":null,"ignore_cache":false}'), +(31192, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:16.024+00', '{"cached":null,"ignore_cache":false}'), +(31193, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:16.037+00', '{"cached":null,"ignore_cache":false}'), +(31194, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:16.792+00', '{"cached":null,"ignore_cache":false}'), +(31195, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:17.022+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31196, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.64+00', '{"cached":null,"ignore_cache":false}'), +(31197, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.734+00', '{"cached":null,"ignore_cache":false}'), +(31198, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.745+00', '{"cached":null,"ignore_cache":false}'), +(31199, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.811+00', '{"cached":null,"ignore_cache":false}'), +(31200, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.858+00', '{"cached":null,"ignore_cache":false}'), +(31201, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.87+00', '{"cached":null,"ignore_cache":false}'), +(31202, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.906+00', '{"cached":null,"ignore_cache":false}'), +(31203, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.935+00', '{"cached":null,"ignore_cache":false}'), +(31204, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.977+00', '{"cached":null,"ignore_cache":false}'), +(31205, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:45.993+00', '{"cached":null,"ignore_cache":false}'), +(31206, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:46.033+00', '{"cached":null,"ignore_cache":false}'), +(31207, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:46.051+00', '{"cached":null,"ignore_cache":false}'), +(31208, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:46.06+00', '{"cached":null,"ignore_cache":false}'), +(31209, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:46.118+00', '{"cached":null,"ignore_cache":false}'), +(31210, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:47.146+00', '{"cached":null,"ignore_cache":false}'), +(31211, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:45:47.169+00', '{"cached":null,"ignore_cache":false}'), +(31212, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:15.711+00', '{"cached":null,"ignore_cache":false}'), +(31213, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.062+00', '{"cached":null,"ignore_cache":false}'), +(31214, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.193+00', '{"cached":null,"ignore_cache":false}'), +(31215, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.254+00', '{"cached":null,"ignore_cache":false}'), +(31216, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.255+00', '{"cached":null,"ignore_cache":false}'), +(31217, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.41+00', '{"cached":null,"ignore_cache":false}'), +(31218, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.424+00', '{"cached":null,"ignore_cache":false}'), +(31219, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.442+00', '{"cached":null,"ignore_cache":false}'), +(31220, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.517+00', '{"cached":null,"ignore_cache":false}'), +(31221, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.523+00', '{"cached":null,"ignore_cache":false}'), +(31222, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.597+00', '{"cached":null,"ignore_cache":false}'), +(31223, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.657+00', '{"cached":null,"ignore_cache":false}'), +(31224, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.671+00', '{"cached":null,"ignore_cache":false}'), +(31225, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:16.685+00', '{"cached":null,"ignore_cache":false}'), +(31226, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:17.723+00', '{"cached":null,"ignore_cache":false}'), +(31227, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:18.052+00', '{"cached":null,"ignore_cache":false}'), +(31228, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.482+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31229, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.573+00', '{"cached":null,"ignore_cache":false}'), +(31230, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.605+00', '{"cached":null,"ignore_cache":false}'), +(31231, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.618+00', '{"cached":null,"ignore_cache":false}'), +(31232, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.632+00', '{"cached":null,"ignore_cache":false}'), +(31233, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.68+00', '{"cached":null,"ignore_cache":false}'), +(31234, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.725+00', '{"cached":null,"ignore_cache":false}'), +(31235, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.725+00', '{"cached":null,"ignore_cache":false}'), +(31236, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.779+00', '{"cached":null,"ignore_cache":false}'), +(31237, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.915+00', '{"cached":null,"ignore_cache":false}'), +(31238, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.964+00', '{"cached":null,"ignore_cache":false}'), +(31239, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:45.982+00', '{"cached":null,"ignore_cache":false}'), +(31240, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:46.037+00', '{"cached":null,"ignore_cache":false}'), +(31241, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:46.06+00', '{"cached":null,"ignore_cache":false}'), +(31242, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:47.517+00', '{"cached":null,"ignore_cache":false}'), +(31243, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:46:47.558+00', '{"cached":null,"ignore_cache":false}'), +(31244, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.56+00', '{"cached":null,"ignore_cache":false}'), +(31245, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.829+00', '{"cached":null,"ignore_cache":false}'), +(31246, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.949+00', '{"cached":null,"ignore_cache":false}'), +(31247, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.955+00', '{"cached":null,"ignore_cache":false}'), +(31248, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.968+00', '{"cached":null,"ignore_cache":false}'), +(31249, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:15.997+00', '{"cached":null,"ignore_cache":false}'), +(31250, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.038+00', '{"cached":null,"ignore_cache":false}'), +(31251, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.064+00', '{"cached":null,"ignore_cache":false}'), +(31252, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.092+00', '{"cached":null,"ignore_cache":false}'), +(31253, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.118+00', '{"cached":null,"ignore_cache":false}'), +(31254, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.154+00', '{"cached":null,"ignore_cache":false}'), +(31255, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.173+00', '{"cached":null,"ignore_cache":false}'), +(31256, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.19+00', '{"cached":null,"ignore_cache":false}'), +(31257, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.228+00', '{"cached":null,"ignore_cache":false}'), +(31258, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:16.877+00', '{"cached":null,"ignore_cache":false}'), +(31259, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:17.067+00', '{"cached":null,"ignore_cache":false}'), +(31260, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.428+00', '{"cached":null,"ignore_cache":false}'), +(31261, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.506+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31262, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.584+00', '{"cached":null,"ignore_cache":false}'), +(31263, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.633+00', '{"cached":null,"ignore_cache":false}'), +(31264, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.657+00', '{"cached":null,"ignore_cache":false}'), +(31265, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.705+00', '{"cached":null,"ignore_cache":false}'), +(31266, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.72+00', '{"cached":null,"ignore_cache":false}'), +(31267, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.745+00', '{"cached":null,"ignore_cache":false}'), +(31268, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:45.806+00', '{"cached":null,"ignore_cache":false}'), +(31269, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.075+00', '{"cached":null,"ignore_cache":false}'), +(31270, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.111+00', '{"cached":null,"ignore_cache":false}'), +(31271, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.192+00', '{"cached":null,"ignore_cache":false}'), +(31272, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.218+00', '{"cached":null,"ignore_cache":false}'), +(31273, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.265+00', '{"cached":null,"ignore_cache":false}'), +(31274, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.918+00', '{"cached":null,"ignore_cache":false}'), +(31275, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:47:46.98+00', '{"cached":null,"ignore_cache":false}'), +(31276, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.525+00', '{"cached":null,"ignore_cache":false}'), +(31277, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.721+00', '{"cached":null,"ignore_cache":false}'), +(31278, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.808+00', '{"cached":null,"ignore_cache":false}'), +(31279, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:15.863+00', '{"cached":null,"ignore_cache":false}'), +(31280, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.035+00', '{"cached":null,"ignore_cache":false}'), +(31281, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.06+00', '{"cached":null,"ignore_cache":false}'), +(31282, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.078+00', '{"cached":null,"ignore_cache":false}'), +(31283, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.091+00', '{"cached":null,"ignore_cache":false}'), +(31284, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.253+00', '{"cached":null,"ignore_cache":false}'), +(31285, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.318+00', '{"cached":null,"ignore_cache":false}'), +(31286, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.34+00', '{"cached":null,"ignore_cache":false}'), +(31287, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.386+00', '{"cached":null,"ignore_cache":false}'), +(31288, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.393+00', '{"cached":null,"ignore_cache":false}'), +(31289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:16.401+00', '{"cached":null,"ignore_cache":false}'), +(31290, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:17.658+00', '{"cached":null,"ignore_cache":false}'), +(31291, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:17.669+00', '{"cached":null,"ignore_cache":false}'), +(31292, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.447+00', '{"cached":null,"ignore_cache":false}'), +(31293, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.456+00', '{"cached":null,"ignore_cache":false}'), +(31294, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.486+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31295, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.52+00', '{"cached":null,"ignore_cache":false}'), +(31296, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.54+00', '{"cached":null,"ignore_cache":false}'), +(31297, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.558+00', '{"cached":null,"ignore_cache":false}'), +(31298, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.569+00', '{"cached":null,"ignore_cache":false}'), +(31299, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.595+00', '{"cached":null,"ignore_cache":false}'), +(31300, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:45.603+00', '{"cached":null,"ignore_cache":false}'), +(31301, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.088+00', '{"cached":null,"ignore_cache":false}'), +(31302, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.096+00', '{"cached":null,"ignore_cache":false}'), +(31303, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.118+00', '{"cached":null,"ignore_cache":false}'), +(31304, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.132+00', '{"cached":null,"ignore_cache":false}'), +(31305, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:46.154+00', '{"cached":null,"ignore_cache":false}'), +(31306, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:47.122+00', '{"cached":null,"ignore_cache":false}'), +(31307, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:48:47.128+00', '{"cached":null,"ignore_cache":false}'), +(31308, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.582+00', '{"cached":null,"ignore_cache":false}'), +(31309, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.659+00', '{"cached":null,"ignore_cache":false}'), +(31310, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.672+00', '{"cached":null,"ignore_cache":false}'), +(31311, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.698+00', '{"cached":null,"ignore_cache":false}'), +(31312, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.745+00', '{"cached":null,"ignore_cache":false}'), +(31313, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.844+00', '{"cached":null,"ignore_cache":false}'), +(31314, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:15.868+00', '{"cached":null,"ignore_cache":false}'), +(31315, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:16.105+00', '{"cached":null,"ignore_cache":false}'), +(31316, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:16.11+00', '{"cached":null,"ignore_cache":false}'), +(31317, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:16.131+00', '{"cached":null,"ignore_cache":false}'), +(31318, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:16.151+00', '{"cached":null,"ignore_cache":false}'), +(31319, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:16.155+00', '{"cached":null,"ignore_cache":false}'), +(31320, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:16.169+00', '{"cached":null,"ignore_cache":false}'), +(31321, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:16.18+00', '{"cached":null,"ignore_cache":false}'), +(31322, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:17.076+00', '{"cached":null,"ignore_cache":false}'), +(31323, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:17.11+00', '{"cached":null,"ignore_cache":false}'), +(31324, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.305+00', '{"cached":null,"ignore_cache":false}'), +(31325, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.341+00', '{"cached":null,"ignore_cache":false}'), +(31326, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.342+00', '{"cached":null,"ignore_cache":false}'), +(31327, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.364+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31328, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.396+00', '{"cached":null,"ignore_cache":false}'), +(31329, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.402+00', '{"cached":null,"ignore_cache":false}'), +(31330, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.409+00', '{"cached":null,"ignore_cache":false}'), +(31331, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.424+00', '{"cached":null,"ignore_cache":false}'), +(31332, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.469+00', '{"cached":null,"ignore_cache":false}'), +(31333, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.525+00', '{"cached":null,"ignore_cache":false}'), +(31334, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.599+00', '{"cached":null,"ignore_cache":false}'), +(31335, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.61+00', '{"cached":null,"ignore_cache":false}'), +(31336, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.619+00', '{"cached":null,"ignore_cache":false}'), +(31337, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:45.62+00', '{"cached":null,"ignore_cache":false}'), +(31338, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:46.27+00', '{"cached":null,"ignore_cache":false}'), +(31339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:49:46.312+00', '{"cached":null,"ignore_cache":false}'), +(31340, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.206+00', '{"cached":null,"ignore_cache":false}'), +(31341, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.288+00', '{"cached":null,"ignore_cache":false}'), +(31342, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.288+00', '{"cached":null,"ignore_cache":false}'), +(31343, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.33+00', '{"cached":null,"ignore_cache":false}'), +(31344, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.37+00', '{"cached":null,"ignore_cache":false}'), +(31345, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.388+00', '{"cached":null,"ignore_cache":false}'), +(31346, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.43+00', '{"cached":null,"ignore_cache":false}'), +(31347, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.467+00', '{"cached":null,"ignore_cache":false}'), +(31348, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.473+00', '{"cached":null,"ignore_cache":false}'), +(31349, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.505+00', '{"cached":null,"ignore_cache":false}'), +(31350, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.507+00', '{"cached":null,"ignore_cache":false}'), +(31351, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.552+00', '{"cached":null,"ignore_cache":false}'), +(31352, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.563+00', '{"cached":null,"ignore_cache":false}'), +(31353, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:17.583+00', '{"cached":null,"ignore_cache":false}'), +(31354, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:18.367+00', '{"cached":null,"ignore_cache":false}'), +(31355, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:18.474+00', '{"cached":null,"ignore_cache":false}'), +(31356, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.75+00', '{"cached":null,"ignore_cache":false}'), +(31357, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.756+00', '{"cached":null,"ignore_cache":false}'), +(31358, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.758+00', '{"cached":null,"ignore_cache":false}'), +(31359, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.858+00', '{"cached":null,"ignore_cache":false}'), +(31360, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.935+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31361, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.943+00', '{"cached":null,"ignore_cache":false}'), +(31362, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.972+00', '{"cached":null,"ignore_cache":false}'), +(31363, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:45.995+00', '{"cached":null,"ignore_cache":false}'), +(31364, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:46.064+00', '{"cached":null,"ignore_cache":false}'), +(31365, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:46.092+00', '{"cached":null,"ignore_cache":false}'), +(31366, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:46.124+00', '{"cached":null,"ignore_cache":false}'), +(31367, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:46.137+00', '{"cached":null,"ignore_cache":false}'), +(31368, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:46.153+00', '{"cached":null,"ignore_cache":false}'), +(31369, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:46.158+00', '{"cached":null,"ignore_cache":false}'), +(31370, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:47.195+00', '{"cached":null,"ignore_cache":false}'), +(31371, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:50:47.231+00', '{"cached":null,"ignore_cache":false}'), +(31372, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.311+00', '{"cached":null,"ignore_cache":false}'), +(31373, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.411+00', '{"cached":null,"ignore_cache":false}'), +(31374, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.412+00', '{"cached":null,"ignore_cache":false}'), +(31375, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.526+00', '{"cached":null,"ignore_cache":false}'), +(31376, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.627+00', '{"cached":null,"ignore_cache":false}'), +(31377, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.658+00', '{"cached":null,"ignore_cache":false}'), +(31378, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.702+00', '{"cached":null,"ignore_cache":false}'), +(31379, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.723+00', '{"cached":null,"ignore_cache":false}'), +(31380, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.774+00', '{"cached":null,"ignore_cache":false}'), +(31381, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.784+00', '{"cached":null,"ignore_cache":false}'), +(31382, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.811+00', '{"cached":null,"ignore_cache":false}'), +(31383, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.812+00', '{"cached":null,"ignore_cache":false}'), +(31384, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.815+00', '{"cached":null,"ignore_cache":false}'), +(31385, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:15.83+00', '{"cached":null,"ignore_cache":false}'), +(31386, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:16.697+00', '{"cached":null,"ignore_cache":false}'), +(31387, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:16.723+00', '{"cached":null,"ignore_cache":false}'), +(31388, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.334+00', '{"cached":null,"ignore_cache":false}'), +(31389, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.368+00', '{"cached":null,"ignore_cache":false}'), +(31390, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.378+00', '{"cached":null,"ignore_cache":false}'), +(31391, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.38+00', '{"cached":null,"ignore_cache":false}'), +(31392, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.414+00', '{"cached":null,"ignore_cache":false}'), +(31393, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.42+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31394, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.43+00', '{"cached":null,"ignore_cache":false}'), +(31395, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.447+00', '{"cached":null,"ignore_cache":false}'), +(31396, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:45.452+00', '{"cached":null,"ignore_cache":false}'), +(31397, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.033+00', '{"cached":null,"ignore_cache":false}'), +(31398, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.109+00', '{"cached":null,"ignore_cache":false}'), +(31399, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.144+00', '{"cached":null,"ignore_cache":false}'), +(31400, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.236+00', '{"cached":null,"ignore_cache":false}'), +(31401, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:48.243+00', '{"cached":null,"ignore_cache":false}'), +(31402, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:49.291+00', '{"cached":null,"ignore_cache":false}'), +(31403, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:51:49.362+00', '{"cached":null,"ignore_cache":false}'), +(31404, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.502+00', '{"cached":null,"ignore_cache":false}'), +(31405, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.78+00', '{"cached":null,"ignore_cache":false}'), +(31406, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.802+00', '{"cached":null,"ignore_cache":false}'), +(31407, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.871+00', '{"cached":null,"ignore_cache":false}'), +(31408, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.88+00', '{"cached":null,"ignore_cache":false}'), +(31409, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.918+00', '{"cached":null,"ignore_cache":false}'), +(31410, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.949+00', '{"cached":null,"ignore_cache":false}'), +(31411, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.968+00', '{"cached":null,"ignore_cache":false}'), +(31412, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:15.984+00', '{"cached":null,"ignore_cache":false}'), +(31413, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:16.016+00', '{"cached":null,"ignore_cache":false}'), +(31414, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:16.055+00', '{"cached":null,"ignore_cache":false}'), +(31415, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:16.109+00', '{"cached":null,"ignore_cache":false}'), +(31416, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:16.153+00', '{"cached":null,"ignore_cache":false}'), +(31417, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:16.189+00', '{"cached":null,"ignore_cache":false}'), +(31418, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:17.419+00', '{"cached":null,"ignore_cache":false}'), +(31419, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:17.548+00', '{"cached":null,"ignore_cache":false}'), +(31420, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.779+00', '{"cached":null,"ignore_cache":false}'), +(31421, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:46.809+00', '{"cached":null,"ignore_cache":false}'), +(31422, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.012+00', '{"cached":null,"ignore_cache":false}'), +(31423, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.062+00', '{"cached":null,"ignore_cache":false}'), +(31424, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.094+00', '{"cached":null,"ignore_cache":false}'), +(31425, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.112+00', '{"cached":null,"ignore_cache":false}'), +(31426, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.131+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31427, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.15+00', '{"cached":null,"ignore_cache":false}'), +(31428, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.213+00', '{"cached":null,"ignore_cache":false}'), +(31429, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.263+00', '{"cached":null,"ignore_cache":false}'), +(31430, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.285+00', '{"cached":null,"ignore_cache":false}'), +(31431, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.295+00', '{"cached":null,"ignore_cache":false}'), +(31432, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.297+00', '{"cached":null,"ignore_cache":false}'), +(31433, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.317+00', '{"cached":null,"ignore_cache":false}'), +(31434, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.68+00', '{"cached":null,"ignore_cache":false}'), +(31435, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:52:47.863+00', '{"cached":null,"ignore_cache":false}'), +(31436, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.713+00', '{"cached":null,"ignore_cache":false}'), +(31437, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.769+00', '{"cached":null,"ignore_cache":false}'), +(31438, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.775+00', '{"cached":null,"ignore_cache":false}'), +(31439, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.779+00', '{"cached":null,"ignore_cache":false}'), +(31440, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.857+00', '{"cached":null,"ignore_cache":false}'), +(31441, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.865+00', '{"cached":null,"ignore_cache":false}'), +(31442, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.871+00', '{"cached":null,"ignore_cache":false}'), +(31443, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.88+00', '{"cached":null,"ignore_cache":false}'), +(31444, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:15.88+00', '{"cached":null,"ignore_cache":false}'), +(31445, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.623+00', '{"cached":null,"ignore_cache":false}'), +(31446, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.638+00', '{"cached":null,"ignore_cache":false}'), +(31447, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.68+00', '{"cached":null,"ignore_cache":false}'), +(31448, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.701+00', '{"cached":null,"ignore_cache":false}'), +(31449, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:16.737+00', '{"cached":null,"ignore_cache":false}'), +(31450, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:17.817+00', '{"cached":null,"ignore_cache":false}'), +(31451, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:17.893+00', '{"cached":null,"ignore_cache":false}'), +(31452, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.863+00', '{"cached":null,"ignore_cache":false}'), +(31453, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.931+00', '{"cached":null,"ignore_cache":false}'), +(31454, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:27.956+00', '{"cached":null,"ignore_cache":false}'), +(31455, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:28.008+00', '{"cached":null,"ignore_cache":false}'), +(31456, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:28.026+00', '{"cached":null,"ignore_cache":false}'), +(31457, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.04+00', '{"cached":null,"ignore_cache":false}'), +(31458, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.218+00', '{"cached":null,"ignore_cache":false}'), +(31459, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.27+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31460, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.353+00', '{"cached":null,"ignore_cache":false}'), +(31461, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.401+00', '{"cached":null,"ignore_cache":false}'), +(31462, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.468+00', '{"cached":null,"ignore_cache":false}'), +(31463, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.476+00', '{"cached":null,"ignore_cache":false}'), +(31464, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.517+00', '{"cached":null,"ignore_cache":false}'), +(31465, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.523+00', '{"cached":null,"ignore_cache":false}'), +(31466, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.528+00', '{"cached":null,"ignore_cache":false}'), +(31467, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:29.533+00', '{"cached":null,"ignore_cache":false}'), +(31468, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.91+00', '{"cached":null,"ignore_cache":false}'), +(31469, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.92+00', '{"cached":null,"ignore_cache":false}'), +(31470, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.93+00', '{"cached":null,"ignore_cache":false}'), +(31471, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:46.979+00', '{"cached":null,"ignore_cache":false}'), +(31472, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.663+00', '{"cached":null,"ignore_cache":false}'), +(31473, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.721+00', '{"cached":null,"ignore_cache":false}'), +(31474, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.745+00', '{"cached":null,"ignore_cache":false}'), +(31475, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.783+00', '{"cached":null,"ignore_cache":false}'), +(31476, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:47.813+00', '{"cached":null,"ignore_cache":false}'), +(31477, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.035+00', '{"cached":null,"ignore_cache":false}'), +(31478, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.305+00', '{"cached":null,"ignore_cache":false}'), +(31479, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.309+00', '{"cached":null,"ignore_cache":false}'), +(31480, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.391+00', '{"cached":null,"ignore_cache":false}'), +(31481, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:48.391+00', '{"cached":null,"ignore_cache":false}'), +(31482, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:49.043+00', '{"cached":null,"ignore_cache":false}'), +(31483, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:49.226+00', '{"cached":null,"ignore_cache":false}'), +(31484, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.385+00', '{"cached":null,"ignore_cache":false}'), +(31485, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.855+00', '{"cached":null,"ignore_cache":false}'), +(31486, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.915+00', '{"cached":null,"ignore_cache":false}'), +(31487, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.926+00', '{"cached":null,"ignore_cache":false}'), +(31488, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:58.96+00', '{"cached":null,"ignore_cache":false}'), +(31489, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.271+00', '{"cached":null,"ignore_cache":false}'), +(31490, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.394+00', '{"cached":null,"ignore_cache":false}'), +(31491, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.869+00', '{"cached":null,"ignore_cache":false}'), +(31492, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.952+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31493, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.957+00', '{"cached":null,"ignore_cache":false}'), +(31494, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.967+00', '{"cached":null,"ignore_cache":false}'), +(31495, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.98+00', '{"cached":null,"ignore_cache":false}'), +(31496, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:53:59.988+00', '{"cached":null,"ignore_cache":false}'), +(31497, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:00.016+00', '{"cached":null,"ignore_cache":false}'), +(31498, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:00.018+00', '{"cached":null,"ignore_cache":false}'), +(31499, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:00.024+00', '{"cached":null,"ignore_cache":false}'), +(31500, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.353+00', '{"cached":null,"ignore_cache":false}'), +(31501, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.502+00', '{"cached":null,"ignore_cache":false}'), +(31502, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.552+00', '{"cached":null,"ignore_cache":false}'), +(31503, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.647+00', '{"cached":null,"ignore_cache":false}'), +(31504, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.668+00', '{"cached":null,"ignore_cache":false}'), +(31505, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.702+00', '{"cached":null,"ignore_cache":false}'), +(31506, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.729+00', '{"cached":null,"ignore_cache":false}'), +(31507, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.746+00', '{"cached":null,"ignore_cache":false}'), +(31508, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.773+00', '{"cached":null,"ignore_cache":false}'), +(31509, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.783+00', '{"cached":null,"ignore_cache":false}'), +(31510, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.838+00', '{"cached":null,"ignore_cache":false}'), +(31511, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.855+00', '{"cached":null,"ignore_cache":false}'), +(31512, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.876+00', '{"cached":null,"ignore_cache":false}'), +(31513, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:16.889+00', '{"cached":null,"ignore_cache":false}'), +(31514, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:18.713+00', '{"cached":null,"ignore_cache":false}'), +(31515, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:18.798+00', '{"cached":null,"ignore_cache":false}'), +(31516, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.684+00', '{"cached":null,"ignore_cache":false}'), +(31517, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.701+00', '{"cached":null,"ignore_cache":false}'), +(31518, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.706+00', '{"cached":null,"ignore_cache":false}'), +(31519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.733+00', '{"cached":null,"ignore_cache":false}'), +(31520, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:28.736+00', '{"cached":null,"ignore_cache":false}'), +(31521, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.392+00', '{"cached":null,"ignore_cache":false}'), +(31522, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.447+00', '{"cached":null,"ignore_cache":false}'), +(31523, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.836+00', '{"cached":null,"ignore_cache":false}'), +(31524, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.878+00', '{"cached":null,"ignore_cache":false}'), +(31525, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.931+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31526, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.937+00', '{"cached":null,"ignore_cache":false}'), +(31527, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.944+00', '{"cached":null,"ignore_cache":false}'), +(31528, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.946+00', '{"cached":null,"ignore_cache":false}'), +(31529, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.97+00', '{"cached":null,"ignore_cache":false}'), +(31530, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:29.989+00', '{"cached":null,"ignore_cache":false}'), +(31531, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:30.009+00', '{"cached":null,"ignore_cache":false}'), +(31532, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.387+00', '{"cached":null,"ignore_cache":false}'), +(31533, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.447+00', '{"cached":null,"ignore_cache":false}'), +(31534, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.455+00', '{"cached":null,"ignore_cache":false}'), +(31535, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.457+00', '{"cached":null,"ignore_cache":false}'), +(31536, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:54:59.468+00', '{"cached":null,"ignore_cache":false}'), +(31537, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:00.118+00', '{"cached":null,"ignore_cache":false}'), +(31538, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:00.182+00', '{"cached":null,"ignore_cache":false}'), +(31539, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.286+00', '{"cached":null,"ignore_cache":false}'), +(31540, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.304+00', '{"cached":null,"ignore_cache":false}'), +(31541, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.365+00', '{"cached":null,"ignore_cache":false}'), +(31542, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.424+00', '{"cached":null,"ignore_cache":false}'), +(31543, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.437+00', '{"cached":null,"ignore_cache":false}'), +(31544, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.462+00', '{"cached":null,"ignore_cache":false}'), +(31545, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.471+00', '{"cached":null,"ignore_cache":false}'), +(31546, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.479+00', '{"cached":null,"ignore_cache":false}'), +(31547, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:01.496+00', '{"cached":null,"ignore_cache":false}'), +(31548, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.615+00', '{"cached":null,"ignore_cache":false}'), +(31549, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.626+00', '{"cached":null,"ignore_cache":false}'), +(31550, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.649+00', '{"cached":null,"ignore_cache":false}'), +(31551, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.652+00', '{"cached":null,"ignore_cache":false}'), +(31552, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:30.662+00', '{"cached":null,"ignore_cache":false}'), +(31553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.512+00', '{"cached":null,"ignore_cache":false}'), +(31554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.599+00', '{"cached":null,"ignore_cache":false}'), +(31555, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.61+00', '{"cached":null,"ignore_cache":false}'), +(31556, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.624+00', '{"cached":null,"ignore_cache":false}'), +(31557, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.671+00', '{"cached":null,"ignore_cache":false}'), +(31558, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.678+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31559, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.713+00', '{"cached":null,"ignore_cache":false}'), +(31560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.746+00', '{"cached":null,"ignore_cache":false}'), +(31561, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.766+00', '{"cached":null,"ignore_cache":false}'), +(31562, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.768+00', '{"cached":null,"ignore_cache":false}'), +(31563, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:55:31.821+00', '{"cached":null,"ignore_cache":false}'), +(31564, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.862+00', '{"cached":null,"ignore_cache":false}'), +(31565, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.874+00', '{"cached":null,"ignore_cache":false}'), +(31566, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.893+00', '{"cached":null,"ignore_cache":false}'), +(31567, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.894+00', '{"cached":null,"ignore_cache":false}'), +(31568, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:01.915+00', '{"cached":null,"ignore_cache":false}'), +(31569, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:02.948+00', '{"cached":null,"ignore_cache":false}'), +(31570, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.549+00', '{"cached":null,"ignore_cache":false}'), +(31571, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.642+00', '{"cached":null,"ignore_cache":false}'), +(31572, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.642+00', '{"cached":null,"ignore_cache":false}'), +(31573, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.643+00', '{"cached":null,"ignore_cache":false}'), +(31574, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.662+00', '{"cached":null,"ignore_cache":false}'), +(31575, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.681+00', '{"cached":null,"ignore_cache":false}'), +(31576, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.781+00', '{"cached":null,"ignore_cache":false}'), +(31577, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.795+00', '{"cached":null,"ignore_cache":false}'), +(31578, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.816+00', '{"cached":null,"ignore_cache":false}'), +(31579, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:04.839+00', '{"cached":null,"ignore_cache":false}'), +(31580, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.177+00', '{"cached":null,"ignore_cache":false}'), +(31581, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.189+00', '{"cached":null,"ignore_cache":false}'), +(31582, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.196+00', '{"cached":null,"ignore_cache":false}'), +(31583, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.2+00', '{"cached":null,"ignore_cache":false}'), +(31584, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:32.226+00', '{"cached":null,"ignore_cache":false}'), +(31585, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.153+00', '{"cached":null,"ignore_cache":false}'), +(31586, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.176+00', '{"cached":null,"ignore_cache":false}'), +(31587, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.768+00', '{"cached":null,"ignore_cache":false}'), +(31588, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.834+00', '{"cached":null,"ignore_cache":false}'), +(31589, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.861+00', '{"cached":null,"ignore_cache":false}'), +(31590, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.866+00', '{"cached":null,"ignore_cache":false}'), +(31591, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.952+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31592, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.965+00', '{"cached":null,"ignore_cache":false}'), +(31593, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:33.975+00', '{"cached":null,"ignore_cache":false}'), +(31594, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:34.039+00', '{"cached":null,"ignore_cache":false}'), +(31595, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:56:34.08+00', '{"cached":null,"ignore_cache":false}'), +(31596, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.544+00', '{"cached":null,"ignore_cache":false}'), +(31597, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.653+00', '{"cached":null,"ignore_cache":false}'), +(31598, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.672+00', '{"cached":null,"ignore_cache":false}'), +(31599, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.694+00', '{"cached":null,"ignore_cache":false}'), +(31600, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:02.729+00', '{"cached":null,"ignore_cache":false}'), +(31601, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.706+00', '{"cached":null,"ignore_cache":false}'), +(31602, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.781+00', '{"cached":null,"ignore_cache":false}'), +(31603, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.844+00', '{"cached":null,"ignore_cache":false}'), +(31604, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.881+00', '{"cached":null,"ignore_cache":false}'), +(31605, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.883+00', '{"cached":null,"ignore_cache":false}'), +(31606, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.886+00', '{"cached":null,"ignore_cache":false}'), +(31607, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.902+00', '{"cached":null,"ignore_cache":false}'), +(31608, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.913+00', '{"cached":null,"ignore_cache":false}'), +(31609, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.913+00', '{"cached":null,"ignore_cache":false}'), +(31610, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.919+00', '{"cached":null,"ignore_cache":false}'), +(31611, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:03.938+00', '{"cached":null,"ignore_cache":false}'), +(31612, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.681+00', '{"cached":null,"ignore_cache":false}'), +(31613, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.708+00', '{"cached":null,"ignore_cache":false}'), +(31614, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.719+00', '{"cached":null,"ignore_cache":false}'), +(31615, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.793+00', '{"cached":null,"ignore_cache":false}'), +(31616, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:32.802+00', '{"cached":null,"ignore_cache":false}'), +(31617, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.345+00', '{"cached":null,"ignore_cache":false}'), +(31618, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.374+00', '{"cached":null,"ignore_cache":false}'), +(31619, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.463+00', '{"cached":null,"ignore_cache":false}'), +(31620, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.47+00', '{"cached":null,"ignore_cache":false}'), +(31621, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.592+00', '{"cached":null,"ignore_cache":false}'), +(31622, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.597+00', '{"cached":null,"ignore_cache":false}'), +(31623, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.606+00', '{"cached":null,"ignore_cache":false}'), +(31624, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.645+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31625, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.659+00', '{"cached":null,"ignore_cache":false}'), +(31626, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.686+00', '{"cached":null,"ignore_cache":false}'), +(31627, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:57:34.817+00', '{"cached":null,"ignore_cache":false}'), +(31628, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.523+00', '{"cached":null,"ignore_cache":false}'), +(31629, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.558+00', '{"cached":null,"ignore_cache":false}'), +(31630, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.595+00', '{"cached":null,"ignore_cache":false}'), +(31631, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.626+00', '{"cached":null,"ignore_cache":false}'), +(31632, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:02.648+00', '{"cached":null,"ignore_cache":false}'), +(31633, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.312+00', '{"cached":null,"ignore_cache":false}'), +(31634, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.57+00', '{"cached":null,"ignore_cache":false}'), +(31635, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.808+00', '{"cached":null,"ignore_cache":false}'), +(31636, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.89+00', '{"cached":null,"ignore_cache":false}'), +(31637, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.901+00', '{"cached":null,"ignore_cache":false}'), +(31638, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.906+00', '{"cached":null,"ignore_cache":false}'), +(31639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.943+00', '{"cached":null,"ignore_cache":false}'), +(31640, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.962+00', '{"cached":null,"ignore_cache":false}'), +(31641, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.975+00', '{"cached":null,"ignore_cache":false}'), +(31642, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:03.995+00', '{"cached":null,"ignore_cache":false}'), +(31643, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:04.016+00', '{"cached":null,"ignore_cache":false}'), +(31644, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:05.665+00', '{"cached":null,"ignore_cache":false}'), +(31645, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.199+00', '{"cached":null,"ignore_cache":false}'), +(31646, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.648+00', '{"cached":null,"ignore_cache":false}'), +(31647, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:06.958+00', '{"cached":null,"ignore_cache":false}'), +(31648, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:07.058+00', '{"cached":null,"ignore_cache":false}'), +(31649, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:07.139+00', '{"cached":null,"ignore_cache":false}'), +(31650, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:07.159+00', '{"cached":null,"ignore_cache":false}'), +(31651, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:08.152+00', '{"cached":null,"ignore_cache":false}'), +(31652, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:08.73+00', '{"cached":null,"ignore_cache":false}'), +(31653, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.002+00', '{"cached":null,"ignore_cache":false}'), +(31654, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:09.724+00', '{"cached":null,"ignore_cache":false}'), +(31655, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.152+00', '{"cached":null,"ignore_cache":false}'), +(31656, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.315+00', '{"cached":null,"ignore_cache":false}'), +(31657, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.318+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31658, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.334+00', '{"cached":null,"ignore_cache":false}'), +(31659, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.432+00', '{"cached":null,"ignore_cache":false}'), +(31660, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.453+00', '{"cached":null,"ignore_cache":false}'), +(31661, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.64+00', '{"cached":null,"ignore_cache":false}'), +(31662, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.669+00', '{"cached":null,"ignore_cache":false}'), +(31663, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:10.688+00', '{"cached":null,"ignore_cache":false}'), +(31664, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:32.895+00', '{"cached":null,"ignore_cache":false}'), +(31665, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.383+00', '{"cached":null,"ignore_cache":false}'), +(31666, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.491+00', '{"cached":null,"ignore_cache":false}'), +(31667, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.569+00', '{"cached":null,"ignore_cache":false}'), +(31668, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.738+00', '{"cached":null,"ignore_cache":false}'), +(31669, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.768+00', '{"cached":null,"ignore_cache":false}'), +(31670, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.891+00', '{"cached":null,"ignore_cache":false}'), +(31671, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.899+00', '{"cached":null,"ignore_cache":false}'), +(31672, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:33.904+00', '{"cached":null,"ignore_cache":false}'), +(31673, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.06+00', '{"cached":null,"ignore_cache":false}'), +(31674, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.098+00', '{"cached":null,"ignore_cache":false}'), +(31675, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.118+00', '{"cached":null,"ignore_cache":false}'), +(31676, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.4+00', '{"cached":null,"ignore_cache":false}'), +(31677, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.403+00', '{"cached":null,"ignore_cache":false}'), +(31678, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.417+00', '{"cached":null,"ignore_cache":false}'), +(31679, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.434+00', '{"cached":null,"ignore_cache":false}'), +(31680, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.462+00', '{"cached":null,"ignore_cache":false}'), +(31681, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.506+00', '{"cached":null,"ignore_cache":false}'), +(31682, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:34.533+00', '{"cached":null,"ignore_cache":false}'), +(31683, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.327+00', '{"cached":null,"ignore_cache":false}'), +(31684, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.545+00', '{"cached":null,"ignore_cache":false}'), +(31685, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.623+00', '{"cached":null,"ignore_cache":false}'), +(31686, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.628+00', '{"cached":null,"ignore_cache":false}'), +(31687, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.649+00', '{"cached":null,"ignore_cache":false}'), +(31688, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.695+00', '{"cached":null,"ignore_cache":false}'), +(31689, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.788+00', '{"cached":null,"ignore_cache":false}'), +(31690, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.805+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31691, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:35.867+00', '{"cached":null,"ignore_cache":false}'), +(31692, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:36.272+00', '{"cached":null,"ignore_cache":false}'), +(31693, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:36.44+00', '{"cached":null,"ignore_cache":false}'), +(31694, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:36.579+00', '{"cached":null,"ignore_cache":false}'), +(31695, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:58:36.774+00', '{"cached":null,"ignore_cache":false}'), +(31696, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.68+00', '{"cached":null,"ignore_cache":false}'), +(31697, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.726+00', '{"cached":null,"ignore_cache":false}'), +(31698, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.83+00', '{"cached":null,"ignore_cache":false}'), +(31699, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.866+00', '{"cached":null,"ignore_cache":false}'), +(31700, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:02.876+00', '{"cached":null,"ignore_cache":false}'), +(31701, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:04.493+00', '{"cached":null,"ignore_cache":false}'), +(31702, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:04.622+00', '{"cached":null,"ignore_cache":false}'), +(31703, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.883+00', '{"cached":null,"ignore_cache":false}'), +(31704, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.905+00', '{"cached":null,"ignore_cache":false}'), +(31705, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.943+00', '{"cached":null,"ignore_cache":false}'), +(31706, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.978+00', '{"cached":null,"ignore_cache":false}'), +(31707, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:05.984+00', '{"cached":null,"ignore_cache":false}'), +(31708, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:06.007+00', '{"cached":null,"ignore_cache":false}'), +(31709, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:06.056+00', '{"cached":null,"ignore_cache":false}'), +(31710, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:06.121+00', '{"cached":null,"ignore_cache":false}'), +(31711, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:06.128+00', '{"cached":null,"ignore_cache":false}'), +(31712, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:13.785+00', '{"cached":null,"ignore_cache":false}'), +(31713, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.218+00', '{"cached":null,"ignore_cache":false}'), +(31714, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.302+00', '{"cached":null,"ignore_cache":false}'), +(31715, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.37+00', '{"cached":null,"ignore_cache":false}'), +(31716, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.505+00', '{"cached":null,"ignore_cache":false}'), +(31717, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.517+00', '{"cached":null,"ignore_cache":false}'), +(31718, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:14.53+00', '{"cached":null,"ignore_cache":false}'), +(31719, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.115+00', '{"cached":null,"ignore_cache":false}'), +(31720, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.244+00', '{"cached":null,"ignore_cache":false}'), +(31721, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:15.534+00', '{"cached":null,"ignore_cache":false}'), +(31722, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.059+00', '{"cached":null,"ignore_cache":false}'), +(31723, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.111+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31724, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.411+00', '{"cached":null,"ignore_cache":false}'), +(31725, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.442+00', '{"cached":null,"ignore_cache":false}'), +(31726, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.443+00', '{"cached":null,"ignore_cache":false}'), +(31727, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.448+00', '{"cached":null,"ignore_cache":false}'), +(31728, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.495+00', '{"cached":null,"ignore_cache":false}'), +(31729, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.53+00', '{"cached":null,"ignore_cache":false}'), +(31730, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.656+00', '{"cached":null,"ignore_cache":false}'), +(31731, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.788+00', '{"cached":null,"ignore_cache":false}'), +(31732, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.789+00', '{"cached":null,"ignore_cache":false}'), +(31733, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.818+00', '{"cached":null,"ignore_cache":false}'), +(31734, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.886+00', '{"cached":null,"ignore_cache":false}'), +(31735, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:16.918+00', '{"cached":null,"ignore_cache":false}'), +(31736, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:17.291+00', '{"cached":null,"ignore_cache":false}'), +(31737, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 13:59:17.351+00', '{"cached":null,"ignore_cache":false}'), +(31738, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.784+00', '{"cached":null,"ignore_cache":false}'), +(31739, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:16.832+00', '{"cached":null,"ignore_cache":false}'), +(31740, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.236+00', '{"cached":null,"ignore_cache":false}'), +(31741, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:17.631+00', '{"cached":null,"ignore_cache":false}'), +(31742, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.552+00', '{"cached":null,"ignore_cache":false}'), +(31743, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.612+00', '{"cached":null,"ignore_cache":false}'), +(31744, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.747+00', '{"cached":null,"ignore_cache":false}'), +(31745, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.809+00', '{"cached":null,"ignore_cache":false}'), +(31746, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:18.967+00', '{"cached":null,"ignore_cache":false}'), +(31747, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.094+00', '{"cached":null,"ignore_cache":false}'), +(31748, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.365+00', '{"cached":null,"ignore_cache":false}'), +(31749, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.393+00', '{"cached":null,"ignore_cache":false}'), +(31750, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.438+00', '{"cached":null,"ignore_cache":false}'), +(31751, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.506+00', '{"cached":null,"ignore_cache":false}'), +(31752, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.646+00', '{"cached":null,"ignore_cache":false}'), +(31753, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.671+00', '{"cached":null,"ignore_cache":false}'), +(31754, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.802+00', '{"cached":null,"ignore_cache":false}'), +(31755, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.874+00', '{"cached":null,"ignore_cache":false}'), +(31756, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.935+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31757, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:19.967+00', '{"cached":null,"ignore_cache":false}'), +(31758, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.054+00', '{"cached":null,"ignore_cache":false}'), +(31759, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.111+00', '{"cached":null,"ignore_cache":false}'), +(31760, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.155+00', '{"cached":null,"ignore_cache":false}'), +(31761, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.297+00', '{"cached":null,"ignore_cache":false}'), +(31762, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.301+00', '{"cached":null,"ignore_cache":false}'), +(31763, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.408+00', '{"cached":null,"ignore_cache":false}'), +(31764, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.439+00', '{"cached":null,"ignore_cache":false}'), +(31765, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:20.444+00', '{"cached":null,"ignore_cache":false}'), +(31766, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:21.428+00', '{"cached":null,"ignore_cache":false}'), +(31767, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:21.593+00', '{"cached":null,"ignore_cache":false}'), +(31768, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:42.973+00', '{"cached":null,"ignore_cache":false}'), +(31769, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.022+00', '{"cached":null,"ignore_cache":false}'), +(31770, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.163+00', '{"cached":null,"ignore_cache":false}'), +(31771, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.213+00', '{"cached":null,"ignore_cache":false}'), +(31772, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.26+00', '{"cached":null,"ignore_cache":false}'), +(31773, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.261+00', '{"cached":null,"ignore_cache":false}'), +(31774, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.262+00', '{"cached":null,"ignore_cache":false}'), +(31775, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.33+00', '{"cached":null,"ignore_cache":false}'), +(31776, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.353+00', '{"cached":null,"ignore_cache":false}'), +(31777, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.384+00', '{"cached":null,"ignore_cache":false}'), +(31778, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.39+00', '{"cached":null,"ignore_cache":false}'), +(31779, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.4+00', '{"cached":null,"ignore_cache":false}'), +(31780, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.401+00', '{"cached":null,"ignore_cache":false}'), +(31781, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.445+00', '{"cached":null,"ignore_cache":false}'), +(31782, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:43.796+00', '{"cached":null,"ignore_cache":false}'), +(31783, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:00:44.065+00', '{"cached":null,"ignore_cache":false}'), +(31784, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.918+00', '{"cached":null,"ignore_cache":false}'), +(31785, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.958+00', '{"cached":null,"ignore_cache":false}'), +(31786, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:12.985+00', '{"cached":null,"ignore_cache":false}'), +(31787, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.063+00', '{"cached":null,"ignore_cache":false}'), +(31788, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.12+00', '{"cached":null,"ignore_cache":false}'), +(31789, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.198+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31790, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.292+00', '{"cached":null,"ignore_cache":false}'), +(31791, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.431+00', '{"cached":null,"ignore_cache":false}'), +(31792, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.442+00', '{"cached":null,"ignore_cache":false}'), +(31793, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.456+00', '{"cached":null,"ignore_cache":false}'), +(31794, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.477+00', '{"cached":null,"ignore_cache":false}'), +(31795, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.486+00', '{"cached":null,"ignore_cache":false}'), +(31796, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.504+00', '{"cached":null,"ignore_cache":false}'), +(31797, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:13.539+00', '{"cached":null,"ignore_cache":false}'), +(31798, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:14.151+00', '{"cached":null,"ignore_cache":false}'), +(31799, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:14.473+00', '{"cached":null,"ignore_cache":false}'), +(31800, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.668+00', '{"cached":null,"ignore_cache":false}'), +(31801, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.707+00', '{"cached":null,"ignore_cache":false}'), +(31802, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.76+00', '{"cached":null,"ignore_cache":false}'), +(31803, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.904+00', '{"cached":null,"ignore_cache":false}'), +(31804, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.904+00', '{"cached":null,"ignore_cache":false}'), +(31805, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.925+00', '{"cached":null,"ignore_cache":false}'), +(31806, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:42.929+00', '{"cached":null,"ignore_cache":false}'), +(31807, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:43.074+00', '{"cached":null,"ignore_cache":false}'), +(31808, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:43.167+00', '{"cached":null,"ignore_cache":false}'), +(31809, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:43.265+00', '{"cached":null,"ignore_cache":false}'), +(31810, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:43.266+00', '{"cached":null,"ignore_cache":false}'), +(31811, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:43.347+00', '{"cached":null,"ignore_cache":false}'), +(31812, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:43.356+00', '{"cached":null,"ignore_cache":false}'), +(31813, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:43.362+00', '{"cached":null,"ignore_cache":false}'), +(31814, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:44.093+00', '{"cached":null,"ignore_cache":false}'), +(31815, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:01:44.175+00', '{"cached":null,"ignore_cache":false}'), +(31816, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.836+00', '{"cached":null,"ignore_cache":false}'), +(31817, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.924+00', '{"cached":null,"ignore_cache":false}'), +(31818, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.938+00', '{"cached":null,"ignore_cache":false}'), +(31819, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.96+00', '{"cached":null,"ignore_cache":false}'), +(31820, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:12.982+00', '{"cached":null,"ignore_cache":false}'), +(31821, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.007+00', '{"cached":null,"ignore_cache":false}'), +(31822, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.049+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31823, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.066+00', '{"cached":null,"ignore_cache":false}'), +(31824, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.079+00', '{"cached":null,"ignore_cache":false}'), +(31825, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.136+00', '{"cached":null,"ignore_cache":false}'), +(31826, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.166+00', '{"cached":null,"ignore_cache":false}'), +(31827, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.208+00', '{"cached":null,"ignore_cache":false}'), +(31828, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.228+00', '{"cached":null,"ignore_cache":false}'), +(31829, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.257+00', '{"cached":null,"ignore_cache":false}'), +(31830, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.758+00', '{"cached":null,"ignore_cache":false}'), +(31831, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:13.865+00', '{"cached":null,"ignore_cache":false}'), +(31832, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:42.965+00', '{"cached":null,"ignore_cache":false}'), +(31833, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.124+00', '{"cached":null,"ignore_cache":false}'), +(31834, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.147+00', '{"cached":null,"ignore_cache":false}'), +(31835, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.151+00', '{"cached":null,"ignore_cache":false}'), +(31836, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.338+00', '{"cached":null,"ignore_cache":false}'), +(31837, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.354+00', '{"cached":null,"ignore_cache":false}'), +(31838, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.36+00', '{"cached":null,"ignore_cache":false}'), +(31839, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.37+00', '{"cached":null,"ignore_cache":false}'), +(31840, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.371+00', '{"cached":null,"ignore_cache":false}'), +(31841, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.41+00', '{"cached":null,"ignore_cache":false}'), +(31842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.442+00', '{"cached":null,"ignore_cache":false}'), +(31843, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.456+00', '{"cached":null,"ignore_cache":false}'), +(31844, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.458+00', '{"cached":null,"ignore_cache":false}'), +(31845, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:43.567+00', '{"cached":null,"ignore_cache":false}'), +(31846, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:44.05+00', '{"cached":null,"ignore_cache":false}'), +(31847, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:02:44.375+00', '{"cached":null,"ignore_cache":false}'), +(31848, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:12.91+00', '{"cached":null,"ignore_cache":false}'), +(31849, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.135+00', '{"cached":null,"ignore_cache":false}'), +(31850, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.204+00', '{"cached":null,"ignore_cache":false}'), +(31851, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.306+00', '{"cached":null,"ignore_cache":false}'), +(31852, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.306+00', '{"cached":null,"ignore_cache":false}'), +(31853, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.307+00', '{"cached":null,"ignore_cache":false}'), +(31854, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.307+00', '{"cached":null,"ignore_cache":false}'), +(31855, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.339+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31856, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.364+00', '{"cached":null,"ignore_cache":false}'), +(31857, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.366+00', '{"cached":null,"ignore_cache":false}'), +(31858, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.387+00', '{"cached":null,"ignore_cache":false}'), +(31859, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.495+00', '{"cached":null,"ignore_cache":false}'), +(31860, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.591+00', '{"cached":null,"ignore_cache":false}'), +(31861, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:13.7+00', '{"cached":null,"ignore_cache":false}'), +(31862, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:14.282+00', '{"cached":null,"ignore_cache":false}'), +(31863, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:14.434+00', '{"cached":null,"ignore_cache":false}'), +(31864, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.587+00', '{"cached":null,"ignore_cache":false}'), +(31865, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.736+00', '{"cached":null,"ignore_cache":false}'), +(31866, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.766+00', '{"cached":null,"ignore_cache":false}'), +(31867, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.78+00', '{"cached":null,"ignore_cache":false}'), +(31868, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.799+00', '{"cached":null,"ignore_cache":false}'), +(31869, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.828+00', '{"cached":null,"ignore_cache":false}'), +(31870, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.836+00', '{"cached":null,"ignore_cache":false}'), +(31871, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.86+00', '{"cached":null,"ignore_cache":false}'), +(31872, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.865+00', '{"cached":null,"ignore_cache":false}'), +(31873, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.917+00', '{"cached":null,"ignore_cache":false}'), +(31874, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.924+00', '{"cached":null,"ignore_cache":false}'), +(31875, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:42.938+00', '{"cached":null,"ignore_cache":false}'), +(31876, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:43.047+00', '{"cached":null,"ignore_cache":false}'), +(31877, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:43.048+00', '{"cached":null,"ignore_cache":false}'), +(31878, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:43.855+00', '{"cached":null,"ignore_cache":false}'), +(31879, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:03:43.991+00', '{"cached":null,"ignore_cache":false}'), +(31880, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:12.942+00', '{"cached":null,"ignore_cache":false}'), +(31881, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.018+00', '{"cached":null,"ignore_cache":false}'), +(31882, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.08+00', '{"cached":null,"ignore_cache":false}'), +(31883, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.097+00', '{"cached":null,"ignore_cache":false}'), +(31884, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.101+00', '{"cached":null,"ignore_cache":false}'), +(31885, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.27+00', '{"cached":null,"ignore_cache":false}'), +(31886, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.352+00', '{"cached":null,"ignore_cache":false}'), +(31887, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.433+00', '{"cached":null,"ignore_cache":false}'), +(31888, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.444+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31889, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.468+00', '{"cached":null,"ignore_cache":false}'), +(31890, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.493+00', '{"cached":null,"ignore_cache":false}'), +(31891, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.507+00', '{"cached":null,"ignore_cache":false}'), +(31892, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.515+00', '{"cached":null,"ignore_cache":false}'), +(31893, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:13.531+00', '{"cached":null,"ignore_cache":false}'), +(31894, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:14.327+00', '{"cached":null,"ignore_cache":false}'), +(31895, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:14.519+00', '{"cached":null,"ignore_cache":false}'), +(31896, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.052+00', '{"cached":null,"ignore_cache":false}'), +(31897, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.178+00', '{"cached":null,"ignore_cache":false}'), +(31898, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.21+00', '{"cached":null,"ignore_cache":false}'), +(31899, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.285+00', '{"cached":null,"ignore_cache":false}'), +(31900, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.424+00', '{"cached":null,"ignore_cache":false}'), +(31901, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.44+00', '{"cached":null,"ignore_cache":false}'), +(31902, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.462+00', '{"cached":null,"ignore_cache":false}'), +(31903, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.475+00', '{"cached":null,"ignore_cache":false}'), +(31904, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.53+00', '{"cached":null,"ignore_cache":false}'), +(31905, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.533+00', '{"cached":null,"ignore_cache":false}'), +(31906, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.603+00', '{"cached":null,"ignore_cache":false}'), +(31907, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.604+00', '{"cached":null,"ignore_cache":false}'), +(31908, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.636+00', '{"cached":null,"ignore_cache":false}'), +(31909, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:43.655+00', '{"cached":null,"ignore_cache":false}'), +(31910, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:44.595+00', '{"cached":null,"ignore_cache":false}'), +(31911, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:04:44.849+00', '{"cached":null,"ignore_cache":false}'), +(31912, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.649+00', '{"cached":null,"ignore_cache":false}'), +(31913, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.718+00', '{"cached":null,"ignore_cache":false}'), +(31914, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.807+00', '{"cached":null,"ignore_cache":false}'), +(31915, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.861+00', '{"cached":null,"ignore_cache":false}'), +(31916, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.906+00', '{"cached":null,"ignore_cache":false}'), +(31917, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.918+00', '{"cached":null,"ignore_cache":false}'), +(31918, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.918+00', '{"cached":null,"ignore_cache":false}'), +(31919, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.955+00', '{"cached":null,"ignore_cache":false}'), +(31920, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.96+00', '{"cached":null,"ignore_cache":false}'), +(31921, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:12.994+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31922, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:13.045+00', '{"cached":null,"ignore_cache":false}'), +(31923, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:13.052+00', '{"cached":null,"ignore_cache":false}'), +(31924, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:13.074+00', '{"cached":null,"ignore_cache":false}'), +(31925, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:13.111+00', '{"cached":null,"ignore_cache":false}'), +(31926, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:13.559+00', '{"cached":null,"ignore_cache":false}'), +(31927, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:13.576+00', '{"cached":null,"ignore_cache":false}'), +(31928, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.408+00', '{"cached":null,"ignore_cache":false}'), +(31929, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.408+00', '{"cached":null,"ignore_cache":false}'), +(31930, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.467+00', '{"cached":null,"ignore_cache":false}'), +(31931, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.496+00', '{"cached":null,"ignore_cache":false}'), +(31932, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.508+00', '{"cached":null,"ignore_cache":false}'), +(31933, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.517+00', '{"cached":null,"ignore_cache":false}'), +(31934, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:39.578+00', '{"cached":null,"ignore_cache":false}'), +(31935, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.624+00', '{"cached":null,"ignore_cache":false}'), +(31936, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.658+00', '{"cached":null,"ignore_cache":false}'), +(31937, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.762+00', '{"cached":null,"ignore_cache":false}'), +(31938, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.778+00', '{"cached":null,"ignore_cache":false}'), +(31939, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.913+00', '{"cached":null,"ignore_cache":false}'), +(31940, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.925+00', '{"cached":null,"ignore_cache":false}'), +(31941, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.94+00', '{"cached":null,"ignore_cache":false}'), +(31942, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.941+00', '{"cached":null,"ignore_cache":false}'), +(31943, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.95+00', '{"cached":null,"ignore_cache":false}'), +(31944, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.959+00', '{"cached":null,"ignore_cache":false}'), +(31945, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.969+00', '{"cached":null,"ignore_cache":false}'), +(31946, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:42.99+00', '{"cached":null,"ignore_cache":false}'), +(31947, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:43.007+00', '{"cached":null,"ignore_cache":false}'), +(31948, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:43.012+00', '{"cached":null,"ignore_cache":false}'), +(31949, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:43.019+00', '{"cached":null,"ignore_cache":false}'), +(31950, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:05:43.024+00', '{"cached":null,"ignore_cache":false}'), +(31951, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.635+00', '{"cached":null,"ignore_cache":false}'), +(31952, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.927+00', '{"cached":null,"ignore_cache":false}'), +(31953, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.927+00', '{"cached":null,"ignore_cache":false}'), +(31954, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.928+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31955, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.928+00', '{"cached":null,"ignore_cache":false}'), +(31956, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.936+00', '{"cached":null,"ignore_cache":false}'), +(31957, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.939+00', '{"cached":null,"ignore_cache":false}'), +(31958, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:12.992+00', '{"cached":null,"ignore_cache":false}'), +(31959, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.002+00', '{"cached":null,"ignore_cache":false}'), +(31960, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.003+00', '{"cached":null,"ignore_cache":false}'), +(31961, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.026+00', '{"cached":null,"ignore_cache":false}'), +(31962, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.118+00', '{"cached":null,"ignore_cache":false}'), +(31963, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.136+00', '{"cached":null,"ignore_cache":false}'), +(31964, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.186+00', '{"cached":null,"ignore_cache":false}'), +(31965, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.206+00', '{"cached":null,"ignore_cache":false}'), +(31966, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:13.215+00', '{"cached":null,"ignore_cache":false}'), +(31967, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.742+00', '{"cached":null,"ignore_cache":false}'), +(31968, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.803+00', '{"cached":null,"ignore_cache":false}'), +(31969, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.807+00', '{"cached":null,"ignore_cache":false}'), +(31970, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.825+00', '{"cached":null,"ignore_cache":false}'), +(31971, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.849+00', '{"cached":null,"ignore_cache":false}'), +(31972, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:42.864+00', '{"cached":null,"ignore_cache":false}'), +(31973, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.015+00', '{"cached":null,"ignore_cache":false}'), +(31974, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.374+00', '{"cached":null,"ignore_cache":false}'), +(31975, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.418+00', '{"cached":null,"ignore_cache":false}'), +(31976, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.51+00', '{"cached":null,"ignore_cache":false}'), +(31977, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.523+00', '{"cached":null,"ignore_cache":false}'), +(31978, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.542+00', '{"cached":null,"ignore_cache":false}'), +(31979, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.578+00', '{"cached":null,"ignore_cache":false}'), +(31980, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.582+00', '{"cached":null,"ignore_cache":false}'), +(31981, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.615+00', '{"cached":null,"ignore_cache":false}'), +(31982, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:06:43.672+00', '{"cached":null,"ignore_cache":false}'), +(31983, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.815+00', '{"cached":null,"ignore_cache":false}'), +(31984, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.849+00', '{"cached":null,"ignore_cache":false}'), +(31985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.963+00', '{"cached":null,"ignore_cache":false}'), +(31986, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:12.986+00', '{"cached":null,"ignore_cache":false}'), +(31987, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.018+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(31988, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.044+00', '{"cached":null,"ignore_cache":false}'), +(31989, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.097+00', '{"cached":null,"ignore_cache":false}'), +(31990, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.1+00', '{"cached":null,"ignore_cache":false}'), +(31991, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.105+00', '{"cached":null,"ignore_cache":false}'), +(31992, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.113+00', '{"cached":null,"ignore_cache":false}'), +(31993, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.142+00', '{"cached":null,"ignore_cache":false}'), +(31994, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.159+00', '{"cached":null,"ignore_cache":false}'), +(31995, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.179+00', '{"cached":null,"ignore_cache":false}'), +(31996, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.187+00', '{"cached":null,"ignore_cache":false}'), +(31997, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.211+00', '{"cached":null,"ignore_cache":false}'), +(31998, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:13.248+00', '{"cached":null,"ignore_cache":false}'), +(31999, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.252+00', '{"cached":null,"ignore_cache":false}'), +(32000, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.376+00', '{"cached":null,"ignore_cache":false}'), +(32001, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.457+00', '{"cached":null,"ignore_cache":false}'), +(32002, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.506+00', '{"cached":null,"ignore_cache":false}'), +(32003, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.543+00', '{"cached":null,"ignore_cache":false}'), +(32004, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.551+00', '{"cached":null,"ignore_cache":false}'), +(32005, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.583+00', '{"cached":null,"ignore_cache":false}'), +(32006, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.65+00', '{"cached":null,"ignore_cache":false}'), +(32007, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.677+00', '{"cached":null,"ignore_cache":false}'), +(32008, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.678+00', '{"cached":null,"ignore_cache":false}'), +(32009, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.69+00', '{"cached":null,"ignore_cache":false}'), +(32010, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.696+00', '{"cached":null,"ignore_cache":false}'), +(32011, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.72+00', '{"cached":null,"ignore_cache":false}'), +(32012, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.73+00', '{"cached":null,"ignore_cache":false}'), +(32013, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.737+00', '{"cached":null,"ignore_cache":false}'), +(32014, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:07:43.765+00', '{"cached":null,"ignore_cache":false}'), +(32015, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.38+00', '{"cached":null,"ignore_cache":false}'), +(32016, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.413+00', '{"cached":null,"ignore_cache":false}'), +(32017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.438+00', '{"cached":null,"ignore_cache":false}'), +(32018, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.545+00', '{"cached":null,"ignore_cache":false}'), +(32019, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.622+00', '{"cached":null,"ignore_cache":false}'), +(32020, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.643+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32021, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.663+00', '{"cached":null,"ignore_cache":false}'), +(32022, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.672+00', '{"cached":null,"ignore_cache":false}'), +(32023, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.687+00', '{"cached":null,"ignore_cache":false}'), +(32024, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.702+00', '{"cached":null,"ignore_cache":false}'), +(32025, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.721+00', '{"cached":null,"ignore_cache":false}'), +(32026, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.731+00', '{"cached":null,"ignore_cache":false}'), +(32027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.739+00', '{"cached":null,"ignore_cache":false}'), +(32028, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.85+00', '{"cached":null,"ignore_cache":false}'), +(32029, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.859+00', '{"cached":null,"ignore_cache":false}'), +(32030, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:13.876+00', '{"cached":null,"ignore_cache":false}'), +(32031, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.78+00', '{"cached":null,"ignore_cache":false}'), +(32032, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.867+00', '{"cached":null,"ignore_cache":false}'), +(32033, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.886+00', '{"cached":null,"ignore_cache":false}'), +(32034, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:42.9+00', '{"cached":null,"ignore_cache":false}'), +(32035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.012+00', '{"cached":null,"ignore_cache":false}'), +(32036, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.044+00', '{"cached":null,"ignore_cache":false}'), +(32037, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.049+00', '{"cached":null,"ignore_cache":false}'), +(32038, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.057+00', '{"cached":null,"ignore_cache":false}'), +(32039, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.065+00', '{"cached":null,"ignore_cache":false}'), +(32040, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.082+00', '{"cached":null,"ignore_cache":false}'), +(32041, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.132+00', '{"cached":null,"ignore_cache":false}'), +(32042, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.176+00', '{"cached":null,"ignore_cache":false}'), +(32043, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.197+00', '{"cached":null,"ignore_cache":false}'), +(32044, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.21+00', '{"cached":null,"ignore_cache":false}'), +(32045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.235+00', '{"cached":null,"ignore_cache":false}'), +(32046, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:08:43.265+00', '{"cached":null,"ignore_cache":false}'), +(32047, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.731+00', '{"cached":null,"ignore_cache":false}'), +(32048, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.798+00', '{"cached":null,"ignore_cache":false}'), +(32049, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.812+00', '{"cached":null,"ignore_cache":false}'), +(32050, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.916+00', '{"cached":null,"ignore_cache":false}'), +(32051, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:12.958+00', '{"cached":null,"ignore_cache":false}'), +(32052, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.034+00', '{"cached":null,"ignore_cache":false}'), +(32053, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.07+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32054, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.097+00', '{"cached":null,"ignore_cache":false}'), +(32055, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.137+00', '{"cached":null,"ignore_cache":false}'), +(32056, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.139+00', '{"cached":null,"ignore_cache":false}'), +(32057, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.174+00', '{"cached":null,"ignore_cache":false}'), +(32058, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.219+00', '{"cached":null,"ignore_cache":false}'), +(32059, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.229+00', '{"cached":null,"ignore_cache":false}'), +(32060, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.242+00', '{"cached":null,"ignore_cache":false}'), +(32061, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.252+00', '{"cached":null,"ignore_cache":false}'), +(32062, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:13.34+00', '{"cached":null,"ignore_cache":false}'), +(32063, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.004+00', '{"cached":null,"ignore_cache":false}'), +(32064, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.03+00', '{"cached":null,"ignore_cache":false}'), +(32065, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.073+00', '{"cached":null,"ignore_cache":false}'), +(32066, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.102+00', '{"cached":null,"ignore_cache":false}'), +(32067, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.155+00', '{"cached":null,"ignore_cache":false}'), +(32068, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.291+00', '{"cached":null,"ignore_cache":false}'), +(32069, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.337+00', '{"cached":null,"ignore_cache":false}'), +(32070, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.367+00', '{"cached":null,"ignore_cache":false}'), +(32071, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.381+00', '{"cached":null,"ignore_cache":false}'), +(32072, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.455+00', '{"cached":null,"ignore_cache":false}'), +(32073, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.551+00', '{"cached":null,"ignore_cache":false}'), +(32074, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.577+00', '{"cached":null,"ignore_cache":false}'), +(32075, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.612+00', '{"cached":null,"ignore_cache":false}'), +(32076, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.727+00', '{"cached":null,"ignore_cache":false}'), +(32077, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.735+00', '{"cached":null,"ignore_cache":false}'), +(32078, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:09:43.776+00', '{"cached":null,"ignore_cache":false}'), +(32079, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.432+00', '{"cached":null,"ignore_cache":false}'), +(32080, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.441+00', '{"cached":null,"ignore_cache":false}'), +(32081, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.464+00', '{"cached":null,"ignore_cache":false}'), +(32082, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.475+00', '{"cached":null,"ignore_cache":false}'), +(32083, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.526+00', '{"cached":null,"ignore_cache":false}'), +(32084, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.527+00', '{"cached":null,"ignore_cache":false}'), +(32085, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.549+00', '{"cached":null,"ignore_cache":false}'), +(32086, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.551+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32087, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.556+00', '{"cached":null,"ignore_cache":false}'), +(32088, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.563+00', '{"cached":null,"ignore_cache":false}'), +(32089, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.589+00', '{"cached":null,"ignore_cache":false}'), +(32090, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.6+00', '{"cached":null,"ignore_cache":false}'), +(32091, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.604+00', '{"cached":null,"ignore_cache":false}'), +(32092, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.624+00', '{"cached":null,"ignore_cache":false}'), +(32093, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.626+00', '{"cached":null,"ignore_cache":false}'), +(32094, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:13.633+00', '{"cached":null,"ignore_cache":false}'), +(32095, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.646+00', '{"cached":null,"ignore_cache":false}'), +(32096, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.792+00', '{"cached":null,"ignore_cache":false}'), +(32097, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.876+00', '{"cached":null,"ignore_cache":false}'), +(32098, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:42.881+00', '{"cached":null,"ignore_cache":false}'), +(32099, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.028+00', '{"cached":null,"ignore_cache":false}'), +(32100, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.068+00', '{"cached":null,"ignore_cache":false}'), +(32101, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.134+00', '{"cached":null,"ignore_cache":false}'), +(32102, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.139+00', '{"cached":null,"ignore_cache":false}'), +(32103, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.142+00', '{"cached":null,"ignore_cache":false}'), +(32104, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.151+00', '{"cached":null,"ignore_cache":false}'), +(32105, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.194+00', '{"cached":null,"ignore_cache":false}'), +(32106, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.208+00', '{"cached":null,"ignore_cache":false}'), +(32107, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.22+00', '{"cached":null,"ignore_cache":false}'), +(32108, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.229+00', '{"cached":null,"ignore_cache":false}'), +(32109, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.232+00', '{"cached":null,"ignore_cache":false}'), +(32110, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:10:43.268+00', '{"cached":null,"ignore_cache":false}'), +(32111, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.916+00', '{"cached":null,"ignore_cache":false}'), +(32112, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:12.928+00', '{"cached":null,"ignore_cache":false}'), +(32113, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.036+00', '{"cached":null,"ignore_cache":false}'), +(32114, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.084+00', '{"cached":null,"ignore_cache":false}'), +(32115, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.116+00', '{"cached":null,"ignore_cache":false}'), +(32116, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.123+00', '{"cached":null,"ignore_cache":false}'), +(32117, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.166+00', '{"cached":null,"ignore_cache":false}'), +(32118, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.193+00', '{"cached":null,"ignore_cache":false}'), +(32119, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.234+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32120, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.24+00', '{"cached":null,"ignore_cache":false}'), +(32121, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.241+00', '{"cached":null,"ignore_cache":false}'), +(32122, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.244+00', '{"cached":null,"ignore_cache":false}'), +(32123, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.258+00', '{"cached":null,"ignore_cache":false}'), +(32124, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.265+00', '{"cached":null,"ignore_cache":false}'), +(32125, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.284+00', '{"cached":null,"ignore_cache":false}'), +(32126, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:13.304+00', '{"cached":null,"ignore_cache":false}'), +(32127, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:42.904+00', '{"cached":null,"ignore_cache":false}'), +(32128, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.091+00', '{"cached":null,"ignore_cache":false}'), +(32129, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.135+00', '{"cached":null,"ignore_cache":false}'), +(32130, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.136+00', '{"cached":null,"ignore_cache":false}'), +(32131, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.15+00', '{"cached":null,"ignore_cache":false}'), +(32132, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.154+00', '{"cached":null,"ignore_cache":false}'), +(32133, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.198+00', '{"cached":null,"ignore_cache":false}'), +(32134, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.205+00', '{"cached":null,"ignore_cache":false}'), +(32135, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.206+00', '{"cached":null,"ignore_cache":false}'), +(32136, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.218+00', '{"cached":null,"ignore_cache":false}'), +(32137, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.251+00', '{"cached":null,"ignore_cache":false}'), +(32138, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.252+00', '{"cached":null,"ignore_cache":false}'), +(32139, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.255+00', '{"cached":null,"ignore_cache":false}'), +(32140, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.262+00', '{"cached":null,"ignore_cache":false}'), +(32141, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.296+00', '{"cached":null,"ignore_cache":false}'), +(32142, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:11:43.306+00', '{"cached":null,"ignore_cache":false}'), +(32143, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.857+00', '{"cached":null,"ignore_cache":false}'), +(32144, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.9+00', '{"cached":null,"ignore_cache":false}'), +(32145, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.911+00', '{"cached":null,"ignore_cache":false}'), +(32146, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.973+00', '{"cached":null,"ignore_cache":false}'), +(32147, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:12.988+00', '{"cached":null,"ignore_cache":false}'), +(32148, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.074+00', '{"cached":null,"ignore_cache":false}'), +(32149, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.122+00', '{"cached":null,"ignore_cache":false}'), +(32150, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.127+00', '{"cached":null,"ignore_cache":false}'), +(32151, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.131+00', '{"cached":null,"ignore_cache":false}'), +(32152, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.131+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32153, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.142+00', '{"cached":null,"ignore_cache":false}'), +(32154, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.157+00', '{"cached":null,"ignore_cache":false}'), +(32155, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.179+00', '{"cached":null,"ignore_cache":false}'), +(32156, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.196+00', '{"cached":null,"ignore_cache":false}'), +(32157, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.204+00', '{"cached":null,"ignore_cache":false}'), +(32158, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:13.222+00', '{"cached":null,"ignore_cache":false}'), +(32159, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.76+00', '{"cached":null,"ignore_cache":false}'), +(32160, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.887+00', '{"cached":null,"ignore_cache":false}'), +(32161, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.904+00', '{"cached":null,"ignore_cache":false}'), +(32162, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.926+00', '{"cached":null,"ignore_cache":false}'), +(32163, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.958+00', '{"cached":null,"ignore_cache":false}'), +(32164, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:42.981+00', '{"cached":null,"ignore_cache":false}'), +(32165, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.039+00', '{"cached":null,"ignore_cache":false}'), +(32166, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.086+00', '{"cached":null,"ignore_cache":false}'), +(32167, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.091+00', '{"cached":null,"ignore_cache":false}'), +(32168, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.102+00', '{"cached":null,"ignore_cache":false}'), +(32169, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.115+00', '{"cached":null,"ignore_cache":false}'), +(32170, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.164+00', '{"cached":null,"ignore_cache":false}'), +(32171, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.17+00', '{"cached":null,"ignore_cache":false}'), +(32172, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.182+00', '{"cached":null,"ignore_cache":false}'), +(32173, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.207+00', '{"cached":null,"ignore_cache":false}'), +(32174, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:12:43.208+00', '{"cached":null,"ignore_cache":false}'), +(32175, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.774+00', '{"cached":null,"ignore_cache":false}'), +(32176, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:12.843+00', '{"cached":null,"ignore_cache":false}'), +(32177, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.04+00', '{"cached":null,"ignore_cache":false}'), +(32178, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.064+00', '{"cached":null,"ignore_cache":false}'), +(32179, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.076+00', '{"cached":null,"ignore_cache":false}'), +(32180, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.095+00', '{"cached":null,"ignore_cache":false}'), +(32181, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.104+00', '{"cached":null,"ignore_cache":false}'), +(32182, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.185+00', '{"cached":null,"ignore_cache":false}'), +(32183, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.208+00', '{"cached":null,"ignore_cache":false}'), +(32184, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.248+00', '{"cached":null,"ignore_cache":false}'), +(32185, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.248+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32186, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.259+00', '{"cached":null,"ignore_cache":false}'), +(32187, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.269+00', '{"cached":null,"ignore_cache":false}'), +(32188, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.287+00', '{"cached":null,"ignore_cache":false}'), +(32189, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.315+00', '{"cached":null,"ignore_cache":false}'), +(32190, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:13.34+00', '{"cached":null,"ignore_cache":false}'), +(32191, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.703+00', '{"cached":null,"ignore_cache":false}'), +(32192, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.897+00', '{"cached":null,"ignore_cache":false}'), +(32193, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.936+00', '{"cached":null,"ignore_cache":false}'), +(32194, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.944+00', '{"cached":null,"ignore_cache":false}'), +(32195, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.96+00', '{"cached":null,"ignore_cache":false}'), +(32196, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:42.968+00', '{"cached":null,"ignore_cache":false}'), +(32197, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.096+00', '{"cached":null,"ignore_cache":false}'), +(32198, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.102+00', '{"cached":null,"ignore_cache":false}'), +(32199, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.182+00', '{"cached":null,"ignore_cache":false}'), +(32200, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.2+00', '{"cached":null,"ignore_cache":false}'), +(32201, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.21+00', '{"cached":null,"ignore_cache":false}'), +(32202, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.223+00', '{"cached":null,"ignore_cache":false}'), +(32203, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.232+00', '{"cached":null,"ignore_cache":false}'), +(32204, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.239+00', '{"cached":null,"ignore_cache":false}'), +(32205, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.251+00', '{"cached":null,"ignore_cache":false}'), +(32206, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:13:43.266+00', '{"cached":null,"ignore_cache":false}'), +(32207, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.782+00', '{"cached":null,"ignore_cache":false}'), +(32208, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.794+00', '{"cached":null,"ignore_cache":false}'), +(32209, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.849+00', '{"cached":null,"ignore_cache":false}'), +(32210, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.85+00', '{"cached":null,"ignore_cache":false}'), +(32211, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.904+00', '{"cached":null,"ignore_cache":false}'), +(32212, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.948+00', '{"cached":null,"ignore_cache":false}'), +(32213, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.95+00', '{"cached":null,"ignore_cache":false}'), +(32214, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.951+00', '{"cached":null,"ignore_cache":false}'), +(32215, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.966+00', '{"cached":null,"ignore_cache":false}'), +(32216, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.979+00', '{"cached":null,"ignore_cache":false}'), +(32217, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:12.998+00', '{"cached":null,"ignore_cache":false}'), +(32218, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:13.036+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32219, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:13.043+00', '{"cached":null,"ignore_cache":false}'), +(32220, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:13.043+00', '{"cached":null,"ignore_cache":false}'), +(32221, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:13.059+00', '{"cached":null,"ignore_cache":false}'), +(32222, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:13.074+00', '{"cached":null,"ignore_cache":false}'), +(32223, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.456+00', '{"cached":null,"ignore_cache":false}'), +(32224, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.66+00', '{"cached":null,"ignore_cache":false}'), +(32225, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.676+00', '{"cached":null,"ignore_cache":false}'), +(32226, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.709+00', '{"cached":null,"ignore_cache":false}'), +(32227, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.738+00', '{"cached":null,"ignore_cache":false}'), +(32228, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.767+00', '{"cached":null,"ignore_cache":false}'), +(32229, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.857+00', '{"cached":null,"ignore_cache":false}'), +(32230, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.875+00', '{"cached":null,"ignore_cache":false}'), +(32231, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.89+00', '{"cached":null,"ignore_cache":false}'), +(32232, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.891+00', '{"cached":null,"ignore_cache":false}'), +(32233, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.949+00', '{"cached":null,"ignore_cache":false}'), +(32234, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.984+00', '{"cached":null,"ignore_cache":false}'), +(32235, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:43.985+00', '{"cached":null,"ignore_cache":false}'), +(32236, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:44.01+00', '{"cached":null,"ignore_cache":false}'), +(32237, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:44.022+00', '{"cached":null,"ignore_cache":false}'), +(32238, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:14:44.046+00', '{"cached":null,"ignore_cache":false}'), +(32239, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.955+00', '{"cached":null,"ignore_cache":false}'), +(32240, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.956+00', '{"cached":null,"ignore_cache":false}'), +(32241, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:13.996+00', '{"cached":null,"ignore_cache":false}'), +(32242, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.048+00', '{"cached":null,"ignore_cache":false}'), +(32243, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.109+00', '{"cached":null,"ignore_cache":false}'), +(32244, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.2+00', '{"cached":null,"ignore_cache":false}'), +(32245, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.245+00', '{"cached":null,"ignore_cache":false}'), +(32246, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.268+00', '{"cached":null,"ignore_cache":false}'), +(32247, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.309+00', '{"cached":null,"ignore_cache":false}'), +(32248, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.383+00', '{"cached":null,"ignore_cache":false}'), +(32249, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.384+00', '{"cached":null,"ignore_cache":false}'), +(32250, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.406+00', '{"cached":null,"ignore_cache":false}'), +(32251, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.419+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32252, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.419+00', '{"cached":null,"ignore_cache":false}'), +(32253, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.42+00', '{"cached":null,"ignore_cache":false}'), +(32254, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:14.435+00', '{"cached":null,"ignore_cache":false}'), +(32255, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.64+00', '{"cached":null,"ignore_cache":false}'), +(32256, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.676+00', '{"cached":null,"ignore_cache":false}'), +(32257, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.704+00', '{"cached":null,"ignore_cache":false}'), +(32258, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.784+00', '{"cached":null,"ignore_cache":false}'), +(32259, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.817+00', '{"cached":null,"ignore_cache":false}'), +(32260, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.825+00', '{"cached":null,"ignore_cache":false}'), +(32261, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.912+00', '{"cached":null,"ignore_cache":false}'), +(32262, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.912+00', '{"cached":null,"ignore_cache":false}'), +(32263, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.957+00', '{"cached":null,"ignore_cache":false}'), +(32264, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.958+00', '{"cached":null,"ignore_cache":false}'), +(32265, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:43.995+00', '{"cached":null,"ignore_cache":false}'), +(32266, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:44.023+00', '{"cached":null,"ignore_cache":false}'), +(32267, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:44.027+00', '{"cached":null,"ignore_cache":false}'), +(32268, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:44.035+00', '{"cached":null,"ignore_cache":false}'), +(32269, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:44.04+00', '{"cached":null,"ignore_cache":false}'), +(32270, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:15:44.042+00', '{"cached":null,"ignore_cache":false}'), +(32271, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.812+00', '{"cached":null,"ignore_cache":false}'), +(32272, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.839+00', '{"cached":null,"ignore_cache":false}'), +(32273, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.86+00', '{"cached":null,"ignore_cache":false}'), +(32274, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:13.973+00', '{"cached":null,"ignore_cache":false}'), +(32275, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.034+00', '{"cached":null,"ignore_cache":false}'), +(32276, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.068+00', '{"cached":null,"ignore_cache":false}'), +(32277, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.111+00', '{"cached":null,"ignore_cache":false}'), +(32278, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.119+00', '{"cached":null,"ignore_cache":false}'), +(32279, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.123+00', '{"cached":null,"ignore_cache":false}'), +(32280, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.124+00', '{"cached":null,"ignore_cache":false}'), +(32281, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.157+00', '{"cached":null,"ignore_cache":false}'), +(32282, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.16+00', '{"cached":null,"ignore_cache":false}'), +(32283, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.169+00', '{"cached":null,"ignore_cache":false}'), +(32284, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.191+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32285, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.209+00', '{"cached":null,"ignore_cache":false}'), +(32286, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:16:14.231+00', '{"cached":null,"ignore_cache":false}'), +(32287, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:17:59.157+00', '{"cached":null,"ignore_cache":false}'), +(32288, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:00.795+00', '{"cached":null,"ignore_cache":false}'), +(32289, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.002+00', '{"cached":null,"ignore_cache":false}'), +(32290, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.031+00', '{"cached":null,"ignore_cache":false}'), +(32291, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.283+00', '{"cached":null,"ignore_cache":false}'), +(32292, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.285+00', '{"cached":null,"ignore_cache":false}'), +(32293, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.296+00', '{"cached":null,"ignore_cache":false}'), +(32294, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.319+00', '{"cached":null,"ignore_cache":false}'), +(32295, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.328+00', '{"cached":null,"ignore_cache":false}'), +(32296, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.369+00', '{"cached":null,"ignore_cache":false}'), +(32297, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.412+00', '{"cached":null,"ignore_cache":false}'), +(32298, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.534+00', '{"cached":null,"ignore_cache":false}'), +(32299, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.566+00', '{"cached":null,"ignore_cache":false}'), +(32300, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:01.603+00', '{"cached":null,"ignore_cache":false}'), +(32301, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:02.142+00', '{"cached":null,"ignore_cache":false}'), +(32302, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:02.189+00', '{"cached":null,"ignore_cache":false}'), +(32303, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:02.227+00', '{"cached":null,"ignore_cache":false}'), +(32304, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:02.371+00', '{"cached":null,"ignore_cache":false}'), +(32305, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:02.811+00', '{"cached":null,"ignore_cache":false}'), +(32306, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:02.961+00', '{"cached":null,"ignore_cache":false}'), +(32307, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.776+00', '{"cached":null,"ignore_cache":false}'), +(32308, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.82+00', '{"cached":null,"ignore_cache":false}'), +(32309, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.871+00', '{"cached":null,"ignore_cache":false}'), +(32310, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.9+00', '{"cached":null,"ignore_cache":false}'), +(32311, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.92+00', '{"cached":null,"ignore_cache":false}'), +(32312, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.965+00', '{"cached":null,"ignore_cache":false}'), +(32313, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:27.968+00', '{"cached":null,"ignore_cache":false}'), +(32314, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.007+00', '{"cached":null,"ignore_cache":false}'), +(32315, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.029+00', '{"cached":null,"ignore_cache":false}'), +(32316, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.029+00', '{"cached":null,"ignore_cache":false}'), +(32317, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.067+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32318, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.095+00', '{"cached":null,"ignore_cache":false}'), +(32319, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.213+00', '{"cached":null,"ignore_cache":false}'), +(32320, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:28.314+00', '{"cached":null,"ignore_cache":false}'), +(32321, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:29.218+00', '{"cached":null,"ignore_cache":false}'), +(32322, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:29.308+00', '{"cached":null,"ignore_cache":false}'), +(32323, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.689+00', '{"cached":null,"ignore_cache":false}'), +(32324, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.887+00', '{"cached":null,"ignore_cache":false}'), +(32325, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.9+00', '{"cached":null,"ignore_cache":false}'), +(32326, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.972+00', '{"cached":null,"ignore_cache":false}'), +(32327, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:57.995+00', '{"cached":null,"ignore_cache":false}'), +(32328, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.072+00', '{"cached":null,"ignore_cache":false}'), +(32329, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.121+00', '{"cached":null,"ignore_cache":false}'), +(32330, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.172+00', '{"cached":null,"ignore_cache":false}'), +(32331, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.199+00', '{"cached":null,"ignore_cache":false}'), +(32332, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.218+00', '{"cached":null,"ignore_cache":false}'), +(32333, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.22+00', '{"cached":null,"ignore_cache":false}'), +(32334, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.385+00', '{"cached":null,"ignore_cache":false}'), +(32335, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.395+00', '{"cached":null,"ignore_cache":false}'), +(32336, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:58.469+00', '{"cached":null,"ignore_cache":false}'), +(32337, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:59.496+00', '{"cached":null,"ignore_cache":false}'), +(32338, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:18:59.501+00', '{"cached":null,"ignore_cache":false}'), +(32339, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.731+00', '{"cached":null,"ignore_cache":false}'), +(32340, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.843+00', '{"cached":null,"ignore_cache":false}'), +(32341, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.878+00', '{"cached":null,"ignore_cache":false}'), +(32342, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.899+00', '{"cached":null,"ignore_cache":false}'), +(32343, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:27.914+00', '{"cached":null,"ignore_cache":false}'), +(32344, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.488+00', '{"cached":null,"ignore_cache":false}'), +(32345, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.517+00', '{"cached":null,"ignore_cache":false}'), +(32346, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:28.978+00', '{"cached":null,"ignore_cache":false}'), +(32347, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.027+00', '{"cached":null,"ignore_cache":false}'), +(32348, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.067+00', '{"cached":null,"ignore_cache":false}'), +(32349, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.083+00', '{"cached":null,"ignore_cache":false}'), +(32350, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.155+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32351, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.16+00', '{"cached":null,"ignore_cache":false}'), +(32352, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.173+00', '{"cached":null,"ignore_cache":false}'), +(32353, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.179+00', '{"cached":null,"ignore_cache":false}'), +(32354, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:29.21+00', '{"cached":null,"ignore_cache":false}'), +(32355, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.033+00', '{"cached":null,"ignore_cache":false}'), +(32356, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.068+00', '{"cached":null,"ignore_cache":false}'), +(32357, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.183+00', '{"cached":null,"ignore_cache":false}'), +(32358, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.331+00', '{"cached":null,"ignore_cache":false}'), +(32359, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.337+00', '{"cached":null,"ignore_cache":false}'), +(32360, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.406+00', '{"cached":null,"ignore_cache":false}'), +(32361, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.42+00', '{"cached":null,"ignore_cache":false}'), +(32362, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.509+00', '{"cached":null,"ignore_cache":false}'), +(32363, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.587+00', '{"cached":null,"ignore_cache":false}'), +(32364, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.634+00', '{"cached":null,"ignore_cache":false}'), +(32365, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.652+00', '{"cached":null,"ignore_cache":false}'), +(32366, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.69+00', '{"cached":null,"ignore_cache":false}'), +(32367, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.729+00', '{"cached":null,"ignore_cache":false}'), +(32368, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:58.754+00', '{"cached":null,"ignore_cache":false}'), +(32369, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:59.385+00', '{"cached":null,"ignore_cache":false}'), +(32370, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:19:59.484+00', '{"cached":null,"ignore_cache":false}'), +(32371, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.561+00', '{"cached":null,"ignore_cache":false}'), +(32372, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.566+00', '{"cached":null,"ignore_cache":false}'), +(32373, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.621+00', '{"cached":null,"ignore_cache":false}'), +(32374, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.718+00', '{"cached":null,"ignore_cache":false}'), +(32375, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.74+00', '{"cached":null,"ignore_cache":false}'), +(32376, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.777+00', '{"cached":null,"ignore_cache":false}'), +(32377, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.853+00', '{"cached":null,"ignore_cache":false}'), +(32378, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.859+00', '{"cached":null,"ignore_cache":false}'), +(32379, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.868+00', '{"cached":null,"ignore_cache":false}'), +(32380, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.88+00', '{"cached":null,"ignore_cache":false}'), +(32381, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.891+00', '{"cached":null,"ignore_cache":false}'), +(32382, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.9+00', '{"cached":null,"ignore_cache":false}'), +(32383, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.903+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32384, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:27.936+00', '{"cached":null,"ignore_cache":false}'), +(32385, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:28.654+00', '{"cached":null,"ignore_cache":false}'), +(32386, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:28.718+00', '{"cached":null,"ignore_cache":false}'), +(32387, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.745+00', '{"cached":null,"ignore_cache":false}'), +(32388, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.773+00', '{"cached":null,"ignore_cache":false}'), +(32389, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.864+00', '{"cached":null,"ignore_cache":false}'), +(32390, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.899+00', '{"cached":null,"ignore_cache":false}'), +(32391, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.919+00', '{"cached":null,"ignore_cache":false}'), +(32392, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.937+00', '{"cached":null,"ignore_cache":false}'), +(32393, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.953+00', '{"cached":null,"ignore_cache":false}'), +(32394, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:57.958+00', '{"cached":null,"ignore_cache":false}'), +(32395, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:58.136+00', '{"cached":null,"ignore_cache":false}'), +(32396, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:58.162+00', '{"cached":null,"ignore_cache":false}'), +(32397, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:58.173+00', '{"cached":null,"ignore_cache":false}'), +(32398, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:58.186+00', '{"cached":null,"ignore_cache":false}'), +(32399, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:58.352+00', '{"cached":null,"ignore_cache":false}'), +(32400, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:58.394+00', '{"cached":null,"ignore_cache":false}'), +(32401, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:59.19+00', '{"cached":null,"ignore_cache":false}'), +(32402, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:20:59.241+00', '{"cached":null,"ignore_cache":false}'), +(32403, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.098+00', '{"cached":null,"ignore_cache":false}'), +(32404, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.254+00', '{"cached":null,"ignore_cache":false}'), +(32405, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.615+00', '{"cached":null,"ignore_cache":false}'), +(32406, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.754+00', '{"cached":null,"ignore_cache":false}'), +(32407, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.787+00', '{"cached":null,"ignore_cache":false}'), +(32408, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.855+00', '{"cached":null,"ignore_cache":false}'), +(32409, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.919+00', '{"cached":null,"ignore_cache":false}'), +(32410, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.932+00', '{"cached":null,"ignore_cache":false}'), +(32411, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.937+00', '{"cached":null,"ignore_cache":false}'), +(32412, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.94+00', '{"cached":null,"ignore_cache":false}'), +(32413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:28.988+00', '{"cached":null,"ignore_cache":false}'), +(32414, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:29.006+00', '{"cached":null,"ignore_cache":false}'), +(32415, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:29.034+00', '{"cached":null,"ignore_cache":false}'), +(32416, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:29.048+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32417, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:29.535+00', '{"cached":null,"ignore_cache":false}'), +(32418, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:29.708+00', '{"cached":null,"ignore_cache":false}'), +(32419, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.526+00', '{"cached":null,"ignore_cache":false}'), +(32420, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.612+00', '{"cached":null,"ignore_cache":false}'), +(32421, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.629+00', '{"cached":null,"ignore_cache":false}'), +(32422, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.715+00', '{"cached":null,"ignore_cache":false}'), +(32423, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.781+00', '{"cached":null,"ignore_cache":false}'), +(32424, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.843+00', '{"cached":null,"ignore_cache":false}'), +(32425, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.927+00', '{"cached":null,"ignore_cache":false}'), +(32426, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:57.953+00', '{"cached":null,"ignore_cache":false}'), +(32427, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.004+00', '{"cached":null,"ignore_cache":false}'), +(32428, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.033+00', '{"cached":null,"ignore_cache":false}'), +(32429, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.036+00', '{"cached":null,"ignore_cache":false}'), +(32430, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.042+00', '{"cached":null,"ignore_cache":false}'), +(32431, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.043+00', '{"cached":null,"ignore_cache":false}'), +(32432, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.043+00', '{"cached":null,"ignore_cache":false}'), +(32433, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.516+00', '{"cached":null,"ignore_cache":false}'), +(32434, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:21:58.612+00', '{"cached":null,"ignore_cache":false}'), +(32435, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.283+00', '{"cached":null,"ignore_cache":false}'), +(32436, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.468+00', '{"cached":null,"ignore_cache":false}'), +(32437, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.481+00', '{"cached":null,"ignore_cache":false}'), +(32438, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.498+00', '{"cached":null,"ignore_cache":false}'), +(32439, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.505+00', '{"cached":null,"ignore_cache":false}'), +(32440, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.532+00', '{"cached":null,"ignore_cache":false}'), +(32441, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.544+00', '{"cached":null,"ignore_cache":false}'), +(32442, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.563+00', '{"cached":null,"ignore_cache":false}'), +(32443, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.599+00', '{"cached":null,"ignore_cache":false}'), +(32444, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.6+00', '{"cached":null,"ignore_cache":false}'), +(32445, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.607+00', '{"cached":null,"ignore_cache":false}'), +(32446, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.631+00', '{"cached":null,"ignore_cache":false}'), +(32447, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.647+00', '{"cached":null,"ignore_cache":false}'), +(32448, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:27.652+00', '{"cached":null,"ignore_cache":false}'), +(32449, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:28.294+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32450, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:22:28.38+00', '{"cached":null,"ignore_cache":false}'), +(32451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.287+00', '{"cached":null,"ignore_cache":false}'), +(32452, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.328+00', '{"cached":null,"ignore_cache":false}'), +(32453, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.35+00', '{"cached":null,"ignore_cache":false}'), +(32454, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.359+00', '{"cached":null,"ignore_cache":false}'), +(32455, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.412+00', '{"cached":null,"ignore_cache":false}'), +(32456, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.455+00', '{"cached":null,"ignore_cache":false}'), +(32457, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.494+00', '{"cached":null,"ignore_cache":false}'), +(32458, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.537+00', '{"cached":null,"ignore_cache":false}'), +(32459, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.547+00', '{"cached":null,"ignore_cache":false}'), +(32460, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.574+00', '{"cached":null,"ignore_cache":false}'), +(32461, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.595+00', '{"cached":null,"ignore_cache":false}'), +(32462, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.6+00', '{"cached":null,"ignore_cache":false}'), +(32463, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.626+00', '{"cached":null,"ignore_cache":false}'), +(32464, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:03.634+00', '{"cached":null,"ignore_cache":false}'), +(32465, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:04.056+00', '{"cached":null,"ignore_cache":false}'), +(32466, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:04.097+00', '{"cached":null,"ignore_cache":false}'), +(32467, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.768+00', '{"cached":null,"ignore_cache":false}'), +(32468, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.841+00', '{"cached":null,"ignore_cache":false}'), +(32469, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.85+00', '{"cached":null,"ignore_cache":false}'), +(32470, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:55.949+00', '{"cached":null,"ignore_cache":false}'), +(32471, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.026+00', '{"cached":null,"ignore_cache":false}'), +(32472, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.21+00', '{"cached":null,"ignore_cache":false}'), +(32473, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.218+00', '{"cached":null,"ignore_cache":false}'), +(32474, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.244+00', '{"cached":null,"ignore_cache":false}'), +(32475, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.294+00', '{"cached":null,"ignore_cache":false}'), +(32476, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.396+00', '{"cached":null,"ignore_cache":false}'), +(32477, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.398+00', '{"cached":null,"ignore_cache":false}'), +(32478, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.402+00', '{"cached":null,"ignore_cache":false}'), +(32479, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.409+00', '{"cached":null,"ignore_cache":false}'), +(32480, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:56.431+00', '{"cached":null,"ignore_cache":false}'), +(32481, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:57.263+00', '{"cached":null,"ignore_cache":false}'), +(32482, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:23:57.502+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32483, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.413+00', '{"cached":null,"ignore_cache":false}'), +(32484, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.468+00', '{"cached":null,"ignore_cache":false}'), +(32485, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.5+00', '{"cached":null,"ignore_cache":false}'), +(32486, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.506+00', '{"cached":null,"ignore_cache":false}'), +(32487, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.519+00', '{"cached":null,"ignore_cache":false}'), +(32488, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.526+00', '{"cached":null,"ignore_cache":false}'), +(32489, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.542+00', '{"cached":null,"ignore_cache":false}'), +(32490, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.648+00', '{"cached":null,"ignore_cache":false}'), +(32491, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:52.674+00', '{"cached":null,"ignore_cache":false}'), +(32492, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.275+00', '{"cached":null,"ignore_cache":false}'), +(32493, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.335+00', '{"cached":null,"ignore_cache":false}'), +(32494, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.378+00', '{"cached":null,"ignore_cache":false}'), +(32495, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.4+00', '{"cached":null,"ignore_cache":false}'), +(32496, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:53.411+00', '{"cached":null,"ignore_cache":false}'), +(32497, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:54.138+00', '{"cached":null,"ignore_cache":false}'), +(32498, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:24:54.213+00', '{"cached":null,"ignore_cache":false}'), +(32499, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.424+00', '{"cached":null,"ignore_cache":false}'), +(32500, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.522+00', '{"cached":null,"ignore_cache":false}'), +(32501, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.584+00', '{"cached":null,"ignore_cache":false}'), +(32502, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.593+00', '{"cached":null,"ignore_cache":false}'), +(32503, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.612+00', '{"cached":null,"ignore_cache":false}'), +(32504, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.622+00', '{"cached":null,"ignore_cache":false}'), +(32505, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.66+00', '{"cached":null,"ignore_cache":false}'), +(32506, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.661+00', '{"cached":null,"ignore_cache":false}'), +(32507, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:37.684+00', '{"cached":null,"ignore_cache":false}'), +(32508, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.275+00', '{"cached":null,"ignore_cache":false}'), +(32509, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.295+00', '{"cached":null,"ignore_cache":false}'), +(32510, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.322+00', '{"cached":null,"ignore_cache":false}'), +(32511, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.426+00', '{"cached":null,"ignore_cache":false}'), +(32512, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:40.468+00', '{"cached":null,"ignore_cache":false}'), +(32513, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:41.915+00', '{"cached":null,"ignore_cache":false}'), +(32514, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:25:41.938+00', '{"cached":null,"ignore_cache":false}'), +(32515, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.43+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32516, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.444+00', '{"cached":null,"ignore_cache":false}'), +(32517, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.448+00', '{"cached":null,"ignore_cache":false}'), +(32518, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.454+00', '{"cached":null,"ignore_cache":false}'), +(32519, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.46+00', '{"cached":null,"ignore_cache":false}'), +(32520, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.47+00', '{"cached":null,"ignore_cache":false}'), +(32521, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.474+00', '{"cached":null,"ignore_cache":false}'), +(32522, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.491+00', '{"cached":null,"ignore_cache":false}'), +(32523, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:25.495+00', '{"cached":null,"ignore_cache":false}'), +(32524, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.246+00', '{"cached":null,"ignore_cache":false}'), +(32525, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.256+00', '{"cached":null,"ignore_cache":false}'), +(32526, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.264+00', '{"cached":null,"ignore_cache":false}'), +(32527, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.278+00', '{"cached":null,"ignore_cache":false}'), +(32528, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.299+00', '{"cached":null,"ignore_cache":false}'), +(32529, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:29.981+00', '{"cached":null,"ignore_cache":false}'), +(32530, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:26:30.174+00', '{"cached":null,"ignore_cache":false}'), +(32531, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.519+00', '{"cached":null,"ignore_cache":false}'), +(32532, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.547+00', '{"cached":null,"ignore_cache":false}'), +(32533, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.615+00', '{"cached":null,"ignore_cache":false}'), +(32534, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.683+00', '{"cached":null,"ignore_cache":false}'), +(32535, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.692+00', '{"cached":null,"ignore_cache":false}'), +(32536, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.7+00', '{"cached":null,"ignore_cache":false}'), +(32537, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.7+00', '{"cached":null,"ignore_cache":false}'), +(32538, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.744+00', '{"cached":null,"ignore_cache":false}'), +(32539, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:13.775+00', '{"cached":null,"ignore_cache":false}'), +(32540, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.378+00', '{"cached":null,"ignore_cache":false}'), +(32541, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.496+00', '{"cached":null,"ignore_cache":false}'), +(32542, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.584+00', '{"cached":null,"ignore_cache":false}'), +(32543, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.607+00', '{"cached":null,"ignore_cache":false}'), +(32544, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:17.68+00', '{"cached":null,"ignore_cache":false}'), +(32545, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:18.44+00', '{"cached":null,"ignore_cache":false}'), +(32546, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:27:18.689+00', '{"cached":null,"ignore_cache":false}'), +(32547, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.243+00', '{"cached":null,"ignore_cache":false}'), +(32548, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.37+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32549, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.417+00', '{"cached":null,"ignore_cache":false}'), +(32550, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.419+00', '{"cached":null,"ignore_cache":false}'), +(32551, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:58.438+00', '{"cached":null,"ignore_cache":false}'), +(32552, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:59.211+00', '{"cached":null,"ignore_cache":false}'), +(32553, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:34:59.235+00', '{"cached":null,"ignore_cache":false}'), +(32554, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.718+00', '{"cached":null,"ignore_cache":false}'), +(32555, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.759+00', '{"cached":null,"ignore_cache":false}'), +(32556, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.851+00', '{"cached":null,"ignore_cache":false}'), +(32557, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.87+00', '{"cached":null,"ignore_cache":false}'), +(32558, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.874+00', '{"cached":null,"ignore_cache":false}'), +(32559, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.881+00', '{"cached":null,"ignore_cache":false}'), +(32560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.92+00', '{"cached":null,"ignore_cache":false}'), +(32561, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.947+00', '{"cached":null,"ignore_cache":false}'), +(32562, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:38.985+00', '{"cached":null,"ignore_cache":false}'), +(32563, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.384+00', '{"cached":null,"ignore_cache":false}'), +(32564, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.414+00', '{"cached":null,"ignore_cache":false}'), +(32565, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.421+00', '{"cached":null,"ignore_cache":false}'), +(32566, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.447+00', '{"cached":null,"ignore_cache":false}'), +(32567, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:45.482+00', '{"cached":null,"ignore_cache":false}'), +(32568, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:46.42+00', '{"cached":null,"ignore_cache":false}'), +(32569, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:35:46.701+00', '{"cached":null,"ignore_cache":false}'), +(32570, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.567+00', '{"cached":null,"ignore_cache":false}'), +(32571, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.597+00', '{"cached":null,"ignore_cache":false}'), +(32572, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.726+00', '{"cached":null,"ignore_cache":false}'), +(32573, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.739+00', '{"cached":null,"ignore_cache":false}'), +(32574, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.745+00', '{"cached":null,"ignore_cache":false}'), +(32575, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.767+00', '{"cached":null,"ignore_cache":false}'), +(32576, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.796+00', '{"cached":null,"ignore_cache":false}'), +(32577, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.831+00', '{"cached":null,"ignore_cache":false}'), +(32578, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:22.876+00', '{"cached":null,"ignore_cache":false}'), +(32579, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.269+00', '{"cached":null,"ignore_cache":false}'), +(32580, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.28+00', '{"cached":null,"ignore_cache":false}'), +(32581, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.287+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32582, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.311+00', '{"cached":null,"ignore_cache":false}'), +(32583, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:34.313+00', '{"cached":null,"ignore_cache":false}'), +(32584, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:35.099+00', '{"cached":null,"ignore_cache":false}'), +(32585, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:36:35.391+00', '{"cached":null,"ignore_cache":false}'), +(32586, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.457+00', '{"cached":null,"ignore_cache":false}'), +(32587, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.508+00', '{"cached":null,"ignore_cache":false}'), +(32588, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.52+00', '{"cached":null,"ignore_cache":false}'), +(32589, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.53+00', '{"cached":null,"ignore_cache":false}'), +(32590, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.533+00', '{"cached":null,"ignore_cache":false}'), +(32591, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.564+00', '{"cached":null,"ignore_cache":false}'), +(32592, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.6+00', '{"cached":null,"ignore_cache":false}'), +(32593, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.605+00', '{"cached":null,"ignore_cache":false}'), +(32594, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:09.611+00', '{"cached":null,"ignore_cache":false}'), +(32595, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.281+00', '{"cached":null,"ignore_cache":false}'), +(32596, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.478+00', '{"cached":null,"ignore_cache":false}'), +(32597, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.524+00', '{"cached":null,"ignore_cache":false}'), +(32598, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.55+00', '{"cached":null,"ignore_cache":false}'), +(32599, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:23.587+00', '{"cached":null,"ignore_cache":false}'), +(32600, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:24.273+00', '{"cached":null,"ignore_cache":false}'), +(32601, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:37:24.477+00', '{"cached":null,"ignore_cache":false}'), +(32602, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.342+00', '{"cached":null,"ignore_cache":false}'), +(32603, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.383+00', '{"cached":null,"ignore_cache":false}'), +(32604, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.384+00', '{"cached":null,"ignore_cache":false}'), +(32605, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.404+00', '{"cached":null,"ignore_cache":false}'), +(32606, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.44+00', '{"cached":null,"ignore_cache":false}'), +(32607, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.447+00', '{"cached":null,"ignore_cache":false}'), +(32608, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.492+00', '{"cached":null,"ignore_cache":false}'), +(32609, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.51+00', '{"cached":null,"ignore_cache":false}'), +(32610, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:02.574+00', '{"cached":null,"ignore_cache":false}'), +(32611, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.463+00', '{"cached":null,"ignore_cache":false}'), +(32612, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.492+00', '{"cached":null,"ignore_cache":false}'), +(32613, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.557+00', '{"cached":null,"ignore_cache":false}'), +(32614, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.622+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32615, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:15.642+00', '{"cached":null,"ignore_cache":false}'), +(32616, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:16.41+00', '{"cached":null,"ignore_cache":false}'), +(32617, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:16.737+00', '{"cached":null,"ignore_cache":false}'), +(32618, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.623+00', '{"cached":null,"ignore_cache":false}'), +(32619, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.677+00', '{"cached":null,"ignore_cache":false}'), +(32620, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.696+00', '{"cached":null,"ignore_cache":false}'), +(32621, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.8+00', '{"cached":null,"ignore_cache":false}'), +(32622, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.816+00', '{"cached":null,"ignore_cache":false}'), +(32623, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.821+00', '{"cached":null,"ignore_cache":false}'), +(32624, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.827+00', '{"cached":null,"ignore_cache":false}'), +(32625, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.837+00', '{"cached":null,"ignore_cache":false}'), +(32626, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:38:57.864+00', '{"cached":null,"ignore_cache":false}'), +(32627, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.624+00', '{"cached":null,"ignore_cache":false}'), +(32628, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.688+00', '{"cached":null,"ignore_cache":false}'), +(32629, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.744+00', '{"cached":null,"ignore_cache":false}'), +(32630, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.787+00', '{"cached":null,"ignore_cache":false}'), +(32631, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:09.842+00', '{"cached":null,"ignore_cache":false}'), +(32632, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:10.62+00', '{"cached":null,"ignore_cache":false}'), +(32633, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:10.69+00', '{"cached":null,"ignore_cache":false}'), +(32634, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.439+00', '{"cached":null,"ignore_cache":false}'), +(32635, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.471+00', '{"cached":null,"ignore_cache":false}'), +(32636, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.499+00', '{"cached":null,"ignore_cache":false}'), +(32637, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.515+00', '{"cached":null,"ignore_cache":false}'), +(32638, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.543+00', '{"cached":null,"ignore_cache":false}'), +(32639, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.58+00', '{"cached":null,"ignore_cache":false}'), +(32640, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.599+00', '{"cached":null,"ignore_cache":false}'), +(32641, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.602+00', '{"cached":null,"ignore_cache":false}'), +(32642, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 14:39:35.66+00', '{"cached":null,"ignore_cache":false}'), +(32643, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.236+00', '{"cached":null,"ignore_cache":false}'), +(32644, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.238+00', '{"cached":null,"ignore_cache":false}'), +(32645, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.251+00', '{"cached":null,"ignore_cache":false}'), +(32646, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.287+00', '{"cached":null,"ignore_cache":false}'), +(32647, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:02.312+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32648, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:03.408+00', '{"cached":null,"ignore_cache":false}'), +(32649, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 14:40:03.443+00', '{"cached":null,"ignore_cache":false}'), +(32650, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.174+00', '{"cached":null,"ignore_cache":false}'), +(32651, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.21+00', '{"cached":null,"ignore_cache":false}'), +(32652, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.23+00', '{"cached":null,"ignore_cache":false}'), +(32653, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.295+00', '{"cached":null,"ignore_cache":false}'), +(32654, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:36.304+00', '{"cached":null,"ignore_cache":false}'), +(32655, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:37.053+00', '{"cached":null,"ignore_cache":false}'), +(32656, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 15:00:37.218+00', '{"cached":null,"ignore_cache":false}'), +(32657, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.42+00', '{"cached":null,"ignore_cache":false}'), +(32658, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.423+00', '{"cached":null,"ignore_cache":false}'), +(32659, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.516+00', '{"cached":null,"ignore_cache":false}'), +(32660, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.519+00', '{"cached":null,"ignore_cache":false}'), +(32661, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.543+00', '{"cached":null,"ignore_cache":false}'), +(32662, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.55+00', '{"cached":null,"ignore_cache":false}'), +(32663, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.564+00', '{"cached":null,"ignore_cache":false}'), +(32664, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.567+00', '{"cached":null,"ignore_cache":false}'), +(32665, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:01.585+00', '{"cached":null,"ignore_cache":false}'), +(32666, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.179+00', '{"cached":null,"ignore_cache":false}'), +(32667, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.193+00', '{"cached":null,"ignore_cache":false}'), +(32668, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.214+00', '{"cached":null,"ignore_cache":false}'), +(32669, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.228+00', '{"cached":null,"ignore_cache":false}'), +(32670, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:42.233+00', '{"cached":null,"ignore_cache":false}'), +(32671, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:43.053+00', '{"cached":null,"ignore_cache":false}'), +(32672, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:43.075+00', '{"cached":null,"ignore_cache":false}'), +(32673, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.844+00', '{"cached":null,"ignore_cache":false}'), +(32674, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.882+00', '{"cached":null,"ignore_cache":false}'), +(32675, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:47.977+00', '{"cached":null,"ignore_cache":false}'), +(32676, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:48.014+00', '{"cached":null,"ignore_cache":false}'), +(32677, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:48.092+00', '{"cached":null,"ignore_cache":false}'), +(32678, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:48.105+00', '{"cached":null,"ignore_cache":false}'), +(32679, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:48.125+00', '{"cached":null,"ignore_cache":false}'), +(32680, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:48.144+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32681, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 15:01:48.155+00', '{"cached":null,"ignore_cache":false}'), +(32682, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.894+00', '{"cached":null,"ignore_cache":false}'), +(32683, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.923+00', '{"cached":null,"ignore_cache":false}'), +(32684, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.926+00', '{"cached":null,"ignore_cache":false}'), +(32685, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:26.997+00', '{"cached":null,"ignore_cache":false}'), +(32686, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:27.017+00', '{"cached":null,"ignore_cache":false}'), +(32687, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:28.019+00', '{"cached":null,"ignore_cache":false}'), +(32688, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:28.167+00', '{"cached":null,"ignore_cache":false}'), +(32689, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.88+00', '{"cached":null,"ignore_cache":false}'), +(32690, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.894+00', '{"cached":null,"ignore_cache":false}'), +(32691, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.95+00', '{"cached":null,"ignore_cache":false}'), +(32692, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.955+00', '{"cached":null,"ignore_cache":false}'), +(32693, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:31.982+00', '{"cached":null,"ignore_cache":false}'), +(32694, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:32.063+00', '{"cached":null,"ignore_cache":false}'), +(32695, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:32.083+00', '{"cached":null,"ignore_cache":false}'), +(32696, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:32.091+00', '{"cached":null,"ignore_cache":false}'), +(32697, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 15:02:32.102+00', '{"cached":null,"ignore_cache":false}'), +(32698, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.724+00', '{"cached":null,"ignore_cache":false}'), +(32699, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.817+00', '{"cached":null,"ignore_cache":false}'), +(32700, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.857+00', '{"cached":null,"ignore_cache":false}'), +(32701, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.86+00', '{"cached":null,"ignore_cache":false}'), +(32702, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:10.863+00', '{"cached":null,"ignore_cache":false}'), +(32703, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:11.417+00', '{"cached":null,"ignore_cache":false}'), +(32704, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:11.442+00', '{"cached":null,"ignore_cache":false}'), +(32705, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.853+00', '{"cached":null,"ignore_cache":false}'), +(32706, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.91+00', '{"cached":null,"ignore_cache":false}'), +(32707, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.942+00', '{"cached":null,"ignore_cache":false}'), +(32708, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:15.958+00', '{"cached":null,"ignore_cache":false}'), +(32709, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:16.046+00', '{"cached":null,"ignore_cache":false}'), +(32710, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:16.057+00', '{"cached":null,"ignore_cache":false}'), +(32711, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:16.08+00', '{"cached":null,"ignore_cache":false}'), +(32712, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:16.081+00', '{"cached":null,"ignore_cache":false}'), +(32713, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:16.183+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32714, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.264+00', '{"cached":null,"ignore_cache":false}'), +(32715, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.29+00', '{"cached":null,"ignore_cache":false}'), +(32716, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.336+00', '{"cached":null,"ignore_cache":false}'), +(32717, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.435+00', '{"cached":null,"ignore_cache":false}'), +(32718, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:55.444+00', '{"cached":null,"ignore_cache":false}'), +(32719, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:56.909+00', '{"cached":null,"ignore_cache":false}'), +(32720, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.091+00', '{"cached":null,"ignore_cache":false}'), +(32721, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.121+00', '{"cached":null,"ignore_cache":false}'), +(32722, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.166+00', '{"cached":null,"ignore_cache":false}'), +(32723, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.229+00', '{"cached":null,"ignore_cache":false}'), +(32724, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.289+00', '{"cached":null,"ignore_cache":false}'), +(32725, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.383+00', '{"cached":null,"ignore_cache":false}'), +(32726, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.396+00', '{"cached":null,"ignore_cache":false}'), +(32727, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.422+00', '{"cached":null,"ignore_cache":false}'), +(32728, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.497+00', '{"cached":null,"ignore_cache":false}'), +(32729, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 15:03:57.502+00', '{"cached":null,"ignore_cache":false}'), +(32730, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.625+00', '{"cached":null,"ignore_cache":false}'), +(32731, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.648+00', '{"cached":null,"ignore_cache":false}'), +(32732, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.667+00', '{"cached":null,"ignore_cache":false}'), +(32733, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.674+00', '{"cached":null,"ignore_cache":false}'), +(32734, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:37.681+00', '{"cached":null,"ignore_cache":false}'), +(32735, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:38.233+00', '{"cached":null,"ignore_cache":false}'), +(32736, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:38.318+00', '{"cached":null,"ignore_cache":false}'), +(32737, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.503+00', '{"cached":null,"ignore_cache":false}'), +(32738, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.681+00', '{"cached":null,"ignore_cache":false}'), +(32739, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.728+00', '{"cached":null,"ignore_cache":false}'), +(32740, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.801+00', '{"cached":null,"ignore_cache":false}'), +(32741, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.802+00', '{"cached":null,"ignore_cache":false}'), +(32742, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.825+00', '{"cached":null,"ignore_cache":false}'), +(32743, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.841+00', '{"cached":null,"ignore_cache":false}'), +(32744, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.871+00', '{"cached":null,"ignore_cache":false}'), +(32745, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-23 15:04:43.927+00', '{"cached":null,"ignore_cache":false}'), +(32746, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.91+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32747, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:08.934+00', '{"cached":null,"ignore_cache":false}'), +(32748, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:09.173+00', '{"cached":null,"ignore_cache":false}'), +(32749, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:09.207+00', '{"cached":null,"ignore_cache":false}'), +(32750, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:09.426+00', '{"cached":null,"ignore_cache":false}'), +(32751, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:09.446+00', '{"cached":null,"ignore_cache":false}'), +(32752, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.002+00', '{"cached":null,"ignore_cache":false}'), +(32753, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.445+00', '{"cached":null,"ignore_cache":false}'), +(32754, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.46+00', '{"cached":null,"ignore_cache":false}'), +(32755, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.47+00', '{"cached":null,"ignore_cache":false}'), +(32756, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.482+00', '{"cached":null,"ignore_cache":false}'), +(32757, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.483+00', '{"cached":null,"ignore_cache":false}'), +(32758, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.483+00', '{"cached":null,"ignore_cache":false}'), +(32759, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.537+00', '{"cached":null,"ignore_cache":false}'), +(32760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.543+00', '{"cached":null,"ignore_cache":false}'), +(32761, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.544+00', '{"cached":null,"ignore_cache":false}'), +(32762, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.591+00', '{"cached":null,"ignore_cache":false}'), +(32763, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.763+00', '{"cached":null,"ignore_cache":false}'), +(32764, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.804+00', '{"cached":null,"ignore_cache":false}'), +(32765, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.81+00', '{"cached":null,"ignore_cache":false}'), +(32766, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.816+00', '{"cached":null,"ignore_cache":false}'), +(32767, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.826+00', '{"cached":null,"ignore_cache":false}'), +(32768, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.827+00', '{"cached":null,"ignore_cache":false}'), +(32769, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.838+00', '{"cached":null,"ignore_cache":false}'), +(32770, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.864+00', '{"cached":null,"ignore_cache":false}'), +(32771, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:10.864+00', '{"cached":null,"ignore_cache":false}'), +(32772, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:15.286+00', '{"cached":null,"ignore_cache":false}'), +(32773, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:15.319+00', '{"cached":null,"ignore_cache":false}'), +(32774, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:15.336+00', '{"cached":null,"ignore_cache":false}'), +(32775, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 07:57:15.585+00', '{"cached":null,"ignore_cache":false}'), +(32776, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.168+00', '{"cached":null,"ignore_cache":false}'), +(32777, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.368+00', '{"cached":null,"ignore_cache":false}'), +(32778, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.429+00', '{"cached":null,"ignore_cache":false}'), +(32779, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.537+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32780, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:45.669+00', '{"cached":null,"ignore_cache":false}'), +(32781, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.049+00', '{"cached":null,"ignore_cache":false}'), +(32782, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:46.115+00', '{"cached":null,"ignore_cache":false}'), +(32783, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.696+00', '{"cached":null,"ignore_cache":false}'), +(32784, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.738+00', '{"cached":null,"ignore_cache":false}'), +(32785, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:47.773+00', '{"cached":null,"ignore_cache":false}'), +(32786, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.119+00', '{"cached":null,"ignore_cache":false}'), +(32787, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.166+00', '{"cached":null,"ignore_cache":false}'), +(32788, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.458+00', '{"cached":null,"ignore_cache":false}'), +(32789, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.5+00', '{"cached":null,"ignore_cache":false}'), +(32790, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.523+00', '{"cached":null,"ignore_cache":false}'), +(32791, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.618+00', '{"cached":null,"ignore_cache":false}'), +(32792, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.652+00', '{"cached":null,"ignore_cache":false}'), +(32793, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.656+00', '{"cached":null,"ignore_cache":false}'), +(32794, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:48.656+00', '{"cached":null,"ignore_cache":false}'), +(32795, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:49.172+00', '{"cached":null,"ignore_cache":false}'), +(32796, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 07:59:49.234+00', '{"cached":null,"ignore_cache":false}'), +(32797, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:05.697+00', '{"cached":null,"ignore_cache":false}'), +(32798, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:06.433+00', '{"cached":null,"ignore_cache":false}'), +(32799, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:06.789+00', '{"cached":null,"ignore_cache":false}'), +(32800, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.249+00', '{"cached":null,"ignore_cache":false}'), +(32801, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.407+00', '{"cached":null,"ignore_cache":false}'), +(32802, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.56+00', '{"cached":null,"ignore_cache":false}'), +(32803, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.646+00', '{"cached":null,"ignore_cache":false}'), +(32804, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:07.697+00', '{"cached":null,"ignore_cache":false}'), +(32805, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.012+00', '{"cached":null,"ignore_cache":false}'), +(32806, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.182+00', '{"cached":null,"ignore_cache":false}'), +(32807, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.341+00', '{"cached":null,"ignore_cache":false}'), +(32808, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.46+00', '{"cached":null,"ignore_cache":false}'), +(32809, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.79+00', '{"cached":null,"ignore_cache":false}'), +(32810, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.799+00', '{"cached":null,"ignore_cache":false}'), +(32811, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.802+00', '{"cached":null,"ignore_cache":false}'), +(32812, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.818+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32813, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.845+00', '{"cached":null,"ignore_cache":false}'), +(32814, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:08.963+00', '{"cached":null,"ignore_cache":false}'), +(32815, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:09.003+00', '{"cached":null,"ignore_cache":false}'), +(32816, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:09.156+00', '{"cached":null,"ignore_cache":false}'), +(32817, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:09.187+00', '{"cached":null,"ignore_cache":false}'), +(32818, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:09.279+00', '{"cached":null,"ignore_cache":false}'), +(32819, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:00:09.323+00', '{"cached":null,"ignore_cache":false}'), +(32820, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.541+00', '{"cached":null,"ignore_cache":false}'), +(32821, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.559+00', '{"cached":null,"ignore_cache":false}'), +(32822, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.677+00', '{"cached":null,"ignore_cache":false}'), +(32823, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.86+00', '{"cached":null,"ignore_cache":false}'), +(32824, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.915+00', '{"cached":null,"ignore_cache":false}'), +(32825, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.928+00', '{"cached":null,"ignore_cache":false}'), +(32826, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:27.982+00', '{"cached":null,"ignore_cache":false}'), +(32827, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:28.13+00', '{"cached":null,"ignore_cache":false}'), +(32828, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:28.131+00', '{"cached":null,"ignore_cache":false}'), +(32829, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:08:28.299+00', '{"cached":null,"ignore_cache":false}'), +(32830, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.458+00', '{"cached":null,"ignore_cache":false}'), +(32831, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.505+00', '{"cached":null,"ignore_cache":false}'), +(32832, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.553+00', '{"cached":null,"ignore_cache":false}'), +(32833, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.61+00', '{"cached":null,"ignore_cache":false}'), +(32834, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.626+00', '{"cached":null,"ignore_cache":false}'), +(32835, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:43.635+00', '{"cached":null,"ignore_cache":false}'), +(32836, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.387+00', '{"cached":null,"ignore_cache":false}'), +(32837, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.853+00', '{"cached":null,"ignore_cache":false}'), +(32838, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.876+00', '{"cached":null,"ignore_cache":false}'), +(32839, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:44.923+00', '{"cached":null,"ignore_cache":false}'), +(32840, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.103+00', '{"cached":null,"ignore_cache":false}'), +(32841, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.396+00', '{"cached":null,"ignore_cache":false}'), +(32842, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.402+00', '{"cached":null,"ignore_cache":false}'), +(32843, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.813+00', '{"cached":null,"ignore_cache":false}'), +(32844, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.861+00', '{"cached":null,"ignore_cache":false}'), +(32845, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.865+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32846, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:45.88+00', '{"cached":null,"ignore_cache":false}'), +(32847, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:46.094+00', '{"cached":null,"ignore_cache":false}'), +(32848, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:46.142+00', '{"cached":null,"ignore_cache":false}'), +(32849, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:46.191+00', '{"cached":null,"ignore_cache":false}'), +(32850, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:12:46.276+00', '{"cached":null,"ignore_cache":false}'), +(32851, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:37.202+00', '{"cached":null,"ignore_cache":false}'), +(32852, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.105+00', '{"cached":null,"ignore_cache":false}'), +(32853, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.118+00', '{"cached":null,"ignore_cache":false}'), +(32854, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.119+00', '{"cached":null,"ignore_cache":false}'), +(32855, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.134+00', '{"cached":null,"ignore_cache":false}'), +(32856, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.136+00', '{"cached":null,"ignore_cache":false}'), +(32857, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.426+00', '{"cached":null,"ignore_cache":false}'), +(32858, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.458+00', '{"cached":null,"ignore_cache":false}'), +(32859, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.603+00', '{"cached":null,"ignore_cache":false}'), +(32860, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:38.987+00', '{"cached":null,"ignore_cache":false}'), +(32861, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.198+00', '{"cached":null,"ignore_cache":false}'), +(32862, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.23+00', '{"cached":null,"ignore_cache":false}'), +(32863, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.344+00', '{"cached":null,"ignore_cache":false}'), +(32864, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.382+00', '{"cached":null,"ignore_cache":false}'), +(32865, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.406+00', '{"cached":null,"ignore_cache":false}'), +(32866, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.576+00', '{"cached":null,"ignore_cache":false}'), +(32867, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.911+00', '{"cached":null,"ignore_cache":false}'), +(32868, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.912+00', '{"cached":null,"ignore_cache":false}'), +(32869, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.924+00', '{"cached":null,"ignore_cache":false}'), +(32870, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.959+00', '{"cached":null,"ignore_cache":false}'), +(32871, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.959+00', '{"cached":null,"ignore_cache":false}'), +(32872, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:39.978+00', '{"cached":null,"ignore_cache":false}'), +(32873, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:15:40.274+00', '{"cached":null,"ignore_cache":false}'), +(32874, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.897+00', '{"cached":null,"ignore_cache":false}'), +(32875, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.953+00', '{"cached":null,"ignore_cache":false}'), +(32876, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.983+00', '{"cached":null,"ignore_cache":false}'), +(32877, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:49.987+00', '{"cached":null,"ignore_cache":false}'), +(32878, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:50.699+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32879, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.136+00', '{"cached":null,"ignore_cache":false}'), +(32880, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.162+00', '{"cached":null,"ignore_cache":false}'), +(32881, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.218+00', '{"cached":null,"ignore_cache":false}'), +(32882, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.282+00', '{"cached":null,"ignore_cache":false}'), +(32883, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.514+00', '{"cached":null,"ignore_cache":false}'), +(32884, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.546+00', '{"cached":null,"ignore_cache":false}'), +(32885, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.569+00', '{"cached":null,"ignore_cache":false}'), +(32886, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.9+00', '{"cached":null,"ignore_cache":false}'), +(32887, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:51.996+00', '{"cached":null,"ignore_cache":false}'), +(32888, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.055+00', '{"cached":null,"ignore_cache":false}'), +(32889, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.055+00', '{"cached":null,"ignore_cache":false}'), +(32890, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.06+00', '{"cached":null,"ignore_cache":false}'), +(32891, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.103+00', '{"cached":null,"ignore_cache":false}'), +(32892, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.149+00', '{"cached":null,"ignore_cache":false}'), +(32893, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.182+00', '{"cached":null,"ignore_cache":false}'), +(32894, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.187+00', '{"cached":null,"ignore_cache":false}'), +(32895, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.196+00', '{"cached":null,"ignore_cache":false}'), +(32896, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.202+00', '{"cached":null,"ignore_cache":false}'), +(32897, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.238+00', '{"cached":null,"ignore_cache":false}'), +(32898, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.262+00', '{"cached":null,"ignore_cache":false}'), +(32899, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.445+00', '{"cached":null,"ignore_cache":false}'), +(32900, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.555+00', '{"cached":null,"ignore_cache":false}'), +(32901, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:19:52.667+00', '{"cached":null,"ignore_cache":false}'), +(32902, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.207+00', '{"cached":null,"ignore_cache":false}'), +(32903, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.336+00', '{"cached":null,"ignore_cache":false}'), +(32904, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.439+00', '{"cached":null,"ignore_cache":false}'), +(32905, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:08.985+00', '{"cached":null,"ignore_cache":false}'), +(32906, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.226+00', '{"cached":null,"ignore_cache":false}'), +(32907, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.394+00', '{"cached":null,"ignore_cache":false}'), +(32908, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.454+00', '{"cached":null,"ignore_cache":false}'), +(32909, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:09.746+00', '{"cached":null,"ignore_cache":false}'), +(32910, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.902+00', '{"cached":null,"ignore_cache":false}'), +(32911, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.903+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32912, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.904+00', '{"cached":null,"ignore_cache":false}'), +(32913, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.969+00', '{"cached":null,"ignore_cache":false}'), +(32914, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.975+00', '{"cached":null,"ignore_cache":false}'), +(32915, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.976+00', '{"cached":null,"ignore_cache":false}'), +(32916, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.984+00', '{"cached":null,"ignore_cache":false}'), +(32917, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:10.987+00', '{"cached":null,"ignore_cache":false}'), +(32918, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.008+00', '{"cached":null,"ignore_cache":false}'), +(32919, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.01+00', '{"cached":null,"ignore_cache":false}'), +(32920, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.025+00', '{"cached":null,"ignore_cache":false}'), +(32921, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.071+00', '{"cached":null,"ignore_cache":false}'), +(32922, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.277+00', '{"cached":null,"ignore_cache":false}'), +(32923, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.284+00', '{"cached":null,"ignore_cache":false}'), +(32924, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.374+00', '{"cached":null,"ignore_cache":false}'), +(32925, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.403+00', '{"cached":null,"ignore_cache":false}'), +(32926, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.431+00', '{"cached":null,"ignore_cache":false}'), +(32927, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.443+00', '{"cached":null,"ignore_cache":false}'), +(32928, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.561+00', '{"cached":null,"ignore_cache":false}'), +(32929, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.607+00', '{"cached":null,"ignore_cache":false}'), +(32930, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:21:11.839+00', '{"cached":null,"ignore_cache":false}'), +(32931, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.5+00', '{"cached":null,"ignore_cache":false}'), +(32932, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:53.572+00', '{"cached":null,"ignore_cache":false}'), +(32933, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.086+00', '{"cached":null,"ignore_cache":false}'), +(32934, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.253+00', '{"cached":null,"ignore_cache":false}'), +(32935, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.271+00', '{"cached":null,"ignore_cache":false}'), +(32936, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.501+00', '{"cached":null,"ignore_cache":false}'), +(32937, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.762+00', '{"cached":null,"ignore_cache":false}'), +(32938, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.766+00', '{"cached":null,"ignore_cache":false}'), +(32939, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.769+00', '{"cached":null,"ignore_cache":false}'), +(32940, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.781+00', '{"cached":null,"ignore_cache":false}'), +(32941, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.86+00', '{"cached":null,"ignore_cache":false}'), +(32942, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.862+00', '{"cached":null,"ignore_cache":false}'), +(32943, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.866+00', '{"cached":null,"ignore_cache":false}'), +(32944, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.867+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32945, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.867+00', '{"cached":null,"ignore_cache":false}'), +(32946, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.868+00', '{"cached":null,"ignore_cache":false}'), +(32947, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.902+00', '{"cached":null,"ignore_cache":false}'), +(32948, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.967+00', '{"cached":null,"ignore_cache":false}'), +(32949, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:54.982+00', '{"cached":null,"ignore_cache":false}'), +(32950, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:55.096+00', '{"cached":null,"ignore_cache":false}'), +(32951, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:55.36+00', '{"cached":null,"ignore_cache":false}'), +(32952, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:55.582+00', '{"cached":null,"ignore_cache":false}'), +(32953, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:55.805+00', '{"cached":null,"ignore_cache":false}'), +(32954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:56.49+00', '{"cached":null,"ignore_cache":false}'), +(32955, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:56.734+00', '{"cached":null,"ignore_cache":false}'), +(32956, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:57.374+00', '{"cached":null,"ignore_cache":false}'), +(32957, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:28:57.449+00', '{"cached":null,"ignore_cache":false}'), +(32958, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.765+00', '{"cached":null,"ignore_cache":false}'), +(32959, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.922+00', '{"cached":null,"ignore_cache":false}'), +(32960, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:47.982+00', '{"cached":null,"ignore_cache":false}'), +(32961, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.08+00', '{"cached":null,"ignore_cache":false}'), +(32962, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.417+00', '{"cached":null,"ignore_cache":false}'), +(32963, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:48.959+00', '{"cached":null,"ignore_cache":false}'), +(32964, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.313+00', '{"cached":null,"ignore_cache":false}'), +(32965, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.425+00', '{"cached":null,"ignore_cache":false}'), +(32966, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.431+00', '{"cached":null,"ignore_cache":false}'), +(32967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.57+00', '{"cached":null,"ignore_cache":false}'), +(32968, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.611+00', '{"cached":null,"ignore_cache":false}'), +(32969, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.764+00', '{"cached":null,"ignore_cache":false}'), +(32970, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.896+00', '{"cached":null,"ignore_cache":false}'), +(32971, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:49.986+00', '{"cached":null,"ignore_cache":false}'), +(32972, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.041+00', '{"cached":null,"ignore_cache":false}'), +(32973, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.061+00', '{"cached":null,"ignore_cache":false}'), +(32974, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.078+00', '{"cached":null,"ignore_cache":false}'), +(32975, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.262+00', '{"cached":null,"ignore_cache":false}'), +(32976, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.311+00', '{"cached":null,"ignore_cache":false}'), +(32977, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.346+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(32978, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.485+00', '{"cached":null,"ignore_cache":false}'), +(32979, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.518+00', '{"cached":null,"ignore_cache":false}'), +(32980, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.545+00', '{"cached":null,"ignore_cache":false}'), +(32981, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.634+00', '{"cached":null,"ignore_cache":false}'), +(32982, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.635+00', '{"cached":null,"ignore_cache":false}'), +(32983, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.768+00', '{"cached":null,"ignore_cache":false}'), +(32984, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:48:50.951+00', '{"cached":null,"ignore_cache":false}'), +(32985, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.714+00', '{"cached":null,"ignore_cache":false}'), +(32986, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.757+00', '{"cached":null,"ignore_cache":false}'), +(32987, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:25.977+00', '{"cached":null,"ignore_cache":false}'), +(32988, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.012+00', '{"cached":null,"ignore_cache":false}'), +(32989, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.125+00', '{"cached":null,"ignore_cache":false}'), +(32990, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.272+00', '{"cached":null,"ignore_cache":false}'), +(32991, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.323+00', '{"cached":null,"ignore_cache":false}'), +(32992, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.587+00', '{"cached":null,"ignore_cache":false}'), +(32993, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:26.999+00', '{"cached":null,"ignore_cache":false}'), +(32994, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27+00', '{"cached":null,"ignore_cache":false}'), +(32995, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.001+00', '{"cached":null,"ignore_cache":false}'), +(32996, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.001+00', '{"cached":null,"ignore_cache":false}'), +(32997, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.002+00', '{"cached":null,"ignore_cache":false}'), +(32998, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.026+00', '{"cached":null,"ignore_cache":false}'), +(32999, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.147+00', '{"cached":null,"ignore_cache":false}'), +(33000, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.423+00', '{"cached":null,"ignore_cache":false}'), +(33001, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.557+00', '{"cached":null,"ignore_cache":false}'), +(33002, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:27.743+00', '{"cached":null,"ignore_cache":false}'), +(33003, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:28.201+00', '{"cached":null,"ignore_cache":false}'), +(33004, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:28.601+00', '{"cached":null,"ignore_cache":false}'), +(33005, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:28.735+00', '{"cached":null,"ignore_cache":false}'), +(33006, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:28.76+00', '{"cached":null,"ignore_cache":false}'), +(33007, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:28.804+00', '{"cached":null,"ignore_cache":false}'), +(33008, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:28.991+00', '{"cached":null,"ignore_cache":false}'), +(33009, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:29.065+00', '{"cached":null,"ignore_cache":false}'), +(33010, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:30.438+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33011, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:30.586+00', '{"cached":null,"ignore_cache":false}'), +(33012, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:30.931+00', '{"cached":null,"ignore_cache":false}'), +(33013, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:55:30.965+00', '{"cached":null,"ignore_cache":false}'), +(33014, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.556+00', '{"cached":null,"ignore_cache":false}'), +(33015, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.723+00', '{"cached":null,"ignore_cache":false}'), +(33016, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.775+00', '{"cached":null,"ignore_cache":false}'), +(33017, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.826+00', '{"cached":null,"ignore_cache":false}'), +(33018, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.911+00', '{"cached":null,"ignore_cache":false}'), +(33019, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:00.948+00', '{"cached":null,"ignore_cache":false}'), +(33020, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:01.509+00', '{"cached":null,"ignore_cache":false}'), +(33021, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.468+00', '{"cached":null,"ignore_cache":false}'), +(33022, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.831+00', '{"cached":null,"ignore_cache":false}'), +(33023, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:02.928+00', '{"cached":null,"ignore_cache":false}'), +(33024, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.032+00', '{"cached":null,"ignore_cache":false}'), +(33025, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.571+00', '{"cached":null,"ignore_cache":false}'), +(33026, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.736+00', '{"cached":null,"ignore_cache":false}'), +(33027, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.988+00', '{"cached":null,"ignore_cache":false}'), +(33028, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:03.994+00', '{"cached":null,"ignore_cache":false}'), +(33029, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.061+00', '{"cached":null,"ignore_cache":false}'), +(33030, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.092+00', '{"cached":null,"ignore_cache":false}'), +(33031, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.125+00', '{"cached":null,"ignore_cache":false}'), +(33032, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.323+00', '{"cached":null,"ignore_cache":false}'), +(33033, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.365+00', '{"cached":null,"ignore_cache":false}'), +(33034, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.41+00', '{"cached":null,"ignore_cache":false}'), +(33035, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.527+00', '{"cached":null,"ignore_cache":false}'), +(33036, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.553+00', '{"cached":null,"ignore_cache":false}'), +(33037, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.556+00', '{"cached":null,"ignore_cache":false}'), +(33038, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.603+00', '{"cached":null,"ignore_cache":false}'), +(33039, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:04.631+00', '{"cached":null,"ignore_cache":false}'), +(33040, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.708+00', '{"cached":null,"ignore_cache":false}'), +(33041, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.75+00', '{"cached":null,"ignore_cache":false}'), +(33042, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.775+00', '{"cached":null,"ignore_cache":false}'), +(33043, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.813+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33044, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:13.994+00', '{"cached":null,"ignore_cache":false}'), +(33045, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.162+00', '{"cached":null,"ignore_cache":false}'), +(33046, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.844+00', '{"cached":null,"ignore_cache":false}'), +(33047, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.921+00', '{"cached":null,"ignore_cache":false}'), +(33048, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.935+00', '{"cached":null,"ignore_cache":false}'), +(33049, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:14.962+00', '{"cached":null,"ignore_cache":false}'), +(33050, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.002+00', '{"cached":null,"ignore_cache":false}'), +(33051, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.043+00', '{"cached":null,"ignore_cache":false}'), +(33052, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.046+00', '{"cached":null,"ignore_cache":false}'), +(33053, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.086+00', '{"cached":null,"ignore_cache":false}'), +(33054, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.155+00', '{"cached":null,"ignore_cache":false}'), +(33055, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.156+00', '{"cached":null,"ignore_cache":false}'), +(33056, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.177+00', '{"cached":null,"ignore_cache":false}'), +(33057, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.196+00', '{"cached":null,"ignore_cache":false}'), +(33058, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.283+00', '{"cached":null,"ignore_cache":false}'), +(33059, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.337+00', '{"cached":null,"ignore_cache":false}'), +(33060, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.382+00', '{"cached":null,"ignore_cache":false}'), +(33061, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.455+00', '{"cached":null,"ignore_cache":false}'), +(33062, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.548+00', '{"cached":null,"ignore_cache":false}'), +(33063, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.548+00', '{"cached":null,"ignore_cache":false}'), +(33064, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.558+00', '{"cached":null,"ignore_cache":false}'), +(33065, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.601+00', '{"cached":null,"ignore_cache":false}'), +(33066, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.787+00', '{"cached":null,"ignore_cache":false}'), +(33067, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 08:57:15.983+00', '{"cached":null,"ignore_cache":false}'), +(33068, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:03.54+00', '{"cached":null,"ignore_cache":false}'), +(33069, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.274+00', '{"cached":null,"ignore_cache":false}'), +(33070, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.314+00', '{"cached":null,"ignore_cache":false}'), +(33071, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.335+00', '{"cached":null,"ignore_cache":false}'), +(33072, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.356+00', '{"cached":null,"ignore_cache":false}'), +(33073, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.458+00', '{"cached":null,"ignore_cache":false}'), +(33074, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.484+00', '{"cached":null,"ignore_cache":false}'), +(33075, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.557+00', '{"cached":null,"ignore_cache":false}'), +(33076, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.707+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33077, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.771+00', '{"cached":null,"ignore_cache":false}'), +(33078, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.779+00', '{"cached":null,"ignore_cache":false}'), +(33079, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:04.809+00', '{"cached":null,"ignore_cache":false}'), +(33080, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.02+00', '{"cached":null,"ignore_cache":false}'), +(33081, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.027+00', '{"cached":null,"ignore_cache":false}'), +(33082, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.124+00', '{"cached":null,"ignore_cache":false}'), +(33083, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.401+00', '{"cached":null,"ignore_cache":false}'), +(33084, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.597+00', '{"cached":null,"ignore_cache":false}'), +(33085, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.734+00', '{"cached":null,"ignore_cache":false}'), +(33086, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:05.885+00', '{"cached":null,"ignore_cache":false}'), +(33087, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:06.103+00', '{"cached":null,"ignore_cache":false}'), +(33088, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:06.111+00', '{"cached":null,"ignore_cache":false}'), +(33089, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:06.346+00', '{"cached":null,"ignore_cache":false}'), +(33090, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:06.692+00', '{"cached":null,"ignore_cache":false}'), +(33091, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:06.877+00', '{"cached":null,"ignore_cache":false}'), +(33092, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:08.995+00', '{"cached":null,"ignore_cache":false}'), +(33093, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:09.163+00', '{"cached":null,"ignore_cache":false}'), +(33094, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:09.624+00', '{"cached":null,"ignore_cache":false}'), +(33095, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:09.749+00', '{"cached":null,"ignore_cache":false}'), +(33096, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.048+00', '{"cached":null,"ignore_cache":false}'), +(33097, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.407+00', '{"cached":null,"ignore_cache":false}'), +(33098, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.444+00', '{"cached":null,"ignore_cache":false}'), +(33099, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.862+00', '{"cached":null,"ignore_cache":false}'), +(33100, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.898+00', '{"cached":null,"ignore_cache":false}'), +(33101, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.949+00', '{"cached":null,"ignore_cache":false}'), +(33102, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:21.961+00', '{"cached":null,"ignore_cache":false}'), +(33103, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.464+00', '{"cached":null,"ignore_cache":false}'), +(33104, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.465+00', '{"cached":null,"ignore_cache":false}'), +(33105, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.465+00', '{"cached":null,"ignore_cache":false}'), +(33106, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.466+00', '{"cached":null,"ignore_cache":false}'), +(33107, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.552+00', '{"cached":null,"ignore_cache":false}'), +(33108, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.883+00', '{"cached":null,"ignore_cache":false}'), +(33109, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.886+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33110, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.933+00', '{"cached":null,"ignore_cache":false}'), +(33111, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.939+00', '{"cached":null,"ignore_cache":false}'), +(33112, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.973+00', '{"cached":null,"ignore_cache":false}'), +(33113, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:22.974+00', '{"cached":null,"ignore_cache":false}'), +(33114, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.037+00', '{"cached":null,"ignore_cache":false}'), +(33115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.069+00', '{"cached":null,"ignore_cache":false}'), +(33116, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.17+00', '{"cached":null,"ignore_cache":false}'), +(33117, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.238+00', '{"cached":null,"ignore_cache":false}'), +(33118, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.312+00', '{"cached":null,"ignore_cache":false}'), +(33119, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.435+00', '{"cached":null,"ignore_cache":false}'), +(33120, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.48+00', '{"cached":null,"ignore_cache":false}'), +(33121, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.537+00', '{"cached":null,"ignore_cache":false}'), +(33122, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.69+00', '{"cached":null,"ignore_cache":false}'), +(33123, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:00:23.965+00', '{"cached":null,"ignore_cache":false}'), +(33124, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:10.939+00', '{"cached":null,"ignore_cache":false}'), +(33125, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:10.954+00', '{"cached":null,"ignore_cache":false}'), +(33126, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.587+00', '{"cached":null,"ignore_cache":false}'), +(33127, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:11.968+00', '{"cached":null,"ignore_cache":false}'), +(33128, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.175+00', '{"cached":null,"ignore_cache":false}'), +(33129, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.29+00', '{"cached":null,"ignore_cache":false}'), +(33130, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.301+00', '{"cached":null,"ignore_cache":false}'), +(33131, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.323+00', '{"cached":null,"ignore_cache":false}'), +(33132, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.655+00', '{"cached":null,"ignore_cache":false}'), +(33133, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.693+00', '{"cached":null,"ignore_cache":false}'), +(33134, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.764+00', '{"cached":null,"ignore_cache":false}'), +(33135, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.796+00', '{"cached":null,"ignore_cache":false}'), +(33136, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.855+00', '{"cached":null,"ignore_cache":false}'), +(33137, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.857+00', '{"cached":null,"ignore_cache":false}'), +(33138, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.867+00', '{"cached":null,"ignore_cache":false}'), +(33139, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.868+00', '{"cached":null,"ignore_cache":false}'), +(33140, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.887+00', '{"cached":null,"ignore_cache":false}'), +(33141, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.901+00', '{"cached":null,"ignore_cache":false}'), +(33142, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.939+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33143, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:12.942+00', '{"cached":null,"ignore_cache":false}'), +(33144, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:13.027+00', '{"cached":null,"ignore_cache":false}'), +(33145, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:13.034+00', '{"cached":null,"ignore_cache":false}'), +(33146, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:13.06+00', '{"cached":null,"ignore_cache":false}'), +(33147, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:13.077+00', '{"cached":null,"ignore_cache":false}'), +(33148, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:13.269+00', '{"cached":null,"ignore_cache":false}'), +(33149, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:13.83+00', '{"cached":null,"ignore_cache":false}'), +(33150, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:13.879+00', '{"cached":null,"ignore_cache":false}'), +(33151, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:03:14.12+00', '{"cached":null,"ignore_cache":false}'), +(33152, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.83+00', '{"cached":null,"ignore_cache":false}'), +(33153, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:07.974+00', '{"cached":null,"ignore_cache":false}'), +(33154, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.048+00', '{"cached":null,"ignore_cache":false}'), +(33155, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.54+00', '{"cached":null,"ignore_cache":false}'), +(33156, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.546+00', '{"cached":null,"ignore_cache":false}'), +(33157, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.553+00', '{"cached":null,"ignore_cache":false}'), +(33158, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:08.761+00', '{"cached":null,"ignore_cache":false}'), +(33159, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.523+00', '{"cached":null,"ignore_cache":false}'), +(33160, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.901+00', '{"cached":null,"ignore_cache":false}'), +(33161, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.944+00', '{"cached":null,"ignore_cache":false}'), +(33162, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:09.965+00', '{"cached":null,"ignore_cache":false}'), +(33163, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.223+00', '{"cached":null,"ignore_cache":false}'), +(33164, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.314+00', '{"cached":null,"ignore_cache":false}'), +(33165, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.344+00', '{"cached":null,"ignore_cache":false}'), +(33166, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.383+00', '{"cached":null,"ignore_cache":false}'), +(33167, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.518+00', '{"cached":null,"ignore_cache":false}'), +(33168, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.733+00', '{"cached":null,"ignore_cache":false}'), +(33169, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.748+00', '{"cached":null,"ignore_cache":false}'), +(33170, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.794+00', '{"cached":null,"ignore_cache":false}'), +(33171, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.804+00', '{"cached":null,"ignore_cache":false}'), +(33172, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:10.826+00', '{"cached":null,"ignore_cache":false}'), +(33173, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:11.017+00', '{"cached":null,"ignore_cache":false}'), +(33174, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:11.091+00', '{"cached":null,"ignore_cache":false}'), +(33175, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:11.239+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33176, NULL, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:11.271+00', '{"cached":null,"ignore_cache":false}'), +(33177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:11.282+00', '{"cached":null,"ignore_cache":false}'), +(33178, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:11.413+00', '{"cached":null,"ignore_cache":false}'), +(33179, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:04:11.642+00', '{"cached":null,"ignore_cache":false}'), +(33180, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.343+00', '{"cached":null,"ignore_cache":false}'), +(33181, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.41+00', '{"cached":null,"ignore_cache":false}'), +(33182, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:45.417+00', '{"cached":null,"ignore_cache":false}'), +(33183, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.353+00', '{"cached":null,"ignore_cache":false}'), +(33184, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.757+00', '{"cached":null,"ignore_cache":false}'), +(33185, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:46.928+00', '{"cached":null,"ignore_cache":false}'), +(33186, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.039+00', '{"cached":null,"ignore_cache":false}'), +(33187, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.058+00', '{"cached":null,"ignore_cache":false}'), +(33188, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.413+00', '{"cached":null,"ignore_cache":false}'), +(33189, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.5+00', '{"cached":null,"ignore_cache":false}'), +(33190, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.546+00', '{"cached":null,"ignore_cache":false}'), +(33191, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.706+00', '{"cached":null,"ignore_cache":false}'), +(33192, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.774+00', '{"cached":null,"ignore_cache":false}'), +(33193, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.807+00', '{"cached":null,"ignore_cache":false}'), +(33194, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.815+00', '{"cached":null,"ignore_cache":false}'), +(33195, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.851+00', '{"cached":null,"ignore_cache":false}'), +(33196, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.858+00', '{"cached":null,"ignore_cache":false}'), +(33197, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.859+00', '{"cached":null,"ignore_cache":false}'), +(33198, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:47.866+00', '{"cached":null,"ignore_cache":false}'), +(33199, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:48.133+00', '{"cached":null,"ignore_cache":false}'), +(33200, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:48.18+00', '{"cached":null,"ignore_cache":false}'), +(33201, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:48.182+00', '{"cached":null,"ignore_cache":false}'), +(33202, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:48.35+00', '{"cached":null,"ignore_cache":false}'), +(33203, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:48.493+00', '{"cached":null,"ignore_cache":false}'), +(33204, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:48.575+00', '{"cached":null,"ignore_cache":false}'), +(33205, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:48.943+00', '{"cached":null,"ignore_cache":false}'), +(33206, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:49.375+00', '{"cached":null,"ignore_cache":false}'), +(33207, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:13:49.378+00', '{"cached":null,"ignore_cache":false}'), +(33208, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.223+00', '{"cached":null,"ignore_cache":false}'), +(33209, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.357+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33210, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.444+00', '{"cached":null,"ignore_cache":false}'), +(33211, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.463+00', '{"cached":null,"ignore_cache":false}'), +(33212, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.68+00', '{"cached":null,"ignore_cache":false}'), +(33213, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.687+00', '{"cached":null,"ignore_cache":false}'), +(33214, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.739+00', '{"cached":null,"ignore_cache":false}'), +(33215, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.932+00', '{"cached":null,"ignore_cache":false}'), +(33216, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.933+00', '{"cached":null,"ignore_cache":false}'), +(33217, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:15.955+00', '{"cached":null,"ignore_cache":false}'), +(33218, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:16.041+00', '{"cached":null,"ignore_cache":false}'), +(33219, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:16.07+00', '{"cached":null,"ignore_cache":false}'), +(33220, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:16.124+00', '{"cached":null,"ignore_cache":false}'), +(33221, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:16.272+00', '{"cached":null,"ignore_cache":false}'), +(33222, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:16.371+00', '{"cached":null,"ignore_cache":false}'), +(33223, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:16.726+00', '{"cached":null,"ignore_cache":false}'), +(33224, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.445+00', '{"cached":null,"ignore_cache":false}'), +(33225, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.481+00', '{"cached":null,"ignore_cache":false}'), +(33226, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.587+00', '{"cached":null,"ignore_cache":false}'), +(33227, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.917+00', '{"cached":null,"ignore_cache":false}'), +(33228, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:42.99+00', '{"cached":null,"ignore_cache":false}'), +(33229, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.856+00', '{"cached":null,"ignore_cache":false}'), +(33230, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.977+00', '{"cached":null,"ignore_cache":false}'), +(33231, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:43.999+00', '{"cached":null,"ignore_cache":false}'), +(33232, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.028+00', '{"cached":null,"ignore_cache":false}'), +(33233, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.064+00', '{"cached":null,"ignore_cache":false}'), +(33234, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.083+00', '{"cached":null,"ignore_cache":false}'), +(33235, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.161+00', '{"cached":null,"ignore_cache":false}'), +(33236, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.179+00', '{"cached":null,"ignore_cache":false}'), +(33237, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.26+00', '{"cached":null,"ignore_cache":false}'), +(33238, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.267+00', '{"cached":null,"ignore_cache":false}'), +(33239, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.579+00', '{"cached":null,"ignore_cache":false}'), +(33240, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.589+00', '{"cached":null,"ignore_cache":false}'), +(33241, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.604+00', '{"cached":null,"ignore_cache":false}'), +(33242, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.628+00', '{"cached":null,"ignore_cache":false}'), +(33243, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.689+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33244, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.707+00', '{"cached":null,"ignore_cache":false}'), +(33245, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.733+00', '{"cached":null,"ignore_cache":false}'), +(33246, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.742+00', '{"cached":null,"ignore_cache":false}'), +(33247, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.846+00', '{"cached":null,"ignore_cache":false}'), +(33248, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:44.902+00', '{"cached":null,"ignore_cache":false}'), +(33249, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:45.141+00', '{"cached":null,"ignore_cache":false}'), +(33250, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:45.284+00', '{"cached":null,"ignore_cache":false}'), +(33251, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:45.474+00', '{"cached":null,"ignore_cache":false}'), +(33252, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:45.495+00', '{"cached":null,"ignore_cache":false}'), +(33253, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:45.613+00', '{"cached":null,"ignore_cache":false}'), +(33254, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-26 09:14:46.196+00', '{"cached":null,"ignore_cache":false}'), +(33255, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:34.105+00', '{"cached":null,"ignore_cache":null}'), +(33256, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.533+00', '{"cached":null,"ignore_cache":false}'), +(33257, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.573+00', '{"cached":null,"ignore_cache":false}'), +(33258, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.603+00', '{"cached":null,"ignore_cache":false}'), +(33259, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.618+00', '{"cached":null,"ignore_cache":false}'), +(33260, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:36.713+00', '{"cached":null,"ignore_cache":false}'), +(33261, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:43.382+00', '{"cached":null,"ignore_cache":false}'), +(33262, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-28 06:17:43.531+00', '{"cached":null,"ignore_cache":false}'), +(33263, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:39.224+00', '{"cached":null,"ignore_cache":null}'), +(33264, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.24+00', '{"cached":null,"ignore_cache":false}'), +(33265, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.252+00', '{"cached":null,"ignore_cache":false}'), +(33266, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.264+00', '{"cached":null,"ignore_cache":false}'), +(33267, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.311+00', '{"cached":null,"ignore_cache":false}'), +(33268, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.372+00', '{"cached":null,"ignore_cache":false}'), +(33269, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.372+00', '{"cached":null,"ignore_cache":false}'), +(33270, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.392+00', '{"cached":null,"ignore_cache":false}'), +(33271, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.45+00', '{"cached":null,"ignore_cache":false}'), +(33272, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-28 06:43:40.515+00', '{"cached":null,"ignore_cache":false}'), +(33273, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:51.865+00', '{"cached":null,"ignore_cache":null}'), +(33274, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:53.569+00', '{"cached":null,"ignore_cache":false}'), +(33275, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:53.758+00', '{"cached":null,"ignore_cache":false}'), +(33276, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:53.784+00', '{"cached":null,"ignore_cache":false}'), +(33277, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:53.871+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33278, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:53.954+00', '{"cached":null,"ignore_cache":false}'), +(33279, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:54.608+00', '{"cached":null,"ignore_cache":false}'), +(33280, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-28 21:15:54.713+00', '{"cached":null,"ignore_cache":false}'), +(33281, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-28 21:16:06.331+00', '{"cached":null,"ignore_cache":null}'), +(33282, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-28 21:16:07.51+00', '{"cached":null,"ignore_cache":false}'), +(33283, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:28.24+00', '{"cached":null,"ignore_cache":null}'), +(33284, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:29.194+00', '{"cached":null,"ignore_cache":false}'), +(33285, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:30.372+00', '{"cached":null,"ignore_cache":null}'), +(33286, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:32.257+00', '{"cached":null,"ignore_cache":null}'), +(33287, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:32.483+00', '{"cached":null,"ignore_cache":false}'), +(33288, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:32.985+00', '{"cached":null,"ignore_cache":false}'), +(33289, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:34.716+00', '{"cached":null,"ignore_cache":null}'), +(33290, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:35.536+00', '{"cached":null,"ignore_cache":false}'), +(33291, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:36.59+00', '{"cached":null,"ignore_cache":null}'), +(33292, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:37.555+00', '{"cached":null,"ignore_cache":false}'), +(33293, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:38.374+00', '{"cached":null,"ignore_cache":null}'), +(33294, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:39.163+00', '{"cached":null,"ignore_cache":false}'), +(33295, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:39.877+00', '{"cached":null,"ignore_cache":null}'), +(33296, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:40.696+00', '{"cached":null,"ignore_cache":false}'), +(33297, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:41.919+00', '{"cached":null,"ignore_cache":null}'), +(33298, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:43.534+00', '{"cached":null,"ignore_cache":null}'), +(33299, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:43.814+00', '{"cached":null,"ignore_cache":false}'), +(33300, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:44.191+00', '{"cached":null,"ignore_cache":false}'), +(33301, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:46.183+00', '{"cached":null,"ignore_cache":null}'), +(33302, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:46.92+00', '{"cached":null,"ignore_cache":null}'), +(33303, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:46.963+00', '{"cached":null,"ignore_cache":false}'), +(33304, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:47.511+00', '{"cached":null,"ignore_cache":null}'), +(33305, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:47.741+00', '{"cached":null,"ignore_cache":false}'), +(33306, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:48.234+00', '{"cached":null,"ignore_cache":null}'), +(33307, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:48.551+00', '{"cached":null,"ignore_cache":false}'), +(33308, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:48.955+00', '{"cached":null,"ignore_cache":null}'), +(33309, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:49.117+00', '{"cached":null,"ignore_cache":false}'), +(33310, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:49.856+00', '{"cached":null,"ignore_cache":null}'), +(33311, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:50.345+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33312, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:50.404+00', '{"cached":null,"ignore_cache":null}'), +(33313, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:50.775+00', '{"cached":null,"ignore_cache":false}'), +(33314, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:51.23+00', '{"cached":null,"ignore_cache":false}'), +(33315, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:52.306+00', '{"cached":null,"ignore_cache":null}'), +(33316, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:52.834+00', '{"cached":null,"ignore_cache":null}'), +(33317, 1, 'card', 8, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:53.226+00', '{"cached":null,"ignore_cache":false}'), +(33318, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:53.541+00', '{"cached":null,"ignore_cache":false}'), +(33319, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:53.581+00', '{"cached":null,"ignore_cache":null}'), +(33320, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:54.24+00', '{"cached":null,"ignore_cache":null}'), +(33321, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:54.543+00', '{"cached":null,"ignore_cache":false}'), +(33322, 1, 'card', 6, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:55.057+00', '{"cached":null,"ignore_cache":false}'), +(33323, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:56.118+00', '{"cached":null,"ignore_cache":null}'), +(33324, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 10:08:56.778+00', '{"cached":null,"ignore_cache":false}'), +(33325, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:04.67+00', '{"cached":null,"ignore_cache":null}'), +(33326, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:07.537+00', '{"cached":null,"ignore_cache":null}'), +(33327, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:26.334+00', '{"cached":null,"ignore_cache":null}'), +(33328, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:26.806+00', '{"cached":null,"ignore_cache":null}'), +(33329, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:39.927+00', '{"cached":null,"ignore_cache":null}'), +(33330, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:10:40.395+00', '{"cached":null,"ignore_cache":false}'), +(33331, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:11:14.909+00', '{"cached":null,"ignore_cache":null}'), +(33332, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:11:15.238+00', '{"cached":null,"ignore_cache":false}'), +(33333, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2022-12-29 10:11:58.458+00', '{"cached":null,"ignore_cache":null}'), +(33334, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 10:14:03.823+00', '{"cached":null,"ignore_cache":null}'), +(33335, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 10:14:06.181+00', '{"cached":null,"ignore_cache":false}'), +(33336, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 10:14:19.338+00', '{"cached":null,"ignore_cache":false}'), +(33337, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 10:15:07.976+00', '{"cached":null,"ignore_cache":null}'), +(33338, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 10:15:08.623+00', '{"cached":null,"ignore_cache":false}'), +(33339, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2022-12-29 10:15:52.288+00', '{"cached":null,"ignore_cache":null}'), +(33340, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2022-12-29 10:16:10.825+00', '{"cached":null,"ignore_cache":null}'), +(33341, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2022-12-29 10:16:32.438+00', '{"cached":null,"ignore_cache":null}'), +(33342, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:17:03.984+00', '{"cached":null,"ignore_cache":null}'), +(33343, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:17:04.681+00', '{"cached":null,"ignore_cache":false}'), +(33344, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:00.078+00', '{"cached":null,"ignore_cache":null}'), +(33345, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:19:01.005+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33346, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:20:17.606+00', '{"cached":null,"ignore_cache":null}'), +(33347, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:20:18.276+00', '{"cached":null,"ignore_cache":false}'), +(33348, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:21:50.806+00', '{"cached":null,"ignore_cache":null}'), +(33349, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:21:51.495+00', '{"cached":null,"ignore_cache":false}'), +(33350, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 10:23:06.574+00', '{"cached":null,"ignore_cache":null}'), +(33351, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 10:23:08.357+00', '{"cached":null,"ignore_cache":false}'), +(33352, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:24:32.058+00', '{"cached":null,"ignore_cache":null}'), +(33353, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:24:32.695+00', '{"cached":null,"ignore_cache":false}'), +(33354, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2022-12-29 10:25:15.636+00', '{"cached":null,"ignore_cache":null}'), +(33355, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:25:31.449+00', '{"cached":null,"ignore_cache":null}'), +(33356, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:25:32.108+00', '{"cached":null,"ignore_cache":false}'), +(33357, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-29 10:26:33.966+00', '{"cached":null,"ignore_cache":null}'), +(33358, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2022-12-29 10:26:34.564+00', '{"cached":null,"ignore_cache":false}'), +(33359, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 10:27:47.38+00', '{"cached":null,"ignore_cache":null}'), +(33360, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 10:27:48.025+00', '{"cached":null,"ignore_cache":false}'), +(33361, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-29 10:29:11.071+00', '{"cached":null,"ignore_cache":null}'), +(33362, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2022-12-29 10:29:11.732+00', '{"cached":null,"ignore_cache":false}'), +(33363, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 10:30:08.759+00', '{"cached":null,"ignore_cache":null}'), +(33364, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 10:30:09.44+00', '{"cached":null,"ignore_cache":false}'), +(33365, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:31:12.452+00', '{"cached":null,"ignore_cache":null}'), +(33366, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:31:13.115+00', '{"cached":null,"ignore_cache":false}'), +(33367, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:31:54.789+00', '{"cached":null,"ignore_cache":false}'), +(33368, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-29 10:32:02.436+00', '{"cached":null,"ignore_cache":null}'), +(33369, 1, 'card', 10, TIMESTAMP WITH TIME ZONE '2022-12-29 10:32:02.995+00', '{"cached":null,"ignore_cache":false}'), +(33370, 1, 'card', 7, TIMESTAMP WITH TIME ZONE '2022-12-29 10:33:46.403+00', '{"cached":null,"ignore_cache":false}'), +(33371, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2022-12-29 10:34:21.391+00', '{"cached":null,"ignore_cache":false}'), +(33372, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 10:34:59.53+00', '{"cached":null,"ignore_cache":null}'), +(33373, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 10:35:00.264+00', '{"cached":null,"ignore_cache":false}'), +(33374, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2022-12-29 10:35:47.324+00', '{"cached":null,"ignore_cache":null}'), +(33375, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:02.765+00', '{"cached":null,"ignore_cache":null}'), +(33376, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.8+00', '{"cached":null,"ignore_cache":false}'), +(33377, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.821+00', '{"cached":null,"ignore_cache":false}'), +(33378, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.852+00', '{"cached":null,"ignore_cache":false}'), +(33379, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.926+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33380, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.934+00', '{"cached":null,"ignore_cache":false}'), +(33381, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:03.952+00', '{"cached":null,"ignore_cache":false}'), +(33382, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:04.88+00', '{"cached":null,"ignore_cache":false}'), +(33383, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:15.331+00', '{"cached":null,"ignore_cache":null}'), +(33384, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.319+00', '{"cached":null,"ignore_cache":false}'), +(33385, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.414+00', '{"cached":null,"ignore_cache":false}'), +(33386, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.539+00', '{"cached":null,"ignore_cache":false}'), +(33387, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.575+00', '{"cached":null,"ignore_cache":false}'), +(33388, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:16.856+00', '{"cached":null,"ignore_cache":false}'), +(33389, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:23.115+00', '{"cached":null,"ignore_cache":null}'), +(33390, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:23.565+00', '{"cached":null,"ignore_cache":false}'), +(33391, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.058+00', '{"cached":null,"ignore_cache":null}'), +(33392, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.508+00', '{"cached":null,"ignore_cache":false}'), +(33393, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.653+00', '{"cached":null,"ignore_cache":false}'), +(33394, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:27.747+00', '{"cached":null,"ignore_cache":false}'), +(33395, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:28.048+00', '{"cached":null,"ignore_cache":false}'), +(33396, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-29 10:36:28.108+00', '{"cached":null,"ignore_cache":false}'), +(33397, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:39:50.781+00', '{"cached":null,"ignore_cache":null}'), +(33398, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:02.077+00', '{"cached":null,"ignore_cache":null}'), +(33399, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:03.213+00', '{"cached":null,"ignore_cache":false}'), +(33400, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:03.309+00', '{"cached":null,"ignore_cache":false}'), +(33401, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:03.344+00', '{"cached":null,"ignore_cache":false}'), +(33402, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:04.005+00', '{"cached":null,"ignore_cache":false}'), +(33403, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:04.357+00', '{"cached":null,"ignore_cache":false}'), +(33404, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-29 10:40:07.203+00', '{"cached":null,"ignore_cache":false}'), +(33405, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:00.704+00', '{"cached":null,"ignore_cache":null}'), +(33406, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:02.714+00', '{"cached":null,"ignore_cache":null}'), +(33407, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.662+00', '{"cached":null,"ignore_cache":false}'), +(33408, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.935+00', '{"cached":null,"ignore_cache":false}'), +(33409, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:03.981+00', '{"cached":null,"ignore_cache":false}'), +(33410, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:04.089+00', '{"cached":null,"ignore_cache":false}'), +(33411, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:04.211+00', '{"cached":null,"ignore_cache":false}'), +(33412, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:04.323+00', '{"cached":null,"ignore_cache":false}'), +(33413, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:04.373+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33414, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:04.375+00', '{"cached":null,"ignore_cache":false}'), +(33415, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:04.544+00', '{"cached":null,"ignore_cache":false}'), +(33416, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.098+00', '{"cached":null,"ignore_cache":null}'), +(33417, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.922+00', '{"cached":null,"ignore_cache":false}'), +(33418, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.984+00', '{"cached":null,"ignore_cache":false}'), +(33419, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:26.991+00', '{"cached":null,"ignore_cache":false}'), +(33420, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:27.025+00', '{"cached":null,"ignore_cache":false}'), +(33421, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:27.107+00', '{"cached":null,"ignore_cache":false}'), +(33422, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:27.134+00', '{"cached":null,"ignore_cache":false}'), +(33423, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 10:41:28.089+00', '{"cached":null,"ignore_cache":false}'), +(33424, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:11:33.558+00', '{"cached":null,"ignore_cache":null}'), +(33425, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:11:36.175+00', '{"cached":null,"ignore_cache":null}'), +(33426, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:11:37.54+00', '{"cached":null,"ignore_cache":false}'), +(33427, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:07.142+00', '{"cached":null,"ignore_cache":null}'), +(33428, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:07.81+00', '{"cached":null,"ignore_cache":false}'), +(33429, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:14.793+00', '{"cached":null,"ignore_cache":true}'), +(33430, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:19.796+00', '{"cached":null,"ignore_cache":null}'), +(33431, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:12:20.248+00', '{"cached":null,"ignore_cache":false}'), +(33432, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.124+00', '{"cached":null,"ignore_cache":null}'), +(33433, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.614+00', '{"cached":null,"ignore_cache":false}'), +(33434, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:07.845+00', '{"cached":null,"ignore_cache":false}'), +(33435, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:08.012+00', '{"cached":null,"ignore_cache":false}'), +(33436, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:08.035+00', '{"cached":null,"ignore_cache":false}'), +(33437, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:08.109+00', '{"cached":null,"ignore_cache":false}'), +(33438, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:08.111+00', '{"cached":null,"ignore_cache":false}'), +(33439, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:08.159+00', '{"cached":null,"ignore_cache":false}'), +(33440, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:08.225+00', '{"cached":null,"ignore_cache":false}'), +(33441, 1, 'card', 26, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:08.304+00', '{"cached":null,"ignore_cache":false}'), +(33442, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.097+00', '{"cached":null,"ignore_cache":null}'), +(33443, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.879+00', '{"cached":null,"ignore_cache":false}'), +(33444, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.888+00', '{"cached":null,"ignore_cache":false}'), +(33445, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.902+00', '{"cached":null,"ignore_cache":false}'), +(33446, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.906+00', '{"cached":null,"ignore_cache":false}'), +(33447, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:12.922+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33448, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:13.884+00', '{"cached":null,"ignore_cache":false}'), +(33449, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:14:13.897+00', '{"cached":null,"ignore_cache":false}'), +(33465, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:29:09.795+00', '{"cached":null,"ignore_cache":null}'), +(33466, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:18.015+00', '{"cached":null,"ignore_cache":null}'), +(33467, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:19.982+00', '{"cached":null,"ignore_cache":false}'), +(33468, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:20.08+00', '{"cached":null,"ignore_cache":false}'), +(33469, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:20.136+00', '{"cached":null,"ignore_cache":false}'), +(33470, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:20.796+00', '{"cached":null,"ignore_cache":false}'), +(33471, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:31.537+00', '{"cached":null,"ignore_cache":null}'), +(33472, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:32.928+00', '{"cached":null,"ignore_cache":false}'), +(33473, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:33.013+00', '{"cached":null,"ignore_cache":false}'), +(33474, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:33.045+00', '{"cached":null,"ignore_cache":false}'), +(33475, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:33.743+00', '{"cached":null,"ignore_cache":false}'), +(33476, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:50.139+00', '{"cached":null,"ignore_cache":null}'), +(33477, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-29 11:30:50.297+00', '{"cached":null,"ignore_cache":null}'), +(33478, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:33:39.271+00', '{"cached":null,"ignore_cache":false}'), +(33479, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:33:46.752+00', '{"cached":null,"ignore_cache":false}'), +(33480, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:24.747+00', '{"cached":null,"ignore_cache":null}'), +(33481, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:34.878+00', '{"cached":null,"ignore_cache":null}'), +(33482, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:36.088+00', '{"cached":null,"ignore_cache":false}'), +(33483, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:36.129+00', '{"cached":null,"ignore_cache":false}'), +(33484, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:36.194+00', '{"cached":null,"ignore_cache":false}'), +(33485, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:36.882+00', '{"cached":null,"ignore_cache":false}'), +(33486, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:37:44.408+00', '{"cached":null,"ignore_cache":false}'), +(33487, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:03.012+00', '{"cached":null,"ignore_cache":null}'), +(33488, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:05.161+00', '{"cached":null,"ignore_cache":false}'), +(33489, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:05.256+00', '{"cached":null,"ignore_cache":false}'), +(33490, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:05.33+00', '{"cached":null,"ignore_cache":false}'), +(33491, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:06.084+00', '{"cached":null,"ignore_cache":false}'), +(33492, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:21.687+00', '{"cached":null,"ignore_cache":null}'), +(33493, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:23.945+00', '{"cached":null,"ignore_cache":false}'), +(33494, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:28.097+00', '{"cached":null,"ignore_cache":null}'), +(33495, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:29.32+00', '{"cached":null,"ignore_cache":false}'), +(33496, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:29.458+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33497, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:29.46+00', '{"cached":null,"ignore_cache":false}'), +(33498, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:30.11+00', '{"cached":null,"ignore_cache":false}'), +(33499, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:36.437+00', '{"cached":null,"ignore_cache":null}'), +(33500, 1, 'table', 22, TIMESTAMP WITH TIME ZONE '2022-12-29 11:39:36.605+00', '{"cached":null,"ignore_cache":null}'), +(33501, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2022-12-29 11:40:41.208+00', '{"cached":null,"ignore_cache":null}'), +(33502, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:29.645+00', '{"cached":null,"ignore_cache":null}'), +(33503, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:31.127+00', '{"cached":null,"ignore_cache":false}'), +(33504, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:31.255+00', '{"cached":null,"ignore_cache":false}'), +(33505, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:31.375+00', '{"cached":null,"ignore_cache":false}'), +(33506, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:32.34+00', '{"cached":null,"ignore_cache":false}'), +(33507, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:34.667+00', '{"cached":null,"ignore_cache":null}'), +(33508, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:35.956+00', '{"cached":null,"ignore_cache":false}'), +(33509, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:36.024+00', '{"cached":null,"ignore_cache":false}'), +(33510, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:36.484+00', '{"cached":null,"ignore_cache":false}'), +(33511, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:36.941+00', '{"cached":null,"ignore_cache":false}'), +(33512, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:46.921+00', '{"cached":null,"ignore_cache":null}'), +(33513, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:47.913+00', '{"cached":null,"ignore_cache":false}'), +(33514, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:51.214+00', '{"cached":null,"ignore_cache":null}'), +(33515, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:52.757+00', '{"cached":null,"ignore_cache":false}'), +(33516, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:53.006+00', '{"cached":null,"ignore_cache":false}'), +(33517, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:53.089+00', '{"cached":null,"ignore_cache":false}'), +(33518, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:41:54.899+00', '{"cached":null,"ignore_cache":false}'), +(33519, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:36.64+00', '{"cached":null,"ignore_cache":null}'), +(33520, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:38.128+00', '{"cached":null,"ignore_cache":false}'), +(33521, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:38.167+00', '{"cached":null,"ignore_cache":false}'), +(33522, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:38.215+00', '{"cached":null,"ignore_cache":false}'), +(33523, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:39.79+00', '{"cached":null,"ignore_cache":false}'), +(33524, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:49.941+00', '{"cached":null,"ignore_cache":null}'), +(33525, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:50.305+00', '{"cached":null,"ignore_cache":false}'), +(33526, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:50.709+00', '{"cached":null,"ignore_cache":false}'), +(33527, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:55.929+00', '{"cached":null,"ignore_cache":null}'), +(33528, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:57.141+00', '{"cached":null,"ignore_cache":false}'), +(33529, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:57.251+00', '{"cached":null,"ignore_cache":false}'), +(33530, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:57.333+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33531, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:42:58.784+00', '{"cached":null,"ignore_cache":false}'), +(33532, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:00.959+00', '{"cached":null,"ignore_cache":false}'), +(33533, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:01.116+00', '{"cached":null,"ignore_cache":false}'), +(33534, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:01.318+00', '{"cached":null,"ignore_cache":false}'), +(33535, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:02.895+00', '{"cached":null,"ignore_cache":false}'), +(33536, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:03.448+00', '{"cached":null,"ignore_cache":false}'), +(33537, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:03.519+00', '{"cached":null,"ignore_cache":false}'), +(33538, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:03.634+00', '{"cached":null,"ignore_cache":false}'), +(33539, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:04.298+00', '{"cached":null,"ignore_cache":false}'), +(33540, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:06.738+00', '{"cached":null,"ignore_cache":false}'), +(33541, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:08.282+00', '{"cached":null,"ignore_cache":false}'), +(33542, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:09.896+00', '{"cached":null,"ignore_cache":null}'), +(33543, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:11.101+00', '{"cached":null,"ignore_cache":false}'), +(33544, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:11.249+00', '{"cached":null,"ignore_cache":false}'), +(33545, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:11.339+00', '{"cached":null,"ignore_cache":false}'), +(33546, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:11.739+00', '{"cached":null,"ignore_cache":false}'), +(33547, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:12.326+00', '{"cached":null,"ignore_cache":false}'), +(33548, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:13.281+00', '{"cached":null,"ignore_cache":null}'), +(33549, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:14.362+00', '{"cached":null,"ignore_cache":null}'), +(33550, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:14.574+00', '{"cached":null,"ignore_cache":false}'), +(33551, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:15.324+00', '{"cached":null,"ignore_cache":false}'), +(33552, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:16.176+00', '{"cached":null,"ignore_cache":false}'), +(33553, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:16.282+00', '{"cached":null,"ignore_cache":false}'), +(33554, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:16.43+00', '{"cached":null,"ignore_cache":false}'), +(33555, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:16.834+00', '{"cached":null,"ignore_cache":false}'), +(33556, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:21.82+00', '{"cached":null,"ignore_cache":false}'), +(33557, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:24.457+00', '{"cached":null,"ignore_cache":false}'), +(33558, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:32.071+00', '{"cached":null,"ignore_cache":null}'), +(33559, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:35.229+00', '{"cached":null,"ignore_cache":false}'), +(33560, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:35.369+00', '{"cached":null,"ignore_cache":false}'), +(33561, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:35.38+00', '{"cached":null,"ignore_cache":false}'), +(33562, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:43:37.91+00', '{"cached":null,"ignore_cache":false}'), +(33563, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:07.408+00', '{"cached":null,"ignore_cache":null}'), +(33564, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:09.391+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33565, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:10.827+00', '{"cached":null,"ignore_cache":false}'), +(33566, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:11.748+00', '{"cached":null,"ignore_cache":false}'), +(33567, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:11.941+00', '{"cached":null,"ignore_cache":false}'), +(33568, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:12.074+00', '{"cached":null,"ignore_cache":false}'), +(33569, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:12.388+00', '{"cached":null,"ignore_cache":false}'), +(33570, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:15.171+00', '{"cached":null,"ignore_cache":false}'), +(33571, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:18.212+00', '{"cached":null,"ignore_cache":false}'), +(33572, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:32.197+00', '{"cached":null,"ignore_cache":null}'), +(33573, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:35.766+00', '{"cached":null,"ignore_cache":false}'), +(33574, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:46.784+00', '{"cached":null,"ignore_cache":true}'), +(33575, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:44:59.337+00', '{"cached":null,"ignore_cache":true}'), +(33576, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:53.892+00', '{"cached":null,"ignore_cache":null}'), +(33577, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:55.424+00', '{"cached":null,"ignore_cache":false}'), +(33578, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:56.205+00', '{"cached":null,"ignore_cache":false}'), +(33579, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:56.389+00', '{"cached":null,"ignore_cache":false}'), +(33580, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:56.664+00', '{"cached":null,"ignore_cache":false}'), +(33581, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:56.727+00', '{"cached":null,"ignore_cache":false}'), +(33582, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:18.794+00', '{"cached":null,"ignore_cache":null}'), +(33583, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:21.092+00', '{"cached":null,"ignore_cache":false}'), +(33584, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:21.894+00', '{"cached":null,"ignore_cache":false}'), +(33585, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:21.998+00', '{"cached":null,"ignore_cache":false}'), +(33586, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:22.069+00', '{"cached":null,"ignore_cache":false}'), +(33587, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 11:47:22.438+00', '{"cached":null,"ignore_cache":false}'), +(33588, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:52:03.396+00', '{"cached":null,"ignore_cache":null}'), +(33589, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:53:57.849+00', '{"cached":null,"ignore_cache":false}'), +(33590, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:55:08.894+00', '{"cached":null,"ignore_cache":false}'), +(33591, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:58:00.469+00', '{"cached":null,"ignore_cache":false}'), +(33592, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:58:27.725+00', '{"cached":null,"ignore_cache":false}'), +(33593, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 11:58:46.522+00', '{"cached":null,"ignore_cache":false}'), +(33594, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 11:59:29.611+00', '{"cached":null,"ignore_cache":false}'), +(33595, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 12:00:07.504+00', '{"cached":null,"ignore_cache":false}'), +(33596, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 12:00:47.854+00', '{"cached":null,"ignore_cache":false}'), +(33597, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 12:01:04.13+00', '{"cached":null,"ignore_cache":false}'), +(33598, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 12:02:07.018+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33599, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 12:04:17.502+00', '{"cached":null,"ignore_cache":false}'), +(33600, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:18.177+00', '{"cached":null,"ignore_cache":null}'), +(33601, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:19.519+00', '{"cached":null,"ignore_cache":false}'), +(33602, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:19.853+00', '{"cached":null,"ignore_cache":false}'), +(33603, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:19.961+00', '{"cached":null,"ignore_cache":false}'), +(33604, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:20.278+00', '{"cached":null,"ignore_cache":false}'), +(33605, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:20.908+00', '{"cached":null,"ignore_cache":false}'), +(33606, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 12:38:48.451+00', '{"cached":null,"ignore_cache":null}'), +(33607, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 12:41:48.91+00', '{"cached":null,"ignore_cache":false}'), +(33608, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 12:44:08.115+00', '{"cached":null,"ignore_cache":false}'), +(33609, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 12:44:19.73+00', '{"cached":null,"ignore_cache":false}'), +(33610, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:09.963+00', '{"cached":null,"ignore_cache":null}'), +(33611, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:10.525+00', '{"cached":null,"ignore_cache":false}'), +(33612, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:11.16+00', '{"cached":null,"ignore_cache":false}'), +(33613, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:11.389+00', '{"cached":null,"ignore_cache":false}'), +(33614, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:11.515+00', '{"cached":null,"ignore_cache":false}'), +(33615, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:11.715+00', '{"cached":null,"ignore_cache":false}'), +(33616, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:11.885+00', '{"cached":null,"ignore_cache":false}'), +(33617, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:14.883+00', '{"cached":null,"ignore_cache":null}'), +(33618, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:39:23.149+00', '{"cached":null,"ignore_cache":false}'), +(33619, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:39:23.506+00', '{"cached":null,"ignore_cache":false}'), +(33620, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:50.147+00', '{"cached":null,"ignore_cache":null}'), +(33621, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:50.819+00', '{"cached":null,"ignore_cache":false}'), +(33622, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:57.495+00', '{"cached":null,"ignore_cache":null}'), +(33623, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:58.043+00', '{"cached":null,"ignore_cache":false}'), +(33624, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:58.057+00', '{"cached":null,"ignore_cache":false}'), +(33625, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:58.236+00', '{"cached":null,"ignore_cache":false}'), +(33626, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:58.296+00', '{"cached":null,"ignore_cache":false}'), +(33627, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:58.376+00', '{"cached":null,"ignore_cache":false}'), +(33628, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:58.386+00', '{"cached":null,"ignore_cache":false}'), +(33629, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:58.573+00', '{"cached":null,"ignore_cache":false}'), +(33630, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:24.498+00', '{"cached":null,"ignore_cache":null}'), +(33631, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:29.978+00', '{"cached":null,"ignore_cache":false}'), +(33632, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:30.012+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33633, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:30.042+00', '{"cached":null,"ignore_cache":false}'), +(33634, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:30.067+00', '{"cached":null,"ignore_cache":false}'), +(33635, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:30.434+00', '{"cached":null,"ignore_cache":false}'), +(33636, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:30.453+00', '{"cached":null,"ignore_cache":false}'), +(33637, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:30.561+00', '{"cached":null,"ignore_cache":false}'), +(33638, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:33.63+00', '{"cached":null,"ignore_cache":null}'), +(33639, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:34.252+00', '{"cached":null,"ignore_cache":false}'), +(33640, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:43:51.051+00', '{"cached":null,"ignore_cache":false}'), +(33641, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:44:36.41+00', '{"cached":null,"ignore_cache":null}'), +(33642, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:35.462+00', '{"cached":null,"ignore_cache":null}'), +(33643, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:36.196+00', '{"cached":null,"ignore_cache":false}'), +(33644, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:36.248+00', '{"cached":null,"ignore_cache":false}'), +(33645, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:36.331+00', '{"cached":null,"ignore_cache":false}'), +(33646, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:36.413+00', '{"cached":null,"ignore_cache":false}'), +(33647, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:36.531+00', '{"cached":null,"ignore_cache":false}'), +(33648, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:36.572+00', '{"cached":null,"ignore_cache":false}'), +(33649, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:36.586+00', '{"cached":null,"ignore_cache":false}'), +(33650, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:38.249+00', '{"cached":null,"ignore_cache":null}'), +(33651, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:45:38.943+00', '{"cached":null,"ignore_cache":false}'), +(33652, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.101+00', '{"cached":null,"ignore_cache":null}'), +(33653, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.709+00', '{"cached":null,"ignore_cache":false}'), +(33654, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.728+00', '{"cached":null,"ignore_cache":false}'), +(33655, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.842+00', '{"cached":null,"ignore_cache":false}'), +(33656, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.912+00', '{"cached":null,"ignore_cache":false}'), +(33657, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:40.951+00', '{"cached":null,"ignore_cache":false}'), +(33658, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:41.032+00', '{"cached":null,"ignore_cache":false}'), +(33659, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:41.236+00', '{"cached":null,"ignore_cache":false}'), +(33660, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:43.292+00', '{"cached":null,"ignore_cache":null}'), +(33661, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:43.965+00', '{"cached":null,"ignore_cache":false}'), +(33662, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.208+00', '{"cached":null,"ignore_cache":null}'), +(33663, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.805+00', '{"cached":null,"ignore_cache":false}'), +(33664, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.835+00', '{"cached":null,"ignore_cache":false}'), +(33665, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.916+00', '{"cached":null,"ignore_cache":false}'), +(33666, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:56.934+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33667, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:57.092+00', '{"cached":null,"ignore_cache":false}'), +(33668, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:57.151+00', '{"cached":null,"ignore_cache":false}'), +(33669, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:57.266+00', '{"cached":null,"ignore_cache":false}'), +(33670, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:48:37.661+00', '{"cached":null,"ignore_cache":null}'), +(33671, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:48:38.391+00', '{"cached":null,"ignore_cache":false}'), +(33672, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:12.824+00', '{"cached":null,"ignore_cache":null}'), +(33673, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.319+00', '{"cached":null,"ignore_cache":false}'), +(33674, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.558+00', '{"cached":null,"ignore_cache":false}'), +(33675, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.585+00', '{"cached":null,"ignore_cache":false}'), +(33676, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.617+00', '{"cached":null,"ignore_cache":false}'), +(33677, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.787+00', '{"cached":null,"ignore_cache":false}'), +(33678, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:13.838+00', '{"cached":null,"ignore_cache":false}'), +(33679, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:14.003+00', '{"cached":null,"ignore_cache":false}'), +(33680, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:50:14.682+00', '{"cached":null,"ignore_cache":null}'), +(33681, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.1+00', '{"cached":null,"ignore_cache":null}'), +(33682, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.634+00', '{"cached":null,"ignore_cache":false}'), +(33683, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.748+00', '{"cached":null,"ignore_cache":false}'), +(33684, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.754+00', '{"cached":null,"ignore_cache":false}'), +(33685, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:13.844+00', '{"cached":null,"ignore_cache":false}'), +(33686, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:14.014+00', '{"cached":null,"ignore_cache":false}'), +(33687, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:14.106+00', '{"cached":null,"ignore_cache":false}'), +(33688, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:14.265+00', '{"cached":null,"ignore_cache":false}'), +(33689, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:15.036+00', '{"cached":null,"ignore_cache":null}'), +(33690, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:54:15.748+00', '{"cached":null,"ignore_cache":false}'), +(33691, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:02.887+00', '{"cached":null,"ignore_cache":null}'), +(33692, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.459+00', '{"cached":null,"ignore_cache":false}'), +(33693, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.481+00', '{"cached":null,"ignore_cache":false}'), +(33694, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.556+00', '{"cached":null,"ignore_cache":false}'), +(33695, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.635+00', '{"cached":null,"ignore_cache":false}'), +(33696, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.836+00', '{"cached":null,"ignore_cache":false}'), +(33697, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.838+00', '{"cached":null,"ignore_cache":false}'), +(33698, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:58:03.912+00', '{"cached":null,"ignore_cache":false}'), +(33699, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:36.232+00', '{"cached":null,"ignore_cache":false}'), +(33700, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:37.296+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33701, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:37.553+00', '{"cached":null,"ignore_cache":false}'), +(33702, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:37.932+00', '{"cached":null,"ignore_cache":false}'), +(33703, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:38.687+00', '{"cached":null,"ignore_cache":false}'), +(33704, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:38.86+00', '{"cached":null,"ignore_cache":false}'), +(33705, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:39.162+00', '{"cached":null,"ignore_cache":false}'), +(33706, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:39.178+00', '{"cached":null,"ignore_cache":false}'), +(33707, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:39.354+00', '{"cached":null,"ignore_cache":false}'), +(33708, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:39.82+00', '{"cached":null,"ignore_cache":false}'), +(33709, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:40.695+00', '{"cached":null,"ignore_cache":false}'), +(33710, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:41.749+00', '{"cached":null,"ignore_cache":false}'), +(33711, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:42.909+00', '{"cached":null,"ignore_cache":false}'), +(33712, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:43.392+00', '{"cached":null,"ignore_cache":false}'), +(33713, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:43.764+00', '{"cached":null,"ignore_cache":false}'), +(33714, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:43.917+00', '{"cached":null,"ignore_cache":false}'), +(33715, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:43.919+00', '{"cached":null,"ignore_cache":false}'), +(33716, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.024+00', '{"cached":null,"ignore_cache":false}'), +(33717, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.025+00', '{"cached":null,"ignore_cache":false}'), +(33718, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.026+00', '{"cached":null,"ignore_cache":false}'), +(33719, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.055+00', '{"cached":null,"ignore_cache":false}'), +(33720, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.242+00', '{"cached":null,"ignore_cache":false}'), +(33721, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.386+00', '{"cached":null,"ignore_cache":false}'), +(33722, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.501+00', '{"cached":null,"ignore_cache":false}'), +(33723, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.662+00', '{"cached":null,"ignore_cache":false}'), +(33724, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:44.967+00', '{"cached":null,"ignore_cache":false}'), +(33725, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:45.086+00', '{"cached":null,"ignore_cache":false}'), +(33726, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:45.161+00', '{"cached":null,"ignore_cache":false}'), +(33727, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 13:59:46.93+00', '{"cached":null,"ignore_cache":false}'), +(33728, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:36.23+00', '{"cached":null,"ignore_cache":false}'), +(33729, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.037+00', '{"cached":null,"ignore_cache":false}'), +(33730, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.134+00', '{"cached":null,"ignore_cache":false}'), +(33731, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.202+00', '{"cached":null,"ignore_cache":false}'), +(33732, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.251+00', '{"cached":null,"ignore_cache":false}'), +(33733, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.517+00', '{"cached":null,"ignore_cache":false}'), +(33734, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.538+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33735, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.559+00', '{"cached":null,"ignore_cache":false}'), +(33736, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.601+00', '{"cached":null,"ignore_cache":false}'), +(33737, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.652+00', '{"cached":null,"ignore_cache":false}'), +(33738, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.773+00', '{"cached":null,"ignore_cache":false}'), +(33739, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:38.871+00', '{"cached":null,"ignore_cache":false}'), +(33740, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:39.116+00', '{"cached":null,"ignore_cache":false}'), +(33741, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:39.503+00', '{"cached":null,"ignore_cache":false}'), +(33742, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 14:04:39.606+00', '{"cached":null,"ignore_cache":false}'), +(33743, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:34.096+00', '{"cached":null,"ignore_cache":false}'), +(33744, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:35.712+00', '{"cached":null,"ignore_cache":false}'), +(33745, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:35.779+00', '{"cached":null,"ignore_cache":false}'), +(33746, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:35.86+00', '{"cached":null,"ignore_cache":false}'), +(33747, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:35.918+00', '{"cached":null,"ignore_cache":false}'), +(33748, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.01+00', '{"cached":null,"ignore_cache":false}'), +(33749, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.076+00', '{"cached":null,"ignore_cache":false}'), +(33750, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.083+00', '{"cached":null,"ignore_cache":false}'), +(33751, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.118+00', '{"cached":null,"ignore_cache":false}'), +(33752, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.167+00', '{"cached":null,"ignore_cache":false}'), +(33753, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.201+00', '{"cached":null,"ignore_cache":false}'), +(33754, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.308+00', '{"cached":null,"ignore_cache":false}'), +(33755, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.319+00', '{"cached":null,"ignore_cache":false}'), +(33756, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.689+00', '{"cached":null,"ignore_cache":false}'), +(33757, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 14:09:36.706+00', '{"cached":null,"ignore_cache":false}'), +(33758, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:03.121+00', '{"cached":null,"ignore_cache":false}'), +(33759, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:04.137+00', '{"cached":null,"ignore_cache":false}'), +(33760, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:04.23+00', '{"cached":null,"ignore_cache":false}'), +(33761, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:04.262+00', '{"cached":null,"ignore_cache":false}'), +(33762, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:04.35+00', '{"cached":null,"ignore_cache":false}'), +(33763, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:04.432+00', '{"cached":null,"ignore_cache":false}'), +(33764, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:04.488+00', '{"cached":null,"ignore_cache":false}'), +(33765, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:04.543+00', '{"cached":null,"ignore_cache":false}'), +(33766, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.773+00', '{"cached":null,"ignore_cache":false}'), +(33767, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:50.884+00', '{"cached":null,"ignore_cache":false}'), +(33768, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:51.073+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33769, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:51.149+00', '{"cached":null,"ignore_cache":false}'), +(33770, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:51.224+00', '{"cached":null,"ignore_cache":false}'), +(33771, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:53.046+00', '{"cached":null,"ignore_cache":false}'), +(33772, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 14:15:53.094+00', '{"cached":null,"ignore_cache":false}'), +(33773, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:19.156+00', '{"cached":null,"ignore_cache":null}'), +(33774, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.217+00', '{"cached":null,"ignore_cache":false}'), +(33775, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.41+00', '{"cached":null,"ignore_cache":false}'), +(33776, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.436+00', '{"cached":null,"ignore_cache":false}'), +(33777, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.514+00', '{"cached":null,"ignore_cache":false}'), +(33778, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.53+00', '{"cached":null,"ignore_cache":false}'), +(33779, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.667+00', '{"cached":null,"ignore_cache":false}'), +(33780, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.669+00', '{"cached":null,"ignore_cache":false}'), +(33781, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:20.692+00', '{"cached":null,"ignore_cache":false}'), +(33782, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:25.676+00', '{"cached":null,"ignore_cache":null}'), +(33783, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:25.821+00', '{"cached":null,"ignore_cache":null}'), +(33784, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:29.868+00', '{"cached":null,"ignore_cache":null}'), +(33785, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.436+00', '{"cached":null,"ignore_cache":false}'), +(33786, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.762+00', '{"cached":null,"ignore_cache":false}'), +(33787, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.815+00', '{"cached":null,"ignore_cache":false}'), +(33788, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.9+00', '{"cached":null,"ignore_cache":false}'), +(33789, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:30.927+00', '{"cached":null,"ignore_cache":false}'), +(33790, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:31.014+00', '{"cached":null,"ignore_cache":false}'), +(33791, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:31.036+00', '{"cached":null,"ignore_cache":false}'), +(33792, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:31.139+00', '{"cached":null,"ignore_cache":false}'), +(33793, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:34.983+00', '{"cached":null,"ignore_cache":null}'), +(33794, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.464+00', '{"cached":null,"ignore_cache":false}'), +(33795, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.647+00', '{"cached":null,"ignore_cache":false}'), +(33796, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.697+00', '{"cached":null,"ignore_cache":false}'), +(33797, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.727+00', '{"cached":null,"ignore_cache":false}'), +(33798, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.758+00', '{"cached":null,"ignore_cache":false}'), +(33799, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.775+00', '{"cached":null,"ignore_cache":false}'), +(33800, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.783+00', '{"cached":null,"ignore_cache":false}'), +(33801, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:35.837+00', '{"cached":null,"ignore_cache":false}'), +(33802, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.472+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33803, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:40.854+00', '{"cached":null,"ignore_cache":false}'), +(33804, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:41.015+00', '{"cached":null,"ignore_cache":false}'), +(33805, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:41.095+00', '{"cached":null,"ignore_cache":false}'), +(33806, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:41.143+00', '{"cached":null,"ignore_cache":false}'), +(33807, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:41.353+00', '{"cached":null,"ignore_cache":false}'), +(33808, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:41.46+00', '{"cached":null,"ignore_cache":false}'), +(33809, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 14:18:41.52+00', '{"cached":null,"ignore_cache":false}'), +(33810, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:20.651+00', '{"cached":null,"ignore_cache":false}'), +(33811, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:21.599+00', '{"cached":null,"ignore_cache":false}'), +(33812, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:21.618+00', '{"cached":null,"ignore_cache":false}'), +(33813, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:21.642+00', '{"cached":null,"ignore_cache":false}'), +(33814, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:21.809+00', '{"cached":null,"ignore_cache":false}'), +(33815, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:21.869+00', '{"cached":null,"ignore_cache":false}'), +(33816, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:21.925+00', '{"cached":null,"ignore_cache":false}'), +(33817, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2022-12-29 14:25:21.946+00', '{"cached":null,"ignore_cache":false}'), +(33818, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:47.891+00', '{"cached":null,"ignore_cache":false}'), +(33819, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:47.92+00', '{"cached":null,"ignore_cache":false}'), +(33820, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:48.095+00', '{"cached":null,"ignore_cache":false}'), +(33821, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:48.113+00', '{"cached":null,"ignore_cache":false}'), +(33822, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:48.499+00', '{"cached":null,"ignore_cache":false}'), +(33823, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:48.61+00', '{"cached":null,"ignore_cache":false}'), +(33824, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 14:26:49.981+00', '{"cached":null,"ignore_cache":false}'), +(33825, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:11.802+00', '{"cached":null,"ignore_cache":null}'), +(33826, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:20.502+00', '{"cached":null,"ignore_cache":false}'), +(33827, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:20.685+00', '{"cached":null,"ignore_cache":false}'), +(33828, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:20.977+00', '{"cached":null,"ignore_cache":false}'), +(33829, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:21.102+00', '{"cached":null,"ignore_cache":false}'), +(33830, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:22.028+00', '{"cached":null,"ignore_cache":false}'), +(33831, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:22.965+00', '{"cached":null,"ignore_cache":false}'), +(33832, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:23.169+00', '{"cached":null,"ignore_cache":false}'), +(33833, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:35.905+00', '{"cached":null,"ignore_cache":null}'), +(33834, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 18:18:37.256+00', '{"cached":null,"ignore_cache":false}'), +(33835, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:04.605+00', '{"cached":null,"ignore_cache":null}'), +(33836, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2022-12-29 18:19:14.024+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33837, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:25.38+00', '{"cached":null,"ignore_cache":null}'), +(33838, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:27.841+00', '{"cached":null,"ignore_cache":false}'), +(33839, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:27.947+00', '{"cached":null,"ignore_cache":false}'), +(33840, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:27.991+00', '{"cached":null,"ignore_cache":false}'), +(33841, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:28.015+00', '{"cached":null,"ignore_cache":false}'), +(33842, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:28.017+00', '{"cached":null,"ignore_cache":false}'), +(33843, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:28.656+00', '{"cached":null,"ignore_cache":false}'), +(33844, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:28.663+00', '{"cached":null,"ignore_cache":false}'), +(33845, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:31.072+00', '{"cached":null,"ignore_cache":false}'), +(33846, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:31.333+00', '{"cached":null,"ignore_cache":false}'), +(33847, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:31.406+00', '{"cached":null,"ignore_cache":false}'), +(33848, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:31.617+00', '{"cached":null,"ignore_cache":false}'), +(33849, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:31.811+00', '{"cached":null,"ignore_cache":false}'), +(33850, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:32.06+00', '{"cached":null,"ignore_cache":false}'), +(33851, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-04 06:34:32.097+00', '{"cached":null,"ignore_cache":false}'), +(33852, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:28.948+00', '{"cached":null,"ignore_cache":null}'), +(33853, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:30.777+00', '{"cached":null,"ignore_cache":false}'), +(33854, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:31.63+00', '{"cached":null,"ignore_cache":false}'), +(33855, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:31.651+00', '{"cached":null,"ignore_cache":false}'), +(33856, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:31.671+00', '{"cached":null,"ignore_cache":false}'), +(33857, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:31.947+00', '{"cached":null,"ignore_cache":false}'), +(33858, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:31.989+00', '{"cached":null,"ignore_cache":false}'), +(33859, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:32.01+00', '{"cached":null,"ignore_cache":false}'), +(33860, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:32.022+00', '{"cached":null,"ignore_cache":false}'), +(33861, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.008+00', '{"cached":null,"ignore_cache":false}'), +(33862, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.122+00', '{"cached":null,"ignore_cache":false}'), +(33863, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.202+00', '{"cached":null,"ignore_cache":false}'), +(33864, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.241+00', '{"cached":null,"ignore_cache":false}'), +(33865, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.261+00', '{"cached":null,"ignore_cache":false}'), +(33866, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.427+00', '{"cached":null,"ignore_cache":false}'), +(33867, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.533+00', '{"cached":null,"ignore_cache":false}'), +(33868, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-04 06:35:35.568+00', '{"cached":null,"ignore_cache":false}'), +(33869, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:26.866+00', '{"cached":null,"ignore_cache":false}'), +(33870, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:26.905+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33871, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:31.581+00', '{"cached":null,"ignore_cache":false}'), +(33872, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:32.9+00', '{"cached":null,"ignore_cache":false}'), +(33873, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:32.928+00', '{"cached":null,"ignore_cache":false}'), +(33874, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:32.975+00', '{"cached":null,"ignore_cache":false}'), +(33875, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:32.981+00', '{"cached":null,"ignore_cache":false}'), +(33876, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.018+00', '{"cached":null,"ignore_cache":false}'), +(33877, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.102+00', '{"cached":null,"ignore_cache":false}'), +(33878, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.116+00', '{"cached":null,"ignore_cache":false}'), +(33879, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.117+00', '{"cached":null,"ignore_cache":false}'), +(33880, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.118+00', '{"cached":null,"ignore_cache":false}'), +(33881, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.141+00', '{"cached":null,"ignore_cache":false}'), +(33882, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.18+00', '{"cached":null,"ignore_cache":false}'), +(33883, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.274+00', '{"cached":null,"ignore_cache":false}'), +(33884, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.285+00', '{"cached":null,"ignore_cache":false}'), +(33885, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.314+00', '{"cached":null,"ignore_cache":false}'), +(33886, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.41+00', '{"cached":null,"ignore_cache":false}'), +(33887, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.573+00', '{"cached":null,"ignore_cache":false}'), +(33888, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.61+00', '{"cached":null,"ignore_cache":false}'), +(33889, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.661+00', '{"cached":null,"ignore_cache":false}'), +(33890, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.769+00', '{"cached":null,"ignore_cache":false}'), +(33891, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.774+00', '{"cached":null,"ignore_cache":false}'), +(33892, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.778+00', '{"cached":null,"ignore_cache":false}'), +(33893, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:33.792+00', '{"cached":null,"ignore_cache":false}'), +(33894, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:36.469+00', '{"cached":null,"ignore_cache":false}'), +(33895, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:36.576+00', '{"cached":null,"ignore_cache":false}'), +(33896, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:36.588+00', '{"cached":null,"ignore_cache":false}'), +(33897, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-09 12:33:36.609+00', '{"cached":null,"ignore_cache":false}'), +(33898, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:36.304+00', '{"cached":null,"ignore_cache":false}'), +(33899, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:38.193+00', '{"cached":null,"ignore_cache":false}'), +(33900, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:38.195+00', '{"cached":null,"ignore_cache":false}'), +(33901, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:38.198+00', '{"cached":null,"ignore_cache":false}'), +(33902, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:38.547+00', '{"cached":null,"ignore_cache":false}'), +(33903, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:38.555+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33904, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:38.584+00', '{"cached":null,"ignore_cache":false}'), +(33905, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:39.7+00', '{"cached":null,"ignore_cache":false}'), +(33906, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:39.713+00', '{"cached":null,"ignore_cache":false}'), +(33907, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:39.721+00', '{"cached":null,"ignore_cache":false}'), +(33908, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:39.724+00', '{"cached":null,"ignore_cache":false}'), +(33909, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:39.734+00', '{"cached":null,"ignore_cache":false}'), +(33910, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:39.738+00', '{"cached":null,"ignore_cache":false}'), +(33911, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:42.784+00', '{"cached":null,"ignore_cache":false}'), +(33912, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-09 12:38:42.788+00', '{"cached":null,"ignore_cache":false}'), +(33913, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:20.834+00', '{"cached":null,"ignore_cache":false}'), +(33914, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:22.291+00', '{"cached":null,"ignore_cache":false}'), +(33915, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:22.305+00', '{"cached":null,"ignore_cache":false}'), +(33916, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:22.307+00', '{"cached":null,"ignore_cache":false}'), +(33917, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:22.322+00', '{"cached":null,"ignore_cache":false}'), +(33918, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:22.324+00', '{"cached":null,"ignore_cache":false}'), +(33919, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:22.451+00', '{"cached":null,"ignore_cache":false}'), +(33920, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:23.341+00', '{"cached":null,"ignore_cache":false}'), +(33921, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:23.421+00', '{"cached":null,"ignore_cache":false}'), +(33922, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:23.436+00', '{"cached":null,"ignore_cache":false}'), +(33923, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:23.439+00', '{"cached":null,"ignore_cache":false}'), +(33924, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:23.454+00', '{"cached":null,"ignore_cache":false}'), +(33925, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:23.493+00', '{"cached":null,"ignore_cache":false}'), +(33926, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:24.776+00', '{"cached":null,"ignore_cache":false}'), +(33927, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-09 12:43:24.781+00', '{"cached":null,"ignore_cache":false}'), +(33928, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:21.517+00', '{"cached":null,"ignore_cache":false}'), +(33929, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:22.322+00', '{"cached":null,"ignore_cache":false}'), +(33930, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:22.342+00', '{"cached":null,"ignore_cache":false}'), +(33931, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:22.347+00', '{"cached":null,"ignore_cache":false}'), +(33932, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:22.348+00', '{"cached":null,"ignore_cache":false}'), +(33933, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:22.383+00', '{"cached":null,"ignore_cache":false}'), +(33934, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:22.425+00', '{"cached":null,"ignore_cache":false}'), +(33935, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.018+00', '{"cached":null,"ignore_cache":false}'), +(33936, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.049+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33937, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.067+00', '{"cached":null,"ignore_cache":false}'), +(33938, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.075+00', '{"cached":null,"ignore_cache":false}'), +(33939, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.116+00', '{"cached":null,"ignore_cache":false}'), +(33940, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.117+00', '{"cached":null,"ignore_cache":false}'), +(33941, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.847+00', '{"cached":null,"ignore_cache":false}'), +(33942, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-09 12:48:23.866+00', '{"cached":null,"ignore_cache":false}'), +(33943, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:37.557+00', '{"cached":null,"ignore_cache":false}'), +(33944, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:37.993+00', '{"cached":null,"ignore_cache":false}'), +(33945, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.038+00', '{"cached":null,"ignore_cache":false}'), +(33946, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.087+00', '{"cached":null,"ignore_cache":false}'), +(33947, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.105+00', '{"cached":null,"ignore_cache":false}'), +(33948, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.108+00', '{"cached":null,"ignore_cache":false}'), +(33949, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.134+00', '{"cached":null,"ignore_cache":false}'), +(33950, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.169+00', '{"cached":null,"ignore_cache":false}'), +(33951, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.189+00', '{"cached":null,"ignore_cache":false}'), +(33952, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:38.202+00', '{"cached":null,"ignore_cache":false}'), +(33953, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:42.021+00', '{"cached":null,"ignore_cache":false}'), +(33954, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:42.183+00', '{"cached":null,"ignore_cache":false}'), +(33955, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:03:42.237+00', '{"cached":null,"ignore_cache":false}'), +(33956, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:46.037+00', '{"cached":null,"ignore_cache":false}'), +(33957, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:46.051+00', '{"cached":null,"ignore_cache":false}'), +(33958, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:46.054+00', '{"cached":null,"ignore_cache":false}'), +(33959, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:46.612+00', '{"cached":null,"ignore_cache":false}'), +(33960, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:46.638+00', '{"cached":null,"ignore_cache":false}'), +(33961, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:47.619+00', '{"cached":null,"ignore_cache":false}'), +(33962, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:08:47.627+00', '{"cached":null,"ignore_cache":false}'), +(33963, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:46.415+00', '{"cached":null,"ignore_cache":false}'), +(33964, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:46.433+00', '{"cached":null,"ignore_cache":false}'), +(33965, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:46.446+00', '{"cached":null,"ignore_cache":false}'), +(33966, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:47.01+00', '{"cached":null,"ignore_cache":false}'), +(33967, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:47.045+00', '{"cached":null,"ignore_cache":false}'), +(33968, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:47.816+00', '{"cached":null,"ignore_cache":false}'), +(33969, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:13:47.833+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(33970, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:47.821+00', '{"cached":null,"ignore_cache":false}'), +(33971, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:47.872+00', '{"cached":null,"ignore_cache":false}'), +(33972, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:47.873+00', '{"cached":null,"ignore_cache":false}'), +(33973, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:47.874+00', '{"cached":null,"ignore_cache":false}'), +(33974, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:47.875+00', '{"cached":null,"ignore_cache":false}'), +(33975, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:47.875+00', '{"cached":null,"ignore_cache":false}'), +(33976, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:48.325+00', '{"cached":null,"ignore_cache":false}'), +(33977, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:48.369+00', '{"cached":null,"ignore_cache":false}'), +(33978, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:48.395+00', '{"cached":null,"ignore_cache":false}'), +(33979, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:50.152+00', '{"cached":null,"ignore_cache":false}'), +(33980, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:50.153+00', '{"cached":null,"ignore_cache":false}'), +(33981, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:50.217+00', '{"cached":null,"ignore_cache":false}'), +(33982, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:16:50.249+00', '{"cached":null,"ignore_cache":false}'), +(33983, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:51.607+00', '{"cached":null,"ignore_cache":false}'), +(33984, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:51.623+00', '{"cached":null,"ignore_cache":false}'), +(33985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:51.626+00', '{"cached":null,"ignore_cache":false}'), +(33986, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:52.316+00', '{"cached":null,"ignore_cache":false}'), +(33987, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:52.327+00', '{"cached":null,"ignore_cache":false}'), +(33988, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:53.854+00', '{"cached":null,"ignore_cache":false}'), +(33989, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:18:53.856+00', '{"cached":null,"ignore_cache":false}'), +(33990, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:33.065+00', '{"cached":null,"ignore_cache":false}'), +(33991, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.76+00', '{"cached":null,"ignore_cache":false}'), +(33992, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.761+00', '{"cached":null,"ignore_cache":false}'), +(33993, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.826+00', '{"cached":null,"ignore_cache":false}'), +(33994, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.851+00', '{"cached":null,"ignore_cache":false}'), +(33995, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.863+00', '{"cached":null,"ignore_cache":false}'), +(33996, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.867+00', '{"cached":null,"ignore_cache":false}'), +(33997, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.869+00', '{"cached":null,"ignore_cache":false}'), +(33998, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.871+00', '{"cached":null,"ignore_cache":false}'), +(33999, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:34.942+00', '{"cached":null,"ignore_cache":false}'), +(34000, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:35.952+00', '{"cached":null,"ignore_cache":false}'), +(34001, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:36.21+00', '{"cached":null,"ignore_cache":false}'), +(34002, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:36.211+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34003, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:36.213+00', '{"cached":null,"ignore_cache":false}'), +(34004, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:36.214+00', '{"cached":null,"ignore_cache":false}'), +(34005, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:36.214+00', '{"cached":null,"ignore_cache":false}'), +(34006, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:36.331+00', '{"cached":null,"ignore_cache":false}'), +(34007, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:36.385+00', '{"cached":null,"ignore_cache":false}'), +(34008, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:37.992+00', '{"cached":null,"ignore_cache":false}'), +(34009, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:38.048+00', '{"cached":null,"ignore_cache":false}'), +(34010, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:38.102+00', '{"cached":null,"ignore_cache":false}'), +(34011, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:19:38.139+00', '{"cached":null,"ignore_cache":false}'), +(34012, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:31.432+00', '{"cached":null,"ignore_cache":false}'), +(34013, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:31.464+00', '{"cached":null,"ignore_cache":false}'), +(34014, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.944+00', '{"cached":null,"ignore_cache":false}'), +(34015, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.946+00', '{"cached":null,"ignore_cache":false}'), +(34016, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.947+00', '{"cached":null,"ignore_cache":false}'), +(34017, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.953+00', '{"cached":null,"ignore_cache":false}'), +(34018, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.974+00', '{"cached":null,"ignore_cache":false}'), +(34019, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.975+00', '{"cached":null,"ignore_cache":false}'), +(34020, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.989+00', '{"cached":null,"ignore_cache":false}'), +(34021, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:32.99+00', '{"cached":null,"ignore_cache":false}'), +(34022, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:33.06+00', '{"cached":null,"ignore_cache":false}'), +(34023, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:33.096+00', '{"cached":null,"ignore_cache":false}'), +(34024, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:33.339+00', '{"cached":null,"ignore_cache":false}'), +(34025, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:33.382+00', '{"cached":null,"ignore_cache":false}'), +(34026, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:34.761+00', '{"cached":null,"ignore_cache":false}'), +(34027, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:34.884+00', '{"cached":null,"ignore_cache":false}'), +(34028, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:34.911+00', '{"cached":null,"ignore_cache":false}'), +(34029, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.28+00', '{"cached":null,"ignore_cache":false}'), +(34030, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.292+00', '{"cached":null,"ignore_cache":false}'), +(34031, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.294+00', '{"cached":null,"ignore_cache":false}'), +(34032, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.295+00', '{"cached":null,"ignore_cache":false}'), +(34033, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.315+00', '{"cached":null,"ignore_cache":false}'), +(34034, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.342+00', '{"cached":null,"ignore_cache":false}'), +(34035, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.356+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34036, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.367+00', '{"cached":null,"ignore_cache":false}'), +(34037, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:35.385+00', '{"cached":null,"ignore_cache":false}'), +(34038, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:38.223+00', '{"cached":null,"ignore_cache":false}'), +(34039, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:38.381+00', '{"cached":null,"ignore_cache":false}'), +(34040, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:38.406+00', '{"cached":null,"ignore_cache":false}'), +(34041, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:21:38.407+00', '{"cached":null,"ignore_cache":false}'), +(34042, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:54.096+00', '{"cached":null,"ignore_cache":false}'), +(34043, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:54.153+00', '{"cached":null,"ignore_cache":false}'), +(34044, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:54.171+00', '{"cached":null,"ignore_cache":false}'), +(34045, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:54.788+00', '{"cached":null,"ignore_cache":false}'), +(34046, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:54.81+00', '{"cached":null,"ignore_cache":false}'), +(34047, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:56.009+00', '{"cached":null,"ignore_cache":false}'), +(34048, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:23:56.069+00', '{"cached":null,"ignore_cache":false}'), +(34049, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:36.908+00', '{"cached":null,"ignore_cache":false}'), +(34050, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.358+00', '{"cached":null,"ignore_cache":false}'), +(34051, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.542+00', '{"cached":null,"ignore_cache":false}'), +(34052, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.563+00', '{"cached":null,"ignore_cache":false}'), +(34053, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.602+00', '{"cached":null,"ignore_cache":false}'), +(34054, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.606+00', '{"cached":null,"ignore_cache":false}'), +(34055, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.649+00', '{"cached":null,"ignore_cache":false}'), +(34056, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.794+00', '{"cached":null,"ignore_cache":false}'), +(34057, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:37.936+00', '{"cached":null,"ignore_cache":false}'), +(34058, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:38.169+00', '{"cached":null,"ignore_cache":false}'), +(34059, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:38.223+00', '{"cached":null,"ignore_cache":false}'), +(34060, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:38.225+00', '{"cached":null,"ignore_cache":false}'), +(34061, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:38.248+00', '{"cached":null,"ignore_cache":false}'), +(34062, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:38.702+00', '{"cached":null,"ignore_cache":false}'), +(34063, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:24:38.861+00', '{"cached":null,"ignore_cache":false}'), +(34064, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:21.33+00', '{"cached":null,"ignore_cache":false}'), +(34065, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:22.272+00', '{"cached":null,"ignore_cache":false}'), +(34066, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:22.512+00', '{"cached":null,"ignore_cache":false}'), +(34067, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:22.648+00', '{"cached":null,"ignore_cache":false}'), +(34068, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:22.816+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34069, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:22.874+00', '{"cached":null,"ignore_cache":false}'), +(34070, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:22.906+00', '{"cached":null,"ignore_cache":false}'), +(34071, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:23.872+00', '{"cached":null,"ignore_cache":false}'), +(34072, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:23.891+00', '{"cached":null,"ignore_cache":false}'), +(34073, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:24.138+00', '{"cached":null,"ignore_cache":false}'), +(34074, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:24.226+00', '{"cached":null,"ignore_cache":false}'), +(34075, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:24.25+00', '{"cached":null,"ignore_cache":false}'), +(34076, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:24.265+00', '{"cached":null,"ignore_cache":false}'), +(34077, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:25.165+00', '{"cached":null,"ignore_cache":false}'), +(34078, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:26:25.256+00', '{"cached":null,"ignore_cache":false}'), +(34079, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:32.611+00', '{"cached":null,"ignore_cache":false}'), +(34080, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.305+00', '{"cached":null,"ignore_cache":false}'), +(34081, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.306+00', '{"cached":null,"ignore_cache":false}'), +(34082, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.315+00', '{"cached":null,"ignore_cache":false}'), +(34083, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.33+00', '{"cached":null,"ignore_cache":false}'), +(34084, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.36+00', '{"cached":null,"ignore_cache":false}'), +(34085, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.361+00', '{"cached":null,"ignore_cache":false}'), +(34086, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.927+00', '{"cached":null,"ignore_cache":false}'), +(34087, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.94+00', '{"cached":null,"ignore_cache":false}'), +(34088, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.958+00', '{"cached":null,"ignore_cache":false}'), +(34089, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.962+00', '{"cached":null,"ignore_cache":false}'), +(34090, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.975+00', '{"cached":null,"ignore_cache":false}'), +(34091, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:33.993+00', '{"cached":null,"ignore_cache":false}'), +(34092, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:34.443+00', '{"cached":null,"ignore_cache":false}'), +(34093, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:29:34.448+00', '{"cached":null,"ignore_cache":false}'), +(34094, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.5+00', '{"cached":null,"ignore_cache":false}'), +(34095, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:34.537+00', '{"cached":null,"ignore_cache":false}'), +(34096, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:35.49+00', '{"cached":null,"ignore_cache":false}'), +(34097, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:35.494+00', '{"cached":null,"ignore_cache":false}'), +(34098, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:35.691+00', '{"cached":null,"ignore_cache":false}'), +(34099, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:35.696+00', '{"cached":null,"ignore_cache":false}'), +(34100, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:35.885+00', '{"cached":null,"ignore_cache":false}'), +(34101, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:36.38+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34102, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:36.381+00', '{"cached":null,"ignore_cache":false}'), +(34103, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:36.723+00', '{"cached":null,"ignore_cache":false}'), +(34104, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:36.735+00', '{"cached":null,"ignore_cache":false}'), +(34105, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:37.149+00', '{"cached":null,"ignore_cache":false}'), +(34106, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:37.157+00', '{"cached":null,"ignore_cache":false}'), +(34107, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:31:37.344+00', '{"cached":null,"ignore_cache":false}'), +(34108, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.613+00', '{"cached":null,"ignore_cache":false}'), +(34109, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:19.672+00', '{"cached":null,"ignore_cache":false}'), +(34110, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.306+00', '{"cached":null,"ignore_cache":false}'), +(34111, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.313+00', '{"cached":null,"ignore_cache":false}'), +(34112, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.389+00', '{"cached":null,"ignore_cache":false}'), +(34113, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.405+00', '{"cached":null,"ignore_cache":false}'), +(34114, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.407+00', '{"cached":null,"ignore_cache":false}'), +(34115, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.43+00', '{"cached":null,"ignore_cache":false}'), +(34116, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.449+00', '{"cached":null,"ignore_cache":false}'), +(34117, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.451+00', '{"cached":null,"ignore_cache":false}'), +(34118, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.452+00', '{"cached":null,"ignore_cache":false}'), +(34119, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.757+00', '{"cached":null,"ignore_cache":false}'), +(34120, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.799+00', '{"cached":null,"ignore_cache":false}'), +(34121, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:21.808+00', '{"cached":null,"ignore_cache":false}'), +(34122, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:24.288+00', '{"cached":null,"ignore_cache":false}'), +(34123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:24.854+00', '{"cached":null,"ignore_cache":false}'), +(34124, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:24.914+00', '{"cached":null,"ignore_cache":false}'), +(34125, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:25.06+00', '{"cached":null,"ignore_cache":false}'), +(34126, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:25.245+00', '{"cached":null,"ignore_cache":false}'), +(34127, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:25.247+00', '{"cached":null,"ignore_cache":false}'), +(34128, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:25.248+00', '{"cached":null,"ignore_cache":false}'), +(34129, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:25.985+00', '{"cached":null,"ignore_cache":false}'), +(34130, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:25.998+00', '{"cached":null,"ignore_cache":false}'), +(34131, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:25.999+00', '{"cached":null,"ignore_cache":false}'), +(34132, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:26+00', '{"cached":null,"ignore_cache":false}'), +(34133, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:26.002+00', '{"cached":null,"ignore_cache":false}'), +(34134, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:28.312+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34135, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:28.413+00', '{"cached":null,"ignore_cache":false}'), +(34136, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:28.495+00', '{"cached":null,"ignore_cache":false}'), +(34137, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:32:28.532+00', '{"cached":null,"ignore_cache":false}'), +(34138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:37.662+00', '{"cached":null,"ignore_cache":false}'), +(34139, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:38.656+00', '{"cached":null,"ignore_cache":false}'), +(34140, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:38.692+00', '{"cached":null,"ignore_cache":false}'), +(34141, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:38.727+00', '{"cached":null,"ignore_cache":false}'), +(34142, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:38.843+00', '{"cached":null,"ignore_cache":false}'), +(34143, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:38.86+00', '{"cached":null,"ignore_cache":false}'), +(34144, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:38.869+00', '{"cached":null,"ignore_cache":false}'), +(34145, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:40.197+00', '{"cached":null,"ignore_cache":false}'), +(34146, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:40.255+00', '{"cached":null,"ignore_cache":false}'), +(34147, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:40.285+00', '{"cached":null,"ignore_cache":false}'), +(34148, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:40.301+00', '{"cached":null,"ignore_cache":false}'), +(34149, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:40.364+00', '{"cached":null,"ignore_cache":false}'), +(34150, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:40.366+00', '{"cached":null,"ignore_cache":false}'), +(34151, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:41.873+00', '{"cached":null,"ignore_cache":false}'), +(34152, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:34:41.888+00', '{"cached":null,"ignore_cache":false}'), +(34153, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:27.215+00', '{"cached":null,"ignore_cache":false}'), +(34154, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:27.77+00', '{"cached":null,"ignore_cache":false}'), +(34155, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:27.786+00', '{"cached":null,"ignore_cache":false}'), +(34156, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:27.787+00', '{"cached":null,"ignore_cache":false}'), +(34157, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:27.79+00', '{"cached":null,"ignore_cache":false}'), +(34158, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:28.034+00', '{"cached":null,"ignore_cache":false}'), +(34159, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:28.083+00', '{"cached":null,"ignore_cache":false}'), +(34160, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:29.374+00', '{"cached":null,"ignore_cache":false}'), +(34161, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:29.406+00', '{"cached":null,"ignore_cache":false}'), +(34162, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:29.457+00', '{"cached":null,"ignore_cache":false}'), +(34163, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:29.482+00', '{"cached":null,"ignore_cache":false}'), +(34164, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:29.541+00', '{"cached":null,"ignore_cache":false}'), +(34165, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:29.544+00', '{"cached":null,"ignore_cache":false}'), +(34166, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:31.451+00', '{"cached":null,"ignore_cache":false}'), +(34167, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:37:31.538+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34168, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:23.65+00', '{"cached":null,"ignore_cache":false}'), +(34169, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:24.681+00', '{"cached":null,"ignore_cache":false}'), +(34170, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:24.683+00', '{"cached":null,"ignore_cache":false}'), +(34171, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:24.7+00', '{"cached":null,"ignore_cache":false}'), +(34172, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:24.726+00', '{"cached":null,"ignore_cache":false}'), +(34173, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:24.73+00', '{"cached":null,"ignore_cache":false}'), +(34174, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:24.88+00', '{"cached":null,"ignore_cache":false}'), +(34175, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:26.216+00', '{"cached":null,"ignore_cache":false}'), +(34176, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:26.244+00', '{"cached":null,"ignore_cache":false}'), +(34177, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:26.246+00', '{"cached":null,"ignore_cache":false}'), +(34178, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:26.261+00', '{"cached":null,"ignore_cache":false}'), +(34179, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:26.324+00', '{"cached":null,"ignore_cache":false}'), +(34180, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:26.326+00', '{"cached":null,"ignore_cache":false}'), +(34181, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:27.675+00', '{"cached":null,"ignore_cache":false}'), +(34182, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:42:27.687+00', '{"cached":null,"ignore_cache":false}'), +(34183, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:22.869+00', '{"cached":null,"ignore_cache":false}'), +(34184, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.753+00', '{"cached":null,"ignore_cache":false}'), +(34185, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.783+00', '{"cached":null,"ignore_cache":false}'), +(34186, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.802+00', '{"cached":null,"ignore_cache":false}'), +(34187, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.803+00', '{"cached":null,"ignore_cache":false}'), +(34188, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.804+00', '{"cached":null,"ignore_cache":false}'), +(34189, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.805+00', '{"cached":null,"ignore_cache":false}'), +(34190, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.814+00', '{"cached":null,"ignore_cache":false}'), +(34191, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.867+00', '{"cached":null,"ignore_cache":false}'), +(34192, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.869+00', '{"cached":null,"ignore_cache":false}'), +(34193, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.872+00', '{"cached":null,"ignore_cache":false}'), +(34194, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.873+00', '{"cached":null,"ignore_cache":false}'), +(34195, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.874+00', '{"cached":null,"ignore_cache":false}'), +(34196, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.875+00', '{"cached":null,"ignore_cache":false}'), +(34197, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:47:31.876+00', '{"cached":null,"ignore_cache":false}'), +(34198, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:50.322+00', '{"cached":null,"ignore_cache":false}'), +(34199, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:50.776+00', '{"cached":null,"ignore_cache":false}'), +(34200, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:50.798+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34201, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:50.844+00', '{"cached":null,"ignore_cache":false}'), +(34202, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:50.86+00', '{"cached":null,"ignore_cache":false}'), +(34203, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:50.956+00', '{"cached":null,"ignore_cache":false}'), +(34204, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:50.996+00', '{"cached":null,"ignore_cache":false}'), +(34205, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:51.647+00', '{"cached":null,"ignore_cache":false}'), +(34206, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:51.662+00', '{"cached":null,"ignore_cache":false}'), +(34207, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:51.675+00', '{"cached":null,"ignore_cache":false}'), +(34208, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:51.68+00', '{"cached":null,"ignore_cache":false}'), +(34209, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:51.718+00', '{"cached":null,"ignore_cache":false}'), +(34210, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:51.736+00', '{"cached":null,"ignore_cache":false}'), +(34211, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:52.659+00', '{"cached":null,"ignore_cache":false}'), +(34212, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 10:57:52.663+00', '{"cached":null,"ignore_cache":false}'), +(34213, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:47.79+00', '{"cached":null,"ignore_cache":false}'), +(34214, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:48.398+00', '{"cached":null,"ignore_cache":false}'), +(34215, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:48.416+00', '{"cached":null,"ignore_cache":false}'), +(34216, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:48.418+00', '{"cached":null,"ignore_cache":false}'), +(34217, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:48.472+00', '{"cached":null,"ignore_cache":false}'), +(34218, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:48.477+00', '{"cached":null,"ignore_cache":false}'), +(34219, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:48.503+00', '{"cached":null,"ignore_cache":false}'), +(34220, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.346+00', '{"cached":null,"ignore_cache":false}'), +(34221, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.814+00', '{"cached":null,"ignore_cache":false}'), +(34222, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.845+00', '{"cached":null,"ignore_cache":false}'), +(34223, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.885+00', '{"cached":null,"ignore_cache":false}'), +(34224, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.886+00', '{"cached":null,"ignore_cache":false}'), +(34225, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.886+00', '{"cached":null,"ignore_cache":false}'), +(34226, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.887+00', '{"cached":null,"ignore_cache":false}'), +(34227, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:02:54.888+00', '{"cached":null,"ignore_cache":false}'), +(34228, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:28.111+00', '{"cached":null,"ignore_cache":false}'), +(34229, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:28.118+00', '{"cached":null,"ignore_cache":false}'), +(34230, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:28.139+00', '{"cached":null,"ignore_cache":false}'), +(34231, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:28.141+00', '{"cached":null,"ignore_cache":false}'), +(34232, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:28.142+00', '{"cached":null,"ignore_cache":false}'), +(34233, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:28.143+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34234, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:30.879+00', '{"cached":null,"ignore_cache":false}'), +(34235, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:30.973+00', '{"cached":null,"ignore_cache":false}'), +(34236, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:30.987+00', '{"cached":null,"ignore_cache":false}'), +(34237, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:31.003+00', '{"cached":null,"ignore_cache":false}'), +(34238, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:35.759+00', '{"cached":null,"ignore_cache":false}'), +(34239, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:35.819+00', '{"cached":null,"ignore_cache":false}'), +(34240, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:35.892+00', '{"cached":null,"ignore_cache":false}'), +(34241, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:05:36.074+00', '{"cached":null,"ignore_cache":false}'), +(34242, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:11.824+00', '{"cached":null,"ignore_cache":false}'), +(34243, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:11.827+00', '{"cached":null,"ignore_cache":false}'), +(34244, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:11.828+00', '{"cached":null,"ignore_cache":false}'), +(34245, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:11.869+00', '{"cached":null,"ignore_cache":false}'), +(34246, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:11.877+00', '{"cached":null,"ignore_cache":false}'), +(34247, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:11.939+00', '{"cached":null,"ignore_cache":false}'), +(34248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:12.59+00', '{"cached":null,"ignore_cache":false}'), +(34249, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:12.68+00', '{"cached":null,"ignore_cache":false}'), +(34250, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:12.73+00', '{"cached":null,"ignore_cache":false}'), +(34251, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:14.148+00', '{"cached":null,"ignore_cache":false}'), +(34252, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:14.32+00', '{"cached":null,"ignore_cache":false}'), +(34253, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:14.426+00', '{"cached":null,"ignore_cache":false}'), +(34254, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:06:14.431+00', '{"cached":null,"ignore_cache":false}'), +(34255, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:08.133+00', '{"cached":null,"ignore_cache":false}'), +(34256, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:08.249+00', '{"cached":null,"ignore_cache":false}'), +(34257, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:08.25+00', '{"cached":null,"ignore_cache":false}'), +(34258, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:08.263+00', '{"cached":null,"ignore_cache":false}'), +(34259, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:08.273+00', '{"cached":null,"ignore_cache":false}'), +(34260, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:08.275+00', '{"cached":null,"ignore_cache":false}'), +(34261, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:09.444+00', '{"cached":null,"ignore_cache":false}'), +(34262, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:09.454+00', '{"cached":null,"ignore_cache":false}'), +(34263, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:09.466+00', '{"cached":null,"ignore_cache":false}'), +(34264, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:09.469+00', '{"cached":null,"ignore_cache":false}'), +(34265, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:12.459+00', '{"cached":null,"ignore_cache":false}'), +(34266, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:12.503+00', '{"cached":null,"ignore_cache":false}'), +(34267, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:12.519+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34268, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:12.565+00', '{"cached":null,"ignore_cache":false}'), +(34269, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.585+00', '{"cached":null,"ignore_cache":false}'), +(34270, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.69+00', '{"cached":null,"ignore_cache":false}'), +(34271, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:37.704+00', '{"cached":null,"ignore_cache":false}'), +(34272, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.051+00', '{"cached":null,"ignore_cache":false}'), +(34273, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.068+00', '{"cached":null,"ignore_cache":false}'), +(34274, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.084+00', '{"cached":null,"ignore_cache":false}'), +(34275, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.169+00', '{"cached":null,"ignore_cache":false}'), +(34276, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.44+00', '{"cached":null,"ignore_cache":false}'), +(34277, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:38.85+00', '{"cached":null,"ignore_cache":false}'), +(34278, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:39.222+00', '{"cached":null,"ignore_cache":false}'), +(34279, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:39.345+00', '{"cached":null,"ignore_cache":false}'), +(34280, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:39.356+00', '{"cached":null,"ignore_cache":false}'), +(34281, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:39.672+00', '{"cached":null,"ignore_cache":false}'), +(34282, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:07:40.105+00', '{"cached":null,"ignore_cache":false}'), +(34283, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:15.456+00', '{"cached":null,"ignore_cache":false}'), +(34284, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:15.752+00', '{"cached":null,"ignore_cache":false}'), +(34285, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:15.791+00', '{"cached":null,"ignore_cache":false}'), +(34286, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:15.894+00', '{"cached":null,"ignore_cache":false}'), +(34287, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:16.35+00', '{"cached":null,"ignore_cache":false}'), +(34288, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:16.658+00', '{"cached":null,"ignore_cache":false}'), +(34289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:16.661+00', '{"cached":null,"ignore_cache":false}'), +(34290, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:16.74+00', '{"cached":null,"ignore_cache":false}'), +(34291, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:16.951+00', '{"cached":null,"ignore_cache":false}'), +(34292, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:17.097+00', '{"cached":null,"ignore_cache":false}'), +(34293, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:17.628+00', '{"cached":null,"ignore_cache":false}'), +(34294, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.852+00', '{"cached":null,"ignore_cache":false}'), +(34295, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.858+00', '{"cached":null,"ignore_cache":false}'), +(34296, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.869+00', '{"cached":null,"ignore_cache":false}'), +(34297, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.87+00', '{"cached":null,"ignore_cache":false}'), +(34298, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.922+00', '{"cached":null,"ignore_cache":false}'), +(34299, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:47.945+00', '{"cached":null,"ignore_cache":false}'), +(34300, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:48.305+00', '{"cached":null,"ignore_cache":false}'), +(34301, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:48.355+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34302, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:48.541+00', '{"cached":null,"ignore_cache":false}'), +(34303, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:48.599+00', '{"cached":null,"ignore_cache":false}'), +(34304, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:49.028+00', '{"cached":null,"ignore_cache":false}'), +(34305, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:49.343+00', '{"cached":null,"ignore_cache":false}'), +(34306, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:49.563+00', '{"cached":null,"ignore_cache":false}'), +(34307, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:08:49.864+00', '{"cached":null,"ignore_cache":false}'), +(34308, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:16.948+00', '{"cached":null,"ignore_cache":false}'), +(34309, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:16.962+00', '{"cached":null,"ignore_cache":false}'), +(34310, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:16.963+00', '{"cached":null,"ignore_cache":false}'), +(34311, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:16.979+00', '{"cached":null,"ignore_cache":false}'), +(34312, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:17.022+00', '{"cached":null,"ignore_cache":false}'), +(34313, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:17.113+00', '{"cached":null,"ignore_cache":false}'), +(34314, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:18.249+00', '{"cached":null,"ignore_cache":false}'), +(34315, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:18.346+00', '{"cached":null,"ignore_cache":false}'), +(34316, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:18.377+00', '{"cached":null,"ignore_cache":false}'), +(34317, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:18.514+00', '{"cached":null,"ignore_cache":false}'), +(34318, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:20.352+00', '{"cached":null,"ignore_cache":false}'), +(34319, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:20.517+00', '{"cached":null,"ignore_cache":false}'), +(34320, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:20.54+00', '{"cached":null,"ignore_cache":false}'), +(34321, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:09:20.612+00', '{"cached":null,"ignore_cache":false}'), +(34322, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:43.316+00', '{"cached":null,"ignore_cache":false}'), +(34323, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:43.348+00', '{"cached":null,"ignore_cache":false}'), +(34324, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:43.476+00', '{"cached":null,"ignore_cache":false}'), +(34325, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:43.677+00', '{"cached":null,"ignore_cache":false}'), +(34326, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:43.684+00', '{"cached":null,"ignore_cache":false}'), +(34327, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:43.905+00', '{"cached":null,"ignore_cache":false}'), +(34328, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:45.086+00', '{"cached":null,"ignore_cache":false}'), +(34329, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:45.186+00', '{"cached":null,"ignore_cache":false}'), +(34330, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:45.187+00', '{"cached":null,"ignore_cache":false}'), +(34331, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:45.259+00', '{"cached":null,"ignore_cache":false}'), +(34332, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:46.188+00', '{"cached":null,"ignore_cache":false}'), +(34333, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:46.201+00', '{"cached":null,"ignore_cache":false}'), +(34334, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:46.213+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34335, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:11:46.231+00', '{"cached":null,"ignore_cache":false}'), +(34336, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.729+00', '{"cached":null,"ignore_cache":false}'), +(34337, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.852+00', '{"cached":null,"ignore_cache":false}'), +(34338, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.867+00', '{"cached":null,"ignore_cache":false}'), +(34339, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:10.95+00', '{"cached":null,"ignore_cache":false}'), +(34340, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:11.133+00', '{"cached":null,"ignore_cache":false}'), +(34341, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:11.185+00', '{"cached":null,"ignore_cache":false}'), +(34342, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:11.266+00', '{"cached":null,"ignore_cache":false}'), +(34343, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:11.331+00', '{"cached":null,"ignore_cache":false}'), +(34344, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:11.372+00', '{"cached":null,"ignore_cache":false}'), +(34345, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:11.601+00', '{"cached":null,"ignore_cache":false}'), +(34346, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:12.545+00', '{"cached":null,"ignore_cache":false}'), +(34347, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:12.584+00', '{"cached":null,"ignore_cache":false}'), +(34348, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:12.602+00', '{"cached":null,"ignore_cache":false}'), +(34349, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:12:12.63+00', '{"cached":null,"ignore_cache":false}'), +(34350, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:53.242+00', '{"cached":null,"ignore_cache":false}'), +(34351, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:53.266+00', '{"cached":null,"ignore_cache":false}'), +(34352, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:53.282+00', '{"cached":null,"ignore_cache":false}'), +(34353, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:53.856+00', '{"cached":null,"ignore_cache":false}'), +(34354, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:53.857+00', '{"cached":null,"ignore_cache":false}'), +(34355, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:54.917+00', '{"cached":null,"ignore_cache":false}'), +(34356, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:13:54.954+00', '{"cached":null,"ignore_cache":false}'), +(34357, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:39.339+00', '{"cached":null,"ignore_cache":false}'), +(34358, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:39.414+00', '{"cached":null,"ignore_cache":false}'), +(34359, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:39.428+00', '{"cached":null,"ignore_cache":false}'), +(34360, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:39.755+00', '{"cached":null,"ignore_cache":false}'), +(34361, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:39.811+00', '{"cached":null,"ignore_cache":false}'), +(34362, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:40.705+00', '{"cached":null,"ignore_cache":false}'), +(34363, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:17:40.74+00', '{"cached":null,"ignore_cache":false}'), +(34364, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:59.174+00', '{"cached":null,"ignore_cache":false}'), +(34365, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:59.726+00', '{"cached":null,"ignore_cache":false}'), +(34366, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:18:59.748+00', '{"cached":null,"ignore_cache":false}'), +(34367, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:00.234+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34368, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:00.287+00', '{"cached":null,"ignore_cache":false}'), +(34369, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:00.742+00', '{"cached":null,"ignore_cache":false}'), +(34370, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:19:00.796+00', '{"cached":null,"ignore_cache":false}'), +(34371, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:08.104+00', '{"cached":null,"ignore_cache":false}'), +(34372, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:08.133+00', '{"cached":null,"ignore_cache":false}'), +(34373, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:08.136+00', '{"cached":null,"ignore_cache":false}'), +(34374, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:08.631+00', '{"cached":null,"ignore_cache":false}'), +(34375, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:08.661+00', '{"cached":null,"ignore_cache":false}'), +(34376, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:10.221+00', '{"cached":null,"ignore_cache":false}'), +(34377, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 11:24:10.23+00', '{"cached":null,"ignore_cache":false}'), +(34378, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.04+00', '{"cached":null,"ignore_cache":false}'), +(34379, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.071+00', '{"cached":null,"ignore_cache":false}'), +(34380, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.082+00', '{"cached":null,"ignore_cache":false}'), +(34381, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.085+00', '{"cached":null,"ignore_cache":false}'), +(34382, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.218+00', '{"cached":null,"ignore_cache":false}'), +(34383, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.22+00', '{"cached":null,"ignore_cache":false}'), +(34384, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.438+00', '{"cached":null,"ignore_cache":false}'), +(34385, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.446+00', '{"cached":null,"ignore_cache":false}'), +(34386, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.863+00', '{"cached":null,"ignore_cache":false}'), +(34387, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:35.989+00', '{"cached":null,"ignore_cache":false}'), +(34388, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:36.85+00', '{"cached":null,"ignore_cache":false}'), +(34389, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:36.911+00', '{"cached":null,"ignore_cache":false}'), +(34390, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 13:15:36.957+00', '{"cached":null,"ignore_cache":false}'), +(34391, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:39.325+00', '{"cached":null,"ignore_cache":false}'), +(34392, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:39.372+00', '{"cached":null,"ignore_cache":false}'), +(34393, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:39.387+00', '{"cached":null,"ignore_cache":false}'), +(34394, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:40.333+00', '{"cached":null,"ignore_cache":false}'), +(34395, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:40.346+00', '{"cached":null,"ignore_cache":false}'), +(34396, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:44.652+00', '{"cached":null,"ignore_cache":false}'), +(34397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 13:20:44.698+00', '{"cached":null,"ignore_cache":false}'), +(34398, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:33.82+00', '{"cached":null,"ignore_cache":false}'), +(34399, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:33.826+00', '{"cached":null,"ignore_cache":false}'), +(34400, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:33.85+00', '{"cached":null,"ignore_cache":false}'), +(34401, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:34.137+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34402, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:34.235+00', '{"cached":null,"ignore_cache":false}'), +(34403, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:35.224+00', '{"cached":null,"ignore_cache":false}'), +(34404, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 13:25:35.26+00', '{"cached":null,"ignore_cache":false}'), +(34405, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:33.954+00', '{"cached":null,"ignore_cache":false}'), +(34406, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:33.963+00', '{"cached":null,"ignore_cache":false}'), +(34407, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:33.985+00', '{"cached":null,"ignore_cache":false}'), +(34408, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:35.009+00', '{"cached":null,"ignore_cache":false}'), +(34409, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:35.012+00', '{"cached":null,"ignore_cache":false}'), +(34410, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:36.946+00', '{"cached":null,"ignore_cache":false}'), +(34411, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 13:30:36.947+00', '{"cached":null,"ignore_cache":false}'), +(34412, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:20.66+00', '{"cached":null,"ignore_cache":false}'), +(34413, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.258+00', '{"cached":null,"ignore_cache":false}'), +(34414, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.653+00', '{"cached":null,"ignore_cache":false}'), +(34415, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.661+00', '{"cached":null,"ignore_cache":false}'), +(34416, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.676+00', '{"cached":null,"ignore_cache":false}'), +(34417, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.686+00', '{"cached":null,"ignore_cache":false}'), +(34418, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.696+00', '{"cached":null,"ignore_cache":false}'), +(34419, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.712+00', '{"cached":null,"ignore_cache":false}'), +(34420, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.74+00', '{"cached":null,"ignore_cache":false}'), +(34421, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:21.746+00', '{"cached":null,"ignore_cache":false}'), +(34422, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:23.272+00', '{"cached":null,"ignore_cache":false}'), +(34423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:23.299+00', '{"cached":null,"ignore_cache":false}'), +(34424, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:23.352+00', '{"cached":null,"ignore_cache":false}'), +(34425, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 13:57:23.518+00', '{"cached":null,"ignore_cache":false}'), +(34426, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:18.934+00', '{"cached":null,"ignore_cache":false}'), +(34427, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:18.964+00', '{"cached":null,"ignore_cache":false}'), +(34428, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:18.977+00', '{"cached":null,"ignore_cache":false}'), +(34429, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:19.707+00', '{"cached":null,"ignore_cache":false}'), +(34430, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:19.783+00', '{"cached":null,"ignore_cache":false}'), +(34431, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:21.479+00', '{"cached":null,"ignore_cache":false}'), +(34432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 14:02:21.494+00', '{"cached":null,"ignore_cache":false}'), +(34433, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:14.475+00', '{"cached":null,"ignore_cache":false}'), +(34434, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:14.578+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34435, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:14.586+00', '{"cached":null,"ignore_cache":false}'), +(34436, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:15.217+00', '{"cached":null,"ignore_cache":false}'), +(34437, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:15.302+00', '{"cached":null,"ignore_cache":false}'), +(34438, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:16.051+00', '{"cached":null,"ignore_cache":false}'), +(34439, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 14:07:16.053+00', '{"cached":null,"ignore_cache":false}'), +(34440, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:22.978+00', '{"cached":null,"ignore_cache":false}'), +(34441, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:23.076+00', '{"cached":null,"ignore_cache":false}'), +(34442, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:23.09+00', '{"cached":null,"ignore_cache":false}'), +(34443, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:23.171+00', '{"cached":null,"ignore_cache":false}'), +(34444, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:23.197+00', '{"cached":null,"ignore_cache":false}'), +(34445, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:24.702+00', '{"cached":null,"ignore_cache":false}'), +(34446, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 14:12:24.753+00', '{"cached":null,"ignore_cache":false}'), +(34447, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.431+00', '{"cached":null,"ignore_cache":false}'), +(34448, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.497+00', '{"cached":null,"ignore_cache":false}'), +(34449, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.504+00', '{"cached":null,"ignore_cache":false}'), +(34450, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.595+00', '{"cached":null,"ignore_cache":false}'), +(34451, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.745+00', '{"cached":null,"ignore_cache":false}'), +(34452, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.746+00', '{"cached":null,"ignore_cache":false}'), +(34453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.804+00', '{"cached":null,"ignore_cache":false}'), +(34454, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.817+00', '{"cached":null,"ignore_cache":false}'), +(34455, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.837+00', '{"cached":null,"ignore_cache":false}'), +(34456, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:33.841+00', '{"cached":null,"ignore_cache":false}'), +(34457, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:36.956+00', '{"cached":null,"ignore_cache":false}'), +(34458, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:37.297+00', '{"cached":null,"ignore_cache":false}'), +(34459, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 14:44:37.357+00', '{"cached":null,"ignore_cache":false}'), +(34460, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.926+00', '{"cached":null,"ignore_cache":false}'), +(34461, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.97+00', '{"cached":null,"ignore_cache":false}'), +(34462, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:29.973+00', '{"cached":null,"ignore_cache":false}'), +(34463, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:31.808+00', '{"cached":null,"ignore_cache":false}'), +(34464, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:31.856+00', '{"cached":null,"ignore_cache":false}'), +(34465, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:34.223+00', '{"cached":null,"ignore_cache":false}'), +(34466, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 14:49:34.319+00', '{"cached":null,"ignore_cache":false}'), +(34467, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:29.765+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34468, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:29.825+00', '{"cached":null,"ignore_cache":false}'), +(34469, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:29.9+00', '{"cached":null,"ignore_cache":false}'), +(34470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:30.062+00', '{"cached":null,"ignore_cache":false}'), +(34471, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:30.117+00', '{"cached":null,"ignore_cache":false}'), +(34472, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:31.342+00', '{"cached":null,"ignore_cache":false}'), +(34473, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 14:54:31.345+00', '{"cached":null,"ignore_cache":false}'), +(34474, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:35.432+00', '{"cached":null,"ignore_cache":false}'), +(34475, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:35.438+00', '{"cached":null,"ignore_cache":false}'), +(34476, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:35.442+00', '{"cached":null,"ignore_cache":false}'), +(34477, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:35.457+00', '{"cached":null,"ignore_cache":false}'), +(34478, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:35.667+00', '{"cached":null,"ignore_cache":false}'), +(34479, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:36.757+00', '{"cached":null,"ignore_cache":false}'), +(34480, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:36.797+00', '{"cached":null,"ignore_cache":false}'), +(34481, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:36.862+00', '{"cached":null,"ignore_cache":false}'), +(34482, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:36.871+00', '{"cached":null,"ignore_cache":false}'), +(34483, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:39.995+00', '{"cached":null,"ignore_cache":false}'), +(34484, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:40.158+00', '{"cached":null,"ignore_cache":false}'), +(34485, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:40.222+00', '{"cached":null,"ignore_cache":false}'), +(34486, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-11 15:05:40.608+00', '{"cached":null,"ignore_cache":false}'), +(34487, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:09.722+00', '{"cached":null,"ignore_cache":false}'), +(34488, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:09.988+00', '{"cached":null,"ignore_cache":false}'), +(34489, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.065+00', '{"cached":null,"ignore_cache":false}'), +(34490, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.067+00', '{"cached":null,"ignore_cache":false}'), +(34491, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.068+00', '{"cached":null,"ignore_cache":false}'), +(34492, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.105+00', '{"cached":null,"ignore_cache":false}'), +(34493, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.112+00', '{"cached":null,"ignore_cache":false}'), +(34494, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.121+00', '{"cached":null,"ignore_cache":false}'), +(34495, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.134+00', '{"cached":null,"ignore_cache":false}'), +(34496, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:10.136+00', '{"cached":null,"ignore_cache":false}'), +(34497, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:12.959+00', '{"cached":null,"ignore_cache":false}'), +(34498, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:12.984+00', '{"cached":null,"ignore_cache":false}'), +(34499, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:12.986+00', '{"cached":null,"ignore_cache":false}'), +(34500, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:13.073+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:15.939+00', '{"cached":null,"ignore_cache":false}'), +(34502, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:16.317+00', '{"cached":null,"ignore_cache":false}'), +(34503, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:16.345+00', '{"cached":null,"ignore_cache":false}'), +(34504, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:16.759+00', '{"cached":null,"ignore_cache":false}'), +(34505, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:16.842+00', '{"cached":null,"ignore_cache":false}'), +(34506, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:16.843+00', '{"cached":null,"ignore_cache":false}'), +(34507, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.116+00', '{"cached":null,"ignore_cache":false}'), +(34508, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.624+00', '{"cached":null,"ignore_cache":false}'), +(34509, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.625+00', '{"cached":null,"ignore_cache":false}'), +(34510, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.816+00', '{"cached":null,"ignore_cache":false}'), +(34511, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.82+00', '{"cached":null,"ignore_cache":false}'), +(34512, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.822+00', '{"cached":null,"ignore_cache":false}'), +(34513, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.859+00', '{"cached":null,"ignore_cache":false}'), +(34514, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 04:37:17.927+00', '{"cached":null,"ignore_cache":false}'), +(34515, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:22.372+00', '{"cached":null,"ignore_cache":false}'), +(34516, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:22.402+00', '{"cached":null,"ignore_cache":false}'), +(34517, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:22.407+00', '{"cached":null,"ignore_cache":false}'), +(34518, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:22.636+00', '{"cached":null,"ignore_cache":false}'), +(34519, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:22.664+00', '{"cached":null,"ignore_cache":false}'), +(34520, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:24.371+00', '{"cached":null,"ignore_cache":false}'), +(34521, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 04:42:24.385+00', '{"cached":null,"ignore_cache":false}'), +(34522, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:06.142+00', '{"cached":null,"ignore_cache":false}'), +(34523, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:06.15+00', '{"cached":null,"ignore_cache":false}'), +(34524, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:06.175+00', '{"cached":null,"ignore_cache":false}'), +(34525, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:06.178+00', '{"cached":null,"ignore_cache":false}'), +(34526, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:06.455+00', '{"cached":null,"ignore_cache":false}'), +(34527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:06.58+00', '{"cached":null,"ignore_cache":false}'), +(34528, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:07.155+00', '{"cached":null,"ignore_cache":false}'), +(34529, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:07.405+00', '{"cached":null,"ignore_cache":false}'), +(34530, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:07.758+00', '{"cached":null,"ignore_cache":false}'), +(34531, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:07.759+00', '{"cached":null,"ignore_cache":false}'), +(34532, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:10.405+00', '{"cached":null,"ignore_cache":false}'), +(34533, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:10.408+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34534, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:10.42+00', '{"cached":null,"ignore_cache":false}'), +(34535, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 04:46:10.427+00', '{"cached":null,"ignore_cache":false}'), +(34536, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:28.273+00', '{"cached":null,"ignore_cache":null}'), +(34537, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.137+00', '{"cached":null,"ignore_cache":false}'), +(34538, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.155+00', '{"cached":null,"ignore_cache":false}'), +(34539, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.182+00', '{"cached":null,"ignore_cache":false}'), +(34540, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.198+00', '{"cached":null,"ignore_cache":false}'), +(34541, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.394+00', '{"cached":null,"ignore_cache":false}'), +(34542, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.899+00', '{"cached":null,"ignore_cache":false}'), +(34543, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.945+00', '{"cached":null,"ignore_cache":false}'), +(34544, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.957+00', '{"cached":null,"ignore_cache":false}'), +(34545, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:32.975+00', '{"cached":null,"ignore_cache":false}'), +(34546, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:33.117+00', '{"cached":null,"ignore_cache":false}'), +(34547, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:34.25+00', '{"cached":null,"ignore_cache":false}'), +(34548, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:34.306+00', '{"cached":null,"ignore_cache":false}'), +(34549, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:34.315+00', '{"cached":null,"ignore_cache":false}'), +(34550, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:15:34.346+00', '{"cached":null,"ignore_cache":false}'), +(34551, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:21.36+00', '{"cached":null,"ignore_cache":false}'), +(34552, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:21.387+00', '{"cached":null,"ignore_cache":false}'), +(34553, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:21.451+00', '{"cached":null,"ignore_cache":false}'), +(34554, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:22.898+00', '{"cached":null,"ignore_cache":false}'), +(34555, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:23.357+00', '{"cached":null,"ignore_cache":false}'), +(34556, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:24.66+00', '{"cached":null,"ignore_cache":false}'), +(34557, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:24.786+00', '{"cached":null,"ignore_cache":false}'), +(34558, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:24.822+00', '{"cached":null,"ignore_cache":false}'), +(34559, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:24.979+00', '{"cached":null,"ignore_cache":false}'), +(34560, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:25.074+00', '{"cached":null,"ignore_cache":false}'), +(34561, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:26.695+00', '{"cached":null,"ignore_cache":false}'), +(34562, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:26.697+00', '{"cached":null,"ignore_cache":false}'), +(34563, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:35.331+00', '{"cached":null,"ignore_cache":null}'), +(34564, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:36.604+00', '{"cached":null,"ignore_cache":false}'), +(34565, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:36.61+00', '{"cached":null,"ignore_cache":false}'), +(34566, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:36.733+00', '{"cached":null,"ignore_cache":false}'), +(34567, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:36.802+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34568, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:36.843+00', '{"cached":null,"ignore_cache":false}'), +(34569, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:37.376+00', '{"cached":null,"ignore_cache":false}'), +(34570, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:16:37.503+00', '{"cached":null,"ignore_cache":false}'), +(34571, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:09.853+00', '{"cached":null,"ignore_cache":false}'), +(34572, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:09.89+00', '{"cached":null,"ignore_cache":false}'), +(34573, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:10.727+00', '{"cached":null,"ignore_cache":false}'), +(34574, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:10.76+00', '{"cached":null,"ignore_cache":false}'), +(34575, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:10.903+00', '{"cached":null,"ignore_cache":false}'), +(34576, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:12.287+00', '{"cached":null,"ignore_cache":false}'), +(34577, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:12.312+00', '{"cached":null,"ignore_cache":false}'), +(34578, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:12.621+00', '{"cached":null,"ignore_cache":null}'), +(34579, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:13.315+00', '{"cached":null,"ignore_cache":false}'), +(34580, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:13.474+00', '{"cached":null,"ignore_cache":false}'), +(34581, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:13.529+00', '{"cached":null,"ignore_cache":false}'), +(34582, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:16.789+00', '{"cached":null,"ignore_cache":null}'), +(34583, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.63+00', '{"cached":null,"ignore_cache":false}'), +(34584, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.765+00', '{"cached":null,"ignore_cache":false}'), +(34585, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.883+00', '{"cached":null,"ignore_cache":false}'), +(34586, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.941+00', '{"cached":null,"ignore_cache":false}'), +(34587, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:17.957+00', '{"cached":null,"ignore_cache":false}'), +(34588, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:20.339+00', '{"cached":null,"ignore_cache":false}'), +(34589, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:20.348+00', '{"cached":null,"ignore_cache":false}'), +(34590, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.972+00', '{"cached":null,"ignore_cache":false}'), +(34591, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:23.977+00', '{"cached":null,"ignore_cache":false}'), +(34592, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:24.088+00', '{"cached":null,"ignore_cache":false}'), +(34593, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:24.114+00', '{"cached":null,"ignore_cache":false}'), +(34594, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:24.124+00', '{"cached":null,"ignore_cache":false}'), +(34595, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:24.458+00', '{"cached":null,"ignore_cache":false}'), +(34596, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:24.484+00', '{"cached":null,"ignore_cache":false}'), +(34597, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:31.077+00', '{"cached":null,"ignore_cache":false}'), +(34598, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:31.128+00', '{"cached":null,"ignore_cache":false}'), +(34599, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:31.216+00', '{"cached":null,"ignore_cache":false}'), +(34600, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:31.237+00', '{"cached":null,"ignore_cache":false}'), +(34601, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:31.394+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34602, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:31.61+00', '{"cached":null,"ignore_cache":false}'), +(34603, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:31.617+00', '{"cached":null,"ignore_cache":false}'), +(34604, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:35.706+00', '{"cached":null,"ignore_cache":false}'), +(34605, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:35.746+00', '{"cached":null,"ignore_cache":false}'), +(34606, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:36.032+00', '{"cached":null,"ignore_cache":false}'), +(34607, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:36.074+00', '{"cached":null,"ignore_cache":false}'), +(34608, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:36.148+00', '{"cached":null,"ignore_cache":false}'), +(34609, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:36.164+00', '{"cached":null,"ignore_cache":false}'), +(34610, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:19:36.309+00', '{"cached":null,"ignore_cache":false}'), +(34611, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:29.746+00', '{"cached":null,"ignore_cache":null}'), +(34612, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:35.527+00', '{"cached":null,"ignore_cache":false}'), +(34613, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:35.732+00', '{"cached":null,"ignore_cache":false}'), +(34614, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:35.799+00', '{"cached":null,"ignore_cache":false}'), +(34615, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:35.836+00', '{"cached":null,"ignore_cache":false}'), +(34616, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:35.897+00', '{"cached":null,"ignore_cache":false}'), +(34617, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:36.73+00', '{"cached":null,"ignore_cache":null}'), +(34618, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:36.801+00', '{"cached":null,"ignore_cache":false}'), +(34619, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:36.803+00', '{"cached":null,"ignore_cache":false}'), +(34620, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:36.921+00', '{"cached":null,"ignore_cache":false}'), +(34621, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:36.927+00', '{"cached":null,"ignore_cache":false}'), +(34622, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.378+00', '{"cached":null,"ignore_cache":false}'), +(34623, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.826+00', '{"cached":null,"ignore_cache":false}'), +(34624, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.904+00', '{"cached":null,"ignore_cache":false}'), +(34625, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:37.98+00', '{"cached":null,"ignore_cache":false}'), +(34626, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:38.093+00', '{"cached":null,"ignore_cache":false}'), +(34627, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:38.228+00', '{"cached":null,"ignore_cache":false}'), +(34628, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:39.632+00', '{"cached":null,"ignore_cache":false}'), +(34629, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:39.668+00', '{"cached":null,"ignore_cache":false}'), +(34630, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:39.669+00', '{"cached":null,"ignore_cache":false}'), +(34631, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:39.704+00', '{"cached":null,"ignore_cache":false}'), +(34632, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:39.738+00', '{"cached":null,"ignore_cache":false}'), +(34633, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:39.771+00', '{"cached":null,"ignore_cache":false}'), +(34634, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:45.002+00', '{"cached":null,"ignore_cache":false}'), +(34635, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:45.036+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34636, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:45.11+00', '{"cached":null,"ignore_cache":false}'), +(34637, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:45.256+00', '{"cached":null,"ignore_cache":false}'), +(34638, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:45.36+00', '{"cached":null,"ignore_cache":false}'), +(34639, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:45.624+00', '{"cached":null,"ignore_cache":false}'), +(34640, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:45.847+00', '{"cached":null,"ignore_cache":false}'), +(34641, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.618+00', '{"cached":null,"ignore_cache":false}'), +(34642, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.699+00', '{"cached":null,"ignore_cache":false}'), +(34643, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.747+00', '{"cached":null,"ignore_cache":false}'), +(34644, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.759+00', '{"cached":null,"ignore_cache":false}'), +(34645, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:49.778+00', '{"cached":null,"ignore_cache":false}'), +(34646, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:50.155+00', '{"cached":null,"ignore_cache":false}'), +(34647, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:50.279+00', '{"cached":null,"ignore_cache":false}'), +(34648, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.804+00', '{"cached":null,"ignore_cache":false}'), +(34649, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.885+00', '{"cached":null,"ignore_cache":false}'), +(34650, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.909+00', '{"cached":null,"ignore_cache":false}'), +(34651, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.958+00', '{"cached":null,"ignore_cache":false}'), +(34652, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:51.979+00', '{"cached":null,"ignore_cache":false}'), +(34653, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:52.366+00', '{"cached":null,"ignore_cache":false}'), +(34654, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:25:52.402+00', '{"cached":null,"ignore_cache":false}'), +(34655, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:27:31.285+00', '{"cached":null,"ignore_cache":null}'), +(34656, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:34.322+00', '{"cached":null,"ignore_cache":null}'), +(34657, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:37.228+00', '{"cached":null,"ignore_cache":false}'), +(34658, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:37.24+00', '{"cached":null,"ignore_cache":false}'), +(34659, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:37.923+00', '{"cached":null,"ignore_cache":false}'), +(34660, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:37.938+00', '{"cached":null,"ignore_cache":false}'), +(34661, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:38.047+00', '{"cached":null,"ignore_cache":false}'), +(34662, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:39.717+00', '{"cached":null,"ignore_cache":false}'), +(34663, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:28:39.775+00', '{"cached":null,"ignore_cache":false}'), +(34664, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:01.733+00', '{"cached":null,"ignore_cache":null}'), +(34665, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.553+00', '{"cached":null,"ignore_cache":false}'), +(34666, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.602+00', '{"cached":null,"ignore_cache":false}'), +(34667, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.695+00', '{"cached":null,"ignore_cache":false}'), +(34668, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.713+00', '{"cached":null,"ignore_cache":false}'), +(34669, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.747+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34670, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.751+00', '{"cached":null,"ignore_cache":false}'), +(34671, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.798+00', '{"cached":null,"ignore_cache":false}'), +(34672, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 08:29:05.859+00', '{"cached":null,"ignore_cache":false}'), +(34673, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:05.174+00', '{"cached":null,"ignore_cache":null}'), +(34674, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:14.697+00', '{"cached":null,"ignore_cache":false}'), +(34675, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:15.939+00', '{"cached":null,"ignore_cache":false}'), +(34676, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:16.264+00', '{"cached":null,"ignore_cache":false}'), +(34677, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:16.28+00', '{"cached":null,"ignore_cache":false}'), +(34678, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:16.341+00', '{"cached":null,"ignore_cache":false}'), +(34679, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:16.422+00', '{"cached":null,"ignore_cache":false}'), +(34680, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:16.505+00', '{"cached":null,"ignore_cache":false}'), +(34681, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:16.546+00', '{"cached":null,"ignore_cache":false}'), +(34682, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:26.307+00', '{"cached":null,"ignore_cache":null}'), +(34683, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:27.068+00', '{"cached":null,"ignore_cache":false}'), +(34684, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:27.255+00', '{"cached":null,"ignore_cache":false}'), +(34685, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:27.268+00', '{"cached":null,"ignore_cache":false}'), +(34686, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:27.504+00', '{"cached":null,"ignore_cache":false}'), +(34687, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:27.641+00', '{"cached":null,"ignore_cache":false}'), +(34688, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:29.218+00', '{"cached":null,"ignore_cache":false}'), +(34689, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:29.224+00', '{"cached":null,"ignore_cache":false}'), +(34690, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:51.658+00', '{"cached":null,"ignore_cache":null}'), +(34691, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.981+00', '{"cached":null,"ignore_cache":false}'), +(34692, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:55.988+00', '{"cached":null,"ignore_cache":false}'), +(34693, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:56.337+00', '{"cached":null,"ignore_cache":false}'), +(34694, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:56.346+00', '{"cached":null,"ignore_cache":false}'), +(34695, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:56.678+00', '{"cached":null,"ignore_cache":false}'), +(34696, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:57.142+00', '{"cached":null,"ignore_cache":false}'), +(34697, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:57.21+00', '{"cached":null,"ignore_cache":false}'), +(34698, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.507+00', '{"cached":null,"ignore_cache":false}'), +(34699, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.683+00', '{"cached":null,"ignore_cache":false}'), +(34700, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.74+00', '{"cached":null,"ignore_cache":false}'), +(34701, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.763+00', '{"cached":null,"ignore_cache":false}'), +(34702, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:58.787+00', '{"cached":null,"ignore_cache":false}'), +(34703, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:59.059+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34704, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:30:59.193+00', '{"cached":null,"ignore_cache":false}'), +(34705, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:14.779+00', '{"cached":null,"ignore_cache":null}'), +(34706, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:16.701+00', '{"cached":null,"ignore_cache":null}'), +(34707, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:17.034+00', '{"cached":null,"ignore_cache":null}'), +(34708, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:23.54+00', '{"cached":null,"ignore_cache":null}'), +(34709, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:30.932+00', '{"cached":null,"ignore_cache":null}'), +(34710, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:31.207+00', '{"cached":null,"ignore_cache":null}'), +(34711, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:36.848+00', '{"cached":null,"ignore_cache":null}'), +(34712, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:38.225+00', '{"cached":null,"ignore_cache":false}'), +(34713, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:38.242+00', '{"cached":null,"ignore_cache":false}'), +(34714, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:38.742+00', '{"cached":null,"ignore_cache":false}'), +(34715, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:40.206+00', '{"cached":null,"ignore_cache":false}'), +(34716, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:40.246+00', '{"cached":null,"ignore_cache":false}'), +(34717, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:41.755+00', '{"cached":null,"ignore_cache":false}'), +(34718, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:41.786+00', '{"cached":null,"ignore_cache":false}'), +(34719, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:43.126+00', '{"cached":null,"ignore_cache":null}'), +(34720, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:31:43.439+00', '{"cached":null,"ignore_cache":null}'), +(34721, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:01.675+00', '{"cached":null,"ignore_cache":null}'), +(34722, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:09.169+00', '{"cached":null,"ignore_cache":null}'), +(34723, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:18.602+00', '{"cached":null,"ignore_cache":null}'), +(34724, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:20.979+00', '{"cached":null,"ignore_cache":false}'), +(34725, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:21.002+00', '{"cached":null,"ignore_cache":false}'), +(34726, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:22.274+00', '{"cached":null,"ignore_cache":false}'), +(34727, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:22.312+00', '{"cached":null,"ignore_cache":false}'), +(34728, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:22.409+00', '{"cached":null,"ignore_cache":false}'), +(34729, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:23.148+00', '{"cached":null,"ignore_cache":false}'), +(34730, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:23.167+00', '{"cached":null,"ignore_cache":false}'), +(34731, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:36.192+00', '{"cached":null,"ignore_cache":false}'), +(34732, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:36.299+00', '{"cached":null,"ignore_cache":false}'), +(34733, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:36.349+00', '{"cached":null,"ignore_cache":false}'), +(34734, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:36.525+00', '{"cached":null,"ignore_cache":false}'), +(34735, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:36.614+00', '{"cached":null,"ignore_cache":false}'), +(34736, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:36.771+00', '{"cached":null,"ignore_cache":false}'), +(34737, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:36.955+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34738, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:43.849+00', '{"cached":null,"ignore_cache":null}'), +(34739, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:44.527+00', '{"cached":null,"ignore_cache":false}'), +(34740, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.081+00', '{"cached":null,"ignore_cache":null}'), +(34741, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:55.989+00', '{"cached":null,"ignore_cache":false}'), +(34742, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:56.126+00', '{"cached":null,"ignore_cache":false}'), +(34743, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:56.187+00', '{"cached":null,"ignore_cache":false}'), +(34744, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:56.418+00', '{"cached":null,"ignore_cache":false}'), +(34745, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:56.453+00', '{"cached":null,"ignore_cache":false}'), +(34746, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:56.495+00', '{"cached":null,"ignore_cache":false}'), +(34747, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:32:56.617+00', '{"cached":null,"ignore_cache":false}'), +(34748, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:48.253+00', '{"cached":null,"ignore_cache":null}'), +(34749, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.166+00', '{"cached":null,"ignore_cache":false}'), +(34750, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.213+00', '{"cached":null,"ignore_cache":false}'), +(34751, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.644+00', '{"cached":null,"ignore_cache":false}'), +(34752, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.761+00', '{"cached":null,"ignore_cache":false}'), +(34753, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.789+00', '{"cached":null,"ignore_cache":false}'), +(34754, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.81+00', '{"cached":null,"ignore_cache":false}'), +(34755, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.867+00', '{"cached":null,"ignore_cache":false}'), +(34756, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:49.87+00', '{"cached":null,"ignore_cache":false}'), +(34757, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:51.071+00', '{"cached":null,"ignore_cache":null}'), +(34758, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:51.377+00', '{"cached":null,"ignore_cache":null}'), +(34759, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-12 08:33:55.699+00', '{"cached":null,"ignore_cache":null}'), +(34760, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:34:16.371+00', '{"cached":null,"ignore_cache":null}'), +(34761, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:34:17.465+00', '{"cached":null,"ignore_cache":false}'), +(34762, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-12 08:34:40.422+00', '{"cached":null,"ignore_cache":null}'), +(34763, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:45.962+00', '{"cached":null,"ignore_cache":false}'), +(34764, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:45.98+00', '{"cached":null,"ignore_cache":false}'), +(34765, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:45.982+00', '{"cached":null,"ignore_cache":false}'), +(34766, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:46.002+00', '{"cached":null,"ignore_cache":false}'), +(34767, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:46.936+00', '{"cached":null,"ignore_cache":false}'), +(34768, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:46.999+00', '{"cached":null,"ignore_cache":false}'), +(34769, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:47.077+00', '{"cached":null,"ignore_cache":false}'), +(34770, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:47.124+00', '{"cached":null,"ignore_cache":false}'), +(34771, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:47.555+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34772, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:47.77+00', '{"cached":null,"ignore_cache":false}'), +(34773, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:49.654+00', '{"cached":null,"ignore_cache":false}'), +(34774, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:49.834+00', '{"cached":null,"ignore_cache":false}'), +(34775, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:49.883+00', '{"cached":null,"ignore_cache":false}'), +(34776, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:35:49.921+00', '{"cached":null,"ignore_cache":false}'), +(34777, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:47.923+00', '{"cached":null,"ignore_cache":null}'), +(34778, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:50.721+00', '{"cached":null,"ignore_cache":false}'), +(34779, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:50.728+00', '{"cached":null,"ignore_cache":false}'), +(34780, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:50.858+00', '{"cached":null,"ignore_cache":false}'), +(34781, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:50.945+00', '{"cached":null,"ignore_cache":false}'), +(34782, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:51.02+00', '{"cached":null,"ignore_cache":false}'), +(34783, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:51.711+00', '{"cached":null,"ignore_cache":false}'), +(34784, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:51.78+00', '{"cached":null,"ignore_cache":false}'), +(34785, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:58.521+00', '{"cached":null,"ignore_cache":null}'), +(34786, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.572+00', '{"cached":null,"ignore_cache":false}'), +(34787, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.79+00', '{"cached":null,"ignore_cache":false}'), +(34788, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.822+00', '{"cached":null,"ignore_cache":false}'), +(34789, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:36:59.853+00', '{"cached":null,"ignore_cache":false}'), +(34790, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 08:37:00.025+00', '{"cached":null,"ignore_cache":false}'), +(34791, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 08:37:00.069+00', '{"cached":null,"ignore_cache":false}'), +(34792, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 08:37:00.072+00', '{"cached":null,"ignore_cache":false}'), +(34793, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 08:37:00.162+00', '{"cached":null,"ignore_cache":false}'), +(34794, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 08:37:05.877+00', '{"cached":null,"ignore_cache":null}'), +(34795, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:37:06.293+00', '{"cached":null,"ignore_cache":null}'), +(34796, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:28.561+00', '{"cached":null,"ignore_cache":null}'), +(34797, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:35.081+00', '{"cached":null,"ignore_cache":false}'), +(34798, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:35.471+00', '{"cached":null,"ignore_cache":false}'), +(34799, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:35.493+00', '{"cached":null,"ignore_cache":false}'), +(34800, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:35.499+00', '{"cached":null,"ignore_cache":false}'), +(34801, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:35.518+00', '{"cached":null,"ignore_cache":false}'), +(34802, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:35.526+00', '{"cached":null,"ignore_cache":false}'), +(34803, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:35.53+00', '{"cached":null,"ignore_cache":false}'), +(34804, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:49.451+00', '{"cached":null,"ignore_cache":false}'), +(34805, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:49.485+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34806, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:49.942+00', '{"cached":null,"ignore_cache":false}'), +(34807, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:50.044+00', '{"cached":null,"ignore_cache":false}'), +(34808, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:50.1+00', '{"cached":null,"ignore_cache":false}'), +(34809, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:50.763+00', '{"cached":null,"ignore_cache":false}'), +(34810, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:40:50.839+00', '{"cached":null,"ignore_cache":false}'), +(34811, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:28.342+00', '{"cached":null,"ignore_cache":null}'), +(34812, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:51.949+00', '{"cached":null,"ignore_cache":null}'), +(34813, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:53.808+00', '{"cached":null,"ignore_cache":false}'), +(34814, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:55.834+00', '{"cached":null,"ignore_cache":false}'), +(34815, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:55.89+00', '{"cached":null,"ignore_cache":false}'), +(34816, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:55.944+00', '{"cached":null,"ignore_cache":false}'), +(34817, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:56.087+00', '{"cached":null,"ignore_cache":false}'), +(34818, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:56.145+00', '{"cached":null,"ignore_cache":false}'), +(34819, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:56.17+00', '{"cached":null,"ignore_cache":false}'), +(34820, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 08:41:56.172+00', '{"cached":null,"ignore_cache":false}'), +(34821, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:30.736+00', '{"cached":null,"ignore_cache":false}'), +(34822, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:30.783+00', '{"cached":null,"ignore_cache":false}'), +(34823, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:30.958+00', '{"cached":null,"ignore_cache":false}'), +(34824, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:30.96+00', '{"cached":null,"ignore_cache":false}'), +(34825, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:31.465+00', '{"cached":null,"ignore_cache":false}'), +(34826, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:31.559+00', '{"cached":null,"ignore_cache":false}'), +(34827, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:31.603+00', '{"cached":null,"ignore_cache":false}'), +(34828, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:31.627+00', '{"cached":null,"ignore_cache":false}'), +(34829, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:31.64+00', '{"cached":null,"ignore_cache":false}'), +(34830, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:31.689+00', '{"cached":null,"ignore_cache":false}'), +(34831, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:32.76+00', '{"cached":null,"ignore_cache":false}'), +(34832, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:32.766+00', '{"cached":null,"ignore_cache":false}'), +(34833, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:32.808+00', '{"cached":null,"ignore_cache":false}'), +(34834, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:44:32.809+00', '{"cached":null,"ignore_cache":false}'), +(34835, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:46.777+00', '{"cached":null,"ignore_cache":false}'), +(34836, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:46.786+00', '{"cached":null,"ignore_cache":false}'), +(34837, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:47.198+00', '{"cached":null,"ignore_cache":false}'), +(34838, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:47.267+00', '{"cached":null,"ignore_cache":false}'), +(34839, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:47.362+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34840, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:48.222+00', '{"cached":null,"ignore_cache":false}'), +(34841, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:48.244+00', '{"cached":null,"ignore_cache":false}'), +(34842, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:53.534+00', '{"cached":null,"ignore_cache":null}'), +(34843, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:45:54.028+00', '{"cached":null,"ignore_cache":null}'), +(34844, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:30.051+00', '{"cached":null,"ignore_cache":null}'), +(34845, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:31.283+00', '{"cached":null,"ignore_cache":false}'), +(34846, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:31.29+00', '{"cached":null,"ignore_cache":false}'), +(34847, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:31.497+00', '{"cached":null,"ignore_cache":false}'), +(34848, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:31.54+00', '{"cached":null,"ignore_cache":false}'), +(34849, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:31.591+00', '{"cached":null,"ignore_cache":false}'), +(34850, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:32.006+00', '{"cached":null,"ignore_cache":false}'), +(34851, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:32.027+00', '{"cached":null,"ignore_cache":false}'), +(34852, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:35.27+00', '{"cached":null,"ignore_cache":null}'), +(34853, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:35.921+00', '{"cached":null,"ignore_cache":false}'), +(34854, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:38.058+00', '{"cached":null,"ignore_cache":null}'), +(34855, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.756+00', '{"cached":null,"ignore_cache":false}'), +(34856, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.815+00', '{"cached":null,"ignore_cache":false}'), +(34857, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:39.896+00', '{"cached":null,"ignore_cache":false}'), +(34858, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:40.069+00', '{"cached":null,"ignore_cache":false}'), +(34859, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:40.148+00', '{"cached":null,"ignore_cache":false}'), +(34860, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:40.365+00', '{"cached":null,"ignore_cache":null}'), +(34861, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:40.381+00', '{"cached":null,"ignore_cache":false}'), +(34862, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:40.563+00', '{"cached":null,"ignore_cache":false}'), +(34863, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:41.074+00', '{"cached":null,"ignore_cache":false}'), +(34864, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:47.333+00', '{"cached":null,"ignore_cache":null}'), +(34865, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:48.153+00', '{"cached":null,"ignore_cache":false}'), +(34866, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:48.238+00', '{"cached":null,"ignore_cache":false}'), +(34867, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:48.321+00', '{"cached":null,"ignore_cache":false}'), +(34868, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:48.47+00', '{"cached":null,"ignore_cache":false}'), +(34869, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:48.507+00', '{"cached":null,"ignore_cache":false}'), +(34870, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:48.905+00', '{"cached":null,"ignore_cache":false}'), +(34871, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:49.178+00', '{"cached":null,"ignore_cache":false}'), +(34872, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:51.144+00', '{"cached":null,"ignore_cache":null}'), +(34873, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:52.174+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34874, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.214+00', '{"cached":null,"ignore_cache":null}'), +(34875, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:46:59.783+00', '{"cached":null,"ignore_cache":false}'), +(34876, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:00.013+00', '{"cached":null,"ignore_cache":false}'), +(34877, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:00.218+00', '{"cached":null,"ignore_cache":false}'), +(34878, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:00.281+00', '{"cached":null,"ignore_cache":false}'), +(34879, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:00.382+00', '{"cached":null,"ignore_cache":false}'), +(34880, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:00.421+00', '{"cached":null,"ignore_cache":false}'), +(34881, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:00.622+00', '{"cached":null,"ignore_cache":false}'), +(34882, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:07.578+00', '{"cached":null,"ignore_cache":null}'), +(34883, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:07.969+00', '{"cached":null,"ignore_cache":null}'), +(34884, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:14.005+00', '{"cached":null,"ignore_cache":null}'), +(34885, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:21.963+00', '{"cached":null,"ignore_cache":null}'), +(34886, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:22.514+00', '{"cached":null,"ignore_cache":false}'), +(34887, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:27.219+00', '{"cached":null,"ignore_cache":null}'), +(34888, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:28.437+00', '{"cached":null,"ignore_cache":false}'), +(34889, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:28.573+00', '{"cached":null,"ignore_cache":false}'), +(34890, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:29.509+00', '{"cached":null,"ignore_cache":false}'), +(34891, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:29.733+00', '{"cached":null,"ignore_cache":false}'), +(34892, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:29.919+00', '{"cached":null,"ignore_cache":false}'), +(34893, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:30.771+00', '{"cached":null,"ignore_cache":false}'), +(34894, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:30.779+00', '{"cached":null,"ignore_cache":false}'), +(34895, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:33.959+00', '{"cached":null,"ignore_cache":null}'), +(34896, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-12 08:47:34.3+00', '{"cached":null,"ignore_cache":null}'), +(34897, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:27.025+00', '{"cached":null,"ignore_cache":false}'), +(34898, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:27.075+00', '{"cached":null,"ignore_cache":false}'), +(34899, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:28.993+00', '{"cached":null,"ignore_cache":false}'), +(34900, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:29.056+00', '{"cached":null,"ignore_cache":false}'), +(34901, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:29.061+00', '{"cached":null,"ignore_cache":false}'), +(34902, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:30.131+00', '{"cached":null,"ignore_cache":false}'), +(34903, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:49:30.156+00', '{"cached":null,"ignore_cache":false}'), +(34904, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:09.992+00', '{"cached":null,"ignore_cache":false}'), +(34905, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:10.038+00', '{"cached":null,"ignore_cache":false}'), +(34906, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:10.372+00', '{"cached":null,"ignore_cache":false}'), +(34907, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:10.499+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34908, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:12.997+00', '{"cached":null,"ignore_cache":false}'), +(34909, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:13.038+00', '{"cached":null,"ignore_cache":false}'), +(34910, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:13.322+00', '{"cached":null,"ignore_cache":false}'), +(34911, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:13.364+00', '{"cached":null,"ignore_cache":false}'), +(34912, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:13.469+00', '{"cached":null,"ignore_cache":false}'), +(34913, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:13.497+00', '{"cached":null,"ignore_cache":false}'), +(34914, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:14.613+00', '{"cached":null,"ignore_cache":false}'), +(34915, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:14.877+00', '{"cached":null,"ignore_cache":false}'), +(34916, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:14.91+00', '{"cached":null,"ignore_cache":false}'), +(34917, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:14.924+00', '{"cached":null,"ignore_cache":false}'), +(34918, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:44.091+00', '{"cached":null,"ignore_cache":false}'), +(34919, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:44.274+00', '{"cached":null,"ignore_cache":false}'), +(34920, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:44.426+00', '{"cached":null,"ignore_cache":false}'), +(34921, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:44.497+00', '{"cached":null,"ignore_cache":false}'), +(34922, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:44.57+00', '{"cached":null,"ignore_cache":false}'), +(34923, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:44.862+00', '{"cached":null,"ignore_cache":false}'), +(34924, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:50:44.866+00', '{"cached":null,"ignore_cache":false}'), +(34925, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:30.806+00', '{"cached":null,"ignore_cache":false}'), +(34926, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:30.834+00', '{"cached":null,"ignore_cache":false}'), +(34927, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:31.225+00', '{"cached":null,"ignore_cache":false}'), +(34928, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:31.235+00', '{"cached":null,"ignore_cache":false}'), +(34929, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:31.288+00', '{"cached":null,"ignore_cache":false}'), +(34930, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:32.089+00', '{"cached":null,"ignore_cache":false}'), +(34931, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:54:32.164+00', '{"cached":null,"ignore_cache":false}'), +(34932, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:09.162+00', '{"cached":null,"ignore_cache":false}'), +(34933, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:09.232+00', '{"cached":null,"ignore_cache":false}'), +(34934, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:09.31+00', '{"cached":null,"ignore_cache":false}'), +(34935, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:09.339+00', '{"cached":null,"ignore_cache":false}'), +(34936, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:09.488+00', '{"cached":null,"ignore_cache":false}'), +(34937, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:09.696+00', '{"cached":null,"ignore_cache":false}'), +(34938, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:09.974+00', '{"cached":null,"ignore_cache":false}'), +(34939, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:45.363+00', '{"cached":null,"ignore_cache":false}'), +(34940, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:45.374+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34941, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:45.737+00', '{"cached":null,"ignore_cache":false}'), +(34942, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:45.795+00', '{"cached":null,"ignore_cache":false}'), +(34943, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:45.838+00', '{"cached":null,"ignore_cache":false}'), +(34944, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:46.542+00', '{"cached":null,"ignore_cache":false}'), +(34945, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 08:55:46.564+00', '{"cached":null,"ignore_cache":false}'), +(34946, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:16.821+00', '{"cached":null,"ignore_cache":false}'), +(34947, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:16.826+00', '{"cached":null,"ignore_cache":false}'), +(34948, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:16.943+00', '{"cached":null,"ignore_cache":false}'), +(34949, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:17.03+00', '{"cached":null,"ignore_cache":false}'), +(34950, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:17.285+00', '{"cached":null,"ignore_cache":false}'), +(34951, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:18.39+00', '{"cached":null,"ignore_cache":false}'), +(34952, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:18.427+00', '{"cached":null,"ignore_cache":false}'), +(34953, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:44.491+00', '{"cached":null,"ignore_cache":false}'), +(34954, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:44.506+00', '{"cached":null,"ignore_cache":false}'), +(34955, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:44.612+00', '{"cached":null,"ignore_cache":false}'), +(34956, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:44.677+00', '{"cached":null,"ignore_cache":false}'), +(34957, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:44.812+00', '{"cached":null,"ignore_cache":false}'), +(34958, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:45.08+00', '{"cached":null,"ignore_cache":false}'), +(34959, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:00:45.151+00', '{"cached":null,"ignore_cache":false}'), +(34960, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:06.819+00', '{"cached":null,"ignore_cache":false}'), +(34961, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:06.879+00', '{"cached":null,"ignore_cache":false}'), +(34962, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:07.259+00', '{"cached":null,"ignore_cache":false}'), +(34963, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:07.486+00', '{"cached":null,"ignore_cache":false}'), +(34964, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:07.495+00', '{"cached":null,"ignore_cache":false}'), +(34965, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:08.223+00', '{"cached":null,"ignore_cache":false}'), +(34966, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:02:08.226+00', '{"cached":null,"ignore_cache":false}'), +(34967, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:46.054+00', '{"cached":null,"ignore_cache":false}'), +(34968, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:46.063+00', '{"cached":null,"ignore_cache":false}'), +(34969, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:46.402+00', '{"cached":null,"ignore_cache":false}'), +(34970, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:46.448+00', '{"cached":null,"ignore_cache":false}'), +(34971, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:46.451+00', '{"cached":null,"ignore_cache":false}'), +(34972, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:47.73+00', '{"cached":null,"ignore_cache":false}'), +(34973, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:47.778+00', '{"cached":null,"ignore_cache":false}'), +(34974, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.395+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(34975, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.485+00', '{"cached":null,"ignore_cache":false}'), +(34976, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.494+00', '{"cached":null,"ignore_cache":false}'), +(34977, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.609+00', '{"cached":null,"ignore_cache":false}'), +(34978, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.613+00', '{"cached":null,"ignore_cache":false}'), +(34979, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.962+00', '{"cached":null,"ignore_cache":false}'), +(34980, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:05:57.982+00', '{"cached":null,"ignore_cache":false}'), +(34981, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:15.003+00', '{"cached":null,"ignore_cache":false}'), +(34982, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:15.057+00', '{"cached":null,"ignore_cache":false}'), +(34983, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:15.381+00', '{"cached":null,"ignore_cache":false}'), +(34984, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:15.406+00', '{"cached":null,"ignore_cache":false}'), +(34985, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:15.495+00', '{"cached":null,"ignore_cache":false}'), +(34986, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:17.795+00', '{"cached":null,"ignore_cache":false}'), +(34987, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:07:17.85+00', '{"cached":null,"ignore_cache":false}'), +(34988, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:45.18+00', '{"cached":null,"ignore_cache":false}'), +(34989, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:45.219+00', '{"cached":null,"ignore_cache":false}'), +(34990, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:45.93+00', '{"cached":null,"ignore_cache":false}'), +(34991, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:45.977+00', '{"cached":null,"ignore_cache":false}'), +(34992, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:46.013+00', '{"cached":null,"ignore_cache":false}'), +(34993, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:46.463+00', '{"cached":null,"ignore_cache":false}'), +(34994, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:10:46.534+00', '{"cached":null,"ignore_cache":false}'), +(34995, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:02.709+00', '{"cached":null,"ignore_cache":false}'), +(34996, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:02.722+00', '{"cached":null,"ignore_cache":false}'), +(34997, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:03.049+00', '{"cached":null,"ignore_cache":false}'), +(34998, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:03.08+00', '{"cached":null,"ignore_cache":false}'), +(34999, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:03.082+00', '{"cached":null,"ignore_cache":false}'), +(35000, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:03.175+00', '{"cached":null,"ignore_cache":false}'), +(35001, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:11:03.298+00', '{"cached":null,"ignore_cache":false}'), +(35002, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:54.385+00', '{"cached":null,"ignore_cache":false}'), +(35003, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:54.418+00', '{"cached":null,"ignore_cache":false}'), +(35004, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:54.443+00', '{"cached":null,"ignore_cache":false}'), +(35005, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:54.461+00', '{"cached":null,"ignore_cache":false}'), +(35006, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:54.487+00', '{"cached":null,"ignore_cache":false}'), +(35007, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:55.515+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35008, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:55.544+00', '{"cached":null,"ignore_cache":false}'), +(35009, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:58.153+00', '{"cached":null,"ignore_cache":false}'), +(35010, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:58.182+00', '{"cached":null,"ignore_cache":false}'), +(35011, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:58.188+00', '{"cached":null,"ignore_cache":false}'), +(35012, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:58.21+00', '{"cached":null,"ignore_cache":false}'), +(35013, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:58.398+00', '{"cached":null,"ignore_cache":false}'), +(35014, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:58.646+00', '{"cached":null,"ignore_cache":false}'), +(35015, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:15:58.741+00', '{"cached":null,"ignore_cache":false}'), +(35016, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:52.363+00', '{"cached":null,"ignore_cache":false}'), +(35017, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:52.382+00', '{"cached":null,"ignore_cache":false}'), +(35018, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:52.43+00', '{"cached":null,"ignore_cache":false}'), +(35019, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:52.467+00', '{"cached":null,"ignore_cache":false}'), +(35020, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:52.47+00', '{"cached":null,"ignore_cache":false}'), +(35021, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:53.294+00', '{"cached":null,"ignore_cache":false}'), +(35022, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:20:53.332+00', '{"cached":null,"ignore_cache":false}'), +(35023, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:28.184+00', '{"cached":null,"ignore_cache":false}'), +(35024, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:28.22+00', '{"cached":null,"ignore_cache":false}'), +(35025, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:28.283+00', '{"cached":null,"ignore_cache":false}'), +(35026, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:28.334+00', '{"cached":null,"ignore_cache":false}'), +(35027, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:28.355+00', '{"cached":null,"ignore_cache":false}'), +(35028, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:28.583+00', '{"cached":null,"ignore_cache":false}'), +(35029, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:21:28.623+00', '{"cached":null,"ignore_cache":false}'), +(35030, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:44.511+00', '{"cached":null,"ignore_cache":false}'), +(35031, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:44.516+00', '{"cached":null,"ignore_cache":false}'), +(35032, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:44.949+00', '{"cached":null,"ignore_cache":false}'), +(35033, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:44.974+00', '{"cached":null,"ignore_cache":false}'), +(35034, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:45.02+00', '{"cached":null,"ignore_cache":false}'), +(35035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:45.41+00', '{"cached":null,"ignore_cache":false}'), +(35036, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:25:45.437+00', '{"cached":null,"ignore_cache":false}'), +(35037, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:28.434+00', '{"cached":null,"ignore_cache":false}'), +(35038, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:28.438+00', '{"cached":null,"ignore_cache":false}'), +(35039, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:28.861+00', '{"cached":null,"ignore_cache":false}'), +(35040, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:28.866+00', '{"cached":null,"ignore_cache":false}'), +(35041, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:28.983+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35042, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:29.777+00', '{"cached":null,"ignore_cache":false}'), +(35043, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:29.812+00', '{"cached":null,"ignore_cache":false}'), +(35044, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:56.883+00', '{"cached":null,"ignore_cache":false}'), +(35045, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:57.226+00', '{"cached":null,"ignore_cache":false}'), +(35046, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:57.515+00', '{"cached":null,"ignore_cache":false}'), +(35047, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:57.722+00', '{"cached":null,"ignore_cache":false}'), +(35048, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:57.845+00', '{"cached":null,"ignore_cache":false}'), +(35049, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:58.042+00', '{"cached":null,"ignore_cache":false}'), +(35050, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:58.769+00', '{"cached":null,"ignore_cache":false}'), +(35051, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:58.829+00', '{"cached":null,"ignore_cache":false}'), +(35052, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:58.965+00', '{"cached":null,"ignore_cache":false}'), +(35053, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:59.097+00', '{"cached":null,"ignore_cache":false}'), +(35054, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:26:59.769+00', '{"cached":null,"ignore_cache":false}'), +(35055, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:27:00.242+00', '{"cached":null,"ignore_cache":false}'), +(35056, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:27:00.39+00', '{"cached":null,"ignore_cache":false}'), +(35057, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:27:00.417+00', '{"cached":null,"ignore_cache":false}'), +(35058, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:36.817+00', '{"cached":null,"ignore_cache":false}'), +(35059, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:37.184+00', '{"cached":null,"ignore_cache":false}'), +(35060, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:37.288+00', '{"cached":null,"ignore_cache":false}'), +(35061, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:37.347+00', '{"cached":null,"ignore_cache":false}'), +(35062, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:37.394+00', '{"cached":null,"ignore_cache":false}'), +(35063, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:38.393+00', '{"cached":null,"ignore_cache":false}'), +(35064, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:38.479+00', '{"cached":null,"ignore_cache":false}'), +(35065, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:55.307+00', '{"cached":null,"ignore_cache":false}'), +(35066, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:55.346+00', '{"cached":null,"ignore_cache":false}'), +(35067, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:55.369+00', '{"cached":null,"ignore_cache":false}'), +(35068, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:55.541+00', '{"cached":null,"ignore_cache":false}'), +(35069, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:55.681+00', '{"cached":null,"ignore_cache":false}'), +(35070, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:55.951+00', '{"cached":null,"ignore_cache":false}'), +(35071, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:31:56.03+00', '{"cached":null,"ignore_cache":false}'), +(35072, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:37.13+00', '{"cached":null,"ignore_cache":false}'), +(35073, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:37.156+00', '{"cached":null,"ignore_cache":false}'), +(35074, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:37.168+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:37.171+00', '{"cached":null,"ignore_cache":false}'), +(35076, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:37.173+00', '{"cached":null,"ignore_cache":false}'), +(35077, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:37.915+00', '{"cached":null,"ignore_cache":false}'), +(35078, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:37.983+00', '{"cached":null,"ignore_cache":false}'), +(35079, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:57.804+00', '{"cached":null,"ignore_cache":false}'), +(35080, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:57.837+00', '{"cached":null,"ignore_cache":false}'), +(35081, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:59.069+00', '{"cached":null,"ignore_cache":false}'), +(35082, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:59.293+00', '{"cached":null,"ignore_cache":false}'), +(35083, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:36:59.409+00', '{"cached":null,"ignore_cache":false}'), +(35084, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:37:00.056+00', '{"cached":null,"ignore_cache":false}'), +(35085, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:37:00.088+00', '{"cached":null,"ignore_cache":false}'), +(35086, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:10.742+00', '{"cached":null,"ignore_cache":false}'), +(35087, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:11.854+00', '{"cached":null,"ignore_cache":false}'), +(35088, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:11.878+00', '{"cached":null,"ignore_cache":false}'), +(35089, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:12.255+00', '{"cached":null,"ignore_cache":false}'), +(35090, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:12.485+00', '{"cached":null,"ignore_cache":false}'), +(35091, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:12.741+00', '{"cached":null,"ignore_cache":false}'), +(35092, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.188+00', '{"cached":null,"ignore_cache":false}'), +(35093, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.189+00', '{"cached":null,"ignore_cache":false}'), +(35094, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.285+00', '{"cached":null,"ignore_cache":false}'), +(35095, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.598+00', '{"cached":null,"ignore_cache":false}'), +(35096, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.617+00', '{"cached":null,"ignore_cache":false}'), +(35097, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.659+00', '{"cached":null,"ignore_cache":false}'), +(35098, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.726+00', '{"cached":null,"ignore_cache":false}'), +(35099, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:38:13.728+00', '{"cached":null,"ignore_cache":false}'), +(35100, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.831+00', '{"cached":null,"ignore_cache":false}'), +(35101, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.834+00', '{"cached":null,"ignore_cache":false}'), +(35102, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.865+00', '{"cached":null,"ignore_cache":false}'), +(35103, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:56.975+00', '{"cached":null,"ignore_cache":false}'), +(35104, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:57.849+00', '{"cached":null,"ignore_cache":false}'), +(35105, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:58.057+00', '{"cached":null,"ignore_cache":false}'), +(35106, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:58.323+00', '{"cached":null,"ignore_cache":false}'), +(35107, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:58.328+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35108, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:58.329+00', '{"cached":null,"ignore_cache":false}'), +(35109, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:58.378+00', '{"cached":null,"ignore_cache":false}'), +(35110, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:39:59.885+00', '{"cached":null,"ignore_cache":false}'), +(35111, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:40:00.045+00', '{"cached":null,"ignore_cache":false}'), +(35112, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:40:00.109+00', '{"cached":null,"ignore_cache":false}'), +(35113, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:40:00.166+00', '{"cached":null,"ignore_cache":false}'), +(35114, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.507+00', '{"cached":null,"ignore_cache":false}'), +(35115, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:28.512+00', '{"cached":null,"ignore_cache":false}'), +(35116, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:29.117+00', '{"cached":null,"ignore_cache":false}'), +(35117, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:29.325+00', '{"cached":null,"ignore_cache":false}'), +(35118, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:29.377+00', '{"cached":null,"ignore_cache":false}'), +(35119, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:29.729+00', '{"cached":null,"ignore_cache":false}'), +(35120, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:41:29.747+00', '{"cached":null,"ignore_cache":false}'), +(35121, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:13.703+00', '{"cached":null,"ignore_cache":false}'), +(35122, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:13.757+00', '{"cached":null,"ignore_cache":false}'), +(35123, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:15.77+00', '{"cached":null,"ignore_cache":false}'), +(35124, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:15.917+00', '{"cached":null,"ignore_cache":false}'), +(35125, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:16.183+00', '{"cached":null,"ignore_cache":false}'), +(35126, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:19.669+00', '{"cached":null,"ignore_cache":false}'), +(35127, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:43:19.721+00', '{"cached":null,"ignore_cache":false}'), +(35128, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:13.755+00', '{"cached":null,"ignore_cache":false}'), +(35129, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:13.905+00', '{"cached":null,"ignore_cache":false}'), +(35130, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:14.036+00', '{"cached":null,"ignore_cache":false}'), +(35131, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:14.083+00', '{"cached":null,"ignore_cache":false}'), +(35132, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:14.111+00', '{"cached":null,"ignore_cache":false}'), +(35133, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:15.155+00', '{"cached":null,"ignore_cache":false}'), +(35134, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:45:15.241+00', '{"cached":null,"ignore_cache":false}'), +(35135, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:48.707+00', '{"cached":null,"ignore_cache":false}'), +(35136, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:48.71+00', '{"cached":null,"ignore_cache":false}'), +(35137, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:49.178+00', '{"cached":null,"ignore_cache":false}'), +(35138, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:49.23+00', '{"cached":null,"ignore_cache":false}'), +(35139, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:49.336+00', '{"cached":null,"ignore_cache":false}'), +(35140, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:49.924+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35141, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:47:49.966+00', '{"cached":null,"ignore_cache":false}'), +(35142, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:09.053+00', '{"cached":null,"ignore_cache":false}'), +(35143, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:09.148+00', '{"cached":null,"ignore_cache":false}'), +(35144, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:09.181+00', '{"cached":null,"ignore_cache":false}'), +(35145, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:09.268+00', '{"cached":null,"ignore_cache":false}'), +(35146, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:09.278+00', '{"cached":null,"ignore_cache":false}'), +(35147, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:09.522+00', '{"cached":null,"ignore_cache":false}'), +(35148, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:48:09.699+00', '{"cached":null,"ignore_cache":false}'), +(35149, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:57.081+00', '{"cached":null,"ignore_cache":false}'), +(35150, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:57.095+00', '{"cached":null,"ignore_cache":false}'), +(35151, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:58.168+00', '{"cached":null,"ignore_cache":false}'), +(35152, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:58.193+00', '{"cached":null,"ignore_cache":false}'), +(35153, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:58.249+00', '{"cached":null,"ignore_cache":false}'), +(35154, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:58.945+00', '{"cached":null,"ignore_cache":false}'), +(35155, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:49:58.962+00', '{"cached":null,"ignore_cache":false}'), +(35156, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:48.073+00', '{"cached":null,"ignore_cache":false}'), +(35157, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:48.087+00', '{"cached":null,"ignore_cache":false}'), +(35158, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:48.512+00', '{"cached":null,"ignore_cache":false}'), +(35159, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:48.556+00', '{"cached":null,"ignore_cache":false}'), +(35160, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:48.589+00', '{"cached":null,"ignore_cache":false}'), +(35161, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:49.461+00', '{"cached":null,"ignore_cache":false}'), +(35162, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:52:49.471+00', '{"cached":null,"ignore_cache":false}'), +(35163, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.526+00', '{"cached":null,"ignore_cache":false}'), +(35164, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.653+00', '{"cached":null,"ignore_cache":false}'), +(35165, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.829+00', '{"cached":null,"ignore_cache":false}'), +(35166, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.845+00', '{"cached":null,"ignore_cache":false}'), +(35167, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:08.853+00', '{"cached":null,"ignore_cache":false}'), +(35168, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:09.034+00', '{"cached":null,"ignore_cache":false}'), +(35169, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:53:09.13+00', '{"cached":null,"ignore_cache":false}'), +(35170, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.616+00', '{"cached":null,"ignore_cache":false}'), +(35171, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:56.715+00', '{"cached":null,"ignore_cache":false}'), +(35172, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:57.015+00', '{"cached":null,"ignore_cache":false}'), +(35173, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:57.035+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35174, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:57.115+00', '{"cached":null,"ignore_cache":false}'), +(35175, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:57.35+00', '{"cached":null,"ignore_cache":false}'), +(35176, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:54:57.368+00', '{"cached":null,"ignore_cache":false}'), +(35177, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:51.873+00', '{"cached":null,"ignore_cache":false}'), +(35178, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:51.95+00', '{"cached":null,"ignore_cache":false}'), +(35179, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:52.664+00', '{"cached":null,"ignore_cache":false}'), +(35180, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:52.685+00', '{"cached":null,"ignore_cache":false}'), +(35181, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:52.687+00', '{"cached":null,"ignore_cache":false}'), +(35182, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:53.683+00', '{"cached":null,"ignore_cache":false}'), +(35183, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:57:53.722+00', '{"cached":null,"ignore_cache":false}'), +(35184, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:08.831+00', '{"cached":null,"ignore_cache":false}'), +(35185, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:09.002+00', '{"cached":null,"ignore_cache":false}'), +(35186, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:09.004+00', '{"cached":null,"ignore_cache":false}'), +(35187, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:09.078+00', '{"cached":null,"ignore_cache":false}'), +(35188, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:09.119+00', '{"cached":null,"ignore_cache":false}'), +(35189, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:09.661+00', '{"cached":null,"ignore_cache":false}'), +(35190, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:58:09.705+00', '{"cached":null,"ignore_cache":false}'), +(35191, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:57.034+00', '{"cached":null,"ignore_cache":false}'), +(35192, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:57.057+00', '{"cached":null,"ignore_cache":false}'), +(35193, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:57.383+00', '{"cached":null,"ignore_cache":false}'), +(35194, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:57.425+00', '{"cached":null,"ignore_cache":false}'), +(35195, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:57.43+00', '{"cached":null,"ignore_cache":false}'), +(35196, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:57.982+00', '{"cached":null,"ignore_cache":false}'), +(35197, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 09:59:58.023+00', '{"cached":null,"ignore_cache":false}'), +(35198, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:54.102+00', '{"cached":null,"ignore_cache":false}'), +(35199, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:54.126+00', '{"cached":null,"ignore_cache":false}'), +(35200, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:54.506+00', '{"cached":null,"ignore_cache":false}'), +(35201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:54.508+00', '{"cached":null,"ignore_cache":false}'), +(35202, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:54.587+00', '{"cached":null,"ignore_cache":false}'), +(35203, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:55.3+00', '{"cached":null,"ignore_cache":false}'), +(35204, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:02:55.328+00', '{"cached":null,"ignore_cache":false}'), +(35205, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.733+00', '{"cached":null,"ignore_cache":false}'), +(35206, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.867+00', '{"cached":null,"ignore_cache":false}'), +(35207, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.958+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35208, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:17.991+00', '{"cached":null,"ignore_cache":false}'), +(35209, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:18.005+00', '{"cached":null,"ignore_cache":false}'), +(35210, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:18.327+00', '{"cached":null,"ignore_cache":false}'), +(35211, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:03:18.383+00', '{"cached":null,"ignore_cache":false}'), +(35212, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:57.055+00', '{"cached":null,"ignore_cache":false}'), +(35213, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:57.128+00', '{"cached":null,"ignore_cache":false}'), +(35214, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:57.578+00', '{"cached":null,"ignore_cache":false}'), +(35215, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:57.605+00', '{"cached":null,"ignore_cache":false}'), +(35216, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:57.7+00', '{"cached":null,"ignore_cache":false}'), +(35217, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:58.234+00', '{"cached":null,"ignore_cache":false}'), +(35218, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:04:58.25+00', '{"cached":null,"ignore_cache":false}'), +(35219, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:51.131+00', '{"cached":null,"ignore_cache":false}'), +(35220, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:51.186+00', '{"cached":null,"ignore_cache":false}'), +(35221, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:51.849+00', '{"cached":null,"ignore_cache":false}'), +(35222, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:51.99+00', '{"cached":null,"ignore_cache":false}'), +(35223, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:52.014+00', '{"cached":null,"ignore_cache":false}'), +(35224, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:53.193+00', '{"cached":null,"ignore_cache":false}'), +(35225, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:07:53.199+00', '{"cached":null,"ignore_cache":false}'), +(35226, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:09.172+00', '{"cached":null,"ignore_cache":false}'), +(35227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:09.203+00', '{"cached":null,"ignore_cache":false}'), +(35228, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:09.222+00', '{"cached":null,"ignore_cache":false}'), +(35229, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:09.287+00', '{"cached":null,"ignore_cache":false}'), +(35230, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:09.354+00', '{"cached":null,"ignore_cache":false}'), +(35231, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:09.732+00', '{"cached":null,"ignore_cache":false}'), +(35232, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:08:09.752+00', '{"cached":null,"ignore_cache":false}'), +(35233, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:57.129+00', '{"cached":null,"ignore_cache":false}'), +(35234, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:57.169+00', '{"cached":null,"ignore_cache":false}'), +(35235, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:57.43+00', '{"cached":null,"ignore_cache":false}'), +(35236, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:57.638+00', '{"cached":null,"ignore_cache":false}'), +(35237, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:57.661+00', '{"cached":null,"ignore_cache":false}'), +(35238, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:58.169+00', '{"cached":null,"ignore_cache":false}'), +(35239, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:09:58.206+00', '{"cached":null,"ignore_cache":false}'), +(35240, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:53.636+00', '{"cached":null,"ignore_cache":false}'), +(35241, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:53.691+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35242, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:53.818+00', '{"cached":null,"ignore_cache":false}'), +(35243, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:53.821+00', '{"cached":null,"ignore_cache":false}'), +(35244, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:53.848+00', '{"cached":null,"ignore_cache":false}'), +(35245, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:54.747+00', '{"cached":null,"ignore_cache":false}'), +(35246, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:12:54.786+00', '{"cached":null,"ignore_cache":false}'), +(35247, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.955+00', '{"cached":null,"ignore_cache":false}'), +(35248, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:55.969+00', '{"cached":null,"ignore_cache":false}'), +(35249, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:56.421+00', '{"cached":null,"ignore_cache":false}'), +(35250, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:56.74+00', '{"cached":null,"ignore_cache":false}'), +(35251, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:56.926+00', '{"cached":null,"ignore_cache":false}'), +(35252, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.074+00', '{"cached":null,"ignore_cache":false}'), +(35253, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.182+00', '{"cached":null,"ignore_cache":false}'), +(35254, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.793+00', '{"cached":null,"ignore_cache":false}'), +(35255, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.847+00', '{"cached":null,"ignore_cache":false}'), +(35256, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:57.955+00', '{"cached":null,"ignore_cache":false}'), +(35257, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:58.1+00', '{"cached":null,"ignore_cache":false}'), +(35258, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:58.154+00', '{"cached":null,"ignore_cache":false}'), +(35259, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:58.429+00', '{"cached":null,"ignore_cache":false}'), +(35260, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:14:58.445+00', '{"cached":null,"ignore_cache":false}'), +(35261, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:51.506+00', '{"cached":null,"ignore_cache":false}'), +(35262, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:51.525+00', '{"cached":null,"ignore_cache":false}'), +(35263, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:52.02+00', '{"cached":null,"ignore_cache":false}'), +(35264, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:52.041+00', '{"cached":null,"ignore_cache":false}'), +(35265, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:52.073+00', '{"cached":null,"ignore_cache":false}'), +(35266, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:53.193+00', '{"cached":null,"ignore_cache":false}'), +(35267, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:17:53.195+00', '{"cached":null,"ignore_cache":false}'), +(35268, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:57.54+00', '{"cached":null,"ignore_cache":false}'), +(35269, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:57.574+00', '{"cached":null,"ignore_cache":false}'), +(35270, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:57.739+00', '{"cached":null,"ignore_cache":false}'), +(35271, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:57.753+00', '{"cached":null,"ignore_cache":false}'), +(35272, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:57.809+00', '{"cached":null,"ignore_cache":false}'), +(35273, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:58.148+00', '{"cached":null,"ignore_cache":false}'), +(35274, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:19:58.2+00', '{"cached":null,"ignore_cache":false}'), +(35275, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:54.312+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35276, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:54.419+00', '{"cached":null,"ignore_cache":false}'), +(35277, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:54.518+00', '{"cached":null,"ignore_cache":false}'), +(35278, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:54.554+00', '{"cached":null,"ignore_cache":false}'), +(35279, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:54.595+00', '{"cached":null,"ignore_cache":false}'), +(35280, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:55.413+00', '{"cached":null,"ignore_cache":false}'), +(35281, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:22:55.447+00', '{"cached":null,"ignore_cache":false}'), +(35282, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:57.97+00', '{"cached":null,"ignore_cache":false}'), +(35283, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:58.073+00', '{"cached":null,"ignore_cache":false}'), +(35284, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:58.201+00', '{"cached":null,"ignore_cache":false}'), +(35285, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:58.273+00', '{"cached":null,"ignore_cache":false}'), +(35286, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:58.385+00', '{"cached":null,"ignore_cache":false}'), +(35287, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:58.584+00', '{"cached":null,"ignore_cache":false}'), +(35288, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:24:58.662+00', '{"cached":null,"ignore_cache":false}'), +(35289, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:50.615+00', '{"cached":null,"ignore_cache":false}'), +(35290, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:50.66+00', '{"cached":null,"ignore_cache":false}'), +(35291, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:51.239+00', '{"cached":null,"ignore_cache":false}'), +(35292, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:51.296+00', '{"cached":null,"ignore_cache":false}'), +(35293, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:51.392+00', '{"cached":null,"ignore_cache":false}'), +(35294, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:52.185+00', '{"cached":null,"ignore_cache":false}'), +(35295, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:27:52.212+00', '{"cached":null,"ignore_cache":false}'), +(35296, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:18.731+00', '{"cached":null,"ignore_cache":false}'), +(35297, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:19.106+00', '{"cached":null,"ignore_cache":false}'), +(35298, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:19.266+00', '{"cached":null,"ignore_cache":false}'), +(35299, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:19.276+00', '{"cached":null,"ignore_cache":false}'), +(35300, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:20.297+00', '{"cached":null,"ignore_cache":false}'), +(35301, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:20.371+00', '{"cached":null,"ignore_cache":false}'), +(35302, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:20.394+00', '{"cached":null,"ignore_cache":false}'), +(35303, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:20.397+00', '{"cached":null,"ignore_cache":false}'), +(35304, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:20.463+00', '{"cached":null,"ignore_cache":false}'), +(35305, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:20.466+00', '{"cached":null,"ignore_cache":false}'), +(35306, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:21.003+00', '{"cached":null,"ignore_cache":false}'), +(35307, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:21.2+00', '{"cached":null,"ignore_cache":false}'), +(35308, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:21.314+00', '{"cached":null,"ignore_cache":false}'), +(35309, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:30:21.32+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35310, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:26.54+00', '{"cached":null,"ignore_cache":false}'), +(35311, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:26.792+00', '{"cached":null,"ignore_cache":false}'), +(35312, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:27.584+00', '{"cached":null,"ignore_cache":false}'), +(35313, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:27.653+00', '{"cached":null,"ignore_cache":false}'), +(35314, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:27.741+00', '{"cached":null,"ignore_cache":false}'), +(35315, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:29.3+00', '{"cached":null,"ignore_cache":false}'), +(35316, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:35:29.396+00', '{"cached":null,"ignore_cache":false}'), +(35317, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:24.216+00', '{"cached":null,"ignore_cache":false}'), +(35318, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:24.225+00', '{"cached":null,"ignore_cache":false}'), +(35319, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:24.234+00', '{"cached":null,"ignore_cache":false}'), +(35320, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:24.247+00', '{"cached":null,"ignore_cache":false}'), +(35321, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.095+00', '{"cached":null,"ignore_cache":false}'), +(35322, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.129+00', '{"cached":null,"ignore_cache":false}'), +(35323, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.25+00', '{"cached":null,"ignore_cache":false}'), +(35324, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.496+00', '{"cached":null,"ignore_cache":false}'), +(35325, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.498+00', '{"cached":null,"ignore_cache":false}'), +(35326, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.634+00', '{"cached":null,"ignore_cache":false}'), +(35327, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.728+00', '{"cached":null,"ignore_cache":false}'), +(35328, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.756+00', '{"cached":null,"ignore_cache":false}'), +(35329, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:25.867+00', '{"cached":null,"ignore_cache":false}'), +(35330, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:37:26.033+00', '{"cached":null,"ignore_cache":false}'), +(35331, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:28.247+00', '{"cached":null,"ignore_cache":false}'), +(35332, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:28.337+00', '{"cached":null,"ignore_cache":false}'), +(35333, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:28.459+00', '{"cached":null,"ignore_cache":false}'), +(35334, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:28.473+00', '{"cached":null,"ignore_cache":false}'), +(35335, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:28.491+00', '{"cached":null,"ignore_cache":false}'), +(35336, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:29.65+00', '{"cached":null,"ignore_cache":false}'), +(35337, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:40:29.688+00', '{"cached":null,"ignore_cache":false}'), +(35338, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:31.436+00', '{"cached":null,"ignore_cache":false}'), +(35339, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:31.626+00', '{"cached":null,"ignore_cache":false}'), +(35340, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:31.645+00', '{"cached":null,"ignore_cache":false}'), +(35341, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:31.646+00', '{"cached":null,"ignore_cache":false}'), +(35342, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:31.663+00', '{"cached":null,"ignore_cache":false}'), +(35343, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:32.466+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35344, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:42:32.5+00', '{"cached":null,"ignore_cache":false}'), +(35345, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:21.911+00', '{"cached":null,"ignore_cache":false}'), +(35346, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:21.92+00', '{"cached":null,"ignore_cache":false}'), +(35347, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:22.236+00', '{"cached":null,"ignore_cache":false}'), +(35348, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:22.323+00', '{"cached":null,"ignore_cache":false}'), +(35349, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:22.386+00', '{"cached":null,"ignore_cache":false}'), +(35350, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:23.276+00', '{"cached":null,"ignore_cache":false}'), +(35351, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:45:23.287+00', '{"cached":null,"ignore_cache":false}'), +(35352, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:29.151+00', '{"cached":null,"ignore_cache":false}'), +(35353, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:29.223+00', '{"cached":null,"ignore_cache":false}'), +(35354, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:29.279+00', '{"cached":null,"ignore_cache":false}'), +(35355, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:29.31+00', '{"cached":null,"ignore_cache":false}'), +(35356, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:29.355+00', '{"cached":null,"ignore_cache":false}'), +(35357, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:31.151+00', '{"cached":null,"ignore_cache":false}'), +(35358, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:47:31.246+00', '{"cached":null,"ignore_cache":false}'), +(35359, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:19.873+00', '{"cached":null,"ignore_cache":false}'), +(35360, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:19.918+00', '{"cached":null,"ignore_cache":false}'), +(35361, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:19.931+00', '{"cached":null,"ignore_cache":false}'), +(35362, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:19.951+00', '{"cached":null,"ignore_cache":false}'), +(35363, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:19.973+00', '{"cached":null,"ignore_cache":false}'), +(35364, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:21.21+00', '{"cached":null,"ignore_cache":false}'), +(35365, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:21.385+00', '{"cached":null,"ignore_cache":false}'), +(35366, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:22.164+00', '{"cached":null,"ignore_cache":false}'), +(35367, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:22.257+00', '{"cached":null,"ignore_cache":false}'), +(35368, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:22.398+00', '{"cached":null,"ignore_cache":false}'), +(35369, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:22.497+00', '{"cached":null,"ignore_cache":false}'), +(35370, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:22.513+00', '{"cached":null,"ignore_cache":false}'), +(35371, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:22.776+00', '{"cached":null,"ignore_cache":false}'), +(35372, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:52:22.818+00', '{"cached":null,"ignore_cache":false}'), +(35373, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:39.059+00', '{"cached":null,"ignore_cache":false}'), +(35374, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:39.133+00', '{"cached":null,"ignore_cache":false}'), +(35375, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:39.149+00', '{"cached":null,"ignore_cache":false}'), +(35376, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:39.152+00', '{"cached":null,"ignore_cache":false}'), +(35377, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:39.156+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35378, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:41.605+00', '{"cached":null,"ignore_cache":false}'), +(35379, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 10:57:41.61+00', '{"cached":null,"ignore_cache":false}'), +(35380, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:27.303+00', '{"cached":null,"ignore_cache":false}'), +(35381, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:27.318+00', '{"cached":null,"ignore_cache":false}'), +(35382, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:27.333+00', '{"cached":null,"ignore_cache":false}'), +(35383, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:27.351+00', '{"cached":null,"ignore_cache":false}'), +(35384, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:27.36+00', '{"cached":null,"ignore_cache":false}'), +(35385, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:28.508+00', '{"cached":null,"ignore_cache":false}'), +(35386, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:03:28.547+00', '{"cached":null,"ignore_cache":false}'), +(35387, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:22.21+00', '{"cached":null,"ignore_cache":false}'), +(35388, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:22.338+00', '{"cached":null,"ignore_cache":false}'), +(35389, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:22.621+00', '{"cached":null,"ignore_cache":false}'), +(35390, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:22.712+00', '{"cached":null,"ignore_cache":false}'), +(35391, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:22.754+00', '{"cached":null,"ignore_cache":false}'), +(35392, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:23.314+00', '{"cached":null,"ignore_cache":false}'), +(35393, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:08:23.36+00', '{"cached":null,"ignore_cache":false}'), +(35394, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:17.409+00', '{"cached":null,"ignore_cache":false}'), +(35395, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:17.561+00', '{"cached":null,"ignore_cache":false}'), +(35396, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:17.998+00', '{"cached":null,"ignore_cache":false}'), +(35397, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:18.266+00', '{"cached":null,"ignore_cache":false}'), +(35398, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:18.762+00', '{"cached":null,"ignore_cache":false}'), +(35399, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:19.317+00', '{"cached":null,"ignore_cache":false}'), +(35400, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:19.441+00', '{"cached":null,"ignore_cache":false}'), +(35401, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:19.558+00', '{"cached":null,"ignore_cache":false}'), +(35402, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:19.57+00', '{"cached":null,"ignore_cache":false}'), +(35403, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:19.721+00', '{"cached":null,"ignore_cache":false}'), +(35404, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:20.181+00', '{"cached":null,"ignore_cache":false}'), +(35405, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:20.674+00', '{"cached":null,"ignore_cache":false}'), +(35406, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:20.789+00', '{"cached":null,"ignore_cache":false}'), +(35407, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:12:20.82+00', '{"cached":null,"ignore_cache":false}'), +(35408, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:21.793+00', '{"cached":null,"ignore_cache":false}'), +(35409, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:21.811+00', '{"cached":null,"ignore_cache":false}'), +(35410, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:22.306+00', '{"cached":null,"ignore_cache":false}'), +(35411, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:22.315+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35412, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:22.381+00', '{"cached":null,"ignore_cache":false}'), +(35413, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:23.882+00', '{"cached":null,"ignore_cache":false}'), +(35414, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:13:23.896+00', '{"cached":null,"ignore_cache":false}'), +(35415, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:26.872+00', '{"cached":null,"ignore_cache":false}'), +(35416, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:26.901+00', '{"cached":null,"ignore_cache":false}'), +(35417, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:26.905+00', '{"cached":null,"ignore_cache":false}'), +(35418, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:26.907+00', '{"cached":null,"ignore_cache":false}'), +(35419, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:27.567+00', '{"cached":null,"ignore_cache":false}'), +(35420, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:27.571+00', '{"cached":null,"ignore_cache":false}'), +(35421, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:27.606+00', '{"cached":null,"ignore_cache":false}'), +(35422, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:27.669+00', '{"cached":null,"ignore_cache":false}'), +(35423, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:27.712+00', '{"cached":null,"ignore_cache":false}'), +(35424, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:27.716+00', '{"cached":null,"ignore_cache":false}'), +(35425, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:28.997+00', '{"cached":null,"ignore_cache":false}'), +(35426, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:29.05+00', '{"cached":null,"ignore_cache":false}'), +(35427, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:29.106+00', '{"cached":null,"ignore_cache":false}'), +(35428, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:16:29.155+00', '{"cached":null,"ignore_cache":false}'), +(35429, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:17.481+00', '{"cached":null,"ignore_cache":false}'), +(35430, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:17.504+00', '{"cached":null,"ignore_cache":false}'), +(35431, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:18.48+00', '{"cached":null,"ignore_cache":false}'), +(35432, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:18.512+00', '{"cached":null,"ignore_cache":false}'), +(35433, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:18.517+00', '{"cached":null,"ignore_cache":false}'), +(35434, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:20.009+00', '{"cached":null,"ignore_cache":false}'), +(35435, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:17:20.083+00', '{"cached":null,"ignore_cache":false}'), +(35436, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:20.857+00', '{"cached":null,"ignore_cache":false}'), +(35437, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:20.873+00', '{"cached":null,"ignore_cache":false}'), +(35438, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:21.176+00', '{"cached":null,"ignore_cache":false}'), +(35439, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:21.204+00', '{"cached":null,"ignore_cache":false}'), +(35440, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:21.249+00', '{"cached":null,"ignore_cache":false}'), +(35441, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:21.962+00', '{"cached":null,"ignore_cache":false}'), +(35442, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:18:21.981+00', '{"cached":null,"ignore_cache":false}'), +(35443, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:33.143+00', '{"cached":null,"ignore_cache":false}'), +(35444, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:33.157+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35445, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:33.516+00', '{"cached":null,"ignore_cache":false}'), +(35446, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:33.571+00', '{"cached":null,"ignore_cache":false}'), +(35447, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:33.677+00', '{"cached":null,"ignore_cache":false}'), +(35448, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:35.024+00', '{"cached":null,"ignore_cache":false}'), +(35449, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:21:35.05+00', '{"cached":null,"ignore_cache":false}'), +(35450, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.543+00', '{"cached":null,"ignore_cache":false}'), +(35451, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.588+00', '{"cached":null,"ignore_cache":false}'), +(35452, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.758+00', '{"cached":null,"ignore_cache":false}'), +(35453, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.813+00', '{"cached":null,"ignore_cache":false}'), +(35454, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:15.85+00', '{"cached":null,"ignore_cache":false}'), +(35455, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:16.15+00', '{"cached":null,"ignore_cache":false}'), +(35456, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:22:16.2+00', '{"cached":null,"ignore_cache":false}'), +(35457, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:21.369+00', '{"cached":null,"ignore_cache":false}'), +(35458, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:21.421+00', '{"cached":null,"ignore_cache":false}'), +(35459, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:21.715+00', '{"cached":null,"ignore_cache":false}'), +(35460, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:21.817+00', '{"cached":null,"ignore_cache":false}'), +(35461, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:21.887+00', '{"cached":null,"ignore_cache":false}'), +(35462, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:22.521+00', '{"cached":null,"ignore_cache":false}'), +(35463, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:23:22.63+00', '{"cached":null,"ignore_cache":false}'), +(35464, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:48.553+00', '{"cached":null,"ignore_cache":false}'), +(35465, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:48.56+00', '{"cached":null,"ignore_cache":false}'), +(35466, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:48.561+00', '{"cached":null,"ignore_cache":false}'), +(35467, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:49.041+00', '{"cached":null,"ignore_cache":false}'), +(35468, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:49.156+00', '{"cached":null,"ignore_cache":false}'), +(35469, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:49.224+00', '{"cached":null,"ignore_cache":false}'), +(35470, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:49.332+00', '{"cached":null,"ignore_cache":false}'), +(35471, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:49.384+00', '{"cached":null,"ignore_cache":false}'), +(35472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:49.506+00', '{"cached":null,"ignore_cache":false}'), +(35473, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:51.778+00', '{"cached":null,"ignore_cache":false}'), +(35474, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:51.841+00', '{"cached":null,"ignore_cache":false}'), +(35475, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:51.855+00', '{"cached":null,"ignore_cache":false}'), +(35476, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:25:51.893+00', '{"cached":null,"ignore_cache":false}'), +(35477, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:35.044+00', '{"cached":null,"ignore_cache":false}'), +(35478, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:35.075+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35479, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:35.615+00', '{"cached":null,"ignore_cache":false}'), +(35480, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:35.683+00', '{"cached":null,"ignore_cache":false}'), +(35481, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:35.893+00', '{"cached":null,"ignore_cache":false}'), +(35482, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:36.255+00', '{"cached":null,"ignore_cache":false}'), +(35483, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:26:36.765+00', '{"cached":null,"ignore_cache":false}'), +(35484, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:24.32+00', '{"cached":null,"ignore_cache":false}'), +(35485, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:24.343+00', '{"cached":null,"ignore_cache":false}'), +(35486, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:24.554+00', '{"cached":null,"ignore_cache":false}'), +(35487, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:24.581+00', '{"cached":null,"ignore_cache":false}'), +(35488, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:24.606+00', '{"cached":null,"ignore_cache":false}'), +(35489, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:26.166+00', '{"cached":null,"ignore_cache":false}'), +(35490, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:28:26.175+00', '{"cached":null,"ignore_cache":false}'), +(35491, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:12.096+00', '{"cached":null,"ignore_cache":false}'), +(35492, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:12.505+00', '{"cached":null,"ignore_cache":false}'), +(35493, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:12.508+00', '{"cached":null,"ignore_cache":false}'), +(35494, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:12.516+00', '{"cached":null,"ignore_cache":false}'), +(35495, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:15.233+00', '{"cached":null,"ignore_cache":false}'), +(35496, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:15.292+00', '{"cached":null,"ignore_cache":false}'), +(35497, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:15.46+00', '{"cached":null,"ignore_cache":false}'), +(35498, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:15.479+00', '{"cached":null,"ignore_cache":false}'), +(35499, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:15.929+00', '{"cached":null,"ignore_cache":false}'), +(35500, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:16.538+00', '{"cached":null,"ignore_cache":false}'), +(35501, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:21.671+00', '{"cached":null,"ignore_cache":false}'), +(35502, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:21.71+00', '{"cached":null,"ignore_cache":false}'), +(35503, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:21.83+00', '{"cached":null,"ignore_cache":false}'), +(35504, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:21.832+00', '{"cached":null,"ignore_cache":false}'), +(35505, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:43.88+00', '{"cached":null,"ignore_cache":false}'), +(35506, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:44.145+00', '{"cached":null,"ignore_cache":false}'), +(35507, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:44.363+00', '{"cached":null,"ignore_cache":false}'), +(35508, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:45.151+00', '{"cached":null,"ignore_cache":false}'), +(35509, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:49.637+00', '{"cached":null,"ignore_cache":false}'), +(35510, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:49.646+00', '{"cached":null,"ignore_cache":false}'), +(35511, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:49.718+00', '{"cached":null,"ignore_cache":false}'), +(35512, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:49.926+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35513, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:50.314+00', '{"cached":null,"ignore_cache":false}'), +(35514, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:50.554+00', '{"cached":null,"ignore_cache":false}'), +(35515, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:54.985+00', '{"cached":null,"ignore_cache":false}'), +(35516, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:55.054+00', '{"cached":null,"ignore_cache":false}'), +(35517, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:55.721+00', '{"cached":null,"ignore_cache":false}'), +(35518, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:32:55.739+00', '{"cached":null,"ignore_cache":false}'), +(35519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:30.56+00', '{"cached":null,"ignore_cache":false}'), +(35520, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:30.676+00', '{"cached":null,"ignore_cache":false}'), +(35521, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:31.483+00', '{"cached":null,"ignore_cache":false}'), +(35522, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:31.539+00', '{"cached":null,"ignore_cache":false}'), +(35523, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:31.692+00', '{"cached":null,"ignore_cache":false}'), +(35524, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:34.447+00', '{"cached":null,"ignore_cache":false}'), +(35525, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:33:34.55+00', '{"cached":null,"ignore_cache":false}'), +(35526, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:44.1+00', '{"cached":null,"ignore_cache":false}'), +(35527, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:44.173+00', '{"cached":null,"ignore_cache":false}'), +(35528, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:44.668+00', '{"cached":null,"ignore_cache":false}'), +(35529, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:44.745+00', '{"cached":null,"ignore_cache":false}'), +(35530, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:44.915+00', '{"cached":null,"ignore_cache":false}'), +(35531, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:47.529+00', '{"cached":null,"ignore_cache":false}'), +(35532, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:37:47.547+00', '{"cached":null,"ignore_cache":false}'), +(35533, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:23.348+00', '{"cached":null,"ignore_cache":false}'), +(35534, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:23.418+00', '{"cached":null,"ignore_cache":false}'), +(35535, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:24.094+00', '{"cached":null,"ignore_cache":false}'), +(35536, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:24.205+00', '{"cached":null,"ignore_cache":false}'), +(35537, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:24.227+00', '{"cached":null,"ignore_cache":false}'), +(35538, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:24.917+00', '{"cached":null,"ignore_cache":false}'), +(35539, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:38:24.947+00', '{"cached":null,"ignore_cache":false}'), +(35540, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:24.846+00', '{"cached":null,"ignore_cache":false}'), +(35541, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:24.865+00', '{"cached":null,"ignore_cache":false}'), +(35542, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:24.987+00', '{"cached":null,"ignore_cache":false}'), +(35543, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:24.993+00', '{"cached":null,"ignore_cache":false}'), +(35544, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:25.026+00', '{"cached":null,"ignore_cache":false}'), +(35545, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:26.29+00', '{"cached":null,"ignore_cache":false}'), +(35546, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:43:26.323+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35547, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:56.569+00', '{"cached":null,"ignore_cache":false}'), +(35548, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:57.224+00', '{"cached":null,"ignore_cache":false}'), +(35549, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:57.336+00', '{"cached":null,"ignore_cache":false}'), +(35550, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:57.439+00', '{"cached":null,"ignore_cache":false}'), +(35551, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:58.015+00', '{"cached":null,"ignore_cache":false}'), +(35552, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:58.034+00', '{"cached":null,"ignore_cache":false}'), +(35553, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:58.035+00', '{"cached":null,"ignore_cache":false}'), +(35554, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:59.858+00', '{"cached":null,"ignore_cache":false}'), +(35555, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 11:45:59.947+00', '{"cached":null,"ignore_cache":false}'), +(35556, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:00.017+00', '{"cached":null,"ignore_cache":false}'), +(35557, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:00.1+00', '{"cached":null,"ignore_cache":false}'), +(35558, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:01.038+00', '{"cached":null,"ignore_cache":false}'), +(35559, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:02.599+00', '{"cached":null,"ignore_cache":false}'), +(35560, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:02.606+00', '{"cached":null,"ignore_cache":false}'), +(35561, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:02.607+00', '{"cached":null,"ignore_cache":false}'), +(35562, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:03.951+00', '{"cached":null,"ignore_cache":false}'), +(35563, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:03.988+00', '{"cached":null,"ignore_cache":false}'), +(35564, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.04+00', '{"cached":null,"ignore_cache":false}'), +(35565, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.044+00', '{"cached":null,"ignore_cache":false}'), +(35566, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.06+00', '{"cached":null,"ignore_cache":false}'), +(35567, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.061+00', '{"cached":null,"ignore_cache":false}'), +(35568, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.065+00', '{"cached":null,"ignore_cache":false}'), +(35569, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.067+00', '{"cached":null,"ignore_cache":false}'), +(35570, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.068+00', '{"cached":null,"ignore_cache":false}'), +(35571, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:04.07+00', '{"cached":null,"ignore_cache":false}'), +(35572, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:06.537+00', '{"cached":null,"ignore_cache":false}'), +(35573, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:06.705+00', '{"cached":null,"ignore_cache":false}'), +(35574, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:06.737+00', '{"cached":null,"ignore_cache":false}'), +(35575, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:46:06.751+00', '{"cached":null,"ignore_cache":false}'), +(35576, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:09.151+00', '{"cached":null,"ignore_cache":false}'), +(35577, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:09.899+00', '{"cached":null,"ignore_cache":false}'), +(35578, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:12.067+00', '{"cached":null,"ignore_cache":false}'), +(35579, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:12.1+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35580, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:12.362+00', '{"cached":null,"ignore_cache":false}'), +(35581, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:14.555+00', '{"cached":null,"ignore_cache":false}'), +(35582, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:50:14.586+00', '{"cached":null,"ignore_cache":false}'), +(35583, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.378+00', '{"cached":null,"ignore_cache":false}'), +(35584, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.403+00', '{"cached":null,"ignore_cache":false}'), +(35585, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.405+00', '{"cached":null,"ignore_cache":false}'), +(35586, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.412+00', '{"cached":null,"ignore_cache":false}'), +(35587, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.662+00', '{"cached":null,"ignore_cache":false}'), +(35588, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.706+00', '{"cached":null,"ignore_cache":false}'), +(35589, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.786+00', '{"cached":null,"ignore_cache":false}'), +(35590, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.808+00', '{"cached":null,"ignore_cache":false}'), +(35591, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:41.996+00', '{"cached":null,"ignore_cache":false}'), +(35592, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:42.114+00', '{"cached":null,"ignore_cache":false}'), +(35593, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:44.224+00', '{"cached":null,"ignore_cache":false}'), +(35594, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:44.313+00', '{"cached":null,"ignore_cache":false}'), +(35595, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:44.546+00', '{"cached":null,"ignore_cache":false}'), +(35596, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:54:45.112+00', '{"cached":null,"ignore_cache":false}'), +(35597, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:55.022+00', '{"cached":null,"ignore_cache":false}'), +(35598, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:55.038+00', '{"cached":null,"ignore_cache":false}'), +(35599, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:55.039+00', '{"cached":null,"ignore_cache":false}'), +(35600, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:55.046+00', '{"cached":null,"ignore_cache":false}'), +(35601, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:56.324+00', '{"cached":null,"ignore_cache":false}'), +(35602, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:56.377+00', '{"cached":null,"ignore_cache":false}'), +(35603, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:56.432+00', '{"cached":null,"ignore_cache":false}'), +(35604, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:56.501+00', '{"cached":null,"ignore_cache":false}'), +(35605, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:56.574+00', '{"cached":null,"ignore_cache":false}'), +(35606, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:56.913+00', '{"cached":null,"ignore_cache":false}'), +(35607, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:58.319+00', '{"cached":null,"ignore_cache":false}'), +(35608, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:58.348+00', '{"cached":null,"ignore_cache":false}'), +(35609, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 11:56:58.434+00', '{"cached":null,"ignore_cache":false}'), +(35610, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:02.394+00', '{"cached":null,"ignore_cache":false}'), +(35611, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:02.792+00', '{"cached":null,"ignore_cache":false}'), +(35612, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:06.973+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35613, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:07.005+00', '{"cached":null,"ignore_cache":false}'), +(35614, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:07.02+00', '{"cached":null,"ignore_cache":false}'), +(35615, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:07.643+00', '{"cached":null,"ignore_cache":false}'), +(35616, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:07.645+00', '{"cached":null,"ignore_cache":false}'), +(35617, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:07.665+00', '{"cached":null,"ignore_cache":false}'), +(35618, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:08.969+00', '{"cached":null,"ignore_cache":false}'), +(35619, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:09.203+00', '{"cached":null,"ignore_cache":false}'), +(35620, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:09.254+00', '{"cached":null,"ignore_cache":false}'), +(35621, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:09.442+00', '{"cached":null,"ignore_cache":false}'), +(35622, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.568+00', '{"cached":null,"ignore_cache":false}'), +(35623, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.699+00', '{"cached":null,"ignore_cache":false}'), +(35624, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.9+00', '{"cached":null,"ignore_cache":false}'), +(35625, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.903+00', '{"cached":null,"ignore_cache":false}'), +(35626, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.905+00', '{"cached":null,"ignore_cache":false}'), +(35627, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.959+00', '{"cached":null,"ignore_cache":false}'), +(35628, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.96+00', '{"cached":null,"ignore_cache":false}'), +(35629, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:10.961+00', '{"cached":null,"ignore_cache":false}'), +(35630, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:11.053+00', '{"cached":null,"ignore_cache":false}'), +(35631, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:11.055+00', '{"cached":null,"ignore_cache":false}'), +(35632, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:11.057+00', '{"cached":null,"ignore_cache":false}'), +(35633, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:11.06+00', '{"cached":null,"ignore_cache":false}'), +(35634, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:11.124+00', '{"cached":null,"ignore_cache":false}'), +(35635, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:11.202+00', '{"cached":null,"ignore_cache":false}'), +(35636, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:15.929+00', '{"cached":null,"ignore_cache":false}'), +(35637, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:15.962+00', '{"cached":null,"ignore_cache":false}'), +(35638, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:16.026+00', '{"cached":null,"ignore_cache":false}'), +(35639, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:03:16.046+00', '{"cached":null,"ignore_cache":false}'), +(35640, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:51.25+00', '{"cached":null,"ignore_cache":false}'), +(35641, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:53.644+00', '{"cached":null,"ignore_cache":false}'), +(35642, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:53.652+00', '{"cached":null,"ignore_cache":false}'), +(35643, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:53.655+00', '{"cached":null,"ignore_cache":false}'), +(35644, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:56.474+00', '{"cached":null,"ignore_cache":false}'), +(35645, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:56.501+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35646, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:56.512+00', '{"cached":null,"ignore_cache":false}'), +(35647, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 12:04:56.543+00', '{"cached":null,"ignore_cache":false}'), +(35648, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:29.573+00', '{"cached":null,"ignore_cache":false}'), +(35649, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:29.778+00', '{"cached":null,"ignore_cache":false}'), +(35650, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:30.454+00', '{"cached":null,"ignore_cache":false}'), +(35651, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:30.492+00', '{"cached":null,"ignore_cache":false}'), +(35652, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:30.526+00', '{"cached":null,"ignore_cache":false}'), +(35653, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:30.554+00', '{"cached":null,"ignore_cache":false}'), +(35654, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:30.57+00', '{"cached":null,"ignore_cache":false}'), +(35655, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 12:05:30.605+00', '{"cached":null,"ignore_cache":false}'), +(35656, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:49.338+00', '{"cached":null,"ignore_cache":false}'), +(35657, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:51.799+00', '{"cached":null,"ignore_cache":false}'), +(35658, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:51.851+00', '{"cached":null,"ignore_cache":false}'), +(35659, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:51.917+00', '{"cached":null,"ignore_cache":false}'), +(35660, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:52.778+00', '{"cached":null,"ignore_cache":false}'), +(35661, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:52.878+00', '{"cached":null,"ignore_cache":false}'), +(35662, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:52.98+00', '{"cached":null,"ignore_cache":false}'), +(35663, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:52.995+00', '{"cached":null,"ignore_cache":false}'), +(35664, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:53.114+00', '{"cached":null,"ignore_cache":false}'), +(35665, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:53.298+00', '{"cached":null,"ignore_cache":false}'), +(35666, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:53.395+00', '{"cached":null,"ignore_cache":false}'), +(35667, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:53.536+00', '{"cached":null,"ignore_cache":false}'), +(35668, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:53.546+00', '{"cached":null,"ignore_cache":false}'), +(35669, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:56.182+00', '{"cached":null,"ignore_cache":false}'), +(35670, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:07:56.254+00', '{"cached":null,"ignore_cache":false}'), +(35671, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:46.932+00', '{"cached":null,"ignore_cache":false}'), +(35672, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:46.978+00', '{"cached":null,"ignore_cache":false}'), +(35673, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:47.009+00', '{"cached":null,"ignore_cache":false}'), +(35674, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:47.025+00', '{"cached":null,"ignore_cache":false}'), +(35675, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:48.287+00', '{"cached":null,"ignore_cache":false}'), +(35676, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:48.299+00', '{"cached":null,"ignore_cache":false}'), +(35677, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:48.34+00', '{"cached":null,"ignore_cache":false}'), +(35678, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:48.413+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35679, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:48.478+00', '{"cached":null,"ignore_cache":false}'), +(35680, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:48.637+00', '{"cached":null,"ignore_cache":false}'), +(35681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:51.75+00', '{"cached":null,"ignore_cache":false}'), +(35682, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:51.789+00', '{"cached":null,"ignore_cache":false}'), +(35683, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:51.828+00', '{"cached":null,"ignore_cache":false}'), +(35684, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:20:51.88+00', '{"cached":null,"ignore_cache":false}'), +(35685, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:58.136+00', '{"cached":null,"ignore_cache":false}'), +(35686, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:58.166+00', '{"cached":null,"ignore_cache":false}'), +(35687, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:58.578+00', '{"cached":null,"ignore_cache":false}'), +(35688, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:58.623+00', '{"cached":null,"ignore_cache":false}'), +(35689, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:25:58.697+00', '{"cached":null,"ignore_cache":false}'), +(35690, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:26:00.356+00', '{"cached":null,"ignore_cache":false}'), +(35691, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:26:00.41+00', '{"cached":null,"ignore_cache":false}'), +(35692, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:47.529+00', '{"cached":null,"ignore_cache":false}'), +(35693, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:47.693+00', '{"cached":null,"ignore_cache":false}'), +(35694, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:47.947+00', '{"cached":null,"ignore_cache":false}'), +(35695, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:48.812+00', '{"cached":null,"ignore_cache":false}'), +(35696, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:30:48.847+00', '{"cached":null,"ignore_cache":false}'), +(35697, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:05.417+00', '{"cached":null,"ignore_cache":false}'), +(35698, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:05.445+00', '{"cached":null,"ignore_cache":false}'), +(35699, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:05.748+00', '{"cached":null,"ignore_cache":false}'), +(35700, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:05.83+00', '{"cached":null,"ignore_cache":false}'), +(35701, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:05.87+00', '{"cached":null,"ignore_cache":false}'), +(35702, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.232+00', '{"cached":null,"ignore_cache":false}'), +(35703, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.55+00', '{"cached":null,"ignore_cache":false}'), +(35704, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:06.568+00', '{"cached":null,"ignore_cache":false}'), +(35705, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:07.934+00', '{"cached":null,"ignore_cache":false}'), +(35706, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:07.953+00', '{"cached":null,"ignore_cache":false}'), +(35707, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:08.037+00', '{"cached":null,"ignore_cache":false}'), +(35708, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:08.152+00', '{"cached":null,"ignore_cache":false}'), +(35709, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:08.592+00', '{"cached":null,"ignore_cache":false}'), +(35710, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:31:08.728+00', '{"cached":null,"ignore_cache":false}'), +(35711, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:14.379+00', '{"cached":null,"ignore_cache":false}'), +(35712, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:14.553+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35713, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:15.002+00', '{"cached":null,"ignore_cache":false}'), +(35714, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:15.051+00', '{"cached":null,"ignore_cache":false}'), +(35715, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:15.401+00', '{"cached":null,"ignore_cache":false}'), +(35716, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:17.324+00', '{"cached":null,"ignore_cache":false}'), +(35717, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:39:17.394+00', '{"cached":null,"ignore_cache":false}'), +(35718, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:31.311+00', '{"cached":null,"ignore_cache":false}'), +(35719, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:31.356+00', '{"cached":null,"ignore_cache":false}'), +(35720, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:31.367+00', '{"cached":null,"ignore_cache":false}'), +(35721, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:31.703+00', '{"cached":null,"ignore_cache":false}'), +(35722, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:33.544+00', '{"cached":null,"ignore_cache":false}'), +(35723, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:33.55+00', '{"cached":null,"ignore_cache":false}'), +(35724, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:33.551+00', '{"cached":null,"ignore_cache":false}'), +(35725, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:33.745+00', '{"cached":null,"ignore_cache":false}'), +(35726, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:33.824+00', '{"cached":null,"ignore_cache":false}'), +(35727, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:34.32+00', '{"cached":null,"ignore_cache":false}'), +(35728, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:34.323+00', '{"cached":null,"ignore_cache":false}'), +(35729, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:34.337+00', '{"cached":null,"ignore_cache":false}'), +(35730, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:34.34+00', '{"cached":null,"ignore_cache":false}'), +(35731, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 12:40:34.379+00', '{"cached":null,"ignore_cache":false}'), +(35732, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.192+00', '{"cached":null,"ignore_cache":false}'), +(35733, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.208+00', '{"cached":null,"ignore_cache":false}'), +(35734, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.276+00', '{"cached":null,"ignore_cache":false}'), +(35735, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.282+00', '{"cached":null,"ignore_cache":false}'), +(35736, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.611+00', '{"cached":null,"ignore_cache":false}'), +(35737, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.618+00', '{"cached":null,"ignore_cache":false}'), +(35738, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.622+00', '{"cached":null,"ignore_cache":false}'), +(35739, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.665+00', '{"cached":null,"ignore_cache":false}'), +(35740, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:05.98+00', '{"cached":null,"ignore_cache":false}'), +(35741, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:06.33+00', '{"cached":null,"ignore_cache":false}'), +(35742, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:10.511+00', '{"cached":null,"ignore_cache":false}'), +(35743, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:10.563+00', '{"cached":null,"ignore_cache":false}'), +(35744, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:10.649+00', '{"cached":null,"ignore_cache":false}'), +(35745, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:01:10.75+00', '{"cached":null,"ignore_cache":false}'), +(35746, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:18.973+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35747, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.162+00', '{"cached":null,"ignore_cache":false}'), +(35748, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.271+00', '{"cached":null,"ignore_cache":false}'), +(35749, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.346+00', '{"cached":null,"ignore_cache":false}'), +(35750, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.35+00', '{"cached":null,"ignore_cache":false}'), +(35751, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.362+00', '{"cached":null,"ignore_cache":false}'), +(35752, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.365+00', '{"cached":null,"ignore_cache":false}'), +(35753, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.37+00', '{"cached":null,"ignore_cache":false}'), +(35754, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.374+00', '{"cached":null,"ignore_cache":false}'), +(35755, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:19.378+00', '{"cached":null,"ignore_cache":false}'), +(35756, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:22.201+00', '{"cached":null,"ignore_cache":false}'), +(35757, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:22.623+00', '{"cached":null,"ignore_cache":false}'), +(35758, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:23.045+00', '{"cached":null,"ignore_cache":false}'), +(35759, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:04:23.068+00', '{"cached":null,"ignore_cache":false}'), +(35760, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:54.145+00', '{"cached":null,"ignore_cache":false}'), +(35761, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:54.152+00', '{"cached":null,"ignore_cache":false}'), +(35762, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:54.809+00', '{"cached":null,"ignore_cache":false}'), +(35763, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:54.883+00', '{"cached":null,"ignore_cache":false}'), +(35764, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:54.992+00', '{"cached":null,"ignore_cache":false}'), +(35765, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:56.109+00', '{"cached":null,"ignore_cache":false}'), +(35766, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:05:56.133+00', '{"cached":null,"ignore_cache":false}'), +(35767, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.03+00', '{"cached":null,"ignore_cache":false}'), +(35768, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.137+00', '{"cached":null,"ignore_cache":false}'), +(35769, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.158+00', '{"cached":null,"ignore_cache":false}'), +(35770, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.233+00', '{"cached":null,"ignore_cache":false}'), +(35771, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.286+00', '{"cached":null,"ignore_cache":false}'), +(35772, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.333+00', '{"cached":null,"ignore_cache":false}'), +(35773, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.411+00', '{"cached":null,"ignore_cache":false}'), +(35774, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.416+00', '{"cached":null,"ignore_cache":false}'), +(35775, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:11.418+00', '{"cached":null,"ignore_cache":false}'), +(35776, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:12.312+00', '{"cached":null,"ignore_cache":false}'), +(35777, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:12.329+00', '{"cached":null,"ignore_cache":false}'), +(35778, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:12.333+00', '{"cached":null,"ignore_cache":false}'), +(35779, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:12.335+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35780, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:12.384+00', '{"cached":null,"ignore_cache":false}'), +(35781, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:12.485+00', '{"cached":null,"ignore_cache":false}'), +(35782, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:14.235+00', '{"cached":null,"ignore_cache":false}'), +(35783, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:14.483+00', '{"cached":null,"ignore_cache":false}'), +(35784, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:14.587+00', '{"cached":null,"ignore_cache":false}'), +(35785, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:14.589+00', '{"cached":null,"ignore_cache":false}'), +(35786, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:14.591+00', '{"cached":null,"ignore_cache":false}'), +(35787, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:09:14.678+00', '{"cached":null,"ignore_cache":false}'), +(35788, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:57.633+00', '{"cached":null,"ignore_cache":false}'), +(35789, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:57.75+00', '{"cached":null,"ignore_cache":false}'), +(35790, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:57.836+00', '{"cached":null,"ignore_cache":false}'), +(35791, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:57.842+00', '{"cached":null,"ignore_cache":false}'), +(35792, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:57.851+00', '{"cached":null,"ignore_cache":false}'), +(35793, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:59.136+00', '{"cached":null,"ignore_cache":false}'), +(35794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:10:59.171+00', '{"cached":null,"ignore_cache":false}'), +(35795, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.045+00', '{"cached":null,"ignore_cache":false}'), +(35796, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.146+00', '{"cached":null,"ignore_cache":false}'), +(35797, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.604+00', '{"cached":null,"ignore_cache":false}'), +(35798, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.622+00', '{"cached":null,"ignore_cache":false}'), +(35799, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.627+00', '{"cached":null,"ignore_cache":false}'), +(35800, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.918+00', '{"cached":null,"ignore_cache":false}'), +(35801, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:18.961+00', '{"cached":null,"ignore_cache":false}'), +(35802, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:19.043+00', '{"cached":null,"ignore_cache":false}'), +(35803, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:19.133+00', '{"cached":null,"ignore_cache":false}'), +(35804, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:19.393+00', '{"cached":null,"ignore_cache":false}'), +(35805, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:20.483+00', '{"cached":null,"ignore_cache":false}'), +(35806, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:20.619+00', '{"cached":null,"ignore_cache":false}'), +(35807, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:20.78+00', '{"cached":null,"ignore_cache":false}'), +(35808, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:14:20.834+00', '{"cached":null,"ignore_cache":false}'), +(35809, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:59.321+00', '{"cached":null,"ignore_cache":false}'), +(35810, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:59.351+00', '{"cached":null,"ignore_cache":false}'), +(35811, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:59.617+00', '{"cached":null,"ignore_cache":false}'), +(35812, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:59.634+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35813, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:15:59.787+00', '{"cached":null,"ignore_cache":false}'), +(35814, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:16:00.735+00', '{"cached":null,"ignore_cache":false}'), +(35815, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:16:00.751+00', '{"cached":null,"ignore_cache":false}'), +(35816, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:10.397+00', '{"cached":null,"ignore_cache":false}'), +(35817, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:10.409+00', '{"cached":null,"ignore_cache":false}'), +(35818, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:11.213+00', '{"cached":null,"ignore_cache":false}'), +(35819, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:11.311+00', '{"cached":null,"ignore_cache":false}'), +(35820, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:11.492+00', '{"cached":null,"ignore_cache":false}'), +(35821, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:14.058+00', '{"cached":null,"ignore_cache":false}'), +(35822, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:14.076+00', '{"cached":null,"ignore_cache":false}'), +(35823, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.606+00', '{"cached":null,"ignore_cache":false}'), +(35824, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.7+00', '{"cached":null,"ignore_cache":false}'), +(35825, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.736+00', '{"cached":null,"ignore_cache":false}'), +(35826, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.772+00', '{"cached":null,"ignore_cache":false}'), +(35827, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:18.839+00', '{"cached":null,"ignore_cache":false}'), +(35828, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:19.15+00', '{"cached":null,"ignore_cache":false}'), +(35829, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:19:19.243+00', '{"cached":null,"ignore_cache":false}'), +(35830, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:54.1+00', '{"cached":null,"ignore_cache":false}'), +(35831, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:54.109+00', '{"cached":null,"ignore_cache":false}'), +(35832, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:54.617+00', '{"cached":null,"ignore_cache":false}'), +(35833, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:54.662+00', '{"cached":null,"ignore_cache":false}'), +(35834, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:54.695+00', '{"cached":null,"ignore_cache":false}'), +(35835, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:55.326+00', '{"cached":null,"ignore_cache":false}'), +(35836, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:20:55.37+00', '{"cached":null,"ignore_cache":false}'), +(35837, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:14.073+00', '{"cached":null,"ignore_cache":false}'), +(35838, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:14.233+00', '{"cached":null,"ignore_cache":false}'), +(35839, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:14.385+00', '{"cached":null,"ignore_cache":false}'), +(35840, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:14.481+00', '{"cached":null,"ignore_cache":false}'), +(35841, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:14.544+00', '{"cached":null,"ignore_cache":false}'), +(35842, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:15.533+00', '{"cached":null,"ignore_cache":false}'), +(35843, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:24:15.572+00', '{"cached":null,"ignore_cache":false}'), +(35844, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:16.439+00', '{"cached":null,"ignore_cache":false}'), +(35845, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:16.613+00', '{"cached":null,"ignore_cache":false}'), +(35846, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:16.689+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35847, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:16.69+00', '{"cached":null,"ignore_cache":false}'), +(35848, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:17.128+00', '{"cached":null,"ignore_cache":false}'), +(35849, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:17.129+00', '{"cached":null,"ignore_cache":false}'), +(35850, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:17.13+00', '{"cached":null,"ignore_cache":false}'), +(35851, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:17.131+00', '{"cached":null,"ignore_cache":false}'), +(35852, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:17.535+00', '{"cached":null,"ignore_cache":false}'), +(35853, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:17.562+00', '{"cached":null,"ignore_cache":false}'), +(35854, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:18.781+00', '{"cached":null,"ignore_cache":false}'), +(35855, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:18.865+00', '{"cached":null,"ignore_cache":false}'), +(35856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:18.909+00', '{"cached":null,"ignore_cache":false}'), +(35857, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:18.928+00', '{"cached":null,"ignore_cache":false}'), +(35858, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:59.39+00', '{"cached":null,"ignore_cache":false}'), +(35859, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:59.395+00', '{"cached":null,"ignore_cache":false}'), +(35860, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:59.403+00', '{"cached":null,"ignore_cache":false}'), +(35861, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:35:59.404+00', '{"cached":null,"ignore_cache":false}'), +(35862, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:02.609+00', '{"cached":null,"ignore_cache":false}'), +(35863, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:02.615+00', '{"cached":null,"ignore_cache":false}'), +(35864, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:02.645+00', '{"cached":null,"ignore_cache":false}'), +(35865, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:02.708+00', '{"cached":null,"ignore_cache":false}'), +(35866, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:03.108+00', '{"cached":null,"ignore_cache":false}'), +(35867, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:03.109+00', '{"cached":null,"ignore_cache":false}'), +(35868, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:05.577+00', '{"cached":null,"ignore_cache":false}'), +(35869, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:05.769+00', '{"cached":null,"ignore_cache":false}'), +(35870, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:36:05.77+00', '{"cached":null,"ignore_cache":false}'), +(35871, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:14.692+00', '{"cached":null,"ignore_cache":false}'), +(35872, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:14.711+00', '{"cached":null,"ignore_cache":false}'), +(35873, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:14.975+00', '{"cached":null,"ignore_cache":false}'), +(35874, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:14.996+00', '{"cached":null,"ignore_cache":false}'), +(35875, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:15.048+00', '{"cached":null,"ignore_cache":false}'), +(35876, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:16.233+00', '{"cached":null,"ignore_cache":false}'), +(35877, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:16.285+00', '{"cached":null,"ignore_cache":false}'), +(35878, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.682+00', '{"cached":null,"ignore_cache":false}'), +(35879, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:40:59.688+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35880, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:41:00.166+00', '{"cached":null,"ignore_cache":false}'), +(35881, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:41:00.228+00', '{"cached":null,"ignore_cache":false}'), +(35882, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:41:00.237+00', '{"cached":null,"ignore_cache":false}'), +(35883, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:41:00.44+00', '{"cached":null,"ignore_cache":false}'), +(35884, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:41:00.489+00', '{"cached":null,"ignore_cache":false}'), +(35885, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:15.695+00', '{"cached":null,"ignore_cache":false}'), +(35886, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:15.775+00', '{"cached":null,"ignore_cache":false}'), +(35887, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:16.286+00', '{"cached":null,"ignore_cache":false}'), +(35888, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:16.392+00', '{"cached":null,"ignore_cache":false}'), +(35889, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:16.417+00', '{"cached":null,"ignore_cache":false}'), +(35890, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:17.613+00', '{"cached":null,"ignore_cache":false}'), +(35891, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:45:17.654+00', '{"cached":null,"ignore_cache":false}'), +(35892, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.86+00', '{"cached":null,"ignore_cache":false}'), +(35893, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:49.9+00', '{"cached":null,"ignore_cache":false}'), +(35894, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:50.145+00', '{"cached":null,"ignore_cache":false}'), +(35895, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:50.295+00', '{"cached":null,"ignore_cache":false}'), +(35896, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:50.355+00', '{"cached":null,"ignore_cache":false}'), +(35897, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:50.367+00', '{"cached":null,"ignore_cache":false}'), +(35898, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:46:50.537+00', '{"cached":null,"ignore_cache":false}'), +(35899, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:14.676+00', '{"cached":null,"ignore_cache":false}'), +(35900, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:14.789+00', '{"cached":null,"ignore_cache":false}'), +(35901, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:14.922+00', '{"cached":null,"ignore_cache":false}'), +(35902, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:14.982+00', '{"cached":null,"ignore_cache":false}'), +(35903, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:15.117+00', '{"cached":null,"ignore_cache":false}'), +(35904, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:16.304+00', '{"cached":null,"ignore_cache":false}'), +(35905, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:50:16.365+00', '{"cached":null,"ignore_cache":false}'), +(35906, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:18.49+00', '{"cached":null,"ignore_cache":false}'), +(35907, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:18.499+00', '{"cached":null,"ignore_cache":false}'), +(35908, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:18.543+00', '{"cached":null,"ignore_cache":false}'), +(35909, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:18.559+00', '{"cached":null,"ignore_cache":false}'), +(35910, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:18.635+00', '{"cached":null,"ignore_cache":false}'), +(35911, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:19.85+00', '{"cached":null,"ignore_cache":false}'), +(35912, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:55:19.859+00', '{"cached":null,"ignore_cache":false}'), +(35913, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:44.624+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35914, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:44.64+00', '{"cached":null,"ignore_cache":false}'), +(35915, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:44.981+00', '{"cached":null,"ignore_cache":false}'), +(35916, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:44.993+00', '{"cached":null,"ignore_cache":false}'), +(35917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:45.034+00', '{"cached":null,"ignore_cache":false}'), +(35918, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:45.787+00', '{"cached":null,"ignore_cache":false}'), +(35919, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 13:59:45.802+00', '{"cached":null,"ignore_cache":false}'), +(35920, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:45.319+00', '{"cached":null,"ignore_cache":false}'), +(35921, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:45.447+00', '{"cached":null,"ignore_cache":false}'), +(35922, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:45.452+00', '{"cached":null,"ignore_cache":false}'), +(35923, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:45.492+00', '{"cached":null,"ignore_cache":false}'), +(35924, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:45.494+00', '{"cached":null,"ignore_cache":false}'), +(35925, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:46.766+00', '{"cached":null,"ignore_cache":false}'), +(35926, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:04:46.816+00', '{"cached":null,"ignore_cache":false}'), +(35927, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:02.156+00', '{"cached":null,"ignore_cache":false}'), +(35928, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:02.161+00', '{"cached":null,"ignore_cache":false}'), +(35929, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:02.458+00', '{"cached":null,"ignore_cache":false}'), +(35930, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:02.607+00', '{"cached":null,"ignore_cache":false}'), +(35931, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:02.755+00', '{"cached":null,"ignore_cache":false}'), +(35932, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:03.147+00', '{"cached":null,"ignore_cache":false}'), +(35933, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:05:03.164+00', '{"cached":null,"ignore_cache":false}'), +(35934, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.79+00', '{"cached":null,"ignore_cache":false}'), +(35935, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.793+00', '{"cached":null,"ignore_cache":false}'), +(35936, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.817+00', '{"cached":null,"ignore_cache":false}'), +(35937, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:31.818+00', '{"cached":null,"ignore_cache":false}'), +(35938, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:32.72+00', '{"cached":null,"ignore_cache":false}'), +(35939, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:32.78+00', '{"cached":null,"ignore_cache":false}'), +(35940, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:33.026+00', '{"cached":null,"ignore_cache":false}'), +(35941, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:33.055+00', '{"cached":null,"ignore_cache":false}'), +(35942, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:33.13+00', '{"cached":null,"ignore_cache":false}'), +(35943, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:33.155+00', '{"cached":null,"ignore_cache":false}'), +(35944, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:34.257+00', '{"cached":null,"ignore_cache":false}'), +(35945, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:34.414+00', '{"cached":null,"ignore_cache":false}'), +(35946, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:34.42+00', '{"cached":null,"ignore_cache":false}'), +(35947, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:08:34.433+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35948, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:36.973+00', '{"cached":null,"ignore_cache":false}'), +(35949, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:36.987+00', '{"cached":null,"ignore_cache":false}'), +(35950, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:37.56+00', '{"cached":null,"ignore_cache":false}'), +(35951, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:37.589+00', '{"cached":null,"ignore_cache":false}'), +(35952, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:37.648+00', '{"cached":null,"ignore_cache":false}'), +(35953, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:38.393+00', '{"cached":null,"ignore_cache":false}'), +(35954, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:09:38.473+00', '{"cached":null,"ignore_cache":false}'), +(35955, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.666+00', '{"cached":null,"ignore_cache":false}'), +(35956, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.795+00', '{"cached":null,"ignore_cache":false}'), +(35957, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.803+00', '{"cached":null,"ignore_cache":false}'), +(35958, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.805+00', '{"cached":null,"ignore_cache":false}'), +(35959, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.807+00', '{"cached":null,"ignore_cache":false}'), +(35960, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.81+00', '{"cached":null,"ignore_cache":false}'), +(35961, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.812+00', '{"cached":null,"ignore_cache":false}'), +(35962, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.813+00', '{"cached":null,"ignore_cache":false}'), +(35963, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.888+00', '{"cached":null,"ignore_cache":false}'), +(35964, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:13:58.904+00', '{"cached":null,"ignore_cache":false}'), +(35965, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:01.636+00', '{"cached":null,"ignore_cache":false}'), +(35966, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:01.722+00', '{"cached":null,"ignore_cache":false}'), +(35967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:01.77+00', '{"cached":null,"ignore_cache":false}'), +(35968, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:01.821+00', '{"cached":null,"ignore_cache":false}'), +(35969, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.465+00', '{"cached":null,"ignore_cache":false}'), +(35970, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.473+00', '{"cached":null,"ignore_cache":false}'), +(35971, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:25.744+00', '{"cached":null,"ignore_cache":false}'), +(35972, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:26.298+00', '{"cached":null,"ignore_cache":false}'), +(35973, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:26.47+00', '{"cached":null,"ignore_cache":false}'), +(35974, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:26.593+00', '{"cached":null,"ignore_cache":false}'), +(35975, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:26.936+00', '{"cached":null,"ignore_cache":false}'), +(35976, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:26.938+00', '{"cached":null,"ignore_cache":false}'), +(35977, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:27.074+00', '{"cached":null,"ignore_cache":false}'), +(35978, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:27.08+00', '{"cached":null,"ignore_cache":false}'), +(35979, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:27.479+00', '{"cached":null,"ignore_cache":false}'), +(35980, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:27.599+00', '{"cached":null,"ignore_cache":false}'), +(35981, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:27.613+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(35982, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:27.646+00', '{"cached":null,"ignore_cache":false}'), +(35983, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.943+00', '{"cached":null,"ignore_cache":false}'), +(35984, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:36.969+00', '{"cached":null,"ignore_cache":false}'), +(35985, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:37.176+00', '{"cached":null,"ignore_cache":false}'), +(35986, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:37.203+00', '{"cached":null,"ignore_cache":false}'), +(35987, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:37.253+00', '{"cached":null,"ignore_cache":false}'), +(35988, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:37.424+00', '{"cached":null,"ignore_cache":false}'), +(35989, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:14:37.606+00', '{"cached":null,"ignore_cache":false}'), +(35990, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:04.045+00', '{"cached":null,"ignore_cache":false}'), +(35991, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:04.108+00', '{"cached":null,"ignore_cache":false}'), +(35992, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:04.114+00', '{"cached":null,"ignore_cache":false}'), +(35993, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:04.132+00', '{"cached":null,"ignore_cache":false}'), +(35994, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:05.05+00', '{"cached":null,"ignore_cache":false}'), +(35995, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:05.11+00', '{"cached":null,"ignore_cache":false}'), +(35996, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:05.133+00', '{"cached":null,"ignore_cache":false}'), +(35997, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:05.527+00', '{"cached":null,"ignore_cache":false}'), +(35998, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:05.592+00', '{"cached":null,"ignore_cache":false}'), +(35999, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:05.776+00', '{"cached":null,"ignore_cache":false}'), +(36000, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:06.606+00', '{"cached":null,"ignore_cache":false}'), +(36001, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:06.791+00', '{"cached":null,"ignore_cache":false}'), +(36002, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:06.814+00', '{"cached":null,"ignore_cache":false}'), +(36003, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:06.834+00', '{"cached":null,"ignore_cache":false}'), +(36004, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:34.996+00', '{"cached":null,"ignore_cache":false}'), +(36005, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:35.001+00', '{"cached":null,"ignore_cache":false}'), +(36006, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:35.003+00', '{"cached":null,"ignore_cache":false}'), +(36007, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:35.084+00', '{"cached":null,"ignore_cache":false}'), +(36008, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:36.291+00', '{"cached":null,"ignore_cache":false}'), +(36009, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:36.46+00', '{"cached":null,"ignore_cache":false}'), +(36010, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:36.466+00', '{"cached":null,"ignore_cache":false}'), +(36011, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:36.469+00', '{"cached":null,"ignore_cache":false}'), +(36012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:36.657+00', '{"cached":null,"ignore_cache":false}'), +(36013, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:36.712+00', '{"cached":null,"ignore_cache":false}'), +(36014, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:38.623+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36015, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:38.673+00', '{"cached":null,"ignore_cache":false}'), +(36016, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:38.693+00', '{"cached":null,"ignore_cache":false}'), +(36017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:16:38.735+00', '{"cached":null,"ignore_cache":false}'), +(36018, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:04.684+00', '{"cached":null,"ignore_cache":false}'), +(36019, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:04.756+00', '{"cached":null,"ignore_cache":false}'), +(36020, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:04.76+00', '{"cached":null,"ignore_cache":false}'), +(36021, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:04.762+00', '{"cached":null,"ignore_cache":false}'), +(36022, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:05.274+00', '{"cached":null,"ignore_cache":false}'), +(36023, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:05.322+00', '{"cached":null,"ignore_cache":false}'), +(36024, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:05.323+00', '{"cached":null,"ignore_cache":false}'), +(36025, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:05.333+00', '{"cached":null,"ignore_cache":false}'), +(36026, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:05.37+00', '{"cached":null,"ignore_cache":false}'), +(36027, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:05.405+00', '{"cached":null,"ignore_cache":false}'), +(36028, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:07.007+00', '{"cached":null,"ignore_cache":false}'), +(36029, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:07.093+00', '{"cached":null,"ignore_cache":false}'), +(36030, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:07.198+00', '{"cached":null,"ignore_cache":false}'), +(36031, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:07.278+00', '{"cached":null,"ignore_cache":false}'), +(36032, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.598+00', '{"cached":null,"ignore_cache":false}'), +(36033, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:28.955+00', '{"cached":null,"ignore_cache":false}'), +(36034, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.881+00', '{"cached":null,"ignore_cache":false}'), +(36035, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:29.897+00', '{"cached":null,"ignore_cache":false}'), +(36036, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:30.855+00', '{"cached":null,"ignore_cache":false}'), +(36037, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:31.102+00', '{"cached":null,"ignore_cache":false}'), +(36038, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:31.293+00', '{"cached":null,"ignore_cache":false}'), +(36039, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:31.371+00', '{"cached":null,"ignore_cache":false}'), +(36040, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:31.464+00', '{"cached":null,"ignore_cache":false}'), +(36041, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:31.497+00', '{"cached":null,"ignore_cache":false}'), +(36042, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:32.501+00', '{"cached":null,"ignore_cache":false}'), +(36043, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:32.681+00', '{"cached":null,"ignore_cache":false}'), +(36044, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:32.996+00', '{"cached":null,"ignore_cache":false}'), +(36045, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:22:33.009+00', '{"cached":null,"ignore_cache":false}'), +(36046, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.827+00', '{"cached":null,"ignore_cache":false}'), +(36047, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:23.861+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36048, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:24.598+00', '{"cached":null,"ignore_cache":false}'), +(36049, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:24.69+00', '{"cached":null,"ignore_cache":false}'), +(36050, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:24.796+00', '{"cached":null,"ignore_cache":false}'), +(36051, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:24.865+00', '{"cached":null,"ignore_cache":false}'), +(36052, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:24.953+00', '{"cached":null,"ignore_cache":false}'), +(36053, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:25.262+00', '{"cached":null,"ignore_cache":false}'), +(36054, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:25.557+00', '{"cached":null,"ignore_cache":false}'), +(36055, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:25.563+00', '{"cached":null,"ignore_cache":false}'), +(36056, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:26.585+00', '{"cached":null,"ignore_cache":false}'), +(36057, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:26.646+00', '{"cached":null,"ignore_cache":false}'), +(36058, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:26.689+00', '{"cached":null,"ignore_cache":false}'), +(36059, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:23:26.709+00', '{"cached":null,"ignore_cache":false}'), +(36060, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.495+00', '{"cached":null,"ignore_cache":false}'), +(36061, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:07.515+00', '{"cached":null,"ignore_cache":false}'), +(36062, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:08.769+00', '{"cached":null,"ignore_cache":false}'), +(36063, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:09.05+00', '{"cached":null,"ignore_cache":false}'), +(36064, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:09.263+00', '{"cached":null,"ignore_cache":false}'), +(36065, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:09.328+00', '{"cached":null,"ignore_cache":false}'), +(36066, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:09.687+00', '{"cached":null,"ignore_cache":false}'), +(36067, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:09.7+00', '{"cached":null,"ignore_cache":false}'), +(36068, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:09.713+00', '{"cached":null,"ignore_cache":false}'), +(36069, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:09.971+00', '{"cached":null,"ignore_cache":false}'), +(36070, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:24:10.161+00', '{"cached":null,"ignore_cache":false}'), +(36071, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:19.885+00', '{"cached":null,"ignore_cache":false}'), +(36072, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:19.921+00', '{"cached":null,"ignore_cache":false}'), +(36073, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.069+00', '{"cached":null,"ignore_cache":false}'), +(36074, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.071+00', '{"cached":null,"ignore_cache":false}'), +(36075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.288+00', '{"cached":null,"ignore_cache":false}'), +(36076, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.328+00', '{"cached":null,"ignore_cache":false}'), +(36077, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.363+00', '{"cached":null,"ignore_cache":false}'), +(36078, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.374+00', '{"cached":null,"ignore_cache":false}'), +(36079, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.595+00', '{"cached":null,"ignore_cache":false}'), +(36080, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:20.599+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36081, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:22.067+00', '{"cached":null,"ignore_cache":false}'), +(36082, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:22.092+00', '{"cached":null,"ignore_cache":false}'), +(36083, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:22.195+00', '{"cached":null,"ignore_cache":false}'), +(36084, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:26:22.207+00', '{"cached":null,"ignore_cache":false}'), +(36085, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:34.11+00', '{"cached":null,"ignore_cache":false}'), +(36086, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:34.126+00', '{"cached":null,"ignore_cache":false}'), +(36087, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:34.264+00', '{"cached":null,"ignore_cache":false}'), +(36088, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:34.32+00', '{"cached":null,"ignore_cache":false}'), +(36089, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:34.415+00', '{"cached":null,"ignore_cache":false}'), +(36090, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:35.213+00', '{"cached":null,"ignore_cache":false}'), +(36091, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:28:35.226+00', '{"cached":null,"ignore_cache":false}'), +(36092, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.174+00', '{"cached":null,"ignore_cache":false}'), +(36093, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.184+00', '{"cached":null,"ignore_cache":false}'), +(36094, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.202+00', '{"cached":null,"ignore_cache":false}'), +(36095, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.237+00', '{"cached":null,"ignore_cache":false}'), +(36096, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.342+00', '{"cached":null,"ignore_cache":false}'), +(36097, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.366+00', '{"cached":null,"ignore_cache":false}'), +(36098, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.818+00', '{"cached":null,"ignore_cache":false}'), +(36099, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.852+00', '{"cached":null,"ignore_cache":false}'), +(36100, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:06.866+00', '{"cached":null,"ignore_cache":false}'), +(36101, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:07.021+00', '{"cached":null,"ignore_cache":false}'), +(36102, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:07.444+00', '{"cached":null,"ignore_cache":false}'), +(36103, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:07.471+00', '{"cached":null,"ignore_cache":false}'), +(36104, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:07.645+00', '{"cached":null,"ignore_cache":false}'), +(36105, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:31:07.668+00', '{"cached":null,"ignore_cache":false}'), +(36106, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:08.317+00', '{"cached":null,"ignore_cache":false}'), +(36107, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:08.851+00', '{"cached":null,"ignore_cache":false}'), +(36108, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:08.865+00', '{"cached":null,"ignore_cache":false}'), +(36109, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:08.879+00', '{"cached":null,"ignore_cache":false}'), +(36110, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:09.557+00', '{"cached":null,"ignore_cache":false}'), +(36111, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:09.665+00', '{"cached":null,"ignore_cache":false}'), +(36112, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:09.749+00', '{"cached":null,"ignore_cache":false}'), +(36113, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:09.758+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36114, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:10.396+00', '{"cached":null,"ignore_cache":false}'), +(36115, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:10.494+00', '{"cached":null,"ignore_cache":false}'), +(36116, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:13.378+00', '{"cached":null,"ignore_cache":false}'), +(36117, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:13.424+00', '{"cached":null,"ignore_cache":false}'), +(36118, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:13.531+00', '{"cached":null,"ignore_cache":false}'), +(36119, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:32:13.597+00', '{"cached":null,"ignore_cache":false}'), +(36120, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.87+00', '{"cached":null,"ignore_cache":false}'), +(36121, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:32.871+00', '{"cached":null,"ignore_cache":false}'), +(36122, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:33.013+00', '{"cached":null,"ignore_cache":false}'), +(36123, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:33.1+00', '{"cached":null,"ignore_cache":false}'), +(36124, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:33.15+00', '{"cached":null,"ignore_cache":false}'), +(36125, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:33.488+00', '{"cached":null,"ignore_cache":false}'), +(36126, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:33:33.524+00', '{"cached":null,"ignore_cache":false}'), +(36127, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.761+00', '{"cached":null,"ignore_cache":false}'), +(36128, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:33.778+00', '{"cached":null,"ignore_cache":false}'), +(36129, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.208+00', '{"cached":null,"ignore_cache":false}'), +(36130, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.217+00', '{"cached":null,"ignore_cache":false}'), +(36131, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:34.343+00', '{"cached":null,"ignore_cache":false}'), +(36132, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:35.471+00', '{"cached":null,"ignore_cache":false}'), +(36133, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:35.675+00', '{"cached":null,"ignore_cache":false}'), +(36134, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:35.83+00', '{"cached":null,"ignore_cache":false}'), +(36135, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:35.854+00', '{"cached":null,"ignore_cache":false}'), +(36136, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:36.076+00', '{"cached":null,"ignore_cache":false}'), +(36137, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:36.086+00', '{"cached":null,"ignore_cache":false}'), +(36138, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:36.185+00', '{"cached":null,"ignore_cache":false}'), +(36139, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:37:36.349+00', '{"cached":null,"ignore_cache":false}'), +(36140, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:28.348+00', '{"cached":null,"ignore_cache":false}'), +(36141, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:28.531+00', '{"cached":null,"ignore_cache":false}'), +(36142, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:28.626+00', '{"cached":null,"ignore_cache":false}'), +(36143, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:28.753+00', '{"cached":null,"ignore_cache":false}'), +(36144, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:28.863+00', '{"cached":null,"ignore_cache":false}'), +(36145, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:28.917+00', '{"cached":null,"ignore_cache":false}'), +(36146, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.115+00', '{"cached":null,"ignore_cache":false}'), +(36147, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.843+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36148, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:29.881+00', '{"cached":null,"ignore_cache":false}'), +(36149, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:30.072+00', '{"cached":null,"ignore_cache":false}'), +(36150, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:30.256+00', '{"cached":null,"ignore_cache":false}'), +(36151, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:30.339+00', '{"cached":null,"ignore_cache":false}'), +(36152, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:30.62+00', '{"cached":null,"ignore_cache":false}'), +(36153, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:38:30.67+00', '{"cached":null,"ignore_cache":false}'), +(36154, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:20.322+00', '{"cached":null,"ignore_cache":false}'), +(36155, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:20.364+00', '{"cached":null,"ignore_cache":false}'), +(36156, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:20.371+00', '{"cached":null,"ignore_cache":false}'), +(36157, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:20.393+00', '{"cached":null,"ignore_cache":false}'), +(36158, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:21.175+00', '{"cached":null,"ignore_cache":false}'), +(36159, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:21.225+00', '{"cached":null,"ignore_cache":false}'), +(36160, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:21.392+00', '{"cached":null,"ignore_cache":false}'), +(36161, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:21.521+00', '{"cached":null,"ignore_cache":false}'), +(36162, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:21.619+00', '{"cached":null,"ignore_cache":false}'), +(36163, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:24.009+00', '{"cached":null,"ignore_cache":false}'), +(36164, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:24.14+00', '{"cached":null,"ignore_cache":false}'), +(36165, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:24.142+00', '{"cached":null,"ignore_cache":false}'), +(36166, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:42:24.21+00', '{"cached":null,"ignore_cache":false}'), +(36167, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:21.75+00', '{"cached":null,"ignore_cache":false}'), +(36168, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:21.766+00', '{"cached":null,"ignore_cache":false}'), +(36169, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:21.884+00', '{"cached":null,"ignore_cache":false}'), +(36170, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:21.891+00', '{"cached":null,"ignore_cache":false}'), +(36171, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:21.965+00', '{"cached":null,"ignore_cache":false}'), +(36172, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:22.943+00', '{"cached":null,"ignore_cache":false}'), +(36173, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:47:22.957+00', '{"cached":null,"ignore_cache":false}'), +(36174, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:37.803+00', '{"cached":null,"ignore_cache":false}'), +(36175, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:37.845+00', '{"cached":null,"ignore_cache":false}'), +(36176, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:38.083+00', '{"cached":null,"ignore_cache":false}'), +(36177, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:38.143+00', '{"cached":null,"ignore_cache":false}'), +(36178, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:38.175+00', '{"cached":null,"ignore_cache":false}'), +(36179, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:39.13+00', '{"cached":null,"ignore_cache":false}'), +(36180, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 14:52:39.145+00', '{"cached":null,"ignore_cache":false}'), +(36181, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:12.876+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36182, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:12.917+00', '{"cached":null,"ignore_cache":false}'), +(36183, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:12.921+00', '{"cached":null,"ignore_cache":false}'), +(36184, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:12.923+00', '{"cached":null,"ignore_cache":false}'), +(36185, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:12.934+00', '{"cached":null,"ignore_cache":false}'), +(36186, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:12.975+00', '{"cached":null,"ignore_cache":false}'), +(36187, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:13.023+00', '{"cached":null,"ignore_cache":false}'), +(36188, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:13.16+00', '{"cached":null,"ignore_cache":false}'), +(36189, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:13.247+00', '{"cached":null,"ignore_cache":false}'), +(36190, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:13.402+00', '{"cached":null,"ignore_cache":false}'), +(36191, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:16.487+00', '{"cached":null,"ignore_cache":false}'), +(36192, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:16.66+00', '{"cached":null,"ignore_cache":false}'), +(36193, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:16.721+00', '{"cached":null,"ignore_cache":false}'), +(36194, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:00:16.744+00', '{"cached":null,"ignore_cache":false}'), +(36195, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:42.125+00', '{"cached":null,"ignore_cache":false}'), +(36196, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:42.128+00', '{"cached":null,"ignore_cache":false}'), +(36197, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:42.16+00', '{"cached":null,"ignore_cache":false}'), +(36198, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:42.167+00', '{"cached":null,"ignore_cache":false}'), +(36199, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:44.497+00', '{"cached":null,"ignore_cache":false}'), +(36200, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:44.508+00', '{"cached":null,"ignore_cache":false}'), +(36201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:44.512+00', '{"cached":null,"ignore_cache":false}'), +(36202, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:44.533+00', '{"cached":null,"ignore_cache":false}'), +(36203, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:44.7+00', '{"cached":null,"ignore_cache":false}'), +(36204, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:44.722+00', '{"cached":null,"ignore_cache":false}'), +(36205, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:45.806+00', '{"cached":null,"ignore_cache":false}'), +(36206, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:46.089+00', '{"cached":null,"ignore_cache":false}'), +(36207, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:46.112+00', '{"cached":null,"ignore_cache":false}'), +(36208, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:01:46.12+00', '{"cached":null,"ignore_cache":false}'), +(36209, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:56.861+00', '{"cached":null,"ignore_cache":false}'), +(36210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:56.927+00', '{"cached":null,"ignore_cache":false}'), +(36211, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:57.223+00', '{"cached":null,"ignore_cache":false}'), +(36212, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:57.326+00', '{"cached":null,"ignore_cache":false}'), +(36213, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:57.42+00', '{"cached":null,"ignore_cache":false}'), +(36214, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:59.558+00', '{"cached":null,"ignore_cache":false}'), +(36215, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:06:59.752+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36216, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:54.344+00', '{"cached":null,"ignore_cache":false}'), +(36217, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:54.551+00', '{"cached":null,"ignore_cache":false}'), +(36218, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:54.677+00', '{"cached":null,"ignore_cache":false}'), +(36219, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:54.815+00', '{"cached":null,"ignore_cache":false}'), +(36220, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:54.864+00', '{"cached":null,"ignore_cache":false}'), +(36221, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:56.16+00', '{"cached":null,"ignore_cache":false}'), +(36222, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:11:56.673+00', '{"cached":null,"ignore_cache":false}'), +(36223, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:45.845+00', '{"cached":null,"ignore_cache":false}'), +(36224, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:45.9+00', '{"cached":null,"ignore_cache":false}'), +(36225, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:46.099+00', '{"cached":null,"ignore_cache":false}'), +(36226, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:46.104+00', '{"cached":null,"ignore_cache":false}'), +(36227, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:46.118+00', '{"cached":null,"ignore_cache":false}'), +(36228, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:48.177+00', '{"cached":null,"ignore_cache":false}'), +(36229, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:16:48.223+00', '{"cached":null,"ignore_cache":false}'), +(36230, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:51.495+00', '{"cached":null,"ignore_cache":false}'), +(36231, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:51.617+00', '{"cached":null,"ignore_cache":false}'), +(36232, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:51.627+00', '{"cached":null,"ignore_cache":false}'), +(36233, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:51.679+00', '{"cached":null,"ignore_cache":false}'), +(36234, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:51.683+00', '{"cached":null,"ignore_cache":false}'), +(36235, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:52.079+00', '{"cached":null,"ignore_cache":false}'), +(36236, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:21:52.087+00', '{"cached":null,"ignore_cache":false}'), +(36237, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:49.578+00', '{"cached":null,"ignore_cache":false}'), +(36238, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:49.771+00', '{"cached":null,"ignore_cache":false}'), +(36239, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:51.199+00', '{"cached":null,"ignore_cache":false}'), +(36240, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:51.682+00', '{"cached":null,"ignore_cache":false}'), +(36241, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:52.268+00', '{"cached":null,"ignore_cache":false}'), +(36242, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:52.27+00', '{"cached":null,"ignore_cache":false}'), +(36243, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:52.427+00', '{"cached":null,"ignore_cache":false}'), +(36244, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:52.444+00', '{"cached":null,"ignore_cache":false}'), +(36245, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:52.445+00', '{"cached":null,"ignore_cache":false}'), +(36246, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:52.59+00', '{"cached":null,"ignore_cache":false}'), +(36247, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:53.908+00', '{"cached":null,"ignore_cache":false}'), +(36248, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:53.974+00', '{"cached":null,"ignore_cache":false}'), +(36249, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:54.044+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36250, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:24:54.053+00', '{"cached":null,"ignore_cache":false}'), +(36251, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.154+00', '{"cached":null,"ignore_cache":false}'), +(36252, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.339+00', '{"cached":null,"ignore_cache":false}'), +(36253, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.35+00', '{"cached":null,"ignore_cache":false}'), +(36254, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.365+00', '{"cached":null,"ignore_cache":false}'), +(36255, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.367+00', '{"cached":null,"ignore_cache":false}'), +(36256, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.401+00', '{"cached":null,"ignore_cache":false}'), +(36257, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.614+00', '{"cached":null,"ignore_cache":false}'), +(36258, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.616+00', '{"cached":null,"ignore_cache":false}'), +(36259, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.698+00', '{"cached":null,"ignore_cache":false}'), +(36260, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.7+00', '{"cached":null,"ignore_cache":false}'), +(36261, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:47.706+00', '{"cached":null,"ignore_cache":false}'), +(36262, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:48.184+00', '{"cached":null,"ignore_cache":false}'), +(36263, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:48.198+00', '{"cached":null,"ignore_cache":false}'), +(36264, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:48.201+00', '{"cached":null,"ignore_cache":false}'), +(36265, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:48.225+00', '{"cached":null,"ignore_cache":false}'), +(36266, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:51.882+00', '{"cached":null,"ignore_cache":false}'), +(36267, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:51.898+00', '{"cached":null,"ignore_cache":false}'), +(36268, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:52.03+00', '{"cached":null,"ignore_cache":false}'), +(36269, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:52.061+00', '{"cached":null,"ignore_cache":false}'), +(36270, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:52.065+00', '{"cached":null,"ignore_cache":false}'), +(36271, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:26:52.106+00', '{"cached":null,"ignore_cache":false}'), +(36272, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:12.583+00', '{"cached":null,"ignore_cache":false}'), +(36273, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:12.596+00', '{"cached":null,"ignore_cache":false}'), +(36274, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:12.598+00', '{"cached":null,"ignore_cache":false}'), +(36275, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:12.808+00', '{"cached":null,"ignore_cache":false}'), +(36276, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:12.81+00', '{"cached":null,"ignore_cache":false}'), +(36277, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:12.902+00', '{"cached":null,"ignore_cache":false}'), +(36278, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:12.967+00', '{"cached":null,"ignore_cache":false}'), +(36279, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:13.231+00', '{"cached":null,"ignore_cache":false}'), +(36280, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:13.28+00', '{"cached":null,"ignore_cache":false}'), +(36281, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:17.024+00', '{"cached":null,"ignore_cache":false}'), +(36282, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:17.059+00', '{"cached":null,"ignore_cache":false}'), +(36283, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:17.129+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36284, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:30:17.205+00', '{"cached":null,"ignore_cache":false}'), +(36285, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.892+00', '{"cached":null,"ignore_cache":false}'), +(36286, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:34.917+00', '{"cached":null,"ignore_cache":false}'), +(36287, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.741+00', '{"cached":null,"ignore_cache":false}'), +(36288, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.773+00', '{"cached":null,"ignore_cache":false}'), +(36289, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.83+00', '{"cached":null,"ignore_cache":false}'), +(36290, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:35.958+00', '{"cached":null,"ignore_cache":false}'), +(36291, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:36.404+00', '{"cached":null,"ignore_cache":false}'), +(36292, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:36.411+00', '{"cached":null,"ignore_cache":false}'), +(36293, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:36.448+00', '{"cached":null,"ignore_cache":false}'), +(36294, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:36.633+00', '{"cached":null,"ignore_cache":false}'), +(36295, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:37.016+00', '{"cached":null,"ignore_cache":false}'), +(36296, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:37.071+00', '{"cached":null,"ignore_cache":false}'), +(36297, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:31:37.217+00', '{"cached":null,"ignore_cache":false}'), +(36298, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:39.593+00', '{"cached":null,"ignore_cache":false}'), +(36299, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:39.619+00', '{"cached":null,"ignore_cache":false}'), +(36300, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:39.921+00', '{"cached":null,"ignore_cache":false}'), +(36301, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:39.943+00', '{"cached":null,"ignore_cache":false}'), +(36302, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:40.945+00', '{"cached":null,"ignore_cache":false}'), +(36303, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:43.506+00', '{"cached":null,"ignore_cache":false}'), +(36304, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:33:43.55+00', '{"cached":null,"ignore_cache":false}'), +(36305, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:42.032+00', '{"cached":null,"ignore_cache":false}'), +(36306, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:42.195+00', '{"cached":null,"ignore_cache":false}'), +(36307, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:44.01+00', '{"cached":null,"ignore_cache":false}'), +(36308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:44.068+00', '{"cached":null,"ignore_cache":false}'), +(36309, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:44.09+00', '{"cached":null,"ignore_cache":false}'), +(36310, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:44.169+00', '{"cached":null,"ignore_cache":false}'), +(36311, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:44.54+00', '{"cached":null,"ignore_cache":false}'), +(36312, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:44.574+00', '{"cached":null,"ignore_cache":false}'), +(36313, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:45.078+00', '{"cached":null,"ignore_cache":false}'), +(36314, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:45.294+00', '{"cached":null,"ignore_cache":false}'), +(36315, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:45.306+00', '{"cached":null,"ignore_cache":false}'), +(36316, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.18+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36317, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.192+00', '{"cached":null,"ignore_cache":false}'), +(36318, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.193+00', '{"cached":null,"ignore_cache":false}'), +(36319, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.353+00', '{"cached":null,"ignore_cache":false}'), +(36320, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.71+00', '{"cached":null,"ignore_cache":false}'), +(36321, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.855+00', '{"cached":null,"ignore_cache":false}'), +(36322, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.867+00', '{"cached":null,"ignore_cache":false}'), +(36323, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:46.926+00', '{"cached":null,"ignore_cache":false}'), +(36324, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:47.103+00', '{"cached":null,"ignore_cache":false}'), +(36325, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:47.112+00', '{"cached":null,"ignore_cache":false}'), +(36326, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:47.139+00', '{"cached":null,"ignore_cache":false}'), +(36327, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:47.149+00', '{"cached":null,"ignore_cache":false}'), +(36328, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:47.15+00', '{"cached":null,"ignore_cache":false}'), +(36329, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:47.151+00', '{"cached":null,"ignore_cache":false}'), +(36330, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:50.176+00', '{"cached":null,"ignore_cache":false}'), +(36331, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:50.217+00', '{"cached":null,"ignore_cache":false}'), +(36332, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:50.234+00', '{"cached":null,"ignore_cache":false}'), +(36333, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:38:50.245+00', '{"cached":null,"ignore_cache":false}'), +(36334, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.575+00', '{"cached":null,"ignore_cache":false}'), +(36335, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.628+00', '{"cached":null,"ignore_cache":false}'), +(36336, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.635+00', '{"cached":null,"ignore_cache":false}'), +(36337, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.642+00', '{"cached":null,"ignore_cache":false}'), +(36338, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.694+00', '{"cached":null,"ignore_cache":false}'), +(36339, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.71+00', '{"cached":null,"ignore_cache":false}'), +(36340, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.752+00', '{"cached":null,"ignore_cache":false}'), +(36341, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.761+00', '{"cached":null,"ignore_cache":false}'), +(36342, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.767+00', '{"cached":null,"ignore_cache":false}'), +(36343, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:18.936+00', '{"cached":null,"ignore_cache":false}'), +(36344, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:20.702+00', '{"cached":null,"ignore_cache":false}'), +(36345, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:20.726+00', '{"cached":null,"ignore_cache":false}'), +(36346, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:20.762+00', '{"cached":null,"ignore_cache":false}'), +(36347, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:42:20.808+00', '{"cached":null,"ignore_cache":false}'), +(36348, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:36.049+00', '{"cached":null,"ignore_cache":false}'), +(36349, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:36.206+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36350, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:36.212+00', '{"cached":null,"ignore_cache":false}'), +(36351, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:36.467+00', '{"cached":null,"ignore_cache":false}'), +(36352, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.227+00', '{"cached":null,"ignore_cache":false}'), +(36353, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.31+00', '{"cached":null,"ignore_cache":false}'), +(36354, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.629+00', '{"cached":null,"ignore_cache":false}'), +(36355, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.639+00', '{"cached":null,"ignore_cache":false}'), +(36356, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.641+00', '{"cached":null,"ignore_cache":false}'), +(36357, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.643+00', '{"cached":null,"ignore_cache":false}'), +(36358, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.656+00', '{"cached":null,"ignore_cache":false}'), +(36359, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.717+00', '{"cached":null,"ignore_cache":false}'), +(36360, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:37.748+00', '{"cached":null,"ignore_cache":false}'), +(36361, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:38.399+00', '{"cached":null,"ignore_cache":false}'), +(36362, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:43:38.497+00', '{"cached":null,"ignore_cache":false}'), +(36363, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:03.365+00', '{"cached":null,"ignore_cache":false}'), +(36364, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:03.406+00', '{"cached":null,"ignore_cache":false}'), +(36365, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:03.421+00', '{"cached":null,"ignore_cache":false}'), +(36366, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:04.27+00', '{"cached":null,"ignore_cache":false}'), +(36367, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:04.375+00', '{"cached":null,"ignore_cache":false}'), +(36368, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:05.839+00', '{"cached":null,"ignore_cache":false}'), +(36369, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:46:05.882+00', '{"cached":null,"ignore_cache":false}'), +(36370, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:13.674+00', '{"cached":null,"ignore_cache":false}'), +(36371, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:13.696+00', '{"cached":null,"ignore_cache":false}'), +(36372, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:14.566+00', '{"cached":null,"ignore_cache":false}'), +(36373, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:14.585+00', '{"cached":null,"ignore_cache":false}'), +(36374, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:14.677+00', '{"cached":null,"ignore_cache":false}'), +(36375, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:17.229+00', '{"cached":null,"ignore_cache":false}'), +(36376, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:47:17.283+00', '{"cached":null,"ignore_cache":false}'), +(36377, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.062+00', '{"cached":null,"ignore_cache":false}'), +(36378, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.25+00', '{"cached":null,"ignore_cache":false}'), +(36379, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.272+00', '{"cached":null,"ignore_cache":false}'), +(36380, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.296+00', '{"cached":null,"ignore_cache":false}'), +(36381, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.514+00', '{"cached":null,"ignore_cache":false}'), +(36382, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.82+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36383, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.86+00', '{"cached":null,"ignore_cache":false}'), +(36384, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.87+00', '{"cached":null,"ignore_cache":false}'), +(36385, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.919+00', '{"cached":null,"ignore_cache":false}'), +(36386, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.96+00', '{"cached":null,"ignore_cache":false}'), +(36387, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:35.98+00', '{"cached":null,"ignore_cache":false}'), +(36388, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:36.04+00', '{"cached":null,"ignore_cache":false}'), +(36389, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:36.057+00', '{"cached":null,"ignore_cache":false}'), +(36390, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:36.341+00', '{"cached":null,"ignore_cache":false}'), +(36391, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:48:36.37+00', '{"cached":null,"ignore_cache":false}'), +(36392, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:24.916+00', '{"cached":null,"ignore_cache":false}'), +(36393, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:25.436+00', '{"cached":null,"ignore_cache":false}'), +(36394, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:25.458+00', '{"cached":null,"ignore_cache":false}'), +(36395, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:25.464+00', '{"cached":null,"ignore_cache":false}'), +(36396, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:27.081+00', '{"cached":null,"ignore_cache":false}'), +(36397, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:27.083+00', '{"cached":null,"ignore_cache":false}'), +(36398, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:27.103+00', '{"cached":null,"ignore_cache":false}'), +(36399, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:27.105+00', '{"cached":null,"ignore_cache":false}'), +(36400, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.67+00', '{"cached":null,"ignore_cache":false}'), +(36401, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:50.8+00', '{"cached":null,"ignore_cache":false}'), +(36402, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:51.07+00', '{"cached":null,"ignore_cache":false}'), +(36403, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:51.161+00', '{"cached":null,"ignore_cache":false}'), +(36404, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:51.215+00', '{"cached":null,"ignore_cache":false}'), +(36405, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:51.237+00', '{"cached":null,"ignore_cache":false}'), +(36406, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:51.247+00', '{"cached":null,"ignore_cache":false}'), +(36407, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:50:51.26+00', '{"cached":null,"ignore_cache":false}'), +(36408, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:02.987+00', '{"cached":null,"ignore_cache":false}'), +(36409, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:03.218+00', '{"cached":null,"ignore_cache":false}'), +(36410, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:03.232+00', '{"cached":null,"ignore_cache":false}'), +(36411, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:03.235+00', '{"cached":null,"ignore_cache":false}'), +(36412, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:03.236+00', '{"cached":null,"ignore_cache":false}'), +(36413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:03.26+00', '{"cached":null,"ignore_cache":false}'), +(36414, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:03.305+00', '{"cached":null,"ignore_cache":false}'), +(36415, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:03.385+00', '{"cached":null,"ignore_cache":false}'), +(36416, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.683+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36417, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.958+00', '{"cached":null,"ignore_cache":false}'), +(36418, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.973+00', '{"cached":null,"ignore_cache":false}'), +(36419, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:39.976+00', '{"cached":null,"ignore_cache":false}'), +(36420, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:40.414+00', '{"cached":null,"ignore_cache":false}'), +(36421, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:40.483+00', '{"cached":null,"ignore_cache":false}'), +(36422, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:40.561+00', '{"cached":null,"ignore_cache":false}'), +(36423, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:51:40.563+00', '{"cached":null,"ignore_cache":false}'), +(36424, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:17.023+00', '{"cached":null,"ignore_cache":false}'), +(36425, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:17.087+00', '{"cached":null,"ignore_cache":false}'), +(36426, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:17.397+00', '{"cached":null,"ignore_cache":false}'), +(36427, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:17.422+00', '{"cached":null,"ignore_cache":false}'), +(36428, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:17.508+00', '{"cached":null,"ignore_cache":false}'), +(36429, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:19.037+00', '{"cached":null,"ignore_cache":false}'), +(36430, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:19.083+00', '{"cached":null,"ignore_cache":false}'), +(36431, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:25.918+00', '{"cached":null,"ignore_cache":false}'), +(36432, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:27.091+00', '{"cached":null,"ignore_cache":false}'), +(36433, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:27.111+00', '{"cached":null,"ignore_cache":false}'), +(36434, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:27.201+00', '{"cached":null,"ignore_cache":false}'), +(36435, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:27.337+00', '{"cached":null,"ignore_cache":false}'), +(36436, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:27.405+00', '{"cached":null,"ignore_cache":false}'), +(36437, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:27.565+00', '{"cached":null,"ignore_cache":false}'), +(36438, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:28.22+00', '{"cached":null,"ignore_cache":false}'), +(36439, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:28.798+00', '{"cached":null,"ignore_cache":false}'), +(36440, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:29.036+00', '{"cached":null,"ignore_cache":false}'), +(36441, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:29.228+00', '{"cached":null,"ignore_cache":false}'), +(36442, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:29.359+00', '{"cached":null,"ignore_cache":false}'), +(36443, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:29.385+00', '{"cached":null,"ignore_cache":false}'), +(36444, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:30.461+00', '{"cached":null,"ignore_cache":false}'), +(36445, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:30.732+00', '{"cached":null,"ignore_cache":false}'), +(36446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.116+00', '{"cached":null,"ignore_cache":false}'), +(36447, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.144+00', '{"cached":null,"ignore_cache":false}'), +(36448, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.341+00', '{"cached":null,"ignore_cache":false}'), +(36449, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.345+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36450, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.384+00', '{"cached":null,"ignore_cache":false}'), +(36451, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.393+00', '{"cached":null,"ignore_cache":false}'), +(36452, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.41+00', '{"cached":null,"ignore_cache":false}'), +(36453, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.432+00', '{"cached":null,"ignore_cache":false}'), +(36454, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.476+00', '{"cached":null,"ignore_cache":false}'), +(36455, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.635+00', '{"cached":null,"ignore_cache":false}'), +(36456, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:31.788+00', '{"cached":null,"ignore_cache":false}'), +(36457, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:32.473+00', '{"cached":null,"ignore_cache":false}'), +(36458, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:33.044+00', '{"cached":null,"ignore_cache":false}'), +(36459, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:33.104+00', '{"cached":null,"ignore_cache":false}'), +(36460, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:53:33.22+00', '{"cached":null,"ignore_cache":false}'), +(36461, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:20.966+00', '{"cached":null,"ignore_cache":false}'), +(36462, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:21.046+00', '{"cached":null,"ignore_cache":false}'), +(36463, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:21.194+00', '{"cached":null,"ignore_cache":false}'), +(36464, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:21.218+00', '{"cached":null,"ignore_cache":false}'), +(36465, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:21.23+00', '{"cached":null,"ignore_cache":false}'), +(36466, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:22.074+00', '{"cached":null,"ignore_cache":false}'), +(36467, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:22.108+00', '{"cached":null,"ignore_cache":false}'), +(36468, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:27.975+00', '{"cached":null,"ignore_cache":false}'), +(36469, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:28.065+00', '{"cached":null,"ignore_cache":false}'), +(36470, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:28.082+00', '{"cached":null,"ignore_cache":false}'), +(36471, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:28.145+00', '{"cached":null,"ignore_cache":false}'), +(36472, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:28.573+00', '{"cached":null,"ignore_cache":false}'), +(36473, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.122+00', '{"cached":null,"ignore_cache":false}'), +(36474, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.196+00', '{"cached":null,"ignore_cache":false}'), +(36475, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.198+00', '{"cached":null,"ignore_cache":false}'), +(36476, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.377+00', '{"cached":null,"ignore_cache":false}'), +(36477, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.411+00', '{"cached":null,"ignore_cache":false}'), +(36478, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.493+00', '{"cached":null,"ignore_cache":false}'), +(36479, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.536+00', '{"cached":null,"ignore_cache":false}'), +(36480, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.639+00', '{"cached":null,"ignore_cache":false}'), +(36481, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.71+00', '{"cached":null,"ignore_cache":false}'), +(36482, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 15:58:29.842+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:30.841+00', '{"cached":null,"ignore_cache":false}'), +(36484, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.314+00', '{"cached":null,"ignore_cache":false}'), +(36485, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.63+00', '{"cached":null,"ignore_cache":false}'), +(36486, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.64+00', '{"cached":null,"ignore_cache":false}'), +(36487, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.643+00', '{"cached":null,"ignore_cache":false}'), +(36488, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.649+00', '{"cached":null,"ignore_cache":false}'), +(36489, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.65+00', '{"cached":null,"ignore_cache":false}'), +(36490, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.672+00', '{"cached":null,"ignore_cache":false}'), +(36491, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.677+00', '{"cached":null,"ignore_cache":false}'), +(36492, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.692+00', '{"cached":null,"ignore_cache":false}'), +(36493, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:31.701+00', '{"cached":null,"ignore_cache":false}'), +(36494, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.008+00', '{"cached":null,"ignore_cache":false}'), +(36495, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.31+00', '{"cached":null,"ignore_cache":false}'), +(36496, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.319+00', '{"cached":null,"ignore_cache":false}'), +(36497, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.353+00', '{"cached":null,"ignore_cache":false}'), +(36498, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.367+00', '{"cached":null,"ignore_cache":false}'), +(36499, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.378+00', '{"cached":null,"ignore_cache":false}'), +(36500, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.379+00', '{"cached":null,"ignore_cache":false}'), +(36501, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.387+00', '{"cached":null,"ignore_cache":false}'), +(36502, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.39+00', '{"cached":null,"ignore_cache":false}'), +(36503, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.391+00', '{"cached":null,"ignore_cache":false}'), +(36504, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 16:03:32.392+00', '{"cached":null,"ignore_cache":false}'), +(36505, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:28.399+00', '{"cached":null,"ignore_cache":false}'), +(36506, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:28.42+00', '{"cached":null,"ignore_cache":false}'), +(36507, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:28.624+00', '{"cached":null,"ignore_cache":false}'), +(36508, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:28.626+00', '{"cached":null,"ignore_cache":false}'), +(36509, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:30.879+00', '{"cached":null,"ignore_cache":false}'), +(36510, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:30.892+00', '{"cached":null,"ignore_cache":false}'), +(36511, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:30.909+00', '{"cached":null,"ignore_cache":false}'), +(36512, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:30.919+00', '{"cached":null,"ignore_cache":false}'), +(36513, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:31.244+00', '{"cached":null,"ignore_cache":false}'), +(36514, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:31.403+00', '{"cached":null,"ignore_cache":false}'), +(36515, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:33.918+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36516, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:33.925+00', '{"cached":null,"ignore_cache":false}'), +(36517, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 16:05:33.967+00', '{"cached":null,"ignore_cache":false}'), +(36518, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:33.438+00', '{"cached":null,"ignore_cache":false}'), +(36519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:33.489+00', '{"cached":null,"ignore_cache":false}'), +(36520, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:33.522+00', '{"cached":null,"ignore_cache":false}'), +(36521, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:33.567+00', '{"cached":null,"ignore_cache":false}'), +(36522, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:33.584+00', '{"cached":null,"ignore_cache":false}'), +(36523, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:35.165+00', '{"cached":null,"ignore_cache":false}'), +(36524, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 16:10:35.321+00', '{"cached":null,"ignore_cache":false}'), +(36525, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:56.827+00', '{"cached":null,"ignore_cache":false}'), +(36526, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:56.884+00', '{"cached":null,"ignore_cache":false}'), +(36527, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:56.929+00', '{"cached":null,"ignore_cache":false}'), +(36528, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:56.931+00', '{"cached":null,"ignore_cache":false}'), +(36529, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:56.963+00', '{"cached":null,"ignore_cache":false}'), +(36530, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:58.947+00', '{"cached":null,"ignore_cache":false}'), +(36531, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 16:20:58.973+00', '{"cached":null,"ignore_cache":false}'), +(36532, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:18.567+00', '{"cached":null,"ignore_cache":false}'), +(36533, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:18.59+00', '{"cached":null,"ignore_cache":false}'), +(36534, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:18.613+00', '{"cached":null,"ignore_cache":false}'), +(36535, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:18.629+00', '{"cached":null,"ignore_cache":false}'), +(36536, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:18.63+00', '{"cached":null,"ignore_cache":false}'), +(36537, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:19.954+00', '{"cached":null,"ignore_cache":false}'), +(36538, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-12 23:05:20.164+00', '{"cached":null,"ignore_cache":false}'), +(36539, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.087+00', '{"cached":null,"ignore_cache":false}'), +(36540, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.265+00', '{"cached":null,"ignore_cache":false}'), +(36541, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.293+00', '{"cached":null,"ignore_cache":false}'), +(36542, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.295+00', '{"cached":null,"ignore_cache":false}'), +(36543, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.323+00', '{"cached":null,"ignore_cache":false}'), +(36544, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.333+00', '{"cached":null,"ignore_cache":false}'), +(36545, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.334+00', '{"cached":null,"ignore_cache":false}'), +(36546, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.359+00', '{"cached":null,"ignore_cache":false}'), +(36547, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.892+00', '{"cached":null,"ignore_cache":false}'), +(36548, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:38.945+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36549, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:41.42+00', '{"cached":null,"ignore_cache":false}'), +(36550, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:41.424+00', '{"cached":null,"ignore_cache":false}'), +(36551, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:41.447+00', '{"cached":null,"ignore_cache":false}'), +(36552, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 07:53:41.461+00', '{"cached":null,"ignore_cache":false}'), +(36553, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:43.495+00', '{"cached":null,"ignore_cache":false}'), +(36554, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:43.587+00', '{"cached":null,"ignore_cache":false}'), +(36555, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:43.986+00', '{"cached":null,"ignore_cache":false}'), +(36556, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:44.042+00', '{"cached":null,"ignore_cache":false}'), +(36557, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:44.097+00', '{"cached":null,"ignore_cache":false}'), +(36558, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:45.452+00', '{"cached":null,"ignore_cache":false}'), +(36559, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 07:58:45.486+00', '{"cached":null,"ignore_cache":false}'), +(36560, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:47.133+00', '{"cached":null,"ignore_cache":false}'), +(36561, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:47.135+00', '{"cached":null,"ignore_cache":false}'), +(36562, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:47.491+00', '{"cached":null,"ignore_cache":false}'), +(36563, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:47.771+00', '{"cached":null,"ignore_cache":false}'), +(36564, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:47.783+00', '{"cached":null,"ignore_cache":false}'), +(36565, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:48.801+00', '{"cached":null,"ignore_cache":false}'), +(36566, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:03:48.908+00', '{"cached":null,"ignore_cache":false}'), +(36567, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:51.465+00', '{"cached":null,"ignore_cache":false}'), +(36568, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:51.489+00', '{"cached":null,"ignore_cache":false}'), +(36569, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:51.49+00', '{"cached":null,"ignore_cache":false}'), +(36570, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:51.491+00', '{"cached":null,"ignore_cache":false}'), +(36571, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:51.492+00', '{"cached":null,"ignore_cache":false}'), +(36572, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:52.298+00', '{"cached":null,"ignore_cache":false}'), +(36573, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:08:52.309+00', '{"cached":null,"ignore_cache":false}'), +(36574, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:52.51+00', '{"cached":null,"ignore_cache":false}'), +(36575, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:52.524+00', '{"cached":null,"ignore_cache":false}'), +(36576, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:52.548+00', '{"cached":null,"ignore_cache":false}'), +(36577, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:52.626+00', '{"cached":null,"ignore_cache":false}'), +(36578, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:52.654+00', '{"cached":null,"ignore_cache":false}'), +(36579, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:53.455+00', '{"cached":null,"ignore_cache":false}'), +(36580, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:13:53.477+00', '{"cached":null,"ignore_cache":false}'), +(36581, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:50.323+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36582, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:50.353+00', '{"cached":null,"ignore_cache":false}'), +(36583, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:50.359+00', '{"cached":null,"ignore_cache":false}'), +(36584, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:50.36+00', '{"cached":null,"ignore_cache":false}'), +(36585, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:50.361+00', '{"cached":null,"ignore_cache":false}'), +(36586, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:51.134+00', '{"cached":null,"ignore_cache":false}'), +(36587, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:18:51.143+00', '{"cached":null,"ignore_cache":false}'), +(36588, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:15.267+00', '{"cached":null,"ignore_cache":false}'), +(36589, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:15.292+00', '{"cached":null,"ignore_cache":false}'), +(36590, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:15.306+00', '{"cached":null,"ignore_cache":false}'), +(36591, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:15.32+00', '{"cached":null,"ignore_cache":false}'), +(36592, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:15.336+00', '{"cached":null,"ignore_cache":false}'), +(36593, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:16.35+00', '{"cached":null,"ignore_cache":false}'), +(36594, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:24:16.363+00', '{"cached":null,"ignore_cache":false}'), +(36595, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:13.387+00', '{"cached":null,"ignore_cache":false}'), +(36596, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:13.422+00', '{"cached":null,"ignore_cache":false}'), +(36597, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:13.654+00', '{"cached":null,"ignore_cache":false}'), +(36598, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:13.749+00', '{"cached":null,"ignore_cache":false}'), +(36599, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:13.799+00', '{"cached":null,"ignore_cache":false}'), +(36600, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:14.994+00', '{"cached":null,"ignore_cache":false}'), +(36601, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:29:15.334+00', '{"cached":null,"ignore_cache":false}'), +(36602, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:15.895+00', '{"cached":null,"ignore_cache":false}'), +(36603, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:15.932+00', '{"cached":null,"ignore_cache":false}'), +(36604, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:16.084+00', '{"cached":null,"ignore_cache":false}'), +(36605, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:16.135+00', '{"cached":null,"ignore_cache":false}'), +(36606, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:16.205+00', '{"cached":null,"ignore_cache":false}'), +(36607, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:18.177+00', '{"cached":null,"ignore_cache":false}'), +(36608, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:34:18.195+00', '{"cached":null,"ignore_cache":false}'), +(36609, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:18.926+00', '{"cached":null,"ignore_cache":false}'), +(36610, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:18.999+00', '{"cached":null,"ignore_cache":false}'), +(36611, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:19.035+00', '{"cached":null,"ignore_cache":false}'), +(36612, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:19.125+00', '{"cached":null,"ignore_cache":false}'), +(36613, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:19.159+00', '{"cached":null,"ignore_cache":false}'), +(36614, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:20.519+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36615, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:39:20.527+00', '{"cached":null,"ignore_cache":false}'), +(36616, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:18.333+00', '{"cached":null,"ignore_cache":false}'), +(36617, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:18.415+00', '{"cached":null,"ignore_cache":false}'), +(36618, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:20.433+00', '{"cached":null,"ignore_cache":false}'), +(36619, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:20.505+00', '{"cached":null,"ignore_cache":false}'), +(36620, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:20.528+00', '{"cached":null,"ignore_cache":false}'), +(36621, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:20.575+00', '{"cached":null,"ignore_cache":false}'), +(36622, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:20.635+00', '{"cached":null,"ignore_cache":false}'), +(36623, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:20.646+00', '{"cached":null,"ignore_cache":false}'), +(36624, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:21.676+00', '{"cached":null,"ignore_cache":false}'), +(36625, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:21.956+00', '{"cached":null,"ignore_cache":false}'), +(36626, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.071+00', '{"cached":null,"ignore_cache":false}'), +(36627, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.094+00', '{"cached":null,"ignore_cache":false}'), +(36628, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.246+00', '{"cached":null,"ignore_cache":false}'), +(36629, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.268+00', '{"cached":null,"ignore_cache":false}'), +(36630, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.412+00', '{"cached":null,"ignore_cache":false}'), +(36631, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.532+00', '{"cached":null,"ignore_cache":false}'), +(36632, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.541+00', '{"cached":null,"ignore_cache":false}'), +(36633, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.569+00', '{"cached":null,"ignore_cache":false}'), +(36634, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.571+00', '{"cached":null,"ignore_cache":false}'), +(36635, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.572+00', '{"cached":null,"ignore_cache":false}'), +(36636, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.602+00', '{"cached":null,"ignore_cache":false}'), +(36637, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.614+00', '{"cached":null,"ignore_cache":false}'), +(36638, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.646+00', '{"cached":null,"ignore_cache":false}'), +(36639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.66+00', '{"cached":null,"ignore_cache":false}'), +(36640, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.691+00', '{"cached":null,"ignore_cache":false}'), +(36641, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:22.72+00', '{"cached":null,"ignore_cache":false}'), +(36642, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:24.568+00', '{"cached":null,"ignore_cache":false}'), +(36643, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:24.596+00', '{"cached":null,"ignore_cache":false}'), +(36644, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:24.686+00', '{"cached":null,"ignore_cache":false}'), +(36645, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:43:24.703+00', '{"cached":null,"ignore_cache":false}'), +(36646, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:14.417+00', '{"cached":null,"ignore_cache":false}'), +(36647, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:14.474+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36648, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:15.627+00', '{"cached":null,"ignore_cache":false}'), +(36649, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:15.66+00', '{"cached":null,"ignore_cache":false}'), +(36650, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:15.964+00', '{"cached":null,"ignore_cache":false}'), +(36651, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:18.472+00', '{"cached":null,"ignore_cache":false}'), +(36652, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:44:18.49+00', '{"cached":null,"ignore_cache":false}'), +(36653, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:18.505+00', '{"cached":null,"ignore_cache":false}'), +(36654, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:19.251+00', '{"cached":null,"ignore_cache":false}'), +(36655, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:19.327+00', '{"cached":null,"ignore_cache":false}'), +(36656, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:19.428+00', '{"cached":null,"ignore_cache":false}'), +(36657, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:19.708+00', '{"cached":null,"ignore_cache":false}'), +(36658, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:19.749+00', '{"cached":null,"ignore_cache":false}'), +(36659, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:19.889+00', '{"cached":null,"ignore_cache":false}'), +(36660, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:20.136+00', '{"cached":null,"ignore_cache":false}'), +(36661, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:20.141+00', '{"cached":null,"ignore_cache":false}'), +(36662, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:20.214+00', '{"cached":null,"ignore_cache":false}'), +(36663, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:20.228+00', '{"cached":null,"ignore_cache":false}'), +(36664, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:20.236+00', '{"cached":null,"ignore_cache":false}'), +(36665, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:20.248+00', '{"cached":null,"ignore_cache":false}'), +(36666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:21.241+00', '{"cached":null,"ignore_cache":false}'), +(36667, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:48:21.328+00', '{"cached":null,"ignore_cache":false}'), +(36668, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:16.75+00', '{"cached":null,"ignore_cache":false}'), +(36669, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:16.759+00', '{"cached":null,"ignore_cache":false}'), +(36670, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:20.295+00', '{"cached":null,"ignore_cache":false}'), +(36671, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:20.399+00', '{"cached":null,"ignore_cache":false}'), +(36672, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:20.622+00', '{"cached":null,"ignore_cache":false}'), +(36673, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:22.434+00', '{"cached":null,"ignore_cache":false}'), +(36674, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 08:49:22.47+00', '{"cached":null,"ignore_cache":false}'), +(36675, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:54.594+00', '{"cached":null,"ignore_cache":false}'), +(36676, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-13 14:56:54.732+00', '{"cached":null,"ignore_cache":false}'), +(36677, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:01.362+00', '{"cached":null,"ignore_cache":false}'), +(36678, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:01.732+00', '{"cached":null,"ignore_cache":false}'), +(36679, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:01.751+00', '{"cached":null,"ignore_cache":false}'), +(36680, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:01.927+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36681, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:02.322+00', '{"cached":null,"ignore_cache":false}'), +(36682, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:02.429+00', '{"cached":null,"ignore_cache":false}'), +(36683, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:02.469+00', '{"cached":null,"ignore_cache":false}'), +(36684, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:02.501+00', '{"cached":null,"ignore_cache":false}'), +(36685, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:02.738+00', '{"cached":null,"ignore_cache":false}'), +(36686, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.338+00', '{"cached":null,"ignore_cache":false}'), +(36687, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.368+00', '{"cached":null,"ignore_cache":false}'), +(36688, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.379+00', '{"cached":null,"ignore_cache":false}'), +(36689, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.495+00', '{"cached":null,"ignore_cache":false}'), +(36690, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.52+00', '{"cached":null,"ignore_cache":false}'), +(36691, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.528+00', '{"cached":null,"ignore_cache":false}'), +(36692, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.531+00', '{"cached":null,"ignore_cache":false}'), +(36693, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.533+00', '{"cached":null,"ignore_cache":false}'), +(36694, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.535+00', '{"cached":null,"ignore_cache":false}'), +(36695, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:03.553+00', '{"cached":null,"ignore_cache":false}'), +(36696, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:04.185+00', '{"cached":null,"ignore_cache":false}'), +(36697, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:04.216+00', '{"cached":null,"ignore_cache":false}'), +(36698, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:06.846+00', '{"cached":null,"ignore_cache":false}'), +(36699, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:06.938+00', '{"cached":null,"ignore_cache":false}'), +(36700, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:06.992+00', '{"cached":null,"ignore_cache":false}'), +(36701, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 14:57:07.004+00', '{"cached":null,"ignore_cache":false}'), +(36702, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:18.06+00', '{"cached":null,"ignore_cache":false}'), +(36703, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:18.128+00', '{"cached":null,"ignore_cache":false}'), +(36704, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:18.173+00', '{"cached":null,"ignore_cache":false}'), +(36705, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:18.191+00', '{"cached":null,"ignore_cache":false}'), +(36706, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:18.205+00', '{"cached":null,"ignore_cache":false}'), +(36707, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:19.663+00', '{"cached":null,"ignore_cache":false}'), +(36708, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:19.771+00', '{"cached":null,"ignore_cache":false}'), +(36709, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.208+00', '{"cached":null,"ignore_cache":false}'), +(36710, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.253+00', '{"cached":null,"ignore_cache":false}'), +(36711, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.292+00', '{"cached":null,"ignore_cache":false}'), +(36712, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.427+00', '{"cached":null,"ignore_cache":false}'), +(36713, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.471+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36714, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.497+00', '{"cached":null,"ignore_cache":false}'), +(36715, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.534+00', '{"cached":null,"ignore_cache":false}'), +(36716, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-13 15:04:31.542+00', '{"cached":null,"ignore_cache":false}'), +(36717, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:36.849+00', '{"cached":null,"ignore_cache":false}'), +(36718, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:36.873+00', '{"cached":null,"ignore_cache":false}'), +(36719, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:37.341+00', '{"cached":null,"ignore_cache":false}'), +(36720, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:37.396+00', '{"cached":null,"ignore_cache":false}'), +(36721, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:37.435+00', '{"cached":null,"ignore_cache":false}'), +(36722, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:38.63+00', '{"cached":null,"ignore_cache":false}'), +(36723, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-13 15:14:38.637+00', '{"cached":null,"ignore_cache":false}'), +(36724, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.6+00', '{"cached":null,"ignore_cache":false}'), +(36725, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:22.724+00', '{"cached":null,"ignore_cache":false}'), +(36726, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:23.342+00', '{"cached":null,"ignore_cache":false}'), +(36727, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:23.346+00', '{"cached":null,"ignore_cache":false}'), +(36728, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:23.351+00', '{"cached":null,"ignore_cache":false}'), +(36729, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:23.387+00', '{"cached":null,"ignore_cache":false}'), +(36730, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:23.438+00', '{"cached":null,"ignore_cache":false}'), +(36731, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-13 15:15:23.45+00', '{"cached":null,"ignore_cache":false}'), +(36732, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:33.634+00', '{"cached":null,"ignore_cache":false}'), +(36733, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:33.739+00', '{"cached":null,"ignore_cache":false}'), +(36734, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:33.858+00', '{"cached":null,"ignore_cache":false}'), +(36735, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:33.988+00', '{"cached":null,"ignore_cache":false}'), +(36736, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:34.03+00', '{"cached":null,"ignore_cache":false}'), +(36737, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:34.877+00', '{"cached":null,"ignore_cache":false}'), +(36738, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-14 12:52:34.886+00', '{"cached":null,"ignore_cache":false}'), +(36739, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:31.375+00', '{"cached":null,"ignore_cache":false}'), +(36740, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:31.933+00', '{"cached":null,"ignore_cache":false}'), +(36741, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:32.016+00', '{"cached":null,"ignore_cache":false}'), +(36742, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:32.054+00', '{"cached":null,"ignore_cache":false}'), +(36743, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:32.201+00', '{"cached":null,"ignore_cache":false}'), +(36744, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:32.246+00', '{"cached":null,"ignore_cache":false}'), +(36745, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:32.326+00', '{"cached":null,"ignore_cache":false}'), +(36746, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-14 13:27:32.329+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36747, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:15.359+00', '{"cached":null,"ignore_cache":false}'), +(36748, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:16.701+00', '{"cached":null,"ignore_cache":false}'), +(36749, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:16.77+00', '{"cached":null,"ignore_cache":false}'), +(36750, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:16.804+00', '{"cached":null,"ignore_cache":false}'), +(36751, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:17.073+00', '{"cached":null,"ignore_cache":false}'), +(36752, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:17.096+00', '{"cached":null,"ignore_cache":false}'), +(36753, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:17.137+00', '{"cached":null,"ignore_cache":false}'), +(36754, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-15 15:50:17.14+00', '{"cached":null,"ignore_cache":false}'), +(36755, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:52.658+00', '{"cached":null,"ignore_cache":false}'), +(36756, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:52.678+00', '{"cached":null,"ignore_cache":false}'), +(36757, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:52.691+00', '{"cached":null,"ignore_cache":false}'), +(36758, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:52.698+00', '{"cached":null,"ignore_cache":false}'), +(36759, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:52.7+00', '{"cached":null,"ignore_cache":false}'), +(36760, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:53.704+00', '{"cached":null,"ignore_cache":false}'), +(36761, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 01:43:53.711+00', '{"cached":null,"ignore_cache":false}'), +(36762, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:38.7+00', '{"cached":null,"ignore_cache":false}'), +(36763, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:39.207+00', '{"cached":null,"ignore_cache":false}'), +(36764, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:39.323+00', '{"cached":null,"ignore_cache":false}'), +(36765, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:39.337+00', '{"cached":null,"ignore_cache":false}'), +(36766, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:39.554+00', '{"cached":null,"ignore_cache":false}'), +(36767, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:39.557+00', '{"cached":null,"ignore_cache":false}'), +(36768, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:39.643+00', '{"cached":null,"ignore_cache":false}'), +(36769, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-16 02:34:39.662+00', '{"cached":null,"ignore_cache":false}'), +(36770, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:07.547+00', '{"cached":null,"ignore_cache":false}'), +(36771, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:08.452+00', '{"cached":null,"ignore_cache":false}'), +(36772, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:08.457+00', '{"cached":null,"ignore_cache":false}'), +(36773, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:08.462+00', '{"cached":null,"ignore_cache":false}'), +(36774, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:08.496+00', '{"cached":null,"ignore_cache":false}'), +(36775, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:08.517+00', '{"cached":null,"ignore_cache":false}'), +(36776, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:08.54+00', '{"cached":null,"ignore_cache":false}'), +(36777, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-16 07:29:08.584+00', '{"cached":null,"ignore_cache":false}'), +(36778, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:42.644+00', '{"cached":null,"ignore_cache":false}'), +(36779, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:42.728+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36780, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:42.731+00', '{"cached":null,"ignore_cache":false}'), +(36781, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:43.254+00', '{"cached":null,"ignore_cache":false}'), +(36782, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:43.337+00', '{"cached":null,"ignore_cache":false}'), +(36783, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:43.432+00', '{"cached":null,"ignore_cache":false}'), +(36784, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:43.434+00', '{"cached":null,"ignore_cache":false}'), +(36785, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:43.55+00', '{"cached":null,"ignore_cache":false}'), +(36786, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:43.593+00', '{"cached":null,"ignore_cache":false}'), +(36787, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:45.494+00', '{"cached":null,"ignore_cache":false}'), +(36788, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:45.534+00', '{"cached":null,"ignore_cache":false}'), +(36789, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:45.72+00', '{"cached":null,"ignore_cache":false}'), +(36790, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 08:40:45.744+00', '{"cached":null,"ignore_cache":false}'), +(36791, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.299+00', '{"cached":null,"ignore_cache":false}'), +(36792, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.376+00', '{"cached":null,"ignore_cache":false}'), +(36793, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.377+00', '{"cached":null,"ignore_cache":false}'), +(36794, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.417+00', '{"cached":null,"ignore_cache":false}'), +(36795, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.456+00', '{"cached":null,"ignore_cache":false}'), +(36796, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.472+00', '{"cached":null,"ignore_cache":false}'), +(36797, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.652+00', '{"cached":null,"ignore_cache":false}'), +(36798, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:05.839+00', '{"cached":null,"ignore_cache":false}'), +(36799, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:06.316+00', '{"cached":null,"ignore_cache":false}'), +(36800, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:06.398+00', '{"cached":null,"ignore_cache":false}'), +(36801, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:09.113+00', '{"cached":null,"ignore_cache":false}'), +(36802, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:09.135+00', '{"cached":null,"ignore_cache":false}'), +(36803, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:09.335+00', '{"cached":null,"ignore_cache":false}'), +(36804, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 15:24:09.804+00', '{"cached":null,"ignore_cache":false}'), +(36805, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:10.55+00', '{"cached":null,"ignore_cache":false}'), +(36806, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:10.585+00', '{"cached":null,"ignore_cache":false}'), +(36807, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:10.626+00', '{"cached":null,"ignore_cache":false}'), +(36808, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:10.833+00', '{"cached":null,"ignore_cache":false}'), +(36809, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:10.913+00', '{"cached":null,"ignore_cache":false}'), +(36810, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:12.235+00', '{"cached":null,"ignore_cache":false}'), +(36811, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 15:29:12.31+00', '{"cached":null,"ignore_cache":false}'), +(36812, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:25.901+00', '{"cached":null,"ignore_cache":false}'), +(36813, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:25.914+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36814, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:25.962+00', '{"cached":null,"ignore_cache":false}'), +(36815, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:26.084+00', '{"cached":null,"ignore_cache":false}'), +(36816, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:26.54+00', '{"cached":null,"ignore_cache":false}'), +(36817, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:26.593+00', '{"cached":null,"ignore_cache":false}'), +(36818, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:26.686+00', '{"cached":null,"ignore_cache":false}'), +(36819, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:26.69+00', '{"cached":null,"ignore_cache":false}'), +(36820, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:26.845+00', '{"cached":null,"ignore_cache":false}'), +(36821, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:26.854+00', '{"cached":null,"ignore_cache":false}'), +(36822, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:29.487+00', '{"cached":null,"ignore_cache":false}'), +(36823, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:29.504+00', '{"cached":null,"ignore_cache":false}'), +(36824, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:29.539+00', '{"cached":null,"ignore_cache":false}'), +(36825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 15:32:29.586+00', '{"cached":null,"ignore_cache":false}'), +(36826, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:49.228+00', '{"cached":null,"ignore_cache":false}'), +(36827, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:49.251+00', '{"cached":null,"ignore_cache":false}'), +(36828, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:49.86+00', '{"cached":null,"ignore_cache":false}'), +(36829, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:49.947+00', '{"cached":null,"ignore_cache":false}'), +(36830, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:50.153+00', '{"cached":null,"ignore_cache":false}'), +(36831, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:52.064+00', '{"cached":null,"ignore_cache":false}'), +(36832, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-16 15:37:52.096+00', '{"cached":null,"ignore_cache":false}'), +(36833, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:55.189+00', '{"cached":null,"ignore_cache":null}'), +(36834, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:59.352+00', '{"cached":null,"ignore_cache":false}'), +(36835, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:59.396+00', '{"cached":null,"ignore_cache":false}'), +(36836, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:59.612+00', '{"cached":null,"ignore_cache":false}'), +(36837, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:59.62+00', '{"cached":null,"ignore_cache":false}'), +(36838, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-18 14:06:59.622+00', '{"cached":null,"ignore_cache":false}'), +(36839, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:00.265+00', '{"cached":null,"ignore_cache":false}'), +(36840, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:00.319+00', '{"cached":null,"ignore_cache":false}'), +(36841, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:12.196+00', '{"cached":null,"ignore_cache":null}'), +(36842, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.25+00', '{"cached":null,"ignore_cache":false}'), +(36843, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.426+00', '{"cached":null,"ignore_cache":false}'), +(36844, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.639+00', '{"cached":null,"ignore_cache":false}'), +(36845, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.65+00', '{"cached":null,"ignore_cache":false}'), +(36846, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.727+00', '{"cached":null,"ignore_cache":false}'), +(36847, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.796+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36848, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.845+00', '{"cached":null,"ignore_cache":false}'), +(36849, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-18 14:07:16.944+00', '{"cached":null,"ignore_cache":false}'), +(36850, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:51.539+00', '{"cached":null,"ignore_cache":false}'), +(36851, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:51.583+00', '{"cached":null,"ignore_cache":false}'), +(36852, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:54.51+00', '{"cached":null,"ignore_cache":false}'), +(36853, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:54.832+00', '{"cached":null,"ignore_cache":false}'), +(36854, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:54.887+00', '{"cached":null,"ignore_cache":false}'), +(36855, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:55.162+00', '{"cached":null,"ignore_cache":false}'), +(36856, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:56.262+00', '{"cached":null,"ignore_cache":false}'), +(36857, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:56.439+00', '{"cached":null,"ignore_cache":false}'), +(36858, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:56.465+00', '{"cached":null,"ignore_cache":false}'), +(36859, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:56.5+00', '{"cached":null,"ignore_cache":false}'), +(36860, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.134+00', '{"cached":null,"ignore_cache":false}'), +(36861, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.212+00', '{"cached":null,"ignore_cache":false}'), +(36862, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.214+00', '{"cached":null,"ignore_cache":false}'), +(36863, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.216+00', '{"cached":null,"ignore_cache":false}'), +(36864, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.225+00', '{"cached":null,"ignore_cache":false}'), +(36865, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.229+00', '{"cached":null,"ignore_cache":false}'), +(36866, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.369+00', '{"cached":null,"ignore_cache":false}'), +(36867, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.408+00', '{"cached":null,"ignore_cache":false}'), +(36868, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.425+00', '{"cached":null,"ignore_cache":false}'), +(36869, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.432+00', '{"cached":null,"ignore_cache":false}'), +(36870, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.434+00', '{"cached":null,"ignore_cache":false}'), +(36871, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.444+00', '{"cached":null,"ignore_cache":false}'), +(36872, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.49+00', '{"cached":null,"ignore_cache":false}'), +(36873, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.497+00', '{"cached":null,"ignore_cache":false}'), +(36874, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.504+00', '{"cached":null,"ignore_cache":false}'), +(36875, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:57.512+00', '{"cached":null,"ignore_cache":false}'), +(36876, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:59.41+00', '{"cached":null,"ignore_cache":false}'), +(36877, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:59.474+00', '{"cached":null,"ignore_cache":false}'), +(36878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:59.533+00', '{"cached":null,"ignore_cache":false}'), +(36879, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:00:59.535+00', '{"cached":null,"ignore_cache":false}'), +(36880, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:57.682+00', '{"cached":null,"ignore_cache":false}'), +(36881, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:57.709+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36882, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:57.775+00', '{"cached":null,"ignore_cache":false}'), +(36883, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:59.778+00', '{"cached":null,"ignore_cache":false}'), +(36884, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:01:59.923+00', '{"cached":null,"ignore_cache":false}'), +(36885, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:03.434+00', '{"cached":null,"ignore_cache":false}'), +(36886, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:03.497+00', '{"cached":null,"ignore_cache":false}'), +(36887, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:09.777+00', '{"cached":null,"ignore_cache":false}'), +(36888, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:10.242+00', '{"cached":null,"ignore_cache":false}'), +(36889, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:10.695+00', '{"cached":null,"ignore_cache":false}'), +(36890, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:10.807+00', '{"cached":null,"ignore_cache":false}'), +(36891, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:10.897+00', '{"cached":null,"ignore_cache":false}'), +(36892, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:10.955+00', '{"cached":null,"ignore_cache":false}'), +(36893, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:02:11.286+00', '{"cached":null,"ignore_cache":false}'), +(36894, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:47.508+00', '{"cached":null,"ignore_cache":false}'), +(36895, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:48.974+00', '{"cached":null,"ignore_cache":false}'), +(36896, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:49.038+00', '{"cached":null,"ignore_cache":false}'), +(36897, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:49.145+00', '{"cached":null,"ignore_cache":false}'), +(36898, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.426+00', '{"cached":null,"ignore_cache":false}'), +(36899, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.486+00', '{"cached":null,"ignore_cache":false}'), +(36900, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.625+00', '{"cached":null,"ignore_cache":false}'), +(36901, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.762+00', '{"cached":null,"ignore_cache":false}'), +(36902, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.794+00', '{"cached":null,"ignore_cache":false}'), +(36903, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.845+00', '{"cached":null,"ignore_cache":false}'), +(36904, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.896+00', '{"cached":null,"ignore_cache":false}'), +(36905, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.948+00', '{"cached":null,"ignore_cache":false}'), +(36906, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:50.968+00', '{"cached":null,"ignore_cache":false}'), +(36907, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:52.668+00', '{"cached":null,"ignore_cache":false}'), +(36908, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:05:52.73+00', '{"cached":null,"ignore_cache":false}'), +(36909, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:43.648+00', '{"cached":null,"ignore_cache":false}'), +(36910, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:45.481+00', '{"cached":null,"ignore_cache":false}'), +(36911, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:45.634+00', '{"cached":null,"ignore_cache":false}'), +(36912, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:45.775+00', '{"cached":null,"ignore_cache":false}'), +(36913, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:45.841+00', '{"cached":null,"ignore_cache":false}'), +(36914, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:45.843+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36915, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:45.846+00', '{"cached":null,"ignore_cache":false}'), +(36916, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:10:45.904+00', '{"cached":null,"ignore_cache":false}'), +(36917, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.691+00', '{"cached":null,"ignore_cache":false}'), +(36918, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.696+00', '{"cached":null,"ignore_cache":false}'), +(36919, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:06.865+00', '{"cached":null,"ignore_cache":false}'), +(36920, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:07+00', '{"cached":null,"ignore_cache":false}'), +(36921, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:07.032+00', '{"cached":null,"ignore_cache":false}'), +(36922, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:08.35+00', '{"cached":null,"ignore_cache":false}'), +(36923, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:11:08.426+00', '{"cached":null,"ignore_cache":false}'), +(36924, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:39.78+00', '{"cached":null,"ignore_cache":false}'), +(36925, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:41.733+00', '{"cached":null,"ignore_cache":false}'), +(36926, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:42.407+00', '{"cached":null,"ignore_cache":false}'), +(36927, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:42.425+00', '{"cached":null,"ignore_cache":false}'), +(36928, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:42.47+00', '{"cached":null,"ignore_cache":false}'), +(36929, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:42.524+00', '{"cached":null,"ignore_cache":false}'), +(36930, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:42.555+00', '{"cached":null,"ignore_cache":false}'), +(36931, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:15:42.557+00', '{"cached":null,"ignore_cache":false}'), +(36932, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:09.527+00', '{"cached":null,"ignore_cache":false}'), +(36933, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:09.558+00', '{"cached":null,"ignore_cache":false}'), +(36934, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:09.694+00', '{"cached":null,"ignore_cache":false}'), +(36935, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:09.898+00', '{"cached":null,"ignore_cache":false}'), +(36936, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:09.902+00', '{"cached":null,"ignore_cache":false}'), +(36937, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:10.636+00', '{"cached":null,"ignore_cache":false}'), +(36938, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:16:10.7+00', '{"cached":null,"ignore_cache":false}'), +(36939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:40.525+00', '{"cached":null,"ignore_cache":false}'), +(36940, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:42.736+00', '{"cached":null,"ignore_cache":false}'), +(36941, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:42.849+00', '{"cached":null,"ignore_cache":false}'), +(36942, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:42.874+00', '{"cached":null,"ignore_cache":false}'), +(36943, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:42.938+00', '{"cached":null,"ignore_cache":false}'), +(36944, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:43.041+00', '{"cached":null,"ignore_cache":false}'), +(36945, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:43.06+00', '{"cached":null,"ignore_cache":false}'), +(36946, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:20:43.098+00', '{"cached":null,"ignore_cache":false}'), +(36947, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:26.695+00', '{"cached":null,"ignore_cache":false}'), +(36948, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:26.714+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36949, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:27.314+00', '{"cached":null,"ignore_cache":false}'), +(36950, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:27.378+00', '{"cached":null,"ignore_cache":false}'), +(36951, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:27.38+00', '{"cached":null,"ignore_cache":false}'), +(36952, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:29.386+00', '{"cached":null,"ignore_cache":false}'), +(36953, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:21:29.418+00', '{"cached":null,"ignore_cache":false}'), +(36954, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:12.607+00', '{"cached":null,"ignore_cache":false}'), +(36955, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:13.484+00', '{"cached":null,"ignore_cache":false}'), +(36956, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:13.604+00', '{"cached":null,"ignore_cache":false}'), +(36957, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:13.607+00', '{"cached":null,"ignore_cache":false}'), +(36958, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:13.776+00', '{"cached":null,"ignore_cache":false}'), +(36959, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:13.806+00', '{"cached":null,"ignore_cache":false}'), +(36960, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:13.861+00', '{"cached":null,"ignore_cache":false}'), +(36961, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:27:13.893+00', '{"cached":null,"ignore_cache":false}'), +(36962, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:07.462+00', '{"cached":null,"ignore_cache":false}'), +(36963, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:07.478+00', '{"cached":null,"ignore_cache":false}'), +(36964, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:08.09+00', '{"cached":null,"ignore_cache":false}'), +(36965, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:08.166+00', '{"cached":null,"ignore_cache":false}'), +(36966, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:08.212+00', '{"cached":null,"ignore_cache":false}'), +(36967, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:09.376+00', '{"cached":null,"ignore_cache":false}'), +(36968, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:28:09.403+00', '{"cached":null,"ignore_cache":false}'), +(36969, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:22.929+00', '{"cached":null,"ignore_cache":false}'), +(36970, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:24.491+00', '{"cached":null,"ignore_cache":false}'), +(36971, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:24.636+00', '{"cached":null,"ignore_cache":false}'), +(36972, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:24.656+00', '{"cached":null,"ignore_cache":false}'), +(36973, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:24.841+00', '{"cached":null,"ignore_cache":false}'), +(36974, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:24.861+00', '{"cached":null,"ignore_cache":false}'), +(36975, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:24.976+00', '{"cached":null,"ignore_cache":false}'), +(36976, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:32:24.978+00', '{"cached":null,"ignore_cache":false}'), +(36977, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:35.098+00', '{"cached":null,"ignore_cache":false}'), +(36978, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:35.101+00', '{"cached":null,"ignore_cache":false}'), +(36979, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:35.93+00', '{"cached":null,"ignore_cache":false}'), +(36980, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:35.953+00', '{"cached":null,"ignore_cache":false}'), +(36981, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:35.963+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(36982, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:37.061+00', '{"cached":null,"ignore_cache":false}'), +(36983, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:33:37.082+00', '{"cached":null,"ignore_cache":false}'), +(36984, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:25.672+00', '{"cached":null,"ignore_cache":false}'), +(36985, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:27.112+00', '{"cached":null,"ignore_cache":false}'), +(36986, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:27.476+00', '{"cached":null,"ignore_cache":false}'), +(36987, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:27.522+00', '{"cached":null,"ignore_cache":false}'), +(36988, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:27.642+00', '{"cached":null,"ignore_cache":false}'), +(36989, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:27.668+00', '{"cached":null,"ignore_cache":false}'), +(36990, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:27.766+00', '{"cached":null,"ignore_cache":false}'), +(36991, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:37:27.786+00', '{"cached":null,"ignore_cache":false}'), +(36992, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:35.961+00', '{"cached":null,"ignore_cache":false}'), +(36993, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:36.116+00', '{"cached":null,"ignore_cache":false}'), +(36994, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:36.194+00', '{"cached":null,"ignore_cache":false}'), +(36995, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:36.28+00', '{"cached":null,"ignore_cache":false}'), +(36996, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:36.346+00', '{"cached":null,"ignore_cache":false}'), +(36997, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:37.466+00', '{"cached":null,"ignore_cache":false}'), +(36998, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:38:37.528+00', '{"cached":null,"ignore_cache":false}'), +(36999, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:25.428+00', '{"cached":null,"ignore_cache":false}'), +(37000, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:26.297+00', '{"cached":null,"ignore_cache":false}'), +(37001, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:26.439+00', '{"cached":null,"ignore_cache":false}'), +(37002, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:26.451+00', '{"cached":null,"ignore_cache":false}'), +(37003, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:26.526+00', '{"cached":null,"ignore_cache":false}'), +(37004, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:26.578+00', '{"cached":null,"ignore_cache":false}'), +(37005, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:26.596+00', '{"cached":null,"ignore_cache":false}'), +(37006, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:42:26.649+00', '{"cached":null,"ignore_cache":false}'), +(37007, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.916+00', '{"cached":null,"ignore_cache":false}'), +(37008, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:40.973+00', '{"cached":null,"ignore_cache":false}'), +(37009, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:41.161+00', '{"cached":null,"ignore_cache":false}'), +(37010, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:41.234+00', '{"cached":null,"ignore_cache":false}'), +(37011, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:41.285+00', '{"cached":null,"ignore_cache":false}'), +(37012, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:42.056+00', '{"cached":null,"ignore_cache":false}'), +(37013, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:43:42.09+00', '{"cached":null,"ignore_cache":false}'), +(37014, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:26.214+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37015, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:27.105+00', '{"cached":null,"ignore_cache":false}'), +(37016, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:27.532+00', '{"cached":null,"ignore_cache":false}'), +(37017, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:27.534+00', '{"cached":null,"ignore_cache":false}'), +(37018, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:27.647+00', '{"cached":null,"ignore_cache":false}'), +(37019, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:27.678+00', '{"cached":null,"ignore_cache":false}'), +(37020, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:27.735+00', '{"cached":null,"ignore_cache":false}'), +(37021, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:47:27.778+00', '{"cached":null,"ignore_cache":false}'), +(37022, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.86+00', '{"cached":null,"ignore_cache":false}'), +(37023, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:54.886+00', '{"cached":null,"ignore_cache":false}'), +(37024, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:55.136+00', '{"cached":null,"ignore_cache":false}'), +(37025, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:55.216+00', '{"cached":null,"ignore_cache":false}'), +(37026, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:55.238+00', '{"cached":null,"ignore_cache":false}'), +(37027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:56.201+00', '{"cached":null,"ignore_cache":false}'), +(37028, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:48:56.22+00', '{"cached":null,"ignore_cache":false}'), +(37029, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:29.113+00', '{"cached":null,"ignore_cache":false}'), +(37030, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:30.42+00', '{"cached":null,"ignore_cache":false}'), +(37031, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:30.455+00', '{"cached":null,"ignore_cache":false}'), +(37032, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:30.5+00', '{"cached":null,"ignore_cache":false}'), +(37033, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:30.788+00', '{"cached":null,"ignore_cache":false}'), +(37034, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:30.827+00', '{"cached":null,"ignore_cache":false}'), +(37035, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:30.834+00', '{"cached":null,"ignore_cache":false}'), +(37036, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:52:30.845+00', '{"cached":null,"ignore_cache":false}'), +(37037, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:07.137+00', '{"cached":null,"ignore_cache":false}'), +(37038, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:07.16+00', '{"cached":null,"ignore_cache":false}'), +(37039, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:07.42+00', '{"cached":null,"ignore_cache":false}'), +(37040, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:07.504+00', '{"cached":null,"ignore_cache":false}'), +(37041, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:07.53+00', '{"cached":null,"ignore_cache":false}'), +(37042, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:08.871+00', '{"cached":null,"ignore_cache":false}'), +(37043, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 15:54:08.938+00', '{"cached":null,"ignore_cache":false}'), +(37044, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:36.913+00', '{"cached":null,"ignore_cache":false}'), +(37045, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:37.595+00', '{"cached":null,"ignore_cache":false}'), +(37046, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:37.75+00', '{"cached":null,"ignore_cache":false}'), +(37047, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:37.778+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37048, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:38.126+00', '{"cached":null,"ignore_cache":false}'), +(37049, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:38.142+00', '{"cached":null,"ignore_cache":false}'), +(37050, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:38.157+00', '{"cached":null,"ignore_cache":false}'), +(37051, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 15:58:38.182+00', '{"cached":null,"ignore_cache":false}'), +(37052, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:18.167+00', '{"cached":null,"ignore_cache":false}'), +(37053, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:18.274+00', '{"cached":null,"ignore_cache":false}'), +(37054, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:18.403+00', '{"cached":null,"ignore_cache":false}'), +(37055, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:18.536+00', '{"cached":null,"ignore_cache":false}'), +(37056, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:18.593+00', '{"cached":null,"ignore_cache":false}'), +(37057, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:19.984+00', '{"cached":null,"ignore_cache":false}'), +(37058, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:00:20.15+00', '{"cached":null,"ignore_cache":false}'), +(37059, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:36.142+00', '{"cached":null,"ignore_cache":false}'), +(37060, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:36.807+00', '{"cached":null,"ignore_cache":false}'), +(37061, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:36.895+00', '{"cached":null,"ignore_cache":false}'), +(37062, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:36.904+00', '{"cached":null,"ignore_cache":false}'), +(37063, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:37.037+00', '{"cached":null,"ignore_cache":false}'), +(37064, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:37.039+00', '{"cached":null,"ignore_cache":false}'), +(37065, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:37.223+00', '{"cached":null,"ignore_cache":false}'), +(37066, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:03:37.227+00', '{"cached":null,"ignore_cache":false}'), +(37067, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:28.108+00', '{"cached":null,"ignore_cache":false}'), +(37068, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:28.125+00', '{"cached":null,"ignore_cache":false}'), +(37069, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:28.39+00', '{"cached":null,"ignore_cache":false}'), +(37070, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:28.426+00', '{"cached":null,"ignore_cache":false}'), +(37071, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:28.434+00', '{"cached":null,"ignore_cache":false}'), +(37072, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:29.289+00', '{"cached":null,"ignore_cache":false}'), +(37073, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:05:29.306+00', '{"cached":null,"ignore_cache":false}'), +(37074, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:34.111+00', '{"cached":null,"ignore_cache":false}'), +(37075, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:35.038+00', '{"cached":null,"ignore_cache":false}'), +(37076, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:35.101+00', '{"cached":null,"ignore_cache":false}'), +(37077, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:35.169+00', '{"cached":null,"ignore_cache":false}'), +(37078, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:35.408+00', '{"cached":null,"ignore_cache":false}'), +(37079, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:35.421+00', '{"cached":null,"ignore_cache":false}'), +(37080, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:35.454+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37081, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:08:35.503+00', '{"cached":null,"ignore_cache":false}'), +(37082, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:41.52+00', '{"cached":null,"ignore_cache":false}'), +(37083, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:41.539+00', '{"cached":null,"ignore_cache":false}'), +(37084, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:41.733+00', '{"cached":null,"ignore_cache":false}'), +(37085, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:41.745+00', '{"cached":null,"ignore_cache":false}'), +(37086, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:41.815+00', '{"cached":null,"ignore_cache":false}'), +(37087, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:42.857+00', '{"cached":null,"ignore_cache":false}'), +(37088, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:10:42.859+00', '{"cached":null,"ignore_cache":false}'), +(37089, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:52.278+00', '{"cached":null,"ignore_cache":false}'), +(37090, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:53.692+00', '{"cached":null,"ignore_cache":false}'), +(37091, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:53.704+00', '{"cached":null,"ignore_cache":false}'), +(37092, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:53.729+00', '{"cached":null,"ignore_cache":false}'), +(37093, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:53.854+00', '{"cached":null,"ignore_cache":false}'), +(37094, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:53.893+00', '{"cached":null,"ignore_cache":false}'), +(37095, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:53.963+00', '{"cached":null,"ignore_cache":false}'), +(37096, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:13:53.985+00', '{"cached":null,"ignore_cache":false}'), +(37097, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:07.396+00', '{"cached":null,"ignore_cache":false}'), +(37098, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:07.423+00', '{"cached":null,"ignore_cache":false}'), +(37099, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:07.763+00', '{"cached":null,"ignore_cache":false}'), +(37100, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:07.807+00', '{"cached":null,"ignore_cache":false}'), +(37101, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:07.821+00', '{"cached":null,"ignore_cache":false}'), +(37102, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:09.613+00', '{"cached":null,"ignore_cache":false}'), +(37103, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:16:09.62+00', '{"cached":null,"ignore_cache":false}'), +(37104, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:34.385+00', '{"cached":null,"ignore_cache":false}'), +(37105, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:35.277+00', '{"cached":null,"ignore_cache":false}'), +(37106, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:35.325+00', '{"cached":null,"ignore_cache":false}'), +(37107, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:35.342+00', '{"cached":null,"ignore_cache":false}'), +(37108, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:35.509+00', '{"cached":null,"ignore_cache":false}'), +(37109, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:35.53+00', '{"cached":null,"ignore_cache":false}'), +(37110, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:35.584+00', '{"cached":null,"ignore_cache":false}'), +(37111, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:19:35.611+00', '{"cached":null,"ignore_cache":false}'), +(37112, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:49.969+00', '{"cached":null,"ignore_cache":false}'), +(37113, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:50.682+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37114, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:50.896+00', '{"cached":null,"ignore_cache":false}'), +(37115, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.135+00', '{"cached":null,"ignore_cache":false}'), +(37116, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.167+00', '{"cached":null,"ignore_cache":false}'), +(37117, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.207+00', '{"cached":null,"ignore_cache":false}'), +(37118, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.249+00', '{"cached":null,"ignore_cache":false}'), +(37119, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.683+00', '{"cached":null,"ignore_cache":false}'), +(37120, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.686+00', '{"cached":null,"ignore_cache":false}'), +(37121, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.688+00', '{"cached":null,"ignore_cache":false}'), +(37122, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:51.978+00', '{"cached":null,"ignore_cache":false}'), +(37123, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.118+00', '{"cached":null,"ignore_cache":false}'), +(37124, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.119+00', '{"cached":null,"ignore_cache":false}'), +(37125, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.12+00', '{"cached":null,"ignore_cache":false}'), +(37126, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.137+00', '{"cached":null,"ignore_cache":false}'), +(37127, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.161+00', '{"cached":null,"ignore_cache":false}'), +(37128, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.162+00', '{"cached":null,"ignore_cache":false}'), +(37129, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.167+00', '{"cached":null,"ignore_cache":false}'), +(37130, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.201+00', '{"cached":null,"ignore_cache":false}'), +(37131, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.205+00', '{"cached":null,"ignore_cache":false}'), +(37132, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.27+00', '{"cached":null,"ignore_cache":false}'), +(37133, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.273+00', '{"cached":null,"ignore_cache":false}'), +(37134, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.275+00', '{"cached":null,"ignore_cache":false}'), +(37135, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.278+00', '{"cached":null,"ignore_cache":false}'), +(37136, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.288+00', '{"cached":null,"ignore_cache":false}'), +(37137, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:52.29+00', '{"cached":null,"ignore_cache":false}'), +(37138, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:55.145+00', '{"cached":null,"ignore_cache":false}'), +(37139, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:55.231+00', '{"cached":null,"ignore_cache":false}'), +(37140, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:55.239+00', '{"cached":null,"ignore_cache":false}'), +(37141, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:24:55.304+00', '{"cached":null,"ignore_cache":false}'), +(37142, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:18.34+00', '{"cached":null,"ignore_cache":false}'), +(37143, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:18.466+00', '{"cached":null,"ignore_cache":false}'), +(37144, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:20.689+00', '{"cached":null,"ignore_cache":false}'), +(37145, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:20.69+00', '{"cached":null,"ignore_cache":false}'), +(37146, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:20.702+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37147, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:20.737+00', '{"cached":null,"ignore_cache":false}'), +(37148, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:20.746+00', '{"cached":null,"ignore_cache":false}'), +(37149, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:21.198+00', '{"cached":null,"ignore_cache":false}'), +(37150, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:21.214+00', '{"cached":null,"ignore_cache":false}'), +(37151, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:21.994+00', '{"cached":null,"ignore_cache":false}'), +(37152, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:22.02+00', '{"cached":null,"ignore_cache":false}'), +(37153, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:22.038+00', '{"cached":null,"ignore_cache":false}'), +(37154, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:24.319+00', '{"cached":null,"ignore_cache":false}'), +(37155, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:24.326+00', '{"cached":null,"ignore_cache":false}'), +(37156, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:24.774+00', '{"cached":null,"ignore_cache":false}'), +(37157, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:24.827+00', '{"cached":null,"ignore_cache":false}'), +(37158, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:24.862+00', '{"cached":null,"ignore_cache":false}'), +(37159, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:24.974+00', '{"cached":null,"ignore_cache":false}'), +(37160, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.029+00', '{"cached":null,"ignore_cache":false}'), +(37161, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.048+00', '{"cached":null,"ignore_cache":false}'), +(37162, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.051+00', '{"cached":null,"ignore_cache":false}'), +(37163, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.103+00', '{"cached":null,"ignore_cache":false}'), +(37164, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.24+00', '{"cached":null,"ignore_cache":false}'), +(37165, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.272+00', '{"cached":null,"ignore_cache":false}'), +(37166, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.428+00', '{"cached":null,"ignore_cache":false}'), +(37167, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:25.586+00', '{"cached":null,"ignore_cache":false}'), +(37168, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:27.954+00', '{"cached":null,"ignore_cache":false}'), +(37169, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:28.054+00', '{"cached":null,"ignore_cache":false}'), +(37170, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:28.091+00', '{"cached":null,"ignore_cache":false}'), +(37171, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:40:28.226+00', '{"cached":null,"ignore_cache":false}'), +(37172, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:15.516+00', '{"cached":null,"ignore_cache":false}'), +(37173, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:16.18+00', '{"cached":null,"ignore_cache":false}'), +(37174, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:16.34+00', '{"cached":null,"ignore_cache":false}'), +(37175, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:16.407+00', '{"cached":null,"ignore_cache":false}'), +(37176, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:16.488+00', '{"cached":null,"ignore_cache":false}'), +(37177, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:16.522+00', '{"cached":null,"ignore_cache":false}'), +(37178, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:17.818+00', '{"cached":null,"ignore_cache":false}'), +(37179, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:17.975+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37180, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:18.04+00', '{"cached":null,"ignore_cache":false}'), +(37181, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:18.083+00', '{"cached":null,"ignore_cache":false}'), +(37182, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:18.122+00', '{"cached":null,"ignore_cache":false}'), +(37183, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:18.163+00', '{"cached":null,"ignore_cache":false}'), +(37184, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:18.277+00', '{"cached":null,"ignore_cache":false}'), +(37185, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:20.041+00', '{"cached":null,"ignore_cache":false}'), +(37186, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:45:20.271+00', '{"cached":null,"ignore_cache":false}'), +(37187, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:11.635+00', '{"cached":null,"ignore_cache":false}'), +(37188, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:11.832+00', '{"cached":null,"ignore_cache":false}'), +(37189, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:12.034+00', '{"cached":null,"ignore_cache":false}'), +(37190, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:12.036+00', '{"cached":null,"ignore_cache":false}'), +(37191, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:12.044+00', '{"cached":null,"ignore_cache":false}'), +(37192, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:12.162+00', '{"cached":null,"ignore_cache":false}'), +(37193, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:15.355+00', '{"cached":null,"ignore_cache":false}'), +(37194, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:15.456+00', '{"cached":null,"ignore_cache":false}'), +(37195, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:15.49+00', '{"cached":null,"ignore_cache":false}'), +(37196, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:15.497+00', '{"cached":null,"ignore_cache":false}'), +(37197, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:15.56+00', '{"cached":null,"ignore_cache":false}'), +(37198, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:15.565+00', '{"cached":null,"ignore_cache":false}'), +(37199, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:15.588+00', '{"cached":null,"ignore_cache":false}'), +(37200, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:16.853+00', '{"cached":null,"ignore_cache":false}'), +(37201, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:50:16.915+00', '{"cached":null,"ignore_cache":false}'), +(37202, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:15.514+00', '{"cached":null,"ignore_cache":false}'), +(37203, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:16.637+00', '{"cached":null,"ignore_cache":false}'), +(37204, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:16.686+00', '{"cached":null,"ignore_cache":false}'), +(37205, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:16.693+00', '{"cached":null,"ignore_cache":false}'), +(37206, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:16.743+00', '{"cached":null,"ignore_cache":false}'), +(37207, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:16.744+00', '{"cached":null,"ignore_cache":false}'), +(37208, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:17.388+00', '{"cached":null,"ignore_cache":false}'), +(37209, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:17.417+00', '{"cached":null,"ignore_cache":false}'), +(37210, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:17.418+00', '{"cached":null,"ignore_cache":false}'), +(37211, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:17.451+00', '{"cached":null,"ignore_cache":false}'), +(37212, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:17.486+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37213, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:17.512+00', '{"cached":null,"ignore_cache":false}'), +(37214, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:17.532+00', '{"cached":null,"ignore_cache":false}'), +(37215, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:18.866+00', '{"cached":null,"ignore_cache":false}'), +(37216, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:55:18.92+00', '{"cached":null,"ignore_cache":false}'), +(37217, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.12+00', '{"cached":null,"ignore_cache":false}'), +(37218, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.565+00', '{"cached":null,"ignore_cache":false}'), +(37219, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.566+00', '{"cached":null,"ignore_cache":false}'), +(37220, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.57+00', '{"cached":null,"ignore_cache":false}'), +(37221, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.588+00', '{"cached":null,"ignore_cache":false}'), +(37222, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.624+00', '{"cached":null,"ignore_cache":false}'), +(37223, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.635+00', '{"cached":null,"ignore_cache":false}'), +(37224, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.636+00', '{"cached":null,"ignore_cache":false}'), +(37225, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.653+00', '{"cached":null,"ignore_cache":false}'), +(37226, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.666+00', '{"cached":null,"ignore_cache":false}'), +(37227, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.669+00', '{"cached":null,"ignore_cache":false}'), +(37228, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:00.671+00', '{"cached":null,"ignore_cache":false}'), +(37229, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.389+00', '{"cached":null,"ignore_cache":false}'), +(37230, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.429+00', '{"cached":null,"ignore_cache":false}'), +(37231, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.509+00', '{"cached":null,"ignore_cache":false}'), +(37232, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.511+00', '{"cached":null,"ignore_cache":false}'), +(37233, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.714+00', '{"cached":null,"ignore_cache":false}'), +(37234, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.761+00', '{"cached":null,"ignore_cache":false}'), +(37235, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.886+00', '{"cached":null,"ignore_cache":false}'), +(37236, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.899+00', '{"cached":null,"ignore_cache":false}'), +(37237, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.904+00', '{"cached":null,"ignore_cache":false}'), +(37238, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:03.997+00', '{"cached":null,"ignore_cache":false}'), +(37239, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:04.011+00', '{"cached":null,"ignore_cache":false}'), +(37240, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:04.151+00', '{"cached":null,"ignore_cache":false}'), +(37241, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:04.211+00', '{"cached":null,"ignore_cache":false}'), +(37242, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:04.239+00', '{"cached":null,"ignore_cache":false}'), +(37243, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:06.909+00', '{"cached":null,"ignore_cache":false}'), +(37244, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:06.923+00', '{"cached":null,"ignore_cache":false}'), +(37245, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:06.991+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37246, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 16:58:07.042+00', '{"cached":null,"ignore_cache":false}'), +(37247, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:01.12+00', '{"cached":null,"ignore_cache":false}'), +(37248, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:02.735+00', '{"cached":null,"ignore_cache":false}'), +(37249, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:02.871+00', '{"cached":null,"ignore_cache":false}'), +(37250, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:03.089+00', '{"cached":null,"ignore_cache":false}'), +(37251, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:03.106+00', '{"cached":null,"ignore_cache":false}'), +(37252, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:03.109+00', '{"cached":null,"ignore_cache":false}'), +(37253, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:04.649+00', '{"cached":null,"ignore_cache":false}'), +(37254, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:04.688+00', '{"cached":null,"ignore_cache":false}'), +(37255, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:04.756+00', '{"cached":null,"ignore_cache":false}'), +(37256, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:04.936+00', '{"cached":null,"ignore_cache":false}'), +(37257, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:04.947+00', '{"cached":null,"ignore_cache":false}'), +(37258, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:04.959+00', '{"cached":null,"ignore_cache":false}'), +(37259, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:05.082+00', '{"cached":null,"ignore_cache":false}'), +(37260, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:07.098+00', '{"cached":null,"ignore_cache":false}'), +(37261, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:03:07.221+00', '{"cached":null,"ignore_cache":false}'), +(37262, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:00.589+00', '{"cached":null,"ignore_cache":false}'), +(37263, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:01.983+00', '{"cached":null,"ignore_cache":false}'), +(37264, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:02.125+00', '{"cached":null,"ignore_cache":false}'), +(37265, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:02.158+00', '{"cached":null,"ignore_cache":false}'), +(37266, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:02.169+00', '{"cached":null,"ignore_cache":false}'), +(37267, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:02.192+00', '{"cached":null,"ignore_cache":false}'), +(37268, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:03.027+00', '{"cached":null,"ignore_cache":false}'), +(37269, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:03.037+00', '{"cached":null,"ignore_cache":false}'), +(37270, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:03.076+00', '{"cached":null,"ignore_cache":false}'), +(37271, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:03.133+00', '{"cached":null,"ignore_cache":false}'), +(37272, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:03.23+00', '{"cached":null,"ignore_cache":false}'), +(37273, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:03.261+00', '{"cached":null,"ignore_cache":false}'), +(37274, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:03.29+00', '{"cached":null,"ignore_cache":false}'), +(37275, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:04.769+00', '{"cached":null,"ignore_cache":false}'), +(37276, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:08:04.783+00', '{"cached":null,"ignore_cache":false}'), +(37277, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:57.551+00', '{"cached":null,"ignore_cache":false}'), +(37278, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:57.81+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37279, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:57.816+00', '{"cached":null,"ignore_cache":false}'), +(37280, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:57.818+00', '{"cached":null,"ignore_cache":false}'), +(37281, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:57.827+00', '{"cached":null,"ignore_cache":false}'), +(37282, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:57.881+00', '{"cached":null,"ignore_cache":false}'), +(37283, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:58.5+00', '{"cached":null,"ignore_cache":false}'), +(37284, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:58.523+00', '{"cached":null,"ignore_cache":false}'), +(37285, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:58.588+00', '{"cached":null,"ignore_cache":false}'), +(37286, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:58.651+00', '{"cached":null,"ignore_cache":false}'), +(37287, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:58.655+00', '{"cached":null,"ignore_cache":false}'), +(37288, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:58.693+00', '{"cached":null,"ignore_cache":false}'), +(37289, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:12:58.695+00', '{"cached":null,"ignore_cache":false}'), +(37290, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:13:00.24+00', '{"cached":null,"ignore_cache":false}'), +(37291, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:13:00.252+00', '{"cached":null,"ignore_cache":false}'), +(37292, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:38.761+00', '{"cached":null,"ignore_cache":false}'), +(37293, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:38.815+00', '{"cached":null,"ignore_cache":false}'), +(37294, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:40.621+00', '{"cached":null,"ignore_cache":false}'), +(37295, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:40.623+00', '{"cached":null,"ignore_cache":false}'), +(37296, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:40.664+00', '{"cached":null,"ignore_cache":false}'), +(37297, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:40.7+00', '{"cached":null,"ignore_cache":false}'), +(37298, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:40.733+00', '{"cached":null,"ignore_cache":false}'), +(37299, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:41.267+00', '{"cached":null,"ignore_cache":false}'), +(37300, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:41.272+00', '{"cached":null,"ignore_cache":false}'), +(37301, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:41.306+00', '{"cached":null,"ignore_cache":false}'), +(37302, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:41.563+00', '{"cached":null,"ignore_cache":false}'), +(37303, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:41.565+00', '{"cached":null,"ignore_cache":false}'), +(37304, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.338+00', '{"cached":null,"ignore_cache":false}'), +(37305, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.341+00', '{"cached":null,"ignore_cache":false}'), +(37306, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.605+00', '{"cached":null,"ignore_cache":false}'), +(37307, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.633+00', '{"cached":null,"ignore_cache":false}'), +(37308, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.667+00', '{"cached":null,"ignore_cache":false}'), +(37309, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.691+00', '{"cached":null,"ignore_cache":false}'), +(37310, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.705+00', '{"cached":null,"ignore_cache":false}'), +(37311, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:44.788+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37312, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:45.006+00', '{"cached":null,"ignore_cache":false}'), +(37313, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:45.029+00', '{"cached":null,"ignore_cache":false}'), +(37314, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:45.278+00', '{"cached":null,"ignore_cache":false}'), +(37315, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:45.317+00', '{"cached":null,"ignore_cache":false}'), +(37316, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:45.361+00', '{"cached":null,"ignore_cache":false}'), +(37317, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:45.454+00', '{"cached":null,"ignore_cache":false}'), +(37318, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:47.369+00', '{"cached":null,"ignore_cache":false}'), +(37319, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:47.396+00', '{"cached":null,"ignore_cache":false}'), +(37320, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:47.407+00', '{"cached":null,"ignore_cache":false}'), +(37321, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:16:47.426+00', '{"cached":null,"ignore_cache":false}'), +(37322, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:58.012+00', '{"cached":null,"ignore_cache":false}'), +(37323, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:59.352+00', '{"cached":null,"ignore_cache":false}'), +(37324, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:59.393+00', '{"cached":null,"ignore_cache":false}'), +(37325, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:59.401+00', '{"cached":null,"ignore_cache":false}'), +(37326, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:59.405+00', '{"cached":null,"ignore_cache":false}'), +(37327, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:17:59.449+00', '{"cached":null,"ignore_cache":false}'), +(37328, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:00.328+00', '{"cached":null,"ignore_cache":false}'), +(37329, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:00.34+00', '{"cached":null,"ignore_cache":false}'), +(37330, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:00.35+00', '{"cached":null,"ignore_cache":false}'), +(37331, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:00.366+00', '{"cached":null,"ignore_cache":false}'), +(37332, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:00.393+00', '{"cached":null,"ignore_cache":false}'), +(37333, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:00.413+00', '{"cached":null,"ignore_cache":false}'), +(37334, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:00.49+00', '{"cached":null,"ignore_cache":false}'), +(37335, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:01.412+00', '{"cached":null,"ignore_cache":false}'), +(37336, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:18:01.423+00', '{"cached":null,"ignore_cache":false}'), +(37337, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:23.269+00', '{"cached":null,"ignore_cache":false}'), +(37338, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:23.378+00', '{"cached":null,"ignore_cache":false}'), +(37339, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:24.665+00', '{"cached":null,"ignore_cache":false}'), +(37340, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:24.678+00', '{"cached":null,"ignore_cache":false}'), +(37341, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:24.682+00', '{"cached":null,"ignore_cache":false}'), +(37342, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:24.703+00', '{"cached":null,"ignore_cache":false}'), +(37343, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:24.75+00', '{"cached":null,"ignore_cache":false}'), +(37344, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:24.963+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:24.97+00', '{"cached":null,"ignore_cache":false}'), +(37346, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:25.326+00', '{"cached":null,"ignore_cache":false}'), +(37347, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:25.44+00', '{"cached":null,"ignore_cache":false}'), +(37348, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:25.473+00', '{"cached":null,"ignore_cache":false}'), +(37349, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:27.899+00', '{"cached":null,"ignore_cache":false}'), +(37350, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.071+00', '{"cached":null,"ignore_cache":false}'), +(37351, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.122+00', '{"cached":null,"ignore_cache":false}'), +(37352, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.149+00', '{"cached":null,"ignore_cache":false}'), +(37353, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.175+00', '{"cached":null,"ignore_cache":false}'), +(37354, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.177+00', '{"cached":null,"ignore_cache":false}'), +(37355, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.24+00', '{"cached":null,"ignore_cache":false}'), +(37356, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.324+00', '{"cached":null,"ignore_cache":false}'), +(37357, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.354+00', '{"cached":null,"ignore_cache":false}'), +(37358, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.392+00', '{"cached":null,"ignore_cache":false}'), +(37359, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.395+00', '{"cached":null,"ignore_cache":false}'), +(37360, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.458+00', '{"cached":null,"ignore_cache":false}'), +(37361, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.47+00', '{"cached":null,"ignore_cache":false}'), +(37362, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:28.471+00', '{"cached":null,"ignore_cache":false}'), +(37363, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:30.749+00', '{"cached":null,"ignore_cache":false}'), +(37364, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:30.801+00', '{"cached":null,"ignore_cache":false}'), +(37365, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:30.803+00', '{"cached":null,"ignore_cache":false}'), +(37366, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:31:30.825+00', '{"cached":null,"ignore_cache":false}'), +(37367, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:02.031+00', '{"cached":null,"ignore_cache":false}'), +(37368, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:02.072+00', '{"cached":null,"ignore_cache":false}'), +(37369, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:06.264+00', '{"cached":null,"ignore_cache":false}'), +(37370, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:06.34+00', '{"cached":null,"ignore_cache":false}'), +(37371, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:07.21+00', '{"cached":null,"ignore_cache":false}'), +(37372, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:07.29+00', '{"cached":null,"ignore_cache":false}'), +(37373, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:07.292+00', '{"cached":null,"ignore_cache":false}'), +(37374, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:07.443+00', '{"cached":null,"ignore_cache":false}'), +(37375, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:07.462+00', '{"cached":null,"ignore_cache":false}'), +(37376, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:07.876+00', '{"cached":null,"ignore_cache":false}'), +(37377, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:07.877+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37378, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:08.696+00', '{"cached":null,"ignore_cache":false}'), +(37379, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.486+00', '{"cached":null,"ignore_cache":false}'), +(37380, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.493+00', '{"cached":null,"ignore_cache":false}'), +(37381, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.607+00', '{"cached":null,"ignore_cache":false}'), +(37382, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.757+00', '{"cached":null,"ignore_cache":false}'), +(37383, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.771+00', '{"cached":null,"ignore_cache":false}'), +(37384, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.773+00', '{"cached":null,"ignore_cache":false}'), +(37385, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.871+00', '{"cached":null,"ignore_cache":false}'), +(37386, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.955+00', '{"cached":null,"ignore_cache":false}'), +(37387, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:11.999+00', '{"cached":null,"ignore_cache":false}'), +(37388, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:12.001+00', '{"cached":null,"ignore_cache":false}'), +(37389, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:12.153+00', '{"cached":null,"ignore_cache":false}'), +(37390, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:12.237+00', '{"cached":null,"ignore_cache":false}'), +(37391, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:12.772+00', '{"cached":null,"ignore_cache":false}'), +(37392, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:13.057+00', '{"cached":null,"ignore_cache":false}'), +(37393, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:15.785+00', '{"cached":null,"ignore_cache":false}'), +(37394, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:15.819+00', '{"cached":null,"ignore_cache":false}'), +(37395, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:15.84+00', '{"cached":null,"ignore_cache":false}'), +(37396, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:36:15.874+00', '{"cached":null,"ignore_cache":false}'), +(37397, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:12.739+00', '{"cached":null,"ignore_cache":false}'), +(37398, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:13.022+00', '{"cached":null,"ignore_cache":false}'), +(37399, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:14.428+00', '{"cached":null,"ignore_cache":false}'), +(37400, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:14.607+00', '{"cached":null,"ignore_cache":false}'), +(37401, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:14.63+00', '{"cached":null,"ignore_cache":false}'), +(37402, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:14.663+00', '{"cached":null,"ignore_cache":false}'), +(37403, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:15.3+00', '{"cached":null,"ignore_cache":false}'), +(37404, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:15.503+00', '{"cached":null,"ignore_cache":false}'), +(37405, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:15.504+00', '{"cached":null,"ignore_cache":false}'), +(37406, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:15.509+00', '{"cached":null,"ignore_cache":false}'), +(37407, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:15.511+00', '{"cached":null,"ignore_cache":false}'), +(37408, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:15.517+00', '{"cached":null,"ignore_cache":false}'), +(37409, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:17.926+00', '{"cached":null,"ignore_cache":false}'), +(37410, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:17.928+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37411, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:17.959+00', '{"cached":null,"ignore_cache":false}'), +(37412, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.089+00', '{"cached":null,"ignore_cache":false}'), +(37413, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.105+00', '{"cached":null,"ignore_cache":false}'), +(37414, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.122+00', '{"cached":null,"ignore_cache":false}'), +(37415, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.18+00', '{"cached":null,"ignore_cache":false}'), +(37416, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.326+00', '{"cached":null,"ignore_cache":false}'), +(37417, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.358+00', '{"cached":null,"ignore_cache":false}'), +(37418, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.43+00', '{"cached":null,"ignore_cache":false}'), +(37419, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.527+00', '{"cached":null,"ignore_cache":false}'), +(37420, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.546+00', '{"cached":null,"ignore_cache":false}'), +(37421, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.87+00', '{"cached":null,"ignore_cache":false}'), +(37422, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:18.93+00', '{"cached":null,"ignore_cache":false}'), +(37423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:21.457+00', '{"cached":null,"ignore_cache":false}'), +(37424, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:21.563+00', '{"cached":null,"ignore_cache":false}'), +(37425, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:21.688+00', '{"cached":null,"ignore_cache":false}'), +(37426, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:38:21.747+00', '{"cached":null,"ignore_cache":false}'), +(37427, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:26.526+00', '{"cached":null,"ignore_cache":false}'), +(37428, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:26.558+00', '{"cached":null,"ignore_cache":false}'), +(37429, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:27.97+00', '{"cached":null,"ignore_cache":false}'), +(37430, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.034+00', '{"cached":null,"ignore_cache":false}'), +(37431, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.035+00', '{"cached":null,"ignore_cache":false}'), +(37432, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.037+00', '{"cached":null,"ignore_cache":false}'), +(37433, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.065+00', '{"cached":null,"ignore_cache":false}'), +(37434, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.115+00', '{"cached":null,"ignore_cache":false}'), +(37435, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.164+00', '{"cached":null,"ignore_cache":false}'), +(37436, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.395+00', '{"cached":null,"ignore_cache":false}'), +(37437, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.416+00', '{"cached":null,"ignore_cache":false}'), +(37438, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:28.427+00', '{"cached":null,"ignore_cache":false}'), +(37439, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.236+00', '{"cached":null,"ignore_cache":false}'), +(37440, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.238+00', '{"cached":null,"ignore_cache":false}'), +(37441, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.373+00', '{"cached":null,"ignore_cache":false}'), +(37442, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.385+00', '{"cached":null,"ignore_cache":false}'), +(37443, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.465+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37444, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.567+00', '{"cached":null,"ignore_cache":false}'), +(37445, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.825+00', '{"cached":null,"ignore_cache":false}'), +(37446, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.877+00', '{"cached":null,"ignore_cache":false}'), +(37447, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.92+00', '{"cached":null,"ignore_cache":false}'), +(37448, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:32.973+00', '{"cached":null,"ignore_cache":false}'), +(37449, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:33.152+00', '{"cached":null,"ignore_cache":false}'), +(37450, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:33.171+00', '{"cached":null,"ignore_cache":false}'), +(37451, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:33.216+00', '{"cached":null,"ignore_cache":false}'), +(37452, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:35.45+00', '{"cached":null,"ignore_cache":false}'), +(37453, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:35.53+00', '{"cached":null,"ignore_cache":false}'), +(37454, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:35.531+00', '{"cached":null,"ignore_cache":false}'), +(37455, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:41:35.544+00', '{"cached":null,"ignore_cache":false}'), +(37456, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:43.688+00', '{"cached":null,"ignore_cache":false}'), +(37457, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:43.714+00', '{"cached":null,"ignore_cache":false}'), +(37458, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:44.805+00', '{"cached":null,"ignore_cache":false}'), +(37459, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:44.837+00', '{"cached":null,"ignore_cache":false}'), +(37460, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:44.944+00', '{"cached":null,"ignore_cache":false}'), +(37461, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:45.503+00', '{"cached":null,"ignore_cache":false}'), +(37462, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:45.565+00', '{"cached":null,"ignore_cache":false}'), +(37463, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:45.574+00', '{"cached":null,"ignore_cache":false}'), +(37464, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:45.575+00', '{"cached":null,"ignore_cache":false}'), +(37465, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:45.603+00', '{"cached":null,"ignore_cache":false}'), +(37466, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:45.619+00', '{"cached":null,"ignore_cache":false}'), +(37467, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:45.631+00', '{"cached":null,"ignore_cache":false}'), +(37468, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.469+00', '{"cached":null,"ignore_cache":false}'), +(37469, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.491+00', '{"cached":null,"ignore_cache":false}'), +(37470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.493+00', '{"cached":null,"ignore_cache":false}'), +(37471, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.562+00', '{"cached":null,"ignore_cache":false}'), +(37472, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.601+00', '{"cached":null,"ignore_cache":false}'), +(37473, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.614+00', '{"cached":null,"ignore_cache":false}'), +(37474, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.651+00', '{"cached":null,"ignore_cache":false}'), +(37475, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.66+00', '{"cached":null,"ignore_cache":false}'), +(37476, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.752+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37477, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.761+00', '{"cached":null,"ignore_cache":false}'), +(37478, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.766+00', '{"cached":null,"ignore_cache":false}'), +(37479, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.782+00', '{"cached":null,"ignore_cache":false}'), +(37480, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.794+00', '{"cached":null,"ignore_cache":false}'), +(37481, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:48.805+00', '{"cached":null,"ignore_cache":false}'), +(37482, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:50.64+00', '{"cached":null,"ignore_cache":false}'), +(37483, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:50.641+00', '{"cached":null,"ignore_cache":false}'), +(37484, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:50.679+00', '{"cached":null,"ignore_cache":false}'), +(37485, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:42:50.7+00', '{"cached":null,"ignore_cache":false}'), +(37486, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:54.348+00', '{"cached":null,"ignore_cache":false}'), +(37487, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:54.491+00', '{"cached":null,"ignore_cache":false}'), +(37488, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:56.687+00', '{"cached":null,"ignore_cache":false}'), +(37489, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:56.771+00', '{"cached":null,"ignore_cache":false}'), +(37490, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:56.969+00', '{"cached":null,"ignore_cache":false}'), +(37491, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:57.078+00', '{"cached":null,"ignore_cache":false}'), +(37492, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:57.248+00', '{"cached":null,"ignore_cache":false}'), +(37493, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:57.342+00', '{"cached":null,"ignore_cache":false}'), +(37494, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:57.443+00', '{"cached":null,"ignore_cache":false}'), +(37495, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:57.474+00', '{"cached":null,"ignore_cache":false}'), +(37496, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:57.499+00', '{"cached":null,"ignore_cache":false}'), +(37497, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:44:57.519+00', '{"cached":null,"ignore_cache":false}'), +(37498, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:03.197+00', '{"cached":null,"ignore_cache":false}'), +(37499, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.124+00', '{"cached":null,"ignore_cache":false}'), +(37500, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.284+00', '{"cached":null,"ignore_cache":false}'), +(37501, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.327+00', '{"cached":null,"ignore_cache":false}'), +(37502, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.447+00', '{"cached":null,"ignore_cache":false}'), +(37503, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.461+00', '{"cached":null,"ignore_cache":false}'), +(37504, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.482+00', '{"cached":null,"ignore_cache":false}'), +(37505, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.504+00', '{"cached":null,"ignore_cache":false}'), +(37506, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.525+00', '{"cached":null,"ignore_cache":false}'), +(37507, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.544+00', '{"cached":null,"ignore_cache":false}'), +(37508, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.554+00', '{"cached":null,"ignore_cache":false}'), +(37509, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.559+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37510, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.588+00', '{"cached":null,"ignore_cache":false}'), +(37511, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.597+00', '{"cached":null,"ignore_cache":false}'), +(37512, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.857+00', '{"cached":null,"ignore_cache":false}'), +(37513, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:06.908+00', '{"cached":null,"ignore_cache":false}'), +(37514, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:45:07.238+00', '{"cached":null,"ignore_cache":false}'), +(37515, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:44.009+00', '{"cached":null,"ignore_cache":false}'), +(37516, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:45.487+00', '{"cached":null,"ignore_cache":false}'), +(37517, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:45.774+00', '{"cached":null,"ignore_cache":false}'), +(37518, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:45.848+00', '{"cached":null,"ignore_cache":false}'), +(37519, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:45.865+00', '{"cached":null,"ignore_cache":false}'), +(37520, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:45.974+00', '{"cached":null,"ignore_cache":false}'), +(37521, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:48.348+00', '{"cached":null,"ignore_cache":false}'), +(37522, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:48.413+00', '{"cached":null,"ignore_cache":false}'), +(37523, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:48.51+00', '{"cached":null,"ignore_cache":false}'), +(37524, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:48.547+00', '{"cached":null,"ignore_cache":false}'), +(37525, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:48.605+00', '{"cached":null,"ignore_cache":false}'), +(37526, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:48.609+00', '{"cached":null,"ignore_cache":false}'), +(37527, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:48.623+00', '{"cached":null,"ignore_cache":false}'), +(37528, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:50.033+00', '{"cached":null,"ignore_cache":false}'), +(37529, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 17:47:50.112+00', '{"cached":null,"ignore_cache":false}'), +(37530, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:09.551+00', '{"cached":null,"ignore_cache":false}'), +(37531, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:09.581+00', '{"cached":null,"ignore_cache":false}'), +(37532, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:12.29+00', '{"cached":null,"ignore_cache":false}'), +(37533, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:12.293+00', '{"cached":null,"ignore_cache":false}'), +(37534, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:12.351+00', '{"cached":null,"ignore_cache":false}'), +(37535, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:12.358+00', '{"cached":null,"ignore_cache":false}'), +(37536, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:12.364+00', '{"cached":null,"ignore_cache":false}'), +(37537, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:13.058+00', '{"cached":null,"ignore_cache":false}'), +(37538, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:13.267+00', '{"cached":null,"ignore_cache":false}'), +(37539, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:13.273+00', '{"cached":null,"ignore_cache":false}'), +(37540, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:13.276+00', '{"cached":null,"ignore_cache":false}'), +(37541, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:13.279+00', '{"cached":null,"ignore_cache":false}'), +(37542, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:15.324+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37543, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:15.341+00', '{"cached":null,"ignore_cache":false}'), +(37544, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:15.792+00', '{"cached":null,"ignore_cache":false}'), +(37545, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:15.867+00', '{"cached":null,"ignore_cache":false}'), +(37546, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:15.869+00', '{"cached":null,"ignore_cache":false}'), +(37547, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:15.87+00', '{"cached":null,"ignore_cache":false}'), +(37548, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:15.937+00', '{"cached":null,"ignore_cache":false}'), +(37549, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:16.29+00', '{"cached":null,"ignore_cache":false}'), +(37550, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:16.318+00', '{"cached":null,"ignore_cache":false}'), +(37551, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:16.319+00', '{"cached":null,"ignore_cache":false}'), +(37552, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:16.337+00', '{"cached":null,"ignore_cache":false}'), +(37553, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:16.339+00', '{"cached":null,"ignore_cache":false}'), +(37554, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:16.342+00', '{"cached":null,"ignore_cache":false}'), +(37555, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:16.343+00', '{"cached":null,"ignore_cache":false}'), +(37556, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:18.227+00', '{"cached":null,"ignore_cache":false}'), +(37557, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:18.229+00', '{"cached":null,"ignore_cache":false}'), +(37558, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:18.275+00', '{"cached":null,"ignore_cache":false}'), +(37559, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:15:18.285+00', '{"cached":null,"ignore_cache":false}'), +(37560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:52.79+00', '{"cached":null,"ignore_cache":false}'), +(37561, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:53.934+00', '{"cached":null,"ignore_cache":false}'), +(37562, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:53.952+00', '{"cached":null,"ignore_cache":false}'), +(37563, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:53.957+00', '{"cached":null,"ignore_cache":false}'), +(37564, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:53.98+00', '{"cached":null,"ignore_cache":false}'), +(37565, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:54.028+00', '{"cached":null,"ignore_cache":false}'), +(37566, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:55.613+00', '{"cached":null,"ignore_cache":false}'), +(37567, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:55.693+00', '{"cached":null,"ignore_cache":false}'), +(37568, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:55.746+00', '{"cached":null,"ignore_cache":false}'), +(37569, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:55.772+00', '{"cached":null,"ignore_cache":false}'), +(37570, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:55.778+00', '{"cached":null,"ignore_cache":false}'), +(37571, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:55.784+00', '{"cached":null,"ignore_cache":false}'), +(37572, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:55.79+00', '{"cached":null,"ignore_cache":false}'), +(37573, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:56.8+00', '{"cached":null,"ignore_cache":false}'), +(37574, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:19:56.811+00', '{"cached":null,"ignore_cache":false}'), +(37575, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:21.616+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37576, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:22.092+00', '{"cached":null,"ignore_cache":false}'), +(37577, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:22.213+00', '{"cached":null,"ignore_cache":false}'), +(37578, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:22.238+00', '{"cached":null,"ignore_cache":false}'), +(37579, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:22.245+00', '{"cached":null,"ignore_cache":false}'), +(37580, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:22.26+00', '{"cached":null,"ignore_cache":false}'), +(37581, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:25.371+00', '{"cached":null,"ignore_cache":false}'), +(37582, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:25.372+00', '{"cached":null,"ignore_cache":false}'), +(37583, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:25.373+00', '{"cached":null,"ignore_cache":false}'), +(37584, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:25.428+00', '{"cached":null,"ignore_cache":false}'), +(37585, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:25.453+00', '{"cached":null,"ignore_cache":false}'), +(37586, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:25.458+00', '{"cached":null,"ignore_cache":false}'), +(37587, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:25.484+00', '{"cached":null,"ignore_cache":false}'), +(37588, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:27.805+00', '{"cached":null,"ignore_cache":false}'), +(37589, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:25:28.198+00', '{"cached":null,"ignore_cache":false}'), +(37590, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:11.271+00', '{"cached":null,"ignore_cache":false}'), +(37591, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:11.342+00', '{"cached":null,"ignore_cache":false}'), +(37592, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:13.714+00', '{"cached":null,"ignore_cache":false}'), +(37593, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.103+00', '{"cached":null,"ignore_cache":false}'), +(37594, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.155+00', '{"cached":null,"ignore_cache":false}'), +(37595, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.664+00', '{"cached":null,"ignore_cache":false}'), +(37596, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:14.794+00', '{"cached":null,"ignore_cache":false}'), +(37597, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:15.614+00', '{"cached":null,"ignore_cache":false}'), +(37598, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:15.794+00', '{"cached":null,"ignore_cache":false}'), +(37599, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:16.423+00', '{"cached":null,"ignore_cache":false}'), +(37600, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:16.43+00', '{"cached":null,"ignore_cache":false}'), +(37601, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:16.911+00', '{"cached":null,"ignore_cache":false}'), +(37602, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:17.042+00', '{"cached":null,"ignore_cache":false}'), +(37603, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:17.561+00', '{"cached":null,"ignore_cache":false}'), +(37604, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:17.778+00', '{"cached":null,"ignore_cache":false}'), +(37605, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:17.779+00', '{"cached":null,"ignore_cache":false}'), +(37606, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:17.78+00', '{"cached":null,"ignore_cache":false}'), +(37607, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:18.946+00', '{"cached":null,"ignore_cache":false}'), +(37608, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:18.952+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37609, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:18.964+00', '{"cached":null,"ignore_cache":false}'), +(37610, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:18.979+00', '{"cached":null,"ignore_cache":false}'), +(37611, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:19.687+00', '{"cached":null,"ignore_cache":false}'), +(37612, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:19.737+00', '{"cached":null,"ignore_cache":false}'), +(37613, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:19.892+00', '{"cached":null,"ignore_cache":false}'), +(37614, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:19.901+00', '{"cached":null,"ignore_cache":false}'), +(37615, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:19.908+00', '{"cached":null,"ignore_cache":false}'), +(37616, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:19.98+00', '{"cached":null,"ignore_cache":false}'), +(37617, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.032+00', '{"cached":null,"ignore_cache":false}'), +(37618, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.113+00', '{"cached":null,"ignore_cache":false}'), +(37619, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.114+00', '{"cached":null,"ignore_cache":false}'), +(37620, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.257+00', '{"cached":null,"ignore_cache":false}'), +(37621, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.269+00', '{"cached":null,"ignore_cache":false}'), +(37622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.301+00', '{"cached":null,"ignore_cache":false}'), +(37623, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.303+00', '{"cached":null,"ignore_cache":false}'), +(37624, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.354+00', '{"cached":null,"ignore_cache":false}'), +(37625, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.355+00', '{"cached":null,"ignore_cache":false}'), +(37626, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.362+00', '{"cached":null,"ignore_cache":false}'), +(37627, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.426+00', '{"cached":null,"ignore_cache":false}'), +(37628, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.461+00', '{"cached":null,"ignore_cache":false}'), +(37629, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:20.655+00', '{"cached":null,"ignore_cache":false}'), +(37630, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:21.104+00', '{"cached":null,"ignore_cache":false}'), +(37631, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:21.105+00', '{"cached":null,"ignore_cache":false}'), +(37632, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:21.106+00', '{"cached":null,"ignore_cache":false}'), +(37633, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:21.116+00', '{"cached":null,"ignore_cache":false}'), +(37634, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:30:21.123+00', '{"cached":null,"ignore_cache":false}'), +(37635, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:09.467+00', '{"cached":null,"ignore_cache":false}'), +(37636, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:10.584+00', '{"cached":null,"ignore_cache":false}'), +(37637, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:10.79+00', '{"cached":null,"ignore_cache":false}'), +(37638, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:10.889+00', '{"cached":null,"ignore_cache":false}'), +(37639, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:10.891+00', '{"cached":null,"ignore_cache":false}'), +(37640, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:10.93+00', '{"cached":null,"ignore_cache":false}'), +(37641, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:11.085+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37642, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:11.223+00', '{"cached":null,"ignore_cache":false}'), +(37643, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:11.246+00', '{"cached":null,"ignore_cache":false}'), +(37644, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:11.268+00', '{"cached":null,"ignore_cache":false}'), +(37645, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:11.27+00', '{"cached":null,"ignore_cache":false}'), +(37646, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:11.332+00', '{"cached":null,"ignore_cache":false}'), +(37647, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:11.346+00', '{"cached":null,"ignore_cache":false}'), +(37648, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:12.63+00', '{"cached":null,"ignore_cache":false}'), +(37649, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:12.937+00', '{"cached":null,"ignore_cache":false}'), +(37650, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.43+00', '{"cached":null,"ignore_cache":false}'), +(37651, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.642+00', '{"cached":null,"ignore_cache":false}'), +(37652, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:13.817+00', '{"cached":null,"ignore_cache":false}'), +(37653, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.172+00', '{"cached":null,"ignore_cache":false}'), +(37654, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:14.249+00', '{"cached":null,"ignore_cache":false}'), +(37655, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.037+00', '{"cached":null,"ignore_cache":false}'), +(37656, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.087+00', '{"cached":null,"ignore_cache":false}'), +(37657, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.225+00', '{"cached":null,"ignore_cache":false}'), +(37658, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.258+00', '{"cached":null,"ignore_cache":false}'), +(37659, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.335+00', '{"cached":null,"ignore_cache":false}'), +(37660, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.392+00', '{"cached":null,"ignore_cache":false}'), +(37661, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.438+00', '{"cached":null,"ignore_cache":false}'), +(37662, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.457+00', '{"cached":null,"ignore_cache":false}'), +(37663, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.551+00', '{"cached":null,"ignore_cache":false}'), +(37664, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:35:15.611+00', '{"cached":null,"ignore_cache":false}'), +(37665, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:07.949+00', '{"cached":null,"ignore_cache":false}'), +(37666, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:08.588+00', '{"cached":null,"ignore_cache":false}'), +(37667, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:08.808+00', '{"cached":null,"ignore_cache":false}'), +(37668, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:08.847+00', '{"cached":null,"ignore_cache":false}'), +(37669, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:08.849+00', '{"cached":null,"ignore_cache":false}'), +(37670, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:08.902+00', '{"cached":null,"ignore_cache":false}'), +(37671, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:09.14+00', '{"cached":null,"ignore_cache":false}'), +(37672, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:09.21+00', '{"cached":null,"ignore_cache":false}'), +(37673, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:09.229+00', '{"cached":null,"ignore_cache":false}'), +(37674, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:09.239+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37675, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:09.298+00', '{"cached":null,"ignore_cache":false}'), +(37676, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:09.329+00', '{"cached":null,"ignore_cache":false}'), +(37677, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:09.824+00', '{"cached":null,"ignore_cache":false}'), +(37678, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:10.801+00', '{"cached":null,"ignore_cache":false}'), +(37679, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:10.832+00', '{"cached":null,"ignore_cache":false}'), +(37680, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:13.061+00', '{"cached":null,"ignore_cache":false}'), +(37681, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:13.216+00', '{"cached":null,"ignore_cache":false}'), +(37682, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:13.471+00', '{"cached":null,"ignore_cache":false}'), +(37683, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:13.571+00', '{"cached":null,"ignore_cache":false}'), +(37684, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:13.895+00', '{"cached":null,"ignore_cache":false}'), +(37685, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.083+00', '{"cached":null,"ignore_cache":false}'), +(37686, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.408+00', '{"cached":null,"ignore_cache":false}'), +(37687, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.659+00', '{"cached":null,"ignore_cache":false}'), +(37688, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.674+00', '{"cached":null,"ignore_cache":false}'), +(37689, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.847+00', '{"cached":null,"ignore_cache":false}'), +(37690, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.936+00', '{"cached":null,"ignore_cache":false}'), +(37691, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:14.981+00', '{"cached":null,"ignore_cache":false}'), +(37692, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:15.133+00', '{"cached":null,"ignore_cache":false}'), +(37693, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:15.151+00', '{"cached":null,"ignore_cache":false}'), +(37694, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:40:15.186+00', '{"cached":null,"ignore_cache":false}'), +(37695, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:09.228+00', '{"cached":null,"ignore_cache":false}'), +(37696, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.06+00', '{"cached":null,"ignore_cache":false}'), +(37697, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.09+00', '{"cached":null,"ignore_cache":false}'), +(37698, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.284+00', '{"cached":null,"ignore_cache":false}'), +(37699, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.297+00', '{"cached":null,"ignore_cache":false}'), +(37700, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.359+00', '{"cached":null,"ignore_cache":false}'), +(37701, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.8+00', '{"cached":null,"ignore_cache":false}'), +(37702, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.822+00', '{"cached":null,"ignore_cache":false}'), +(37703, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.894+00', '{"cached":null,"ignore_cache":false}'), +(37704, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.912+00', '{"cached":null,"ignore_cache":false}'), +(37705, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.955+00', '{"cached":null,"ignore_cache":false}'), +(37706, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:10.979+00', '{"cached":null,"ignore_cache":false}'), +(37707, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:11.128+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37708, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:15.427+00', '{"cached":null,"ignore_cache":false}'), +(37709, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:15.489+00', '{"cached":null,"ignore_cache":false}'), +(37710, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:37.898+00', '{"cached":null,"ignore_cache":false}'), +(37711, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:38.002+00', '{"cached":null,"ignore_cache":false}'), +(37712, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:38.028+00', '{"cached":null,"ignore_cache":false}'), +(37713, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:38.06+00', '{"cached":null,"ignore_cache":false}'), +(37714, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:38.204+00', '{"cached":null,"ignore_cache":false}'), +(37715, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:38.37+00', '{"cached":null,"ignore_cache":false}'), +(37716, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:38.372+00', '{"cached":null,"ignore_cache":false}'), +(37717, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:38.435+00', '{"cached":null,"ignore_cache":false}'), +(37718, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.723+00', '{"cached":null,"ignore_cache":false}'), +(37719, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:48.823+00', '{"cached":null,"ignore_cache":false}'), +(37720, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:49.594+00', '{"cached":null,"ignore_cache":false}'), +(37721, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:49.642+00', '{"cached":null,"ignore_cache":false}'), +(37722, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:49.684+00', '{"cached":null,"ignore_cache":false}'), +(37723, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:49.723+00', '{"cached":null,"ignore_cache":false}'), +(37724, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:49.841+00', '{"cached":null,"ignore_cache":false}'), +(37725, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:45:49.884+00', '{"cached":null,"ignore_cache":false}'), +(37726, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:49:59.233+00', '{"cached":null,"ignore_cache":false}'), +(37727, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:01.158+00', '{"cached":null,"ignore_cache":false}'), +(37728, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:01.178+00', '{"cached":null,"ignore_cache":false}'), +(37729, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:01.271+00', '{"cached":null,"ignore_cache":false}'), +(37730, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:01.831+00', '{"cached":null,"ignore_cache":false}'), +(37731, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:01.996+00', '{"cached":null,"ignore_cache":false}'), +(37732, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:02.59+00', '{"cached":null,"ignore_cache":false}'), +(37733, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:02.617+00', '{"cached":null,"ignore_cache":false}'), +(37734, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:02.638+00', '{"cached":null,"ignore_cache":false}'), +(37735, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:02.641+00', '{"cached":null,"ignore_cache":false}'), +(37736, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:02.655+00', '{"cached":null,"ignore_cache":false}'), +(37737, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:02.659+00', '{"cached":null,"ignore_cache":false}'), +(37738, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:02.691+00', '{"cached":null,"ignore_cache":false}'), +(37739, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:07.325+00', '{"cached":null,"ignore_cache":false}'), +(37740, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:50:07.387+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37741, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:02.054+00', '{"cached":null,"ignore_cache":false}'), +(37742, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:03.112+00', '{"cached":null,"ignore_cache":false}'), +(37743, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:03.13+00', '{"cached":null,"ignore_cache":false}'), +(37744, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:03.247+00', '{"cached":null,"ignore_cache":false}'), +(37745, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:03.977+00', '{"cached":null,"ignore_cache":false}'), +(37746, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:04.14+00', '{"cached":null,"ignore_cache":false}'), +(37747, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:04.95+00', '{"cached":null,"ignore_cache":false}'), +(37748, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:05.07+00', '{"cached":null,"ignore_cache":false}'), +(37749, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:05.116+00', '{"cached":null,"ignore_cache":false}'), +(37750, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:05.163+00', '{"cached":null,"ignore_cache":false}'), +(37751, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:05.176+00', '{"cached":null,"ignore_cache":false}'), +(37752, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:05.222+00', '{"cached":null,"ignore_cache":false}'), +(37753, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:05.735+00', '{"cached":null,"ignore_cache":false}'), +(37754, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:08.6+00', '{"cached":null,"ignore_cache":false}'), +(37755, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 18:55:08.624+00', '{"cached":null,"ignore_cache":false}'), +(37756, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:05.925+00', '{"cached":null,"ignore_cache":false}'), +(37757, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:06.724+00', '{"cached":null,"ignore_cache":false}'), +(37758, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:06.746+00', '{"cached":null,"ignore_cache":false}'), +(37759, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:06.857+00', '{"cached":null,"ignore_cache":false}'), +(37760, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:06.923+00', '{"cached":null,"ignore_cache":false}'), +(37761, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:06.951+00', '{"cached":null,"ignore_cache":false}'), +(37762, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:07.276+00', '{"cached":null,"ignore_cache":false}'), +(37763, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:07.321+00', '{"cached":null,"ignore_cache":false}'), +(37764, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:07.557+00', '{"cached":null,"ignore_cache":false}'), +(37765, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:07.736+00', '{"cached":null,"ignore_cache":false}'), +(37766, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:07.927+00', '{"cached":null,"ignore_cache":false}'), +(37767, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:07.928+00', '{"cached":null,"ignore_cache":false}'), +(37768, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:08.527+00', '{"cached":null,"ignore_cache":false}'), +(37769, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:13.589+00', '{"cached":null,"ignore_cache":false}'), +(37770, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 19:00:13.618+00', '{"cached":null,"ignore_cache":false}'), +(37771, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:15.945+00', '{"cached":null,"ignore_cache":false}'), +(37772, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:17.149+00', '{"cached":null,"ignore_cache":false}'), +(37773, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:17.165+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37774, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:17.252+00', '{"cached":null,"ignore_cache":false}'), +(37775, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:17.361+00', '{"cached":null,"ignore_cache":false}'), +(37776, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:17.427+00', '{"cached":null,"ignore_cache":false}'), +(37777, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:17.943+00', '{"cached":null,"ignore_cache":false}'), +(37778, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:18.071+00', '{"cached":null,"ignore_cache":false}'), +(37779, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:18.141+00', '{"cached":null,"ignore_cache":false}'), +(37780, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:18.164+00', '{"cached":null,"ignore_cache":false}'), +(37781, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:18.167+00', '{"cached":null,"ignore_cache":false}'), +(37782, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:18.223+00', '{"cached":null,"ignore_cache":false}'), +(37783, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:18.581+00', '{"cached":null,"ignore_cache":false}'), +(37784, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:19.937+00', '{"cached":null,"ignore_cache":false}'), +(37785, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 19:07:19.962+00', '{"cached":null,"ignore_cache":false}'), +(37786, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:17.171+00', '{"cached":null,"ignore_cache":false}'), +(37787, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:18.364+00', '{"cached":null,"ignore_cache":false}'), +(37788, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:18.454+00', '{"cached":null,"ignore_cache":false}'), +(37789, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:18.527+00', '{"cached":null,"ignore_cache":false}'), +(37790, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:18.603+00', '{"cached":null,"ignore_cache":false}'), +(37791, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:18.63+00', '{"cached":null,"ignore_cache":false}'), +(37792, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:18.848+00', '{"cached":null,"ignore_cache":false}'), +(37793, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:18.992+00', '{"cached":null,"ignore_cache":false}'), +(37794, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:19.1+00', '{"cached":null,"ignore_cache":false}'), +(37795, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:19.202+00', '{"cached":null,"ignore_cache":false}'), +(37796, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:19.223+00', '{"cached":null,"ignore_cache":false}'), +(37797, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:19.326+00', '{"cached":null,"ignore_cache":false}'), +(37798, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:19.351+00', '{"cached":null,"ignore_cache":false}'), +(37799, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:20.712+00', '{"cached":null,"ignore_cache":false}'), +(37800, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 19:12:20.751+00', '{"cached":null,"ignore_cache":false}'), +(37801, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:21.372+00', '{"cached":null,"ignore_cache":false}'), +(37802, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:21.423+00', '{"cached":null,"ignore_cache":false}'), +(37803, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:22.317+00', '{"cached":null,"ignore_cache":false}'), +(37804, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:22.717+00', '{"cached":null,"ignore_cache":false}'), +(37805, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:22.836+00', '{"cached":null,"ignore_cache":false}'), +(37806, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:23.243+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37807, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:23.291+00', '{"cached":null,"ignore_cache":false}'), +(37808, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:23.3+00', '{"cached":null,"ignore_cache":false}'), +(37809, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:23.312+00', '{"cached":null,"ignore_cache":false}'), +(37810, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:23.341+00', '{"cached":null,"ignore_cache":false}'), +(37811, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:23.439+00', '{"cached":null,"ignore_cache":false}'), +(37812, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.507+00', '{"cached":null,"ignore_cache":false}'), +(37813, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.53+00', '{"cached":null,"ignore_cache":false}'), +(37814, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.619+00', '{"cached":null,"ignore_cache":false}'), +(37815, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.67+00', '{"cached":null,"ignore_cache":false}'), +(37816, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.776+00', '{"cached":null,"ignore_cache":false}'), +(37817, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.818+00', '{"cached":null,"ignore_cache":false}'), +(37818, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.85+00', '{"cached":null,"ignore_cache":false}'), +(37819, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.856+00', '{"cached":null,"ignore_cache":false}'), +(37820, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.894+00', '{"cached":null,"ignore_cache":false}'), +(37821, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.932+00', '{"cached":null,"ignore_cache":false}'), +(37822, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.953+00', '{"cached":null,"ignore_cache":false}'), +(37823, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:24.984+00', '{"cached":null,"ignore_cache":false}'), +(37824, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:25.034+00', '{"cached":null,"ignore_cache":false}'), +(37825, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:25.045+00', '{"cached":null,"ignore_cache":false}'), +(37826, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:25.062+00', '{"cached":null,"ignore_cache":false}'), +(37827, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:27.046+00', '{"cached":null,"ignore_cache":false}'), +(37828, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:27.159+00', '{"cached":null,"ignore_cache":false}'), +(37829, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:27.175+00', '{"cached":null,"ignore_cache":false}'), +(37830, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 19:39:27.177+00', '{"cached":null,"ignore_cache":false}'), +(37831, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:27.816+00', '{"cached":null,"ignore_cache":false}'), +(37832, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:28.492+00', '{"cached":null,"ignore_cache":false}'), +(37833, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:28.512+00', '{"cached":null,"ignore_cache":false}'), +(37834, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:28.534+00', '{"cached":null,"ignore_cache":false}'), +(37835, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:28.598+00', '{"cached":null,"ignore_cache":false}'), +(37836, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:28.754+00', '{"cached":null,"ignore_cache":false}'), +(37837, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:29.034+00', '{"cached":null,"ignore_cache":false}'), +(37838, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:29.131+00', '{"cached":null,"ignore_cache":false}'), +(37839, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:29.151+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37840, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:29.227+00', '{"cached":null,"ignore_cache":false}'), +(37841, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:29.289+00', '{"cached":null,"ignore_cache":false}'), +(37842, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:29.391+00', '{"cached":null,"ignore_cache":false}'), +(37843, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:29.423+00', '{"cached":null,"ignore_cache":false}'), +(37844, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:30.869+00', '{"cached":null,"ignore_cache":false}'), +(37845, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 19:44:30.881+00', '{"cached":null,"ignore_cache":false}'), +(37846, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:54.119+00', '{"cached":null,"ignore_cache":false}'), +(37847, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:54.164+00', '{"cached":null,"ignore_cache":false}'), +(37848, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.057+00', '{"cached":null,"ignore_cache":false}'), +(37849, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.109+00', '{"cached":null,"ignore_cache":false}'), +(37850, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.226+00', '{"cached":null,"ignore_cache":false}'), +(37851, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.521+00', '{"cached":null,"ignore_cache":false}'), +(37852, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.576+00', '{"cached":null,"ignore_cache":false}'), +(37853, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.614+00', '{"cached":null,"ignore_cache":false}'), +(37854, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.628+00', '{"cached":null,"ignore_cache":false}'), +(37855, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.647+00', '{"cached":null,"ignore_cache":false}'), +(37856, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.707+00', '{"cached":null,"ignore_cache":false}'), +(37857, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:56.809+00', '{"cached":null,"ignore_cache":false}'), +(37858, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:57.527+00', '{"cached":null,"ignore_cache":false}'), +(37859, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:57.647+00', '{"cached":null,"ignore_cache":false}'), +(37860, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:57.657+00', '{"cached":null,"ignore_cache":false}'), +(37861, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:57.674+00', '{"cached":null,"ignore_cache":false}'), +(37862, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.032+00', '{"cached":null,"ignore_cache":false}'), +(37863, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.176+00', '{"cached":null,"ignore_cache":false}'), +(37864, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.245+00', '{"cached":null,"ignore_cache":false}'), +(37865, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.249+00', '{"cached":null,"ignore_cache":false}'), +(37866, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.275+00', '{"cached":null,"ignore_cache":false}'), +(37867, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.325+00', '{"cached":null,"ignore_cache":false}'), +(37868, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.373+00', '{"cached":null,"ignore_cache":false}'), +(37869, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.383+00', '{"cached":null,"ignore_cache":false}'), +(37870, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.406+00', '{"cached":null,"ignore_cache":false}'), +(37871, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 20:04:58.532+00', '{"cached":null,"ignore_cache":false}'), +(37872, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 20:05:01.895+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37873, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 20:05:01.918+00', '{"cached":null,"ignore_cache":false}'), +(37874, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 20:05:01.938+00', '{"cached":null,"ignore_cache":false}'), +(37875, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 20:05:01.965+00', '{"cached":null,"ignore_cache":false}'), +(37876, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:14.498+00', '{"cached":null,"ignore_cache":false}'), +(37877, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:14.578+00', '{"cached":null,"ignore_cache":false}'), +(37878, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:16.171+00', '{"cached":null,"ignore_cache":false}'), +(37879, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:16.175+00', '{"cached":null,"ignore_cache":false}'), +(37880, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:16.183+00', '{"cached":null,"ignore_cache":false}'), +(37881, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:16.227+00', '{"cached":null,"ignore_cache":false}'), +(37882, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:16.607+00', '{"cached":null,"ignore_cache":false}'), +(37883, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:16.609+00', '{"cached":null,"ignore_cache":false}'), +(37884, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:18.585+00', '{"cached":null,"ignore_cache":false}'), +(37885, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:18.811+00', '{"cached":null,"ignore_cache":false}'), +(37886, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:18.829+00', '{"cached":null,"ignore_cache":false}'), +(37887, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:18.865+00', '{"cached":null,"ignore_cache":false}'), +(37888, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:19.184+00', '{"cached":null,"ignore_cache":false}'), +(37889, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:19.187+00', '{"cached":null,"ignore_cache":false}'), +(37890, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:19.5+00', '{"cached":null,"ignore_cache":false}'), +(37891, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:19.521+00', '{"cached":null,"ignore_cache":false}'), +(37892, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:19.645+00', '{"cached":null,"ignore_cache":false}'), +(37893, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:19.843+00', '{"cached":null,"ignore_cache":false}'), +(37894, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:19.981+00', '{"cached":null,"ignore_cache":false}'), +(37895, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:20.189+00', '{"cached":null,"ignore_cache":false}'), +(37896, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:20.201+00', '{"cached":null,"ignore_cache":false}'), +(37897, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:20.214+00', '{"cached":null,"ignore_cache":false}'), +(37898, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:20.217+00', '{"cached":null,"ignore_cache":false}'), +(37899, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:20.246+00', '{"cached":null,"ignore_cache":false}'), +(37900, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:20.267+00', '{"cached":null,"ignore_cache":false}'), +(37901, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:20.297+00', '{"cached":null,"ignore_cache":false}'), +(37902, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:22.764+00', '{"cached":null,"ignore_cache":false}'), +(37903, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:22.807+00', '{"cached":null,"ignore_cache":false}'), +(37904, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:22.874+00', '{"cached":null,"ignore_cache":false}'), +(37905, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:22.882+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37906, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:31.729+00', '{"cached":null,"ignore_cache":false}'), +(37907, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:31.739+00', '{"cached":null,"ignore_cache":false}'), +(37908, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:31.798+00', '{"cached":null,"ignore_cache":false}'), +(37909, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:31.987+00', '{"cached":null,"ignore_cache":false}'), +(37910, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:32.081+00', '{"cached":null,"ignore_cache":false}'), +(37911, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:32.491+00', '{"cached":null,"ignore_cache":false}'), +(37912, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 20:06:32.558+00', '{"cached":null,"ignore_cache":false}'), +(37913, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:17.716+00', '{"cached":null,"ignore_cache":false}'), +(37914, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:17.755+00', '{"cached":null,"ignore_cache":false}'), +(37915, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:17.76+00', '{"cached":null,"ignore_cache":false}'), +(37916, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:18.244+00', '{"cached":null,"ignore_cache":false}'), +(37917, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:18.282+00', '{"cached":null,"ignore_cache":false}'), +(37918, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:19.368+00', '{"cached":null,"ignore_cache":false}'), +(37919, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-22 20:11:19.4+00', '{"cached":null,"ignore_cache":false}'), +(37920, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:53.727+00', '{"cached":null,"ignore_cache":null}'), +(37921, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:58.098+00', '{"cached":null,"ignore_cache":false}'), +(37922, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:58.227+00', '{"cached":null,"ignore_cache":false}'), +(37923, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:58.341+00', '{"cached":null,"ignore_cache":false}'), +(37924, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:58.363+00', '{"cached":null,"ignore_cache":false}'), +(37925, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:58.42+00', '{"cached":null,"ignore_cache":false}'), +(37926, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:59.789+00', '{"cached":null,"ignore_cache":false}'), +(37927, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:54:59.818+00', '{"cached":null,"ignore_cache":false}'), +(37928, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:55:42.625+00', '{"cached":null,"ignore_cache":null}'), +(37929, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:55:46.146+00', '{"cached":null,"ignore_cache":false}'), +(37930, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:38.37+00', '{"cached":null,"ignore_cache":null}'), +(37931, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:40.292+00', '{"cached":null,"ignore_cache":false}'), +(37932, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:40.374+00', '{"cached":null,"ignore_cache":false}'), +(37933, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:41.116+00', '{"cached":null,"ignore_cache":false}'), +(37934, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:41.313+00', '{"cached":null,"ignore_cache":false}'), +(37935, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:41.336+00', '{"cached":null,"ignore_cache":false}'), +(37936, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:41.347+00', '{"cached":null,"ignore_cache":false}'), +(37937, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:41.583+00', '{"cached":null,"ignore_cache":false}'), +(37938, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.443+00', '{"cached":null,"ignore_cache":false}'), +(37939, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.743+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37940, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.86+00', '{"cached":null,"ignore_cache":false}'), +(37941, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:49.992+00', '{"cached":null,"ignore_cache":false}'), +(37942, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:50.033+00', '{"cached":null,"ignore_cache":false}'), +(37943, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:50.442+00', '{"cached":null,"ignore_cache":false}'), +(37944, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:50.517+00', '{"cached":null,"ignore_cache":false}'), +(37945, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:56.748+00', '{"cached":null,"ignore_cache":false}'), +(37946, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:57.096+00', '{"cached":null,"ignore_cache":false}'), +(37947, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:57.195+00', '{"cached":null,"ignore_cache":false}'), +(37948, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:57.596+00', '{"cached":null,"ignore_cache":false}'), +(37949, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:57.597+00', '{"cached":null,"ignore_cache":false}'), +(37950, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:57.657+00', '{"cached":null,"ignore_cache":false}'), +(37951, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:56:57.932+00', '{"cached":null,"ignore_cache":false}'), +(37952, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.257+00', '{"cached":null,"ignore_cache":false}'), +(37953, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.445+00', '{"cached":null,"ignore_cache":false}'), +(37954, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.48+00', '{"cached":null,"ignore_cache":false}'), +(37955, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.529+00', '{"cached":null,"ignore_cache":false}'), +(37956, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.543+00', '{"cached":null,"ignore_cache":false}'), +(37957, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.86+00', '{"cached":null,"ignore_cache":false}'), +(37958, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:07.955+00', '{"cached":null,"ignore_cache":false}'), +(37959, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:16.361+00', '{"cached":null,"ignore_cache":false}'), +(37960, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:16.446+00', '{"cached":null,"ignore_cache":false}'), +(37961, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:16.65+00', '{"cached":null,"ignore_cache":false}'), +(37962, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:16.859+00', '{"cached":null,"ignore_cache":false}'), +(37963, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:16.867+00', '{"cached":null,"ignore_cache":false}'), +(37964, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:17.018+00', '{"cached":null,"ignore_cache":false}'), +(37965, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 06:57:17.288+00', '{"cached":null,"ignore_cache":false}'), +(37966, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:48.928+00', '{"cached":null,"ignore_cache":false}'), +(37967, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:48.957+00', '{"cached":null,"ignore_cache":false}'), +(37968, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:48.959+00', '{"cached":null,"ignore_cache":false}'), +(37969, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:49.029+00', '{"cached":null,"ignore_cache":false}'), +(37970, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:49.048+00', '{"cached":null,"ignore_cache":false}'), +(37971, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:50.11+00', '{"cached":null,"ignore_cache":false}'), +(37972, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 07:30:50.155+00', '{"cached":null,"ignore_cache":false}'), +(37973, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:05.559+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(37974, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:09.65+00', '{"cached":null,"ignore_cache":false}'), +(37975, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:10.883+00', '{"cached":null,"ignore_cache":false}'), +(37976, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:11.103+00', '{"cached":null,"ignore_cache":false}'), +(37977, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:11.255+00', '{"cached":null,"ignore_cache":false}'), +(37978, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:11.275+00', '{"cached":null,"ignore_cache":false}'), +(37979, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:11.304+00', '{"cached":null,"ignore_cache":false}'), +(37980, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:11.384+00', '{"cached":null,"ignore_cache":false}'), +(37981, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 07:32:11.414+00', '{"cached":null,"ignore_cache":false}'), +(37982, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 07:33:23.575+00', '{"cached":null,"ignore_cache":null}'), +(37983, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 07:33:24.503+00', '{"cached":null,"ignore_cache":false}'), +(37984, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 07:33:30.154+00', '{"cached":null,"ignore_cache":true}'), +(37985, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:14.681+00', '{"cached":null,"ignore_cache":false}'), +(37986, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:14.975+00', '{"cached":null,"ignore_cache":false}'), +(37987, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:17.407+00', '{"cached":null,"ignore_cache":false}'), +(37988, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:17.412+00', '{"cached":null,"ignore_cache":false}'), +(37989, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:17.616+00', '{"cached":null,"ignore_cache":false}'), +(37990, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:17.629+00', '{"cached":null,"ignore_cache":false}'), +(37991, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:18.181+00', '{"cached":null,"ignore_cache":false}'), +(37992, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:18.447+00', '{"cached":null,"ignore_cache":false}'), +(37993, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:19.072+00', '{"cached":null,"ignore_cache":false}'), +(37994, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:19.158+00', '{"cached":null,"ignore_cache":false}'), +(37995, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:19.183+00', '{"cached":null,"ignore_cache":false}'), +(37996, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:19.261+00', '{"cached":null,"ignore_cache":false}'), +(37997, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:19.945+00', '{"cached":null,"ignore_cache":false}'), +(37998, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.385+00', '{"cached":null,"ignore_cache":false}'), +(37999, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.442+00', '{"cached":null,"ignore_cache":false}'), +(38000, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.711+00', '{"cached":null,"ignore_cache":false}'), +(38001, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.712+00', '{"cached":null,"ignore_cache":false}'), +(38002, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.877+00', '{"cached":null,"ignore_cache":false}'), +(38003, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.878+00', '{"cached":null,"ignore_cache":false}'), +(38004, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.889+00', '{"cached":null,"ignore_cache":false}'), +(38005, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.895+00', '{"cached":null,"ignore_cache":false}'), +(38006, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.896+00', '{"cached":null,"ignore_cache":false}'), +(38007, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.897+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38008, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.898+00', '{"cached":null,"ignore_cache":false}'), +(38009, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.899+00', '{"cached":null,"ignore_cache":false}'), +(38010, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:20.917+00', '{"cached":null,"ignore_cache":false}'), +(38011, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:22.166+00', '{"cached":null,"ignore_cache":false}'), +(38012, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:22.499+00', '{"cached":null,"ignore_cache":false}'), +(38013, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 07:52:22.506+00', '{"cached":null,"ignore_cache":false}'), +(38014, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:04.471+00', '{"cached":null,"ignore_cache":false}'), +(38015, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:05.274+00', '{"cached":null,"ignore_cache":false}'), +(38016, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:05.294+00', '{"cached":null,"ignore_cache":false}'), +(38017, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:05.506+00', '{"cached":null,"ignore_cache":false}'), +(38018, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.384+00', '{"cached":null,"ignore_cache":false}'), +(38019, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.423+00', '{"cached":null,"ignore_cache":false}'), +(38020, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.646+00', '{"cached":null,"ignore_cache":false}'), +(38021, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.668+00', '{"cached":null,"ignore_cache":false}'), +(38022, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.724+00', '{"cached":null,"ignore_cache":false}'), +(38023, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.742+00', '{"cached":null,"ignore_cache":false}'), +(38024, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.781+00', '{"cached":null,"ignore_cache":false}'), +(38025, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:06.842+00', '{"cached":null,"ignore_cache":false}'), +(38026, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:07.34+00', '{"cached":null,"ignore_cache":false}'), +(38027, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:12.005+00', '{"cached":null,"ignore_cache":false}'), +(38028, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 07:58:12.023+00', '{"cached":null,"ignore_cache":false}'), +(38029, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:40.773+00', '{"cached":null,"ignore_cache":false}'), +(38030, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:40.787+00', '{"cached":null,"ignore_cache":false}'), +(38031, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:40.833+00', '{"cached":null,"ignore_cache":false}'), +(38032, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:41.828+00', '{"cached":null,"ignore_cache":false}'), +(38033, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:41.834+00', '{"cached":null,"ignore_cache":false}'), +(38034, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:42.941+00', '{"cached":null,"ignore_cache":false}'), +(38035, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:42.947+00', '{"cached":null,"ignore_cache":false}'), +(38036, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:55.041+00', '{"cached":null,"ignore_cache":false}'), +(38037, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:55.191+00', '{"cached":null,"ignore_cache":false}'), +(38038, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:55.406+00', '{"cached":null,"ignore_cache":false}'), +(38039, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:55.495+00', '{"cached":null,"ignore_cache":false}'), +(38040, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:55.554+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38041, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:55.599+00', '{"cached":null,"ignore_cache":false}'), +(38042, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:00:55.723+00', '{"cached":null,"ignore_cache":false}'), +(38043, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.9+00', '{"cached":null,"ignore_cache":false}'), +(38044, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.929+00', '{"cached":null,"ignore_cache":false}'), +(38045, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:04.936+00', '{"cached":null,"ignore_cache":false}'), +(38046, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:05.086+00', '{"cached":null,"ignore_cache":false}'), +(38047, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:05.388+00', '{"cached":null,"ignore_cache":false}'), +(38048, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:05.463+00', '{"cached":null,"ignore_cache":false}'), +(38049, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:05.512+00', '{"cached":null,"ignore_cache":false}'), +(38050, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:18.222+00', '{"cached":null,"ignore_cache":false}'), +(38051, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:18.281+00', '{"cached":null,"ignore_cache":false}'), +(38052, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:18.284+00', '{"cached":null,"ignore_cache":false}'), +(38053, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:18.295+00', '{"cached":null,"ignore_cache":false}'), +(38054, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:18.423+00', '{"cached":null,"ignore_cache":false}'), +(38055, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:18.682+00', '{"cached":null,"ignore_cache":false}'), +(38056, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:01:18.85+00', '{"cached":null,"ignore_cache":false}'), +(38057, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:37.239+00', '{"cached":null,"ignore_cache":false}'), +(38058, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:37.28+00', '{"cached":null,"ignore_cache":false}'), +(38059, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:38.01+00', '{"cached":null,"ignore_cache":false}'), +(38060, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:38.071+00', '{"cached":null,"ignore_cache":false}'), +(38061, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:38.13+00', '{"cached":null,"ignore_cache":false}'), +(38062, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:39.361+00', '{"cached":null,"ignore_cache":false}'), +(38063, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:02:39.429+00', '{"cached":null,"ignore_cache":false}'), +(38064, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:34.854+00', '{"cached":null,"ignore_cache":false}'), +(38065, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:35.261+00', '{"cached":null,"ignore_cache":false}'), +(38066, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:35.402+00', '{"cached":null,"ignore_cache":false}'), +(38067, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:35.485+00', '{"cached":null,"ignore_cache":false}'), +(38068, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:35.499+00', '{"cached":null,"ignore_cache":false}'), +(38069, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:35.585+00', '{"cached":null,"ignore_cache":false}'), +(38070, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:35.707+00', '{"cached":null,"ignore_cache":false}'), +(38071, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.037+00', '{"cached":null,"ignore_cache":false}'), +(38072, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.107+00', '{"cached":null,"ignore_cache":false}'), +(38073, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.13+00', '{"cached":null,"ignore_cache":false}'), +(38074, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.209+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38075, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.24+00', '{"cached":null,"ignore_cache":false}'), +(38076, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.258+00', '{"cached":null,"ignore_cache":false}'), +(38077, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.354+00', '{"cached":null,"ignore_cache":false}'), +(38078, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:03:36.41+00', '{"cached":null,"ignore_cache":false}'), +(38079, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 08:05:09.985+00', '{"cached":null,"ignore_cache":null}'), +(38080, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 08:05:39.316+00', '{"cached":null,"ignore_cache":null}'), +(38081, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 08:06:00.4+00', '{"cached":null,"ignore_cache":null}'), +(38082, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:08.188+00', '{"cached":null,"ignore_cache":false}'), +(38083, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:09.413+00', '{"cached":null,"ignore_cache":false}'), +(38084, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:09.418+00', '{"cached":null,"ignore_cache":false}'), +(38085, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:09.458+00', '{"cached":null,"ignore_cache":false}'), +(38086, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:10.187+00', '{"cached":null,"ignore_cache":false}'), +(38087, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:10.259+00', '{"cached":null,"ignore_cache":false}'), +(38088, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:10.4+00', '{"cached":null,"ignore_cache":false}'), +(38089, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:10.531+00', '{"cached":null,"ignore_cache":false}'), +(38090, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:10.691+00', '{"cached":null,"ignore_cache":false}'), +(38091, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:10.775+00', '{"cached":null,"ignore_cache":false}'), +(38092, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:10.937+00', '{"cached":null,"ignore_cache":false}'), +(38093, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:11.006+00', '{"cached":null,"ignore_cache":false}'), +(38094, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:11.093+00', '{"cached":null,"ignore_cache":false}'), +(38095, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:12.247+00', '{"cached":null,"ignore_cache":false}'), +(38096, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:09:12.257+00', '{"cached":null,"ignore_cache":false}'), +(38097, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:09.641+00', '{"cached":null,"ignore_cache":false}'), +(38098, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:10.273+00', '{"cached":null,"ignore_cache":false}'), +(38099, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:10.296+00', '{"cached":null,"ignore_cache":false}'), +(38100, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:10.527+00', '{"cached":null,"ignore_cache":false}'), +(38101, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.125+00', '{"cached":null,"ignore_cache":false}'), +(38102, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.131+00', '{"cached":null,"ignore_cache":false}'), +(38103, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.486+00', '{"cached":null,"ignore_cache":false}'), +(38104, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.506+00', '{"cached":null,"ignore_cache":false}'), +(38105, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.557+00', '{"cached":null,"ignore_cache":false}'), +(38106, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.582+00', '{"cached":null,"ignore_cache":false}'), +(38107, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.622+00', '{"cached":null,"ignore_cache":false}'), +(38108, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.625+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38109, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:11.631+00', '{"cached":null,"ignore_cache":false}'), +(38110, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:13.483+00', '{"cached":null,"ignore_cache":false}'), +(38111, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:15:13.532+00', '{"cached":null,"ignore_cache":false}'), +(38112, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:42.781+00', '{"cached":null,"ignore_cache":false}'), +(38113, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:43.587+00', '{"cached":null,"ignore_cache":false}'), +(38114, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:43.695+00', '{"cached":null,"ignore_cache":false}'), +(38115, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:43.736+00', '{"cached":null,"ignore_cache":false}'), +(38116, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.273+00', '{"cached":null,"ignore_cache":false}'), +(38117, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.44+00', '{"cached":null,"ignore_cache":false}'), +(38118, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.59+00', '{"cached":null,"ignore_cache":false}'), +(38119, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.687+00', '{"cached":null,"ignore_cache":false}'), +(38120, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.855+00', '{"cached":null,"ignore_cache":false}'), +(38121, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.894+00', '{"cached":null,"ignore_cache":false}'), +(38122, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.955+00', '{"cached":null,"ignore_cache":false}'), +(38123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:44.991+00', '{"cached":null,"ignore_cache":false}'), +(38124, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:45.042+00', '{"cached":null,"ignore_cache":false}'), +(38125, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:45.918+00', '{"cached":null,"ignore_cache":false}'), +(38126, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:23:45.958+00', '{"cached":null,"ignore_cache":false}'), +(38127, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:02.469+00', '{"cached":null,"ignore_cache":false}'), +(38128, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:03.617+00', '{"cached":null,"ignore_cache":false}'), +(38129, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:03.632+00', '{"cached":null,"ignore_cache":false}'), +(38130, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:03.689+00', '{"cached":null,"ignore_cache":false}'), +(38131, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.342+00', '{"cached":null,"ignore_cache":false}'), +(38132, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.361+00', '{"cached":null,"ignore_cache":false}'), +(38133, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.495+00', '{"cached":null,"ignore_cache":false}'), +(38134, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.539+00', '{"cached":null,"ignore_cache":false}'), +(38135, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.62+00', '{"cached":null,"ignore_cache":false}'), +(38136, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.638+00', '{"cached":null,"ignore_cache":false}'), +(38137, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.696+00', '{"cached":null,"ignore_cache":false}'), +(38138, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.748+00', '{"cached":null,"ignore_cache":false}'), +(38139, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:04.822+00', '{"cached":null,"ignore_cache":false}'), +(38140, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:05.893+00', '{"cached":null,"ignore_cache":false}'), +(38141, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:34:05.937+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38142, 1, 'table', 72, TIMESTAMP WITH TIME ZONE '2023-01-23 08:35:58.191+00', '{"cached":null,"ignore_cache":null}'), +(38143, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:09.396+00', '{"cached":null,"ignore_cache":null}'), +(38144, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:14.242+00', '{"cached":null,"ignore_cache":null}'), +(38145, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:22.006+00', '{"cached":null,"ignore_cache":null}'), +(38146, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 08:36:38.299+00', '{"cached":null,"ignore_cache":null}'), +(38147, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:01.53+00', '{"cached":null,"ignore_cache":false}'), +(38148, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:02.063+00', '{"cached":null,"ignore_cache":false}'), +(38149, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:02.087+00', '{"cached":null,"ignore_cache":false}'), +(38150, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:02.122+00', '{"cached":null,"ignore_cache":false}'), +(38151, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:03.908+00', '{"cached":null,"ignore_cache":false}'), +(38152, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:03.929+00', '{"cached":null,"ignore_cache":false}'), +(38153, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:04.288+00', '{"cached":null,"ignore_cache":false}'), +(38154, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:04.291+00', '{"cached":null,"ignore_cache":false}'), +(38155, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:04.34+00', '{"cached":null,"ignore_cache":false}'), +(38156, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:04.354+00', '{"cached":null,"ignore_cache":false}'), +(38157, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:04.37+00', '{"cached":null,"ignore_cache":false}'), +(38158, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:04.4+00', '{"cached":null,"ignore_cache":false}'), +(38159, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:04.472+00', '{"cached":null,"ignore_cache":false}'), +(38160, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:05.711+00', '{"cached":null,"ignore_cache":false}'), +(38161, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:39:05.715+00', '{"cached":null,"ignore_cache":false}'), +(38162, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:01.004+00', '{"cached":null,"ignore_cache":false}'), +(38163, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:02.561+00', '{"cached":null,"ignore_cache":false}'), +(38164, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:02.59+00', '{"cached":null,"ignore_cache":false}'), +(38165, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:02.62+00', '{"cached":null,"ignore_cache":false}'), +(38166, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:03.556+00', '{"cached":null,"ignore_cache":false}'), +(38167, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:03.645+00', '{"cached":null,"ignore_cache":false}'), +(38168, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:03.824+00', '{"cached":null,"ignore_cache":false}'), +(38169, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:03.89+00', '{"cached":null,"ignore_cache":false}'), +(38170, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:03.957+00', '{"cached":null,"ignore_cache":false}'), +(38171, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:03.996+00', '{"cached":null,"ignore_cache":false}'), +(38172, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:04.01+00', '{"cached":null,"ignore_cache":false}'), +(38173, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:04.046+00', '{"cached":null,"ignore_cache":false}'), +(38174, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:04.074+00', '{"cached":null,"ignore_cache":false}'), +(38175, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:04.823+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38176, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:44:04.86+00', '{"cached":null,"ignore_cache":false}'), +(38177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:08.509+00', '{"cached":null,"ignore_cache":false}'), +(38178, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:09.314+00', '{"cached":null,"ignore_cache":false}'), +(38179, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:09.389+00', '{"cached":null,"ignore_cache":false}'), +(38180, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:09.544+00', '{"cached":null,"ignore_cache":false}'), +(38181, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.178+00', '{"cached":null,"ignore_cache":false}'), +(38182, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.181+00', '{"cached":null,"ignore_cache":false}'), +(38183, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.275+00', '{"cached":null,"ignore_cache":false}'), +(38184, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.277+00', '{"cached":null,"ignore_cache":false}'), +(38185, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.294+00', '{"cached":null,"ignore_cache":false}'), +(38186, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.3+00', '{"cached":null,"ignore_cache":false}'), +(38187, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.307+00', '{"cached":null,"ignore_cache":false}'), +(38188, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.312+00', '{"cached":null,"ignore_cache":false}'), +(38189, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.319+00', '{"cached":null,"ignore_cache":false}'), +(38190, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.501+00', '{"cached":null,"ignore_cache":false}'), +(38191, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:49:11.545+00', '{"cached":null,"ignore_cache":false}'), +(38192, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:02.666+00', '{"cached":null,"ignore_cache":false}'), +(38193, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:03.508+00', '{"cached":null,"ignore_cache":false}'), +(38194, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:03.544+00', '{"cached":null,"ignore_cache":false}'), +(38195, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:03.58+00', '{"cached":null,"ignore_cache":false}'), +(38196, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:03.915+00', '{"cached":null,"ignore_cache":false}'), +(38197, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.078+00', '{"cached":null,"ignore_cache":false}'), +(38198, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.301+00', '{"cached":null,"ignore_cache":false}'), +(38199, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.381+00', '{"cached":null,"ignore_cache":false}'), +(38200, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.468+00', '{"cached":null,"ignore_cache":false}'), +(38201, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.495+00', '{"cached":null,"ignore_cache":false}'), +(38202, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.512+00', '{"cached":null,"ignore_cache":false}'), +(38203, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.556+00', '{"cached":null,"ignore_cache":false}'), +(38204, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:04.622+00', '{"cached":null,"ignore_cache":false}'), +(38205, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:06.081+00', '{"cached":null,"ignore_cache":false}'), +(38206, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:54:06.113+00', '{"cached":null,"ignore_cache":false}'), +(38207, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:02.965+00', '{"cached":null,"ignore_cache":false}'), +(38208, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:04.213+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38209, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:04.221+00', '{"cached":null,"ignore_cache":false}'), +(38210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:04.275+00', '{"cached":null,"ignore_cache":false}'), +(38211, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:04.857+00', '{"cached":null,"ignore_cache":false}'), +(38212, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:04.877+00', '{"cached":null,"ignore_cache":false}'), +(38213, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:05.197+00', '{"cached":null,"ignore_cache":false}'), +(38214, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:05.244+00', '{"cached":null,"ignore_cache":false}'), +(38215, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:05.29+00', '{"cached":null,"ignore_cache":false}'), +(38216, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:05.291+00', '{"cached":null,"ignore_cache":false}'), +(38217, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:05.305+00', '{"cached":null,"ignore_cache":false}'), +(38218, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:05.447+00', '{"cached":null,"ignore_cache":false}'), +(38219, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:05.47+00', '{"cached":null,"ignore_cache":false}'), +(38220, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:06.628+00', '{"cached":null,"ignore_cache":false}'), +(38221, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 08:59:06.662+00', '{"cached":null,"ignore_cache":false}'), +(38222, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:08.496+00', '{"cached":null,"ignore_cache":false}'), +(38223, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:10.281+00', '{"cached":null,"ignore_cache":false}'), +(38224, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:10.347+00', '{"cached":null,"ignore_cache":false}'), +(38225, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:10.525+00', '{"cached":null,"ignore_cache":false}'), +(38226, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:11.859+00', '{"cached":null,"ignore_cache":false}'), +(38227, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:11.871+00', '{"cached":null,"ignore_cache":false}'), +(38228, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:12.256+00', '{"cached":null,"ignore_cache":false}'), +(38229, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:12.263+00', '{"cached":null,"ignore_cache":false}'), +(38230, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:12.305+00', '{"cached":null,"ignore_cache":false}'), +(38231, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:12.324+00', '{"cached":null,"ignore_cache":false}'), +(38232, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:12.35+00', '{"cached":null,"ignore_cache":false}'), +(38233, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:12.351+00', '{"cached":null,"ignore_cache":false}'), +(38234, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:12.397+00', '{"cached":null,"ignore_cache":false}'), +(38235, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:14.381+00', '{"cached":null,"ignore_cache":false}'), +(38236, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:04:14.448+00', '{"cached":null,"ignore_cache":false}'), +(38237, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:55.508+00', '{"cached":null,"ignore_cache":false}'), +(38238, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:55.547+00', '{"cached":null,"ignore_cache":false}'), +(38239, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:55.58+00', '{"cached":null,"ignore_cache":false}'), +(38240, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:56.071+00', '{"cached":null,"ignore_cache":false}'), +(38241, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:56.17+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38242, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:57.678+00', '{"cached":null,"ignore_cache":false}'), +(38243, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:11:57.756+00', '{"cached":null,"ignore_cache":false}'), +(38244, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:04.027+00', '{"cached":null,"ignore_cache":false}'), +(38245, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:04.108+00', '{"cached":null,"ignore_cache":false}'), +(38246, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:04.194+00', '{"cached":null,"ignore_cache":false}'), +(38247, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:04.536+00', '{"cached":null,"ignore_cache":false}'), +(38248, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:04.546+00', '{"cached":null,"ignore_cache":false}'), +(38249, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:04.777+00', '{"cached":null,"ignore_cache":false}'), +(38250, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:04.901+00', '{"cached":null,"ignore_cache":false}'), +(38251, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.178+00', '{"cached":null,"ignore_cache":false}'), +(38252, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.23+00', '{"cached":null,"ignore_cache":false}'), +(38253, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.276+00', '{"cached":null,"ignore_cache":false}'), +(38254, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.333+00', '{"cached":null,"ignore_cache":false}'), +(38255, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.35+00', '{"cached":null,"ignore_cache":false}'), +(38256, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.378+00', '{"cached":null,"ignore_cache":false}'), +(38257, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.618+00', '{"cached":null,"ignore_cache":false}'), +(38258, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:08.664+00', '{"cached":null,"ignore_cache":false}'), +(38259, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:10.061+00', '{"cached":null,"ignore_cache":false}'), +(38260, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:10.244+00', '{"cached":null,"ignore_cache":false}'), +(38261, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:10.395+00', '{"cached":null,"ignore_cache":false}'), +(38262, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:10.465+00', '{"cached":null,"ignore_cache":false}'), +(38263, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:10.525+00', '{"cached":null,"ignore_cache":false}'), +(38264, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:10.776+00', '{"cached":null,"ignore_cache":false}'), +(38265, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:12:10.87+00', '{"cached":null,"ignore_cache":false}'), +(38266, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:16.234+00', '{"cached":null,"ignore_cache":false}'), +(38267, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:18.252+00', '{"cached":null,"ignore_cache":false}'), +(38268, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:18.311+00', '{"cached":null,"ignore_cache":false}'), +(38269, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:19.213+00', '{"cached":null,"ignore_cache":false}'), +(38270, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:20.543+00', '{"cached":null,"ignore_cache":false}'), +(38271, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:20.59+00', '{"cached":null,"ignore_cache":false}'), +(38272, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:21.027+00', '{"cached":null,"ignore_cache":false}'), +(38273, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:21.114+00', '{"cached":null,"ignore_cache":false}'), +(38274, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:21.223+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38275, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:21.267+00', '{"cached":null,"ignore_cache":false}'), +(38276, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:21.29+00', '{"cached":null,"ignore_cache":false}'), +(38277, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:21.301+00', '{"cached":null,"ignore_cache":false}'), +(38278, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:21.355+00', '{"cached":null,"ignore_cache":false}'), +(38279, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:22.706+00', '{"cached":null,"ignore_cache":false}'), +(38280, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:17:22.733+00', '{"cached":null,"ignore_cache":false}'), +(38281, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:00.525+00', '{"cached":null,"ignore_cache":false}'), +(38282, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:00.57+00', '{"cached":null,"ignore_cache":false}'), +(38283, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:01.863+00', '{"cached":null,"ignore_cache":false}'), +(38284, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:01.873+00', '{"cached":null,"ignore_cache":false}'), +(38285, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:01.875+00', '{"cached":null,"ignore_cache":false}'), +(38286, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:01.904+00', '{"cached":null,"ignore_cache":false}'), +(38287, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:02.332+00', '{"cached":null,"ignore_cache":false}'), +(38288, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:02.349+00', '{"cached":null,"ignore_cache":false}'), +(38289, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:04.239+00', '{"cached":null,"ignore_cache":false}'), +(38290, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:04.348+00', '{"cached":null,"ignore_cache":false}'), +(38291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:04.355+00', '{"cached":null,"ignore_cache":false}'), +(38292, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:04.37+00', '{"cached":null,"ignore_cache":false}'), +(38293, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:05.238+00', '{"cached":null,"ignore_cache":false}'), +(38294, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:05.271+00', '{"cached":null,"ignore_cache":false}'), +(38295, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:05.276+00', '{"cached":null,"ignore_cache":false}'), +(38296, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:05.293+00', '{"cached":null,"ignore_cache":false}'), +(38297, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:05.602+00', '{"cached":null,"ignore_cache":false}'), +(38298, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.047+00', '{"cached":null,"ignore_cache":false}'), +(38299, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.058+00', '{"cached":null,"ignore_cache":false}'), +(38300, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.107+00', '{"cached":null,"ignore_cache":false}'), +(38301, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.109+00', '{"cached":null,"ignore_cache":false}'), +(38302, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.121+00', '{"cached":null,"ignore_cache":false}'), +(38303, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.122+00', '{"cached":null,"ignore_cache":false}'), +(38304, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.124+00', '{"cached":null,"ignore_cache":false}'), +(38305, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.126+00', '{"cached":null,"ignore_cache":false}'), +(38306, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:06.131+00', '{"cached":null,"ignore_cache":false}'), +(38307, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:07.661+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38308, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:07.689+00', '{"cached":null,"ignore_cache":false}'), +(38309, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:07.711+00', '{"cached":null,"ignore_cache":false}'), +(38310, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:33:07.746+00', '{"cached":null,"ignore_cache":false}'), +(38311, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:57.199+00', '{"cached":null,"ignore_cache":false}'), +(38312, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:58.07+00', '{"cached":null,"ignore_cache":false}'), +(38313, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:58.097+00', '{"cached":null,"ignore_cache":false}'), +(38314, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:58.186+00', '{"cached":null,"ignore_cache":false}'), +(38315, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.011+00', '{"cached":null,"ignore_cache":false}'), +(38316, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.024+00', '{"cached":null,"ignore_cache":false}'), +(38317, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.415+00', '{"cached":null,"ignore_cache":false}'), +(38318, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.434+00', '{"cached":null,"ignore_cache":false}'), +(38319, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.459+00', '{"cached":null,"ignore_cache":false}'), +(38320, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.477+00', '{"cached":null,"ignore_cache":false}'), +(38321, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.49+00', '{"cached":null,"ignore_cache":false}'), +(38322, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.528+00', '{"cached":null,"ignore_cache":false}'), +(38323, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:37:59.576+00', '{"cached":null,"ignore_cache":false}'), +(38324, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:38:00.813+00', '{"cached":null,"ignore_cache":false}'), +(38325, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:38:00.842+00', '{"cached":null,"ignore_cache":false}'), +(38326, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:55.976+00', '{"cached":null,"ignore_cache":false}'), +(38327, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:57.067+00', '{"cached":null,"ignore_cache":false}'), +(38328, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:57.085+00', '{"cached":null,"ignore_cache":false}'), +(38329, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:57.128+00', '{"cached":null,"ignore_cache":false}'), +(38330, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:57.655+00', '{"cached":null,"ignore_cache":false}'), +(38331, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:57.676+00', '{"cached":null,"ignore_cache":false}'), +(38332, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:58.059+00', '{"cached":null,"ignore_cache":false}'), +(38333, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:58.177+00', '{"cached":null,"ignore_cache":false}'), +(38334, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:58.253+00', '{"cached":null,"ignore_cache":false}'), +(38335, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:58.367+00', '{"cached":null,"ignore_cache":false}'), +(38336, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:58.389+00', '{"cached":null,"ignore_cache":false}'), +(38337, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:58.502+00', '{"cached":null,"ignore_cache":false}'), +(38338, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:58.531+00', '{"cached":null,"ignore_cache":false}'), +(38339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:59.725+00', '{"cached":null,"ignore_cache":false}'), +(38340, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:42:59.761+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38341, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:00.195+00', '{"cached":null,"ignore_cache":false}'), +(38342, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:01.785+00', '{"cached":null,"ignore_cache":false}'), +(38343, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:01.876+00', '{"cached":null,"ignore_cache":false}'), +(38344, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:02.099+00', '{"cached":null,"ignore_cache":false}'), +(38345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:04.173+00', '{"cached":null,"ignore_cache":false}'), +(38346, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:04.257+00', '{"cached":null,"ignore_cache":false}'), +(38347, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:04.861+00', '{"cached":null,"ignore_cache":false}'), +(38348, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:04.863+00', '{"cached":null,"ignore_cache":false}'), +(38349, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:04.898+00', '{"cached":null,"ignore_cache":false}'), +(38350, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:04.903+00', '{"cached":null,"ignore_cache":false}'), +(38351, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:04.951+00', '{"cached":null,"ignore_cache":false}'), +(38352, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:05.013+00', '{"cached":null,"ignore_cache":false}'), +(38353, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:05.11+00', '{"cached":null,"ignore_cache":false}'), +(38354, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:06.876+00', '{"cached":null,"ignore_cache":false}'), +(38355, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 09:48:06.927+00', '{"cached":null,"ignore_cache":false}'), +(38356, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:48.53+00', '{"cached":null,"ignore_cache":false}'), +(38357, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:48.553+00', '{"cached":null,"ignore_cache":false}'), +(38358, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:50.467+00', '{"cached":null,"ignore_cache":false}'), +(38359, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:50.596+00', '{"cached":null,"ignore_cache":false}'), +(38360, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:51.376+00', '{"cached":null,"ignore_cache":false}'), +(38361, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:51.441+00', '{"cached":null,"ignore_cache":false}'), +(38362, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:51.738+00', '{"cached":null,"ignore_cache":false}'), +(38363, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:51.766+00', '{"cached":null,"ignore_cache":false}'), +(38364, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:54.878+00', '{"cached":null,"ignore_cache":false}'), +(38365, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.245+00', '{"cached":null,"ignore_cache":false}'), +(38366, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.281+00', '{"cached":null,"ignore_cache":false}'), +(38367, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.339+00', '{"cached":null,"ignore_cache":false}'), +(38368, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.403+00', '{"cached":null,"ignore_cache":false}'), +(38369, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.548+00', '{"cached":null,"ignore_cache":false}'), +(38370, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.709+00', '{"cached":null,"ignore_cache":false}'), +(38371, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.75+00', '{"cached":null,"ignore_cache":false}'), +(38372, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.824+00', '{"cached":null,"ignore_cache":false}'), +(38373, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:55.867+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38374, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.005+00', '{"cached":null,"ignore_cache":false}'), +(38375, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.013+00', '{"cached":null,"ignore_cache":false}'), +(38376, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.042+00', '{"cached":null,"ignore_cache":false}'), +(38377, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.092+00', '{"cached":null,"ignore_cache":false}'), +(38378, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.155+00', '{"cached":null,"ignore_cache":false}'), +(38379, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.188+00', '{"cached":null,"ignore_cache":false}'), +(38380, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.213+00', '{"cached":null,"ignore_cache":false}'), +(38381, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:56.22+00', '{"cached":null,"ignore_cache":false}'), +(38382, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:59.658+00', '{"cached":null,"ignore_cache":false}'), +(38383, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:59.786+00', '{"cached":null,"ignore_cache":false}'), +(38384, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:59.799+00', '{"cached":null,"ignore_cache":false}'), +(38385, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 10:19:59.82+00', '{"cached":null,"ignore_cache":false}'), +(38386, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:51.424+00', '{"cached":null,"ignore_cache":false}'), +(38387, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:51.52+00', '{"cached":null,"ignore_cache":false}'), +(38388, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:51.847+00', '{"cached":null,"ignore_cache":false}'), +(38389, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:51.957+00', '{"cached":null,"ignore_cache":false}'), +(38390, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:52.007+00', '{"cached":null,"ignore_cache":false}'), +(38391, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:53.858+00', '{"cached":null,"ignore_cache":false}'), +(38392, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 10:25:54.052+00', '{"cached":null,"ignore_cache":false}'), +(38393, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.185+00', '{"cached":null,"ignore_cache":false}'), +(38394, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.207+00', '{"cached":null,"ignore_cache":false}'), +(38395, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.218+00', '{"cached":null,"ignore_cache":false}'), +(38396, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.464+00', '{"cached":null,"ignore_cache":false}'), +(38397, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.465+00', '{"cached":null,"ignore_cache":false}'), +(38398, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.466+00', '{"cached":null,"ignore_cache":false}'), +(38399, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.483+00', '{"cached":null,"ignore_cache":false}'), +(38400, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 10:26:06.521+00', '{"cached":null,"ignore_cache":false}'), +(38401, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:20.595+00', '{"cached":null,"ignore_cache":false}'), +(38402, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:20.609+00', '{"cached":null,"ignore_cache":false}'), +(38403, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:21.064+00', '{"cached":null,"ignore_cache":false}'), +(38404, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:21.234+00', '{"cached":null,"ignore_cache":false}'), +(38405, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:21.312+00', '{"cached":null,"ignore_cache":false}'), +(38406, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:22.086+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38407, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:22.099+00', '{"cached":null,"ignore_cache":false}'), +(38408, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:51.919+00', '{"cached":null,"ignore_cache":false}'), +(38409, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:52.272+00', '{"cached":null,"ignore_cache":false}'), +(38410, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:52.804+00', '{"cached":null,"ignore_cache":false}'), +(38411, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:52.818+00', '{"cached":null,"ignore_cache":false}'), +(38412, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:52.867+00', '{"cached":null,"ignore_cache":false}'), +(38413, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:52.937+00', '{"cached":null,"ignore_cache":false}'), +(38414, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:52.988+00', '{"cached":null,"ignore_cache":false}'), +(38415, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 10:31:53.018+00', '{"cached":null,"ignore_cache":false}'), +(38416, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:37.4+00', '{"cached":null,"ignore_cache":false}'), +(38417, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:37.421+00', '{"cached":null,"ignore_cache":false}'), +(38418, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:37.884+00', '{"cached":null,"ignore_cache":false}'), +(38419, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:38.022+00', '{"cached":null,"ignore_cache":false}'), +(38420, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:38.072+00', '{"cached":null,"ignore_cache":false}'), +(38421, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:39.565+00', '{"cached":null,"ignore_cache":false}'), +(38422, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 10:36:39.579+00', '{"cached":null,"ignore_cache":false}'), +(38423, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:24.571+00', '{"cached":null,"ignore_cache":false}'), +(38424, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:24.59+00', '{"cached":null,"ignore_cache":false}'), +(38425, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:24.936+00', '{"cached":null,"ignore_cache":false}'), +(38426, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:25.048+00', '{"cached":null,"ignore_cache":false}'), +(38427, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:25.076+00', '{"cached":null,"ignore_cache":false}'), +(38428, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:25.106+00', '{"cached":null,"ignore_cache":false}'), +(38429, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:25.18+00', '{"cached":null,"ignore_cache":false}'), +(38430, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 10:37:25.184+00', '{"cached":null,"ignore_cache":false}'), +(38431, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:19.751+00', '{"cached":null,"ignore_cache":false}'), +(38432, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:19.756+00', '{"cached":null,"ignore_cache":false}'), +(38433, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:20.754+00', '{"cached":null,"ignore_cache":false}'), +(38434, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:20.909+00', '{"cached":null,"ignore_cache":false}'), +(38435, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:20.998+00', '{"cached":null,"ignore_cache":false}'), +(38436, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:22.426+00', '{"cached":null,"ignore_cache":false}'), +(38437, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 10:42:22.452+00', '{"cached":null,"ignore_cache":false}'), +(38438, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.461+00', '{"cached":null,"ignore_cache":false}'), +(38439, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.655+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38440, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.783+00', '{"cached":null,"ignore_cache":false}'), +(38441, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.868+00', '{"cached":null,"ignore_cache":false}'), +(38442, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.938+00', '{"cached":null,"ignore_cache":false}'), +(38443, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.943+00', '{"cached":null,"ignore_cache":false}'), +(38444, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:33.95+00', '{"cached":null,"ignore_cache":false}'), +(38445, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 10:43:34.005+00', '{"cached":null,"ignore_cache":false}'), +(38446, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:44.73+00', '{"cached":null,"ignore_cache":false}'), +(38447, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:44.882+00', '{"cached":null,"ignore_cache":false}'), +(38448, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:47.896+00', '{"cached":null,"ignore_cache":false}'), +(38449, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:47.901+00', '{"cached":null,"ignore_cache":false}'), +(38450, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:47.948+00', '{"cached":null,"ignore_cache":false}'), +(38451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:48.033+00', '{"cached":null,"ignore_cache":false}'), +(38452, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:48.311+00', '{"cached":null,"ignore_cache":false}'), +(38453, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:49.705+00', '{"cached":null,"ignore_cache":false}'), +(38454, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:49.739+00', '{"cached":null,"ignore_cache":false}'), +(38455, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:49.747+00', '{"cached":null,"ignore_cache":false}'), +(38456, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:49.96+00', '{"cached":null,"ignore_cache":false}'), +(38457, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.006+00', '{"cached":null,"ignore_cache":false}'), +(38458, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.815+00', '{"cached":null,"ignore_cache":false}'), +(38459, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.834+00', '{"cached":null,"ignore_cache":false}'), +(38460, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.856+00', '{"cached":null,"ignore_cache":false}'), +(38461, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.861+00', '{"cached":null,"ignore_cache":false}'), +(38462, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.869+00', '{"cached":null,"ignore_cache":false}'), +(38463, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.891+00', '{"cached":null,"ignore_cache":false}'), +(38464, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.905+00', '{"cached":null,"ignore_cache":false}'), +(38465, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:50.932+00', '{"cached":null,"ignore_cache":false}'), +(38466, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:51.051+00', '{"cached":null,"ignore_cache":false}'), +(38467, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:51.057+00', '{"cached":null,"ignore_cache":false}'), +(38468, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:51.062+00', '{"cached":null,"ignore_cache":false}'), +(38469, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:51.113+00', '{"cached":null,"ignore_cache":false}'), +(38470, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:53.756+00', '{"cached":null,"ignore_cache":false}'), +(38471, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:53.798+00', '{"cached":null,"ignore_cache":false}'), +(38472, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:53.861+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38473, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 11:00:53.9+00', '{"cached":null,"ignore_cache":false}'), +(38474, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:57.541+00', '{"cached":null,"ignore_cache":false}'), +(38475, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:57.615+00', '{"cached":null,"ignore_cache":false}'), +(38476, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:57.779+00', '{"cached":null,"ignore_cache":false}'), +(38477, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:57.915+00', '{"cached":null,"ignore_cache":false}'), +(38478, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:57.972+00', '{"cached":null,"ignore_cache":false}'), +(38479, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:58.942+00', '{"cached":null,"ignore_cache":false}'), +(38480, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 11:06:59.022+00', '{"cached":null,"ignore_cache":false}'), +(38481, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.436+00', '{"cached":null,"ignore_cache":false}'), +(38482, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.488+00', '{"cached":null,"ignore_cache":false}'), +(38483, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.872+00', '{"cached":null,"ignore_cache":false}'), +(38484, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:09.966+00', '{"cached":null,"ignore_cache":false}'), +(38485, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:10.03+00', '{"cached":null,"ignore_cache":false}'), +(38486, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:10.046+00', '{"cached":null,"ignore_cache":false}'), +(38487, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:10.077+00', '{"cached":null,"ignore_cache":false}'), +(38488, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 11:07:10.177+00', '{"cached":null,"ignore_cache":false}'), +(38489, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:05.655+00', '{"cached":null,"ignore_cache":null}'), +(38490, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:10.674+00', '{"cached":null,"ignore_cache":false}'), +(38491, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:10.711+00', '{"cached":null,"ignore_cache":false}'), +(38492, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:11.265+00', '{"cached":null,"ignore_cache":false}'), +(38493, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:11.314+00', '{"cached":null,"ignore_cache":false}'), +(38494, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:11.423+00', '{"cached":null,"ignore_cache":false}'), +(38495, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:12.659+00', '{"cached":null,"ignore_cache":false}'), +(38496, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 11:39:12.683+00', '{"cached":null,"ignore_cache":false}'), +(38497, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 11:50:25.479+00', '{"cached":null,"ignore_cache":null}'), +(38498, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 12:15:39.955+00', '{"cached":null,"ignore_cache":null}'), +(38499, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 12:15:40.59+00', '{"cached":null,"ignore_cache":null}'), +(38500, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:26.156+00', '{"cached":null,"ignore_cache":null}'), +(38501, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:42.511+00', '{"cached":null,"ignore_cache":null}'), +(38502, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:45.742+00', '{"cached":null,"ignore_cache":false}'), +(38503, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:45.921+00', '{"cached":null,"ignore_cache":false}'), +(38504, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:46.359+00', '{"cached":null,"ignore_cache":false}'), +(38505, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:47.092+00', '{"cached":null,"ignore_cache":false}'), +(38506, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:47.127+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38507, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:47.451+00', '{"cached":null,"ignore_cache":false}'), +(38508, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 12:57:47.497+00', '{"cached":null,"ignore_cache":false}'), +(38509, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:39.247+00', '{"cached":null,"ignore_cache":false}'), +(38510, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:39.274+00', '{"cached":null,"ignore_cache":false}'), +(38511, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:40.987+00', '{"cached":null,"ignore_cache":false}'), +(38512, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:41.635+00', '{"cached":null,"ignore_cache":false}'), +(38513, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:41.975+00', '{"cached":null,"ignore_cache":false}'), +(38514, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:42.232+00', '{"cached":null,"ignore_cache":false}'), +(38515, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:42.367+00', '{"cached":null,"ignore_cache":false}'), +(38516, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:42.41+00', '{"cached":null,"ignore_cache":false}'), +(38517, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:42.439+00', '{"cached":null,"ignore_cache":false}'), +(38518, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:42.529+00', '{"cached":null,"ignore_cache":false}'), +(38519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:42.653+00', '{"cached":null,"ignore_cache":false}'), +(38520, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:42.725+00', '{"cached":null,"ignore_cache":false}'), +(38521, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.227+00', '{"cached":null,"ignore_cache":false}'), +(38522, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.246+00', '{"cached":null,"ignore_cache":false}'), +(38523, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.284+00', '{"cached":null,"ignore_cache":false}'), +(38524, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.322+00', '{"cached":null,"ignore_cache":false}'), +(38525, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.327+00', '{"cached":null,"ignore_cache":false}'), +(38526, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.462+00', '{"cached":null,"ignore_cache":false}'), +(38527, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.466+00', '{"cached":null,"ignore_cache":false}'), +(38528, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.468+00', '{"cached":null,"ignore_cache":false}'), +(38529, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:45.913+00', '{"cached":null,"ignore_cache":false}'), +(38530, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:46.166+00', '{"cached":null,"ignore_cache":false}'), +(38531, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:46.186+00', '{"cached":null,"ignore_cache":false}'), +(38532, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:46.194+00', '{"cached":null,"ignore_cache":false}'), +(38533, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:46.205+00', '{"cached":null,"ignore_cache":false}'), +(38534, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:47.414+00', '{"cached":null,"ignore_cache":false}'), +(38535, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:47.85+00', '{"cached":null,"ignore_cache":false}'), +(38536, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:47.862+00', '{"cached":null,"ignore_cache":false}'), +(38537, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 13:13:47.911+00', '{"cached":null,"ignore_cache":false}'), +(38538, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:20.269+00', '{"cached":null,"ignore_cache":false}'), +(38539, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:20.338+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38540, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:21.788+00', '{"cached":null,"ignore_cache":false}'), +(38541, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:21.812+00', '{"cached":null,"ignore_cache":false}'), +(38542, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:21.908+00', '{"cached":null,"ignore_cache":false}'), +(38543, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:21.96+00', '{"cached":null,"ignore_cache":false}'), +(38544, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:22.015+00', '{"cached":null,"ignore_cache":false}'), +(38545, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:22.044+00', '{"cached":null,"ignore_cache":false}'), +(38546, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:22.05+00', '{"cached":null,"ignore_cache":false}'), +(38547, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:22.051+00', '{"cached":null,"ignore_cache":false}'), +(38548, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:22.311+00', '{"cached":null,"ignore_cache":false}'), +(38549, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:22.318+00', '{"cached":null,"ignore_cache":false}'), +(38550, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:25.518+00', '{"cached":null,"ignore_cache":false}'), +(38551, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:25.521+00', '{"cached":null,"ignore_cache":false}'), +(38552, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:25.617+00', '{"cached":null,"ignore_cache":false}'), +(38553, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:25.707+00', '{"cached":null,"ignore_cache":false}'), +(38554, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:25.916+00', '{"cached":null,"ignore_cache":false}'), +(38555, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:25.929+00', '{"cached":null,"ignore_cache":false}'), +(38556, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.23+00', '{"cached":null,"ignore_cache":false}'), +(38557, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.289+00', '{"cached":null,"ignore_cache":false}'), +(38558, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.302+00', '{"cached":null,"ignore_cache":false}'), +(38559, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.305+00', '{"cached":null,"ignore_cache":false}'), +(38560, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.308+00', '{"cached":null,"ignore_cache":false}'), +(38561, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.311+00', '{"cached":null,"ignore_cache":false}'), +(38562, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.338+00', '{"cached":null,"ignore_cache":false}'), +(38563, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:26.34+00', '{"cached":null,"ignore_cache":false}'), +(38564, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:28.443+00', '{"cached":null,"ignore_cache":false}'), +(38565, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:28.457+00', '{"cached":null,"ignore_cache":false}'), +(38566, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:28.476+00', '{"cached":null,"ignore_cache":false}'), +(38567, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 13:18:28.519+00', '{"cached":null,"ignore_cache":false}'), +(38568, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:18.663+00', '{"cached":null,"ignore_cache":null}'), +(38569, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:22.643+00', '{"cached":null,"ignore_cache":false}'), +(38570, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:23.697+00', '{"cached":null,"ignore_cache":false}'), +(38571, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:24.498+00', '{"cached":null,"ignore_cache":false}'), +(38572, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:24.535+00', '{"cached":null,"ignore_cache":false}'), +(38573, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:25.107+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38574, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:25.159+00', '{"cached":null,"ignore_cache":false}'), +(38575, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:25.172+00', '{"cached":null,"ignore_cache":false}'), +(38576, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:25.189+00', '{"cached":null,"ignore_cache":false}'), +(38577, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:27.454+00', '{"cached":null,"ignore_cache":null}'), +(38578, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:28.041+00', '{"cached":null,"ignore_cache":null}'), +(38579, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:29.864+00', '{"cached":null,"ignore_cache":null}'), +(38580, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:40.907+00', '{"cached":null,"ignore_cache":null}'), +(38581, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.657+00', '{"cached":null,"ignore_cache":false}'), +(38582, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.76+00', '{"cached":null,"ignore_cache":false}'), +(38583, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.887+00', '{"cached":null,"ignore_cache":false}'), +(38584, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:42.966+00', '{"cached":null,"ignore_cache":false}'), +(38585, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:43.017+00', '{"cached":null,"ignore_cache":false}'), +(38586, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:43.038+00', '{"cached":null,"ignore_cache":false}'), +(38587, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:43.049+00', '{"cached":null,"ignore_cache":false}'), +(38588, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:43.088+00', '{"cached":null,"ignore_cache":false}'), +(38589, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:54.258+00', '{"cached":null,"ignore_cache":null}'), +(38590, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:25:55.263+00', '{"cached":null,"ignore_cache":false}'), +(38591, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:07.796+00', '{"cached":null,"ignore_cache":null}'), +(38592, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:09.767+00', '{"cached":null,"ignore_cache":false}'), +(38593, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:11.234+00', '{"cached":null,"ignore_cache":false}'), +(38594, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:11.297+00', '{"cached":null,"ignore_cache":false}'), +(38595, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:11.391+00', '{"cached":null,"ignore_cache":false}'), +(38596, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:11.777+00', '{"cached":null,"ignore_cache":false}'), +(38597, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:11.888+00', '{"cached":null,"ignore_cache":false}'), +(38598, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:12.344+00', '{"cached":null,"ignore_cache":false}'), +(38599, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:12.457+00', '{"cached":null,"ignore_cache":false}'), +(38600, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:14.108+00', '{"cached":null,"ignore_cache":null}'), +(38601, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.309+00', '{"cached":null,"ignore_cache":false}'), +(38602, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.679+00', '{"cached":null,"ignore_cache":false}'), +(38603, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.735+00', '{"cached":null,"ignore_cache":false}'), +(38604, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:15.86+00', '{"cached":null,"ignore_cache":false}'), +(38605, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:16.02+00', '{"cached":null,"ignore_cache":false}'), +(38606, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:17.429+00', '{"cached":null,"ignore_cache":false}'), +(38607, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:17.452+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38608, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:27.308+00', '{"cached":null,"ignore_cache":null}'), +(38609, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:29:28.254+00', '{"cached":null,"ignore_cache":false}'), +(38610, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:19.205+00', '{"cached":null,"ignore_cache":null}'), +(38611, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:21.532+00', '{"cached":null,"ignore_cache":null}'), +(38612, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:23.24+00', '{"cached":null,"ignore_cache":false}'), +(38613, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:23.246+00', '{"cached":null,"ignore_cache":false}'), +(38614, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:23.249+00', '{"cached":null,"ignore_cache":false}'), +(38615, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:23.272+00', '{"cached":null,"ignore_cache":false}'), +(38616, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:24.829+00', '{"cached":null,"ignore_cache":false}'), +(38617, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:25.07+00', '{"cached":null,"ignore_cache":false}'), +(38618, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:25.136+00', '{"cached":null,"ignore_cache":false}'), +(38619, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:25.196+00', '{"cached":null,"ignore_cache":false}'), +(38620, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:25.27+00', '{"cached":null,"ignore_cache":false}'), +(38621, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:25.464+00', '{"cached":null,"ignore_cache":false}'), +(38622, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:29.747+00', '{"cached":null,"ignore_cache":false}'), +(38623, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:29.777+00', '{"cached":null,"ignore_cache":false}'), +(38624, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:29.8+00', '{"cached":null,"ignore_cache":false}'), +(38625, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:30.341+00', '{"cached":null,"ignore_cache":false}'), +(38626, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:40.206+00', '{"cached":null,"ignore_cache":null}'), +(38627, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:42.125+00', '{"cached":null,"ignore_cache":false}'), +(38628, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:42.868+00', '{"cached":null,"ignore_cache":false}'), +(38629, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:43.554+00', '{"cached":null,"ignore_cache":false}'), +(38630, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:43.559+00', '{"cached":null,"ignore_cache":false}'), +(38631, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:43.737+00', '{"cached":null,"ignore_cache":false}'), +(38632, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:43.74+00', '{"cached":null,"ignore_cache":false}'), +(38633, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:43.792+00', '{"cached":null,"ignore_cache":false}'), +(38634, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:32:43.81+00', '{"cached":null,"ignore_cache":false}'), +(38635, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:33:29.186+00', '{"cached":null,"ignore_cache":null}'), +(38636, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-23 13:33:29.809+00', '{"cached":null,"ignore_cache":null}'), +(38637, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:34:38.735+00', '{"cached":null,"ignore_cache":null}'), +(38638, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:34:39.704+00', '{"cached":null,"ignore_cache":false}'), +(38639, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:34:56.522+00', '{"cached":null,"ignore_cache":null}'), +(38640, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:01.122+00', '{"cached":null,"ignore_cache":false}'), +(38641, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:01.284+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38642, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:03.769+00', '{"cached":null,"ignore_cache":false}'), +(38643, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:03.816+00', '{"cached":null,"ignore_cache":false}'), +(38644, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:03.967+00', '{"cached":null,"ignore_cache":false}'), +(38645, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:04.005+00', '{"cached":null,"ignore_cache":false}'), +(38646, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:04.097+00', '{"cached":null,"ignore_cache":false}'), +(38647, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:35:04.101+00', '{"cached":null,"ignore_cache":false}'), +(38648, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:08.642+00', '{"cached":null,"ignore_cache":null}'), +(38649, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:14.165+00', '{"cached":null,"ignore_cache":false}'), +(38650, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:24.603+00', '{"cached":null,"ignore_cache":null}'), +(38651, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:26.623+00', '{"cached":null,"ignore_cache":false}'), +(38652, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:26.964+00', '{"cached":null,"ignore_cache":false}'), +(38653, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:27.055+00', '{"cached":null,"ignore_cache":false}'), +(38654, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:27.062+00', '{"cached":null,"ignore_cache":false}'), +(38655, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:27.278+00', '{"cached":null,"ignore_cache":false}'), +(38656, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:27.329+00', '{"cached":null,"ignore_cache":false}'), +(38657, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:27.345+00', '{"cached":null,"ignore_cache":false}'), +(38658, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:27.362+00', '{"cached":null,"ignore_cache":false}'), +(38659, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:34.993+00', '{"cached":null,"ignore_cache":null}'), +(38660, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:42:35.766+00', '{"cached":null,"ignore_cache":false}'), +(38661, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:43:03.921+00', '{"cached":null,"ignore_cache":null}'), +(38662, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 13:43:05.593+00', '{"cached":null,"ignore_cache":false}'), +(38663, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:31.762+00', '{"cached":null,"ignore_cache":false}'), +(38664, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:31.843+00', '{"cached":null,"ignore_cache":false}'), +(38665, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:35.209+00', '{"cached":null,"ignore_cache":false}'), +(38666, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:36.212+00', '{"cached":null,"ignore_cache":false}'), +(38667, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:36.253+00', '{"cached":null,"ignore_cache":false}'), +(38668, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:36.257+00', '{"cached":null,"ignore_cache":false}'), +(38669, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:36.873+00', '{"cached":null,"ignore_cache":false}'), +(38670, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:36.911+00', '{"cached":null,"ignore_cache":false}'), +(38671, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:39.504+00', '{"cached":null,"ignore_cache":false}'), +(38672, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.149+00', '{"cached":null,"ignore_cache":false}'), +(38673, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.342+00', '{"cached":null,"ignore_cache":false}'), +(38674, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.349+00', '{"cached":null,"ignore_cache":false}'), +(38675, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.362+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38676, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.364+00', '{"cached":null,"ignore_cache":false}'), +(38677, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.915+00', '{"cached":null,"ignore_cache":false}'), +(38678, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.918+00', '{"cached":null,"ignore_cache":false}'), +(38679, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.919+00', '{"cached":null,"ignore_cache":false}'), +(38680, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.929+00', '{"cached":null,"ignore_cache":false}'), +(38681, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:40.931+00', '{"cached":null,"ignore_cache":false}'), +(38682, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:41.034+00', '{"cached":null,"ignore_cache":false}'), +(38683, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:41.079+00', '{"cached":null,"ignore_cache":false}'), +(38684, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:41.447+00', '{"cached":null,"ignore_cache":false}'), +(38685, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:41.451+00', '{"cached":null,"ignore_cache":false}'), +(38686, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:41.453+00', '{"cached":null,"ignore_cache":false}'), +(38687, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:41.454+00', '{"cached":null,"ignore_cache":false}'), +(38688, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:41.482+00', '{"cached":null,"ignore_cache":false}'), +(38689, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:44.497+00', '{"cached":null,"ignore_cache":false}'), +(38690, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:44.683+00', '{"cached":null,"ignore_cache":false}'), +(38691, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:45.064+00', '{"cached":null,"ignore_cache":false}'), +(38692, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:04:45.087+00', '{"cached":null,"ignore_cache":false}'), +(38693, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:33.951+00', '{"cached":null,"ignore_cache":false}'), +(38694, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:35.509+00', '{"cached":null,"ignore_cache":false}'), +(38695, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:35.536+00', '{"cached":null,"ignore_cache":false}'), +(38696, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:35.789+00', '{"cached":null,"ignore_cache":false}'), +(38697, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:37.997+00', '{"cached":null,"ignore_cache":false}'), +(38698, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.131+00', '{"cached":null,"ignore_cache":false}'), +(38699, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.528+00', '{"cached":null,"ignore_cache":false}'), +(38700, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.602+00', '{"cached":null,"ignore_cache":false}'), +(38701, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.603+00', '{"cached":null,"ignore_cache":false}'), +(38702, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.72+00', '{"cached":null,"ignore_cache":false}'), +(38703, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.733+00', '{"cached":null,"ignore_cache":false}'), +(38704, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.772+00', '{"cached":null,"ignore_cache":false}'), +(38705, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:38.896+00', '{"cached":null,"ignore_cache":false}'), +(38706, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:40.887+00', '{"cached":null,"ignore_cache":false}'), +(38707, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:09:40.905+00', '{"cached":null,"ignore_cache":false}'), +(38708, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:27.128+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38709, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:27.383+00', '{"cached":null,"ignore_cache":false}'), +(38710, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:27.5+00', '{"cached":null,"ignore_cache":false}'), +(38711, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:27.538+00', '{"cached":null,"ignore_cache":false}'), +(38712, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:29.44+00', '{"cached":null,"ignore_cache":false}'), +(38713, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:30.842+00', '{"cached":null,"ignore_cache":false}'), +(38714, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:30.843+00', '{"cached":null,"ignore_cache":false}'), +(38715, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:30.982+00', '{"cached":null,"ignore_cache":false}'), +(38716, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.003+00', '{"cached":null,"ignore_cache":false}'), +(38717, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.063+00', '{"cached":null,"ignore_cache":false}'), +(38718, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.546+00', '{"cached":null,"ignore_cache":false}'), +(38719, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.547+00', '{"cached":null,"ignore_cache":false}'), +(38720, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.556+00', '{"cached":null,"ignore_cache":false}'), +(38721, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.557+00', '{"cached":null,"ignore_cache":false}'), +(38722, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.567+00', '{"cached":null,"ignore_cache":false}'), +(38723, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.591+00', '{"cached":null,"ignore_cache":false}'), +(38724, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.592+00', '{"cached":null,"ignore_cache":false}'), +(38725, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.596+00', '{"cached":null,"ignore_cache":false}'), +(38726, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.597+00', '{"cached":null,"ignore_cache":false}'), +(38727, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.598+00', '{"cached":null,"ignore_cache":false}'), +(38728, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.599+00', '{"cached":null,"ignore_cache":false}'), +(38729, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.6+00', '{"cached":null,"ignore_cache":false}'), +(38730, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.601+00', '{"cached":null,"ignore_cache":false}'), +(38731, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:32.601+00', '{"cached":null,"ignore_cache":false}'), +(38732, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:34.815+00', '{"cached":null,"ignore_cache":false}'), +(38733, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.008+00', '{"cached":null,"ignore_cache":false}'), +(38734, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.027+00', '{"cached":null,"ignore_cache":false}'), +(38735, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.07+00', '{"cached":null,"ignore_cache":false}'), +(38736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.221+00', '{"cached":null,"ignore_cache":false}'), +(38737, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.343+00', '{"cached":null,"ignore_cache":false}'), +(38738, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.435+00', '{"cached":null,"ignore_cache":false}'), +(38739, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.458+00', '{"cached":null,"ignore_cache":false}'), +(38740, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.596+00', '{"cached":null,"ignore_cache":false}'), +(38741, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.619+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38742, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.644+00', '{"cached":null,"ignore_cache":false}'), +(38743, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.67+00', '{"cached":null,"ignore_cache":false}'), +(38744, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.884+00', '{"cached":null,"ignore_cache":false}'), +(38745, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.896+00', '{"cached":null,"ignore_cache":false}'), +(38746, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:35.912+00', '{"cached":null,"ignore_cache":false}'), +(38747, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.093+00', '{"cached":null,"ignore_cache":false}'), +(38748, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.117+00', '{"cached":null,"ignore_cache":false}'), +(38749, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.119+00', '{"cached":null,"ignore_cache":false}'), +(38750, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.165+00', '{"cached":null,"ignore_cache":false}'), +(38751, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.18+00', '{"cached":null,"ignore_cache":false}'), +(38752, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.183+00', '{"cached":null,"ignore_cache":false}'), +(38753, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.186+00', '{"cached":null,"ignore_cache":false}'), +(38754, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.27+00', '{"cached":null,"ignore_cache":false}'), +(38755, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.3+00', '{"cached":null,"ignore_cache":false}'), +(38756, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.342+00', '{"cached":null,"ignore_cache":false}'), +(38757, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.447+00', '{"cached":null,"ignore_cache":false}'), +(38758, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.473+00', '{"cached":null,"ignore_cache":false}'), +(38759, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:36.663+00', '{"cached":null,"ignore_cache":false}'), +(38760, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.645+00', '{"cached":null,"ignore_cache":false}'), +(38761, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.689+00', '{"cached":null,"ignore_cache":false}'), +(38762, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.778+00', '{"cached":null,"ignore_cache":false}'), +(38763, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.785+00', '{"cached":null,"ignore_cache":false}'), +(38764, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.828+00', '{"cached":null,"ignore_cache":false}'), +(38765, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.848+00', '{"cached":null,"ignore_cache":false}'), +(38766, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.868+00', '{"cached":null,"ignore_cache":false}'), +(38767, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:14:40.871+00', '{"cached":null,"ignore_cache":false}'), +(38768, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:22.548+00', '{"cached":null,"ignore_cache":false}'), +(38769, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:22.61+00', '{"cached":null,"ignore_cache":false}'), +(38770, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.6+00', '{"cached":null,"ignore_cache":false}'), +(38771, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.713+00', '{"cached":null,"ignore_cache":false}'), +(38772, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.716+00', '{"cached":null,"ignore_cache":false}'), +(38773, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.722+00', '{"cached":null,"ignore_cache":false}'), +(38774, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.812+00', '{"cached":null,"ignore_cache":false}'), +(38775, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.813+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38776, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.815+00', '{"cached":null,"ignore_cache":false}'), +(38777, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.819+00', '{"cached":null,"ignore_cache":false}'), +(38778, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.821+00', '{"cached":null,"ignore_cache":false}'), +(38779, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:23.822+00', '{"cached":null,"ignore_cache":false}'), +(38780, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.51+00', '{"cached":null,"ignore_cache":false}'), +(38781, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.54+00', '{"cached":null,"ignore_cache":false}'), +(38782, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.548+00', '{"cached":null,"ignore_cache":false}'), +(38783, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.579+00', '{"cached":null,"ignore_cache":false}'), +(38784, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.581+00', '{"cached":null,"ignore_cache":false}'), +(38785, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.589+00', '{"cached":null,"ignore_cache":false}'), +(38786, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.683+00', '{"cached":null,"ignore_cache":false}'), +(38787, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.711+00', '{"cached":null,"ignore_cache":false}'), +(38788, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.727+00', '{"cached":null,"ignore_cache":false}'), +(38789, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.775+00', '{"cached":null,"ignore_cache":false}'), +(38790, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.779+00', '{"cached":null,"ignore_cache":false}'), +(38791, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.781+00', '{"cached":null,"ignore_cache":false}'), +(38792, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:26.981+00', '{"cached":null,"ignore_cache":false}'), +(38793, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:27.058+00', '{"cached":null,"ignore_cache":false}'), +(38794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:29.349+00', '{"cached":null,"ignore_cache":false}'), +(38795, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:29.43+00', '{"cached":null,"ignore_cache":false}'), +(38796, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:29.49+00', '{"cached":null,"ignore_cache":false}'), +(38797, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:19:29.637+00', '{"cached":null,"ignore_cache":false}'), +(38798, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:25.105+00', '{"cached":null,"ignore_cache":false}'), +(38799, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:25.123+00', '{"cached":null,"ignore_cache":false}'), +(38800, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.522+00', '{"cached":null,"ignore_cache":false}'), +(38801, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.529+00', '{"cached":null,"ignore_cache":false}'), +(38802, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.562+00', '{"cached":null,"ignore_cache":false}'), +(38803, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.677+00', '{"cached":null,"ignore_cache":false}'), +(38804, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.76+00', '{"cached":null,"ignore_cache":false}'), +(38805, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.857+00', '{"cached":null,"ignore_cache":false}'), +(38806, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.889+00', '{"cached":null,"ignore_cache":false}'), +(38807, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.9+00', '{"cached":null,"ignore_cache":false}'), +(38808, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.984+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38809, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:26.985+00', '{"cached":null,"ignore_cache":false}'), +(38810, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.049+00', '{"cached":null,"ignore_cache":false}'), +(38811, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.063+00', '{"cached":null,"ignore_cache":false}'), +(38812, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.215+00', '{"cached":null,"ignore_cache":false}'), +(38813, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.245+00', '{"cached":null,"ignore_cache":false}'), +(38814, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.249+00', '{"cached":null,"ignore_cache":false}'), +(38815, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.251+00', '{"cached":null,"ignore_cache":false}'), +(38816, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.269+00', '{"cached":null,"ignore_cache":false}'), +(38817, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.293+00', '{"cached":null,"ignore_cache":false}'), +(38818, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.388+00', '{"cached":null,"ignore_cache":false}'), +(38819, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.389+00', '{"cached":null,"ignore_cache":false}'), +(38820, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.403+00', '{"cached":null,"ignore_cache":false}'), +(38821, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.512+00', '{"cached":null,"ignore_cache":false}'), +(38822, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.589+00', '{"cached":null,"ignore_cache":false}'), +(38823, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:32.62+00', '{"cached":null,"ignore_cache":false}'), +(38824, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:35.436+00', '{"cached":null,"ignore_cache":false}'), +(38825, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:35.665+00', '{"cached":null,"ignore_cache":false}'), +(38826, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:35.678+00', '{"cached":null,"ignore_cache":false}'), +(38827, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:24:35.704+00', '{"cached":null,"ignore_cache":false}'), +(38828, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:21.286+00', '{"cached":null,"ignore_cache":false}'), +(38829, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.81+00', '{"cached":null,"ignore_cache":false}'), +(38830, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.907+00', '{"cached":null,"ignore_cache":false}'), +(38831, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:22.925+00', '{"cached":null,"ignore_cache":false}'), +(38832, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:23.074+00', '{"cached":null,"ignore_cache":false}'), +(38833, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:23.077+00', '{"cached":null,"ignore_cache":false}'), +(38834, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:23.655+00', '{"cached":null,"ignore_cache":false}'), +(38835, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:23.657+00', '{"cached":null,"ignore_cache":false}'), +(38836, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:24.156+00', '{"cached":null,"ignore_cache":false}'), +(38837, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:24.771+00', '{"cached":null,"ignore_cache":false}'), +(38838, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:24.834+00', '{"cached":null,"ignore_cache":false}'), +(38839, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:24.878+00', '{"cached":null,"ignore_cache":false}'), +(38840, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:27.936+00', '{"cached":null,"ignore_cache":false}'), +(38841, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:27.937+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38842, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.026+00', '{"cached":null,"ignore_cache":false}'), +(38843, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.061+00', '{"cached":null,"ignore_cache":false}'), +(38844, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.093+00', '{"cached":null,"ignore_cache":false}'), +(38845, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.159+00', '{"cached":null,"ignore_cache":false}'), +(38846, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.254+00', '{"cached":null,"ignore_cache":false}'), +(38847, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.271+00', '{"cached":null,"ignore_cache":false}'), +(38848, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.327+00', '{"cached":null,"ignore_cache":false}'), +(38849, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.349+00', '{"cached":null,"ignore_cache":false}'), +(38850, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.416+00', '{"cached":null,"ignore_cache":false}'), +(38851, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.495+00', '{"cached":null,"ignore_cache":false}'), +(38852, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.673+00', '{"cached":null,"ignore_cache":false}'), +(38853, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:28.707+00', '{"cached":null,"ignore_cache":false}'), +(38854, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:31.691+00', '{"cached":null,"ignore_cache":false}'), +(38855, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:31.852+00', '{"cached":null,"ignore_cache":false}'), +(38856, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:31.861+00', '{"cached":null,"ignore_cache":false}'), +(38857, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:29:31.906+00', '{"cached":null,"ignore_cache":false}'), +(38858, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:16.81+00', '{"cached":null,"ignore_cache":false}'), +(38859, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:18.137+00', '{"cached":null,"ignore_cache":false}'), +(38860, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:18.154+00', '{"cached":null,"ignore_cache":false}'), +(38861, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:18.19+00', '{"cached":null,"ignore_cache":false}'), +(38862, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:18.199+00', '{"cached":null,"ignore_cache":false}'), +(38863, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:18.238+00', '{"cached":null,"ignore_cache":false}'), +(38864, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:19.521+00', '{"cached":null,"ignore_cache":false}'), +(38865, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:19.574+00', '{"cached":null,"ignore_cache":false}'), +(38866, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:19.602+00', '{"cached":null,"ignore_cache":false}'), +(38867, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:19.603+00', '{"cached":null,"ignore_cache":false}'), +(38868, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:19.629+00', '{"cached":null,"ignore_cache":false}'), +(38869, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:19.65+00', '{"cached":null,"ignore_cache":false}'), +(38870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:19.652+00', '{"cached":null,"ignore_cache":false}'), +(38871, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:20.705+00', '{"cached":null,"ignore_cache":false}'), +(38872, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:34:20.768+00', '{"cached":null,"ignore_cache":false}'), +(38873, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:40.643+00', '{"cached":null,"ignore_cache":false}'), +(38874, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:40.649+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38875, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:41.304+00', '{"cached":null,"ignore_cache":false}'), +(38876, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:41.329+00', '{"cached":null,"ignore_cache":false}'), +(38877, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:41.467+00', '{"cached":null,"ignore_cache":false}'), +(38878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:42.022+00', '{"cached":null,"ignore_cache":false}'), +(38879, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:42.23+00', '{"cached":null,"ignore_cache":false}'), +(38880, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:43.786+00', '{"cached":null,"ignore_cache":false}'), +(38881, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:44.128+00', '{"cached":null,"ignore_cache":false}'), +(38882, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:44.157+00', '{"cached":null,"ignore_cache":false}'), +(38883, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:44.167+00', '{"cached":null,"ignore_cache":false}'), +(38884, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:44.199+00', '{"cached":null,"ignore_cache":false}'), +(38885, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:44.208+00', '{"cached":null,"ignore_cache":false}'), +(38886, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:44.296+00', '{"cached":null,"ignore_cache":false}'), +(38887, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:35:44.333+00', '{"cached":null,"ignore_cache":false}'), +(38888, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:47.584+00', '{"cached":null,"ignore_cache":false}'), +(38889, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:47.716+00', '{"cached":null,"ignore_cache":false}'), +(38890, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:49.213+00', '{"cached":null,"ignore_cache":false}'), +(38891, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.436+00', '{"cached":null,"ignore_cache":false}'), +(38892, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.494+00', '{"cached":null,"ignore_cache":false}'), +(38893, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.521+00', '{"cached":null,"ignore_cache":false}'), +(38894, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.596+00', '{"cached":null,"ignore_cache":false}'), +(38895, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.605+00', '{"cached":null,"ignore_cache":false}'), +(38896, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.606+00', '{"cached":null,"ignore_cache":false}'), +(38897, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.608+00', '{"cached":null,"ignore_cache":false}'), +(38898, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.609+00', '{"cached":null,"ignore_cache":false}'), +(38899, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:50.611+00', '{"cached":null,"ignore_cache":false}'), +(38900, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:52.848+00', '{"cached":null,"ignore_cache":false}'), +(38901, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:52.906+00', '{"cached":null,"ignore_cache":false}'), +(38902, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:52.924+00', '{"cached":null,"ignore_cache":false}'), +(38903, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:52.968+00', '{"cached":null,"ignore_cache":false}'), +(38904, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:52.997+00', '{"cached":null,"ignore_cache":false}'), +(38905, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.004+00', '{"cached":null,"ignore_cache":false}'), +(38906, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.124+00', '{"cached":null,"ignore_cache":false}'), +(38907, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.125+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38908, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.159+00', '{"cached":null,"ignore_cache":false}'), +(38909, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.165+00', '{"cached":null,"ignore_cache":false}'), +(38910, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.209+00', '{"cached":null,"ignore_cache":false}'), +(38911, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.217+00', '{"cached":null,"ignore_cache":false}'), +(38912, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.226+00', '{"cached":null,"ignore_cache":false}'), +(38913, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:53.299+00', '{"cached":null,"ignore_cache":false}'), +(38914, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:55.527+00', '{"cached":null,"ignore_cache":false}'), +(38915, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:55.586+00', '{"cached":null,"ignore_cache":false}'), +(38916, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:55.601+00', '{"cached":null,"ignore_cache":false}'), +(38917, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:38:55.624+00', '{"cached":null,"ignore_cache":false}'), +(38918, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:15.852+00', '{"cached":null,"ignore_cache":false}'), +(38919, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:16.685+00', '{"cached":null,"ignore_cache":false}'), +(38920, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:16.695+00', '{"cached":null,"ignore_cache":false}'), +(38921, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:16.7+00', '{"cached":null,"ignore_cache":false}'), +(38922, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:16.703+00', '{"cached":null,"ignore_cache":false}'), +(38923, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:16.718+00', '{"cached":null,"ignore_cache":false}'), +(38924, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:17.201+00', '{"cached":null,"ignore_cache":false}'), +(38925, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:17.246+00', '{"cached":null,"ignore_cache":false}'), +(38926, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:17.291+00', '{"cached":null,"ignore_cache":false}'), +(38927, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:17.345+00', '{"cached":null,"ignore_cache":false}'), +(38928, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:17.408+00', '{"cached":null,"ignore_cache":false}'), +(38929, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:17.427+00', '{"cached":null,"ignore_cache":false}'), +(38930, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:17.512+00', '{"cached":null,"ignore_cache":false}'), +(38931, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:18.213+00', '{"cached":null,"ignore_cache":false}'), +(38932, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:39:18.248+00', '{"cached":null,"ignore_cache":false}'), +(38933, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:08.557+00', '{"cached":null,"ignore_cache":false}'), +(38934, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:08.741+00', '{"cached":null,"ignore_cache":false}'), +(38935, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.205+00', '{"cached":null,"ignore_cache":false}'), +(38936, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.257+00', '{"cached":null,"ignore_cache":false}'), +(38937, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:10.29+00', '{"cached":null,"ignore_cache":false}'), +(38938, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.148+00', '{"cached":null,"ignore_cache":false}'), +(38939, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.163+00', '{"cached":null,"ignore_cache":false}'), +(38940, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.299+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38941, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.354+00', '{"cached":null,"ignore_cache":false}'), +(38942, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.479+00', '{"cached":null,"ignore_cache":false}'), +(38943, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.584+00', '{"cached":null,"ignore_cache":false}'), +(38944, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.601+00', '{"cached":null,"ignore_cache":false}'), +(38945, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.674+00', '{"cached":null,"ignore_cache":false}'), +(38946, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.689+00', '{"cached":null,"ignore_cache":false}'), +(38947, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:11.707+00', '{"cached":null,"ignore_cache":false}'), +(38948, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.376+00', '{"cached":null,"ignore_cache":false}'), +(38949, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.581+00', '{"cached":null,"ignore_cache":false}'), +(38950, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.673+00', '{"cached":null,"ignore_cache":false}'), +(38951, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.841+00', '{"cached":null,"ignore_cache":false}'), +(38952, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.846+00', '{"cached":null,"ignore_cache":false}'), +(38953, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:15.888+00', '{"cached":null,"ignore_cache":false}'), +(38954, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:16.037+00', '{"cached":null,"ignore_cache":false}'), +(38955, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:16.039+00', '{"cached":null,"ignore_cache":false}'), +(38956, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:16.069+00', '{"cached":null,"ignore_cache":false}'), +(38957, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:16.355+00', '{"cached":null,"ignore_cache":false}'), +(38958, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:16.364+00', '{"cached":null,"ignore_cache":false}'), +(38959, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:16.371+00', '{"cached":null,"ignore_cache":false}'), +(38960, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:16.385+00', '{"cached":null,"ignore_cache":false}'), +(38961, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:39.345+00', '{"cached":null,"ignore_cache":false}'), +(38962, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:40.09+00', '{"cached":null,"ignore_cache":false}'), +(38963, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:40.093+00', '{"cached":null,"ignore_cache":false}'), +(38964, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:40.107+00', '{"cached":null,"ignore_cache":false}'), +(38965, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:40.142+00', '{"cached":null,"ignore_cache":false}'), +(38966, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:40.203+00', '{"cached":null,"ignore_cache":false}'), +(38967, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:43.83+00', '{"cached":null,"ignore_cache":false}'), +(38968, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:43.832+00', '{"cached":null,"ignore_cache":false}'), +(38969, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:43.847+00', '{"cached":null,"ignore_cache":false}'), +(38970, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:43.904+00', '{"cached":null,"ignore_cache":false}'), +(38971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:44.029+00', '{"cached":null,"ignore_cache":false}'), +(38972, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:44.031+00', '{"cached":null,"ignore_cache":false}'), +(38973, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:44.275+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(38974, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:46.562+00', '{"cached":null,"ignore_cache":false}'), +(38975, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:44:46.572+00', '{"cached":null,"ignore_cache":false}'), +(38976, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:01.217+00', '{"cached":null,"ignore_cache":false}'), +(38977, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:01.224+00', '{"cached":null,"ignore_cache":false}'), +(38978, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:02.494+00', '{"cached":null,"ignore_cache":false}'), +(38979, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:02.542+00', '{"cached":null,"ignore_cache":false}'), +(38980, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:02.585+00', '{"cached":null,"ignore_cache":false}'), +(38981, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:04.546+00', '{"cached":null,"ignore_cache":false}'), +(38982, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:04.648+00', '{"cached":null,"ignore_cache":false}'), +(38983, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.668+00', '{"cached":null,"ignore_cache":false}'), +(38984, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.803+00', '{"cached":null,"ignore_cache":false}'), +(38985, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.825+00', '{"cached":null,"ignore_cache":false}'), +(38986, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.858+00', '{"cached":null,"ignore_cache":false}'), +(38987, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.948+00', '{"cached":null,"ignore_cache":false}'), +(38988, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.957+00', '{"cached":null,"ignore_cache":false}'), +(38989, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.959+00', '{"cached":null,"ignore_cache":false}'), +(38990, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:51:06.963+00', '{"cached":null,"ignore_cache":false}'), +(38991, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:12.628+00', '{"cached":null,"ignore_cache":false}'), +(38992, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:13.339+00', '{"cached":null,"ignore_cache":false}'), +(38993, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:13.347+00', '{"cached":null,"ignore_cache":false}'), +(38994, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:13.386+00', '{"cached":null,"ignore_cache":false}'), +(38995, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:13.393+00', '{"cached":null,"ignore_cache":false}'), +(38996, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:13.411+00', '{"cached":null,"ignore_cache":false}'), +(38997, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:14.385+00', '{"cached":null,"ignore_cache":false}'), +(38998, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:14.414+00', '{"cached":null,"ignore_cache":false}'), +(38999, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:14.514+00', '{"cached":null,"ignore_cache":false}'), +(39000, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:14.524+00', '{"cached":null,"ignore_cache":false}'), +(39001, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:14.548+00', '{"cached":null,"ignore_cache":false}'), +(39002, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:14.581+00', '{"cached":null,"ignore_cache":false}'), +(39003, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:14.592+00', '{"cached":null,"ignore_cache":false}'), +(39004, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:15.451+00', '{"cached":null,"ignore_cache":false}'), +(39005, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 14:54:15.463+00', '{"cached":null,"ignore_cache":false}'), +(39006, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:10.155+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39007, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:10.205+00', '{"cached":null,"ignore_cache":false}'), +(39008, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:11.47+00', '{"cached":null,"ignore_cache":false}'), +(39009, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:11.501+00', '{"cached":null,"ignore_cache":false}'), +(39010, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.576+00', '{"cached":null,"ignore_cache":false}'), +(39011, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.794+00', '{"cached":null,"ignore_cache":false}'), +(39012, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.844+00', '{"cached":null,"ignore_cache":false}'), +(39013, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.86+00', '{"cached":null,"ignore_cache":false}'), +(39014, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.862+00', '{"cached":null,"ignore_cache":false}'), +(39015, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.863+00', '{"cached":null,"ignore_cache":false}'), +(39016, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.909+00', '{"cached":null,"ignore_cache":false}'), +(39017, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:12.932+00', '{"cached":null,"ignore_cache":false}'), +(39018, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:14.782+00', '{"cached":null,"ignore_cache":false}'), +(39019, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:14.797+00', '{"cached":null,"ignore_cache":false}'), +(39020, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:14.994+00', '{"cached":null,"ignore_cache":false}'), +(39021, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.091+00', '{"cached":null,"ignore_cache":false}'), +(39022, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.119+00', '{"cached":null,"ignore_cache":false}'), +(39023, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.121+00', '{"cached":null,"ignore_cache":false}'), +(39024, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.283+00', '{"cached":null,"ignore_cache":false}'), +(39025, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.399+00', '{"cached":null,"ignore_cache":false}'), +(39026, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.449+00', '{"cached":null,"ignore_cache":false}'), +(39027, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.465+00', '{"cached":null,"ignore_cache":false}'), +(39028, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.466+00', '{"cached":null,"ignore_cache":false}'), +(39029, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.505+00', '{"cached":null,"ignore_cache":false}'), +(39030, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.546+00', '{"cached":null,"ignore_cache":false}'), +(39031, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:15.673+00', '{"cached":null,"ignore_cache":false}'), +(39032, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:18.85+00', '{"cached":null,"ignore_cache":false}'), +(39033, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:18.909+00', '{"cached":null,"ignore_cache":false}'), +(39034, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:18.95+00', '{"cached":null,"ignore_cache":false}'), +(39035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 15:25:18.961+00', '{"cached":null,"ignore_cache":false}'), +(39036, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:12.759+00', '{"cached":null,"ignore_cache":false}'), +(39037, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:13.494+00', '{"cached":null,"ignore_cache":false}'), +(39038, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:13.582+00', '{"cached":null,"ignore_cache":false}'), +(39039, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:13.624+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39040, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:13.63+00', '{"cached":null,"ignore_cache":false}'), +(39041, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:13.696+00', '{"cached":null,"ignore_cache":false}'), +(39042, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:16.029+00', '{"cached":null,"ignore_cache":false}'), +(39043, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:16.033+00', '{"cached":null,"ignore_cache":false}'), +(39044, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:16.036+00', '{"cached":null,"ignore_cache":false}'), +(39045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:16.134+00', '{"cached":null,"ignore_cache":false}'), +(39046, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:16.138+00', '{"cached":null,"ignore_cache":false}'), +(39047, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:16.189+00', '{"cached":null,"ignore_cache":false}'), +(39048, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:16.335+00', '{"cached":null,"ignore_cache":false}'), +(39049, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:18.265+00', '{"cached":null,"ignore_cache":false}'), +(39050, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 15:30:18.284+00', '{"cached":null,"ignore_cache":false}'), +(39051, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:15.687+00', '{"cached":null,"ignore_cache":false}'), +(39052, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:16.316+00', '{"cached":null,"ignore_cache":false}'), +(39053, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:16.358+00', '{"cached":null,"ignore_cache":false}'), +(39054, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:16.379+00', '{"cached":null,"ignore_cache":false}'), +(39055, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:16.386+00', '{"cached":null,"ignore_cache":false}'), +(39056, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:16.454+00', '{"cached":null,"ignore_cache":false}'), +(39057, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:17.276+00', '{"cached":null,"ignore_cache":false}'), +(39058, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:17.341+00', '{"cached":null,"ignore_cache":false}'), +(39059, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:17.361+00', '{"cached":null,"ignore_cache":false}'), +(39060, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:17.381+00', '{"cached":null,"ignore_cache":false}'), +(39061, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:17.388+00', '{"cached":null,"ignore_cache":false}'), +(39062, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:17.402+00', '{"cached":null,"ignore_cache":false}'), +(39063, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:17.411+00', '{"cached":null,"ignore_cache":false}'), +(39064, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:18.302+00', '{"cached":null,"ignore_cache":false}'), +(39065, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 15:40:18.315+00', '{"cached":null,"ignore_cache":false}'), +(39066, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:40.762+00', '{"cached":null,"ignore_cache":false}'), +(39067, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:40.801+00', '{"cached":null,"ignore_cache":false}'), +(39068, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:41.527+00', '{"cached":null,"ignore_cache":false}'), +(39069, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:41.54+00', '{"cached":null,"ignore_cache":false}'), +(39070, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:41.566+00', '{"cached":null,"ignore_cache":false}'), +(39071, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:41.641+00', '{"cached":null,"ignore_cache":false}'), +(39072, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:42.791+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39073, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:42.792+00', '{"cached":null,"ignore_cache":false}'), +(39074, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.557+00', '{"cached":null,"ignore_cache":false}'), +(39075, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.58+00', '{"cached":null,"ignore_cache":false}'), +(39076, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.609+00', '{"cached":null,"ignore_cache":false}'), +(39077, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.613+00', '{"cached":null,"ignore_cache":false}'), +(39078, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.615+00', '{"cached":null,"ignore_cache":false}'), +(39079, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.617+00', '{"cached":null,"ignore_cache":false}'), +(39080, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.624+00', '{"cached":null,"ignore_cache":false}'), +(39081, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:44:43.625+00', '{"cached":null,"ignore_cache":false}'), +(39082, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:08.714+00', '{"cached":null,"ignore_cache":false}'), +(39083, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:09.893+00', '{"cached":null,"ignore_cache":false}'), +(39084, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:10.314+00', '{"cached":null,"ignore_cache":false}'), +(39085, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:10.492+00', '{"cached":null,"ignore_cache":false}'), +(39086, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:10.894+00', '{"cached":null,"ignore_cache":false}'), +(39087, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:10.937+00', '{"cached":null,"ignore_cache":false}'), +(39088, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:11.279+00', '{"cached":null,"ignore_cache":false}'), +(39089, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:11.584+00', '{"cached":null,"ignore_cache":false}'), +(39090, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:11.592+00', '{"cached":null,"ignore_cache":false}'), +(39091, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:11.658+00', '{"cached":null,"ignore_cache":false}'), +(39092, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:11.766+00', '{"cached":null,"ignore_cache":false}'), +(39093, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:11.784+00', '{"cached":null,"ignore_cache":false}'), +(39094, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:11.907+00', '{"cached":null,"ignore_cache":false}'), +(39095, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:13.691+00', '{"cached":null,"ignore_cache":false}'), +(39096, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 15:47:13.72+00', '{"cached":null,"ignore_cache":false}'), +(39097, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:14.268+00', '{"cached":null,"ignore_cache":false}'), +(39098, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:15.514+00', '{"cached":null,"ignore_cache":false}'), +(39099, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:15.577+00', '{"cached":null,"ignore_cache":false}'), +(39100, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:15.612+00', '{"cached":null,"ignore_cache":false}'), +(39101, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.397+00', '{"cached":null,"ignore_cache":false}'), +(39102, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.412+00', '{"cached":null,"ignore_cache":false}'), +(39103, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.566+00', '{"cached":null,"ignore_cache":false}'), +(39104, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.573+00', '{"cached":null,"ignore_cache":false}'), +(39105, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.608+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39106, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.735+00', '{"cached":null,"ignore_cache":false}'), +(39107, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.775+00', '{"cached":null,"ignore_cache":false}'), +(39108, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.776+00', '{"cached":null,"ignore_cache":false}'), +(39109, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:16.796+00', '{"cached":null,"ignore_cache":false}'), +(39110, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:17.815+00', '{"cached":null,"ignore_cache":false}'), +(39111, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 15:52:17.85+00', '{"cached":null,"ignore_cache":false}'), +(39112, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:13.782+00', '{"cached":null,"ignore_cache":false}'), +(39113, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:15.111+00', '{"cached":null,"ignore_cache":false}'), +(39114, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:15.191+00', '{"cached":null,"ignore_cache":false}'), +(39115, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:15.315+00', '{"cached":null,"ignore_cache":false}'), +(39116, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:16.664+00', '{"cached":null,"ignore_cache":false}'), +(39117, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:16.691+00', '{"cached":null,"ignore_cache":false}'), +(39118, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:16.984+00', '{"cached":null,"ignore_cache":false}'), +(39119, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:17+00', '{"cached":null,"ignore_cache":false}'), +(39120, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:17.017+00', '{"cached":null,"ignore_cache":false}'), +(39121, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:17.056+00', '{"cached":null,"ignore_cache":false}'), +(39122, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:17.081+00', '{"cached":null,"ignore_cache":false}'), +(39123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:17.1+00', '{"cached":null,"ignore_cache":false}'), +(39124, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:17.118+00', '{"cached":null,"ignore_cache":false}'), +(39125, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:18.235+00', '{"cached":null,"ignore_cache":false}'), +(39126, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 15:57:18.259+00', '{"cached":null,"ignore_cache":false}'), +(39127, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:35.696+00', '{"cached":null,"ignore_cache":false}'), +(39128, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:36.861+00', '{"cached":null,"ignore_cache":false}'), +(39129, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:36.892+00', '{"cached":null,"ignore_cache":false}'), +(39130, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:36.931+00', '{"cached":null,"ignore_cache":false}'), +(39131, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:37.626+00', '{"cached":null,"ignore_cache":false}'), +(39132, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:37.66+00', '{"cached":null,"ignore_cache":false}'), +(39133, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:37.885+00', '{"cached":null,"ignore_cache":false}'), +(39134, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:37.934+00', '{"cached":null,"ignore_cache":false}'), +(39135, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:38.011+00', '{"cached":null,"ignore_cache":false}'), +(39136, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:38.087+00', '{"cached":null,"ignore_cache":false}'), +(39137, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:38.138+00', '{"cached":null,"ignore_cache":false}'), +(39138, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:38.178+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39139, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:38.186+00', '{"cached":null,"ignore_cache":false}'), +(39140, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:39.686+00', '{"cached":null,"ignore_cache":false}'), +(39141, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 16:02:39.688+00', '{"cached":null,"ignore_cache":false}'), +(39142, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:43.882+00', '{"cached":null,"ignore_cache":false}'), +(39143, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:45.238+00', '{"cached":null,"ignore_cache":false}'), +(39144, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:45.28+00', '{"cached":null,"ignore_cache":false}'), +(39145, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:45.483+00', '{"cached":null,"ignore_cache":false}'), +(39146, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:46.896+00', '{"cached":null,"ignore_cache":false}'), +(39147, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:46.952+00', '{"cached":null,"ignore_cache":false}'), +(39148, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:47.211+00', '{"cached":null,"ignore_cache":false}'), +(39149, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:47.248+00', '{"cached":null,"ignore_cache":false}'), +(39150, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:47.273+00', '{"cached":null,"ignore_cache":false}'), +(39151, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:47.385+00', '{"cached":null,"ignore_cache":false}'), +(39152, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:47.457+00', '{"cached":null,"ignore_cache":false}'), +(39153, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:47.571+00', '{"cached":null,"ignore_cache":false}'), +(39154, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:47.61+00', '{"cached":null,"ignore_cache":false}'), +(39155, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:48.673+00', '{"cached":null,"ignore_cache":false}'), +(39156, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 16:07:48.738+00', '{"cached":null,"ignore_cache":false}'), +(39157, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:44.251+00', '{"cached":null,"ignore_cache":false}'), +(39158, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:45.278+00', '{"cached":null,"ignore_cache":false}'), +(39159, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:45.317+00', '{"cached":null,"ignore_cache":false}'), +(39160, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:45.552+00', '{"cached":null,"ignore_cache":false}'), +(39161, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:45.919+00', '{"cached":null,"ignore_cache":false}'), +(39162, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.009+00', '{"cached":null,"ignore_cache":false}'), +(39163, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.369+00', '{"cached":null,"ignore_cache":false}'), +(39164, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.477+00', '{"cached":null,"ignore_cache":false}'), +(39165, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.496+00', '{"cached":null,"ignore_cache":false}'), +(39166, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.528+00', '{"cached":null,"ignore_cache":false}'), +(39167, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.554+00', '{"cached":null,"ignore_cache":false}'), +(39168, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.557+00', '{"cached":null,"ignore_cache":false}'), +(39169, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:46.596+00', '{"cached":null,"ignore_cache":false}'), +(39170, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:47.524+00', '{"cached":null,"ignore_cache":false}'), +(39171, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 16:14:47.593+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39172, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:43.874+00', '{"cached":null,"ignore_cache":false}'), +(39173, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:44.937+00', '{"cached":null,"ignore_cache":false}'), +(39174, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:44.958+00', '{"cached":null,"ignore_cache":false}'), +(39175, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:45.097+00', '{"cached":null,"ignore_cache":false}'), +(39176, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:45.538+00', '{"cached":null,"ignore_cache":false}'), +(39177, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:45.567+00', '{"cached":null,"ignore_cache":false}'), +(39178, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:46.099+00', '{"cached":null,"ignore_cache":false}'), +(39179, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:46.216+00', '{"cached":null,"ignore_cache":false}'), +(39180, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:46.225+00', '{"cached":null,"ignore_cache":false}'), +(39181, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:46.23+00', '{"cached":null,"ignore_cache":false}'), +(39182, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:46.237+00', '{"cached":null,"ignore_cache":false}'), +(39183, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:46.254+00', '{"cached":null,"ignore_cache":false}'), +(39184, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:46.257+00', '{"cached":null,"ignore_cache":false}'), +(39185, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:47.072+00', '{"cached":null,"ignore_cache":false}'), +(39186, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 16:19:47.195+00', '{"cached":null,"ignore_cache":false}'), +(39187, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:43.709+00', '{"cached":null,"ignore_cache":false}'), +(39188, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:44.2+00', '{"cached":null,"ignore_cache":false}'), +(39189, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:44.258+00', '{"cached":null,"ignore_cache":false}'), +(39190, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:44.315+00', '{"cached":null,"ignore_cache":false}'), +(39191, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:44.865+00', '{"cached":null,"ignore_cache":false}'), +(39192, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:44.882+00', '{"cached":null,"ignore_cache":false}'), +(39193, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:45.052+00', '{"cached":null,"ignore_cache":false}'), +(39194, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:45.074+00', '{"cached":null,"ignore_cache":false}'), +(39195, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:45.223+00', '{"cached":null,"ignore_cache":false}'), +(39196, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:45.262+00', '{"cached":null,"ignore_cache":false}'), +(39197, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:45.313+00', '{"cached":null,"ignore_cache":false}'), +(39198, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:45.314+00', '{"cached":null,"ignore_cache":false}'), +(39199, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:45.319+00', '{"cached":null,"ignore_cache":false}'), +(39200, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:46.18+00', '{"cached":null,"ignore_cache":false}'), +(39201, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 16:24:46.204+00', '{"cached":null,"ignore_cache":false}'), +(39202, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:24.516+00', '{"cached":null,"ignore_cache":false}'), +(39203, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:25.795+00', '{"cached":null,"ignore_cache":false}'), +(39204, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.081+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39205, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.113+00', '{"cached":null,"ignore_cache":false}'), +(39206, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.313+00', '{"cached":null,"ignore_cache":false}'), +(39207, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.347+00', '{"cached":null,"ignore_cache":false}'), +(39208, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.367+00', '{"cached":null,"ignore_cache":false}'), +(39209, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.391+00', '{"cached":null,"ignore_cache":false}'), +(39210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.685+00', '{"cached":null,"ignore_cache":false}'), +(39211, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.751+00', '{"cached":null,"ignore_cache":false}'), +(39212, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.826+00', '{"cached":null,"ignore_cache":false}'), +(39213, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.851+00', '{"cached":null,"ignore_cache":false}'), +(39214, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:26.886+00', '{"cached":null,"ignore_cache":false}'), +(39215, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:27.734+00', '{"cached":null,"ignore_cache":false}'), +(39216, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 16:38:27.833+00', '{"cached":null,"ignore_cache":false}'), +(39217, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:23.962+00', '{"cached":null,"ignore_cache":false}'), +(39218, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:24.969+00', '{"cached":null,"ignore_cache":false}'), +(39219, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.521+00', '{"cached":null,"ignore_cache":false}'), +(39220, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.652+00', '{"cached":null,"ignore_cache":false}'), +(39221, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.724+00', '{"cached":null,"ignore_cache":false}'), +(39222, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.755+00', '{"cached":null,"ignore_cache":false}'), +(39223, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.756+00', '{"cached":null,"ignore_cache":false}'), +(39224, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:25.758+00', '{"cached":null,"ignore_cache":false}'), +(39225, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.241+00', '{"cached":null,"ignore_cache":false}'), +(39226, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.544+00', '{"cached":null,"ignore_cache":false}'), +(39227, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.589+00', '{"cached":null,"ignore_cache":false}'), +(39228, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.609+00', '{"cached":null,"ignore_cache":false}'), +(39229, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:26.772+00', '{"cached":null,"ignore_cache":false}'), +(39230, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:27.659+00', '{"cached":null,"ignore_cache":false}'), +(39231, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 16:43:27.678+00', '{"cached":null,"ignore_cache":false}'), +(39232, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:48.391+00', '{"cached":null,"ignore_cache":false}'), +(39233, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:48.439+00', '{"cached":null,"ignore_cache":false}'), +(39234, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.504+00', '{"cached":null,"ignore_cache":false}'), +(39235, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.51+00', '{"cached":null,"ignore_cache":false}'), +(39236, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.715+00', '{"cached":null,"ignore_cache":false}'), +(39237, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.819+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39238, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.821+00', '{"cached":null,"ignore_cache":false}'), +(39239, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.851+00', '{"cached":null,"ignore_cache":false}'), +(39240, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.857+00', '{"cached":null,"ignore_cache":false}'), +(39241, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.861+00', '{"cached":null,"ignore_cache":false}'), +(39242, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.988+00', '{"cached":null,"ignore_cache":false}'), +(39243, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:49.995+00', '{"cached":null,"ignore_cache":false}'), +(39244, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.044+00', '{"cached":null,"ignore_cache":false}'), +(39245, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.063+00', '{"cached":null,"ignore_cache":false}'), +(39246, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.109+00', '{"cached":null,"ignore_cache":false}'), +(39247, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.157+00', '{"cached":null,"ignore_cache":false}'), +(39248, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.209+00', '{"cached":null,"ignore_cache":false}'), +(39249, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.333+00', '{"cached":null,"ignore_cache":false}'), +(39250, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.363+00', '{"cached":null,"ignore_cache":false}'), +(39251, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.39+00', '{"cached":null,"ignore_cache":false}'), +(39252, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.391+00', '{"cached":null,"ignore_cache":false}'), +(39253, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.393+00', '{"cached":null,"ignore_cache":false}'), +(39254, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.406+00', '{"cached":null,"ignore_cache":false}'), +(39255, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.413+00', '{"cached":null,"ignore_cache":false}'), +(39256, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.417+00', '{"cached":null,"ignore_cache":false}'), +(39257, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:51.425+00', '{"cached":null,"ignore_cache":false}'), +(39258, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:54.081+00', '{"cached":null,"ignore_cache":false}'), +(39259, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:54.194+00', '{"cached":null,"ignore_cache":false}'), +(39260, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:54.219+00', '{"cached":null,"ignore_cache":false}'), +(39261, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:12:54.289+00', '{"cached":null,"ignore_cache":false}'), +(39262, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:09.395+00', '{"cached":null,"ignore_cache":false}'), +(39263, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:09.441+00', '{"cached":null,"ignore_cache":false}'), +(39264, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:09.829+00', '{"cached":null,"ignore_cache":false}'), +(39265, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:10.369+00', '{"cached":null,"ignore_cache":false}'), +(39266, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:10.392+00', '{"cached":null,"ignore_cache":false}'), +(39267, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:11.139+00', '{"cached":null,"ignore_cache":false}'), +(39268, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:11.159+00', '{"cached":null,"ignore_cache":false}'), +(39269, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.449+00', '{"cached":null,"ignore_cache":false}'), +(39270, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.476+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39271, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.543+00', '{"cached":null,"ignore_cache":false}'), +(39272, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.608+00', '{"cached":null,"ignore_cache":false}'), +(39273, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.635+00', '{"cached":null,"ignore_cache":false}'), +(39274, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.648+00', '{"cached":null,"ignore_cache":false}'), +(39275, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.676+00', '{"cached":null,"ignore_cache":false}'), +(39276, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:18:17.682+00', '{"cached":null,"ignore_cache":false}'), +(39277, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:29.399+00', '{"cached":null,"ignore_cache":false}'), +(39278, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:29.47+00', '{"cached":null,"ignore_cache":false}'), +(39279, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.08+00', '{"cached":null,"ignore_cache":false}'), +(39280, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.157+00', '{"cached":null,"ignore_cache":false}'), +(39281, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.287+00', '{"cached":null,"ignore_cache":false}'), +(39282, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.397+00', '{"cached":null,"ignore_cache":false}'), +(39283, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.765+00', '{"cached":null,"ignore_cache":false}'), +(39284, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.905+00', '{"cached":null,"ignore_cache":false}'), +(39285, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.906+00', '{"cached":null,"ignore_cache":false}'), +(39286, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:31.909+00', '{"cached":null,"ignore_cache":false}'), +(39287, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:32.049+00', '{"cached":null,"ignore_cache":false}'), +(39288, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:32.065+00', '{"cached":null,"ignore_cache":false}'), +(39289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.449+00', '{"cached":null,"ignore_cache":false}'), +(39290, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.488+00', '{"cached":null,"ignore_cache":false}'), +(39291, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.508+00', '{"cached":null,"ignore_cache":false}'), +(39292, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.567+00', '{"cached":null,"ignore_cache":false}'), +(39293, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.598+00', '{"cached":null,"ignore_cache":false}'), +(39294, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.655+00', '{"cached":null,"ignore_cache":false}'), +(39295, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.704+00', '{"cached":null,"ignore_cache":false}'), +(39296, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.758+00', '{"cached":null,"ignore_cache":false}'), +(39297, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:33.769+00', '{"cached":null,"ignore_cache":false}'), +(39298, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:34.11+00', '{"cached":null,"ignore_cache":false}'), +(39299, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:34.169+00', '{"cached":null,"ignore_cache":false}'), +(39300, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:34.189+00', '{"cached":null,"ignore_cache":false}'), +(39301, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:34.19+00', '{"cached":null,"ignore_cache":false}'), +(39302, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:34.286+00', '{"cached":null,"ignore_cache":false}'), +(39303, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:36.339+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39304, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:36.35+00', '{"cached":null,"ignore_cache":false}'), +(39305, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:36.363+00', '{"cached":null,"ignore_cache":false}'), +(39306, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:21:36.488+00', '{"cached":null,"ignore_cache":false}'), +(39307, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:03.729+00', '{"cached":null,"ignore_cache":false}'), +(39308, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:03.866+00', '{"cached":null,"ignore_cache":false}'), +(39309, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:03.928+00', '{"cached":null,"ignore_cache":false}'), +(39310, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.031+00', '{"cached":null,"ignore_cache":false}'), +(39311, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.035+00', '{"cached":null,"ignore_cache":false}'), +(39312, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.063+00', '{"cached":null,"ignore_cache":false}'), +(39313, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.065+00', '{"cached":null,"ignore_cache":false}'), +(39314, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.067+00', '{"cached":null,"ignore_cache":false}'), +(39315, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.068+00', '{"cached":null,"ignore_cache":false}'), +(39316, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.07+00', '{"cached":null,"ignore_cache":false}'), +(39317, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.073+00', '{"cached":null,"ignore_cache":false}'), +(39318, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.077+00', '{"cached":null,"ignore_cache":false}'), +(39319, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:04.103+00', '{"cached":null,"ignore_cache":false}'), +(39320, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:05.579+00', '{"cached":null,"ignore_cache":false}'), +(39321, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:27:05.629+00', '{"cached":null,"ignore_cache":false}'), +(39322, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:54.75+00', '{"cached":null,"ignore_cache":false}'), +(39323, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:54.818+00', '{"cached":null,"ignore_cache":false}'), +(39324, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:54.835+00', '{"cached":null,"ignore_cache":false}'), +(39325, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:54.866+00', '{"cached":null,"ignore_cache":false}'), +(39326, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.023+00', '{"cached":null,"ignore_cache":false}'), +(39327, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.168+00', '{"cached":null,"ignore_cache":false}'), +(39328, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.171+00', '{"cached":null,"ignore_cache":false}'), +(39329, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.226+00', '{"cached":null,"ignore_cache":false}'), +(39330, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.254+00', '{"cached":null,"ignore_cache":false}'), +(39331, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.281+00', '{"cached":null,"ignore_cache":false}'), +(39332, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.287+00', '{"cached":null,"ignore_cache":false}'), +(39333, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.301+00', '{"cached":null,"ignore_cache":false}'), +(39334, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:55.345+00', '{"cached":null,"ignore_cache":false}'), +(39335, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:56.242+00', '{"cached":null,"ignore_cache":false}'), +(39336, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:36:56.258+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39337, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:21.948+00', '{"cached":null,"ignore_cache":false}'), +(39338, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:23.37+00', '{"cached":null,"ignore_cache":false}'), +(39339, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:23.486+00', '{"cached":null,"ignore_cache":false}'), +(39340, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:23.487+00', '{"cached":null,"ignore_cache":false}'), +(39341, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:23.524+00', '{"cached":null,"ignore_cache":false}'), +(39342, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:24.172+00', '{"cached":null,"ignore_cache":false}'), +(39343, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:24.49+00', '{"cached":null,"ignore_cache":false}'), +(39344, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:24.523+00', '{"cached":null,"ignore_cache":false}'), +(39345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:24.608+00', '{"cached":null,"ignore_cache":false}'), +(39346, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:24.657+00', '{"cached":null,"ignore_cache":false}'), +(39347, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:25.528+00', '{"cached":null,"ignore_cache":false}'), +(39348, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:25.531+00', '{"cached":null,"ignore_cache":false}'), +(39349, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:25.645+00', '{"cached":null,"ignore_cache":false}'), +(39350, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:25.667+00', '{"cached":null,"ignore_cache":false}'), +(39351, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:25.84+00', '{"cached":null,"ignore_cache":false}'), +(39352, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:25.907+00', '{"cached":null,"ignore_cache":false}'), +(39353, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:26.608+00', '{"cached":null,"ignore_cache":false}'), +(39354, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:26.62+00', '{"cached":null,"ignore_cache":false}'), +(39355, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:26.677+00', '{"cached":null,"ignore_cache":false}'), +(39356, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:26.711+00', '{"cached":null,"ignore_cache":false}'), +(39357, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:26.719+00', '{"cached":null,"ignore_cache":false}'), +(39358, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:26.721+00', '{"cached":null,"ignore_cache":false}'), +(39359, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:29.043+00', '{"cached":null,"ignore_cache":false}'), +(39360, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:29.176+00', '{"cached":null,"ignore_cache":false}'), +(39361, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:29.187+00', '{"cached":null,"ignore_cache":false}'), +(39362, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:39:29.289+00', '{"cached":null,"ignore_cache":false}'), +(39363, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:17.355+00', '{"cached":null,"ignore_cache":false}'), +(39364, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:17.44+00', '{"cached":null,"ignore_cache":false}'), +(39365, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:18.393+00', '{"cached":null,"ignore_cache":false}'), +(39366, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:18.41+00', '{"cached":null,"ignore_cache":false}'), +(39367, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:18.73+00', '{"cached":null,"ignore_cache":false}'), +(39368, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.08+00', '{"cached":null,"ignore_cache":false}'), +(39369, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.224+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39370, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.497+00', '{"cached":null,"ignore_cache":false}'), +(39371, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:21.523+00', '{"cached":null,"ignore_cache":false}'), +(39372, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:22.033+00', '{"cached":null,"ignore_cache":false}'), +(39373, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:22.118+00', '{"cached":null,"ignore_cache":false}'), +(39374, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:22.161+00', '{"cached":null,"ignore_cache":false}'), +(39375, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:22.268+00', '{"cached":null,"ignore_cache":false}'), +(39376, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:22.345+00', '{"cached":null,"ignore_cache":false}'), +(39377, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:45:22.436+00', '{"cached":null,"ignore_cache":false}'), +(39378, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:15.497+00', '{"cached":null,"ignore_cache":false}'), +(39379, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:15.619+00', '{"cached":null,"ignore_cache":false}'), +(39380, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:17.681+00', '{"cached":null,"ignore_cache":false}'), +(39381, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:17.702+00', '{"cached":null,"ignore_cache":false}'), +(39382, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:17.713+00', '{"cached":null,"ignore_cache":false}'), +(39383, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:17.728+00', '{"cached":null,"ignore_cache":false}'), +(39384, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:17.88+00', '{"cached":null,"ignore_cache":false}'), +(39385, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:17.886+00', '{"cached":null,"ignore_cache":false}'), +(39386, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:20.404+00', '{"cached":null,"ignore_cache":false}'), +(39387, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:20.45+00', '{"cached":null,"ignore_cache":false}'), +(39388, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:20.683+00', '{"cached":null,"ignore_cache":false}'), +(39389, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:20.758+00', '{"cached":null,"ignore_cache":false}'), +(39390, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.283+00', '{"cached":null,"ignore_cache":false}'), +(39391, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.288+00', '{"cached":null,"ignore_cache":false}'), +(39392, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.34+00', '{"cached":null,"ignore_cache":false}'), +(39393, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.355+00', '{"cached":null,"ignore_cache":false}'), +(39394, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.47+00', '{"cached":null,"ignore_cache":false}'), +(39395, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.471+00', '{"cached":null,"ignore_cache":false}'), +(39396, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.489+00', '{"cached":null,"ignore_cache":false}'), +(39397, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.498+00', '{"cached":null,"ignore_cache":false}'), +(39398, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.864+00', '{"cached":null,"ignore_cache":false}'), +(39399, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.923+00', '{"cached":null,"ignore_cache":false}'), +(39400, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.956+00', '{"cached":null,"ignore_cache":false}'), +(39401, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.963+00', '{"cached":null,"ignore_cache":false}'), +(39402, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:21.975+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39403, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:22.014+00', '{"cached":null,"ignore_cache":false}'), +(39404, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:25.62+00', '{"cached":null,"ignore_cache":false}'), +(39405, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:25.627+00', '{"cached":null,"ignore_cache":false}'), +(39406, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:25.629+00', '{"cached":null,"ignore_cache":false}'), +(39407, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:46:25.653+00', '{"cached":null,"ignore_cache":false}'), +(39408, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:06.835+00', '{"cached":null,"ignore_cache":false}'), +(39409, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:06.93+00', '{"cached":null,"ignore_cache":false}'), +(39410, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.443+00', '{"cached":null,"ignore_cache":false}'), +(39411, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.451+00', '{"cached":null,"ignore_cache":false}'), +(39412, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.464+00', '{"cached":null,"ignore_cache":false}'), +(39413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.486+00', '{"cached":null,"ignore_cache":false}'), +(39414, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.609+00', '{"cached":null,"ignore_cache":false}'), +(39415, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.618+00', '{"cached":null,"ignore_cache":false}'), +(39416, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.714+00', '{"cached":null,"ignore_cache":false}'), +(39417, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.715+00', '{"cached":null,"ignore_cache":false}'), +(39418, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:08.955+00', '{"cached":null,"ignore_cache":false}'), +(39419, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:09.037+00', '{"cached":null,"ignore_cache":false}'), +(39420, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:13.481+00', '{"cached":null,"ignore_cache":false}'), +(39421, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:13.559+00', '{"cached":null,"ignore_cache":false}'), +(39422, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:13.734+00', '{"cached":null,"ignore_cache":false}'), +(39423, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:13.745+00', '{"cached":null,"ignore_cache":false}'), +(39424, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:13.831+00', '{"cached":null,"ignore_cache":false}'), +(39425, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:13.961+00', '{"cached":null,"ignore_cache":false}'), +(39426, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.065+00', '{"cached":null,"ignore_cache":false}'), +(39427, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.091+00', '{"cached":null,"ignore_cache":false}'), +(39428, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.343+00', '{"cached":null,"ignore_cache":false}'), +(39429, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.358+00', '{"cached":null,"ignore_cache":false}'), +(39430, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.424+00', '{"cached":null,"ignore_cache":false}'), +(39431, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.426+00', '{"cached":null,"ignore_cache":false}'), +(39432, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.708+00', '{"cached":null,"ignore_cache":false}'), +(39433, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:14.884+00', '{"cached":null,"ignore_cache":false}'), +(39434, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:17.592+00', '{"cached":null,"ignore_cache":false}'), +(39435, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:17.896+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39436, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:17.906+00', '{"cached":null,"ignore_cache":false}'), +(39437, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:48:17.918+00', '{"cached":null,"ignore_cache":false}'), +(39438, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:44.412+00', '{"cached":null,"ignore_cache":false}'), +(39439, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:44.564+00', '{"cached":null,"ignore_cache":false}'), +(39440, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:45.643+00', '{"cached":null,"ignore_cache":false}'), +(39441, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:45.658+00', '{"cached":null,"ignore_cache":false}'), +(39442, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:45.758+00', '{"cached":null,"ignore_cache":false}'), +(39443, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:45.907+00', '{"cached":null,"ignore_cache":false}'), +(39444, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:45.982+00', '{"cached":null,"ignore_cache":false}'), +(39445, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:46.058+00', '{"cached":null,"ignore_cache":false}'), +(39446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:46.134+00', '{"cached":null,"ignore_cache":false}'), +(39447, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:46.153+00', '{"cached":null,"ignore_cache":false}'), +(39448, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:46.62+00', '{"cached":null,"ignore_cache":false}'), +(39449, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:46.651+00', '{"cached":null,"ignore_cache":false}'), +(39450, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:46.877+00', '{"cached":null,"ignore_cache":false}'), +(39451, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:46.975+00', '{"cached":null,"ignore_cache":false}'), +(39452, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.041+00', '{"cached":null,"ignore_cache":false}'), +(39453, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.196+00', '{"cached":null,"ignore_cache":false}'), +(39454, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.247+00', '{"cached":null,"ignore_cache":false}'), +(39455, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.274+00', '{"cached":null,"ignore_cache":false}'), +(39456, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.298+00', '{"cached":null,"ignore_cache":false}'), +(39457, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.311+00', '{"cached":null,"ignore_cache":false}'), +(39458, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.342+00', '{"cached":null,"ignore_cache":false}'), +(39459, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:47.436+00', '{"cached":null,"ignore_cache":false}'), +(39460, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:48.426+00', '{"cached":null,"ignore_cache":false}'), +(39461, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:50:48.469+00', '{"cached":null,"ignore_cache":false}'), +(39462, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:41.107+00', '{"cached":null,"ignore_cache":false}'), +(39463, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:41.118+00', '{"cached":null,"ignore_cache":false}'), +(39464, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:41.488+00', '{"cached":null,"ignore_cache":false}'), +(39465, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:41.496+00', '{"cached":null,"ignore_cache":false}'), +(39466, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:41.521+00', '{"cached":null,"ignore_cache":false}'), +(39467, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:43.304+00', '{"cached":null,"ignore_cache":false}'), +(39468, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-23 17:55:43.329+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39469, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:22.98+00', '{"cached":null,"ignore_cache":false}'), +(39470, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:23.296+00', '{"cached":null,"ignore_cache":false}'), +(39471, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:24.499+00', '{"cached":null,"ignore_cache":false}'), +(39472, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:24.51+00', '{"cached":null,"ignore_cache":false}'), +(39473, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:24.699+00', '{"cached":null,"ignore_cache":false}'), +(39474, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:24.711+00', '{"cached":null,"ignore_cache":false}'), +(39475, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:24.748+00', '{"cached":null,"ignore_cache":false}'), +(39476, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-23 17:56:24.797+00', '{"cached":null,"ignore_cache":false}'), +(39477, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:12.584+00', '{"cached":null,"ignore_cache":false}'), +(39478, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:12.639+00', '{"cached":null,"ignore_cache":false}'), +(39479, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.141+00', '{"cached":null,"ignore_cache":false}'), +(39480, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.168+00', '{"cached":null,"ignore_cache":false}'), +(39481, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.17+00', '{"cached":null,"ignore_cache":false}'), +(39482, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.198+00', '{"cached":null,"ignore_cache":false}'), +(39483, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.388+00', '{"cached":null,"ignore_cache":false}'), +(39484, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.47+00', '{"cached":null,"ignore_cache":false}'), +(39485, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.479+00', '{"cached":null,"ignore_cache":false}'), +(39486, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.485+00', '{"cached":null,"ignore_cache":false}'), +(39487, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.639+00', '{"cached":null,"ignore_cache":false}'), +(39488, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:14.675+00', '{"cached":null,"ignore_cache":false}'), +(39489, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.246+00', '{"cached":null,"ignore_cache":false}'), +(39490, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.771+00', '{"cached":null,"ignore_cache":false}'), +(39491, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.825+00', '{"cached":null,"ignore_cache":false}'), +(39492, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.848+00', '{"cached":null,"ignore_cache":false}'), +(39493, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.934+00', '{"cached":null,"ignore_cache":false}'), +(39494, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.944+00', '{"cached":null,"ignore_cache":false}'), +(39495, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.95+00', '{"cached":null,"ignore_cache":false}'), +(39496, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.954+00', '{"cached":null,"ignore_cache":false}'), +(39497, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.956+00', '{"cached":null,"ignore_cache":false}'), +(39498, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.958+00', '{"cached":null,"ignore_cache":false}'), +(39499, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.961+00', '{"cached":null,"ignore_cache":false}'), +(39500, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.968+00', '{"cached":null,"ignore_cache":false}'), +(39501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:17.989+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39502, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:18.009+00', '{"cached":null,"ignore_cache":false}'), +(39503, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:20.508+00', '{"cached":null,"ignore_cache":false}'), +(39504, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:20.638+00', '{"cached":null,"ignore_cache":false}'), +(39505, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:20.737+00', '{"cached":null,"ignore_cache":false}'), +(39506, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 07:54:20.81+00', '{"cached":null,"ignore_cache":false}'), +(39507, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:09.474+00', '{"cached":null,"ignore_cache":false}'), +(39508, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:09.504+00', '{"cached":null,"ignore_cache":false}'), +(39509, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:09.673+00', '{"cached":null,"ignore_cache":false}'), +(39510, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:09.682+00', '{"cached":null,"ignore_cache":false}'), +(39511, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:09.917+00', '{"cached":null,"ignore_cache":false}'), +(39512, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:11.321+00', '{"cached":null,"ignore_cache":false}'), +(39513, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:11.334+00', '{"cached":null,"ignore_cache":false}'), +(39514, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.175+00', '{"cached":null,"ignore_cache":false}'), +(39515, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.291+00', '{"cached":null,"ignore_cache":false}'), +(39516, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.295+00', '{"cached":null,"ignore_cache":false}'), +(39517, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.306+00', '{"cached":null,"ignore_cache":false}'), +(39518, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.37+00', '{"cached":null,"ignore_cache":false}'), +(39519, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.394+00', '{"cached":null,"ignore_cache":false}'), +(39520, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.48+00', '{"cached":null,"ignore_cache":false}'), +(39521, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 08:01:27.577+00', '{"cached":null,"ignore_cache":false}'), +(39522, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:38.515+00', '{"cached":null,"ignore_cache":false}'), +(39523, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:38.554+00', '{"cached":null,"ignore_cache":false}'), +(39524, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:38.614+00', '{"cached":null,"ignore_cache":false}'), +(39525, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:38.65+00', '{"cached":null,"ignore_cache":false}'), +(39526, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:38.713+00', '{"cached":null,"ignore_cache":false}'), +(39527, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:39.569+00', '{"cached":null,"ignore_cache":false}'), +(39528, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 08:16:39.647+00', '{"cached":null,"ignore_cache":false}'), +(39529, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:02.051+00', '{"cached":null,"ignore_cache":false}'), +(39530, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:02.451+00', '{"cached":null,"ignore_cache":false}'), +(39531, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:02.453+00', '{"cached":null,"ignore_cache":false}'), +(39532, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:02.459+00', '{"cached":null,"ignore_cache":false}'), +(39533, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:03.707+00', '{"cached":null,"ignore_cache":false}'), +(39534, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:03.733+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39535, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:03.752+00', '{"cached":null,"ignore_cache":false}'), +(39536, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 08:17:03.757+00', '{"cached":null,"ignore_cache":false}'), +(39537, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:18.341+00', '{"cached":null,"ignore_cache":false}'), +(39538, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:18.382+00', '{"cached":null,"ignore_cache":false}'), +(39539, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.154+00', '{"cached":null,"ignore_cache":false}'), +(39540, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.162+00', '{"cached":null,"ignore_cache":false}'), +(39541, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.292+00', '{"cached":null,"ignore_cache":false}'), +(39542, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.355+00', '{"cached":null,"ignore_cache":false}'), +(39543, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.381+00', '{"cached":null,"ignore_cache":false}'), +(39544, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.556+00', '{"cached":null,"ignore_cache":false}'), +(39545, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.935+00', '{"cached":null,"ignore_cache":false}'), +(39546, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.936+00', '{"cached":null,"ignore_cache":false}'), +(39547, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.942+00', '{"cached":null,"ignore_cache":false}'), +(39548, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:19.943+00', '{"cached":null,"ignore_cache":false}'), +(39549, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:21.88+00', '{"cached":null,"ignore_cache":false}'), +(39550, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:21.92+00', '{"cached":null,"ignore_cache":false}'), +(39551, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:21.924+00', '{"cached":null,"ignore_cache":false}'), +(39552, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:21.925+00', '{"cached":null,"ignore_cache":false}'), +(39553, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.039+00', '{"cached":null,"ignore_cache":false}'), +(39554, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.071+00', '{"cached":null,"ignore_cache":false}'), +(39555, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.097+00', '{"cached":null,"ignore_cache":false}'), +(39556, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.125+00', '{"cached":null,"ignore_cache":false}'), +(39557, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.164+00', '{"cached":null,"ignore_cache":false}'), +(39558, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.226+00', '{"cached":null,"ignore_cache":false}'), +(39559, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.227+00', '{"cached":null,"ignore_cache":false}'), +(39560, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.307+00', '{"cached":null,"ignore_cache":false}'), +(39561, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.39+00', '{"cached":null,"ignore_cache":false}'), +(39562, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:22.473+00', '{"cached":null,"ignore_cache":false}'), +(39563, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:25.745+00', '{"cached":null,"ignore_cache":false}'), +(39564, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:25.753+00', '{"cached":null,"ignore_cache":false}'), +(39565, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:25.868+00', '{"cached":null,"ignore_cache":false}'), +(39566, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 08:33:25.942+00', '{"cached":null,"ignore_cache":false}'), +(39567, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:53.621+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39568, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:53.672+00', '{"cached":null,"ignore_cache":false}'), +(39569, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:54.161+00', '{"cached":null,"ignore_cache":false}'), +(39570, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:54.235+00', '{"cached":null,"ignore_cache":false}'), +(39571, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:54.405+00', '{"cached":null,"ignore_cache":false}'), +(39572, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:56.027+00', '{"cached":null,"ignore_cache":false}'), +(39573, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 08:38:56.107+00', '{"cached":null,"ignore_cache":false}'), +(39574, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:25.248+00', '{"cached":null,"ignore_cache":false}'), +(39575, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:25.387+00', '{"cached":null,"ignore_cache":false}'), +(39576, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:26.748+00', '{"cached":null,"ignore_cache":false}'), +(39577, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:27.185+00', '{"cached":null,"ignore_cache":false}'), +(39578, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:27.222+00', '{"cached":null,"ignore_cache":false}'), +(39579, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:27.239+00', '{"cached":null,"ignore_cache":false}'), +(39580, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:27.241+00', '{"cached":null,"ignore_cache":false}'), +(39581, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:27.276+00', '{"cached":null,"ignore_cache":false}'), +(39582, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:27.28+00', '{"cached":null,"ignore_cache":false}'), +(39583, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:27.281+00', '{"cached":null,"ignore_cache":false}'), +(39584, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:28.004+00', '{"cached":null,"ignore_cache":false}'), +(39585, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:28.038+00', '{"cached":null,"ignore_cache":false}'), +(39586, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:31.883+00', '{"cached":null,"ignore_cache":false}'), +(39587, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:31.9+00', '{"cached":null,"ignore_cache":false}'), +(39588, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.135+00', '{"cached":null,"ignore_cache":false}'), +(39589, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.349+00', '{"cached":null,"ignore_cache":false}'), +(39590, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.424+00', '{"cached":null,"ignore_cache":false}'), +(39591, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.514+00', '{"cached":null,"ignore_cache":false}'), +(39592, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.525+00', '{"cached":null,"ignore_cache":false}'), +(39593, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.721+00', '{"cached":null,"ignore_cache":false}'), +(39594, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.722+00', '{"cached":null,"ignore_cache":false}'), +(39595, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.839+00', '{"cached":null,"ignore_cache":false}'), +(39596, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.848+00', '{"cached":null,"ignore_cache":false}'), +(39597, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.854+00', '{"cached":null,"ignore_cache":false}'), +(39598, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:32.863+00', '{"cached":null,"ignore_cache":false}'), +(39599, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:33.268+00', '{"cached":null,"ignore_cache":false}'), +(39600, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:36.743+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39601, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:36.8+00', '{"cached":null,"ignore_cache":false}'), +(39602, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:36.85+00', '{"cached":null,"ignore_cache":false}'), +(39603, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 09:39:37.116+00', '{"cached":null,"ignore_cache":false}'), +(39604, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:20.568+00', '{"cached":null,"ignore_cache":false}'), +(39605, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:21.442+00', '{"cached":null,"ignore_cache":false}'), +(39606, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:21.514+00', '{"cached":null,"ignore_cache":false}'), +(39607, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:21.647+00', '{"cached":null,"ignore_cache":false}'), +(39608, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:21.703+00', '{"cached":null,"ignore_cache":false}'), +(39609, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:21.838+00', '{"cached":null,"ignore_cache":false}'), +(39610, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:22.155+00', '{"cached":null,"ignore_cache":false}'), +(39611, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:22.314+00', '{"cached":null,"ignore_cache":false}'), +(39612, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:22.331+00', '{"cached":null,"ignore_cache":false}'), +(39613, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:22.37+00', '{"cached":null,"ignore_cache":false}'), +(39614, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:22.38+00', '{"cached":null,"ignore_cache":false}'), +(39615, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:22.403+00', '{"cached":null,"ignore_cache":false}'), +(39616, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:22.433+00', '{"cached":null,"ignore_cache":false}'), +(39617, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:23.92+00', '{"cached":null,"ignore_cache":false}'), +(39618, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 09:44:23.952+00', '{"cached":null,"ignore_cache":false}'), +(39619, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.482+00', '{"cached":null,"ignore_cache":false}'), +(39620, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.501+00', '{"cached":null,"ignore_cache":false}'), +(39621, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.505+00', '{"cached":null,"ignore_cache":false}'), +(39622, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.512+00', '{"cached":null,"ignore_cache":false}'), +(39623, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.515+00', '{"cached":null,"ignore_cache":false}'), +(39624, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.52+00', '{"cached":null,"ignore_cache":false}'), +(39625, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.522+00', '{"cached":null,"ignore_cache":false}'), +(39626, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.523+00', '{"cached":null,"ignore_cache":false}'), +(39627, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.524+00', '{"cached":null,"ignore_cache":false}'), +(39628, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.525+00', '{"cached":null,"ignore_cache":false}'), +(39629, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.526+00', '{"cached":null,"ignore_cache":false}'), +(39630, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.529+00', '{"cached":null,"ignore_cache":false}'), +(39631, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.531+00', '{"cached":null,"ignore_cache":false}'), +(39632, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.532+00', '{"cached":null,"ignore_cache":false}'), +(39633, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 09:49:18.533+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39634, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:09.708+00', '{"cached":null,"ignore_cache":null}'), +(39635, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:14.528+00', '{"cached":null,"ignore_cache":false}'), +(39636, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:15.604+00', '{"cached":null,"ignore_cache":false}'), +(39637, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:15.635+00', '{"cached":null,"ignore_cache":false}'), +(39638, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:15.649+00', '{"cached":null,"ignore_cache":false}'), +(39639, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:15.656+00', '{"cached":null,"ignore_cache":false}'), +(39640, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:15.779+00', '{"cached":null,"ignore_cache":false}'), +(39641, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:15.81+00', '{"cached":null,"ignore_cache":false}'), +(39642, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:15.822+00', '{"cached":null,"ignore_cache":false}'), +(39643, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.544+00', '{"cached":null,"ignore_cache":false}'), +(39644, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.568+00', '{"cached":null,"ignore_cache":false}'), +(39645, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.569+00', '{"cached":null,"ignore_cache":false}'), +(39646, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.829+00', '{"cached":null,"ignore_cache":false}'), +(39647, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.838+00', '{"cached":null,"ignore_cache":false}'), +(39648, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.841+00', '{"cached":null,"ignore_cache":false}'), +(39649, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.842+00', '{"cached":null,"ignore_cache":false}'), +(39650, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.844+00', '{"cached":null,"ignore_cache":false}'), +(39651, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.845+00', '{"cached":null,"ignore_cache":false}'), +(39652, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:20.846+00', '{"cached":null,"ignore_cache":false}'), +(39653, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:21.261+00', '{"cached":null,"ignore_cache":false}'), +(39654, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:21.281+00', '{"cached":null,"ignore_cache":false}'), +(39655, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:21.359+00', '{"cached":null,"ignore_cache":false}'), +(39656, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 09:54:21.38+00', '{"cached":null,"ignore_cache":false}'), +(39657, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:15.621+00', '{"cached":null,"ignore_cache":false}'), +(39658, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:16.334+00', '{"cached":null,"ignore_cache":false}'), +(39659, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:16.369+00', '{"cached":null,"ignore_cache":false}'), +(39660, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:16.42+00', '{"cached":null,"ignore_cache":false}'), +(39661, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:16.429+00', '{"cached":null,"ignore_cache":false}'), +(39662, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:16.487+00', '{"cached":null,"ignore_cache":false}'), +(39663, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:18.366+00', '{"cached":null,"ignore_cache":false}'), +(39664, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:18.369+00', '{"cached":null,"ignore_cache":false}'), +(39665, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:18.483+00', '{"cached":null,"ignore_cache":false}'), +(39666, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:18.501+00', '{"cached":null,"ignore_cache":false}'), +(39667, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:18.522+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39668, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:18.538+00', '{"cached":null,"ignore_cache":false}'), +(39669, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:18.614+00', '{"cached":null,"ignore_cache":false}'), +(39670, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:19.921+00', '{"cached":null,"ignore_cache":false}'), +(39671, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 09:59:19.974+00', '{"cached":null,"ignore_cache":false}'), +(39672, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:20.792+00', '{"cached":null,"ignore_cache":null}'), +(39673, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:25.599+00', '{"cached":null,"ignore_cache":null}'), +(39674, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:25.995+00', '{"cached":null,"ignore_cache":false}'), +(39675, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:26.012+00', '{"cached":null,"ignore_cache":false}'), +(39676, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.807+00', '{"cached":null,"ignore_cache":false}'), +(39677, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.897+00', '{"cached":null,"ignore_cache":false}'), +(39678, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:27.916+00', '{"cached":null,"ignore_cache":false}'), +(39679, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.004+00', '{"cached":null,"ignore_cache":false}'), +(39680, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.165+00', '{"cached":null,"ignore_cache":false}'), +(39681, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.295+00', '{"cached":null,"ignore_cache":false}'), +(39682, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.473+00', '{"cached":null,"ignore_cache":false}'), +(39683, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.597+00', '{"cached":null,"ignore_cache":false}'), +(39684, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.687+00', '{"cached":null,"ignore_cache":false}'), +(39685, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.696+00', '{"cached":null,"ignore_cache":false}'), +(39686, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:28.702+00', '{"cached":null,"ignore_cache":false}'), +(39687, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:29.296+00', '{"cached":null,"ignore_cache":false}'), +(39688, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:03:29.33+00', '{"cached":null,"ignore_cache":false}'), +(39689, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:12.613+00', '{"cached":null,"ignore_cache":false}'), +(39690, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:13.963+00', '{"cached":null,"ignore_cache":false}'), +(39691, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:14.016+00', '{"cached":null,"ignore_cache":false}'), +(39692, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:14.018+00', '{"cached":null,"ignore_cache":false}'), +(39693, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:14.019+00', '{"cached":null,"ignore_cache":false}'), +(39694, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:14.031+00', '{"cached":null,"ignore_cache":false}'), +(39695, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:15.649+00', '{"cached":null,"ignore_cache":false}'), +(39696, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:15.689+00', '{"cached":null,"ignore_cache":false}'), +(39697, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:15.781+00', '{"cached":null,"ignore_cache":false}'), +(39698, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:15.849+00', '{"cached":null,"ignore_cache":false}'), +(39699, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:15.889+00', '{"cached":null,"ignore_cache":false}'), +(39700, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:15.893+00', '{"cached":null,"ignore_cache":false}'), +(39701, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:15.943+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39702, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:17.103+00', '{"cached":null,"ignore_cache":false}'), +(39703, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:04:17.131+00', '{"cached":null,"ignore_cache":false}'), +(39704, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:46.953+00', '{"cached":null,"ignore_cache":null}'), +(39705, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:50.513+00', '{"cached":null,"ignore_cache":false}'), +(39706, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:50.518+00', '{"cached":null,"ignore_cache":false}'), +(39707, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:51.067+00', '{"cached":null,"ignore_cache":false}'), +(39708, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:51.101+00', '{"cached":null,"ignore_cache":false}'), +(39709, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:51.162+00', '{"cached":null,"ignore_cache":false}'), +(39710, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:52.888+00', '{"cached":null,"ignore_cache":false}'), +(39711, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:52.891+00', '{"cached":null,"ignore_cache":false}'), +(39712, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:52.915+00', '{"cached":null,"ignore_cache":null}'), +(39713, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:06:53.41+00', '{"cached":null,"ignore_cache":null}'), +(39714, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:03.881+00', '{"cached":null,"ignore_cache":null}'), +(39715, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:22.182+00', '{"cached":null,"ignore_cache":null}'), +(39716, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:23.38+00', '{"cached":null,"ignore_cache":false}'), +(39717, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:23.499+00', '{"cached":null,"ignore_cache":false}'), +(39718, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:23.645+00', '{"cached":null,"ignore_cache":false}'), +(39719, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:23.678+00', '{"cached":null,"ignore_cache":false}'), +(39720, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:23.764+00', '{"cached":null,"ignore_cache":false}'), +(39721, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:24.076+00', '{"cached":null,"ignore_cache":false}'), +(39722, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:24.094+00', '{"cached":null,"ignore_cache":false}'), +(39723, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:28.734+00', '{"cached":null,"ignore_cache":null}'), +(39724, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:29.246+00', '{"cached":null,"ignore_cache":null}'), +(39725, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:48.033+00', '{"cached":null,"ignore_cache":null}'), +(39726, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:59.784+00', '{"cached":null,"ignore_cache":null}'), +(39727, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:02.257+00', '{"cached":null,"ignore_cache":false}'), +(39728, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:02.445+00', '{"cached":null,"ignore_cache":false}'), +(39729, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:02.749+00', '{"cached":null,"ignore_cache":false}'), +(39730, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:02.777+00', '{"cached":null,"ignore_cache":false}'), +(39731, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:02.809+00', '{"cached":null,"ignore_cache":false}'), +(39732, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:03.023+00', '{"cached":null,"ignore_cache":false}'), +(39733, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:03.208+00', '{"cached":null,"ignore_cache":false}'), +(39734, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:14.655+00', '{"cached":null,"ignore_cache":null}'), +(39735, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:15.135+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39736, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:17.411+00', '{"cached":null,"ignore_cache":null}'), +(39737, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.478+00', '{"cached":null,"ignore_cache":false}'), +(39738, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.83+00', '{"cached":null,"ignore_cache":false}'), +(39739, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.877+00', '{"cached":null,"ignore_cache":false}'), +(39740, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:18.919+00', '{"cached":null,"ignore_cache":false}'), +(39741, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:19.308+00', '{"cached":null,"ignore_cache":false}'), +(39742, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:19.378+00', '{"cached":null,"ignore_cache":false}'), +(39743, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:19.428+00', '{"cached":null,"ignore_cache":false}'), +(39744, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:24.751+00', '{"cached":null,"ignore_cache":null}'), +(39745, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:25.52+00', '{"cached":null,"ignore_cache":null}'), +(39746, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:32.795+00', '{"cached":null,"ignore_cache":null}'), +(39747, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:34.237+00', '{"cached":null,"ignore_cache":null}'), +(39748, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:36.065+00', '{"cached":null,"ignore_cache":false}'), +(39749, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:36.121+00', '{"cached":null,"ignore_cache":false}'), +(39750, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:37.01+00', '{"cached":null,"ignore_cache":false}'), +(39751, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:37.307+00', '{"cached":null,"ignore_cache":false}'), +(39752, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:37.345+00', '{"cached":null,"ignore_cache":false}'), +(39753, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:37.603+00', '{"cached":null,"ignore_cache":false}'), +(39754, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:38.223+00', '{"cached":null,"ignore_cache":false}'), +(39755, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:08:38.29+00', '{"cached":null,"ignore_cache":false}'), +(39756, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:34.968+00', '{"cached":null,"ignore_cache":null}'), +(39757, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:39.981+00', '{"cached":null,"ignore_cache":false}'), +(39758, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:40.351+00', '{"cached":null,"ignore_cache":false}'), +(39759, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:40.378+00', '{"cached":null,"ignore_cache":false}'), +(39760, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:40.453+00', '{"cached":null,"ignore_cache":false}'), +(39761, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:40.488+00', '{"cached":null,"ignore_cache":false}'), +(39762, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:41.487+00', '{"cached":null,"ignore_cache":false}'), +(39763, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:41.508+00', '{"cached":null,"ignore_cache":false}'), +(39764, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:00.564+00', '{"cached":null,"ignore_cache":null}'), +(39765, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:07.158+00', '{"cached":null,"ignore_cache":null}'), +(39766, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:08.707+00', '{"cached":null,"ignore_cache":false}'), +(39767, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:08.723+00', '{"cached":null,"ignore_cache":false}'), +(39768, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:09.289+00', '{"cached":null,"ignore_cache":false}'), +(39769, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:09.385+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39770, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:09.462+00', '{"cached":null,"ignore_cache":false}'), +(39771, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:09.554+00', '{"cached":null,"ignore_cache":false}'), +(39772, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:09.864+00', '{"cached":null,"ignore_cache":false}'), +(39773, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:26.94+00', '{"cached":null,"ignore_cache":null}'), +(39774, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:27.357+00', '{"cached":null,"ignore_cache":null}'), +(39775, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:11:39.565+00', '{"cached":null,"ignore_cache":null}'), +(39776, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:12:01.095+00', '{"cached":null,"ignore_cache":null}'), +(39777, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:12:15.006+00', '{"cached":null,"ignore_cache":null}'), +(39778, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:12:49.718+00', '{"cached":null,"ignore_cache":null}'), +(39779, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:12:50.966+00', '{"cached":null,"ignore_cache":false}'), +(39780, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:06.59+00', '{"cached":null,"ignore_cache":null}'), +(39781, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:07.405+00', '{"cached":null,"ignore_cache":false}'), +(39782, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:08.552+00', '{"cached":null,"ignore_cache":false}'), +(39783, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:08.581+00', '{"cached":null,"ignore_cache":false}'), +(39784, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:08.772+00', '{"cached":null,"ignore_cache":false}'), +(39785, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:08.883+00', '{"cached":null,"ignore_cache":false}'), +(39786, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:09.914+00', '{"cached":null,"ignore_cache":false}'), +(39787, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:09.941+00', '{"cached":null,"ignore_cache":false}'), +(39788, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:39.243+00', '{"cached":null,"ignore_cache":null}'), +(39789, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:48.481+00', '{"cached":null,"ignore_cache":null}'), +(39790, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:13:49.292+00', '{"cached":null,"ignore_cache":false}'), +(39791, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:01.939+00', '{"cached":null,"ignore_cache":false}'), +(39792, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:03.138+00', '{"cached":null,"ignore_cache":false}'), +(39793, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:03.142+00', '{"cached":null,"ignore_cache":false}'), +(39794, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:03.323+00', '{"cached":null,"ignore_cache":false}'), +(39795, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:03.416+00', '{"cached":null,"ignore_cache":false}'), +(39796, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:04.443+00', '{"cached":null,"ignore_cache":false}'), +(39797, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:04.533+00', '{"cached":null,"ignore_cache":false}'), +(39798, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:08.289+00', '{"cached":null,"ignore_cache":false}'), +(39799, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:08.318+00', '{"cached":null,"ignore_cache":false}'), +(39800, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:08.335+00', '{"cached":null,"ignore_cache":false}'), +(39801, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:08.35+00', '{"cached":null,"ignore_cache":false}'), +(39802, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:08.384+00', '{"cached":null,"ignore_cache":false}'), +(39803, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:08.782+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39804, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:08.846+00', '{"cached":null,"ignore_cache":false}'), +(39805, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:27.197+00', '{"cached":null,"ignore_cache":false}'), +(39806, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:27.75+00', '{"cached":null,"ignore_cache":false}'), +(39807, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:27.842+00', '{"cached":null,"ignore_cache":false}'), +(39808, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.024+00', '{"cached":null,"ignore_cache":false}'), +(39809, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:28.045+00', '{"cached":null,"ignore_cache":false}'), +(39810, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:29.21+00', '{"cached":null,"ignore_cache":false}'), +(39811, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:29.463+00', '{"cached":null,"ignore_cache":false}'), +(39812, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:29.86+00', '{"cached":null,"ignore_cache":false}'), +(39813, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:29.888+00', '{"cached":null,"ignore_cache":false}'), +(39814, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:29.895+00', '{"cached":null,"ignore_cache":false}'), +(39815, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:30.129+00', '{"cached":null,"ignore_cache":false}'), +(39816, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:30.418+00', '{"cached":null,"ignore_cache":false}'), +(39817, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:16:30.694+00', '{"cached":null,"ignore_cache":false}'), +(39818, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:25.249+00', '{"cached":null,"ignore_cache":false}'), +(39819, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:25.429+00', '{"cached":null,"ignore_cache":false}'), +(39820, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:29.768+00', '{"cached":null,"ignore_cache":false}'), +(39821, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:30.839+00', '{"cached":null,"ignore_cache":false}'), +(39822, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:30.891+00', '{"cached":null,"ignore_cache":false}'), +(39823, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:30.956+00', '{"cached":null,"ignore_cache":false}'), +(39824, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:31.021+00', '{"cached":null,"ignore_cache":false}'), +(39825, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:31.07+00', '{"cached":null,"ignore_cache":false}'), +(39826, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:31.148+00', '{"cached":null,"ignore_cache":false}'), +(39827, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:31.171+00', '{"cached":null,"ignore_cache":false}'), +(39828, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:36.605+00', '{"cached":null,"ignore_cache":false}'), +(39829, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:36.931+00', '{"cached":null,"ignore_cache":false}'), +(39830, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.079+00', '{"cached":null,"ignore_cache":false}'), +(39831, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.081+00', '{"cached":null,"ignore_cache":false}'), +(39832, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.086+00', '{"cached":null,"ignore_cache":false}'), +(39833, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.317+00', '{"cached":null,"ignore_cache":false}'), +(39834, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.318+00', '{"cached":null,"ignore_cache":false}'), +(39835, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.325+00', '{"cached":null,"ignore_cache":false}'), +(39836, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.764+00', '{"cached":null,"ignore_cache":false}'), +(39837, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.82+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39838, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.838+00', '{"cached":null,"ignore_cache":false}'), +(39839, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.854+00', '{"cached":null,"ignore_cache":false}'), +(39840, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:37.855+00', '{"cached":null,"ignore_cache":false}'), +(39841, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:38.041+00', '{"cached":null,"ignore_cache":false}'), +(39842, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:38.114+00', '{"cached":null,"ignore_cache":false}'), +(39843, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:41.908+00', '{"cached":null,"ignore_cache":false}'), +(39844, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:42.216+00', '{"cached":null,"ignore_cache":false}'), +(39845, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:42.305+00', '{"cached":null,"ignore_cache":false}'), +(39846, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:18:42.321+00', '{"cached":null,"ignore_cache":false}'), +(39847, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:07.173+00', '{"cached":null,"ignore_cache":false}'), +(39848, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:07.903+00', '{"cached":null,"ignore_cache":false}'), +(39849, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:09.85+00', '{"cached":null,"ignore_cache":false}'), +(39850, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:09.851+00', '{"cached":null,"ignore_cache":false}'), +(39851, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:09.852+00', '{"cached":null,"ignore_cache":false}'), +(39852, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:10.021+00', '{"cached":null,"ignore_cache":false}'), +(39853, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:10.225+00', '{"cached":null,"ignore_cache":false}'), +(39854, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:10.226+00', '{"cached":null,"ignore_cache":false}'), +(39855, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:10.318+00', '{"cached":null,"ignore_cache":false}'), +(39856, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:10.387+00', '{"cached":null,"ignore_cache":false}'), +(39857, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.153+00', '{"cached":null,"ignore_cache":false}'), +(39858, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.312+00', '{"cached":null,"ignore_cache":false}'), +(39859, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.323+00', '{"cached":null,"ignore_cache":false}'), +(39860, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.327+00', '{"cached":null,"ignore_cache":false}'), +(39861, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.344+00', '{"cached":null,"ignore_cache":false}'), +(39862, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.414+00', '{"cached":null,"ignore_cache":false}'), +(39863, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.469+00', '{"cached":null,"ignore_cache":false}'), +(39864, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.526+00', '{"cached":null,"ignore_cache":false}'), +(39865, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.551+00', '{"cached":null,"ignore_cache":false}'), +(39866, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.593+00', '{"cached":null,"ignore_cache":false}'), +(39867, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.646+00', '{"cached":null,"ignore_cache":false}'), +(39868, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.683+00', '{"cached":null,"ignore_cache":false}'), +(39869, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.722+00', '{"cached":null,"ignore_cache":false}'), +(39870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.841+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39871, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:13.997+00', '{"cached":null,"ignore_cache":false}'), +(39872, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:17.711+00', '{"cached":null,"ignore_cache":false}'), +(39873, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:17.802+00', '{"cached":null,"ignore_cache":false}'), +(39874, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:17.853+00', '{"cached":null,"ignore_cache":false}'), +(39875, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:17.868+00', '{"cached":null,"ignore_cache":false}'), +(39876, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:19:17.928+00', '{"cached":null,"ignore_cache":false}'), +(39877, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:45.979+00', '{"cached":null,"ignore_cache":false}'), +(39878, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:46.361+00', '{"cached":null,"ignore_cache":false}'), +(39879, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:46.372+00', '{"cached":null,"ignore_cache":false}'), +(39880, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:46.436+00', '{"cached":null,"ignore_cache":false}'), +(39881, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:46.877+00', '{"cached":null,"ignore_cache":false}'), +(39882, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.634+00', '{"cached":null,"ignore_cache":false}'), +(39883, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.725+00', '{"cached":null,"ignore_cache":false}'), +(39884, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.797+00', '{"cached":null,"ignore_cache":false}'), +(39885, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.817+00', '{"cached":null,"ignore_cache":false}'), +(39886, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.872+00', '{"cached":null,"ignore_cache":false}'), +(39887, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.917+00', '{"cached":null,"ignore_cache":false}'), +(39888, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:47.948+00', '{"cached":null,"ignore_cache":false}'), +(39889, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:48.393+00', '{"cached":null,"ignore_cache":false}'), +(39890, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:48.405+00', '{"cached":null,"ignore_cache":false}'), +(39891, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.096+00', '{"cached":null,"ignore_cache":false}'), +(39892, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.228+00', '{"cached":null,"ignore_cache":false}'), +(39893, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.285+00', '{"cached":null,"ignore_cache":false}'), +(39894, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.419+00', '{"cached":null,"ignore_cache":false}'), +(39895, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.624+00', '{"cached":null,"ignore_cache":false}'), +(39896, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.775+00', '{"cached":null,"ignore_cache":false}'), +(39897, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:20:58.868+00', '{"cached":null,"ignore_cache":false}'), +(39898, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:03.123+00', '{"cached":null,"ignore_cache":false}'), +(39899, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:03.138+00', '{"cached":null,"ignore_cache":false}'), +(39900, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:03.189+00', '{"cached":null,"ignore_cache":false}'), +(39901, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:03.274+00', '{"cached":null,"ignore_cache":false}'), +(39902, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:03.346+00', '{"cached":null,"ignore_cache":false}'), +(39903, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:03.688+00', '{"cached":null,"ignore_cache":false}'), +(39904, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:03.691+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39905, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.31+00', '{"cached":null,"ignore_cache":false}'), +(39906, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.612+00', '{"cached":null,"ignore_cache":false}'), +(39907, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.626+00', '{"cached":null,"ignore_cache":false}'), +(39908, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.665+00', '{"cached":null,"ignore_cache":false}'), +(39909, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:10.829+00', '{"cached":null,"ignore_cache":false}'), +(39910, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.047+00', '{"cached":null,"ignore_cache":false}'), +(39911, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.078+00', '{"cached":null,"ignore_cache":false}'), +(39912, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.581+00', '{"cached":null,"ignore_cache":false}'), +(39913, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.817+00', '{"cached":null,"ignore_cache":false}'), +(39914, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:11.847+00', '{"cached":null,"ignore_cache":false}'), +(39915, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:12.038+00', '{"cached":null,"ignore_cache":false}'), +(39916, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:12.086+00', '{"cached":null,"ignore_cache":false}'), +(39917, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:12.087+00', '{"cached":null,"ignore_cache":false}'), +(39918, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:12.284+00', '{"cached":null,"ignore_cache":false}'), +(39919, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.437+00', '{"cached":null,"ignore_cache":false}'), +(39920, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.606+00', '{"cached":null,"ignore_cache":false}'), +(39921, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.664+00', '{"cached":null,"ignore_cache":false}'), +(39922, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.69+00', '{"cached":null,"ignore_cache":false}'), +(39923, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.698+00', '{"cached":null,"ignore_cache":false}'), +(39924, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:28.981+00', '{"cached":null,"ignore_cache":false}'), +(39925, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:29.092+00', '{"cached":null,"ignore_cache":false}'), +(39926, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:32.794+00', '{"cached":null,"ignore_cache":false}'), +(39927, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:33.032+00', '{"cached":null,"ignore_cache":false}'), +(39928, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:33.055+00', '{"cached":null,"ignore_cache":false}'), +(39929, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:33.056+00', '{"cached":null,"ignore_cache":false}'), +(39930, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:33.398+00', '{"cached":null,"ignore_cache":false}'), +(39931, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:33.425+00', '{"cached":null,"ignore_cache":false}'), +(39932, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:21:33.531+00', '{"cached":null,"ignore_cache":false}'), +(39933, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.042+00', '{"cached":null,"ignore_cache":false}'), +(39934, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.551+00', '{"cached":null,"ignore_cache":false}'), +(39935, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.581+00', '{"cached":null,"ignore_cache":false}'), +(39936, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.765+00', '{"cached":null,"ignore_cache":false}'), +(39937, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.782+00', '{"cached":null,"ignore_cache":false}'), +(39938, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:07.93+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:08.394+00', '{"cached":null,"ignore_cache":false}'), +(39940, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:08.585+00', '{"cached":null,"ignore_cache":false}'), +(39941, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:08.696+00', '{"cached":null,"ignore_cache":false}'), +(39942, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:08.781+00', '{"cached":null,"ignore_cache":false}'), +(39943, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:09.11+00', '{"cached":null,"ignore_cache":false}'), +(39944, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:09.144+00', '{"cached":null,"ignore_cache":false}'), +(39945, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:09.584+00', '{"cached":null,"ignore_cache":false}'), +(39946, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:10.442+00', '{"cached":null,"ignore_cache":false}'), +(39947, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:10.605+00', '{"cached":null,"ignore_cache":false}'), +(39948, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.049+00', '{"cached":null,"ignore_cache":false}'), +(39949, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.055+00', '{"cached":null,"ignore_cache":false}'), +(39950, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.545+00', '{"cached":null,"ignore_cache":false}'), +(39951, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.553+00', '{"cached":null,"ignore_cache":false}'), +(39952, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.67+00', '{"cached":null,"ignore_cache":false}'), +(39953, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.717+00', '{"cached":null,"ignore_cache":false}'), +(39954, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.887+00', '{"cached":null,"ignore_cache":false}'), +(39955, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.907+00', '{"cached":null,"ignore_cache":false}'), +(39956, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.941+00', '{"cached":null,"ignore_cache":false}'), +(39957, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:11.967+00', '{"cached":null,"ignore_cache":false}'), +(39958, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:12.296+00', '{"cached":null,"ignore_cache":false}'), +(39959, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:12.342+00', '{"cached":null,"ignore_cache":false}'), +(39960, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:12.444+00', '{"cached":null,"ignore_cache":false}'), +(39961, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:22:13.161+00', '{"cached":null,"ignore_cache":false}'), +(39962, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:23:06.094+00', '{"cached":null,"ignore_cache":null}'), +(39963, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:23:53.412+00', '{"cached":null,"ignore_cache":null}'), +(39964, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:23:55.819+00', '{"cached":null,"ignore_cache":false}'), +(39965, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:25:56.583+00', '{"cached":null,"ignore_cache":null}'), +(39966, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:00.571+00', '{"cached":null,"ignore_cache":false}'), +(39967, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:00.954+00', '{"cached":null,"ignore_cache":false}'), +(39968, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:01.075+00', '{"cached":null,"ignore_cache":false}'), +(39969, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:01.296+00', '{"cached":null,"ignore_cache":null}'), +(39970, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:01.508+00', '{"cached":null,"ignore_cache":false}'), +(39971, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:02.63+00', '{"cached":null,"ignore_cache":false}'), +(39972, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:02.837+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(39973, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:05.181+00', '{"cached":null,"ignore_cache":false}'), +(39974, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:05.237+00', '{"cached":null,"ignore_cache":false}'), +(39975, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:21.182+00', '{"cached":null,"ignore_cache":null}'), +(39976, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:21.902+00', '{"cached":null,"ignore_cache":false}'), +(39977, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:37.141+00', '{"cached":null,"ignore_cache":null}'), +(39978, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:38.014+00', '{"cached":null,"ignore_cache":false}'), +(39979, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:38.726+00', '{"cached":null,"ignore_cache":false}'), +(39980, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:38.807+00', '{"cached":null,"ignore_cache":false}'), +(39981, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:38.813+00', '{"cached":null,"ignore_cache":false}'), +(39982, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:39.071+00', '{"cached":null,"ignore_cache":false}'), +(39983, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:39.072+00', '{"cached":null,"ignore_cache":false}'), +(39984, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:26:39.077+00', '{"cached":null,"ignore_cache":false}'), +(39985, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.073+00', '{"cached":null,"ignore_cache":false}'), +(39986, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.222+00', '{"cached":null,"ignore_cache":false}'), +(39987, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.309+00', '{"cached":null,"ignore_cache":false}'), +(39988, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.38+00', '{"cached":null,"ignore_cache":false}'), +(39989, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.407+00', '{"cached":null,"ignore_cache":false}'), +(39990, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:08.7+00', '{"cached":null,"ignore_cache":false}'), +(39991, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.02+00', '{"cached":null,"ignore_cache":false}'), +(39992, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.241+00', '{"cached":null,"ignore_cache":false}'), +(39993, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.246+00', '{"cached":null,"ignore_cache":false}'), +(39994, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.26+00', '{"cached":null,"ignore_cache":false}'), +(39995, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.289+00', '{"cached":null,"ignore_cache":false}'), +(39996, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.331+00', '{"cached":null,"ignore_cache":false}'), +(39997, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.361+00', '{"cached":null,"ignore_cache":false}'), +(39998, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.428+00', '{"cached":null,"ignore_cache":false}'), +(39999, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:09.459+00', '{"cached":null,"ignore_cache":false}'), +(40000, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:58.719+00', '{"cached":null,"ignore_cache":null}'), +(40001, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:28:57.031+00', '{"cached":null,"ignore_cache":null}'), +(40002, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:04.188+00', '{"cached":null,"ignore_cache":null}'), +(40003, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:09.347+00', '{"cached":null,"ignore_cache":null}'), +(40004, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:18.187+00', '{"cached":null,"ignore_cache":null}'), +(40005, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:29:21.303+00', '{"cached":null,"ignore_cache":null}'), +(40006, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 10:30:25.46+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40007, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 10:30:30.633+00', '{"cached":null,"ignore_cache":null}'), +(40008, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 10:30:31.616+00', '{"cached":null,"ignore_cache":false}'), +(40009, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:11.058+00', '{"cached":null,"ignore_cache":false}'), +(40010, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:12.238+00', '{"cached":null,"ignore_cache":false}'), +(40011, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:12.245+00', '{"cached":null,"ignore_cache":false}'), +(40012, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:12.299+00', '{"cached":null,"ignore_cache":false}'), +(40013, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:12.301+00', '{"cached":null,"ignore_cache":false}'), +(40014, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:12.689+00', '{"cached":null,"ignore_cache":false}'), +(40015, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:12.841+00', '{"cached":null,"ignore_cache":false}'), +(40016, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:12.877+00', '{"cached":null,"ignore_cache":false}'), +(40017, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:13.126+00', '{"cached":null,"ignore_cache":false}'), +(40018, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:13.128+00', '{"cached":null,"ignore_cache":false}'), +(40019, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:13.139+00', '{"cached":null,"ignore_cache":false}'), +(40020, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:13.2+00', '{"cached":null,"ignore_cache":false}'), +(40021, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:13.279+00', '{"cached":null,"ignore_cache":false}'), +(40022, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:14.509+00', '{"cached":null,"ignore_cache":false}'), +(40023, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:14.568+00', '{"cached":null,"ignore_cache":false}'), +(40024, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:52.548+00', '{"cached":null,"ignore_cache":null}'), +(40025, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 10:32:55.088+00', '{"cached":null,"ignore_cache":false}'), +(40026, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:09.215+00', '{"cached":null,"ignore_cache":null}'), +(40027, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:14.049+00', '{"cached":null,"ignore_cache":false}'), +(40028, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:43.619+00', '{"cached":null,"ignore_cache":null}'), +(40029, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:44.642+00', '{"cached":null,"ignore_cache":false}'), +(40030, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:45.761+00', '{"cached":null,"ignore_cache":false}'), +(40031, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:45.845+00', '{"cached":null,"ignore_cache":false}'), +(40032, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:45.903+00', '{"cached":null,"ignore_cache":false}'), +(40033, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:46.043+00', '{"cached":null,"ignore_cache":false}'), +(40034, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:46.503+00', '{"cached":null,"ignore_cache":false}'), +(40035, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:46.585+00', '{"cached":null,"ignore_cache":false}'), +(40036, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:49.451+00', '{"cached":null,"ignore_cache":null}'), +(40037, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:34:51.921+00', '{"cached":null,"ignore_cache":false}'), +(40038, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:38.208+00', '{"cached":null,"ignore_cache":null}'), +(40039, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:41+00', '{"cached":null,"ignore_cache":false}'), +(40040, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:41.517+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40041, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:41.55+00', '{"cached":null,"ignore_cache":false}'), +(40042, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:41.743+00', '{"cached":null,"ignore_cache":false}'), +(40043, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:41.807+00', '{"cached":null,"ignore_cache":false}'), +(40044, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:43.124+00', '{"cached":null,"ignore_cache":false}'), +(40045, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:43.181+00', '{"cached":null,"ignore_cache":false}'), +(40046, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:49.603+00', '{"cached":null,"ignore_cache":null}'), +(40047, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:35:50.937+00', '{"cached":null,"ignore_cache":false}'), +(40048, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:38.475+00', '{"cached":null,"ignore_cache":null}'), +(40049, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:43.316+00', '{"cached":null,"ignore_cache":false}'), +(40050, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:43.329+00', '{"cached":null,"ignore_cache":false}'), +(40051, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:44.237+00', '{"cached":null,"ignore_cache":false}'), +(40052, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:44.549+00', '{"cached":null,"ignore_cache":false}'), +(40053, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:44.617+00', '{"cached":null,"ignore_cache":false}'), +(40054, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:45.131+00', '{"cached":null,"ignore_cache":false}'), +(40055, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:37:45.342+00', '{"cached":null,"ignore_cache":false}'), +(40056, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:39:29.471+00', '{"cached":null,"ignore_cache":null}'), +(40057, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:39:33.895+00', '{"cached":null,"ignore_cache":false}'), +(40058, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:00.605+00', '{"cached":null,"ignore_cache":null}'), +(40059, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:02.477+00', '{"cached":null,"ignore_cache":false}'), +(40060, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:03.588+00', '{"cached":null,"ignore_cache":false}'), +(40061, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:03.593+00', '{"cached":null,"ignore_cache":false}'), +(40062, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:03.655+00', '{"cached":null,"ignore_cache":false}'), +(40063, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:03.788+00', '{"cached":null,"ignore_cache":false}'), +(40064, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:04.352+00', '{"cached":null,"ignore_cache":false}'), +(40065, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:04.379+00', '{"cached":null,"ignore_cache":false}'), +(40066, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:19.665+00', '{"cached":null,"ignore_cache":null}'), +(40067, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:34.864+00', '{"cached":null,"ignore_cache":null}'), +(40068, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:40.187+00', '{"cached":null,"ignore_cache":null}'), +(40069, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:44.402+00', '{"cached":null,"ignore_cache":null}'), +(40070, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-01-24 10:40:47.687+00', '{"cached":null,"ignore_cache":null}'), +(40071, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:28.653+00', '{"cached":null,"ignore_cache":null}'), +(40072, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:32.014+00', '{"cached":null,"ignore_cache":null}'), +(40073, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:35.337+00', '{"cached":null,"ignore_cache":null}'), +(40074, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:41:59.008+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40075, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:42:00.147+00', '{"cached":null,"ignore_cache":false}'), +(40076, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:42:00.641+00', '{"cached":null,"ignore_cache":false}'), +(40077, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:42:00.729+00', '{"cached":null,"ignore_cache":false}'), +(40078, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:42:00.842+00', '{"cached":null,"ignore_cache":false}'), +(40079, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:42:00.976+00', '{"cached":null,"ignore_cache":false}'), +(40080, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:42:01.241+00', '{"cached":null,"ignore_cache":false}'), +(40081, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:42:01.309+00', '{"cached":null,"ignore_cache":false}'), +(40082, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:43:14.814+00', '{"cached":null,"ignore_cache":null}'), +(40083, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:43:15.92+00', '{"cached":null,"ignore_cache":false}'), +(40084, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:39.268+00', '{"cached":null,"ignore_cache":null}'), +(40085, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:40.674+00', '{"cached":null,"ignore_cache":false}'), +(40086, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:53.693+00', '{"cached":null,"ignore_cache":null}'), +(40087, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:54.294+00', '{"cached":null,"ignore_cache":false}'), +(40088, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:57.184+00', '{"cached":null,"ignore_cache":null}'), +(40089, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2023-01-24 10:57:57.862+00', '{"cached":null,"ignore_cache":false}'), +(40090, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:09.023+00', '{"cached":null,"ignore_cache":null}'), +(40091, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:11.854+00', '{"cached":null,"ignore_cache":false}'), +(40092, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:12.592+00', '{"cached":null,"ignore_cache":false}'), +(40093, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:12.732+00', '{"cached":null,"ignore_cache":false}'), +(40094, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:12.784+00', '{"cached":null,"ignore_cache":false}'), +(40095, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:12.914+00', '{"cached":null,"ignore_cache":false}'), +(40096, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:13.913+00', '{"cached":null,"ignore_cache":false}'), +(40097, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:13.936+00', '{"cached":null,"ignore_cache":false}'), +(40098, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:31.157+00', '{"cached":null,"ignore_cache":null}'), +(40099, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:33.098+00', '{"cached":null,"ignore_cache":false}'), +(40100, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:34.243+00', '{"cached":null,"ignore_cache":false}'), +(40101, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:34.462+00', '{"cached":null,"ignore_cache":false}'), +(40102, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:34.466+00', '{"cached":null,"ignore_cache":false}'), +(40103, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:34.643+00', '{"cached":null,"ignore_cache":false}'), +(40104, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:34.681+00', '{"cached":null,"ignore_cache":false}'), +(40105, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:34.797+00', '{"cached":null,"ignore_cache":false}'), +(40106, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:34.888+00', '{"cached":null,"ignore_cache":false}'), +(40107, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:38.041+00', '{"cached":null,"ignore_cache":null}'), +(40108, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 10:59:38.561+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40109, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:01:57.457+00', '{"cached":null,"ignore_cache":null}'), +(40110, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:02:36.677+00', '{"cached":null,"ignore_cache":null}'), +(40111, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:03:15.662+00', '{"cached":null,"ignore_cache":null}'), +(40112, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:03:32.871+00', '{"cached":null,"ignore_cache":null}'), +(40113, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:06:42.421+00', '{"cached":null,"ignore_cache":null}'), +(40114, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:06:56.849+00', '{"cached":null,"ignore_cache":null}'), +(40115, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:07:44.45+00', '{"cached":null,"ignore_cache":null}'), +(40116, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:48.582+00', '{"cached":null,"ignore_cache":null}'), +(40117, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:52.519+00', '{"cached":null,"ignore_cache":false}'), +(40118, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:53.237+00', '{"cached":null,"ignore_cache":false}'), +(40119, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:53.272+00', '{"cached":null,"ignore_cache":false}'), +(40120, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:53.343+00', '{"cached":null,"ignore_cache":false}'), +(40121, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:53.593+00', '{"cached":null,"ignore_cache":false}'), +(40122, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:54.34+00', '{"cached":null,"ignore_cache":false}'), +(40123, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:54.358+00', '{"cached":null,"ignore_cache":false}'), +(40124, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:56.818+00', '{"cached":null,"ignore_cache":null}'), +(40125, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:18:57.744+00', '{"cached":null,"ignore_cache":false}'), +(40126, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:08.841+00', '{"cached":null,"ignore_cache":null}'), +(40127, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:11.836+00', '{"cached":null,"ignore_cache":false}'), +(40128, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:11.853+00', '{"cached":null,"ignore_cache":false}'), +(40129, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:11.955+00', '{"cached":null,"ignore_cache":false}'), +(40130, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:12.017+00', '{"cached":null,"ignore_cache":false}'), +(40131, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:12.604+00', '{"cached":null,"ignore_cache":false}'), +(40132, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:12.608+00', '{"cached":null,"ignore_cache":false}'), +(40133, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:12.745+00', '{"cached":null,"ignore_cache":false}'), +(40134, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:15.84+00', '{"cached":null,"ignore_cache":null}'), +(40135, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:16.588+00', '{"cached":null,"ignore_cache":false}'), +(40136, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:42.886+00', '{"cached":null,"ignore_cache":false}'), +(40137, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:53.661+00', '{"cached":null,"ignore_cache":null}'), +(40138, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:54.895+00', '{"cached":null,"ignore_cache":false}'), +(40139, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:56.215+00', '{"cached":null,"ignore_cache":false}'), +(40140, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:56.359+00', '{"cached":null,"ignore_cache":false}'), +(40141, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:56.481+00', '{"cached":null,"ignore_cache":false}'), +(40142, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:56.701+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40143, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:57.795+00', '{"cached":null,"ignore_cache":false}'), +(40144, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:58.001+00', '{"cached":null,"ignore_cache":false}'), +(40145, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.423+00', '{"cached":null,"ignore_cache":false}'), +(40146, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.798+00', '{"cached":null,"ignore_cache":false}'), +(40147, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.873+00', '{"cached":null,"ignore_cache":false}'), +(40148, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:02.985+00', '{"cached":null,"ignore_cache":false}'), +(40149, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:03.481+00', '{"cached":null,"ignore_cache":false}'), +(40150, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:03.618+00', '{"cached":null,"ignore_cache":false}'), +(40151, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:03.659+00', '{"cached":null,"ignore_cache":false}'), +(40152, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:08.076+00', '{"cached":null,"ignore_cache":false}'), +(40153, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:08.281+00', '{"cached":null,"ignore_cache":false}'), +(40154, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:08.405+00', '{"cached":null,"ignore_cache":false}'), +(40155, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:08.488+00', '{"cached":null,"ignore_cache":false}'), +(40156, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:08.61+00', '{"cached":null,"ignore_cache":false}'), +(40157, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:08.877+00', '{"cached":null,"ignore_cache":false}'), +(40158, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:08.914+00', '{"cached":null,"ignore_cache":false}'), +(40159, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.486+00', '{"cached":null,"ignore_cache":false}'), +(40160, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.635+00', '{"cached":null,"ignore_cache":false}'), +(40161, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:14.981+00', '{"cached":null,"ignore_cache":false}'), +(40162, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:15.13+00', '{"cached":null,"ignore_cache":false}'), +(40163, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:15.457+00', '{"cached":null,"ignore_cache":false}'), +(40164, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:15.706+00', '{"cached":null,"ignore_cache":false}'), +(40165, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:15.723+00', '{"cached":null,"ignore_cache":false}'), +(40166, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.778+00', '{"cached":null,"ignore_cache":false}'), +(40167, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.83+00', '{"cached":null,"ignore_cache":false}'), +(40168, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.842+00', '{"cached":null,"ignore_cache":false}'), +(40169, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.858+00', '{"cached":null,"ignore_cache":false}'), +(40170, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:16.942+00', '{"cached":null,"ignore_cache":false}'), +(40171, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:17.274+00', '{"cached":null,"ignore_cache":false}'), +(40172, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:21:17.359+00', '{"cached":null,"ignore_cache":false}'), +(40173, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:09.234+00', '{"cached":null,"ignore_cache":null}'), +(40174, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:10.909+00', '{"cached":null,"ignore_cache":false}'), +(40175, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:11.537+00', '{"cached":null,"ignore_cache":false}'), +(40176, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:11.618+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40177, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:11.688+00', '{"cached":null,"ignore_cache":false}'), +(40178, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:11.843+00', '{"cached":null,"ignore_cache":false}'), +(40179, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:12.344+00', '{"cached":null,"ignore_cache":false}'), +(40180, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:12.358+00', '{"cached":null,"ignore_cache":false}'), +(40181, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:37.641+00', '{"cached":null,"ignore_cache":null}'), +(40182, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:40.744+00', '{"cached":null,"ignore_cache":false}'), +(40183, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.22+00', '{"cached":null,"ignore_cache":null}'), +(40184, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:51.965+00', '{"cached":null,"ignore_cache":false}'), +(40185, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:52.845+00', '{"cached":null,"ignore_cache":false}'), +(40186, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:52.86+00', '{"cached":null,"ignore_cache":false}'), +(40187, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:52.875+00', '{"cached":null,"ignore_cache":false}'), +(40188, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:53.693+00', '{"cached":null,"ignore_cache":false}'), +(40189, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:53.94+00', '{"cached":null,"ignore_cache":false}'), +(40190, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:22:54.062+00', '{"cached":null,"ignore_cache":false}'), +(40191, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.264+00', '{"cached":null,"ignore_cache":null}'), +(40192, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:09.989+00', '{"cached":null,"ignore_cache":false}'), +(40193, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:10.743+00', '{"cached":null,"ignore_cache":false}'), +(40194, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:10.797+00', '{"cached":null,"ignore_cache":false}'), +(40195, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:10.971+00', '{"cached":null,"ignore_cache":false}'), +(40196, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:11.156+00', '{"cached":null,"ignore_cache":false}'), +(40197, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:11.537+00', '{"cached":null,"ignore_cache":false}'), +(40198, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:11.591+00', '{"cached":null,"ignore_cache":false}'), +(40199, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:12.842+00', '{"cached":null,"ignore_cache":null}'), +(40200, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:23:13.61+00', '{"cached":null,"ignore_cache":false}'), +(40201, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:21.715+00', '{"cached":null,"ignore_cache":null}'), +(40202, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:25.722+00', '{"cached":null,"ignore_cache":false}'), +(40203, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:25.778+00', '{"cached":null,"ignore_cache":false}'), +(40204, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:25.795+00', '{"cached":null,"ignore_cache":false}'), +(40205, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:25.826+00', '{"cached":null,"ignore_cache":false}'), +(40206, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:26.251+00', '{"cached":null,"ignore_cache":false}'), +(40207, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:27.122+00', '{"cached":null,"ignore_cache":false}'), +(40208, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 11:29:27.244+00', '{"cached":null,"ignore_cache":false}'), +(40209, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:41.064+00', '{"cached":null,"ignore_cache":null}'), +(40210, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:48.351+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40211, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:49.046+00', '{"cached":null,"ignore_cache":false}'), +(40212, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:54.005+00', '{"cached":null,"ignore_cache":null}'), +(40213, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:54.824+00', '{"cached":null,"ignore_cache":false}'), +(40214, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 11:32:04.879+00', '{"cached":null,"ignore_cache":null}'), +(40215, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 11:32:05.791+00', '{"cached":null,"ignore_cache":false}'), +(40216, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 11:33:37.532+00', '{"cached":null,"ignore_cache":false}'), +(40217, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:10.803+00', '{"cached":null,"ignore_cache":null}'), +(40218, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.77+00', '{"cached":null,"ignore_cache":false}'), +(40219, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:12.862+00', '{"cached":null,"ignore_cache":false}'), +(40220, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:13.819+00', '{"cached":null,"ignore_cache":false}'), +(40221, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:13.838+00', '{"cached":null,"ignore_cache":false}'), +(40222, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:13.855+00', '{"cached":null,"ignore_cache":false}'), +(40223, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:13.88+00', '{"cached":null,"ignore_cache":false}'), +(40224, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:13.919+00', '{"cached":null,"ignore_cache":false}'), +(40225, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:13.975+00', '{"cached":null,"ignore_cache":false}'), +(40226, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:20.294+00', '{"cached":null,"ignore_cache":null}'), +(40227, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:35:20.766+00', '{"cached":null,"ignore_cache":null}'), +(40228, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 11:40:18.515+00', '{"cached":null,"ignore_cache":null}'), +(40229, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:17.333+00', '{"cached":null,"ignore_cache":null}'), +(40230, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:21.766+00', '{"cached":null,"ignore_cache":false}'), +(40231, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:22.747+00', '{"cached":null,"ignore_cache":null}'), +(40232, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:26.28+00', '{"cached":null,"ignore_cache":false}'), +(40233, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:26.396+00', '{"cached":null,"ignore_cache":false}'), +(40234, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:27.059+00', '{"cached":null,"ignore_cache":false}'), +(40235, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:28.062+00', '{"cached":null,"ignore_cache":false}'), +(40236, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:28.208+00', '{"cached":null,"ignore_cache":false}'), +(40237, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:28.277+00', '{"cached":null,"ignore_cache":false}'), +(40238, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:28.339+00', '{"cached":null,"ignore_cache":false}'), +(40239, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:28.406+00', '{"cached":null,"ignore_cache":false}'), +(40240, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:48.933+00', '{"cached":null,"ignore_cache":null}'), +(40241, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 11:51:50.097+00', '{"cached":null,"ignore_cache":false}'), +(40242, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:24.247+00', '{"cached":null,"ignore_cache":null}'), +(40243, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.085+00', '{"cached":null,"ignore_cache":false}'), +(40244, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.172+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40245, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.263+00', '{"cached":null,"ignore_cache":false}'), +(40246, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.682+00', '{"cached":null,"ignore_cache":false}'), +(40247, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.734+00', '{"cached":null,"ignore_cache":false}'), +(40248, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.845+00', '{"cached":null,"ignore_cache":false}'), +(40249, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.925+00', '{"cached":null,"ignore_cache":false}'), +(40250, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:26.993+00', '{"cached":null,"ignore_cache":false}'), +(40251, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 11:55:45.24+00', '{"cached":null,"ignore_cache":null}'), +(40252, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 11:55:50.455+00', '{"cached":null,"ignore_cache":false}'), +(40253, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:31.36+00', '{"cached":null,"ignore_cache":null}'), +(40254, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:34.039+00', '{"cached":null,"ignore_cache":false}'), +(40255, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:35.779+00', '{"cached":null,"ignore_cache":false}'), +(40256, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:35.945+00', '{"cached":null,"ignore_cache":false}'), +(40257, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:36.051+00', '{"cached":null,"ignore_cache":false}'), +(40258, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:36.19+00', '{"cached":null,"ignore_cache":false}'), +(40259, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:37.944+00', '{"cached":null,"ignore_cache":false}'), +(40260, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:39.96+00', '{"cached":null,"ignore_cache":false}'), +(40261, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:41.405+00', '{"cached":null,"ignore_cache":null}'), +(40262, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.246+00', '{"cached":null,"ignore_cache":false}'), +(40263, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.455+00', '{"cached":null,"ignore_cache":false}'), +(40264, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.497+00', '{"cached":null,"ignore_cache":false}'), +(40265, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.502+00', '{"cached":null,"ignore_cache":false}'), +(40266, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.615+00', '{"cached":null,"ignore_cache":false}'), +(40267, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.635+00', '{"cached":null,"ignore_cache":false}'), +(40268, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.749+00', '{"cached":null,"ignore_cache":false}'), +(40269, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 12:07:44.83+00', '{"cached":null,"ignore_cache":false}'), +(40270, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:33.426+00', '{"cached":null,"ignore_cache":null}'), +(40271, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:37.139+00', '{"cached":null,"ignore_cache":false}'), +(40272, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:46.769+00', '{"cached":null,"ignore_cache":null}'), +(40273, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:48.268+00', '{"cached":null,"ignore_cache":false}'), +(40274, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:09:58.393+00', '{"cached":null,"ignore_cache":false}'), +(40275, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:10:04.454+00', '{"cached":null,"ignore_cache":false}'), +(40276, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:20.509+00', '{"cached":null,"ignore_cache":null}'), +(40277, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:23.213+00', '{"cached":null,"ignore_cache":false}'), +(40278, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:23.235+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40279, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:24.622+00', '{"cached":null,"ignore_cache":false}'), +(40280, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:24.867+00', '{"cached":null,"ignore_cache":false}'), +(40281, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:24.988+00', '{"cached":null,"ignore_cache":false}'), +(40282, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:25.272+00', '{"cached":null,"ignore_cache":false}'), +(40283, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:25.556+00', '{"cached":null,"ignore_cache":false}'), +(40284, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:25.583+00', '{"cached":null,"ignore_cache":false}'), +(40285, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:42.6+00', '{"cached":null,"ignore_cache":null}'), +(40286, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:44.009+00', '{"cached":null,"ignore_cache":false}'), +(40287, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:44.86+00', '{"cached":null,"ignore_cache":false}'), +(40288, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:45.452+00', '{"cached":null,"ignore_cache":false}'), +(40289, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:45.581+00', '{"cached":null,"ignore_cache":false}'), +(40290, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:45.74+00', '{"cached":null,"ignore_cache":false}'), +(40291, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:47.581+00', '{"cached":null,"ignore_cache":false}'), +(40292, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:47.588+00', '{"cached":null,"ignore_cache":false}'), +(40293, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:59.008+00', '{"cached":null,"ignore_cache":null}'), +(40294, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 12:11:59.995+00', '{"cached":null,"ignore_cache":false}'), +(40295, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 12:12:20.593+00', '{"cached":null,"ignore_cache":null}'), +(40296, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 12:12:21.47+00', '{"cached":null,"ignore_cache":false}'), +(40297, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 12:12:45.377+00', '{"cached":null,"ignore_cache":null}'), +(40298, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 12:12:59.243+00', '{"cached":null,"ignore_cache":null}'), +(40299, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:04.014+00', '{"cached":null,"ignore_cache":null}'), +(40300, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:06.061+00', '{"cached":null,"ignore_cache":null}'), +(40301, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:10.559+00', '{"cached":null,"ignore_cache":false}'), +(40302, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:35.921+00', '{"cached":null,"ignore_cache":null}'), +(40303, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:37.91+00', '{"cached":null,"ignore_cache":false}'), +(40304, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:38.435+00', '{"cached":null,"ignore_cache":false}'), +(40305, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:38.646+00', '{"cached":null,"ignore_cache":false}'), +(40306, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:38.702+00', '{"cached":null,"ignore_cache":false}'), +(40307, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:38.907+00', '{"cached":null,"ignore_cache":false}'), +(40308, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:39.059+00', '{"cached":null,"ignore_cache":false}'), +(40309, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:39.381+00', '{"cached":null,"ignore_cache":false}'), +(40310, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:40.209+00', '{"cached":null,"ignore_cache":false}'), +(40311, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:40.263+00', '{"cached":null,"ignore_cache":false}'), +(40312, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:54.214+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40313, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:57.207+00', '{"cached":null,"ignore_cache":false}'), +(40314, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:39.864+00', '{"cached":null,"ignore_cache":null}'), +(40315, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:40.998+00', '{"cached":null,"ignore_cache":false}'), +(40316, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:42.667+00', '{"cached":null,"ignore_cache":false}'), +(40317, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:43.145+00', '{"cached":null,"ignore_cache":false}'), +(40318, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:43.186+00', '{"cached":null,"ignore_cache":false}'), +(40319, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:43.2+00', '{"cached":null,"ignore_cache":false}'), +(40320, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:43.477+00', '{"cached":null,"ignore_cache":false}'), +(40321, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:43.636+00', '{"cached":null,"ignore_cache":false}'), +(40322, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:44.386+00', '{"cached":null,"ignore_cache":false}'), +(40323, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:44.408+00', '{"cached":null,"ignore_cache":false}'), +(40324, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:54.643+00', '{"cached":null,"ignore_cache":null}'), +(40325, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:56.652+00', '{"cached":null,"ignore_cache":false}'), +(40326, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:56.817+00', '{"cached":null,"ignore_cache":false}'), +(40327, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:57.306+00', '{"cached":null,"ignore_cache":false}'), +(40328, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:57.308+00', '{"cached":null,"ignore_cache":false}'), +(40329, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:57.357+00', '{"cached":null,"ignore_cache":false}'), +(40330, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:57.751+00', '{"cached":null,"ignore_cache":false}'), +(40331, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:58.585+00', '{"cached":null,"ignore_cache":false}'), +(40332, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:58.588+00', '{"cached":null,"ignore_cache":false}'), +(40333, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:24.653+00', '{"cached":null,"ignore_cache":null}'), +(40334, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:26.439+00', '{"cached":null,"ignore_cache":null}'), +(40335, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:27.488+00', '{"cached":null,"ignore_cache":false}'), +(40336, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:28.055+00', '{"cached":null,"ignore_cache":false}'), +(40337, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:28.156+00', '{"cached":null,"ignore_cache":false}'), +(40338, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:28.216+00', '{"cached":null,"ignore_cache":false}'), +(40339, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:28.248+00', '{"cached":null,"ignore_cache":false}'), +(40340, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:28.347+00', '{"cached":null,"ignore_cache":false}'), +(40341, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:28.517+00', '{"cached":null,"ignore_cache":false}'), +(40342, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:29.285+00', '{"cached":null,"ignore_cache":false}'), +(40343, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:29.343+00', '{"cached":null,"ignore_cache":false}'), +(40344, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:52.695+00', '{"cached":null,"ignore_cache":null}'), +(40345, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:54.303+00', '{"cached":null,"ignore_cache":false}'), +(40346, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:55.781+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40347, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:55.855+00', '{"cached":null,"ignore_cache":false}'), +(40348, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:55.977+00', '{"cached":null,"ignore_cache":false}'), +(40349, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:56.377+00', '{"cached":null,"ignore_cache":false}'), +(40350, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:56.432+00', '{"cached":null,"ignore_cache":false}'), +(40351, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:56.48+00', '{"cached":null,"ignore_cache":false}'), +(40352, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:56.517+00', '{"cached":null,"ignore_cache":false}'), +(40353, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:57.171+00', '{"cached":null,"ignore_cache":null}'), +(40354, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:26:57.606+00', '{"cached":null,"ignore_cache":null}'), +(40355, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:04.439+00', '{"cached":null,"ignore_cache":null}'), +(40356, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:25.212+00', '{"cached":null,"ignore_cache":null}'), +(40357, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.151+00', '{"cached":null,"ignore_cache":false}'), +(40358, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.584+00', '{"cached":null,"ignore_cache":false}'), +(40359, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.646+00', '{"cached":null,"ignore_cache":false}'), +(40360, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.725+00', '{"cached":null,"ignore_cache":false}'), +(40361, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.749+00', '{"cached":null,"ignore_cache":false}'), +(40362, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.75+00', '{"cached":null,"ignore_cache":false}'), +(40363, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.802+00', '{"cached":null,"ignore_cache":false}'), +(40364, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:26.87+00', '{"cached":null,"ignore_cache":false}'), +(40365, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:28:15.475+00', '{"cached":null,"ignore_cache":null}'), +(40366, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:28:18.265+00', '{"cached":null,"ignore_cache":false}'), +(40367, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:08.491+00', '{"cached":null,"ignore_cache":null}'), +(40368, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:11.569+00', '{"cached":null,"ignore_cache":false}'), +(40369, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:12.237+00', '{"cached":null,"ignore_cache":false}'), +(40370, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:12.561+00', '{"cached":null,"ignore_cache":false}'), +(40371, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:12.699+00', '{"cached":null,"ignore_cache":false}'), +(40372, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:12.771+00', '{"cached":null,"ignore_cache":false}'), +(40373, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:12.854+00', '{"cached":null,"ignore_cache":false}'), +(40374, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:12.944+00', '{"cached":null,"ignore_cache":false}'), +(40375, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:14.178+00', '{"cached":null,"ignore_cache":false}'), +(40376, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:14.262+00', '{"cached":null,"ignore_cache":false}'), +(40377, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:25.895+00', '{"cached":null,"ignore_cache":null}'), +(40378, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:29:26.645+00', '{"cached":null,"ignore_cache":false}'), +(40379, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:31:34.78+00', '{"cached":null,"ignore_cache":null}'), +(40380, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:31:35.861+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40381, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:37:38.755+00', '{"cached":null,"ignore_cache":null}'), +(40382, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:37:39.805+00', '{"cached":null,"ignore_cache":false}'), +(40383, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:36.866+00', '{"cached":null,"ignore_cache":null}'), +(40384, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:39.459+00', '{"cached":null,"ignore_cache":false}'), +(40385, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:39.561+00', '{"cached":null,"ignore_cache":false}'), +(40386, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:39.857+00', '{"cached":null,"ignore_cache":false}'), +(40387, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:39.945+00', '{"cached":null,"ignore_cache":false}'), +(40388, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:39.958+00', '{"cached":null,"ignore_cache":false}'), +(40389, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:39.961+00', '{"cached":null,"ignore_cache":false}'), +(40390, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:39.987+00', '{"cached":null,"ignore_cache":false}'), +(40391, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:40.026+00', '{"cached":null,"ignore_cache":false}'), +(40392, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:53.181+00', '{"cached":null,"ignore_cache":null}'), +(40393, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:39:53.93+00', '{"cached":null,"ignore_cache":false}'), +(40394, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:02.507+00', '{"cached":null,"ignore_cache":null}'), +(40395, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:04.108+00', '{"cached":null,"ignore_cache":false}'), +(40396, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:16.761+00', '{"cached":null,"ignore_cache":null}'), +(40397, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:18.307+00', '{"cached":null,"ignore_cache":false}'), +(40398, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:18.806+00', '{"cached":null,"ignore_cache":false}'), +(40399, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:18.946+00', '{"cached":null,"ignore_cache":false}'), +(40400, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:19.028+00', '{"cached":null,"ignore_cache":false}'), +(40401, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:19.096+00', '{"cached":null,"ignore_cache":false}'), +(40402, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:19.169+00', '{"cached":null,"ignore_cache":false}'), +(40403, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:19.508+00', '{"cached":null,"ignore_cache":false}'), +(40404, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:20.362+00', '{"cached":null,"ignore_cache":false}'), +(40405, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:20.387+00', '{"cached":null,"ignore_cache":false}'), +(40406, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:21.579+00', '{"cached":null,"ignore_cache":null}'), +(40407, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:23.554+00', '{"cached":null,"ignore_cache":false}'), +(40408, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:24.054+00', '{"cached":null,"ignore_cache":false}'), +(40409, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:24.083+00', '{"cached":null,"ignore_cache":false}'), +(40410, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:24.354+00', '{"cached":null,"ignore_cache":false}'), +(40411, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:24.392+00', '{"cached":null,"ignore_cache":false}'), +(40412, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:24.45+00', '{"cached":null,"ignore_cache":false}'), +(40413, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:24.597+00', '{"cached":null,"ignore_cache":false}'), +(40414, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:40:24.673+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40415, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:41:52.536+00', '{"cached":null,"ignore_cache":null}'), +(40416, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:41:55.837+00', '{"cached":null,"ignore_cache":false}'), +(40417, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:01.59+00', '{"cached":null,"ignore_cache":null}'), +(40418, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:27.486+00', '{"cached":null,"ignore_cache":null}'), +(40419, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:35.156+00', '{"cached":null,"ignore_cache":null}'), +(40420, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:45.035+00', '{"cached":null,"ignore_cache":null}'), +(40421, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:48.085+00', '{"cached":null,"ignore_cache":null}'), +(40422, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:42:53.032+00', '{"cached":null,"ignore_cache":null}'), +(40423, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:43:38.72+00', '{"cached":null,"ignore_cache":null}'), +(40424, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:44:20.012+00', '{"cached":null,"ignore_cache":null}'), +(40425, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:44:40.888+00', '{"cached":null,"ignore_cache":null}'), +(40426, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:18.33+00', '{"cached":null,"ignore_cache":null}'), +(40427, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:48.681+00', '{"cached":null,"ignore_cache":null}'), +(40428, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:50.203+00', '{"cached":null,"ignore_cache":false}'), +(40429, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:51.006+00', '{"cached":null,"ignore_cache":false}'), +(40430, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:51.107+00', '{"cached":null,"ignore_cache":false}'), +(40431, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:51.265+00', '{"cached":null,"ignore_cache":false}'), +(40432, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:51.285+00', '{"cached":null,"ignore_cache":false}'), +(40433, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:51.3+00', '{"cached":null,"ignore_cache":false}'), +(40434, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:51.364+00', '{"cached":null,"ignore_cache":false}'), +(40435, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:52.483+00', '{"cached":null,"ignore_cache":false}'), +(40436, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:52.507+00', '{"cached":null,"ignore_cache":false}'), +(40437, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:53.361+00', '{"cached":null,"ignore_cache":null}'), +(40438, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.791+00', '{"cached":null,"ignore_cache":false}'), +(40439, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:54.889+00', '{"cached":null,"ignore_cache":false}'), +(40440, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:55.071+00', '{"cached":null,"ignore_cache":false}'), +(40441, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:55.158+00', '{"cached":null,"ignore_cache":false}'), +(40442, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:55.187+00', '{"cached":null,"ignore_cache":false}'), +(40443, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:55.232+00', '{"cached":null,"ignore_cache":false}'), +(40444, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:55.268+00', '{"cached":null,"ignore_cache":false}'), +(40445, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:55.31+00', '{"cached":null,"ignore_cache":false}'), +(40446, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:08.625+00', '{"cached":null,"ignore_cache":null}'), +(40447, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:09.321+00', '{"cached":null,"ignore_cache":false}'), +(40448, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:25.449+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40449, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:26.223+00', '{"cached":null,"ignore_cache":false}'), +(40450, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:33.243+00', '{"cached":null,"ignore_cache":null}'), +(40451, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:46:34.416+00', '{"cached":null,"ignore_cache":false}'), +(40452, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:49.417+00', '{"cached":null,"ignore_cache":null}'), +(40453, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:51.879+00', '{"cached":null,"ignore_cache":false}'), +(40454, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:51.929+00', '{"cached":null,"ignore_cache":false}'), +(40455, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:52.805+00', '{"cached":null,"ignore_cache":false}'), +(40456, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:52.908+00', '{"cached":null,"ignore_cache":false}'), +(40457, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:52.91+00', '{"cached":null,"ignore_cache":false}'), +(40458, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:52.935+00', '{"cached":null,"ignore_cache":false}'), +(40459, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:52.963+00', '{"cached":null,"ignore_cache":false}'), +(40460, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:53.012+00', '{"cached":null,"ignore_cache":false}'), +(40461, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:17.778+00', '{"cached":null,"ignore_cache":null}'), +(40462, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:22.685+00', '{"cached":null,"ignore_cache":null}'), +(40463, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:25.613+00', '{"cached":null,"ignore_cache":false}'), +(40464, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:52.638+00', '{"cached":null,"ignore_cache":null}'), +(40465, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:53.617+00', '{"cached":null,"ignore_cache":false}'), +(40466, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:54.127+00', '{"cached":null,"ignore_cache":false}'), +(40467, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:54.835+00', '{"cached":null,"ignore_cache":false}'), +(40468, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:54.937+00', '{"cached":null,"ignore_cache":false}'), +(40469, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:54.945+00', '{"cached":null,"ignore_cache":false}'), +(40470, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:54.984+00', '{"cached":null,"ignore_cache":false}'), +(40471, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:55.003+00', '{"cached":null,"ignore_cache":false}'), +(40472, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:55.055+00', '{"cached":null,"ignore_cache":false}'), +(40473, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:57.181+00', '{"cached":null,"ignore_cache":null}'), +(40474, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:58.223+00', '{"cached":null,"ignore_cache":false}'), +(40475, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:50:03.508+00', '{"cached":null,"ignore_cache":true}'), +(40476, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:50:10.041+00', '{"cached":null,"ignore_cache":true}'), +(40477, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 13:50:15.395+00', '{"cached":null,"ignore_cache":true}'), +(40478, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:20.547+00', '{"cached":null,"ignore_cache":null}'), +(40479, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:25.409+00', '{"cached":null,"ignore_cache":false}'), +(40480, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:25.414+00', '{"cached":null,"ignore_cache":false}'), +(40481, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:25.44+00', '{"cached":null,"ignore_cache":false}'), +(40482, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:25.556+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40483, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:25.56+00', '{"cached":null,"ignore_cache":false}'), +(40484, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:25.71+00', '{"cached":null,"ignore_cache":false}'), +(40485, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:25.953+00', '{"cached":null,"ignore_cache":false}'), +(40486, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:27.206+00', '{"cached":null,"ignore_cache":false}'), +(40487, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:27.225+00', '{"cached":null,"ignore_cache":false}'), +(40488, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:43.084+00', '{"cached":null,"ignore_cache":null}'), +(40489, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:45.472+00', '{"cached":null,"ignore_cache":false}'), +(40490, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:48.051+00', '{"cached":null,"ignore_cache":false}'), +(40491, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:48.13+00', '{"cached":null,"ignore_cache":false}'), +(40492, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:48.147+00', '{"cached":null,"ignore_cache":false}'), +(40493, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:48.253+00', '{"cached":null,"ignore_cache":false}'), +(40494, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:48.324+00', '{"cached":null,"ignore_cache":false}'), +(40495, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:48.326+00', '{"cached":null,"ignore_cache":false}'), +(40496, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 14:09:48.331+00', '{"cached":null,"ignore_cache":false}'), +(40497, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:09.69+00', '{"cached":null,"ignore_cache":null}'), +(40498, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.793+00', '{"cached":null,"ignore_cache":false}'), +(40499, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.945+00', '{"cached":null,"ignore_cache":false}'), +(40500, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:11.969+00', '{"cached":null,"ignore_cache":false}'), +(40501, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:12.024+00', '{"cached":null,"ignore_cache":false}'), +(40502, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:12.073+00', '{"cached":null,"ignore_cache":false}'), +(40503, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:12.178+00', '{"cached":null,"ignore_cache":false}'), +(40504, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:12.337+00', '{"cached":null,"ignore_cache":false}'), +(40505, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:12.375+00', '{"cached":null,"ignore_cache":false}'), +(40506, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.381+00', '{"cached":null,"ignore_cache":false}'), +(40507, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.525+00', '{"cached":null,"ignore_cache":false}'), +(40508, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.603+00', '{"cached":null,"ignore_cache":false}'), +(40509, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.605+00', '{"cached":null,"ignore_cache":false}'), +(40510, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.671+00', '{"cached":null,"ignore_cache":false}'), +(40511, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.71+00', '{"cached":null,"ignore_cache":false}'), +(40512, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.733+00', '{"cached":null,"ignore_cache":false}'), +(40513, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:18.735+00', '{"cached":null,"ignore_cache":false}'), +(40514, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:28.367+00', '{"cached":null,"ignore_cache":null}'), +(40515, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:31.252+00', '{"cached":null,"ignore_cache":null}'), +(40516, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:34.61+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40517, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:35.188+00', '{"cached":null,"ignore_cache":false}'), +(40518, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:36.041+00', '{"cached":null,"ignore_cache":false}'), +(40519, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:36.108+00', '{"cached":null,"ignore_cache":false}'), +(40520, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:36.212+00', '{"cached":null,"ignore_cache":false}'), +(40521, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:36.34+00', '{"cached":null,"ignore_cache":false}'), +(40522, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:36.625+00', '{"cached":null,"ignore_cache":false}'), +(40523, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:38.422+00', '{"cached":null,"ignore_cache":false}'), +(40524, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 14:10:38.519+00', '{"cached":null,"ignore_cache":false}'), +(40525, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:18.594+00', '{"cached":null,"ignore_cache":null}'), +(40526, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:32.347+00', '{"cached":null,"ignore_cache":false}'), +(40527, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:32.825+00', '{"cached":null,"ignore_cache":false}'), +(40528, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:32.942+00', '{"cached":null,"ignore_cache":false}'), +(40529, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:33.006+00', '{"cached":null,"ignore_cache":false}'), +(40530, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:33.04+00', '{"cached":null,"ignore_cache":false}'), +(40531, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:33.079+00', '{"cached":null,"ignore_cache":false}'), +(40532, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:33.411+00', '{"cached":null,"ignore_cache":false}'), +(40533, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:33.872+00', '{"cached":null,"ignore_cache":false}'), +(40534, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:33.881+00', '{"cached":null,"ignore_cache":false}'), +(40535, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.717+00', '{"cached":null,"ignore_cache":false}'), +(40536, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.72+00', '{"cached":null,"ignore_cache":false}'), +(40537, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.813+00', '{"cached":null,"ignore_cache":false}'), +(40538, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.878+00', '{"cached":null,"ignore_cache":false}'), +(40539, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.919+00', '{"cached":null,"ignore_cache":false}'), +(40540, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:37.962+00', '{"cached":null,"ignore_cache":false}'), +(40541, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:38.031+00', '{"cached":null,"ignore_cache":false}'), +(40542, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:38.202+00', '{"cached":null,"ignore_cache":false}'), +(40543, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 14:11:38.215+00', '{"cached":null,"ignore_cache":false}'), +(40544, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.253+00', '{"cached":null,"ignore_cache":false}'), +(40545, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.256+00', '{"cached":null,"ignore_cache":false}'), +(40546, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.269+00', '{"cached":null,"ignore_cache":false}'), +(40547, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.286+00', '{"cached":null,"ignore_cache":false}'), +(40548, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.308+00', '{"cached":null,"ignore_cache":false}'), +(40549, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:03.534+00', '{"cached":null,"ignore_cache":false}'), +(40550, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:04.237+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40551, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:04.263+00', '{"cached":null,"ignore_cache":false}'), +(40552, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:04.389+00', '{"cached":null,"ignore_cache":false}'), +(40553, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:05.094+00', '{"cached":null,"ignore_cache":false}'), +(40554, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:05.369+00', '{"cached":null,"ignore_cache":false}'), +(40555, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:06.027+00', '{"cached":null,"ignore_cache":false}'), +(40556, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:06.038+00', '{"cached":null,"ignore_cache":false}'), +(40557, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:06.045+00', '{"cached":null,"ignore_cache":false}'), +(40558, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:06.05+00', '{"cached":null,"ignore_cache":false}'), +(40559, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:06.051+00', '{"cached":null,"ignore_cache":false}'), +(40560, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:06.592+00', '{"cached":null,"ignore_cache":null}'), +(40561, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:08.711+00', '{"cached":null,"ignore_cache":false}'), +(40562, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:09.194+00', '{"cached":null,"ignore_cache":false}'), +(40563, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:10.015+00', '{"cached":null,"ignore_cache":false}'), +(40564, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:10.033+00', '{"cached":null,"ignore_cache":false}'), +(40565, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:10.277+00', '{"cached":null,"ignore_cache":false}'), +(40566, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:10.312+00', '{"cached":null,"ignore_cache":false}'), +(40567, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:10.32+00', '{"cached":null,"ignore_cache":false}'), +(40568, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:10.349+00', '{"cached":null,"ignore_cache":false}'), +(40569, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-24 14:12:10.431+00', '{"cached":null,"ignore_cache":false}'), +(40570, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:33.798+00', '{"cached":null,"ignore_cache":null}'), +(40571, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:37.1+00', '{"cached":null,"ignore_cache":false}'), +(40572, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:37.108+00', '{"cached":null,"ignore_cache":false}'), +(40573, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:37.172+00', '{"cached":null,"ignore_cache":false}'), +(40574, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:37.314+00', '{"cached":null,"ignore_cache":false}'), +(40575, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:37.393+00', '{"cached":null,"ignore_cache":false}'), +(40576, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:37.5+00', '{"cached":null,"ignore_cache":false}'), +(40577, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:37.929+00', '{"cached":null,"ignore_cache":false}'), +(40578, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:38.555+00', '{"cached":null,"ignore_cache":false}'), +(40579, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 05:53:38.662+00', '{"cached":null,"ignore_cache":false}'), +(40580, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.613+00', '{"cached":null,"ignore_cache":null}'), +(40581, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.617+00', '{"cached":null,"ignore_cache":null}'), +(40582, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.618+00', '{"cached":null,"ignore_cache":null}'), +(40583, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.621+00', '{"cached":null,"ignore_cache":null}'), +(40584, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.636+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40585, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.741+00', '{"cached":null,"ignore_cache":null}'), +(40586, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.779+00', '{"cached":null,"ignore_cache":null}'), +(40587, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.78+00', '{"cached":null,"ignore_cache":null}'), +(40588, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:34.781+00', '{"cached":null,"ignore_cache":null}'), +(40589, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.111+00', '{"cached":null,"ignore_cache":null}'), +(40590, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.199+00', '{"cached":null,"ignore_cache":null}'), +(40591, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.277+00', '{"cached":null,"ignore_cache":null}'), +(40592, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.302+00', '{"cached":null,"ignore_cache":null}'), +(40593, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.305+00', '{"cached":null,"ignore_cache":null}'), +(40594, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.318+00', '{"cached":null,"ignore_cache":null}'), +(40595, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.571+00', '{"cached":null,"ignore_cache":null}'), +(40596, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.63+00', '{"cached":null,"ignore_cache":null}'), +(40597, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.631+00', '{"cached":null,"ignore_cache":null}'), +(40598, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.634+00', '{"cached":null,"ignore_cache":null}'), +(40599, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.635+00', '{"cached":null,"ignore_cache":null}'), +(40600, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.636+00', '{"cached":null,"ignore_cache":null}'), +(40601, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.638+00', '{"cached":null,"ignore_cache":null}'), +(40602, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.64+00', '{"cached":null,"ignore_cache":null}'), +(40603, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.642+00', '{"cached":null,"ignore_cache":null}'), +(40604, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.651+00', '{"cached":null,"ignore_cache":null}'), +(40605, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.656+00', '{"cached":null,"ignore_cache":null}'), +(40606, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.66+00', '{"cached":null,"ignore_cache":null}'), +(40607, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.661+00', '{"cached":null,"ignore_cache":null}'), +(40608, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.662+00', '{"cached":null,"ignore_cache":null}'), +(40609, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.662+00', '{"cached":null,"ignore_cache":null}'), +(40610, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.683+00', '{"cached":null,"ignore_cache":null}'), +(40611, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:35.684+00', '{"cached":null,"ignore_cache":null}'), +(40612, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.322+00', '{"cached":null,"ignore_cache":null}'), +(40613, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.341+00', '{"cached":null,"ignore_cache":null}'), +(40614, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.345+00', '{"cached":null,"ignore_cache":null}'), +(40615, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.352+00', '{"cached":null,"ignore_cache":null}'), +(40616, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.354+00', '{"cached":null,"ignore_cache":null}'), +(40617, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.356+00', '{"cached":null,"ignore_cache":null}'), +(40618, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.358+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40619, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.36+00', '{"cached":null,"ignore_cache":null}'), +(40620, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.361+00', '{"cached":null,"ignore_cache":null}'), +(40621, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.367+00', '{"cached":null,"ignore_cache":null}'), +(40622, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.399+00', '{"cached":null,"ignore_cache":null}'), +(40623, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.464+00', '{"cached":null,"ignore_cache":null}'), +(40624, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.48+00', '{"cached":null,"ignore_cache":null}'), +(40625, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.51+00', '{"cached":null,"ignore_cache":null}'), +(40626, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.658+00', '{"cached":null,"ignore_cache":null}'), +(40627, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.671+00', '{"cached":null,"ignore_cache":null}'), +(40628, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.681+00', '{"cached":null,"ignore_cache":null}'), +(40629, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.695+00', '{"cached":null,"ignore_cache":null}'), +(40630, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.698+00', '{"cached":null,"ignore_cache":null}'), +(40631, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.833+00', '{"cached":null,"ignore_cache":null}'), +(40632, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.839+00', '{"cached":null,"ignore_cache":null}'), +(40633, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.841+00', '{"cached":null,"ignore_cache":null}'), +(40634, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.849+00', '{"cached":null,"ignore_cache":null}'), +(40635, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.85+00', '{"cached":null,"ignore_cache":null}'), +(40636, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.851+00', '{"cached":null,"ignore_cache":null}'), +(40637, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.852+00', '{"cached":null,"ignore_cache":null}'), +(40638, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.853+00', '{"cached":null,"ignore_cache":null}'), +(40639, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.854+00', '{"cached":null,"ignore_cache":null}'), +(40640, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.854+00', '{"cached":null,"ignore_cache":null}'), +(40641, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.855+00', '{"cached":null,"ignore_cache":null}'), +(40642, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:36.856+00', '{"cached":null,"ignore_cache":null}'), +(40643, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.007+00', '{"cached":null,"ignore_cache":null}'), +(40644, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.016+00', '{"cached":null,"ignore_cache":null}'), +(40645, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.048+00', '{"cached":null,"ignore_cache":null}'), +(40646, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.051+00', '{"cached":null,"ignore_cache":null}'), +(40647, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.053+00', '{"cached":null,"ignore_cache":null}'), +(40648, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.146+00', '{"cached":null,"ignore_cache":null}'), +(40649, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.15+00', '{"cached":null,"ignore_cache":null}'), +(40650, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.151+00', '{"cached":null,"ignore_cache":null}'), +(40651, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.155+00', '{"cached":null,"ignore_cache":null}'), +(40652, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.157+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40653, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.162+00', '{"cached":null,"ignore_cache":null}'), +(40654, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.162+00', '{"cached":null,"ignore_cache":null}'), +(40655, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.163+00', '{"cached":null,"ignore_cache":null}'), +(40656, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.168+00', '{"cached":null,"ignore_cache":null}'), +(40657, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.17+00', '{"cached":null,"ignore_cache":null}'), +(40658, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.172+00', '{"cached":null,"ignore_cache":null}'), +(40659, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.176+00', '{"cached":null,"ignore_cache":null}'), +(40660, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.177+00', '{"cached":null,"ignore_cache":null}'), +(40661, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.18+00', '{"cached":null,"ignore_cache":null}'), +(40662, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.182+00', '{"cached":null,"ignore_cache":null}'), +(40663, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.183+00', '{"cached":null,"ignore_cache":null}'), +(40664, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.183+00', '{"cached":null,"ignore_cache":null}'), +(40665, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.184+00', '{"cached":null,"ignore_cache":null}'), +(40666, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.185+00', '{"cached":null,"ignore_cache":null}'), +(40667, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.186+00', '{"cached":null,"ignore_cache":null}'), +(40668, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.187+00', '{"cached":null,"ignore_cache":null}'), +(40669, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.188+00', '{"cached":null,"ignore_cache":null}'), +(40670, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.19+00', '{"cached":null,"ignore_cache":null}'), +(40671, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.191+00', '{"cached":null,"ignore_cache":null}'), +(40672, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.191+00', '{"cached":null,"ignore_cache":null}'), +(40673, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.193+00', '{"cached":null,"ignore_cache":null}'), +(40674, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.194+00', '{"cached":null,"ignore_cache":null}'), +(40675, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.195+00', '{"cached":null,"ignore_cache":null}'), +(40676, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.195+00', '{"cached":null,"ignore_cache":null}'), +(40677, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.196+00', '{"cached":null,"ignore_cache":null}'), +(40678, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.197+00', '{"cached":null,"ignore_cache":null}'), +(40679, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.199+00', '{"cached":null,"ignore_cache":null}'), +(40680, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:37.2+00', '{"cached":null,"ignore_cache":null}'), +(40681, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.209+00', '{"cached":null,"ignore_cache":null}'), +(40682, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.21+00', '{"cached":null,"ignore_cache":null}'), +(40683, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.213+00', '{"cached":null,"ignore_cache":null}'), +(40684, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.241+00', '{"cached":null,"ignore_cache":null}'), +(40685, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.44+00', '{"cached":null,"ignore_cache":null}'), +(40686, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.443+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40687, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.541+00', '{"cached":null,"ignore_cache":null}'), +(40688, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.564+00', '{"cached":null,"ignore_cache":null}'), +(40689, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.577+00', '{"cached":null,"ignore_cache":null}'), +(40690, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.586+00', '{"cached":null,"ignore_cache":null}'), +(40691, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.612+00', '{"cached":null,"ignore_cache":null}'), +(40692, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.629+00', '{"cached":null,"ignore_cache":null}'), +(40693, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.646+00', '{"cached":null,"ignore_cache":null}'), +(40694, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.661+00', '{"cached":null,"ignore_cache":null}'), +(40695, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.68+00', '{"cached":null,"ignore_cache":null}'), +(40696, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.896+00', '{"cached":null,"ignore_cache":null}'), +(40697, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:38.957+00', '{"cached":null,"ignore_cache":null}'), +(40698, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:39.623+00', '{"cached":null,"ignore_cache":null}'), +(40699, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.036+00', '{"cached":null,"ignore_cache":null}'), +(40700, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.26+00', '{"cached":null,"ignore_cache":null}'), +(40701, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.509+00', '{"cached":null,"ignore_cache":null}'), +(40702, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.536+00', '{"cached":null,"ignore_cache":null}'), +(40703, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.762+00', '{"cached":null,"ignore_cache":null}'), +(40704, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.778+00', '{"cached":null,"ignore_cache":null}'), +(40705, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.779+00', '{"cached":null,"ignore_cache":null}'), +(40706, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.779+00', '{"cached":null,"ignore_cache":null}'), +(40707, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.78+00', '{"cached":null,"ignore_cache":null}'), +(40708, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.802+00', '{"cached":null,"ignore_cache":null}'), +(40709, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.803+00', '{"cached":null,"ignore_cache":null}'), +(40710, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.804+00', '{"cached":null,"ignore_cache":null}'), +(40711, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.804+00', '{"cached":null,"ignore_cache":null}'), +(40712, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.805+00', '{"cached":null,"ignore_cache":null}'), +(40713, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.805+00', '{"cached":null,"ignore_cache":null}'), +(40714, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.806+00', '{"cached":null,"ignore_cache":null}'), +(40715, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:54:40.806+00', '{"cached":null,"ignore_cache":null}'), +(40716, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:30.943+00', '{"cached":null,"ignore_cache":null}'), +(40717, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:38.934+00', '{"cached":null,"ignore_cache":null}'), +(40718, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.354+00', '{"cached":null,"ignore_cache":null}'), +(40719, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.692+00', '{"cached":null,"ignore_cache":null}'), +(40720, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.7+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40721, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.709+00', '{"cached":null,"ignore_cache":null}'), +(40722, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.714+00', '{"cached":null,"ignore_cache":null}'), +(40723, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.717+00', '{"cached":null,"ignore_cache":null}'), +(40724, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.728+00', '{"cached":null,"ignore_cache":null}'), +(40725, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.769+00', '{"cached":null,"ignore_cache":null}'), +(40726, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.783+00', '{"cached":null,"ignore_cache":null}'), +(40727, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.796+00', '{"cached":null,"ignore_cache":null}'), +(40728, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.838+00', '{"cached":null,"ignore_cache":null}'), +(40729, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.842+00', '{"cached":null,"ignore_cache":null}'), +(40730, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.865+00', '{"cached":null,"ignore_cache":null}'), +(40731, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.866+00', '{"cached":null,"ignore_cache":null}'), +(40732, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.866+00', '{"cached":null,"ignore_cache":null}'), +(40733, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.867+00', '{"cached":null,"ignore_cache":null}'), +(40734, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.867+00', '{"cached":null,"ignore_cache":null}'), +(40735, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.868+00', '{"cached":null,"ignore_cache":null}'), +(40736, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:48.873+00', '{"cached":null,"ignore_cache":null}'), +(40737, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.076+00', '{"cached":null,"ignore_cache":null}'), +(40738, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.117+00', '{"cached":null,"ignore_cache":null}'), +(40739, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.127+00', '{"cached":null,"ignore_cache":null}'), +(40740, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.137+00', '{"cached":null,"ignore_cache":null}'), +(40741, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.153+00', '{"cached":null,"ignore_cache":null}'), +(40742, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.19+00', '{"cached":null,"ignore_cache":null}'), +(40743, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.2+00', '{"cached":null,"ignore_cache":null}'), +(40744, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.204+00', '{"cached":null,"ignore_cache":null}'), +(40745, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.226+00', '{"cached":null,"ignore_cache":null}'), +(40746, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.247+00', '{"cached":null,"ignore_cache":null}'), +(40747, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:49.793+00', '{"cached":null,"ignore_cache":null}'), +(40748, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.252+00', '{"cached":null,"ignore_cache":null}'), +(40749, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.258+00', '{"cached":null,"ignore_cache":null}'), +(40750, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.265+00', '{"cached":null,"ignore_cache":null}'), +(40751, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.267+00', '{"cached":null,"ignore_cache":null}'), +(40752, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.268+00', '{"cached":null,"ignore_cache":null}'), +(40753, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.27+00', '{"cached":null,"ignore_cache":null}'), +(40754, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.271+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40755, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.646+00', '{"cached":null,"ignore_cache":null}'), +(40756, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.658+00', '{"cached":null,"ignore_cache":null}'), +(40757, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.665+00', '{"cached":null,"ignore_cache":null}'), +(40758, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.689+00', '{"cached":null,"ignore_cache":null}'), +(40759, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.706+00', '{"cached":null,"ignore_cache":null}'), +(40760, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.707+00', '{"cached":null,"ignore_cache":null}'), +(40761, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.72+00', '{"cached":null,"ignore_cache":null}'), +(40762, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.815+00', '{"cached":null,"ignore_cache":null}'), +(40763, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.824+00', '{"cached":null,"ignore_cache":null}'), +(40764, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.826+00', '{"cached":null,"ignore_cache":null}'), +(40765, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.835+00', '{"cached":null,"ignore_cache":null}'), +(40766, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.84+00', '{"cached":null,"ignore_cache":null}'), +(40767, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.843+00', '{"cached":null,"ignore_cache":null}'), +(40768, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.847+00', '{"cached":null,"ignore_cache":null}'), +(40769, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.848+00', '{"cached":null,"ignore_cache":null}'), +(40770, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.851+00', '{"cached":null,"ignore_cache":null}'), +(40771, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.855+00', '{"cached":null,"ignore_cache":null}'), +(40772, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.86+00', '{"cached":null,"ignore_cache":null}'), +(40773, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.865+00', '{"cached":null,"ignore_cache":null}'), +(40774, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.869+00', '{"cached":null,"ignore_cache":null}'), +(40775, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.87+00', '{"cached":null,"ignore_cache":null}'), +(40776, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:50.952+00', '{"cached":null,"ignore_cache":null}'), +(40777, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.097+00', '{"cached":null,"ignore_cache":null}'), +(40778, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.209+00', '{"cached":null,"ignore_cache":null}'), +(40779, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.21+00', '{"cached":null,"ignore_cache":null}'), +(40780, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.211+00', '{"cached":null,"ignore_cache":null}'), +(40781, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.214+00', '{"cached":null,"ignore_cache":null}'), +(40782, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.216+00', '{"cached":null,"ignore_cache":null}'), +(40783, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.217+00', '{"cached":null,"ignore_cache":null}'), +(40784, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.218+00', '{"cached":null,"ignore_cache":null}'), +(40785, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.222+00', '{"cached":null,"ignore_cache":null}'), +(40786, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.223+00', '{"cached":null,"ignore_cache":null}'), +(40787, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.224+00', '{"cached":null,"ignore_cache":null}'), +(40788, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.225+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40789, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.248+00', '{"cached":null,"ignore_cache":null}'), +(40790, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:51.608+00', '{"cached":null,"ignore_cache":null}'), +(40791, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:52.08+00', '{"cached":null,"ignore_cache":null}'), +(40792, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:52.407+00', '{"cached":null,"ignore_cache":null}'), +(40793, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:53.49+00', '{"cached":null,"ignore_cache":null}'), +(40794, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:53.501+00', '{"cached":null,"ignore_cache":null}'), +(40795, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:53.523+00', '{"cached":null,"ignore_cache":null}'), +(40796, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:53.586+00', '{"cached":null,"ignore_cache":null}'), +(40797, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:53.588+00', '{"cached":null,"ignore_cache":null}'), +(40798, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:53.932+00', '{"cached":null,"ignore_cache":null}'), +(40799, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:54.254+00', '{"cached":null,"ignore_cache":null}'), +(40800, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:55.193+00', '{"cached":null,"ignore_cache":null}'), +(40801, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:55.652+00', '{"cached":null,"ignore_cache":null}'), +(40802, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.055+00', '{"cached":null,"ignore_cache":null}'), +(40803, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.297+00', '{"cached":null,"ignore_cache":null}'), +(40804, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.31+00', '{"cached":null,"ignore_cache":null}'), +(40805, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.314+00', '{"cached":null,"ignore_cache":null}'), +(40806, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.372+00', '{"cached":null,"ignore_cache":null}'), +(40807, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.374+00', '{"cached":null,"ignore_cache":null}'), +(40808, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.457+00', '{"cached":null,"ignore_cache":null}'), +(40809, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.552+00', '{"cached":null,"ignore_cache":null}'), +(40810, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.697+00', '{"cached":null,"ignore_cache":null}'), +(40811, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.758+00', '{"cached":null,"ignore_cache":null}'), +(40812, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.859+00', '{"cached":null,"ignore_cache":null}'), +(40813, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:56.861+00', '{"cached":null,"ignore_cache":null}'), +(40814, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.212+00', '{"cached":null,"ignore_cache":null}'), +(40815, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.213+00', '{"cached":null,"ignore_cache":null}'), +(40816, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.296+00', '{"cached":null,"ignore_cache":null}'), +(40817, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.297+00', '{"cached":null,"ignore_cache":null}'), +(40818, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.298+00', '{"cached":null,"ignore_cache":null}'), +(40819, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.298+00', '{"cached":null,"ignore_cache":null}'), +(40820, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.299+00', '{"cached":null,"ignore_cache":null}'), +(40821, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.3+00', '{"cached":null,"ignore_cache":null}'), +(40822, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.504+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40823, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.506+00', '{"cached":null,"ignore_cache":null}'), +(40824, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.572+00', '{"cached":null,"ignore_cache":null}'), +(40825, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.573+00', '{"cached":null,"ignore_cache":null}'), +(40826, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.616+00', '{"cached":null,"ignore_cache":null}'), +(40827, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.617+00', '{"cached":null,"ignore_cache":null}'), +(40828, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.637+00', '{"cached":null,"ignore_cache":null}'), +(40829, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.638+00', '{"cached":null,"ignore_cache":null}'), +(40830, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.639+00', '{"cached":null,"ignore_cache":null}'), +(40831, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.653+00', '{"cached":null,"ignore_cache":null}'), +(40832, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.725+00', '{"cached":null,"ignore_cache":null}'), +(40833, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.726+00', '{"cached":null,"ignore_cache":null}'), +(40834, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.728+00', '{"cached":null,"ignore_cache":null}'), +(40835, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.729+00', '{"cached":null,"ignore_cache":null}'), +(40836, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.792+00', '{"cached":null,"ignore_cache":null}'), +(40837, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.793+00', '{"cached":null,"ignore_cache":null}'), +(40838, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.794+00', '{"cached":null,"ignore_cache":null}'), +(40839, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.794+00', '{"cached":null,"ignore_cache":null}'), +(40840, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.796+00', '{"cached":null,"ignore_cache":null}'), +(40841, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.827+00', '{"cached":null,"ignore_cache":null}'), +(40842, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.845+00', '{"cached":null,"ignore_cache":null}'), +(40843, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.846+00', '{"cached":null,"ignore_cache":null}'), +(40844, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.847+00', '{"cached":null,"ignore_cache":null}'), +(40845, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.847+00', '{"cached":null,"ignore_cache":null}'), +(40846, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.924+00', '{"cached":null,"ignore_cache":null}'), +(40847, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.926+00', '{"cached":null,"ignore_cache":null}'), +(40848, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.961+00', '{"cached":null,"ignore_cache":null}'), +(40849, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:57.977+00', '{"cached":null,"ignore_cache":null}'), +(40850, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.007+00', '{"cached":null,"ignore_cache":null}'), +(40851, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.008+00', '{"cached":null,"ignore_cache":null}'), +(40852, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.009+00', '{"cached":null,"ignore_cache":null}'), +(40853, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.043+00', '{"cached":null,"ignore_cache":null}'), +(40854, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.493+00', '{"cached":null,"ignore_cache":null}'), +(40855, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.575+00', '{"cached":null,"ignore_cache":null}'), +(40856, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.576+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40857, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.577+00', '{"cached":null,"ignore_cache":null}'), +(40858, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.578+00', '{"cached":null,"ignore_cache":null}'), +(40859, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.579+00', '{"cached":null,"ignore_cache":null}'), +(40860, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.58+00', '{"cached":null,"ignore_cache":null}'), +(40861, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.828+00', '{"cached":null,"ignore_cache":null}'), +(40862, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.829+00', '{"cached":null,"ignore_cache":null}'), +(40863, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.83+00', '{"cached":null,"ignore_cache":null}'), +(40864, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.831+00', '{"cached":null,"ignore_cache":null}'), +(40865, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.832+00', '{"cached":null,"ignore_cache":null}'), +(40866, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.832+00', '{"cached":null,"ignore_cache":null}'), +(40867, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.833+00', '{"cached":null,"ignore_cache":null}'), +(40868, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.88+00', '{"cached":null,"ignore_cache":null}'), +(40869, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.881+00', '{"cached":null,"ignore_cache":null}'), +(40870, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.882+00', '{"cached":null,"ignore_cache":null}'), +(40871, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.883+00', '{"cached":null,"ignore_cache":null}'), +(40872, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.888+00', '{"cached":null,"ignore_cache":null}'), +(40873, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.95+00', '{"cached":null,"ignore_cache":null}'), +(40874, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.952+00', '{"cached":null,"ignore_cache":null}'), +(40875, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.952+00', '{"cached":null,"ignore_cache":null}'), +(40876, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.953+00', '{"cached":null,"ignore_cache":null}'), +(40877, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.964+00', '{"cached":null,"ignore_cache":null}'), +(40878, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:58.98+00', '{"cached":null,"ignore_cache":null}'), +(40879, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.221+00', '{"cached":null,"ignore_cache":null}'), +(40880, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.269+00', '{"cached":null,"ignore_cache":null}'), +(40881, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.304+00', '{"cached":null,"ignore_cache":null}'), +(40882, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.308+00', '{"cached":null,"ignore_cache":null}'), +(40883, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.319+00', '{"cached":null,"ignore_cache":null}'), +(40884, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.32+00', '{"cached":null,"ignore_cache":null}'), +(40885, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.325+00', '{"cached":null,"ignore_cache":null}'), +(40886, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.326+00', '{"cached":null,"ignore_cache":null}'), +(40887, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.327+00', '{"cached":null,"ignore_cache":null}'), +(40888, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.333+00', '{"cached":null,"ignore_cache":null}'), +(40889, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.335+00', '{"cached":null,"ignore_cache":null}'), +(40890, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.337+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40891, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.337+00', '{"cached":null,"ignore_cache":null}'), +(40892, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.338+00', '{"cached":null,"ignore_cache":null}'), +(40893, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.339+00', '{"cached":null,"ignore_cache":null}'), +(40894, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.34+00', '{"cached":null,"ignore_cache":null}'), +(40895, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.348+00', '{"cached":null,"ignore_cache":null}'), +(40896, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.353+00', '{"cached":null,"ignore_cache":null}'), +(40897, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.359+00', '{"cached":null,"ignore_cache":null}'), +(40898, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.373+00', '{"cached":null,"ignore_cache":null}'), +(40899, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.385+00', '{"cached":null,"ignore_cache":null}'), +(40900, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.401+00', '{"cached":null,"ignore_cache":null}'), +(40901, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.421+00', '{"cached":null,"ignore_cache":null}'), +(40902, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.442+00', '{"cached":null,"ignore_cache":null}'), +(40903, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.443+00', '{"cached":null,"ignore_cache":null}'), +(40904, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.444+00', '{"cached":null,"ignore_cache":null}'), +(40905, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.448+00', '{"cached":null,"ignore_cache":null}'), +(40906, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.449+00', '{"cached":null,"ignore_cache":null}'), +(40907, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.449+00', '{"cached":null,"ignore_cache":null}'), +(40908, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.45+00', '{"cached":null,"ignore_cache":null}'), +(40909, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.451+00', '{"cached":null,"ignore_cache":null}'), +(40910, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.451+00', '{"cached":null,"ignore_cache":null}'), +(40911, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.452+00', '{"cached":null,"ignore_cache":null}'), +(40912, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.452+00', '{"cached":null,"ignore_cache":null}'), +(40913, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.453+00', '{"cached":null,"ignore_cache":null}'), +(40914, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.453+00', '{"cached":null,"ignore_cache":null}'), +(40915, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.454+00', '{"cached":null,"ignore_cache":null}'), +(40916, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.457+00', '{"cached":null,"ignore_cache":null}'), +(40917, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.457+00', '{"cached":null,"ignore_cache":null}'), +(40918, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.458+00', '{"cached":null,"ignore_cache":null}'), +(40919, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.458+00', '{"cached":null,"ignore_cache":null}'), +(40920, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.459+00', '{"cached":null,"ignore_cache":null}'), +(40921, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.459+00', '{"cached":null,"ignore_cache":null}'), +(40922, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.516+00', '{"cached":null,"ignore_cache":null}'), +(40923, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.517+00', '{"cached":null,"ignore_cache":null}'), +(40924, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.518+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40925, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.563+00', '{"cached":null,"ignore_cache":null}'), +(40926, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.771+00', '{"cached":null,"ignore_cache":null}'), +(40927, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.781+00', '{"cached":null,"ignore_cache":null}'), +(40928, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.782+00', '{"cached":null,"ignore_cache":null}'), +(40929, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.82+00', '{"cached":null,"ignore_cache":null}'), +(40930, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.846+00', '{"cached":null,"ignore_cache":null}'), +(40931, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.858+00', '{"cached":null,"ignore_cache":null}'), +(40932, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.882+00', '{"cached":null,"ignore_cache":null}'), +(40933, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.887+00', '{"cached":null,"ignore_cache":null}'), +(40934, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.898+00', '{"cached":null,"ignore_cache":null}'), +(40935, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.917+00', '{"cached":null,"ignore_cache":null}'), +(40936, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.919+00', '{"cached":null,"ignore_cache":null}'), +(40937, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.92+00', '{"cached":null,"ignore_cache":null}'), +(40938, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.957+00', '{"cached":null,"ignore_cache":null}'), +(40939, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.958+00', '{"cached":null,"ignore_cache":null}'), +(40940, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.959+00', '{"cached":null,"ignore_cache":null}'), +(40941, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.959+00', '{"cached":null,"ignore_cache":null}'), +(40942, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.961+00', '{"cached":null,"ignore_cache":null}'), +(40943, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.962+00', '{"cached":null,"ignore_cache":null}'), +(40944, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.962+00', '{"cached":null,"ignore_cache":null}'), +(40945, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.963+00', '{"cached":null,"ignore_cache":null}'), +(40946, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:55:59.964+00', '{"cached":null,"ignore_cache":null}'), +(40947, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.018+00', '{"cached":null,"ignore_cache":null}'), +(40948, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.019+00', '{"cached":null,"ignore_cache":null}'), +(40949, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.019+00', '{"cached":null,"ignore_cache":null}'), +(40950, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.106+00', '{"cached":null,"ignore_cache":null}'), +(40951, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.159+00', '{"cached":null,"ignore_cache":null}'), +(40952, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.206+00', '{"cached":null,"ignore_cache":null}'), +(40953, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.208+00', '{"cached":null,"ignore_cache":null}'), +(40954, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.636+00', '{"cached":null,"ignore_cache":null}'), +(40955, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.669+00', '{"cached":null,"ignore_cache":null}'), +(40956, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.67+00', '{"cached":null,"ignore_cache":null}'), +(40957, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.671+00', '{"cached":null,"ignore_cache":null}'), +(40958, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.675+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40959, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.718+00', '{"cached":null,"ignore_cache":null}'), +(40960, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.72+00', '{"cached":null,"ignore_cache":null}'), +(40961, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.756+00', '{"cached":null,"ignore_cache":null}'), +(40962, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.773+00', '{"cached":null,"ignore_cache":null}'), +(40963, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:00.774+00', '{"cached":null,"ignore_cache":null}'), +(40964, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.125+00', '{"cached":null,"ignore_cache":null}'), +(40965, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.148+00', '{"cached":null,"ignore_cache":null}'), +(40966, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.153+00', '{"cached":null,"ignore_cache":null}'), +(40967, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.154+00', '{"cached":null,"ignore_cache":null}'), +(40968, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.155+00', '{"cached":null,"ignore_cache":null}'), +(40969, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.195+00', '{"cached":null,"ignore_cache":null}'), +(40970, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.196+00', '{"cached":null,"ignore_cache":null}'), +(40971, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.197+00', '{"cached":null,"ignore_cache":null}'), +(40972, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.198+00', '{"cached":null,"ignore_cache":null}'), +(40973, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.199+00', '{"cached":null,"ignore_cache":null}'), +(40974, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.2+00', '{"cached":null,"ignore_cache":null}'), +(40975, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.656+00', '{"cached":null,"ignore_cache":null}'), +(40976, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.657+00', '{"cached":null,"ignore_cache":null}'), +(40977, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.663+00', '{"cached":null,"ignore_cache":null}'), +(40978, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.704+00', '{"cached":null,"ignore_cache":null}'), +(40979, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.749+00', '{"cached":null,"ignore_cache":null}'), +(40980, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.75+00', '{"cached":null,"ignore_cache":null}'), +(40981, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.752+00', '{"cached":null,"ignore_cache":null}'), +(40982, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.753+00', '{"cached":null,"ignore_cache":null}'), +(40983, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.753+00', '{"cached":null,"ignore_cache":null}'), +(40984, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.866+00', '{"cached":null,"ignore_cache":null}'), +(40985, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.867+00', '{"cached":null,"ignore_cache":null}'), +(40986, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.868+00', '{"cached":null,"ignore_cache":null}'), +(40987, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.872+00', '{"cached":null,"ignore_cache":null}'), +(40988, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.961+00', '{"cached":null,"ignore_cache":null}'), +(40989, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.962+00', '{"cached":null,"ignore_cache":null}'), +(40990, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:01.963+00', '{"cached":null,"ignore_cache":null}'), +(40991, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 05:56:55.36+00', '{"cached":null,"ignore_cache":null}'), +(40992, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 05:58:40.356+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(40993, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:15.666+00', '{"cached":null,"ignore_cache":false}'), +(40994, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:16.343+00', '{"cached":null,"ignore_cache":false}'), +(40995, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:16.391+00', '{"cached":null,"ignore_cache":false}'), +(40996, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:16.404+00', '{"cached":null,"ignore_cache":false}'), +(40997, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:17.049+00', '{"cached":null,"ignore_cache":false}'), +(40998, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:17.358+00', '{"cached":null,"ignore_cache":false}'), +(40999, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:17.406+00', '{"cached":null,"ignore_cache":false}'), +(41000, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:17.449+00', '{"cached":null,"ignore_cache":false}'), +(41001, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:17.475+00', '{"cached":null,"ignore_cache":false}'), +(41002, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:17.691+00', '{"cached":null,"ignore_cache":false}'), +(41003, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:18.14+00', '{"cached":null,"ignore_cache":false}'), +(41004, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:18.385+00', '{"cached":null,"ignore_cache":false}'), +(41005, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:18.477+00', '{"cached":null,"ignore_cache":false}'), +(41006, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:18.505+00', '{"cached":null,"ignore_cache":false}'), +(41007, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:18.859+00', '{"cached":null,"ignore_cache":false}'), +(41008, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:18.874+00', '{"cached":null,"ignore_cache":false}'), +(41009, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:19.728+00', '{"cached":null,"ignore_cache":false}'), +(41010, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:19.742+00', '{"cached":null,"ignore_cache":false}'), +(41011, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:19.77+00', '{"cached":null,"ignore_cache":false}'), +(41012, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:19.778+00', '{"cached":null,"ignore_cache":false}'), +(41013, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:20.371+00', '{"cached":null,"ignore_cache":false}'), +(41014, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:20.421+00', '{"cached":null,"ignore_cache":false}'), +(41015, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:20.792+00', '{"cached":null,"ignore_cache":false}'), +(41016, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:20.794+00', '{"cached":null,"ignore_cache":false}'), +(41017, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:20.862+00', '{"cached":null,"ignore_cache":false}'), +(41018, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:21.024+00', '{"cached":null,"ignore_cache":false}'), +(41019, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 05:59:23.212+00', '{"cached":null,"ignore_cache":false}'), +(41020, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:14.539+00', '{"cached":null,"ignore_cache":null}'), +(41021, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:21.136+00', '{"cached":null,"ignore_cache":false}'), +(41022, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:21.257+00', '{"cached":null,"ignore_cache":false}'), +(41023, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:21.442+00', '{"cached":null,"ignore_cache":false}'), +(41024, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:21.484+00', '{"cached":null,"ignore_cache":false}'), +(41025, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:21.534+00', '{"cached":null,"ignore_cache":false}'), +(41026, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:21.643+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41027, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:22.891+00', '{"cached":null,"ignore_cache":false}'), +(41028, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:23.065+00', '{"cached":null,"ignore_cache":false}'), +(41029, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 06:01:25.174+00', '{"cached":null,"ignore_cache":false}'), +(41030, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:03:16.245+00', '{"cached":null,"ignore_cache":null}'), +(41031, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:03:21.173+00', '{"cached":null,"ignore_cache":false}'), +(41032, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:13:34.882+00', '{"cached":null,"ignore_cache":null}'), +(41033, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:13:41.222+00', '{"cached":null,"ignore_cache":false}'), +(41034, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:14:00.512+00', '{"cached":null,"ignore_cache":null}'), +(41035, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:14:01.562+00', '{"cached":null,"ignore_cache":false}'), +(41036, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2023-01-25 06:14:12.287+00', '{"cached":null,"ignore_cache":null}'), +(41037, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2023-01-25 06:14:17.04+00', '{"cached":null,"ignore_cache":false}'), +(41038, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2023-01-25 06:15:03.497+00', '{"cached":null,"ignore_cache":null}'), +(41039, 1, 'card', 11, TIMESTAMP WITH TIME ZONE '2023-01-25 06:15:16.227+00', '{"cached":null,"ignore_cache":false}'), +(41040, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:16:34.38+00', '{"cached":null,"ignore_cache":null}'), +(41041, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:16:43.602+00', '{"cached":null,"ignore_cache":false}'), +(41042, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:24:35.456+00', '{"cached":null,"ignore_cache":null}'), +(41043, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:29:00.923+00', '{"cached":null,"ignore_cache":null}'), +(41044, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:29:04.404+00', '{"cached":null,"ignore_cache":false}'), +(41045, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:06.122+00', '{"cached":null,"ignore_cache":null}'), +(41046, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:14.809+00', '{"cached":null,"ignore_cache":false}'), +(41047, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:33.046+00', '{"cached":null,"ignore_cache":null}'), +(41048, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:41.397+00', '{"cached":null,"ignore_cache":false}'), +(41049, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:42.013+00', '{"cached":null,"ignore_cache":false}'), +(41050, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:42.329+00', '{"cached":null,"ignore_cache":false}'), +(41051, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:42.446+00', '{"cached":null,"ignore_cache":false}'), +(41052, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:42.456+00', '{"cached":null,"ignore_cache":false}'), +(41053, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:42.583+00', '{"cached":null,"ignore_cache":false}'), +(41054, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:42.854+00', '{"cached":null,"ignore_cache":false}'), +(41055, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:45.058+00', '{"cached":null,"ignore_cache":false}'), +(41056, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 06:37:45.108+00', '{"cached":null,"ignore_cache":false}'), +(41057, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:29.726+00', '{"cached":null,"ignore_cache":null}'), +(41058, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:31.75+00', '{"cached":null,"ignore_cache":null}'), +(41059, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:34.787+00', '{"cached":null,"ignore_cache":false}'), +(41060, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:35.016+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41061, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:36.2+00', '{"cached":null,"ignore_cache":false}'), +(41062, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:36.227+00', '{"cached":null,"ignore_cache":false}'), +(41063, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:36.366+00', '{"cached":null,"ignore_cache":false}'), +(41064, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:36.381+00', '{"cached":null,"ignore_cache":false}'), +(41065, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:36.404+00', '{"cached":null,"ignore_cache":false}'), +(41066, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:36.673+00', '{"cached":null,"ignore_cache":false}'), +(41067, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:37.247+00', '{"cached":null,"ignore_cache":false}'), +(41068, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:37.263+00', '{"cached":null,"ignore_cache":false}'), +(41069, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:43.869+00', '{"cached":null,"ignore_cache":null}'), +(41070, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:44.391+00', '{"cached":null,"ignore_cache":null}'), +(41071, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:54.302+00', '{"cached":null,"ignore_cache":null}'), +(41072, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.801+00', '{"cached":null,"ignore_cache":false}'), +(41073, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.985+00', '{"cached":null,"ignore_cache":false}'), +(41074, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:55.993+00', '{"cached":null,"ignore_cache":false}'), +(41075, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:56.077+00', '{"cached":null,"ignore_cache":false}'), +(41076, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:56.126+00', '{"cached":null,"ignore_cache":false}'), +(41077, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:56.188+00', '{"cached":null,"ignore_cache":false}'), +(41078, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:56.256+00', '{"cached":null,"ignore_cache":false}'), +(41079, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:56.452+00', '{"cached":null,"ignore_cache":false}'), +(41080, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 06:40:56.513+00', '{"cached":null,"ignore_cache":false}'), +(41081, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:57.108+00', '{"cached":null,"ignore_cache":null}'), +(41082, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:57.564+00', '{"cached":null,"ignore_cache":null}'), +(41083, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 06:49:59.609+00', '{"cached":null,"ignore_cache":null}'), +(41084, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:00.884+00', '{"cached":null,"ignore_cache":false}'), +(41085, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:02.736+00', '{"cached":null,"ignore_cache":false}'), +(41086, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:03.046+00', '{"cached":null,"ignore_cache":false}'), +(41087, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:03.381+00', '{"cached":null,"ignore_cache":false}'), +(41088, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:03.579+00', '{"cached":null,"ignore_cache":false}'), +(41089, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:03.581+00', '{"cached":null,"ignore_cache":false}'), +(41090, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:03.704+00', '{"cached":null,"ignore_cache":false}'), +(41091, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:03.866+00', '{"cached":null,"ignore_cache":false}'), +(41092, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:03.946+00', '{"cached":null,"ignore_cache":null}'), +(41093, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:04.071+00', '{"cached":null,"ignore_cache":false}'), +(41094, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.429+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41095, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.715+00', '{"cached":null,"ignore_cache":false}'), +(41096, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.78+00', '{"cached":null,"ignore_cache":false}'), +(41097, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.818+00', '{"cached":null,"ignore_cache":false}'), +(41098, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.864+00', '{"cached":null,"ignore_cache":false}'), +(41099, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.904+00', '{"cached":null,"ignore_cache":false}'), +(41100, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.91+00', '{"cached":null,"ignore_cache":false}'), +(41101, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:05.963+00', '{"cached":null,"ignore_cache":false}'), +(41102, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:10.651+00', '{"cached":null,"ignore_cache":null}'), +(41103, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:11.586+00', '{"cached":null,"ignore_cache":false}'), +(41104, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:22.746+00', '{"cached":null,"ignore_cache":null}'), +(41105, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.922+00', '{"cached":null,"ignore_cache":false}'), +(41106, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:23.951+00', '{"cached":null,"ignore_cache":false}'), +(41107, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:24.146+00', '{"cached":null,"ignore_cache":false}'), +(41108, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:24.202+00', '{"cached":null,"ignore_cache":false}'), +(41109, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:24.234+00', '{"cached":null,"ignore_cache":false}'), +(41110, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:24.238+00', '{"cached":null,"ignore_cache":false}'), +(41111, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:24.24+00', '{"cached":null,"ignore_cache":false}'), +(41112, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:24.252+00', '{"cached":null,"ignore_cache":false}'), +(41113, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:26.655+00', '{"cached":null,"ignore_cache":null}'), +(41114, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:27.397+00', '{"cached":null,"ignore_cache":false}'), +(41115, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:35.474+00', '{"cached":null,"ignore_cache":null}'), +(41116, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.316+00', '{"cached":null,"ignore_cache":false}'), +(41117, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.488+00', '{"cached":null,"ignore_cache":false}'), +(41118, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.684+00', '{"cached":null,"ignore_cache":false}'), +(41119, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.686+00', '{"cached":null,"ignore_cache":false}'), +(41120, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.733+00', '{"cached":null,"ignore_cache":false}'), +(41121, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.758+00', '{"cached":null,"ignore_cache":false}'), +(41122, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.79+00', '{"cached":null,"ignore_cache":false}'), +(41123, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:36.876+00', '{"cached":null,"ignore_cache":false}'), +(41124, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:41.008+00', '{"cached":null,"ignore_cache":null}'), +(41125, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:41.45+00', '{"cached":null,"ignore_cache":null}'), +(41126, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:44.175+00', '{"cached":null,"ignore_cache":null}'), +(41127, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.401+00', '{"cached":null,"ignore_cache":false}'), +(41128, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.695+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41129, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.778+00', '{"cached":null,"ignore_cache":false}'), +(41130, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.869+00', '{"cached":null,"ignore_cache":false}'), +(41131, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.911+00', '{"cached":null,"ignore_cache":false}'), +(41132, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.929+00', '{"cached":null,"ignore_cache":false}'), +(41133, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.953+00', '{"cached":null,"ignore_cache":false}'), +(41134, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:50:45.97+00', '{"cached":null,"ignore_cache":false}'), +(41135, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:23.243+00', '{"cached":null,"ignore_cache":null}'), +(41136, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:24.058+00', '{"cached":null,"ignore_cache":false}'), +(41137, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:47.694+00', '{"cached":null,"ignore_cache":null}'), +(41138, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.525+00', '{"cached":null,"ignore_cache":false}'), +(41139, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.822+00', '{"cached":null,"ignore_cache":false}'), +(41140, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.843+00', '{"cached":null,"ignore_cache":false}'), +(41141, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.926+00', '{"cached":null,"ignore_cache":false}'), +(41142, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.949+00', '{"cached":null,"ignore_cache":false}'), +(41143, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:48.958+00', '{"cached":null,"ignore_cache":false}'), +(41144, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:49.007+00', '{"cached":null,"ignore_cache":false}'), +(41145, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:49.02+00', '{"cached":null,"ignore_cache":false}'), +(41146, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:55.621+00', '{"cached":null,"ignore_cache":null}'), +(41147, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:56.059+00', '{"cached":null,"ignore_cache":null}'), +(41148, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:57.725+00', '{"cached":null,"ignore_cache":null}'), +(41149, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.015+00', '{"cached":null,"ignore_cache":false}'), +(41150, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.365+00', '{"cached":null,"ignore_cache":false}'), +(41151, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.406+00', '{"cached":null,"ignore_cache":null}'), +(41152, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.432+00', '{"cached":null,"ignore_cache":false}'), +(41153, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.868+00', '{"cached":null,"ignore_cache":false}'), +(41154, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.885+00', '{"cached":null,"ignore_cache":false}'), +(41155, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.886+00', '{"cached":null,"ignore_cache":false}'), +(41156, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.931+00', '{"cached":null,"ignore_cache":false}'), +(41157, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:52:59.962+00', '{"cached":null,"ignore_cache":false}'), +(41158, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:00.453+00', '{"cached":null,"ignore_cache":false}'), +(41159, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:12.828+00', '{"cached":null,"ignore_cache":null}'), +(41160, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.625+00', '{"cached":null,"ignore_cache":false}'), +(41161, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.712+00', '{"cached":null,"ignore_cache":false}'), +(41162, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.805+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41163, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.806+00', '{"cached":null,"ignore_cache":false}'), +(41164, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.814+00', '{"cached":null,"ignore_cache":false}'), +(41165, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.822+00', '{"cached":null,"ignore_cache":false}'), +(41166, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.839+00', '{"cached":null,"ignore_cache":false}'), +(41167, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 06:53:13.907+00', '{"cached":null,"ignore_cache":false}'), +(41168, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:58:58.121+00', '{"cached":null,"ignore_cache":null}'), +(41169, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 06:59:00.289+00', '{"cached":null,"ignore_cache":false}'), +(41170, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:17.405+00', '{"cached":null,"ignore_cache":null}'), +(41171, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:18.505+00', '{"cached":null,"ignore_cache":false}'), +(41172, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:44.648+00', '{"cached":null,"ignore_cache":null}'), +(41173, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:45.695+00', '{"cached":null,"ignore_cache":false}'), +(41174, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:46.205+00', '{"cached":null,"ignore_cache":false}'), +(41175, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:46.438+00', '{"cached":null,"ignore_cache":false}'), +(41176, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:46.463+00', '{"cached":null,"ignore_cache":false}'), +(41177, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:46.482+00', '{"cached":null,"ignore_cache":false}'), +(41178, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:46.521+00', '{"cached":null,"ignore_cache":false}'), +(41179, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:46.537+00', '{"cached":null,"ignore_cache":false}'), +(41180, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:26:46.544+00', '{"cached":null,"ignore_cache":false}'), +(41181, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 07:29:49.132+00', '{"cached":null,"ignore_cache":null}'), +(41182, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:41.332+00', '{"cached":null,"ignore_cache":null}'), +(41183, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:43+00', '{"cached":null,"ignore_cache":false}'), +(41184, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:43.21+00', '{"cached":null,"ignore_cache":false}'), +(41185, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:43.285+00', '{"cached":null,"ignore_cache":false}'), +(41186, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:43.32+00', '{"cached":null,"ignore_cache":false}'), +(41187, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:43.373+00', '{"cached":null,"ignore_cache":false}'), +(41188, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:43.423+00', '{"cached":null,"ignore_cache":false}'), +(41189, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:43.686+00', '{"cached":null,"ignore_cache":false}'), +(41190, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:44.458+00', '{"cached":null,"ignore_cache":false}'), +(41191, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:44.512+00', '{"cached":null,"ignore_cache":false}'), +(41192, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:56.361+00', '{"cached":null,"ignore_cache":null}'), +(41193, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:57.444+00', '{"cached":null,"ignore_cache":false}'), +(41194, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:31:19.015+00', '{"cached":null,"ignore_cache":null}'), +(41195, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:31:19.724+00', '{"cached":null,"ignore_cache":false}'), +(41196, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 07:31:46.381+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41197, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 07:31:48.863+00', '{"cached":null,"ignore_cache":null}'), +(41198, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:00.573+00', '{"cached":null,"ignore_cache":null}'), +(41199, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:17.262+00', '{"cached":null,"ignore_cache":null}'), +(41200, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:27.334+00', '{"cached":null,"ignore_cache":null}'), +(41201, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.251+00', '{"cached":null,"ignore_cache":false}'), +(41202, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.379+00', '{"cached":null,"ignore_cache":false}'), +(41203, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.457+00', '{"cached":null,"ignore_cache":false}'), +(41204, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.471+00', '{"cached":null,"ignore_cache":false}'), +(41205, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.491+00', '{"cached":null,"ignore_cache":false}'), +(41206, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.601+00', '{"cached":null,"ignore_cache":false}'), +(41207, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.674+00', '{"cached":null,"ignore_cache":false}'), +(41208, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.748+00', '{"cached":null,"ignore_cache":false}'), +(41209, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:28.848+00', '{"cached":null,"ignore_cache":false}'), +(41210, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:52.748+00', '{"cached":null,"ignore_cache":null}'), +(41211, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:32:53.536+00', '{"cached":null,"ignore_cache":false}'), +(41212, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:33:50.556+00', '{"cached":null,"ignore_cache":null}'), +(41213, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:33:51.356+00', '{"cached":null,"ignore_cache":false}'), +(41214, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:34:22.275+00', '{"cached":null,"ignore_cache":true}'), +(41215, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:34:33.483+00', '{"cached":null,"ignore_cache":true}'), +(41216, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:34:45.068+00', '{"cached":null,"ignore_cache":true}'), +(41217, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.096+00', '{"cached":null,"ignore_cache":null}'), +(41218, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:02.824+00', '{"cached":null,"ignore_cache":false}'), +(41219, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.012+00', '{"cached":null,"ignore_cache":false}'), +(41220, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.025+00', '{"cached":null,"ignore_cache":false}'), +(41221, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.113+00', '{"cached":null,"ignore_cache":false}'), +(41222, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.161+00', '{"cached":null,"ignore_cache":false}'), +(41223, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.329+00', '{"cached":null,"ignore_cache":false}'), +(41224, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.374+00', '{"cached":null,"ignore_cache":false}'), +(41225, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.696+00', '{"cached":null,"ignore_cache":false}'), +(41226, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:35:03.733+00', '{"cached":null,"ignore_cache":false}'), +(41227, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:52.965+00', '{"cached":null,"ignore_cache":null}'), +(41228, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:53.911+00', '{"cached":null,"ignore_cache":false}'), +(41229, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.037+00', '{"cached":null,"ignore_cache":false}'), +(41230, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.129+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41231, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.13+00', '{"cached":null,"ignore_cache":false}'), +(41232, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.23+00', '{"cached":null,"ignore_cache":false}'), +(41233, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.275+00', '{"cached":null,"ignore_cache":false}'), +(41234, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.427+00', '{"cached":null,"ignore_cache":false}'), +(41235, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.541+00', '{"cached":null,"ignore_cache":false}'), +(41236, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:54.641+00', '{"cached":null,"ignore_cache":false}'), +(41237, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:58.66+00', '{"cached":null,"ignore_cache":null}'), +(41238, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.805+00', '{"cached":null,"ignore_cache":false}'), +(41239, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:36:59.965+00', '{"cached":null,"ignore_cache":false}'), +(41240, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:37:00.296+00', '{"cached":null,"ignore_cache":false}'), +(41241, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:37:00.348+00', '{"cached":null,"ignore_cache":false}'), +(41242, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:37:00.536+00', '{"cached":null,"ignore_cache":false}'), +(41243, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:37:00.715+00', '{"cached":null,"ignore_cache":false}'), +(41244, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:37:00.994+00', '{"cached":null,"ignore_cache":false}'), +(41245, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:37:01.231+00', '{"cached":null,"ignore_cache":false}'), +(41246, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:38.749+00', '{"cached":null,"ignore_cache":null}'), +(41247, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.173+00', '{"cached":null,"ignore_cache":false}'), +(41248, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.248+00', '{"cached":null,"ignore_cache":false}'), +(41249, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.351+00', '{"cached":null,"ignore_cache":false}'), +(41250, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.378+00', '{"cached":null,"ignore_cache":false}'), +(41251, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.488+00', '{"cached":null,"ignore_cache":false}'), +(41252, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.727+00', '{"cached":null,"ignore_cache":false}'), +(41253, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.883+00', '{"cached":null,"ignore_cache":false}'), +(41254, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.89+00', '{"cached":null,"ignore_cache":false}'), +(41255, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:40:41.964+00', '{"cached":null,"ignore_cache":false}'), +(41256, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:41:48.03+00', '{"cached":null,"ignore_cache":null}'), +(41257, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:41:48.782+00', '{"cached":null,"ignore_cache":false}'), +(41258, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:12.697+00', '{"cached":null,"ignore_cache":null}'), +(41259, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:13.875+00', '{"cached":null,"ignore_cache":false}'), +(41260, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:19.015+00', '{"cached":null,"ignore_cache":null}'), +(41261, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.357+00', '{"cached":null,"ignore_cache":false}'), +(41262, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.36+00', '{"cached":null,"ignore_cache":false}'), +(41263, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.564+00', '{"cached":null,"ignore_cache":false}'), +(41264, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.593+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41265, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.636+00', '{"cached":null,"ignore_cache":false}'), +(41266, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.65+00', '{"cached":null,"ignore_cache":false}'), +(41267, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.892+00', '{"cached":null,"ignore_cache":false}'), +(41268, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.97+00', '{"cached":null,"ignore_cache":false}'), +(41269, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:20.986+00', '{"cached":null,"ignore_cache":false}'), +(41270, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:25.372+00', '{"cached":null,"ignore_cache":null}'), +(41271, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.012+00', '{"cached":null,"ignore_cache":false}'), +(41272, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.283+00', '{"cached":null,"ignore_cache":false}'), +(41273, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.313+00', '{"cached":null,"ignore_cache":false}'), +(41274, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.35+00', '{"cached":null,"ignore_cache":false}'), +(41275, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.363+00', '{"cached":null,"ignore_cache":false}'), +(41276, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.407+00', '{"cached":null,"ignore_cache":false}'), +(41277, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.426+00', '{"cached":null,"ignore_cache":false}'), +(41278, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:27.465+00', '{"cached":null,"ignore_cache":false}'), +(41279, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:54.85+00', '{"cached":null,"ignore_cache":null}'), +(41280, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.498+00', '{"cached":null,"ignore_cache":false}'), +(41281, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:56.594+00', '{"cached":null,"ignore_cache":false}'), +(41282, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:59.306+00', '{"cached":null,"ignore_cache":false}'), +(41283, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:59.342+00', '{"cached":null,"ignore_cache":false}'), +(41284, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:59.344+00', '{"cached":null,"ignore_cache":false}'), +(41285, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:59.345+00', '{"cached":null,"ignore_cache":false}'), +(41286, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:59.345+00', '{"cached":null,"ignore_cache":false}'), +(41287, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:44:59.346+00', '{"cached":null,"ignore_cache":false}'), +(41288, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.683+00', '{"cached":null,"ignore_cache":false}'), +(41289, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.96+00', '{"cached":null,"ignore_cache":false}'), +(41290, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:00.984+00', '{"cached":null,"ignore_cache":false}'), +(41291, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:01.007+00', '{"cached":null,"ignore_cache":false}'), +(41292, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:01.033+00', '{"cached":null,"ignore_cache":false}'), +(41293, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:01.078+00', '{"cached":null,"ignore_cache":false}'), +(41294, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:01.091+00', '{"cached":null,"ignore_cache":false}'), +(41295, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:01.223+00', '{"cached":null,"ignore_cache":false}'), +(41296, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.924+00', '{"cached":null,"ignore_cache":false}'), +(41297, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:20.981+00', '{"cached":null,"ignore_cache":false}'), +(41298, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:21.002+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41299, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:21.009+00', '{"cached":null,"ignore_cache":false}'), +(41300, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:21.061+00', '{"cached":null,"ignore_cache":false}'), +(41301, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:21.071+00', '{"cached":null,"ignore_cache":false}'), +(41302, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:21.078+00', '{"cached":null,"ignore_cache":false}'), +(41303, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:21.082+00', '{"cached":null,"ignore_cache":false}'), +(41304, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.128+00', '{"cached":null,"ignore_cache":false}'), +(41305, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.39+00', '{"cached":null,"ignore_cache":false}'), +(41306, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.535+00', '{"cached":null,"ignore_cache":false}'), +(41307, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.545+00', '{"cached":null,"ignore_cache":false}'), +(41308, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.56+00', '{"cached":null,"ignore_cache":false}'), +(41309, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.587+00', '{"cached":null,"ignore_cache":false}'), +(41310, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.592+00', '{"cached":null,"ignore_cache":false}'), +(41311, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:45:39.594+00', '{"cached":null,"ignore_cache":false}'), +(41312, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.51+00', '{"cached":null,"ignore_cache":false}'), +(41313, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.708+00', '{"cached":null,"ignore_cache":false}'), +(41314, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.808+00', '{"cached":null,"ignore_cache":false}'), +(41315, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.882+00', '{"cached":null,"ignore_cache":false}'), +(41316, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:32.957+00', '{"cached":null,"ignore_cache":false}'), +(41317, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:33.025+00', '{"cached":null,"ignore_cache":false}'), +(41318, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:33.284+00', '{"cached":null,"ignore_cache":false}'), +(41319, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:34.015+00', '{"cached":null,"ignore_cache":false}'), +(41320, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:34.041+00', '{"cached":null,"ignore_cache":false}'), +(41321, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.63+00', '{"cached":null,"ignore_cache":false}'), +(41322, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.687+00', '{"cached":null,"ignore_cache":false}'), +(41323, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.719+00', '{"cached":null,"ignore_cache":false}'), +(41324, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.831+00', '{"cached":null,"ignore_cache":false}'), +(41325, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.851+00', '{"cached":null,"ignore_cache":false}'), +(41326, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.875+00', '{"cached":null,"ignore_cache":false}'), +(41327, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:38.897+00', '{"cached":null,"ignore_cache":false}'), +(41328, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:39.22+00', '{"cached":null,"ignore_cache":false}'), +(41329, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:39.296+00', '{"cached":null,"ignore_cache":false}'), +(41330, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.115+00', '{"cached":null,"ignore_cache":false}'), +(41331, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.21+00', '{"cached":null,"ignore_cache":false}'), +(41332, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.287+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41333, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.389+00', '{"cached":null,"ignore_cache":false}'), +(41334, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.523+00', '{"cached":null,"ignore_cache":false}'), +(41335, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.558+00', '{"cached":null,"ignore_cache":false}'), +(41336, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.624+00', '{"cached":null,"ignore_cache":false}'), +(41337, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.851+00', '{"cached":null,"ignore_cache":false}'), +(41338, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:43.859+00', '{"cached":null,"ignore_cache":false}'), +(41339, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.592+00', '{"cached":null,"ignore_cache":false}'), +(41340, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.671+00', '{"cached":null,"ignore_cache":false}'), +(41341, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.731+00', '{"cached":null,"ignore_cache":false}'), +(41342, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.774+00', '{"cached":null,"ignore_cache":false}'), +(41343, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.842+00', '{"cached":null,"ignore_cache":false}'), +(41344, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.878+00', '{"cached":null,"ignore_cache":false}'), +(41345, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:45.944+00', '{"cached":null,"ignore_cache":false}'), +(41346, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:46.272+00', '{"cached":null,"ignore_cache":false}'), +(41347, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:46.298+00', '{"cached":null,"ignore_cache":false}'), +(41348, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.23+00', '{"cached":null,"ignore_cache":false}'), +(41349, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.347+00', '{"cached":null,"ignore_cache":false}'), +(41350, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.435+00', '{"cached":null,"ignore_cache":false}'), +(41351, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.454+00', '{"cached":null,"ignore_cache":false}'), +(41352, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.498+00', '{"cached":null,"ignore_cache":false}'), +(41353, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.529+00', '{"cached":null,"ignore_cache":false}'), +(41354, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.769+00', '{"cached":null,"ignore_cache":false}'), +(41355, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.776+00', '{"cached":null,"ignore_cache":false}'), +(41356, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:53.905+00', '{"cached":null,"ignore_cache":false}'), +(41357, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.729+00', '{"cached":null,"ignore_cache":false}'), +(41358, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.782+00', '{"cached":null,"ignore_cache":false}'), +(41359, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.843+00', '{"cached":null,"ignore_cache":false}'), +(41360, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.854+00', '{"cached":null,"ignore_cache":false}'), +(41361, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.858+00', '{"cached":null,"ignore_cache":false}'), +(41362, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.914+00', '{"cached":null,"ignore_cache":false}'), +(41363, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:55.922+00', '{"cached":null,"ignore_cache":false}'), +(41364, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:56.116+00', '{"cached":null,"ignore_cache":false}'), +(41365, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:46:56.253+00', '{"cached":null,"ignore_cache":false}'), +(41366, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.261+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41367, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.488+00', '{"cached":null,"ignore_cache":false}'), +(41368, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.514+00', '{"cached":null,"ignore_cache":false}'), +(41369, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.666+00', '{"cached":null,"ignore_cache":false}'), +(41370, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.682+00', '{"cached":null,"ignore_cache":false}'), +(41371, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.905+00', '{"cached":null,"ignore_cache":false}'), +(41372, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:04.906+00', '{"cached":null,"ignore_cache":false}'), +(41373, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:05.134+00', '{"cached":null,"ignore_cache":false}'), +(41374, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:05.248+00', '{"cached":null,"ignore_cache":false}'), +(41375, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:13.376+00', '{"cached":null,"ignore_cache":false}'), +(41376, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:13.478+00', '{"cached":null,"ignore_cache":false}'), +(41377, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:13.609+00', '{"cached":null,"ignore_cache":false}'), +(41378, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:13.724+00', '{"cached":null,"ignore_cache":false}'), +(41379, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:13.824+00', '{"cached":null,"ignore_cache":false}'), +(41380, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:13.89+00', '{"cached":null,"ignore_cache":false}'), +(41381, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:14.022+00', '{"cached":null,"ignore_cache":false}'), +(41382, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:14.066+00', '{"cached":null,"ignore_cache":false}'), +(41383, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:14.515+00', '{"cached":null,"ignore_cache":false}'), +(41384, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:23.641+00', '{"cached":null,"ignore_cache":false}'), +(41385, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:24.113+00', '{"cached":null,"ignore_cache":false}'), +(41386, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:24.687+00', '{"cached":null,"ignore_cache":false}'), +(41387, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:24.879+00', '{"cached":null,"ignore_cache":false}'), +(41388, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:24.881+00', '{"cached":null,"ignore_cache":false}'), +(41389, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:24.969+00', '{"cached":null,"ignore_cache":false}'), +(41390, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:24.97+00', '{"cached":null,"ignore_cache":false}'), +(41391, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:24.97+00', '{"cached":null,"ignore_cache":false}'), +(41392, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 07:47:25.004+00', '{"cached":null,"ignore_cache":false}'), +(41393, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:33.924+00', '{"cached":null,"ignore_cache":false}'), +(41394, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:38.515+00', '{"cached":null,"ignore_cache":false}'), +(41395, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:38.539+00', '{"cached":null,"ignore_cache":false}'), +(41396, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:38.545+00', '{"cached":null,"ignore_cache":false}'), +(41397, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:38.893+00', '{"cached":null,"ignore_cache":false}'), +(41398, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:38.904+00', '{"cached":null,"ignore_cache":false}'), +(41399, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:38.912+00', '{"cached":null,"ignore_cache":false}'), +(41400, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:38.915+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41401, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.704+00', '{"cached":null,"ignore_cache":false}'), +(41402, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.844+00', '{"cached":null,"ignore_cache":false}'), +(41403, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.937+00', '{"cached":null,"ignore_cache":false}'), +(41404, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:49.989+00', '{"cached":null,"ignore_cache":false}'), +(41405, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:50.101+00', '{"cached":null,"ignore_cache":false}'), +(41406, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:50.153+00', '{"cached":null,"ignore_cache":false}'), +(41407, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:50.166+00', '{"cached":null,"ignore_cache":false}'), +(41408, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:50.172+00', '{"cached":null,"ignore_cache":false}'), +(41409, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.726+00', '{"cached":null,"ignore_cache":false}'), +(41410, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.791+00', '{"cached":null,"ignore_cache":false}'), +(41411, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:54.898+00', '{"cached":null,"ignore_cache":false}'), +(41412, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:55.087+00', '{"cached":null,"ignore_cache":false}'), +(41413, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:55.124+00', '{"cached":null,"ignore_cache":false}'), +(41414, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:55.13+00', '{"cached":null,"ignore_cache":false}'), +(41415, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:55.179+00', '{"cached":null,"ignore_cache":false}'), +(41416, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:55.212+00', '{"cached":null,"ignore_cache":false}'), +(41417, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.443+00', '{"cached":null,"ignore_cache":false}'), +(41418, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.564+00', '{"cached":null,"ignore_cache":false}'), +(41419, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.624+00', '{"cached":null,"ignore_cache":false}'), +(41420, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.642+00', '{"cached":null,"ignore_cache":false}'), +(41421, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.672+00', '{"cached":null,"ignore_cache":false}'), +(41422, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.698+00', '{"cached":null,"ignore_cache":false}'), +(41423, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.705+00', '{"cached":null,"ignore_cache":false}'), +(41424, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:48:58.769+00', '{"cached":null,"ignore_cache":false}'), +(41425, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.29+00', '{"cached":null,"ignore_cache":false}'), +(41426, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.529+00', '{"cached":null,"ignore_cache":false}'), +(41427, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:08.566+00', '{"cached":null,"ignore_cache":false}'), +(41428, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:10.688+00', '{"cached":null,"ignore_cache":false}'), +(41429, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:10.699+00', '{"cached":null,"ignore_cache":false}'), +(41430, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:10.702+00', '{"cached":null,"ignore_cache":false}'), +(41431, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:10.707+00', '{"cached":null,"ignore_cache":false}'), +(41432, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:10.727+00', '{"cached":null,"ignore_cache":false}'), +(41433, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:14.907+00', '{"cached":null,"ignore_cache":false}'), +(41434, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:15.018+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41435, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:15.08+00', '{"cached":null,"ignore_cache":false}'), +(41436, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:15.096+00', '{"cached":null,"ignore_cache":false}'), +(41437, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:15.159+00', '{"cached":null,"ignore_cache":false}'), +(41438, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:15.172+00', '{"cached":null,"ignore_cache":false}'), +(41439, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:15.225+00', '{"cached":null,"ignore_cache":false}'), +(41440, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:15.302+00', '{"cached":null,"ignore_cache":false}'), +(41441, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.77+00', '{"cached":null,"ignore_cache":false}'), +(41442, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:24.998+00', '{"cached":null,"ignore_cache":false}'), +(41443, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:25.03+00', '{"cached":null,"ignore_cache":false}'), +(41444, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:25.153+00', '{"cached":null,"ignore_cache":false}'), +(41445, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:25.161+00', '{"cached":null,"ignore_cache":false}'), +(41446, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:25.249+00', '{"cached":null,"ignore_cache":false}'), +(41447, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:25.266+00', '{"cached":null,"ignore_cache":false}'), +(41448, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:25.3+00', '{"cached":null,"ignore_cache":false}'), +(41449, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.673+00', '{"cached":null,"ignore_cache":false}'), +(41450, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.798+00', '{"cached":null,"ignore_cache":false}'), +(41451, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:31.977+00', '{"cached":null,"ignore_cache":false}'), +(41452, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:32.092+00', '{"cached":null,"ignore_cache":false}'), +(41453, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:32.122+00', '{"cached":null,"ignore_cache":false}'), +(41454, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:32.142+00', '{"cached":null,"ignore_cache":false}'), +(41455, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:32.214+00', '{"cached":null,"ignore_cache":false}'), +(41456, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:49:32.269+00', '{"cached":null,"ignore_cache":false}'), +(41457, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:39.716+00', '{"cached":null,"ignore_cache":false}'), +(41458, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:40.64+00', '{"cached":null,"ignore_cache":false}'), +(41459, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:40.65+00', '{"cached":null,"ignore_cache":false}'), +(41460, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:40.651+00', '{"cached":null,"ignore_cache":false}'), +(41461, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:41.536+00', '{"cached":null,"ignore_cache":false}'), +(41462, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:41.571+00', '{"cached":null,"ignore_cache":false}'), +(41463, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:41.594+00', '{"cached":null,"ignore_cache":false}'), +(41464, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:41.632+00', '{"cached":null,"ignore_cache":false}'), +(41465, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:54.458+00', '{"cached":null,"ignore_cache":false}'), +(41466, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:54.627+00', '{"cached":null,"ignore_cache":false}'), +(41467, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:54.674+00', '{"cached":null,"ignore_cache":false}'), +(41468, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:54.754+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41469, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:54.787+00', '{"cached":null,"ignore_cache":false}'), +(41470, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:54.823+00', '{"cached":null,"ignore_cache":false}'), +(41471, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:55.124+00', '{"cached":null,"ignore_cache":false}'), +(41472, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:51:55.339+00', '{"cached":null,"ignore_cache":false}'), +(41473, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.679+00', '{"cached":null,"ignore_cache":false}'), +(41474, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.839+00', '{"cached":null,"ignore_cache":false}'), +(41475, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.866+00', '{"cached":null,"ignore_cache":false}'), +(41476, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.879+00', '{"cached":null,"ignore_cache":false}'), +(41477, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.919+00', '{"cached":null,"ignore_cache":false}'), +(41478, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.951+00', '{"cached":null,"ignore_cache":false}'), +(41479, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.964+00', '{"cached":null,"ignore_cache":false}'), +(41480, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:12.981+00', '{"cached":null,"ignore_cache":false}'), +(41481, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.107+00', '{"cached":null,"ignore_cache":false}'), +(41482, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.206+00', '{"cached":null,"ignore_cache":false}'), +(41483, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.35+00', '{"cached":null,"ignore_cache":false}'), +(41484, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.374+00', '{"cached":null,"ignore_cache":false}'), +(41485, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.461+00', '{"cached":null,"ignore_cache":false}'), +(41486, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.473+00', '{"cached":null,"ignore_cache":false}'), +(41487, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.509+00', '{"cached":null,"ignore_cache":false}'), +(41488, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:25.54+00', '{"cached":null,"ignore_cache":false}'), +(41489, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.265+00', '{"cached":null,"ignore_cache":false}'), +(41490, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.307+00', '{"cached":null,"ignore_cache":false}'), +(41491, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.412+00', '{"cached":null,"ignore_cache":false}'), +(41492, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.429+00', '{"cached":null,"ignore_cache":false}'), +(41493, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.44+00', '{"cached":null,"ignore_cache":false}'), +(41494, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.518+00', '{"cached":null,"ignore_cache":false}'), +(41495, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.527+00', '{"cached":null,"ignore_cache":false}'), +(41496, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:32.616+00', '{"cached":null,"ignore_cache":false}'), +(41497, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.158+00', '{"cached":null,"ignore_cache":false}'), +(41498, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.18+00', '{"cached":null,"ignore_cache":false}'), +(41499, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.221+00', '{"cached":null,"ignore_cache":false}'), +(41500, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.227+00', '{"cached":null,"ignore_cache":false}'), +(41501, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.231+00', '{"cached":null,"ignore_cache":false}'), +(41502, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.243+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41503, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.291+00', '{"cached":null,"ignore_cache":false}'), +(41504, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:37.374+00', '{"cached":null,"ignore_cache":false}'), +(41505, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.546+00', '{"cached":null,"ignore_cache":false}'), +(41506, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.573+00', '{"cached":null,"ignore_cache":false}'), +(41507, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.634+00', '{"cached":null,"ignore_cache":false}'), +(41508, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.88+00', '{"cached":null,"ignore_cache":false}'), +(41509, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.888+00', '{"cached":null,"ignore_cache":false}'), +(41510, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.938+00', '{"cached":null,"ignore_cache":false}'), +(41511, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:42.946+00', '{"cached":null,"ignore_cache":false}'), +(41512, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 07:52:43.052+00', '{"cached":null,"ignore_cache":false}'), +(41513, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:03.701+00', '{"cached":null,"ignore_cache":false}'), +(41514, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:04.727+00', '{"cached":null,"ignore_cache":false}'), +(41515, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:04.765+00', '{"cached":null,"ignore_cache":false}'), +(41516, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:04.782+00', '{"cached":null,"ignore_cache":false}'), +(41517, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:05.073+00', '{"cached":null,"ignore_cache":false}'), +(41518, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:05.145+00', '{"cached":null,"ignore_cache":false}'), +(41519, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:05.151+00', '{"cached":null,"ignore_cache":false}'), +(41520, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:05.153+00', '{"cached":null,"ignore_cache":false}'), +(41521, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.148+00', '{"cached":null,"ignore_cache":false}'), +(41522, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.254+00', '{"cached":null,"ignore_cache":false}'), +(41523, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.349+00', '{"cached":null,"ignore_cache":false}'), +(41524, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.385+00', '{"cached":null,"ignore_cache":false}'), +(41525, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.385+00', '{"cached":null,"ignore_cache":false}'), +(41526, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.438+00', '{"cached":null,"ignore_cache":false}'), +(41527, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.451+00', '{"cached":null,"ignore_cache":false}'), +(41528, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:11.467+00', '{"cached":null,"ignore_cache":false}'), +(41529, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:18.076+00', '{"cached":null,"ignore_cache":null}'), +(41530, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.345+00', '{"cached":null,"ignore_cache":false}'), +(41531, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.713+00', '{"cached":null,"ignore_cache":false}'), +(41532, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.765+00', '{"cached":null,"ignore_cache":false}'), +(41533, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.81+00', '{"cached":null,"ignore_cache":false}'), +(41534, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.847+00', '{"cached":null,"ignore_cache":false}'), +(41535, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.852+00', '{"cached":null,"ignore_cache":false}'), +(41536, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.859+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41537, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:20.879+00', '{"cached":null,"ignore_cache":false}'), +(41538, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.157+00', '{"cached":null,"ignore_cache":null}'), +(41539, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:58.921+00', '{"cached":null,"ignore_cache":false}'), +(41540, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:59.04+00', '{"cached":null,"ignore_cache":false}'), +(41541, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:59.063+00', '{"cached":null,"ignore_cache":false}'), +(41542, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:59.132+00', '{"cached":null,"ignore_cache":false}'), +(41543, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:59.149+00', '{"cached":null,"ignore_cache":false}'), +(41544, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:59.165+00', '{"cached":null,"ignore_cache":false}'), +(41545, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:02:59.19+00', '{"cached":null,"ignore_cache":false}'), +(41546, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:43.285+00', '{"cached":null,"ignore_cache":false}'), +(41547, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:44.248+00', '{"cached":null,"ignore_cache":false}'), +(41548, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:44.251+00', '{"cached":null,"ignore_cache":false}'), +(41549, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:44.276+00', '{"cached":null,"ignore_cache":false}'), +(41550, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:44.319+00', '{"cached":null,"ignore_cache":false}'), +(41551, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:44.476+00', '{"cached":null,"ignore_cache":false}'), +(41552, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:44.606+00', '{"cached":null,"ignore_cache":false}'), +(41553, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:45.912+00', '{"cached":null,"ignore_cache":false}'), +(41554, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:46.402+00', '{"cached":null,"ignore_cache":false}'), +(41555, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:46.96+00', '{"cached":null,"ignore_cache":false}'), +(41556, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47+00', '{"cached":null,"ignore_cache":false}'), +(41557, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.032+00', '{"cached":null,"ignore_cache":false}'), +(41558, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.056+00', '{"cached":null,"ignore_cache":false}'), +(41559, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.123+00', '{"cached":null,"ignore_cache":false}'), +(41560, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.134+00', '{"cached":null,"ignore_cache":false}'), +(41561, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.137+00', '{"cached":null,"ignore_cache":false}'), +(41562, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.154+00', '{"cached":null,"ignore_cache":false}'), +(41563, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.268+00', '{"cached":null,"ignore_cache":false}'), +(41564, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.299+00', '{"cached":null,"ignore_cache":false}'), +(41565, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.302+00', '{"cached":null,"ignore_cache":false}'), +(41566, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.304+00', '{"cached":null,"ignore_cache":false}'), +(41567, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.305+00', '{"cached":null,"ignore_cache":false}'), +(41568, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.306+00', '{"cached":null,"ignore_cache":false}'), +(41569, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.31+00', '{"cached":null,"ignore_cache":false}'), +(41570, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.329+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41571, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:47.33+00', '{"cached":null,"ignore_cache":false}'), +(41572, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:48.909+00', '{"cached":null,"ignore_cache":false}'), +(41573, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:48.961+00', '{"cached":null,"ignore_cache":false}'), +(41574, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:49.132+00', '{"cached":null,"ignore_cache":false}'), +(41575, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:49.176+00', '{"cached":null,"ignore_cache":false}'), +(41576, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 08:44:57.911+00', '{"cached":null,"ignore_cache":false}'), +(41577, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:42.401+00', '{"cached":null,"ignore_cache":false}'), +(41578, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:42.427+00', '{"cached":null,"ignore_cache":false}'), +(41579, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:42.433+00', '{"cached":null,"ignore_cache":false}'), +(41580, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:42.509+00', '{"cached":null,"ignore_cache":false}'), +(41581, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.175+00', '{"cached":null,"ignore_cache":false}'), +(41582, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.451+00', '{"cached":null,"ignore_cache":false}'), +(41583, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.468+00', '{"cached":null,"ignore_cache":false}'), +(41584, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.512+00', '{"cached":null,"ignore_cache":false}'), +(41585, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.559+00', '{"cached":null,"ignore_cache":false}'), +(41586, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.598+00', '{"cached":null,"ignore_cache":false}'), +(41587, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.603+00', '{"cached":null,"ignore_cache":false}'), +(41588, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.665+00', '{"cached":null,"ignore_cache":false}'), +(41589, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.681+00', '{"cached":null,"ignore_cache":false}'), +(41590, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:44.947+00', '{"cached":null,"ignore_cache":false}'), +(41591, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:45.543+00', '{"cached":null,"ignore_cache":false}'), +(41592, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 08:49:45.631+00', '{"cached":null,"ignore_cache":false}'), +(41593, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:41.951+00', '{"cached":null,"ignore_cache":false}'), +(41594, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:43.417+00', '{"cached":null,"ignore_cache":false}'), +(41595, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:43.438+00', '{"cached":null,"ignore_cache":false}'), +(41596, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:43.463+00', '{"cached":null,"ignore_cache":false}'), +(41597, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:43.677+00', '{"cached":null,"ignore_cache":false}'), +(41598, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.188+00', '{"cached":null,"ignore_cache":false}'), +(41599, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.189+00', '{"cached":null,"ignore_cache":false}'), +(41600, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.309+00', '{"cached":null,"ignore_cache":false}'), +(41601, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.493+00', '{"cached":null,"ignore_cache":false}'), +(41602, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.497+00', '{"cached":null,"ignore_cache":false}'), +(41603, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.527+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41604, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.547+00', '{"cached":null,"ignore_cache":false}'), +(41605, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:44.553+00', '{"cached":null,"ignore_cache":false}'), +(41606, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:45.044+00', '{"cached":null,"ignore_cache":false}'), +(41607, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:45.83+00', '{"cached":null,"ignore_cache":false}'), +(41608, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 08:54:45.905+00', '{"cached":null,"ignore_cache":false}'), +(41609, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.023+00', '{"cached":null,"ignore_cache":false}'), +(41610, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.446+00', '{"cached":null,"ignore_cache":false}'), +(41611, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.456+00', '{"cached":null,"ignore_cache":false}'), +(41612, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.605+00', '{"cached":null,"ignore_cache":false}'), +(41613, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.733+00', '{"cached":null,"ignore_cache":false}'), +(41614, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.788+00', '{"cached":null,"ignore_cache":false}'), +(41615, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.789+00', '{"cached":null,"ignore_cache":false}'), +(41616, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:43.79+00', '{"cached":null,"ignore_cache":false}'), +(41617, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.023+00', '{"cached":null,"ignore_cache":false}'), +(41618, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.04+00', '{"cached":null,"ignore_cache":false}'), +(41619, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.064+00', '{"cached":null,"ignore_cache":false}'), +(41620, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.182+00', '{"cached":null,"ignore_cache":false}'), +(41621, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.184+00', '{"cached":null,"ignore_cache":false}'), +(41622, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.276+00', '{"cached":null,"ignore_cache":false}'), +(41623, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.323+00', '{"cached":null,"ignore_cache":false}'), +(41624, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 08:59:44.38+00', '{"cached":null,"ignore_cache":false}'), +(41625, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.733+00', '{"cached":null,"ignore_cache":false}'), +(41626, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.753+00', '{"cached":null,"ignore_cache":false}'), +(41627, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.768+00', '{"cached":null,"ignore_cache":false}'), +(41628, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:46.96+00', '{"cached":null,"ignore_cache":false}'), +(41629, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:47.711+00', '{"cached":null,"ignore_cache":false}'), +(41630, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:47.717+00', '{"cached":null,"ignore_cache":false}'), +(41631, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:47.731+00', '{"cached":null,"ignore_cache":false}'), +(41632, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.866+00', '{"cached":null,"ignore_cache":false}'), +(41633, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:48.921+00', '{"cached":null,"ignore_cache":false}'), +(41634, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:49.018+00', '{"cached":null,"ignore_cache":false}'), +(41635, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:49.041+00', '{"cached":null,"ignore_cache":false}'), +(41636, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:49.198+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41637, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:49.211+00', '{"cached":null,"ignore_cache":false}'), +(41638, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:49.548+00', '{"cached":null,"ignore_cache":false}'), +(41639, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:49.552+00', '{"cached":null,"ignore_cache":false}'), +(41640, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 09:04:49.718+00', '{"cached":null,"ignore_cache":false}'), +(41641, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:27.591+00', '{"cached":null,"ignore_cache":null}'), +(41642, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:28.065+00', '{"cached":null,"ignore_cache":null}'), +(41643, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:52.075+00', '{"cached":null,"ignore_cache":null}'), +(41644, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:52.525+00', '{"cached":null,"ignore_cache":null}'), +(41645, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:54.31+00', '{"cached":null,"ignore_cache":null}'), +(41646, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:54.747+00', '{"cached":null,"ignore_cache":null}'), +(41647, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:57.573+00', '{"cached":null,"ignore_cache":null}'), +(41648, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:05:58.72+00', '{"cached":null,"ignore_cache":null}'), +(41649, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:03.418+00', '{"cached":null,"ignore_cache":null}'), +(41650, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:05.364+00', '{"cached":null,"ignore_cache":false}'), +(41651, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:06.168+00', '{"cached":null,"ignore_cache":false}'), +(41652, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:06.312+00', '{"cached":null,"ignore_cache":false}'), +(41653, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:06.36+00', '{"cached":null,"ignore_cache":false}'), +(41654, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:06.443+00', '{"cached":null,"ignore_cache":false}'), +(41655, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:06.5+00', '{"cached":null,"ignore_cache":false}'), +(41656, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:06.602+00', '{"cached":null,"ignore_cache":false}'), +(41657, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:07.464+00', '{"cached":null,"ignore_cache":false}'), +(41658, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:07.494+00', '{"cached":null,"ignore_cache":false}'), +(41659, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:19.221+00', '{"cached":null,"ignore_cache":null}'), +(41660, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:06:19.646+00', '{"cached":null,"ignore_cache":null}'), +(41661, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:09:55.015+00', '{"cached":null,"ignore_cache":null}'), +(41662, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:09:55.396+00', '{"cached":null,"ignore_cache":null}'), +(41663, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:09:55.424+00', '{"cached":null,"ignore_cache":null}'), +(41664, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:09:55.816+00', '{"cached":null,"ignore_cache":null}'), +(41665, 1, 'table', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 10:10:28.055+00', '{"cached":null,"ignore_cache":null}'), +(41666, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 10:14:59.992+00', '{"cached":null,"ignore_cache":null}'), +(41667, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:01.377+00', '{"cached":null,"ignore_cache":false}'), +(41668, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:01.61+00', '{"cached":null,"ignore_cache":false}'), +(41669, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:01.861+00', '{"cached":null,"ignore_cache":false}'), +(41670, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:02.326+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41671, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:02.485+00', '{"cached":null,"ignore_cache":false}'), +(41672, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:02.52+00', '{"cached":null,"ignore_cache":false}'), +(41673, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:02.531+00', '{"cached":null,"ignore_cache":false}'), +(41674, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:02.762+00', '{"cached":null,"ignore_cache":false}'), +(41675, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:15:02.781+00', '{"cached":null,"ignore_cache":false}'), +(41676, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:16:05.434+00', '{"cached":null,"ignore_cache":null}'), +(41677, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:16:05.867+00', '{"cached":null,"ignore_cache":null}'), +(41678, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:16:40.239+00', '{"cached":null,"ignore_cache":null}'), +(41679, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:16:40.76+00', '{"cached":null,"ignore_cache":false}'), +(41680, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:04.955+00', '{"cached":null,"ignore_cache":null}'), +(41681, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.793+00', '{"cached":null,"ignore_cache":false}'), +(41682, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.839+00', '{"cached":null,"ignore_cache":false}'), +(41683, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:05.926+00', '{"cached":null,"ignore_cache":false}'), +(41684, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:06.087+00', '{"cached":null,"ignore_cache":false}'), +(41685, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:06.114+00', '{"cached":null,"ignore_cache":false}'), +(41686, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:06.121+00', '{"cached":null,"ignore_cache":false}'), +(41687, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:06.289+00', '{"cached":null,"ignore_cache":false}'), +(41688, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:06.334+00', '{"cached":null,"ignore_cache":false}'), +(41689, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:06.479+00', '{"cached":null,"ignore_cache":false}'), +(41690, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:41.697+00', '{"cached":null,"ignore_cache":null}'), +(41691, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:17:42.177+00', '{"cached":null,"ignore_cache":null}'), +(41692, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:38.542+00', '{"cached":null,"ignore_cache":null}'), +(41693, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:43.33+00', '{"cached":null,"ignore_cache":null}'), +(41694, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:46.379+00', '{"cached":null,"ignore_cache":null}'), +(41695, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:56.898+00', '{"cached":null,"ignore_cache":null}'), +(41696, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:58.188+00', '{"cached":null,"ignore_cache":false}'), +(41697, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:58.217+00', '{"cached":null,"ignore_cache":false}'), +(41698, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:58.378+00', '{"cached":null,"ignore_cache":false}'), +(41699, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:58.407+00', '{"cached":null,"ignore_cache":false}'), +(41700, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:58.413+00', '{"cached":null,"ignore_cache":false}'), +(41701, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:58.429+00', '{"cached":null,"ignore_cache":false}'), +(41702, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 10:19:58.457+00', '{"cached":null,"ignore_cache":false}'), +(41703, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.893+00', '{"cached":null,"ignore_cache":false}'), +(41704, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.965+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41705, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:14.981+00', '{"cached":null,"ignore_cache":false}'), +(41706, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:15.109+00', '{"cached":null,"ignore_cache":false}'), +(41707, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:15.15+00', '{"cached":null,"ignore_cache":false}'), +(41708, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:15.184+00', '{"cached":null,"ignore_cache":false}'), +(41709, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:15.191+00', '{"cached":null,"ignore_cache":false}'), +(41710, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:15.481+00', '{"cached":null,"ignore_cache":false}'), +(41711, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:15.526+00', '{"cached":null,"ignore_cache":false}'), +(41712, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.209+00', '{"cached":null,"ignore_cache":false}'), +(41713, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.357+00', '{"cached":null,"ignore_cache":false}'), +(41714, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.431+00', '{"cached":null,"ignore_cache":false}'), +(41715, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.449+00', '{"cached":null,"ignore_cache":false}'), +(41716, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.47+00', '{"cached":null,"ignore_cache":false}'), +(41717, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.481+00', '{"cached":null,"ignore_cache":false}'), +(41718, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.51+00', '{"cached":null,"ignore_cache":false}'), +(41719, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.821+00', '{"cached":null,"ignore_cache":false}'), +(41720, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:20.847+00', '{"cached":null,"ignore_cache":false}'), +(41721, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.079+00', '{"cached":null,"ignore_cache":false}'), +(41722, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.104+00', '{"cached":null,"ignore_cache":false}'), +(41723, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.322+00', '{"cached":null,"ignore_cache":false}'), +(41724, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.324+00', '{"cached":null,"ignore_cache":false}'), +(41725, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.329+00', '{"cached":null,"ignore_cache":false}'), +(41726, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.436+00', '{"cached":null,"ignore_cache":false}'), +(41727, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.451+00', '{"cached":null,"ignore_cache":false}'), +(41728, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.517+00', '{"cached":null,"ignore_cache":false}'), +(41729, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:36.648+00', '{"cached":null,"ignore_cache":false}'), +(41730, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.805+00', '{"cached":null,"ignore_cache":false}'), +(41731, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:44.986+00', '{"cached":null,"ignore_cache":false}'), +(41732, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:45.129+00', '{"cached":null,"ignore_cache":false}'), +(41733, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:45.152+00', '{"cached":null,"ignore_cache":false}'), +(41734, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:45.202+00', '{"cached":null,"ignore_cache":false}'), +(41735, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:45.303+00', '{"cached":null,"ignore_cache":false}'), +(41736, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:45.525+00', '{"cached":null,"ignore_cache":false}'), +(41737, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:45.611+00', '{"cached":null,"ignore_cache":false}'), +(41738, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:45.647+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41739, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.528+00', '{"cached":null,"ignore_cache":false}'), +(41740, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.607+00', '{"cached":null,"ignore_cache":false}'), +(41741, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.645+00', '{"cached":null,"ignore_cache":false}'), +(41742, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.674+00', '{"cached":null,"ignore_cache":false}'), +(41743, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.698+00', '{"cached":null,"ignore_cache":false}'), +(41744, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:50.784+00', '{"cached":null,"ignore_cache":false}'), +(41745, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:51.022+00', '{"cached":null,"ignore_cache":false}'), +(41746, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:51.046+00', '{"cached":null,"ignore_cache":false}'), +(41747, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:51.101+00', '{"cached":null,"ignore_cache":false}'), +(41748, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:54.319+00', '{"cached":null,"ignore_cache":null}'), +(41749, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:54.757+00', '{"cached":null,"ignore_cache":null}'), +(41750, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:20:59.85+00', '{"cached":null,"ignore_cache":null}'), +(41751, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:04.561+00', '{"cached":null,"ignore_cache":null}'), +(41752, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:13.704+00', '{"cached":null,"ignore_cache":null}'), +(41753, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:20.311+00', '{"cached":null,"ignore_cache":null}'), +(41754, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:21.292+00', '{"cached":null,"ignore_cache":false}'), +(41755, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:21.456+00', '{"cached":null,"ignore_cache":false}'), +(41756, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:21.472+00', '{"cached":null,"ignore_cache":false}'), +(41757, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:21.542+00', '{"cached":null,"ignore_cache":false}'), +(41758, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:21.611+00', '{"cached":null,"ignore_cache":false}'), +(41759, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:21.621+00', '{"cached":null,"ignore_cache":false}'), +(41760, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:21.968+00', '{"cached":null,"ignore_cache":false}'), +(41761, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:22.023+00', '{"cached":null,"ignore_cache":false}'), +(41762, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 10:21:22.368+00', '{"cached":null,"ignore_cache":false}'), +(41763, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:34.829+00', '{"cached":null,"ignore_cache":null}'), +(41764, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:35.796+00', '{"cached":null,"ignore_cache":null}'), +(41765, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:37.731+00', '{"cached":null,"ignore_cache":false}'), +(41766, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:38.433+00', '{"cached":null,"ignore_cache":false}'), +(41767, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:38.853+00', '{"cached":null,"ignore_cache":false}'), +(41768, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:38.894+00', '{"cached":null,"ignore_cache":false}'), +(41769, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:38.954+00', '{"cached":null,"ignore_cache":false}'), +(41770, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.314+00', '{"cached":null,"ignore_cache":false}'), +(41771, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.394+00', '{"cached":null,"ignore_cache":false}'), +(41772, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.565+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41773, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.569+00', '{"cached":null,"ignore_cache":false}'), +(41774, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.604+00', '{"cached":null,"ignore_cache":false}'), +(41775, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.642+00', '{"cached":null,"ignore_cache":false}'), +(41776, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.648+00', '{"cached":null,"ignore_cache":false}'), +(41777, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.655+00', '{"cached":null,"ignore_cache":false}'), +(41778, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:39.861+00', '{"cached":null,"ignore_cache":false}'), +(41779, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:40.141+00', '{"cached":null,"ignore_cache":false}'), +(41780, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:13:40.164+00', '{"cached":null,"ignore_cache":false}'), +(41781, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:02.606+00', '{"cached":null,"ignore_cache":null}'), +(41782, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:03.053+00', '{"cached":null,"ignore_cache":null}'), +(41783, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:09.665+00', '{"cached":null,"ignore_cache":null}'), +(41784, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:17.261+00', '{"cached":null,"ignore_cache":null}'), +(41785, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:53.704+00', '{"cached":null,"ignore_cache":null}'), +(41786, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:54.189+00', '{"cached":null,"ignore_cache":null}'), +(41787, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:56.803+00', '{"cached":null,"ignore_cache":null}'), +(41788, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:57.652+00', '{"cached":null,"ignore_cache":false}'), +(41789, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.057+00', '{"cached":null,"ignore_cache":false}'), +(41790, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.192+00', '{"cached":null,"ignore_cache":false}'), +(41791, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.294+00', '{"cached":null,"ignore_cache":false}'), +(41792, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.315+00', '{"cached":null,"ignore_cache":false}'), +(41793, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.454+00', '{"cached":null,"ignore_cache":false}'), +(41794, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.488+00', '{"cached":null,"ignore_cache":false}'), +(41795, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.711+00', '{"cached":null,"ignore_cache":false}'), +(41796, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:17:58.713+00', '{"cached":null,"ignore_cache":false}'), +(41797, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:12.694+00', '{"cached":null,"ignore_cache":null}'), +(41798, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:13.132+00', '{"cached":null,"ignore_cache":null}'), +(41799, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:17.72+00', '{"cached":null,"ignore_cache":null}'), +(41800, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:19:48.436+00', '{"cached":null,"ignore_cache":null}'), +(41801, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:17.825+00', '{"cached":null,"ignore_cache":null}'), +(41802, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.142+00', '{"cached":null,"ignore_cache":false}'), +(41803, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.154+00', '{"cached":null,"ignore_cache":false}'), +(41804, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.189+00', '{"cached":null,"ignore_cache":false}'), +(41805, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.384+00', '{"cached":null,"ignore_cache":false}'), +(41806, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.705+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41807, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.748+00', '{"cached":null,"ignore_cache":false}'), +(41808, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.825+00', '{"cached":null,"ignore_cache":false}'), +(41809, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.863+00', '{"cached":null,"ignore_cache":false}'), +(41810, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:19.905+00', '{"cached":null,"ignore_cache":false}'), +(41811, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:28.305+00', '{"cached":null,"ignore_cache":null}'), +(41812, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:29.129+00', '{"cached":null,"ignore_cache":false}'), +(41813, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:32.649+00', '{"cached":null,"ignore_cache":null}'), +(41814, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:49.66+00', '{"cached":null,"ignore_cache":null}'), +(41815, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.439+00', '{"cached":null,"ignore_cache":false}'), +(41816, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.653+00', '{"cached":null,"ignore_cache":false}'), +(41817, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.744+00', '{"cached":null,"ignore_cache":false}'), +(41818, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.901+00', '{"cached":null,"ignore_cache":false}'), +(41819, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.937+00', '{"cached":null,"ignore_cache":false}'), +(41820, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:50.954+00', '{"cached":null,"ignore_cache":false}'), +(41821, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:51.064+00', '{"cached":null,"ignore_cache":false}'), +(41822, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:51.293+00', '{"cached":null,"ignore_cache":false}'), +(41823, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:54.325+00', '{"cached":null,"ignore_cache":false}'), +(41824, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:40.752+00', '{"cached":null,"ignore_cache":null}'), +(41825, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:46.565+00', '{"cached":null,"ignore_cache":false}'), +(41826, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:49.864+00', '{"cached":null,"ignore_cache":null}'), +(41827, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:56.373+00', '{"cached":null,"ignore_cache":null}'), +(41828, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.575+00', '{"cached":null,"ignore_cache":false}'), +(41829, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.821+00', '{"cached":null,"ignore_cache":false}'), +(41830, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.922+00', '{"cached":null,"ignore_cache":false}'), +(41831, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:57.975+00', '{"cached":null,"ignore_cache":false}'), +(41832, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:58.055+00', '{"cached":null,"ignore_cache":false}'), +(41833, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:58.116+00', '{"cached":null,"ignore_cache":false}'), +(41834, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:58.117+00', '{"cached":null,"ignore_cache":false}'), +(41835, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:58.169+00', '{"cached":null,"ignore_cache":false}'), +(41836, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:58.452+00', '{"cached":null,"ignore_cache":false}'), +(41837, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:24:53.791+00', '{"cached":null,"ignore_cache":null}'), +(41838, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:24:54.666+00', '{"cached":null,"ignore_cache":false}'), +(41839, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:23.688+00', '{"cached":null,"ignore_cache":null}'), +(41840, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:24.383+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41841, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:35.927+00', '{"cached":null,"ignore_cache":null}'), +(41842, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:36.597+00', '{"cached":null,"ignore_cache":false}'), +(41843, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.021+00', '{"cached":null,"ignore_cache":false}'), +(41844, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.111+00', '{"cached":null,"ignore_cache":false}'), +(41845, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.138+00', '{"cached":null,"ignore_cache":false}'), +(41846, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.233+00', '{"cached":null,"ignore_cache":false}'), +(41847, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.234+00', '{"cached":null,"ignore_cache":false}'), +(41848, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.249+00', '{"cached":null,"ignore_cache":false}'), +(41849, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.33+00', '{"cached":null,"ignore_cache":false}'), +(41850, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:37.538+00', '{"cached":null,"ignore_cache":false}'), +(41851, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:26:50.33+00', '{"cached":null,"ignore_cache":null}'), +(41852, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:30:30.003+00', '{"cached":null,"ignore_cache":null}'), +(41853, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:30:30.888+00', '{"cached":null,"ignore_cache":false}'), +(41854, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:42.439+00', '{"cached":null,"ignore_cache":null}'), +(41855, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.163+00', '{"cached":null,"ignore_cache":false}'), +(41856, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.729+00', '{"cached":null,"ignore_cache":false}'), +(41857, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.812+00', '{"cached":null,"ignore_cache":false}'), +(41858, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.818+00', '{"cached":null,"ignore_cache":false}'), +(41859, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.882+00', '{"cached":null,"ignore_cache":false}'), +(41860, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.905+00', '{"cached":null,"ignore_cache":false}'), +(41861, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:43.936+00', '{"cached":null,"ignore_cache":false}'), +(41862, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:44.052+00', '{"cached":null,"ignore_cache":false}'), +(41863, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:44.262+00', '{"cached":null,"ignore_cache":false}'), +(41864, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:32:26.558+00', '{"cached":null,"ignore_cache":null}'), +(41865, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:32:27.27+00', '{"cached":null,"ignore_cache":false}'), +(41866, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:07.144+00', '{"cached":null,"ignore_cache":null}'), +(41867, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.129+00', '{"cached":null,"ignore_cache":false}'), +(41868, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.382+00', '{"cached":null,"ignore_cache":false}'), +(41869, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.449+00', '{"cached":null,"ignore_cache":false}'), +(41870, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.524+00', '{"cached":null,"ignore_cache":false}'), +(41871, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.639+00', '{"cached":null,"ignore_cache":false}'), +(41872, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.713+00', '{"cached":null,"ignore_cache":false}'), +(41873, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.723+00', '{"cached":null,"ignore_cache":false}'), +(41874, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:08.792+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41875, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:09.046+00', '{"cached":null,"ignore_cache":false}'), +(41876, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:20.906+00', '{"cached":null,"ignore_cache":null}'), +(41877, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:21.617+00', '{"cached":null,"ignore_cache":false}'), +(41878, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:03.989+00', '{"cached":null,"ignore_cache":null}'), +(41879, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:05.297+00', '{"cached":null,"ignore_cache":false}'), +(41880, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:05.487+00', '{"cached":null,"ignore_cache":false}'), +(41881, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:05.804+00', '{"cached":null,"ignore_cache":false}'), +(41882, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:05.817+00', '{"cached":null,"ignore_cache":false}'), +(41883, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:05.819+00', '{"cached":null,"ignore_cache":false}'), +(41884, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:05.924+00', '{"cached":null,"ignore_cache":false}'), +(41885, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:06.019+00', '{"cached":null,"ignore_cache":false}'), +(41886, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:06.191+00', '{"cached":null,"ignore_cache":false}'), +(41887, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:06.351+00', '{"cached":null,"ignore_cache":false}'), +(41888, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:10.679+00', '{"cached":null,"ignore_cache":null}'), +(41889, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:11.107+00', '{"cached":null,"ignore_cache":null}'), +(41890, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:46.439+00', '{"cached":null,"ignore_cache":null}'), +(41891, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.449+00', '{"cached":null,"ignore_cache":false}'), +(41892, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.49+00', '{"cached":null,"ignore_cache":false}'), +(41893, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.607+00', '{"cached":null,"ignore_cache":false}'), +(41894, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.669+00', '{"cached":null,"ignore_cache":false}'), +(41895, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.704+00', '{"cached":null,"ignore_cache":false}'), +(41896, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.814+00', '{"cached":null,"ignore_cache":false}'), +(41897, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.878+00', '{"cached":null,"ignore_cache":false}'), +(41898, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.931+00', '{"cached":null,"ignore_cache":false}'), +(41899, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:47.995+00', '{"cached":null,"ignore_cache":false}'), +(41900, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:24.302+00', '{"cached":null,"ignore_cache":null}'), +(41901, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.796+00', '{"cached":null,"ignore_cache":false}'), +(41902, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:25.956+00', '{"cached":null,"ignore_cache":false}'), +(41903, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:26.007+00', '{"cached":null,"ignore_cache":false}'), +(41904, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:26.013+00', '{"cached":null,"ignore_cache":false}'), +(41905, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:26.125+00', '{"cached":null,"ignore_cache":false}'), +(41906, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:26.149+00', '{"cached":null,"ignore_cache":false}'), +(41907, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:26.175+00', '{"cached":null,"ignore_cache":false}'), +(41908, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:26.424+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41909, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:26.475+00', '{"cached":null,"ignore_cache":false}'), +(41910, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.078+00', '{"cached":null,"ignore_cache":false}'), +(41911, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.422+00', '{"cached":null,"ignore_cache":false}'), +(41912, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.603+00', '{"cached":null,"ignore_cache":false}'), +(41913, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:32.857+00', '{"cached":null,"ignore_cache":false}'), +(41914, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:33.066+00', '{"cached":null,"ignore_cache":false}'), +(41915, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:33.103+00', '{"cached":null,"ignore_cache":false}'), +(41916, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:33.13+00', '{"cached":null,"ignore_cache":false}'), +(41917, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:33.131+00', '{"cached":null,"ignore_cache":false}'), +(41918, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:35:33.157+00', '{"cached":null,"ignore_cache":false}'), +(41919, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:41.915+00', '{"cached":null,"ignore_cache":false}'), +(41920, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.198+00', '{"cached":null,"ignore_cache":false}'), +(41921, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.262+00', '{"cached":null,"ignore_cache":false}'), +(41922, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.271+00', '{"cached":null,"ignore_cache":false}'), +(41923, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.296+00', '{"cached":null,"ignore_cache":false}'), +(41924, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.355+00', '{"cached":null,"ignore_cache":false}'), +(41925, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.395+00', '{"cached":null,"ignore_cache":false}'), +(41926, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.57+00', '{"cached":null,"ignore_cache":false}'), +(41927, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:36:42.709+00', '{"cached":null,"ignore_cache":false}'), +(41928, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:36.347+00', '{"cached":null,"ignore_cache":null}'), +(41929, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.175+00', '{"cached":null,"ignore_cache":false}'), +(41930, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.2+00', '{"cached":null,"ignore_cache":false}'), +(41931, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.261+00', '{"cached":null,"ignore_cache":false}'), +(41932, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.346+00', '{"cached":null,"ignore_cache":false}'), +(41933, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.35+00', '{"cached":null,"ignore_cache":false}'), +(41934, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.368+00', '{"cached":null,"ignore_cache":false}'), +(41935, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.432+00', '{"cached":null,"ignore_cache":false}'), +(41936, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.851+00', '{"cached":null,"ignore_cache":false}'), +(41937, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:38.868+00', '{"cached":null,"ignore_cache":false}'), +(41938, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:42.738+00', '{"cached":null,"ignore_cache":null}'), +(41939, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:43.655+00', '{"cached":null,"ignore_cache":false}'), +(41940, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:54.601+00', '{"cached":null,"ignore_cache":false}'), +(41941, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:58.581+00', '{"cached":null,"ignore_cache":null}'), +(41942, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:59.752+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41943, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:00.356+00', '{"cached":null,"ignore_cache":false}'), +(41944, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:00.576+00', '{"cached":null,"ignore_cache":false}'), +(41945, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:00.718+00', '{"cached":null,"ignore_cache":false}'), +(41946, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:00.793+00', '{"cached":null,"ignore_cache":false}'), +(41947, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:00.847+00', '{"cached":null,"ignore_cache":false}'), +(41948, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:00.89+00', '{"cached":null,"ignore_cache":false}'), +(41949, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:01.069+00', '{"cached":null,"ignore_cache":false}'), +(41950, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:01.079+00', '{"cached":null,"ignore_cache":false}'), +(41951, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 12:43:31.92+00', '{"cached":null,"ignore_cache":null}'), +(41952, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:22.881+00', '{"cached":null,"ignore_cache":null}'), +(41953, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:25.459+00', '{"cached":null,"ignore_cache":false}'), +(41954, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:54.774+00', '{"cached":null,"ignore_cache":null}'), +(41955, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:55.837+00', '{"cached":null,"ignore_cache":false}'), +(41956, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:56.659+00', '{"cached":null,"ignore_cache":false}'), +(41957, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:56.693+00', '{"cached":null,"ignore_cache":false}'), +(41958, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:56.893+00', '{"cached":null,"ignore_cache":false}'), +(41959, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:56.984+00', '{"cached":null,"ignore_cache":false}'), +(41960, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:57.037+00', '{"cached":null,"ignore_cache":false}'), +(41961, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:57.113+00', '{"cached":null,"ignore_cache":false}'), +(41962, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:58.069+00', '{"cached":null,"ignore_cache":false}'), +(41963, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:01:58.075+00', '{"cached":null,"ignore_cache":false}'), +(41964, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:19.874+00', '{"cached":null,"ignore_cache":null}'), +(41965, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:20.799+00', '{"cached":null,"ignore_cache":false}'), +(41966, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:22.441+00', '{"cached":null,"ignore_cache":null}'), +(41967, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.639+00', '{"cached":null,"ignore_cache":false}'), +(41968, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.876+00', '{"cached":null,"ignore_cache":false}'), +(41969, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:23.951+00', '{"cached":null,"ignore_cache":false}'), +(41970, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:24.134+00', '{"cached":null,"ignore_cache":false}'), +(41971, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:24.162+00', '{"cached":null,"ignore_cache":false}'), +(41972, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:24.177+00', '{"cached":null,"ignore_cache":false}'), +(41973, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:24.267+00', '{"cached":null,"ignore_cache":false}'), +(41974, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:28.623+00', '{"cached":null,"ignore_cache":null}'), +(41975, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:29.128+00', '{"cached":null,"ignore_cache":null}'), +(41976, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:37.947+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(41977, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.646+00', '{"cached":null,"ignore_cache":false}'), +(41978, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.842+00', '{"cached":null,"ignore_cache":false}'), +(41979, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.897+00', '{"cached":null,"ignore_cache":false}'), +(41980, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.92+00', '{"cached":null,"ignore_cache":false}'), +(41981, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.965+00', '{"cached":null,"ignore_cache":false}'), +(41982, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:38.999+00', '{"cached":null,"ignore_cache":false}'), +(41983, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:39.039+00', '{"cached":null,"ignore_cache":false}'), +(41984, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:41.468+00', '{"cached":null,"ignore_cache":null}'), +(41985, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:04:42.909+00', '{"cached":null,"ignore_cache":false}'), +(41986, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:26.433+00', '{"cached":null,"ignore_cache":null}'), +(41987, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.417+00', '{"cached":null,"ignore_cache":false}'), +(41988, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.45+00', '{"cached":null,"ignore_cache":false}'), +(41989, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.477+00', '{"cached":null,"ignore_cache":false}'), +(41990, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.554+00', '{"cached":null,"ignore_cache":false}'), +(41991, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.602+00', '{"cached":null,"ignore_cache":false}'), +(41992, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.656+00', '{"cached":null,"ignore_cache":false}'), +(41993, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:27.681+00', '{"cached":null,"ignore_cache":false}'), +(41994, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:28.031+00', '{"cached":null,"ignore_cache":false}'), +(41995, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:05:28.032+00', '{"cached":null,"ignore_cache":false}'), +(41996, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:31.83+00', '{"cached":null,"ignore_cache":null}'), +(41997, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:32.327+00', '{"cached":null,"ignore_cache":null}'), +(41998, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:36.585+00', '{"cached":null,"ignore_cache":null}'), +(41999, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:42.63+00', '{"cached":null,"ignore_cache":null}'), +(42000, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:43.051+00', '{"cached":null,"ignore_cache":null}'), +(42001, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:44.655+00', '{"cached":null,"ignore_cache":null}'), +(42002, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.532+00', '{"cached":null,"ignore_cache":false}'), +(42003, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.851+00', '{"cached":null,"ignore_cache":false}'), +(42004, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:45.996+00', '{"cached":null,"ignore_cache":false}'), +(42005, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:46.032+00', '{"cached":null,"ignore_cache":false}'), +(42006, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:46.085+00', '{"cached":null,"ignore_cache":false}'), +(42007, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:46.126+00', '{"cached":null,"ignore_cache":false}'), +(42008, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 13:35:46.172+00', '{"cached":null,"ignore_cache":false}'), +(42009, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:01.073+00', '{"cached":null,"ignore_cache":null}'), +(42010, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:01.815+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42011, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:04.922+00', '{"cached":null,"ignore_cache":null}'), +(42012, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.869+00', '{"cached":null,"ignore_cache":false}'), +(42013, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:05.961+00', '{"cached":null,"ignore_cache":false}'), +(42014, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:06.101+00', '{"cached":null,"ignore_cache":false}'), +(42015, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:06.144+00', '{"cached":null,"ignore_cache":false}'), +(42016, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:06.244+00', '{"cached":null,"ignore_cache":false}'), +(42017, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:06.263+00', '{"cached":null,"ignore_cache":false}'), +(42018, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:06.325+00', '{"cached":null,"ignore_cache":false}'), +(42019, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:17.185+00', '{"cached":null,"ignore_cache":null}'), +(42020, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:17.683+00', '{"cached":null,"ignore_cache":null}'), +(42021, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:55.572+00', '{"cached":null,"ignore_cache":null}'), +(42022, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:55.986+00', '{"cached":null,"ignore_cache":null}'), +(42023, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:56.213+00', '{"cached":null,"ignore_cache":null}'), +(42024, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:56.695+00', '{"cached":null,"ignore_cache":null}'), +(42025, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:57.863+00', '{"cached":null,"ignore_cache":null}'), +(42026, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:39:58.26+00', '{"cached":null,"ignore_cache":null}'), +(42027, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:00.787+00', '{"cached":null,"ignore_cache":null}'), +(42028, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.705+00', '{"cached":null,"ignore_cache":false}'), +(42029, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.801+00', '{"cached":null,"ignore_cache":false}'), +(42030, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:01.973+00', '{"cached":null,"ignore_cache":false}'), +(42031, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:02.121+00', '{"cached":null,"ignore_cache":false}'), +(42032, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:02.223+00', '{"cached":null,"ignore_cache":false}'), +(42033, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:02.225+00', '{"cached":null,"ignore_cache":false}'), +(42034, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 13:40:02.265+00', '{"cached":null,"ignore_cache":false}'), +(42035, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:02.1+00', '{"cached":null,"ignore_cache":false}'), +(42036, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:02.189+00', '{"cached":null,"ignore_cache":false}'), +(42037, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:02.383+00', '{"cached":null,"ignore_cache":false}'), +(42038, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:02.417+00', '{"cached":null,"ignore_cache":false}'), +(42039, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:02.421+00', '{"cached":null,"ignore_cache":false}'), +(42040, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:02.448+00', '{"cached":null,"ignore_cache":false}'), +(42041, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:02.762+00', '{"cached":null,"ignore_cache":false}'), +(42042, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:03.235+00', '{"cached":null,"ignore_cache":false}'), +(42043, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:03.291+00', '{"cached":null,"ignore_cache":false}'), +(42044, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.713+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42045, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.888+00', '{"cached":null,"ignore_cache":false}'), +(42046, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.944+00', '{"cached":null,"ignore_cache":false}'), +(42047, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:31.988+00', '{"cached":null,"ignore_cache":false}'), +(42048, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:32.013+00', '{"cached":null,"ignore_cache":false}'), +(42049, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:32.024+00', '{"cached":null,"ignore_cache":false}'), +(42050, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:32.05+00', '{"cached":null,"ignore_cache":false}'), +(42051, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:32.225+00', '{"cached":null,"ignore_cache":false}'), +(42052, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:32.242+00', '{"cached":null,"ignore_cache":false}'), +(42053, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.24+00', '{"cached":null,"ignore_cache":false}'), +(42054, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.288+00', '{"cached":null,"ignore_cache":false}'), +(42055, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.367+00', '{"cached":null,"ignore_cache":false}'), +(42056, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.423+00', '{"cached":null,"ignore_cache":false}'), +(42057, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.426+00', '{"cached":null,"ignore_cache":false}'), +(42058, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.429+00', '{"cached":null,"ignore_cache":false}'), +(42059, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.485+00', '{"cached":null,"ignore_cache":false}'), +(42060, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.741+00', '{"cached":null,"ignore_cache":false}'), +(42061, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:49:46.786+00', '{"cached":null,"ignore_cache":false}'), +(42062, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.826+00', '{"cached":null,"ignore_cache":false}'), +(42063, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.852+00', '{"cached":null,"ignore_cache":false}'), +(42064, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:00.915+00', '{"cached":null,"ignore_cache":false}'), +(42065, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:01.173+00', '{"cached":null,"ignore_cache":false}'), +(42066, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:01.2+00', '{"cached":null,"ignore_cache":false}'), +(42067, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:01.231+00', '{"cached":null,"ignore_cache":false}'), +(42068, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:01.306+00', '{"cached":null,"ignore_cache":false}'), +(42069, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:01.521+00', '{"cached":null,"ignore_cache":false}'), +(42070, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:01.735+00', '{"cached":null,"ignore_cache":false}'), +(42071, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:24.165+00', '{"cached":null,"ignore_cache":null}'), +(42072, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:24.633+00', '{"cached":null,"ignore_cache":null}'), +(42073, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:40.772+00', '{"cached":null,"ignore_cache":null}'), +(42074, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:43.994+00', '{"cached":null,"ignore_cache":null}'), +(42075, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:50.917+00', '{"cached":null,"ignore_cache":null}'), +(42076, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:53.795+00', '{"cached":null,"ignore_cache":null}'), +(42077, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:50:56.695+00', '{"cached":null,"ignore_cache":null}'), +(42078, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:04.884+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42079, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:05.322+00', '{"cached":null,"ignore_cache":null}'), +(42080, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:05.771+00', '{"cached":null,"ignore_cache":null}'), +(42081, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:06.25+00', '{"cached":null,"ignore_cache":null}'), +(42082, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:07.719+00', '{"cached":null,"ignore_cache":null}'), +(42083, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.013+00', '{"cached":null,"ignore_cache":false}'), +(42084, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.301+00', '{"cached":null,"ignore_cache":false}'), +(42085, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.31+00', '{"cached":null,"ignore_cache":false}'), +(42086, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.467+00', '{"cached":null,"ignore_cache":false}'), +(42087, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.579+00', '{"cached":null,"ignore_cache":false}'), +(42088, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.605+00', '{"cached":null,"ignore_cache":false}'), +(42089, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.724+00', '{"cached":null,"ignore_cache":false}'), +(42090, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.946+00', '{"cached":null,"ignore_cache":false}'), +(42091, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:09.951+00', '{"cached":null,"ignore_cache":false}'), +(42092, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:13.225+00', '{"cached":null,"ignore_cache":null}'), +(42093, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:13.898+00', '{"cached":null,"ignore_cache":false}'), +(42094, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:27.249+00', '{"cached":null,"ignore_cache":null}'), +(42095, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:39.51+00', '{"cached":null,"ignore_cache":null}'), +(42096, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.563+00', '{"cached":null,"ignore_cache":false}'), +(42097, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:40.932+00', '{"cached":null,"ignore_cache":false}'), +(42098, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:41.001+00', '{"cached":null,"ignore_cache":false}'), +(42099, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:41.153+00', '{"cached":null,"ignore_cache":false}'), +(42100, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:41.178+00', '{"cached":null,"ignore_cache":false}'), +(42101, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:41.194+00', '{"cached":null,"ignore_cache":false}'), +(42102, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:41.207+00', '{"cached":null,"ignore_cache":false}'), +(42103, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:41.34+00', '{"cached":null,"ignore_cache":false}'), +(42104, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:41.465+00', '{"cached":null,"ignore_cache":false}'), +(42105, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.02+00', '{"cached":null,"ignore_cache":false}'), +(42106, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.069+00', '{"cached":null,"ignore_cache":false}'), +(42107, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.079+00', '{"cached":null,"ignore_cache":false}'), +(42108, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.132+00', '{"cached":null,"ignore_cache":false}'), +(42109, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.211+00', '{"cached":null,"ignore_cache":false}'), +(42110, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.269+00', '{"cached":null,"ignore_cache":false}'), +(42111, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.279+00', '{"cached":null,"ignore_cache":false}'), +(42112, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.303+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42113, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:51.56+00', '{"cached":null,"ignore_cache":false}'), +(42114, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.66+00', '{"cached":null,"ignore_cache":false}'), +(42115, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.721+00', '{"cached":null,"ignore_cache":false}'), +(42116, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.749+00', '{"cached":null,"ignore_cache":false}'), +(42117, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.773+00', '{"cached":null,"ignore_cache":false}'), +(42118, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.873+00', '{"cached":null,"ignore_cache":false}'), +(42119, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.904+00', '{"cached":null,"ignore_cache":false}'), +(42120, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:05.937+00', '{"cached":null,"ignore_cache":false}'), +(42121, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:06.255+00', '{"cached":null,"ignore_cache":false}'), +(42122, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:06.28+00', '{"cached":null,"ignore_cache":false}'), +(42123, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.827+00', '{"cached":null,"ignore_cache":false}'), +(42124, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.848+00', '{"cached":null,"ignore_cache":false}'), +(42125, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.878+00', '{"cached":null,"ignore_cache":false}'), +(42126, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.923+00', '{"cached":null,"ignore_cache":false}'), +(42127, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:10.94+00', '{"cached":null,"ignore_cache":false}'), +(42128, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:11.024+00', '{"cached":null,"ignore_cache":false}'), +(42129, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:11.03+00', '{"cached":null,"ignore_cache":false}'), +(42130, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:11.332+00', '{"cached":null,"ignore_cache":false}'), +(42131, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:11.433+00', '{"cached":null,"ignore_cache":false}'), +(42132, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.512+00', '{"cached":null,"ignore_cache":false}'), +(42133, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.876+00', '{"cached":null,"ignore_cache":false}'), +(42134, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.941+00', '{"cached":null,"ignore_cache":false}'), +(42135, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.972+00', '{"cached":null,"ignore_cache":false}'), +(42136, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:19.984+00', '{"cached":null,"ignore_cache":false}'), +(42137, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:20.085+00', '{"cached":null,"ignore_cache":false}'), +(42138, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:20.212+00', '{"cached":null,"ignore_cache":false}'), +(42139, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:20.419+00', '{"cached":null,"ignore_cache":false}'), +(42140, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:20.527+00', '{"cached":null,"ignore_cache":false}'), +(42141, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.096+00', '{"cached":null,"ignore_cache":false}'), +(42142, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.663+00', '{"cached":null,"ignore_cache":false}'), +(42143, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.736+00', '{"cached":null,"ignore_cache":false}'), +(42144, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.771+00', '{"cached":null,"ignore_cache":false}'), +(42145, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.837+00', '{"cached":null,"ignore_cache":false}'), +(42146, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.905+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42147, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:30.927+00', '{"cached":null,"ignore_cache":false}'), +(42148, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:31.06+00', '{"cached":null,"ignore_cache":false}'), +(42149, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:31.305+00', '{"cached":null,"ignore_cache":false}'), +(42150, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.087+00', '{"cached":null,"ignore_cache":false}'), +(42151, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.47+00', '{"cached":null,"ignore_cache":false}'), +(42152, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.635+00', '{"cached":null,"ignore_cache":false}'), +(42153, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.684+00', '{"cached":null,"ignore_cache":false}'), +(42154, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.685+00', '{"cached":null,"ignore_cache":false}'), +(42155, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.702+00', '{"cached":null,"ignore_cache":false}'), +(42156, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.719+00', '{"cached":null,"ignore_cache":false}'), +(42157, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.92+00', '{"cached":null,"ignore_cache":false}'), +(42158, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:44.952+00', '{"cached":null,"ignore_cache":false}'), +(42159, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.006+00', '{"cached":null,"ignore_cache":false}'), +(42160, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.115+00', '{"cached":null,"ignore_cache":false}'), +(42161, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.126+00', '{"cached":null,"ignore_cache":false}'), +(42162, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.163+00', '{"cached":null,"ignore_cache":false}'), +(42163, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.216+00', '{"cached":null,"ignore_cache":false}'), +(42164, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.248+00', '{"cached":null,"ignore_cache":false}'), +(42165, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.283+00', '{"cached":null,"ignore_cache":false}'), +(42166, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.561+00', '{"cached":null,"ignore_cache":false}'), +(42167, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:52:46.595+00', '{"cached":null,"ignore_cache":false}'), +(42168, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:01.994+00', '{"cached":null,"ignore_cache":false}'), +(42169, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:02.261+00', '{"cached":null,"ignore_cache":false}'), +(42170, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:02.352+00', '{"cached":null,"ignore_cache":false}'), +(42171, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:02.444+00', '{"cached":null,"ignore_cache":false}'), +(42172, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:02.481+00', '{"cached":null,"ignore_cache":false}'), +(42173, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:02.566+00', '{"cached":null,"ignore_cache":false}'), +(42174, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:02.588+00', '{"cached":null,"ignore_cache":false}'), +(42175, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:03.166+00', '{"cached":null,"ignore_cache":false}'), +(42176, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 13:53:03.177+00', '{"cached":null,"ignore_cache":false}'), +(42177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:32.72+00', '{"cached":null,"ignore_cache":false}'), +(42178, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:32.742+00', '{"cached":null,"ignore_cache":false}'), +(42179, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:33.6+00', '{"cached":null,"ignore_cache":false}'), +(42180, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:33.634+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42181, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:33.645+00', '{"cached":null,"ignore_cache":false}'), +(42182, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:33.92+00', '{"cached":null,"ignore_cache":false}'), +(42183, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:34.009+00', '{"cached":null,"ignore_cache":false}'), +(42184, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:34.027+00', '{"cached":null,"ignore_cache":false}'), +(42185, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:35.894+00', '{"cached":null,"ignore_cache":false}'), +(42186, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:35.986+00', '{"cached":null,"ignore_cache":false}'), +(42187, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:37.167+00', '{"cached":null,"ignore_cache":false}'), +(42188, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:37.735+00', '{"cached":null,"ignore_cache":false}'), +(42189, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:37.789+00', '{"cached":null,"ignore_cache":false}'), +(42190, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.023+00', '{"cached":null,"ignore_cache":false}'), +(42191, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.128+00', '{"cached":null,"ignore_cache":false}'), +(42192, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.266+00', '{"cached":null,"ignore_cache":false}'), +(42193, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.643+00', '{"cached":null,"ignore_cache":false}'), +(42194, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.659+00', '{"cached":null,"ignore_cache":false}'), +(42195, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.706+00', '{"cached":null,"ignore_cache":false}'), +(42196, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.715+00', '{"cached":null,"ignore_cache":false}'), +(42197, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.746+00', '{"cached":null,"ignore_cache":false}'), +(42198, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.954+00', '{"cached":null,"ignore_cache":false}'), +(42199, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.957+00', '{"cached":null,"ignore_cache":false}'), +(42200, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.959+00', '{"cached":null,"ignore_cache":false}'), +(42201, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.96+00', '{"cached":null,"ignore_cache":false}'), +(42202, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.961+00', '{"cached":null,"ignore_cache":false}'), +(42203, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.962+00', '{"cached":null,"ignore_cache":false}'), +(42204, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:38.963+00', '{"cached":null,"ignore_cache":false}'), +(42205, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:39.82+00', '{"cached":null,"ignore_cache":false}'), +(42206, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:40.633+00', '{"cached":null,"ignore_cache":false}'), +(42207, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:40.693+00', '{"cached":null,"ignore_cache":false}'), +(42208, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:29:40.694+00', '{"cached":null,"ignore_cache":false}'), +(42209, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:07.328+00', '{"cached":null,"ignore_cache":false}'), +(42210, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:07.803+00', '{"cached":null,"ignore_cache":false}'), +(42211, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:12.72+00', '{"cached":null,"ignore_cache":false}'), +(42212, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:12.751+00', '{"cached":null,"ignore_cache":false}'), +(42213, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:15.191+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42214, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:15.508+00', '{"cached":null,"ignore_cache":false}'), +(42215, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:15.779+00', '{"cached":null,"ignore_cache":false}'), +(42216, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:16.274+00', '{"cached":null,"ignore_cache":false}'), +(42217, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:16.431+00', '{"cached":null,"ignore_cache":false}'), +(42218, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:16.509+00', '{"cached":null,"ignore_cache":false}'), +(42219, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:16.888+00', '{"cached":null,"ignore_cache":false}'), +(42220, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:16.934+00', '{"cached":null,"ignore_cache":false}'), +(42221, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.08+00', '{"cached":null,"ignore_cache":false}'), +(42222, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.235+00', '{"cached":null,"ignore_cache":false}'), +(42223, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.402+00', '{"cached":null,"ignore_cache":false}'), +(42224, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.467+00', '{"cached":null,"ignore_cache":false}'), +(42225, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.678+00', '{"cached":null,"ignore_cache":false}'), +(42226, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.69+00', '{"cached":null,"ignore_cache":false}'), +(42227, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.726+00', '{"cached":null,"ignore_cache":false}'), +(42228, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.741+00', '{"cached":null,"ignore_cache":false}'), +(42229, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.754+00', '{"cached":null,"ignore_cache":false}'), +(42230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.765+00', '{"cached":null,"ignore_cache":false}'), +(42231, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:17.787+00', '{"cached":null,"ignore_cache":false}'), +(42232, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:18.05+00', '{"cached":null,"ignore_cache":false}'), +(42233, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:18.183+00', '{"cached":null,"ignore_cache":false}'), +(42234, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:18.341+00', '{"cached":null,"ignore_cache":false}'), +(42235, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:18.355+00', '{"cached":null,"ignore_cache":false}'), +(42236, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:18.369+00', '{"cached":null,"ignore_cache":false}'), +(42237, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:20.637+00', '{"cached":null,"ignore_cache":false}'), +(42238, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:20.779+00', '{"cached":null,"ignore_cache":false}'), +(42239, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:20.787+00', '{"cached":null,"ignore_cache":false}'), +(42240, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:30:20.795+00', '{"cached":null,"ignore_cache":false}'), +(42241, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:05.436+00', '{"cached":null,"ignore_cache":false}'), +(42242, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:06.893+00', '{"cached":null,"ignore_cache":false}'), +(42243, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.225+00', '{"cached":null,"ignore_cache":false}'), +(42244, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.23+00', '{"cached":null,"ignore_cache":false}'), +(42245, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.251+00', '{"cached":null,"ignore_cache":false}'), +(42246, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.327+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42247, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.4+00', '{"cached":null,"ignore_cache":false}'), +(42248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.47+00', '{"cached":null,"ignore_cache":false}'), +(42249, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.51+00', '{"cached":null,"ignore_cache":false}'), +(42250, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.52+00', '{"cached":null,"ignore_cache":false}'), +(42251, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.56+00', '{"cached":null,"ignore_cache":false}'), +(42252, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.605+00', '{"cached":null,"ignore_cache":false}'), +(42253, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.619+00', '{"cached":null,"ignore_cache":false}'), +(42254, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:07.648+00', '{"cached":null,"ignore_cache":false}'), +(42255, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:08.235+00', '{"cached":null,"ignore_cache":false}'), +(42256, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:35:08.241+00', '{"cached":null,"ignore_cache":false}'), +(42257, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:05.706+00', '{"cached":null,"ignore_cache":false}'), +(42258, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:06.161+00', '{"cached":null,"ignore_cache":false}'), +(42259, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:06.265+00', '{"cached":null,"ignore_cache":false}'), +(42260, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:06.289+00', '{"cached":null,"ignore_cache":false}'), +(42261, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:06.653+00', '{"cached":null,"ignore_cache":false}'), +(42262, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:06.673+00', '{"cached":null,"ignore_cache":false}'), +(42263, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:06.692+00', '{"cached":null,"ignore_cache":false}'), +(42264, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.094+00', '{"cached":null,"ignore_cache":false}'), +(42265, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.115+00', '{"cached":null,"ignore_cache":false}'), +(42266, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.869+00', '{"cached":null,"ignore_cache":false}'), +(42267, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:07.913+00', '{"cached":null,"ignore_cache":false}'), +(42268, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:08.016+00', '{"cached":null,"ignore_cache":false}'), +(42269, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:08.041+00', '{"cached":null,"ignore_cache":false}'), +(42270, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:08.048+00', '{"cached":null,"ignore_cache":false}'), +(42271, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:08.113+00', '{"cached":null,"ignore_cache":false}'), +(42272, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:40:08.115+00', '{"cached":null,"ignore_cache":false}'), +(42273, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:04.969+00', '{"cached":null,"ignore_cache":false}'), +(42274, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.04+00', '{"cached":null,"ignore_cache":false}'), +(42275, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.205+00', '{"cached":null,"ignore_cache":false}'), +(42276, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.207+00', '{"cached":null,"ignore_cache":false}'), +(42277, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.307+00', '{"cached":null,"ignore_cache":false}'), +(42278, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.313+00', '{"cached":null,"ignore_cache":false}'), +(42279, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.419+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42280, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.754+00', '{"cached":null,"ignore_cache":false}'), +(42281, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:05.778+00', '{"cached":null,"ignore_cache":false}'), +(42282, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.409+00', '{"cached":null,"ignore_cache":false}'), +(42283, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.414+00', '{"cached":null,"ignore_cache":false}'), +(42284, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.609+00', '{"cached":null,"ignore_cache":false}'), +(42285, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.632+00', '{"cached":null,"ignore_cache":false}'), +(42286, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.692+00', '{"cached":null,"ignore_cache":false}'), +(42287, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.729+00', '{"cached":null,"ignore_cache":false}'), +(42288, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:45:13.732+00', '{"cached":null,"ignore_cache":false}'), +(42289, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.201+00', '{"cached":null,"ignore_cache":false}'), +(42290, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.548+00', '{"cached":null,"ignore_cache":false}'), +(42291, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.558+00', '{"cached":null,"ignore_cache":false}'), +(42292, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.648+00', '{"cached":null,"ignore_cache":false}'), +(42293, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.655+00', '{"cached":null,"ignore_cache":false}'), +(42294, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.705+00', '{"cached":null,"ignore_cache":false}'), +(42295, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.793+00', '{"cached":null,"ignore_cache":false}'), +(42296, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:46.878+00', '{"cached":null,"ignore_cache":false}'), +(42297, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:47.091+00', '{"cached":null,"ignore_cache":false}'), +(42298, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.489+00', '{"cached":null,"ignore_cache":false}'), +(42299, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.747+00', '{"cached":null,"ignore_cache":false}'), +(42300, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.85+00', '{"cached":null,"ignore_cache":false}'), +(42301, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.953+00', '{"cached":null,"ignore_cache":false}'), +(42302, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.98+00', '{"cached":null,"ignore_cache":false}'), +(42303, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 14:59:59.993+00', '{"cached":null,"ignore_cache":false}'), +(42304, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 15:00:03.215+00', '{"cached":null,"ignore_cache":false}'), +(42305, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:08.04+00', '{"cached":null,"ignore_cache":false}'), +(42306, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:08.064+00', '{"cached":null,"ignore_cache":false}'), +(42307, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:09.545+00', '{"cached":null,"ignore_cache":false}'), +(42308, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:09.629+00', '{"cached":null,"ignore_cache":false}'), +(42309, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:10.538+00', '{"cached":null,"ignore_cache":false}'), +(42310, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:10.896+00', '{"cached":null,"ignore_cache":false}'), +(42311, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:10.907+00', '{"cached":null,"ignore_cache":false}'), +(42312, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:10.932+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42313, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.148+00', '{"cached":null,"ignore_cache":false}'), +(42314, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.188+00', '{"cached":null,"ignore_cache":false}'), +(42315, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.266+00', '{"cached":null,"ignore_cache":false}'), +(42316, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.342+00', '{"cached":null,"ignore_cache":false}'), +(42317, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.492+00', '{"cached":null,"ignore_cache":false}'), +(42318, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.543+00', '{"cached":null,"ignore_cache":false}'), +(42319, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.554+00', '{"cached":null,"ignore_cache":false}'), +(42320, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.664+00', '{"cached":null,"ignore_cache":false}'), +(42321, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.673+00', '{"cached":null,"ignore_cache":false}'), +(42322, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.673+00', '{"cached":null,"ignore_cache":false}'), +(42323, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.674+00', '{"cached":null,"ignore_cache":false}'), +(42324, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.697+00', '{"cached":null,"ignore_cache":false}'), +(42325, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.725+00', '{"cached":null,"ignore_cache":false}'), +(42326, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.781+00', '{"cached":null,"ignore_cache":false}'), +(42327, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.791+00', '{"cached":null,"ignore_cache":false}'), +(42328, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.854+00', '{"cached":null,"ignore_cache":false}'), +(42329, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.856+00', '{"cached":null,"ignore_cache":false}'), +(42330, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.868+00', '{"cached":null,"ignore_cache":false}'), +(42331, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.882+00', '{"cached":null,"ignore_cache":false}'), +(42332, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:11.935+00', '{"cached":null,"ignore_cache":false}'), +(42333, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:13.182+00', '{"cached":null,"ignore_cache":false}'), +(42334, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:13.214+00', '{"cached":null,"ignore_cache":false}'), +(42335, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:13.217+00', '{"cached":null,"ignore_cache":false}'), +(42336, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 15:35:13.26+00', '{"cached":null,"ignore_cache":false}'), +(42337, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:09.549+00', '{"cached":null,"ignore_cache":false}'), +(42338, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:12.464+00', '{"cached":null,"ignore_cache":false}'), +(42339, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:12.905+00', '{"cached":null,"ignore_cache":false}'), +(42340, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:12.996+00', '{"cached":null,"ignore_cache":false}'), +(42341, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.094+00', '{"cached":null,"ignore_cache":false}'), +(42342, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.366+00', '{"cached":null,"ignore_cache":false}'), +(42343, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.493+00', '{"cached":null,"ignore_cache":false}'), +(42344, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.608+00', '{"cached":null,"ignore_cache":false}'), +(42345, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.648+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42346, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.681+00', '{"cached":null,"ignore_cache":false}'), +(42347, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.768+00', '{"cached":null,"ignore_cache":false}'), +(42348, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.77+00', '{"cached":null,"ignore_cache":false}'), +(42349, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.772+00', '{"cached":null,"ignore_cache":false}'), +(42350, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:13.773+00', '{"cached":null,"ignore_cache":false}'), +(42351, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:14.352+00', '{"cached":null,"ignore_cache":false}'), +(42352, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 15:40:14.381+00', '{"cached":null,"ignore_cache":false}'), +(42353, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:50.648+00', '{"cached":null,"ignore_cache":false}'), +(42354, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:51.582+00', '{"cached":null,"ignore_cache":false}'), +(42355, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:52.898+00', '{"cached":null,"ignore_cache":false}'), +(42356, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:52.951+00', '{"cached":null,"ignore_cache":false}'), +(42357, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.021+00', '{"cached":null,"ignore_cache":false}'), +(42358, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.061+00', '{"cached":null,"ignore_cache":false}'), +(42359, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.151+00', '{"cached":null,"ignore_cache":false}'), +(42360, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.203+00', '{"cached":null,"ignore_cache":false}'), +(42361, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.247+00', '{"cached":null,"ignore_cache":false}'), +(42362, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.274+00', '{"cached":null,"ignore_cache":false}'), +(42363, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.276+00', '{"cached":null,"ignore_cache":false}'), +(42364, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.314+00', '{"cached":null,"ignore_cache":false}'), +(42365, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.359+00', '{"cached":null,"ignore_cache":false}'), +(42366, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.361+00', '{"cached":null,"ignore_cache":false}'), +(42367, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.869+00', '{"cached":null,"ignore_cache":false}'), +(42368, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 15:49:53.871+00', '{"cached":null,"ignore_cache":false}'), +(42369, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.654+00', '{"cached":null,"ignore_cache":false}'), +(42370, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.702+00', '{"cached":null,"ignore_cache":false}'), +(42371, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.772+00', '{"cached":null,"ignore_cache":false}'), +(42372, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.805+00', '{"cached":null,"ignore_cache":false}'), +(42373, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.888+00', '{"cached":null,"ignore_cache":false}'), +(42374, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.926+00', '{"cached":null,"ignore_cache":false}'), +(42375, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:50.992+00', '{"cached":null,"ignore_cache":false}'), +(42376, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.086+00', '{"cached":null,"ignore_cache":false}'), +(42377, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:51.173+00', '{"cached":null,"ignore_cache":false}'), +(42378, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:52.001+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42379, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:52.081+00', '{"cached":null,"ignore_cache":false}'), +(42380, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:52.082+00', '{"cached":null,"ignore_cache":false}'), +(42381, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:52.098+00', '{"cached":null,"ignore_cache":false}'), +(42382, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:52.18+00', '{"cached":null,"ignore_cache":false}'), +(42383, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:52.193+00', '{"cached":null,"ignore_cache":false}'), +(42384, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-25 15:54:52.249+00', '{"cached":null,"ignore_cache":false}'), +(42385, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:17.102+00', '{"cached":null,"ignore_cache":null}'), +(42386, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.526+00', '{"cached":null,"ignore_cache":false}'), +(42387, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:18.896+00', '{"cached":null,"ignore_cache":false}'), +(42388, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:19.001+00', '{"cached":null,"ignore_cache":false}'), +(42389, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:19.074+00', '{"cached":null,"ignore_cache":false}'), +(42390, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:19.102+00', '{"cached":null,"ignore_cache":false}'), +(42391, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:19.178+00', '{"cached":null,"ignore_cache":false}'), +(42392, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:19.206+00', '{"cached":null,"ignore_cache":false}'), +(42393, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:19.645+00', '{"cached":null,"ignore_cache":false}'), +(42394, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:19.685+00', '{"cached":null,"ignore_cache":false}'), +(42395, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:43.252+00', '{"cached":null,"ignore_cache":null}'), +(42396, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:43.998+00', '{"cached":null,"ignore_cache":false}'), +(42397, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:51.625+00', '{"cached":null,"ignore_cache":null}'), +(42398, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.27+00', '{"cached":null,"ignore_cache":false}'), +(42399, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.489+00', '{"cached":null,"ignore_cache":false}'), +(42400, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.508+00', '{"cached":null,"ignore_cache":false}'), +(42401, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.542+00', '{"cached":null,"ignore_cache":false}'), +(42402, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.667+00', '{"cached":null,"ignore_cache":false}'), +(42403, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.69+00', '{"cached":null,"ignore_cache":false}'), +(42404, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.766+00', '{"cached":null,"ignore_cache":false}'), +(42405, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.822+00', '{"cached":null,"ignore_cache":false}'), +(42406, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 06:51:52.842+00', '{"cached":null,"ignore_cache":false}'), +(42407, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:17.036+00', '{"cached":null,"ignore_cache":false}'), +(42408, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:17.56+00', '{"cached":null,"ignore_cache":false}'), +(42409, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:17.618+00', '{"cached":null,"ignore_cache":false}'), +(42410, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:17.644+00', '{"cached":null,"ignore_cache":false}'), +(42411, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:17.743+00', '{"cached":null,"ignore_cache":false}'), +(42412, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:17.88+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42413, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:18.066+00', '{"cached":null,"ignore_cache":false}'), +(42414, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:18.127+00', '{"cached":null,"ignore_cache":false}'), +(42415, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:18.314+00', '{"cached":null,"ignore_cache":false}'), +(42416, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:40.754+00', '{"cached":null,"ignore_cache":null}'), +(42417, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.581+00', '{"cached":null,"ignore_cache":false}'), +(42418, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.703+00', '{"cached":null,"ignore_cache":false}'), +(42419, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.718+00', '{"cached":null,"ignore_cache":false}'), +(42420, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.73+00', '{"cached":null,"ignore_cache":false}'), +(42421, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.754+00', '{"cached":null,"ignore_cache":false}'), +(42422, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.816+00', '{"cached":null,"ignore_cache":false}'), +(42423, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 06:52:42.853+00', '{"cached":null,"ignore_cache":false}'), +(42424, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:13.773+00', '{"cached":null,"ignore_cache":false}'), +(42425, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:14.437+00', '{"cached":null,"ignore_cache":false}'), +(42426, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:14.475+00', '{"cached":null,"ignore_cache":false}'), +(42427, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:14.541+00', '{"cached":null,"ignore_cache":false}'), +(42428, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:14.574+00', '{"cached":null,"ignore_cache":false}'), +(42429, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:14.697+00', '{"cached":null,"ignore_cache":false}'), +(42430, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:14.737+00', '{"cached":null,"ignore_cache":false}'), +(42431, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:46.169+00', '{"cached":null,"ignore_cache":null}'), +(42432, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 06:56:46.769+00', '{"cached":null,"ignore_cache":false}'), +(42433, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:08.811+00', '{"cached":null,"ignore_cache":null}'), +(42434, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.747+00', '{"cached":null,"ignore_cache":false}'), +(42435, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.762+00', '{"cached":null,"ignore_cache":false}'), +(42436, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.962+00', '{"cached":null,"ignore_cache":false}'), +(42437, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.966+00', '{"cached":null,"ignore_cache":false}'), +(42438, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:09.98+00', '{"cached":null,"ignore_cache":false}'), +(42439, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:10.039+00', '{"cached":null,"ignore_cache":false}'), +(42440, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:10.076+00', '{"cached":null,"ignore_cache":false}'), +(42441, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:23.854+00', '{"cached":null,"ignore_cache":null}'), +(42442, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:27.83+00', '{"cached":null,"ignore_cache":false}'), +(42443, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:27.838+00', '{"cached":null,"ignore_cache":false}'), +(42444, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:27.938+00', '{"cached":null,"ignore_cache":false}'), +(42445, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:27.971+00', '{"cached":null,"ignore_cache":false}'), +(42446, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:27.976+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42447, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:27.979+00', '{"cached":null,"ignore_cache":false}'), +(42448, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:27.982+00', '{"cached":null,"ignore_cache":false}'), +(42449, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:28.768+00', '{"cached":null,"ignore_cache":false}'), +(42450, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:28.778+00', '{"cached":null,"ignore_cache":false}'), +(42451, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.75+00', '{"cached":null,"ignore_cache":false}'), +(42452, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.884+00', '{"cached":null,"ignore_cache":false}'), +(42453, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:41.899+00', '{"cached":null,"ignore_cache":false}'), +(42454, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:42.104+00', '{"cached":null,"ignore_cache":false}'), +(42455, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:42.186+00', '{"cached":null,"ignore_cache":false}'), +(42456, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:42.231+00', '{"cached":null,"ignore_cache":false}'), +(42457, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:42.269+00', '{"cached":null,"ignore_cache":false}'), +(42458, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:42.517+00', '{"cached":null,"ignore_cache":false}'), +(42459, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:42.584+00', '{"cached":null,"ignore_cache":false}'), +(42460, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.468+00', '{"cached":null,"ignore_cache":false}'), +(42461, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.497+00', '{"cached":null,"ignore_cache":false}'), +(42462, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.645+00', '{"cached":null,"ignore_cache":false}'), +(42463, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.665+00', '{"cached":null,"ignore_cache":false}'), +(42464, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.717+00', '{"cached":null,"ignore_cache":false}'), +(42465, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.787+00', '{"cached":null,"ignore_cache":false}'), +(42466, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:44.918+00', '{"cached":null,"ignore_cache":false}'), +(42467, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:45.152+00', '{"cached":null,"ignore_cache":false}'), +(42468, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 08:37:45.327+00', '{"cached":null,"ignore_cache":false}'), +(42469, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:06.092+00', '{"cached":null,"ignore_cache":false}'), +(42470, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:06.217+00', '{"cached":null,"ignore_cache":false}'), +(42471, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:06.315+00', '{"cached":null,"ignore_cache":false}'), +(42472, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:06.376+00', '{"cached":null,"ignore_cache":false}'), +(42473, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:06.382+00', '{"cached":null,"ignore_cache":false}'), +(42474, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:06.407+00', '{"cached":null,"ignore_cache":false}'), +(42475, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:06.449+00', '{"cached":null,"ignore_cache":false}'), +(42476, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:08.566+00', '{"cached":null,"ignore_cache":false}'), +(42477, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:08.586+00', '{"cached":null,"ignore_cache":false}'), +(42478, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:54.396+00', '{"cached":null,"ignore_cache":null}'), +(42479, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:55.714+00', '{"cached":null,"ignore_cache":false}'), +(42480, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:56.607+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42481, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:56.61+00', '{"cached":null,"ignore_cache":false}'), +(42482, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:56.772+00', '{"cached":null,"ignore_cache":false}'), +(42483, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:56.844+00', '{"cached":null,"ignore_cache":false}'), +(42484, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:56.859+00', '{"cached":null,"ignore_cache":false}'), +(42485, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:38:56.925+00', '{"cached":null,"ignore_cache":false}'), +(42486, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:39:23.24+00', '{"cached":null,"ignore_cache":null}'), +(42487, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:01.525+00', '{"cached":null,"ignore_cache":false}'), +(42488, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:02.208+00', '{"cached":null,"ignore_cache":false}'), +(42489, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:02.401+00', '{"cached":null,"ignore_cache":false}'), +(42490, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:02.408+00', '{"cached":null,"ignore_cache":false}'), +(42491, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:02.416+00', '{"cached":null,"ignore_cache":false}'), +(42492, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:02.504+00', '{"cached":null,"ignore_cache":false}'), +(42493, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:02.587+00', '{"cached":null,"ignore_cache":false}'), +(42494, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:48.452+00', '{"cached":null,"ignore_cache":false}'), +(42495, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:48.578+00', '{"cached":null,"ignore_cache":false}'), +(42496, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:48.583+00', '{"cached":null,"ignore_cache":false}'), +(42497, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:48.587+00', '{"cached":null,"ignore_cache":false}'), +(42498, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:48.663+00', '{"cached":null,"ignore_cache":false}'), +(42499, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:48.67+00', '{"cached":null,"ignore_cache":false}'), +(42500, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:40:48.68+00', '{"cached":null,"ignore_cache":false}'), +(42501, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:16.605+00', '{"cached":null,"ignore_cache":false}'), +(42502, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:17.425+00', '{"cached":null,"ignore_cache":false}'), +(42503, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:17.433+00', '{"cached":null,"ignore_cache":false}'), +(42504, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:17.614+00', '{"cached":null,"ignore_cache":false}'), +(42505, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:17.695+00', '{"cached":null,"ignore_cache":false}'), +(42506, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:17.739+00', '{"cached":null,"ignore_cache":false}'), +(42507, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:17.747+00', '{"cached":null,"ignore_cache":false}'), +(42508, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:52.539+00', '{"cached":null,"ignore_cache":null}'), +(42509, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 08:41:52.99+00', '{"cached":null,"ignore_cache":null}'), +(42510, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:43:58.879+00', '{"cached":null,"ignore_cache":null}'), +(42511, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:01.129+00', '{"cached":null,"ignore_cache":false}'), +(42512, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:02.183+00', '{"cached":null,"ignore_cache":false}'), +(42513, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:02.21+00', '{"cached":null,"ignore_cache":false}'), +(42514, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:02.36+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42515, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:02.362+00', '{"cached":null,"ignore_cache":false}'), +(42516, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:02.433+00', '{"cached":null,"ignore_cache":false}'), +(42517, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:02.455+00', '{"cached":null,"ignore_cache":false}'), +(42518, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:16.852+00', '{"cached":null,"ignore_cache":null}'), +(42519, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:17.899+00', '{"cached":null,"ignore_cache":false}'), +(42520, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:18.298+00', '{"cached":null,"ignore_cache":false}'), +(42521, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:18.322+00', '{"cached":null,"ignore_cache":false}'), +(42522, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:18.336+00', '{"cached":null,"ignore_cache":false}'), +(42523, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:18.337+00', '{"cached":null,"ignore_cache":false}'), +(42524, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:18.387+00', '{"cached":null,"ignore_cache":false}'), +(42525, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:18.48+00', '{"cached":null,"ignore_cache":false}'), +(42526, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:24.776+00', '{"cached":null,"ignore_cache":false}'), +(42527, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:24.852+00', '{"cached":null,"ignore_cache":false}'), +(42528, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:51.035+00', '{"cached":null,"ignore_cache":null}'), +(42529, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:44:51.734+00', '{"cached":null,"ignore_cache":false}'), +(42530, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:30.967+00', '{"cached":null,"ignore_cache":null}'), +(42531, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:31.754+00', '{"cached":null,"ignore_cache":false}'), +(42532, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:33.097+00', '{"cached":null,"ignore_cache":false}'), +(42533, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:33.251+00', '{"cached":null,"ignore_cache":false}'), +(42534, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:34.411+00', '{"cached":null,"ignore_cache":false}'), +(42535, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:34.512+00', '{"cached":null,"ignore_cache":false}'), +(42536, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:34.513+00', '{"cached":null,"ignore_cache":false}'), +(42537, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:45:34.515+00', '{"cached":null,"ignore_cache":false}'), +(42538, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:31.673+00', '{"cached":null,"ignore_cache":false}'), +(42539, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:32.836+00', '{"cached":null,"ignore_cache":false}'), +(42540, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:32.95+00', '{"cached":null,"ignore_cache":false}'), +(42541, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:33.058+00', '{"cached":null,"ignore_cache":false}'), +(42542, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:33.081+00', '{"cached":null,"ignore_cache":false}'), +(42543, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:33.125+00', '{"cached":null,"ignore_cache":false}'), +(42544, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:50:33.166+00', '{"cached":null,"ignore_cache":false}'), +(42545, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:51:00.132+00', '{"cached":null,"ignore_cache":false}'), +(42546, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:51:00.31+00', '{"cached":null,"ignore_cache":false}'), +(42547, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:51:00.321+00', '{"cached":null,"ignore_cache":false}'), +(42548, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:51:00.36+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42549, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:51:00.389+00', '{"cached":null,"ignore_cache":false}'), +(42550, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:51:00.419+00', '{"cached":null,"ignore_cache":false}'), +(42551, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:51:00.53+00', '{"cached":null,"ignore_cache":false}'), +(42552, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:07.711+00', '{"cached":null,"ignore_cache":null}'), +(42553, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:08.778+00', '{"cached":null,"ignore_cache":false}'), +(42554, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.091+00', '{"cached":null,"ignore_cache":false}'), +(42555, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.166+00', '{"cached":null,"ignore_cache":false}'), +(42556, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.173+00', '{"cached":null,"ignore_cache":false}'), +(42557, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.262+00', '{"cached":null,"ignore_cache":false}'), +(42558, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.333+00', '{"cached":null,"ignore_cache":false}'), +(42559, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.569+00', '{"cached":null,"ignore_cache":false}'), +(42560, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.881+00', '{"cached":null,"ignore_cache":false}'), +(42561, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 08:52:09.939+00', '{"cached":null,"ignore_cache":false}'), +(42562, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:01.411+00', '{"cached":null,"ignore_cache":null}'), +(42563, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:02.296+00', '{"cached":null,"ignore_cache":false}'), +(42564, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:02.422+00', '{"cached":null,"ignore_cache":false}'), +(42565, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:02.529+00', '{"cached":null,"ignore_cache":false}'), +(42566, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:02.688+00', '{"cached":null,"ignore_cache":false}'), +(42567, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:03.27+00', '{"cached":null,"ignore_cache":false}'), +(42568, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:03.286+00', '{"cached":null,"ignore_cache":false}'), +(42569, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:53:03.287+00', '{"cached":null,"ignore_cache":false}'), +(42570, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:15.909+00', '{"cached":null,"ignore_cache":null}'), +(42571, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:16.773+00', '{"cached":null,"ignore_cache":null}'), +(42572, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:18.849+00', '{"cached":null,"ignore_cache":false}'), +(42573, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:33.981+00', '{"cached":null,"ignore_cache":null}'), +(42574, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:35.088+00', '{"cached":null,"ignore_cache":false}'), +(42575, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:35.342+00', '{"cached":null,"ignore_cache":false}'), +(42576, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:35.386+00', '{"cached":null,"ignore_cache":false}'), +(42577, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:35.391+00', '{"cached":null,"ignore_cache":false}'), +(42578, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:35.544+00', '{"cached":null,"ignore_cache":false}'), +(42579, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:35.606+00', '{"cached":null,"ignore_cache":false}'), +(42580, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:35.624+00', '{"cached":null,"ignore_cache":false}'), +(42581, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:42.749+00', '{"cached":null,"ignore_cache":null}'), +(42582, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:43.465+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42583, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:14.301+00', '{"cached":null,"ignore_cache":null}'), +(42584, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:15.092+00', '{"cached":null,"ignore_cache":false}'), +(42585, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:15.245+00', '{"cached":null,"ignore_cache":false}'), +(42586, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:15.255+00', '{"cached":null,"ignore_cache":false}'), +(42587, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:15.284+00', '{"cached":null,"ignore_cache":false}'), +(42588, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:15.394+00', '{"cached":null,"ignore_cache":false}'), +(42589, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:15.451+00', '{"cached":null,"ignore_cache":false}'), +(42590, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:15.583+00', '{"cached":null,"ignore_cache":false}'), +(42591, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:59.399+00', '{"cached":null,"ignore_cache":null}'), +(42592, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:00.095+00', '{"cached":null,"ignore_cache":false}'), +(42593, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:00.93+00', '{"cached":null,"ignore_cache":null}'), +(42594, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:01.909+00', '{"cached":null,"ignore_cache":false}'), +(42595, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:02.743+00', '{"cached":null,"ignore_cache":false}'), +(42596, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:02.75+00', '{"cached":null,"ignore_cache":false}'), +(42597, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:02.755+00', '{"cached":null,"ignore_cache":false}'), +(42598, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:02.821+00', '{"cached":null,"ignore_cache":false}'), +(42599, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:02.862+00', '{"cached":null,"ignore_cache":false}'), +(42600, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:02.996+00', '{"cached":null,"ignore_cache":false}'), +(42601, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:25.68+00', '{"cached":null,"ignore_cache":null}'), +(42602, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.634+00', '{"cached":null,"ignore_cache":false}'), +(42603, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.673+00', '{"cached":null,"ignore_cache":false}'), +(42604, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:26.979+00', '{"cached":null,"ignore_cache":false}'), +(42605, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:27.042+00', '{"cached":null,"ignore_cache":false}'), +(42606, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:27.212+00', '{"cached":null,"ignore_cache":false}'), +(42607, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:27.305+00', '{"cached":null,"ignore_cache":false}'), +(42608, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:27.478+00', '{"cached":null,"ignore_cache":false}'), +(42609, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:27.78+00', '{"cached":null,"ignore_cache":false}'), +(42610, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:27.844+00', '{"cached":null,"ignore_cache":false}'), +(42611, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:58:37.637+00', '{"cached":null,"ignore_cache":false}'), +(42612, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 08:59:25.028+00', '{"cached":null,"ignore_cache":null}'), +(42613, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:59:55.84+00', '{"cached":null,"ignore_cache":null}'), +(42614, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 08:59:56.382+00', '{"cached":null,"ignore_cache":false}'), +(42615, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:04.59+00', '{"cached":null,"ignore_cache":false}'), +(42616, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:05.664+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42617, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:07.094+00', '{"cached":null,"ignore_cache":false}'), +(42618, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:07.285+00', '{"cached":null,"ignore_cache":false}'), +(42619, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:07.725+00', '{"cached":null,"ignore_cache":false}'), +(42620, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:08.048+00', '{"cached":null,"ignore_cache":false}'), +(42621, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:08.078+00', '{"cached":null,"ignore_cache":false}'), +(42622, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:08.121+00', '{"cached":null,"ignore_cache":false}'), +(42623, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:08.196+00', '{"cached":null,"ignore_cache":false}'), +(42624, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:08.366+00', '{"cached":null,"ignore_cache":false}'), +(42625, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:08.683+00', '{"cached":null,"ignore_cache":false}'), +(42626, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:08.901+00', '{"cached":null,"ignore_cache":false}'), +(42627, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:14.946+00', '{"cached":null,"ignore_cache":null}'), +(42628, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:16.011+00', '{"cached":null,"ignore_cache":false}'), +(42629, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:16.276+00', '{"cached":null,"ignore_cache":false}'), +(42630, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:16.346+00', '{"cached":null,"ignore_cache":false}'), +(42631, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:16.396+00', '{"cached":null,"ignore_cache":false}'), +(42632, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:16.403+00', '{"cached":null,"ignore_cache":false}'), +(42633, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:16.463+00', '{"cached":null,"ignore_cache":false}'), +(42634, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:16.501+00', '{"cached":null,"ignore_cache":false}'), +(42635, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:36.268+00', '{"cached":null,"ignore_cache":null}'), +(42636, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:01:48.18+00', '{"cached":null,"ignore_cache":null}'), +(42637, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:02:48.003+00', '{"cached":null,"ignore_cache":null}'), +(42638, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:04:57.078+00', '{"cached":null,"ignore_cache":null}'), +(42639, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:00.052+00', '{"cached":null,"ignore_cache":false}'), +(42640, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:00.959+00', '{"cached":null,"ignore_cache":false}'), +(42641, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:01.207+00', '{"cached":null,"ignore_cache":false}'), +(42642, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:01.522+00', '{"cached":null,"ignore_cache":false}'), +(42643, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:01.581+00', '{"cached":null,"ignore_cache":false}'), +(42644, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:01.648+00', '{"cached":null,"ignore_cache":false}'), +(42645, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:01.684+00', '{"cached":null,"ignore_cache":false}'), +(42646, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:01.709+00', '{"cached":null,"ignore_cache":false}'), +(42647, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:02.937+00', '{"cached":null,"ignore_cache":false}'), +(42648, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:03.031+00', '{"cached":null,"ignore_cache":false}'), +(42649, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:07.1+00', '{"cached":null,"ignore_cache":null}'), +(42650, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.554+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42651, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.591+00', '{"cached":null,"ignore_cache":false}'), +(42652, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.629+00', '{"cached":null,"ignore_cache":false}'), +(42653, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.662+00', '{"cached":null,"ignore_cache":false}'), +(42654, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.667+00', '{"cached":null,"ignore_cache":false}'), +(42655, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:08.795+00', '{"cached":null,"ignore_cache":false}'), +(42656, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:32.127+00', '{"cached":null,"ignore_cache":null}'), +(42657, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:05:34.419+00', '{"cached":null,"ignore_cache":false}'), +(42658, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:17.403+00', '{"cached":null,"ignore_cache":null}'), +(42659, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:19.834+00', '{"cached":null,"ignore_cache":false}'), +(42660, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:20.725+00', '{"cached":null,"ignore_cache":false}'), +(42661, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:21.094+00', '{"cached":null,"ignore_cache":false}'), +(42662, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:21.128+00', '{"cached":null,"ignore_cache":false}'), +(42663, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:21.152+00', '{"cached":null,"ignore_cache":false}'), +(42664, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:21.199+00', '{"cached":null,"ignore_cache":false}'), +(42665, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:25.211+00', '{"cached":null,"ignore_cache":null}'), +(42666, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:26.032+00', '{"cached":null,"ignore_cache":false}'), +(42667, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:31.085+00', '{"cached":null,"ignore_cache":null}'), +(42668, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:33.355+00', '{"cached":null,"ignore_cache":false}'), +(42669, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:33.356+00', '{"cached":null,"ignore_cache":false}'), +(42670, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:33.384+00', '{"cached":null,"ignore_cache":false}'), +(42671, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:33.4+00', '{"cached":null,"ignore_cache":false}'), +(42672, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:33.524+00', '{"cached":null,"ignore_cache":false}'), +(42673, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:33.552+00', '{"cached":null,"ignore_cache":false}'), +(42674, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:39.325+00', '{"cached":null,"ignore_cache":null}'), +(42675, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:40.445+00', '{"cached":null,"ignore_cache":false}'), +(42676, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:06.241+00', '{"cached":null,"ignore_cache":null}'), +(42677, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:07.229+00', '{"cached":null,"ignore_cache":false}'), +(42678, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:07.406+00', '{"cached":null,"ignore_cache":false}'), +(42679, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:07.427+00', '{"cached":null,"ignore_cache":false}'), +(42680, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:07.458+00', '{"cached":null,"ignore_cache":false}'), +(42681, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:07.469+00', '{"cached":null,"ignore_cache":false}'), +(42682, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:07.539+00', '{"cached":null,"ignore_cache":false}'), +(42683, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:10.152+00', '{"cached":null,"ignore_cache":null}'), +(42684, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:11.289+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42685, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:27.06+00', '{"cached":null,"ignore_cache":null}'), +(42686, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:28.585+00', '{"cached":null,"ignore_cache":false}'), +(42687, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:28.649+00', '{"cached":null,"ignore_cache":false}'), +(42688, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:28.714+00', '{"cached":null,"ignore_cache":false}'), +(42689, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:29.106+00', '{"cached":null,"ignore_cache":false}'), +(42690, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:29.351+00', '{"cached":null,"ignore_cache":false}'), +(42691, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:29.368+00', '{"cached":null,"ignore_cache":false}'), +(42692, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:42.283+00', '{"cached":null,"ignore_cache":null}'), +(42693, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:42.754+00', '{"cached":null,"ignore_cache":null}'), +(42694, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:21.031+00', '{"cached":null,"ignore_cache":null}'), +(42695, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:22.652+00', '{"cached":null,"ignore_cache":false}'), +(42696, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:22.662+00', '{"cached":null,"ignore_cache":false}'), +(42697, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:22.695+00', '{"cached":null,"ignore_cache":false}'), +(42698, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:22.735+00', '{"cached":null,"ignore_cache":false}'), +(42699, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:22.783+00', '{"cached":null,"ignore_cache":false}'), +(42700, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:22.798+00', '{"cached":null,"ignore_cache":false}'), +(42701, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:38.455+00', '{"cached":null,"ignore_cache":null}'), +(42702, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:40.23+00', '{"cached":null,"ignore_cache":false}'), +(42703, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:13.951+00', '{"cached":null,"ignore_cache":null}'), +(42704, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:15.62+00', '{"cached":null,"ignore_cache":false}'), +(42705, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:15.656+00', '{"cached":null,"ignore_cache":false}'), +(42706, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:15.804+00', '{"cached":null,"ignore_cache":false}'), +(42707, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:15.806+00', '{"cached":null,"ignore_cache":false}'), +(42708, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:15.825+00', '{"cached":null,"ignore_cache":false}'), +(42709, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:15.849+00', '{"cached":null,"ignore_cache":false}'), +(42710, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:44.832+00', '{"cached":null,"ignore_cache":null}'), +(42711, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:46.753+00', '{"cached":null,"ignore_cache":false}'), +(42712, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:47.641+00', '{"cached":null,"ignore_cache":false}'), +(42713, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:48.044+00', '{"cached":null,"ignore_cache":false}'), +(42714, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:48.238+00', '{"cached":null,"ignore_cache":false}'), +(42715, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:48.366+00', '{"cached":null,"ignore_cache":false}'), +(42716, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:48.397+00', '{"cached":null,"ignore_cache":false}'), +(42717, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:48.434+00', '{"cached":null,"ignore_cache":false}'), +(42718, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:48.491+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42719, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:49.173+00', '{"cached":null,"ignore_cache":false}'), +(42720, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:49.221+00', '{"cached":null,"ignore_cache":false}'), +(42721, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:50.849+00', '{"cached":null,"ignore_cache":null}'), +(42722, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:51.807+00', '{"cached":null,"ignore_cache":false}'), +(42723, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:59.8+00', '{"cached":null,"ignore_cache":null}'), +(42724, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:00.998+00', '{"cached":null,"ignore_cache":false}'), +(42725, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.273+00', '{"cached":null,"ignore_cache":false}'), +(42726, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.317+00', '{"cached":null,"ignore_cache":false}'), +(42727, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.347+00', '{"cached":null,"ignore_cache":false}'), +(42728, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.405+00', '{"cached":null,"ignore_cache":false}'), +(42729, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.583+00', '{"cached":null,"ignore_cache":false}'), +(42730, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.626+00', '{"cached":null,"ignore_cache":false}'), +(42731, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.673+00', '{"cached":null,"ignore_cache":false}'), +(42732, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.739+00', '{"cached":null,"ignore_cache":false}'), +(42733, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:01.746+00', '{"cached":null,"ignore_cache":false}'), +(42734, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:04.388+00', '{"cached":null,"ignore_cache":null}'), +(42735, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:05.105+00', '{"cached":null,"ignore_cache":false}'), +(42736, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:10.161+00', '{"cached":null,"ignore_cache":null}'), +(42737, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.183+00', '{"cached":null,"ignore_cache":null}'), +(42738, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.711+00', '{"cached":null,"ignore_cache":false}'), +(42739, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:11.857+00', '{"cached":null,"ignore_cache":false}'), +(42740, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:12.007+00', '{"cached":null,"ignore_cache":false}'), +(42741, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:12.333+00', '{"cached":null,"ignore_cache":false}'), +(42742, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:12.36+00', '{"cached":null,"ignore_cache":false}'), +(42743, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:12.4+00', '{"cached":null,"ignore_cache":false}'), +(42744, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:12.436+00', '{"cached":null,"ignore_cache":false}'), +(42745, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:12.553+00', '{"cached":null,"ignore_cache":false}'), +(42746, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:12.62+00', '{"cached":null,"ignore_cache":false}'), +(42747, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:13.224+00', '{"cached":null,"ignore_cache":false}'), +(42748, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:13.248+00', '{"cached":null,"ignore_cache":false}'), +(42749, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:14.847+00', '{"cached":null,"ignore_cache":null}'), +(42750, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.184+00', '{"cached":null,"ignore_cache":false}'), +(42751, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.196+00', '{"cached":null,"ignore_cache":false}'), +(42752, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.229+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42753, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.615+00', '{"cached":null,"ignore_cache":false}'), +(42754, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.621+00', '{"cached":null,"ignore_cache":false}'), +(42755, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.669+00', '{"cached":null,"ignore_cache":false}'), +(42756, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.707+00', '{"cached":null,"ignore_cache":false}'), +(42757, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.745+00', '{"cached":null,"ignore_cache":false}'), +(42758, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:16.995+00', '{"cached":null,"ignore_cache":false}'), +(42759, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:17.119+00', '{"cached":null,"ignore_cache":false}'), +(42760, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:25.621+00', '{"cached":null,"ignore_cache":null}'), +(42761, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:26.053+00', '{"cached":null,"ignore_cache":null}'), +(42762, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:38.407+00', '{"cached":null,"ignore_cache":null}'), +(42763, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:39.062+00', '{"cached":null,"ignore_cache":false}'), +(42764, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:39.785+00', '{"cached":null,"ignore_cache":false}'), +(42765, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:39.808+00', '{"cached":null,"ignore_cache":false}'), +(42766, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:39.883+00', '{"cached":null,"ignore_cache":false}'), +(42767, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:39.939+00', '{"cached":null,"ignore_cache":false}'), +(42768, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:39.957+00', '{"cached":null,"ignore_cache":false}'), +(42769, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:40.03+00', '{"cached":null,"ignore_cache":false}'), +(42770, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:40.092+00', '{"cached":null,"ignore_cache":false}'), +(42771, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:40.559+00', '{"cached":null,"ignore_cache":false}'), +(42772, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:40.694+00', '{"cached":null,"ignore_cache":false}'), +(42773, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:45.968+00', '{"cached":null,"ignore_cache":false}'), +(42774, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.012+00', '{"cached":null,"ignore_cache":false}'), +(42775, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.282+00', '{"cached":null,"ignore_cache":false}'), +(42776, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.331+00', '{"cached":null,"ignore_cache":false}'), +(42777, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.37+00', '{"cached":null,"ignore_cache":false}'), +(42778, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.477+00', '{"cached":null,"ignore_cache":false}'), +(42779, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.487+00', '{"cached":null,"ignore_cache":false}'), +(42780, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.744+00', '{"cached":null,"ignore_cache":false}'), +(42781, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:46.802+00', '{"cached":null,"ignore_cache":false}'), +(42782, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:47.51+00', '{"cached":null,"ignore_cache":null}'), +(42783, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:48.195+00', '{"cached":null,"ignore_cache":false}'), +(42784, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:56.694+00', '{"cached":null,"ignore_cache":null}'), +(42785, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.86+00', '{"cached":null,"ignore_cache":false}'), +(42786, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:57.997+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42787, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.02+00', '{"cached":null,"ignore_cache":false}'), +(42788, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.069+00', '{"cached":null,"ignore_cache":false}'), +(42789, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.107+00', '{"cached":null,"ignore_cache":false}'), +(42790, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.182+00', '{"cached":null,"ignore_cache":false}'), +(42791, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.185+00', '{"cached":null,"ignore_cache":false}'), +(42792, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.217+00', '{"cached":null,"ignore_cache":false}'), +(42793, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.504+00', '{"cached":null,"ignore_cache":false}'), +(42794, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:58.508+00', '{"cached":null,"ignore_cache":false}'), +(42795, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:04.584+00', '{"cached":null,"ignore_cache":null}'), +(42796, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:05.963+00', '{"cached":null,"ignore_cache":false}'), +(42797, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:11.507+00', '{"cached":null,"ignore_cache":null}'), +(42798, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.881+00', '{"cached":null,"ignore_cache":false}'), +(42799, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:12.888+00', '{"cached":null,"ignore_cache":false}'), +(42800, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:13.639+00', '{"cached":null,"ignore_cache":false}'), +(42801, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:13.926+00', '{"cached":null,"ignore_cache":false}'), +(42802, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:13.93+00', '{"cached":null,"ignore_cache":false}'), +(42803, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:13.941+00', '{"cached":null,"ignore_cache":false}'), +(42804, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:14.082+00', '{"cached":null,"ignore_cache":false}'), +(42805, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:14.143+00', '{"cached":null,"ignore_cache":false}'), +(42806, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:14.212+00', '{"cached":null,"ignore_cache":false}'), +(42807, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:14.541+00', '{"cached":null,"ignore_cache":false}'), +(42808, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:47.292+00', '{"cached":null,"ignore_cache":null}'), +(42809, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:19:49.67+00', '{"cached":null,"ignore_cache":false}'), +(42810, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:22:50.195+00', '{"cached":null,"ignore_cache":null}'), +(42811, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:22:51.456+00', '{"cached":null,"ignore_cache":false}'), +(42812, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:40.808+00', '{"cached":null,"ignore_cache":null}'), +(42813, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.749+00', '{"cached":null,"ignore_cache":false}'), +(42814, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:41.755+00', '{"cached":null,"ignore_cache":false}'), +(42815, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:42.202+00', '{"cached":null,"ignore_cache":false}'), +(42816, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:42.413+00', '{"cached":null,"ignore_cache":false}'), +(42817, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:42.431+00', '{"cached":null,"ignore_cache":false}'), +(42818, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:42.561+00', '{"cached":null,"ignore_cache":false}'), +(42819, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:42.58+00', '{"cached":null,"ignore_cache":false}'), +(42820, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:42.601+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42821, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:43.352+00', '{"cached":null,"ignore_cache":false}'), +(42822, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:43.397+00', '{"cached":null,"ignore_cache":false}'), +(42823, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:26:20.283+00', '{"cached":null,"ignore_cache":null}'), +(42824, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:26:53.522+00', '{"cached":null,"ignore_cache":null}'), +(42825, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:26:53.932+00', '{"cached":null,"ignore_cache":null}'), +(42826, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:10.469+00', '{"cached":null,"ignore_cache":null}'), +(42827, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:14.539+00', '{"cached":null,"ignore_cache":false}'), +(42828, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:14.674+00', '{"cached":null,"ignore_cache":false}'), +(42829, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:14.962+00', '{"cached":null,"ignore_cache":false}'), +(42830, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:15.188+00', '{"cached":null,"ignore_cache":false}'), +(42831, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:15.287+00', '{"cached":null,"ignore_cache":false}'), +(42832, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:15.422+00', '{"cached":null,"ignore_cache":false}'), +(42833, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:15.582+00', '{"cached":null,"ignore_cache":false}'), +(42834, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:15.586+00', '{"cached":null,"ignore_cache":false}'), +(42835, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:15.617+00', '{"cached":null,"ignore_cache":false}'), +(42836, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:15.843+00', '{"cached":null,"ignore_cache":false}'), +(42837, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:23.536+00', '{"cached":null,"ignore_cache":null}'), +(42838, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:24.023+00', '{"cached":null,"ignore_cache":false}'), +(42839, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:36.793+00', '{"cached":null,"ignore_cache":null}'), +(42840, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:42.866+00', '{"cached":null,"ignore_cache":null}'), +(42841, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:45.099+00', '{"cached":null,"ignore_cache":null}'), +(42842, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:51.198+00', '{"cached":null,"ignore_cache":null}'), +(42843, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:51.743+00', '{"cached":null,"ignore_cache":false}'), +(42844, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:27:54.194+00', '{"cached":null,"ignore_cache":null}'), +(42845, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:14.86+00', '{"cached":null,"ignore_cache":null}'), +(42846, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:17.68+00', '{"cached":null,"ignore_cache":null}'), +(42847, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:23.871+00', '{"cached":null,"ignore_cache":null}'), +(42848, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.339+00', '{"cached":null,"ignore_cache":false}'), +(42849, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.554+00', '{"cached":null,"ignore_cache":false}'), +(42850, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.66+00', '{"cached":null,"ignore_cache":false}'), +(42851, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.785+00', '{"cached":null,"ignore_cache":false}'), +(42852, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.834+00', '{"cached":null,"ignore_cache":false}'), +(42853, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.857+00', '{"cached":null,"ignore_cache":false}'), +(42854, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.913+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42855, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:25.941+00', '{"cached":null,"ignore_cache":false}'), +(42856, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:26.231+00', '{"cached":null,"ignore_cache":false}'), +(42857, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:26.271+00', '{"cached":null,"ignore_cache":false}'), +(42858, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:40.603+00', '{"cached":null,"ignore_cache":null}'), +(42859, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:50.441+00', '{"cached":null,"ignore_cache":null}'), +(42860, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.246+00', '{"cached":null,"ignore_cache":false}'), +(42861, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.289+00', '{"cached":null,"ignore_cache":false}'), +(42862, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.416+00', '{"cached":null,"ignore_cache":false}'), +(42863, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.468+00', '{"cached":null,"ignore_cache":false}'), +(42864, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.514+00', '{"cached":null,"ignore_cache":false}'), +(42865, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.568+00', '{"cached":null,"ignore_cache":false}'), +(42866, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.601+00', '{"cached":null,"ignore_cache":false}'), +(42867, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.756+00', '{"cached":null,"ignore_cache":false}'), +(42868, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.915+00', '{"cached":null,"ignore_cache":false}'), +(42869, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:51.98+00', '{"cached":null,"ignore_cache":false}'), +(42870, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:55.586+00', '{"cached":null,"ignore_cache":null}'), +(42871, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.244+00', '{"cached":null,"ignore_cache":false}'), +(42872, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.363+00', '{"cached":null,"ignore_cache":false}'), +(42873, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.54+00', '{"cached":null,"ignore_cache":false}'), +(42874, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.584+00', '{"cached":null,"ignore_cache":false}'), +(42875, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.718+00', '{"cached":null,"ignore_cache":false}'), +(42876, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.856+00', '{"cached":null,"ignore_cache":false}'), +(42877, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.872+00', '{"cached":null,"ignore_cache":false}'), +(42878, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.924+00', '{"cached":null,"ignore_cache":false}'), +(42879, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:57.979+00', '{"cached":null,"ignore_cache":false}'), +(42880, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:58.172+00', '{"cached":null,"ignore_cache":false}'), +(42881, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:52.214+00', '{"cached":null,"ignore_cache":null}'), +(42882, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.546+00', '{"cached":null,"ignore_cache":false}'), +(42883, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.725+00', '{"cached":null,"ignore_cache":false}'), +(42884, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.753+00', '{"cached":null,"ignore_cache":false}'), +(42885, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.765+00', '{"cached":null,"ignore_cache":false}'), +(42886, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.809+00', '{"cached":null,"ignore_cache":false}'), +(42887, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:53.821+00', '{"cached":null,"ignore_cache":false}'), +(42888, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:55.575+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42889, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.433+00', '{"cached":null,"ignore_cache":false}'), +(42890, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.468+00', '{"cached":null,"ignore_cache":false}'), +(42891, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.51+00', '{"cached":null,"ignore_cache":false}'), +(42892, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.555+00', '{"cached":null,"ignore_cache":false}'), +(42893, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.59+00', '{"cached":null,"ignore_cache":false}'), +(42894, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:29:56.597+00', '{"cached":null,"ignore_cache":false}'), +(42895, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:30:09.706+00', '{"cached":null,"ignore_cache":null}'), +(42896, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:30:10.465+00', '{"cached":null,"ignore_cache":false}'), +(42897, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:54.864+00', '{"cached":null,"ignore_cache":null}'), +(42898, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.938+00', '{"cached":null,"ignore_cache":false}'), +(42899, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:55.996+00', '{"cached":null,"ignore_cache":false}'), +(42900, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:56.005+00', '{"cached":null,"ignore_cache":false}'), +(42901, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:56.033+00', '{"cached":null,"ignore_cache":false}'), +(42902, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:56.056+00', '{"cached":null,"ignore_cache":false}'), +(42903, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:56.081+00', '{"cached":null,"ignore_cache":false}'), +(42904, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:58.685+00', '{"cached":null,"ignore_cache":null}'), +(42905, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.849+00', '{"cached":null,"ignore_cache":false}'), +(42906, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.898+00', '{"cached":null,"ignore_cache":false}'), +(42907, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.907+00', '{"cached":null,"ignore_cache":false}'), +(42908, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.92+00', '{"cached":null,"ignore_cache":false}'), +(42909, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:00.952+00', '{"cached":null,"ignore_cache":false}'), +(42910, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:01.061+00', '{"cached":null,"ignore_cache":false}'), +(42911, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:05.459+00', '{"cached":null,"ignore_cache":null}'), +(42912, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:06.516+00', '{"cached":null,"ignore_cache":false}'), +(42913, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:26.476+00', '{"cached":null,"ignore_cache":null}'), +(42914, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.417+00', '{"cached":null,"ignore_cache":false}'), +(42915, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.447+00', '{"cached":null,"ignore_cache":false}'), +(42916, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.543+00', '{"cached":null,"ignore_cache":false}'), +(42917, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.6+00', '{"cached":null,"ignore_cache":false}'), +(42918, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.676+00', '{"cached":null,"ignore_cache":false}'), +(42919, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:27.72+00', '{"cached":null,"ignore_cache":false}'), +(42920, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:33.371+00', '{"cached":null,"ignore_cache":null}'), +(42921, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:35:34.2+00', '{"cached":null,"ignore_cache":false}'), +(42922, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:34.832+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42923, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:35.635+00', '{"cached":null,"ignore_cache":false}'), +(42924, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:43.024+00', '{"cached":null,"ignore_cache":null}'), +(42925, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:44.133+00', '{"cached":null,"ignore_cache":false}'), +(42926, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:44.188+00', '{"cached":null,"ignore_cache":false}'), +(42927, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:44.233+00', '{"cached":null,"ignore_cache":false}'), +(42928, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:44.271+00', '{"cached":null,"ignore_cache":false}'), +(42929, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:44.283+00', '{"cached":null,"ignore_cache":false}'), +(42930, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:44.316+00', '{"cached":null,"ignore_cache":false}'), +(42931, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:48.398+00', '{"cached":null,"ignore_cache":null}'), +(42932, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:49.535+00', '{"cached":null,"ignore_cache":false}'), +(42933, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:55.464+00', '{"cached":null,"ignore_cache":null}'), +(42934, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:55.847+00', '{"cached":null,"ignore_cache":null}'), +(42935, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:56.501+00', '{"cached":null,"ignore_cache":false}'), +(42936, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:58.27+00', '{"cached":null,"ignore_cache":null}'), +(42937, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:59.105+00', '{"cached":null,"ignore_cache":false}'), +(42938, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:59.145+00', '{"cached":null,"ignore_cache":false}'), +(42939, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:59.151+00', '{"cached":null,"ignore_cache":false}'), +(42940, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:59.19+00', '{"cached":null,"ignore_cache":false}'), +(42941, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:59.201+00', '{"cached":null,"ignore_cache":false}'), +(42942, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:59.244+00', '{"cached":null,"ignore_cache":false}'), +(42943, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:18.503+00', '{"cached":null,"ignore_cache":null}'), +(42944, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:19.188+00', '{"cached":null,"ignore_cache":false}'), +(42945, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:35.435+00', '{"cached":null,"ignore_cache":null}'), +(42946, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:36.269+00', '{"cached":null,"ignore_cache":false}'), +(42947, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:36.316+00', '{"cached":null,"ignore_cache":false}'), +(42948, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:36.327+00', '{"cached":null,"ignore_cache":false}'), +(42949, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:36.35+00', '{"cached":null,"ignore_cache":false}'), +(42950, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:36.379+00', '{"cached":null,"ignore_cache":false}'), +(42951, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:36.394+00', '{"cached":null,"ignore_cache":false}'), +(42952, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:05.541+00', '{"cached":null,"ignore_cache":null}'), +(42953, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.258+00', '{"cached":null,"ignore_cache":false}'), +(42954, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.343+00', '{"cached":null,"ignore_cache":false}'), +(42955, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.592+00', '{"cached":null,"ignore_cache":false}'), +(42956, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.599+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42957, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.641+00', '{"cached":null,"ignore_cache":false}'), +(42958, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.692+00', '{"cached":null,"ignore_cache":false}'), +(42959, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.712+00', '{"cached":null,"ignore_cache":false}'), +(42960, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:06.841+00', '{"cached":null,"ignore_cache":false}'), +(42961, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:07.375+00', '{"cached":null,"ignore_cache":false}'), +(42962, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:07.376+00', '{"cached":null,"ignore_cache":false}'), +(42963, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:38:48.399+00', '{"cached":null,"ignore_cache":null}'), +(42964, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:06.292+00', '{"cached":null,"ignore_cache":null}'), +(42965, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:10.237+00', '{"cached":null,"ignore_cache":null}'), +(42966, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:16.976+00', '{"cached":null,"ignore_cache":null}'), +(42967, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:16.977+00', '{"cached":null,"ignore_cache":null}'), +(42968, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.465+00', '{"cached":null,"ignore_cache":false}'), +(42969, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.668+00', '{"cached":null,"ignore_cache":false}'), +(42970, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.669+00', '{"cached":null,"ignore_cache":false}'), +(42971, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.719+00', '{"cached":null,"ignore_cache":false}'), +(42972, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.888+00', '{"cached":null,"ignore_cache":false}'), +(42973, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:46.9+00', '{"cached":null,"ignore_cache":false}'), +(42974, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:47.031+00', '{"cached":null,"ignore_cache":false}'), +(42975, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:47.056+00', '{"cached":null,"ignore_cache":false}'), +(42976, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:47.082+00', '{"cached":null,"ignore_cache":false}'), +(42977, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:39:47.268+00', '{"cached":null,"ignore_cache":false}'), +(42978, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:05.47+00', '{"cached":null,"ignore_cache":null}'), +(42979, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.143+00', '{"cached":null,"ignore_cache":false}'), +(42980, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.188+00', '{"cached":null,"ignore_cache":false}'), +(42981, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.249+00', '{"cached":null,"ignore_cache":false}'), +(42982, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.429+00', '{"cached":null,"ignore_cache":false}'), +(42983, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.776+00', '{"cached":null,"ignore_cache":false}'), +(42984, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.814+00', '{"cached":null,"ignore_cache":false}'), +(42985, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.867+00', '{"cached":null,"ignore_cache":false}'), +(42986, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:08.993+00', '{"cached":null,"ignore_cache":false}'), +(42987, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:09.014+00', '{"cached":null,"ignore_cache":false}'), +(42988, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:09.312+00', '{"cached":null,"ignore_cache":false}'), +(42989, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.071+00', '{"cached":null,"ignore_cache":false}'), +(42990, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.163+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(42991, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.198+00', '{"cached":null,"ignore_cache":false}'), +(42992, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.3+00', '{"cached":null,"ignore_cache":false}'), +(42993, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.372+00', '{"cached":null,"ignore_cache":false}'), +(42994, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.462+00', '{"cached":null,"ignore_cache":false}'), +(42995, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.617+00', '{"cached":null,"ignore_cache":false}'), +(42996, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.68+00', '{"cached":null,"ignore_cache":false}'), +(42997, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.718+00', '{"cached":null,"ignore_cache":false}'), +(42998, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:13.767+00', '{"cached":null,"ignore_cache":false}'), +(42999, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:19.996+00', '{"cached":null,"ignore_cache":false}'), +(43000, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.213+00', '{"cached":null,"ignore_cache":false}'), +(43001, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.349+00', '{"cached":null,"ignore_cache":false}'), +(43002, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.741+00', '{"cached":null,"ignore_cache":false}'), +(43003, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.748+00', '{"cached":null,"ignore_cache":false}'), +(43004, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.756+00', '{"cached":null,"ignore_cache":false}'), +(43005, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.759+00', '{"cached":null,"ignore_cache":false}'), +(43006, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:20.783+00', '{"cached":null,"ignore_cache":false}'), +(43007, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:21.067+00', '{"cached":null,"ignore_cache":false}'), +(43008, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:21.141+00', '{"cached":null,"ignore_cache":false}'), +(43009, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:22.126+00', '{"cached":null,"ignore_cache":null}'), +(43010, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:40:22.75+00', '{"cached":null,"ignore_cache":false}'), +(43011, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:11.108+00', '{"cached":null,"ignore_cache":null}'), +(43012, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:22.498+00', '{"cached":null,"ignore_cache":null}'), +(43013, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:28.912+00', '{"cached":null,"ignore_cache":null}'), +(43014, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:35.754+00', '{"cached":null,"ignore_cache":null}'), +(43015, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:39.809+00', '{"cached":null,"ignore_cache":null}'), +(43016, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:40.386+00', '{"cached":null,"ignore_cache":null}'), +(43017, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:41:56.579+00', '{"cached":null,"ignore_cache":null}'), +(43018, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:42:11.468+00', '{"cached":null,"ignore_cache":null}'), +(43019, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:42:24.713+00', '{"cached":null,"ignore_cache":null}'), +(43020, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:42:56.798+00', '{"cached":null,"ignore_cache":null}'), +(43021, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:43:06.545+00', '{"cached":null,"ignore_cache":null}'), +(43022, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:43:39.527+00', '{"cached":null,"ignore_cache":null}'), +(43023, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:43:50.403+00', '{"cached":null,"ignore_cache":null}'), +(43024, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:04.646+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43025, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:12.213+00', '{"cached":null,"ignore_cache":null}'), +(43026, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:27.164+00', '{"cached":null,"ignore_cache":null}'), +(43027, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:43.603+00', '{"cached":null,"ignore_cache":null}'), +(43028, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:44.78+00', '{"cached":null,"ignore_cache":false}'), +(43029, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:44:59.24+00', '{"cached":null,"ignore_cache":null}'), +(43030, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:11.656+00', '{"cached":null,"ignore_cache":null}'), +(43031, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:14.531+00', '{"cached":null,"ignore_cache":false}'), +(43032, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:14.811+00', '{"cached":null,"ignore_cache":false}'), +(43033, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:15.567+00', '{"cached":null,"ignore_cache":false}'), +(43034, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:15.841+00', '{"cached":null,"ignore_cache":false}'), +(43035, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:15.918+00', '{"cached":null,"ignore_cache":false}'), +(43036, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:15.957+00', '{"cached":null,"ignore_cache":false}'), +(43037, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:16.001+00', '{"cached":null,"ignore_cache":false}'), +(43038, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:16.068+00', '{"cached":null,"ignore_cache":false}'), +(43039, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:16.36+00', '{"cached":null,"ignore_cache":false}'), +(43040, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:16.432+00', '{"cached":null,"ignore_cache":false}'), +(43041, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:24.176+00', '{"cached":null,"ignore_cache":null}'), +(43042, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:26.049+00', '{"cached":null,"ignore_cache":null}'), +(43043, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:37.019+00', '{"cached":null,"ignore_cache":null}'), +(43044, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.047+00', '{"cached":null,"ignore_cache":null}'), +(43045, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:44.777+00', '{"cached":null,"ignore_cache":false}'), +(43046, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.29+00', '{"cached":null,"ignore_cache":false}'), +(43047, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.368+00', '{"cached":null,"ignore_cache":false}'), +(43048, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.499+00', '{"cached":null,"ignore_cache":false}'), +(43049, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.531+00', '{"cached":null,"ignore_cache":false}'), +(43050, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.554+00', '{"cached":null,"ignore_cache":false}'), +(43051, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.687+00', '{"cached":null,"ignore_cache":false}'), +(43052, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.711+00', '{"cached":null,"ignore_cache":false}'), +(43053, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.737+00', '{"cached":null,"ignore_cache":false}'), +(43054, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:45.874+00', '{"cached":null,"ignore_cache":false}'), +(43055, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.467+00', '{"cached":null,"ignore_cache":false}'), +(43056, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.484+00', '{"cached":null,"ignore_cache":false}'), +(43057, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.541+00', '{"cached":null,"ignore_cache":false}'), +(43058, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.641+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43059, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.897+00', '{"cached":null,"ignore_cache":false}'), +(43060, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:47.914+00', '{"cached":null,"ignore_cache":false}'), +(43061, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:48.032+00', '{"cached":null,"ignore_cache":false}'), +(43062, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:48.05+00', '{"cached":null,"ignore_cache":false}'), +(43063, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:48.135+00', '{"cached":null,"ignore_cache":false}'), +(43064, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:48.365+00', '{"cached":null,"ignore_cache":false}'), +(43065, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:58.307+00', '{"cached":null,"ignore_cache":null}'), +(43066, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.264+00', '{"cached":null,"ignore_cache":false}'), +(43067, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.341+00', '{"cached":null,"ignore_cache":false}'), +(43068, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.662+00', '{"cached":null,"ignore_cache":false}'), +(43069, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.74+00', '{"cached":null,"ignore_cache":false}'), +(43070, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.764+00', '{"cached":null,"ignore_cache":false}'), +(43071, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.801+00', '{"cached":null,"ignore_cache":false}'), +(43072, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.837+00', '{"cached":null,"ignore_cache":false}'), +(43073, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:00.847+00', '{"cached":null,"ignore_cache":false}'), +(43074, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:01.056+00', '{"cached":null,"ignore_cache":false}'), +(43075, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:01.169+00', '{"cached":null,"ignore_cache":false}'), +(43076, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:43.571+00', '{"cached":null,"ignore_cache":null}'), +(43077, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:44.82+00', '{"cached":null,"ignore_cache":false}'), +(43078, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:47.728+00', '{"cached":null,"ignore_cache":null}'), +(43079, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.549+00', '{"cached":null,"ignore_cache":false}'), +(43080, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.691+00', '{"cached":null,"ignore_cache":false}'), +(43081, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.709+00', '{"cached":null,"ignore_cache":false}'), +(43082, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.861+00', '{"cached":null,"ignore_cache":false}'), +(43083, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:48.958+00', '{"cached":null,"ignore_cache":false}'), +(43084, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:49.04+00', '{"cached":null,"ignore_cache":false}'), +(43085, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:49.133+00', '{"cached":null,"ignore_cache":false}'), +(43086, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:49.147+00', '{"cached":null,"ignore_cache":false}'), +(43087, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:49.296+00', '{"cached":null,"ignore_cache":false}'), +(43088, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:49.429+00', '{"cached":null,"ignore_cache":false}'), +(43089, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:57.097+00', '{"cached":null,"ignore_cache":null}'), +(43090, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:46:57.783+00', '{"cached":null,"ignore_cache":false}'), +(43091, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:00.456+00', '{"cached":null,"ignore_cache":null}'), +(43092, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.133+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43093, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.358+00', '{"cached":null,"ignore_cache":false}'), +(43094, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.413+00', '{"cached":null,"ignore_cache":false}'), +(43095, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.553+00', '{"cached":null,"ignore_cache":false}'), +(43096, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.685+00', '{"cached":null,"ignore_cache":false}'), +(43097, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.7+00', '{"cached":null,"ignore_cache":false}'), +(43098, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.789+00', '{"cached":null,"ignore_cache":false}'), +(43099, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.843+00', '{"cached":null,"ignore_cache":false}'), +(43100, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:01.978+00', '{"cached":null,"ignore_cache":false}'), +(43101, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:02.204+00', '{"cached":null,"ignore_cache":false}'), +(43102, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:05.389+00', '{"cached":null,"ignore_cache":null}'), +(43103, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:05.955+00', '{"cached":null,"ignore_cache":false}'), +(43104, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:10.136+00', '{"cached":null,"ignore_cache":null}'), +(43105, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.234+00', '{"cached":null,"ignore_cache":false}'), +(43106, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.285+00', '{"cached":null,"ignore_cache":false}'), +(43107, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.409+00', '{"cached":null,"ignore_cache":false}'), +(43108, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.426+00', '{"cached":null,"ignore_cache":false}'), +(43109, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.44+00', '{"cached":null,"ignore_cache":false}'), +(43110, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.586+00', '{"cached":null,"ignore_cache":false}'), +(43111, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.616+00', '{"cached":null,"ignore_cache":false}'), +(43112, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.632+00', '{"cached":null,"ignore_cache":false}'), +(43113, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.986+00', '{"cached":null,"ignore_cache":false}'), +(43114, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:11.992+00', '{"cached":null,"ignore_cache":false}'), +(43115, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:14.539+00', '{"cached":null,"ignore_cache":null}'), +(43116, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:15.191+00', '{"cached":null,"ignore_cache":false}'), +(43117, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:20.492+00', '{"cached":null,"ignore_cache":null}'), +(43118, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.143+00', '{"cached":null,"ignore_cache":false}'), +(43119, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.323+00', '{"cached":null,"ignore_cache":false}'), +(43120, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.434+00', '{"cached":null,"ignore_cache":false}'), +(43121, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.474+00', '{"cached":null,"ignore_cache":false}'), +(43122, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.534+00', '{"cached":null,"ignore_cache":false}'), +(43123, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.625+00', '{"cached":null,"ignore_cache":false}'), +(43124, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.644+00', '{"cached":null,"ignore_cache":false}'), +(43125, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.756+00', '{"cached":null,"ignore_cache":false}'), +(43126, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.813+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43127, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:21.926+00', '{"cached":null,"ignore_cache":false}'), +(43128, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:24.266+00', '{"cached":null,"ignore_cache":null}'), +(43129, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:25.436+00', '{"cached":null,"ignore_cache":false}'), +(43130, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:28.032+00', '{"cached":null,"ignore_cache":null}'), +(43131, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.53+00', '{"cached":null,"ignore_cache":false}'), +(43132, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:29.656+00', '{"cached":null,"ignore_cache":false}'), +(43133, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:30.023+00', '{"cached":null,"ignore_cache":false}'), +(43134, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:30.27+00', '{"cached":null,"ignore_cache":false}'), +(43135, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:30.288+00', '{"cached":null,"ignore_cache":false}'), +(43136, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:30.44+00', '{"cached":null,"ignore_cache":false}'), +(43137, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:30.505+00', '{"cached":null,"ignore_cache":false}'), +(43138, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:30.656+00', '{"cached":null,"ignore_cache":false}'), +(43139, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:31.722+00', '{"cached":null,"ignore_cache":false}'), +(43140, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:47:31.741+00', '{"cached":null,"ignore_cache":false}'), +(43141, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.712+00', '{"cached":null,"ignore_cache":false}'), +(43142, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.82+00', '{"cached":null,"ignore_cache":false}'), +(43143, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.869+00', '{"cached":null,"ignore_cache":false}'), +(43144, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.914+00', '{"cached":null,"ignore_cache":false}'), +(43145, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:22.923+00', '{"cached":null,"ignore_cache":false}'), +(43146, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:23.766+00', '{"cached":null,"ignore_cache":false}'), +(43147, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:23.79+00', '{"cached":null,"ignore_cache":false}'), +(43148, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:23.811+00', '{"cached":null,"ignore_cache":false}'), +(43149, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:24.464+00', '{"cached":null,"ignore_cache":false}'), +(43150, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:24.525+00', '{"cached":null,"ignore_cache":false}'), +(43151, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.891+00', '{"cached":null,"ignore_cache":false}'), +(43152, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:56.953+00', '{"cached":null,"ignore_cache":false}'), +(43153, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.045+00', '{"cached":null,"ignore_cache":false}'), +(43154, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.06+00', '{"cached":null,"ignore_cache":false}'), +(43155, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.124+00', '{"cached":null,"ignore_cache":false}'), +(43156, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.195+00', '{"cached":null,"ignore_cache":false}'), +(43157, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.226+00', '{"cached":null,"ignore_cache":false}'), +(43158, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.288+00', '{"cached":null,"ignore_cache":false}'), +(43159, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.519+00', '{"cached":null,"ignore_cache":false}'), +(43160, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:49:57.682+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43161, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.062+00', '{"cached":null,"ignore_cache":false}'), +(43162, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.126+00', '{"cached":null,"ignore_cache":false}'), +(43163, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.654+00', '{"cached":null,"ignore_cache":false}'), +(43164, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.703+00', '{"cached":null,"ignore_cache":false}'), +(43165, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.761+00', '{"cached":null,"ignore_cache":false}'), +(43166, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.852+00', '{"cached":null,"ignore_cache":false}'), +(43167, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.871+00', '{"cached":null,"ignore_cache":false}'), +(43168, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:01.923+00', '{"cached":null,"ignore_cache":false}'), +(43169, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:02.005+00', '{"cached":null,"ignore_cache":false}'), +(43170, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:02.412+00', '{"cached":null,"ignore_cache":false}'), +(43171, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.68+00', '{"cached":null,"ignore_cache":false}'), +(43172, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.717+00', '{"cached":null,"ignore_cache":false}'), +(43173, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.846+00', '{"cached":null,"ignore_cache":false}'), +(43174, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.948+00', '{"cached":null,"ignore_cache":false}'), +(43175, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:16.974+00', '{"cached":null,"ignore_cache":false}'), +(43176, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:17.25+00', '{"cached":null,"ignore_cache":false}'), +(43177, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:17.272+00', '{"cached":null,"ignore_cache":false}'), +(43178, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:17.277+00', '{"cached":null,"ignore_cache":false}'), +(43179, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:17.283+00', '{"cached":null,"ignore_cache":false}'), +(43180, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:17.508+00', '{"cached":null,"ignore_cache":false}'), +(43181, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.409+00', '{"cached":null,"ignore_cache":false}'), +(43182, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.615+00', '{"cached":null,"ignore_cache":false}'), +(43183, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.817+00', '{"cached":null,"ignore_cache":false}'), +(43184, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.894+00', '{"cached":null,"ignore_cache":false}'), +(43185, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.964+00', '{"cached":null,"ignore_cache":false}'), +(43186, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:22.981+00', '{"cached":null,"ignore_cache":false}'), +(43187, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:23.029+00', '{"cached":null,"ignore_cache":false}'), +(43188, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:23.047+00', '{"cached":null,"ignore_cache":false}'), +(43189, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:23.171+00', '{"cached":null,"ignore_cache":false}'), +(43190, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:50:23.37+00', '{"cached":null,"ignore_cache":false}'), +(43191, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:08.891+00', '{"cached":null,"ignore_cache":null}'), +(43192, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:10.36+00', '{"cached":null,"ignore_cache":false}'), +(43193, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:10.572+00', '{"cached":null,"ignore_cache":false}'), +(43194, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:10.797+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43195, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:10.857+00', '{"cached":null,"ignore_cache":false}'), +(43196, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:10.889+00', '{"cached":null,"ignore_cache":false}'), +(43197, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:10.97+00', '{"cached":null,"ignore_cache":false}'), +(43198, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:11.001+00', '{"cached":null,"ignore_cache":false}'), +(43199, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:11.025+00', '{"cached":null,"ignore_cache":false}'), +(43200, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:11.295+00', '{"cached":null,"ignore_cache":false}'), +(43201, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:11.338+00', '{"cached":null,"ignore_cache":false}'), +(43202, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:17.902+00', '{"cached":null,"ignore_cache":null}'), +(43203, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:18.402+00', '{"cached":null,"ignore_cache":null}'), +(43204, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:28.561+00', '{"cached":null,"ignore_cache":null}'), +(43205, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:39.31+00', '{"cached":null,"ignore_cache":null}'), +(43206, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.089+00', '{"cached":null,"ignore_cache":false}'), +(43207, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.326+00', '{"cached":null,"ignore_cache":false}'), +(43208, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.537+00', '{"cached":null,"ignore_cache":false}'), +(43209, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.586+00', '{"cached":null,"ignore_cache":false}'), +(43210, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.61+00', '{"cached":null,"ignore_cache":false}'), +(43211, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.69+00', '{"cached":null,"ignore_cache":false}'), +(43212, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.73+00', '{"cached":null,"ignore_cache":false}'), +(43213, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.75+00', '{"cached":null,"ignore_cache":false}'), +(43214, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.889+00', '{"cached":null,"ignore_cache":false}'), +(43215, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:51:40.968+00', '{"cached":null,"ignore_cache":false}'), +(43216, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:11.997+00', '{"cached":null,"ignore_cache":false}'), +(43217, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.031+00', '{"cached":null,"ignore_cache":false}'), +(43218, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.121+00', '{"cached":null,"ignore_cache":false}'), +(43219, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.197+00', '{"cached":null,"ignore_cache":false}'), +(43220, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.298+00', '{"cached":null,"ignore_cache":false}'), +(43221, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.377+00', '{"cached":null,"ignore_cache":false}'), +(43222, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.54+00', '{"cached":null,"ignore_cache":false}'), +(43223, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.571+00', '{"cached":null,"ignore_cache":false}'), +(43224, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.793+00', '{"cached":null,"ignore_cache":false}'), +(43225, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:12.805+00', '{"cached":null,"ignore_cache":false}'), +(43226, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.365+00', '{"cached":null,"ignore_cache":false}'), +(43227, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.55+00', '{"cached":null,"ignore_cache":false}'), +(43228, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.57+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43229, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.596+00', '{"cached":null,"ignore_cache":false}'), +(43230, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.617+00', '{"cached":null,"ignore_cache":false}'), +(43231, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.666+00', '{"cached":null,"ignore_cache":false}'), +(43232, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.696+00', '{"cached":null,"ignore_cache":false}'), +(43233, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.726+00', '{"cached":null,"ignore_cache":false}'), +(43234, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:17.931+00', '{"cached":null,"ignore_cache":false}'), +(43235, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:18.06+00', '{"cached":null,"ignore_cache":false}'), +(43236, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.315+00', '{"cached":null,"ignore_cache":false}'), +(43237, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.431+00', '{"cached":null,"ignore_cache":false}'), +(43238, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.432+00', '{"cached":null,"ignore_cache":false}'), +(43239, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.442+00', '{"cached":null,"ignore_cache":false}'), +(43240, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.506+00', '{"cached":null,"ignore_cache":false}'), +(43241, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.519+00', '{"cached":null,"ignore_cache":false}'), +(43242, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.604+00', '{"cached":null,"ignore_cache":false}'), +(43243, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:28.724+00', '{"cached":null,"ignore_cache":false}'), +(43244, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:29.166+00', '{"cached":null,"ignore_cache":false}'), +(43245, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:29.204+00', '{"cached":null,"ignore_cache":false}'), +(43246, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.701+00', '{"cached":null,"ignore_cache":false}'), +(43247, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.72+00', '{"cached":null,"ignore_cache":false}'), +(43248, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.733+00', '{"cached":null,"ignore_cache":false}'), +(43249, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.779+00', '{"cached":null,"ignore_cache":false}'), +(43250, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.791+00', '{"cached":null,"ignore_cache":false}'), +(43251, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.804+00', '{"cached":null,"ignore_cache":false}'), +(43252, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.878+00', '{"cached":null,"ignore_cache":false}'), +(43253, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:51.97+00', '{"cached":null,"ignore_cache":false}'), +(43254, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:52.171+00', '{"cached":null,"ignore_cache":false}'), +(43255, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:52:52.209+00', '{"cached":null,"ignore_cache":false}'), +(43256, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:04.062+00', '{"cached":null,"ignore_cache":false}'), +(43257, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:04.798+00', '{"cached":null,"ignore_cache":false}'), +(43258, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:04.839+00', '{"cached":null,"ignore_cache":false}'), +(43259, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:05.001+00', '{"cached":null,"ignore_cache":false}'), +(43260, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:05.238+00', '{"cached":null,"ignore_cache":false}'), +(43261, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.097+00', '{"cached":null,"ignore_cache":false}'), +(43262, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.508+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43263, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.581+00', '{"cached":null,"ignore_cache":false}'), +(43264, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.667+00', '{"cached":null,"ignore_cache":false}'), +(43265, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:07.703+00', '{"cached":null,"ignore_cache":false}'), +(43266, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.317+00', '{"cached":null,"ignore_cache":false}'), +(43267, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.372+00', '{"cached":null,"ignore_cache":false}'), +(43268, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.372+00', '{"cached":null,"ignore_cache":false}'), +(43269, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.387+00', '{"cached":null,"ignore_cache":false}'), +(43270, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.432+00', '{"cached":null,"ignore_cache":false}'), +(43271, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.56+00', '{"cached":null,"ignore_cache":false}'), +(43272, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.662+00', '{"cached":null,"ignore_cache":false}'), +(43273, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.674+00', '{"cached":null,"ignore_cache":false}'), +(43274, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.833+00', '{"cached":null,"ignore_cache":false}'), +(43275, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:08.87+00', '{"cached":null,"ignore_cache":false}'), +(43276, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.145+00', '{"cached":null,"ignore_cache":false}'), +(43277, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.238+00', '{"cached":null,"ignore_cache":false}'), +(43278, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.403+00', '{"cached":null,"ignore_cache":false}'), +(43279, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.404+00', '{"cached":null,"ignore_cache":false}'), +(43280, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.434+00', '{"cached":null,"ignore_cache":false}'), +(43281, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.568+00', '{"cached":null,"ignore_cache":false}'), +(43282, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.797+00', '{"cached":null,"ignore_cache":false}'), +(43283, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.816+00', '{"cached":null,"ignore_cache":false}'), +(43284, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:12.946+00', '{"cached":null,"ignore_cache":false}'), +(43285, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:13.013+00', '{"cached":null,"ignore_cache":false}'), +(43286, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:29.951+00', '{"cached":null,"ignore_cache":false}'), +(43287, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:29.962+00', '{"cached":null,"ignore_cache":false}'), +(43288, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.674+00', '{"cached":null,"ignore_cache":false}'), +(43289, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.8+00', '{"cached":null,"ignore_cache":false}'), +(43290, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.846+00', '{"cached":null,"ignore_cache":false}'), +(43291, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.869+00', '{"cached":null,"ignore_cache":false}'), +(43292, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:30.921+00', '{"cached":null,"ignore_cache":false}'), +(43293, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:31.004+00', '{"cached":null,"ignore_cache":false}'), +(43294, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:31.291+00', '{"cached":null,"ignore_cache":false}'), +(43295, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:31.369+00', '{"cached":null,"ignore_cache":false}'), +(43296, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:36.856+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43297, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.016+00', '{"cached":null,"ignore_cache":false}'), +(43298, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.23+00', '{"cached":null,"ignore_cache":false}'), +(43299, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.246+00', '{"cached":null,"ignore_cache":false}'), +(43300, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.26+00', '{"cached":null,"ignore_cache":false}'), +(43301, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.267+00', '{"cached":null,"ignore_cache":false}'), +(43302, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.291+00', '{"cached":null,"ignore_cache":false}'), +(43303, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.407+00', '{"cached":null,"ignore_cache":false}'), +(43304, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.442+00', '{"cached":null,"ignore_cache":false}'), +(43305, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:37.509+00', '{"cached":null,"ignore_cache":false}'), +(43306, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.763+00', '{"cached":null,"ignore_cache":false}'), +(43307, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.859+00', '{"cached":null,"ignore_cache":false}'), +(43308, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:38.955+00', '{"cached":null,"ignore_cache":false}'), +(43309, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:39.157+00', '{"cached":null,"ignore_cache":false}'), +(43310, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:39.396+00', '{"cached":null,"ignore_cache":false}'), +(43311, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:39.525+00', '{"cached":null,"ignore_cache":false}'), +(43312, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:39.689+00', '{"cached":null,"ignore_cache":false}'), +(43313, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:39.874+00', '{"cached":null,"ignore_cache":false}'), +(43314, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:40.133+00', '{"cached":null,"ignore_cache":false}'), +(43315, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:40.216+00', '{"cached":null,"ignore_cache":false}'), +(43316, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:50.561+00', '{"cached":null,"ignore_cache":null}'), +(43317, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.874+00', '{"cached":null,"ignore_cache":false}'), +(43318, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.933+00', '{"cached":null,"ignore_cache":false}'), +(43319, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.965+00', '{"cached":null,"ignore_cache":false}'), +(43320, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:51.983+00', '{"cached":null,"ignore_cache":false}'), +(43321, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:52.032+00', '{"cached":null,"ignore_cache":false}'), +(43322, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:52.066+00', '{"cached":null,"ignore_cache":false}'), +(43323, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:53.867+00', '{"cached":null,"ignore_cache":null}'), +(43324, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:55.077+00', '{"cached":null,"ignore_cache":false}'), +(43325, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:55.445+00', '{"cached":null,"ignore_cache":false}'), +(43326, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:55.463+00', '{"cached":null,"ignore_cache":false}'), +(43327, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:55.515+00', '{"cached":null,"ignore_cache":false}'), +(43328, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:55.534+00', '{"cached":null,"ignore_cache":false}'), +(43329, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:53:55.576+00', '{"cached":null,"ignore_cache":false}'), +(43330, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:00.699+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43331, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:25.011+00', '{"cached":null,"ignore_cache":false}'), +(43332, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:25.188+00', '{"cached":null,"ignore_cache":false}'), +(43333, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:25.282+00', '{"cached":null,"ignore_cache":false}'), +(43334, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:25.327+00', '{"cached":null,"ignore_cache":false}'), +(43335, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:25.362+00', '{"cached":null,"ignore_cache":false}'), +(43336, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:25.426+00', '{"cached":null,"ignore_cache":false}'), +(43337, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:45.901+00', '{"cached":null,"ignore_cache":null}'), +(43338, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:46.754+00', '{"cached":null,"ignore_cache":false}'), +(43339, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.319+00', '{"cached":null,"ignore_cache":null}'), +(43340, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:50.984+00', '{"cached":null,"ignore_cache":false}'), +(43341, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:51.034+00', '{"cached":null,"ignore_cache":false}'), +(43342, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:51.059+00', '{"cached":null,"ignore_cache":false}'), +(43343, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:51.103+00', '{"cached":null,"ignore_cache":false}'), +(43344, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:51.117+00', '{"cached":null,"ignore_cache":false}'), +(43345, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:51.142+00', '{"cached":null,"ignore_cache":false}'), +(43346, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:53.06+00', '{"cached":null,"ignore_cache":null}'), +(43347, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:53.775+00', '{"cached":null,"ignore_cache":false}'), +(43348, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:56.602+00', '{"cached":null,"ignore_cache":null}'), +(43349, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.513+00', '{"cached":null,"ignore_cache":false}'), +(43350, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.604+00', '{"cached":null,"ignore_cache":false}'), +(43351, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.628+00', '{"cached":null,"ignore_cache":false}'), +(43352, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.645+00', '{"cached":null,"ignore_cache":false}'), +(43353, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.654+00', '{"cached":null,"ignore_cache":false}'), +(43354, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:57.713+00', '{"cached":null,"ignore_cache":false}'), +(43355, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:59.043+00', '{"cached":null,"ignore_cache":null}'), +(43356, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:54:59.671+00', '{"cached":null,"ignore_cache":false}'), +(43357, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:01.2+00', '{"cached":null,"ignore_cache":null}'), +(43358, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:02.071+00', '{"cached":null,"ignore_cache":false}'), +(43359, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:02.131+00', '{"cached":null,"ignore_cache":false}'), +(43360, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:02.206+00', '{"cached":null,"ignore_cache":false}'), +(43361, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:02.213+00', '{"cached":null,"ignore_cache":false}'), +(43362, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:02.251+00', '{"cached":null,"ignore_cache":false}'), +(43363, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:02.267+00', '{"cached":null,"ignore_cache":false}'), +(43364, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:03.087+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43365, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:03.786+00', '{"cached":null,"ignore_cache":false}'), +(43366, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:05.15+00', '{"cached":null,"ignore_cache":null}'), +(43367, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:07.417+00', '{"cached":null,"ignore_cache":false}'), +(43368, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:07.474+00', '{"cached":null,"ignore_cache":false}'), +(43369, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:07.52+00', '{"cached":null,"ignore_cache":false}'), +(43370, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:07.537+00', '{"cached":null,"ignore_cache":false}'), +(43371, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:07.577+00', '{"cached":null,"ignore_cache":false}'), +(43372, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:07.593+00', '{"cached":null,"ignore_cache":false}'), +(43373, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:08.437+00', '{"cached":null,"ignore_cache":null}'), +(43374, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:09.385+00', '{"cached":null,"ignore_cache":false}'), +(43375, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:16.432+00', '{"cached":null,"ignore_cache":false}'), +(43376, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.058+00', '{"cached":null,"ignore_cache":null}'), +(43377, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.74+00', '{"cached":null,"ignore_cache":false}'), +(43378, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.769+00', '{"cached":null,"ignore_cache":false}'), +(43379, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:19.992+00', '{"cached":null,"ignore_cache":false}'), +(43380, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:20.011+00', '{"cached":null,"ignore_cache":false}'), +(43381, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:20.022+00', '{"cached":null,"ignore_cache":false}'), +(43382, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:20.08+00', '{"cached":null,"ignore_cache":false}'), +(43383, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:28.183+00', '{"cached":null,"ignore_cache":null}'), +(43384, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:28.874+00', '{"cached":null,"ignore_cache":false}'), +(43385, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:30.833+00', '{"cached":null,"ignore_cache":null}'), +(43386, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.884+00', '{"cached":null,"ignore_cache":false}'), +(43387, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.951+00', '{"cached":null,"ignore_cache":false}'), +(43388, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.965+00', '{"cached":null,"ignore_cache":false}'), +(43389, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:31.985+00', '{"cached":null,"ignore_cache":false}'), +(43390, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:32.003+00', '{"cached":null,"ignore_cache":false}'), +(43391, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:32.025+00', '{"cached":null,"ignore_cache":false}'), +(43392, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:34.453+00', '{"cached":null,"ignore_cache":null}'), +(43393, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:35.316+00', '{"cached":null,"ignore_cache":false}'), +(43394, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:44.056+00', '{"cached":null,"ignore_cache":false}'), +(43395, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:51.274+00', '{"cached":null,"ignore_cache":null}'), +(43396, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:52.484+00', '{"cached":null,"ignore_cache":false}'), +(43397, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:52.531+00', '{"cached":null,"ignore_cache":false}'), +(43398, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:52.543+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43399, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:52.565+00', '{"cached":null,"ignore_cache":false}'), +(43400, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:52.614+00', '{"cached":null,"ignore_cache":false}'), +(43401, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:52.638+00', '{"cached":null,"ignore_cache":false}'), +(43402, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:56.968+00', '{"cached":null,"ignore_cache":null}'), +(43403, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.601+00', '{"cached":null,"ignore_cache":false}'), +(43404, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.665+00', '{"cached":null,"ignore_cache":false}'), +(43405, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:57.804+00', '{"cached":null,"ignore_cache":false}'), +(43406, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:58.018+00', '{"cached":null,"ignore_cache":false}'), +(43407, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:58.112+00', '{"cached":null,"ignore_cache":false}'), +(43408, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:58.159+00', '{"cached":null,"ignore_cache":false}'), +(43409, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:58.165+00', '{"cached":null,"ignore_cache":false}'), +(43410, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:58.215+00', '{"cached":null,"ignore_cache":false}'), +(43411, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:58.612+00', '{"cached":null,"ignore_cache":false}'), +(43412, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:58.617+00', '{"cached":null,"ignore_cache":false}'), +(43413, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:04.88+00', '{"cached":null,"ignore_cache":null}'), +(43414, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:05.283+00', '{"cached":null,"ignore_cache":null}'), +(43415, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:21.895+00', '{"cached":null,"ignore_cache":null}'), +(43416, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:22.856+00', '{"cached":null,"ignore_cache":false}'), +(43417, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.033+00', '{"cached":null,"ignore_cache":false}'), +(43418, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.035+00', '{"cached":null,"ignore_cache":false}'), +(43419, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.165+00', '{"cached":null,"ignore_cache":false}'), +(43420, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.271+00', '{"cached":null,"ignore_cache":false}'), +(43421, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.311+00', '{"cached":null,"ignore_cache":false}'), +(43422, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.348+00', '{"cached":null,"ignore_cache":false}'), +(43423, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.378+00', '{"cached":null,"ignore_cache":false}'), +(43424, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.725+00', '{"cached":null,"ignore_cache":false}'), +(43425, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:56:23.743+00', '{"cached":null,"ignore_cache":false}'), +(43426, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:57:55.536+00', '{"cached":null,"ignore_cache":null}'), +(43427, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:57:57.212+00', '{"cached":null,"ignore_cache":null}'), +(43428, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:57:58.915+00', '{"cached":null,"ignore_cache":false}'), +(43429, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:20.111+00', '{"cached":null,"ignore_cache":null}'), +(43430, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:21.425+00', '{"cached":null,"ignore_cache":false}'), +(43431, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:21.589+00', '{"cached":null,"ignore_cache":false}'), +(43432, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:22.469+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43433, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:22.849+00', '{"cached":null,"ignore_cache":false}'), +(43434, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:22.916+00', '{"cached":null,"ignore_cache":false}'), +(43435, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:22.978+00', '{"cached":null,"ignore_cache":false}'), +(43436, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:22.985+00', '{"cached":null,"ignore_cache":false}'), +(43437, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:23.035+00', '{"cached":null,"ignore_cache":false}'), +(43438, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:23.118+00', '{"cached":null,"ignore_cache":false}'), +(43439, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:23.275+00', '{"cached":null,"ignore_cache":false}'), +(43440, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:33.994+00', '{"cached":null,"ignore_cache":null}'), +(43441, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:34.408+00', '{"cached":null,"ignore_cache":null}'), +(43442, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:37.497+00', '{"cached":null,"ignore_cache":null}'), +(43443, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.383+00', '{"cached":null,"ignore_cache":false}'), +(43444, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.539+00', '{"cached":null,"ignore_cache":false}'), +(43445, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.712+00', '{"cached":null,"ignore_cache":false}'), +(43446, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:38.762+00', '{"cached":null,"ignore_cache":false}'), +(43447, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:39.2+00', '{"cached":null,"ignore_cache":false}'), +(43448, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:39.201+00', '{"cached":null,"ignore_cache":false}'), +(43449, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:39.472+00', '{"cached":null,"ignore_cache":false}'), +(43450, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:39.473+00', '{"cached":null,"ignore_cache":false}'), +(43451, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:39.495+00', '{"cached":null,"ignore_cache":false}'), +(43452, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:39.526+00', '{"cached":null,"ignore_cache":false}'), +(43453, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:41.804+00', '{"cached":null,"ignore_cache":null}'), +(43454, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 09:58:42.655+00', '{"cached":null,"ignore_cache":false}'), +(43455, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:18.18+00', '{"cached":null,"ignore_cache":null}'), +(43456, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:18.759+00', '{"cached":null,"ignore_cache":false}'), +(43457, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:19.158+00', '{"cached":null,"ignore_cache":false}'), +(43458, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:19.989+00', '{"cached":null,"ignore_cache":false}'), +(43459, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:23.536+00', '{"cached":null,"ignore_cache":null}'), +(43460, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:24.813+00', '{"cached":null,"ignore_cache":false}'), +(43461, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.001+00', '{"cached":null,"ignore_cache":false}'), +(43462, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.28+00', '{"cached":null,"ignore_cache":false}'), +(43463, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.297+00', '{"cached":null,"ignore_cache":false}'), +(43464, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.427+00', '{"cached":null,"ignore_cache":false}'), +(43465, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.471+00', '{"cached":null,"ignore_cache":false}'), +(43466, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.538+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43467, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.577+00', '{"cached":null,"ignore_cache":false}'), +(43468, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.754+00', '{"cached":null,"ignore_cache":false}'), +(43469, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:25.842+00', '{"cached":null,"ignore_cache":false}'), +(43470, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:34.951+00', '{"cached":null,"ignore_cache":null}'), +(43471, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:36.557+00', '{"cached":null,"ignore_cache":null}'), +(43472, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:37.01+00', '{"cached":null,"ignore_cache":null}'), +(43473, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:45.901+00', '{"cached":null,"ignore_cache":null}'), +(43474, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.93+00', '{"cached":null,"ignore_cache":false}'), +(43475, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:46.951+00', '{"cached":null,"ignore_cache":false}'), +(43476, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:47.063+00', '{"cached":null,"ignore_cache":false}'), +(43477, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:47.324+00', '{"cached":null,"ignore_cache":false}'), +(43478, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:47.485+00', '{"cached":null,"ignore_cache":false}'), +(43479, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:47.535+00', '{"cached":null,"ignore_cache":false}'), +(43480, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:47.661+00', '{"cached":null,"ignore_cache":false}'), +(43481, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:47.681+00', '{"cached":null,"ignore_cache":false}'), +(43482, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:47.689+00', '{"cached":null,"ignore_cache":false}'), +(43483, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:01:48.002+00', '{"cached":null,"ignore_cache":false}'), +(43484, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:31.239+00', '{"cached":null,"ignore_cache":null}'), +(43485, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.266+00', '{"cached":null,"ignore_cache":false}'), +(43486, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:34.905+00', '{"cached":null,"ignore_cache":false}'), +(43487, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.104+00', '{"cached":null,"ignore_cache":false}'), +(43488, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.179+00', '{"cached":null,"ignore_cache":false}'), +(43489, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.201+00', '{"cached":null,"ignore_cache":false}'), +(43490, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.261+00', '{"cached":null,"ignore_cache":false}'), +(43491, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.283+00', '{"cached":null,"ignore_cache":false}'), +(43492, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.405+00', '{"cached":null,"ignore_cache":false}'), +(43493, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.458+00', '{"cached":null,"ignore_cache":false}'), +(43494, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:35.558+00', '{"cached":null,"ignore_cache":false}'), +(43495, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:53.955+00', '{"cached":null,"ignore_cache":null}'), +(43496, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.785+00', '{"cached":null,"ignore_cache":false}'), +(43497, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.913+00', '{"cached":null,"ignore_cache":false}'), +(43498, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:54.962+00', '{"cached":null,"ignore_cache":false}'), +(43499, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:55.067+00', '{"cached":null,"ignore_cache":false}'), +(43500, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:55.095+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43501, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:02:55.103+00', '{"cached":null,"ignore_cache":false}'), +(43502, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:10.963+00', '{"cached":null,"ignore_cache":null}'), +(43503, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.773+00', '{"cached":null,"ignore_cache":false}'), +(43504, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:14.914+00', '{"cached":null,"ignore_cache":false}'), +(43505, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:15.053+00', '{"cached":null,"ignore_cache":false}'), +(43506, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:15.21+00', '{"cached":null,"ignore_cache":false}'), +(43507, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:15.288+00', '{"cached":null,"ignore_cache":false}'), +(43508, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:15.38+00', '{"cached":null,"ignore_cache":false}'), +(43509, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:17.165+00', '{"cached":null,"ignore_cache":false}'), +(43510, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:17.19+00', '{"cached":null,"ignore_cache":false}'), +(43511, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:17.209+00', '{"cached":null,"ignore_cache":false}'), +(43512, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:17.271+00', '{"cached":null,"ignore_cache":false}'), +(43513, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:17.275+00', '{"cached":null,"ignore_cache":false}'), +(43514, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:17.287+00', '{"cached":null,"ignore_cache":false}'), +(43515, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:31.997+00', '{"cached":null,"ignore_cache":false}'), +(43516, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:32.028+00', '{"cached":null,"ignore_cache":false}'), +(43517, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:32.08+00', '{"cached":null,"ignore_cache":false}'), +(43518, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:32.142+00', '{"cached":null,"ignore_cache":false}'), +(43519, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:32.168+00', '{"cached":null,"ignore_cache":false}'), +(43520, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:32.173+00', '{"cached":null,"ignore_cache":false}'), +(43521, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.493+00', '{"cached":null,"ignore_cache":false}'), +(43522, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.527+00', '{"cached":null,"ignore_cache":false}'), +(43523, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.538+00', '{"cached":null,"ignore_cache":false}'), +(43524, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.551+00', '{"cached":null,"ignore_cache":false}'), +(43525, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.573+00', '{"cached":null,"ignore_cache":false}'), +(43526, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:36.579+00', '{"cached":null,"ignore_cache":false}'), +(43527, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:39.238+00', '{"cached":null,"ignore_cache":false}'), +(43528, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:39.296+00', '{"cached":null,"ignore_cache":false}'), +(43529, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:39.312+00', '{"cached":null,"ignore_cache":false}'), +(43530, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:39.375+00', '{"cached":null,"ignore_cache":false}'), +(43531, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:39.465+00', '{"cached":null,"ignore_cache":false}'), +(43532, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:03:39.531+00', '{"cached":null,"ignore_cache":false}'), +(43533, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.515+00', '{"cached":null,"ignore_cache":false}'), +(43534, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.578+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43535, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.598+00', '{"cached":null,"ignore_cache":false}'), +(43536, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.652+00', '{"cached":null,"ignore_cache":false}'), +(43537, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.693+00', '{"cached":null,"ignore_cache":false}'), +(43538, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:04:57.694+00', '{"cached":null,"ignore_cache":false}'), +(43539, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.905+00', '{"cached":null,"ignore_cache":false}'), +(43540, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.922+00', '{"cached":null,"ignore_cache":false}'), +(43541, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.945+00', '{"cached":null,"ignore_cache":false}'), +(43542, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:00.97+00', '{"cached":null,"ignore_cache":false}'), +(43543, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:01.021+00', '{"cached":null,"ignore_cache":false}'), +(43544, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:01.045+00', '{"cached":null,"ignore_cache":false}'), +(43545, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:09.854+00', '{"cached":null,"ignore_cache":null}'), +(43546, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:10.559+00', '{"cached":null,"ignore_cache":false}'), +(43547, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.326+00', '{"cached":null,"ignore_cache":null}'), +(43548, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.953+00', '{"cached":null,"ignore_cache":false}'), +(43549, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:16.995+00', '{"cached":null,"ignore_cache":false}'), +(43550, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:17.101+00', '{"cached":null,"ignore_cache":false}'), +(43551, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:17.112+00', '{"cached":null,"ignore_cache":false}'), +(43552, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:17.14+00', '{"cached":null,"ignore_cache":false}'), +(43553, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:17.156+00', '{"cached":null,"ignore_cache":false}'), +(43554, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:18.501+00', '{"cached":null,"ignore_cache":null}'), +(43555, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.369+00', '{"cached":null,"ignore_cache":false}'), +(43556, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.417+00', '{"cached":null,"ignore_cache":false}'), +(43557, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.466+00', '{"cached":null,"ignore_cache":false}'), +(43558, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.478+00', '{"cached":null,"ignore_cache":false}'), +(43559, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.504+00', '{"cached":null,"ignore_cache":false}'), +(43560, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:19.515+00', '{"cached":null,"ignore_cache":false}'), +(43561, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:21.117+00', '{"cached":null,"ignore_cache":null}'), +(43562, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:21.905+00', '{"cached":null,"ignore_cache":false}'), +(43563, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:24.5+00', '{"cached":null,"ignore_cache":null}'), +(43564, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:25.287+00', '{"cached":null,"ignore_cache":false}'), +(43565, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:25.402+00', '{"cached":null,"ignore_cache":false}'), +(43566, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:25.418+00', '{"cached":null,"ignore_cache":false}'), +(43567, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:25.431+00', '{"cached":null,"ignore_cache":false}'), +(43568, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:25.459+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43569, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:25.497+00', '{"cached":null,"ignore_cache":false}'), +(43570, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:26.559+00', '{"cached":null,"ignore_cache":null}'), +(43571, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:27.26+00', '{"cached":null,"ignore_cache":false}'), +(43572, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:29.804+00', '{"cached":null,"ignore_cache":null}'), +(43573, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.532+00', '{"cached":null,"ignore_cache":false}'), +(43574, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.772+00', '{"cached":null,"ignore_cache":false}'), +(43575, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.806+00', '{"cached":null,"ignore_cache":false}'), +(43576, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.829+00', '{"cached":null,"ignore_cache":false}'), +(43577, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.873+00', '{"cached":null,"ignore_cache":false}'), +(43578, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:30.908+00', '{"cached":null,"ignore_cache":false}'), +(43579, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:33.9+00', '{"cached":null,"ignore_cache":null}'), +(43580, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:34.961+00', '{"cached":null,"ignore_cache":false}'), +(43581, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.181+00', '{"cached":null,"ignore_cache":null}'), +(43582, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:37.995+00', '{"cached":null,"ignore_cache":false}'), +(43583, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:38.046+00', '{"cached":null,"ignore_cache":false}'), +(43584, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:38.062+00', '{"cached":null,"ignore_cache":false}'), +(43585, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:38.1+00', '{"cached":null,"ignore_cache":false}'), +(43586, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:38.164+00', '{"cached":null,"ignore_cache":false}'), +(43587, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:38.173+00', '{"cached":null,"ignore_cache":false}'), +(43588, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:42.654+00', '{"cached":null,"ignore_cache":null}'), +(43589, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:43.312+00', '{"cached":null,"ignore_cache":null}'), +(43590, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:46.971+00', '{"cached":null,"ignore_cache":null}'), +(43591, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.777+00', '{"cached":null,"ignore_cache":false}'), +(43592, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.889+00', '{"cached":null,"ignore_cache":false}'), +(43593, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.921+00', '{"cached":null,"ignore_cache":false}'), +(43594, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:47.952+00', '{"cached":null,"ignore_cache":false}'), +(43595, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:48.007+00', '{"cached":null,"ignore_cache":false}'), +(43596, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:48.024+00', '{"cached":null,"ignore_cache":false}'), +(43597, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:48.828+00', '{"cached":null,"ignore_cache":null}'), +(43598, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:49.515+00', '{"cached":null,"ignore_cache":false}'), +(43599, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:56.389+00', '{"cached":null,"ignore_cache":null}'), +(43600, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:57.445+00', '{"cached":null,"ignore_cache":false}'), +(43601, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:57.535+00', '{"cached":null,"ignore_cache":false}'), +(43602, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:57.536+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43603, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:57.574+00', '{"cached":null,"ignore_cache":false}'), +(43604, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:57.626+00', '{"cached":null,"ignore_cache":false}'), +(43605, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:57.684+00', '{"cached":null,"ignore_cache":false}'), +(43606, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:58.97+00', '{"cached":null,"ignore_cache":null}'), +(43607, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:05:59.971+00', '{"cached":null,"ignore_cache":false}'), +(43608, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.033+00', '{"cached":null,"ignore_cache":false}'), +(43609, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.157+00', '{"cached":null,"ignore_cache":false}'), +(43610, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.45+00', '{"cached":null,"ignore_cache":false}'), +(43611, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.469+00', '{"cached":null,"ignore_cache":false}'), +(43612, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.479+00', '{"cached":null,"ignore_cache":false}'), +(43613, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.493+00', '{"cached":null,"ignore_cache":false}'), +(43614, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.518+00', '{"cached":null,"ignore_cache":false}'), +(43615, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.936+00', '{"cached":null,"ignore_cache":false}'), +(43616, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:00.969+00', '{"cached":null,"ignore_cache":false}'), +(43617, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.787+00', '{"cached":null,"ignore_cache":false}'), +(43618, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.86+00', '{"cached":null,"ignore_cache":false}'), +(43619, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.884+00', '{"cached":null,"ignore_cache":false}'), +(43620, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:26.906+00', '{"cached":null,"ignore_cache":false}'), +(43621, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:27.062+00', '{"cached":null,"ignore_cache":false}'), +(43622, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:27.078+00', '{"cached":null,"ignore_cache":false}'), +(43623, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:27.098+00', '{"cached":null,"ignore_cache":false}'), +(43624, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:27.118+00', '{"cached":null,"ignore_cache":false}'), +(43625, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:27.503+00', '{"cached":null,"ignore_cache":false}'), +(43626, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:27.518+00', '{"cached":null,"ignore_cache":false}'), +(43627, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.34+00', '{"cached":null,"ignore_cache":false}'), +(43628, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.36+00', '{"cached":null,"ignore_cache":false}'), +(43629, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.414+00', '{"cached":null,"ignore_cache":false}'), +(43630, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.447+00', '{"cached":null,"ignore_cache":false}'), +(43631, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.614+00', '{"cached":null,"ignore_cache":false}'), +(43632, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.631+00', '{"cached":null,"ignore_cache":false}'), +(43633, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.662+00', '{"cached":null,"ignore_cache":false}'), +(43634, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.716+00', '{"cached":null,"ignore_cache":false}'), +(43635, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.84+00', '{"cached":null,"ignore_cache":false}'), +(43636, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:38.982+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43637, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.659+00', '{"cached":null,"ignore_cache":false}'), +(43638, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.744+00', '{"cached":null,"ignore_cache":false}'), +(43639, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.753+00', '{"cached":null,"ignore_cache":false}'), +(43640, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.806+00', '{"cached":null,"ignore_cache":false}'), +(43641, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:44.869+00', '{"cached":null,"ignore_cache":false}'), +(43642, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:45.196+00', '{"cached":null,"ignore_cache":false}'), +(43643, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:45.317+00', '{"cached":null,"ignore_cache":false}'), +(43644, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:45.357+00', '{"cached":null,"ignore_cache":false}'), +(43645, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:45.806+00', '{"cached":null,"ignore_cache":false}'), +(43646, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:45.818+00', '{"cached":null,"ignore_cache":false}'), +(43647, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.412+00', '{"cached":null,"ignore_cache":false}'), +(43648, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.568+00', '{"cached":null,"ignore_cache":false}'), +(43649, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.635+00', '{"cached":null,"ignore_cache":false}'), +(43650, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.642+00', '{"cached":null,"ignore_cache":false}'), +(43651, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.802+00', '{"cached":null,"ignore_cache":false}'), +(43652, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.822+00', '{"cached":null,"ignore_cache":false}'), +(43653, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.896+00', '{"cached":null,"ignore_cache":false}'), +(43654, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:50.919+00', '{"cached":null,"ignore_cache":false}'), +(43655, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:51.145+00', '{"cached":null,"ignore_cache":false}'), +(43656, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:51.215+00', '{"cached":null,"ignore_cache":false}'), +(43657, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.27+00', '{"cached":null,"ignore_cache":false}'), +(43658, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:55.857+00', '{"cached":null,"ignore_cache":false}'), +(43659, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.053+00', '{"cached":null,"ignore_cache":false}'), +(43660, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.057+00', '{"cached":null,"ignore_cache":false}'), +(43661, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.178+00', '{"cached":null,"ignore_cache":false}'), +(43662, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.182+00', '{"cached":null,"ignore_cache":false}'), +(43663, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.185+00', '{"cached":null,"ignore_cache":false}'), +(43664, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.36+00', '{"cached":null,"ignore_cache":false}'), +(43665, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.428+00', '{"cached":null,"ignore_cache":false}'), +(43666, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:56.486+00', '{"cached":null,"ignore_cache":false}'), +(43667, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:58.657+00', '{"cached":null,"ignore_cache":false}'), +(43668, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.005+00', '{"cached":null,"ignore_cache":false}'), +(43669, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.133+00', '{"cached":null,"ignore_cache":false}'), +(43670, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.161+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43671, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.316+00', '{"cached":null,"ignore_cache":false}'), +(43672, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.341+00', '{"cached":null,"ignore_cache":false}'), +(43673, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.403+00', '{"cached":null,"ignore_cache":false}'), +(43674, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.48+00', '{"cached":null,"ignore_cache":false}'), +(43675, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.644+00', '{"cached":null,"ignore_cache":false}'), +(43676, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:06:59.664+00', '{"cached":null,"ignore_cache":false}'), +(43677, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:10.189+00', '{"cached":null,"ignore_cache":false}'), +(43678, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:10.408+00', '{"cached":null,"ignore_cache":false}'), +(43679, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:14.44+00', '{"cached":null,"ignore_cache":false}'), +(43680, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:14.442+00', '{"cached":null,"ignore_cache":false}'), +(43681, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:14.642+00', '{"cached":null,"ignore_cache":false}'), +(43682, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:14.843+00', '{"cached":null,"ignore_cache":false}'), +(43683, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:14.883+00', '{"cached":null,"ignore_cache":false}'), +(43684, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:15.54+00', '{"cached":null,"ignore_cache":false}'), +(43685, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:16.656+00', '{"cached":null,"ignore_cache":false}'), +(43686, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:16.705+00', '{"cached":null,"ignore_cache":false}'), +(43687, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:35.232+00', '{"cached":null,"ignore_cache":null}'), +(43688, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:36.072+00', '{"cached":null,"ignore_cache":false}'), +(43689, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-01-26 10:07:56.283+00', '{"cached":null,"ignore_cache":null}'), +(43690, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:45.995+00', '{"cached":null,"ignore_cache":null}'), +(43691, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:47.707+00', '{"cached":null,"ignore_cache":false}'), +(43692, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:48.654+00', '{"cached":null,"ignore_cache":false}'), +(43693, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:48.94+00', '{"cached":null,"ignore_cache":false}'), +(43694, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:49.041+00', '{"cached":null,"ignore_cache":false}'), +(43695, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:49.166+00', '{"cached":null,"ignore_cache":false}'), +(43696, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:49.228+00', '{"cached":null,"ignore_cache":false}'), +(43697, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:49.316+00', '{"cached":null,"ignore_cache":false}'), +(43698, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:49.374+00', '{"cached":null,"ignore_cache":false}'), +(43699, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:49.975+00', '{"cached":null,"ignore_cache":false}'), +(43700, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:14:49.996+00', '{"cached":null,"ignore_cache":false}'), +(43701, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.574+00', '{"cached":null,"ignore_cache":false}'), +(43702, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.6+00', '{"cached":null,"ignore_cache":false}'), +(43703, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.632+00', '{"cached":null,"ignore_cache":false}'), +(43704, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.813+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43705, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.874+00', '{"cached":null,"ignore_cache":false}'), +(43706, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.95+00', '{"cached":null,"ignore_cache":false}'), +(43707, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.959+00', '{"cached":null,"ignore_cache":false}'), +(43708, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:15.997+00', '{"cached":null,"ignore_cache":false}'), +(43709, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:16.278+00', '{"cached":null,"ignore_cache":false}'), +(43710, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:16.352+00', '{"cached":null,"ignore_cache":false}'), +(43711, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:26.88+00', '{"cached":null,"ignore_cache":null}'), +(43712, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:23:27.59+00', '{"cached":null,"ignore_cache":false}'), +(43713, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:16.122+00', '{"cached":null,"ignore_cache":null}'), +(43714, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:17.836+00', '{"cached":null,"ignore_cache":false}'), +(43715, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:18.112+00', '{"cached":null,"ignore_cache":false}'), +(43716, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:18.517+00', '{"cached":null,"ignore_cache":false}'), +(43717, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:18.937+00', '{"cached":null,"ignore_cache":false}'), +(43718, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:19.089+00', '{"cached":null,"ignore_cache":false}'), +(43719, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:19.147+00', '{"cached":null,"ignore_cache":false}'), +(43720, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:19.308+00', '{"cached":null,"ignore_cache":false}'), +(43721, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:19.432+00', '{"cached":null,"ignore_cache":false}'), +(43722, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:19.458+00', '{"cached":null,"ignore_cache":false}'), +(43723, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:19.518+00', '{"cached":null,"ignore_cache":false}'), +(43724, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:37.094+00', '{"cached":null,"ignore_cache":null}'), +(43725, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:24:38.106+00', '{"cached":null,"ignore_cache":false}'), +(43726, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-26 10:26:59.657+00', '{"cached":null,"ignore_cache":null}'), +(43727, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.736+00', '{"cached":null,"ignore_cache":false}'), +(43728, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.847+00', '{"cached":null,"ignore_cache":false}'), +(43729, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.875+00', '{"cached":null,"ignore_cache":false}'), +(43730, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.947+00', '{"cached":null,"ignore_cache":false}'), +(43731, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:01.994+00', '{"cached":null,"ignore_cache":false}'), +(43732, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:02.168+00', '{"cached":null,"ignore_cache":false}'), +(43733, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:02.234+00', '{"cached":null,"ignore_cache":false}'), +(43734, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:02.288+00', '{"cached":null,"ignore_cache":false}'), +(43735, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:02.453+00', '{"cached":null,"ignore_cache":false}'), +(43736, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:02.496+00', '{"cached":null,"ignore_cache":false}'), +(43737, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.624+00', '{"cached":null,"ignore_cache":false}'), +(43738, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:04.99+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43739, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.086+00', '{"cached":null,"ignore_cache":false}'), +(43740, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.252+00', '{"cached":null,"ignore_cache":false}'), +(43741, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.322+00', '{"cached":null,"ignore_cache":false}'), +(43742, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.351+00', '{"cached":null,"ignore_cache":false}'), +(43743, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.413+00', '{"cached":null,"ignore_cache":false}'), +(43744, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.491+00', '{"cached":null,"ignore_cache":false}'), +(43745, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.522+00', '{"cached":null,"ignore_cache":false}'), +(43746, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:05.773+00', '{"cached":null,"ignore_cache":false}'), +(43747, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.182+00', '{"cached":null,"ignore_cache":false}'), +(43748, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.238+00', '{"cached":null,"ignore_cache":false}'), +(43749, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.282+00', '{"cached":null,"ignore_cache":false}'), +(43750, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.323+00', '{"cached":null,"ignore_cache":false}'), +(43751, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.349+00', '{"cached":null,"ignore_cache":false}'), +(43752, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.375+00', '{"cached":null,"ignore_cache":false}'), +(43753, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.44+00', '{"cached":null,"ignore_cache":false}'), +(43754, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.477+00', '{"cached":null,"ignore_cache":false}'), +(43755, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.8+00', '{"cached":null,"ignore_cache":false}'), +(43756, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:15.849+00', '{"cached":null,"ignore_cache":false}'), +(43757, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.601+00', '{"cached":null,"ignore_cache":false}'), +(43758, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.653+00', '{"cached":null,"ignore_cache":false}'), +(43759, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.725+00', '{"cached":null,"ignore_cache":false}'), +(43760, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.733+00', '{"cached":null,"ignore_cache":false}'), +(43761, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.89+00', '{"cached":null,"ignore_cache":false}'), +(43762, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.908+00', '{"cached":null,"ignore_cache":false}'), +(43763, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.962+00', '{"cached":null,"ignore_cache":false}'), +(43764, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:27.979+00', '{"cached":null,"ignore_cache":false}'), +(43765, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:28.289+00', '{"cached":null,"ignore_cache":false}'), +(43766, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 10:27:28.296+00', '{"cached":null,"ignore_cache":false}'), +(43767, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:52.761+00', '{"cached":null,"ignore_cache":null}'), +(43768, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.399+00', '{"cached":null,"ignore_cache":false}'), +(43769, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.492+00', '{"cached":null,"ignore_cache":false}'), +(43770, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.568+00', '{"cached":null,"ignore_cache":false}'), +(43771, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.582+00', '{"cached":null,"ignore_cache":false}'), +(43772, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.603+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43773, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:28:54.609+00', '{"cached":null,"ignore_cache":false}'), +(43774, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:56.006+00', '{"cached":null,"ignore_cache":false}'), +(43775, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:56.039+00', '{"cached":null,"ignore_cache":false}'), +(43776, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:56.043+00', '{"cached":null,"ignore_cache":false}'), +(43777, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:56.072+00', '{"cached":null,"ignore_cache":false}'), +(43778, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:56.089+00', '{"cached":null,"ignore_cache":false}'), +(43779, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 10:29:56.121+00', '{"cached":null,"ignore_cache":false}'), +(43780, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:47.242+00', '{"cached":null,"ignore_cache":false}'), +(43781, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:47.357+00', '{"cached":null,"ignore_cache":false}'), +(43782, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:47.461+00', '{"cached":null,"ignore_cache":false}'), +(43783, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:47.852+00', '{"cached":null,"ignore_cache":false}'), +(43784, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:48.082+00', '{"cached":null,"ignore_cache":false}'), +(43785, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:48.271+00', '{"cached":null,"ignore_cache":false}'), +(43786, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:48.28+00', '{"cached":null,"ignore_cache":false}'), +(43787, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:48.326+00', '{"cached":null,"ignore_cache":false}'), +(43788, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:48.428+00', '{"cached":null,"ignore_cache":false}'), +(43789, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:51.387+00', '{"cached":null,"ignore_cache":false}'), +(43790, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:51.566+00', '{"cached":null,"ignore_cache":false}'), +(43791, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:51.629+00', '{"cached":null,"ignore_cache":false}'), +(43792, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:51.913+00', '{"cached":null,"ignore_cache":false}'), +(43793, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:51.927+00', '{"cached":null,"ignore_cache":false}'), +(43794, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:51.963+00', '{"cached":null,"ignore_cache":false}'), +(43795, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.258+00', '{"cached":null,"ignore_cache":false}'), +(43796, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.336+00', '{"cached":null,"ignore_cache":false}'), +(43797, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.347+00', '{"cached":null,"ignore_cache":false}'), +(43798, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.359+00', '{"cached":null,"ignore_cache":false}'), +(43799, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.41+00', '{"cached":null,"ignore_cache":false}'), +(43800, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.411+00', '{"cached":null,"ignore_cache":false}'), +(43801, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.412+00', '{"cached":null,"ignore_cache":false}'), +(43802, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.425+00', '{"cached":null,"ignore_cache":false}'), +(43803, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.426+00', '{"cached":null,"ignore_cache":false}'), +(43804, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.427+00', '{"cached":null,"ignore_cache":false}'), +(43805, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.451+00', '{"cached":null,"ignore_cache":false}'), +(43806, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.7+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43807, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:52.715+00', '{"cached":null,"ignore_cache":false}'), +(43808, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:55.556+00', '{"cached":null,"ignore_cache":false}'), +(43809, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:55.7+00', '{"cached":null,"ignore_cache":false}'), +(43810, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:55.734+00', '{"cached":null,"ignore_cache":false}'), +(43811, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 12:05:55.766+00', '{"cached":null,"ignore_cache":false}'), +(43812, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:41.937+00', '{"cached":null,"ignore_cache":false}'), +(43813, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:42.988+00', '{"cached":null,"ignore_cache":false}'), +(43814, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.234+00', '{"cached":null,"ignore_cache":false}'), +(43815, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.266+00', '{"cached":null,"ignore_cache":false}'), +(43816, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.407+00', '{"cached":null,"ignore_cache":false}'), +(43817, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.564+00', '{"cached":null,"ignore_cache":false}'), +(43818, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.573+00', '{"cached":null,"ignore_cache":false}'), +(43819, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.626+00', '{"cached":null,"ignore_cache":false}'), +(43820, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.663+00', '{"cached":null,"ignore_cache":false}'), +(43821, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.673+00', '{"cached":null,"ignore_cache":false}'), +(43822, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.713+00', '{"cached":null,"ignore_cache":false}'), +(43823, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.721+00', '{"cached":null,"ignore_cache":false}'), +(43824, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.732+00', '{"cached":null,"ignore_cache":false}'), +(43825, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:43.748+00', '{"cached":null,"ignore_cache":false}'), +(43826, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:44.472+00', '{"cached":null,"ignore_cache":false}'), +(43827, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 12:10:44.481+00', '{"cached":null,"ignore_cache":false}'), +(43828, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:43.865+00', '{"cached":null,"ignore_cache":false}'), +(43829, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:44.994+00', '{"cached":null,"ignore_cache":false}'), +(43830, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:47.866+00', '{"cached":null,"ignore_cache":false}'), +(43831, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:47.879+00', '{"cached":null,"ignore_cache":false}'), +(43832, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:49.055+00', '{"cached":null,"ignore_cache":false}'), +(43833, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:49.255+00', '{"cached":null,"ignore_cache":false}'), +(43834, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:49.404+00', '{"cached":null,"ignore_cache":false}'), +(43835, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:49.424+00', '{"cached":null,"ignore_cache":false}'), +(43836, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:49.628+00', '{"cached":null,"ignore_cache":false}'), +(43837, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:49.86+00', '{"cached":null,"ignore_cache":false}'), +(43838, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:50.358+00', '{"cached":null,"ignore_cache":false}'), +(43839, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:50.393+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43840, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:50.538+00', '{"cached":null,"ignore_cache":false}'), +(43841, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:50.627+00', '{"cached":null,"ignore_cache":false}'), +(43842, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:50.886+00', '{"cached":null,"ignore_cache":false}'), +(43843, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.286+00', '{"cached":null,"ignore_cache":false}'), +(43844, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.301+00', '{"cached":null,"ignore_cache":false}'), +(43845, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.32+00', '{"cached":null,"ignore_cache":false}'), +(43846, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.432+00', '{"cached":null,"ignore_cache":false}'), +(43847, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.445+00', '{"cached":null,"ignore_cache":false}'), +(43848, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.458+00', '{"cached":null,"ignore_cache":false}'), +(43849, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.475+00', '{"cached":null,"ignore_cache":false}'), +(43850, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.485+00', '{"cached":null,"ignore_cache":false}'), +(43851, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.496+00', '{"cached":null,"ignore_cache":false}'), +(43852, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.506+00', '{"cached":null,"ignore_cache":false}'), +(43853, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.517+00', '{"cached":null,"ignore_cache":false}'), +(43854, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.525+00', '{"cached":null,"ignore_cache":false}'), +(43855, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:51.542+00', '{"cached":null,"ignore_cache":false}'), +(43856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:53.326+00', '{"cached":null,"ignore_cache":false}'), +(43857, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:53.683+00', '{"cached":null,"ignore_cache":false}'), +(43858, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:53.688+00', '{"cached":null,"ignore_cache":false}'), +(43859, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:13:53.755+00', '{"cached":null,"ignore_cache":false}'), +(43860, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:41.676+00', '{"cached":null,"ignore_cache":false}'), +(43861, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:43.821+00', '{"cached":null,"ignore_cache":false}'), +(43862, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:47.623+00', '{"cached":null,"ignore_cache":false}'), +(43863, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:47.949+00', '{"cached":null,"ignore_cache":false}'), +(43864, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:48.711+00', '{"cached":null,"ignore_cache":false}'), +(43865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:48.771+00', '{"cached":null,"ignore_cache":false}'), +(43866, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:48.789+00', '{"cached":null,"ignore_cache":false}'), +(43867, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:48.962+00', '{"cached":null,"ignore_cache":false}'), +(43868, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:48.981+00', '{"cached":null,"ignore_cache":false}'), +(43869, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:49.04+00', '{"cached":null,"ignore_cache":false}'), +(43870, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:49.772+00', '{"cached":null,"ignore_cache":false}'), +(43871, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:49.838+00', '{"cached":null,"ignore_cache":false}'), +(43872, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:50.184+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43873, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:50.248+00', '{"cached":null,"ignore_cache":false}'), +(43874, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:50.995+00', '{"cached":null,"ignore_cache":false}'), +(43875, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:51.943+00', '{"cached":null,"ignore_cache":false}'), +(43876, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.132+00', '{"cached":null,"ignore_cache":false}'), +(43877, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.408+00', '{"cached":null,"ignore_cache":false}'), +(43878, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.477+00', '{"cached":null,"ignore_cache":false}'), +(43879, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.643+00', '{"cached":null,"ignore_cache":false}'), +(43880, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.656+00', '{"cached":null,"ignore_cache":false}'), +(43881, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.696+00', '{"cached":null,"ignore_cache":false}'), +(43882, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.697+00', '{"cached":null,"ignore_cache":false}'), +(43883, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.722+00', '{"cached":null,"ignore_cache":false}'), +(43884, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.731+00', '{"cached":null,"ignore_cache":false}'), +(43885, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.732+00', '{"cached":null,"ignore_cache":false}'), +(43886, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.733+00', '{"cached":null,"ignore_cache":false}'), +(43887, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:52.75+00', '{"cached":null,"ignore_cache":false}'), +(43888, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:55.535+00', '{"cached":null,"ignore_cache":false}'), +(43889, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:55.716+00', '{"cached":null,"ignore_cache":false}'), +(43890, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:55.721+00', '{"cached":null,"ignore_cache":false}'), +(43891, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:14:55.799+00', '{"cached":null,"ignore_cache":false}'), +(43892, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.042+00', '{"cached":null,"ignore_cache":false}'), +(43893, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.473+00', '{"cached":null,"ignore_cache":false}'), +(43894, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.489+00', '{"cached":null,"ignore_cache":false}'), +(43895, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.509+00', '{"cached":null,"ignore_cache":false}'), +(43896, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.551+00', '{"cached":null,"ignore_cache":false}'), +(43897, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.668+00', '{"cached":null,"ignore_cache":false}'), +(43898, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.804+00', '{"cached":null,"ignore_cache":false}'), +(43899, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.831+00', '{"cached":null,"ignore_cache":false}'), +(43900, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.85+00', '{"cached":null,"ignore_cache":false}'), +(43901, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.904+00', '{"cached":null,"ignore_cache":false}'), +(43902, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.912+00', '{"cached":null,"ignore_cache":false}'), +(43903, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.942+00', '{"cached":null,"ignore_cache":false}'), +(43904, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.951+00', '{"cached":null,"ignore_cache":false}'), +(43905, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:46.999+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43906, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:47.434+00', '{"cached":null,"ignore_cache":false}'), +(43907, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:19:47.483+00', '{"cached":null,"ignore_cache":false}'), +(43908, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.076+00', '{"cached":null,"ignore_cache":false}'), +(43909, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.127+00', '{"cached":null,"ignore_cache":false}'), +(43910, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.491+00', '{"cached":null,"ignore_cache":false}'), +(43911, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.611+00', '{"cached":null,"ignore_cache":false}'), +(43912, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.689+00', '{"cached":null,"ignore_cache":false}'), +(43913, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.745+00', '{"cached":null,"ignore_cache":false}'), +(43914, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.756+00', '{"cached":null,"ignore_cache":false}'), +(43915, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.781+00', '{"cached":null,"ignore_cache":false}'), +(43916, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.908+00', '{"cached":null,"ignore_cache":false}'), +(43917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.96+00', '{"cached":null,"ignore_cache":false}'), +(43918, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:06.971+00', '{"cached":null,"ignore_cache":false}'), +(43919, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:07.02+00', '{"cached":null,"ignore_cache":false}'), +(43920, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:07.04+00', '{"cached":null,"ignore_cache":false}'), +(43921, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:07.067+00', '{"cached":null,"ignore_cache":false}'), +(43922, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:07.724+00', '{"cached":null,"ignore_cache":false}'), +(43923, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:25:07.742+00', '{"cached":null,"ignore_cache":false}'), +(43924, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:01.939+00', '{"cached":null,"ignore_cache":false}'), +(43925, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.52+00', '{"cached":null,"ignore_cache":false}'), +(43926, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:02.844+00', '{"cached":null,"ignore_cache":false}'), +(43927, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.181+00', '{"cached":null,"ignore_cache":false}'), +(43928, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.708+00', '{"cached":null,"ignore_cache":false}'), +(43929, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.752+00', '{"cached":null,"ignore_cache":false}'), +(43930, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.753+00', '{"cached":null,"ignore_cache":false}'), +(43931, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.754+00', '{"cached":null,"ignore_cache":false}'), +(43932, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.755+00', '{"cached":null,"ignore_cache":false}'), +(43933, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:03.786+00', '{"cached":null,"ignore_cache":false}'), +(43934, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.151+00', '{"cached":null,"ignore_cache":false}'), +(43935, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.24+00', '{"cached":null,"ignore_cache":false}'), +(43936, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.248+00', '{"cached":null,"ignore_cache":false}'), +(43937, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.288+00', '{"cached":null,"ignore_cache":false}'), +(43938, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:04.429+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43939, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.163+00', '{"cached":null,"ignore_cache":false}'), +(43940, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.164+00', '{"cached":null,"ignore_cache":false}'), +(43941, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.185+00', '{"cached":null,"ignore_cache":false}'), +(43942, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.186+00', '{"cached":null,"ignore_cache":false}'), +(43943, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.699+00', '{"cached":null,"ignore_cache":false}'), +(43944, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.74+00', '{"cached":null,"ignore_cache":false}'), +(43945, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.951+00', '{"cached":null,"ignore_cache":false}'), +(43946, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:05.956+00', '{"cached":null,"ignore_cache":false}'), +(43947, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.158+00', '{"cached":null,"ignore_cache":false}'), +(43948, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.168+00', '{"cached":null,"ignore_cache":false}'), +(43949, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.229+00', '{"cached":null,"ignore_cache":false}'), +(43950, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.247+00', '{"cached":null,"ignore_cache":false}'), +(43951, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.258+00', '{"cached":null,"ignore_cache":false}'), +(43952, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.285+00', '{"cached":null,"ignore_cache":false}'), +(43953, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.348+00', '{"cached":null,"ignore_cache":false}'), +(43954, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.677+00', '{"cached":null,"ignore_cache":false}'), +(43955, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:06.697+00', '{"cached":null,"ignore_cache":false}'), +(43956, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:41.297+00', '{"cached":null,"ignore_cache":false}'), +(43957, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:41.324+00', '{"cached":null,"ignore_cache":false}'), +(43958, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:45.235+00', '{"cached":null,"ignore_cache":false}'), +(43959, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:45.318+00', '{"cached":null,"ignore_cache":false}'), +(43960, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:45.893+00', '{"cached":null,"ignore_cache":false}'), +(43961, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:46.188+00', '{"cached":null,"ignore_cache":false}'), +(43962, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:46.501+00', '{"cached":null,"ignore_cache":false}'), +(43963, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:46.57+00', '{"cached":null,"ignore_cache":false}'), +(43964, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:46.818+00', '{"cached":null,"ignore_cache":false}'), +(43965, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:46.829+00', '{"cached":null,"ignore_cache":false}'), +(43966, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.025+00', '{"cached":null,"ignore_cache":false}'), +(43967, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.042+00', '{"cached":null,"ignore_cache":false}'), +(43968, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.12+00', '{"cached":null,"ignore_cache":false}'), +(43969, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.326+00', '{"cached":null,"ignore_cache":false}'), +(43970, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.331+00', '{"cached":null,"ignore_cache":false}'), +(43971, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.353+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(43972, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.561+00', '{"cached":null,"ignore_cache":false}'), +(43973, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.617+00', '{"cached":null,"ignore_cache":false}'), +(43974, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.718+00', '{"cached":null,"ignore_cache":false}'), +(43975, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.729+00', '{"cached":null,"ignore_cache":false}'), +(43976, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:47.958+00', '{"cached":null,"ignore_cache":false}'), +(43977, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:48.066+00', '{"cached":null,"ignore_cache":false}'), +(43978, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:48.073+00', '{"cached":null,"ignore_cache":false}'), +(43979, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:48.102+00', '{"cached":null,"ignore_cache":false}'), +(43980, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:48.118+00', '{"cached":null,"ignore_cache":false}'), +(43981, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:48.177+00', '{"cached":null,"ignore_cache":false}'), +(43982, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:48.302+00', '{"cached":null,"ignore_cache":false}'), +(43983, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:48.372+00', '{"cached":null,"ignore_cache":false}'), +(43984, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:49.988+00', '{"cached":null,"ignore_cache":false}'), +(43985, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:50.354+00', '{"cached":null,"ignore_cache":false}'), +(43986, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:50.497+00', '{"cached":null,"ignore_cache":false}'), +(43987, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:53:50.53+00', '{"cached":null,"ignore_cache":false}'), +(43988, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:40.725+00', '{"cached":null,"ignore_cache":false}'), +(43989, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:41.836+00', '{"cached":null,"ignore_cache":false}'), +(43990, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.192+00', '{"cached":null,"ignore_cache":false}'), +(43991, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.238+00', '{"cached":null,"ignore_cache":false}'), +(43992, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.322+00', '{"cached":null,"ignore_cache":false}'), +(43993, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.425+00', '{"cached":null,"ignore_cache":false}'), +(43994, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.481+00', '{"cached":null,"ignore_cache":false}'), +(43995, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.518+00', '{"cached":null,"ignore_cache":false}'), +(43996, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.563+00', '{"cached":null,"ignore_cache":false}'), +(43997, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.575+00', '{"cached":null,"ignore_cache":false}'), +(43998, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.579+00', '{"cached":null,"ignore_cache":false}'), +(43999, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.587+00', '{"cached":null,"ignore_cache":false}'), +(44000, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.678+00', '{"cached":null,"ignore_cache":false}'), +(44001, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:42.726+00', '{"cached":null,"ignore_cache":false}'), +(44002, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:43.339+00', '{"cached":null,"ignore_cache":false}'), +(44003, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-26 14:58:43.372+00', '{"cached":null,"ignore_cache":false}'), +(44004, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:04.117+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44005, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:08.527+00', '{"cached":null,"ignore_cache":false}'), +(44006, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:08.554+00', '{"cached":null,"ignore_cache":false}'), +(44007, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:08.557+00', '{"cached":null,"ignore_cache":false}'), +(44008, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:08.593+00', '{"cached":null,"ignore_cache":false}'), +(44009, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:08.596+00', '{"cached":null,"ignore_cache":false}'), +(44010, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:08.626+00', '{"cached":null,"ignore_cache":false}'), +(44011, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:13.598+00', '{"cached":null,"ignore_cache":false}'), +(44012, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:13.612+00', '{"cached":null,"ignore_cache":false}'), +(44013, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:13.691+00', '{"cached":null,"ignore_cache":false}'), +(44014, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:13.71+00', '{"cached":null,"ignore_cache":false}'), +(44015, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:13.787+00', '{"cached":null,"ignore_cache":false}'), +(44016, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-27 06:24:13.804+00', '{"cached":null,"ignore_cache":false}'), +(44017, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-31 06:37:59.506+00', '{"cached":null,"ignore_cache":null}'), +(44018, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:08.852+00', '{"cached":null,"ignore_cache":false}'), +(44019, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:10.559+00', '{"cached":null,"ignore_cache":false}'), +(44020, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:11.256+00', '{"cached":null,"ignore_cache":false}'), +(44021, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:11.589+00', '{"cached":null,"ignore_cache":false}'), +(44022, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:11.591+00', '{"cached":null,"ignore_cache":false}'), +(44023, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:11.611+00', '{"cached":null,"ignore_cache":false}'), +(44024, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:11.91+00', '{"cached":null,"ignore_cache":false}'), +(44025, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:11.943+00', '{"cached":null,"ignore_cache":false}'), +(44026, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:18.556+00', '{"cached":null,"ignore_cache":false}'), +(44027, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:18.78+00', '{"cached":null,"ignore_cache":false}'), +(44028, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.842+00', '{"cached":null,"ignore_cache":false}'), +(44029, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:35.899+00', '{"cached":null,"ignore_cache":false}'), +(44030, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.097+00', '{"cached":null,"ignore_cache":false}'), +(44031, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.145+00', '{"cached":null,"ignore_cache":false}'), +(44032, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.234+00', '{"cached":null,"ignore_cache":false}'), +(44033, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.256+00', '{"cached":null,"ignore_cache":false}'), +(44034, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.378+00', '{"cached":null,"ignore_cache":false}'), +(44035, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.405+00', '{"cached":null,"ignore_cache":false}'), +(44036, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.591+00', '{"cached":null,"ignore_cache":false}'), +(44037, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 06:38:36.622+00', '{"cached":null,"ignore_cache":false}'), +(44038, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:27.142+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44039, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:41.702+00', '{"cached":null,"ignore_cache":false}'), +(44040, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:41.705+00', '{"cached":null,"ignore_cache":false}'), +(44041, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:41.731+00', '{"cached":null,"ignore_cache":false}'), +(44042, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:41.738+00', '{"cached":null,"ignore_cache":false}'), +(44043, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:41.797+00', '{"cached":null,"ignore_cache":false}'), +(44044, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:07:41.808+00', '{"cached":null,"ignore_cache":false}'), +(44045, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:18:47.811+00', '{"cached":null,"ignore_cache":null}'), +(44046, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:19:02.505+00', '{"cached":null,"ignore_cache":false}'), +(44047, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:41.338+00', '{"cached":null,"ignore_cache":null}'), +(44048, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:51.213+00', '{"cached":null,"ignore_cache":false}'), +(44049, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:51.295+00', '{"cached":null,"ignore_cache":false}'), +(44050, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:51.799+00', '{"cached":null,"ignore_cache":false}'), +(44051, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:51.826+00', '{"cached":null,"ignore_cache":false}'), +(44052, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:51.898+00', '{"cached":null,"ignore_cache":false}'), +(44053, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:51.91+00', '{"cached":null,"ignore_cache":false}'), +(44054, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:20.249+00', '{"cached":null,"ignore_cache":null}'), +(44055, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:30.122+00', '{"cached":null,"ignore_cache":false}'), +(44056, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:37.747+00', '{"cached":null,"ignore_cache":true}'), +(44057, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:43.014+00', '{"cached":null,"ignore_cache":true}'), +(44058, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:22:52.781+00', '{"cached":null,"ignore_cache":true}'), +(44059, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:07.347+00', '{"cached":null,"ignore_cache":null}'), +(44060, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:17.54+00', '{"cached":null,"ignore_cache":false}'), +(44061, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:17.636+00', '{"cached":null,"ignore_cache":false}'), +(44062, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:17.693+00', '{"cached":null,"ignore_cache":false}'), +(44063, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:17.781+00', '{"cached":null,"ignore_cache":false}'), +(44064, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:17.782+00', '{"cached":null,"ignore_cache":false}'), +(44065, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:17.816+00', '{"cached":null,"ignore_cache":false}'), +(44066, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:23.078+00', '{"cached":null,"ignore_cache":null}'), +(44067, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:23.909+00', '{"cached":null,"ignore_cache":false}'), +(44068, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:39.186+00', '{"cached":null,"ignore_cache":null}'), +(44069, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:45.424+00', '{"cached":null,"ignore_cache":false}'), +(44070, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:45.428+00', '{"cached":null,"ignore_cache":false}'), +(44071, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:45.432+00', '{"cached":null,"ignore_cache":false}'), +(44072, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:45.434+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44073, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:45.454+00', '{"cached":null,"ignore_cache":false}'), +(44074, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:25:46.134+00', '{"cached":null,"ignore_cache":false}'), +(44075, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:26:11.501+00', '{"cached":null,"ignore_cache":null}'), +(44076, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:26:22.271+00', '{"cached":null,"ignore_cache":null}'), +(44077, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:27:25.143+00', '{"cached":null,"ignore_cache":null}'), +(44078, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:27:34.067+00', '{"cached":null,"ignore_cache":false}'), +(44079, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:27.265+00', '{"cached":null,"ignore_cache":null}'), +(44080, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:29.738+00', '{"cached":null,"ignore_cache":null}'), +(44081, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:34.213+00', '{"cached":null,"ignore_cache":false}'), +(44082, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:34.311+00', '{"cached":null,"ignore_cache":false}'), +(44083, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:34.367+00', '{"cached":null,"ignore_cache":false}'), +(44084, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:34.381+00', '{"cached":null,"ignore_cache":false}'), +(44085, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:34.467+00', '{"cached":null,"ignore_cache":false}'), +(44086, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:34.47+00', '{"cached":null,"ignore_cache":false}'), +(44087, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:50.169+00', '{"cached":null,"ignore_cache":null}'), +(44088, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:31:51.06+00', '{"cached":null,"ignore_cache":false}'), +(44089, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:06.04+00', '{"cached":null,"ignore_cache":null}'), +(44090, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.766+00', '{"cached":null,"ignore_cache":false}'), +(44091, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.814+00', '{"cached":null,"ignore_cache":false}'), +(44092, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:07.948+00', '{"cached":null,"ignore_cache":false}'), +(44093, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:08.043+00', '{"cached":null,"ignore_cache":false}'), +(44094, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:08.074+00', '{"cached":null,"ignore_cache":false}'), +(44095, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:08.175+00', '{"cached":null,"ignore_cache":false}'), +(44096, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:27.49+00', '{"cached":null,"ignore_cache":null}'), +(44097, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:28.653+00', '{"cached":null,"ignore_cache":false}'), +(44098, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:32:31.697+00', '{"cached":null,"ignore_cache":true}'), +(44099, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:35.26+00', '{"cached":null,"ignore_cache":null}'), +(44100, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:44.416+00', '{"cached":null,"ignore_cache":false}'), +(44101, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:44.418+00', '{"cached":null,"ignore_cache":false}'), +(44102, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:44.809+00', '{"cached":null,"ignore_cache":false}'), +(44103, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:44.849+00', '{"cached":null,"ignore_cache":false}'), +(44104, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:44.914+00', '{"cached":null,"ignore_cache":false}'), +(44105, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:35:44.992+00', '{"cached":null,"ignore_cache":false}'), +(44106, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:43.593+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44107, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:52.662+00', '{"cached":null,"ignore_cache":false}'), +(44108, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:52.663+00', '{"cached":null,"ignore_cache":false}'), +(44109, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:52.919+00', '{"cached":null,"ignore_cache":false}'), +(44110, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:52.965+00', '{"cached":null,"ignore_cache":false}'), +(44111, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:53.054+00', '{"cached":null,"ignore_cache":false}'), +(44112, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 07:41:53.056+00', '{"cached":null,"ignore_cache":false}'), +(44113, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:17.339+00', '{"cached":null,"ignore_cache":false}'), +(44114, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:17.83+00', '{"cached":null,"ignore_cache":false}'), +(44115, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:23.679+00', '{"cached":null,"ignore_cache":false}'), +(44116, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:23.742+00', '{"cached":null,"ignore_cache":false}'), +(44117, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.088+00', '{"cached":null,"ignore_cache":false}'), +(44118, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.482+00', '{"cached":null,"ignore_cache":false}'), +(44119, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.484+00', '{"cached":null,"ignore_cache":false}'), +(44120, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.488+00', '{"cached":null,"ignore_cache":false}'), +(44121, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.498+00', '{"cached":null,"ignore_cache":false}'), +(44122, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.501+00', '{"cached":null,"ignore_cache":false}'), +(44123, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.784+00', '{"cached":null,"ignore_cache":false}'), +(44124, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:25.952+00', '{"cached":null,"ignore_cache":false}'), +(44125, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.019+00', '{"cached":null,"ignore_cache":false}'), +(44126, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.498+00', '{"cached":null,"ignore_cache":false}'), +(44127, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.533+00', '{"cached":null,"ignore_cache":false}'), +(44128, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.585+00', '{"cached":null,"ignore_cache":false}'), +(44129, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.795+00', '{"cached":null,"ignore_cache":false}'), +(44130, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.815+00', '{"cached":null,"ignore_cache":false}'), +(44131, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.851+00', '{"cached":null,"ignore_cache":false}'), +(44132, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.856+00', '{"cached":null,"ignore_cache":false}'), +(44133, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.857+00', '{"cached":null,"ignore_cache":false}'), +(44134, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.858+00', '{"cached":null,"ignore_cache":false}'), +(44135, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.859+00', '{"cached":null,"ignore_cache":false}'), +(44136, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.86+00', '{"cached":null,"ignore_cache":false}'), +(44137, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.861+00', '{"cached":null,"ignore_cache":false}'), +(44138, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:26.979+00', '{"cached":null,"ignore_cache":false}'), +(44139, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:27.262+00', '{"cached":null,"ignore_cache":false}'), +(44140, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:27.741+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44141, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:38.29+00', '{"cached":null,"ignore_cache":false}'), +(44142, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:38.332+00', '{"cached":null,"ignore_cache":false}'), +(44143, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:38.425+00', '{"cached":null,"ignore_cache":false}'), +(44144, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 08:13:38.562+00', '{"cached":null,"ignore_cache":false}'), +(44145, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:17.581+00', '{"cached":null,"ignore_cache":null}'), +(44146, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:33.413+00', '{"cached":null,"ignore_cache":false}'), +(44147, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:33.417+00', '{"cached":null,"ignore_cache":false}'), +(44148, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:33.42+00', '{"cached":null,"ignore_cache":false}'), +(44149, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:33.421+00', '{"cached":null,"ignore_cache":false}'), +(44150, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:33.424+00', '{"cached":null,"ignore_cache":false}'), +(44151, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-01-31 09:04:33.428+00', '{"cached":null,"ignore_cache":false}'), +(44152, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:07.026+00', '{"cached":null,"ignore_cache":null}'), +(44153, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:09.195+00', '{"cached":null,"ignore_cache":false}'), +(44154, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:09.333+00', '{"cached":null,"ignore_cache":false}'), +(44155, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:10.107+00', '{"cached":null,"ignore_cache":false}'), +(44156, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:10.272+00', '{"cached":null,"ignore_cache":false}'), +(44157, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:11.255+00', '{"cached":null,"ignore_cache":false}'), +(44158, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:11.584+00', '{"cached":null,"ignore_cache":false}'), +(44159, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:11.756+00', '{"cached":null,"ignore_cache":false}'), +(44160, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:12.169+00', '{"cached":null,"ignore_cache":false}'), +(44161, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:14.555+00', '{"cached":null,"ignore_cache":false}'), +(44162, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 09:05:14.625+00', '{"cached":null,"ignore_cache":false}'), +(44163, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 10:08:57.024+00', '{"cached":null,"ignore_cache":null}'), +(44164, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 10:09:16.782+00', '{"cached":null,"ignore_cache":null}'), +(44165, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 10:09:50.059+00', '{"cached":null,"ignore_cache":null}'), +(44166, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 10:09:58.999+00', '{"cached":null,"ignore_cache":null}'), +(44167, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:03.781+00', '{"cached":null,"ignore_cache":null}'), +(44168, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:16.85+00', '{"cached":null,"ignore_cache":false}'), +(44169, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:20.367+00', '{"cached":null,"ignore_cache":false}'), +(44170, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:20.547+00', '{"cached":null,"ignore_cache":false}'), +(44171, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.045+00', '{"cached":null,"ignore_cache":false}'), +(44172, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.272+00', '{"cached":null,"ignore_cache":false}'), +(44173, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.305+00', '{"cached":null,"ignore_cache":false}'), +(44174, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.93+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44175, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:24.984+00', '{"cached":null,"ignore_cache":false}'), +(44176, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:26.234+00', '{"cached":null,"ignore_cache":false}'), +(44177, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:26.833+00', '{"cached":null,"ignore_cache":false}'), +(44178, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:27.521+00', '{"cached":null,"ignore_cache":false}'), +(44179, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:27.537+00', '{"cached":null,"ignore_cache":false}'), +(44180, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:27.662+00', '{"cached":null,"ignore_cache":false}'), +(44181, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:27.781+00', '{"cached":null,"ignore_cache":false}'), +(44182, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:27.832+00', '{"cached":null,"ignore_cache":false}'), +(44183, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:27.926+00', '{"cached":null,"ignore_cache":false}'), +(44184, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:27.984+00', '{"cached":null,"ignore_cache":false}'), +(44185, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.114+00', '{"cached":null,"ignore_cache":false}'), +(44186, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.152+00', '{"cached":null,"ignore_cache":false}'), +(44187, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.183+00', '{"cached":null,"ignore_cache":false}'), +(44188, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.194+00', '{"cached":null,"ignore_cache":false}'), +(44189, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.249+00', '{"cached":null,"ignore_cache":false}'), +(44190, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.468+00', '{"cached":null,"ignore_cache":false}'), +(44191, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.556+00', '{"cached":null,"ignore_cache":false}'), +(44192, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.581+00', '{"cached":null,"ignore_cache":false}'), +(44193, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:28.674+00', '{"cached":null,"ignore_cache":false}'), +(44194, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:29.9+00', '{"cached":null,"ignore_cache":false}'), +(44195, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:30.277+00', '{"cached":null,"ignore_cache":false}'), +(44196, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-01-31 10:38:30.582+00', '{"cached":null,"ignore_cache":false}'), +(44197, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 10:43:37.863+00', '{"cached":null,"ignore_cache":null}'), +(44198, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 10:43:53.939+00', '{"cached":null,"ignore_cache":false}'), +(44199, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 12:45:31.867+00', '{"cached":null,"ignore_cache":null}'), +(44200, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 12:45:50.31+00', '{"cached":null,"ignore_cache":false}'), +(44201, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 12:46:23.181+00', '{"cached":null,"ignore_cache":true}'), +(44202, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-01-31 12:46:33.916+00', '{"cached":null,"ignore_cache":true}'), +(44203, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:18.782+00', '{"cached":null,"ignore_cache":null}'), +(44204, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:24.843+00', '{"cached":null,"ignore_cache":null}'), +(44205, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:25.92+00', '{"cached":null,"ignore_cache":null}'), +(44206, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:10:54.107+00', '{"cached":null,"ignore_cache":null}'), +(44207, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:15.817+00', '{"cached":null,"ignore_cache":null}'), +(44208, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:30.192+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44209, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:36.448+00', '{"cached":null,"ignore_cache":null}'), +(44210, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:41.531+00', '{"cached":null,"ignore_cache":null}'), +(44211, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:11:48.244+00', '{"cached":null,"ignore_cache":null}'), +(44212, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:38.256+00', '{"cached":null,"ignore_cache":null}'), +(44213, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:47.072+00', '{"cached":null,"ignore_cache":null}'), +(44214, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:51.845+00', '{"cached":null,"ignore_cache":null}'), +(44215, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-01-31 13:12:56.371+00', '{"cached":null,"ignore_cache":null}'), +(44216, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-01 05:56:19.527+00', '{"cached":null,"ignore_cache":null}'), +(44217, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:45.046+00', '{"cached":null,"ignore_cache":null}'), +(44218, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:55.252+00', '{"cached":null,"ignore_cache":false}'), +(44219, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:55.256+00', '{"cached":null,"ignore_cache":false}'), +(44220, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:55.28+00', '{"cached":null,"ignore_cache":false}'), +(44221, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:55.295+00', '{"cached":null,"ignore_cache":false}'), +(44222, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:55.298+00', '{"cached":null,"ignore_cache":false}'), +(44223, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 06:17:55.421+00', '{"cached":null,"ignore_cache":false}'), +(44224, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:35.85+00', '{"cached":null,"ignore_cache":false}'), +(44225, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:35.863+00', '{"cached":null,"ignore_cache":false}'), +(44226, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:36.974+00', '{"cached":null,"ignore_cache":false}'), +(44227, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:37.024+00', '{"cached":null,"ignore_cache":false}'), +(44228, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:37.116+00', '{"cached":null,"ignore_cache":false}'), +(44229, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:37.139+00', '{"cached":null,"ignore_cache":false}'), +(44230, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.796+00', '{"cached":null,"ignore_cache":false}'), +(44231, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.826+00', '{"cached":null,"ignore_cache":false}'), +(44232, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.957+00', '{"cached":null,"ignore_cache":false}'), +(44233, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.971+00', '{"cached":null,"ignore_cache":false}'), +(44234, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:45.99+00', '{"cached":null,"ignore_cache":false}'), +(44235, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:46.061+00', '{"cached":null,"ignore_cache":false}'), +(44236, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.957+00', '{"cached":null,"ignore_cache":false}'), +(44237, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 06:22:59.958+00', '{"cached":null,"ignore_cache":false}'), +(44238, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 06:23:00.061+00', '{"cached":null,"ignore_cache":false}'), +(44239, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 06:23:00.085+00', '{"cached":null,"ignore_cache":false}'), +(44240, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 06:23:00.134+00', '{"cached":null,"ignore_cache":false}'), +(44241, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 06:23:00.182+00', '{"cached":null,"ignore_cache":false}'), +(44242, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:01.486+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44243, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:07.397+00', '{"cached":null,"ignore_cache":false}'), +(44244, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:08.44+00', '{"cached":null,"ignore_cache":false}'), +(44245, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:08.542+00', '{"cached":null,"ignore_cache":false}'), +(44246, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:08.779+00', '{"cached":null,"ignore_cache":false}'), +(44247, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:08.884+00', '{"cached":null,"ignore_cache":false}'), +(44248, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:08.943+00', '{"cached":null,"ignore_cache":false}'), +(44249, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:09.033+00', '{"cached":null,"ignore_cache":false}'), +(44250, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:09.125+00', '{"cached":null,"ignore_cache":false}'), +(44251, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:10.489+00', '{"cached":null,"ignore_cache":false}'), +(44252, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 06:37:10.515+00', '{"cached":null,"ignore_cache":false}'), +(44253, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:05.834+00', '{"cached":null,"ignore_cache":null}'), +(44254, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:10.921+00', '{"cached":null,"ignore_cache":false}'), +(44255, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:13.249+00', '{"cached":null,"ignore_cache":false}'), +(44256, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:13.708+00', '{"cached":null,"ignore_cache":false}'), +(44257, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:13.815+00', '{"cached":null,"ignore_cache":false}'), +(44258, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:13.889+00', '{"cached":null,"ignore_cache":false}'), +(44259, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:13.931+00', '{"cached":null,"ignore_cache":false}'), +(44260, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:13.97+00', '{"cached":null,"ignore_cache":false}'), +(44261, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:14.086+00', '{"cached":null,"ignore_cache":false}'), +(44262, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:15.631+00', '{"cached":null,"ignore_cache":false}'), +(44263, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:15.659+00', '{"cached":null,"ignore_cache":false}'), +(44264, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:29.153+00', '{"cached":null,"ignore_cache":null}'), +(44265, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:30.808+00', '{"cached":null,"ignore_cache":false}'), +(44266, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:30.812+00', '{"cached":null,"ignore_cache":false}'), +(44267, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:30.876+00', '{"cached":null,"ignore_cache":false}'), +(44268, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:30.921+00', '{"cached":null,"ignore_cache":false}'), +(44269, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:31.012+00', '{"cached":null,"ignore_cache":false}'), +(44270, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 06:40:31.067+00', '{"cached":null,"ignore_cache":false}'), +(44271, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:21.794+00', '{"cached":null,"ignore_cache":null}'), +(44272, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:26.972+00', '{"cached":null,"ignore_cache":false}'), +(44273, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:26.977+00', '{"cached":null,"ignore_cache":false}'), +(44274, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:27.015+00', '{"cached":null,"ignore_cache":false}'), +(44275, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:27.034+00', '{"cached":null,"ignore_cache":false}'), +(44276, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:27.04+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44277, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 07:11:27.059+00', '{"cached":null,"ignore_cache":false}'), +(44278, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:47.418+00', '{"cached":null,"ignore_cache":null}'), +(44279, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:53.667+00', '{"cached":null,"ignore_cache":false}'), +(44280, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:54.086+00', '{"cached":null,"ignore_cache":false}'), +(44281, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:54.329+00', '{"cached":null,"ignore_cache":false}'), +(44282, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:54.781+00', '{"cached":null,"ignore_cache":false}'), +(44283, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:54.828+00', '{"cached":null,"ignore_cache":false}'), +(44284, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:54.835+00', '{"cached":null,"ignore_cache":false}'), +(44285, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.011+00', '{"cached":null,"ignore_cache":false}'), +(44286, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.19+00', '{"cached":null,"ignore_cache":false}'), +(44287, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.367+00', '{"cached":null,"ignore_cache":false}'), +(44288, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.526+00', '{"cached":null,"ignore_cache":false}'), +(44289, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.651+00', '{"cached":null,"ignore_cache":false}'), +(44290, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.699+00', '{"cached":null,"ignore_cache":false}'), +(44291, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.764+00', '{"cached":null,"ignore_cache":false}'), +(44292, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.82+00', '{"cached":null,"ignore_cache":false}'), +(44293, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.946+00', '{"cached":null,"ignore_cache":false}'), +(44294, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.964+00', '{"cached":null,"ignore_cache":false}'), +(44295, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:55.984+00', '{"cached":null,"ignore_cache":false}'), +(44296, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:56.001+00', '{"cached":null,"ignore_cache":false}'), +(44297, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:56.019+00', '{"cached":null,"ignore_cache":false}'), +(44298, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:57.619+00', '{"cached":null,"ignore_cache":false}'), +(44299, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 07:26:57.669+00', '{"cached":null,"ignore_cache":false}'), +(44300, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.169+00', '{"cached":null,"ignore_cache":false}'), +(44301, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:42.413+00', '{"cached":null,"ignore_cache":false}'), +(44302, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:43.141+00', '{"cached":null,"ignore_cache":false}'), +(44303, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:43.501+00', '{"cached":null,"ignore_cache":false}'), +(44304, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:43.559+00', '{"cached":null,"ignore_cache":false}'), +(44305, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:45.989+00', '{"cached":null,"ignore_cache":false}'), +(44306, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.014+00', '{"cached":null,"ignore_cache":false}'), +(44307, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.027+00', '{"cached":null,"ignore_cache":false}'), +(44308, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.048+00', '{"cached":null,"ignore_cache":false}'), +(44309, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.053+00', '{"cached":null,"ignore_cache":false}'), +(44310, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.066+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44311, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.07+00', '{"cached":null,"ignore_cache":false}'), +(44312, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.128+00', '{"cached":null,"ignore_cache":false}'), +(44313, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.184+00', '{"cached":null,"ignore_cache":false}'), +(44314, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:46.249+00', '{"cached":null,"ignore_cache":false}'), +(44315, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:47.543+00', '{"cached":null,"ignore_cache":false}'), +(44316, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:47.744+00', '{"cached":null,"ignore_cache":false}'), +(44317, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:47.757+00', '{"cached":null,"ignore_cache":false}'), +(44318, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 07:28:47.859+00', '{"cached":null,"ignore_cache":false}'), +(44319, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:39.004+00', '{"cached":null,"ignore_cache":false}'), +(44320, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:39.162+00', '{"cached":null,"ignore_cache":false}'), +(44321, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:41.529+00', '{"cached":null,"ignore_cache":false}'), +(44322, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:41.678+00', '{"cached":null,"ignore_cache":false}'), +(44323, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:42.431+00', '{"cached":null,"ignore_cache":false}'), +(44324, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:42.502+00', '{"cached":null,"ignore_cache":false}'), +(44325, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:43.063+00', '{"cached":null,"ignore_cache":false}'), +(44326, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:43.079+00', '{"cached":null,"ignore_cache":false}'), +(44327, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:43.117+00', '{"cached":null,"ignore_cache":false}'), +(44328, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:43.118+00', '{"cached":null,"ignore_cache":false}'), +(44329, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:43.241+00', '{"cached":null,"ignore_cache":false}'), +(44330, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:43.861+00', '{"cached":null,"ignore_cache":false}'), +(44331, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:43.927+00', '{"cached":null,"ignore_cache":false}'), +(44332, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.251+00', '{"cached":null,"ignore_cache":false}'), +(44333, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.273+00', '{"cached":null,"ignore_cache":false}'), +(44334, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.63+00', '{"cached":null,"ignore_cache":false}'), +(44335, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.767+00', '{"cached":null,"ignore_cache":false}'), +(44336, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.9+00', '{"cached":null,"ignore_cache":false}'), +(44337, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.936+00', '{"cached":null,"ignore_cache":false}'), +(44338, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.949+00', '{"cached":null,"ignore_cache":false}'), +(44339, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.994+00', '{"cached":null,"ignore_cache":false}'), +(44340, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.996+00', '{"cached":null,"ignore_cache":false}'), +(44341, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:44.997+00', '{"cached":null,"ignore_cache":false}'), +(44342, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:45.001+00', '{"cached":null,"ignore_cache":false}'), +(44343, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:45.002+00', '{"cached":null,"ignore_cache":false}'), +(44344, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:45.003+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44345, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:45.004+00', '{"cached":null,"ignore_cache":false}'), +(44346, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:45.01+00', '{"cached":null,"ignore_cache":false}'), +(44347, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:46.229+00', '{"cached":null,"ignore_cache":false}'), +(44348, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:46.353+00', '{"cached":null,"ignore_cache":false}'), +(44349, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:46.371+00', '{"cached":null,"ignore_cache":false}'), +(44350, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 21:54:46.587+00', '{"cached":null,"ignore_cache":false}'), +(44351, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:42.503+00', '{"cached":null,"ignore_cache":false}'), +(44352, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:43.441+00', '{"cached":null,"ignore_cache":false}'), +(44353, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:43.626+00', '{"cached":null,"ignore_cache":false}'), +(44354, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:43.881+00', '{"cached":null,"ignore_cache":false}'), +(44355, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:43.964+00', '{"cached":null,"ignore_cache":false}'), +(44356, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:43.993+00', '{"cached":null,"ignore_cache":false}'), +(44357, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:44.174+00', '{"cached":null,"ignore_cache":false}'), +(44358, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:44.283+00', '{"cached":null,"ignore_cache":false}'), +(44359, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:45.556+00', '{"cached":null,"ignore_cache":false}'), +(44360, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 21:59:45.621+00', '{"cached":null,"ignore_cache":false}'), +(44361, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:13.849+00', '{"cached":null,"ignore_cache":false}'), +(44362, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:13.874+00', '{"cached":null,"ignore_cache":false}'), +(44363, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:13.875+00', '{"cached":null,"ignore_cache":false}'), +(44364, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:13.876+00', '{"cached":null,"ignore_cache":false}'), +(44365, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:13.877+00', '{"cached":null,"ignore_cache":false}'), +(44366, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-01 22:05:13.879+00', '{"cached":null,"ignore_cache":false}'), +(44367, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:10.406+00', '{"cached":null,"ignore_cache":false}'), +(44368, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:10.441+00', '{"cached":null,"ignore_cache":false}'), +(44369, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:11.687+00', '{"cached":null,"ignore_cache":false}'), +(44370, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:11.885+00', '{"cached":null,"ignore_cache":false}'), +(44371, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:11.919+00', '{"cached":null,"ignore_cache":false}'), +(44372, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:11.951+00', '{"cached":null,"ignore_cache":false}'), +(44373, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:12.036+00', '{"cached":null,"ignore_cache":false}'), +(44374, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:12.124+00', '{"cached":null,"ignore_cache":false}'), +(44375, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:12.869+00', '{"cached":null,"ignore_cache":false}'), +(44376, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-01 22:07:12.924+00', '{"cached":null,"ignore_cache":false}'), +(44377, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:46.451+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44378, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:50.084+00', '{"cached":null,"ignore_cache":false}'), +(44379, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:51.301+00', '{"cached":null,"ignore_cache":false}'), +(44380, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:51.436+00', '{"cached":null,"ignore_cache":false}'), +(44381, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:51.725+00', '{"cached":null,"ignore_cache":false}'), +(44382, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:51.766+00', '{"cached":null,"ignore_cache":false}'), +(44383, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:51.773+00', '{"cached":null,"ignore_cache":false}'), +(44384, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:51.995+00', '{"cached":null,"ignore_cache":false}'), +(44385, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:52.062+00', '{"cached":null,"ignore_cache":false}'), +(44386, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:53.869+00', '{"cached":null,"ignore_cache":false}'), +(44387, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 06:24:53.871+00', '{"cached":null,"ignore_cache":false}'), +(44388, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-02-02 08:13:12.146+00', '{"cached":null,"ignore_cache":null}'), +(44389, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:03.633+00', '{"cached":null,"ignore_cache":null}'), +(44390, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:05.607+00', '{"cached":null,"ignore_cache":false}'), +(44391, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:09.065+00', '{"cached":null,"ignore_cache":false}'), +(44392, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:09.16+00', '{"cached":null,"ignore_cache":false}'), +(44393, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:09.358+00', '{"cached":null,"ignore_cache":null}'), +(44394, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:09.45+00', '{"cached":null,"ignore_cache":false}'), +(44395, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:09.717+00', '{"cached":null,"ignore_cache":false}'), +(44396, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:09.797+00', '{"cached":null,"ignore_cache":false}'), +(44397, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.366+00', '{"cached":null,"ignore_cache":false}'), +(44398, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:10.413+00', '{"cached":null,"ignore_cache":false}'), +(44399, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:12.103+00', '{"cached":null,"ignore_cache":false}'), +(44400, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:12.819+00', '{"cached":null,"ignore_cache":false}'), +(44401, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:12.914+00', '{"cached":null,"ignore_cache":false}'), +(44402, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:13.112+00', '{"cached":null,"ignore_cache":false}'), +(44403, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:13.605+00', '{"cached":null,"ignore_cache":false}'), +(44404, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:17.323+00', '{"cached":null,"ignore_cache":false}'), +(44405, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:17.628+00', '{"cached":null,"ignore_cache":false}'), +(44406, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 08:15:17.806+00', '{"cached":null,"ignore_cache":false}'), +(44407, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:54.324+00', '{"cached":null,"ignore_cache":null}'), +(44408, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:58.382+00', '{"cached":null,"ignore_cache":false}'), +(44409, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:58.387+00', '{"cached":null,"ignore_cache":false}'), +(44410, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:58.591+00', '{"cached":null,"ignore_cache":false}'), +(44411, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:58.618+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44412, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:58.726+00', '{"cached":null,"ignore_cache":false}'), +(44413, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:01:58.734+00', '{"cached":null,"ignore_cache":false}'), +(44414, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:08.346+00', '{"cached":null,"ignore_cache":false}'), +(44415, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:08.374+00', '{"cached":null,"ignore_cache":false}'), +(44416, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:08.421+00', '{"cached":null,"ignore_cache":false}'), +(44417, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:08.476+00', '{"cached":null,"ignore_cache":false}'), +(44418, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:08.534+00', '{"cached":null,"ignore_cache":false}'), +(44419, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:08.59+00', '{"cached":null,"ignore_cache":false}'), +(44420, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:11.553+00', '{"cached":null,"ignore_cache":null}'), +(44421, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:12.105+00', '{"cached":null,"ignore_cache":false}'), +(44422, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:22.382+00', '{"cached":null,"ignore_cache":false}'), +(44423, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:27.862+00', '{"cached":null,"ignore_cache":null}'), +(44424, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.774+00', '{"cached":null,"ignore_cache":false}'), +(44425, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.836+00', '{"cached":null,"ignore_cache":false}'), +(44426, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.873+00', '{"cached":null,"ignore_cache":false}'), +(44427, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.932+00', '{"cached":null,"ignore_cache":false}'), +(44428, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:29.974+00', '{"cached":null,"ignore_cache":false}'), +(44429, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:30.024+00', '{"cached":null,"ignore_cache":false}'), +(44430, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:01.213+00', '{"cached":null,"ignore_cache":null}'), +(44431, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:03.604+00', '{"cached":null,"ignore_cache":false}'), +(44432, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:03.64+00', '{"cached":null,"ignore_cache":false}'), +(44433, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:03.641+00', '{"cached":null,"ignore_cache":false}'), +(44434, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:03.649+00', '{"cached":null,"ignore_cache":false}'), +(44435, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:03.672+00', '{"cached":null,"ignore_cache":false}'), +(44436, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:03.791+00', '{"cached":null,"ignore_cache":false}'), +(44437, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:12.545+00', '{"cached":null,"ignore_cache":null}'), +(44438, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:12.922+00', '{"cached":null,"ignore_cache":null}'), +(44439, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:21.929+00', '{"cached":null,"ignore_cache":null}'), +(44440, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:24.514+00', '{"cached":null,"ignore_cache":null}'), +(44441, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:33.106+00', '{"cached":null,"ignore_cache":null}'), +(44442, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:35.07+00', '{"cached":null,"ignore_cache":false}'), +(44443, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:35.092+00', '{"cached":null,"ignore_cache":false}'), +(44444, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:35.112+00', '{"cached":null,"ignore_cache":false}'), +(44445, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:35.118+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44446, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:35.242+00', '{"cached":null,"ignore_cache":false}'), +(44447, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:35.263+00', '{"cached":null,"ignore_cache":false}'), +(44448, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:51.336+00', '{"cached":null,"ignore_cache":null}'), +(44449, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.908+00', '{"cached":null,"ignore_cache":false}'), +(44450, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:52.972+00', '{"cached":null,"ignore_cache":false}'), +(44451, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:53.055+00', '{"cached":null,"ignore_cache":false}'), +(44452, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:53.109+00', '{"cached":null,"ignore_cache":false}'), +(44453, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:53.113+00', '{"cached":null,"ignore_cache":false}'), +(44454, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:53.236+00', '{"cached":null,"ignore_cache":false}'), +(44455, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:53.052+00', '{"cached":null,"ignore_cache":null}'), +(44456, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.174+00', '{"cached":null,"ignore_cache":false}'), +(44457, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.196+00', '{"cached":null,"ignore_cache":false}'), +(44458, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.339+00', '{"cached":null,"ignore_cache":false}'), +(44459, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.39+00', '{"cached":null,"ignore_cache":false}'), +(44460, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.413+00', '{"cached":null,"ignore_cache":false}'), +(44461, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:55.461+00', '{"cached":null,"ignore_cache":false}'), +(44462, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:56.824+00', '{"cached":null,"ignore_cache":false}'), +(44463, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:56.845+00', '{"cached":null,"ignore_cache":false}'), +(44464, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:56.893+00', '{"cached":null,"ignore_cache":false}'), +(44465, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:56.921+00', '{"cached":null,"ignore_cache":false}'), +(44466, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:56.997+00', '{"cached":null,"ignore_cache":false}'), +(44467, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:04:57.008+00', '{"cached":null,"ignore_cache":false}'), +(44468, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:30.107+00', '{"cached":null,"ignore_cache":null}'), +(44469, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:34.368+00', '{"cached":null,"ignore_cache":false}'), +(44470, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:34.423+00', '{"cached":null,"ignore_cache":false}'), +(44471, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:34.582+00', '{"cached":null,"ignore_cache":false}'), +(44472, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:34.749+00', '{"cached":null,"ignore_cache":false}'), +(44473, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:34.833+00', '{"cached":null,"ignore_cache":false}'), +(44474, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:08:34.865+00', '{"cached":null,"ignore_cache":false}'), +(44475, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:05.094+00', '{"cached":null,"ignore_cache":null}'), +(44476, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:07.731+00', '{"cached":null,"ignore_cache":false}'), +(44477, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:07.74+00', '{"cached":null,"ignore_cache":false}'), +(44478, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:08.847+00', '{"cached":null,"ignore_cache":false}'), +(44479, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:09.206+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44480, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:09.32+00', '{"cached":null,"ignore_cache":false}'), +(44481, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:09.548+00', '{"cached":null,"ignore_cache":false}'), +(44482, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:10.124+00', '{"cached":null,"ignore_cache":false}'), +(44483, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:10.153+00', '{"cached":null,"ignore_cache":null}'), +(44484, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:10.195+00', '{"cached":null,"ignore_cache":false}'), +(44485, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 09:09:11.115+00', '{"cached":null,"ignore_cache":false}'), +(44486, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:48.441+00', '{"cached":null,"ignore_cache":null}'), +(44487, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:54.691+00', '{"cached":null,"ignore_cache":false}'), +(44488, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:54.709+00', '{"cached":null,"ignore_cache":false}'), +(44489, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:54.723+00', '{"cached":null,"ignore_cache":false}'), +(44490, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:54.753+00', '{"cached":null,"ignore_cache":false}'), +(44491, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:54.781+00', '{"cached":null,"ignore_cache":false}'), +(44492, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 10:03:54.855+00', '{"cached":null,"ignore_cache":false}'), +(44493, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 10:04:00.626+00', '{"cached":null,"ignore_cache":null}'), +(44494, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 10:04:01.84+00', '{"cached":null,"ignore_cache":false}'), +(44495, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:29.991+00', '{"cached":null,"ignore_cache":null}'), +(44496, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:34.963+00', '{"cached":null,"ignore_cache":false}'), +(44497, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:34.975+00', '{"cached":null,"ignore_cache":false}'), +(44498, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:35.259+00', '{"cached":null,"ignore_cache":false}'), +(44499, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:35.267+00', '{"cached":null,"ignore_cache":false}'), +(44500, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:35.301+00', '{"cached":null,"ignore_cache":false}'), +(44501, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:35.391+00', '{"cached":null,"ignore_cache":false}'), +(44502, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:44.157+00', '{"cached":null,"ignore_cache":null}'), +(44503, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 10:09:45.288+00', '{"cached":null,"ignore_cache":false}'), +(44504, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:10.203+00', '{"cached":null,"ignore_cache":false}'), +(44505, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:10.39+00', '{"cached":null,"ignore_cache":false}'), +(44506, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:17.003+00', '{"cached":null,"ignore_cache":false}'), +(44507, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:17.086+00', '{"cached":null,"ignore_cache":false}'), +(44508, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:18.13+00', '{"cached":null,"ignore_cache":false}'), +(44509, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:18.247+00', '{"cached":null,"ignore_cache":false}'), +(44510, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:18.405+00', '{"cached":null,"ignore_cache":false}'), +(44511, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:18.563+00', '{"cached":null,"ignore_cache":false}'), +(44512, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:18.564+00', '{"cached":null,"ignore_cache":false}'), +(44513, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:18.566+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44514, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:19.138+00', '{"cached":null,"ignore_cache":false}'), +(44515, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:19.505+00', '{"cached":null,"ignore_cache":false}'), +(44516, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:19.585+00', '{"cached":null,"ignore_cache":false}'), +(44517, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:19.604+00', '{"cached":null,"ignore_cache":false}'), +(44518, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.387+00', '{"cached":null,"ignore_cache":false}'), +(44519, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.406+00', '{"cached":null,"ignore_cache":false}'), +(44520, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.445+00', '{"cached":null,"ignore_cache":false}'), +(44521, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.471+00', '{"cached":null,"ignore_cache":false}'), +(44522, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.534+00', '{"cached":null,"ignore_cache":false}'), +(44523, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.585+00', '{"cached":null,"ignore_cache":false}'), +(44524, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.725+00', '{"cached":null,"ignore_cache":false}'), +(44525, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.726+00', '{"cached":null,"ignore_cache":false}'), +(44526, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.728+00', '{"cached":null,"ignore_cache":false}'), +(44527, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.729+00', '{"cached":null,"ignore_cache":false}'), +(44528, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.733+00', '{"cached":null,"ignore_cache":false}'), +(44529, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.748+00', '{"cached":null,"ignore_cache":false}'), +(44530, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.75+00', '{"cached":null,"ignore_cache":false}'), +(44531, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:21.854+00', '{"cached":null,"ignore_cache":false}'), +(44532, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:23.849+00', '{"cached":null,"ignore_cache":false}'), +(44533, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:23.995+00', '{"cached":null,"ignore_cache":false}'), +(44534, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:23.998+00', '{"cached":null,"ignore_cache":false}'), +(44535, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 12:45:23.999+00', '{"cached":null,"ignore_cache":false}'), +(44536, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 12:49:59.165+00', '{"cached":null,"ignore_cache":false}'), +(44537, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:02.982+00', '{"cached":null,"ignore_cache":false}'), +(44538, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:03.687+00', '{"cached":null,"ignore_cache":false}'), +(44539, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:03.689+00', '{"cached":null,"ignore_cache":false}'), +(44540, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:03.771+00', '{"cached":null,"ignore_cache":false}'), +(44541, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:03.867+00', '{"cached":null,"ignore_cache":false}'), +(44542, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.209+00', '{"cached":null,"ignore_cache":false}'), +(44543, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.222+00', '{"cached":null,"ignore_cache":false}'), +(44544, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.309+00', '{"cached":null,"ignore_cache":false}'), +(44545, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.312+00', '{"cached":null,"ignore_cache":false}'), +(44546, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.384+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44547, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.386+00', '{"cached":null,"ignore_cache":false}'), +(44548, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.391+00', '{"cached":null,"ignore_cache":false}'), +(44549, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:04.394+00', '{"cached":null,"ignore_cache":false}'), +(44550, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:07.072+00', '{"cached":null,"ignore_cache":false}'), +(44551, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 12:50:07.148+00', '{"cached":null,"ignore_cache":false}'), +(44552, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:00.742+00', '{"cached":null,"ignore_cache":false}'), +(44553, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:04.821+00', '{"cached":null,"ignore_cache":false}'), +(44554, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:05.511+00', '{"cached":null,"ignore_cache":false}'), +(44555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:05.572+00', '{"cached":null,"ignore_cache":false}'), +(44556, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:05.696+00', '{"cached":null,"ignore_cache":false}'), +(44557, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:05.972+00', '{"cached":null,"ignore_cache":false}'), +(44558, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.112+00', '{"cached":null,"ignore_cache":false}'), +(44559, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.172+00', '{"cached":null,"ignore_cache":false}'), +(44560, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.362+00', '{"cached":null,"ignore_cache":false}'), +(44561, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.371+00', '{"cached":null,"ignore_cache":false}'), +(44562, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.482+00', '{"cached":null,"ignore_cache":false}'), +(44563, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.485+00', '{"cached":null,"ignore_cache":false}'), +(44564, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.573+00', '{"cached":null,"ignore_cache":false}'), +(44565, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:06.801+00', '{"cached":null,"ignore_cache":false}'), +(44566, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:11.393+00', '{"cached":null,"ignore_cache":false}'), +(44567, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 12:55:11.498+00', '{"cached":null,"ignore_cache":false}'), +(44568, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:42.923+00', '{"cached":null,"ignore_cache":false}'), +(44569, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:45.251+00', '{"cached":null,"ignore_cache":false}'), +(44570, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:45.513+00', '{"cached":null,"ignore_cache":false}'), +(44571, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:45.607+00', '{"cached":null,"ignore_cache":false}'), +(44572, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:45.799+00', '{"cached":null,"ignore_cache":false}'), +(44573, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:45.929+00', '{"cached":null,"ignore_cache":false}'), +(44574, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:45.935+00', '{"cached":null,"ignore_cache":false}'), +(44575, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:46.025+00', '{"cached":null,"ignore_cache":false}'), +(44576, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:46.069+00', '{"cached":null,"ignore_cache":false}'), +(44577, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:46.119+00', '{"cached":null,"ignore_cache":false}'), +(44578, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:46.228+00', '{"cached":null,"ignore_cache":false}'), +(44579, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:46.27+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44580, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:46.367+00', '{"cached":null,"ignore_cache":false}'), +(44581, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:46.823+00', '{"cached":null,"ignore_cache":false}'), +(44582, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:49.415+00', '{"cached":null,"ignore_cache":false}'), +(44583, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 13:00:49.449+00', '{"cached":null,"ignore_cache":false}'), +(44584, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:43.659+00', '{"cached":null,"ignore_cache":false}'), +(44585, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.434+00', '{"cached":null,"ignore_cache":false}'), +(44586, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.52+00', '{"cached":null,"ignore_cache":false}'), +(44587, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.63+00', '{"cached":null,"ignore_cache":false}'), +(44588, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.705+00', '{"cached":null,"ignore_cache":false}'), +(44589, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.854+00', '{"cached":null,"ignore_cache":false}'), +(44590, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.868+00', '{"cached":null,"ignore_cache":false}'), +(44591, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.895+00', '{"cached":null,"ignore_cache":false}'), +(44592, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:45.941+00', '{"cached":null,"ignore_cache":false}'), +(44593, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:46.027+00', '{"cached":null,"ignore_cache":false}'), +(44594, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:46.129+00', '{"cached":null,"ignore_cache":false}'), +(44595, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:46.141+00', '{"cached":null,"ignore_cache":false}'), +(44596, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:46.551+00', '{"cached":null,"ignore_cache":false}'), +(44597, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:46.651+00', '{"cached":null,"ignore_cache":false}'), +(44598, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:47.271+00', '{"cached":null,"ignore_cache":false}'), +(44599, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 13:05:47.285+00', '{"cached":null,"ignore_cache":false}'), +(44600, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:38.943+00', '{"cached":null,"ignore_cache":false}'), +(44601, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:39.164+00', '{"cached":null,"ignore_cache":false}'), +(44602, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:42.814+00', '{"cached":null,"ignore_cache":false}'), +(44603, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:45.495+00', '{"cached":null,"ignore_cache":false}'), +(44604, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:45.885+00', '{"cached":null,"ignore_cache":false}'), +(44605, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:46.012+00', '{"cached":null,"ignore_cache":false}'), +(44606, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:46.046+00', '{"cached":null,"ignore_cache":false}'), +(44607, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:46.139+00', '{"cached":null,"ignore_cache":false}'), +(44608, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:46.369+00', '{"cached":null,"ignore_cache":false}'), +(44609, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:46.585+00', '{"cached":null,"ignore_cache":false}'), +(44610, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:46.966+00', '{"cached":null,"ignore_cache":false}'), +(44611, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.376+00', '{"cached":null,"ignore_cache":false}'), +(44612, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.42+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44613, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.422+00', '{"cached":null,"ignore_cache":false}'), +(44614, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.458+00', '{"cached":null,"ignore_cache":false}'), +(44615, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.614+00', '{"cached":null,"ignore_cache":false}'), +(44616, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.679+00', '{"cached":null,"ignore_cache":false}'), +(44617, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.694+00', '{"cached":null,"ignore_cache":false}'), +(44618, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.799+00', '{"cached":null,"ignore_cache":false}'), +(44619, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.81+00', '{"cached":null,"ignore_cache":false}'), +(44620, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.814+00', '{"cached":null,"ignore_cache":false}'), +(44621, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.825+00', '{"cached":null,"ignore_cache":false}'), +(44622, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.827+00', '{"cached":null,"ignore_cache":false}'), +(44623, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.829+00', '{"cached":null,"ignore_cache":false}'), +(44624, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.83+00', '{"cached":null,"ignore_cache":false}'), +(44625, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.831+00', '{"cached":null,"ignore_cache":false}'), +(44626, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:47.916+00', '{"cached":null,"ignore_cache":false}'), +(44627, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:50.334+00', '{"cached":null,"ignore_cache":false}'), +(44628, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:50.501+00', '{"cached":null,"ignore_cache":false}'), +(44629, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:50.678+00', '{"cached":null,"ignore_cache":false}'), +(44630, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 16:16:50.68+00', '{"cached":null,"ignore_cache":false}'), +(44631, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:38.043+00', '{"cached":null,"ignore_cache":false}'), +(44632, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:40.917+00', '{"cached":null,"ignore_cache":false}'), +(44633, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.429+00', '{"cached":null,"ignore_cache":false}'), +(44634, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.436+00', '{"cached":null,"ignore_cache":false}'), +(44635, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.474+00', '{"cached":null,"ignore_cache":false}'), +(44636, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.606+00', '{"cached":null,"ignore_cache":false}'), +(44637, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.808+00', '{"cached":null,"ignore_cache":false}'), +(44638, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.862+00', '{"cached":null,"ignore_cache":false}'), +(44639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.867+00', '{"cached":null,"ignore_cache":false}'), +(44640, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.875+00', '{"cached":null,"ignore_cache":false}'), +(44641, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.903+00', '{"cached":null,"ignore_cache":false}'), +(44642, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.917+00', '{"cached":null,"ignore_cache":false}'), +(44643, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.925+00', '{"cached":null,"ignore_cache":false}'), +(44644, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:41.942+00', '{"cached":null,"ignore_cache":false}'), +(44645, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:43.224+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44646, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-02 16:21:43.354+00', '{"cached":null,"ignore_cache":false}'), +(44647, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:03.029+00', '{"cached":null,"ignore_cache":null}'), +(44648, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:08.281+00', '{"cached":null,"ignore_cache":false}'), +(44649, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:08.286+00', '{"cached":null,"ignore_cache":false}'), +(44650, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:08.347+00', '{"cached":null,"ignore_cache":false}'), +(44651, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:08.349+00', '{"cached":null,"ignore_cache":false}'), +(44652, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:08.409+00', '{"cached":null,"ignore_cache":false}'), +(44653, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:08.418+00', '{"cached":null,"ignore_cache":false}'), +(44654, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.726+00', '{"cached":null,"ignore_cache":false}'), +(44655, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:17.759+00', '{"cached":null,"ignore_cache":false}'), +(44656, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:18.033+00', '{"cached":null,"ignore_cache":false}'), +(44657, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:18.038+00', '{"cached":null,"ignore_cache":false}'), +(44658, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:18.099+00', '{"cached":null,"ignore_cache":false}'), +(44659, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:18.113+00', '{"cached":null,"ignore_cache":false}'), +(44660, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:22.411+00', '{"cached":null,"ignore_cache":false}'), +(44661, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:22.498+00', '{"cached":null,"ignore_cache":false}'), +(44662, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:22.551+00', '{"cached":null,"ignore_cache":false}'), +(44663, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:22.553+00', '{"cached":null,"ignore_cache":false}'), +(44664, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:22.595+00', '{"cached":null,"ignore_cache":false}'), +(44665, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:22.766+00', '{"cached":null,"ignore_cache":false}'), +(44666, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.581+00', '{"cached":null,"ignore_cache":false}'), +(44667, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.616+00', '{"cached":null,"ignore_cache":false}'), +(44668, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.744+00', '{"cached":null,"ignore_cache":false}'), +(44669, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.825+00', '{"cached":null,"ignore_cache":false}'), +(44670, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.857+00', '{"cached":null,"ignore_cache":false}'), +(44671, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:44.95+00', '{"cached":null,"ignore_cache":false}'), +(44672, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:49.218+00', '{"cached":null,"ignore_cache":false}'), +(44673, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:49.722+00', '{"cached":null,"ignore_cache":false}'), +(44674, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:49.766+00', '{"cached":null,"ignore_cache":false}'), +(44675, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:49.798+00', '{"cached":null,"ignore_cache":false}'), +(44676, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:49.813+00', '{"cached":null,"ignore_cache":false}'), +(44677, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:49.856+00', '{"cached":null,"ignore_cache":false}'), +(44678, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.102+00', '{"cached":null,"ignore_cache":false}'), +(44679, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.25+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44680, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.264+00', '{"cached":null,"ignore_cache":false}'), +(44681, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.301+00', '{"cached":null,"ignore_cache":false}'), +(44682, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.365+00', '{"cached":null,"ignore_cache":false}'), +(44683, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:51.378+00', '{"cached":null,"ignore_cache":false}'), +(44684, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:52.628+00', '{"cached":null,"ignore_cache":false}'), +(44685, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:52.758+00', '{"cached":null,"ignore_cache":false}'), +(44686, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:52.832+00', '{"cached":null,"ignore_cache":false}'), +(44687, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:52.933+00', '{"cached":null,"ignore_cache":false}'), +(44688, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:52.975+00', '{"cached":null,"ignore_cache":false}'), +(44689, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:53.025+00', '{"cached":null,"ignore_cache":false}'), +(44690, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:54.065+00', '{"cached":null,"ignore_cache":false}'), +(44691, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:54.088+00', '{"cached":null,"ignore_cache":false}'), +(44692, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:54.11+00', '{"cached":null,"ignore_cache":false}'), +(44693, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:54.155+00', '{"cached":null,"ignore_cache":false}'), +(44694, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:54.224+00', '{"cached":null,"ignore_cache":false}'), +(44695, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:28:54.245+00', '{"cached":null,"ignore_cache":false}'), +(44696, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:22.473+00', '{"cached":null,"ignore_cache":null}'), +(44697, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:26.93+00', '{"cached":null,"ignore_cache":false}'), +(44698, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:26.942+00', '{"cached":null,"ignore_cache":false}'), +(44699, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:27.335+00', '{"cached":null,"ignore_cache":false}'), +(44700, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:27.349+00', '{"cached":null,"ignore_cache":false}'), +(44701, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:27.352+00', '{"cached":null,"ignore_cache":false}'), +(44702, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:27.364+00', '{"cached":null,"ignore_cache":false}'), +(44703, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:36.776+00', '{"cached":null,"ignore_cache":null}'), +(44704, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-03 06:29:49.569+00', '{"cached":null,"ignore_cache":null}'), +(44705, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:24.897+00', '{"cached":null,"ignore_cache":false}'), +(44706, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.01+00', '{"cached":null,"ignore_cache":false}'), +(44707, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.084+00', '{"cached":null,"ignore_cache":false}'), +(44708, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.205+00', '{"cached":null,"ignore_cache":false}'), +(44709, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.268+00', '{"cached":null,"ignore_cache":false}'), +(44710, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:25.364+00', '{"cached":null,"ignore_cache":false}'), +(44711, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:26.291+00', '{"cached":null,"ignore_cache":false}'), +(44712, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:26.4+00', '{"cached":null,"ignore_cache":false}'), +(44713, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:26.444+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44714, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:26.513+00', '{"cached":null,"ignore_cache":false}'), +(44715, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:26.572+00', '{"cached":null,"ignore_cache":false}'), +(44716, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:26.603+00', '{"cached":null,"ignore_cache":false}'), +(44717, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:31.325+00', '{"cached":null,"ignore_cache":false}'), +(44718, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:31.487+00', '{"cached":null,"ignore_cache":false}'), +(44719, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:31.499+00', '{"cached":null,"ignore_cache":false}'), +(44720, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:31.568+00', '{"cached":null,"ignore_cache":false}'), +(44721, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:31.575+00', '{"cached":null,"ignore_cache":false}'), +(44722, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:31.601+00', '{"cached":null,"ignore_cache":false}'), +(44723, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.756+00', '{"cached":null,"ignore_cache":false}'), +(44724, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.84+00', '{"cached":null,"ignore_cache":false}'), +(44725, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.857+00', '{"cached":null,"ignore_cache":false}'), +(44726, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.871+00', '{"cached":null,"ignore_cache":false}'), +(44727, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.934+00', '{"cached":null,"ignore_cache":false}'), +(44728, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:30:35.954+00', '{"cached":null,"ignore_cache":false}'), +(44729, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-03 06:31:11.788+00', '{"cached":null,"ignore_cache":null}'), +(44730, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-03 06:31:35.366+00', '{"cached":null,"ignore_cache":null}'), +(44731, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-03 06:31:46.738+00', '{"cached":null,"ignore_cache":null}'), +(44732, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:11.916+00', '{"cached":null,"ignore_cache":false}'), +(44733, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:11.953+00', '{"cached":null,"ignore_cache":false}'), +(44734, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:12.186+00', '{"cached":null,"ignore_cache":false}'), +(44735, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:12.25+00', '{"cached":null,"ignore_cache":false}'), +(44736, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:12.296+00', '{"cached":null,"ignore_cache":false}'), +(44737, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:12.356+00', '{"cached":null,"ignore_cache":false}'), +(44738, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:28.152+00', '{"cached":null,"ignore_cache":null}'), +(44739, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:32:28.812+00', '{"cached":null,"ignore_cache":false}'), +(44740, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:05.038+00', '{"cached":null,"ignore_cache":null}'), +(44741, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:06.282+00', '{"cached":null,"ignore_cache":false}'), +(44742, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:06.333+00', '{"cached":null,"ignore_cache":false}'), +(44743, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:06.346+00', '{"cached":null,"ignore_cache":false}'), +(44744, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:06.354+00', '{"cached":null,"ignore_cache":false}'), +(44745, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:06.372+00', '{"cached":null,"ignore_cache":false}'), +(44746, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:06.397+00', '{"cached":null,"ignore_cache":false}'), +(44747, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:07.631+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44748, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-03 06:33:08.323+00', '{"cached":null,"ignore_cache":false}'), +(44749, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:07.118+00', '{"cached":null,"ignore_cache":null}'), +(44750, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:11.099+00', '{"cached":null,"ignore_cache":false}'), +(44751, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:11.849+00', '{"cached":null,"ignore_cache":false}'), +(44752, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:11.926+00', '{"cached":null,"ignore_cache":false}'), +(44753, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:12.101+00', '{"cached":null,"ignore_cache":false}'), +(44754, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:12.878+00', '{"cached":null,"ignore_cache":false}'), +(44755, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:12.891+00', '{"cached":null,"ignore_cache":false}'), +(44756, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:12.968+00', '{"cached":null,"ignore_cache":false}'), +(44757, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:12.988+00', '{"cached":null,"ignore_cache":false}'), +(44758, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:16.523+00', '{"cached":null,"ignore_cache":false}'), +(44759, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-03 11:02:16.633+00', '{"cached":null,"ignore_cache":false}'), +(44760, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:33.789+00', '{"cached":null,"ignore_cache":false}'), +(44761, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:33.859+00', '{"cached":null,"ignore_cache":false}'), +(44762, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:36.118+00', '{"cached":null,"ignore_cache":false}'), +(44763, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:36.138+00', '{"cached":null,"ignore_cache":false}'), +(44764, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:36.785+00', '{"cached":null,"ignore_cache":false}'), +(44765, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:36.815+00', '{"cached":null,"ignore_cache":false}'), +(44766, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:36.996+00', '{"cached":null,"ignore_cache":false}'), +(44767, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:37.068+00', '{"cached":null,"ignore_cache":false}'), +(44768, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:37.101+00', '{"cached":null,"ignore_cache":false}'), +(44769, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:37.16+00', '{"cached":null,"ignore_cache":false}'), +(44770, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.06+00', '{"cached":null,"ignore_cache":false}'), +(44771, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.201+00', '{"cached":null,"ignore_cache":false}'), +(44772, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.444+00', '{"cached":null,"ignore_cache":false}'), +(44773, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.498+00', '{"cached":null,"ignore_cache":false}'), +(44774, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.518+00', '{"cached":null,"ignore_cache":false}'), +(44775, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.526+00', '{"cached":null,"ignore_cache":false}'), +(44776, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.528+00', '{"cached":null,"ignore_cache":false}'), +(44777, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.529+00', '{"cached":null,"ignore_cache":false}'), +(44778, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.59+00', '{"cached":null,"ignore_cache":false}'), +(44779, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.656+00', '{"cached":null,"ignore_cache":false}'), +(44780, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.768+00', '{"cached":null,"ignore_cache":false}'), +(44781, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.769+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44782, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.77+00', '{"cached":null,"ignore_cache":false}'), +(44783, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.771+00', '{"cached":null,"ignore_cache":false}'), +(44784, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.771+00', '{"cached":null,"ignore_cache":false}'), +(44785, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.772+00', '{"cached":null,"ignore_cache":false}'), +(44786, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.783+00', '{"cached":null,"ignore_cache":false}'), +(44787, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:38.784+00', '{"cached":null,"ignore_cache":false}'), +(44788, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:40.831+00', '{"cached":null,"ignore_cache":false}'), +(44789, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:40.93+00', '{"cached":null,"ignore_cache":false}'), +(44790, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:40.985+00', '{"cached":null,"ignore_cache":false}'), +(44791, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 08:05:40.986+00', '{"cached":null,"ignore_cache":false}'), +(44792, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:36.501+00', '{"cached":null,"ignore_cache":false}'), +(44793, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:37.648+00', '{"cached":null,"ignore_cache":false}'), +(44794, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:37.864+00', '{"cached":null,"ignore_cache":false}'), +(44795, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:37.887+00', '{"cached":null,"ignore_cache":false}'), +(44796, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:37.921+00', '{"cached":null,"ignore_cache":false}'), +(44797, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.156+00', '{"cached":null,"ignore_cache":false}'), +(44798, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.159+00', '{"cached":null,"ignore_cache":false}'), +(44799, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.16+00', '{"cached":null,"ignore_cache":false}'), +(44800, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.181+00', '{"cached":null,"ignore_cache":false}'), +(44801, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.236+00', '{"cached":null,"ignore_cache":false}'), +(44802, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.261+00', '{"cached":null,"ignore_cache":false}'), +(44803, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.286+00', '{"cached":null,"ignore_cache":false}'), +(44804, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.289+00', '{"cached":null,"ignore_cache":false}'), +(44805, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:38.352+00', '{"cached":null,"ignore_cache":false}'), +(44806, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:39.374+00', '{"cached":null,"ignore_cache":false}'), +(44807, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 08:10:39.379+00', '{"cached":null,"ignore_cache":false}'), +(44808, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:04.138+00', '{"cached":null,"ignore_cache":false}'), +(44809, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:06.277+00', '{"cached":null,"ignore_cache":false}'), +(44810, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:06.488+00', '{"cached":null,"ignore_cache":false}'), +(44811, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:06.499+00', '{"cached":null,"ignore_cache":false}'), +(44812, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:06.569+00', '{"cached":null,"ignore_cache":false}'), +(44813, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:06.899+00', '{"cached":null,"ignore_cache":false}'), +(44814, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:06.913+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44815, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:07.012+00', '{"cached":null,"ignore_cache":false}'), +(44816, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:07.089+00', '{"cached":null,"ignore_cache":false}'), +(44817, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:07.108+00', '{"cached":null,"ignore_cache":false}'), +(44818, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:07.195+00', '{"cached":null,"ignore_cache":false}'), +(44819, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:07.197+00', '{"cached":null,"ignore_cache":false}'), +(44820, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:07.21+00', '{"cached":null,"ignore_cache":false}'), +(44821, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:07.268+00', '{"cached":null,"ignore_cache":false}'), +(44822, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:09.094+00', '{"cached":null,"ignore_cache":false}'), +(44823, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 08:30:09.141+00', '{"cached":null,"ignore_cache":false}'), +(44824, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:03.028+00', '{"cached":null,"ignore_cache":false}'), +(44825, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:06.49+00', '{"cached":null,"ignore_cache":false}'), +(44826, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.266+00', '{"cached":null,"ignore_cache":false}'), +(44827, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.3+00', '{"cached":null,"ignore_cache":false}'), +(44828, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.319+00', '{"cached":null,"ignore_cache":false}'), +(44829, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.715+00', '{"cached":null,"ignore_cache":false}'), +(44830, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.783+00', '{"cached":null,"ignore_cache":false}'), +(44831, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.789+00', '{"cached":null,"ignore_cache":false}'), +(44832, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.812+00', '{"cached":null,"ignore_cache":false}'), +(44833, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.841+00', '{"cached":null,"ignore_cache":false}'), +(44834, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.843+00', '{"cached":null,"ignore_cache":false}'), +(44835, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.844+00', '{"cached":null,"ignore_cache":false}'), +(44836, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.928+00', '{"cached":null,"ignore_cache":false}'), +(44837, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:07.939+00', '{"cached":null,"ignore_cache":false}'), +(44838, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:09.301+00', '{"cached":null,"ignore_cache":false}'), +(44839, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 08:35:09.392+00', '{"cached":null,"ignore_cache":false}'), +(44840, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:57.952+00', '{"cached":null,"ignore_cache":false}'), +(44841, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 08:48:58.052+00', '{"cached":null,"ignore_cache":false}'), +(44842, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:01.873+00', '{"cached":null,"ignore_cache":false}'), +(44843, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:01.939+00', '{"cached":null,"ignore_cache":false}'), +(44844, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:02.939+00', '{"cached":null,"ignore_cache":false}'), +(44845, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:03.138+00', '{"cached":null,"ignore_cache":false}'), +(44846, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:03.514+00', '{"cached":null,"ignore_cache":false}'), +(44847, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:03.619+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44848, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:03.795+00', '{"cached":null,"ignore_cache":false}'), +(44849, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:03.799+00', '{"cached":null,"ignore_cache":false}'), +(44850, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.421+00', '{"cached":null,"ignore_cache":false}'), +(44851, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.462+00', '{"cached":null,"ignore_cache":false}'), +(44852, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.51+00', '{"cached":null,"ignore_cache":false}'), +(44853, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.543+00', '{"cached":null,"ignore_cache":false}'), +(44854, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.578+00', '{"cached":null,"ignore_cache":false}'), +(44855, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.586+00', '{"cached":null,"ignore_cache":false}'), +(44856, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.593+00', '{"cached":null,"ignore_cache":false}'), +(44857, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.596+00', '{"cached":null,"ignore_cache":false}'), +(44858, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.603+00', '{"cached":null,"ignore_cache":false}'), +(44859, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.754+00', '{"cached":null,"ignore_cache":false}'), +(44860, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.755+00', '{"cached":null,"ignore_cache":false}'), +(44861, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.769+00', '{"cached":null,"ignore_cache":false}'), +(44862, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.992+00', '{"cached":null,"ignore_cache":false}'), +(44863, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:04.995+00', '{"cached":null,"ignore_cache":false}'), +(44864, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:05.014+00', '{"cached":null,"ignore_cache":false}'), +(44865, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:05.098+00', '{"cached":null,"ignore_cache":false}'), +(44866, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:05.105+00', '{"cached":null,"ignore_cache":false}'), +(44867, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:05.126+00', '{"cached":null,"ignore_cache":false}'), +(44868, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:07.596+00', '{"cached":null,"ignore_cache":false}'), +(44869, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:07.69+00', '{"cached":null,"ignore_cache":false}'), +(44870, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:07.692+00', '{"cached":null,"ignore_cache":false}'), +(44871, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 08:49:07.721+00', '{"cached":null,"ignore_cache":false}'), +(44872, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:46.496+00', '{"cached":null,"ignore_cache":false}'), +(44873, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:46.674+00', '{"cached":null,"ignore_cache":false}'), +(44874, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:49.713+00', '{"cached":null,"ignore_cache":false}'), +(44875, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:49.741+00', '{"cached":null,"ignore_cache":false}'), +(44876, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:50.548+00', '{"cached":null,"ignore_cache":false}'), +(44877, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:50.745+00', '{"cached":null,"ignore_cache":false}'), +(44878, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:50.765+00', '{"cached":null,"ignore_cache":false}'), +(44879, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:50.816+00', '{"cached":null,"ignore_cache":false}'), +(44880, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.132+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44881, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.133+00', '{"cached":null,"ignore_cache":false}'), +(44882, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.218+00', '{"cached":null,"ignore_cache":false}'), +(44883, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.577+00', '{"cached":null,"ignore_cache":false}'), +(44884, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.583+00', '{"cached":null,"ignore_cache":false}'), +(44885, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.587+00', '{"cached":null,"ignore_cache":false}'), +(44886, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.618+00', '{"cached":null,"ignore_cache":false}'), +(44887, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.701+00', '{"cached":null,"ignore_cache":false}'), +(44888, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.803+00', '{"cached":null,"ignore_cache":false}'), +(44889, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.957+00', '{"cached":null,"ignore_cache":false}'), +(44890, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.961+00', '{"cached":null,"ignore_cache":false}'), +(44891, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.968+00', '{"cached":null,"ignore_cache":false}'), +(44892, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.975+00', '{"cached":null,"ignore_cache":false}'), +(44893, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:51.996+00', '{"cached":null,"ignore_cache":false}'), +(44894, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:52.027+00', '{"cached":null,"ignore_cache":false}'), +(44895, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:52.042+00', '{"cached":null,"ignore_cache":false}'), +(44896, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:52.042+00', '{"cached":null,"ignore_cache":false}'), +(44897, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:52.044+00', '{"cached":null,"ignore_cache":false}'), +(44898, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:52.105+00', '{"cached":null,"ignore_cache":false}'), +(44899, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:52.11+00', '{"cached":null,"ignore_cache":false}'), +(44900, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:54.596+00', '{"cached":null,"ignore_cache":false}'), +(44901, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:55.275+00', '{"cached":null,"ignore_cache":false}'), +(44902, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:55.312+00', '{"cached":null,"ignore_cache":false}'), +(44903, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:15:55.462+00', '{"cached":null,"ignore_cache":false}'), +(44904, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:39.091+00', '{"cached":null,"ignore_cache":false}'), +(44905, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:40.674+00', '{"cached":null,"ignore_cache":false}'), +(44906, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.055+00', '{"cached":null,"ignore_cache":false}'), +(44907, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.139+00', '{"cached":null,"ignore_cache":false}'), +(44908, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.399+00', '{"cached":null,"ignore_cache":false}'), +(44909, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.418+00', '{"cached":null,"ignore_cache":false}'), +(44910, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.434+00', '{"cached":null,"ignore_cache":false}'), +(44911, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.47+00', '{"cached":null,"ignore_cache":false}'), +(44912, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.502+00', '{"cached":null,"ignore_cache":false}'), +(44913, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.536+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44914, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.6+00', '{"cached":null,"ignore_cache":false}'), +(44915, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.62+00', '{"cached":null,"ignore_cache":false}'), +(44916, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.63+00', '{"cached":null,"ignore_cache":false}'), +(44917, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:41.675+00', '{"cached":null,"ignore_cache":false}'), +(44918, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:43.521+00', '{"cached":null,"ignore_cache":false}'), +(44919, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:20:43.56+00', '{"cached":null,"ignore_cache":false}'), +(44920, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:12.21+00', '{"cached":null,"ignore_cache":false}'), +(44921, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:12.352+00', '{"cached":null,"ignore_cache":false}'), +(44922, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:16.208+00', '{"cached":null,"ignore_cache":false}'), +(44923, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:16.222+00', '{"cached":null,"ignore_cache":false}'), +(44924, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:18.06+00', '{"cached":null,"ignore_cache":false}'), +(44925, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:18.652+00', '{"cached":null,"ignore_cache":false}'), +(44926, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:18.947+00', '{"cached":null,"ignore_cache":false}'), +(44927, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.003+00', '{"cached":null,"ignore_cache":false}'), +(44928, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.006+00', '{"cached":null,"ignore_cache":false}'), +(44929, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.231+00', '{"cached":null,"ignore_cache":false}'), +(44930, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.259+00', '{"cached":null,"ignore_cache":false}'), +(44931, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.317+00', '{"cached":null,"ignore_cache":false}'), +(44932, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.855+00', '{"cached":null,"ignore_cache":false}'), +(44933, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.944+00', '{"cached":null,"ignore_cache":false}'), +(44934, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:19.969+00', '{"cached":null,"ignore_cache":false}'), +(44935, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.149+00', '{"cached":null,"ignore_cache":false}'), +(44936, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.312+00', '{"cached":null,"ignore_cache":false}'), +(44937, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.313+00', '{"cached":null,"ignore_cache":false}'), +(44938, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.321+00', '{"cached":null,"ignore_cache":false}'), +(44939, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.421+00', '{"cached":null,"ignore_cache":false}'), +(44940, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.637+00', '{"cached":null,"ignore_cache":false}'), +(44941, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.638+00', '{"cached":null,"ignore_cache":false}'), +(44942, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.639+00', '{"cached":null,"ignore_cache":false}'), +(44943, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.665+00', '{"cached":null,"ignore_cache":false}'), +(44944, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.666+00', '{"cached":null,"ignore_cache":false}'), +(44945, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.688+00', '{"cached":null,"ignore_cache":false}'), +(44946, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.713+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44947, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:20.724+00', '{"cached":null,"ignore_cache":false}'), +(44948, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:22.292+00', '{"cached":null,"ignore_cache":false}'), +(44949, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:22.322+00', '{"cached":null,"ignore_cache":false}'), +(44950, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:22.332+00', '{"cached":null,"ignore_cache":false}'), +(44951, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:21:22.334+00', '{"cached":null,"ignore_cache":false}'), +(44952, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.312+00', '{"cached":null,"ignore_cache":false}'), +(44953, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.411+00', '{"cached":null,"ignore_cache":false}'), +(44954, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.418+00', '{"cached":null,"ignore_cache":false}'), +(44955, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.422+00', '{"cached":null,"ignore_cache":false}'), +(44956, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.468+00', '{"cached":null,"ignore_cache":false}'), +(44957, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.517+00', '{"cached":null,"ignore_cache":false}'), +(44958, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:03.522+00', '{"cached":null,"ignore_cache":false}'), +(44959, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:04.045+00', '{"cached":null,"ignore_cache":false}'), +(44960, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:04.138+00', '{"cached":null,"ignore_cache":false}'), +(44961, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:04.195+00', '{"cached":null,"ignore_cache":false}'), +(44962, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:04.437+00', '{"cached":null,"ignore_cache":false}'), +(44963, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:04.518+00', '{"cached":null,"ignore_cache":false}'), +(44964, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:04.568+00', '{"cached":null,"ignore_cache":false}'), +(44965, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:04.646+00', '{"cached":null,"ignore_cache":false}'), +(44966, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:06.068+00', '{"cached":null,"ignore_cache":false}'), +(44967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:27:06.077+00', '{"cached":null,"ignore_cache":false}'), +(44968, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:09.817+00', '{"cached":null,"ignore_cache":false}'), +(44969, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:10.595+00', '{"cached":null,"ignore_cache":false}'), +(44970, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:10.714+00', '{"cached":null,"ignore_cache":false}'), +(44971, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:10.788+00', '{"cached":null,"ignore_cache":false}'), +(44972, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:10.871+00', '{"cached":null,"ignore_cache":false}'), +(44973, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.564+00', '{"cached":null,"ignore_cache":false}'), +(44974, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.669+00', '{"cached":null,"ignore_cache":false}'), +(44975, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.675+00', '{"cached":null,"ignore_cache":false}'), +(44976, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.684+00', '{"cached":null,"ignore_cache":false}'), +(44977, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.688+00', '{"cached":null,"ignore_cache":false}'), +(44978, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.697+00', '{"cached":null,"ignore_cache":false}'), +(44979, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.724+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(44980, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.735+00', '{"cached":null,"ignore_cache":false}'), +(44981, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:11.791+00', '{"cached":null,"ignore_cache":false}'), +(44982, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:13.95+00', '{"cached":null,"ignore_cache":false}'), +(44983, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:32:13.958+00', '{"cached":null,"ignore_cache":false}'), +(44984, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:38.533+00', '{"cached":null,"ignore_cache":false}'), +(44985, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:38.573+00', '{"cached":null,"ignore_cache":false}'), +(44986, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:38.576+00', '{"cached":null,"ignore_cache":false}'), +(44987, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:38.577+00', '{"cached":null,"ignore_cache":false}'), +(44988, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:38.58+00', '{"cached":null,"ignore_cache":false}'), +(44989, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:38.585+00', '{"cached":null,"ignore_cache":false}'), +(44990, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.682+00', '{"cached":null,"ignore_cache":false}'), +(44991, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:43.751+00', '{"cached":null,"ignore_cache":false}'), +(44992, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:44.062+00', '{"cached":null,"ignore_cache":false}'), +(44993, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:44.316+00', '{"cached":null,"ignore_cache":false}'), +(44994, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:44.359+00', '{"cached":null,"ignore_cache":false}'), +(44995, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:44.447+00', '{"cached":null,"ignore_cache":false}'), +(44996, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:44.622+00', '{"cached":null,"ignore_cache":false}'), +(44997, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:44.852+00', '{"cached":null,"ignore_cache":false}'), +(44998, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:45.551+00', '{"cached":null,"ignore_cache":false}'), +(44999, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:37:45.581+00', '{"cached":null,"ignore_cache":false}'), +(45000, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:36.617+00', '{"cached":null,"ignore_cache":false}'), +(45001, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:36.67+00', '{"cached":null,"ignore_cache":false}'), +(45002, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:36.688+00', '{"cached":null,"ignore_cache":false}'), +(45003, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:36.7+00', '{"cached":null,"ignore_cache":false}'), +(45004, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:36.773+00', '{"cached":null,"ignore_cache":false}'), +(45005, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:37.274+00', '{"cached":null,"ignore_cache":false}'), +(45006, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:42.914+00', '{"cached":null,"ignore_cache":false}'), +(45007, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:43.007+00', '{"cached":null,"ignore_cache":false}'), +(45008, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:43.372+00', '{"cached":null,"ignore_cache":false}'), +(45009, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:43.419+00', '{"cached":null,"ignore_cache":false}'), +(45010, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:43.472+00', '{"cached":null,"ignore_cache":false}'), +(45011, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:43.53+00', '{"cached":null,"ignore_cache":false}'), +(45012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:43.611+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45013, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:43.799+00', '{"cached":null,"ignore_cache":false}'), +(45014, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:44.901+00', '{"cached":null,"ignore_cache":false}'), +(45015, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:42:44.934+00', '{"cached":null,"ignore_cache":false}'), +(45016, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:29.375+00', '{"cached":null,"ignore_cache":false}'), +(45017, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:29.419+00', '{"cached":null,"ignore_cache":false}'), +(45018, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:29.43+00', '{"cached":null,"ignore_cache":false}'), +(45019, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:29.435+00', '{"cached":null,"ignore_cache":false}'), +(45020, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:29.437+00', '{"cached":null,"ignore_cache":false}'), +(45021, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:29.48+00', '{"cached":null,"ignore_cache":false}'), +(45022, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.211+00', '{"cached":null,"ignore_cache":false}'), +(45023, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.345+00', '{"cached":null,"ignore_cache":false}'), +(45024, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.36+00', '{"cached":null,"ignore_cache":false}'), +(45025, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.643+00', '{"cached":null,"ignore_cache":false}'), +(45026, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.665+00', '{"cached":null,"ignore_cache":false}'), +(45027, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.703+00', '{"cached":null,"ignore_cache":false}'), +(45028, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.746+00', '{"cached":null,"ignore_cache":false}'), +(45029, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:38.787+00', '{"cached":null,"ignore_cache":false}'), +(45030, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:39.652+00', '{"cached":null,"ignore_cache":false}'), +(45031, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:50:39.701+00', '{"cached":null,"ignore_cache":false}'), +(45032, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:41.876+00', '{"cached":null,"ignore_cache":false}'), +(45033, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:41.901+00', '{"cached":null,"ignore_cache":false}'), +(45034, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:41.97+00', '{"cached":null,"ignore_cache":false}'), +(45035, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:42.03+00', '{"cached":null,"ignore_cache":false}'), +(45036, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:42.062+00', '{"cached":null,"ignore_cache":false}'), +(45037, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 09:55:42.079+00', '{"cached":null,"ignore_cache":false}'), +(45038, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:03.178+00', '{"cached":null,"ignore_cache":false}'), +(45039, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:04.938+00', '{"cached":null,"ignore_cache":false}'), +(45040, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:05.179+00', '{"cached":null,"ignore_cache":false}'), +(45041, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:05.263+00', '{"cached":null,"ignore_cache":false}'), +(45042, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:05.458+00', '{"cached":null,"ignore_cache":false}'), +(45043, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:05.531+00', '{"cached":null,"ignore_cache":false}'), +(45044, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:05.618+00', '{"cached":null,"ignore_cache":false}'), +(45045, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:05.661+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45046, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:06.589+00', '{"cached":null,"ignore_cache":false}'), +(45047, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 09:58:06.598+00', '{"cached":null,"ignore_cache":false}'), +(45048, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:59.23+00', '{"cached":null,"ignore_cache":false}'), +(45049, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:59.285+00', '{"cached":null,"ignore_cache":false}'), +(45050, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:59.402+00', '{"cached":null,"ignore_cache":false}'), +(45051, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:59.435+00', '{"cached":null,"ignore_cache":false}'), +(45052, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:59.513+00', '{"cached":null,"ignore_cache":false}'), +(45053, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:00:59.582+00', '{"cached":null,"ignore_cache":false}'), +(45054, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:15.037+00', '{"cached":null,"ignore_cache":false}'), +(45055, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:15.602+00', '{"cached":null,"ignore_cache":false}'), +(45056, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:15.923+00', '{"cached":null,"ignore_cache":false}'), +(45057, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:16.047+00', '{"cached":null,"ignore_cache":false}'), +(45058, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:16.075+00', '{"cached":null,"ignore_cache":false}'), +(45059, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:16.109+00', '{"cached":null,"ignore_cache":false}'), +(45060, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:16.204+00', '{"cached":null,"ignore_cache":false}'), +(45061, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:16.274+00', '{"cached":null,"ignore_cache":false}'), +(45062, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:17.554+00', '{"cached":null,"ignore_cache":false}'), +(45063, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:01:17.591+00', '{"cached":null,"ignore_cache":false}'), +(45064, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:06.57+00', '{"cached":null,"ignore_cache":false}'), +(45065, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:06.658+00', '{"cached":null,"ignore_cache":false}'), +(45066, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:06.705+00', '{"cached":null,"ignore_cache":false}'), +(45067, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:06.707+00', '{"cached":null,"ignore_cache":false}'), +(45068, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:06.712+00', '{"cached":null,"ignore_cache":false}'), +(45069, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:06.715+00', '{"cached":null,"ignore_cache":false}'), +(45070, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:18.252+00', '{"cached":null,"ignore_cache":false}'), +(45071, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:19.646+00', '{"cached":null,"ignore_cache":false}'), +(45072, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:19.696+00', '{"cached":null,"ignore_cache":false}'), +(45073, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:19.839+00', '{"cached":null,"ignore_cache":false}'), +(45074, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:20.02+00', '{"cached":null,"ignore_cache":false}'), +(45075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:20.029+00', '{"cached":null,"ignore_cache":false}'), +(45076, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:20.103+00', '{"cached":null,"ignore_cache":false}'), +(45077, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:20.205+00', '{"cached":null,"ignore_cache":false}'), +(45078, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:21.824+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45079, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:06:21.837+00', '{"cached":null,"ignore_cache":false}'), +(45080, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:19.974+00', '{"cached":null,"ignore_cache":false}'), +(45081, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:19.989+00', '{"cached":null,"ignore_cache":false}'), +(45082, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:20.046+00', '{"cached":null,"ignore_cache":false}'), +(45083, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:20.047+00', '{"cached":null,"ignore_cache":false}'), +(45084, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:20.108+00', '{"cached":null,"ignore_cache":false}'), +(45085, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:20.138+00', '{"cached":null,"ignore_cache":false}'), +(45086, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.049+00', '{"cached":null,"ignore_cache":false}'), +(45087, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.165+00', '{"cached":null,"ignore_cache":false}'), +(45088, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.312+00', '{"cached":null,"ignore_cache":false}'), +(45089, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.408+00', '{"cached":null,"ignore_cache":false}'), +(45090, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.438+00', '{"cached":null,"ignore_cache":false}'), +(45091, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.472+00', '{"cached":null,"ignore_cache":false}'), +(45092, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.518+00', '{"cached":null,"ignore_cache":false}'), +(45093, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:42.541+00', '{"cached":null,"ignore_cache":false}'), +(45094, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:43.195+00', '{"cached":null,"ignore_cache":false}'), +(45095, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:11:43.206+00', '{"cached":null,"ignore_cache":false}'), +(45096, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:03.682+00', '{"cached":null,"ignore_cache":false}'), +(45097, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:03.749+00', '{"cached":null,"ignore_cache":false}'), +(45098, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:03.751+00', '{"cached":null,"ignore_cache":false}'), +(45099, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:03.754+00', '{"cached":null,"ignore_cache":false}'), +(45100, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:03.756+00', '{"cached":null,"ignore_cache":false}'), +(45101, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:03.764+00', '{"cached":null,"ignore_cache":false}'), +(45102, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.391+00', '{"cached":null,"ignore_cache":false}'), +(45103, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.423+00', '{"cached":null,"ignore_cache":false}'), +(45104, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.624+00', '{"cached":null,"ignore_cache":false}'), +(45105, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.66+00', '{"cached":null,"ignore_cache":false}'), +(45106, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.728+00', '{"cached":null,"ignore_cache":false}'), +(45107, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.768+00', '{"cached":null,"ignore_cache":false}'), +(45108, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:36.84+00', '{"cached":null,"ignore_cache":false}'), +(45109, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:37.004+00', '{"cached":null,"ignore_cache":false}'), +(45110, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:37.459+00', '{"cached":null,"ignore_cache":false}'), +(45111, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:17:37.496+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45112, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:34.509+00', '{"cached":null,"ignore_cache":false}'), +(45113, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:34.544+00', '{"cached":null,"ignore_cache":false}'), +(45114, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:34.548+00', '{"cached":null,"ignore_cache":false}'), +(45115, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:34.561+00', '{"cached":null,"ignore_cache":false}'), +(45116, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:34.564+00', '{"cached":null,"ignore_cache":false}'), +(45117, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:25:34.565+00', '{"cached":null,"ignore_cache":false}'), +(45118, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:28.36+00', '{"cached":null,"ignore_cache":false}'), +(45119, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:28.94+00', '{"cached":null,"ignore_cache":false}'), +(45120, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:28.952+00', '{"cached":null,"ignore_cache":false}'), +(45121, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:28.955+00', '{"cached":null,"ignore_cache":false}'), +(45122, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:29.011+00', '{"cached":null,"ignore_cache":false}'), +(45123, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:29.013+00', '{"cached":null,"ignore_cache":false}'), +(45124, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:29.176+00', '{"cached":null,"ignore_cache":false}'), +(45125, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:29.29+00', '{"cached":null,"ignore_cache":false}'), +(45126, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:29.892+00', '{"cached":null,"ignore_cache":false}'), +(45127, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:29.949+00', '{"cached":null,"ignore_cache":false}'), +(45128, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:51.965+00', '{"cached":null,"ignore_cache":false}'), +(45129, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:53.122+00', '{"cached":null,"ignore_cache":false}'), +(45130, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:53.904+00', '{"cached":null,"ignore_cache":false}'), +(45131, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:55.097+00', '{"cached":null,"ignore_cache":false}'), +(45132, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:55.574+00', '{"cached":null,"ignore_cache":false}'), +(45133, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:56.989+00', '{"cached":null,"ignore_cache":false}'), +(45134, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:57.059+00', '{"cached":null,"ignore_cache":false}'), +(45135, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:58.592+00', '{"cached":null,"ignore_cache":false}'), +(45136, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:58.634+00', '{"cached":null,"ignore_cache":false}'), +(45137, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:58.742+00', '{"cached":null,"ignore_cache":false}'), +(45138, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:58.892+00', '{"cached":null,"ignore_cache":false}'), +(45139, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.002+00', '{"cached":null,"ignore_cache":false}'), +(45140, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.015+00', '{"cached":null,"ignore_cache":false}'), +(45141, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.115+00', '{"cached":null,"ignore_cache":false}'), +(45142, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.12+00', '{"cached":null,"ignore_cache":false}'), +(45143, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.122+00', '{"cached":null,"ignore_cache":false}'), +(45144, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.337+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45145, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.339+00', '{"cached":null,"ignore_cache":false}'), +(45146, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.401+00', '{"cached":null,"ignore_cache":false}'), +(45147, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.718+00', '{"cached":null,"ignore_cache":false}'), +(45148, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.732+00', '{"cached":null,"ignore_cache":false}'), +(45149, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.817+00', '{"cached":null,"ignore_cache":false}'), +(45150, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.819+00', '{"cached":null,"ignore_cache":false}'), +(45151, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.892+00', '{"cached":null,"ignore_cache":false}'), +(45152, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.898+00', '{"cached":null,"ignore_cache":false}'), +(45153, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:26:59.939+00', '{"cached":null,"ignore_cache":false}'), +(45154, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:27:00.191+00', '{"cached":null,"ignore_cache":false}'), +(45155, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:27:00.229+00', '{"cached":null,"ignore_cache":false}'), +(45156, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:27:02.271+00', '{"cached":null,"ignore_cache":false}'), +(45157, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:27:02.306+00', '{"cached":null,"ignore_cache":false}'), +(45158, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:27:02.495+00', '{"cached":null,"ignore_cache":false}'), +(45159, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:27:02.508+00', '{"cached":null,"ignore_cache":false}'), +(45160, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:56.468+00', '{"cached":null,"ignore_cache":false}'), +(45161, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:58.856+00', '{"cached":null,"ignore_cache":false}'), +(45162, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.037+00', '{"cached":null,"ignore_cache":false}'), +(45163, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.06+00', '{"cached":null,"ignore_cache":false}'), +(45164, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.191+00', '{"cached":null,"ignore_cache":false}'), +(45165, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.425+00', '{"cached":null,"ignore_cache":false}'), +(45166, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.637+00', '{"cached":null,"ignore_cache":false}'), +(45167, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.739+00', '{"cached":null,"ignore_cache":false}'), +(45168, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.889+00', '{"cached":null,"ignore_cache":false}'), +(45169, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 10:31:59.97+00', '{"cached":null,"ignore_cache":false}'), +(45170, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 10:32:00.07+00', '{"cached":null,"ignore_cache":false}'), +(45171, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 10:32:00.092+00', '{"cached":null,"ignore_cache":false}'), +(45172, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 10:32:00.182+00', '{"cached":null,"ignore_cache":false}'), +(45173, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 10:32:00.377+00', '{"cached":null,"ignore_cache":false}'), +(45174, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 10:32:02.704+00', '{"cached":null,"ignore_cache":false}'), +(45175, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 10:32:02.76+00', '{"cached":null,"ignore_cache":false}'), +(45176, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:38.307+00', '{"cached":null,"ignore_cache":false}'), +(45177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:38.824+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45178, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:41.491+00', '{"cached":null,"ignore_cache":false}'), +(45179, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:41.557+00', '{"cached":null,"ignore_cache":false}'), +(45180, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:44.066+00', '{"cached":null,"ignore_cache":false}'), +(45181, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:44.263+00', '{"cached":null,"ignore_cache":false}'), +(45182, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:44.46+00', '{"cached":null,"ignore_cache":false}'), +(45183, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:44.591+00', '{"cached":null,"ignore_cache":false}'), +(45184, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:44.965+00', '{"cached":null,"ignore_cache":false}'), +(45185, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:44.979+00', '{"cached":null,"ignore_cache":false}'), +(45186, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:45.015+00', '{"cached":null,"ignore_cache":false}'), +(45187, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:45.067+00', '{"cached":null,"ignore_cache":false}'), +(45188, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:45.327+00', '{"cached":null,"ignore_cache":false}'), +(45189, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:45.83+00', '{"cached":null,"ignore_cache":false}'), +(45190, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:45.91+00', '{"cached":null,"ignore_cache":false}'), +(45191, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.063+00', '{"cached":null,"ignore_cache":false}'), +(45192, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.111+00', '{"cached":null,"ignore_cache":false}'), +(45193, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.121+00', '{"cached":null,"ignore_cache":false}'), +(45194, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.443+00', '{"cached":null,"ignore_cache":false}'), +(45195, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.522+00', '{"cached":null,"ignore_cache":false}'), +(45196, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.563+00', '{"cached":null,"ignore_cache":false}'), +(45197, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.564+00', '{"cached":null,"ignore_cache":false}'), +(45198, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.712+00', '{"cached":null,"ignore_cache":false}'), +(45199, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.732+00', '{"cached":null,"ignore_cache":false}'), +(45200, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.738+00', '{"cached":null,"ignore_cache":false}'), +(45201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.75+00', '{"cached":null,"ignore_cache":false}'), +(45202, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.79+00', '{"cached":null,"ignore_cache":false}'), +(45203, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:46.971+00', '{"cached":null,"ignore_cache":false}'), +(45204, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:47.719+00', '{"cached":null,"ignore_cache":false}'), +(45205, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:47.786+00', '{"cached":null,"ignore_cache":false}'), +(45206, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:48.01+00', '{"cached":null,"ignore_cache":false}'), +(45207, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 11:03:48.055+00', '{"cached":null,"ignore_cache":false}'), +(45208, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:39.363+00', '{"cached":null,"ignore_cache":false}'), +(45209, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:41.645+00', '{"cached":null,"ignore_cache":false}'), +(45210, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:42.427+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45211, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:42.439+00', '{"cached":null,"ignore_cache":false}'), +(45212, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:42.469+00', '{"cached":null,"ignore_cache":false}'), +(45213, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:42.708+00', '{"cached":null,"ignore_cache":false}'), +(45214, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:42.814+00', '{"cached":null,"ignore_cache":false}'), +(45215, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:42.948+00', '{"cached":null,"ignore_cache":false}'), +(45216, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:43.166+00', '{"cached":null,"ignore_cache":false}'), +(45217, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:43.385+00', '{"cached":null,"ignore_cache":false}'), +(45218, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:43.486+00', '{"cached":null,"ignore_cache":false}'), +(45219, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:43.566+00', '{"cached":null,"ignore_cache":false}'), +(45220, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:43.654+00', '{"cached":null,"ignore_cache":false}'), +(45221, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:43.76+00', '{"cached":null,"ignore_cache":false}'), +(45222, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:45.736+00', '{"cached":null,"ignore_cache":false}'), +(45223, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 11:08:45.796+00', '{"cached":null,"ignore_cache":false}'), +(45224, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:35.001+00', '{"cached":null,"ignore_cache":false}'), +(45225, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:36.643+00', '{"cached":null,"ignore_cache":false}'), +(45226, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:36.754+00', '{"cached":null,"ignore_cache":false}'), +(45227, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:36.798+00', '{"cached":null,"ignore_cache":false}'), +(45228, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:36.812+00', '{"cached":null,"ignore_cache":false}'), +(45229, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.027+00', '{"cached":null,"ignore_cache":false}'), +(45230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.057+00', '{"cached":null,"ignore_cache":false}'), +(45231, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.093+00', '{"cached":null,"ignore_cache":false}'), +(45232, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.107+00', '{"cached":null,"ignore_cache":false}'), +(45233, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.109+00', '{"cached":null,"ignore_cache":false}'), +(45234, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.128+00', '{"cached":null,"ignore_cache":false}'), +(45235, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.13+00', '{"cached":null,"ignore_cache":false}'), +(45236, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.131+00', '{"cached":null,"ignore_cache":false}'), +(45237, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:37.162+00', '{"cached":null,"ignore_cache":false}'), +(45238, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:38.01+00', '{"cached":null,"ignore_cache":false}'), +(45239, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 11:13:38.026+00', '{"cached":null,"ignore_cache":false}'), +(45240, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:37.81+00', '{"cached":null,"ignore_cache":false}'), +(45241, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:39.56+00', '{"cached":null,"ignore_cache":false}'), +(45242, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.26+00', '{"cached":null,"ignore_cache":false}'), +(45243, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.406+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45244, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.445+00', '{"cached":null,"ignore_cache":false}'), +(45245, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.799+00', '{"cached":null,"ignore_cache":false}'), +(45246, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.801+00', '{"cached":null,"ignore_cache":false}'), +(45247, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.871+00', '{"cached":null,"ignore_cache":false}'), +(45248, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.882+00', '{"cached":null,"ignore_cache":false}'), +(45249, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.899+00', '{"cached":null,"ignore_cache":false}'), +(45250, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:40.903+00', '{"cached":null,"ignore_cache":false}'), +(45251, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:41.085+00', '{"cached":null,"ignore_cache":false}'), +(45252, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:41.103+00', '{"cached":null,"ignore_cache":false}'), +(45253, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:41.111+00', '{"cached":null,"ignore_cache":false}'), +(45254, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:43.152+00', '{"cached":null,"ignore_cache":false}'), +(45255, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 11:18:43.186+00', '{"cached":null,"ignore_cache":false}'), +(45256, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:41.951+00', '{"cached":null,"ignore_cache":false}'), +(45257, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:42.037+00', '{"cached":null,"ignore_cache":false}'), +(45258, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:44.344+00', '{"cached":null,"ignore_cache":false}'), +(45259, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:44.387+00', '{"cached":null,"ignore_cache":false}'), +(45260, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:45.468+00', '{"cached":null,"ignore_cache":false}'), +(45261, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:45.598+00', '{"cached":null,"ignore_cache":false}'), +(45262, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:45.706+00', '{"cached":null,"ignore_cache":false}'), +(45263, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:45.733+00', '{"cached":null,"ignore_cache":false}'), +(45264, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:45.761+00', '{"cached":null,"ignore_cache":false}'), +(45265, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:45.905+00', '{"cached":null,"ignore_cache":false}'), +(45266, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.178+00', '{"cached":null,"ignore_cache":false}'), +(45267, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.317+00', '{"cached":null,"ignore_cache":false}'), +(45268, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.326+00', '{"cached":null,"ignore_cache":false}'), +(45269, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.469+00', '{"cached":null,"ignore_cache":false}'), +(45270, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.472+00', '{"cached":null,"ignore_cache":false}'), +(45271, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.494+00', '{"cached":null,"ignore_cache":false}'), +(45272, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.507+00', '{"cached":null,"ignore_cache":false}'), +(45273, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.606+00', '{"cached":null,"ignore_cache":false}'), +(45274, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.612+00', '{"cached":null,"ignore_cache":false}'), +(45275, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.614+00', '{"cached":null,"ignore_cache":false}'), +(45276, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.617+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45277, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.619+00', '{"cached":null,"ignore_cache":false}'), +(45278, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.637+00', '{"cached":null,"ignore_cache":false}'), +(45279, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.657+00', '{"cached":null,"ignore_cache":false}'), +(45280, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.669+00', '{"cached":null,"ignore_cache":false}'), +(45281, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.67+00', '{"cached":null,"ignore_cache":false}'), +(45282, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.671+00', '{"cached":null,"ignore_cache":false}'), +(45283, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:47.681+00', '{"cached":null,"ignore_cache":false}'), +(45284, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:49.356+00', '{"cached":null,"ignore_cache":false}'), +(45285, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:49.382+00', '{"cached":null,"ignore_cache":false}'), +(45286, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:49.666+00', '{"cached":null,"ignore_cache":false}'), +(45287, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:26:49.675+00', '{"cached":null,"ignore_cache":false}'), +(45288, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:40.017+00', '{"cached":null,"ignore_cache":false}'), +(45289, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:41.756+00', '{"cached":null,"ignore_cache":false}'), +(45290, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:42.743+00', '{"cached":null,"ignore_cache":false}'), +(45291, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:42.751+00', '{"cached":null,"ignore_cache":false}'), +(45292, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:42.853+00', '{"cached":null,"ignore_cache":false}'), +(45293, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:43.457+00', '{"cached":null,"ignore_cache":false}'), +(45294, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:43.505+00', '{"cached":null,"ignore_cache":false}'), +(45295, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:43.53+00', '{"cached":null,"ignore_cache":false}'), +(45296, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:43.617+00', '{"cached":null,"ignore_cache":false}'), +(45297, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:43.656+00', '{"cached":null,"ignore_cache":false}'), +(45298, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:44.176+00', '{"cached":null,"ignore_cache":false}'), +(45299, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:44.214+00', '{"cached":null,"ignore_cache":false}'), +(45300, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:44.254+00', '{"cached":null,"ignore_cache":false}'), +(45301, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:44.262+00', '{"cached":null,"ignore_cache":false}'), +(45302, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:46.207+00', '{"cached":null,"ignore_cache":false}'), +(45303, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:31:46.28+00', '{"cached":null,"ignore_cache":false}'), +(45304, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:40.149+00', '{"cached":null,"ignore_cache":false}'), +(45305, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:40.897+00', '{"cached":null,"ignore_cache":false}'), +(45306, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.308+00', '{"cached":null,"ignore_cache":false}'), +(45307, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.34+00', '{"cached":null,"ignore_cache":false}'), +(45308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.347+00', '{"cached":null,"ignore_cache":false}'), +(45309, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.852+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45310, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.918+00', '{"cached":null,"ignore_cache":false}'), +(45311, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.951+00', '{"cached":null,"ignore_cache":false}'), +(45312, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.963+00', '{"cached":null,"ignore_cache":false}'), +(45313, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:42.994+00', '{"cached":null,"ignore_cache":false}'), +(45314, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:43.017+00', '{"cached":null,"ignore_cache":false}'), +(45315, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:43.02+00', '{"cached":null,"ignore_cache":false}'), +(45316, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:43.048+00', '{"cached":null,"ignore_cache":false}'), +(45317, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:43.104+00', '{"cached":null,"ignore_cache":false}'), +(45318, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:44.681+00', '{"cached":null,"ignore_cache":false}'), +(45319, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:36:44.737+00', '{"cached":null,"ignore_cache":false}'), +(45320, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:42.647+00', '{"cached":null,"ignore_cache":false}'), +(45321, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:43.377+00', '{"cached":null,"ignore_cache":false}'), +(45322, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:44.123+00', '{"cached":null,"ignore_cache":false}'), +(45323, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:44.132+00', '{"cached":null,"ignore_cache":false}'), +(45324, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:44.465+00', '{"cached":null,"ignore_cache":false}'), +(45325, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:44.605+00', '{"cached":null,"ignore_cache":false}'), +(45326, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:45.005+00', '{"cached":null,"ignore_cache":false}'), +(45327, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:45.007+00', '{"cached":null,"ignore_cache":false}'), +(45328, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:46.472+00', '{"cached":null,"ignore_cache":false}'), +(45329, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:47.375+00', '{"cached":null,"ignore_cache":false}'), +(45330, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:47.716+00', '{"cached":null,"ignore_cache":false}'), +(45331, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:48.028+00', '{"cached":null,"ignore_cache":false}'), +(45332, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:48.759+00', '{"cached":null,"ignore_cache":false}'), +(45333, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:48.841+00', '{"cached":null,"ignore_cache":false}'), +(45334, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:48.897+00', '{"cached":null,"ignore_cache":false}'), +(45335, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.393+00', '{"cached":null,"ignore_cache":false}'), +(45336, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.406+00', '{"cached":null,"ignore_cache":false}'), +(45337, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.605+00', '{"cached":null,"ignore_cache":false}'), +(45338, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.705+00', '{"cached":null,"ignore_cache":false}'), +(45339, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.75+00', '{"cached":null,"ignore_cache":false}'), +(45340, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.761+00', '{"cached":null,"ignore_cache":false}'), +(45341, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.766+00', '{"cached":null,"ignore_cache":false}'), +(45342, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.775+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45343, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.796+00', '{"cached":null,"ignore_cache":false}'), +(45344, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.833+00', '{"cached":null,"ignore_cache":false}'), +(45345, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.835+00', '{"cached":null,"ignore_cache":false}'), +(45346, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.892+00', '{"cached":null,"ignore_cache":false}'), +(45347, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:49.901+00', '{"cached":null,"ignore_cache":false}'), +(45348, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:51.179+00', '{"cached":null,"ignore_cache":false}'), +(45349, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:51.272+00', '{"cached":null,"ignore_cache":false}'), +(45350, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:51.624+00', '{"cached":null,"ignore_cache":false}'), +(45351, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:37:51.633+00', '{"cached":null,"ignore_cache":false}'), +(45352, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:38.984+00', '{"cached":null,"ignore_cache":false}'), +(45353, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:40.219+00', '{"cached":null,"ignore_cache":false}'), +(45354, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.08+00', '{"cached":null,"ignore_cache":false}'), +(45355, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.096+00', '{"cached":null,"ignore_cache":false}'), +(45356, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.14+00', '{"cached":null,"ignore_cache":false}'), +(45357, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.364+00', '{"cached":null,"ignore_cache":false}'), +(45358, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.371+00', '{"cached":null,"ignore_cache":false}'), +(45359, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.464+00', '{"cached":null,"ignore_cache":false}'), +(45360, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.469+00', '{"cached":null,"ignore_cache":false}'), +(45361, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.518+00', '{"cached":null,"ignore_cache":false}'), +(45362, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.526+00', '{"cached":null,"ignore_cache":false}'), +(45363, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.529+00', '{"cached":null,"ignore_cache":false}'), +(45364, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.533+00', '{"cached":null,"ignore_cache":false}'), +(45365, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:41.536+00', '{"cached":null,"ignore_cache":false}'), +(45366, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:42.267+00', '{"cached":null,"ignore_cache":false}'), +(45367, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:41:42.296+00', '{"cached":null,"ignore_cache":false}'), +(45368, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:46.022+00', '{"cached":null,"ignore_cache":false}'), +(45369, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:47.196+00', '{"cached":null,"ignore_cache":false}'), +(45370, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:47.217+00', '{"cached":null,"ignore_cache":false}'), +(45371, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:47.219+00', '{"cached":null,"ignore_cache":false}'), +(45372, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.216+00', '{"cached":null,"ignore_cache":false}'), +(45373, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.394+00', '{"cached":null,"ignore_cache":false}'), +(45374, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.647+00', '{"cached":null,"ignore_cache":false}'), +(45375, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.715+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45376, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.726+00', '{"cached":null,"ignore_cache":false}'), +(45377, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.765+00', '{"cached":null,"ignore_cache":false}'), +(45378, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.928+00', '{"cached":null,"ignore_cache":false}'), +(45379, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.937+00', '{"cached":null,"ignore_cache":false}'), +(45380, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.963+00', '{"cached":null,"ignore_cache":false}'), +(45381, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:49.973+00', '{"cached":null,"ignore_cache":false}'), +(45382, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:51.328+00', '{"cached":null,"ignore_cache":false}'), +(45383, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:42:51.444+00', '{"cached":null,"ignore_cache":false}'), +(45384, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:36.904+00', '{"cached":null,"ignore_cache":false}'), +(45385, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:36.948+00', '{"cached":null,"ignore_cache":false}'), +(45386, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.467+00', '{"cached":null,"ignore_cache":false}'), +(45387, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:38.52+00', '{"cached":null,"ignore_cache":false}'), +(45388, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:39.611+00', '{"cached":null,"ignore_cache":false}'), +(45389, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:39.632+00', '{"cached":null,"ignore_cache":false}'), +(45390, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:41.128+00', '{"cached":null,"ignore_cache":false}'), +(45391, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:41.21+00', '{"cached":null,"ignore_cache":false}'), +(45392, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:41.625+00', '{"cached":null,"ignore_cache":false}'), +(45393, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:41.86+00', '{"cached":null,"ignore_cache":false}'), +(45394, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:41.967+00', '{"cached":null,"ignore_cache":false}'), +(45395, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:41.978+00', '{"cached":null,"ignore_cache":false}'), +(45396, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:42.181+00', '{"cached":null,"ignore_cache":false}'), +(45397, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:42.798+00', '{"cached":null,"ignore_cache":false}'), +(45398, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:42.96+00', '{"cached":null,"ignore_cache":false}'), +(45399, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:43.06+00', '{"cached":null,"ignore_cache":false}'), +(45400, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:43.151+00', '{"cached":null,"ignore_cache":false}'), +(45401, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:43.396+00', '{"cached":null,"ignore_cache":false}'), +(45402, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:43.473+00', '{"cached":null,"ignore_cache":false}'), +(45403, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:43.497+00', '{"cached":null,"ignore_cache":false}'), +(45404, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:43.529+00', '{"cached":null,"ignore_cache":false}'), +(45405, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:43.545+00', '{"cached":null,"ignore_cache":false}'), +(45406, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:46.379+00', '{"cached":null,"ignore_cache":false}'), +(45407, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:46.385+00', '{"cached":null,"ignore_cache":false}'), +(45408, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:46.4+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45409, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:48:46.457+00', '{"cached":null,"ignore_cache":false}'), +(45410, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:12.85+00', '{"cached":null,"ignore_cache":false}'), +(45411, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:12.872+00', '{"cached":null,"ignore_cache":false}'), +(45412, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.178+00', '{"cached":null,"ignore_cache":false}'), +(45413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.313+00', '{"cached":null,"ignore_cache":false}'), +(45414, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.384+00', '{"cached":null,"ignore_cache":false}'), +(45415, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.598+00', '{"cached":null,"ignore_cache":false}'), +(45416, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.723+00', '{"cached":null,"ignore_cache":false}'), +(45417, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.808+00', '{"cached":null,"ignore_cache":false}'), +(45418, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.81+00', '{"cached":null,"ignore_cache":false}'), +(45419, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.862+00', '{"cached":null,"ignore_cache":false}'), +(45420, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.866+00', '{"cached":null,"ignore_cache":false}'), +(45421, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.878+00', '{"cached":null,"ignore_cache":false}'), +(45422, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:16.951+00', '{"cached":null,"ignore_cache":false}'), +(45423, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:17.025+00', '{"cached":null,"ignore_cache":false}'), +(45424, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:18.236+00', '{"cached":null,"ignore_cache":false}'), +(45425, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:49:18.247+00', '{"cached":null,"ignore_cache":false}'), +(45426, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:39.169+00', '{"cached":null,"ignore_cache":false}'), +(45427, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:40.567+00', '{"cached":null,"ignore_cache":false}'), +(45428, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:40.625+00', '{"cached":null,"ignore_cache":false}'), +(45429, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:40.653+00', '{"cached":null,"ignore_cache":false}'), +(45430, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.186+00', '{"cached":null,"ignore_cache":false}'), +(45431, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.398+00', '{"cached":null,"ignore_cache":false}'), +(45432, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.558+00', '{"cached":null,"ignore_cache":false}'), +(45433, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.572+00', '{"cached":null,"ignore_cache":false}'), +(45434, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.573+00', '{"cached":null,"ignore_cache":false}'), +(45435, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.58+00', '{"cached":null,"ignore_cache":false}'), +(45436, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.598+00', '{"cached":null,"ignore_cache":false}'), +(45437, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.636+00', '{"cached":null,"ignore_cache":false}'), +(45438, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.672+00', '{"cached":null,"ignore_cache":false}'), +(45439, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:42.694+00', '{"cached":null,"ignore_cache":false}'), +(45440, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:43.393+00', '{"cached":null,"ignore_cache":false}'), +(45441, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:53:43.456+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45442, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:12.338+00', '{"cached":null,"ignore_cache":false}'), +(45443, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:14.264+00', '{"cached":null,"ignore_cache":false}'), +(45444, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:14.903+00', '{"cached":null,"ignore_cache":false}'), +(45445, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:14.918+00', '{"cached":null,"ignore_cache":false}'), +(45446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.124+00', '{"cached":null,"ignore_cache":false}'), +(45447, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.274+00', '{"cached":null,"ignore_cache":false}'), +(45448, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.351+00', '{"cached":null,"ignore_cache":false}'), +(45449, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.36+00', '{"cached":null,"ignore_cache":false}'), +(45450, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.494+00', '{"cached":null,"ignore_cache":false}'), +(45451, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.519+00', '{"cached":null,"ignore_cache":false}'), +(45452, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.604+00', '{"cached":null,"ignore_cache":false}'), +(45453, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.609+00', '{"cached":null,"ignore_cache":false}'), +(45454, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.644+00', '{"cached":null,"ignore_cache":false}'), +(45455, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:15.673+00', '{"cached":null,"ignore_cache":false}'), +(45456, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:16.45+00', '{"cached":null,"ignore_cache":false}'), +(45457, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:54:16.497+00', '{"cached":null,"ignore_cache":false}'), +(45458, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:38.416+00', '{"cached":null,"ignore_cache":false}'), +(45459, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:39.002+00', '{"cached":null,"ignore_cache":false}'), +(45460, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:39.054+00', '{"cached":null,"ignore_cache":false}'), +(45461, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:39.065+00', '{"cached":null,"ignore_cache":false}'), +(45462, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:39.882+00', '{"cached":null,"ignore_cache":false}'), +(45463, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.189+00', '{"cached":null,"ignore_cache":false}'), +(45464, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.226+00', '{"cached":null,"ignore_cache":false}'), +(45465, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.409+00', '{"cached":null,"ignore_cache":false}'), +(45466, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.419+00', '{"cached":null,"ignore_cache":false}'), +(45467, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.431+00', '{"cached":null,"ignore_cache":false}'), +(45468, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.462+00', '{"cached":null,"ignore_cache":false}'), +(45469, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.47+00', '{"cached":null,"ignore_cache":false}'), +(45470, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.48+00', '{"cached":null,"ignore_cache":false}'), +(45471, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:40.492+00', '{"cached":null,"ignore_cache":false}'), +(45472, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:41.283+00', '{"cached":null,"ignore_cache":false}'), +(45473, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:58:41.298+00', '{"cached":null,"ignore_cache":false}'), +(45474, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:12.305+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45475, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:13.939+00', '{"cached":null,"ignore_cache":false}'), +(45476, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.29+00', '{"cached":null,"ignore_cache":false}'), +(45477, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.301+00', '{"cached":null,"ignore_cache":false}'), +(45478, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.333+00', '{"cached":null,"ignore_cache":false}'), +(45479, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.781+00', '{"cached":null,"ignore_cache":false}'), +(45480, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.8+00', '{"cached":null,"ignore_cache":false}'), +(45481, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.824+00', '{"cached":null,"ignore_cache":false}'), +(45482, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.834+00', '{"cached":null,"ignore_cache":false}'), +(45483, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.882+00', '{"cached":null,"ignore_cache":false}'), +(45484, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.914+00', '{"cached":null,"ignore_cache":false}'), +(45485, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.92+00', '{"cached":null,"ignore_cache":false}'), +(45486, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.928+00', '{"cached":null,"ignore_cache":false}'), +(45487, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:14.999+00', '{"cached":null,"ignore_cache":false}'), +(45488, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:15.458+00', '{"cached":null,"ignore_cache":false}'), +(45489, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 12:59:15.578+00', '{"cached":null,"ignore_cache":false}'), +(45490, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:38.376+00', '{"cached":null,"ignore_cache":false}'), +(45491, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:39.096+00', '{"cached":null,"ignore_cache":false}'), +(45492, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:39.145+00', '{"cached":null,"ignore_cache":false}'), +(45493, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:39.168+00', '{"cached":null,"ignore_cache":false}'), +(45494, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.377+00', '{"cached":null,"ignore_cache":false}'), +(45495, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.661+00', '{"cached":null,"ignore_cache":false}'), +(45496, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.688+00', '{"cached":null,"ignore_cache":false}'), +(45497, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.705+00', '{"cached":null,"ignore_cache":false}'), +(45498, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.823+00', '{"cached":null,"ignore_cache":false}'), +(45499, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.843+00', '{"cached":null,"ignore_cache":false}'), +(45500, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.878+00', '{"cached":null,"ignore_cache":false}'), +(45501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.91+00', '{"cached":null,"ignore_cache":false}'), +(45502, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.917+00', '{"cached":null,"ignore_cache":false}'), +(45503, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:41.952+00', '{"cached":null,"ignore_cache":false}'), +(45504, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:43.26+00', '{"cached":null,"ignore_cache":false}'), +(45505, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:03:43.29+00', '{"cached":null,"ignore_cache":false}'), +(45506, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:12.589+00', '{"cached":null,"ignore_cache":false}'), +(45507, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:13.681+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45508, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:13.891+00', '{"cached":null,"ignore_cache":false}'), +(45509, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:13.924+00', '{"cached":null,"ignore_cache":false}'), +(45510, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.031+00', '{"cached":null,"ignore_cache":false}'), +(45511, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.306+00', '{"cached":null,"ignore_cache":false}'), +(45512, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.329+00', '{"cached":null,"ignore_cache":false}'), +(45513, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.361+00', '{"cached":null,"ignore_cache":false}'), +(45514, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.395+00', '{"cached":null,"ignore_cache":false}'), +(45515, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.413+00', '{"cached":null,"ignore_cache":false}'), +(45516, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.49+00', '{"cached":null,"ignore_cache":false}'), +(45517, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.535+00', '{"cached":null,"ignore_cache":false}'), +(45518, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.577+00', '{"cached":null,"ignore_cache":false}'), +(45519, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:14.664+00', '{"cached":null,"ignore_cache":false}'), +(45520, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:15.222+00', '{"cached":null,"ignore_cache":false}'), +(45521, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:04:15.262+00', '{"cached":null,"ignore_cache":false}'), +(45522, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:37.32+00', '{"cached":null,"ignore_cache":false}'), +(45523, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:37.838+00', '{"cached":null,"ignore_cache":false}'), +(45524, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:37.87+00', '{"cached":null,"ignore_cache":false}'), +(45525, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:37.879+00', '{"cached":null,"ignore_cache":false}'), +(45526, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:38.622+00', '{"cached":null,"ignore_cache":false}'), +(45527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:38.797+00', '{"cached":null,"ignore_cache":false}'), +(45528, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:38.867+00', '{"cached":null,"ignore_cache":false}'), +(45529, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:38.982+00', '{"cached":null,"ignore_cache":false}'), +(45530, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:39.02+00', '{"cached":null,"ignore_cache":false}'), +(45531, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:39.066+00', '{"cached":null,"ignore_cache":false}'), +(45532, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:39.122+00', '{"cached":null,"ignore_cache":false}'), +(45533, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:39.133+00', '{"cached":null,"ignore_cache":false}'), +(45534, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:39.189+00', '{"cached":null,"ignore_cache":false}'), +(45535, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:39.222+00', '{"cached":null,"ignore_cache":false}'), +(45536, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:40.368+00', '{"cached":null,"ignore_cache":false}'), +(45537, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:08:40.405+00', '{"cached":null,"ignore_cache":false}'), +(45538, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:12.704+00', '{"cached":null,"ignore_cache":false}'), +(45539, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:14.325+00', '{"cached":null,"ignore_cache":false}'), +(45540, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:14.99+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45541, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.007+00', '{"cached":null,"ignore_cache":false}'), +(45542, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.011+00', '{"cached":null,"ignore_cache":false}'), +(45543, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.143+00', '{"cached":null,"ignore_cache":false}'), +(45544, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.257+00', '{"cached":null,"ignore_cache":false}'), +(45545, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.286+00', '{"cached":null,"ignore_cache":false}'), +(45546, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.3+00', '{"cached":null,"ignore_cache":false}'), +(45547, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.32+00', '{"cached":null,"ignore_cache":false}'), +(45548, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.351+00', '{"cached":null,"ignore_cache":false}'), +(45549, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.409+00', '{"cached":null,"ignore_cache":false}'), +(45550, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.41+00', '{"cached":null,"ignore_cache":false}'), +(45551, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.42+00', '{"cached":null,"ignore_cache":false}'), +(45552, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.951+00', '{"cached":null,"ignore_cache":false}'), +(45553, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:09:15.962+00', '{"cached":null,"ignore_cache":false}'), +(45554, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:36.31+00', '{"cached":null,"ignore_cache":false}'), +(45555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:37.545+00', '{"cached":null,"ignore_cache":false}'), +(45556, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:37.554+00', '{"cached":null,"ignore_cache":false}'), +(45557, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:37.602+00', '{"cached":null,"ignore_cache":false}'), +(45558, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.13+00', '{"cached":null,"ignore_cache":false}'), +(45559, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.362+00', '{"cached":null,"ignore_cache":false}'), +(45560, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.526+00', '{"cached":null,"ignore_cache":false}'), +(45561, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.67+00', '{"cached":null,"ignore_cache":false}'), +(45562, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.726+00', '{"cached":null,"ignore_cache":false}'), +(45563, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.731+00', '{"cached":null,"ignore_cache":false}'), +(45564, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.777+00', '{"cached":null,"ignore_cache":false}'), +(45565, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.796+00', '{"cached":null,"ignore_cache":false}'), +(45566, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.833+00', '{"cached":null,"ignore_cache":false}'), +(45567, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:38.928+00', '{"cached":null,"ignore_cache":false}'), +(45568, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:40.129+00', '{"cached":null,"ignore_cache":false}'), +(45569, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:13:40.206+00', '{"cached":null,"ignore_cache":false}'), +(45570, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:12.571+00', '{"cached":null,"ignore_cache":false}'), +(45571, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:13.928+00', '{"cached":null,"ignore_cache":false}'), +(45572, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.455+00', '{"cached":null,"ignore_cache":false}'), +(45573, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.499+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45574, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.563+00', '{"cached":null,"ignore_cache":false}'), +(45575, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.866+00', '{"cached":null,"ignore_cache":false}'), +(45576, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.884+00', '{"cached":null,"ignore_cache":false}'), +(45577, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.944+00', '{"cached":null,"ignore_cache":false}'), +(45578, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.947+00', '{"cached":null,"ignore_cache":false}'), +(45579, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.956+00', '{"cached":null,"ignore_cache":false}'), +(45580, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.967+00', '{"cached":null,"ignore_cache":false}'), +(45581, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:14.982+00', '{"cached":null,"ignore_cache":false}'), +(45582, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:15.013+00', '{"cached":null,"ignore_cache":false}'), +(45583, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:15.055+00', '{"cached":null,"ignore_cache":false}'), +(45584, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:15.352+00', '{"cached":null,"ignore_cache":false}'), +(45585, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:14:15.368+00', '{"cached":null,"ignore_cache":false}'), +(45586, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:37.753+00', '{"cached":null,"ignore_cache":false}'), +(45587, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:38.564+00', '{"cached":null,"ignore_cache":false}'), +(45588, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:38.584+00', '{"cached":null,"ignore_cache":false}'), +(45589, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:38.631+00', '{"cached":null,"ignore_cache":false}'), +(45590, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:39.624+00', '{"cached":null,"ignore_cache":false}'), +(45591, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:39.92+00', '{"cached":null,"ignore_cache":false}'), +(45592, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:39.938+00', '{"cached":null,"ignore_cache":false}'), +(45593, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:39.976+00', '{"cached":null,"ignore_cache":false}'), +(45594, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:40.007+00', '{"cached":null,"ignore_cache":false}'), +(45595, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:40.041+00', '{"cached":null,"ignore_cache":false}'), +(45596, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:40.149+00', '{"cached":null,"ignore_cache":false}'), +(45597, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:40.187+00', '{"cached":null,"ignore_cache":false}'), +(45598, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:40.196+00', '{"cached":null,"ignore_cache":false}'), +(45599, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:40.221+00', '{"cached":null,"ignore_cache":false}'), +(45600, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:41.183+00', '{"cached":null,"ignore_cache":false}'), +(45601, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:18:41.241+00', '{"cached":null,"ignore_cache":false}'), +(45602, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:13.216+00', '{"cached":null,"ignore_cache":false}'), +(45603, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:14.639+00', '{"cached":null,"ignore_cache":false}'), +(45604, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.495+00', '{"cached":null,"ignore_cache":false}'), +(45605, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.578+00', '{"cached":null,"ignore_cache":false}'), +(45606, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.635+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45607, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.711+00', '{"cached":null,"ignore_cache":false}'), +(45608, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.812+00', '{"cached":null,"ignore_cache":false}'), +(45609, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.905+00', '{"cached":null,"ignore_cache":false}'), +(45610, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.908+00', '{"cached":null,"ignore_cache":false}'), +(45611, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.927+00', '{"cached":null,"ignore_cache":false}'), +(45612, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.94+00', '{"cached":null,"ignore_cache":false}'), +(45613, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.944+00', '{"cached":null,"ignore_cache":false}'), +(45614, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:15.981+00', '{"cached":null,"ignore_cache":false}'), +(45615, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:16.011+00', '{"cached":null,"ignore_cache":false}'), +(45616, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:17.148+00', '{"cached":null,"ignore_cache":false}'), +(45617, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:19:17.165+00', '{"cached":null,"ignore_cache":false}'), +(45618, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:37.517+00', '{"cached":null,"ignore_cache":false}'), +(45619, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:38.233+00', '{"cached":null,"ignore_cache":false}'), +(45620, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:38.251+00', '{"cached":null,"ignore_cache":false}'), +(45621, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:38.304+00', '{"cached":null,"ignore_cache":false}'), +(45622, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:38.74+00', '{"cached":null,"ignore_cache":false}'), +(45623, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:38.927+00', '{"cached":null,"ignore_cache":false}'), +(45624, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.11+00', '{"cached":null,"ignore_cache":false}'), +(45625, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.176+00', '{"cached":null,"ignore_cache":false}'), +(45626, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.264+00', '{"cached":null,"ignore_cache":false}'), +(45627, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.273+00', '{"cached":null,"ignore_cache":false}'), +(45628, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.297+00', '{"cached":null,"ignore_cache":false}'), +(45629, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.361+00', '{"cached":null,"ignore_cache":false}'), +(45630, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.371+00', '{"cached":null,"ignore_cache":false}'), +(45631, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:39.415+00', '{"cached":null,"ignore_cache":false}'), +(45632, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:40.692+00', '{"cached":null,"ignore_cache":false}'), +(45633, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:23:40.737+00', '{"cached":null,"ignore_cache":false}'), +(45634, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:38.058+00', '{"cached":null,"ignore_cache":false}'), +(45635, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:38.698+00', '{"cached":null,"ignore_cache":false}'), +(45636, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:38.712+00', '{"cached":null,"ignore_cache":false}'), +(45637, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:38.726+00', '{"cached":null,"ignore_cache":false}'), +(45638, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.089+00', '{"cached":null,"ignore_cache":false}'), +(45639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.483+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45640, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.556+00', '{"cached":null,"ignore_cache":false}'), +(45641, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.584+00', '{"cached":null,"ignore_cache":false}'), +(45642, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.708+00', '{"cached":null,"ignore_cache":false}'), +(45643, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.728+00', '{"cached":null,"ignore_cache":false}'), +(45644, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.791+00', '{"cached":null,"ignore_cache":false}'), +(45645, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.813+00', '{"cached":null,"ignore_cache":false}'), +(45646, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.816+00', '{"cached":null,"ignore_cache":false}'), +(45647, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:40.842+00', '{"cached":null,"ignore_cache":false}'), +(45648, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:42.4+00', '{"cached":null,"ignore_cache":false}'), +(45649, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:28:42.426+00', '{"cached":null,"ignore_cache":false}'), +(45650, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:36.201+00', '{"cached":null,"ignore_cache":false}'), +(45651, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:36.988+00', '{"cached":null,"ignore_cache":false}'), +(45652, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:36.993+00', '{"cached":null,"ignore_cache":false}'), +(45653, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:36.997+00', '{"cached":null,"ignore_cache":false}'), +(45654, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:37.59+00', '{"cached":null,"ignore_cache":false}'), +(45655, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:37.753+00', '{"cached":null,"ignore_cache":false}'), +(45656, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:37.844+00', '{"cached":null,"ignore_cache":false}'), +(45657, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:37.885+00', '{"cached":null,"ignore_cache":false}'), +(45658, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:37.898+00', '{"cached":null,"ignore_cache":false}'), +(45659, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:38.001+00', '{"cached":null,"ignore_cache":false}'), +(45660, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:38.025+00', '{"cached":null,"ignore_cache":false}'), +(45661, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:38.042+00', '{"cached":null,"ignore_cache":false}'), +(45662, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:38.051+00', '{"cached":null,"ignore_cache":false}'), +(45663, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:38.126+00', '{"cached":null,"ignore_cache":false}'), +(45664, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:39.076+00', '{"cached":null,"ignore_cache":false}'), +(45665, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:33:39.141+00', '{"cached":null,"ignore_cache":false}'), +(45666, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:38.06+00', '{"cached":null,"ignore_cache":false}'), +(45667, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:38.381+00', '{"cached":null,"ignore_cache":false}'), +(45668, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:38.404+00', '{"cached":null,"ignore_cache":false}'), +(45669, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:38.41+00', '{"cached":null,"ignore_cache":false}'), +(45670, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:39.555+00', '{"cached":null,"ignore_cache":false}'), +(45671, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:39.878+00', '{"cached":null,"ignore_cache":false}'), +(45672, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:39.901+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45673, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:39.951+00', '{"cached":null,"ignore_cache":false}'), +(45674, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:39.971+00', '{"cached":null,"ignore_cache":false}'), +(45675, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:40.036+00', '{"cached":null,"ignore_cache":false}'), +(45676, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:40.127+00', '{"cached":null,"ignore_cache":false}'), +(45677, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:40.132+00', '{"cached":null,"ignore_cache":false}'), +(45678, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:40.138+00', '{"cached":null,"ignore_cache":false}'), +(45679, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:40.139+00', '{"cached":null,"ignore_cache":false}'), +(45680, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:42.212+00', '{"cached":null,"ignore_cache":false}'), +(45681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:38:42.225+00', '{"cached":null,"ignore_cache":false}'), +(45682, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:42.216+00', '{"cached":null,"ignore_cache":false}'), +(45683, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:43.212+00', '{"cached":null,"ignore_cache":false}'), +(45684, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:43.24+00', '{"cached":null,"ignore_cache":false}'), +(45685, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:43.241+00', '{"cached":null,"ignore_cache":false}'), +(45686, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.022+00', '{"cached":null,"ignore_cache":false}'), +(45687, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.29+00', '{"cached":null,"ignore_cache":false}'), +(45688, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.532+00', '{"cached":null,"ignore_cache":false}'), +(45689, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.543+00', '{"cached":null,"ignore_cache":false}'), +(45690, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.686+00', '{"cached":null,"ignore_cache":false}'), +(45691, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.713+00', '{"cached":null,"ignore_cache":false}'), +(45692, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.745+00', '{"cached":null,"ignore_cache":false}'), +(45693, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.771+00', '{"cached":null,"ignore_cache":false}'), +(45694, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.782+00', '{"cached":null,"ignore_cache":false}'), +(45695, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:44.794+00', '{"cached":null,"ignore_cache":false}'), +(45696, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:46.108+00', '{"cached":null,"ignore_cache":false}'), +(45697, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:43:46.286+00', '{"cached":null,"ignore_cache":false}'), +(45698, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:36.621+00', '{"cached":null,"ignore_cache":false}'), +(45699, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:37.539+00', '{"cached":null,"ignore_cache":false}'), +(45700, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:37.565+00', '{"cached":null,"ignore_cache":false}'), +(45701, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:37.582+00', '{"cached":null,"ignore_cache":false}'), +(45702, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:38.606+00', '{"cached":null,"ignore_cache":false}'), +(45703, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:38.734+00', '{"cached":null,"ignore_cache":false}'), +(45704, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:38.926+00', '{"cached":null,"ignore_cache":false}'), +(45705, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:39.057+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45706, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:39.164+00', '{"cached":null,"ignore_cache":false}'), +(45707, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:39.198+00', '{"cached":null,"ignore_cache":false}'), +(45708, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:39.241+00', '{"cached":null,"ignore_cache":false}'), +(45709, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:39.27+00', '{"cached":null,"ignore_cache":false}'), +(45710, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:39.473+00', '{"cached":null,"ignore_cache":false}'), +(45711, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:39.508+00', '{"cached":null,"ignore_cache":false}'), +(45712, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:41.318+00', '{"cached":null,"ignore_cache":false}'), +(45713, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:48:41.329+00', '{"cached":null,"ignore_cache":false}'), +(45714, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:35.142+00', '{"cached":null,"ignore_cache":false}'), +(45715, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:35.481+00', '{"cached":null,"ignore_cache":false}'), +(45716, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:37.288+00', '{"cached":null,"ignore_cache":false}'), +(45717, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:37.339+00', '{"cached":null,"ignore_cache":false}'), +(45718, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:40.332+00', '{"cached":null,"ignore_cache":false}'), +(45719, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:40.406+00', '{"cached":null,"ignore_cache":false}'), +(45720, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:40.836+00', '{"cached":null,"ignore_cache":false}'), +(45721, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:40.837+00', '{"cached":null,"ignore_cache":false}'), +(45722, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:40.918+00', '{"cached":null,"ignore_cache":false}'), +(45723, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:40.919+00', '{"cached":null,"ignore_cache":false}'), +(45724, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:41.134+00', '{"cached":null,"ignore_cache":false}'), +(45725, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:41.382+00', '{"cached":null,"ignore_cache":false}'), +(45726, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:41.394+00', '{"cached":null,"ignore_cache":false}'), +(45727, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:41.409+00', '{"cached":null,"ignore_cache":false}'), +(45728, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:41.692+00', '{"cached":null,"ignore_cache":false}'), +(45729, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:41.735+00', '{"cached":null,"ignore_cache":false}'), +(45730, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:41.934+00', '{"cached":null,"ignore_cache":false}'), +(45731, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.253+00', '{"cached":null,"ignore_cache":false}'), +(45732, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.261+00', '{"cached":null,"ignore_cache":false}'), +(45733, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.329+00', '{"cached":null,"ignore_cache":false}'), +(45734, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.559+00', '{"cached":null,"ignore_cache":false}'), +(45735, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.601+00', '{"cached":null,"ignore_cache":false}'), +(45736, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.603+00', '{"cached":null,"ignore_cache":false}'), +(45737, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.604+00', '{"cached":null,"ignore_cache":false}'), +(45738, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.605+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45739, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.612+00', '{"cached":null,"ignore_cache":false}'), +(45740, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.616+00', '{"cached":null,"ignore_cache":false}'), +(45741, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:42.618+00', '{"cached":null,"ignore_cache":false}'), +(45742, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:45.306+00', '{"cached":null,"ignore_cache":false}'), +(45743, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:45.426+00', '{"cached":null,"ignore_cache":false}'), +(45744, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:45.465+00', '{"cached":null,"ignore_cache":false}'), +(45745, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:50:45.475+00', '{"cached":null,"ignore_cache":false}'), +(45746, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:26.259+00', '{"cached":null,"ignore_cache":false}'), +(45747, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:26.288+00', '{"cached":null,"ignore_cache":false}'), +(45748, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:27.734+00', '{"cached":null,"ignore_cache":false}'), +(45749, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:27.801+00', '{"cached":null,"ignore_cache":false}'), +(45750, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:27.807+00', '{"cached":null,"ignore_cache":false}'), +(45751, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:27.808+00', '{"cached":null,"ignore_cache":false}'), +(45752, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:28.178+00', '{"cached":null,"ignore_cache":false}'), +(45753, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:28.216+00', '{"cached":null,"ignore_cache":false}'), +(45754, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.546+00', '{"cached":null,"ignore_cache":false}'), +(45755, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:31.703+00', '{"cached":null,"ignore_cache":false}'), +(45756, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:32.578+00', '{"cached":null,"ignore_cache":false}'), +(45757, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:32.581+00', '{"cached":null,"ignore_cache":false}'), +(45758, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:32.582+00', '{"cached":null,"ignore_cache":false}'), +(45759, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.161+00', '{"cached":null,"ignore_cache":false}'), +(45760, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.387+00', '{"cached":null,"ignore_cache":false}'), +(45761, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.543+00', '{"cached":null,"ignore_cache":false}'), +(45762, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.547+00', '{"cached":null,"ignore_cache":false}'), +(45763, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.55+00', '{"cached":null,"ignore_cache":false}'), +(45764, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.573+00', '{"cached":null,"ignore_cache":false}'), +(45765, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.574+00', '{"cached":null,"ignore_cache":false}'), +(45766, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.574+00', '{"cached":null,"ignore_cache":false}'), +(45767, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.815+00', '{"cached":null,"ignore_cache":false}'), +(45768, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.88+00', '{"cached":null,"ignore_cache":false}'), +(45769, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:33.902+00', '{"cached":null,"ignore_cache":false}'), +(45770, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.117+00', '{"cached":null,"ignore_cache":false}'), +(45771, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.117+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45772, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.293+00', '{"cached":null,"ignore_cache":false}'), +(45773, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.307+00', '{"cached":null,"ignore_cache":false}'), +(45774, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.308+00', '{"cached":null,"ignore_cache":false}'), +(45775, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.349+00', '{"cached":null,"ignore_cache":false}'), +(45776, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.358+00', '{"cached":null,"ignore_cache":false}'), +(45777, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.359+00', '{"cached":null,"ignore_cache":false}'), +(45778, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.506+00', '{"cached":null,"ignore_cache":false}'), +(45779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.507+00', '{"cached":null,"ignore_cache":false}'), +(45780, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.529+00', '{"cached":null,"ignore_cache":false}'), +(45781, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.535+00', '{"cached":null,"ignore_cache":false}'), +(45782, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.536+00', '{"cached":null,"ignore_cache":false}'), +(45783, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.547+00', '{"cached":null,"ignore_cache":false}'), +(45784, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.55+00', '{"cached":null,"ignore_cache":false}'), +(45785, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.554+00', '{"cached":null,"ignore_cache":false}'), +(45786, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.556+00', '{"cached":null,"ignore_cache":false}'), +(45787, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:34.57+00', '{"cached":null,"ignore_cache":false}'), +(45788, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:36.814+00', '{"cached":null,"ignore_cache":false}'), +(45789, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:36.83+00', '{"cached":null,"ignore_cache":false}'), +(45790, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:36.877+00', '{"cached":null,"ignore_cache":false}'), +(45791, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:36.882+00', '{"cached":null,"ignore_cache":false}'), +(45792, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:36.937+00', '{"cached":null,"ignore_cache":false}'), +(45793, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 13:55:36.964+00', '{"cached":null,"ignore_cache":false}'), +(45794, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:28.688+00', '{"cached":null,"ignore_cache":false}'), +(45795, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:30.22+00', '{"cached":null,"ignore_cache":false}'), +(45796, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:30.335+00', '{"cached":null,"ignore_cache":false}'), +(45797, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:30.372+00', '{"cached":null,"ignore_cache":false}'), +(45798, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:32.773+00', '{"cached":null,"ignore_cache":false}'), +(45799, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:34.187+00', '{"cached":null,"ignore_cache":false}'), +(45800, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:34.239+00', '{"cached":null,"ignore_cache":false}'), +(45801, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:34.313+00', '{"cached":null,"ignore_cache":false}'), +(45802, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:35.7+00', '{"cached":null,"ignore_cache":false}'), +(45803, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.086+00', '{"cached":null,"ignore_cache":false}'), +(45804, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.153+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45805, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.183+00', '{"cached":null,"ignore_cache":false}'), +(45806, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.214+00', '{"cached":null,"ignore_cache":false}'), +(45807, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.342+00', '{"cached":null,"ignore_cache":false}'), +(45808, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.646+00', '{"cached":null,"ignore_cache":false}'), +(45809, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.788+00', '{"cached":null,"ignore_cache":false}'), +(45810, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.9+00', '{"cached":null,"ignore_cache":false}'), +(45811, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.901+00', '{"cached":null,"ignore_cache":false}'), +(45812, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.908+00', '{"cached":null,"ignore_cache":false}'), +(45813, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.911+00', '{"cached":null,"ignore_cache":false}'), +(45814, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.92+00', '{"cached":null,"ignore_cache":false}'), +(45815, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.951+00', '{"cached":null,"ignore_cache":false}'), +(45816, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:36.955+00', '{"cached":null,"ignore_cache":false}'), +(45817, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:37.028+00', '{"cached":null,"ignore_cache":false}'), +(45818, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:37.066+00', '{"cached":null,"ignore_cache":false}'), +(45819, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:37.149+00', '{"cached":null,"ignore_cache":false}'), +(45820, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:37.263+00', '{"cached":null,"ignore_cache":false}'), +(45821, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:37.511+00', '{"cached":null,"ignore_cache":false}'), +(45822, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:39.762+00', '{"cached":null,"ignore_cache":false}'), +(45823, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:39.961+00', '{"cached":null,"ignore_cache":false}'), +(45824, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:39.967+00', '{"cached":null,"ignore_cache":false}'), +(45825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:00:40.037+00', '{"cached":null,"ignore_cache":false}'), +(45826, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:26.276+00', '{"cached":null,"ignore_cache":false}'), +(45827, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:26.58+00', '{"cached":null,"ignore_cache":false}'), +(45828, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:26.653+00', '{"cached":null,"ignore_cache":false}'), +(45829, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:26.685+00', '{"cached":null,"ignore_cache":false}'), +(45830, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:26.752+00', '{"cached":null,"ignore_cache":false}'), +(45831, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.117+00', '{"cached":null,"ignore_cache":false}'), +(45832, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.123+00', '{"cached":null,"ignore_cache":false}'), +(45833, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.191+00', '{"cached":null,"ignore_cache":false}'), +(45834, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.225+00', '{"cached":null,"ignore_cache":false}'), +(45835, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.306+00', '{"cached":null,"ignore_cache":false}'), +(45836, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.369+00', '{"cached":null,"ignore_cache":false}'), +(45837, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.417+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45838, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.432+00', '{"cached":null,"ignore_cache":false}'), +(45839, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:27.434+00', '{"cached":null,"ignore_cache":false}'), +(45840, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:28.761+00', '{"cached":null,"ignore_cache":false}'), +(45841, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:28.773+00', '{"cached":null,"ignore_cache":false}'), +(45842, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.688+00', '{"cached":null,"ignore_cache":false}'), +(45843, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:31.878+00', '{"cached":null,"ignore_cache":false}'), +(45844, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.078+00', '{"cached":null,"ignore_cache":false}'), +(45845, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.167+00', '{"cached":null,"ignore_cache":false}'), +(45846, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.527+00', '{"cached":null,"ignore_cache":false}'), +(45847, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.552+00', '{"cached":null,"ignore_cache":false}'), +(45848, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.649+00', '{"cached":null,"ignore_cache":false}'), +(45849, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.76+00', '{"cached":null,"ignore_cache":false}'), +(45850, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.796+00', '{"cached":null,"ignore_cache":false}'), +(45851, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.924+00', '{"cached":null,"ignore_cache":false}'), +(45852, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:32.956+00', '{"cached":null,"ignore_cache":false}'), +(45853, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:33.03+00', '{"cached":null,"ignore_cache":false}'), +(45854, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:33.06+00', '{"cached":null,"ignore_cache":false}'), +(45855, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:33.061+00', '{"cached":null,"ignore_cache":false}'), +(45856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:33.262+00', '{"cached":null,"ignore_cache":false}'), +(45857, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:05:33.357+00', '{"cached":null,"ignore_cache":false}'), +(45858, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:25.298+00', '{"cached":null,"ignore_cache":false}'), +(45859, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:26.577+00', '{"cached":null,"ignore_cache":false}'), +(45860, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:26.608+00', '{"cached":null,"ignore_cache":false}'), +(45861, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:26.697+00', '{"cached":null,"ignore_cache":false}'), +(45862, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:27.94+00', '{"cached":null,"ignore_cache":false}'), +(45863, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.328+00', '{"cached":null,"ignore_cache":false}'), +(45864, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.365+00', '{"cached":null,"ignore_cache":false}'), +(45865, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.434+00', '{"cached":null,"ignore_cache":false}'), +(45866, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.629+00', '{"cached":null,"ignore_cache":false}'), +(45867, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.743+00', '{"cached":null,"ignore_cache":false}'), +(45868, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.779+00', '{"cached":null,"ignore_cache":false}'), +(45869, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.806+00', '{"cached":null,"ignore_cache":false}'), +(45870, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.879+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45871, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:28.936+00', '{"cached":null,"ignore_cache":false}'), +(45872, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:31.399+00', '{"cached":null,"ignore_cache":false}'), +(45873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:31.845+00', '{"cached":null,"ignore_cache":false}'), +(45874, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:32.969+00', '{"cached":null,"ignore_cache":false}'), +(45875, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.347+00', '{"cached":null,"ignore_cache":false}'), +(45876, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.472+00', '{"cached":null,"ignore_cache":false}'), +(45877, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.601+00', '{"cached":null,"ignore_cache":false}'), +(45878, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.613+00', '{"cached":null,"ignore_cache":false}'), +(45879, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.756+00', '{"cached":null,"ignore_cache":false}'), +(45880, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.862+00', '{"cached":null,"ignore_cache":false}'), +(45881, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:33.88+00', '{"cached":null,"ignore_cache":false}'), +(45882, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.014+00', '{"cached":null,"ignore_cache":false}'), +(45883, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.019+00', '{"cached":null,"ignore_cache":false}'), +(45884, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.086+00', '{"cached":null,"ignore_cache":false}'), +(45885, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.138+00', '{"cached":null,"ignore_cache":false}'), +(45886, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.213+00', '{"cached":null,"ignore_cache":false}'), +(45887, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.307+00', '{"cached":null,"ignore_cache":false}'), +(45888, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.484+00', '{"cached":null,"ignore_cache":false}'), +(45889, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:10:34.661+00', '{"cached":null,"ignore_cache":false}'), +(45890, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:25.731+00', '{"cached":null,"ignore_cache":false}'), +(45891, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:26.236+00', '{"cached":null,"ignore_cache":false}'), +(45892, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:26.259+00', '{"cached":null,"ignore_cache":false}'), +(45893, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:26.296+00', '{"cached":null,"ignore_cache":false}'), +(45894, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:26.865+00', '{"cached":null,"ignore_cache":false}'), +(45895, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.029+00', '{"cached":null,"ignore_cache":false}'), +(45896, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.234+00', '{"cached":null,"ignore_cache":false}'), +(45897, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.264+00', '{"cached":null,"ignore_cache":false}'), +(45898, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.278+00', '{"cached":null,"ignore_cache":false}'), +(45899, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.288+00', '{"cached":null,"ignore_cache":false}'), +(45900, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.292+00', '{"cached":null,"ignore_cache":false}'), +(45901, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.315+00', '{"cached":null,"ignore_cache":false}'), +(45902, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.342+00', '{"cached":null,"ignore_cache":false}'), +(45903, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:27.422+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45904, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:28.998+00', '{"cached":null,"ignore_cache":false}'), +(45905, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:29.019+00', '{"cached":null,"ignore_cache":false}'), +(45906, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:32.558+00', '{"cached":null,"ignore_cache":false}'), +(45907, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:33.544+00', '{"cached":null,"ignore_cache":false}'), +(45908, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:34.433+00', '{"cached":null,"ignore_cache":false}'), +(45909, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:34.949+00', '{"cached":null,"ignore_cache":false}'), +(45910, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:34.952+00', '{"cached":null,"ignore_cache":false}'), +(45911, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.015+00', '{"cached":null,"ignore_cache":false}'), +(45912, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.157+00', '{"cached":null,"ignore_cache":false}'), +(45913, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.334+00', '{"cached":null,"ignore_cache":false}'), +(45914, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.395+00', '{"cached":null,"ignore_cache":false}'), +(45915, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.419+00', '{"cached":null,"ignore_cache":false}'), +(45916, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.492+00', '{"cached":null,"ignore_cache":false}'), +(45917, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.502+00', '{"cached":null,"ignore_cache":false}'), +(45918, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.589+00', '{"cached":null,"ignore_cache":false}'), +(45919, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:35.644+00', '{"cached":null,"ignore_cache":false}'), +(45920, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:36.18+00', '{"cached":null,"ignore_cache":false}'), +(45921, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:15:36.239+00', '{"cached":null,"ignore_cache":false}'), +(45922, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:25.241+00', '{"cached":null,"ignore_cache":false}'), +(45923, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:25.968+00', '{"cached":null,"ignore_cache":false}'), +(45924, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:25.978+00', '{"cached":null,"ignore_cache":false}'), +(45925, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:25.999+00', '{"cached":null,"ignore_cache":false}'), +(45926, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.011+00', '{"cached":null,"ignore_cache":false}'), +(45927, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.352+00', '{"cached":null,"ignore_cache":false}'), +(45928, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.653+00', '{"cached":null,"ignore_cache":false}'), +(45929, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.672+00', '{"cached":null,"ignore_cache":false}'), +(45930, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.878+00', '{"cached":null,"ignore_cache":false}'), +(45931, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.899+00', '{"cached":null,"ignore_cache":false}'), +(45932, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.915+00', '{"cached":null,"ignore_cache":false}'), +(45933, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.92+00', '{"cached":null,"ignore_cache":false}'), +(45934, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.992+00', '{"cached":null,"ignore_cache":false}'), +(45935, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:26.993+00', '{"cached":null,"ignore_cache":false}'), +(45936, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:28.82+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45937, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 14:20:28.825+00', '{"cached":null,"ignore_cache":false}'), +(45938, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:52.573+00', '{"cached":null,"ignore_cache":false}'), +(45939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:52.604+00', '{"cached":null,"ignore_cache":false}'), +(45940, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:54.13+00', '{"cached":null,"ignore_cache":false}'), +(45941, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:54.157+00', '{"cached":null,"ignore_cache":false}'), +(45942, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:54.158+00', '{"cached":null,"ignore_cache":false}'), +(45943, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:54.884+00', '{"cached":null,"ignore_cache":false}'), +(45944, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:55.958+00', '{"cached":null,"ignore_cache":false}'), +(45945, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:55.96+00', '{"cached":null,"ignore_cache":false}'), +(45946, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:56.985+00', '{"cached":null,"ignore_cache":false}'), +(45947, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:57.286+00', '{"cached":null,"ignore_cache":false}'), +(45948, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:57.456+00', '{"cached":null,"ignore_cache":false}'), +(45949, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:57.567+00', '{"cached":null,"ignore_cache":false}'), +(45950, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:57.869+00', '{"cached":null,"ignore_cache":false}'), +(45951, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:57.899+00', '{"cached":null,"ignore_cache":false}'), +(45952, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.199+00', '{"cached":null,"ignore_cache":false}'), +(45953, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.218+00', '{"cached":null,"ignore_cache":false}'), +(45954, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.254+00', '{"cached":null,"ignore_cache":false}'), +(45955, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.311+00', '{"cached":null,"ignore_cache":false}'), +(45956, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.318+00', '{"cached":null,"ignore_cache":false}'), +(45957, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.334+00', '{"cached":null,"ignore_cache":false}'), +(45958, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.691+00', '{"cached":null,"ignore_cache":false}'), +(45959, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.7+00', '{"cached":null,"ignore_cache":false}'), +(45960, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.703+00', '{"cached":null,"ignore_cache":false}'), +(45961, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.704+00', '{"cached":null,"ignore_cache":false}'), +(45962, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.71+00', '{"cached":null,"ignore_cache":false}'), +(45963, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.713+00', '{"cached":null,"ignore_cache":false}'), +(45964, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.715+00', '{"cached":null,"ignore_cache":false}'), +(45965, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:12:58.72+00', '{"cached":null,"ignore_cache":false}'), +(45966, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:13:00.453+00', '{"cached":null,"ignore_cache":false}'), +(45967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:13:00.454+00', '{"cached":null,"ignore_cache":false}'), +(45968, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:13:00.956+00', '{"cached":null,"ignore_cache":false}'), +(45969, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:13:00.989+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(45970, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:58.746+00', '{"cached":null,"ignore_cache":false}'), +(45971, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:58.799+00', '{"cached":null,"ignore_cache":false}'), +(45972, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:59.424+00', '{"cached":null,"ignore_cache":false}'), +(45973, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:59.432+00', '{"cached":null,"ignore_cache":false}'), +(45974, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:59.434+00', '{"cached":null,"ignore_cache":false}'), +(45975, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:59.534+00', '{"cached":null,"ignore_cache":false}'), +(45976, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:59.582+00', '{"cached":null,"ignore_cache":false}'), +(45977, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:15:59.585+00', '{"cached":null,"ignore_cache":false}'), +(45978, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:02.354+00', '{"cached":null,"ignore_cache":false}'), +(45979, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:02.684+00', '{"cached":null,"ignore_cache":false}'), +(45980, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:02.774+00', '{"cached":null,"ignore_cache":false}'), +(45981, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:02.793+00', '{"cached":null,"ignore_cache":false}'), +(45982, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:03.19+00', '{"cached":null,"ignore_cache":false}'), +(45983, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:03.205+00', '{"cached":null,"ignore_cache":false}'), +(45984, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:03.249+00', '{"cached":null,"ignore_cache":false}'), +(45985, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:03.581+00', '{"cached":null,"ignore_cache":false}'), +(45986, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:03.817+00', '{"cached":null,"ignore_cache":false}'), +(45987, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.017+00', '{"cached":null,"ignore_cache":false}'), +(45988, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.041+00', '{"cached":null,"ignore_cache":false}'), +(45989, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.091+00', '{"cached":null,"ignore_cache":false}'), +(45990, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.183+00', '{"cached":null,"ignore_cache":false}'), +(45991, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.257+00', '{"cached":null,"ignore_cache":false}'), +(45992, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.26+00', '{"cached":null,"ignore_cache":false}'), +(45993, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.283+00', '{"cached":null,"ignore_cache":false}'), +(45994, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.319+00', '{"cached":null,"ignore_cache":false}'), +(45995, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.391+00', '{"cached":null,"ignore_cache":false}'), +(45996, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.516+00', '{"cached":null,"ignore_cache":false}'), +(45997, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:04.96+00', '{"cached":null,"ignore_cache":false}'), +(45998, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:07.496+00', '{"cached":null,"ignore_cache":false}'), +(45999, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:07.552+00', '{"cached":null,"ignore_cache":false}'), +(46000, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:07.567+00', '{"cached":null,"ignore_cache":false}'), +(46001, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:16:07.604+00', '{"cached":null,"ignore_cache":false}'), +(46002, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:07.825+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46003, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:08.134+00', '{"cached":null,"ignore_cache":false}'), +(46004, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:08.151+00', '{"cached":null,"ignore_cache":false}'), +(46005, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:08.155+00', '{"cached":null,"ignore_cache":false}'), +(46006, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:09.771+00', '{"cached":null,"ignore_cache":false}'), +(46007, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:09.808+00', '{"cached":null,"ignore_cache":false}'), +(46008, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:09.877+00', '{"cached":null,"ignore_cache":false}'), +(46009, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:09.977+00', '{"cached":null,"ignore_cache":false}'), +(46010, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:09.978+00', '{"cached":null,"ignore_cache":false}'), +(46011, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:09.986+00', '{"cached":null,"ignore_cache":false}'), +(46012, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:10.013+00', '{"cached":null,"ignore_cache":false}'), +(46013, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:10.051+00', '{"cached":null,"ignore_cache":false}'), +(46014, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:10.069+00', '{"cached":null,"ignore_cache":false}'), +(46015, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:10.185+00', '{"cached":null,"ignore_cache":false}'), +(46016, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:11.228+00', '{"cached":null,"ignore_cache":false}'), +(46017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:18:11.257+00', '{"cached":null,"ignore_cache":false}'), +(46018, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:35.629+00', '{"cached":null,"ignore_cache":false}'), +(46019, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:35.678+00', '{"cached":null,"ignore_cache":false}'), +(46020, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:37.108+00', '{"cached":null,"ignore_cache":false}'), +(46021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:37.117+00', '{"cached":null,"ignore_cache":false}'), +(46022, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:37.123+00', '{"cached":null,"ignore_cache":false}'), +(46023, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:37.139+00', '{"cached":null,"ignore_cache":false}'), +(46024, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:37.146+00', '{"cached":null,"ignore_cache":false}'), +(46025, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:37.21+00', '{"cached":null,"ignore_cache":false}'), +(46026, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:40.788+00', '{"cached":null,"ignore_cache":false}'), +(46027, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:40.997+00', '{"cached":null,"ignore_cache":false}'), +(46028, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.654+00', '{"cached":null,"ignore_cache":false}'), +(46029, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.684+00', '{"cached":null,"ignore_cache":false}'), +(46030, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.77+00', '{"cached":null,"ignore_cache":false}'), +(46031, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.812+00', '{"cached":null,"ignore_cache":false}'), +(46032, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.83+00', '{"cached":null,"ignore_cache":false}'), +(46033, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.847+00', '{"cached":null,"ignore_cache":false}'), +(46034, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.894+00', '{"cached":null,"ignore_cache":false}'), +(46035, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.931+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46036, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:41.998+00', '{"cached":null,"ignore_cache":false}'), +(46037, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.009+00', '{"cached":null,"ignore_cache":false}'), +(46038, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.019+00', '{"cached":null,"ignore_cache":false}'), +(46039, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.09+00', '{"cached":null,"ignore_cache":false}'), +(46040, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.22+00', '{"cached":null,"ignore_cache":false}'), +(46041, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.329+00', '{"cached":null,"ignore_cache":false}'), +(46042, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.346+00', '{"cached":null,"ignore_cache":false}'), +(46043, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.448+00', '{"cached":null,"ignore_cache":false}'), +(46044, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.457+00', '{"cached":null,"ignore_cache":false}'), +(46045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:42.503+00', '{"cached":null,"ignore_cache":false}'), +(46046, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:44.192+00', '{"cached":null,"ignore_cache":false}'), +(46047, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:44.282+00', '{"cached":null,"ignore_cache":false}'), +(46048, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:44.592+00', '{"cached":null,"ignore_cache":false}'), +(46049, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:20:44.69+00', '{"cached":null,"ignore_cache":false}'), +(46050, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.537+00', '{"cached":null,"ignore_cache":false}'), +(46051, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.562+00', '{"cached":null,"ignore_cache":false}'), +(46052, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.828+00', '{"cached":null,"ignore_cache":false}'), +(46053, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.835+00', '{"cached":null,"ignore_cache":false}'), +(46054, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.869+00', '{"cached":null,"ignore_cache":false}'), +(46055, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:03.92+00', '{"cached":null,"ignore_cache":false}'), +(46056, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.85+00', '{"cached":null,"ignore_cache":false}'), +(46057, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:04.94+00', '{"cached":null,"ignore_cache":false}'), +(46058, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.152+00', '{"cached":null,"ignore_cache":false}'), +(46059, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.182+00', '{"cached":null,"ignore_cache":false}'), +(46060, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.436+00', '{"cached":null,"ignore_cache":false}'), +(46061, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.458+00', '{"cached":null,"ignore_cache":false}'), +(46062, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.521+00', '{"cached":null,"ignore_cache":false}'), +(46063, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.617+00', '{"cached":null,"ignore_cache":false}'), +(46064, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.731+00', '{"cached":null,"ignore_cache":false}'), +(46065, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:21:05.872+00', '{"cached":null,"ignore_cache":false}'), +(46066, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:19.258+00', '{"cached":null,"ignore_cache":false}'), +(46067, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:19.794+00', '{"cached":null,"ignore_cache":false}'), +(46068, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:19.81+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46069, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:19.818+00', '{"cached":null,"ignore_cache":false}'), +(46070, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.67+00', '{"cached":null,"ignore_cache":false}'), +(46071, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.692+00', '{"cached":null,"ignore_cache":false}'), +(46072, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.704+00', '{"cached":null,"ignore_cache":false}'), +(46073, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.759+00', '{"cached":null,"ignore_cache":false}'), +(46074, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.787+00', '{"cached":null,"ignore_cache":false}'), +(46075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.807+00', '{"cached":null,"ignore_cache":false}'), +(46076, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.856+00', '{"cached":null,"ignore_cache":false}'), +(46077, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.95+00', '{"cached":null,"ignore_cache":false}'), +(46078, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:21.996+00', '{"cached":null,"ignore_cache":false}'), +(46079, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:22.076+00', '{"cached":null,"ignore_cache":false}'), +(46080, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:23.169+00', '{"cached":null,"ignore_cache":false}'), +(46081, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:23:23.262+00', '{"cached":null,"ignore_cache":false}'), +(46082, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.271+00', '{"cached":null,"ignore_cache":false}'), +(46083, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.35+00', '{"cached":null,"ignore_cache":false}'), +(46084, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.365+00', '{"cached":null,"ignore_cache":false}'), +(46085, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.371+00', '{"cached":null,"ignore_cache":false}'), +(46086, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.392+00', '{"cached":null,"ignore_cache":false}'), +(46087, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.398+00', '{"cached":null,"ignore_cache":false}'), +(46088, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.404+00', '{"cached":null,"ignore_cache":false}'), +(46089, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:28.406+00', '{"cached":null,"ignore_cache":false}'), +(46090, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:29.775+00', '{"cached":null,"ignore_cache":false}'), +(46091, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:30.292+00', '{"cached":null,"ignore_cache":false}'), +(46092, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:30.604+00', '{"cached":null,"ignore_cache":false}'), +(46093, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:30.644+00', '{"cached":null,"ignore_cache":false}'), +(46094, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:30.701+00', '{"cached":null,"ignore_cache":false}'), +(46095, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:30.727+00', '{"cached":null,"ignore_cache":false}'), +(46096, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:30.784+00', '{"cached":null,"ignore_cache":false}'), +(46097, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.32+00', '{"cached":null,"ignore_cache":false}'), +(46098, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.814+00', '{"cached":null,"ignore_cache":false}'), +(46099, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.814+00', '{"cached":null,"ignore_cache":false}'), +(46100, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.815+00', '{"cached":null,"ignore_cache":false}'), +(46101, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.816+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46102, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.817+00', '{"cached":null,"ignore_cache":false}'), +(46103, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.817+00', '{"cached":null,"ignore_cache":false}'), +(46104, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.818+00', '{"cached":null,"ignore_cache":false}'), +(46105, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.82+00', '{"cached":null,"ignore_cache":false}'), +(46106, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:31.997+00', '{"cached":null,"ignore_cache":false}'), +(46107, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:32.006+00', '{"cached":null,"ignore_cache":false}'), +(46108, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:32.007+00', '{"cached":null,"ignore_cache":false}'), +(46109, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:32.007+00', '{"cached":null,"ignore_cache":false}'), +(46110, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:33.105+00', '{"cached":null,"ignore_cache":false}'), +(46111, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:33.187+00', '{"cached":null,"ignore_cache":false}'), +(46112, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:33.377+00', '{"cached":null,"ignore_cache":false}'), +(46113, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:24:33.405+00', '{"cached":null,"ignore_cache":false}'), +(46114, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.926+00', '{"cached":null,"ignore_cache":false}'), +(46115, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:43.952+00', '{"cached":null,"ignore_cache":false}'), +(46116, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.674+00', '{"cached":null,"ignore_cache":false}'), +(46117, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.768+00', '{"cached":null,"ignore_cache":false}'), +(46118, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.804+00', '{"cached":null,"ignore_cache":false}'), +(46119, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:44.989+00', '{"cached":null,"ignore_cache":false}'), +(46120, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.034+00', '{"cached":null,"ignore_cache":false}'), +(46121, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.206+00', '{"cached":null,"ignore_cache":false}'), +(46122, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.351+00', '{"cached":null,"ignore_cache":false}'), +(46123, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.486+00', '{"cached":null,"ignore_cache":false}'), +(46124, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.548+00', '{"cached":null,"ignore_cache":false}'), +(46125, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.585+00', '{"cached":null,"ignore_cache":false}'), +(46126, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.642+00', '{"cached":null,"ignore_cache":false}'), +(46127, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.647+00', '{"cached":null,"ignore_cache":false}'), +(46128, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.954+00', '{"cached":null,"ignore_cache":false}'), +(46129, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:25:45.987+00', '{"cached":null,"ignore_cache":false}'), +(46130, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.58+00', '{"cached":null,"ignore_cache":false}'), +(46131, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:14.832+00', '{"cached":null,"ignore_cache":false}'), +(46132, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.167+00', '{"cached":null,"ignore_cache":false}'), +(46133, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.26+00', '{"cached":null,"ignore_cache":false}'), +(46134, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.336+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46135, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.484+00', '{"cached":null,"ignore_cache":false}'), +(46136, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.507+00', '{"cached":null,"ignore_cache":false}'), +(46137, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.529+00', '{"cached":null,"ignore_cache":false}'), +(46138, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.711+00', '{"cached":null,"ignore_cache":false}'), +(46139, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:15.753+00', '{"cached":null,"ignore_cache":false}'), +(46140, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:24.614+00', '{"cached":null,"ignore_cache":false}'), +(46141, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:24.712+00', '{"cached":null,"ignore_cache":false}'), +(46142, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:24.733+00', '{"cached":null,"ignore_cache":false}'), +(46143, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:24.804+00', '{"cached":null,"ignore_cache":false}'), +(46144, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:24.84+00', '{"cached":null,"ignore_cache":false}'), +(46145, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:26:24.904+00', '{"cached":null,"ignore_cache":false}'), +(46146, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:27.228+00', '{"cached":null,"ignore_cache":false}'), +(46147, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.799+00', '{"cached":null,"ignore_cache":false}'), +(46148, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:28.91+00', '{"cached":null,"ignore_cache":false}'), +(46149, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:29.344+00', '{"cached":null,"ignore_cache":false}'), +(46150, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:29.413+00', '{"cached":null,"ignore_cache":false}'), +(46151, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:29.738+00', '{"cached":null,"ignore_cache":false}'), +(46152, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:30.09+00', '{"cached":null,"ignore_cache":false}'), +(46153, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:30.856+00', '{"cached":null,"ignore_cache":false}'), +(46154, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:30.924+00', '{"cached":null,"ignore_cache":false}'), +(46155, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:31.764+00', '{"cached":null,"ignore_cache":false}'), +(46156, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:31.868+00', '{"cached":null,"ignore_cache":false}'), +(46157, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:31.875+00', '{"cached":null,"ignore_cache":false}'), +(46158, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.496+00', '{"cached":null,"ignore_cache":false}'), +(46159, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.633+00', '{"cached":null,"ignore_cache":false}'), +(46160, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.662+00', '{"cached":null,"ignore_cache":false}'), +(46161, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.697+00', '{"cached":null,"ignore_cache":false}'), +(46162, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.759+00', '{"cached":null,"ignore_cache":false}'), +(46163, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.763+00', '{"cached":null,"ignore_cache":false}'), +(46164, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.801+00', '{"cached":null,"ignore_cache":false}'), +(46165, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.856+00', '{"cached":null,"ignore_cache":false}'), +(46166, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.925+00', '{"cached":null,"ignore_cache":false}'), +(46167, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:32.938+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46168, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:33+00', '{"cached":null,"ignore_cache":false}'), +(46169, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:33.007+00', '{"cached":null,"ignore_cache":false}'), +(46170, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:33.015+00', '{"cached":null,"ignore_cache":false}'), +(46171, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:33.031+00', '{"cached":null,"ignore_cache":false}'), +(46172, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:33.095+00', '{"cached":null,"ignore_cache":false}'), +(46173, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:34.411+00', '{"cached":null,"ignore_cache":false}'), +(46174, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:34.444+00', '{"cached":null,"ignore_cache":false}'), +(46175, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:34.455+00', '{"cached":null,"ignore_cache":false}'), +(46176, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:27:34.509+00', '{"cached":null,"ignore_cache":false}'), +(46177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.406+00', '{"cached":null,"ignore_cache":false}'), +(46178, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.439+00', '{"cached":null,"ignore_cache":false}'), +(46179, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.704+00', '{"cached":null,"ignore_cache":false}'), +(46180, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:46.821+00', '{"cached":null,"ignore_cache":false}'), +(46181, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.343+00', '{"cached":null,"ignore_cache":false}'), +(46182, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.503+00', '{"cached":null,"ignore_cache":false}'), +(46183, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.555+00', '{"cached":null,"ignore_cache":false}'), +(46184, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.581+00', '{"cached":null,"ignore_cache":false}'), +(46185, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.835+00', '{"cached":null,"ignore_cache":false}'), +(46186, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.857+00', '{"cached":null,"ignore_cache":false}'), +(46187, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.87+00', '{"cached":null,"ignore_cache":false}'), +(46188, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.898+00', '{"cached":null,"ignore_cache":false}'), +(46189, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.947+00', '{"cached":null,"ignore_cache":false}'), +(46190, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:47.952+00', '{"cached":null,"ignore_cache":false}'), +(46191, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:48.71+00', '{"cached":null,"ignore_cache":false}'), +(46192, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:29:48.723+00', '{"cached":null,"ignore_cache":false}'), +(46193, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.555+00', '{"cached":null,"ignore_cache":false}'), +(46194, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.801+00', '{"cached":null,"ignore_cache":false}'), +(46195, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.941+00', '{"cached":null,"ignore_cache":false}'), +(46196, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:32.985+00', '{"cached":null,"ignore_cache":false}'), +(46197, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.006+00', '{"cached":null,"ignore_cache":false}'), +(46198, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.117+00', '{"cached":null,"ignore_cache":false}'), +(46199, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.156+00', '{"cached":null,"ignore_cache":false}'), +(46200, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.165+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.172+00', '{"cached":null,"ignore_cache":false}'), +(46202, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.706+00', '{"cached":null,"ignore_cache":false}'), +(46203, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.928+00', '{"cached":null,"ignore_cache":false}'), +(46204, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:33.93+00', '{"cached":null,"ignore_cache":false}'), +(46205, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.279+00', '{"cached":null,"ignore_cache":false}'), +(46206, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:34.845+00', '{"cached":null,"ignore_cache":false}'), +(46207, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.277+00', '{"cached":null,"ignore_cache":false}'), +(46208, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.646+00', '{"cached":null,"ignore_cache":false}'), +(46209, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.705+00', '{"cached":null,"ignore_cache":false}'), +(46210, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.776+00', '{"cached":null,"ignore_cache":false}'), +(46211, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:35.842+00', '{"cached":null,"ignore_cache":false}'), +(46212, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.045+00', '{"cached":null,"ignore_cache":false}'), +(46213, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.216+00', '{"cached":null,"ignore_cache":false}'), +(46214, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.217+00', '{"cached":null,"ignore_cache":false}'), +(46215, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.332+00', '{"cached":null,"ignore_cache":false}'), +(46216, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.336+00', '{"cached":null,"ignore_cache":false}'), +(46217, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.447+00', '{"cached":null,"ignore_cache":false}'), +(46218, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.475+00', '{"cached":null,"ignore_cache":false}'), +(46219, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.547+00', '{"cached":null,"ignore_cache":false}'), +(46220, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.667+00', '{"cached":null,"ignore_cache":false}'), +(46221, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.964+00', '{"cached":null,"ignore_cache":false}'), +(46222, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:36.965+00', '{"cached":null,"ignore_cache":false}'), +(46223, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:30:37.05+00', '{"cached":null,"ignore_cache":false}'), +(46224, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.797+00', '{"cached":null,"ignore_cache":false}'), +(46225, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:22.965+00', '{"cached":null,"ignore_cache":false}'), +(46226, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:23.669+00', '{"cached":null,"ignore_cache":false}'), +(46227, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:23.768+00', '{"cached":null,"ignore_cache":false}'), +(46228, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:23.779+00', '{"cached":null,"ignore_cache":false}'), +(46229, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:23.842+00', '{"cached":null,"ignore_cache":false}'), +(46230, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:23.884+00', '{"cached":null,"ignore_cache":false}'), +(46231, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:23.928+00', '{"cached":null,"ignore_cache":false}'), +(46232, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:25.005+00', '{"cached":null,"ignore_cache":false}'), +(46233, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:25.024+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46234, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.755+00', '{"cached":null,"ignore_cache":false}'), +(46235, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:35.838+00', '{"cached":null,"ignore_cache":false}'), +(46236, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:36.02+00', '{"cached":null,"ignore_cache":false}'), +(46237, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:36.056+00', '{"cached":null,"ignore_cache":false}'), +(46238, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:36.089+00', '{"cached":null,"ignore_cache":false}'), +(46239, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:31:36.102+00', '{"cached":null,"ignore_cache":false}'), +(46240, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:41.122+00', '{"cached":null,"ignore_cache":false}'), +(46241, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:42.266+00', '{"cached":null,"ignore_cache":false}'), +(46242, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:42.412+00', '{"cached":null,"ignore_cache":false}'), +(46243, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:42.442+00', '{"cached":null,"ignore_cache":false}'), +(46244, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.17+00', '{"cached":null,"ignore_cache":false}'), +(46245, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.569+00', '{"cached":null,"ignore_cache":false}'), +(46246, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.612+00', '{"cached":null,"ignore_cache":false}'), +(46247, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.741+00', '{"cached":null,"ignore_cache":false}'), +(46248, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.756+00', '{"cached":null,"ignore_cache":false}'), +(46249, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.787+00', '{"cached":null,"ignore_cache":false}'), +(46250, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.895+00', '{"cached":null,"ignore_cache":false}'), +(46251, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.937+00', '{"cached":null,"ignore_cache":false}'), +(46252, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:43.961+00', '{"cached":null,"ignore_cache":false}'), +(46253, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:44.004+00', '{"cached":null,"ignore_cache":false}'), +(46254, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:46.066+00', '{"cached":null,"ignore_cache":false}'), +(46255, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:32:46.166+00', '{"cached":null,"ignore_cache":false}'), +(46256, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:45.713+00', '{"cached":null,"ignore_cache":false}'), +(46257, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:45.78+00', '{"cached":null,"ignore_cache":false}'), +(46258, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:45.886+00', '{"cached":null,"ignore_cache":false}'), +(46259, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:45.887+00', '{"cached":null,"ignore_cache":false}'), +(46260, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:45.89+00', '{"cached":null,"ignore_cache":false}'), +(46261, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:46.828+00', '{"cached":null,"ignore_cache":false}'), +(46262, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:46.914+00', '{"cached":null,"ignore_cache":false}'), +(46263, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:47.015+00', '{"cached":null,"ignore_cache":false}'), +(46264, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:49+00', '{"cached":null,"ignore_cache":false}'), +(46265, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:49.086+00', '{"cached":null,"ignore_cache":false}'), +(46266, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:49.166+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46267, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:49.197+00', '{"cached":null,"ignore_cache":false}'), +(46268, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:50.277+00', '{"cached":null,"ignore_cache":false}'), +(46269, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:50.593+00', '{"cached":null,"ignore_cache":false}'), +(46270, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:50.828+00', '{"cached":null,"ignore_cache":false}'), +(46271, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:50.862+00', '{"cached":null,"ignore_cache":false}'), +(46272, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:50.908+00', '{"cached":null,"ignore_cache":false}'), +(46273, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.038+00', '{"cached":null,"ignore_cache":false}'), +(46274, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.039+00', '{"cached":null,"ignore_cache":false}'), +(46275, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.138+00', '{"cached":null,"ignore_cache":false}'), +(46276, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.165+00', '{"cached":null,"ignore_cache":false}'), +(46277, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.284+00', '{"cached":null,"ignore_cache":false}'), +(46278, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.299+00', '{"cached":null,"ignore_cache":false}'), +(46279, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.307+00', '{"cached":null,"ignore_cache":false}'), +(46280, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.31+00', '{"cached":null,"ignore_cache":false}'), +(46281, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.348+00', '{"cached":null,"ignore_cache":false}'), +(46282, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.408+00', '{"cached":null,"ignore_cache":false}'), +(46283, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:51.505+00', '{"cached":null,"ignore_cache":false}'), +(46284, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:53.676+00', '{"cached":null,"ignore_cache":false}'), +(46285, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:53.755+00', '{"cached":null,"ignore_cache":false}'), +(46286, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:53.932+00', '{"cached":null,"ignore_cache":false}'), +(46287, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:33:53.957+00', '{"cached":null,"ignore_cache":false}'), +(46288, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:34.355+00', '{"cached":null,"ignore_cache":false}'), +(46289, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:34.635+00', '{"cached":null,"ignore_cache":false}'), +(46290, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:34.792+00', '{"cached":null,"ignore_cache":false}'), +(46291, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:34.822+00', '{"cached":null,"ignore_cache":false}'), +(46292, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:35.302+00', '{"cached":null,"ignore_cache":false}'), +(46293, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.929+00', '{"cached":null,"ignore_cache":false}'), +(46294, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:36.995+00', '{"cached":null,"ignore_cache":false}'), +(46295, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:37.752+00', '{"cached":null,"ignore_cache":false}'), +(46296, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:37.814+00', '{"cached":null,"ignore_cache":false}'), +(46297, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:37.817+00', '{"cached":null,"ignore_cache":false}'), +(46298, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.427+00', '{"cached":null,"ignore_cache":false}'), +(46299, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.463+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46300, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.464+00', '{"cached":null,"ignore_cache":false}'), +(46301, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.503+00', '{"cached":null,"ignore_cache":false}'), +(46302, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.506+00', '{"cached":null,"ignore_cache":false}'), +(46303, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.509+00', '{"cached":null,"ignore_cache":false}'), +(46304, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.519+00', '{"cached":null,"ignore_cache":false}'), +(46305, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.521+00', '{"cached":null,"ignore_cache":false}'), +(46306, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.522+00', '{"cached":null,"ignore_cache":false}'), +(46307, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.523+00', '{"cached":null,"ignore_cache":false}'), +(46308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.526+00', '{"cached":null,"ignore_cache":false}'), +(46309, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.527+00', '{"cached":null,"ignore_cache":false}'), +(46310, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.661+00', '{"cached":null,"ignore_cache":false}'), +(46311, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:38.906+00', '{"cached":null,"ignore_cache":false}'), +(46312, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:39.004+00', '{"cached":null,"ignore_cache":false}'), +(46313, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:39.156+00', '{"cached":null,"ignore_cache":false}'), +(46314, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:39.157+00', '{"cached":null,"ignore_cache":false}'), +(46315, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:39.578+00', '{"cached":null,"ignore_cache":false}'), +(46316, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.465+00', '{"cached":null,"ignore_cache":false}'), +(46317, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.552+00', '{"cached":null,"ignore_cache":false}'), +(46318, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.557+00', '{"cached":null,"ignore_cache":false}'), +(46319, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:40.69+00', '{"cached":null,"ignore_cache":false}'), +(46320, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.528+00', '{"cached":null,"ignore_cache":false}'), +(46321, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:41.644+00', '{"cached":null,"ignore_cache":false}'), +(46322, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.036+00', '{"cached":null,"ignore_cache":false}'), +(46323, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.461+00', '{"cached":null,"ignore_cache":false}'), +(46324, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.493+00', '{"cached":null,"ignore_cache":false}'), +(46325, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.497+00', '{"cached":null,"ignore_cache":false}'), +(46326, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.688+00', '{"cached":null,"ignore_cache":false}'), +(46327, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.807+00', '{"cached":null,"ignore_cache":false}'), +(46328, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:42.858+00', '{"cached":null,"ignore_cache":false}'), +(46329, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.58+00', '{"cached":null,"ignore_cache":false}'), +(46330, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.727+00', '{"cached":null,"ignore_cache":false}'), +(46331, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.798+00', '{"cached":null,"ignore_cache":false}'), +(46332, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.801+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46333, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.81+00', '{"cached":null,"ignore_cache":false}'), +(46334, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.814+00', '{"cached":null,"ignore_cache":false}'), +(46335, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.817+00', '{"cached":null,"ignore_cache":false}'), +(46336, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.822+00', '{"cached":null,"ignore_cache":false}'), +(46337, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.825+00', '{"cached":null,"ignore_cache":false}'), +(46338, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:43.839+00', '{"cached":null,"ignore_cache":false}'), +(46339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:44.286+00', '{"cached":null,"ignore_cache":false}'), +(46340, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:44.768+00', '{"cached":null,"ignore_cache":false}'), +(46341, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:44.868+00', '{"cached":null,"ignore_cache":false}'), +(46342, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:45.031+00', '{"cached":null,"ignore_cache":false}'), +(46343, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:45.228+00', '{"cached":null,"ignore_cache":false}'), +(46344, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:45.567+00', '{"cached":null,"ignore_cache":false}'), +(46345, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:45.622+00', '{"cached":null,"ignore_cache":false}'), +(46346, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:45.68+00', '{"cached":null,"ignore_cache":false}'), +(46347, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:45.773+00', '{"cached":null,"ignore_cache":false}'), +(46348, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:34:45.776+00', '{"cached":null,"ignore_cache":false}'), +(46349, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:14.079+00', '{"cached":null,"ignore_cache":false}'), +(46350, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:15.555+00', '{"cached":null,"ignore_cache":false}'), +(46351, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:16.632+00', '{"cached":null,"ignore_cache":false}'), +(46352, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:16.655+00', '{"cached":null,"ignore_cache":false}'), +(46353, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:16.68+00', '{"cached":null,"ignore_cache":false}'), +(46354, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:16.755+00', '{"cached":null,"ignore_cache":false}'), +(46355, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:16.86+00', '{"cached":null,"ignore_cache":false}'), +(46356, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:16.95+00', '{"cached":null,"ignore_cache":false}'), +(46357, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:19.563+00', '{"cached":null,"ignore_cache":false}'), +(46358, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:20.839+00', '{"cached":null,"ignore_cache":false}'), +(46359, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:20.926+00', '{"cached":null,"ignore_cache":false}'), +(46360, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:21.342+00', '{"cached":null,"ignore_cache":false}'), +(46361, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:21.391+00', '{"cached":null,"ignore_cache":false}'), +(46362, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:21.601+00', '{"cached":null,"ignore_cache":false}'), +(46363, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.141+00', '{"cached":null,"ignore_cache":false}'), +(46364, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.142+00', '{"cached":null,"ignore_cache":false}'), +(46365, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.257+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46366, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.56+00', '{"cached":null,"ignore_cache":false}'), +(46367, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.729+00', '{"cached":null,"ignore_cache":false}'), +(46368, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.73+00', '{"cached":null,"ignore_cache":false}'), +(46369, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.844+00', '{"cached":null,"ignore_cache":false}'), +(46370, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.869+00', '{"cached":null,"ignore_cache":false}'), +(46371, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.886+00', '{"cached":null,"ignore_cache":false}'), +(46372, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.888+00', '{"cached":null,"ignore_cache":false}'), +(46373, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.894+00', '{"cached":null,"ignore_cache":false}'), +(46374, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.902+00', '{"cached":null,"ignore_cache":false}'), +(46375, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:22.903+00', '{"cached":null,"ignore_cache":false}'), +(46376, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:23.093+00', '{"cached":null,"ignore_cache":false}'), +(46377, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:25.499+00', '{"cached":null,"ignore_cache":false}'), +(46378, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:25.52+00', '{"cached":null,"ignore_cache":false}'), +(46379, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:25.552+00', '{"cached":null,"ignore_cache":false}'), +(46380, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:35:25.576+00', '{"cached":null,"ignore_cache":false}'), +(46381, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.569+00', '{"cached":null,"ignore_cache":false}'), +(46382, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.77+00', '{"cached":null,"ignore_cache":false}'), +(46383, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:24.904+00', '{"cached":null,"ignore_cache":false}'), +(46384, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.769+00', '{"cached":null,"ignore_cache":false}'), +(46385, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.78+00', '{"cached":null,"ignore_cache":false}'), +(46386, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.836+00', '{"cached":null,"ignore_cache":false}'), +(46387, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.861+00', '{"cached":null,"ignore_cache":false}'), +(46388, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.887+00', '{"cached":null,"ignore_cache":false}'), +(46389, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:25.953+00', '{"cached":null,"ignore_cache":false}'), +(46390, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.216+00', '{"cached":null,"ignore_cache":false}'), +(46391, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.217+00', '{"cached":null,"ignore_cache":false}'), +(46392, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.315+00', '{"cached":null,"ignore_cache":false}'), +(46393, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.467+00', '{"cached":null,"ignore_cache":false}'), +(46394, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.468+00', '{"cached":null,"ignore_cache":false}'), +(46395, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.628+00', '{"cached":null,"ignore_cache":false}'), +(46396, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:26.723+00', '{"cached":null,"ignore_cache":false}'), +(46397, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.191+00', '{"cached":null,"ignore_cache":false}'), +(46398, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.202+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46399, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.205+00', '{"cached":null,"ignore_cache":false}'), +(46400, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.265+00', '{"cached":null,"ignore_cache":false}'), +(46401, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.315+00', '{"cached":null,"ignore_cache":false}'), +(46402, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.337+00', '{"cached":null,"ignore_cache":false}'), +(46403, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.34+00', '{"cached":null,"ignore_cache":false}'), +(46404, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.457+00', '{"cached":null,"ignore_cache":false}'), +(46405, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.563+00', '{"cached":null,"ignore_cache":false}'), +(46406, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:27.837+00', '{"cached":null,"ignore_cache":false}'), +(46407, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:28.025+00', '{"cached":null,"ignore_cache":false}'), +(46408, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:28.034+00', '{"cached":null,"ignore_cache":false}'), +(46409, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:28.045+00', '{"cached":null,"ignore_cache":false}'), +(46410, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:28.06+00', '{"cached":null,"ignore_cache":false}'), +(46411, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:28.133+00', '{"cached":null,"ignore_cache":false}'), +(46412, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:28.542+00', '{"cached":null,"ignore_cache":false}'), +(46413, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:56.9+00', '{"cached":null,"ignore_cache":false}'), +(46414, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.036+00', '{"cached":null,"ignore_cache":false}'), +(46415, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.109+00', '{"cached":null,"ignore_cache":false}'), +(46416, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.529+00', '{"cached":null,"ignore_cache":false}'), +(46417, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.567+00', '{"cached":null,"ignore_cache":false}'), +(46418, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.639+00', '{"cached":null,"ignore_cache":false}'), +(46419, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.649+00', '{"cached":null,"ignore_cache":false}'), +(46420, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.65+00', '{"cached":null,"ignore_cache":false}'), +(46421, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.657+00', '{"cached":null,"ignore_cache":false}'), +(46422, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.693+00', '{"cached":null,"ignore_cache":false}'), +(46423, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.819+00', '{"cached":null,"ignore_cache":false}'), +(46424, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.82+00', '{"cached":null,"ignore_cache":false}'), +(46425, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:58.892+00', '{"cached":null,"ignore_cache":false}'), +(46426, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:36:59.422+00', '{"cached":null,"ignore_cache":false}'), +(46427, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:00.383+00', '{"cached":null,"ignore_cache":false}'), +(46428, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:00.388+00', '{"cached":null,"ignore_cache":false}'), +(46429, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:00.488+00', '{"cached":null,"ignore_cache":false}'), +(46430, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:00.677+00', '{"cached":null,"ignore_cache":false}'), +(46431, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:00.826+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.415+00', '{"cached":null,"ignore_cache":false}'), +(46433, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.564+00', '{"cached":null,"ignore_cache":false}'), +(46434, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.565+00', '{"cached":null,"ignore_cache":false}'), +(46435, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.578+00', '{"cached":null,"ignore_cache":false}'), +(46436, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.661+00', '{"cached":null,"ignore_cache":false}'), +(46437, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.664+00', '{"cached":null,"ignore_cache":false}'), +(46438, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.758+00', '{"cached":null,"ignore_cache":false}'), +(46439, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.769+00', '{"cached":null,"ignore_cache":false}'), +(46440, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:01.912+00', '{"cached":null,"ignore_cache":false}'), +(46441, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:37:02.395+00', '{"cached":null,"ignore_cache":false}'), +(46442, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:19.551+00', '{"cached":null,"ignore_cache":false}'), +(46443, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:20.418+00', '{"cached":null,"ignore_cache":false}'), +(46444, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:20.419+00', '{"cached":null,"ignore_cache":false}'), +(46445, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:20.462+00', '{"cached":null,"ignore_cache":false}'), +(46446, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:20.606+00', '{"cached":null,"ignore_cache":false}'), +(46447, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:20.735+00', '{"cached":null,"ignore_cache":false}'), +(46448, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:20.877+00', '{"cached":null,"ignore_cache":false}'), +(46449, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:20.901+00', '{"cached":null,"ignore_cache":false}'), +(46450, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:21.001+00', '{"cached":null,"ignore_cache":false}'), +(46451, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:21.025+00', '{"cached":null,"ignore_cache":false}'), +(46452, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:21.063+00', '{"cached":null,"ignore_cache":false}'), +(46453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:21.112+00', '{"cached":null,"ignore_cache":false}'), +(46454, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:21.115+00', '{"cached":null,"ignore_cache":false}'), +(46455, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:21.127+00', '{"cached":null,"ignore_cache":false}'), +(46456, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:22.538+00', '{"cached":null,"ignore_cache":false}'), +(46457, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:22.569+00', '{"cached":null,"ignore_cache":false}'), +(46458, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:48.177+00', '{"cached":null,"ignore_cache":false}'), +(46459, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:48.218+00', '{"cached":null,"ignore_cache":false}'), +(46460, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:48.273+00', '{"cached":null,"ignore_cache":false}'), +(46461, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:48.869+00', '{"cached":null,"ignore_cache":false}'), +(46462, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:48.896+00', '{"cached":null,"ignore_cache":false}'), +(46463, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:48.902+00', '{"cached":null,"ignore_cache":false}'), +(46464, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:48.944+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46465, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.082+00', '{"cached":null,"ignore_cache":false}'), +(46466, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.089+00', '{"cached":null,"ignore_cache":false}'), +(46467, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.4+00', '{"cached":null,"ignore_cache":false}'), +(46468, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.762+00', '{"cached":null,"ignore_cache":false}'), +(46469, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.824+00', '{"cached":null,"ignore_cache":false}'), +(46470, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.836+00', '{"cached":null,"ignore_cache":false}'), +(46471, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.861+00', '{"cached":null,"ignore_cache":false}'), +(46472, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.937+00', '{"cached":null,"ignore_cache":false}'), +(46473, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:39:49.971+00', '{"cached":null,"ignore_cache":false}'), +(46474, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.166+00', '{"cached":null,"ignore_cache":false}'), +(46475, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.436+00', '{"cached":null,"ignore_cache":false}'), +(46476, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.662+00', '{"cached":null,"ignore_cache":false}'), +(46477, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:39.742+00', '{"cached":null,"ignore_cache":false}'), +(46478, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:40.246+00', '{"cached":null,"ignore_cache":false}'), +(46479, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:40.485+00', '{"cached":null,"ignore_cache":false}'), +(46480, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:40.542+00', '{"cached":null,"ignore_cache":false}'), +(46481, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:40.887+00', '{"cached":null,"ignore_cache":false}'), +(46482, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:40.913+00', '{"cached":null,"ignore_cache":false}'), +(46483, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:40.95+00', '{"cached":null,"ignore_cache":false}'), +(46484, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:40.988+00', '{"cached":null,"ignore_cache":false}'), +(46485, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.028+00', '{"cached":null,"ignore_cache":false}'), +(46486, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.085+00', '{"cached":null,"ignore_cache":false}'), +(46487, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.128+00', '{"cached":null,"ignore_cache":false}'), +(46488, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.529+00', '{"cached":null,"ignore_cache":false}'), +(46489, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.552+00', '{"cached":null,"ignore_cache":false}'), +(46490, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.667+00', '{"cached":null,"ignore_cache":false}'), +(46491, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.668+00', '{"cached":null,"ignore_cache":false}'), +(46492, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.67+00', '{"cached":null,"ignore_cache":false}'), +(46493, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.678+00', '{"cached":null,"ignore_cache":false}'), +(46494, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.679+00', '{"cached":null,"ignore_cache":false}'), +(46495, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.68+00', '{"cached":null,"ignore_cache":false}'), +(46496, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.68+00', '{"cached":null,"ignore_cache":false}'), +(46497, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.699+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46498, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.832+00', '{"cached":null,"ignore_cache":false}'), +(46499, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:40:41.894+00', '{"cached":null,"ignore_cache":false}'), +(46500, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:44.791+00', '{"cached":null,"ignore_cache":false}'), +(46501, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:44.873+00', '{"cached":null,"ignore_cache":false}'), +(46502, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:46.926+00', '{"cached":null,"ignore_cache":false}'), +(46503, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:46.947+00', '{"cached":null,"ignore_cache":false}'), +(46504, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:46.965+00', '{"cached":null,"ignore_cache":false}'), +(46505, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:46.966+00', '{"cached":null,"ignore_cache":false}'), +(46506, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:46.969+00', '{"cached":null,"ignore_cache":false}'), +(46507, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:46.998+00', '{"cached":null,"ignore_cache":false}'), +(46508, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:49.557+00', '{"cached":null,"ignore_cache":false}'), +(46509, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:49.589+00', '{"cached":null,"ignore_cache":false}'), +(46510, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:50.763+00', '{"cached":null,"ignore_cache":false}'), +(46511, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:50.889+00', '{"cached":null,"ignore_cache":false}'), +(46512, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:50.951+00', '{"cached":null,"ignore_cache":false}'), +(46513, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:50.954+00', '{"cached":null,"ignore_cache":false}'), +(46514, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:50.964+00', '{"cached":null,"ignore_cache":false}'), +(46515, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.018+00', '{"cached":null,"ignore_cache":false}'), +(46516, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.044+00', '{"cached":null,"ignore_cache":false}'), +(46517, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.091+00', '{"cached":null,"ignore_cache":false}'), +(46518, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.293+00', '{"cached":null,"ignore_cache":false}'), +(46519, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.294+00', '{"cached":null,"ignore_cache":false}'), +(46520, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.316+00', '{"cached":null,"ignore_cache":false}'), +(46521, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.328+00', '{"cached":null,"ignore_cache":false}'), +(46522, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.331+00', '{"cached":null,"ignore_cache":false}'), +(46523, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.335+00', '{"cached":null,"ignore_cache":false}'), +(46524, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.339+00', '{"cached":null,"ignore_cache":false}'), +(46525, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.34+00', '{"cached":null,"ignore_cache":false}'), +(46526, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.341+00', '{"cached":null,"ignore_cache":false}'), +(46527, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:51.342+00', '{"cached":null,"ignore_cache":false}'), +(46528, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:53.491+00', '{"cached":null,"ignore_cache":false}'), +(46529, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:53.51+00', '{"cached":null,"ignore_cache":false}'), +(46530, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:53.537+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46531, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:42:53.541+00', '{"cached":null,"ignore_cache":false}'), +(46532, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:19.841+00', '{"cached":null,"ignore_cache":false}'), +(46533, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:20.887+00', '{"cached":null,"ignore_cache":false}'), +(46534, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:20.922+00', '{"cached":null,"ignore_cache":false}'), +(46535, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:20.923+00', '{"cached":null,"ignore_cache":false}'), +(46536, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.513+00', '{"cached":null,"ignore_cache":false}'), +(46537, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.549+00', '{"cached":null,"ignore_cache":false}'), +(46538, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.649+00', '{"cached":null,"ignore_cache":false}'), +(46539, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.704+00', '{"cached":null,"ignore_cache":false}'), +(46540, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.715+00', '{"cached":null,"ignore_cache":false}'), +(46541, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.754+00', '{"cached":null,"ignore_cache":false}'), +(46542, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.755+00', '{"cached":null,"ignore_cache":false}'), +(46543, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.797+00', '{"cached":null,"ignore_cache":false}'), +(46544, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.83+00', '{"cached":null,"ignore_cache":false}'), +(46545, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:21.838+00', '{"cached":null,"ignore_cache":false}'), +(46546, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:22.167+00', '{"cached":null,"ignore_cache":false}'), +(46547, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:44:22.212+00', '{"cached":null,"ignore_cache":false}'), +(46548, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.798+00', '{"cached":null,"ignore_cache":false}'), +(46549, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.933+00', '{"cached":null,"ignore_cache":false}'), +(46550, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.936+00', '{"cached":null,"ignore_cache":false}'), +(46551, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:40.962+00', '{"cached":null,"ignore_cache":false}'), +(46552, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.435+00', '{"cached":null,"ignore_cache":false}'), +(46553, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.65+00', '{"cached":null,"ignore_cache":false}'), +(46554, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.681+00', '{"cached":null,"ignore_cache":false}'), +(46555, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.704+00', '{"cached":null,"ignore_cache":false}'), +(46556, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.719+00', '{"cached":null,"ignore_cache":false}'), +(46557, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.733+00', '{"cached":null,"ignore_cache":false}'), +(46558, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.749+00', '{"cached":null,"ignore_cache":false}'), +(46559, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.787+00', '{"cached":null,"ignore_cache":false}'), +(46560, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.815+00', '{"cached":null,"ignore_cache":false}'), +(46561, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:41.905+00', '{"cached":null,"ignore_cache":false}'), +(46562, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:42.364+00', '{"cached":null,"ignore_cache":false}'), +(46563, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:45:42.381+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46564, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.867+00', '{"cached":null,"ignore_cache":false}'), +(46565, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:42.883+00', '{"cached":null,"ignore_cache":false}'), +(46566, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:43.688+00', '{"cached":null,"ignore_cache":false}'), +(46567, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:43.785+00', '{"cached":null,"ignore_cache":false}'), +(46568, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:43.801+00', '{"cached":null,"ignore_cache":false}'), +(46569, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:43.812+00', '{"cached":null,"ignore_cache":false}'), +(46570, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:43.859+00', '{"cached":null,"ignore_cache":false}'), +(46571, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:43.877+00', '{"cached":null,"ignore_cache":false}'), +(46572, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:44.675+00', '{"cached":null,"ignore_cache":false}'), +(46573, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:50:44.748+00', '{"cached":null,"ignore_cache":false}'), +(46574, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.862+00', '{"cached":null,"ignore_cache":false}'), +(46575, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.879+00', '{"cached":null,"ignore_cache":false}'), +(46576, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:22.973+00', '{"cached":null,"ignore_cache":false}'), +(46577, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:23.004+00', '{"cached":null,"ignore_cache":false}'), +(46578, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:23.015+00', '{"cached":null,"ignore_cache":false}'), +(46579, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:51:23.024+00', '{"cached":null,"ignore_cache":false}'), +(46580, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:50.525+00', '{"cached":null,"ignore_cache":false}'), +(46581, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:51.928+00', '{"cached":null,"ignore_cache":false}'), +(46582, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:52.014+00', '{"cached":null,"ignore_cache":false}'), +(46583, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:52.407+00', '{"cached":null,"ignore_cache":false}'), +(46584, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:52.465+00', '{"cached":null,"ignore_cache":false}'), +(46585, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:52.542+00', '{"cached":null,"ignore_cache":false}'), +(46586, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:52.552+00', '{"cached":null,"ignore_cache":false}'), +(46587, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:52.64+00', '{"cached":null,"ignore_cache":false}'), +(46588, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:54.112+00', '{"cached":null,"ignore_cache":false}'), +(46589, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:55:54.16+00', '{"cached":null,"ignore_cache":false}'), +(46590, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:53.746+00', '{"cached":null,"ignore_cache":false}'), +(46591, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:53.755+00', '{"cached":null,"ignore_cache":false}'), +(46592, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:55.147+00', '{"cached":null,"ignore_cache":false}'), +(46593, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:55.603+00', '{"cached":null,"ignore_cache":false}'), +(46594, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:55.607+00', '{"cached":null,"ignore_cache":false}'), +(46595, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:55.615+00', '{"cached":null,"ignore_cache":false}'), +(46596, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:59.373+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46597, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:59.597+00', '{"cached":null,"ignore_cache":false}'), +(46598, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:59.626+00', '{"cached":null,"ignore_cache":false}'), +(46599, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:56:59.7+00', '{"cached":null,"ignore_cache":false}'), +(46600, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:00.195+00', '{"cached":null,"ignore_cache":false}'), +(46601, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:00.446+00', '{"cached":null,"ignore_cache":false}'), +(46602, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:01.598+00', '{"cached":null,"ignore_cache":false}'), +(46603, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:02.988+00', '{"cached":null,"ignore_cache":false}'), +(46604, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.065+00', '{"cached":null,"ignore_cache":false}'), +(46605, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.185+00', '{"cached":null,"ignore_cache":false}'), +(46606, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.257+00', '{"cached":null,"ignore_cache":false}'), +(46607, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.337+00', '{"cached":null,"ignore_cache":false}'), +(46608, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:03.914+00', '{"cached":null,"ignore_cache":false}'), +(46609, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.127+00', '{"cached":null,"ignore_cache":false}'), +(46610, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.196+00', '{"cached":null,"ignore_cache":false}'), +(46611, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.239+00', '{"cached":null,"ignore_cache":false}'), +(46612, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:04.285+00', '{"cached":null,"ignore_cache":false}'), +(46613, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.039+00', '{"cached":null,"ignore_cache":false}'), +(46614, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.083+00', '{"cached":null,"ignore_cache":false}'), +(46615, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.182+00', '{"cached":null,"ignore_cache":false}'), +(46616, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:05.84+00', '{"cached":null,"ignore_cache":false}'), +(46617, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:06.173+00', '{"cached":null,"ignore_cache":false}'), +(46618, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:06.343+00', '{"cached":null,"ignore_cache":false}'), +(46619, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:06.957+00', '{"cached":null,"ignore_cache":false}'), +(46620, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:07.315+00', '{"cached":null,"ignore_cache":false}'), +(46621, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:07.649+00', '{"cached":null,"ignore_cache":false}'), +(46622, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:08.447+00', '{"cached":null,"ignore_cache":false}'), +(46623, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:08.63+00', '{"cached":null,"ignore_cache":false}'), +(46624, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:10.227+00', '{"cached":null,"ignore_cache":false}'), +(46625, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:10.31+00', '{"cached":null,"ignore_cache":false}'), +(46626, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:10.43+00', '{"cached":null,"ignore_cache":false}'), +(46627, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 15:57:10.525+00', '{"cached":null,"ignore_cache":false}'), +(46628, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:52.9+00', '{"cached":null,"ignore_cache":false}'), +(46629, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:53.512+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46630, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:53.643+00', '{"cached":null,"ignore_cache":false}'), +(46631, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:53.845+00', '{"cached":null,"ignore_cache":false}'), +(46632, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:53.958+00', '{"cached":null,"ignore_cache":false}'), +(46633, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:53.985+00', '{"cached":null,"ignore_cache":false}'), +(46634, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:54.03+00', '{"cached":null,"ignore_cache":false}'), +(46635, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:54.186+00', '{"cached":null,"ignore_cache":false}'), +(46636, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:55.605+00', '{"cached":null,"ignore_cache":false}'), +(46637, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 16:00:55.615+00', '{"cached":null,"ignore_cache":false}'), +(46638, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:47.462+00', '{"cached":null,"ignore_cache":false}'), +(46639, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:47.479+00', '{"cached":null,"ignore_cache":false}'), +(46640, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:47.99+00', '{"cached":null,"ignore_cache":false}'), +(46641, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:48.017+00', '{"cached":null,"ignore_cache":false}'), +(46642, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:48.037+00', '{"cached":null,"ignore_cache":false}'), +(46643, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 16:03:48.04+00', '{"cached":null,"ignore_cache":false}'), +(46644, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:04.1+00', '{"cached":null,"ignore_cache":false}'), +(46645, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:05.021+00', '{"cached":null,"ignore_cache":false}'), +(46646, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:05.196+00', '{"cached":null,"ignore_cache":false}'), +(46647, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:05.502+00', '{"cached":null,"ignore_cache":false}'), +(46648, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:05.548+00', '{"cached":null,"ignore_cache":false}'), +(46649, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:05.603+00', '{"cached":null,"ignore_cache":false}'), +(46650, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:05.624+00', '{"cached":null,"ignore_cache":false}'), +(46651, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:05.651+00', '{"cached":null,"ignore_cache":false}'), +(46652, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:06.632+00', '{"cached":null,"ignore_cache":false}'), +(46653, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:06:06.64+00', '{"cached":null,"ignore_cache":false}'), +(46654, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:51.759+00', '{"cached":null,"ignore_cache":false}'), +(46655, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:51.913+00', '{"cached":null,"ignore_cache":false}'), +(46656, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:52.298+00', '{"cached":null,"ignore_cache":false}'), +(46657, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:52.305+00', '{"cached":null,"ignore_cache":false}'), +(46658, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:52.341+00', '{"cached":null,"ignore_cache":false}'), +(46659, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:52.364+00', '{"cached":null,"ignore_cache":false}'), +(46660, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.314+00', '{"cached":null,"ignore_cache":false}'), +(46661, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:55.658+00', '{"cached":null,"ignore_cache":false}'), +(46662, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.142+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46663, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.186+00', '{"cached":null,"ignore_cache":false}'), +(46664, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.426+00', '{"cached":null,"ignore_cache":false}'), +(46665, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.446+00', '{"cached":null,"ignore_cache":false}'), +(46666, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.813+00', '{"cached":null,"ignore_cache":false}'), +(46667, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:56.97+00', '{"cached":null,"ignore_cache":false}'), +(46668, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:57.114+00', '{"cached":null,"ignore_cache":false}'), +(46669, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:57.324+00', '{"cached":null,"ignore_cache":false}'), +(46670, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:57.485+00', '{"cached":null,"ignore_cache":false}'), +(46671, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:57.51+00', '{"cached":null,"ignore_cache":false}'), +(46672, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:57.571+00', '{"cached":null,"ignore_cache":false}'), +(46673, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.117+00', '{"cached":null,"ignore_cache":false}'), +(46674, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.354+00', '{"cached":null,"ignore_cache":false}'), +(46675, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.596+00', '{"cached":null,"ignore_cache":false}'), +(46676, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.644+00', '{"cached":null,"ignore_cache":false}'), +(46677, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.709+00', '{"cached":null,"ignore_cache":false}'), +(46678, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.717+00', '{"cached":null,"ignore_cache":false}'), +(46679, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.794+00', '{"cached":null,"ignore_cache":false}'), +(46680, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:58.816+00', '{"cached":null,"ignore_cache":false}'), +(46681, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:59.313+00', '{"cached":null,"ignore_cache":false}'), +(46682, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:59.658+00', '{"cached":null,"ignore_cache":false}'), +(46683, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 16:08:59.714+00', '{"cached":null,"ignore_cache":false}'), +(46684, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 16:09:00.152+00', '{"cached":null,"ignore_cache":false}'), +(46685, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:09:00.274+00', '{"cached":null,"ignore_cache":false}'), +(46686, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:09:00.995+00', '{"cached":null,"ignore_cache":false}'), +(46687, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:09:01.089+00', '{"cached":null,"ignore_cache":false}'), +(46688, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 16:09:01.24+00', '{"cached":null,"ignore_cache":false}'), +(46689, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:15.001+00', '{"cached":null,"ignore_cache":false}'), +(46690, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:15.15+00', '{"cached":null,"ignore_cache":false}'), +(46691, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:15.595+00', '{"cached":null,"ignore_cache":false}'), +(46692, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:15.644+00', '{"cached":null,"ignore_cache":false}'), +(46693, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:15.727+00', '{"cached":null,"ignore_cache":false}'), +(46694, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:15.747+00', '{"cached":null,"ignore_cache":false}'), +(46695, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:16.757+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46696, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:16.762+00', '{"cached":null,"ignore_cache":false}'), +(46697, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:18.225+00', '{"cached":null,"ignore_cache":false}'), +(46698, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:18.305+00', '{"cached":null,"ignore_cache":false}'), +(46699, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:18.603+00', '{"cached":null,"ignore_cache":false}'), +(46700, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.172+00', '{"cached":null,"ignore_cache":false}'), +(46701, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.347+00', '{"cached":null,"ignore_cache":false}'), +(46702, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.576+00', '{"cached":null,"ignore_cache":false}'), +(46703, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.693+00', '{"cached":null,"ignore_cache":false}'), +(46704, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.749+00', '{"cached":null,"ignore_cache":false}'), +(46705, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.826+00', '{"cached":null,"ignore_cache":false}'), +(46706, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.912+00', '{"cached":null,"ignore_cache":false}'), +(46707, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.984+00', '{"cached":null,"ignore_cache":false}'), +(46708, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:19.985+00', '{"cached":null,"ignore_cache":false}'), +(46709, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.199+00', '{"cached":null,"ignore_cache":false}'), +(46710, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.221+00', '{"cached":null,"ignore_cache":false}'), +(46711, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.222+00', '{"cached":null,"ignore_cache":false}'), +(46712, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.223+00', '{"cached":null,"ignore_cache":false}'), +(46713, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.224+00', '{"cached":null,"ignore_cache":false}'), +(46714, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.265+00', '{"cached":null,"ignore_cache":false}'), +(46715, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.266+00', '{"cached":null,"ignore_cache":false}'), +(46716, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:20.303+00', '{"cached":null,"ignore_cache":false}'), +(46717, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:22.351+00', '{"cached":null,"ignore_cache":false}'), +(46718, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:22.44+00', '{"cached":null,"ignore_cache":false}'), +(46719, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:22.526+00', '{"cached":null,"ignore_cache":false}'), +(46720, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:10:22.542+00', '{"cached":null,"ignore_cache":false}'), +(46721, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:05.553+00', '{"cached":null,"ignore_cache":false}'), +(46722, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:06.98+00', '{"cached":null,"ignore_cache":false}'), +(46723, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:07.554+00', '{"cached":null,"ignore_cache":false}'), +(46724, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:07.68+00', '{"cached":null,"ignore_cache":false}'), +(46725, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:07.753+00', '{"cached":null,"ignore_cache":false}'), +(46726, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:07.758+00', '{"cached":null,"ignore_cache":false}'), +(46727, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:07.828+00', '{"cached":null,"ignore_cache":false}'), +(46728, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:07.94+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46729, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:09.293+00', '{"cached":null,"ignore_cache":false}'), +(46730, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 16:11:09.352+00', '{"cached":null,"ignore_cache":false}'), +(46731, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:49.096+00', '{"cached":null,"ignore_cache":false}'), +(46732, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:49.153+00', '{"cached":null,"ignore_cache":false}'), +(46733, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:49.526+00', '{"cached":null,"ignore_cache":false}'), +(46734, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:49.56+00', '{"cached":null,"ignore_cache":false}'), +(46735, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:49.588+00', '{"cached":null,"ignore_cache":false}'), +(46736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 16:13:49.6+00', '{"cached":null,"ignore_cache":false}'), +(46737, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:22.906+00', '{"cached":null,"ignore_cache":false}'), +(46738, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:23.713+00', '{"cached":null,"ignore_cache":false}'), +(46739, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:23.928+00', '{"cached":null,"ignore_cache":false}'), +(46740, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:24.021+00', '{"cached":null,"ignore_cache":false}'), +(46741, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:24.052+00', '{"cached":null,"ignore_cache":false}'), +(46742, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:24.054+00', '{"cached":null,"ignore_cache":false}'), +(46743, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:24.098+00', '{"cached":null,"ignore_cache":false}'), +(46744, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:24.112+00', '{"cached":null,"ignore_cache":false}'), +(46745, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:24.885+00', '{"cached":null,"ignore_cache":false}'), +(46746, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 16:16:24.957+00', '{"cached":null,"ignore_cache":false}'), +(46747, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:27.019+00', '{"cached":null,"ignore_cache":false}'), +(46748, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:27.213+00', '{"cached":null,"ignore_cache":false}'), +(46749, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:28.952+00', '{"cached":null,"ignore_cache":false}'), +(46750, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:28.989+00', '{"cached":null,"ignore_cache":false}'), +(46751, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:29.949+00', '{"cached":null,"ignore_cache":false}'), +(46752, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:30.028+00', '{"cached":null,"ignore_cache":false}'), +(46753, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:30.076+00', '{"cached":null,"ignore_cache":false}'), +(46754, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:30.086+00', '{"cached":null,"ignore_cache":false}'), +(46755, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:30.088+00', '{"cached":null,"ignore_cache":false}'), +(46756, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:30.329+00', '{"cached":null,"ignore_cache":false}'), +(46757, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:30.719+00', '{"cached":null,"ignore_cache":false}'), +(46758, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.263+00', '{"cached":null,"ignore_cache":false}'), +(46759, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.312+00', '{"cached":null,"ignore_cache":false}'), +(46760, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.729+00', '{"cached":null,"ignore_cache":false}'), +(46761, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.758+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46762, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.762+00', '{"cached":null,"ignore_cache":false}'), +(46763, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.801+00', '{"cached":null,"ignore_cache":false}'), +(46764, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.879+00', '{"cached":null,"ignore_cache":false}'), +(46765, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.911+00', '{"cached":null,"ignore_cache":false}'), +(46766, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.916+00', '{"cached":null,"ignore_cache":false}'), +(46767, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.92+00', '{"cached":null,"ignore_cache":false}'), +(46768, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.924+00', '{"cached":null,"ignore_cache":false}'), +(46769, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.927+00', '{"cached":null,"ignore_cache":false}'), +(46770, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.943+00', '{"cached":null,"ignore_cache":false}'), +(46771, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.947+00', '{"cached":null,"ignore_cache":false}'), +(46772, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.96+00', '{"cached":null,"ignore_cache":false}'), +(46773, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.969+00', '{"cached":null,"ignore_cache":false}'), +(46774, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:31.973+00', '{"cached":null,"ignore_cache":false}'), +(46775, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:34.182+00', '{"cached":null,"ignore_cache":false}'), +(46776, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:34.277+00', '{"cached":null,"ignore_cache":false}'), +(46777, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:34.305+00', '{"cached":null,"ignore_cache":false}'), +(46778, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 20:29:34.31+00', '{"cached":null,"ignore_cache":false}'), +(46779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:31.795+00', '{"cached":null,"ignore_cache":false}'), +(46780, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:31.906+00', '{"cached":null,"ignore_cache":false}'), +(46781, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:31.923+00', '{"cached":null,"ignore_cache":false}'), +(46782, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:31.933+00', '{"cached":null,"ignore_cache":false}'), +(46783, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:31.961+00', '{"cached":null,"ignore_cache":false}'), +(46784, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:31.986+00', '{"cached":null,"ignore_cache":false}'), +(46785, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.38+00', '{"cached":null,"ignore_cache":false}'), +(46786, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.383+00', '{"cached":null,"ignore_cache":false}'), +(46787, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.658+00', '{"cached":null,"ignore_cache":false}'), +(46788, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.71+00', '{"cached":null,"ignore_cache":false}'), +(46789, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.888+00', '{"cached":null,"ignore_cache":false}'), +(46790, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.889+00', '{"cached":null,"ignore_cache":false}'), +(46791, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.948+00', '{"cached":null,"ignore_cache":false}'), +(46792, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:44.97+00', '{"cached":null,"ignore_cache":false}'), +(46793, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:45.906+00', '{"cached":null,"ignore_cache":false}'), +(46794, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 20:35:46.051+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46795, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:09.707+00', '{"cached":null,"ignore_cache":false}'), +(46796, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:09.74+00', '{"cached":null,"ignore_cache":false}'), +(46797, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:12.522+00', '{"cached":null,"ignore_cache":false}'), +(46798, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:12.539+00', '{"cached":null,"ignore_cache":false}'), +(46799, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:14.253+00', '{"cached":null,"ignore_cache":false}'), +(46800, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:14.288+00', '{"cached":null,"ignore_cache":false}'), +(46801, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:14.406+00', '{"cached":null,"ignore_cache":false}'), +(46802, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:14.457+00', '{"cached":null,"ignore_cache":false}'), +(46803, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:14.662+00', '{"cached":null,"ignore_cache":false}'), +(46804, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:14.761+00', '{"cached":null,"ignore_cache":false}'), +(46805, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:14.778+00', '{"cached":null,"ignore_cache":false}'), +(46806, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:15.751+00', '{"cached":null,"ignore_cache":false}'), +(46807, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:15.768+00', '{"cached":null,"ignore_cache":false}'), +(46808, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:15.787+00', '{"cached":null,"ignore_cache":false}'), +(46809, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:15.814+00', '{"cached":null,"ignore_cache":false}'), +(46810, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.114+00', '{"cached":null,"ignore_cache":false}'), +(46811, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.144+00', '{"cached":null,"ignore_cache":false}'), +(46812, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.19+00', '{"cached":null,"ignore_cache":false}'), +(46813, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.194+00', '{"cached":null,"ignore_cache":false}'), +(46814, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.203+00', '{"cached":null,"ignore_cache":false}'), +(46815, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.206+00', '{"cached":null,"ignore_cache":false}'), +(46816, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.213+00', '{"cached":null,"ignore_cache":false}'), +(46817, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.214+00', '{"cached":null,"ignore_cache":false}'), +(46818, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.216+00', '{"cached":null,"ignore_cache":false}'), +(46819, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.217+00', '{"cached":null,"ignore_cache":false}'), +(46820, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.219+00', '{"cached":null,"ignore_cache":false}'), +(46821, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.225+00', '{"cached":null,"ignore_cache":false}'), +(46822, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:16.232+00', '{"cached":null,"ignore_cache":false}'), +(46823, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:18.596+00', '{"cached":null,"ignore_cache":false}'), +(46824, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:18.68+00', '{"cached":null,"ignore_cache":false}'), +(46825, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:18.7+00', '{"cached":null,"ignore_cache":false}'), +(46826, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-06 21:20:18.871+00', '{"cached":null,"ignore_cache":false}'), +(46827, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:13.857+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46828, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:13.94+00', '{"cached":null,"ignore_cache":false}'), +(46829, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:15.655+00', '{"cached":null,"ignore_cache":false}'), +(46830, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:15.812+00', '{"cached":null,"ignore_cache":false}'), +(46831, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:16.714+00', '{"cached":null,"ignore_cache":false}'), +(46832, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:16.953+00', '{"cached":null,"ignore_cache":false}'), +(46833, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:16.983+00', '{"cached":null,"ignore_cache":false}'), +(46834, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:17.021+00', '{"cached":null,"ignore_cache":false}'), +(46835, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:17.073+00', '{"cached":null,"ignore_cache":false}'), +(46836, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:17.34+00', '{"cached":null,"ignore_cache":false}'), +(46837, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:17.845+00', '{"cached":null,"ignore_cache":false}'), +(46838, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:17.918+00', '{"cached":null,"ignore_cache":false}'), +(46839, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:17.927+00', '{"cached":null,"ignore_cache":false}'), +(46840, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.025+00', '{"cached":null,"ignore_cache":false}'), +(46841, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.052+00', '{"cached":null,"ignore_cache":false}'), +(46842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.055+00', '{"cached":null,"ignore_cache":false}'), +(46843, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.081+00', '{"cached":null,"ignore_cache":false}'), +(46844, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.105+00', '{"cached":null,"ignore_cache":false}'), +(46845, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.226+00', '{"cached":null,"ignore_cache":false}'), +(46846, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.271+00', '{"cached":null,"ignore_cache":false}'), +(46847, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.355+00', '{"cached":null,"ignore_cache":false}'), +(46848, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.378+00', '{"cached":null,"ignore_cache":false}'), +(46849, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.418+00', '{"cached":null,"ignore_cache":false}'), +(46850, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.484+00', '{"cached":null,"ignore_cache":false}'), +(46851, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.504+00', '{"cached":null,"ignore_cache":false}'), +(46852, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.517+00', '{"cached":null,"ignore_cache":false}'), +(46853, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.624+00', '{"cached":null,"ignore_cache":false}'), +(46854, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:18.74+00', '{"cached":null,"ignore_cache":false}'), +(46855, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:21.148+00', '{"cached":null,"ignore_cache":false}'), +(46856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:21.485+00', '{"cached":null,"ignore_cache":false}'), +(46857, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:21.518+00', '{"cached":null,"ignore_cache":false}'), +(46858, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:04:21.524+00', '{"cached":null,"ignore_cache":false}'), +(46859, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:49.548+00', '{"cached":null,"ignore_cache":false}'), +(46860, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:50.813+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46861, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.113+00', '{"cached":null,"ignore_cache":false}'), +(46862, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.171+00', '{"cached":null,"ignore_cache":false}'), +(46863, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.176+00', '{"cached":null,"ignore_cache":false}'), +(46864, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.443+00', '{"cached":null,"ignore_cache":false}'), +(46865, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.484+00', '{"cached":null,"ignore_cache":false}'), +(46866, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.542+00', '{"cached":null,"ignore_cache":false}'), +(46867, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.565+00', '{"cached":null,"ignore_cache":false}'), +(46868, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.566+00', '{"cached":null,"ignore_cache":false}'), +(46869, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.607+00', '{"cached":null,"ignore_cache":false}'), +(46870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.66+00', '{"cached":null,"ignore_cache":false}'), +(46871, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.668+00', '{"cached":null,"ignore_cache":false}'), +(46872, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:51.759+00', '{"cached":null,"ignore_cache":false}'), +(46873, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:52.49+00', '{"cached":null,"ignore_cache":false}'), +(46874, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:09:52.499+00', '{"cached":null,"ignore_cache":false}'), +(46875, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:13.438+00', '{"cached":null,"ignore_cache":false}'), +(46876, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:14.268+00', '{"cached":null,"ignore_cache":false}'), +(46877, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:14.48+00', '{"cached":null,"ignore_cache":false}'), +(46878, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:14.701+00', '{"cached":null,"ignore_cache":false}'), +(46879, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:14.793+00', '{"cached":null,"ignore_cache":false}'), +(46880, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:14.886+00', '{"cached":null,"ignore_cache":false}'), +(46881, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:14.97+00', '{"cached":null,"ignore_cache":false}'), +(46882, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:14.978+00', '{"cached":null,"ignore_cache":false}'), +(46883, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:15.677+00', '{"cached":null,"ignore_cache":false}'), +(46884, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:15.683+00', '{"cached":null,"ignore_cache":false}'), +(46885, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:16.909+00', '{"cached":null,"ignore_cache":false}'), +(46886, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:17.015+00', '{"cached":null,"ignore_cache":false}'), +(46887, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:17.082+00', '{"cached":null,"ignore_cache":false}'), +(46888, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:17.109+00', '{"cached":null,"ignore_cache":false}'), +(46889, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:17.169+00', '{"cached":null,"ignore_cache":false}'), +(46890, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:15:17.208+00', '{"cached":null,"ignore_cache":false}'), +(46891, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:23.315+00', '{"cached":null,"ignore_cache":false}'), +(46892, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:24.379+00', '{"cached":null,"ignore_cache":false}'), +(46893, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:25.049+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46894, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:25.252+00', '{"cached":null,"ignore_cache":false}'), +(46895, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:25.269+00', '{"cached":null,"ignore_cache":false}'), +(46896, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:25.342+00', '{"cached":null,"ignore_cache":false}'), +(46897, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:25.377+00', '{"cached":null,"ignore_cache":false}'), +(46898, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:25.442+00', '{"cached":null,"ignore_cache":false}'), +(46899, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:26.23+00', '{"cached":null,"ignore_cache":false}'), +(46900, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:26.248+00', '{"cached":null,"ignore_cache":false}'), +(46901, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:30.817+00', '{"cached":null,"ignore_cache":false}'), +(46902, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:31.059+00', '{"cached":null,"ignore_cache":false}'), +(46903, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:31.087+00', '{"cached":null,"ignore_cache":false}'), +(46904, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:31.126+00', '{"cached":null,"ignore_cache":false}'), +(46905, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:31.192+00', '{"cached":null,"ignore_cache":false}'), +(46906, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:20:31.214+00', '{"cached":null,"ignore_cache":false}'), +(46907, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:27.616+00', '{"cached":null,"ignore_cache":false}'), +(46908, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:28.375+00', '{"cached":null,"ignore_cache":false}'), +(46909, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:28.593+00', '{"cached":null,"ignore_cache":false}'), +(46910, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:28.825+00', '{"cached":null,"ignore_cache":false}'), +(46911, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:28.848+00', '{"cached":null,"ignore_cache":false}'), +(46912, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:28.867+00', '{"cached":null,"ignore_cache":false}'), +(46913, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:28.91+00', '{"cached":null,"ignore_cache":false}'), +(46914, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:28.922+00', '{"cached":null,"ignore_cache":false}'), +(46915, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:30.023+00', '{"cached":null,"ignore_cache":false}'), +(46916, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:30.091+00', '{"cached":null,"ignore_cache":false}'), +(46917, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:35.199+00', '{"cached":null,"ignore_cache":false}'), +(46918, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:35.211+00', '{"cached":null,"ignore_cache":false}'), +(46919, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:35.228+00', '{"cached":null,"ignore_cache":false}'), +(46920, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:35.265+00', '{"cached":null,"ignore_cache":false}'), +(46921, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:35.367+00', '{"cached":null,"ignore_cache":false}'), +(46922, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:25:35.386+00', '{"cached":null,"ignore_cache":false}'), +(46923, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:05.765+00', '{"cached":null,"ignore_cache":false}'), +(46924, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:06.711+00', '{"cached":null,"ignore_cache":false}'), +(46925, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:07.147+00', '{"cached":null,"ignore_cache":false}'), +(46926, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:07.345+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46927, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:07.358+00', '{"cached":null,"ignore_cache":false}'), +(46928, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:07.383+00', '{"cached":null,"ignore_cache":false}'), +(46929, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:07.415+00', '{"cached":null,"ignore_cache":false}'), +(46930, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:07.451+00', '{"cached":null,"ignore_cache":false}'), +(46931, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:08.117+00', '{"cached":null,"ignore_cache":false}'), +(46932, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:08.132+00', '{"cached":null,"ignore_cache":false}'), +(46933, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.812+00', '{"cached":null,"ignore_cache":false}'), +(46934, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.884+00', '{"cached":null,"ignore_cache":false}'), +(46935, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.915+00', '{"cached":null,"ignore_cache":false}'), +(46936, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.945+00', '{"cached":null,"ignore_cache":false}'), +(46937, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:25.947+00', '{"cached":null,"ignore_cache":false}'), +(46938, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:31:26.004+00', '{"cached":null,"ignore_cache":false}'), +(46939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:57.581+00', '{"cached":null,"ignore_cache":false}'), +(46940, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:59.237+00', '{"cached":null,"ignore_cache":false}'), +(46941, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:59.812+00', '{"cached":null,"ignore_cache":false}'), +(46942, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:36:59.905+00', '{"cached":null,"ignore_cache":false}'), +(46943, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:00.106+00', '{"cached":null,"ignore_cache":false}'), +(46944, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:00.125+00', '{"cached":null,"ignore_cache":false}'), +(46945, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:00.174+00', '{"cached":null,"ignore_cache":false}'), +(46946, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:00.248+00', '{"cached":null,"ignore_cache":false}'), +(46947, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:01.197+00', '{"cached":null,"ignore_cache":false}'), +(46948, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:01.217+00', '{"cached":null,"ignore_cache":false}'), +(46949, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:46.34+00', '{"cached":null,"ignore_cache":false}'), +(46950, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:46.354+00', '{"cached":null,"ignore_cache":false}'), +(46951, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:46.517+00', '{"cached":null,"ignore_cache":false}'), +(46952, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:46.526+00', '{"cached":null,"ignore_cache":false}'), +(46953, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:46.604+00', '{"cached":null,"ignore_cache":false}'), +(46954, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:37:46.633+00', '{"cached":null,"ignore_cache":false}'), +(46955, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:45.24+00', '{"cached":null,"ignore_cache":false}'), +(46956, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:45.943+00', '{"cached":null,"ignore_cache":false}'), +(46957, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:46.119+00', '{"cached":null,"ignore_cache":false}'), +(46958, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:46.243+00', '{"cached":null,"ignore_cache":false}'), +(46959, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:46.429+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46960, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:46.443+00', '{"cached":null,"ignore_cache":false}'), +(46961, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:46.448+00', '{"cached":null,"ignore_cache":false}'), +(46962, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:46.464+00', '{"cached":null,"ignore_cache":false}'), +(46963, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:47.425+00', '{"cached":null,"ignore_cache":false}'), +(46964, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 08:42:47.438+00', '{"cached":null,"ignore_cache":false}'), +(46965, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:55.351+00', '{"cached":null,"ignore_cache":false}'), +(46966, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:55.366+00', '{"cached":null,"ignore_cache":false}'), +(46967, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:55.537+00', '{"cached":null,"ignore_cache":false}'), +(46968, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:55.562+00', '{"cached":null,"ignore_cache":false}'), +(46969, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:55.633+00', '{"cached":null,"ignore_cache":false}'), +(46970, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 08:43:55.666+00', '{"cached":null,"ignore_cache":false}'), +(46971, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:03.593+00', '{"cached":null,"ignore_cache":false}'), +(46972, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:03.61+00', '{"cached":null,"ignore_cache":false}'), +(46973, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:07.642+00', '{"cached":null,"ignore_cache":false}'), +(46974, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:07.655+00', '{"cached":null,"ignore_cache":false}'), +(46975, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:09.11+00', '{"cached":null,"ignore_cache":false}'), +(46976, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:09.442+00', '{"cached":null,"ignore_cache":false}'), +(46977, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:09.457+00', '{"cached":null,"ignore_cache":false}'), +(46978, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:09.708+00', '{"cached":null,"ignore_cache":false}'), +(46979, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:09.727+00', '{"cached":null,"ignore_cache":false}'), +(46980, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:09.727+00', '{"cached":null,"ignore_cache":false}'), +(46981, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:10.22+00', '{"cached":null,"ignore_cache":false}'), +(46982, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:10.459+00', '{"cached":null,"ignore_cache":false}'), +(46983, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:10.83+00', '{"cached":null,"ignore_cache":false}'), +(46984, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:10.964+00', '{"cached":null,"ignore_cache":false}'), +(46985, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.363+00', '{"cached":null,"ignore_cache":false}'), +(46986, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.632+00', '{"cached":null,"ignore_cache":false}'), +(46987, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.659+00', '{"cached":null,"ignore_cache":false}'), +(46988, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.732+00', '{"cached":null,"ignore_cache":false}'), +(46989, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.739+00', '{"cached":null,"ignore_cache":false}'), +(46990, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.741+00', '{"cached":null,"ignore_cache":false}'), +(46991, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.742+00', '{"cached":null,"ignore_cache":false}'), +(46992, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.746+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(46993, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.769+00', '{"cached":null,"ignore_cache":false}'), +(46994, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.81+00', '{"cached":null,"ignore_cache":false}'), +(46995, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.814+00', '{"cached":null,"ignore_cache":false}'), +(46996, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.815+00', '{"cached":null,"ignore_cache":false}'), +(46997, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.816+00', '{"cached":null,"ignore_cache":false}'), +(46998, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:11.819+00', '{"cached":null,"ignore_cache":false}'), +(46999, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:14.46+00', '{"cached":null,"ignore_cache":false}'), +(47000, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:14.559+00', '{"cached":null,"ignore_cache":false}'), +(47001, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:14.716+00', '{"cached":null,"ignore_cache":false}'), +(47002, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:03:14.767+00', '{"cached":null,"ignore_cache":false}'), +(47003, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:08.489+00', '{"cached":null,"ignore_cache":false}'), +(47004, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:09.347+00', '{"cached":null,"ignore_cache":false}'), +(47005, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:10.703+00', '{"cached":null,"ignore_cache":false}'), +(47006, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:10.777+00', '{"cached":null,"ignore_cache":false}'), +(47007, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:10.807+00', '{"cached":null,"ignore_cache":false}'), +(47008, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.033+00', '{"cached":null,"ignore_cache":false}'), +(47009, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.237+00', '{"cached":null,"ignore_cache":false}'), +(47010, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.306+00', '{"cached":null,"ignore_cache":false}'), +(47011, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.313+00', '{"cached":null,"ignore_cache":false}'), +(47012, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.334+00', '{"cached":null,"ignore_cache":false}'), +(47013, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.398+00', '{"cached":null,"ignore_cache":false}'), +(47014, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.429+00', '{"cached":null,"ignore_cache":false}'), +(47015, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.453+00', '{"cached":null,"ignore_cache":false}'), +(47016, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:11.528+00', '{"cached":null,"ignore_cache":false}'), +(47017, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:13.368+00', '{"cached":null,"ignore_cache":false}'), +(47018, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:08:13.394+00', '{"cached":null,"ignore_cache":false}'), +(47019, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:12.225+00', '{"cached":null,"ignore_cache":false}'), +(47020, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.242+00', '{"cached":null,"ignore_cache":false}'), +(47021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.448+00', '{"cached":null,"ignore_cache":false}'), +(47022, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.466+00', '{"cached":null,"ignore_cache":false}'), +(47023, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.59+00', '{"cached":null,"ignore_cache":false}'), +(47024, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.704+00', '{"cached":null,"ignore_cache":false}'), +(47025, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.85+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47026, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.875+00', '{"cached":null,"ignore_cache":false}'), +(47027, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.884+00', '{"cached":null,"ignore_cache":false}'), +(47028, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.981+00', '{"cached":null,"ignore_cache":false}'), +(47029, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:13.985+00', '{"cached":null,"ignore_cache":false}'), +(47030, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:14.012+00', '{"cached":null,"ignore_cache":false}'), +(47031, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:14.03+00', '{"cached":null,"ignore_cache":false}'), +(47032, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:14.075+00', '{"cached":null,"ignore_cache":false}'), +(47033, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:14.779+00', '{"cached":null,"ignore_cache":false}'), +(47034, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:13:14.958+00', '{"cached":null,"ignore_cache":false}'), +(47035, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.637+00', '{"cached":null,"ignore_cache":false}'), +(47036, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.677+00', '{"cached":null,"ignore_cache":false}'), +(47037, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.698+00', '{"cached":null,"ignore_cache":false}'), +(47038, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.699+00', '{"cached":null,"ignore_cache":false}'), +(47039, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.701+00', '{"cached":null,"ignore_cache":false}'), +(47040, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.702+00', '{"cached":null,"ignore_cache":false}'), +(47041, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.703+00', '{"cached":null,"ignore_cache":false}'), +(47042, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.704+00', '{"cached":null,"ignore_cache":false}'), +(47043, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.704+00', '{"cached":null,"ignore_cache":false}'), +(47044, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.757+00', '{"cached":null,"ignore_cache":false}'), +(47045, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.854+00', '{"cached":null,"ignore_cache":false}'), +(47046, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.874+00', '{"cached":null,"ignore_cache":false}'), +(47047, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:28.989+00', '{"cached":null,"ignore_cache":false}'), +(47048, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:29.033+00', '{"cached":null,"ignore_cache":false}'), +(47049, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:29.97+00', '{"cached":null,"ignore_cache":false}'), +(47050, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:18:29.985+00', '{"cached":null,"ignore_cache":false}'), +(47051, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:53.515+00', '{"cached":null,"ignore_cache":false}'), +(47052, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:53.589+00', '{"cached":null,"ignore_cache":false}'), +(47053, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:53.596+00', '{"cached":null,"ignore_cache":false}'), +(47054, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:53.609+00', '{"cached":null,"ignore_cache":false}'), +(47055, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:53.621+00', '{"cached":null,"ignore_cache":false}'), +(47056, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:53.622+00', '{"cached":null,"ignore_cache":false}'), +(47057, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.88+00', '{"cached":null,"ignore_cache":false}'), +(47058, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:55.909+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47059, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:56.144+00', '{"cached":null,"ignore_cache":false}'), +(47060, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:56.163+00', '{"cached":null,"ignore_cache":false}'), +(47061, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:56.183+00', '{"cached":null,"ignore_cache":false}'), +(47062, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:56.272+00', '{"cached":null,"ignore_cache":false}'), +(47063, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:56.29+00', '{"cached":null,"ignore_cache":false}'), +(47064, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:56.336+00', '{"cached":null,"ignore_cache":false}'), +(47065, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:57.244+00', '{"cached":null,"ignore_cache":false}'), +(47066, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:23:57.274+00', '{"cached":null,"ignore_cache":false}'), +(47067, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:27.403+00', '{"cached":null,"ignore_cache":false}'), +(47068, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:27.926+00', '{"cached":null,"ignore_cache":false}'), +(47069, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:27.961+00', '{"cached":null,"ignore_cache":false}'), +(47070, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:28.001+00', '{"cached":null,"ignore_cache":false}'), +(47071, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:28.051+00', '{"cached":null,"ignore_cache":false}'), +(47072, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:28.997+00', '{"cached":null,"ignore_cache":false}'), +(47073, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:29.079+00', '{"cached":null,"ignore_cache":false}'), +(47074, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:29.1+00', '{"cached":null,"ignore_cache":false}'), +(47075, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:30.028+00', '{"cached":null,"ignore_cache":false}'), +(47076, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:30.1+00', '{"cached":null,"ignore_cache":false}'), +(47077, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.177+00', '{"cached":null,"ignore_cache":false}'), +(47078, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.227+00', '{"cached":null,"ignore_cache":false}'), +(47079, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.607+00', '{"cached":null,"ignore_cache":false}'), +(47080, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.826+00', '{"cached":null,"ignore_cache":false}'), +(47081, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.862+00', '{"cached":null,"ignore_cache":false}'), +(47082, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.892+00', '{"cached":null,"ignore_cache":false}'), +(47083, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.923+00', '{"cached":null,"ignore_cache":false}'), +(47084, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:35.947+00', '{"cached":null,"ignore_cache":false}'), +(47085, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:36.179+00', '{"cached":null,"ignore_cache":false}'), +(47086, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:27:36.226+00', '{"cached":null,"ignore_cache":false}'), +(47087, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:16.676+00', '{"cached":null,"ignore_cache":false}'), +(47088, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:16.688+00', '{"cached":null,"ignore_cache":false}'), +(47089, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:16.901+00', '{"cached":null,"ignore_cache":false}'), +(47090, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:16.918+00', '{"cached":null,"ignore_cache":false}'), +(47091, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:16.931+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47092, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:17.018+00', '{"cached":null,"ignore_cache":false}'), +(47093, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:31.915+00', '{"cached":null,"ignore_cache":false}'), +(47094, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.026+00', '{"cached":null,"ignore_cache":false}'), +(47095, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.167+00', '{"cached":null,"ignore_cache":false}'), +(47096, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.234+00', '{"cached":null,"ignore_cache":false}'), +(47097, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.303+00', '{"cached":null,"ignore_cache":false}'), +(47098, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.412+00', '{"cached":null,"ignore_cache":false}'), +(47099, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.472+00', '{"cached":null,"ignore_cache":false}'), +(47100, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.583+00', '{"cached":null,"ignore_cache":false}'), +(47101, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.986+00', '{"cached":null,"ignore_cache":false}'), +(47102, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:29:32.994+00', '{"cached":null,"ignore_cache":false}'), +(47103, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:58.457+00', '{"cached":null,"ignore_cache":false}'), +(47104, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:41:58.587+00', '{"cached":null,"ignore_cache":false}'), +(47105, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:02.4+00', '{"cached":null,"ignore_cache":false}'), +(47106, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:02.408+00', '{"cached":null,"ignore_cache":false}'), +(47107, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:02.763+00', '{"cached":null,"ignore_cache":false}'), +(47108, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.44+00', '{"cached":null,"ignore_cache":false}'), +(47109, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.473+00', '{"cached":null,"ignore_cache":false}'), +(47110, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.477+00', '{"cached":null,"ignore_cache":false}'), +(47111, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.478+00', '{"cached":null,"ignore_cache":false}'), +(47112, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.536+00', '{"cached":null,"ignore_cache":false}'), +(47113, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.68+00', '{"cached":null,"ignore_cache":false}'), +(47114, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.7+00', '{"cached":null,"ignore_cache":false}'), +(47115, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.702+00', '{"cached":null,"ignore_cache":false}'), +(47116, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.703+00', '{"cached":null,"ignore_cache":false}'), +(47117, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.777+00', '{"cached":null,"ignore_cache":false}'), +(47118, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.8+00', '{"cached":null,"ignore_cache":false}'), +(47119, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.973+00', '{"cached":null,"ignore_cache":false}'), +(47120, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.974+00', '{"cached":null,"ignore_cache":false}'), +(47121, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:03.975+00', '{"cached":null,"ignore_cache":false}'), +(47122, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.114+00', '{"cached":null,"ignore_cache":false}'), +(47123, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.116+00', '{"cached":null,"ignore_cache":false}'), +(47124, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.141+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47125, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.148+00', '{"cached":null,"ignore_cache":false}'), +(47126, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.185+00', '{"cached":null,"ignore_cache":false}'), +(47127, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.19+00', '{"cached":null,"ignore_cache":false}'), +(47128, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.21+00', '{"cached":null,"ignore_cache":false}'), +(47129, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.315+00', '{"cached":null,"ignore_cache":false}'), +(47130, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:04.532+00', '{"cached":null,"ignore_cache":false}'), +(47131, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:07.093+00', '{"cached":null,"ignore_cache":false}'), +(47132, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:07.136+00', '{"cached":null,"ignore_cache":false}'), +(47133, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:07.138+00', '{"cached":null,"ignore_cache":false}'), +(47134, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:42:07.147+00', '{"cached":null,"ignore_cache":false}'), +(47135, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:21.305+00', '{"cached":null,"ignore_cache":false}'), +(47136, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:24.409+00', '{"cached":null,"ignore_cache":false}'), +(47137, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.048+00', '{"cached":null,"ignore_cache":false}'), +(47138, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.097+00', '{"cached":null,"ignore_cache":false}'), +(47139, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.119+00', '{"cached":null,"ignore_cache":false}'), +(47140, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.48+00', '{"cached":null,"ignore_cache":false}'), +(47141, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.599+00', '{"cached":null,"ignore_cache":false}'), +(47142, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.601+00', '{"cached":null,"ignore_cache":false}'), +(47143, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.604+00', '{"cached":null,"ignore_cache":false}'), +(47144, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.605+00', '{"cached":null,"ignore_cache":false}'), +(47145, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.606+00', '{"cached":null,"ignore_cache":false}'), +(47146, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.611+00', '{"cached":null,"ignore_cache":false}'), +(47147, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.613+00', '{"cached":null,"ignore_cache":false}'), +(47148, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:25.642+00', '{"cached":null,"ignore_cache":false}'), +(47149, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:26.228+00', '{"cached":null,"ignore_cache":false}'), +(47150, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 09:52:26.28+00', '{"cached":null,"ignore_cache":false}'), +(47151, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:45.789+00', '{"cached":null,"ignore_cache":false}'), +(47152, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:47.384+00', '{"cached":null,"ignore_cache":false}'), +(47153, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.356+00', '{"cached":null,"ignore_cache":false}'), +(47154, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.37+00', '{"cached":null,"ignore_cache":false}'), +(47155, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.386+00', '{"cached":null,"ignore_cache":false}'), +(47156, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.681+00', '{"cached":null,"ignore_cache":false}'), +(47157, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.748+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47158, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.768+00', '{"cached":null,"ignore_cache":false}'), +(47159, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.778+00', '{"cached":null,"ignore_cache":false}'), +(47160, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.802+00', '{"cached":null,"ignore_cache":false}'), +(47161, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.848+00', '{"cached":null,"ignore_cache":false}'), +(47162, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.887+00', '{"cached":null,"ignore_cache":false}'), +(47163, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.918+00', '{"cached":null,"ignore_cache":false}'), +(47164, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:48.958+00', '{"cached":null,"ignore_cache":false}'), +(47165, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:50.337+00', '{"cached":null,"ignore_cache":false}'), +(47166, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:00:50.37+00', '{"cached":null,"ignore_cache":false}'), +(47167, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:45.026+00', '{"cached":null,"ignore_cache":false}'), +(47168, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:46.571+00', '{"cached":null,"ignore_cache":false}'), +(47169, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.094+00', '{"cached":null,"ignore_cache":false}'), +(47170, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.12+00', '{"cached":null,"ignore_cache":false}'), +(47171, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.145+00', '{"cached":null,"ignore_cache":false}'), +(47172, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.317+00', '{"cached":null,"ignore_cache":false}'), +(47173, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.376+00', '{"cached":null,"ignore_cache":false}'), +(47174, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.411+00', '{"cached":null,"ignore_cache":false}'), +(47175, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.429+00', '{"cached":null,"ignore_cache":false}'), +(47176, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.451+00', '{"cached":null,"ignore_cache":false}'), +(47177, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.467+00', '{"cached":null,"ignore_cache":false}'), +(47178, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.493+00', '{"cached":null,"ignore_cache":false}'), +(47179, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.503+00', '{"cached":null,"ignore_cache":false}'), +(47180, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:47.6+00', '{"cached":null,"ignore_cache":false}'), +(47181, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:48.645+00', '{"cached":null,"ignore_cache":false}'), +(47182, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:05:48.664+00', '{"cached":null,"ignore_cache":false}'), +(47183, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:26.496+00', '{"cached":null,"ignore_cache":false}'), +(47184, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:26.581+00', '{"cached":null,"ignore_cache":false}'), +(47185, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:28.405+00', '{"cached":null,"ignore_cache":false}'), +(47186, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:28.452+00', '{"cached":null,"ignore_cache":false}'), +(47187, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:30.368+00', '{"cached":null,"ignore_cache":false}'), +(47188, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:30.387+00', '{"cached":null,"ignore_cache":false}'), +(47189, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:30.468+00', '{"cached":null,"ignore_cache":false}'), +(47190, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:30.504+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47191, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:30.55+00', '{"cached":null,"ignore_cache":false}'), +(47192, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:30.557+00', '{"cached":null,"ignore_cache":false}'), +(47193, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:30.921+00', '{"cached":null,"ignore_cache":false}'), +(47194, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.191+00', '{"cached":null,"ignore_cache":false}'), +(47195, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.205+00', '{"cached":null,"ignore_cache":false}'), +(47196, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.28+00', '{"cached":null,"ignore_cache":false}'), +(47197, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.513+00', '{"cached":null,"ignore_cache":false}'), +(47198, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.528+00', '{"cached":null,"ignore_cache":false}'), +(47199, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.544+00', '{"cached":null,"ignore_cache":false}'), +(47200, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.607+00', '{"cached":null,"ignore_cache":false}'), +(47201, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.608+00', '{"cached":null,"ignore_cache":false}'), +(47202, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.609+00', '{"cached":null,"ignore_cache":false}'), +(47203, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.611+00', '{"cached":null,"ignore_cache":false}'), +(47204, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.634+00', '{"cached":null,"ignore_cache":false}'), +(47205, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.636+00', '{"cached":null,"ignore_cache":false}'), +(47206, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.674+00', '{"cached":null,"ignore_cache":false}'), +(47207, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.676+00', '{"cached":null,"ignore_cache":false}'), +(47208, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.687+00', '{"cached":null,"ignore_cache":false}'), +(47209, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.769+00', '{"cached":null,"ignore_cache":false}'), +(47210, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:31.956+00', '{"cached":null,"ignore_cache":false}'), +(47211, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:33.548+00', '{"cached":null,"ignore_cache":false}'), +(47212, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:33.553+00', '{"cached":null,"ignore_cache":false}'), +(47213, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:33.591+00', '{"cached":null,"ignore_cache":false}'), +(47214, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:10:33.634+00', '{"cached":null,"ignore_cache":false}'), +(47215, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:33.236+00', '{"cached":null,"ignore_cache":false}'), +(47216, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:33.518+00', '{"cached":null,"ignore_cache":false}'), +(47217, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:36.08+00', '{"cached":null,"ignore_cache":false}'), +(47218, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:36.794+00', '{"cached":null,"ignore_cache":false}'), +(47219, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:36.902+00', '{"cached":null,"ignore_cache":false}'), +(47220, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:36.903+00', '{"cached":null,"ignore_cache":false}'), +(47221, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:36.904+00', '{"cached":null,"ignore_cache":false}'), +(47222, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:36.905+00', '{"cached":null,"ignore_cache":false}'), +(47223, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:41.09+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47224, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:41.823+00', '{"cached":null,"ignore_cache":false}'), +(47225, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.194+00', '{"cached":null,"ignore_cache":false}'), +(47226, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.211+00', '{"cached":null,"ignore_cache":false}'), +(47227, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.278+00', '{"cached":null,"ignore_cache":false}'), +(47228, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.349+00', '{"cached":null,"ignore_cache":false}'), +(47229, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.358+00', '{"cached":null,"ignore_cache":false}'), +(47230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.413+00', '{"cached":null,"ignore_cache":false}'), +(47231, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.435+00', '{"cached":null,"ignore_cache":false}'), +(47232, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.491+00', '{"cached":null,"ignore_cache":false}'), +(47233, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.54+00', '{"cached":null,"ignore_cache":false}'), +(47234, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.737+00', '{"cached":null,"ignore_cache":false}'), +(47235, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.739+00', '{"cached":null,"ignore_cache":false}'), +(47236, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.744+00', '{"cached":null,"ignore_cache":false}'), +(47237, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.747+00', '{"cached":null,"ignore_cache":false}'), +(47238, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.834+00', '{"cached":null,"ignore_cache":false}'), +(47239, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.84+00', '{"cached":null,"ignore_cache":false}'), +(47240, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.873+00', '{"cached":null,"ignore_cache":false}'), +(47241, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.915+00', '{"cached":null,"ignore_cache":false}'), +(47242, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:42.93+00', '{"cached":null,"ignore_cache":false}'), +(47243, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:45.693+00', '{"cached":null,"ignore_cache":false}'), +(47244, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:45.844+00', '{"cached":null,"ignore_cache":false}'), +(47245, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:46.036+00', '{"cached":null,"ignore_cache":false}'), +(47246, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:11:46.135+00', '{"cached":null,"ignore_cache":false}'), +(47247, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:11.185+00', '{"cached":null,"ignore_cache":false}'), +(47248, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:11.218+00', '{"cached":null,"ignore_cache":false}'), +(47249, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:12.674+00', '{"cached":null,"ignore_cache":false}'), +(47250, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:12.705+00', '{"cached":null,"ignore_cache":false}'), +(47251, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:12.764+00', '{"cached":null,"ignore_cache":false}'), +(47252, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:12.926+00', '{"cached":null,"ignore_cache":false}'), +(47253, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:12.942+00', '{"cached":null,"ignore_cache":false}'), +(47254, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:12.946+00', '{"cached":null,"ignore_cache":false}'), +(47255, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:17.141+00', '{"cached":null,"ignore_cache":false}'), +(47256, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:17.243+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47257, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:17.833+00', '{"cached":null,"ignore_cache":false}'), +(47258, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:17.876+00', '{"cached":null,"ignore_cache":false}'), +(47259, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:17.936+00', '{"cached":null,"ignore_cache":false}'), +(47260, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:17.964+00', '{"cached":null,"ignore_cache":false}'), +(47261, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.149+00', '{"cached":null,"ignore_cache":false}'), +(47262, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.177+00', '{"cached":null,"ignore_cache":false}'), +(47263, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.284+00', '{"cached":null,"ignore_cache":false}'), +(47264, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.433+00', '{"cached":null,"ignore_cache":false}'), +(47265, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.457+00', '{"cached":null,"ignore_cache":false}'), +(47266, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.627+00', '{"cached":null,"ignore_cache":false}'), +(47267, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.63+00', '{"cached":null,"ignore_cache":false}'), +(47268, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.669+00', '{"cached":null,"ignore_cache":false}'), +(47269, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.67+00', '{"cached":null,"ignore_cache":false}'), +(47270, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.671+00', '{"cached":null,"ignore_cache":false}'), +(47271, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.672+00', '{"cached":null,"ignore_cache":false}'), +(47272, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.673+00', '{"cached":null,"ignore_cache":false}'), +(47273, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.677+00', '{"cached":null,"ignore_cache":false}'), +(47274, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:18.678+00', '{"cached":null,"ignore_cache":false}'), +(47275, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:20.732+00', '{"cached":null,"ignore_cache":false}'), +(47276, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:20.895+00', '{"cached":null,"ignore_cache":false}'), +(47277, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:21.103+00', '{"cached":null,"ignore_cache":false}'), +(47278, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:16:21.137+00', '{"cached":null,"ignore_cache":false}'), +(47279, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:57.25+00', '{"cached":null,"ignore_cache":false}'), +(47280, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:18:59.711+00', '{"cached":null,"ignore_cache":false}'), +(47281, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:01.494+00', '{"cached":null,"ignore_cache":false}'), +(47282, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:01.625+00', '{"cached":null,"ignore_cache":false}'), +(47283, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:01.751+00', '{"cached":null,"ignore_cache":false}'), +(47284, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:01.818+00', '{"cached":null,"ignore_cache":false}'), +(47285, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:01.85+00', '{"cached":null,"ignore_cache":false}'), +(47286, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.382+00', '{"cached":null,"ignore_cache":false}'), +(47287, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.432+00', '{"cached":null,"ignore_cache":false}'), +(47288, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.443+00', '{"cached":null,"ignore_cache":false}'), +(47289, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.46+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47290, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.477+00', '{"cached":null,"ignore_cache":false}'), +(47291, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.488+00', '{"cached":null,"ignore_cache":false}'), +(47292, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.49+00', '{"cached":null,"ignore_cache":false}'), +(47293, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.505+00', '{"cached":null,"ignore_cache":false}'), +(47294, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.554+00', '{"cached":null,"ignore_cache":false}'), +(47295, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.934+00', '{"cached":null,"ignore_cache":false}'), +(47296, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.938+00', '{"cached":null,"ignore_cache":false}'), +(47297, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:02.987+00', '{"cached":null,"ignore_cache":false}'), +(47298, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:03.026+00', '{"cached":null,"ignore_cache":false}'), +(47299, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.036+00', '{"cached":null,"ignore_cache":false}'), +(47300, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:19:05.059+00', '{"cached":null,"ignore_cache":false}'), +(47301, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:28.708+00', '{"cached":null,"ignore_cache":false}'), +(47302, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:28.73+00', '{"cached":null,"ignore_cache":false}'), +(47303, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:28.732+00', '{"cached":null,"ignore_cache":false}'), +(47304, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:28.752+00', '{"cached":null,"ignore_cache":false}'), +(47305, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:28.754+00', '{"cached":null,"ignore_cache":false}'), +(47306, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:28.756+00', '{"cached":null,"ignore_cache":false}'), +(47307, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.573+00', '{"cached":null,"ignore_cache":false}'), +(47308, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.584+00', '{"cached":null,"ignore_cache":false}'), +(47309, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.642+00', '{"cached":null,"ignore_cache":false}'), +(47310, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.72+00', '{"cached":null,"ignore_cache":false}'), +(47311, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.767+00', '{"cached":null,"ignore_cache":false}'), +(47312, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.949+00', '{"cached":null,"ignore_cache":false}'), +(47313, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:56.997+00', '{"cached":null,"ignore_cache":false}'), +(47314, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:57.219+00', '{"cached":null,"ignore_cache":false}'), +(47315, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:57.92+00', '{"cached":null,"ignore_cache":false}'), +(47316, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:24:57.984+00', '{"cached":null,"ignore_cache":false}'), +(47317, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:29.337+00', '{"cached":null,"ignore_cache":false}'), +(47318, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:29.369+00', '{"cached":null,"ignore_cache":false}'), +(47319, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:29.389+00', '{"cached":null,"ignore_cache":false}'), +(47320, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:29.39+00', '{"cached":null,"ignore_cache":false}'), +(47321, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:29.391+00', '{"cached":null,"ignore_cache":false}'), +(47322, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:31:29.392+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47323, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:12.313+00', '{"cached":null,"ignore_cache":false}'), +(47324, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:12.423+00', '{"cached":null,"ignore_cache":false}'), +(47325, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:12.99+00', '{"cached":null,"ignore_cache":false}'), +(47326, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:13.122+00', '{"cached":null,"ignore_cache":false}'), +(47327, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:13.21+00', '{"cached":null,"ignore_cache":false}'), +(47328, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:13.228+00', '{"cached":null,"ignore_cache":false}'), +(47329, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:13.317+00', '{"cached":null,"ignore_cache":false}'), +(47330, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:13.365+00', '{"cached":null,"ignore_cache":false}'), +(47331, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:14.088+00', '{"cached":null,"ignore_cache":false}'), +(47332, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:32:14.135+00', '{"cached":null,"ignore_cache":false}'), +(47333, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:49.801+00', '{"cached":null,"ignore_cache":false}'), +(47334, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:49.872+00', '{"cached":null,"ignore_cache":false}'), +(47335, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:49.878+00', '{"cached":null,"ignore_cache":false}'), +(47336, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:49.882+00', '{"cached":null,"ignore_cache":false}'), +(47337, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:49.884+00', '{"cached":null,"ignore_cache":false}'), +(47338, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 10:36:49.887+00', '{"cached":null,"ignore_cache":false}'), +(47339, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:39.032+00', '{"cached":null,"ignore_cache":false}'), +(47340, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:40.861+00', '{"cached":null,"ignore_cache":false}'), +(47341, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:41.187+00', '{"cached":null,"ignore_cache":false}'), +(47342, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:41.68+00', '{"cached":null,"ignore_cache":false}'), +(47343, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:41.747+00', '{"cached":null,"ignore_cache":false}'), +(47344, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:41.852+00', '{"cached":null,"ignore_cache":false}'), +(47345, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:41.883+00', '{"cached":null,"ignore_cache":false}'), +(47346, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:42.045+00', '{"cached":null,"ignore_cache":false}'), +(47347, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:43.564+00', '{"cached":null,"ignore_cache":false}'), +(47348, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 10:44:43.691+00', '{"cached":null,"ignore_cache":false}'), +(47349, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:36.323+00', '{"cached":null,"ignore_cache":null}'), +(47350, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:56.962+00', '{"cached":null,"ignore_cache":null}'), +(47351, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:59.481+00', '{"cached":null,"ignore_cache":false}'), +(47352, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:59.539+00', '{"cached":null,"ignore_cache":false}'), +(47353, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-02-09 11:30:59.56+00', '{"cached":null,"ignore_cache":false}'), +(47354, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:23.058+00', '{"cached":null,"ignore_cache":null}'), +(47355, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:23.409+00', '{"cached":null,"ignore_cache":false}'), +(47356, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:23.44+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47357, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:23.491+00', '{"cached":null,"ignore_cache":false}'), +(47358, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:32.801+00', '{"cached":null,"ignore_cache":null}'), +(47359, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.47+00', '{"cached":null,"ignore_cache":false}'), +(47360, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:33.627+00', '{"cached":null,"ignore_cache":false}'), +(47361, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:34.166+00', '{"cached":null,"ignore_cache":false}'), +(47362, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:34.218+00', '{"cached":null,"ignore_cache":false}'), +(47363, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:34.343+00', '{"cached":null,"ignore_cache":false}'), +(47364, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:34.421+00', '{"cached":null,"ignore_cache":false}'), +(47365, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:34.455+00', '{"cached":null,"ignore_cache":false}'), +(47366, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:34.474+00', '{"cached":null,"ignore_cache":false}'), +(47367, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:35.119+00', '{"cached":null,"ignore_cache":false}'), +(47368, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 11:31:35.19+00', '{"cached":null,"ignore_cache":false}'), +(47369, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:20.773+00', '{"cached":null,"ignore_cache":false}'), +(47370, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:20.914+00', '{"cached":null,"ignore_cache":false}'), +(47371, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:22.86+00', '{"cached":null,"ignore_cache":false}'), +(47372, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:22.887+00', '{"cached":null,"ignore_cache":false}'), +(47373, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:23.399+00', '{"cached":null,"ignore_cache":false}'), +(47374, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:24.151+00', '{"cached":null,"ignore_cache":false}'), +(47375, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:24.182+00', '{"cached":null,"ignore_cache":false}'), +(47376, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:24.186+00', '{"cached":null,"ignore_cache":false}'), +(47377, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:25.56+00', '{"cached":null,"ignore_cache":false}'), +(47378, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:25.776+00', '{"cached":null,"ignore_cache":false}'), +(47379, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.033+00', '{"cached":null,"ignore_cache":false}'), +(47380, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.262+00', '{"cached":null,"ignore_cache":false}'), +(47381, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.336+00', '{"cached":null,"ignore_cache":false}'), +(47382, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.342+00', '{"cached":null,"ignore_cache":false}'), +(47383, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.381+00', '{"cached":null,"ignore_cache":false}'), +(47384, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.413+00', '{"cached":null,"ignore_cache":false}'), +(47385, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.652+00', '{"cached":null,"ignore_cache":false}'), +(47386, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.728+00', '{"cached":null,"ignore_cache":false}'), +(47387, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.802+00', '{"cached":null,"ignore_cache":false}'), +(47388, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.843+00', '{"cached":null,"ignore_cache":false}'), +(47389, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.866+00', '{"cached":null,"ignore_cache":false}'), +(47390, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.906+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47391, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.911+00', '{"cached":null,"ignore_cache":false}'), +(47392, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.916+00', '{"cached":null,"ignore_cache":false}'), +(47393, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.919+00', '{"cached":null,"ignore_cache":false}'), +(47394, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.925+00', '{"cached":null,"ignore_cache":false}'), +(47395, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.932+00', '{"cached":null,"ignore_cache":false}'), +(47396, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:26.949+00', '{"cached":null,"ignore_cache":false}'), +(47397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:28.532+00', '{"cached":null,"ignore_cache":false}'), +(47398, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:28.737+00', '{"cached":null,"ignore_cache":false}'), +(47399, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:28.773+00', '{"cached":null,"ignore_cache":false}'), +(47400, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:25:28.807+00', '{"cached":null,"ignore_cache":false}'), +(47401, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:19.71+00', '{"cached":null,"ignore_cache":false}'), +(47402, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:20.579+00', '{"cached":null,"ignore_cache":false}'), +(47403, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:20.603+00', '{"cached":null,"ignore_cache":false}'), +(47404, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:20.612+00', '{"cached":null,"ignore_cache":false}'), +(47405, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.286+00', '{"cached":null,"ignore_cache":false}'), +(47406, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.585+00', '{"cached":null,"ignore_cache":false}'), +(47407, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.648+00', '{"cached":null,"ignore_cache":false}'), +(47408, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.662+00', '{"cached":null,"ignore_cache":false}'), +(47409, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.68+00', '{"cached":null,"ignore_cache":false}'), +(47410, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.705+00', '{"cached":null,"ignore_cache":false}'), +(47411, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.717+00', '{"cached":null,"ignore_cache":false}'), +(47412, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.718+00', '{"cached":null,"ignore_cache":false}'), +(47413, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.764+00', '{"cached":null,"ignore_cache":false}'), +(47414, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:21.783+00', '{"cached":null,"ignore_cache":false}'), +(47415, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:22.649+00', '{"cached":null,"ignore_cache":false}'), +(47416, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:30:22.672+00', '{"cached":null,"ignore_cache":false}'), +(47417, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:18.112+00', '{"cached":null,"ignore_cache":false}'), +(47418, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:19.213+00', '{"cached":null,"ignore_cache":false}'), +(47419, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:19.237+00', '{"cached":null,"ignore_cache":false}'), +(47420, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:19.263+00', '{"cached":null,"ignore_cache":false}'), +(47421, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.113+00', '{"cached":null,"ignore_cache":false}'), +(47422, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.386+00', '{"cached":null,"ignore_cache":false}'), +(47423, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.598+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47424, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.716+00', '{"cached":null,"ignore_cache":false}'), +(47425, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.78+00', '{"cached":null,"ignore_cache":false}'), +(47426, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.797+00', '{"cached":null,"ignore_cache":false}'), +(47427, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.811+00', '{"cached":null,"ignore_cache":false}'), +(47428, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.816+00', '{"cached":null,"ignore_cache":false}'), +(47429, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.846+00', '{"cached":null,"ignore_cache":false}'), +(47430, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:21.943+00', '{"cached":null,"ignore_cache":false}'), +(47431, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:25.099+00', '{"cached":null,"ignore_cache":false}'), +(47432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:35:25.102+00', '{"cached":null,"ignore_cache":false}'), +(47433, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:14.064+00', '{"cached":null,"ignore_cache":false}'), +(47434, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:14.261+00', '{"cached":null,"ignore_cache":false}'), +(47435, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:16.546+00', '{"cached":null,"ignore_cache":false}'), +(47436, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:16.609+00', '{"cached":null,"ignore_cache":false}'), +(47437, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:16.691+00', '{"cached":null,"ignore_cache":false}'), +(47438, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:16.695+00', '{"cached":null,"ignore_cache":false}'), +(47439, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:16.727+00', '{"cached":null,"ignore_cache":false}'), +(47440, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:16.727+00', '{"cached":null,"ignore_cache":false}'), +(47441, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:19.125+00', '{"cached":null,"ignore_cache":false}'), +(47442, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:19.228+00', '{"cached":null,"ignore_cache":false}'), +(47443, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:19.835+00', '{"cached":null,"ignore_cache":false}'), +(47444, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.109+00', '{"cached":null,"ignore_cache":false}'), +(47445, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.138+00', '{"cached":null,"ignore_cache":false}'), +(47446, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.321+00', '{"cached":null,"ignore_cache":false}'), +(47447, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.484+00', '{"cached":null,"ignore_cache":false}'), +(47448, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.486+00', '{"cached":null,"ignore_cache":false}'), +(47449, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.551+00', '{"cached":null,"ignore_cache":false}'), +(47450, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.623+00', '{"cached":null,"ignore_cache":false}'), +(47451, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.633+00', '{"cached":null,"ignore_cache":false}'), +(47452, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.665+00', '{"cached":null,"ignore_cache":false}'), +(47453, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.671+00', '{"cached":null,"ignore_cache":false}'), +(47454, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.728+00', '{"cached":null,"ignore_cache":false}'), +(47455, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.858+00', '{"cached":null,"ignore_cache":false}'), +(47456, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.858+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47457, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.859+00', '{"cached":null,"ignore_cache":false}'), +(47458, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.875+00', '{"cached":null,"ignore_cache":false}'), +(47459, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.889+00', '{"cached":null,"ignore_cache":false}'), +(47460, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:20.905+00', '{"cached":null,"ignore_cache":false}'), +(47461, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:21.971+00', '{"cached":null,"ignore_cache":false}'), +(47462, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:22.004+00', '{"cached":null,"ignore_cache":false}'), +(47463, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:22.019+00', '{"cached":null,"ignore_cache":false}'), +(47464, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:38:22.023+00', '{"cached":null,"ignore_cache":false}'), +(47465, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:16.881+00', '{"cached":null,"ignore_cache":false}'), +(47466, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:17.757+00', '{"cached":null,"ignore_cache":false}'), +(47467, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:17.818+00', '{"cached":null,"ignore_cache":false}'), +(47468, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:17.819+00', '{"cached":null,"ignore_cache":false}'), +(47469, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:19.96+00', '{"cached":null,"ignore_cache":false}'), +(47470, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.502+00', '{"cached":null,"ignore_cache":false}'), +(47471, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.623+00', '{"cached":null,"ignore_cache":false}'), +(47472, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.685+00', '{"cached":null,"ignore_cache":false}'), +(47473, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.731+00', '{"cached":null,"ignore_cache":false}'), +(47474, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.759+00', '{"cached":null,"ignore_cache":false}'), +(47475, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.775+00', '{"cached":null,"ignore_cache":false}'), +(47476, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.786+00', '{"cached":null,"ignore_cache":false}'), +(47477, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.814+00', '{"cached":null,"ignore_cache":false}'), +(47478, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:20.855+00', '{"cached":null,"ignore_cache":false}'), +(47479, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:22.707+00', '{"cached":null,"ignore_cache":false}'), +(47480, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:43:22.714+00', '{"cached":null,"ignore_cache":false}'), +(47481, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:15.424+00', '{"cached":null,"ignore_cache":false}'), +(47482, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:16.115+00', '{"cached":null,"ignore_cache":false}'), +(47483, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:16.135+00', '{"cached":null,"ignore_cache":false}'), +(47484, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:16.137+00', '{"cached":null,"ignore_cache":false}'), +(47485, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:16.894+00', '{"cached":null,"ignore_cache":false}'), +(47486, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.159+00', '{"cached":null,"ignore_cache":false}'), +(47487, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.21+00', '{"cached":null,"ignore_cache":false}'), +(47488, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.24+00', '{"cached":null,"ignore_cache":false}'), +(47489, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.299+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47490, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.321+00', '{"cached":null,"ignore_cache":false}'), +(47491, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.328+00', '{"cached":null,"ignore_cache":false}'), +(47492, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.381+00', '{"cached":null,"ignore_cache":false}'), +(47493, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.409+00', '{"cached":null,"ignore_cache":false}'), +(47494, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:17.417+00', '{"cached":null,"ignore_cache":false}'), +(47495, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:18.707+00', '{"cached":null,"ignore_cache":false}'), +(47496, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:48:18.712+00', '{"cached":null,"ignore_cache":false}'), +(47497, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:16.385+00', '{"cached":null,"ignore_cache":false}'), +(47498, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:17.229+00', '{"cached":null,"ignore_cache":false}'), +(47499, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:17.253+00', '{"cached":null,"ignore_cache":false}'), +(47500, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:17.266+00', '{"cached":null,"ignore_cache":false}'), +(47501, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:17.879+00', '{"cached":null,"ignore_cache":false}'), +(47502, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.293+00', '{"cached":null,"ignore_cache":false}'), +(47503, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.324+00', '{"cached":null,"ignore_cache":false}'), +(47504, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.394+00', '{"cached":null,"ignore_cache":false}'), +(47505, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.4+00', '{"cached":null,"ignore_cache":false}'), +(47506, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.452+00', '{"cached":null,"ignore_cache":false}'), +(47507, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.481+00', '{"cached":null,"ignore_cache":false}'), +(47508, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.496+00', '{"cached":null,"ignore_cache":false}'), +(47509, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.517+00', '{"cached":null,"ignore_cache":false}'), +(47510, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:18.522+00', '{"cached":null,"ignore_cache":false}'), +(47511, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:20.425+00', '{"cached":null,"ignore_cache":false}'), +(47512, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:53:20.474+00', '{"cached":null,"ignore_cache":false}'), +(47513, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:41.964+00', '{"cached":null,"ignore_cache":false}'), +(47514, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:42.125+00', '{"cached":null,"ignore_cache":false}'), +(47515, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:42.744+00', '{"cached":null,"ignore_cache":false}'), +(47516, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:42.766+00', '{"cached":null,"ignore_cache":false}'), +(47517, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:42.873+00', '{"cached":null,"ignore_cache":false}'), +(47518, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:42.941+00', '{"cached":null,"ignore_cache":false}'), +(47519, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:42.942+00', '{"cached":null,"ignore_cache":false}'), +(47520, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:42.996+00', '{"cached":null,"ignore_cache":false}'), +(47521, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:45.923+00', '{"cached":null,"ignore_cache":false}'), +(47522, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:46.651+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47523, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:46.885+00', '{"cached":null,"ignore_cache":false}'), +(47524, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:46.956+00', '{"cached":null,"ignore_cache":false}'), +(47525, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:46.984+00', '{"cached":null,"ignore_cache":false}'), +(47526, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:46.986+00', '{"cached":null,"ignore_cache":false}'), +(47527, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.037+00', '{"cached":null,"ignore_cache":false}'), +(47528, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.257+00', '{"cached":null,"ignore_cache":false}'), +(47529, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.263+00', '{"cached":null,"ignore_cache":false}'), +(47530, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.339+00', '{"cached":null,"ignore_cache":false}'), +(47531, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.564+00', '{"cached":null,"ignore_cache":false}'), +(47532, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.571+00', '{"cached":null,"ignore_cache":false}'), +(47533, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.586+00', '{"cached":null,"ignore_cache":false}'), +(47534, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.607+00', '{"cached":null,"ignore_cache":false}'), +(47535, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.614+00', '{"cached":null,"ignore_cache":false}'), +(47536, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.633+00', '{"cached":null,"ignore_cache":false}'), +(47537, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.661+00', '{"cached":null,"ignore_cache":false}'), +(47538, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.683+00', '{"cached":null,"ignore_cache":false}'), +(47539, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.684+00', '{"cached":null,"ignore_cache":false}'), +(47540, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:47.693+00', '{"cached":null,"ignore_cache":false}'), +(47541, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:49.604+00', '{"cached":null,"ignore_cache":false}'), +(47542, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:50.014+00', '{"cached":null,"ignore_cache":false}'), +(47543, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 12:56:50.029+00', '{"cached":null,"ignore_cache":false}'), +(47544, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:43.046+00', '{"cached":null,"ignore_cache":false}'), +(47545, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:44.708+00', '{"cached":null,"ignore_cache":false}'), +(47546, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:44.723+00', '{"cached":null,"ignore_cache":false}'), +(47547, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:44.781+00', '{"cached":null,"ignore_cache":false}'), +(47548, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:46.495+00', '{"cached":null,"ignore_cache":false}'), +(47549, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:46.937+00', '{"cached":null,"ignore_cache":false}'), +(47550, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.02+00', '{"cached":null,"ignore_cache":false}'), +(47551, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.027+00', '{"cached":null,"ignore_cache":false}'), +(47552, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.085+00', '{"cached":null,"ignore_cache":false}'), +(47553, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.141+00', '{"cached":null,"ignore_cache":false}'), +(47554, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.213+00', '{"cached":null,"ignore_cache":false}'), +(47555, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.216+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47556, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.268+00', '{"cached":null,"ignore_cache":false}'), +(47557, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:47.282+00', '{"cached":null,"ignore_cache":false}'), +(47558, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:48.537+00', '{"cached":null,"ignore_cache":false}'), +(47559, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 13:01:48.561+00', '{"cached":null,"ignore_cache":false}'), +(47560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:41.17+00', '{"cached":null,"ignore_cache":false}'), +(47561, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:41.523+00', '{"cached":null,"ignore_cache":false}'), +(47562, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:41.553+00', '{"cached":null,"ignore_cache":false}'), +(47563, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:41.576+00', '{"cached":null,"ignore_cache":false}'), +(47564, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:42.56+00', '{"cached":null,"ignore_cache":false}'), +(47565, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:42.733+00', '{"cached":null,"ignore_cache":false}'), +(47566, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.068+00', '{"cached":null,"ignore_cache":false}'), +(47567, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.091+00', '{"cached":null,"ignore_cache":false}'), +(47568, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.107+00', '{"cached":null,"ignore_cache":false}'), +(47569, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.128+00', '{"cached":null,"ignore_cache":false}'), +(47570, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.198+00', '{"cached":null,"ignore_cache":false}'), +(47571, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.212+00', '{"cached":null,"ignore_cache":false}'), +(47572, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.23+00', '{"cached":null,"ignore_cache":false}'), +(47573, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:43.34+00', '{"cached":null,"ignore_cache":false}'), +(47574, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:44.548+00', '{"cached":null,"ignore_cache":false}'), +(47575, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 13:06:44.644+00', '{"cached":null,"ignore_cache":false}'), +(47576, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:41.599+00', '{"cached":null,"ignore_cache":false}'), +(47577, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:42.082+00', '{"cached":null,"ignore_cache":false}'), +(47578, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:42.093+00', '{"cached":null,"ignore_cache":false}'), +(47579, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:42.103+00', '{"cached":null,"ignore_cache":false}'), +(47580, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:42.793+00', '{"cached":null,"ignore_cache":false}'), +(47581, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.099+00', '{"cached":null,"ignore_cache":false}'), +(47582, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.239+00', '{"cached":null,"ignore_cache":false}'), +(47583, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.241+00', '{"cached":null,"ignore_cache":false}'), +(47584, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.249+00', '{"cached":null,"ignore_cache":false}'), +(47585, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.305+00', '{"cached":null,"ignore_cache":false}'), +(47586, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.383+00', '{"cached":null,"ignore_cache":false}'), +(47587, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.384+00', '{"cached":null,"ignore_cache":false}'), +(47588, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.428+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47589, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:43.498+00', '{"cached":null,"ignore_cache":false}'), +(47590, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:44.486+00', '{"cached":null,"ignore_cache":false}'), +(47591, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 13:11:44.597+00', '{"cached":null,"ignore_cache":false}'), +(47592, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:40.437+00', '{"cached":null,"ignore_cache":false}'), +(47593, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:41.447+00', '{"cached":null,"ignore_cache":false}'), +(47594, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:41.465+00', '{"cached":null,"ignore_cache":false}'), +(47595, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:41.479+00', '{"cached":null,"ignore_cache":false}'), +(47596, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.24+00', '{"cached":null,"ignore_cache":false}'), +(47597, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.361+00', '{"cached":null,"ignore_cache":false}'), +(47598, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.463+00', '{"cached":null,"ignore_cache":false}'), +(47599, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.543+00', '{"cached":null,"ignore_cache":false}'), +(47600, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.575+00', '{"cached":null,"ignore_cache":false}'), +(47601, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.617+00', '{"cached":null,"ignore_cache":false}'), +(47602, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.656+00', '{"cached":null,"ignore_cache":false}'), +(47603, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.662+00', '{"cached":null,"ignore_cache":false}'), +(47604, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.671+00', '{"cached":null,"ignore_cache":false}'), +(47605, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:42.677+00', '{"cached":null,"ignore_cache":false}'), +(47606, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:43.41+00', '{"cached":null,"ignore_cache":false}'), +(47607, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 13:16:43.434+00', '{"cached":null,"ignore_cache":false}'), +(47608, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:39.362+00', '{"cached":null,"ignore_cache":false}'), +(47609, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:40.404+00', '{"cached":null,"ignore_cache":false}'), +(47610, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:40.461+00', '{"cached":null,"ignore_cache":false}'), +(47611, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:40.465+00', '{"cached":null,"ignore_cache":false}'), +(47612, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:41.615+00', '{"cached":null,"ignore_cache":false}'), +(47613, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:41.938+00', '{"cached":null,"ignore_cache":false}'), +(47614, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:41.983+00', '{"cached":null,"ignore_cache":false}'), +(47615, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:42.058+00', '{"cached":null,"ignore_cache":false}'), +(47616, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:42.118+00', '{"cached":null,"ignore_cache":false}'), +(47617, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:42.14+00', '{"cached":null,"ignore_cache":false}'), +(47618, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:42.185+00', '{"cached":null,"ignore_cache":false}'), +(47619, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:42.186+00', '{"cached":null,"ignore_cache":false}'), +(47620, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:42.209+00', '{"cached":null,"ignore_cache":false}'), +(47621, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:42.238+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47622, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:43.517+00', '{"cached":null,"ignore_cache":false}'), +(47623, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 13:21:43.535+00', '{"cached":null,"ignore_cache":false}'), +(47624, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:41.41+00', '{"cached":null,"ignore_cache":false}'), +(47625, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:41.911+00', '{"cached":null,"ignore_cache":false}'), +(47626, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:41.919+00', '{"cached":null,"ignore_cache":false}'), +(47627, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:41.929+00', '{"cached":null,"ignore_cache":false}'), +(47628, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.571+00', '{"cached":null,"ignore_cache":false}'), +(47629, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.877+00', '{"cached":null,"ignore_cache":false}'), +(47630, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.919+00', '{"cached":null,"ignore_cache":false}'), +(47631, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.92+00', '{"cached":null,"ignore_cache":false}'), +(47632, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.944+00', '{"cached":null,"ignore_cache":false}'), +(47633, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.95+00', '{"cached":null,"ignore_cache":false}'), +(47634, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.976+00', '{"cached":null,"ignore_cache":false}'), +(47635, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:42.997+00', '{"cached":null,"ignore_cache":false}'), +(47636, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:43.034+00', '{"cached":null,"ignore_cache":false}'), +(47637, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:43.064+00', '{"cached":null,"ignore_cache":false}'), +(47638, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:43.898+00', '{"cached":null,"ignore_cache":false}'), +(47639, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 13:26:43.912+00', '{"cached":null,"ignore_cache":false}'), +(47640, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:51.656+00', '{"cached":null,"ignore_cache":false}'), +(47641, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:52.485+00', '{"cached":null,"ignore_cache":false}'), +(47642, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:52.494+00', '{"cached":null,"ignore_cache":false}'), +(47643, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:52.515+00', '{"cached":null,"ignore_cache":false}'), +(47644, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:52.549+00', '{"cached":null,"ignore_cache":false}'), +(47645, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:54.453+00', '{"cached":null,"ignore_cache":false}'), +(47646, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:55.646+00', '{"cached":null,"ignore_cache":false}'), +(47647, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:55.767+00', '{"cached":null,"ignore_cache":false}'), +(47648, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.085+00', '{"cached":null,"ignore_cache":false}'), +(47649, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.272+00', '{"cached":null,"ignore_cache":false}'), +(47650, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.295+00', '{"cached":null,"ignore_cache":false}'), +(47651, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.305+00', '{"cached":null,"ignore_cache":false}'), +(47652, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.365+00', '{"cached":null,"ignore_cache":false}'), +(47653, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.37+00', '{"cached":null,"ignore_cache":false}'), +(47654, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.38+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47655, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.525+00', '{"cached":null,"ignore_cache":false}'), +(47656, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.53+00', '{"cached":null,"ignore_cache":false}'), +(47657, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.552+00', '{"cached":null,"ignore_cache":false}'), +(47658, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:56.791+00', '{"cached":null,"ignore_cache":false}'), +(47659, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:58.469+00', '{"cached":null,"ignore_cache":false}'), +(47660, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:28:58.531+00', '{"cached":null,"ignore_cache":false}'), +(47661, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:14.492+00', '{"cached":null,"ignore_cache":false}'), +(47662, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:14.968+00', '{"cached":null,"ignore_cache":false}'), +(47663, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.044+00', '{"cached":null,"ignore_cache":false}'), +(47664, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.046+00', '{"cached":null,"ignore_cache":false}'), +(47665, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.109+00', '{"cached":null,"ignore_cache":false}'), +(47666, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:15.86+00', '{"cached":null,"ignore_cache":false}'), +(47667, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.426+00', '{"cached":null,"ignore_cache":false}'), +(47668, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:17.472+00', '{"cached":null,"ignore_cache":false}'), +(47669, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:18.224+00', '{"cached":null,"ignore_cache":false}'), +(47670, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:18.896+00', '{"cached":null,"ignore_cache":false}'), +(47671, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:18.918+00', '{"cached":null,"ignore_cache":false}'), +(47672, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:19.233+00', '{"cached":null,"ignore_cache":false}'), +(47673, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:19.533+00', '{"cached":null,"ignore_cache":false}'), +(47674, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:19.667+00', '{"cached":null,"ignore_cache":false}'), +(47675, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:19.893+00', '{"cached":null,"ignore_cache":false}'), +(47676, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:19.906+00', '{"cached":null,"ignore_cache":false}'), +(47677, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:20.081+00', '{"cached":null,"ignore_cache":false}'), +(47678, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:20.155+00', '{"cached":null,"ignore_cache":false}'), +(47679, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:20.344+00', '{"cached":null,"ignore_cache":false}'), +(47680, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:20.713+00', '{"cached":null,"ignore_cache":false}'), +(47681, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:20.764+00', '{"cached":null,"ignore_cache":false}'), +(47682, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:20.964+00', '{"cached":null,"ignore_cache":false}'), +(47683, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:20.991+00', '{"cached":null,"ignore_cache":false}'), +(47684, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:21.024+00', '{"cached":null,"ignore_cache":false}'), +(47685, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:21.119+00', '{"cached":null,"ignore_cache":false}'), +(47686, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:21.145+00', '{"cached":null,"ignore_cache":false}'), +(47687, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:21.148+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47688, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:21.207+00', '{"cached":null,"ignore_cache":false}'), +(47689, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:22.526+00', '{"cached":null,"ignore_cache":false}'), +(47690, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:22.597+00', '{"cached":null,"ignore_cache":false}'), +(47691, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:22.752+00', '{"cached":null,"ignore_cache":false}'), +(47692, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:22.763+00', '{"cached":null,"ignore_cache":false}'), +(47693, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.84+00', '{"cached":null,"ignore_cache":false}'), +(47694, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:28.914+00', '{"cached":null,"ignore_cache":false}'), +(47695, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.104+00', '{"cached":null,"ignore_cache":false}'), +(47696, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.168+00', '{"cached":null,"ignore_cache":false}'), +(47697, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.91+00', '{"cached":null,"ignore_cache":false}'), +(47698, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:29.977+00', '{"cached":null,"ignore_cache":false}'), +(47699, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:30.189+00', '{"cached":null,"ignore_cache":false}'), +(47700, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.287+00', '{"cached":null,"ignore_cache":false}'), +(47701, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.317+00', '{"cached":null,"ignore_cache":false}'), +(47702, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.322+00', '{"cached":null,"ignore_cache":false}'), +(47703, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.4+00', '{"cached":null,"ignore_cache":false}'), +(47704, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.547+00', '{"cached":null,"ignore_cache":false}'), +(47705, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.558+00', '{"cached":null,"ignore_cache":false}'), +(47706, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.637+00', '{"cached":null,"ignore_cache":false}'), +(47707, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:31.911+00', '{"cached":null,"ignore_cache":false}'), +(47708, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:32.069+00', '{"cached":null,"ignore_cache":false}'), +(47709, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:32.182+00', '{"cached":null,"ignore_cache":false}'), +(47710, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:32.25+00', '{"cached":null,"ignore_cache":false}'), +(47711, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:32.405+00', '{"cached":null,"ignore_cache":false}'), +(47712, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:32.638+00', '{"cached":null,"ignore_cache":false}'), +(47713, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:32.785+00', '{"cached":null,"ignore_cache":false}'), +(47714, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:32.8+00', '{"cached":null,"ignore_cache":false}'), +(47715, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:33.399+00', '{"cached":null,"ignore_cache":false}'), +(47716, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:33.429+00', '{"cached":null,"ignore_cache":false}'), +(47717, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:33.478+00', '{"cached":null,"ignore_cache":false}'), +(47718, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:33.479+00', '{"cached":null,"ignore_cache":false}'), +(47719, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:33.785+00', '{"cached":null,"ignore_cache":false}'), +(47720, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:33.958+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47721, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:34.253+00', '{"cached":null,"ignore_cache":false}'), +(47722, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:34.266+00', '{"cached":null,"ignore_cache":false}'), +(47723, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:35.195+00', '{"cached":null,"ignore_cache":false}'), +(47724, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:29:35.263+00', '{"cached":null,"ignore_cache":false}'), +(47725, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:32.326+00', '{"cached":null,"ignore_cache":false}'), +(47726, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:32.397+00', '{"cached":null,"ignore_cache":false}'), +(47727, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:34.081+00', '{"cached":null,"ignore_cache":false}'), +(47728, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:34.084+00', '{"cached":null,"ignore_cache":false}'), +(47729, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:34.368+00', '{"cached":null,"ignore_cache":false}'), +(47730, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:34.484+00', '{"cached":null,"ignore_cache":false}'), +(47731, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:34.492+00', '{"cached":null,"ignore_cache":false}'), +(47732, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:34.493+00', '{"cached":null,"ignore_cache":false}'), +(47733, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:38.03+00', '{"cached":null,"ignore_cache":false}'), +(47734, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:38.206+00', '{"cached":null,"ignore_cache":false}'), +(47735, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:38.453+00', '{"cached":null,"ignore_cache":false}'), +(47736, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:38.735+00', '{"cached":null,"ignore_cache":false}'), +(47737, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.006+00', '{"cached":null,"ignore_cache":false}'), +(47738, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.205+00', '{"cached":null,"ignore_cache":false}'), +(47739, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.475+00', '{"cached":null,"ignore_cache":false}'), +(47740, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.504+00', '{"cached":null,"ignore_cache":false}'), +(47741, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.526+00', '{"cached":null,"ignore_cache":false}'), +(47742, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.584+00', '{"cached":null,"ignore_cache":false}'), +(47743, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.65+00', '{"cached":null,"ignore_cache":false}'), +(47744, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.67+00', '{"cached":null,"ignore_cache":false}'), +(47745, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.681+00', '{"cached":null,"ignore_cache":false}'), +(47746, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.705+00', '{"cached":null,"ignore_cache":false}'), +(47747, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.706+00', '{"cached":null,"ignore_cache":false}'), +(47748, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.708+00', '{"cached":null,"ignore_cache":false}'), +(47749, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.73+00', '{"cached":null,"ignore_cache":false}'), +(47750, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.78+00', '{"cached":null,"ignore_cache":false}'), +(47751, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.85+00', '{"cached":null,"ignore_cache":false}'), +(47752, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:39.913+00', '{"cached":null,"ignore_cache":false}'), +(47753, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:42.201+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47754, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:42.227+00', '{"cached":null,"ignore_cache":false}'), +(47755, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:42.325+00', '{"cached":null,"ignore_cache":false}'), +(47756, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:30:42.361+00', '{"cached":null,"ignore_cache":false}'), +(47757, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.505+00', '{"cached":null,"ignore_cache":false}'), +(47758, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.531+00', '{"cached":null,"ignore_cache":false}'), +(47759, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.562+00', '{"cached":null,"ignore_cache":false}'), +(47760, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.628+00', '{"cached":null,"ignore_cache":false}'), +(47761, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.65+00', '{"cached":null,"ignore_cache":false}'), +(47762, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.67+00', '{"cached":null,"ignore_cache":false}'), +(47763, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.681+00', '{"cached":null,"ignore_cache":false}'), +(47764, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:01.697+00', '{"cached":null,"ignore_cache":false}'), +(47765, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:02.126+00', '{"cached":null,"ignore_cache":false}'), +(47766, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:02.179+00', '{"cached":null,"ignore_cache":false}'), +(47767, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.222+00', '{"cached":null,"ignore_cache":false}'), +(47768, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.401+00', '{"cached":null,"ignore_cache":false}'), +(47769, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.441+00', '{"cached":null,"ignore_cache":false}'), +(47770, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.611+00', '{"cached":null,"ignore_cache":false}'), +(47771, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.653+00', '{"cached":null,"ignore_cache":false}'), +(47772, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.677+00', '{"cached":null,"ignore_cache":false}'), +(47773, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.679+00', '{"cached":null,"ignore_cache":false}'), +(47774, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:18.705+00', '{"cached":null,"ignore_cache":false}'), +(47775, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:19.542+00', '{"cached":null,"ignore_cache":false}'), +(47776, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:20.152+00', '{"cached":null,"ignore_cache":false}'), +(47777, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:20.37+00', '{"cached":null,"ignore_cache":false}'), +(47778, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:20.78+00', '{"cached":null,"ignore_cache":false}'), +(47779, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:20.955+00', '{"cached":null,"ignore_cache":false}'), +(47780, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.299+00', '{"cached":null,"ignore_cache":false}'), +(47781, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.519+00', '{"cached":null,"ignore_cache":false}'), +(47782, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.874+00', '{"cached":null,"ignore_cache":false}'), +(47783, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.951+00', '{"cached":null,"ignore_cache":false}'), +(47784, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:21.981+00', '{"cached":null,"ignore_cache":false}'), +(47785, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:22.439+00', '{"cached":null,"ignore_cache":false}'), +(47786, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:22.506+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47787, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:22.575+00', '{"cached":null,"ignore_cache":false}'), +(47788, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:22.595+00', '{"cached":null,"ignore_cache":false}'), +(47789, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:22.613+00', '{"cached":null,"ignore_cache":false}'), +(47790, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:22.832+00', '{"cached":null,"ignore_cache":false}'), +(47791, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:23.027+00', '{"cached":null,"ignore_cache":false}'), +(47792, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:23.335+00', '{"cached":null,"ignore_cache":false}'), +(47793, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:23.599+00', '{"cached":null,"ignore_cache":false}'), +(47794, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:23.657+00', '{"cached":null,"ignore_cache":false}'), +(47795, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:24.417+00', '{"cached":null,"ignore_cache":false}'), +(47796, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:31:24.481+00', '{"cached":null,"ignore_cache":false}'), +(47797, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:41.675+00', '{"cached":null,"ignore_cache":false}'), +(47798, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:42.124+00', '{"cached":null,"ignore_cache":false}'), +(47799, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:45.212+00', '{"cached":null,"ignore_cache":false}'), +(47800, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:45.214+00', '{"cached":null,"ignore_cache":false}'), +(47801, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:45.22+00', '{"cached":null,"ignore_cache":false}'), +(47802, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:45.249+00', '{"cached":null,"ignore_cache":false}'), +(47803, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:45.321+00', '{"cached":null,"ignore_cache":false}'), +(47804, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:45.899+00', '{"cached":null,"ignore_cache":false}'), +(47805, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:49.119+00', '{"cached":null,"ignore_cache":false}'), +(47806, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:49.129+00', '{"cached":null,"ignore_cache":false}'), +(47807, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:49.684+00', '{"cached":null,"ignore_cache":false}'), +(47808, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:49.776+00', '{"cached":null,"ignore_cache":false}'), +(47809, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:49.838+00', '{"cached":null,"ignore_cache":false}'), +(47810, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:49.849+00', '{"cached":null,"ignore_cache":false}'), +(47811, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:49.993+00', '{"cached":null,"ignore_cache":false}'), +(47812, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.182+00', '{"cached":null,"ignore_cache":false}'), +(47813, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.208+00', '{"cached":null,"ignore_cache":false}'), +(47814, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.209+00', '{"cached":null,"ignore_cache":false}'), +(47815, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.245+00', '{"cached":null,"ignore_cache":false}'), +(47816, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.341+00', '{"cached":null,"ignore_cache":false}'), +(47817, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.378+00', '{"cached":null,"ignore_cache":false}'), +(47818, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.503+00', '{"cached":null,"ignore_cache":false}'), +(47819, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.521+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47820, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.556+00', '{"cached":null,"ignore_cache":false}'), +(47821, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.564+00', '{"cached":null,"ignore_cache":false}'), +(47822, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.574+00', '{"cached":null,"ignore_cache":false}'), +(47823, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.77+00', '{"cached":null,"ignore_cache":false}'), +(47824, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:50.843+00', '{"cached":null,"ignore_cache":false}'), +(47825, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:52.077+00', '{"cached":null,"ignore_cache":false}'), +(47826, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:52.225+00', '{"cached":null,"ignore_cache":false}'), +(47827, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:52.236+00', '{"cached":null,"ignore_cache":false}'), +(47828, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:33:52.252+00', '{"cached":null,"ignore_cache":false}'), +(47829, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.129+00', '{"cached":null,"ignore_cache":false}'), +(47830, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.226+00', '{"cached":null,"ignore_cache":false}'), +(47831, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.272+00', '{"cached":null,"ignore_cache":false}'), +(47832, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.432+00', '{"cached":null,"ignore_cache":false}'), +(47833, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.458+00', '{"cached":null,"ignore_cache":false}'), +(47834, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.506+00', '{"cached":null,"ignore_cache":false}'), +(47835, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.534+00', '{"cached":null,"ignore_cache":false}'), +(47836, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.557+00', '{"cached":null,"ignore_cache":false}'), +(47837, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.56+00', '{"cached":null,"ignore_cache":false}'), +(47838, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:32.574+00', '{"cached":null,"ignore_cache":false}'), +(47839, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.051+00', '{"cached":null,"ignore_cache":false}'), +(47840, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.385+00', '{"cached":null,"ignore_cache":false}'), +(47841, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.41+00', '{"cached":null,"ignore_cache":false}'), +(47842, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.418+00', '{"cached":null,"ignore_cache":false}'), +(47843, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.634+00', '{"cached":null,"ignore_cache":false}'), +(47844, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.703+00', '{"cached":null,"ignore_cache":false}'), +(47845, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.828+00', '{"cached":null,"ignore_cache":false}'), +(47846, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.931+00', '{"cached":null,"ignore_cache":false}'), +(47847, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:33.995+00', '{"cached":null,"ignore_cache":false}'), +(47848, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:34.02+00', '{"cached":null,"ignore_cache":false}'), +(47849, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:34.03+00', '{"cached":null,"ignore_cache":false}'), +(47850, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:34.043+00', '{"cached":null,"ignore_cache":false}'), +(47851, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:34.06+00', '{"cached":null,"ignore_cache":false}'), +(47852, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:34.093+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47853, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:34.498+00', '{"cached":null,"ignore_cache":false}'), +(47854, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:34:34.524+00', '{"cached":null,"ignore_cache":false}'), +(47855, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.004+00', '{"cached":null,"ignore_cache":false}'), +(47856, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.02+00', '{"cached":null,"ignore_cache":false}'), +(47857, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.034+00', '{"cached":null,"ignore_cache":false}'), +(47858, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.041+00', '{"cached":null,"ignore_cache":false}'), +(47859, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.059+00', '{"cached":null,"ignore_cache":false}'), +(47860, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:01.07+00', '{"cached":null,"ignore_cache":false}'), +(47861, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:03.847+00', '{"cached":null,"ignore_cache":false}'), +(47862, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:04.867+00', '{"cached":null,"ignore_cache":false}'), +(47863, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:04.898+00', '{"cached":null,"ignore_cache":false}'), +(47864, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.361+00', '{"cached":null,"ignore_cache":false}'), +(47865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.453+00', '{"cached":null,"ignore_cache":false}'), +(47866, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.515+00', '{"cached":null,"ignore_cache":false}'), +(47867, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.538+00', '{"cached":null,"ignore_cache":false}'), +(47868, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.681+00', '{"cached":null,"ignore_cache":false}'), +(47869, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.866+00', '{"cached":null,"ignore_cache":false}'), +(47870, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.877+00', '{"cached":null,"ignore_cache":false}'), +(47871, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:05.892+00', '{"cached":null,"ignore_cache":false}'), +(47872, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.123+00', '{"cached":null,"ignore_cache":false}'), +(47873, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.146+00', '{"cached":null,"ignore_cache":false}'), +(47874, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.212+00', '{"cached":null,"ignore_cache":false}'), +(47875, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.268+00', '{"cached":null,"ignore_cache":false}'), +(47876, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.601+00', '{"cached":null,"ignore_cache":false}'), +(47877, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.643+00', '{"cached":null,"ignore_cache":false}'), +(47878, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.647+00', '{"cached":null,"ignore_cache":false}'), +(47879, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.857+00', '{"cached":null,"ignore_cache":false}'), +(47880, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.871+00', '{"cached":null,"ignore_cache":false}'), +(47881, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.952+00', '{"cached":null,"ignore_cache":false}'), +(47882, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:06.987+00', '{"cached":null,"ignore_cache":false}'), +(47883, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:07.452+00', '{"cached":null,"ignore_cache":false}'), +(47884, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:07.848+00', '{"cached":null,"ignore_cache":false}'), +(47885, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:07.86+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47886, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:48.037+00', '{"cached":null,"ignore_cache":false}'), +(47887, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:48.047+00', '{"cached":null,"ignore_cache":false}'), +(47888, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:48.227+00', '{"cached":null,"ignore_cache":false}'), +(47889, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:48.311+00', '{"cached":null,"ignore_cache":false}'), +(47890, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.591+00', '{"cached":null,"ignore_cache":false}'), +(47891, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.642+00', '{"cached":null,"ignore_cache":false}'), +(47892, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.662+00', '{"cached":null,"ignore_cache":false}'), +(47893, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.677+00', '{"cached":null,"ignore_cache":false}'), +(47894, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.728+00', '{"cached":null,"ignore_cache":false}'), +(47895, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.866+00', '{"cached":null,"ignore_cache":false}'), +(47896, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.961+00', '{"cached":null,"ignore_cache":false}'), +(47897, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.968+00', '{"cached":null,"ignore_cache":false}'), +(47898, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:49.982+00', '{"cached":null,"ignore_cache":false}'), +(47899, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:50.068+00', '{"cached":null,"ignore_cache":false}'), +(47900, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:50.58+00', '{"cached":null,"ignore_cache":false}'), +(47901, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:35:50.729+00', '{"cached":null,"ignore_cache":false}'), +(47902, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.51+00', '{"cached":null,"ignore_cache":false}'), +(47903, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.521+00', '{"cached":null,"ignore_cache":false}'), +(47904, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.926+00', '{"cached":null,"ignore_cache":false}'), +(47905, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:40.972+00', '{"cached":null,"ignore_cache":false}'), +(47906, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.014+00', '{"cached":null,"ignore_cache":false}'), +(47907, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.034+00', '{"cached":null,"ignore_cache":false}'), +(47908, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.563+00', '{"cached":null,"ignore_cache":false}'), +(47909, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.857+00', '{"cached":null,"ignore_cache":false}'), +(47910, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.936+00', '{"cached":null,"ignore_cache":false}'), +(47911, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:41.969+00', '{"cached":null,"ignore_cache":false}'), +(47912, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:42.095+00', '{"cached":null,"ignore_cache":false}'), +(47913, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:42.208+00', '{"cached":null,"ignore_cache":false}'), +(47914, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:42.264+00', '{"cached":null,"ignore_cache":false}'), +(47915, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:42.292+00', '{"cached":null,"ignore_cache":false}'), +(47916, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:42.339+00', '{"cached":null,"ignore_cache":false}'), +(47917, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:36:42.494+00', '{"cached":null,"ignore_cache":false}'), +(47918, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.493+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47919, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.494+00', '{"cached":null,"ignore_cache":false}'), +(47920, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.513+00', '{"cached":null,"ignore_cache":false}'), +(47921, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.758+00', '{"cached":null,"ignore_cache":false}'), +(47922, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:34.988+00', '{"cached":null,"ignore_cache":false}'), +(47923, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.01+00', '{"cached":null,"ignore_cache":false}'), +(47924, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.094+00', '{"cached":null,"ignore_cache":false}'), +(47925, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.177+00', '{"cached":null,"ignore_cache":false}'), +(47926, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.348+00', '{"cached":null,"ignore_cache":false}'), +(47927, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.552+00', '{"cached":null,"ignore_cache":false}'), +(47928, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.67+00', '{"cached":null,"ignore_cache":false}'), +(47929, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.689+00', '{"cached":null,"ignore_cache":false}'), +(47930, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.71+00', '{"cached":null,"ignore_cache":false}'), +(47931, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:35.747+00', '{"cached":null,"ignore_cache":false}'), +(47932, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:36.079+00', '{"cached":null,"ignore_cache":false}'), +(47933, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:38:36.219+00', '{"cached":null,"ignore_cache":false}'), +(47934, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:52.641+00', '{"cached":null,"ignore_cache":false}'), +(47935, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:53.512+00', '{"cached":null,"ignore_cache":false}'), +(47936, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:53.548+00', '{"cached":null,"ignore_cache":false}'), +(47937, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:53.556+00', '{"cached":null,"ignore_cache":false}'), +(47938, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:54.546+00', '{"cached":null,"ignore_cache":false}'), +(47939, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:54.697+00', '{"cached":null,"ignore_cache":false}'), +(47940, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.132+00', '{"cached":null,"ignore_cache":false}'), +(47941, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.133+00', '{"cached":null,"ignore_cache":false}'), +(47942, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.135+00', '{"cached":null,"ignore_cache":false}'), +(47943, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.213+00', '{"cached":null,"ignore_cache":false}'), +(47944, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.22+00', '{"cached":null,"ignore_cache":false}'), +(47945, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.234+00', '{"cached":null,"ignore_cache":false}'), +(47946, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.237+00', '{"cached":null,"ignore_cache":false}'), +(47947, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:55.359+00', '{"cached":null,"ignore_cache":false}'), +(47948, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:57.231+00', '{"cached":null,"ignore_cache":false}'), +(47949, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:39:57.277+00', '{"cached":null,"ignore_cache":false}'), +(47950, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.769+00', '{"cached":null,"ignore_cache":false}'), +(47951, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.854+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47952, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:25.971+00', '{"cached":null,"ignore_cache":false}'), +(47953, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.139+00', '{"cached":null,"ignore_cache":false}'), +(47954, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.17+00', '{"cached":null,"ignore_cache":false}'), +(47955, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.172+00', '{"cached":null,"ignore_cache":false}'), +(47956, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.253+00', '{"cached":null,"ignore_cache":false}'), +(47957, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.257+00', '{"cached":null,"ignore_cache":false}'), +(47958, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.457+00', '{"cached":null,"ignore_cache":false}'), +(47959, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.547+00', '{"cached":null,"ignore_cache":false}'), +(47960, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.557+00', '{"cached":null,"ignore_cache":false}'), +(47961, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.582+00', '{"cached":null,"ignore_cache":false}'), +(47962, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.641+00', '{"cached":null,"ignore_cache":false}'), +(47963, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:26.821+00', '{"cached":null,"ignore_cache":false}'), +(47964, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:27.125+00', '{"cached":null,"ignore_cache":false}'), +(47965, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:27.187+00', '{"cached":null,"ignore_cache":false}'), +(47966, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.74+00', '{"cached":null,"ignore_cache":false}'), +(47967, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:57.748+00', '{"cached":null,"ignore_cache":false}'), +(47968, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.526+00', '{"cached":null,"ignore_cache":false}'), +(47969, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.617+00', '{"cached":null,"ignore_cache":false}'), +(47970, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.703+00', '{"cached":null,"ignore_cache":false}'), +(47971, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.748+00', '{"cached":null,"ignore_cache":false}'), +(47972, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.806+00', '{"cached":null,"ignore_cache":false}'), +(47973, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:58.853+00', '{"cached":null,"ignore_cache":false}'), +(47974, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:59.019+00', '{"cached":null,"ignore_cache":false}'), +(47975, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:59.083+00', '{"cached":null,"ignore_cache":false}'), +(47976, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:59.426+00', '{"cached":null,"ignore_cache":false}'), +(47977, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:59.479+00', '{"cached":null,"ignore_cache":false}'), +(47978, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:59.547+00', '{"cached":null,"ignore_cache":false}'), +(47979, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:40:59.556+00', '{"cached":null,"ignore_cache":false}'), +(47980, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:00.297+00', '{"cached":null,"ignore_cache":false}'), +(47981, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:00.488+00', '{"cached":null,"ignore_cache":false}'), +(47982, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.752+00', '{"cached":null,"ignore_cache":false}'), +(47983, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:50.762+00', '{"cached":null,"ignore_cache":false}'), +(47984, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.089+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(47985, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.094+00', '{"cached":null,"ignore_cache":false}'), +(47986, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.112+00', '{"cached":null,"ignore_cache":false}'), +(47987, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.124+00', '{"cached":null,"ignore_cache":false}'), +(47988, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.941+00', '{"cached":null,"ignore_cache":false}'), +(47989, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:51.998+00', '{"cached":null,"ignore_cache":false}'), +(47990, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.005+00', '{"cached":null,"ignore_cache":false}'), +(47991, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.078+00', '{"cached":null,"ignore_cache":false}'), +(47992, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.126+00', '{"cached":null,"ignore_cache":false}'), +(47993, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.188+00', '{"cached":null,"ignore_cache":false}'), +(47994, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.224+00', '{"cached":null,"ignore_cache":false}'), +(47995, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.243+00', '{"cached":null,"ignore_cache":false}'), +(47996, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.514+00', '{"cached":null,"ignore_cache":false}'), +(47997, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:41:52.588+00', '{"cached":null,"ignore_cache":false}'), +(47998, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.314+00', '{"cached":null,"ignore_cache":false}'), +(47999, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.814+00', '{"cached":null,"ignore_cache":false}'), +(48000, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.825+00', '{"cached":null,"ignore_cache":false}'), +(48001, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:35.838+00', '{"cached":null,"ignore_cache":false}'), +(48002, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:38.396+00', '{"cached":null,"ignore_cache":false}'), +(48003, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:38.566+00', '{"cached":null,"ignore_cache":false}'), +(48004, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.041+00', '{"cached":null,"ignore_cache":false}'), +(48005, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.083+00', '{"cached":null,"ignore_cache":false}'), +(48006, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.143+00', '{"cached":null,"ignore_cache":false}'), +(48007, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.226+00', '{"cached":null,"ignore_cache":false}'), +(48008, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.253+00', '{"cached":null,"ignore_cache":false}'), +(48009, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.287+00', '{"cached":null,"ignore_cache":false}'), +(48010, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.3+00', '{"cached":null,"ignore_cache":false}'), +(48011, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:39.322+00', '{"cached":null,"ignore_cache":false}'), +(48012, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:40.502+00', '{"cached":null,"ignore_cache":false}'), +(48013, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:43:40.551+00', '{"cached":null,"ignore_cache":false}'), +(48014, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.2+00', '{"cached":null,"ignore_cache":false}'), +(48015, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.206+00', '{"cached":null,"ignore_cache":false}'), +(48016, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:54.824+00', '{"cached":null,"ignore_cache":false}'), +(48017, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:55.223+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48018, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:55.736+00', '{"cached":null,"ignore_cache":false}'), +(48019, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:55.784+00', '{"cached":null,"ignore_cache":false}'), +(48020, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:55.878+00', '{"cached":null,"ignore_cache":false}'), +(48021, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:55.963+00', '{"cached":null,"ignore_cache":false}'), +(48022, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:56.081+00', '{"cached":null,"ignore_cache":false}'), +(48023, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:56.101+00', '{"cached":null,"ignore_cache":false}'), +(48024, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:56.114+00', '{"cached":null,"ignore_cache":false}'), +(48025, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:56.118+00', '{"cached":null,"ignore_cache":false}'), +(48026, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:56.134+00', '{"cached":null,"ignore_cache":false}'), +(48027, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:56.229+00', '{"cached":null,"ignore_cache":false}'), +(48028, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:57.262+00', '{"cached":null,"ignore_cache":false}'), +(48029, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:44:57.314+00', '{"cached":null,"ignore_cache":false}'), +(48030, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:41.543+00', '{"cached":null,"ignore_cache":false}'), +(48031, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:43.313+00', '{"cached":null,"ignore_cache":false}'), +(48032, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:43.35+00', '{"cached":null,"ignore_cache":false}'), +(48033, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:43.748+00', '{"cached":null,"ignore_cache":false}'), +(48034, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:43.755+00', '{"cached":null,"ignore_cache":false}'), +(48035, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.805+00', '{"cached":null,"ignore_cache":false}'), +(48036, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.815+00', '{"cached":null,"ignore_cache":false}'), +(48037, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.817+00', '{"cached":null,"ignore_cache":false}'), +(48038, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.94+00', '{"cached":null,"ignore_cache":false}'), +(48039, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.942+00', '{"cached":null,"ignore_cache":false}'), +(48040, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.943+00', '{"cached":null,"ignore_cache":false}'), +(48041, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.944+00', '{"cached":null,"ignore_cache":false}'), +(48042, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.945+00', '{"cached":null,"ignore_cache":false}'), +(48043, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:45.972+00', '{"cached":null,"ignore_cache":false}'), +(48044, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:46.53+00', '{"cached":null,"ignore_cache":false}'), +(48045, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:46.564+00', '{"cached":null,"ignore_cache":false}'), +(48046, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:46.789+00', '{"cached":null,"ignore_cache":false}'), +(48047, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:46.813+00', '{"cached":null,"ignore_cache":false}'), +(48048, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:46.863+00', '{"cached":null,"ignore_cache":false}'), +(48049, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:47.498+00', '{"cached":null,"ignore_cache":false}'), +(48050, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:47.735+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48051, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:47.74+00', '{"cached":null,"ignore_cache":false}'), +(48052, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:47.929+00', '{"cached":null,"ignore_cache":false}'), +(48053, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:47.957+00', '{"cached":null,"ignore_cache":false}'), +(48054, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:48.257+00', '{"cached":null,"ignore_cache":false}'), +(48055, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:48.303+00', '{"cached":null,"ignore_cache":false}'), +(48056, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:48.377+00', '{"cached":null,"ignore_cache":false}'), +(48057, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:48.555+00', '{"cached":null,"ignore_cache":false}'), +(48058, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:48.682+00', '{"cached":null,"ignore_cache":false}'), +(48059, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:48.75+00', '{"cached":null,"ignore_cache":false}'), +(48060, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:45:48.916+00', '{"cached":null,"ignore_cache":false}'), +(48061, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.952+00', '{"cached":null,"ignore_cache":false}'), +(48062, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:13.959+00', '{"cached":null,"ignore_cache":false}'), +(48063, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:14.561+00', '{"cached":null,"ignore_cache":false}'), +(48064, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.081+00', '{"cached":null,"ignore_cache":false}'), +(48065, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.176+00', '{"cached":null,"ignore_cache":false}'), +(48066, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.215+00', '{"cached":null,"ignore_cache":false}'), +(48067, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.289+00', '{"cached":null,"ignore_cache":false}'), +(48068, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.38+00', '{"cached":null,"ignore_cache":false}'), +(48069, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.455+00', '{"cached":null,"ignore_cache":false}'), +(48070, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.601+00', '{"cached":null,"ignore_cache":false}'), +(48071, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.617+00', '{"cached":null,"ignore_cache":false}'), +(48072, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.653+00', '{"cached":null,"ignore_cache":false}'), +(48073, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.68+00', '{"cached":null,"ignore_cache":false}'), +(48074, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:15.724+00', '{"cached":null,"ignore_cache":false}'), +(48075, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:16.167+00', '{"cached":null,"ignore_cache":false}'), +(48076, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:46:16.184+00', '{"cached":null,"ignore_cache":false}'), +(48077, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.008+00', '{"cached":null,"ignore_cache":false}'), +(48078, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.021+00', '{"cached":null,"ignore_cache":false}'), +(48079, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.204+00', '{"cached":null,"ignore_cache":false}'), +(48080, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.221+00', '{"cached":null,"ignore_cache":false}'), +(48081, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.263+00', '{"cached":null,"ignore_cache":false}'), +(48082, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:24.288+00', '{"cached":null,"ignore_cache":false}'), +(48083, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.369+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48084, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.408+00', '{"cached":null,"ignore_cache":false}'), +(48085, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.532+00', '{"cached":null,"ignore_cache":false}'), +(48086, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.601+00', '{"cached":null,"ignore_cache":false}'), +(48087, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.634+00', '{"cached":null,"ignore_cache":false}'), +(48088, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.648+00', '{"cached":null,"ignore_cache":false}'), +(48089, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.65+00', '{"cached":null,"ignore_cache":false}'), +(48090, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:25.804+00', '{"cached":null,"ignore_cache":false}'), +(48091, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:26.018+00', '{"cached":null,"ignore_cache":false}'), +(48092, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:47:26.072+00', '{"cached":null,"ignore_cache":false}'), +(48093, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:34.999+00', '{"cached":null,"ignore_cache":false}'), +(48094, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.033+00', '{"cached":null,"ignore_cache":false}'), +(48095, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.062+00', '{"cached":null,"ignore_cache":false}'), +(48096, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.066+00', '{"cached":null,"ignore_cache":false}'), +(48097, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.695+00', '{"cached":null,"ignore_cache":false}'), +(48098, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.707+00', '{"cached":null,"ignore_cache":false}'), +(48099, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.789+00', '{"cached":null,"ignore_cache":false}'), +(48100, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.81+00', '{"cached":null,"ignore_cache":false}'), +(48101, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.813+00', '{"cached":null,"ignore_cache":false}'), +(48102, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.869+00', '{"cached":null,"ignore_cache":false}'), +(48103, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.914+00', '{"cached":null,"ignore_cache":false}'), +(48104, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.922+00', '{"cached":null,"ignore_cache":false}'), +(48105, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.939+00', '{"cached":null,"ignore_cache":false}'), +(48106, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:36.957+00', '{"cached":null,"ignore_cache":false}'), +(48107, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:37.268+00', '{"cached":null,"ignore_cache":false}'), +(48108, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:48:37.279+00', '{"cached":null,"ignore_cache":false}'), +(48109, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:34.078+00', '{"cached":null,"ignore_cache":false}'), +(48110, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:34.237+00', '{"cached":null,"ignore_cache":false}'), +(48111, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:34.457+00', '{"cached":null,"ignore_cache":false}'), +(48112, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:34.848+00', '{"cached":null,"ignore_cache":false}'), +(48113, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.82+00', '{"cached":null,"ignore_cache":false}'), +(48114, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:35.881+00', '{"cached":null,"ignore_cache":false}'), +(48115, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.468+00', '{"cached":null,"ignore_cache":false}'), +(48116, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.49+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48117, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.518+00', '{"cached":null,"ignore_cache":false}'), +(48118, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:36.571+00', '{"cached":null,"ignore_cache":false}'), +(48119, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.218+00', '{"cached":null,"ignore_cache":false}'), +(48120, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.254+00', '{"cached":null,"ignore_cache":false}'), +(48121, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.313+00', '{"cached":null,"ignore_cache":false}'), +(48122, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:37.946+00', '{"cached":null,"ignore_cache":false}'), +(48123, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:38.004+00', '{"cached":null,"ignore_cache":false}'), +(48124, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:38.048+00', '{"cached":null,"ignore_cache":false}'), +(48125, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:38.095+00', '{"cached":null,"ignore_cache":false}'), +(48126, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:38.344+00', '{"cached":null,"ignore_cache":false}'), +(48127, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:38.641+00', '{"cached":null,"ignore_cache":false}'), +(48128, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.027+00', '{"cached":null,"ignore_cache":false}'), +(48129, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.077+00', '{"cached":null,"ignore_cache":false}'), +(48130, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.126+00', '{"cached":null,"ignore_cache":false}'), +(48131, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.237+00', '{"cached":null,"ignore_cache":false}'), +(48132, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.275+00', '{"cached":null,"ignore_cache":false}'), +(48133, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.574+00', '{"cached":null,"ignore_cache":false}'), +(48134, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.834+00', '{"cached":null,"ignore_cache":false}'), +(48135, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:39.916+00', '{"cached":null,"ignore_cache":false}'), +(48136, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:49:40.1+00', '{"cached":null,"ignore_cache":false}'), +(48137, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.017+00', '{"cached":null,"ignore_cache":false}'), +(48138, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.018+00', '{"cached":null,"ignore_cache":false}'), +(48139, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.162+00', '{"cached":null,"ignore_cache":false}'), +(48140, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.192+00', '{"cached":null,"ignore_cache":false}'), +(48141, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.285+00', '{"cached":null,"ignore_cache":false}'), +(48142, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.306+00', '{"cached":null,"ignore_cache":false}'), +(48143, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.585+00', '{"cached":null,"ignore_cache":false}'), +(48144, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.636+00', '{"cached":null,"ignore_cache":false}'), +(48145, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.855+00', '{"cached":null,"ignore_cache":false}'), +(48146, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:06.94+00', '{"cached":null,"ignore_cache":false}'), +(48147, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:07.017+00', '{"cached":null,"ignore_cache":false}'), +(48148, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:07.031+00', '{"cached":null,"ignore_cache":false}'), +(48149, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:07.04+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48150, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:07.081+00', '{"cached":null,"ignore_cache":false}'), +(48151, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:07.331+00', '{"cached":null,"ignore_cache":false}'), +(48152, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:07.397+00', '{"cached":null,"ignore_cache":false}'), +(48153, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.617+00', '{"cached":null,"ignore_cache":false}'), +(48154, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.71+00', '{"cached":null,"ignore_cache":false}'), +(48155, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.769+00', '{"cached":null,"ignore_cache":false}'), +(48156, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.779+00', '{"cached":null,"ignore_cache":false}'), +(48157, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.848+00', '{"cached":null,"ignore_cache":false}'), +(48158, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:35.859+00', '{"cached":null,"ignore_cache":false}'), +(48159, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.432+00', '{"cached":null,"ignore_cache":false}'), +(48160, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.433+00', '{"cached":null,"ignore_cache":false}'), +(48161, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.562+00', '{"cached":null,"ignore_cache":false}'), +(48162, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.655+00', '{"cached":null,"ignore_cache":false}'), +(48163, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.664+00', '{"cached":null,"ignore_cache":false}'), +(48164, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:36.719+00', '{"cached":null,"ignore_cache":false}'), +(48165, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.502+00', '{"cached":null,"ignore_cache":false}'), +(48166, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.617+00', '{"cached":null,"ignore_cache":false}'), +(48167, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.662+00', '{"cached":null,"ignore_cache":false}'), +(48168, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.807+00', '{"cached":null,"ignore_cache":false}'), +(48169, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.81+00', '{"cached":null,"ignore_cache":false}'), +(48170, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.854+00', '{"cached":null,"ignore_cache":false}'), +(48171, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:37.995+00', '{"cached":null,"ignore_cache":false}'), +(48172, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.177+00', '{"cached":null,"ignore_cache":false}'), +(48173, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.185+00', '{"cached":null,"ignore_cache":false}'), +(48174, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.231+00', '{"cached":null,"ignore_cache":false}'), +(48175, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.513+00', '{"cached":null,"ignore_cache":false}'), +(48176, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.591+00', '{"cached":null,"ignore_cache":false}'), +(48177, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.605+00', '{"cached":null,"ignore_cache":false}'), +(48178, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.666+00', '{"cached":null,"ignore_cache":false}'), +(48179, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.704+00', '{"cached":null,"ignore_cache":false}'), +(48180, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.74+00', '{"cached":null,"ignore_cache":false}'), +(48181, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.836+00', '{"cached":null,"ignore_cache":false}'), +(48182, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:38.921+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48183, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:39.459+00', '{"cached":null,"ignore_cache":false}'), +(48184, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:50:39.514+00', '{"cached":null,"ignore_cache":false}'), +(48185, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.568+00', '{"cached":null,"ignore_cache":false}'), +(48186, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.755+00', '{"cached":null,"ignore_cache":false}'), +(48187, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.769+00', '{"cached":null,"ignore_cache":false}'), +(48188, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:12.787+00', '{"cached":null,"ignore_cache":false}'), +(48189, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.113+00', '{"cached":null,"ignore_cache":false}'), +(48190, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.401+00', '{"cached":null,"ignore_cache":false}'), +(48191, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.408+00', '{"cached":null,"ignore_cache":false}'), +(48192, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.52+00', '{"cached":null,"ignore_cache":false}'), +(48193, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.525+00', '{"cached":null,"ignore_cache":false}'), +(48194, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.543+00', '{"cached":null,"ignore_cache":false}'), +(48195, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.618+00', '{"cached":null,"ignore_cache":false}'), +(48196, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.698+00', '{"cached":null,"ignore_cache":false}'), +(48197, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.725+00', '{"cached":null,"ignore_cache":false}'), +(48198, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:15.814+00', '{"cached":null,"ignore_cache":false}'), +(48199, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:16.681+00', '{"cached":null,"ignore_cache":false}'), +(48200, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:16.743+00', '{"cached":null,"ignore_cache":false}'), +(48201, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.404+00', '{"cached":null,"ignore_cache":false}'), +(48202, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.697+00', '{"cached":null,"ignore_cache":false}'), +(48203, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.752+00', '{"cached":null,"ignore_cache":false}'), +(48204, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.843+00', '{"cached":null,"ignore_cache":false}'), +(48205, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.918+00', '{"cached":null,"ignore_cache":false}'), +(48206, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:26.937+00', '{"cached":null,"ignore_cache":false}'), +(48207, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.019+00', '{"cached":null,"ignore_cache":false}'), +(48208, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.035+00', '{"cached":null,"ignore_cache":false}'), +(48209, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.079+00', '{"cached":null,"ignore_cache":false}'), +(48210, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.309+00', '{"cached":null,"ignore_cache":false}'), +(48211, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.361+00', '{"cached":null,"ignore_cache":false}'), +(48212, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.484+00', '{"cached":null,"ignore_cache":false}'), +(48213, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.653+00', '{"cached":null,"ignore_cache":false}'), +(48214, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.876+00', '{"cached":null,"ignore_cache":false}'), +(48215, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:27.956+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48216, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.317+00', '{"cached":null,"ignore_cache":false}'), +(48217, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.355+00', '{"cached":null,"ignore_cache":false}'), +(48218, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.616+00', '{"cached":null,"ignore_cache":false}'), +(48219, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.699+00', '{"cached":null,"ignore_cache":false}'), +(48220, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.786+00', '{"cached":null,"ignore_cache":false}'), +(48221, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.798+00', '{"cached":null,"ignore_cache":false}'), +(48222, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.823+00', '{"cached":null,"ignore_cache":false}'), +(48223, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.825+00', '{"cached":null,"ignore_cache":false}'), +(48224, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:28.893+00', '{"cached":null,"ignore_cache":false}'), +(48225, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.057+00', '{"cached":null,"ignore_cache":false}'), +(48226, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.364+00', '{"cached":null,"ignore_cache":false}'), +(48227, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.455+00', '{"cached":null,"ignore_cache":false}'), +(48228, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.679+00', '{"cached":null,"ignore_cache":false}'), +(48229, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.779+00', '{"cached":null,"ignore_cache":false}'), +(48230, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.789+00', '{"cached":null,"ignore_cache":false}'), +(48231, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:51:29.8+00', '{"cached":null,"ignore_cache":false}'), +(48232, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:07.736+00', '{"cached":null,"ignore_cache":false}'), +(48233, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:07.755+00', '{"cached":null,"ignore_cache":false}'), +(48234, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.239+00', '{"cached":null,"ignore_cache":false}'), +(48235, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.325+00', '{"cached":null,"ignore_cache":false}'), +(48236, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.519+00', '{"cached":null,"ignore_cache":false}'), +(48237, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:08.637+00', '{"cached":null,"ignore_cache":false}'), +(48238, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:09.427+00', '{"cached":null,"ignore_cache":false}'), +(48239, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:09.667+00', '{"cached":null,"ignore_cache":false}'), +(48240, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:09.758+00', '{"cached":null,"ignore_cache":false}'), +(48241, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:09.954+00', '{"cached":null,"ignore_cache":false}'), +(48242, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:10.121+00', '{"cached":null,"ignore_cache":false}'), +(48243, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:10.162+00', '{"cached":null,"ignore_cache":false}'), +(48244, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:10.203+00', '{"cached":null,"ignore_cache":false}'), +(48245, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:10.234+00', '{"cached":null,"ignore_cache":false}'), +(48246, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:10.876+00', '{"cached":null,"ignore_cache":false}'), +(48247, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:10.879+00', '{"cached":null,"ignore_cache":false}'), +(48248, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.382+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48249, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.407+00', '{"cached":null,"ignore_cache":false}'), +(48250, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.464+00', '{"cached":null,"ignore_cache":false}'), +(48251, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.525+00', '{"cached":null,"ignore_cache":false}'), +(48252, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.547+00', '{"cached":null,"ignore_cache":false}'), +(48253, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.627+00', '{"cached":null,"ignore_cache":false}'), +(48254, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.641+00', '{"cached":null,"ignore_cache":false}'), +(48255, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.851+00', '{"cached":null,"ignore_cache":false}'), +(48256, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.88+00', '{"cached":null,"ignore_cache":false}'), +(48257, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:36.989+00', '{"cached":null,"ignore_cache":false}'), +(48258, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:37.139+00', '{"cached":null,"ignore_cache":false}'), +(48259, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:37.222+00', '{"cached":null,"ignore_cache":false}'), +(48260, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:37.263+00', '{"cached":null,"ignore_cache":false}'), +(48261, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:37.286+00', '{"cached":null,"ignore_cache":false}'), +(48262, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:37.432+00', '{"cached":null,"ignore_cache":false}'), +(48263, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:53:37.444+00', '{"cached":null,"ignore_cache":false}'), +(48264, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:05.775+00', '{"cached":null,"ignore_cache":false}'), +(48265, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:06.299+00', '{"cached":null,"ignore_cache":false}'), +(48266, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.305+00', '{"cached":null,"ignore_cache":false}'), +(48267, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.307+00', '{"cached":null,"ignore_cache":false}'), +(48268, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.31+00', '{"cached":null,"ignore_cache":false}'), +(48269, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:07.662+00', '{"cached":null,"ignore_cache":false}'), +(48270, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.145+00', '{"cached":null,"ignore_cache":false}'), +(48271, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.154+00', '{"cached":null,"ignore_cache":false}'), +(48272, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.197+00', '{"cached":null,"ignore_cache":false}'), +(48273, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.359+00', '{"cached":null,"ignore_cache":false}'), +(48274, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.413+00', '{"cached":null,"ignore_cache":false}'), +(48275, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.416+00', '{"cached":null,"ignore_cache":false}'), +(48276, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.419+00', '{"cached":null,"ignore_cache":false}'), +(48277, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.428+00', '{"cached":null,"ignore_cache":false}'), +(48278, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.438+00', '{"cached":null,"ignore_cache":false}'), +(48279, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.598+00', '{"cached":null,"ignore_cache":false}'), +(48280, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:09.922+00', '{"cached":null,"ignore_cache":false}'), +(48281, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:10.099+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48282, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:10.436+00', '{"cached":null,"ignore_cache":false}'), +(48283, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:10.725+00', '{"cached":null,"ignore_cache":false}'), +(48284, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:10.856+00', '{"cached":null,"ignore_cache":false}'), +(48285, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:11.236+00', '{"cached":null,"ignore_cache":false}'), +(48286, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:11.359+00', '{"cached":null,"ignore_cache":false}'), +(48287, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:11.393+00', '{"cached":null,"ignore_cache":false}'), +(48288, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:11.446+00', '{"cached":null,"ignore_cache":false}'), +(48289, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.015+00', '{"cached":null,"ignore_cache":false}'), +(48290, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.015+00', '{"cached":null,"ignore_cache":false}'), +(48291, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.03+00', '{"cached":null,"ignore_cache":false}'), +(48292, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.077+00', '{"cached":null,"ignore_cache":false}'), +(48293, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.23+00', '{"cached":null,"ignore_cache":false}'), +(48294, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.253+00', '{"cached":null,"ignore_cache":false}'), +(48295, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.716+00', '{"cached":null,"ignore_cache":false}'), +(48296, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:54:12.841+00', '{"cached":null,"ignore_cache":false}'), +(48297, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:14.551+00', '{"cached":null,"ignore_cache":false}'), +(48298, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:14.693+00', '{"cached":null,"ignore_cache":false}'), +(48299, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:14.694+00', '{"cached":null,"ignore_cache":false}'), +(48300, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:14.707+00', '{"cached":null,"ignore_cache":false}'), +(48301, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:14.883+00', '{"cached":null,"ignore_cache":false}'), +(48302, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:15.14+00', '{"cached":null,"ignore_cache":false}'), +(48303, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:15.234+00', '{"cached":null,"ignore_cache":false}'), +(48304, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:15.244+00', '{"cached":null,"ignore_cache":false}'), +(48305, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:15.245+00', '{"cached":null,"ignore_cache":false}'), +(48306, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:16.131+00', '{"cached":null,"ignore_cache":false}'), +(48307, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:16.136+00', '{"cached":null,"ignore_cache":false}'), +(48308, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:16.235+00', '{"cached":null,"ignore_cache":false}'), +(48309, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:16.272+00', '{"cached":null,"ignore_cache":false}'), +(48310, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:16.856+00', '{"cached":null,"ignore_cache":false}'), +(48311, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:17.054+00', '{"cached":null,"ignore_cache":false}'), +(48312, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:17.146+00', '{"cached":null,"ignore_cache":false}'), +(48313, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:17.345+00', '{"cached":null,"ignore_cache":false}'), +(48314, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:17.71+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48315, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:19.312+00', '{"cached":null,"ignore_cache":false}'), +(48316, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:19.493+00', '{"cached":null,"ignore_cache":false}'), +(48317, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:19.494+00', '{"cached":null,"ignore_cache":false}'), +(48318, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:19.762+00', '{"cached":null,"ignore_cache":false}'), +(48319, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.119+00', '{"cached":null,"ignore_cache":false}'), +(48320, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.178+00', '{"cached":null,"ignore_cache":false}'), +(48321, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.179+00', '{"cached":null,"ignore_cache":false}'), +(48322, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.193+00', '{"cached":null,"ignore_cache":false}'), +(48323, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.236+00', '{"cached":null,"ignore_cache":false}'), +(48324, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.274+00', '{"cached":null,"ignore_cache":false}'), +(48325, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.335+00', '{"cached":null,"ignore_cache":false}'), +(48326, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.606+00', '{"cached":null,"ignore_cache":false}'), +(48327, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:20.764+00', '{"cached":null,"ignore_cache":false}'), +(48328, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:21.121+00', '{"cached":null,"ignore_cache":false}'), +(48329, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:21.491+00', '{"cached":null,"ignore_cache":false}'), +(48330, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:21.537+00', '{"cached":null,"ignore_cache":false}'), +(48331, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:21.599+00', '{"cached":null,"ignore_cache":false}'), +(48332, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:21.751+00', '{"cached":null,"ignore_cache":false}'), +(48333, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.145+00', '{"cached":null,"ignore_cache":false}'), +(48334, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.152+00', '{"cached":null,"ignore_cache":false}'), +(48335, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.257+00', '{"cached":null,"ignore_cache":false}'), +(48336, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.271+00', '{"cached":null,"ignore_cache":false}'), +(48337, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.314+00', '{"cached":null,"ignore_cache":false}'), +(48338, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.338+00', '{"cached":null,"ignore_cache":false}'), +(48339, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.352+00', '{"cached":null,"ignore_cache":false}'), +(48340, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.366+00', '{"cached":null,"ignore_cache":false}'), +(48341, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.37+00', '{"cached":null,"ignore_cache":false}'), +(48342, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.371+00', '{"cached":null,"ignore_cache":false}'), +(48343, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.372+00', '{"cached":null,"ignore_cache":false}'), +(48344, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.373+00', '{"cached":null,"ignore_cache":false}'), +(48345, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.387+00', '{"cached":null,"ignore_cache":false}'), +(48346, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.397+00', '{"cached":null,"ignore_cache":false}'), +(48347, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.613+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48348, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:22.77+00', '{"cached":null,"ignore_cache":false}'), +(48349, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:25.994+00', '{"cached":null,"ignore_cache":false}'), +(48350, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:26.215+00', '{"cached":null,"ignore_cache":false}'), +(48351, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:26.419+00', '{"cached":null,"ignore_cache":false}'), +(48352, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:26.452+00', '{"cached":null,"ignore_cache":false}'), +(48353, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:26.458+00', '{"cached":null,"ignore_cache":false}'), +(48354, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:26.622+00', '{"cached":null,"ignore_cache":false}'), +(48355, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:26.628+00', '{"cached":null,"ignore_cache":false}'), +(48356, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:38.162+00', '{"cached":null,"ignore_cache":false}'), +(48357, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:40.337+00', '{"cached":null,"ignore_cache":false}'), +(48358, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:40.406+00', '{"cached":null,"ignore_cache":false}'), +(48359, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:40.449+00', '{"cached":null,"ignore_cache":false}'), +(48360, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.458+00', '{"cached":null,"ignore_cache":false}'), +(48361, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.624+00', '{"cached":null,"ignore_cache":false}'), +(48362, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.828+00', '{"cached":null,"ignore_cache":false}'), +(48363, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.849+00', '{"cached":null,"ignore_cache":false}'), +(48364, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.897+00', '{"cached":null,"ignore_cache":false}'), +(48365, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.938+00', '{"cached":null,"ignore_cache":false}'), +(48366, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.979+00', '{"cached":null,"ignore_cache":false}'), +(48367, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:41.984+00', '{"cached":null,"ignore_cache":false}'), +(48368, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:42.025+00', '{"cached":null,"ignore_cache":false}'), +(48369, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:42.05+00', '{"cached":null,"ignore_cache":false}'), +(48370, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:44.621+00', '{"cached":null,"ignore_cache":false}'), +(48371, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:58:44.749+00', '{"cached":null,"ignore_cache":false}'), +(48372, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:00.524+00', '{"cached":null,"ignore_cache":false}'), +(48373, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:01.128+00', '{"cached":null,"ignore_cache":false}'), +(48374, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:01.17+00', '{"cached":null,"ignore_cache":false}'), +(48375, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:01.174+00', '{"cached":null,"ignore_cache":false}'), +(48376, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:01.178+00', '{"cached":null,"ignore_cache":false}'), +(48377, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:01.247+00', '{"cached":null,"ignore_cache":false}'), +(48378, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:01.263+00', '{"cached":null,"ignore_cache":false}'), +(48379, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:05.012+00', '{"cached":null,"ignore_cache":false}'), +(48380, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:05.034+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48381, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:05.042+00', '{"cached":null,"ignore_cache":false}'), +(48382, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:05.146+00', '{"cached":null,"ignore_cache":false}'), +(48383, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:05.18+00', '{"cached":null,"ignore_cache":false}'), +(48384, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:05.211+00', '{"cached":null,"ignore_cache":false}'), +(48385, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:06.234+00', '{"cached":null,"ignore_cache":false}'), +(48386, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.162+00', '{"cached":null,"ignore_cache":false}'), +(48387, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.194+00', '{"cached":null,"ignore_cache":false}'), +(48388, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.195+00', '{"cached":null,"ignore_cache":false}'), +(48389, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.2+00', '{"cached":null,"ignore_cache":false}'), +(48390, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.201+00', '{"cached":null,"ignore_cache":false}'), +(48391, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.216+00', '{"cached":null,"ignore_cache":false}'), +(48392, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.218+00', '{"cached":null,"ignore_cache":false}'), +(48393, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.238+00', '{"cached":null,"ignore_cache":false}'), +(48394, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.304+00', '{"cached":null,"ignore_cache":false}'), +(48395, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.469+00', '{"cached":null,"ignore_cache":false}'), +(48396, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.58+00', '{"cached":null,"ignore_cache":false}'), +(48397, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:07.586+00', '{"cached":null,"ignore_cache":false}'), +(48398, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:09.202+00', '{"cached":null,"ignore_cache":false}'), +(48399, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:09.325+00', '{"cached":null,"ignore_cache":false}'), +(48400, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:09.38+00', '{"cached":null,"ignore_cache":false}'), +(48401, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 14:59:09.415+00', '{"cached":null,"ignore_cache":false}'), +(48402, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:26.596+00', '{"cached":null,"ignore_cache":false}'), +(48403, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:26.797+00', '{"cached":null,"ignore_cache":false}'), +(48404, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:27.933+00', '{"cached":null,"ignore_cache":false}'), +(48405, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:27.936+00', '{"cached":null,"ignore_cache":false}'), +(48406, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:27.985+00', '{"cached":null,"ignore_cache":false}'), +(48407, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:27.99+00', '{"cached":null,"ignore_cache":false}'), +(48408, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:28.013+00', '{"cached":null,"ignore_cache":false}'), +(48409, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:28.248+00', '{"cached":null,"ignore_cache":false}'), +(48410, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:28.284+00', '{"cached":null,"ignore_cache":false}'), +(48411, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:28.428+00', '{"cached":null,"ignore_cache":false}'), +(48412, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:29.527+00', '{"cached":null,"ignore_cache":false}'), +(48413, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:29.785+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48414, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:29.909+00', '{"cached":null,"ignore_cache":false}'), +(48415, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:30.59+00', '{"cached":null,"ignore_cache":false}'), +(48416, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:30.649+00', '{"cached":null,"ignore_cache":false}'), +(48417, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:30.936+00', '{"cached":null,"ignore_cache":false}'), +(48418, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.1+00', '{"cached":null,"ignore_cache":false}'), +(48419, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.12+00', '{"cached":null,"ignore_cache":false}'), +(48420, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.393+00', '{"cached":null,"ignore_cache":false}'), +(48421, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.394+00', '{"cached":null,"ignore_cache":false}'), +(48422, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.396+00', '{"cached":null,"ignore_cache":false}'), +(48423, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.398+00', '{"cached":null,"ignore_cache":false}'), +(48424, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.401+00', '{"cached":null,"ignore_cache":false}'), +(48425, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.409+00', '{"cached":null,"ignore_cache":false}'), +(48426, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.41+00', '{"cached":null,"ignore_cache":false}'), +(48427, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.411+00', '{"cached":null,"ignore_cache":false}'), +(48428, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.412+00', '{"cached":null,"ignore_cache":false}'), +(48429, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:31.415+00', '{"cached":null,"ignore_cache":false}'), +(48430, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:32.352+00', '{"cached":null,"ignore_cache":false}'), +(48431, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:32.378+00', '{"cached":null,"ignore_cache":false}'), +(48432, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:32.448+00', '{"cached":null,"ignore_cache":false}'), +(48433, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:32.491+00', '{"cached":null,"ignore_cache":false}'), +(48434, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:56.665+00', '{"cached":null,"ignore_cache":false}'), +(48435, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.501+00', '{"cached":null,"ignore_cache":false}'), +(48436, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.523+00', '{"cached":null,"ignore_cache":false}'), +(48437, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:57.668+00', '{"cached":null,"ignore_cache":false}'), +(48438, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:58.39+00', '{"cached":null,"ignore_cache":false}'), +(48439, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:58.782+00', '{"cached":null,"ignore_cache":false}'), +(48440, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:59.035+00', '{"cached":null,"ignore_cache":false}'), +(48441, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:02:59.054+00', '{"cached":null,"ignore_cache":false}'), +(48442, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:00.413+00', '{"cached":null,"ignore_cache":false}'), +(48443, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:00.479+00', '{"cached":null,"ignore_cache":false}'), +(48444, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.117+00', '{"cached":null,"ignore_cache":false}'), +(48445, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.345+00', '{"cached":null,"ignore_cache":false}'), +(48446, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.347+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48447, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.348+00', '{"cached":null,"ignore_cache":false}'), +(48448, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.358+00', '{"cached":null,"ignore_cache":false}'), +(48449, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.406+00', '{"cached":null,"ignore_cache":false}'), +(48450, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.45+00', '{"cached":null,"ignore_cache":false}'), +(48451, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.758+00', '{"cached":null,"ignore_cache":false}'), +(48452, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.768+00', '{"cached":null,"ignore_cache":false}'), +(48453, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.785+00', '{"cached":null,"ignore_cache":false}'), +(48454, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.806+00', '{"cached":null,"ignore_cache":false}'), +(48455, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.855+00', '{"cached":null,"ignore_cache":false}'), +(48456, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.857+00', '{"cached":null,"ignore_cache":false}'), +(48457, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.858+00', '{"cached":null,"ignore_cache":false}'), +(48458, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.957+00', '{"cached":null,"ignore_cache":false}'), +(48459, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:01.962+00', '{"cached":null,"ignore_cache":false}'), +(48460, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:02.02+00', '{"cached":null,"ignore_cache":false}'), +(48461, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:02.045+00', '{"cached":null,"ignore_cache":false}'), +(48462, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:05.229+00', '{"cached":null,"ignore_cache":false}'), +(48463, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:05.285+00', '{"cached":null,"ignore_cache":false}'), +(48464, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:05.323+00', '{"cached":null,"ignore_cache":false}'), +(48465, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:05.356+00', '{"cached":null,"ignore_cache":false}'), +(48466, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.698+00', '{"cached":null,"ignore_cache":false}'), +(48467, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.71+00', '{"cached":null,"ignore_cache":false}'), +(48468, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.993+00', '{"cached":null,"ignore_cache":false}'), +(48469, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:10.995+00', '{"cached":null,"ignore_cache":false}'), +(48470, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.021+00', '{"cached":null,"ignore_cache":false}'), +(48471, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:11.132+00', '{"cached":null,"ignore_cache":false}'), +(48472, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.436+00', '{"cached":null,"ignore_cache":false}'), +(48473, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.437+00', '{"cached":null,"ignore_cache":false}'), +(48474, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.438+00', '{"cached":null,"ignore_cache":false}'), +(48475, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.445+00', '{"cached":null,"ignore_cache":false}'), +(48476, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.447+00', '{"cached":null,"ignore_cache":false}'), +(48477, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.448+00', '{"cached":null,"ignore_cache":false}'), +(48478, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.713+00', '{"cached":null,"ignore_cache":false}'), +(48479, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:12.728+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48480, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.146+00', '{"cached":null,"ignore_cache":false}'), +(48481, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.229+00', '{"cached":null,"ignore_cache":false}'), +(48482, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.267+00', '{"cached":null,"ignore_cache":false}'), +(48483, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.29+00', '{"cached":null,"ignore_cache":false}'), +(48484, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.326+00', '{"cached":null,"ignore_cache":false}'), +(48485, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.343+00', '{"cached":null,"ignore_cache":false}'), +(48486, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.558+00', '{"cached":null,"ignore_cache":false}'), +(48487, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.579+00', '{"cached":null,"ignore_cache":false}'), +(48488, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.696+00', '{"cached":null,"ignore_cache":false}'), +(48489, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.837+00', '{"cached":null,"ignore_cache":false}'), +(48490, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.911+00', '{"cached":null,"ignore_cache":false}'), +(48491, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:13.924+00', '{"cached":null,"ignore_cache":false}'), +(48492, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.249+00', '{"cached":null,"ignore_cache":false}'), +(48493, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.414+00', '{"cached":null,"ignore_cache":false}'), +(48494, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.525+00', '{"cached":null,"ignore_cache":false}'), +(48495, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.537+00', '{"cached":null,"ignore_cache":false}'), +(48496, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.573+00', '{"cached":null,"ignore_cache":false}'), +(48497, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.706+00', '{"cached":null,"ignore_cache":false}'), +(48498, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.728+00', '{"cached":null,"ignore_cache":false}'), +(48499, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.889+00', '{"cached":null,"ignore_cache":false}'), +(48500, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:14.938+00', '{"cached":null,"ignore_cache":false}'), +(48501, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.063+00', '{"cached":null,"ignore_cache":false}'), +(48502, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.118+00', '{"cached":null,"ignore_cache":false}'), +(48503, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.135+00', '{"cached":null,"ignore_cache":false}'), +(48504, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.137+00', '{"cached":null,"ignore_cache":false}'), +(48505, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.157+00', '{"cached":null,"ignore_cache":false}'), +(48506, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.23+00', '{"cached":null,"ignore_cache":false}'), +(48507, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.61+00', '{"cached":null,"ignore_cache":false}'), +(48508, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.622+00', '{"cached":null,"ignore_cache":false}'), +(48509, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:15.65+00', '{"cached":null,"ignore_cache":false}'), +(48510, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:36.61+00', '{"cached":null,"ignore_cache":false}'), +(48511, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:37.229+00', '{"cached":null,"ignore_cache":false}'), +(48512, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:37.239+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48513, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:37.248+00', '{"cached":null,"ignore_cache":false}'), +(48514, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:38.5+00', '{"cached":null,"ignore_cache":false}'), +(48515, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:38.642+00', '{"cached":null,"ignore_cache":false}'), +(48516, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:38.689+00', '{"cached":null,"ignore_cache":false}'), +(48517, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:38.754+00', '{"cached":null,"ignore_cache":false}'), +(48518, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:38.922+00', '{"cached":null,"ignore_cache":false}'), +(48519, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:38.973+00', '{"cached":null,"ignore_cache":false}'), +(48520, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:38.992+00', '{"cached":null,"ignore_cache":false}'), +(48521, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:39.055+00', '{"cached":null,"ignore_cache":false}'), +(48522, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:39.105+00', '{"cached":null,"ignore_cache":false}'), +(48523, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:39.265+00', '{"cached":null,"ignore_cache":false}'), +(48524, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:41.49+00', '{"cached":null,"ignore_cache":false}'), +(48525, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:03:41.509+00', '{"cached":null,"ignore_cache":false}'), +(48526, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:11.89+00', '{"cached":null,"ignore_cache":false}'), +(48527, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:13.285+00', '{"cached":null,"ignore_cache":false}'), +(48528, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:13.34+00', '{"cached":null,"ignore_cache":false}'), +(48529, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:13.467+00', '{"cached":null,"ignore_cache":false}'), +(48530, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.014+00', '{"cached":null,"ignore_cache":false}'), +(48531, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.66+00', '{"cached":null,"ignore_cache":false}'), +(48532, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.819+00', '{"cached":null,"ignore_cache":false}'), +(48533, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.85+00', '{"cached":null,"ignore_cache":false}'), +(48534, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.87+00', '{"cached":null,"ignore_cache":false}'), +(48535, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.892+00', '{"cached":null,"ignore_cache":false}'), +(48536, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.908+00', '{"cached":null,"ignore_cache":false}'), +(48537, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:16.935+00', '{"cached":null,"ignore_cache":false}'), +(48538, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:17.025+00', '{"cached":null,"ignore_cache":false}'), +(48539, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:17.07+00', '{"cached":null,"ignore_cache":false}'), +(48540, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:20.594+00', '{"cached":null,"ignore_cache":false}'), +(48541, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:04:20.623+00', '{"cached":null,"ignore_cache":false}'), +(48542, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.116+00', '{"cached":null,"ignore_cache":false}'), +(48543, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.155+00', '{"cached":null,"ignore_cache":false}'), +(48544, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.16+00', '{"cached":null,"ignore_cache":false}'), +(48545, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.183+00', '{"cached":null,"ignore_cache":false}'), +(48546, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.197+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48547, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.201+00', '{"cached":null,"ignore_cache":false}'), +(48548, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.205+00', '{"cached":null,"ignore_cache":false}'), +(48549, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.688+00', '{"cached":null,"ignore_cache":false}'), +(48550, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.783+00', '{"cached":null,"ignore_cache":false}'), +(48551, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:25.877+00', '{"cached":null,"ignore_cache":false}'), +(48552, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:26.641+00', '{"cached":null,"ignore_cache":false}'), +(48553, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:26.981+00', '{"cached":null,"ignore_cache":false}'), +(48554, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.073+00', '{"cached":null,"ignore_cache":false}'), +(48555, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.074+00', '{"cached":null,"ignore_cache":false}'), +(48556, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.12+00', '{"cached":null,"ignore_cache":false}'), +(48557, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.165+00', '{"cached":null,"ignore_cache":false}'), +(48558, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.167+00', '{"cached":null,"ignore_cache":false}'), +(48559, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.173+00', '{"cached":null,"ignore_cache":false}'), +(48560, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.191+00', '{"cached":null,"ignore_cache":false}'), +(48561, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.2+00', '{"cached":null,"ignore_cache":false}'), +(48562, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.22+00', '{"cached":null,"ignore_cache":false}'), +(48563, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.251+00', '{"cached":null,"ignore_cache":false}'), +(48564, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.257+00', '{"cached":null,"ignore_cache":false}'), +(48565, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.424+00', '{"cached":null,"ignore_cache":false}'), +(48566, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.654+00', '{"cached":null,"ignore_cache":false}'), +(48567, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.673+00', '{"cached":null,"ignore_cache":false}'), +(48568, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:27.727+00', '{"cached":null,"ignore_cache":false}'), +(48569, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:29.006+00', '{"cached":null,"ignore_cache":false}'), +(48570, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:29.045+00', '{"cached":null,"ignore_cache":false}'), +(48571, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:29.061+00', '{"cached":null,"ignore_cache":false}'), +(48572, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:05:29.101+00', '{"cached":null,"ignore_cache":false}'), +(48573, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.278+00', '{"cached":null,"ignore_cache":false}'), +(48574, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.356+00', '{"cached":null,"ignore_cache":false}'), +(48575, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.371+00', '{"cached":null,"ignore_cache":false}'), +(48576, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.429+00', '{"cached":null,"ignore_cache":false}'), +(48577, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:31.434+00', '{"cached":null,"ignore_cache":false}'), +(48578, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.01+00', '{"cached":null,"ignore_cache":false}'), +(48579, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.049+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48580, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.121+00', '{"cached":null,"ignore_cache":false}'), +(48581, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.152+00', '{"cached":null,"ignore_cache":false}'), +(48582, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.206+00', '{"cached":null,"ignore_cache":false}'), +(48583, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.259+00', '{"cached":null,"ignore_cache":false}'), +(48584, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.305+00', '{"cached":null,"ignore_cache":false}'), +(48585, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.306+00', '{"cached":null,"ignore_cache":false}'), +(48586, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.325+00', '{"cached":null,"ignore_cache":false}'), +(48587, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:32.367+00', '{"cached":null,"ignore_cache":false}'), +(48588, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.011+00', '{"cached":null,"ignore_cache":false}'), +(48589, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.056+00', '{"cached":null,"ignore_cache":false}'), +(48590, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.088+00', '{"cached":null,"ignore_cache":false}'), +(48591, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.129+00', '{"cached":null,"ignore_cache":false}'), +(48592, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.258+00', '{"cached":null,"ignore_cache":false}'), +(48593, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.284+00', '{"cached":null,"ignore_cache":false}'), +(48594, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.303+00', '{"cached":null,"ignore_cache":false}'), +(48595, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:07:33.309+00', '{"cached":null,"ignore_cache":false}'), +(48596, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:13.941+00', '{"cached":null,"ignore_cache":false}'), +(48597, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:14.063+00', '{"cached":null,"ignore_cache":false}'), +(48598, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:14.133+00', '{"cached":null,"ignore_cache":false}'), +(48599, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:14.317+00', '{"cached":null,"ignore_cache":false}'), +(48600, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:14.339+00', '{"cached":null,"ignore_cache":false}'), +(48601, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:14.356+00', '{"cached":null,"ignore_cache":false}'), +(48602, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.673+00', '{"cached":null,"ignore_cache":false}'), +(48603, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.829+00', '{"cached":null,"ignore_cache":false}'), +(48604, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:15.998+00', '{"cached":null,"ignore_cache":false}'), +(48605, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:16.169+00', '{"cached":null,"ignore_cache":false}'), +(48606, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:16.282+00', '{"cached":null,"ignore_cache":false}'), +(48607, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:16.307+00', '{"cached":null,"ignore_cache":false}'), +(48608, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:16.503+00', '{"cached":null,"ignore_cache":false}'), +(48609, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:16.555+00', '{"cached":null,"ignore_cache":false}'), +(48610, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:17.037+00', '{"cached":null,"ignore_cache":false}'), +(48611, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:17.041+00', '{"cached":null,"ignore_cache":false}'), +(48612, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.844+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48613, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.873+00', '{"cached":null,"ignore_cache":false}'), +(48614, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.906+00', '{"cached":null,"ignore_cache":false}'), +(48615, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:26.907+00', '{"cached":null,"ignore_cache":false}'), +(48616, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.164+00', '{"cached":null,"ignore_cache":false}'), +(48617, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.247+00', '{"cached":null,"ignore_cache":false}'), +(48618, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.47+00', '{"cached":null,"ignore_cache":false}'), +(48619, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:27.627+00', '{"cached":null,"ignore_cache":false}'), +(48620, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.013+00', '{"cached":null,"ignore_cache":false}'), +(48621, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.081+00', '{"cached":null,"ignore_cache":false}'), +(48622, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.083+00', '{"cached":null,"ignore_cache":false}'), +(48623, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.253+00', '{"cached":null,"ignore_cache":false}'), +(48624, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.308+00', '{"cached":null,"ignore_cache":false}'), +(48625, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.377+00', '{"cached":null,"ignore_cache":false}'), +(48626, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.595+00', '{"cached":null,"ignore_cache":false}'), +(48627, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:28.639+00', '{"cached":null,"ignore_cache":false}'), +(48628, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.073+00', '{"cached":null,"ignore_cache":false}'), +(48629, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.121+00', '{"cached":null,"ignore_cache":false}'), +(48630, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.21+00', '{"cached":null,"ignore_cache":false}'), +(48631, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.377+00', '{"cached":null,"ignore_cache":false}'), +(48632, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.424+00', '{"cached":null,"ignore_cache":false}'), +(48633, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.599+00', '{"cached":null,"ignore_cache":false}'), +(48634, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.638+00', '{"cached":null,"ignore_cache":false}'), +(48635, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:36.831+00', '{"cached":null,"ignore_cache":false}'), +(48636, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:37.348+00', '{"cached":null,"ignore_cache":false}'), +(48637, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:37.408+00', '{"cached":null,"ignore_cache":false}'), +(48638, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:37.434+00', '{"cached":null,"ignore_cache":false}'), +(48639, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:37.526+00', '{"cached":null,"ignore_cache":false}'), +(48640, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:37.559+00', '{"cached":null,"ignore_cache":false}'), +(48641, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:37.564+00', '{"cached":null,"ignore_cache":false}'), +(48642, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:38.049+00', '{"cached":null,"ignore_cache":false}'), +(48643, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:08:38.087+00', '{"cached":null,"ignore_cache":false}'), +(48644, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:58.207+00', '{"cached":null,"ignore_cache":false}'), +(48645, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:58.382+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48646, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:59.822+00', '{"cached":null,"ignore_cache":false}'), +(48647, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:59.862+00', '{"cached":null,"ignore_cache":false}'), +(48648, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:10:59.934+00', '{"cached":null,"ignore_cache":false}'), +(48649, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:00.028+00', '{"cached":null,"ignore_cache":false}'), +(48650, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:00.161+00', '{"cached":null,"ignore_cache":false}'), +(48651, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:00.166+00', '{"cached":null,"ignore_cache":false}'), +(48652, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:02.222+00', '{"cached":null,"ignore_cache":false}'), +(48653, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:02.233+00', '{"cached":null,"ignore_cache":false}'), +(48654, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:02.652+00', '{"cached":null,"ignore_cache":false}'), +(48655, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:02.69+00', '{"cached":null,"ignore_cache":false}'), +(48656, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:02.696+00', '{"cached":null,"ignore_cache":false}'), +(48657, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.022+00', '{"cached":null,"ignore_cache":false}'), +(48658, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.103+00', '{"cached":null,"ignore_cache":false}'), +(48659, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.105+00', '{"cached":null,"ignore_cache":false}'), +(48660, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.436+00', '{"cached":null,"ignore_cache":false}'), +(48661, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.503+00', '{"cached":null,"ignore_cache":false}'), +(48662, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.565+00', '{"cached":null,"ignore_cache":false}'), +(48663, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.597+00', '{"cached":null,"ignore_cache":false}'), +(48664, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.626+00', '{"cached":null,"ignore_cache":false}'), +(48665, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.754+00', '{"cached":null,"ignore_cache":false}'), +(48666, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.782+00', '{"cached":null,"ignore_cache":false}'), +(48667, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.79+00', '{"cached":null,"ignore_cache":false}'), +(48668, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.795+00', '{"cached":null,"ignore_cache":false}'), +(48669, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:03.909+00', '{"cached":null,"ignore_cache":false}'), +(48670, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:04.022+00', '{"cached":null,"ignore_cache":false}'), +(48671, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:04.139+00', '{"cached":null,"ignore_cache":false}'), +(48672, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:07.533+00', '{"cached":null,"ignore_cache":false}'), +(48673, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:07.535+00', '{"cached":null,"ignore_cache":false}'), +(48674, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:07.566+00', '{"cached":null,"ignore_cache":false}'), +(48675, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:11:07.61+00', '{"cached":null,"ignore_cache":false}'), +(48676, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:52.326+00', '{"cached":null,"ignore_cache":false}'), +(48677, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:53.644+00', '{"cached":null,"ignore_cache":false}'), +(48678, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:53.653+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48679, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:53.705+00', '{"cached":null,"ignore_cache":false}'), +(48680, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:53.779+00', '{"cached":null,"ignore_cache":false}'), +(48681, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.145+00', '{"cached":null,"ignore_cache":false}'), +(48682, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.416+00', '{"cached":null,"ignore_cache":false}'), +(48683, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.468+00', '{"cached":null,"ignore_cache":false}'), +(48684, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.692+00', '{"cached":null,"ignore_cache":false}'), +(48685, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.866+00', '{"cached":null,"ignore_cache":false}'), +(48686, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.873+00', '{"cached":null,"ignore_cache":false}'), +(48687, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.881+00', '{"cached":null,"ignore_cache":false}'), +(48688, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.888+00', '{"cached":null,"ignore_cache":false}'), +(48689, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:54.895+00', '{"cached":null,"ignore_cache":false}'), +(48690, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:56.121+00', '{"cached":null,"ignore_cache":false}'), +(48691, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:12:56.162+00', '{"cached":null,"ignore_cache":false}'), +(48692, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:31.671+00', '{"cached":null,"ignore_cache":false}'), +(48693, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:31.69+00', '{"cached":null,"ignore_cache":false}'), +(48694, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.553+00', '{"cached":null,"ignore_cache":false}'), +(48695, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:32.69+00', '{"cached":null,"ignore_cache":false}'), +(48696, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.598+00', '{"cached":null,"ignore_cache":false}'), +(48697, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.608+00', '{"cached":null,"ignore_cache":false}'), +(48698, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.695+00', '{"cached":null,"ignore_cache":false}'), +(48699, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.766+00', '{"cached":null,"ignore_cache":false}'), +(48700, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.802+00', '{"cached":null,"ignore_cache":false}'), +(48701, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.809+00', '{"cached":null,"ignore_cache":false}'), +(48702, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.898+00', '{"cached":null,"ignore_cache":false}'), +(48703, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.948+00', '{"cached":null,"ignore_cache":false}'), +(48704, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:33.982+00', '{"cached":null,"ignore_cache":false}'), +(48705, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:34.06+00', '{"cached":null,"ignore_cache":false}'), +(48706, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:35.694+00', '{"cached":null,"ignore_cache":false}'), +(48707, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:13:35.707+00', '{"cached":null,"ignore_cache":false}'), +(48708, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:13.192+00', '{"cached":null,"ignore_cache":false}'), +(48709, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:14.225+00', '{"cached":null,"ignore_cache":false}'), +(48710, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:14.236+00', '{"cached":null,"ignore_cache":false}'), +(48711, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:14.258+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48712, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:14.647+00', '{"cached":null,"ignore_cache":false}'), +(48713, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:14.828+00', '{"cached":null,"ignore_cache":false}'), +(48714, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.278+00', '{"cached":null,"ignore_cache":false}'), +(48715, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.328+00', '{"cached":null,"ignore_cache":false}'), +(48716, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.341+00', '{"cached":null,"ignore_cache":false}'), +(48717, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.419+00', '{"cached":null,"ignore_cache":false}'), +(48718, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.6+00', '{"cached":null,"ignore_cache":false}'), +(48719, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.633+00', '{"cached":null,"ignore_cache":false}'), +(48720, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.635+00', '{"cached":null,"ignore_cache":false}'), +(48721, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.636+00', '{"cached":null,"ignore_cache":false}'), +(48722, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.642+00', '{"cached":null,"ignore_cache":false}'), +(48723, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:15.746+00', '{"cached":null,"ignore_cache":false}'), +(48724, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.221+00', '{"cached":null,"ignore_cache":false}'), +(48725, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.321+00', '{"cached":null,"ignore_cache":false}'), +(48726, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.324+00', '{"cached":null,"ignore_cache":false}'), +(48727, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.558+00', '{"cached":null,"ignore_cache":false}'), +(48728, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.737+00', '{"cached":null,"ignore_cache":false}'), +(48729, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.799+00', '{"cached":null,"ignore_cache":false}'), +(48730, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.831+00', '{"cached":null,"ignore_cache":false}'), +(48731, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:16.914+00', '{"cached":null,"ignore_cache":false}'), +(48732, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:17.083+00', '{"cached":null,"ignore_cache":false}'), +(48733, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:17.208+00', '{"cached":null,"ignore_cache":false}'), +(48734, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:17.897+00', '{"cached":null,"ignore_cache":false}'), +(48735, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:16:17.991+00', '{"cached":null,"ignore_cache":false}'), +(48736, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:01.104+00', '{"cached":null,"ignore_cache":false}'), +(48737, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.291+00', '{"cached":null,"ignore_cache":false}'), +(48738, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.306+00', '{"cached":null,"ignore_cache":false}'), +(48739, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.353+00', '{"cached":null,"ignore_cache":false}'), +(48740, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.385+00', '{"cached":null,"ignore_cache":false}'), +(48741, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.431+00', '{"cached":null,"ignore_cache":false}'), +(48742, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.498+00', '{"cached":null,"ignore_cache":false}'), +(48743, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:02.704+00', '{"cached":null,"ignore_cache":false}'), +(48744, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:04.305+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48745, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:04.365+00', '{"cached":null,"ignore_cache":false}'), +(48746, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:05.89+00', '{"cached":null,"ignore_cache":false}'), +(48747, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:06.617+00', '{"cached":null,"ignore_cache":false}'), +(48748, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:07.226+00', '{"cached":null,"ignore_cache":false}'), +(48749, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:07.63+00', '{"cached":null,"ignore_cache":false}'), +(48750, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:08.466+00', '{"cached":null,"ignore_cache":false}'), +(48751, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:08.544+00', '{"cached":null,"ignore_cache":false}'), +(48752, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:08.865+00', '{"cached":null,"ignore_cache":false}'), +(48753, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:08.997+00', '{"cached":null,"ignore_cache":false}'), +(48754, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.138+00', '{"cached":null,"ignore_cache":false}'), +(48755, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.227+00', '{"cached":null,"ignore_cache":false}'), +(48756, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.322+00', '{"cached":null,"ignore_cache":false}'), +(48757, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.358+00', '{"cached":null,"ignore_cache":false}'), +(48758, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.411+00', '{"cached":null,"ignore_cache":false}'), +(48759, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.489+00', '{"cached":null,"ignore_cache":false}'), +(48760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.717+00', '{"cached":null,"ignore_cache":false}'), +(48761, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:09.763+00', '{"cached":null,"ignore_cache":false}'), +(48762, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.204+00', '{"cached":null,"ignore_cache":false}'), +(48763, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.289+00', '{"cached":null,"ignore_cache":false}'), +(48764, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.331+00', '{"cached":null,"ignore_cache":false}'), +(48765, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.34+00', '{"cached":null,"ignore_cache":false}'), +(48766, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.357+00', '{"cached":null,"ignore_cache":false}'), +(48767, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.386+00', '{"cached":null,"ignore_cache":false}'), +(48768, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.494+00', '{"cached":null,"ignore_cache":false}'), +(48769, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.805+00', '{"cached":null,"ignore_cache":false}'), +(48770, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.844+00', '{"cached":null,"ignore_cache":false}'), +(48771, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.883+00', '{"cached":null,"ignore_cache":false}'), +(48772, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.884+00', '{"cached":null,"ignore_cache":false}'), +(48773, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:10.896+00', '{"cached":null,"ignore_cache":false}'), +(48774, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:11.001+00', '{"cached":null,"ignore_cache":false}'), +(48775, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:11.076+00', '{"cached":null,"ignore_cache":false}'), +(48776, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:11.137+00', '{"cached":null,"ignore_cache":false}'), +(48777, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:11.198+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48778, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:13.46+00', '{"cached":null,"ignore_cache":false}'), +(48779, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:13.59+00', '{"cached":null,"ignore_cache":false}'), +(48780, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:13.599+00', '{"cached":null,"ignore_cache":false}'), +(48781, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:13.71+00', '{"cached":null,"ignore_cache":false}'), +(48782, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:13.733+00', '{"cached":null,"ignore_cache":false}'), +(48783, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:13.761+00', '{"cached":null,"ignore_cache":false}'), +(48784, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:39.716+00', '{"cached":null,"ignore_cache":false}'), +(48785, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:40.3+00', '{"cached":null,"ignore_cache":false}'), +(48786, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:40.321+00', '{"cached":null,"ignore_cache":false}'), +(48787, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:40.338+00', '{"cached":null,"ignore_cache":false}'), +(48788, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.203+00', '{"cached":null,"ignore_cache":false}'), +(48789, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.457+00', '{"cached":null,"ignore_cache":false}'), +(48790, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.464+00', '{"cached":null,"ignore_cache":false}'), +(48791, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.47+00', '{"cached":null,"ignore_cache":false}'), +(48792, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.476+00', '{"cached":null,"ignore_cache":false}'), +(48793, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.552+00', '{"cached":null,"ignore_cache":false}'), +(48794, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.623+00', '{"cached":null,"ignore_cache":false}'), +(48795, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.644+00', '{"cached":null,"ignore_cache":false}'), +(48796, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.675+00', '{"cached":null,"ignore_cache":false}'), +(48797, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:41.711+00', '{"cached":null,"ignore_cache":false}'), +(48798, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:42.331+00', '{"cached":null,"ignore_cache":false}'), +(48799, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:18:42.345+00', '{"cached":null,"ignore_cache":false}'), +(48800, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:35.317+00', '{"cached":null,"ignore_cache":false}'), +(48801, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:36.649+00', '{"cached":null,"ignore_cache":false}'), +(48802, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:37.44+00', '{"cached":null,"ignore_cache":false}'), +(48803, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:37.53+00', '{"cached":null,"ignore_cache":false}'), +(48804, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:37.532+00', '{"cached":null,"ignore_cache":false}'), +(48805, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:37.55+00', '{"cached":null,"ignore_cache":false}'), +(48806, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:37.831+00', '{"cached":null,"ignore_cache":false}'), +(48807, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:37.834+00', '{"cached":null,"ignore_cache":false}'), +(48808, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:39.713+00', '{"cached":null,"ignore_cache":false}'), +(48809, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:40.064+00', '{"cached":null,"ignore_cache":false}'), +(48810, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:40.507+00', '{"cached":null,"ignore_cache":false}'), +(48811, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:40.724+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48812, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:40.801+00', '{"cached":null,"ignore_cache":false}'), +(48813, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:40.899+00', '{"cached":null,"ignore_cache":false}'), +(48814, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.095+00', '{"cached":null,"ignore_cache":false}'), +(48815, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.181+00', '{"cached":null,"ignore_cache":false}'), +(48816, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.248+00', '{"cached":null,"ignore_cache":false}'), +(48817, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.272+00', '{"cached":null,"ignore_cache":false}'), +(48818, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.363+00', '{"cached":null,"ignore_cache":false}'), +(48819, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.371+00', '{"cached":null,"ignore_cache":false}'), +(48820, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.405+00', '{"cached":null,"ignore_cache":false}'), +(48821, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.429+00', '{"cached":null,"ignore_cache":false}'), +(48822, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.513+00', '{"cached":null,"ignore_cache":false}'), +(48823, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.561+00', '{"cached":null,"ignore_cache":false}'), +(48824, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.596+00', '{"cached":null,"ignore_cache":false}'), +(48825, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.79+00', '{"cached":null,"ignore_cache":false}'), +(48826, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.802+00', '{"cached":null,"ignore_cache":false}'), +(48827, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:41.839+00', '{"cached":null,"ignore_cache":false}'), +(48828, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:44.314+00', '{"cached":null,"ignore_cache":false}'), +(48829, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:44.388+00', '{"cached":null,"ignore_cache":false}'), +(48830, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:44.394+00', '{"cached":null,"ignore_cache":false}'), +(48831, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:19:44.436+00', '{"cached":null,"ignore_cache":false}'), +(48832, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:18.066+00', '{"cached":null,"ignore_cache":false}'), +(48833, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:18.677+00', '{"cached":null,"ignore_cache":false}'), +(48834, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:18.691+00', '{"cached":null,"ignore_cache":false}'), +(48835, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:18.697+00', '{"cached":null,"ignore_cache":false}'), +(48836, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.119+00', '{"cached":null,"ignore_cache":false}'), +(48837, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.469+00', '{"cached":null,"ignore_cache":false}'), +(48838, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.522+00', '{"cached":null,"ignore_cache":false}'), +(48839, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.524+00', '{"cached":null,"ignore_cache":false}'), +(48840, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.622+00', '{"cached":null,"ignore_cache":false}'), +(48841, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.658+00', '{"cached":null,"ignore_cache":false}'), +(48842, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.663+00', '{"cached":null,"ignore_cache":false}'), +(48843, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.666+00', '{"cached":null,"ignore_cache":false}'), +(48844, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.67+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48845, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:19.68+00', '{"cached":null,"ignore_cache":false}'), +(48846, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:20.665+00', '{"cached":null,"ignore_cache":false}'), +(48847, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:20.708+00', '{"cached":null,"ignore_cache":false}'), +(48848, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:43.983+00', '{"cached":null,"ignore_cache":false}'), +(48849, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.005+00', '{"cached":null,"ignore_cache":false}'), +(48850, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.076+00', '{"cached":null,"ignore_cache":false}'), +(48851, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.091+00', '{"cached":null,"ignore_cache":false}'), +(48852, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.178+00', '{"cached":null,"ignore_cache":false}'), +(48853, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.179+00', '{"cached":null,"ignore_cache":false}'), +(48854, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.921+00', '{"cached":null,"ignore_cache":false}'), +(48855, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:44.993+00', '{"cached":null,"ignore_cache":false}'), +(48856, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.293+00', '{"cached":null,"ignore_cache":false}'), +(48857, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.343+00', '{"cached":null,"ignore_cache":false}'), +(48858, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.545+00', '{"cached":null,"ignore_cache":false}'), +(48859, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.573+00', '{"cached":null,"ignore_cache":false}'), +(48860, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.658+00', '{"cached":null,"ignore_cache":false}'), +(48861, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.737+00', '{"cached":null,"ignore_cache":false}'), +(48862, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:45.935+00', '{"cached":null,"ignore_cache":false}'), +(48863, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:23:46.166+00', '{"cached":null,"ignore_cache":false}'), +(48864, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.236+00', '{"cached":null,"ignore_cache":false}'), +(48865, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.245+00', '{"cached":null,"ignore_cache":false}'), +(48866, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.882+00', '{"cached":null,"ignore_cache":false}'), +(48867, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.9+00', '{"cached":null,"ignore_cache":false}'), +(48868, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.905+00', '{"cached":null,"ignore_cache":false}'), +(48869, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:06.91+00', '{"cached":null,"ignore_cache":false}'), +(48870, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.029+00', '{"cached":null,"ignore_cache":false}'), +(48871, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.295+00', '{"cached":null,"ignore_cache":false}'), +(48872, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.316+00', '{"cached":null,"ignore_cache":false}'), +(48873, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.4+00', '{"cached":null,"ignore_cache":false}'), +(48874, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.428+00', '{"cached":null,"ignore_cache":false}'), +(48875, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.488+00', '{"cached":null,"ignore_cache":false}'), +(48876, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.571+00', '{"cached":null,"ignore_cache":false}'), +(48877, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:07.615+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48878, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:08.3+00', '{"cached":null,"ignore_cache":false}'), +(48879, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:25:08.353+00', '{"cached":null,"ignore_cache":false}'), +(48880, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:18.592+00', '{"cached":null,"ignore_cache":false}'), +(48881, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:19.59+00', '{"cached":null,"ignore_cache":false}'), +(48882, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:19.598+00', '{"cached":null,"ignore_cache":false}'), +(48883, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:19.641+00', '{"cached":null,"ignore_cache":false}'), +(48884, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.505+00', '{"cached":null,"ignore_cache":false}'), +(48885, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.738+00', '{"cached":null,"ignore_cache":false}'), +(48886, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.787+00', '{"cached":null,"ignore_cache":false}'), +(48887, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.803+00', '{"cached":null,"ignore_cache":false}'), +(48888, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.82+00', '{"cached":null,"ignore_cache":false}'), +(48889, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.895+00', '{"cached":null,"ignore_cache":false}'), +(48890, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.967+00', '{"cached":null,"ignore_cache":false}'), +(48891, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:21.972+00', '{"cached":null,"ignore_cache":false}'), +(48892, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:22.006+00', '{"cached":null,"ignore_cache":false}'), +(48893, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:22.013+00', '{"cached":null,"ignore_cache":false}'), +(48894, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:23.927+00', '{"cached":null,"ignore_cache":false}'), +(48895, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:23.948+00', '{"cached":null,"ignore_cache":false}'), +(48896, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.109+00', '{"cached":null,"ignore_cache":false}'), +(48897, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.222+00', '{"cached":null,"ignore_cache":false}'), +(48898, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.272+00', '{"cached":null,"ignore_cache":false}'), +(48899, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.312+00', '{"cached":null,"ignore_cache":false}'), +(48900, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.547+00', '{"cached":null,"ignore_cache":false}'), +(48901, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.787+00', '{"cached":null,"ignore_cache":false}'), +(48902, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.788+00', '{"cached":null,"ignore_cache":false}'), +(48903, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.862+00', '{"cached":null,"ignore_cache":false}'), +(48904, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.863+00', '{"cached":null,"ignore_cache":false}'), +(48905, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.923+00', '{"cached":null,"ignore_cache":false}'), +(48906, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:43.993+00', '{"cached":null,"ignore_cache":false}'), +(48907, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:44.048+00', '{"cached":null,"ignore_cache":false}'), +(48908, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:44.072+00', '{"cached":null,"ignore_cache":false}'), +(48909, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:44.086+00', '{"cached":null,"ignore_cache":false}'), +(48910, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:44.575+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48911, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:28:44.584+00', '{"cached":null,"ignore_cache":false}'), +(48912, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:19.695+00', '{"cached":null,"ignore_cache":false}'), +(48913, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:20.582+00', '{"cached":null,"ignore_cache":false}'), +(48914, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:20.621+00', '{"cached":null,"ignore_cache":false}'), +(48915, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:20.624+00', '{"cached":null,"ignore_cache":false}'), +(48916, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.335+00', '{"cached":null,"ignore_cache":false}'), +(48917, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.544+00', '{"cached":null,"ignore_cache":false}'), +(48918, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.619+00', '{"cached":null,"ignore_cache":false}'), +(48919, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.621+00', '{"cached":null,"ignore_cache":false}'), +(48920, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.624+00', '{"cached":null,"ignore_cache":false}'), +(48921, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.646+00', '{"cached":null,"ignore_cache":false}'), +(48922, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.653+00', '{"cached":null,"ignore_cache":false}'), +(48923, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.716+00', '{"cached":null,"ignore_cache":false}'), +(48924, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.728+00', '{"cached":null,"ignore_cache":false}'), +(48925, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:21.855+00', '{"cached":null,"ignore_cache":false}'), +(48926, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:23.165+00', '{"cached":null,"ignore_cache":false}'), +(48927, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:30:23.191+00', '{"cached":null,"ignore_cache":false}'), +(48928, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:30.188+00', '{"cached":null,"ignore_cache":false}'), +(48929, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:30.846+00', '{"cached":null,"ignore_cache":false}'), +(48930, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:30.872+00', '{"cached":null,"ignore_cache":false}'), +(48931, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:30.895+00', '{"cached":null,"ignore_cache":false}'), +(48932, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:30.909+00', '{"cached":null,"ignore_cache":false}'), +(48933, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.166+00', '{"cached":null,"ignore_cache":false}'), +(48934, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.264+00', '{"cached":null,"ignore_cache":false}'), +(48935, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.395+00', '{"cached":null,"ignore_cache":false}'), +(48936, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.41+00', '{"cached":null,"ignore_cache":false}'), +(48937, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.472+00', '{"cached":null,"ignore_cache":false}'), +(48938, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.488+00', '{"cached":null,"ignore_cache":false}'), +(48939, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.514+00', '{"cached":null,"ignore_cache":false}'), +(48940, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.576+00', '{"cached":null,"ignore_cache":false}'), +(48941, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:31.636+00', '{"cached":null,"ignore_cache":false}'), +(48942, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:32.516+00', '{"cached":null,"ignore_cache":false}'), +(48943, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:33:32.662+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48944, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:43.903+00', '{"cached":null,"ignore_cache":false}'), +(48945, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:44.325+00', '{"cached":null,"ignore_cache":false}'), +(48946, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:45.847+00', '{"cached":null,"ignore_cache":false}'), +(48947, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:45.871+00', '{"cached":null,"ignore_cache":false}'), +(48948, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:45.909+00', '{"cached":null,"ignore_cache":false}'), +(48949, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:45.973+00', '{"cached":null,"ignore_cache":false}'), +(48950, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:45.978+00', '{"cached":null,"ignore_cache":false}'), +(48951, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:45.99+00', '{"cached":null,"ignore_cache":false}'), +(48952, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:47.992+00', '{"cached":null,"ignore_cache":false}'), +(48953, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.001+00', '{"cached":null,"ignore_cache":false}'), +(48954, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.375+00', '{"cached":null,"ignore_cache":false}'), +(48955, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.526+00', '{"cached":null,"ignore_cache":false}'), +(48956, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.605+00', '{"cached":null,"ignore_cache":false}'), +(48957, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.658+00', '{"cached":null,"ignore_cache":false}'), +(48958, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.733+00', '{"cached":null,"ignore_cache":false}'), +(48959, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.753+00', '{"cached":null,"ignore_cache":false}'), +(48960, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.813+00', '{"cached":null,"ignore_cache":false}'), +(48961, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.82+00', '{"cached":null,"ignore_cache":false}'), +(48962, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.843+00', '{"cached":null,"ignore_cache":false}'), +(48963, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.885+00', '{"cached":null,"ignore_cache":false}'), +(48964, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:48.913+00', '{"cached":null,"ignore_cache":false}'), +(48965, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:49.073+00', '{"cached":null,"ignore_cache":false}'), +(48966, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:49.084+00', '{"cached":null,"ignore_cache":false}'), +(48967, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:49.145+00', '{"cached":null,"ignore_cache":false}'), +(48968, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:49.205+00', '{"cached":null,"ignore_cache":false}'), +(48969, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:49.219+00', '{"cached":null,"ignore_cache":false}'), +(48970, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:49.221+00', '{"cached":null,"ignore_cache":false}'), +(48971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:49.222+00', '{"cached":null,"ignore_cache":false}'), +(48972, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:51.316+00', '{"cached":null,"ignore_cache":false}'), +(48973, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:51.347+00', '{"cached":null,"ignore_cache":false}'), +(48974, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:51.416+00', '{"cached":null,"ignore_cache":false}'), +(48975, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-09 15:43:51.45+00', '{"cached":null,"ignore_cache":false}'), +(48976, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:40.695+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(48977, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:41.081+00', '{"cached":null,"ignore_cache":false}'), +(48978, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:44.072+00', '{"cached":null,"ignore_cache":false}'), +(48979, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:44.136+00', '{"cached":null,"ignore_cache":false}'), +(48980, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:46.095+00', '{"cached":null,"ignore_cache":false}'), +(48981, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:46.137+00', '{"cached":null,"ignore_cache":false}'), +(48982, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:46.257+00', '{"cached":null,"ignore_cache":false}'), +(48983, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:46.469+00', '{"cached":null,"ignore_cache":false}'), +(48984, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:46.47+00', '{"cached":null,"ignore_cache":false}'), +(48985, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:46.514+00', '{"cached":null,"ignore_cache":false}'), +(48986, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:47.137+00', '{"cached":null,"ignore_cache":false}'), +(48987, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:47.352+00', '{"cached":null,"ignore_cache":false}'), +(48988, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:47.563+00', '{"cached":null,"ignore_cache":false}'), +(48989, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:47.604+00', '{"cached":null,"ignore_cache":false}'), +(48990, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:47.643+00', '{"cached":null,"ignore_cache":false}'), +(48991, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:47.678+00', '{"cached":null,"ignore_cache":false}'), +(48992, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.108+00', '{"cached":null,"ignore_cache":false}'), +(48993, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.154+00', '{"cached":null,"ignore_cache":false}'), +(48994, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.204+00', '{"cached":null,"ignore_cache":false}'), +(48995, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.444+00', '{"cached":null,"ignore_cache":false}'), +(48996, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.465+00', '{"cached":null,"ignore_cache":false}'), +(48997, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.482+00', '{"cached":null,"ignore_cache":false}'), +(48998, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.498+00', '{"cached":null,"ignore_cache":false}'), +(48999, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.504+00', '{"cached":null,"ignore_cache":false}'), +(49000, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.509+00', '{"cached":null,"ignore_cache":false}'), +(49001, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.511+00', '{"cached":null,"ignore_cache":false}'), +(49002, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.511+00', '{"cached":null,"ignore_cache":false}'), +(49003, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:48.52+00', '{"cached":null,"ignore_cache":false}'), +(49004, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:50.776+00', '{"cached":null,"ignore_cache":false}'), +(49005, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:50.928+00', '{"cached":null,"ignore_cache":false}'), +(49006, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:51.036+00', '{"cached":null,"ignore_cache":false}'), +(49007, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 07:48:51.067+00', '{"cached":null,"ignore_cache":false}'), +(49008, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:47.6+00', '{"cached":null,"ignore_cache":false}'), +(49009, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:48.352+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49010, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:48.739+00', '{"cached":null,"ignore_cache":false}'), +(49011, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:48.756+00', '{"cached":null,"ignore_cache":false}'), +(49012, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:48.786+00', '{"cached":null,"ignore_cache":false}'), +(49013, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:48.803+00', '{"cached":null,"ignore_cache":false}'), +(49014, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:48.91+00', '{"cached":null,"ignore_cache":false}'), +(49015, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:48.952+00', '{"cached":null,"ignore_cache":false}'), +(49016, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:50.726+00', '{"cached":null,"ignore_cache":false}'), +(49017, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 07:54:50.754+00', '{"cached":null,"ignore_cache":false}'), +(49018, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:07.367+00', '{"cached":null,"ignore_cache":false}'), +(49019, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:07.481+00', '{"cached":null,"ignore_cache":false}'), +(49020, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:07.553+00', '{"cached":null,"ignore_cache":false}'), +(49021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:07.649+00', '{"cached":null,"ignore_cache":false}'), +(49022, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:07.651+00', '{"cached":null,"ignore_cache":false}'), +(49023, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 07:55:07.653+00', '{"cached":null,"ignore_cache":false}'), +(49024, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:38.831+00', '{"cached":null,"ignore_cache":false}'), +(49025, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:40.066+00', '{"cached":null,"ignore_cache":false}'), +(49026, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:40.223+00', '{"cached":null,"ignore_cache":false}'), +(49027, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:40.401+00', '{"cached":null,"ignore_cache":false}'), +(49028, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:40.488+00', '{"cached":null,"ignore_cache":false}'), +(49029, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:40.495+00', '{"cached":null,"ignore_cache":false}'), +(49030, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:40.568+00', '{"cached":null,"ignore_cache":false}'), +(49031, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:40.59+00', '{"cached":null,"ignore_cache":false}'), +(49032, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:42.378+00', '{"cached":null,"ignore_cache":false}'), +(49033, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 08:00:42.404+00', '{"cached":null,"ignore_cache":false}'), +(49034, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.891+00', '{"cached":null,"ignore_cache":false}'), +(49035, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.904+00', '{"cached":null,"ignore_cache":false}'), +(49036, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:15.948+00', '{"cached":null,"ignore_cache":false}'), +(49037, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:16.001+00', '{"cached":null,"ignore_cache":false}'), +(49038, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:16.014+00', '{"cached":null,"ignore_cache":false}'), +(49039, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 08:01:16.07+00', '{"cached":null,"ignore_cache":false}'), +(49040, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:21.213+00', '{"cached":null,"ignore_cache":false}'), +(49041, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:21.753+00', '{"cached":null,"ignore_cache":false}'), +(49042, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:21.794+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49043, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:21.97+00', '{"cached":null,"ignore_cache":false}'), +(49044, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:21.983+00', '{"cached":null,"ignore_cache":false}'), +(49045, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:22.044+00', '{"cached":null,"ignore_cache":false}'), +(49046, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:22.057+00', '{"cached":null,"ignore_cache":false}'), +(49047, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:22.063+00', '{"cached":null,"ignore_cache":false}'), +(49048, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:22.811+00', '{"cached":null,"ignore_cache":false}'), +(49049, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 08:06:22.817+00', '{"cached":null,"ignore_cache":false}'), +(49050, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:23.36+00', '{"cached":null,"ignore_cache":false}'), +(49051, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:23.37+00', '{"cached":null,"ignore_cache":false}'), +(49052, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:23.451+00', '{"cached":null,"ignore_cache":false}'), +(49053, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:23.501+00', '{"cached":null,"ignore_cache":false}'), +(49054, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:23.535+00', '{"cached":null,"ignore_cache":false}'), +(49055, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 08:07:23.61+00', '{"cached":null,"ignore_cache":false}'), +(49056, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:14.965+00', '{"cached":null,"ignore_cache":false}'), +(49057, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:15.735+00', '{"cached":null,"ignore_cache":false}'), +(49058, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:15.886+00', '{"cached":null,"ignore_cache":false}'), +(49059, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:16.176+00', '{"cached":null,"ignore_cache":false}'), +(49060, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:16.196+00', '{"cached":null,"ignore_cache":false}'), +(49061, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:16.199+00', '{"cached":null,"ignore_cache":false}'), +(49062, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:16.2+00', '{"cached":null,"ignore_cache":false}'), +(49063, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:16.206+00', '{"cached":null,"ignore_cache":false}'), +(49064, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:17.016+00', '{"cached":null,"ignore_cache":false}'), +(49065, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 08:12:17.035+00', '{"cached":null,"ignore_cache":false}'), +(49066, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:54.361+00', '{"cached":null,"ignore_cache":false}'), +(49067, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:54.382+00', '{"cached":null,"ignore_cache":false}'), +(49068, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:54.736+00', '{"cached":null,"ignore_cache":false}'), +(49069, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:54.785+00', '{"cached":null,"ignore_cache":false}'), +(49070, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:54.821+00', '{"cached":null,"ignore_cache":false}'), +(49071, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 08:13:54.892+00', '{"cached":null,"ignore_cache":false}'), +(49072, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:30.409+00', '{"cached":null,"ignore_cache":false}'), +(49073, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:31.584+00', '{"cached":null,"ignore_cache":false}'), +(49074, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:31.709+00', '{"cached":null,"ignore_cache":false}'), +(49075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:31.913+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49076, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:31.942+00', '{"cached":null,"ignore_cache":false}'), +(49077, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:31.975+00', '{"cached":null,"ignore_cache":false}'), +(49078, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:32.015+00', '{"cached":null,"ignore_cache":false}'), +(49079, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:32.032+00', '{"cached":null,"ignore_cache":false}'), +(49080, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:32.891+00', '{"cached":null,"ignore_cache":false}'), +(49081, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 08:24:32.895+00', '{"cached":null,"ignore_cache":false}'), +(49082, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:46.383+00', '{"cached":null,"ignore_cache":false}'), +(49083, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:47.367+00', '{"cached":null,"ignore_cache":false}'), +(49084, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:47.473+00', '{"cached":null,"ignore_cache":false}'), +(49085, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:47.475+00', '{"cached":null,"ignore_cache":false}'), +(49086, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:47.477+00', '{"cached":null,"ignore_cache":false}'), +(49087, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 08:27:47.478+00', '{"cached":null,"ignore_cache":false}'), +(49088, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:50.694+00', '{"cached":null,"ignore_cache":null}'), +(49089, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:53.915+00', '{"cached":null,"ignore_cache":false}'), +(49090, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:54.489+00', '{"cached":null,"ignore_cache":false}'), +(49091, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:54.546+00', '{"cached":null,"ignore_cache":false}'), +(49092, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:54.904+00', '{"cached":null,"ignore_cache":false}'), +(49093, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:55.018+00', '{"cached":null,"ignore_cache":false}'), +(49094, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:55.081+00', '{"cached":null,"ignore_cache":false}'), +(49095, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:55.171+00', '{"cached":null,"ignore_cache":false}'), +(49096, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:55.237+00', '{"cached":null,"ignore_cache":false}'), +(49097, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:56.324+00', '{"cached":null,"ignore_cache":false}'), +(49098, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 12:07:56.347+00', '{"cached":null,"ignore_cache":false}'), +(49099, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:37.487+00', '{"cached":null,"ignore_cache":false}'), +(49100, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:38.565+00', '{"cached":null,"ignore_cache":false}'), +(49101, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:39.03+00', '{"cached":null,"ignore_cache":false}'), +(49102, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:39.225+00', '{"cached":null,"ignore_cache":false}'), +(49103, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:39.278+00', '{"cached":null,"ignore_cache":false}'), +(49104, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:39.3+00', '{"cached":null,"ignore_cache":false}'), +(49105, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:39.338+00', '{"cached":null,"ignore_cache":false}'), +(49106, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:39.394+00', '{"cached":null,"ignore_cache":false}'), +(49107, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:40.67+00', '{"cached":null,"ignore_cache":false}'), +(49108, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 12:14:40.7+00', '{"cached":null,"ignore_cache":false}'), +(49109, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 12:15:16.457+00', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49110, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 12:15:18.374+00', '{"cached":null,"ignore_cache":false}'), +(49111, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:13.78+00', '{"cached":null,"ignore_cache":null}'), +(49112, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:15.737+00', '{"cached":null,"ignore_cache":false}'), +(49113, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:16.652+00', '{"cached":null,"ignore_cache":false}'), +(49114, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.061+00', '{"cached":null,"ignore_cache":false}'), +(49115, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.08+00', '{"cached":null,"ignore_cache":false}'), +(49116, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.17+00', '{"cached":null,"ignore_cache":false}'), +(49117, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.171+00', '{"cached":null,"ignore_cache":false}'), +(49118, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.172+00', '{"cached":null,"ignore_cache":false}'), +(49119, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.23+00', '{"cached":null,"ignore_cache":false}'), +(49120, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.239+00', '{"cached":null,"ignore_cache":false}'), +(49121, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.358+00', '{"cached":null,"ignore_cache":false}'), +(49122, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:21.399+00', '{"cached":null,"ignore_cache":null}'), +(49123, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:22.358+00', '{"cached":null,"ignore_cache":false}'), +(49124, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:22.428+00', '{"cached":null,"ignore_cache":false}'), +(49125, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-02-10 12:19:22.452+00', '{"cached":null,"ignore_cache":false}'), +(49126, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:23:19.191+00', '{"cached":null,"ignore_cache":null}'), +(49127, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 12:24:01.249+00', '{"cached":null,"ignore_cache":false}'), +(49128, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 12:24:01.252+00', '{"cached":null,"ignore_cache":false}'), +(49129, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 12:24:01.253+00', '{"cached":null,"ignore_cache":false}'), +(49130, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 12:24:01.262+00', '{"cached":null,"ignore_cache":false}'), +(49131, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 12:24:01.317+00', '{"cached":null,"ignore_cache":false}'), +(49132, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 12:24:01.319+00', '{"cached":null,"ignore_cache":false}'), +(49133, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-02-10 12:26:49.292+00', '{"cached":null,"ignore_cache":null}'), +(49134, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:04.994+00', '{"cached":null,"ignore_cache":false}'), +(49135, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:05.083+00', '{"cached":null,"ignore_cache":false}'), +(49136, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:05.207+00', '{"cached":null,"ignore_cache":false}'), +(49137, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:05.251+00', '{"cached":null,"ignore_cache":false}'), +(49138, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:05.285+00', '{"cached":null,"ignore_cache":false}'), +(49139, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-10 12:27:05.357+00', '{"cached":null,"ignore_cache":false}'), +(49140, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:50.739+00', '{"cached":null,"ignore_cache":false}'), +(49141, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:50.805+00', '{"cached":null,"ignore_cache":false}'), +(49142, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:53.195+00', '{"cached":null,"ignore_cache":false}'), +(49143, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:53.234+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49144, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:53.82+00', '{"cached":null,"ignore_cache":false}'), +(49145, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:54.095+00', '{"cached":null,"ignore_cache":false}'), +(49146, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:54.442+00', '{"cached":null,"ignore_cache":false}'), +(49147, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:54.761+00', '{"cached":null,"ignore_cache":false}'), +(49148, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:55.776+00', '{"cached":null,"ignore_cache":false}'), +(49149, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:55.784+00', '{"cached":null,"ignore_cache":false}'), +(49150, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:55.813+00', '{"cached":null,"ignore_cache":false}'), +(49151, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:56.537+00', '{"cached":null,"ignore_cache":false}'), +(49152, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:56.633+00', '{"cached":null,"ignore_cache":false}'), +(49153, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:56.767+00', '{"cached":null,"ignore_cache":false}'), +(49154, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:56.807+00', '{"cached":null,"ignore_cache":false}'), +(49155, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:56.814+00', '{"cached":null,"ignore_cache":false}'), +(49156, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:56.815+00', '{"cached":null,"ignore_cache":false}'), +(49157, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.061+00', '{"cached":null,"ignore_cache":false}'), +(49158, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.065+00', '{"cached":null,"ignore_cache":false}'), +(49159, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.098+00', '{"cached":null,"ignore_cache":false}'), +(49160, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.103+00', '{"cached":null,"ignore_cache":false}'), +(49161, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.111+00', '{"cached":null,"ignore_cache":false}'), +(49162, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.121+00', '{"cached":null,"ignore_cache":false}'), +(49163, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.126+00', '{"cached":null,"ignore_cache":false}'), +(49164, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.127+00', '{"cached":null,"ignore_cache":false}'), +(49165, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.128+00', '{"cached":null,"ignore_cache":false}'), +(49166, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.208+00', '{"cached":null,"ignore_cache":false}'), +(49167, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 09:23:57.22+00', '{"cached":null,"ignore_cache":false}'), +(49168, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 09:24:00.638+00', '{"cached":null,"ignore_cache":false}'), +(49169, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 09:24:00.927+00', '{"cached":null,"ignore_cache":false}'), +(49170, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 09:24:01.651+00', '{"cached":null,"ignore_cache":false}'), +(49171, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 09:24:01.708+00', '{"cached":null,"ignore_cache":false}'), +(49172, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:53.456+00', '{"cached":null,"ignore_cache":false}'), +(49173, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:53.535+00', '{"cached":null,"ignore_cache":false}'), +(49174, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:53.54+00', '{"cached":null,"ignore_cache":false}'), +(49175, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:53.541+00', '{"cached":null,"ignore_cache":false}'), +(49176, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.259+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49177, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.291+00', '{"cached":null,"ignore_cache":false}'), +(49178, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.3+00', '{"cached":null,"ignore_cache":false}'), +(49179, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.338+00', '{"cached":null,"ignore_cache":false}'), +(49180, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.609+00', '{"cached":null,"ignore_cache":false}'), +(49181, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.613+00', '{"cached":null,"ignore_cache":false}'), +(49182, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.619+00', '{"cached":null,"ignore_cache":false}'), +(49183, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.718+00', '{"cached":null,"ignore_cache":false}'), +(49184, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.813+00', '{"cached":null,"ignore_cache":false}'), +(49185, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:54.851+00', '{"cached":null,"ignore_cache":false}'), +(49186, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:56.005+00', '{"cached":null,"ignore_cache":false}'), +(49187, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 09:29:56.043+00', '{"cached":null,"ignore_cache":false}'), +(49188, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:10.742+00', '{"cached":null,"ignore_cache":false}'), +(49189, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:10.755+00', '{"cached":null,"ignore_cache":false}'), +(49190, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:10.859+00', '{"cached":null,"ignore_cache":false}'), +(49191, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:10.865+00', '{"cached":null,"ignore_cache":false}'), +(49192, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:10.908+00', '{"cached":null,"ignore_cache":false}'), +(49193, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:10.998+00', '{"cached":null,"ignore_cache":false}'), +(49194, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.834+00', '{"cached":null,"ignore_cache":false}'), +(49195, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:16.882+00', '{"cached":null,"ignore_cache":false}'), +(49196, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:17.032+00', '{"cached":null,"ignore_cache":false}'), +(49197, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:17.034+00', '{"cached":null,"ignore_cache":false}'), +(49198, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:17.09+00', '{"cached":null,"ignore_cache":false}'), +(49199, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:17.195+00', '{"cached":null,"ignore_cache":false}'), +(49200, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:17.29+00', '{"cached":null,"ignore_cache":false}'), +(49201, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:17.506+00', '{"cached":null,"ignore_cache":false}'), +(49202, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:18.326+00', '{"cached":null,"ignore_cache":false}'), +(49203, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 09:36:18.437+00', '{"cached":null,"ignore_cache":false}'), +(49204, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:11.871+00', '{"cached":null,"ignore_cache":false}'), +(49205, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:11.899+00', '{"cached":null,"ignore_cache":false}'), +(49206, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:11.905+00', '{"cached":null,"ignore_cache":false}'), +(49207, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:11.911+00', '{"cached":null,"ignore_cache":false}'), +(49208, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:11.92+00', '{"cached":null,"ignore_cache":false}'), +(49209, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:11.927+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49210, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:18.165+00', '{"cached":null,"ignore_cache":false}'), +(49211, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:18.287+00', '{"cached":null,"ignore_cache":false}'), +(49212, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:18.853+00', '{"cached":null,"ignore_cache":false}'), +(49213, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:18.921+00', '{"cached":null,"ignore_cache":false}'), +(49214, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:19.033+00', '{"cached":null,"ignore_cache":false}'), +(49215, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:19.216+00', '{"cached":null,"ignore_cache":false}'), +(49216, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:19.622+00', '{"cached":null,"ignore_cache":false}'), +(49217, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:19.932+00', '{"cached":null,"ignore_cache":false}'), +(49218, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:22.579+00', '{"cached":null,"ignore_cache":false}'), +(49219, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 09:42:22.641+00', '{"cached":null,"ignore_cache":false}'), +(49220, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:12.195+00', '{"cached":null,"ignore_cache":false}'), +(49221, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:12.248+00', '{"cached":null,"ignore_cache":false}'), +(49222, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:12.249+00', '{"cached":null,"ignore_cache":false}'), +(49223, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:12.25+00', '{"cached":null,"ignore_cache":false}'), +(49224, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:12.251+00', '{"cached":null,"ignore_cache":false}'), +(49225, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:12.253+00', '{"cached":null,"ignore_cache":false}'), +(49226, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:37.925+00', '{"cached":null,"ignore_cache":false}'), +(49227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:39.384+00', '{"cached":null,"ignore_cache":false}'), +(49228, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:39.746+00', '{"cached":null,"ignore_cache":false}'), +(49229, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:39.894+00', '{"cached":null,"ignore_cache":false}'), +(49230, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:39.954+00', '{"cached":null,"ignore_cache":false}'), +(49231, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:39.971+00', '{"cached":null,"ignore_cache":false}'), +(49232, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:40.124+00', '{"cached":null,"ignore_cache":false}'), +(49233, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:40.268+00', '{"cached":null,"ignore_cache":false}'), +(49234, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:42.29+00', '{"cached":null,"ignore_cache":false}'), +(49235, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 09:49:42.305+00', '{"cached":null,"ignore_cache":false}'), +(49236, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:24.688+00', '{"cached":null,"ignore_cache":false}'), +(49237, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:24.735+00', '{"cached":null,"ignore_cache":false}'), +(49238, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:24.826+00', '{"cached":null,"ignore_cache":false}'), +(49239, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:24.886+00', '{"cached":null,"ignore_cache":false}'), +(49240, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:24.905+00', '{"cached":null,"ignore_cache":false}'), +(49241, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:24.94+00', '{"cached":null,"ignore_cache":false}'), +(49242, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 09:55:58.476+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49243, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:00.621+00', '{"cached":null,"ignore_cache":false}'), +(49244, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:01.005+00', '{"cached":null,"ignore_cache":false}'), +(49245, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:01.068+00', '{"cached":null,"ignore_cache":false}'), +(49246, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:01.372+00', '{"cached":null,"ignore_cache":false}'), +(49247, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:01.473+00', '{"cached":null,"ignore_cache":false}'), +(49248, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:01.803+00', '{"cached":null,"ignore_cache":false}'), +(49249, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:01.88+00', '{"cached":null,"ignore_cache":false}'), +(49250, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:04.586+00', '{"cached":null,"ignore_cache":false}'), +(49251, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 09:56:04.588+00', '{"cached":null,"ignore_cache":false}'), +(49252, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:18.712+00', '{"cached":null,"ignore_cache":false}'), +(49253, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:18.725+00', '{"cached":null,"ignore_cache":false}'), +(49254, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:18.827+00', '{"cached":null,"ignore_cache":false}'), +(49255, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:18.832+00', '{"cached":null,"ignore_cache":false}'), +(49256, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:18.848+00', '{"cached":null,"ignore_cache":false}'), +(49257, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:18.928+00', '{"cached":null,"ignore_cache":false}'), +(49258, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:48.636+00', '{"cached":null,"ignore_cache":false}'), +(49259, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:49.935+00', '{"cached":null,"ignore_cache":false}'), +(49260, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:50.369+00', '{"cached":null,"ignore_cache":false}'), +(49261, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:50.497+00', '{"cached":null,"ignore_cache":false}'), +(49262, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:50.535+00', '{"cached":null,"ignore_cache":false}'), +(49263, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:50.63+00', '{"cached":null,"ignore_cache":false}'), +(49264, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:50.717+00', '{"cached":null,"ignore_cache":false}'), +(49265, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:50.813+00', '{"cached":null,"ignore_cache":false}'), +(49266, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:53.022+00', '{"cached":null,"ignore_cache":false}'), +(49267, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:01:53.032+00', '{"cached":null,"ignore_cache":false}'), +(49268, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:50.057+00', '{"cached":null,"ignore_cache":false}'), +(49269, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:50.11+00', '{"cached":null,"ignore_cache":false}'), +(49270, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:50.116+00', '{"cached":null,"ignore_cache":false}'), +(49271, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:50.127+00', '{"cached":null,"ignore_cache":false}'), +(49272, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:50.138+00', '{"cached":null,"ignore_cache":false}'), +(49273, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:06:50.151+00', '{"cached":null,"ignore_cache":false}'), +(49274, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:24.469+00', '{"cached":null,"ignore_cache":false}'), +(49275, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:24.544+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49276, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:24.953+00', '{"cached":null,"ignore_cache":false}'), +(49277, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:25.266+00', '{"cached":null,"ignore_cache":false}'), +(49278, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:25.346+00', '{"cached":null,"ignore_cache":false}'), +(49279, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:25.427+00', '{"cached":null,"ignore_cache":false}'), +(49280, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:25.645+00', '{"cached":null,"ignore_cache":false}'), +(49281, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:26.471+00', '{"cached":null,"ignore_cache":false}'), +(49282, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:27.548+00', '{"cached":null,"ignore_cache":false}'), +(49283, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:07:27.632+00', '{"cached":null,"ignore_cache":false}'), +(49284, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:16.927+00', '{"cached":null,"ignore_cache":false}'), +(49285, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:16.962+00', '{"cached":null,"ignore_cache":false}'), +(49286, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:16.97+00', '{"cached":null,"ignore_cache":false}'), +(49287, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:16.977+00', '{"cached":null,"ignore_cache":false}'), +(49288, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:16.984+00', '{"cached":null,"ignore_cache":false}'), +(49289, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:13:16.988+00', '{"cached":null,"ignore_cache":false}'), +(49290, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:56.615+00', '{"cached":null,"ignore_cache":false}'), +(49291, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:17:56.761+00', '{"cached":null,"ignore_cache":false}'), +(49292, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:09.113+00', '{"cached":null,"ignore_cache":false}'), +(49293, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:09.411+00', '{"cached":null,"ignore_cache":false}'), +(49294, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:10.565+00', '{"cached":null,"ignore_cache":false}'), +(49295, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:10.91+00', '{"cached":null,"ignore_cache":false}'), +(49296, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:11.237+00', '{"cached":null,"ignore_cache":false}'), +(49297, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:11.348+00', '{"cached":null,"ignore_cache":false}'), +(49298, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:11.625+00', '{"cached":null,"ignore_cache":false}'), +(49299, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:11.681+00', '{"cached":null,"ignore_cache":false}'), +(49300, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:11.764+00', '{"cached":null,"ignore_cache":false}'), +(49301, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:11.84+00', '{"cached":null,"ignore_cache":false}'), +(49302, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:11.96+00', '{"cached":null,"ignore_cache":false}'), +(49303, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:12.202+00', '{"cached":null,"ignore_cache":false}'), +(49304, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:12.233+00', '{"cached":null,"ignore_cache":false}'), +(49305, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:12.417+00', '{"cached":null,"ignore_cache":false}'), +(49306, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:12.823+00', '{"cached":null,"ignore_cache":false}'), +(49307, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.018+00', '{"cached":null,"ignore_cache":false}'), +(49308, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.112+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49309, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.279+00', '{"cached":null,"ignore_cache":false}'), +(49310, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.314+00', '{"cached":null,"ignore_cache":false}'), +(49311, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.414+00', '{"cached":null,"ignore_cache":false}'), +(49312, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.449+00', '{"cached":null,"ignore_cache":false}'), +(49313, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.471+00', '{"cached":null,"ignore_cache":false}'), +(49314, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.487+00', '{"cached":null,"ignore_cache":false}'), +(49315, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.504+00', '{"cached":null,"ignore_cache":false}'), +(49316, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.528+00', '{"cached":null,"ignore_cache":false}'), +(49317, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:13.55+00', '{"cached":null,"ignore_cache":false}'), +(49318, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:15.443+00', '{"cached":null,"ignore_cache":false}'), +(49319, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:15.717+00', '{"cached":null,"ignore_cache":false}'), +(49320, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:15.889+00', '{"cached":null,"ignore_cache":false}'), +(49321, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:18:16.03+00', '{"cached":null,"ignore_cache":false}'), +(49322, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:04.212+00', '{"cached":null,"ignore_cache":false}'), +(49323, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:06.473+00', '{"cached":null,"ignore_cache":false}'), +(49324, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:07.734+00', '{"cached":null,"ignore_cache":false}'), +(49325, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:07.844+00', '{"cached":null,"ignore_cache":false}'), +(49326, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:07.871+00', '{"cached":null,"ignore_cache":false}'), +(49327, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:07.982+00', '{"cached":null,"ignore_cache":false}'), +(49328, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.031+00', '{"cached":null,"ignore_cache":false}'), +(49329, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.25+00', '{"cached":null,"ignore_cache":false}'), +(49330, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.389+00', '{"cached":null,"ignore_cache":false}'), +(49331, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.407+00', '{"cached":null,"ignore_cache":false}'), +(49332, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.41+00', '{"cached":null,"ignore_cache":false}'), +(49333, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.441+00', '{"cached":null,"ignore_cache":false}'), +(49334, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.527+00', '{"cached":null,"ignore_cache":false}'), +(49335, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:08.565+00', '{"cached":null,"ignore_cache":false}'), +(49336, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:12.988+00', '{"cached":null,"ignore_cache":false}'), +(49337, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:23:13.04+00', '{"cached":null,"ignore_cache":false}'), +(49338, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:50.519+00', '{"cached":null,"ignore_cache":false}'), +(49339, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:51.851+00', '{"cached":null,"ignore_cache":false}'), +(49340, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:52.115+00', '{"cached":null,"ignore_cache":false}'), +(49341, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:52.404+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49342, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:52.431+00', '{"cached":null,"ignore_cache":false}'), +(49343, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:52.478+00', '{"cached":null,"ignore_cache":false}'), +(49344, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:52.508+00', '{"cached":null,"ignore_cache":false}'), +(49345, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:52.586+00', '{"cached":null,"ignore_cache":false}'), +(49346, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:53.827+00', '{"cached":null,"ignore_cache":false}'), +(49347, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:53.856+00', '{"cached":null,"ignore_cache":false}'), +(49348, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:55.087+00', '{"cached":null,"ignore_cache":false}'), +(49349, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:55.238+00', '{"cached":null,"ignore_cache":false}'), +(49350, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:55.305+00', '{"cached":null,"ignore_cache":false}'), +(49351, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:55.329+00', '{"cached":null,"ignore_cache":false}'), +(49352, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:55.332+00', '{"cached":null,"ignore_cache":false}'), +(49353, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:33:55.337+00', '{"cached":null,"ignore_cache":false}'), +(49354, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:47.624+00', '{"cached":null,"ignore_cache":false}'), +(49355, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:48.595+00', '{"cached":null,"ignore_cache":false}'), +(49356, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:48.732+00', '{"cached":null,"ignore_cache":false}'), +(49357, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:48.812+00', '{"cached":null,"ignore_cache":false}'), +(49358, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:48.84+00', '{"cached":null,"ignore_cache":false}'), +(49359, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:48.891+00', '{"cached":null,"ignore_cache":false}'), +(49360, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:48.92+00', '{"cached":null,"ignore_cache":false}'), +(49361, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:48.931+00', '{"cached":null,"ignore_cache":false}'), +(49362, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:49.686+00', '{"cached":null,"ignore_cache":false}'), +(49363, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:38:49.842+00', '{"cached":null,"ignore_cache":false}'), +(49364, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:39:04.968+00', '{"cached":null,"ignore_cache":false}'), +(49365, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:39:05.021+00', '{"cached":null,"ignore_cache":false}'), +(49366, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:39:05.217+00', '{"cached":null,"ignore_cache":false}'), +(49367, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:39:05.231+00', '{"cached":null,"ignore_cache":false}'), +(49368, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:39:05.356+00', '{"cached":null,"ignore_cache":false}'), +(49369, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:39:05.432+00', '{"cached":null,"ignore_cache":false}'), +(49370, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:52.908+00', '{"cached":null,"ignore_cache":false}'), +(49371, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:54.008+00', '{"cached":null,"ignore_cache":false}'), +(49372, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:54.072+00', '{"cached":null,"ignore_cache":false}'), +(49373, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:54.153+00', '{"cached":null,"ignore_cache":false}'), +(49374, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:54.185+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49375, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:54.189+00', '{"cached":null,"ignore_cache":false}'), +(49376, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:54.317+00', '{"cached":null,"ignore_cache":false}'), +(49377, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:54.325+00', '{"cached":null,"ignore_cache":false}'), +(49378, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:55.465+00', '{"cached":null,"ignore_cache":false}'), +(49379, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:55.482+00', '{"cached":null,"ignore_cache":false}'), +(49380, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:59.215+00', '{"cached":null,"ignore_cache":false}'), +(49381, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:59.535+00', '{"cached":null,"ignore_cache":false}'), +(49382, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:59.562+00', '{"cached":null,"ignore_cache":false}'), +(49383, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:59.609+00', '{"cached":null,"ignore_cache":false}'), +(49384, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:59.616+00', '{"cached":null,"ignore_cache":false}'), +(49385, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:43:59.67+00', '{"cached":null,"ignore_cache":false}'), +(49386, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:51.627+00', '{"cached":null,"ignore_cache":false}'), +(49387, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:52.371+00', '{"cached":null,"ignore_cache":false}'), +(49388, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:52.404+00', '{"cached":null,"ignore_cache":false}'), +(49389, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:52.547+00', '{"cached":null,"ignore_cache":false}'), +(49390, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:52.617+00', '{"cached":null,"ignore_cache":false}'), +(49391, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:52.663+00', '{"cached":null,"ignore_cache":false}'), +(49392, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:52.676+00', '{"cached":null,"ignore_cache":false}'), +(49393, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:52.699+00', '{"cached":null,"ignore_cache":false}'), +(49394, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:53.616+00', '{"cached":null,"ignore_cache":false}'), +(49395, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:48:53.648+00', '{"cached":null,"ignore_cache":false}'), +(49396, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:05.644+00', '{"cached":null,"ignore_cache":false}'), +(49397, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:05.788+00', '{"cached":null,"ignore_cache":false}'), +(49398, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:05.861+00', '{"cached":null,"ignore_cache":false}'), +(49399, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:05.913+00', '{"cached":null,"ignore_cache":false}'), +(49400, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:05.936+00', '{"cached":null,"ignore_cache":false}'), +(49401, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:49:06.108+00', '{"cached":null,"ignore_cache":false}'), +(49402, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:56.541+00', '{"cached":null,"ignore_cache":false}'), +(49403, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:57.437+00', '{"cached":null,"ignore_cache":false}'), +(49404, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:57.552+00', '{"cached":null,"ignore_cache":false}'), +(49405, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:57.707+00', '{"cached":null,"ignore_cache":false}'), +(49406, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:57.854+00', '{"cached":null,"ignore_cache":false}'), +(49407, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:57.869+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49408, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:57.899+00', '{"cached":null,"ignore_cache":false}'), +(49409, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:58.081+00', '{"cached":null,"ignore_cache":false}'), +(49410, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:59.053+00', '{"cached":null,"ignore_cache":false}'), +(49411, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 10:53:59.089+00', '{"cached":null,"ignore_cache":false}'), +(49412, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.76+00', '{"cached":null,"ignore_cache":false}'), +(49413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.786+00', '{"cached":null,"ignore_cache":false}'), +(49414, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.897+00', '{"cached":null,"ignore_cache":false}'), +(49415, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:07.982+00', '{"cached":null,"ignore_cache":false}'), +(49416, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:08.017+00', '{"cached":null,"ignore_cache":false}'), +(49417, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 10:54:08.018+00', '{"cached":null,"ignore_cache":false}'), +(49418, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:31.118+00', '{"cached":null,"ignore_cache":false}'), +(49419, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:32.827+00', '{"cached":null,"ignore_cache":false}'), +(49420, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:32.906+00', '{"cached":null,"ignore_cache":false}'), +(49421, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:33.078+00', '{"cached":null,"ignore_cache":false}'), +(49422, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:33.603+00', '{"cached":null,"ignore_cache":false}'), +(49423, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:33.626+00', '{"cached":null,"ignore_cache":false}'), +(49424, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:33.693+00', '{"cached":null,"ignore_cache":false}'), +(49425, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:33.719+00', '{"cached":null,"ignore_cache":false}'), +(49426, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:36.685+00', '{"cached":null,"ignore_cache":false}'), +(49427, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:36.783+00', '{"cached":null,"ignore_cache":false}'), +(49428, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.689+00', '{"cached":null,"ignore_cache":false}'), +(49429, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.844+00', '{"cached":null,"ignore_cache":false}'), +(49430, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.865+00', '{"cached":null,"ignore_cache":false}'), +(49431, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.869+00', '{"cached":null,"ignore_cache":false}'), +(49432, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.932+00', '{"cached":null,"ignore_cache":false}'), +(49433, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 11:00:44.937+00', '{"cached":null,"ignore_cache":false}'), +(49434, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:34.119+00', '{"cached":null,"ignore_cache":false}'), +(49435, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:36.116+00', '{"cached":null,"ignore_cache":false}'), +(49436, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:36.237+00', '{"cached":null,"ignore_cache":false}'), +(49437, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:36.587+00', '{"cached":null,"ignore_cache":false}'), +(49438, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:36.876+00', '{"cached":null,"ignore_cache":false}'), +(49439, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:37.347+00', '{"cached":null,"ignore_cache":false}'), +(49440, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:37.446+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49441, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:37.449+00', '{"cached":null,"ignore_cache":false}'), +(49442, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:38.88+00', '{"cached":null,"ignore_cache":false}'), +(49443, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:38.917+00', '{"cached":null,"ignore_cache":false}'), +(49444, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:45.007+00', '{"cached":null,"ignore_cache":false}'), +(49445, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:45.114+00', '{"cached":null,"ignore_cache":false}'), +(49446, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:45.159+00', '{"cached":null,"ignore_cache":false}'), +(49447, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:45.268+00', '{"cached":null,"ignore_cache":false}'), +(49448, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:45.324+00', '{"cached":null,"ignore_cache":false}'), +(49449, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 11:05:45.345+00', '{"cached":null,"ignore_cache":false}'), +(49450, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:32.695+00', '{"cached":null,"ignore_cache":false}'), +(49451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:33.914+00', '{"cached":null,"ignore_cache":false}'), +(49452, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:34.055+00', '{"cached":null,"ignore_cache":false}'), +(49453, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:34.431+00', '{"cached":null,"ignore_cache":false}'), +(49454, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:34.526+00', '{"cached":null,"ignore_cache":false}'), +(49455, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:34.61+00', '{"cached":null,"ignore_cache":false}'), +(49456, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:34.662+00', '{"cached":null,"ignore_cache":false}'), +(49457, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:34.753+00', '{"cached":null,"ignore_cache":false}'), +(49458, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:36.133+00', '{"cached":null,"ignore_cache":false}'), +(49459, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:36.183+00', '{"cached":null,"ignore_cache":false}'), +(49460, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.642+00', '{"cached":null,"ignore_cache":false}'), +(49461, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.726+00', '{"cached":null,"ignore_cache":false}'), +(49462, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.751+00', '{"cached":null,"ignore_cache":false}'), +(49463, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.778+00', '{"cached":null,"ignore_cache":false}'), +(49464, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.8+00', '{"cached":null,"ignore_cache":false}'), +(49465, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 11:10:48.877+00', '{"cached":null,"ignore_cache":false}'), +(49466, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:33.897+00', '{"cached":null,"ignore_cache":false}'), +(49467, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:35.6+00', '{"cached":null,"ignore_cache":false}'), +(49468, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:35.787+00', '{"cached":null,"ignore_cache":false}'), +(49469, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:36.066+00', '{"cached":null,"ignore_cache":false}'), +(49470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:36.14+00', '{"cached":null,"ignore_cache":false}'), +(49471, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:36.176+00', '{"cached":null,"ignore_cache":false}'), +(49472, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:36.23+00', '{"cached":null,"ignore_cache":false}'), +(49473, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:36.285+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49474, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:37.669+00', '{"cached":null,"ignore_cache":false}'), +(49475, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 11:15:37.716+00', '{"cached":null,"ignore_cache":false}'), +(49476, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 11:16:01.762+00', '{"cached":null,"ignore_cache":false}'), +(49477, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 11:16:01.8+00', '{"cached":null,"ignore_cache":false}'), +(49478, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 11:16:01.923+00', '{"cached":null,"ignore_cache":false}'), +(49479, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 11:16:01.993+00', '{"cached":null,"ignore_cache":false}'), +(49480, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 11:16:02.094+00', '{"cached":null,"ignore_cache":false}'), +(49481, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 11:16:02.1+00', '{"cached":null,"ignore_cache":false}'), +(49482, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:36.853+00', '{"cached":null,"ignore_cache":false}'), +(49483, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:36.878+00', '{"cached":null,"ignore_cache":false}'), +(49484, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:39.03+00', '{"cached":null,"ignore_cache":false}'), +(49485, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:39.617+00', '{"cached":null,"ignore_cache":false}'), +(49486, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:39.63+00', '{"cached":null,"ignore_cache":false}'), +(49487, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:39.631+00', '{"cached":null,"ignore_cache":false}'), +(49488, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:39.656+00', '{"cached":null,"ignore_cache":false}'), +(49489, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:39.674+00', '{"cached":null,"ignore_cache":false}'), +(49490, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:41.422+00', '{"cached":null,"ignore_cache":false}'), +(49491, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:41.519+00', '{"cached":null,"ignore_cache":false}'), +(49492, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:41.591+00', '{"cached":null,"ignore_cache":false}'), +(49493, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:41.914+00', '{"cached":null,"ignore_cache":false}'), +(49494, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:41.992+00', '{"cached":null,"ignore_cache":false}'), +(49495, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:42.298+00', '{"cached":null,"ignore_cache":false}'), +(49496, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.082+00', '{"cached":null,"ignore_cache":false}'), +(49497, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.122+00', '{"cached":null,"ignore_cache":false}'), +(49498, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.806+00', '{"cached":null,"ignore_cache":false}'), +(49499, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.851+00', '{"cached":null,"ignore_cache":false}'), +(49500, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.881+00', '{"cached":null,"ignore_cache":false}'), +(49501, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.882+00', '{"cached":null,"ignore_cache":false}'), +(49502, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.887+00', '{"cached":null,"ignore_cache":false}'), +(49503, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.888+00', '{"cached":null,"ignore_cache":false}'), +(49504, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.889+00', '{"cached":null,"ignore_cache":false}'), +(49505, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.89+00', '{"cached":null,"ignore_cache":false}'), +(49506, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.894+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49507, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.895+00', '{"cached":null,"ignore_cache":false}'), +(49508, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.899+00', '{"cached":null,"ignore_cache":false}'), +(49509, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:43.901+00', '{"cached":null,"ignore_cache":false}'), +(49510, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:46.087+00', '{"cached":null,"ignore_cache":false}'), +(49511, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:46.157+00', '{"cached":null,"ignore_cache":false}'), +(49512, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:46.578+00', '{"cached":null,"ignore_cache":false}'), +(49513, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 12:45:46.693+00', '{"cached":null,"ignore_cache":false}'), +(49514, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:35.31+00', '{"cached":null,"ignore_cache":false}'), +(49515, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:36.589+00', '{"cached":null,"ignore_cache":false}'), +(49516, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:36.603+00', '{"cached":null,"ignore_cache":false}'), +(49517, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:36.633+00', '{"cached":null,"ignore_cache":false}'), +(49518, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.076+00', '{"cached":null,"ignore_cache":false}'), +(49519, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.127+00', '{"cached":null,"ignore_cache":false}'), +(49520, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.236+00', '{"cached":null,"ignore_cache":false}'), +(49521, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.381+00', '{"cached":null,"ignore_cache":false}'), +(49522, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.424+00', '{"cached":null,"ignore_cache":false}'), +(49523, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.454+00', '{"cached":null,"ignore_cache":false}'), +(49524, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.464+00', '{"cached":null,"ignore_cache":false}'), +(49525, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.479+00', '{"cached":null,"ignore_cache":false}'), +(49526, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.514+00', '{"cached":null,"ignore_cache":false}'), +(49527, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:38.556+00', '{"cached":null,"ignore_cache":false}'), +(49528, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:39.845+00', '{"cached":null,"ignore_cache":false}'), +(49529, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 12:50:39.905+00', '{"cached":null,"ignore_cache":false}'), +(49530, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:36.957+00', '{"cached":null,"ignore_cache":false}'), +(49531, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:37.855+00', '{"cached":null,"ignore_cache":false}'), +(49532, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:37.915+00', '{"cached":null,"ignore_cache":false}'), +(49533, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:37.921+00', '{"cached":null,"ignore_cache":false}'), +(49534, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.315+00', '{"cached":null,"ignore_cache":false}'), +(49535, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.536+00', '{"cached":null,"ignore_cache":false}'), +(49536, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.577+00', '{"cached":null,"ignore_cache":false}'), +(49537, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.633+00', '{"cached":null,"ignore_cache":false}'), +(49538, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.636+00', '{"cached":null,"ignore_cache":false}'), +(49539, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.645+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49540, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.646+00', '{"cached":null,"ignore_cache":false}'), +(49541, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.67+00', '{"cached":null,"ignore_cache":false}'), +(49542, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.714+00', '{"cached":null,"ignore_cache":false}'), +(49543, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:38.752+00', '{"cached":null,"ignore_cache":false}'), +(49544, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:39.696+00', '{"cached":null,"ignore_cache":false}'), +(49545, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 12:55:39.703+00', '{"cached":null,"ignore_cache":false}'), +(49546, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:38.225+00', '{"cached":null,"ignore_cache":false}'), +(49547, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:39.758+00', '{"cached":null,"ignore_cache":false}'), +(49548, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:39.806+00', '{"cached":null,"ignore_cache":false}'), +(49549, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:39.816+00', '{"cached":null,"ignore_cache":false}'), +(49550, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:40.525+00', '{"cached":null,"ignore_cache":false}'), +(49551, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:40.925+00', '{"cached":null,"ignore_cache":false}'), +(49552, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:40.951+00', '{"cached":null,"ignore_cache":false}'), +(49553, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:41.021+00', '{"cached":null,"ignore_cache":false}'), +(49554, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:41.041+00', '{"cached":null,"ignore_cache":false}'), +(49555, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:41.067+00', '{"cached":null,"ignore_cache":false}'), +(49556, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:41.078+00', '{"cached":null,"ignore_cache":false}'), +(49557, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:41.128+00', '{"cached":null,"ignore_cache":false}'), +(49558, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:41.199+00', '{"cached":null,"ignore_cache":false}'), +(49559, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:41.261+00', '{"cached":null,"ignore_cache":false}'), +(49560, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:42.591+00', '{"cached":null,"ignore_cache":false}'), +(49561, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:00:42.651+00', '{"cached":null,"ignore_cache":false}'), +(49562, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:36.8+00', '{"cached":null,"ignore_cache":false}'), +(49563, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:37.504+00', '{"cached":null,"ignore_cache":false}'), +(49564, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:37.55+00', '{"cached":null,"ignore_cache":false}'), +(49565, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:37.557+00', '{"cached":null,"ignore_cache":false}'), +(49566, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.155+00', '{"cached":null,"ignore_cache":false}'), +(49567, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.625+00', '{"cached":null,"ignore_cache":false}'), +(49568, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.731+00', '{"cached":null,"ignore_cache":false}'), +(49569, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.749+00', '{"cached":null,"ignore_cache":false}'), +(49570, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.821+00', '{"cached":null,"ignore_cache":false}'), +(49571, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.911+00', '{"cached":null,"ignore_cache":false}'), +(49572, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.922+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49573, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.924+00', '{"cached":null,"ignore_cache":false}'), +(49574, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:38.956+00', '{"cached":null,"ignore_cache":false}'), +(49575, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:39.056+00', '{"cached":null,"ignore_cache":false}'), +(49576, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:40.696+00', '{"cached":null,"ignore_cache":false}'), +(49577, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:05:40.729+00', '{"cached":null,"ignore_cache":false}'), +(49578, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:38.77+00', '{"cached":null,"ignore_cache":false}'), +(49579, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:39.947+00', '{"cached":null,"ignore_cache":false}'), +(49580, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:39.98+00', '{"cached":null,"ignore_cache":false}'), +(49581, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:40.036+00', '{"cached":null,"ignore_cache":false}'), +(49582, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:40.907+00', '{"cached":null,"ignore_cache":false}'), +(49583, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.337+00', '{"cached":null,"ignore_cache":false}'), +(49584, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.473+00', '{"cached":null,"ignore_cache":false}'), +(49585, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.494+00', '{"cached":null,"ignore_cache":false}'), +(49586, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.566+00', '{"cached":null,"ignore_cache":false}'), +(49587, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.584+00', '{"cached":null,"ignore_cache":false}'), +(49588, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.601+00', '{"cached":null,"ignore_cache":false}'), +(49589, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.625+00', '{"cached":null,"ignore_cache":false}'), +(49590, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.635+00', '{"cached":null,"ignore_cache":false}'), +(49591, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:41.649+00', '{"cached":null,"ignore_cache":false}'), +(49592, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:42.857+00', '{"cached":null,"ignore_cache":false}'), +(49593, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:10:42.906+00', '{"cached":null,"ignore_cache":false}'), +(49594, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:51.157+00', '{"cached":null,"ignore_cache":false}'), +(49595, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:51.203+00', '{"cached":null,"ignore_cache":false}'), +(49596, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:52.509+00', '{"cached":null,"ignore_cache":false}'), +(49597, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:52.868+00', '{"cached":null,"ignore_cache":false}'), +(49598, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:52.969+00', '{"cached":null,"ignore_cache":false}'), +(49599, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:53.017+00', '{"cached":null,"ignore_cache":false}'), +(49600, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:53.113+00', '{"cached":null,"ignore_cache":false}'), +(49601, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:53.289+00', '{"cached":null,"ignore_cache":false}'), +(49602, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:57.343+00', '{"cached":null,"ignore_cache":false}'), +(49603, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:57.45+00', '{"cached":null,"ignore_cache":false}'), +(49604, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.197+00', '{"cached":null,"ignore_cache":false}'), +(49605, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.198+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49606, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.266+00', '{"cached":null,"ignore_cache":false}'), +(49607, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.378+00', '{"cached":null,"ignore_cache":false}'), +(49608, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.517+00', '{"cached":null,"ignore_cache":false}'), +(49609, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.524+00', '{"cached":null,"ignore_cache":false}'), +(49610, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.525+00', '{"cached":null,"ignore_cache":false}'), +(49611, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.526+00', '{"cached":null,"ignore_cache":false}'), +(49612, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.527+00', '{"cached":null,"ignore_cache":false}'), +(49613, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.528+00', '{"cached":null,"ignore_cache":false}'), +(49614, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.569+00', '{"cached":null,"ignore_cache":false}'), +(49615, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.574+00', '{"cached":null,"ignore_cache":false}'), +(49616, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.586+00', '{"cached":null,"ignore_cache":false}'), +(49617, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.62+00', '{"cached":null,"ignore_cache":false}'), +(49618, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.655+00', '{"cached":null,"ignore_cache":false}'), +(49619, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.77+00', '{"cached":null,"ignore_cache":false}'), +(49620, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:58.878+00', '{"cached":null,"ignore_cache":false}'), +(49621, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:17:59.005+00', '{"cached":null,"ignore_cache":false}'), +(49622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:18:00.787+00', '{"cached":null,"ignore_cache":false}'), +(49623, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:18:00.948+00', '{"cached":null,"ignore_cache":false}'), +(49624, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:18:01.257+00', '{"cached":null,"ignore_cache":false}'), +(49625, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:18:01.259+00', '{"cached":null,"ignore_cache":false}'), +(49626, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:51.019+00', '{"cached":null,"ignore_cache":false}'), +(49627, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:52.166+00', '{"cached":null,"ignore_cache":false}'), +(49628, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:52.185+00', '{"cached":null,"ignore_cache":false}'), +(49629, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:52.186+00', '{"cached":null,"ignore_cache":false}'), +(49630, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:52.881+00', '{"cached":null,"ignore_cache":false}'), +(49631, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.22+00', '{"cached":null,"ignore_cache":false}'), +(49632, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.266+00', '{"cached":null,"ignore_cache":false}'), +(49633, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.307+00', '{"cached":null,"ignore_cache":false}'), +(49634, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.309+00', '{"cached":null,"ignore_cache":false}'), +(49635, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.427+00', '{"cached":null,"ignore_cache":false}'), +(49636, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.459+00', '{"cached":null,"ignore_cache":false}'), +(49637, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.532+00', '{"cached":null,"ignore_cache":false}'), +(49638, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.679+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49639, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:53.728+00', '{"cached":null,"ignore_cache":false}'), +(49640, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:55.864+00', '{"cached":null,"ignore_cache":false}'), +(49641, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:22:55.866+00', '{"cached":null,"ignore_cache":false}'), +(49642, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:49.902+00', '{"cached":null,"ignore_cache":false}'), +(49643, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:50.888+00', '{"cached":null,"ignore_cache":false}'), +(49644, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:50.918+00', '{"cached":null,"ignore_cache":false}'), +(49645, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:50.928+00', '{"cached":null,"ignore_cache":false}'), +(49646, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:51.39+00', '{"cached":null,"ignore_cache":false}'), +(49647, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:51.698+00', '{"cached":null,"ignore_cache":false}'), +(49648, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.021+00', '{"cached":null,"ignore_cache":false}'), +(49649, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.292+00', '{"cached":null,"ignore_cache":false}'), +(49650, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.347+00', '{"cached":null,"ignore_cache":false}'), +(49651, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.356+00', '{"cached":null,"ignore_cache":false}'), +(49652, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.357+00', '{"cached":null,"ignore_cache":false}'), +(49653, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.36+00', '{"cached":null,"ignore_cache":false}'), +(49654, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.372+00', '{"cached":null,"ignore_cache":false}'), +(49655, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:52.382+00', '{"cached":null,"ignore_cache":false}'), +(49656, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:54.837+00', '{"cached":null,"ignore_cache":false}'), +(49657, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:27:54.939+00', '{"cached":null,"ignore_cache":false}'), +(49658, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:51.316+00', '{"cached":null,"ignore_cache":false}'), +(49659, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:51.761+00', '{"cached":null,"ignore_cache":false}'), +(49660, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:51.78+00', '{"cached":null,"ignore_cache":false}'), +(49661, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:51.782+00', '{"cached":null,"ignore_cache":false}'), +(49662, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.316+00', '{"cached":null,"ignore_cache":false}'), +(49663, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.607+00', '{"cached":null,"ignore_cache":false}'), +(49664, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.646+00', '{"cached":null,"ignore_cache":false}'), +(49665, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.649+00', '{"cached":null,"ignore_cache":false}'), +(49666, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.651+00', '{"cached":null,"ignore_cache":false}'), +(49667, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.653+00', '{"cached":null,"ignore_cache":false}'), +(49668, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.656+00', '{"cached":null,"ignore_cache":false}'), +(49669, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.671+00', '{"cached":null,"ignore_cache":false}'), +(49670, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.677+00', '{"cached":null,"ignore_cache":false}'), +(49671, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:52.721+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49672, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:53.625+00', '{"cached":null,"ignore_cache":false}'), +(49673, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 13:32:53.694+00', '{"cached":null,"ignore_cache":false}'), +(49674, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:53.785+00', '{"cached":null,"ignore_cache":false}'), +(49675, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:53.873+00', '{"cached":null,"ignore_cache":false}'), +(49676, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:55.683+00', '{"cached":null,"ignore_cache":false}'), +(49677, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:55.718+00', '{"cached":null,"ignore_cache":false}'), +(49678, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:55.72+00', '{"cached":null,"ignore_cache":false}'), +(49679, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:55.885+00', '{"cached":null,"ignore_cache":false}'), +(49680, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:55.888+00', '{"cached":null,"ignore_cache":false}'), +(49681, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:58.019+00', '{"cached":null,"ignore_cache":false}'), +(49682, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:58.082+00', '{"cached":null,"ignore_cache":false}'), +(49683, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:58.228+00', '{"cached":null,"ignore_cache":false}'), +(49684, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:58.282+00', '{"cached":null,"ignore_cache":false}'), +(49685, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:58.602+00', '{"cached":null,"ignore_cache":false}'), +(49686, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:58.909+00', '{"cached":null,"ignore_cache":false}'), +(49687, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:58.983+00', '{"cached":null,"ignore_cache":false}'), +(49688, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.036+00', '{"cached":null,"ignore_cache":false}'), +(49689, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.111+00', '{"cached":null,"ignore_cache":false}'), +(49690, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.503+00', '{"cached":null,"ignore_cache":false}'), +(49691, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.664+00', '{"cached":null,"ignore_cache":false}'), +(49692, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.676+00', '{"cached":null,"ignore_cache":false}'), +(49693, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.677+00', '{"cached":null,"ignore_cache":false}'), +(49694, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.686+00', '{"cached":null,"ignore_cache":false}'), +(49695, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.693+00', '{"cached":null,"ignore_cache":false}'), +(49696, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.695+00', '{"cached":null,"ignore_cache":false}'), +(49697, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:25:59.715+00', '{"cached":null,"ignore_cache":false}'), +(49698, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:26:03.483+00', '{"cached":null,"ignore_cache":false}'), +(49699, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:26:03.558+00', '{"cached":null,"ignore_cache":false}'), +(49700, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:26:03.591+00', '{"cached":null,"ignore_cache":false}'), +(49701, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:26:03.646+00', '{"cached":null,"ignore_cache":false}'), +(49702, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:52.573+00', '{"cached":null,"ignore_cache":false}'), +(49703, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:53.403+00', '{"cached":null,"ignore_cache":false}'), +(49704, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:53.421+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49705, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:53.425+00', '{"cached":null,"ignore_cache":false}'), +(49706, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.033+00', '{"cached":null,"ignore_cache":false}'), +(49707, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.214+00', '{"cached":null,"ignore_cache":false}'), +(49708, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.239+00', '{"cached":null,"ignore_cache":false}'), +(49709, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.334+00', '{"cached":null,"ignore_cache":false}'), +(49710, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.335+00', '{"cached":null,"ignore_cache":false}'), +(49711, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.357+00', '{"cached":null,"ignore_cache":false}'), +(49712, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.404+00', '{"cached":null,"ignore_cache":false}'), +(49713, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.425+00', '{"cached":null,"ignore_cache":false}'), +(49714, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.441+00', '{"cached":null,"ignore_cache":false}'), +(49715, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:54.449+00', '{"cached":null,"ignore_cache":false}'), +(49716, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:55.082+00', '{"cached":null,"ignore_cache":false}'), +(49717, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:30:55.116+00', '{"cached":null,"ignore_cache":false}'), +(49718, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:45.299+00', '{"cached":null,"ignore_cache":false}'), +(49719, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:46.258+00', '{"cached":null,"ignore_cache":false}'), +(49720, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:46.269+00', '{"cached":null,"ignore_cache":false}'), +(49721, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:46.28+00', '{"cached":null,"ignore_cache":false}'), +(49722, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:46.31+00', '{"cached":null,"ignore_cache":false}'), +(49723, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:46.311+00', '{"cached":null,"ignore_cache":false}'), +(49724, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:46.319+00', '{"cached":null,"ignore_cache":false}'), +(49725, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:49.714+00', '{"cached":null,"ignore_cache":false}'), +(49726, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:49.828+00', '{"cached":null,"ignore_cache":false}'), +(49727, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.461+00', '{"cached":null,"ignore_cache":false}'), +(49728, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.462+00', '{"cached":null,"ignore_cache":false}'), +(49729, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.572+00', '{"cached":null,"ignore_cache":false}'), +(49730, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.605+00', '{"cached":null,"ignore_cache":false}'), +(49731, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.622+00', '{"cached":null,"ignore_cache":false}'), +(49732, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.723+00', '{"cached":null,"ignore_cache":false}'), +(49733, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.827+00', '{"cached":null,"ignore_cache":false}'), +(49734, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.837+00', '{"cached":null,"ignore_cache":false}'), +(49735, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.915+00', '{"cached":null,"ignore_cache":false}'), +(49736, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.934+00', '{"cached":null,"ignore_cache":false}'), +(49737, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.961+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49738, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.968+00', '{"cached":null,"ignore_cache":false}'), +(49739, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.981+00', '{"cached":null,"ignore_cache":false}'), +(49740, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.987+00', '{"cached":null,"ignore_cache":false}'), +(49741, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:50.994+00', '{"cached":null,"ignore_cache":false}'), +(49742, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:51.055+00', '{"cached":null,"ignore_cache":false}'), +(49743, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:51.061+00', '{"cached":null,"ignore_cache":false}'), +(49744, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:51.067+00', '{"cached":null,"ignore_cache":false}'), +(49745, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:53.289+00', '{"cached":null,"ignore_cache":false}'), +(49746, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:53.343+00', '{"cached":null,"ignore_cache":false}'), +(49747, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:53.592+00', '{"cached":null,"ignore_cache":false}'), +(49748, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:32:53.669+00', '{"cached":null,"ignore_cache":false}'), +(49749, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:32.221+00', '{"cached":null,"ignore_cache":false}'), +(49750, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:32.244+00', '{"cached":null,"ignore_cache":false}'), +(49751, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:33.48+00', '{"cached":null,"ignore_cache":false}'), +(49752, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:33.508+00', '{"cached":null,"ignore_cache":false}'), +(49753, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:34.268+00', '{"cached":null,"ignore_cache":false}'), +(49754, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:34.475+00', '{"cached":null,"ignore_cache":false}'), +(49755, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:34.717+00', '{"cached":null,"ignore_cache":false}'), +(49756, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:34.848+00', '{"cached":null,"ignore_cache":false}'), +(49757, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:34.87+00', '{"cached":null,"ignore_cache":false}'), +(49758, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:34.919+00', '{"cached":null,"ignore_cache":false}'), +(49759, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:34.983+00', '{"cached":null,"ignore_cache":false}'), +(49760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:35.084+00', '{"cached":null,"ignore_cache":false}'), +(49761, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:35.2+00', '{"cached":null,"ignore_cache":false}'), +(49762, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:35.272+00', '{"cached":null,"ignore_cache":false}'), +(49763, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:35.302+00', '{"cached":null,"ignore_cache":false}'), +(49764, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:35.475+00', '{"cached":null,"ignore_cache":false}'), +(49765, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.519+00', '{"cached":null,"ignore_cache":false}'), +(49766, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.545+00', '{"cached":null,"ignore_cache":false}'), +(49767, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.551+00', '{"cached":null,"ignore_cache":false}'), +(49768, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.658+00', '{"cached":null,"ignore_cache":false}'), +(49769, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:36.997+00', '{"cached":null,"ignore_cache":false}'), +(49770, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.16+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49771, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.191+00', '{"cached":null,"ignore_cache":false}'), +(49772, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.214+00', '{"cached":null,"ignore_cache":false}'), +(49773, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.265+00', '{"cached":null,"ignore_cache":false}'), +(49774, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.466+00', '{"cached":null,"ignore_cache":false}'), +(49775, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.475+00', '{"cached":null,"ignore_cache":false}'), +(49776, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.502+00', '{"cached":null,"ignore_cache":false}'), +(49777, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.629+00', '{"cached":null,"ignore_cache":false}'), +(49778, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.633+00', '{"cached":null,"ignore_cache":false}'), +(49779, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:36:37.642+00', '{"cached":null,"ignore_cache":false}'), +(49780, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:18.063+00', '{"cached":null,"ignore_cache":false}'), +(49781, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:19.183+00', '{"cached":null,"ignore_cache":false}'), +(49782, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:19.345+00', '{"cached":null,"ignore_cache":false}'), +(49783, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:19.689+00', '{"cached":null,"ignore_cache":false}'), +(49784, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:19.909+00', '{"cached":null,"ignore_cache":false}'), +(49785, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:20.007+00', '{"cached":null,"ignore_cache":false}'), +(49786, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:20.134+00', '{"cached":null,"ignore_cache":false}'), +(49787, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:20.277+00', '{"cached":null,"ignore_cache":false}'), +(49788, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:21.685+00', '{"cached":null,"ignore_cache":false}'), +(49789, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:21.793+00', '{"cached":null,"ignore_cache":false}'), +(49790, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:31.266+00', '{"cached":null,"ignore_cache":false}'), +(49791, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:31.305+00', '{"cached":null,"ignore_cache":false}'), +(49792, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:31.523+00', '{"cached":null,"ignore_cache":false}'), +(49793, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:31.562+00', '{"cached":null,"ignore_cache":false}'), +(49794, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:31.613+00', '{"cached":null,"ignore_cache":false}'), +(49795, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:41:31.646+00', '{"cached":null,"ignore_cache":false}'), +(49796, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:19.661+00', '{"cached":null,"ignore_cache":false}'), +(49797, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:21.373+00', '{"cached":null,"ignore_cache":false}'), +(49798, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:22.108+00', '{"cached":null,"ignore_cache":false}'), +(49799, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:22.589+00', '{"cached":null,"ignore_cache":false}'), +(49800, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:22.727+00', '{"cached":null,"ignore_cache":false}'), +(49801, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:22.864+00', '{"cached":null,"ignore_cache":false}'), +(49802, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:22.933+00', '{"cached":null,"ignore_cache":false}'), +(49803, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:22.995+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49804, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:24.79+00', '{"cached":null,"ignore_cache":false}'), +(49805, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:25.006+00', '{"cached":null,"ignore_cache":false}'), +(49806, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:32.364+00', '{"cached":null,"ignore_cache":false}'), +(49807, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:32.366+00', '{"cached":null,"ignore_cache":false}'), +(49808, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:32.64+00', '{"cached":null,"ignore_cache":false}'), +(49809, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:32.688+00', '{"cached":null,"ignore_cache":false}'), +(49810, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:32.753+00', '{"cached":null,"ignore_cache":false}'), +(49811, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:46:32.864+00', '{"cached":null,"ignore_cache":false}'), +(49812, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:20.24+00', '{"cached":null,"ignore_cache":false}'), +(49813, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:20.791+00', '{"cached":null,"ignore_cache":false}'), +(49814, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:20.924+00', '{"cached":null,"ignore_cache":false}'), +(49815, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:21.254+00', '{"cached":null,"ignore_cache":false}'), +(49816, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:21.274+00', '{"cached":null,"ignore_cache":false}'), +(49817, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:21.298+00', '{"cached":null,"ignore_cache":false}'), +(49818, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:21.299+00', '{"cached":null,"ignore_cache":false}'), +(49819, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:21.338+00', '{"cached":null,"ignore_cache":false}'), +(49820, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:21.928+00', '{"cached":null,"ignore_cache":false}'), +(49821, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:21.962+00', '{"cached":null,"ignore_cache":false}'), +(49822, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:30.375+00', '{"cached":null,"ignore_cache":false}'), +(49823, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:30.507+00', '{"cached":null,"ignore_cache":false}'), +(49824, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:32.57+00', '{"cached":null,"ignore_cache":false}'), +(49825, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:32.614+00', '{"cached":null,"ignore_cache":false}'), +(49826, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:32.651+00', '{"cached":null,"ignore_cache":false}'), +(49827, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 14:51:32.804+00', '{"cached":null,"ignore_cache":false}'), +(49828, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:32.605+00', '{"cached":null,"ignore_cache":false}'), +(49829, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:32.672+00', '{"cached":null,"ignore_cache":false}'), +(49830, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:36.491+00', '{"cached":null,"ignore_cache":false}'), +(49831, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:36.725+00', '{"cached":null,"ignore_cache":false}'), +(49832, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:36.966+00', '{"cached":null,"ignore_cache":false}'), +(49833, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:37.093+00', '{"cached":null,"ignore_cache":false}'), +(49834, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:37.33+00', '{"cached":null,"ignore_cache":false}'), +(49835, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:37.497+00', '{"cached":null,"ignore_cache":false}'), +(49836, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:37.618+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49837, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:37.631+00', '{"cached":null,"ignore_cache":false}'), +(49838, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:37.654+00', '{"cached":null,"ignore_cache":false}'), +(49839, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:37.667+00', '{"cached":null,"ignore_cache":false}'), +(49840, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:38.759+00', '{"cached":null,"ignore_cache":false}'), +(49841, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:38.863+00', '{"cached":null,"ignore_cache":false}'), +(49842, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.079+00', '{"cached":null,"ignore_cache":false}'), +(49843, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.339+00', '{"cached":null,"ignore_cache":false}'), +(49844, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.538+00', '{"cached":null,"ignore_cache":false}'), +(49845, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.597+00', '{"cached":null,"ignore_cache":false}'), +(49846, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.609+00', '{"cached":null,"ignore_cache":false}'), +(49847, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.677+00', '{"cached":null,"ignore_cache":false}'), +(49848, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.687+00', '{"cached":null,"ignore_cache":false}'), +(49849, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.689+00', '{"cached":null,"ignore_cache":false}'), +(49850, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.697+00', '{"cached":null,"ignore_cache":false}'), +(49851, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.764+00', '{"cached":null,"ignore_cache":false}'), +(49852, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.849+00', '{"cached":null,"ignore_cache":false}'), +(49853, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.885+00', '{"cached":null,"ignore_cache":false}'), +(49854, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:40.908+00', '{"cached":null,"ignore_cache":false}'), +(49855, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:43.637+00', '{"cached":null,"ignore_cache":false}'), +(49856, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:43.919+00', '{"cached":null,"ignore_cache":false}'), +(49857, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:43.937+00', '{"cached":null,"ignore_cache":false}'), +(49858, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:10:43.953+00', '{"cached":null,"ignore_cache":false}'), +(49859, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:29.911+00', '{"cached":null,"ignore_cache":false}'), +(49860, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:31.962+00', '{"cached":null,"ignore_cache":false}'), +(49861, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:33.629+00', '{"cached":null,"ignore_cache":false}'), +(49862, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:33.894+00', '{"cached":null,"ignore_cache":false}'), +(49863, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:33.898+00', '{"cached":null,"ignore_cache":false}'), +(49864, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.073+00', '{"cached":null,"ignore_cache":false}'), +(49865, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.094+00', '{"cached":null,"ignore_cache":false}'), +(49866, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.237+00', '{"cached":null,"ignore_cache":false}'), +(49867, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.24+00', '{"cached":null,"ignore_cache":false}'), +(49868, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.241+00', '{"cached":null,"ignore_cache":false}'), +(49869, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.294+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49870, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.433+00', '{"cached":null,"ignore_cache":false}'), +(49871, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.554+00', '{"cached":null,"ignore_cache":false}'), +(49872, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:34.587+00', '{"cached":null,"ignore_cache":false}'), +(49873, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:37.241+00', '{"cached":null,"ignore_cache":false}'), +(49874, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:15:37.454+00', '{"cached":null,"ignore_cache":false}'), +(49875, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:57.26+00', '{"cached":null,"ignore_cache":false}'), +(49876, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:58.736+00', '{"cached":null,"ignore_cache":false}'), +(49877, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.192+00', '{"cached":null,"ignore_cache":false}'), +(49878, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.237+00', '{"cached":null,"ignore_cache":false}'), +(49879, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.342+00', '{"cached":null,"ignore_cache":false}'), +(49880, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.768+00', '{"cached":null,"ignore_cache":false}'), +(49881, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.795+00', '{"cached":null,"ignore_cache":false}'), +(49882, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.814+00', '{"cached":null,"ignore_cache":false}'), +(49883, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.837+00', '{"cached":null,"ignore_cache":false}'), +(49884, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.879+00', '{"cached":null,"ignore_cache":false}'), +(49885, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:20:59.982+00', '{"cached":null,"ignore_cache":false}'), +(49886, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:21:00.08+00', '{"cached":null,"ignore_cache":false}'), +(49887, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:21:00.148+00', '{"cached":null,"ignore_cache":false}'), +(49888, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:21:00.2+00', '{"cached":null,"ignore_cache":false}'), +(49889, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:21:02.611+00', '{"cached":null,"ignore_cache":false}'), +(49890, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:21:02.671+00', '{"cached":null,"ignore_cache":false}'), +(49891, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:19.974+00', '{"cached":null,"ignore_cache":false}'), +(49892, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:21.301+00', '{"cached":null,"ignore_cache":false}'), +(49893, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:23.785+00', '{"cached":null,"ignore_cache":false}'), +(49894, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:23.802+00', '{"cached":null,"ignore_cache":false}'), +(49895, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:23.85+00', '{"cached":null,"ignore_cache":false}'), +(49896, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:23.87+00', '{"cached":null,"ignore_cache":false}'), +(49897, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:23.882+00', '{"cached":null,"ignore_cache":false}'), +(49898, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:24.445+00', '{"cached":null,"ignore_cache":false}'), +(49899, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:30.062+00', '{"cached":null,"ignore_cache":false}'), +(49900, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:30.082+00', '{"cached":null,"ignore_cache":false}'), +(49901, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:30.956+00', '{"cached":null,"ignore_cache":false}'), +(49902, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.085+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49903, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.149+00', '{"cached":null,"ignore_cache":false}'), +(49904, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.193+00', '{"cached":null,"ignore_cache":false}'), +(49905, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.22+00', '{"cached":null,"ignore_cache":false}'), +(49906, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.349+00', '{"cached":null,"ignore_cache":false}'), +(49907, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.421+00', '{"cached":null,"ignore_cache":false}'), +(49908, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.595+00', '{"cached":null,"ignore_cache":false}'), +(49909, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.669+00', '{"cached":null,"ignore_cache":false}'), +(49910, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.705+00', '{"cached":null,"ignore_cache":false}'), +(49911, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.769+00', '{"cached":null,"ignore_cache":false}'), +(49912, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.793+00', '{"cached":null,"ignore_cache":false}'), +(49913, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.814+00', '{"cached":null,"ignore_cache":false}'), +(49914, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.818+00', '{"cached":null,"ignore_cache":false}'), +(49915, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.818+00', '{"cached":null,"ignore_cache":false}'), +(49916, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.843+00', '{"cached":null,"ignore_cache":false}'), +(49917, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:31.846+00', '{"cached":null,"ignore_cache":false}'), +(49918, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:32.063+00', '{"cached":null,"ignore_cache":false}'), +(49919, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:37.537+00', '{"cached":null,"ignore_cache":false}'), +(49920, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:37.622+00', '{"cached":null,"ignore_cache":false}'), +(49921, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:37.72+00', '{"cached":null,"ignore_cache":false}'), +(49922, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:22:37.783+00', '{"cached":null,"ignore_cache":false}'), +(49923, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:07.568+00', '{"cached":null,"ignore_cache":false}'), +(49924, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.156+00', '{"cached":null,"ignore_cache":false}'), +(49925, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.211+00', '{"cached":null,"ignore_cache":false}'), +(49926, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.335+00', '{"cached":null,"ignore_cache":false}'), +(49927, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.594+00', '{"cached":null,"ignore_cache":false}'), +(49928, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.614+00', '{"cached":null,"ignore_cache":false}'), +(49929, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:08.685+00', '{"cached":null,"ignore_cache":false}'), +(49930, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:09.413+00', '{"cached":null,"ignore_cache":false}'), +(49931, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:12.397+00', '{"cached":null,"ignore_cache":false}'), +(49932, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:12.923+00', '{"cached":null,"ignore_cache":false}'), +(49933, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.237+00', '{"cached":null,"ignore_cache":false}'), +(49934, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.555+00', '{"cached":null,"ignore_cache":false}'), +(49935, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.681+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49936, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.712+00', '{"cached":null,"ignore_cache":false}'), +(49937, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.771+00', '{"cached":null,"ignore_cache":false}'), +(49938, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.836+00', '{"cached":null,"ignore_cache":false}'), +(49939, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.856+00', '{"cached":null,"ignore_cache":false}'), +(49940, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.936+00', '{"cached":null,"ignore_cache":false}'), +(49941, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:13.949+00', '{"cached":null,"ignore_cache":false}'), +(49942, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.058+00', '{"cached":null,"ignore_cache":false}'), +(49943, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.092+00', '{"cached":null,"ignore_cache":false}'), +(49944, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.237+00', '{"cached":null,"ignore_cache":false}'), +(49945, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.559+00', '{"cached":null,"ignore_cache":false}'), +(49946, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.565+00', '{"cached":null,"ignore_cache":false}'), +(49947, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.615+00', '{"cached":null,"ignore_cache":false}'), +(49948, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.739+00', '{"cached":null,"ignore_cache":false}'), +(49949, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:14.838+00', '{"cached":null,"ignore_cache":false}'), +(49950, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:15.002+00', '{"cached":null,"ignore_cache":false}'), +(49951, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:17.539+00', '{"cached":null,"ignore_cache":false}'), +(49952, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:17.553+00', '{"cached":null,"ignore_cache":false}'), +(49953, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:17.555+00', '{"cached":null,"ignore_cache":false}'), +(49954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:17.579+00', '{"cached":null,"ignore_cache":false}'), +(49955, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.794+00', '{"cached":null,"ignore_cache":false}'), +(49956, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:41.969+00', '{"cached":null,"ignore_cache":false}'), +(49957, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:46.244+00', '{"cached":null,"ignore_cache":false}'), +(49958, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:46.264+00', '{"cached":null,"ignore_cache":false}'), +(49959, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:46.28+00', '{"cached":null,"ignore_cache":false}'), +(49960, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:46.284+00', '{"cached":null,"ignore_cache":false}'), +(49961, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:46.293+00', '{"cached":null,"ignore_cache":false}'), +(49962, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:46.334+00', '{"cached":null,"ignore_cache":false}'), +(49963, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:47.861+00', '{"cached":null,"ignore_cache":false}'), +(49964, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:47.963+00', '{"cached":null,"ignore_cache":false}'), +(49965, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:48.454+00', '{"cached":null,"ignore_cache":false}'), +(49966, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:48.594+00', '{"cached":null,"ignore_cache":false}'), +(49967, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.155+00', '{"cached":null,"ignore_cache":false}'), +(49968, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.204+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(49969, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.23+00', '{"cached":null,"ignore_cache":false}'), +(49970, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.417+00', '{"cached":null,"ignore_cache":false}'), +(49971, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.441+00', '{"cached":null,"ignore_cache":false}'), +(49972, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.452+00', '{"cached":null,"ignore_cache":false}'), +(49973, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.495+00', '{"cached":null,"ignore_cache":false}'), +(49974, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.527+00', '{"cached":null,"ignore_cache":false}'), +(49975, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.598+00', '{"cached":null,"ignore_cache":false}'), +(49976, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.763+00', '{"cached":null,"ignore_cache":false}'), +(49977, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.769+00', '{"cached":null,"ignore_cache":false}'), +(49978, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.774+00', '{"cached":null,"ignore_cache":false}'), +(49979, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.804+00', '{"cached":null,"ignore_cache":false}'), +(49980, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.806+00', '{"cached":null,"ignore_cache":false}'), +(49981, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.816+00', '{"cached":null,"ignore_cache":false}'), +(49982, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:49.9+00', '{"cached":null,"ignore_cache":false}'), +(49983, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:53.009+00', '{"cached":null,"ignore_cache":false}'), +(49984, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:53.042+00', '{"cached":null,"ignore_cache":false}'), +(49985, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:53.1+00', '{"cached":null,"ignore_cache":false}'), +(49986, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:23:53.217+00', '{"cached":null,"ignore_cache":false}'), +(49987, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:25:59.942+00', '{"cached":null,"ignore_cache":false}'), +(49988, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:02.184+00', '{"cached":null,"ignore_cache":false}'), +(49989, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.177+00', '{"cached":null,"ignore_cache":false}'), +(49990, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.329+00', '{"cached":null,"ignore_cache":false}'), +(49991, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.49+00', '{"cached":null,"ignore_cache":false}'), +(49992, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.786+00', '{"cached":null,"ignore_cache":false}'), +(49993, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.793+00', '{"cached":null,"ignore_cache":false}'), +(49994, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.806+00', '{"cached":null,"ignore_cache":false}'), +(49995, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.82+00', '{"cached":null,"ignore_cache":false}'), +(49996, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.898+00', '{"cached":null,"ignore_cache":false}'), +(49997, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:05.957+00', '{"cached":null,"ignore_cache":false}'), +(49998, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:06.25+00', '{"cached":null,"ignore_cache":false}'), +(49999, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:06.495+00', '{"cached":null,"ignore_cache":false}'), +(50000, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:06.714+00', '{"cached":null,"ignore_cache":false}'), +(50001, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:10.998+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50002, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:26:11.163+00', '{"cached":null,"ignore_cache":false}'), +(50003, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:25.829+00', '{"cached":null,"ignore_cache":false}'), +(50004, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:28.748+00', '{"cached":null,"ignore_cache":false}'), +(50005, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:28.772+00', '{"cached":null,"ignore_cache":false}'), +(50006, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:28.816+00', '{"cached":null,"ignore_cache":false}'), +(50007, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:30.558+00', '{"cached":null,"ignore_cache":false}'), +(50008, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:30.997+00', '{"cached":null,"ignore_cache":false}'), +(50009, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.039+00', '{"cached":null,"ignore_cache":false}'), +(50010, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.114+00', '{"cached":null,"ignore_cache":false}'), +(50011, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.119+00', '{"cached":null,"ignore_cache":false}'), +(50012, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.222+00', '{"cached":null,"ignore_cache":false}'), +(50013, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.249+00', '{"cached":null,"ignore_cache":false}'), +(50014, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.277+00', '{"cached":null,"ignore_cache":false}'), +(50015, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.386+00', '{"cached":null,"ignore_cache":false}'), +(50016, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:31.418+00', '{"cached":null,"ignore_cache":false}'), +(50017, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:33.646+00', '{"cached":null,"ignore_cache":false}'), +(50018, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:27:33.73+00', '{"cached":null,"ignore_cache":false}'), +(50019, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:14.002+00', '{"cached":null,"ignore_cache":false}'), +(50020, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:15.328+00', '{"cached":null,"ignore_cache":false}'), +(50021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:15.369+00', '{"cached":null,"ignore_cache":false}'), +(50022, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:15.387+00', '{"cached":null,"ignore_cache":false}'), +(50023, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.214+00', '{"cached":null,"ignore_cache":false}'), +(50024, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.32+00', '{"cached":null,"ignore_cache":false}'), +(50025, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.597+00', '{"cached":null,"ignore_cache":false}'), +(50026, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.712+00', '{"cached":null,"ignore_cache":false}'), +(50027, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.742+00', '{"cached":null,"ignore_cache":false}'), +(50028, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.763+00', '{"cached":null,"ignore_cache":false}'), +(50029, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.786+00', '{"cached":null,"ignore_cache":false}'), +(50030, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.796+00', '{"cached":null,"ignore_cache":false}'), +(50031, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.822+00', '{"cached":null,"ignore_cache":false}'), +(50032, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:16.853+00', '{"cached":null,"ignore_cache":false}'), +(50033, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:18.265+00', '{"cached":null,"ignore_cache":false}'), +(50034, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:18.317+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50035, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:32.514+00', '{"cached":null,"ignore_cache":false}'), +(50036, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:35.388+00', '{"cached":null,"ignore_cache":false}'), +(50037, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:36.707+00', '{"cached":null,"ignore_cache":false}'), +(50038, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:36.723+00', '{"cached":null,"ignore_cache":false}'), +(50039, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:36.794+00', '{"cached":null,"ignore_cache":false}'), +(50040, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:36.855+00', '{"cached":null,"ignore_cache":false}'), +(50041, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:36.931+00', '{"cached":null,"ignore_cache":false}'), +(50042, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:36.935+00', '{"cached":null,"ignore_cache":false}'), +(50043, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:41.041+00', '{"cached":null,"ignore_cache":false}'), +(50044, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:41.118+00', '{"cached":null,"ignore_cache":false}'), +(50045, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:41.553+00', '{"cached":null,"ignore_cache":false}'), +(50046, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:41.963+00', '{"cached":null,"ignore_cache":false}'), +(50047, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.009+00', '{"cached":null,"ignore_cache":false}'), +(50048, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.061+00', '{"cached":null,"ignore_cache":false}'), +(50049, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.199+00', '{"cached":null,"ignore_cache":false}'), +(50050, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.2+00', '{"cached":null,"ignore_cache":false}'), +(50051, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.25+00', '{"cached":null,"ignore_cache":false}'), +(50052, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.273+00', '{"cached":null,"ignore_cache":false}'), +(50053, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.473+00', '{"cached":null,"ignore_cache":false}'), +(50054, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.544+00', '{"cached":null,"ignore_cache":false}'), +(50055, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.606+00', '{"cached":null,"ignore_cache":false}'), +(50056, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.656+00', '{"cached":null,"ignore_cache":false}'), +(50057, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.866+00', '{"cached":null,"ignore_cache":false}'), +(50058, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.89+00', '{"cached":null,"ignore_cache":false}'), +(50059, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.901+00', '{"cached":null,"ignore_cache":false}'), +(50060, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.91+00', '{"cached":null,"ignore_cache":false}'), +(50061, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:42.914+00', '{"cached":null,"ignore_cache":false}'), +(50062, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:46.256+00', '{"cached":null,"ignore_cache":false}'), +(50063, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:46.343+00', '{"cached":null,"ignore_cache":false}'), +(50064, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:46.395+00', '{"cached":null,"ignore_cache":false}'), +(50065, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:46.427+00', '{"cached":null,"ignore_cache":false}'), +(50066, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.764+00', '{"cached":null,"ignore_cache":false}'), +(50067, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:52.823+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50068, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.189+00', '{"cached":null,"ignore_cache":false}'), +(50069, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.473+00', '{"cached":null,"ignore_cache":false}'), +(50070, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.522+00', '{"cached":null,"ignore_cache":false}'), +(50071, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.734+00', '{"cached":null,"ignore_cache":false}'), +(50072, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.758+00', '{"cached":null,"ignore_cache":false}'), +(50073, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.773+00', '{"cached":null,"ignore_cache":false}'), +(50074, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.854+00', '{"cached":null,"ignore_cache":false}'), +(50075, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:54.861+00', '{"cached":null,"ignore_cache":false}'), +(50076, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:55.257+00', '{"cached":null,"ignore_cache":false}'), +(50077, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:55.451+00', '{"cached":null,"ignore_cache":false}'), +(50078, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:55.531+00', '{"cached":null,"ignore_cache":false}'), +(50079, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:56.141+00', '{"cached":null,"ignore_cache":false}'), +(50080, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:56.221+00', '{"cached":null,"ignore_cache":false}'), +(50081, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:56.307+00', '{"cached":null,"ignore_cache":false}'), +(50082, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:56.884+00', '{"cached":null,"ignore_cache":false}'), +(50083, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:56.915+00', '{"cached":null,"ignore_cache":false}'), +(50084, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:56.995+00', '{"cached":null,"ignore_cache":false}'), +(50085, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:57.161+00', '{"cached":null,"ignore_cache":false}'), +(50086, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:57.219+00', '{"cached":null,"ignore_cache":false}'), +(50087, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:57.461+00', '{"cached":null,"ignore_cache":false}'), +(50088, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:57.622+00', '{"cached":null,"ignore_cache":false}'), +(50089, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:57.838+00', '{"cached":null,"ignore_cache":false}'), +(50090, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:57.962+00', '{"cached":null,"ignore_cache":false}'), +(50091, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.047+00', '{"cached":null,"ignore_cache":false}'), +(50092, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.401+00', '{"cached":null,"ignore_cache":false}'), +(50093, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.432+00', '{"cached":null,"ignore_cache":false}'), +(50094, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.537+00', '{"cached":null,"ignore_cache":false}'), +(50095, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.684+00', '{"cached":null,"ignore_cache":false}'), +(50096, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.703+00', '{"cached":null,"ignore_cache":false}'), +(50097, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:28:58.716+00', '{"cached":null,"ignore_cache":false}'), +(50098, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:01.345+00', '{"cached":null,"ignore_cache":false}'), +(50099, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:01.372+00', '{"cached":null,"ignore_cache":false}'), +(50100, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:01.379+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50101, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:01.397+00', '{"cached":null,"ignore_cache":false}'), +(50102, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:01.752+00', '{"cached":null,"ignore_cache":false}'), +(50103, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:01.782+00', '{"cached":null,"ignore_cache":false}'), +(50104, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:03.794+00', '{"cached":null,"ignore_cache":false}'), +(50105, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.616+00', '{"cached":null,"ignore_cache":false}'), +(50106, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:04.744+00', '{"cached":null,"ignore_cache":false}'), +(50107, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:05.475+00', '{"cached":null,"ignore_cache":false}'), +(50108, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.153+00', '{"cached":null,"ignore_cache":false}'), +(50109, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.154+00', '{"cached":null,"ignore_cache":false}'), +(50110, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.188+00', '{"cached":null,"ignore_cache":false}'), +(50111, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.339+00', '{"cached":null,"ignore_cache":false}'), +(50112, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.707+00', '{"cached":null,"ignore_cache":false}'), +(50113, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:06.861+00', '{"cached":null,"ignore_cache":false}'), +(50114, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:07.474+00', '{"cached":null,"ignore_cache":false}'), +(50115, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:08.014+00', '{"cached":null,"ignore_cache":false}'), +(50116, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:08.048+00', '{"cached":null,"ignore_cache":false}'), +(50117, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:08.881+00', '{"cached":null,"ignore_cache":false}'), +(50118, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:08.929+00', '{"cached":null,"ignore_cache":false}'), +(50119, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:09.299+00', '{"cached":null,"ignore_cache":false}'), +(50120, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:09.308+00', '{"cached":null,"ignore_cache":false}'), +(50121, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:09.347+00', '{"cached":null,"ignore_cache":false}'), +(50122, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:09.509+00', '{"cached":null,"ignore_cache":false}'), +(50123, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:09.545+00', '{"cached":null,"ignore_cache":false}'), +(50124, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:09.747+00', '{"cached":null,"ignore_cache":false}'), +(50125, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:10.381+00', '{"cached":null,"ignore_cache":false}'), +(50126, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:10.812+00', '{"cached":null,"ignore_cache":false}'), +(50127, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:10.831+00', '{"cached":null,"ignore_cache":false}'), +(50128, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:10.831+00', '{"cached":null,"ignore_cache":false}'), +(50129, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:10.924+00', '{"cached":null,"ignore_cache":false}'), +(50130, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.074+00', '{"cached":null,"ignore_cache":false}'), +(50131, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.118+00', '{"cached":null,"ignore_cache":false}'), +(50132, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.119+00', '{"cached":null,"ignore_cache":false}'), +(50133, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.383+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50134, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.389+00', '{"cached":null,"ignore_cache":false}'), +(50135, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.405+00', '{"cached":null,"ignore_cache":false}'), +(50136, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.717+00', '{"cached":null,"ignore_cache":false}'), +(50137, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.718+00', '{"cached":null,"ignore_cache":false}'), +(50138, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.784+00', '{"cached":null,"ignore_cache":false}'), +(50139, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.802+00', '{"cached":null,"ignore_cache":false}'), +(50140, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.803+00', '{"cached":null,"ignore_cache":false}'), +(50141, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:11.865+00', '{"cached":null,"ignore_cache":false}'), +(50142, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:12.11+00', '{"cached":null,"ignore_cache":false}'), +(50143, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:12.528+00', '{"cached":null,"ignore_cache":false}'), +(50144, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:29:12.632+00', '{"cached":null,"ignore_cache":false}'), +(50145, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:51.995+00', '{"cached":null,"ignore_cache":false}'), +(50146, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:30:52.259+00', '{"cached":null,"ignore_cache":false}'), +(50147, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:05.698+00', '{"cached":null,"ignore_cache":false}'), +(50148, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:06.004+00', '{"cached":null,"ignore_cache":false}'), +(50149, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:06.616+00', '{"cached":null,"ignore_cache":false}'), +(50150, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:07.163+00', '{"cached":null,"ignore_cache":false}'), +(50151, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.232+00', '{"cached":null,"ignore_cache":false}'), +(50152, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.371+00', '{"cached":null,"ignore_cache":false}'), +(50153, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.399+00', '{"cached":null,"ignore_cache":false}'), +(50154, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.428+00', '{"cached":null,"ignore_cache":false}'), +(50155, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.443+00', '{"cached":null,"ignore_cache":false}'), +(50156, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.484+00', '{"cached":null,"ignore_cache":false}'), +(50157, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.484+00', '{"cached":null,"ignore_cache":false}'), +(50158, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.491+00', '{"cached":null,"ignore_cache":false}'), +(50159, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.494+00', '{"cached":null,"ignore_cache":false}'), +(50160, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.499+00', '{"cached":null,"ignore_cache":false}'), +(50161, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.523+00', '{"cached":null,"ignore_cache":false}'), +(50162, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.95+00', '{"cached":null,"ignore_cache":false}'), +(50163, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.953+00', '{"cached":null,"ignore_cache":false}'), +(50164, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.969+00', '{"cached":null,"ignore_cache":false}'), +(50165, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.971+00', '{"cached":null,"ignore_cache":false}'), +(50166, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:08.981+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50167, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.022+00', '{"cached":null,"ignore_cache":false}'), +(50168, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.038+00', '{"cached":null,"ignore_cache":false}'), +(50169, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.054+00', '{"cached":null,"ignore_cache":false}'), +(50170, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.082+00', '{"cached":null,"ignore_cache":false}'), +(50171, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.132+00', '{"cached":null,"ignore_cache":false}'), +(50172, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:09.172+00', '{"cached":null,"ignore_cache":false}'), +(50173, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:11.32+00', '{"cached":null,"ignore_cache":false}'), +(50174, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:11.902+00', '{"cached":null,"ignore_cache":false}'), +(50175, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:12.101+00', '{"cached":null,"ignore_cache":false}'), +(50176, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:12.102+00', '{"cached":null,"ignore_cache":false}'), +(50177, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:12.107+00', '{"cached":null,"ignore_cache":false}'), +(50178, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:12.337+00', '{"cached":null,"ignore_cache":false}'), +(50179, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:12.394+00', '{"cached":null,"ignore_cache":false}'), +(50180, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:12.617+00', '{"cached":null,"ignore_cache":false}'), +(50181, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:12.674+00', '{"cached":null,"ignore_cache":false}'), +(50182, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.298+00', '{"cached":null,"ignore_cache":false}'), +(50183, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.381+00', '{"cached":null,"ignore_cache":false}'), +(50184, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.844+00', '{"cached":null,"ignore_cache":false}'), +(50185, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.912+00', '{"cached":null,"ignore_cache":false}'), +(50186, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.915+00', '{"cached":null,"ignore_cache":false}'), +(50187, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.916+00', '{"cached":null,"ignore_cache":false}'), +(50188, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.917+00', '{"cached":null,"ignore_cache":false}'), +(50189, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:13.918+00', '{"cached":null,"ignore_cache":false}'), +(50190, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:14.174+00', '{"cached":null,"ignore_cache":false}'), +(50191, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:14.342+00', '{"cached":null,"ignore_cache":false}'), +(50192, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:14.373+00', '{"cached":null,"ignore_cache":false}'), +(50193, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:33.479+00', '{"cached":null,"ignore_cache":false}'), +(50194, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.593+00', '{"cached":null,"ignore_cache":false}'), +(50195, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:34.688+00', '{"cached":null,"ignore_cache":false}'), +(50196, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:35.324+00', '{"cached":null,"ignore_cache":false}'), +(50197, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:36.32+00', '{"cached":null,"ignore_cache":false}'), +(50198, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:37.141+00', '{"cached":null,"ignore_cache":false}'), +(50199, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:37.294+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50200, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:37.358+00', '{"cached":null,"ignore_cache":false}'), +(50201, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:37.514+00', '{"cached":null,"ignore_cache":false}'), +(50202, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:37.517+00', '{"cached":null,"ignore_cache":false}'), +(50203, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:37.787+00', '{"cached":null,"ignore_cache":false}'), +(50204, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:37.845+00', '{"cached":null,"ignore_cache":false}'), +(50205, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:38.147+00', '{"cached":null,"ignore_cache":false}'), +(50206, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:38.195+00', '{"cached":null,"ignore_cache":false}'), +(50207, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:38.304+00', '{"cached":null,"ignore_cache":false}'), +(50208, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:38.568+00', '{"cached":null,"ignore_cache":false}'), +(50209, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:38.602+00', '{"cached":null,"ignore_cache":false}'), +(50210, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:39.154+00', '{"cached":null,"ignore_cache":false}'), +(50211, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:39.238+00', '{"cached":null,"ignore_cache":false}'), +(50212, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:39.423+00', '{"cached":null,"ignore_cache":false}'), +(50213, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:39.859+00', '{"cached":null,"ignore_cache":false}'), +(50214, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:39.877+00', '{"cached":null,"ignore_cache":false}'), +(50215, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:39.978+00', '{"cached":null,"ignore_cache":false}'), +(50216, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:40.045+00', '{"cached":null,"ignore_cache":false}'), +(50217, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:40.083+00', '{"cached":null,"ignore_cache":false}'), +(50218, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:40.165+00', '{"cached":null,"ignore_cache":false}'), +(50219, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:40.193+00', '{"cached":null,"ignore_cache":false}'), +(50220, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:40.605+00', '{"cached":null,"ignore_cache":false}'), +(50221, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:41.985+00', '{"cached":null,"ignore_cache":false}'), +(50222, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:41.995+00', '{"cached":null,"ignore_cache":false}'), +(50223, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:42.05+00', '{"cached":null,"ignore_cache":false}'), +(50224, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:42.148+00', '{"cached":null,"ignore_cache":false}'), +(50225, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.179+00', '{"cached":null,"ignore_cache":false}'), +(50226, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.327+00', '{"cached":null,"ignore_cache":false}'), +(50227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.598+00', '{"cached":null,"ignore_cache":false}'), +(50228, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:52.683+00', '{"cached":null,"ignore_cache":false}'), +(50229, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.749+00', '{"cached":null,"ignore_cache":false}'), +(50230, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:53.779+00', '{"cached":null,"ignore_cache":false}'), +(50231, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.026+00', '{"cached":null,"ignore_cache":false}'), +(50232, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.287+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50233, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.297+00', '{"cached":null,"ignore_cache":false}'), +(50234, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.298+00', '{"cached":null,"ignore_cache":false}'), +(50235, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.323+00', '{"cached":null,"ignore_cache":false}'), +(50236, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.378+00', '{"cached":null,"ignore_cache":false}'), +(50237, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.419+00', '{"cached":null,"ignore_cache":false}'), +(50238, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.468+00', '{"cached":null,"ignore_cache":false}'), +(50239, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.52+00', '{"cached":null,"ignore_cache":false}'), +(50240, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:54.628+00', '{"cached":null,"ignore_cache":false}'), +(50241, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:55.188+00', '{"cached":null,"ignore_cache":false}'), +(50242, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:55.233+00', '{"cached":null,"ignore_cache":false}'), +(50243, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.534+00', '{"cached":null,"ignore_cache":false}'), +(50244, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.757+00', '{"cached":null,"ignore_cache":false}'), +(50245, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.77+00', '{"cached":null,"ignore_cache":false}'), +(50246, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.788+00', '{"cached":null,"ignore_cache":false}'), +(50247, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.81+00', '{"cached":null,"ignore_cache":false}'), +(50248, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.812+00', '{"cached":null,"ignore_cache":false}'), +(50249, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.913+00', '{"cached":null,"ignore_cache":false}'), +(50250, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:56.982+00', '{"cached":null,"ignore_cache":false}'), +(50251, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:57.459+00', '{"cached":null,"ignore_cache":false}'), +(50252, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:57.497+00', '{"cached":null,"ignore_cache":false}'), +(50253, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:57.498+00', '{"cached":null,"ignore_cache":false}'), +(50254, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:57.788+00', '{"cached":null,"ignore_cache":false}'), +(50255, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:31:57.862+00', '{"cached":null,"ignore_cache":false}'), +(50256, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:51.319+00', '{"cached":null,"ignore_cache":false}'), +(50257, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:51.364+00', '{"cached":null,"ignore_cache":false}'), +(50258, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:52.417+00', '{"cached":null,"ignore_cache":false}'), +(50259, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:52.421+00', '{"cached":null,"ignore_cache":false}'), +(50260, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:52.422+00', '{"cached":null,"ignore_cache":false}'), +(50261, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:52.521+00', '{"cached":null,"ignore_cache":false}'), +(50262, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:52.743+00', '{"cached":null,"ignore_cache":false}'), +(50263, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:52.745+00', '{"cached":null,"ignore_cache":false}'), +(50264, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:57.453+00', '{"cached":null,"ignore_cache":false}'), +(50265, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:57.613+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50266, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:58.471+00', '{"cached":null,"ignore_cache":false}'), +(50267, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:58.837+00', '{"cached":null,"ignore_cache":false}'), +(50268, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.234+00', '{"cached":null,"ignore_cache":false}'), +(50269, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.41+00', '{"cached":null,"ignore_cache":false}'), +(50270, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.444+00', '{"cached":null,"ignore_cache":false}'), +(50271, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.497+00', '{"cached":null,"ignore_cache":false}'), +(50272, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.502+00', '{"cached":null,"ignore_cache":false}'), +(50273, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.546+00', '{"cached":null,"ignore_cache":false}'), +(50274, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.56+00', '{"cached":null,"ignore_cache":false}'), +(50275, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.873+00', '{"cached":null,"ignore_cache":false}'), +(50276, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:32:59.898+00', '{"cached":null,"ignore_cache":false}'), +(50277, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:00.014+00', '{"cached":null,"ignore_cache":false}'), +(50278, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:00.015+00', '{"cached":null,"ignore_cache":false}'), +(50279, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:00.018+00', '{"cached":null,"ignore_cache":false}'), +(50280, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:00.153+00', '{"cached":null,"ignore_cache":false}'), +(50281, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:00.193+00', '{"cached":null,"ignore_cache":false}'), +(50282, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:00.234+00', '{"cached":null,"ignore_cache":false}'), +(50283, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:00.252+00', '{"cached":null,"ignore_cache":false}'), +(50284, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:04.427+00', '{"cached":null,"ignore_cache":false}'), +(50285, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:04.524+00', '{"cached":null,"ignore_cache":false}'), +(50286, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:04.558+00', '{"cached":null,"ignore_cache":false}'), +(50287, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:04.56+00', '{"cached":null,"ignore_cache":false}'), +(50288, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.403+00', '{"cached":null,"ignore_cache":false}'), +(50289, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.41+00', '{"cached":null,"ignore_cache":false}'), +(50290, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.466+00', '{"cached":null,"ignore_cache":false}'), +(50291, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.563+00', '{"cached":null,"ignore_cache":false}'), +(50292, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.597+00', '{"cached":null,"ignore_cache":false}'), +(50293, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.796+00', '{"cached":null,"ignore_cache":false}'), +(50294, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.907+00', '{"cached":null,"ignore_cache":false}'), +(50295, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:19.928+00', '{"cached":null,"ignore_cache":false}'), +(50296, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:20.205+00', '{"cached":null,"ignore_cache":false}'), +(50297, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:20.383+00', '{"cached":null,"ignore_cache":false}'), +(50298, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:20.479+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50299, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:20.543+00', '{"cached":null,"ignore_cache":false}'), +(50300, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:20.608+00', '{"cached":null,"ignore_cache":false}'), +(50301, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:20.713+00', '{"cached":null,"ignore_cache":false}'), +(50302, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:21.224+00', '{"cached":null,"ignore_cache":false}'), +(50303, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:21.336+00', '{"cached":null,"ignore_cache":false}'), +(50304, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:37.438+00', '{"cached":null,"ignore_cache":false}'), +(50305, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:37.573+00', '{"cached":null,"ignore_cache":false}'), +(50306, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.054+00', '{"cached":null,"ignore_cache":false}'), +(50307, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.193+00', '{"cached":null,"ignore_cache":false}'), +(50308, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.196+00', '{"cached":null,"ignore_cache":false}'), +(50309, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:38.404+00', '{"cached":null,"ignore_cache":false}'), +(50310, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:39.481+00', '{"cached":null,"ignore_cache":false}'), +(50311, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:39.897+00', '{"cached":null,"ignore_cache":false}'), +(50312, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:40.334+00', '{"cached":null,"ignore_cache":false}'), +(50313, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:41.66+00', '{"cached":null,"ignore_cache":false}'), +(50314, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:42.343+00', '{"cached":null,"ignore_cache":false}'), +(50315, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:42.552+00', '{"cached":null,"ignore_cache":false}'), +(50316, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:42.564+00', '{"cached":null,"ignore_cache":false}'), +(50317, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:42.964+00', '{"cached":null,"ignore_cache":false}'), +(50318, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:43.313+00', '{"cached":null,"ignore_cache":false}'), +(50319, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:44.886+00', '{"cached":null,"ignore_cache":false}'), +(50320, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:44.998+00', '{"cached":null,"ignore_cache":false}'), +(50321, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:45.384+00', '{"cached":null,"ignore_cache":false}'), +(50322, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:45.894+00', '{"cached":null,"ignore_cache":false}'), +(50323, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:45.95+00', '{"cached":null,"ignore_cache":false}'), +(50324, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:46.069+00', '{"cached":null,"ignore_cache":false}'), +(50325, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:46.183+00', '{"cached":null,"ignore_cache":false}'), +(50326, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:46.558+00', '{"cached":null,"ignore_cache":false}'), +(50327, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:46.573+00', '{"cached":null,"ignore_cache":false}'), +(50328, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:46.918+00', '{"cached":null,"ignore_cache":false}'), +(50329, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:48.068+00', '{"cached":null,"ignore_cache":false}'), +(50330, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:48.075+00', '{"cached":null,"ignore_cache":false}'), +(50331, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:48.961+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50332, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:50.207+00', '{"cached":null,"ignore_cache":false}'), +(50333, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:50.283+00', '{"cached":null,"ignore_cache":false}'), +(50334, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:50.83+00', '{"cached":null,"ignore_cache":false}'), +(50335, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:50.883+00', '{"cached":null,"ignore_cache":false}'), +(50336, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.111+00', '{"cached":null,"ignore_cache":false}'), +(50337, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.224+00', '{"cached":null,"ignore_cache":false}'), +(50338, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.279+00', '{"cached":null,"ignore_cache":false}'), +(50339, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.394+00', '{"cached":null,"ignore_cache":false}'), +(50340, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.473+00', '{"cached":null,"ignore_cache":false}'), +(50341, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.477+00', '{"cached":null,"ignore_cache":false}'), +(50342, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.553+00', '{"cached":null,"ignore_cache":false}'), +(50343, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.595+00', '{"cached":null,"ignore_cache":false}'), +(50344, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.667+00', '{"cached":null,"ignore_cache":false}'), +(50345, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:51.753+00', '{"cached":null,"ignore_cache":false}'), +(50346, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:52.005+00', '{"cached":null,"ignore_cache":false}'), +(50347, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:52.132+00', '{"cached":null,"ignore_cache":false}'), +(50348, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:52.163+00', '{"cached":null,"ignore_cache":false}'), +(50349, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:55.839+00', '{"cached":null,"ignore_cache":false}'), +(50350, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:56.074+00', '{"cached":null,"ignore_cache":false}'), +(50351, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:33:56.145+00', '{"cached":null,"ignore_cache":false}'), +(50352, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:03.022+00', '{"cached":null,"ignore_cache":false}'), +(50353, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:03.937+00', '{"cached":null,"ignore_cache":false}'), +(50354, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:03.994+00', '{"cached":null,"ignore_cache":false}'), +(50355, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:04.012+00', '{"cached":null,"ignore_cache":false}'), +(50356, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.405+00', '{"cached":null,"ignore_cache":false}'), +(50357, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.612+00', '{"cached":null,"ignore_cache":false}'), +(50358, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.669+00', '{"cached":null,"ignore_cache":false}'), +(50359, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.691+00', '{"cached":null,"ignore_cache":false}'), +(50360, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.723+00', '{"cached":null,"ignore_cache":false}'), +(50361, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.836+00', '{"cached":null,"ignore_cache":false}'), +(50362, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.859+00', '{"cached":null,"ignore_cache":false}'), +(50363, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.865+00', '{"cached":null,"ignore_cache":false}'), +(50364, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.931+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50365, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:05.972+00', '{"cached":null,"ignore_cache":false}'), +(50366, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:06.522+00', '{"cached":null,"ignore_cache":false}'), +(50367, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:06.567+00', '{"cached":null,"ignore_cache":false}'), +(50368, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:12.977+00', '{"cached":null,"ignore_cache":false}'), +(50369, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:13.341+00', '{"cached":null,"ignore_cache":false}'), +(50370, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:13.55+00', '{"cached":null,"ignore_cache":false}'), +(50371, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:14.191+00', '{"cached":null,"ignore_cache":false}'), +(50372, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:15.319+00', '{"cached":null,"ignore_cache":false}'), +(50373, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:15.376+00', '{"cached":null,"ignore_cache":false}'), +(50374, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:15.457+00', '{"cached":null,"ignore_cache":false}'), +(50375, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:15.515+00', '{"cached":null,"ignore_cache":false}'), +(50376, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:16.347+00', '{"cached":null,"ignore_cache":false}'), +(50377, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:16.716+00', '{"cached":null,"ignore_cache":false}'), +(50378, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:16.963+00', '{"cached":null,"ignore_cache":false}'), +(50379, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:16.979+00', '{"cached":null,"ignore_cache":false}'), +(50380, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:17.005+00', '{"cached":null,"ignore_cache":false}'), +(50381, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:17.04+00', '{"cached":null,"ignore_cache":false}'), +(50382, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:17.697+00', '{"cached":null,"ignore_cache":false}'), +(50383, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:17.969+00', '{"cached":null,"ignore_cache":false}'), +(50384, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.177+00', '{"cached":null,"ignore_cache":false}'), +(50385, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.262+00', '{"cached":null,"ignore_cache":false}'), +(50386, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.935+00', '{"cached":null,"ignore_cache":false}'), +(50387, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:24.983+00', '{"cached":null,"ignore_cache":false}'), +(50388, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:25.638+00', '{"cached":null,"ignore_cache":false}'), +(50389, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:26.71+00', '{"cached":null,"ignore_cache":false}'), +(50390, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:27.337+00', '{"cached":null,"ignore_cache":false}'), +(50391, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:27.662+00', '{"cached":null,"ignore_cache":false}'), +(50392, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:27.815+00', '{"cached":null,"ignore_cache":false}'), +(50393, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:27.973+00', '{"cached":null,"ignore_cache":false}'), +(50394, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:28.275+00', '{"cached":null,"ignore_cache":false}'), +(50395, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:28.429+00', '{"cached":null,"ignore_cache":false}'), +(50396, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:28.558+00', '{"cached":null,"ignore_cache":false}'), +(50397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:28.949+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50398, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:28.994+00', '{"cached":null,"ignore_cache":false}'), +(50399, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:29.049+00', '{"cached":null,"ignore_cache":false}'), +(50400, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:29.212+00', '{"cached":null,"ignore_cache":false}'), +(50401, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:29.416+00', '{"cached":null,"ignore_cache":false}'), +(50402, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:29.585+00', '{"cached":null,"ignore_cache":false}'), +(50403, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:29.909+00', '{"cached":null,"ignore_cache":false}'), +(50404, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:30.03+00', '{"cached":null,"ignore_cache":false}'), +(50405, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:30.457+00', '{"cached":null,"ignore_cache":false}'), +(50406, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:30.469+00', '{"cached":null,"ignore_cache":false}'), +(50407, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:30.802+00', '{"cached":null,"ignore_cache":false}'), +(50408, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.243+00', '{"cached":null,"ignore_cache":false}'), +(50409, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.243+00', '{"cached":null,"ignore_cache":false}'), +(50410, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.245+00', '{"cached":null,"ignore_cache":false}'), +(50411, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.412+00', '{"cached":null,"ignore_cache":false}'), +(50412, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.445+00', '{"cached":null,"ignore_cache":false}'), +(50413, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.446+00', '{"cached":null,"ignore_cache":false}'), +(50414, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.449+00', '{"cached":null,"ignore_cache":false}'), +(50415, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.45+00', '{"cached":null,"ignore_cache":false}'), +(50416, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.742+00', '{"cached":null,"ignore_cache":false}'), +(50417, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.848+00', '{"cached":null,"ignore_cache":false}'), +(50418, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.95+00', '{"cached":null,"ignore_cache":false}'), +(50419, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:34:31.989+00', '{"cached":null,"ignore_cache":false}'), +(50420, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.848+00', '{"cached":null,"ignore_cache":false}'), +(50421, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:56.859+00', '{"cached":null,"ignore_cache":false}'), +(50422, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.389+00', '{"cached":null,"ignore_cache":false}'), +(50423, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.4+00', '{"cached":null,"ignore_cache":false}'), +(50424, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.511+00', '{"cached":null,"ignore_cache":false}'), +(50425, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.562+00', '{"cached":null,"ignore_cache":false}'), +(50426, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.654+00', '{"cached":null,"ignore_cache":false}'), +(50427, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.658+00', '{"cached":null,"ignore_cache":false}'), +(50428, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:57.937+00', '{"cached":null,"ignore_cache":false}'), +(50429, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:58.064+00', '{"cached":null,"ignore_cache":false}'), +(50430, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:58.089+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50431, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:58.113+00', '{"cached":null,"ignore_cache":false}'), +(50432, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:58.197+00', '{"cached":null,"ignore_cache":false}'), +(50433, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:58.225+00', '{"cached":null,"ignore_cache":false}'), +(50434, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:58.468+00', '{"cached":null,"ignore_cache":false}'), +(50435, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:35:58.505+00', '{"cached":null,"ignore_cache":false}'), +(50436, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:37.865+00', '{"cached":null,"ignore_cache":false}'), +(50437, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:37.885+00', '{"cached":null,"ignore_cache":false}'), +(50438, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:37.888+00', '{"cached":null,"ignore_cache":false}'), +(50439, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:38.015+00', '{"cached":null,"ignore_cache":false}'), +(50440, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:38.105+00', '{"cached":null,"ignore_cache":false}'), +(50441, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:37:38.753+00', '{"cached":null,"ignore_cache":false}'), +(50442, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:28.867+00', '{"cached":null,"ignore_cache":false}'), +(50443, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:28.926+00', '{"cached":null,"ignore_cache":false}'), +(50444, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.245+00', '{"cached":null,"ignore_cache":false}'), +(50445, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.341+00', '{"cached":null,"ignore_cache":false}'), +(50446, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.466+00', '{"cached":null,"ignore_cache":false}'), +(50447, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.617+00', '{"cached":null,"ignore_cache":false}'), +(50448, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:30.793+00', '{"cached":null,"ignore_cache":false}'), +(50449, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:31.753+00', '{"cached":null,"ignore_cache":false}'), +(50450, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.44+00', '{"cached":null,"ignore_cache":false}'), +(50451, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.441+00', '{"cached":null,"ignore_cache":false}'), +(50452, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.442+00', '{"cached":null,"ignore_cache":false}'), +(50453, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.658+00', '{"cached":null,"ignore_cache":false}'), +(50454, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.665+00', '{"cached":null,"ignore_cache":false}'), +(50455, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:32.668+00', '{"cached":null,"ignore_cache":false}'), +(50456, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:33.21+00', '{"cached":null,"ignore_cache":false}'), +(50457, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:33.353+00', '{"cached":null,"ignore_cache":false}'), +(50458, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:41.596+00', '{"cached":null,"ignore_cache":false}'), +(50459, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:42.355+00', '{"cached":null,"ignore_cache":false}'), +(50460, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:42.5+00', '{"cached":null,"ignore_cache":false}'), +(50461, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:45.526+00', '{"cached":null,"ignore_cache":false}'), +(50462, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:47.155+00', '{"cached":null,"ignore_cache":false}'), +(50463, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.137+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50464, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.197+00', '{"cached":null,"ignore_cache":false}'), +(50465, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.449+00', '{"cached":null,"ignore_cache":false}'), +(50466, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:48.655+00', '{"cached":null,"ignore_cache":false}'), +(50467, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:52.271+00', '{"cached":null,"ignore_cache":false}'), +(50468, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:52.464+00', '{"cached":null,"ignore_cache":false}'), +(50469, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:52.797+00', '{"cached":null,"ignore_cache":false}'), +(50470, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:52.798+00', '{"cached":null,"ignore_cache":false}'), +(50471, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:52.845+00', '{"cached":null,"ignore_cache":false}'), +(50472, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:52.957+00', '{"cached":null,"ignore_cache":false}'), +(50473, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:53.19+00', '{"cached":null,"ignore_cache":false}'), +(50474, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:54.664+00', '{"cached":null,"ignore_cache":false}'), +(50475, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:54.843+00', '{"cached":null,"ignore_cache":false}'), +(50476, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:54.865+00', '{"cached":null,"ignore_cache":false}'), +(50477, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.359+00', '{"cached":null,"ignore_cache":false}'), +(50478, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.694+00', '{"cached":null,"ignore_cache":false}'), +(50479, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.696+00', '{"cached":null,"ignore_cache":false}'), +(50480, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.837+00', '{"cached":null,"ignore_cache":false}'), +(50481, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.933+00', '{"cached":null,"ignore_cache":false}'), +(50482, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.941+00', '{"cached":null,"ignore_cache":false}'), +(50483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.945+00', '{"cached":null,"ignore_cache":false}'), +(50484, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:55.964+00', '{"cached":null,"ignore_cache":false}'), +(50485, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.33+00', '{"cached":null,"ignore_cache":false}'), +(50486, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.566+00', '{"cached":null,"ignore_cache":false}'), +(50487, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.627+00', '{"cached":null,"ignore_cache":false}'), +(50488, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.629+00', '{"cached":null,"ignore_cache":false}'), +(50489, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.63+00', '{"cached":null,"ignore_cache":false}'), +(50490, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.643+00', '{"cached":null,"ignore_cache":false}'), +(50491, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.67+00', '{"cached":null,"ignore_cache":false}'), +(50492, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.714+00', '{"cached":null,"ignore_cache":false}'), +(50493, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.784+00', '{"cached":null,"ignore_cache":false}'), +(50494, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.826+00', '{"cached":null,"ignore_cache":false}'), +(50495, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:56.957+00', '{"cached":null,"ignore_cache":false}'), +(50496, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:57.244+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50497, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:57.284+00', '{"cached":null,"ignore_cache":false}'), +(50498, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:57.319+00', '{"cached":null,"ignore_cache":false}'), +(50499, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:57.32+00', '{"cached":null,"ignore_cache":false}'), +(50500, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:58.584+00', '{"cached":null,"ignore_cache":false}'), +(50501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:58.741+00', '{"cached":null,"ignore_cache":false}'), +(50502, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:39:58.743+00', '{"cached":null,"ignore_cache":false}'), +(50503, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:00.634+00', '{"cached":null,"ignore_cache":false}'), +(50504, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:01.135+00', '{"cached":null,"ignore_cache":false}'), +(50505, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:01.749+00', '{"cached":null,"ignore_cache":false}'), +(50506, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:01.75+00', '{"cached":null,"ignore_cache":false}'), +(50507, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:02.017+00', '{"cached":null,"ignore_cache":false}'), +(50508, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:02.991+00', '{"cached":null,"ignore_cache":false}'), +(50509, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:03.028+00', '{"cached":null,"ignore_cache":false}'), +(50510, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:04.28+00', '{"cached":null,"ignore_cache":false}'), +(50511, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:04.322+00', '{"cached":null,"ignore_cache":false}'), +(50512, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:11.215+00', '{"cached":null,"ignore_cache":false}'), +(50513, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:13.258+00', '{"cached":null,"ignore_cache":false}'), +(50514, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:13.97+00', '{"cached":null,"ignore_cache":false}'), +(50515, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:14.164+00', '{"cached":null,"ignore_cache":false}'), +(50516, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:14.558+00', '{"cached":null,"ignore_cache":false}'), +(50517, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:14.585+00', '{"cached":null,"ignore_cache":false}'), +(50518, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:14.604+00', '{"cached":null,"ignore_cache":false}'), +(50519, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:14.689+00', '{"cached":null,"ignore_cache":false}'), +(50520, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:14.714+00', '{"cached":null,"ignore_cache":false}'), +(50521, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:15.594+00', '{"cached":null,"ignore_cache":false}'), +(50522, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:38.939+00', '{"cached":null,"ignore_cache":false}'), +(50523, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:40.564+00', '{"cached":null,"ignore_cache":false}'), +(50524, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:40.634+00', '{"cached":null,"ignore_cache":false}'), +(50525, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:40.656+00', '{"cached":null,"ignore_cache":false}'), +(50526, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:40.671+00', '{"cached":null,"ignore_cache":false}'), +(50527, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.845+00', '{"cached":null,"ignore_cache":false}'), +(50528, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.865+00', '{"cached":null,"ignore_cache":false}'), +(50529, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:41.96+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50530, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.073+00', '{"cached":null,"ignore_cache":false}'), +(50531, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.073+00', '{"cached":null,"ignore_cache":false}'), +(50532, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.086+00', '{"cached":null,"ignore_cache":false}'), +(50533, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.433+00', '{"cached":null,"ignore_cache":false}'), +(50534, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.55+00', '{"cached":null,"ignore_cache":false}'), +(50535, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:42.686+00', '{"cached":null,"ignore_cache":false}'), +(50536, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:43.983+00', '{"cached":null,"ignore_cache":false}'), +(50537, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:44.301+00', '{"cached":null,"ignore_cache":false}'), +(50538, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:44.576+00', '{"cached":null,"ignore_cache":false}'), +(50539, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:44.661+00', '{"cached":null,"ignore_cache":false}'), +(50540, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:44.669+00', '{"cached":null,"ignore_cache":false}'), +(50541, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:44.729+00', '{"cached":null,"ignore_cache":false}'), +(50542, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:45.485+00', '{"cached":null,"ignore_cache":false}'), +(50543, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:45.554+00', '{"cached":null,"ignore_cache":false}'), +(50544, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:45.88+00', '{"cached":null,"ignore_cache":false}'), +(50545, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:46.006+00', '{"cached":null,"ignore_cache":false}'), +(50546, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:46.012+00', '{"cached":null,"ignore_cache":false}'), +(50547, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:46.445+00', '{"cached":null,"ignore_cache":false}'), +(50548, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:46.589+00', '{"cached":null,"ignore_cache":false}'), +(50549, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:46.62+00', '{"cached":null,"ignore_cache":false}'), +(50550, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:46.644+00', '{"cached":null,"ignore_cache":false}'), +(50551, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:47.091+00', '{"cached":null,"ignore_cache":false}'), +(50552, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:40:47.439+00', '{"cached":null,"ignore_cache":false}'), +(50553, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.591+00', '{"cached":null,"ignore_cache":false}'), +(50554, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:13.736+00', '{"cached":null,"ignore_cache":false}'), +(50555, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.867+00', '{"cached":null,"ignore_cache":false}'), +(50556, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:15.972+00', '{"cached":null,"ignore_cache":false}'), +(50557, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:16.169+00', '{"cached":null,"ignore_cache":false}'), +(50558, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:16.637+00', '{"cached":null,"ignore_cache":false}'), +(50559, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:16.749+00', '{"cached":null,"ignore_cache":false}'), +(50560, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:17.214+00', '{"cached":null,"ignore_cache":false}'), +(50561, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:17.233+00', '{"cached":null,"ignore_cache":false}'), +(50562, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:18.229+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50563, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:19.629+00', '{"cached":null,"ignore_cache":false}'), +(50564, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:19.681+00', '{"cached":null,"ignore_cache":false}'), +(50565, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:19.754+00', '{"cached":null,"ignore_cache":false}'), +(50566, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:21.083+00', '{"cached":null,"ignore_cache":false}'), +(50567, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:22.46+00', '{"cached":null,"ignore_cache":false}'), +(50568, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:22.474+00', '{"cached":null,"ignore_cache":false}'), +(50569, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:25.889+00', '{"cached":null,"ignore_cache":false}'), +(50570, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:25.919+00', '{"cached":null,"ignore_cache":false}'), +(50571, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:28.951+00', '{"cached":null,"ignore_cache":false}'), +(50572, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:29.066+00', '{"cached":null,"ignore_cache":false}'), +(50573, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:30.165+00', '{"cached":null,"ignore_cache":false}'), +(50574, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:32.126+00', '{"cached":null,"ignore_cache":false}'), +(50575, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:32.711+00', '{"cached":null,"ignore_cache":false}'), +(50576, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:32.728+00', '{"cached":null,"ignore_cache":false}'), +(50577, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:32.731+00', '{"cached":null,"ignore_cache":false}'), +(50578, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:32.849+00', '{"cached":null,"ignore_cache":false}'), +(50579, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:33.866+00', '{"cached":null,"ignore_cache":false}'), +(50580, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:35.788+00', '{"cached":null,"ignore_cache":false}'), +(50581, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:40.866+00', '{"cached":null,"ignore_cache":false}'), +(50582, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:43.3+00', '{"cached":null,"ignore_cache":false}'), +(50583, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:45.708+00', '{"cached":null,"ignore_cache":false}'), +(50584, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:45.774+00', '{"cached":null,"ignore_cache":false}'), +(50585, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:46.139+00', '{"cached":null,"ignore_cache":false}'), +(50586, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:47.637+00', '{"cached":null,"ignore_cache":false}'), +(50587, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:50.523+00', '{"cached":null,"ignore_cache":false}'), +(50588, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:51.671+00', '{"cached":null,"ignore_cache":false}'), +(50589, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:52.882+00', '{"cached":null,"ignore_cache":false}'), +(50590, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:54.396+00', '{"cached":null,"ignore_cache":false}'), +(50591, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:59.334+00', '{"cached":null,"ignore_cache":false}'), +(50592, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:59.476+00', '{"cached":null,"ignore_cache":false}'), +(50593, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:59.519+00', '{"cached":null,"ignore_cache":false}'), +(50594, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:59.552+00', '{"cached":null,"ignore_cache":false}'), +(50595, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:41:59.69+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50596, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:01.02+00', '{"cached":null,"ignore_cache":false}'), +(50597, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:04.572+00', '{"cached":null,"ignore_cache":false}'), +(50598, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:42:43.221+00', '{"cached":null,"ignore_cache":false}'), +(50599, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:43:01.049+00', '{"cached":null,"ignore_cache":false}'), +(50600, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:01.155+00', '{"cached":null,"ignore_cache":false}'), +(50601, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.332+00', '{"cached":null,"ignore_cache":false}'), +(50602, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.484+00', '{"cached":null,"ignore_cache":false}'), +(50603, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.527+00', '{"cached":null,"ignore_cache":false}'), +(50604, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.717+00', '{"cached":null,"ignore_cache":false}'), +(50605, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.72+00', '{"cached":null,"ignore_cache":false}'), +(50606, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.769+00', '{"cached":null,"ignore_cache":false}'), +(50607, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.773+00', '{"cached":null,"ignore_cache":false}'), +(50608, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.776+00', '{"cached":null,"ignore_cache":false}'), +(50609, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.875+00', '{"cached":null,"ignore_cache":false}'), +(50610, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:47:02.879+00', '{"cached":null,"ignore_cache":false}'), +(50632, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:47.078+00', '{"cached":null,"ignore_cache":false}'), +(50633, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:47.124+00', '{"cached":null,"ignore_cache":false}'), +(50634, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:47.7+00', '{"cached":null,"ignore_cache":false}'), +(50635, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:47.728+00', '{"cached":null,"ignore_cache":false}'), +(50636, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:47.798+00', '{"cached":null,"ignore_cache":false}'), +(50637, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:47.824+00', '{"cached":null,"ignore_cache":false}'), +(50638, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:47.909+00', '{"cached":null,"ignore_cache":false}'), +(50639, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:48.399+00', '{"cached":null,"ignore_cache":false}'), +(50640, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:48.659+00', '{"cached":null,"ignore_cache":false}'), +(50641, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:48.665+00', '{"cached":null,"ignore_cache":false}'), +(50642, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:49.001+00', '{"cached":null,"ignore_cache":false}'), +(50643, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:49.221+00', '{"cached":null,"ignore_cache":false}'), +(50644, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:49.306+00', '{"cached":null,"ignore_cache":false}'), +(50645, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:49.561+00', '{"cached":null,"ignore_cache":false}'), +(50646, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:49.763+00', '{"cached":null,"ignore_cache":false}'), +(50647, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:50.14+00', '{"cached":null,"ignore_cache":false}'), +(50648, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:50.185+00', '{"cached":null,"ignore_cache":false}'), +(50649, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:50.603+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50650, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:50.813+00', '{"cached":null,"ignore_cache":false}'), +(50651, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:50.95+00', '{"cached":null,"ignore_cache":false}'), +(50652, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:50.96+00', '{"cached":null,"ignore_cache":false}'), +(50653, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:51.632+00', '{"cached":null,"ignore_cache":false}'), +(50654, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:51.639+00', '{"cached":null,"ignore_cache":false}'), +(50655, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:51.651+00', '{"cached":null,"ignore_cache":false}'), +(50656, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:51.689+00', '{"cached":null,"ignore_cache":false}'), +(50657, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:52.265+00', '{"cached":null,"ignore_cache":false}'), +(50658, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:52.321+00', '{"cached":null,"ignore_cache":false}'), +(50659, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:52.324+00', '{"cached":null,"ignore_cache":false}'), +(50660, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:52.514+00', '{"cached":null,"ignore_cache":false}'), +(50661, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:52.702+00', '{"cached":null,"ignore_cache":false}'), +(50662, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:52.746+00', '{"cached":null,"ignore_cache":false}'), +(50663, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:48:52.985+00', '{"cached":null,"ignore_cache":false}'), +(50664, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.473+00', '{"cached":null,"ignore_cache":false}'), +(50665, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:03.551+00', '{"cached":null,"ignore_cache":false}'), +(50666, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:04.091+00', '{"cached":null,"ignore_cache":false}'), +(50667, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:04.133+00', '{"cached":null,"ignore_cache":false}'), +(50668, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:05.125+00', '{"cached":null,"ignore_cache":false}'), +(50669, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:05.545+00', '{"cached":null,"ignore_cache":false}'), +(50670, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:05.585+00', '{"cached":null,"ignore_cache":false}'), +(50671, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:05.684+00', '{"cached":null,"ignore_cache":false}'), +(50672, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:05.708+00', '{"cached":null,"ignore_cache":false}'), +(50673, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:06.436+00', '{"cached":null,"ignore_cache":false}'), +(50674, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:06.641+00', '{"cached":null,"ignore_cache":false}'), +(50675, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:06.681+00', '{"cached":null,"ignore_cache":false}'), +(50676, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:06.828+00', '{"cached":null,"ignore_cache":false}'), +(50677, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:07.005+00', '{"cached":null,"ignore_cache":false}'), +(50678, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:07.216+00', '{"cached":null,"ignore_cache":false}'), +(50679, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:07.692+00', '{"cached":null,"ignore_cache":false}'), +(50680, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:07.876+00', '{"cached":null,"ignore_cache":false}'), +(50681, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:08.205+00', '{"cached":null,"ignore_cache":false}'), +(50682, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:08.774+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50683, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:08.778+00', '{"cached":null,"ignore_cache":false}'), +(50684, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:08.787+00', '{"cached":null,"ignore_cache":false}'), +(50685, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:08.79+00', '{"cached":null,"ignore_cache":false}'), +(50686, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:09.407+00', '{"cached":null,"ignore_cache":false}'), +(50687, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:09.594+00', '{"cached":null,"ignore_cache":false}'), +(50688, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:09.631+00', '{"cached":null,"ignore_cache":false}'), +(50689, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:09.677+00', '{"cached":null,"ignore_cache":false}'), +(50690, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:10.103+00', '{"cached":null,"ignore_cache":false}'), +(50691, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:10.839+00', '{"cached":null,"ignore_cache":false}'), +(50692, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:10.989+00', '{"cached":null,"ignore_cache":false}'), +(50693, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:11.56+00', '{"cached":null,"ignore_cache":false}'), +(50694, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:11.635+00', '{"cached":null,"ignore_cache":false}'), +(50695, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:49:11.826+00', '{"cached":null,"ignore_cache":false}'), +(50696, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.106+00', '{"cached":null,"ignore_cache":false}'), +(50697, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.199+00', '{"cached":null,"ignore_cache":false}'), +(50698, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.223+00', '{"cached":null,"ignore_cache":false}'), +(50699, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.25+00', '{"cached":null,"ignore_cache":false}'), +(50700, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.37+00', '{"cached":null,"ignore_cache":false}'), +(50701, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:34.519+00', '{"cached":null,"ignore_cache":false}'), +(50702, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.008+00', '{"cached":null,"ignore_cache":false}'), +(50703, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:35.734+00', '{"cached":null,"ignore_cache":false}'), +(50704, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:36.206+00', '{"cached":null,"ignore_cache":false}'), +(50705, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:36.581+00', '{"cached":null,"ignore_cache":false}'), +(50706, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:37.448+00', '{"cached":null,"ignore_cache":false}'), +(50707, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:38.027+00', '{"cached":null,"ignore_cache":false}'), +(50708, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:38.079+00', '{"cached":null,"ignore_cache":false}'), +(50709, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:38.46+00', '{"cached":null,"ignore_cache":false}'), +(50710, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:38.978+00', '{"cached":null,"ignore_cache":false}'), +(50711, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:39.242+00', '{"cached":null,"ignore_cache":false}'), +(50712, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:39.576+00', '{"cached":null,"ignore_cache":false}'), +(50713, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:39.839+00', '{"cached":null,"ignore_cache":false}'), +(50714, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:39.855+00', '{"cached":null,"ignore_cache":false}'), +(50715, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:39.858+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50716, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:40.123+00', '{"cached":null,"ignore_cache":false}'), +(50717, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:40.248+00', '{"cached":null,"ignore_cache":false}'), +(50718, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:40.384+00', '{"cached":null,"ignore_cache":false}'), +(50719, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:40.625+00', '{"cached":null,"ignore_cache":false}'), +(50720, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:40.715+00', '{"cached":null,"ignore_cache":false}'), +(50721, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:41.066+00', '{"cached":null,"ignore_cache":false}'), +(50722, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:41.068+00', '{"cached":null,"ignore_cache":false}'), +(50723, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:41.104+00', '{"cached":null,"ignore_cache":false}'), +(50724, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:41.185+00', '{"cached":null,"ignore_cache":false}'), +(50725, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:41.195+00', '{"cached":null,"ignore_cache":false}'), +(50726, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:41.298+00', '{"cached":null,"ignore_cache":false}'), +(50727, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:50:41.599+00', '{"cached":null,"ignore_cache":false}'), +(50728, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:26.833+00', '{"cached":null,"ignore_cache":false}'), +(50729, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:27.356+00', '{"cached":null,"ignore_cache":false}'), +(50730, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:27.61+00', '{"cached":null,"ignore_cache":false}'), +(50731, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.333+00', '{"cached":null,"ignore_cache":false}'), +(50732, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.361+00', '{"cached":null,"ignore_cache":false}'), +(50733, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:28.687+00', '{"cached":null,"ignore_cache":false}'), +(50734, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:29+00', '{"cached":null,"ignore_cache":false}'), +(50735, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:29.023+00', '{"cached":null,"ignore_cache":false}'), +(50736, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:29.81+00', '{"cached":null,"ignore_cache":false}'), +(50737, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:29.876+00', '{"cached":null,"ignore_cache":false}'), +(50738, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:29.92+00', '{"cached":null,"ignore_cache":false}'), +(50739, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:30.322+00', '{"cached":null,"ignore_cache":false}'), +(50740, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:30.384+00', '{"cached":null,"ignore_cache":false}'), +(50741, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:30.613+00', '{"cached":null,"ignore_cache":false}'), +(50742, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:30.833+00', '{"cached":null,"ignore_cache":false}'), +(50743, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:30.907+00', '{"cached":null,"ignore_cache":false}'), +(50744, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.51+00', '{"cached":null,"ignore_cache":false}'), +(50745, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.767+00', '{"cached":null,"ignore_cache":false}'), +(50746, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.97+00', '{"cached":null,"ignore_cache":false}'), +(50747, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:33.989+00', '{"cached":null,"ignore_cache":false}'), +(50748, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:34.069+00', '{"cached":null,"ignore_cache":false}'), +(50749, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.152+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50750, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.278+00', '{"cached":null,"ignore_cache":false}'), +(50751, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:35.282+00', '{"cached":null,"ignore_cache":false}'), +(50752, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:36.368+00', '{"cached":null,"ignore_cache":false}'), +(50753, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:36.581+00', '{"cached":null,"ignore_cache":false}'), +(50754, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:37.58+00', '{"cached":null,"ignore_cache":false}'), +(50755, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:37.774+00', '{"cached":null,"ignore_cache":false}'), +(50756, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:38.866+00', '{"cached":null,"ignore_cache":false}'), +(50757, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:39.001+00', '{"cached":null,"ignore_cache":false}'), +(50758, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:39.757+00', '{"cached":null,"ignore_cache":false}'), +(50759, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:39.759+00', '{"cached":null,"ignore_cache":false}'), +(50760, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:39.774+00', '{"cached":null,"ignore_cache":false}'), +(50761, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:39.796+00', '{"cached":null,"ignore_cache":false}'), +(50762, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:40.19+00', '{"cached":null,"ignore_cache":false}'), +(50763, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:40.193+00', '{"cached":null,"ignore_cache":false}'), +(50764, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:40.453+00', '{"cached":null,"ignore_cache":false}'), +(50765, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:40.51+00', '{"cached":null,"ignore_cache":false}'), +(50766, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:41.033+00', '{"cached":null,"ignore_cache":false}'), +(50767, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:41.064+00', '{"cached":null,"ignore_cache":false}'), +(50768, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:41.078+00', '{"cached":null,"ignore_cache":false}'), +(50769, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:41.461+00', '{"cached":null,"ignore_cache":false}'), +(50770, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:41.55+00', '{"cached":null,"ignore_cache":false}'), +(50771, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:41.608+00', '{"cached":null,"ignore_cache":false}'), +(50772, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:47.881+00', '{"cached":null,"ignore_cache":false}'), +(50773, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:47.884+00', '{"cached":null,"ignore_cache":false}'), +(50774, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:48.153+00', '{"cached":null,"ignore_cache":false}'), +(50775, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:48.193+00', '{"cached":null,"ignore_cache":false}'), +(50776, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:48.197+00', '{"cached":null,"ignore_cache":false}'), +(50777, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.333+00', '{"cached":null,"ignore_cache":false}'), +(50778, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.482+00', '{"cached":null,"ignore_cache":false}'), +(50779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.626+00', '{"cached":null,"ignore_cache":false}'), +(50780, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.883+00', '{"cached":null,"ignore_cache":false}'), +(50781, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:49.925+00', '{"cached":null,"ignore_cache":false}'), +(50782, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.364+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50783, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:50.474+00', '{"cached":null,"ignore_cache":false}'), +(50784, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.862+00', '{"cached":null,"ignore_cache":false}'), +(50785, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:51.957+00', '{"cached":null,"ignore_cache":false}'), +(50786, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:52.185+00', '{"cached":null,"ignore_cache":false}'), +(50787, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:52.443+00', '{"cached":null,"ignore_cache":false}'), +(50788, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:52.635+00', '{"cached":null,"ignore_cache":false}'), +(50789, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:53.125+00', '{"cached":null,"ignore_cache":false}'), +(50790, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:53.748+00', '{"cached":null,"ignore_cache":false}'), +(50791, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:53.998+00', '{"cached":null,"ignore_cache":false}'), +(50792, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:54.241+00', '{"cached":null,"ignore_cache":false}'), +(50793, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:54.412+00', '{"cached":null,"ignore_cache":false}'), +(50794, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:54.947+00', '{"cached":null,"ignore_cache":false}'), +(50795, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:54.97+00', '{"cached":null,"ignore_cache":false}'), +(50796, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.103+00', '{"cached":null,"ignore_cache":false}'), +(50797, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.168+00', '{"cached":null,"ignore_cache":false}'), +(50798, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.265+00', '{"cached":null,"ignore_cache":false}'), +(50799, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.286+00', '{"cached":null,"ignore_cache":false}'), +(50800, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.481+00', '{"cached":null,"ignore_cache":false}'), +(50801, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.503+00', '{"cached":null,"ignore_cache":false}'), +(50802, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.869+00', '{"cached":null,"ignore_cache":false}'), +(50803, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:55.947+00', '{"cached":null,"ignore_cache":false}'), +(50804, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:57.667+00', '{"cached":null,"ignore_cache":false}'), +(50805, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:58.077+00', '{"cached":null,"ignore_cache":false}'), +(50806, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:58.093+00', '{"cached":null,"ignore_cache":false}'), +(50807, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:58.221+00', '{"cached":null,"ignore_cache":false}'), +(50808, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:58.439+00', '{"cached":null,"ignore_cache":false}'), +(50809, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:58.825+00', '{"cached":null,"ignore_cache":false}'), +(50810, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.18+00', '{"cached":null,"ignore_cache":false}'), +(50811, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.182+00', '{"cached":null,"ignore_cache":false}'), +(50812, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.213+00', '{"cached":null,"ignore_cache":false}'), +(50813, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.424+00', '{"cached":null,"ignore_cache":false}'), +(50814, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:51:59.504+00', '{"cached":null,"ignore_cache":false}'), +(50815, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.298+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50816, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:00.939+00', '{"cached":null,"ignore_cache":false}'), +(50817, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:01.228+00', '{"cached":null,"ignore_cache":false}'), +(50818, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:01.237+00', '{"cached":null,"ignore_cache":false}'), +(50819, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:01.453+00', '{"cached":null,"ignore_cache":false}'), +(50820, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:01.513+00', '{"cached":null,"ignore_cache":false}'), +(50821, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:01.841+00', '{"cached":null,"ignore_cache":false}'), +(50822, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:02.097+00', '{"cached":null,"ignore_cache":false}'), +(50823, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:02.375+00', '{"cached":null,"ignore_cache":false}'), +(50824, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:02.637+00', '{"cached":null,"ignore_cache":false}'), +(50825, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:02.801+00', '{"cached":null,"ignore_cache":false}'), +(50826, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:02.952+00', '{"cached":null,"ignore_cache":false}'), +(50827, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:03.974+00', '{"cached":null,"ignore_cache":false}'), +(50828, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:04.188+00', '{"cached":null,"ignore_cache":false}'), +(50829, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:04.662+00', '{"cached":null,"ignore_cache":false}'), +(50830, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:04.892+00', '{"cached":null,"ignore_cache":false}'), +(50831, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:04.896+00', '{"cached":null,"ignore_cache":false}'), +(50832, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:05.046+00', '{"cached":null,"ignore_cache":false}'), +(50833, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:05.18+00', '{"cached":null,"ignore_cache":false}'), +(50834, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:05.295+00', '{"cached":null,"ignore_cache":false}'), +(50835, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:05.523+00', '{"cached":null,"ignore_cache":false}'), +(50836, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:14.769+00', '{"cached":null,"ignore_cache":false}'), +(50837, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:15.048+00', '{"cached":null,"ignore_cache":false}'), +(50838, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:15.113+00', '{"cached":null,"ignore_cache":false}'), +(50839, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.189+00', '{"cached":null,"ignore_cache":false}'), +(50840, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.215+00', '{"cached":null,"ignore_cache":false}'), +(50841, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.771+00', '{"cached":null,"ignore_cache":false}'), +(50842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.781+00', '{"cached":null,"ignore_cache":false}'), +(50843, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.814+00', '{"cached":null,"ignore_cache":false}'), +(50844, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.815+00', '{"cached":null,"ignore_cache":false}'), +(50845, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:16.837+00', '{"cached":null,"ignore_cache":false}'), +(50846, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.136+00', '{"cached":null,"ignore_cache":false}'), +(50847, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.152+00', '{"cached":null,"ignore_cache":false}'), +(50848, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.453+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50849, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.625+00', '{"cached":null,"ignore_cache":false}'), +(50850, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.643+00', '{"cached":null,"ignore_cache":false}'), +(50851, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:17.667+00', '{"cached":null,"ignore_cache":false}'), +(50852, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:19.253+00', '{"cached":null,"ignore_cache":false}'), +(50853, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:19.327+00', '{"cached":null,"ignore_cache":false}'), +(50854, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.149+00', '{"cached":null,"ignore_cache":false}'), +(50855, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.369+00', '{"cached":null,"ignore_cache":false}'), +(50856, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.451+00', '{"cached":null,"ignore_cache":false}'), +(50857, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.492+00', '{"cached":null,"ignore_cache":false}'), +(50858, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.511+00', '{"cached":null,"ignore_cache":false}'), +(50859, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.638+00', '{"cached":null,"ignore_cache":false}'), +(50860, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.735+00', '{"cached":null,"ignore_cache":false}'), +(50861, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.758+00', '{"cached":null,"ignore_cache":false}'), +(50862, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.759+00', '{"cached":null,"ignore_cache":false}'), +(50863, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.793+00', '{"cached":null,"ignore_cache":false}'), +(50864, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:52:20.836+00', '{"cached":null,"ignore_cache":false}'), +(50865, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:43.829+00', '{"cached":null,"ignore_cache":false}'), +(50866, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:43.837+00', '{"cached":null,"ignore_cache":false}'), +(50867, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.18+00', '{"cached":null,"ignore_cache":false}'), +(50868, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.547+00', '{"cached":null,"ignore_cache":false}'), +(50869, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.744+00', '{"cached":null,"ignore_cache":false}'), +(50870, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.963+00', '{"cached":null,"ignore_cache":false}'), +(50871, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:44.978+00', '{"cached":null,"ignore_cache":false}'), +(50872, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.027+00', '{"cached":null,"ignore_cache":false}'), +(50873, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.195+00', '{"cached":null,"ignore_cache":false}'), +(50874, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.269+00', '{"cached":null,"ignore_cache":false}'), +(50875, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.3+00', '{"cached":null,"ignore_cache":false}'), +(50876, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.433+00', '{"cached":null,"ignore_cache":false}'), +(50877, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.45+00', '{"cached":null,"ignore_cache":false}'), +(50878, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.6+00', '{"cached":null,"ignore_cache":false}'), +(50879, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.813+00', '{"cached":null,"ignore_cache":false}'), +(50880, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:45.843+00', '{"cached":null,"ignore_cache":false}'), +(50881, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.061+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50882, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.16+00', '{"cached":null,"ignore_cache":false}'), +(50883, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.166+00', '{"cached":null,"ignore_cache":false}'), +(50884, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.185+00', '{"cached":null,"ignore_cache":false}'), +(50885, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.229+00', '{"cached":null,"ignore_cache":false}'), +(50886, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:53:59.239+00', '{"cached":null,"ignore_cache":false}'), +(50887, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:00.21+00', '{"cached":null,"ignore_cache":false}'), +(50888, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:00.295+00', '{"cached":null,"ignore_cache":false}'), +(50889, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:00.338+00', '{"cached":null,"ignore_cache":false}'), +(50890, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:00.345+00', '{"cached":null,"ignore_cache":false}'), +(50891, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:00.476+00', '{"cached":null,"ignore_cache":false}'), +(50892, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:00.482+00', '{"cached":null,"ignore_cache":false}'), +(50893, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.603+00', '{"cached":null,"ignore_cache":false}'), +(50894, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.625+00', '{"cached":null,"ignore_cache":false}'), +(50895, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.701+00', '{"cached":null,"ignore_cache":false}'), +(50896, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:01.9+00', '{"cached":null,"ignore_cache":false}'), +(50897, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.016+00', '{"cached":null,"ignore_cache":false}'), +(50898, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.125+00', '{"cached":null,"ignore_cache":false}'), +(50899, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.158+00', '{"cached":null,"ignore_cache":false}'), +(50900, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.256+00', '{"cached":null,"ignore_cache":false}'), +(50901, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.478+00', '{"cached":null,"ignore_cache":false}'), +(50902, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.569+00', '{"cached":null,"ignore_cache":false}'), +(50903, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:02.912+00', '{"cached":null,"ignore_cache":false}'), +(50904, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.133+00', '{"cached":null,"ignore_cache":false}'), +(50905, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.257+00', '{"cached":null,"ignore_cache":false}'), +(50906, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.273+00', '{"cached":null,"ignore_cache":false}'), +(50907, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.281+00', '{"cached":null,"ignore_cache":false}'), +(50908, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.313+00', '{"cached":null,"ignore_cache":false}'), +(50909, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.416+00', '{"cached":null,"ignore_cache":false}'), +(50910, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:03.93+00', '{"cached":null,"ignore_cache":false}'), +(50911, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:04.294+00', '{"cached":null,"ignore_cache":false}'), +(50912, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:04.734+00', '{"cached":null,"ignore_cache":false}'), +(50913, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.936+00', '{"cached":null,"ignore_cache":false}'), +(50914, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:05.989+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50915, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.073+00', '{"cached":null,"ignore_cache":false}'), +(50916, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.096+00', '{"cached":null,"ignore_cache":false}'), +(50917, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.111+00', '{"cached":null,"ignore_cache":false}'), +(50918, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.129+00', '{"cached":null,"ignore_cache":false}'), +(50919, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.687+00', '{"cached":null,"ignore_cache":false}'), +(50920, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.902+00', '{"cached":null,"ignore_cache":false}'), +(50921, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.932+00', '{"cached":null,"ignore_cache":false}'), +(50922, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:06.943+00', '{"cached":null,"ignore_cache":false}'), +(50923, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:07.188+00', '{"cached":null,"ignore_cache":false}'), +(50924, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:07.393+00', '{"cached":null,"ignore_cache":false}'), +(50925, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:07.468+00', '{"cached":null,"ignore_cache":false}'), +(50926, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:07.538+00', '{"cached":null,"ignore_cache":false}'), +(50927, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:07.698+00', '{"cached":null,"ignore_cache":false}'), +(50928, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:07.75+00', '{"cached":null,"ignore_cache":false}'), +(50929, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.152+00', '{"cached":null,"ignore_cache":false}'), +(50930, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.216+00', '{"cached":null,"ignore_cache":false}'), +(50931, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.621+00', '{"cached":null,"ignore_cache":false}'), +(50932, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.741+00', '{"cached":null,"ignore_cache":false}'), +(50933, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.913+00', '{"cached":null,"ignore_cache":false}'), +(50934, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:49.981+00', '{"cached":null,"ignore_cache":false}'), +(50935, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.049+00', '{"cached":null,"ignore_cache":false}'), +(50936, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.177+00', '{"cached":null,"ignore_cache":false}'), +(50937, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.293+00', '{"cached":null,"ignore_cache":false}'), +(50938, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.301+00', '{"cached":null,"ignore_cache":false}'), +(50939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.508+00', '{"cached":null,"ignore_cache":false}'), +(50940, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.519+00', '{"cached":null,"ignore_cache":false}'), +(50941, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:50.537+00', '{"cached":null,"ignore_cache":false}'), +(50942, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.066+00', '{"cached":null,"ignore_cache":false}'), +(50943, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.287+00', '{"cached":null,"ignore_cache":false}'), +(50944, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.8+00', '{"cached":null,"ignore_cache":false}'), +(50945, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.825+00', '{"cached":null,"ignore_cache":false}'), +(50946, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.897+00', '{"cached":null,"ignore_cache":false}'), +(50947, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:51.993+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50948, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.049+00', '{"cached":null,"ignore_cache":false}'), +(50949, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.116+00', '{"cached":null,"ignore_cache":false}'), +(50950, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.134+00', '{"cached":null,"ignore_cache":false}'), +(50951, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.343+00', '{"cached":null,"ignore_cache":false}'), +(50952, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.449+00', '{"cached":null,"ignore_cache":false}'), +(50953, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.485+00', '{"cached":null,"ignore_cache":false}'), +(50954, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.613+00', '{"cached":null,"ignore_cache":false}'), +(50955, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.669+00', '{"cached":null,"ignore_cache":false}'), +(50956, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:52.721+00', '{"cached":null,"ignore_cache":false}'), +(50957, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:53.196+00', '{"cached":null,"ignore_cache":false}'), +(50958, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:54:53.255+00', '{"cached":null,"ignore_cache":false}'), +(50959, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.036+00', '{"cached":null,"ignore_cache":false}'), +(50960, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.071+00', '{"cached":null,"ignore_cache":false}'), +(50961, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.211+00', '{"cached":null,"ignore_cache":false}'), +(50962, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.271+00', '{"cached":null,"ignore_cache":false}'), +(50963, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.545+00', '{"cached":null,"ignore_cache":false}'), +(50964, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.643+00', '{"cached":null,"ignore_cache":false}'), +(50965, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.691+00', '{"cached":null,"ignore_cache":false}'), +(50966, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.814+00', '{"cached":null,"ignore_cache":false}'), +(50967, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:24.965+00', '{"cached":null,"ignore_cache":false}'), +(50968, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.07+00', '{"cached":null,"ignore_cache":false}'), +(50969, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.078+00', '{"cached":null,"ignore_cache":false}'), +(50970, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.342+00', '{"cached":null,"ignore_cache":false}'), +(50971, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.635+00', '{"cached":null,"ignore_cache":false}'), +(50972, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.644+00', '{"cached":null,"ignore_cache":false}'), +(50973, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.725+00', '{"cached":null,"ignore_cache":false}'), +(50974, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:25.825+00', '{"cached":null,"ignore_cache":false}'), +(50975, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.001+00', '{"cached":null,"ignore_cache":false}'), +(50976, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.054+00', '{"cached":null,"ignore_cache":false}'), +(50977, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.094+00', '{"cached":null,"ignore_cache":false}'), +(50978, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.245+00', '{"cached":null,"ignore_cache":false}'), +(50979, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.378+00', '{"cached":null,"ignore_cache":false}'), +(50980, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.457+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(50981, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.572+00', '{"cached":null,"ignore_cache":false}'), +(50982, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:26.892+00', '{"cached":null,"ignore_cache":false}'), +(50983, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:27.006+00', '{"cached":null,"ignore_cache":false}'), +(50984, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:27.218+00', '{"cached":null,"ignore_cache":false}'), +(50985, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:27.235+00', '{"cached":null,"ignore_cache":false}'), +(50986, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:27.534+00', '{"cached":null,"ignore_cache":false}'), +(50987, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:27.969+00', '{"cached":null,"ignore_cache":false}'), +(50988, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:28.066+00', '{"cached":null,"ignore_cache":false}'), +(50989, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.277+00', '{"cached":null,"ignore_cache":false}'), +(50990, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.438+00', '{"cached":null,"ignore_cache":false}'), +(50991, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.517+00', '{"cached":null,"ignore_cache":false}'), +(50992, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.575+00', '{"cached":null,"ignore_cache":false}'), +(50993, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.643+00', '{"cached":null,"ignore_cache":false}'), +(50994, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:38.656+00', '{"cached":null,"ignore_cache":false}'), +(50995, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.376+00', '{"cached":null,"ignore_cache":false}'), +(50996, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.515+00', '{"cached":null,"ignore_cache":false}'), +(50997, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.673+00', '{"cached":null,"ignore_cache":false}'), +(50998, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.79+00', '{"cached":null,"ignore_cache":false}'), +(50999, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.83+00', '{"cached":null,"ignore_cache":false}'), +(51000, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.876+00', '{"cached":null,"ignore_cache":false}'), +(51001, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.901+00', '{"cached":null,"ignore_cache":false}'), +(51002, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:39.92+00', '{"cached":null,"ignore_cache":false}'), +(51003, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:40.13+00', '{"cached":null,"ignore_cache":false}'), +(51004, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:40.162+00', '{"cached":null,"ignore_cache":false}'), +(51005, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.181+00', '{"cached":null,"ignore_cache":false}'), +(51006, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.192+00', '{"cached":null,"ignore_cache":false}'), +(51007, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.465+00', '{"cached":null,"ignore_cache":false}'), +(51008, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.467+00', '{"cached":null,"ignore_cache":false}'), +(51009, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.501+00', '{"cached":null,"ignore_cache":false}'), +(51010, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:44.576+00', '{"cached":null,"ignore_cache":false}'), +(51011, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.073+00', '{"cached":null,"ignore_cache":false}'), +(51012, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.154+00', '{"cached":null,"ignore_cache":false}'), +(51013, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.24+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51014, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.293+00', '{"cached":null,"ignore_cache":false}'), +(51015, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.468+00', '{"cached":null,"ignore_cache":false}'), +(51016, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.615+00', '{"cached":null,"ignore_cache":false}'), +(51017, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.804+00', '{"cached":null,"ignore_cache":false}'), +(51018, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:45.918+00', '{"cached":null,"ignore_cache":false}'), +(51019, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.065+00', '{"cached":null,"ignore_cache":false}'), +(51020, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.268+00', '{"cached":null,"ignore_cache":false}'), +(51021, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.55+00', '{"cached":null,"ignore_cache":false}'), +(51022, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.551+00', '{"cached":null,"ignore_cache":false}'), +(51023, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.847+00', '{"cached":null,"ignore_cache":false}'), +(51024, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.972+00', '{"cached":null,"ignore_cache":false}'), +(51025, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:46.975+00', '{"cached":null,"ignore_cache":false}'), +(51026, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.115+00', '{"cached":null,"ignore_cache":false}'), +(51027, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.241+00', '{"cached":null,"ignore_cache":false}'), +(51028, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.32+00', '{"cached":null,"ignore_cache":false}'), +(51029, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.51+00', '{"cached":null,"ignore_cache":false}'), +(51030, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.805+00', '{"cached":null,"ignore_cache":false}'), +(51031, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.873+00', '{"cached":null,"ignore_cache":false}'), +(51032, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.874+00', '{"cached":null,"ignore_cache":false}'), +(51033, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:47.919+00', '{"cached":null,"ignore_cache":false}'), +(51034, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:48.111+00', '{"cached":null,"ignore_cache":false}'), +(51035, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:48.124+00', '{"cached":null,"ignore_cache":false}'), +(51036, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:48.436+00', '{"cached":null,"ignore_cache":false}'), +(51037, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:48.46+00', '{"cached":null,"ignore_cache":false}'), +(51038, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:48.49+00', '{"cached":null,"ignore_cache":false}'), +(51039, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:48.556+00', '{"cached":null,"ignore_cache":false}'), +(51040, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:48.986+00', '{"cached":null,"ignore_cache":false}'), +(51041, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.097+00', '{"cached":null,"ignore_cache":false}'), +(51042, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.234+00', '{"cached":null,"ignore_cache":false}'), +(51043, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.28+00', '{"cached":null,"ignore_cache":false}'), +(51044, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.513+00', '{"cached":null,"ignore_cache":false}'), +(51045, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.613+00', '{"cached":null,"ignore_cache":false}'), +(51046, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:49.948+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51047, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.199+00', '{"cached":null,"ignore_cache":false}'), +(51048, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.203+00', '{"cached":null,"ignore_cache":false}'), +(51049, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.413+00', '{"cached":null,"ignore_cache":false}'), +(51050, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.433+00', '{"cached":null,"ignore_cache":false}'), +(51051, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.483+00', '{"cached":null,"ignore_cache":false}'), +(51052, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.543+00', '{"cached":null,"ignore_cache":false}'), +(51053, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.659+00', '{"cached":null,"ignore_cache":false}'), +(51054, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.673+00', '{"cached":null,"ignore_cache":false}'), +(51055, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:50.753+00', '{"cached":null,"ignore_cache":false}'), +(51056, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:51.438+00', '{"cached":null,"ignore_cache":false}'), +(51057, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:51.561+00', '{"cached":null,"ignore_cache":false}'), +(51058, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:51.623+00', '{"cached":null,"ignore_cache":false}'), +(51059, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:51.884+00', '{"cached":null,"ignore_cache":false}'), +(51060, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:52.045+00', '{"cached":null,"ignore_cache":false}'), +(51061, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:52.113+00', '{"cached":null,"ignore_cache":false}'), +(51062, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:52.309+00', '{"cached":null,"ignore_cache":false}'), +(51063, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:52.424+00', '{"cached":null,"ignore_cache":false}'), +(51064, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:52.643+00', '{"cached":null,"ignore_cache":false}'), +(51065, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.664+00', '{"cached":null,"ignore_cache":false}'), +(51066, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.745+00', '{"cached":null,"ignore_cache":false}'), +(51067, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.768+00', '{"cached":null,"ignore_cache":false}'), +(51068, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.793+00', '{"cached":null,"ignore_cache":false}'), +(51069, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.833+00', '{"cached":null,"ignore_cache":false}'), +(51070, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:54.845+00', '{"cached":null,"ignore_cache":false}'), +(51071, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.471+00', '{"cached":null,"ignore_cache":false}'), +(51072, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.476+00', '{"cached":null,"ignore_cache":false}'), +(51073, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:55.977+00', '{"cached":null,"ignore_cache":false}'), +(51074, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.036+00', '{"cached":null,"ignore_cache":false}'), +(51075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.089+00', '{"cached":null,"ignore_cache":false}'), +(51076, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.13+00', '{"cached":null,"ignore_cache":false}'), +(51077, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.331+00', '{"cached":null,"ignore_cache":false}'), +(51078, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.415+00', '{"cached":null,"ignore_cache":false}'), +(51079, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:56.731+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51080, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.313+00', '{"cached":null,"ignore_cache":false}'), +(51081, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.474+00', '{"cached":null,"ignore_cache":false}'), +(51082, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.496+00', '{"cached":null,"ignore_cache":false}'), +(51083, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.549+00', '{"cached":null,"ignore_cache":false}'), +(51084, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:57.607+00', '{"cached":null,"ignore_cache":false}'), +(51085, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:58.158+00', '{"cached":null,"ignore_cache":false}'), +(51086, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:58.31+00', '{"cached":null,"ignore_cache":false}'), +(51087, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:58.4+00', '{"cached":null,"ignore_cache":false}'), +(51088, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:58.411+00', '{"cached":null,"ignore_cache":false}'), +(51089, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:58.649+00', '{"cached":null,"ignore_cache":false}'), +(51090, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:58.729+00', '{"cached":null,"ignore_cache":false}'), +(51091, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:58.731+00', '{"cached":null,"ignore_cache":false}'), +(51092, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:59.017+00', '{"cached":null,"ignore_cache":false}'), +(51093, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:55:59.059+00', '{"cached":null,"ignore_cache":false}'), +(51094, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.835+00', '{"cached":null,"ignore_cache":false}'), +(51095, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.936+00', '{"cached":null,"ignore_cache":false}'), +(51096, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:02.979+00', '{"cached":null,"ignore_cache":false}'), +(51097, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.042+00', '{"cached":null,"ignore_cache":false}'), +(51098, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.06+00', '{"cached":null,"ignore_cache":false}'), +(51099, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.104+00', '{"cached":null,"ignore_cache":false}'), +(51100, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:03.45+00', '{"cached":null,"ignore_cache":false}'), +(51101, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.427+00', '{"cached":null,"ignore_cache":false}'), +(51102, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.45+00', '{"cached":null,"ignore_cache":false}'), +(51103, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.466+00', '{"cached":null,"ignore_cache":false}'), +(51104, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:04.555+00', '{"cached":null,"ignore_cache":false}'), +(51105, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:05.834+00', '{"cached":null,"ignore_cache":false}'), +(51106, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.548+00', '{"cached":null,"ignore_cache":false}'), +(51107, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.55+00', '{"cached":null,"ignore_cache":false}'), +(51108, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.668+00', '{"cached":null,"ignore_cache":false}'), +(51109, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:06.835+00', '{"cached":null,"ignore_cache":false}'), +(51110, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.128+00', '{"cached":null,"ignore_cache":false}'), +(51111, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.16+00', '{"cached":null,"ignore_cache":false}'), +(51112, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.169+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51113, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.267+00', '{"cached":null,"ignore_cache":false}'), +(51114, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.547+00', '{"cached":null,"ignore_cache":false}'), +(51115, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.724+00', '{"cached":null,"ignore_cache":false}'), +(51116, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:07.909+00', '{"cached":null,"ignore_cache":false}'), +(51117, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.032+00', '{"cached":null,"ignore_cache":false}'), +(51118, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.033+00', '{"cached":null,"ignore_cache":false}'), +(51119, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.437+00', '{"cached":null,"ignore_cache":false}'), +(51120, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.521+00', '{"cached":null,"ignore_cache":false}'), +(51121, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.826+00', '{"cached":null,"ignore_cache":false}'), +(51122, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.917+00', '{"cached":null,"ignore_cache":false}'), +(51123, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:08.97+00', '{"cached":null,"ignore_cache":false}'), +(51124, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:09.037+00', '{"cached":null,"ignore_cache":false}'), +(51125, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:09.369+00', '{"cached":null,"ignore_cache":false}'), +(51126, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:09.527+00', '{"cached":null,"ignore_cache":false}'), +(51127, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:09.583+00', '{"cached":null,"ignore_cache":false}'), +(51128, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:09.758+00', '{"cached":null,"ignore_cache":false}'), +(51129, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.037+00', '{"cached":null,"ignore_cache":false}'), +(51130, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.135+00', '{"cached":null,"ignore_cache":false}'), +(51131, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.209+00', '{"cached":null,"ignore_cache":false}'), +(51132, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.45+00', '{"cached":null,"ignore_cache":false}'), +(51133, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.636+00', '{"cached":null,"ignore_cache":false}'), +(51134, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.898+00', '{"cached":null,"ignore_cache":false}'), +(51135, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.97+00', '{"cached":null,"ignore_cache":false}'), +(51136, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.971+00', '{"cached":null,"ignore_cache":false}'), +(51137, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:10.979+00', '{"cached":null,"ignore_cache":false}'), +(51138, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.032+00', '{"cached":null,"ignore_cache":false}'), +(51139, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.034+00', '{"cached":null,"ignore_cache":false}'), +(51140, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.112+00', '{"cached":null,"ignore_cache":false}'), +(51141, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.541+00', '{"cached":null,"ignore_cache":false}'), +(51142, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.557+00', '{"cached":null,"ignore_cache":false}'), +(51143, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.724+00', '{"cached":null,"ignore_cache":false}'), +(51144, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.738+00', '{"cached":null,"ignore_cache":false}'), +(51145, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.793+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51146, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.823+00', '{"cached":null,"ignore_cache":false}'), +(51147, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.848+00', '{"cached":null,"ignore_cache":false}'), +(51148, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:11.88+00', '{"cached":null,"ignore_cache":false}'), +(51149, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:12.304+00', '{"cached":null,"ignore_cache":false}'), +(51150, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:12.317+00', '{"cached":null,"ignore_cache":false}'), +(51151, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:12.317+00', '{"cached":null,"ignore_cache":false}'), +(51152, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:12.353+00', '{"cached":null,"ignore_cache":false}'), +(51153, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:12.439+00', '{"cached":null,"ignore_cache":false}'), +(51154, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:13.157+00', '{"cached":null,"ignore_cache":false}'), +(51155, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:13.198+00', '{"cached":null,"ignore_cache":false}'), +(51156, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:13.225+00', '{"cached":null,"ignore_cache":false}'), +(51157, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:13.43+00', '{"cached":null,"ignore_cache":false}'), +(51158, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.492+00', '{"cached":null,"ignore_cache":false}'), +(51159, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.547+00', '{"cached":null,"ignore_cache":false}'), +(51160, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.579+00', '{"cached":null,"ignore_cache":false}'), +(51161, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.583+00', '{"cached":null,"ignore_cache":false}'), +(51162, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.638+00', '{"cached":null,"ignore_cache":false}'), +(51163, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:21.641+00', '{"cached":null,"ignore_cache":false}'), +(51164, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.497+00', '{"cached":null,"ignore_cache":false}'), +(51165, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.558+00', '{"cached":null,"ignore_cache":false}'), +(51166, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.596+00', '{"cached":null,"ignore_cache":false}'), +(51167, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.642+00', '{"cached":null,"ignore_cache":false}'), +(51168, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.706+00', '{"cached":null,"ignore_cache":false}'), +(51169, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:22.798+00', '{"cached":null,"ignore_cache":false}'), +(51170, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.289+00', '{"cached":null,"ignore_cache":false}'), +(51171, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.483+00', '{"cached":null,"ignore_cache":false}'), +(51172, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.493+00', '{"cached":null,"ignore_cache":false}'), +(51173, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.55+00', '{"cached":null,"ignore_cache":false}'), +(51174, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.567+00', '{"cached":null,"ignore_cache":false}'), +(51175, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.779+00', '{"cached":null,"ignore_cache":false}'), +(51176, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.81+00', '{"cached":null,"ignore_cache":false}'), +(51177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.863+00', '{"cached":null,"ignore_cache":false}'), +(51178, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:24.885+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51179, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.073+00', '{"cached":null,"ignore_cache":false}'), +(51180, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.181+00', '{"cached":null,"ignore_cache":false}'), +(51181, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.231+00', '{"cached":null,"ignore_cache":false}'), +(51182, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.345+00', '{"cached":null,"ignore_cache":false}'), +(51183, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.406+00', '{"cached":null,"ignore_cache":false}'), +(51184, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.557+00', '{"cached":null,"ignore_cache":false}'), +(51185, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.716+00', '{"cached":null,"ignore_cache":false}'), +(51186, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:25.891+00', '{"cached":null,"ignore_cache":false}'), +(51187, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:26.013+00', '{"cached":null,"ignore_cache":false}'), +(51188, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:26.208+00', '{"cached":null,"ignore_cache":false}'), +(51189, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:26.285+00', '{"cached":null,"ignore_cache":false}'), +(51190, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.586+00', '{"cached":null,"ignore_cache":false}'), +(51191, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.887+00', '{"cached":null,"ignore_cache":false}'), +(51192, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:39.94+00', '{"cached":null,"ignore_cache":false}'), +(51193, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.014+00', '{"cached":null,"ignore_cache":false}'), +(51194, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.194+00', '{"cached":null,"ignore_cache":false}'), +(51195, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.558+00', '{"cached":null,"ignore_cache":false}'), +(51196, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.577+00', '{"cached":null,"ignore_cache":false}'), +(51197, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.602+00', '{"cached":null,"ignore_cache":false}'), +(51198, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.865+00', '{"cached":null,"ignore_cache":false}'), +(51199, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.925+00', '{"cached":null,"ignore_cache":false}'), +(51200, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:40.981+00', '{"cached":null,"ignore_cache":false}'), +(51201, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.18+00', '{"cached":null,"ignore_cache":false}'), +(51202, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.198+00', '{"cached":null,"ignore_cache":false}'), +(51203, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.277+00', '{"cached":null,"ignore_cache":false}'), +(51204, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.53+00', '{"cached":null,"ignore_cache":false}'), +(51205, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.559+00', '{"cached":null,"ignore_cache":false}'), +(51206, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.911+00', '{"cached":null,"ignore_cache":false}'), +(51207, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:41.996+00', '{"cached":null,"ignore_cache":false}'), +(51208, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.103+00', '{"cached":null,"ignore_cache":false}'), +(51209, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.286+00', '{"cached":null,"ignore_cache":false}'), +(51210, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.397+00', '{"cached":null,"ignore_cache":false}'), +(51211, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.809+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51212, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:42.857+00', '{"cached":null,"ignore_cache":false}'), +(51213, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:43.1+00', '{"cached":null,"ignore_cache":false}'), +(51214, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:43.29+00', '{"cached":null,"ignore_cache":false}'), +(51215, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:43.3+00', '{"cached":null,"ignore_cache":false}'), +(51216, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:43.31+00', '{"cached":null,"ignore_cache":false}'), +(51217, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:43.332+00', '{"cached":null,"ignore_cache":false}'), +(51218, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:43.564+00', '{"cached":null,"ignore_cache":false}'), +(51219, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:43.64+00', '{"cached":null,"ignore_cache":false}'), +(51220, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.626+00', '{"cached":null,"ignore_cache":false}'), +(51221, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.812+00', '{"cached":null,"ignore_cache":false}'), +(51222, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.846+00', '{"cached":null,"ignore_cache":false}'), +(51223, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.87+00', '{"cached":null,"ignore_cache":false}'), +(51224, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.871+00', '{"cached":null,"ignore_cache":false}'), +(51225, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:47.99+00', '{"cached":null,"ignore_cache":false}'), +(51226, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.079+00', '{"cached":null,"ignore_cache":false}'), +(51227, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.565+00', '{"cached":null,"ignore_cache":false}'), +(51228, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.641+00', '{"cached":null,"ignore_cache":false}'), +(51229, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.789+00', '{"cached":null,"ignore_cache":false}'), +(51230, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.813+00', '{"cached":null,"ignore_cache":false}'), +(51231, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:48.838+00', '{"cached":null,"ignore_cache":false}'), +(51232, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.436+00', '{"cached":null,"ignore_cache":false}'), +(51233, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.596+00', '{"cached":null,"ignore_cache":false}'), +(51234, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.661+00', '{"cached":null,"ignore_cache":false}'), +(51235, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.697+00', '{"cached":null,"ignore_cache":false}'), +(51236, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.801+00', '{"cached":null,"ignore_cache":false}'), +(51237, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:57.953+00', '{"cached":null,"ignore_cache":false}'), +(51238, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.44+00', '{"cached":null,"ignore_cache":false}'), +(51239, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.506+00', '{"cached":null,"ignore_cache":false}'), +(51240, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.619+00', '{"cached":null,"ignore_cache":false}'), +(51241, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:58.784+00', '{"cached":null,"ignore_cache":false}'), +(51242, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:59.085+00', '{"cached":null,"ignore_cache":false}'), +(51243, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:59.162+00', '{"cached":null,"ignore_cache":false}'), +(51244, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:59.238+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51245, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:59.429+00', '{"cached":null,"ignore_cache":false}'), +(51246, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:59.711+00', '{"cached":null,"ignore_cache":false}'), +(51247, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:56:59.736+00', '{"cached":null,"ignore_cache":false}'), +(51248, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.862+00', '{"cached":null,"ignore_cache":false}'), +(51249, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:20.901+00', '{"cached":null,"ignore_cache":false}'), +(51250, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.01+00', '{"cached":null,"ignore_cache":false}'), +(51251, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.061+00', '{"cached":null,"ignore_cache":false}'), +(51252, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.087+00', '{"cached":null,"ignore_cache":false}'), +(51253, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.101+00', '{"cached":null,"ignore_cache":false}'), +(51254, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.257+00', '{"cached":null,"ignore_cache":false}'), +(51255, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.281+00', '{"cached":null,"ignore_cache":false}'), +(51256, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.602+00', '{"cached":null,"ignore_cache":false}'), +(51257, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:21.7+00', '{"cached":null,"ignore_cache":false}'), +(51258, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.357+00', '{"cached":null,"ignore_cache":false}'), +(51259, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.539+00', '{"cached":null,"ignore_cache":false}'), +(51260, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.549+00', '{"cached":null,"ignore_cache":false}'), +(51261, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.622+00', '{"cached":null,"ignore_cache":false}'), +(51262, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.626+00', '{"cached":null,"ignore_cache":false}'), +(51263, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:25.651+00', '{"cached":null,"ignore_cache":false}'), +(51264, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.095+00', '{"cached":null,"ignore_cache":false}'), +(51265, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.307+00', '{"cached":null,"ignore_cache":false}'), +(51266, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.406+00', '{"cached":null,"ignore_cache":false}'), +(51267, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.623+00', '{"cached":null,"ignore_cache":false}'), +(51268, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.738+00', '{"cached":null,"ignore_cache":false}'), +(51269, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.773+00', '{"cached":null,"ignore_cache":false}'), +(51270, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.813+00', '{"cached":null,"ignore_cache":false}'), +(51271, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.824+00', '{"cached":null,"ignore_cache":false}'), +(51272, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.837+00', '{"cached":null,"ignore_cache":false}'), +(51273, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.928+00', '{"cached":null,"ignore_cache":false}'), +(51274, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:57:59.984+00', '{"cached":null,"ignore_cache":false}'), +(51275, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.083+00', '{"cached":null,"ignore_cache":false}'), +(51276, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.419+00', '{"cached":null,"ignore_cache":false}'), +(51277, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.501+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51278, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.574+00', '{"cached":null,"ignore_cache":false}'), +(51279, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.741+00', '{"cached":null,"ignore_cache":false}'), +(51280, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.769+00', '{"cached":null,"ignore_cache":false}'), +(51281, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.774+00', '{"cached":null,"ignore_cache":false}'), +(51282, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:00.937+00', '{"cached":null,"ignore_cache":false}'), +(51283, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.172+00', '{"cached":null,"ignore_cache":false}'), +(51284, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.204+00', '{"cached":null,"ignore_cache":false}'), +(51285, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.205+00', '{"cached":null,"ignore_cache":false}'), +(51286, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.347+00', '{"cached":null,"ignore_cache":false}'), +(51287, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.357+00', '{"cached":null,"ignore_cache":false}'), +(51288, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.488+00', '{"cached":null,"ignore_cache":false}'), +(51289, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.552+00', '{"cached":null,"ignore_cache":false}'), +(51290, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.717+00', '{"cached":null,"ignore_cache":false}'), +(51291, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.904+00', '{"cached":null,"ignore_cache":false}'), +(51292, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:01.967+00', '{"cached":null,"ignore_cache":false}'), +(51293, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.027+00', '{"cached":null,"ignore_cache":false}'), +(51294, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.136+00', '{"cached":null,"ignore_cache":false}'), +(51295, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:02.426+00', '{"cached":null,"ignore_cache":false}'), +(51296, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.506+00', '{"cached":null,"ignore_cache":false}'), +(51297, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:03.529+00', '{"cached":null,"ignore_cache":false}'), +(51298, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:04.559+00', '{"cached":null,"ignore_cache":false}'), +(51299, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:04.586+00', '{"cached":null,"ignore_cache":false}'), +(51300, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:04.677+00', '{"cached":null,"ignore_cache":false}'), +(51301, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:04.789+00', '{"cached":null,"ignore_cache":false}'), +(51302, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.202+00', '{"cached":null,"ignore_cache":false}'), +(51303, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.232+00', '{"cached":null,"ignore_cache":false}'), +(51304, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.417+00', '{"cached":null,"ignore_cache":false}'), +(51305, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.436+00', '{"cached":null,"ignore_cache":false}'), +(51306, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.615+00', '{"cached":null,"ignore_cache":false}'), +(51307, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.67+00', '{"cached":null,"ignore_cache":false}'), +(51308, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.816+00', '{"cached":null,"ignore_cache":false}'), +(51309, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:05.992+00', '{"cached":null,"ignore_cache":false}'), +(51310, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.279+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51311, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.399+00', '{"cached":null,"ignore_cache":false}'), +(51312, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.472+00', '{"cached":null,"ignore_cache":false}'), +(51313, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.561+00', '{"cached":null,"ignore_cache":false}'), +(51314, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.685+00', '{"cached":null,"ignore_cache":false}'), +(51315, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.813+00', '{"cached":null,"ignore_cache":false}'), +(51316, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.897+00', '{"cached":null,"ignore_cache":false}'), +(51317, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.914+00', '{"cached":null,"ignore_cache":false}'), +(51318, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.934+00', '{"cached":null,"ignore_cache":false}'), +(51319, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:06.996+00', '{"cached":null,"ignore_cache":false}'), +(51320, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:07.113+00', '{"cached":null,"ignore_cache":false}'), +(51321, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:07.137+00', '{"cached":null,"ignore_cache":false}'), +(51322, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:07.16+00', '{"cached":null,"ignore_cache":false}'), +(51323, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:07.241+00', '{"cached":null,"ignore_cache":false}'), +(51324, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:07.33+00', '{"cached":null,"ignore_cache":false}'), +(51325, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.049+00', '{"cached":null,"ignore_cache":false}'), +(51326, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.56+00', '{"cached":null,"ignore_cache":false}'), +(51327, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.605+00', '{"cached":null,"ignore_cache":false}'), +(51328, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:45.793+00', '{"cached":null,"ignore_cache":false}'), +(51329, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.409+00', '{"cached":null,"ignore_cache":false}'), +(51330, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.723+00', '{"cached":null,"ignore_cache":false}'), +(51331, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.766+00', '{"cached":null,"ignore_cache":false}'), +(51332, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:46.986+00', '{"cached":null,"ignore_cache":false}'), +(51333, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.187+00', '{"cached":null,"ignore_cache":false}'), +(51334, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.268+00', '{"cached":null,"ignore_cache":false}'), +(51335, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.275+00', '{"cached":null,"ignore_cache":false}'), +(51336, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.355+00', '{"cached":null,"ignore_cache":false}'), +(51337, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.389+00', '{"cached":null,"ignore_cache":false}'), +(51338, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.397+00', '{"cached":null,"ignore_cache":false}'), +(51339, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:47.987+00', '{"cached":null,"ignore_cache":false}'), +(51340, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.466+00', '{"cached":null,"ignore_cache":false}'), +(51341, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.481+00', '{"cached":null,"ignore_cache":false}'), +(51342, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.794+00', '{"cached":null,"ignore_cache":false}'), +(51343, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.828+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51344, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.898+00', '{"cached":null,"ignore_cache":false}'), +(51345, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.905+00', '{"cached":null,"ignore_cache":false}'), +(51346, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.936+00', '{"cached":null,"ignore_cache":false}'), +(51347, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:48.937+00', '{"cached":null,"ignore_cache":false}'), +(51348, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.009+00', '{"cached":null,"ignore_cache":false}'), +(51349, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.012+00', '{"cached":null,"ignore_cache":false}'), +(51350, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.079+00', '{"cached":null,"ignore_cache":false}'), +(51351, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.239+00', '{"cached":null,"ignore_cache":false}'), +(51352, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:49.426+00', '{"cached":null,"ignore_cache":false}'), +(51353, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.264+00', '{"cached":null,"ignore_cache":false}'), +(51354, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.357+00', '{"cached":null,"ignore_cache":false}'), +(51355, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.445+00', '{"cached":null,"ignore_cache":false}'), +(51356, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.483+00', '{"cached":null,"ignore_cache":false}'), +(51357, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.499+00', '{"cached":null,"ignore_cache":false}'), +(51358, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:50.513+00', '{"cached":null,"ignore_cache":false}'), +(51359, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.078+00', '{"cached":null,"ignore_cache":false}'), +(51360, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.301+00', '{"cached":null,"ignore_cache":false}'), +(51361, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.519+00', '{"cached":null,"ignore_cache":false}'), +(51362, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.627+00', '{"cached":null,"ignore_cache":false}'), +(51363, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.65+00', '{"cached":null,"ignore_cache":false}'), +(51364, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.721+00', '{"cached":null,"ignore_cache":false}'), +(51365, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.74+00', '{"cached":null,"ignore_cache":false}'), +(51366, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:51.815+00', '{"cached":null,"ignore_cache":false}'), +(51367, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:52.095+00', '{"cached":null,"ignore_cache":false}'), +(51368, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:52.132+00', '{"cached":null,"ignore_cache":false}'), +(51369, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.043+00', '{"cached":null,"ignore_cache":false}'), +(51370, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.469+00', '{"cached":null,"ignore_cache":false}'), +(51371, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.571+00', '{"cached":null,"ignore_cache":false}'), +(51372, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.695+00', '{"cached":null,"ignore_cache":false}'), +(51373, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.885+00', '{"cached":null,"ignore_cache":false}'), +(51374, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.978+00', '{"cached":null,"ignore_cache":false}'), +(51375, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:55.98+00', '{"cached":null,"ignore_cache":false}'), +(51376, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.233+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51377, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.395+00', '{"cached":null,"ignore_cache":false}'), +(51378, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.426+00', '{"cached":null,"ignore_cache":false}'), +(51379, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.531+00', '{"cached":null,"ignore_cache":false}'), +(51380, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.765+00', '{"cached":null,"ignore_cache":false}'), +(51381, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.767+00', '{"cached":null,"ignore_cache":false}'), +(51382, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.827+00', '{"cached":null,"ignore_cache":false}'), +(51383, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.888+00', '{"cached":null,"ignore_cache":false}'), +(51384, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.89+00', '{"cached":null,"ignore_cache":false}'), +(51385, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.938+00', '{"cached":null,"ignore_cache":false}'), +(51386, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:56.979+00', '{"cached":null,"ignore_cache":false}'), +(51387, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.063+00', '{"cached":null,"ignore_cache":false}'), +(51388, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.303+00', '{"cached":null,"ignore_cache":false}'), +(51389, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.345+00', '{"cached":null,"ignore_cache":false}'), +(51390, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.365+00', '{"cached":null,"ignore_cache":false}'), +(51391, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.388+00', '{"cached":null,"ignore_cache":false}'), +(51392, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.395+00', '{"cached":null,"ignore_cache":false}'), +(51393, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.528+00', '{"cached":null,"ignore_cache":false}'), +(51394, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.529+00', '{"cached":null,"ignore_cache":false}'), +(51395, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.889+00', '{"cached":null,"ignore_cache":false}'), +(51396, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.922+00', '{"cached":null,"ignore_cache":false}'), +(51397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:58:57.999+00', '{"cached":null,"ignore_cache":false}'), +(51398, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.136+00', '{"cached":null,"ignore_cache":false}'), +(51399, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.417+00', '{"cached":null,"ignore_cache":false}'), +(51400, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.473+00', '{"cached":null,"ignore_cache":false}'), +(51401, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.568+00', '{"cached":null,"ignore_cache":false}'), +(51402, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.744+00', '{"cached":null,"ignore_cache":false}'), +(51403, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.823+00', '{"cached":null,"ignore_cache":false}'), +(51404, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.889+00', '{"cached":null,"ignore_cache":false}'), +(51405, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.906+00', '{"cached":null,"ignore_cache":false}'), +(51406, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:05.979+00', '{"cached":null,"ignore_cache":false}'), +(51407, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.113+00', '{"cached":null,"ignore_cache":false}'), +(51408, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:06.894+00', '{"cached":null,"ignore_cache":false}'), +(51409, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.344+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51410, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.354+00', '{"cached":null,"ignore_cache":false}'), +(51411, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.365+00', '{"cached":null,"ignore_cache":false}'), +(51412, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.407+00', '{"cached":null,"ignore_cache":false}'), +(51413, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:07.453+00', '{"cached":null,"ignore_cache":false}'), +(51414, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.153+00', '{"cached":null,"ignore_cache":false}'), +(51415, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.347+00', '{"cached":null,"ignore_cache":false}'), +(51416, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.387+00', '{"cached":null,"ignore_cache":false}'), +(51417, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.571+00', '{"cached":null,"ignore_cache":false}'), +(51418, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.601+00', '{"cached":null,"ignore_cache":false}'), +(51419, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.603+00', '{"cached":null,"ignore_cache":false}'), +(51420, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.662+00', '{"cached":null,"ignore_cache":false}'), +(51421, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.669+00', '{"cached":null,"ignore_cache":false}'), +(51422, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.672+00', '{"cached":null,"ignore_cache":false}'), +(51423, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:08.943+00', '{"cached":null,"ignore_cache":false}'), +(51424, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:09.01+00', '{"cached":null,"ignore_cache":false}'), +(51425, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:09.014+00', '{"cached":null,"ignore_cache":false}'), +(51426, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:09.167+00', '{"cached":null,"ignore_cache":false}'), +(51427, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:09.227+00', '{"cached":null,"ignore_cache":false}'), +(51428, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.673+00', '{"cached":null,"ignore_cache":false}'), +(51429, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.733+00', '{"cached":null,"ignore_cache":false}'), +(51430, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.908+00', '{"cached":null,"ignore_cache":false}'), +(51431, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:11.954+00', '{"cached":null,"ignore_cache":false}'), +(51432, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:12.052+00', '{"cached":null,"ignore_cache":false}'), +(51433, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:12.135+00', '{"cached":null,"ignore_cache":false}'), +(51434, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:12.137+00', '{"cached":null,"ignore_cache":false}'), +(51435, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:12.242+00', '{"cached":null,"ignore_cache":false}'), +(51436, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:12.333+00', '{"cached":null,"ignore_cache":false}'), +(51437, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:12.397+00', '{"cached":null,"ignore_cache":false}'), +(51438, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.732+00', '{"cached":null,"ignore_cache":false}'), +(51439, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.813+00', '{"cached":null,"ignore_cache":false}'), +(51440, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.944+00', '{"cached":null,"ignore_cache":false}'), +(51441, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.961+00', '{"cached":null,"ignore_cache":false}'), +(51442, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.976+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51443, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:14.999+00', '{"cached":null,"ignore_cache":false}'), +(51444, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.037+00', '{"cached":null,"ignore_cache":false}'), +(51445, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.472+00', '{"cached":null,"ignore_cache":false}'), +(51446, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.512+00', '{"cached":null,"ignore_cache":false}'), +(51447, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:45.952+00', '{"cached":null,"ignore_cache":false}'), +(51448, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.751+00', '{"cached":null,"ignore_cache":false}'), +(51449, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:46.907+00', '{"cached":null,"ignore_cache":false}'), +(51450, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.147+00', '{"cached":null,"ignore_cache":false}'), +(51451, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.189+00', '{"cached":null,"ignore_cache":false}'), +(51452, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.257+00', '{"cached":null,"ignore_cache":false}'), +(51453, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.359+00', '{"cached":null,"ignore_cache":false}'), +(51454, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.419+00', '{"cached":null,"ignore_cache":false}'), +(51455, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.426+00', '{"cached":null,"ignore_cache":false}'), +(51456, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:47.516+00', '{"cached":null,"ignore_cache":false}'), +(51457, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:48.162+00', '{"cached":null,"ignore_cache":false}'), +(51458, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:48.256+00', '{"cached":null,"ignore_cache":false}'), +(51459, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:48.457+00', '{"cached":null,"ignore_cache":false}'), +(51460, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:48.774+00', '{"cached":null,"ignore_cache":false}'), +(51461, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:48.957+00', '{"cached":null,"ignore_cache":false}'), +(51462, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.001+00', '{"cached":null,"ignore_cache":false}'), +(51463, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.003+00', '{"cached":null,"ignore_cache":false}'), +(51464, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.004+00', '{"cached":null,"ignore_cache":false}'), +(51465, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.015+00', '{"cached":null,"ignore_cache":false}'), +(51466, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.041+00', '{"cached":null,"ignore_cache":false}'), +(51467, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.293+00', '{"cached":null,"ignore_cache":false}'), +(51468, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.539+00', '{"cached":null,"ignore_cache":false}'), +(51469, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.592+00', '{"cached":null,"ignore_cache":false}'), +(51470, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.607+00', '{"cached":null,"ignore_cache":false}'), +(51471, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 15:59:49.71+00', '{"cached":null,"ignore_cache":false}'), +(51472, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.002+00', '{"cached":null,"ignore_cache":false}'), +(51473, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.088+00', '{"cached":null,"ignore_cache":false}'), +(51474, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:45.98+00', '{"cached":null,"ignore_cache":false}'), +(51475, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.029+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51476, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.153+00', '{"cached":null,"ignore_cache":false}'), +(51477, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.448+00', '{"cached":null,"ignore_cache":false}'), +(51478, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.528+00', '{"cached":null,"ignore_cache":false}'), +(51479, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.801+00', '{"cached":null,"ignore_cache":false}'), +(51480, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:46.873+00', '{"cached":null,"ignore_cache":false}'), +(51481, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.005+00', '{"cached":null,"ignore_cache":false}'), +(51482, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.047+00', '{"cached":null,"ignore_cache":false}'), +(51483, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.059+00', '{"cached":null,"ignore_cache":false}'), +(51484, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.194+00', '{"cached":null,"ignore_cache":false}'), +(51485, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.333+00', '{"cached":null,"ignore_cache":false}'), +(51486, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.548+00', '{"cached":null,"ignore_cache":false}'), +(51487, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.821+00', '{"cached":null,"ignore_cache":false}'), +(51488, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:47.833+00', '{"cached":null,"ignore_cache":false}'), +(51489, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.027+00', '{"cached":null,"ignore_cache":false}'), +(51490, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.079+00', '{"cached":null,"ignore_cache":false}'), +(51491, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.116+00', '{"cached":null,"ignore_cache":false}'), +(51492, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.742+00', '{"cached":null,"ignore_cache":false}'), +(51493, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.873+00', '{"cached":null,"ignore_cache":false}'), +(51494, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:48.951+00', '{"cached":null,"ignore_cache":false}'), +(51495, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:49.003+00', '{"cached":null,"ignore_cache":false}'), +(51496, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:49.481+00', '{"cached":null,"ignore_cache":false}'), +(51497, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:49.635+00', '{"cached":null,"ignore_cache":false}'), +(51498, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.11+00', '{"cached":null,"ignore_cache":false}'), +(51499, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.137+00', '{"cached":null,"ignore_cache":false}'), +(51500, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.198+00', '{"cached":null,"ignore_cache":false}'), +(51501, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.316+00', '{"cached":null,"ignore_cache":false}'), +(51502, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.335+00', '{"cached":null,"ignore_cache":false}'), +(51503, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.386+00', '{"cached":null,"ignore_cache":false}'), +(51504, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.516+00', '{"cached":null,"ignore_cache":false}'), +(51505, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.699+00', '{"cached":null,"ignore_cache":false}'), +(51506, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:50.883+00', '{"cached":null,"ignore_cache":false}'), +(51507, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.016+00', '{"cached":null,"ignore_cache":false}'), +(51508, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.082+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51509, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.083+00', '{"cached":null,"ignore_cache":false}'), +(51510, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.172+00', '{"cached":null,"ignore_cache":false}'), +(51511, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.201+00', '{"cached":null,"ignore_cache":false}'), +(51512, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.236+00', '{"cached":null,"ignore_cache":false}'), +(51513, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.245+00', '{"cached":null,"ignore_cache":false}'), +(51514, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.255+00', '{"cached":null,"ignore_cache":false}'), +(51515, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.267+00', '{"cached":null,"ignore_cache":false}'), +(51516, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.275+00', '{"cached":null,"ignore_cache":false}'), +(51517, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.289+00', '{"cached":null,"ignore_cache":false}'), +(51518, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.3+00', '{"cached":null,"ignore_cache":false}'), +(51519, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:51.552+00', '{"cached":null,"ignore_cache":false}'), +(51520, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.356+00', '{"cached":null,"ignore_cache":false}'), +(51521, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.565+00', '{"cached":null,"ignore_cache":false}'), +(51522, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.776+00', '{"cached":null,"ignore_cache":false}'), +(51523, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.784+00', '{"cached":null,"ignore_cache":false}'), +(51524, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:52.879+00', '{"cached":null,"ignore_cache":false}'), +(51525, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.301+00', '{"cached":null,"ignore_cache":false}'), +(51526, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.42+00', '{"cached":null,"ignore_cache":false}'), +(51527, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.439+00', '{"cached":null,"ignore_cache":false}'), +(51528, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:53.702+00', '{"cached":null,"ignore_cache":false}'), +(51529, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.252+00', '{"cached":null,"ignore_cache":false}'), +(51530, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:54.869+00', '{"cached":null,"ignore_cache":false}'), +(51531, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.052+00', '{"cached":null,"ignore_cache":false}'), +(51532, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.196+00', '{"cached":null,"ignore_cache":false}'), +(51533, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.548+00', '{"cached":null,"ignore_cache":false}'), +(51534, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.608+00', '{"cached":null,"ignore_cache":false}'), +(51535, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.652+00', '{"cached":null,"ignore_cache":false}'), +(51536, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.653+00', '{"cached":null,"ignore_cache":false}'), +(51537, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.722+00', '{"cached":null,"ignore_cache":false}'), +(51538, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.865+00', '{"cached":null,"ignore_cache":false}'), +(51539, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.96+00', '{"cached":null,"ignore_cache":false}'), +(51540, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:55.99+00', '{"cached":null,"ignore_cache":false}'), +(51541, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.067+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51542, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.188+00', '{"cached":null,"ignore_cache":false}'), +(51543, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.24+00', '{"cached":null,"ignore_cache":false}'), +(51544, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.301+00', '{"cached":null,"ignore_cache":false}'), +(51545, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.777+00', '{"cached":null,"ignore_cache":false}'), +(51546, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.885+00', '{"cached":null,"ignore_cache":false}'), +(51547, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:56.9+00', '{"cached":null,"ignore_cache":false}'), +(51548, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.164+00', '{"cached":null,"ignore_cache":false}'), +(51549, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.208+00', '{"cached":null,"ignore_cache":false}'), +(51550, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.341+00', '{"cached":null,"ignore_cache":false}'), +(51551, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.35+00', '{"cached":null,"ignore_cache":false}'), +(51552, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.379+00', '{"cached":null,"ignore_cache":false}'), +(51553, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.508+00', '{"cached":null,"ignore_cache":false}'), +(51554, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.54+00', '{"cached":null,"ignore_cache":false}'), +(51555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.622+00', '{"cached":null,"ignore_cache":false}'), +(51556, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:57.627+00', '{"cached":null,"ignore_cache":false}'), +(51557, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.032+00', '{"cached":null,"ignore_cache":false}'), +(51558, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.322+00', '{"cached":null,"ignore_cache":false}'), +(51559, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.349+00', '{"cached":null,"ignore_cache":false}'), +(51560, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.712+00', '{"cached":null,"ignore_cache":false}'), +(51561, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.714+00', '{"cached":null,"ignore_cache":false}'), +(51562, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.737+00', '{"cached":null,"ignore_cache":false}'), +(51563, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.738+00', '{"cached":null,"ignore_cache":false}'), +(51564, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.796+00', '{"cached":null,"ignore_cache":false}'), +(51565, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.816+00', '{"cached":null,"ignore_cache":false}'), +(51566, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.818+00', '{"cached":null,"ignore_cache":false}'), +(51567, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.854+00', '{"cached":null,"ignore_cache":false}'), +(51568, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.881+00', '{"cached":null,"ignore_cache":false}'), +(51569, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:58.941+00', '{"cached":null,"ignore_cache":false}'), +(51570, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:59.113+00', '{"cached":null,"ignore_cache":false}'), +(51571, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:59.165+00', '{"cached":null,"ignore_cache":false}'), +(51572, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:59.295+00', '{"cached":null,"ignore_cache":false}'), +(51573, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:59.308+00', '{"cached":null,"ignore_cache":false}'), +(51574, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:59.357+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51575, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:59.464+00', '{"cached":null,"ignore_cache":false}'), +(51576, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:00:59.822+00', '{"cached":null,"ignore_cache":false}'), +(51577, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:00.555+00', '{"cached":null,"ignore_cache":false}'), +(51578, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:00.728+00', '{"cached":null,"ignore_cache":false}'), +(51579, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:00.825+00', '{"cached":null,"ignore_cache":false}'), +(51580, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.603+00', '{"cached":null,"ignore_cache":false}'), +(51581, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.627+00', '{"cached":null,"ignore_cache":false}'), +(51582, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.646+00', '{"cached":null,"ignore_cache":false}'), +(51583, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.719+00', '{"cached":null,"ignore_cache":false}'), +(51584, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.731+00', '{"cached":null,"ignore_cache":false}'), +(51585, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:04.764+00', '{"cached":null,"ignore_cache":false}'), +(51586, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.149+00', '{"cached":null,"ignore_cache":false}'), +(51587, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.259+00', '{"cached":null,"ignore_cache":false}'), +(51588, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.281+00', '{"cached":null,"ignore_cache":false}'), +(51589, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.335+00', '{"cached":null,"ignore_cache":false}'), +(51590, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.55+00', '{"cached":null,"ignore_cache":false}'), +(51591, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.876+00', '{"cached":null,"ignore_cache":false}'), +(51592, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:05.894+00', '{"cached":null,"ignore_cache":false}'), +(51593, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.022+00', '{"cached":null,"ignore_cache":false}'), +(51594, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.102+00', '{"cached":null,"ignore_cache":false}'), +(51595, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.254+00', '{"cached":null,"ignore_cache":false}'), +(51596, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.255+00', '{"cached":null,"ignore_cache":false}'), +(51597, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.334+00', '{"cached":null,"ignore_cache":false}'), +(51598, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.342+00', '{"cached":null,"ignore_cache":false}'), +(51599, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.403+00', '{"cached":null,"ignore_cache":false}'), +(51600, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.528+00', '{"cached":null,"ignore_cache":false}'), +(51601, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:06.573+00', '{"cached":null,"ignore_cache":false}'), +(51602, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:07.397+00', '{"cached":null,"ignore_cache":false}'), +(51603, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.125+00', '{"cached":null,"ignore_cache":false}'), +(51604, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.129+00', '{"cached":null,"ignore_cache":false}'), +(51605, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.143+00', '{"cached":null,"ignore_cache":false}'), +(51606, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.495+00', '{"cached":null,"ignore_cache":false}'), +(51607, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.503+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51608, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.505+00', '{"cached":null,"ignore_cache":false}'), +(51609, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.515+00', '{"cached":null,"ignore_cache":false}'), +(51610, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:08.926+00', '{"cached":null,"ignore_cache":false}'), +(51611, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.078+00', '{"cached":null,"ignore_cache":false}'), +(51612, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.09+00', '{"cached":null,"ignore_cache":false}'), +(51613, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.23+00', '{"cached":null,"ignore_cache":false}'), +(51614, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.296+00', '{"cached":null,"ignore_cache":false}'), +(51615, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.581+00', '{"cached":null,"ignore_cache":false}'), +(51616, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.658+00', '{"cached":null,"ignore_cache":false}'), +(51617, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.88+00', '{"cached":null,"ignore_cache":false}'), +(51618, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:09.996+00', '{"cached":null,"ignore_cache":false}'), +(51619, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.515+00', '{"cached":null,"ignore_cache":false}'), +(51620, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.567+00', '{"cached":null,"ignore_cache":false}'), +(51621, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.698+00', '{"cached":null,"ignore_cache":false}'), +(51622, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.732+00', '{"cached":null,"ignore_cache":false}'), +(51623, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.817+00', '{"cached":null,"ignore_cache":false}'), +(51624, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:10.884+00', '{"cached":null,"ignore_cache":false}'), +(51625, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.147+00', '{"cached":null,"ignore_cache":false}'), +(51626, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.274+00', '{"cached":null,"ignore_cache":false}'), +(51627, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.316+00', '{"cached":null,"ignore_cache":false}'), +(51628, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.342+00', '{"cached":null,"ignore_cache":false}'), +(51629, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.456+00', '{"cached":null,"ignore_cache":false}'), +(51630, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.494+00', '{"cached":null,"ignore_cache":false}'), +(51631, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.51+00', '{"cached":null,"ignore_cache":false}'), +(51632, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.53+00', '{"cached":null,"ignore_cache":false}'), +(51633, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.7+00', '{"cached":null,"ignore_cache":false}'), +(51634, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.721+00', '{"cached":null,"ignore_cache":false}'), +(51635, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:11.777+00', '{"cached":null,"ignore_cache":false}'), +(51636, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.165+00', '{"cached":null,"ignore_cache":false}'), +(51637, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.175+00', '{"cached":null,"ignore_cache":false}'), +(51638, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.22+00', '{"cached":null,"ignore_cache":false}'), +(51639, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.293+00', '{"cached":null,"ignore_cache":false}'), +(51640, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.294+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51641, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.471+00', '{"cached":null,"ignore_cache":false}'), +(51642, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.653+00', '{"cached":null,"ignore_cache":false}'), +(51643, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.696+00', '{"cached":null,"ignore_cache":false}'), +(51644, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.719+00', '{"cached":null,"ignore_cache":false}'), +(51645, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:12.825+00', '{"cached":null,"ignore_cache":false}'), +(51646, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:13.166+00', '{"cached":null,"ignore_cache":false}'), +(51647, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:13.356+00', '{"cached":null,"ignore_cache":false}'), +(51648, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:13.577+00', '{"cached":null,"ignore_cache":false}'), +(51649, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:13.694+00', '{"cached":null,"ignore_cache":false}'), +(51650, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:13.748+00', '{"cached":null,"ignore_cache":false}'), +(51651, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:13.84+00', '{"cached":null,"ignore_cache":false}'), +(51652, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:13.845+00', '{"cached":null,"ignore_cache":false}'), +(51653, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:14.01+00', '{"cached":null,"ignore_cache":false}'), +(51654, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:14.033+00', '{"cached":null,"ignore_cache":false}'), +(51655, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:14.359+00', '{"cached":null,"ignore_cache":false}'), +(51656, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:14.48+00', '{"cached":null,"ignore_cache":false}'), +(51657, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:14.494+00', '{"cached":null,"ignore_cache":false}'), +(51658, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.712+00', '{"cached":null,"ignore_cache":false}'), +(51659, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.781+00', '{"cached":null,"ignore_cache":false}'), +(51660, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.822+00', '{"cached":null,"ignore_cache":false}'), +(51661, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:16.996+00', '{"cached":null,"ignore_cache":false}'), +(51662, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.026+00', '{"cached":null,"ignore_cache":false}'), +(51663, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.072+00', '{"cached":null,"ignore_cache":false}'), +(51664, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.251+00', '{"cached":null,"ignore_cache":false}'), +(51665, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.587+00', '{"cached":null,"ignore_cache":false}'), +(51666, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.669+00', '{"cached":null,"ignore_cache":false}'), +(51667, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.716+00', '{"cached":null,"ignore_cache":false}'), +(51668, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:17.768+00', '{"cached":null,"ignore_cache":false}'), +(51669, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.043+00', '{"cached":null,"ignore_cache":false}'), +(51670, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.105+00', '{"cached":null,"ignore_cache":false}'), +(51671, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.145+00', '{"cached":null,"ignore_cache":false}'), +(51672, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.498+00', '{"cached":null,"ignore_cache":false}'), +(51673, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.535+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51674, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.665+00', '{"cached":null,"ignore_cache":false}'), +(51675, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.818+00', '{"cached":null,"ignore_cache":false}'), +(51676, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.853+00', '{"cached":null,"ignore_cache":false}'), +(51677, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.985+00', '{"cached":null,"ignore_cache":false}'), +(51678, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:18.986+00', '{"cached":null,"ignore_cache":false}'), +(51679, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.129+00', '{"cached":null,"ignore_cache":false}'), +(51680, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.229+00', '{"cached":null,"ignore_cache":false}'), +(51681, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.41+00', '{"cached":null,"ignore_cache":false}'), +(51682, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.528+00', '{"cached":null,"ignore_cache":false}'), +(51683, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.693+00', '{"cached":null,"ignore_cache":false}'), +(51684, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.763+00', '{"cached":null,"ignore_cache":false}'), +(51685, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.821+00', '{"cached":null,"ignore_cache":false}'), +(51686, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.952+00', '{"cached":null,"ignore_cache":false}'), +(51687, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:19.992+00', '{"cached":null,"ignore_cache":false}'), +(51688, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.281+00', '{"cached":null,"ignore_cache":false}'), +(51689, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.456+00', '{"cached":null,"ignore_cache":false}'), +(51690, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.784+00', '{"cached":null,"ignore_cache":false}'), +(51691, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.83+00', '{"cached":null,"ignore_cache":false}'), +(51692, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.853+00', '{"cached":null,"ignore_cache":false}'), +(51693, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.909+00', '{"cached":null,"ignore_cache":false}'), +(51694, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:20.91+00', '{"cached":null,"ignore_cache":false}'), +(51695, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.065+00', '{"cached":null,"ignore_cache":false}'), +(51696, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.251+00', '{"cached":null,"ignore_cache":false}'), +(51697, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.396+00', '{"cached":null,"ignore_cache":false}'), +(51698, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.436+00', '{"cached":null,"ignore_cache":false}'), +(51699, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.7+00', '{"cached":null,"ignore_cache":false}'), +(51700, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:21.792+00', '{"cached":null,"ignore_cache":false}'), +(51701, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.111+00', '{"cached":null,"ignore_cache":false}'), +(51702, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.154+00', '{"cached":null,"ignore_cache":false}'), +(51703, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.208+00', '{"cached":null,"ignore_cache":false}'), +(51704, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.209+00', '{"cached":null,"ignore_cache":false}'), +(51705, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.224+00', '{"cached":null,"ignore_cache":false}'), +(51706, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.281+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51707, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.296+00', '{"cached":null,"ignore_cache":false}'), +(51708, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.475+00', '{"cached":null,"ignore_cache":false}'), +(51709, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.489+00', '{"cached":null,"ignore_cache":false}'), +(51710, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:22.634+00', '{"cached":null,"ignore_cache":false}'), +(51711, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.333+00', '{"cached":null,"ignore_cache":false}'), +(51712, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.431+00', '{"cached":null,"ignore_cache":false}'), +(51713, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.433+00', '{"cached":null,"ignore_cache":false}'), +(51714, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.524+00', '{"cached":null,"ignore_cache":false}'), +(51715, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.525+00', '{"cached":null,"ignore_cache":false}'), +(51716, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.534+00', '{"cached":null,"ignore_cache":false}'), +(51717, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.587+00', '{"cached":null,"ignore_cache":false}'), +(51718, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.758+00', '{"cached":null,"ignore_cache":false}'), +(51719, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.827+00', '{"cached":null,"ignore_cache":false}'), +(51720, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:23.891+00', '{"cached":null,"ignore_cache":false}'), +(51721, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:24.031+00', '{"cached":null,"ignore_cache":false}'), +(51722, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.988+00', '{"cached":null,"ignore_cache":false}'), +(51723, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:54.99+00', '{"cached":null,"ignore_cache":false}'), +(51724, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.078+00', '{"cached":null,"ignore_cache":false}'), +(51725, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.088+00', '{"cached":null,"ignore_cache":false}'), +(51726, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.177+00', '{"cached":null,"ignore_cache":false}'), +(51727, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:55.219+00', '{"cached":null,"ignore_cache":false}'), +(51728, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.046+00', '{"cached":null,"ignore_cache":false}'), +(51729, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.056+00', '{"cached":null,"ignore_cache":false}'), +(51730, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.17+00', '{"cached":null,"ignore_cache":false}'), +(51731, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.172+00', '{"cached":null,"ignore_cache":false}'), +(51732, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.316+00', '{"cached":null,"ignore_cache":false}'), +(51733, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.33+00', '{"cached":null,"ignore_cache":false}'), +(51734, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.493+00', '{"cached":null,"ignore_cache":false}'), +(51735, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.572+00', '{"cached":null,"ignore_cache":false}'), +(51736, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.652+00', '{"cached":null,"ignore_cache":false}'), +(51737, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.936+00', '{"cached":null,"ignore_cache":false}'), +(51738, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.945+00', '{"cached":null,"ignore_cache":false}'), +(51739, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.949+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51740, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:56.953+00', '{"cached":null,"ignore_cache":false}'), +(51741, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.135+00', '{"cached":null,"ignore_cache":false}'), +(51742, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.211+00', '{"cached":null,"ignore_cache":false}'), +(51743, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.381+00', '{"cached":null,"ignore_cache":false}'), +(51744, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.469+00', '{"cached":null,"ignore_cache":false}'), +(51745, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.559+00', '{"cached":null,"ignore_cache":false}'), +(51746, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.631+00', '{"cached":null,"ignore_cache":false}'), +(51747, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:57.927+00', '{"cached":null,"ignore_cache":false}'), +(51748, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:58.105+00', '{"cached":null,"ignore_cache":false}'), +(51749, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:58.234+00', '{"cached":null,"ignore_cache":false}'), +(51750, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:58.269+00', '{"cached":null,"ignore_cache":false}'), +(51751, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:58.274+00', '{"cached":null,"ignore_cache":false}'), +(51752, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:58.725+00', '{"cached":null,"ignore_cache":false}'), +(51753, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:01:58.779+00', '{"cached":null,"ignore_cache":false}'), +(51754, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.126+00', '{"cached":null,"ignore_cache":false}'), +(51755, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.153+00', '{"cached":null,"ignore_cache":false}'), +(51756, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.199+00', '{"cached":null,"ignore_cache":false}'), +(51757, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.379+00', '{"cached":null,"ignore_cache":false}'), +(51758, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.407+00', '{"cached":null,"ignore_cache":false}'), +(51759, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.416+00', '{"cached":null,"ignore_cache":false}'), +(51760, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.549+00', '{"cached":null,"ignore_cache":false}'), +(51761, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.574+00', '{"cached":null,"ignore_cache":false}'), +(51762, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.822+00', '{"cached":null,"ignore_cache":false}'), +(51763, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:28.917+00', '{"cached":null,"ignore_cache":false}'), +(51764, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.583+00', '{"cached":null,"ignore_cache":false}'), +(51765, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.639+00', '{"cached":null,"ignore_cache":false}'), +(51766, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.664+00', '{"cached":null,"ignore_cache":false}'), +(51767, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.741+00', '{"cached":null,"ignore_cache":false}'), +(51768, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.798+00', '{"cached":null,"ignore_cache":false}'), +(51769, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:02:35.811+00', '{"cached":null,"ignore_cache":false}'), +(51770, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.434+00', '{"cached":null,"ignore_cache":false}'), +(51771, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.484+00', '{"cached":null,"ignore_cache":false}'), +(51772, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.631+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51773, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.714+00', '{"cached":null,"ignore_cache":false}'), +(51774, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.758+00', '{"cached":null,"ignore_cache":false}'), +(51775, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:03:55.806+00', '{"cached":null,"ignore_cache":false}'), +(51776, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.127+00', '{"cached":null,"ignore_cache":false}'), +(51777, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.199+00', '{"cached":null,"ignore_cache":false}'), +(51778, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.372+00', '{"cached":null,"ignore_cache":false}'), +(51779, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.387+00', '{"cached":null,"ignore_cache":false}'), +(51780, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.416+00', '{"cached":null,"ignore_cache":false}'), +(51781, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.477+00', '{"cached":null,"ignore_cache":false}'), +(51782, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.595+00', '{"cached":null,"ignore_cache":false}'), +(51783, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.629+00', '{"cached":null,"ignore_cache":false}'), +(51784, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.751+00', '{"cached":null,"ignore_cache":false}'), +(51785, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:04:12.97+00', '{"cached":null,"ignore_cache":false}'), +(51786, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.311+00', '{"cached":null,"ignore_cache":false}'), +(51787, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.423+00', '{"cached":null,"ignore_cache":false}'), +(51788, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.853+00', '{"cached":null,"ignore_cache":false}'), +(51789, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:53.884+00', '{"cached":null,"ignore_cache":false}'), +(51790, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:54.014+00', '{"cached":null,"ignore_cache":false}'), +(51791, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:54.035+00', '{"cached":null,"ignore_cache":false}'), +(51792, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:54.064+00', '{"cached":null,"ignore_cache":false}'), +(51793, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:54.133+00', '{"cached":null,"ignore_cache":false}'), +(51794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:54.293+00', '{"cached":null,"ignore_cache":false}'), +(51795, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:06:54.33+00', '{"cached":null,"ignore_cache":false}'), +(51796, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.678+00', '{"cached":null,"ignore_cache":false}'), +(51797, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.785+00', '{"cached":null,"ignore_cache":false}'), +(51798, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.795+00', '{"cached":null,"ignore_cache":false}'), +(51799, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.816+00', '{"cached":null,"ignore_cache":false}'), +(51800, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.839+00', '{"cached":null,"ignore_cache":false}'), +(51801, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:03.885+00', '{"cached":null,"ignore_cache":false}'), +(51802, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:04.898+00', '{"cached":null,"ignore_cache":false}'), +(51803, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.226+00', '{"cached":null,"ignore_cache":false}'), +(51804, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.284+00', '{"cached":null,"ignore_cache":false}'), +(51805, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.468+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51806, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.478+00', '{"cached":null,"ignore_cache":false}'), +(51807, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.536+00', '{"cached":null,"ignore_cache":false}'), +(51808, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.564+00', '{"cached":null,"ignore_cache":false}'), +(51809, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.583+00', '{"cached":null,"ignore_cache":false}'), +(51810, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.746+00', '{"cached":null,"ignore_cache":false}'), +(51811, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:05.809+00', '{"cached":null,"ignore_cache":false}'), +(51812, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.547+00', '{"cached":null,"ignore_cache":false}'), +(51813, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.579+00', '{"cached":null,"ignore_cache":false}'), +(51814, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.649+00', '{"cached":null,"ignore_cache":false}'), +(51815, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.678+00', '{"cached":null,"ignore_cache":false}'), +(51816, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.858+00', '{"cached":null,"ignore_cache":false}'), +(51817, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.914+00', '{"cached":null,"ignore_cache":false}'), +(51818, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.926+00', '{"cached":null,"ignore_cache":false}'), +(51819, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:24.946+00', '{"cached":null,"ignore_cache":false}'), +(51820, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:25.288+00', '{"cached":null,"ignore_cache":false}'), +(51821, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:25.365+00', '{"cached":null,"ignore_cache":false}'), +(51822, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.666+00', '{"cached":null,"ignore_cache":false}'), +(51823, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.77+00', '{"cached":null,"ignore_cache":false}'), +(51824, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.803+00', '{"cached":null,"ignore_cache":false}'), +(51825, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.873+00', '{"cached":null,"ignore_cache":false}'), +(51826, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.896+00', '{"cached":null,"ignore_cache":false}'), +(51827, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:27.908+00', '{"cached":null,"ignore_cache":false}'), +(51828, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.716+00', '{"cached":null,"ignore_cache":false}'), +(51829, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.737+00', '{"cached":null,"ignore_cache":false}'), +(51830, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.757+00', '{"cached":null,"ignore_cache":false}'), +(51831, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.831+00', '{"cached":null,"ignore_cache":false}'), +(51832, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.939+00', '{"cached":null,"ignore_cache":false}'), +(51833, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:07:39.969+00', '{"cached":null,"ignore_cache":false}'), +(51834, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.461+00', '{"cached":null,"ignore_cache":false}'), +(51835, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.772+00', '{"cached":null,"ignore_cache":false}'), +(51836, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.895+00', '{"cached":null,"ignore_cache":false}'), +(51837, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:12.938+00', '{"cached":null,"ignore_cache":false}'), +(51838, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.005+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51839, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.174+00', '{"cached":null,"ignore_cache":false}'), +(51840, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.241+00', '{"cached":null,"ignore_cache":false}'), +(51841, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.259+00', '{"cached":null,"ignore_cache":false}'), +(51842, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.388+00', '{"cached":null,"ignore_cache":false}'), +(51843, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.565+00', '{"cached":null,"ignore_cache":false}'), +(51844, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.62+00', '{"cached":null,"ignore_cache":false}'), +(51845, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.767+00', '{"cached":null,"ignore_cache":false}'), +(51846, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.781+00', '{"cached":null,"ignore_cache":false}'), +(51847, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.81+00', '{"cached":null,"ignore_cache":false}'), +(51848, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.897+00', '{"cached":null,"ignore_cache":false}'), +(51849, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:13.987+00', '{"cached":null,"ignore_cache":false}'), +(51850, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.023+00', '{"cached":null,"ignore_cache":false}'), +(51851, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.288+00', '{"cached":null,"ignore_cache":false}'), +(51852, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.504+00', '{"cached":null,"ignore_cache":false}'), +(51853, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.805+00', '{"cached":null,"ignore_cache":false}'), +(51854, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:14.839+00', '{"cached":null,"ignore_cache":false}'), +(51855, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.177+00', '{"cached":null,"ignore_cache":false}'), +(51856, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.225+00', '{"cached":null,"ignore_cache":false}'), +(51857, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.439+00', '{"cached":null,"ignore_cache":false}'), +(51858, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.467+00', '{"cached":null,"ignore_cache":false}'), +(51859, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.515+00', '{"cached":null,"ignore_cache":false}'), +(51860, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.71+00', '{"cached":null,"ignore_cache":false}'), +(51861, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.733+00', '{"cached":null,"ignore_cache":false}'), +(51862, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.763+00', '{"cached":null,"ignore_cache":false}'), +(51863, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.811+00', '{"cached":null,"ignore_cache":false}'), +(51864, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.865+00', '{"cached":null,"ignore_cache":false}'), +(51865, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.882+00', '{"cached":null,"ignore_cache":false}'), +(51866, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.897+00', '{"cached":null,"ignore_cache":false}'), +(51867, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.909+00', '{"cached":null,"ignore_cache":false}'), +(51868, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:15.994+00', '{"cached":null,"ignore_cache":false}'), +(51869, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:16.106+00', '{"cached":null,"ignore_cache":false}'), +(51870, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:16.107+00', '{"cached":null,"ignore_cache":false}'), +(51871, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:16.133+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51872, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:17.741+00', '{"cached":null,"ignore_cache":false}'), +(51873, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:18.091+00', '{"cached":null,"ignore_cache":false}'), +(51874, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:18.125+00', '{"cached":null,"ignore_cache":false}'), +(51875, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:18.169+00', '{"cached":null,"ignore_cache":false}'), +(51876, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:18.216+00', '{"cached":null,"ignore_cache":false}'), +(51877, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:18.35+00', '{"cached":null,"ignore_cache":false}'), +(51878, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:18.534+00', '{"cached":null,"ignore_cache":false}'), +(51879, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:26.707+00', '{"cached":null,"ignore_cache":false}'), +(51880, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:26.89+00', '{"cached":null,"ignore_cache":false}'), +(51881, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:08:26.894+00', '{"cached":null,"ignore_cache":false}'), +(51882, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.497+00', '{"cached":null,"ignore_cache":false}'), +(51883, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.747+00', '{"cached":null,"ignore_cache":false}'), +(51884, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:13.759+00', '{"cached":null,"ignore_cache":false}'), +(51885, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:14.133+00', '{"cached":null,"ignore_cache":false}'), +(51886, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:14.181+00', '{"cached":null,"ignore_cache":false}'), +(51887, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:14.281+00', '{"cached":null,"ignore_cache":false}'), +(51888, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:14.504+00', '{"cached":null,"ignore_cache":false}'), +(51889, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:14.52+00', '{"cached":null,"ignore_cache":false}'), +(51890, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:14.897+00', '{"cached":null,"ignore_cache":false}'), +(51891, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.053+00', '{"cached":null,"ignore_cache":false}'), +(51892, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.093+00', '{"cached":null,"ignore_cache":false}'), +(51893, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.12+00', '{"cached":null,"ignore_cache":false}'), +(51894, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.177+00', '{"cached":null,"ignore_cache":false}'), +(51895, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.409+00', '{"cached":null,"ignore_cache":false}'), +(51896, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.496+00', '{"cached":null,"ignore_cache":false}'), +(51897, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.508+00', '{"cached":null,"ignore_cache":false}'), +(51898, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.656+00', '{"cached":null,"ignore_cache":false}'), +(51899, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.802+00', '{"cached":null,"ignore_cache":false}'), +(51900, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.933+00', '{"cached":null,"ignore_cache":false}'), +(51901, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:15.99+00', '{"cached":null,"ignore_cache":false}'), +(51902, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.029+00', '{"cached":null,"ignore_cache":false}'), +(51903, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.173+00', '{"cached":null,"ignore_cache":false}'), +(51904, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.174+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51905, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.188+00', '{"cached":null,"ignore_cache":false}'), +(51906, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.365+00', '{"cached":null,"ignore_cache":false}'), +(51907, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.423+00', '{"cached":null,"ignore_cache":false}'), +(51908, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.453+00', '{"cached":null,"ignore_cache":false}'), +(51909, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.51+00', '{"cached":null,"ignore_cache":false}'), +(51910, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.857+00', '{"cached":null,"ignore_cache":false}'), +(51911, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:16.913+00', '{"cached":null,"ignore_cache":false}'), +(51912, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:17.01+00', '{"cached":null,"ignore_cache":false}'), +(51913, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:10:17.032+00', '{"cached":null,"ignore_cache":false}'), +(51914, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.211+00', '{"cached":null,"ignore_cache":false}'), +(51915, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.282+00', '{"cached":null,"ignore_cache":false}'), +(51916, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.361+00', '{"cached":null,"ignore_cache":false}'), +(51917, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.396+00', '{"cached":null,"ignore_cache":false}'), +(51918, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.421+00', '{"cached":null,"ignore_cache":false}'), +(51919, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:35.431+00', '{"cached":null,"ignore_cache":false}'), +(51920, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.344+00', '{"cached":null,"ignore_cache":false}'), +(51921, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.474+00', '{"cached":null,"ignore_cache":false}'), +(51922, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.543+00', '{"cached":null,"ignore_cache":false}'), +(51923, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.646+00', '{"cached":null,"ignore_cache":false}'), +(51924, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.654+00', '{"cached":null,"ignore_cache":false}'), +(51925, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.85+00', '{"cached":null,"ignore_cache":false}'), +(51926, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.87+00', '{"cached":null,"ignore_cache":false}'), +(51927, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:36.924+00', '{"cached":null,"ignore_cache":false}'), +(51928, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:37.093+00', '{"cached":null,"ignore_cache":false}'), +(51929, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:11:37.205+00', '{"cached":null,"ignore_cache":false}'), +(51930, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.302+00', '{"cached":null,"ignore_cache":false}'), +(51931, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.316+00', '{"cached":null,"ignore_cache":false}'), +(51932, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.483+00', '{"cached":null,"ignore_cache":false}'), +(51933, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.538+00', '{"cached":null,"ignore_cache":false}'), +(51934, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.609+00', '{"cached":null,"ignore_cache":false}'), +(51935, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.874+00', '{"cached":null,"ignore_cache":false}'), +(51936, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:12:56.875+00', '{"cached":null,"ignore_cache":false}'), +(51937, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.618+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51938, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.759+00', '{"cached":null,"ignore_cache":false}'), +(51939, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:04.862+00', '{"cached":null,"ignore_cache":false}'), +(51940, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.177+00', '{"cached":null,"ignore_cache":false}'), +(51941, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.185+00', '{"cached":null,"ignore_cache":false}'), +(51942, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.345+00', '{"cached":null,"ignore_cache":false}'), +(51943, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.401+00', '{"cached":null,"ignore_cache":false}'), +(51944, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.447+00', '{"cached":null,"ignore_cache":false}'), +(51945, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.492+00', '{"cached":null,"ignore_cache":false}'), +(51946, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.614+00', '{"cached":null,"ignore_cache":false}'), +(51947, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.731+00', '{"cached":null,"ignore_cache":false}'), +(51948, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.905+00', '{"cached":null,"ignore_cache":false}'), +(51949, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.917+00', '{"cached":null,"ignore_cache":false}'), +(51950, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:07.981+00', '{"cached":null,"ignore_cache":false}'), +(51951, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:08.004+00', '{"cached":null,"ignore_cache":false}'), +(51952, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:08.049+00', '{"cached":null,"ignore_cache":false}'), +(51953, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:08.06+00', '{"cached":null,"ignore_cache":false}'), +(51954, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:08.105+00', '{"cached":null,"ignore_cache":false}'), +(51955, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:08.194+00', '{"cached":null,"ignore_cache":false}'), +(51956, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:08.3+00', '{"cached":null,"ignore_cache":false}'), +(51957, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:50.143+00', '{"cached":null,"ignore_cache":false}'), +(51958, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:50.146+00', '{"cached":null,"ignore_cache":false}'), +(51959, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:50.31+00', '{"cached":null,"ignore_cache":false}'), +(51960, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.009+00', '{"cached":null,"ignore_cache":false}'), +(51961, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.073+00', '{"cached":null,"ignore_cache":false}'), +(51962, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.136+00', '{"cached":null,"ignore_cache":false}'), +(51963, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.344+00', '{"cached":null,"ignore_cache":false}'), +(51964, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.361+00', '{"cached":null,"ignore_cache":false}'), +(51965, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.487+00', '{"cached":null,"ignore_cache":false}'), +(51966, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.512+00', '{"cached":null,"ignore_cache":false}'), +(51967, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.59+00', '{"cached":null,"ignore_cache":false}'), +(51968, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.597+00', '{"cached":null,"ignore_cache":false}'), +(51969, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.612+00', '{"cached":null,"ignore_cache":false}'), +(51970, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:54.672+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(51971, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:55.027+00', '{"cached":null,"ignore_cache":false}'), +(51972, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:13:55.19+00', '{"cached":null,"ignore_cache":false}'), +(51973, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:11.107+00', '{"cached":null,"ignore_cache":false}'), +(51974, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:11.375+00', '{"cached":null,"ignore_cache":false}'), +(51975, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:11.417+00', '{"cached":null,"ignore_cache":false}'), +(51976, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:11.448+00', '{"cached":null,"ignore_cache":false}'), +(51977, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:11.45+00', '{"cached":null,"ignore_cache":false}'), +(51978, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:11.497+00', '{"cached":null,"ignore_cache":false}'), +(51979, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.072+00', '{"cached":null,"ignore_cache":false}'), +(51980, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.089+00', '{"cached":null,"ignore_cache":false}'), +(51981, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.187+00', '{"cached":null,"ignore_cache":false}'), +(51982, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.371+00', '{"cached":null,"ignore_cache":false}'), +(51983, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.4+00', '{"cached":null,"ignore_cache":false}'), +(51984, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.549+00', '{"cached":null,"ignore_cache":false}'), +(51985, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.558+00', '{"cached":null,"ignore_cache":false}'), +(51986, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.627+00', '{"cached":null,"ignore_cache":false}'), +(51987, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.9+00', '{"cached":null,"ignore_cache":false}'), +(51988, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:13.971+00', '{"cached":null,"ignore_cache":false}'), +(51989, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:37.951+00', '{"cached":null,"ignore_cache":false}'), +(51990, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.054+00', '{"cached":null,"ignore_cache":false}'), +(51991, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.074+00', '{"cached":null,"ignore_cache":false}'), +(51992, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.078+00', '{"cached":null,"ignore_cache":false}'), +(51993, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.201+00', '{"cached":null,"ignore_cache":false}'), +(51994, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:38.217+00', '{"cached":null,"ignore_cache":false}'), +(51995, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:39.123+00', '{"cached":null,"ignore_cache":false}'), +(51996, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:39.301+00', '{"cached":null,"ignore_cache":false}'), +(51997, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:39.326+00', '{"cached":null,"ignore_cache":false}'), +(51998, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:39.347+00', '{"cached":null,"ignore_cache":false}'), +(51999, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:39.547+00', '{"cached":null,"ignore_cache":false}'), +(52000, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:39.575+00', '{"cached":null,"ignore_cache":false}'), +(52001, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.087+00', '{"cached":null,"ignore_cache":false}'), +(52002, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.123+00', '{"cached":null,"ignore_cache":false}'), +(52003, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.284+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52004, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.379+00', '{"cached":null,"ignore_cache":false}'), +(52005, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.633+00', '{"cached":null,"ignore_cache":false}'), +(52006, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.667+00', '{"cached":null,"ignore_cache":false}'), +(52007, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.744+00', '{"cached":null,"ignore_cache":false}'), +(52008, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:48.846+00', '{"cached":null,"ignore_cache":false}'), +(52009, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:49.049+00', '{"cached":null,"ignore_cache":false}'), +(52010, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:49.117+00', '{"cached":null,"ignore_cache":false}'), +(52011, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.102+00', '{"cached":null,"ignore_cache":false}'), +(52012, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.277+00', '{"cached":null,"ignore_cache":false}'), +(52013, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.34+00', '{"cached":null,"ignore_cache":false}'), +(52014, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.355+00', '{"cached":null,"ignore_cache":false}'), +(52015, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.427+00', '{"cached":null,"ignore_cache":false}'), +(52016, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.466+00', '{"cached":null,"ignore_cache":false}'), +(52017, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.473+00', '{"cached":null,"ignore_cache":false}'), +(52018, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.537+00', '{"cached":null,"ignore_cache":false}'), +(52019, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.922+00', '{"cached":null,"ignore_cache":false}'), +(52020, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:14:51.989+00', '{"cached":null,"ignore_cache":false}'), +(52021, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.005+00', '{"cached":null,"ignore_cache":false}'), +(52022, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.115+00', '{"cached":null,"ignore_cache":false}'), +(52023, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.118+00', '{"cached":null,"ignore_cache":false}'), +(52024, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.449+00', '{"cached":null,"ignore_cache":false}'), +(52025, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.556+00', '{"cached":null,"ignore_cache":false}'), +(52026, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.769+00', '{"cached":null,"ignore_cache":false}'), +(52027, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.809+00', '{"cached":null,"ignore_cache":false}'), +(52028, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:13.988+00', '{"cached":null,"ignore_cache":false}'), +(52029, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.079+00', '{"cached":null,"ignore_cache":false}'), +(52030, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.111+00', '{"cached":null,"ignore_cache":false}'), +(52031, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.125+00', '{"cached":null,"ignore_cache":false}'), +(52032, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.146+00', '{"cached":null,"ignore_cache":false}'), +(52033, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.194+00', '{"cached":null,"ignore_cache":false}'), +(52034, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.221+00', '{"cached":null,"ignore_cache":false}'), +(52035, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.597+00', '{"cached":null,"ignore_cache":false}'), +(52036, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:14.665+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52037, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.457+00', '{"cached":null,"ignore_cache":false}'), +(52038, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.497+00', '{"cached":null,"ignore_cache":false}'), +(52039, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.841+00', '{"cached":null,"ignore_cache":false}'), +(52040, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:50.855+00', '{"cached":null,"ignore_cache":false}'), +(52041, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.315+00', '{"cached":null,"ignore_cache":false}'), +(52042, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.62+00', '{"cached":null,"ignore_cache":false}'), +(52043, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.712+00', '{"cached":null,"ignore_cache":false}'), +(52044, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.792+00', '{"cached":null,"ignore_cache":false}'), +(52045, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:51.934+00', '{"cached":null,"ignore_cache":false}'), +(52046, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:52.023+00', '{"cached":null,"ignore_cache":false}'), +(52047, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:52.074+00', '{"cached":null,"ignore_cache":false}'), +(52048, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:52.103+00', '{"cached":null,"ignore_cache":false}'), +(52049, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:52.134+00', '{"cached":null,"ignore_cache":false}'), +(52050, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:52.296+00', '{"cached":null,"ignore_cache":false}'), +(52051, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:52.337+00', '{"cached":null,"ignore_cache":false}'), +(52052, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:52.398+00', '{"cached":null,"ignore_cache":false}'), +(52053, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:53.976+00', '{"cached":null,"ignore_cache":false}'), +(52054, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:54.098+00', '{"cached":null,"ignore_cache":false}'), +(52055, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.137+00', '{"cached":null,"ignore_cache":false}'), +(52056, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.143+00', '{"cached":null,"ignore_cache":false}'), +(52057, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.161+00', '{"cached":null,"ignore_cache":false}'), +(52058, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.774+00', '{"cached":null,"ignore_cache":false}'), +(52059, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.827+00', '{"cached":null,"ignore_cache":false}'), +(52060, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.914+00', '{"cached":null,"ignore_cache":false}'), +(52061, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.928+00', '{"cached":null,"ignore_cache":false}'), +(52062, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:55.941+00', '{"cached":null,"ignore_cache":false}'), +(52063, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.95+00', '{"cached":null,"ignore_cache":false}'), +(52064, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:56.961+00', '{"cached":null,"ignore_cache":false}'), +(52065, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:57.027+00', '{"cached":null,"ignore_cache":false}'), +(52066, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:57.091+00', '{"cached":null,"ignore_cache":false}'), +(52067, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:57.127+00', '{"cached":null,"ignore_cache":false}'), +(52068, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:15:57.144+00', '{"cached":null,"ignore_cache":false}'), +(52069, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:07.343+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52070, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:07.413+00', '{"cached":null,"ignore_cache":false}'), +(52071, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:11.289+00', '{"cached":null,"ignore_cache":false}'), +(52072, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:11.361+00', '{"cached":null,"ignore_cache":false}'), +(52073, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:11.607+00', '{"cached":null,"ignore_cache":false}'), +(52074, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.054+00', '{"cached":null,"ignore_cache":false}'), +(52075, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.056+00', '{"cached":null,"ignore_cache":false}'), +(52076, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.112+00', '{"cached":null,"ignore_cache":false}'), +(52077, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.243+00', '{"cached":null,"ignore_cache":false}'), +(52078, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.352+00', '{"cached":null,"ignore_cache":false}'), +(52079, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:13.962+00', '{"cached":null,"ignore_cache":false}'), +(52080, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:14.295+00', '{"cached":null,"ignore_cache":false}'), +(52081, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:14.401+00', '{"cached":null,"ignore_cache":false}'), +(52082, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:14.481+00', '{"cached":null,"ignore_cache":false}'), +(52083, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:14.555+00', '{"cached":null,"ignore_cache":false}'), +(52084, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:14.581+00', '{"cached":null,"ignore_cache":false}'), +(52085, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:14.761+00', '{"cached":null,"ignore_cache":false}'), +(52086, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:14.774+00', '{"cached":null,"ignore_cache":false}'), +(52087, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.313+00', '{"cached":null,"ignore_cache":false}'), +(52088, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.518+00', '{"cached":null,"ignore_cache":false}'), +(52089, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.546+00', '{"cached":null,"ignore_cache":false}'), +(52090, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.566+00', '{"cached":null,"ignore_cache":false}'), +(52091, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.854+00', '{"cached":null,"ignore_cache":false}'), +(52092, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:16.887+00', '{"cached":null,"ignore_cache":false}'), +(52093, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.105+00', '{"cached":null,"ignore_cache":false}'), +(52094, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:20.467+00', '{"cached":null,"ignore_cache":false}'), +(52095, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:21.116+00', '{"cached":null,"ignore_cache":false}'), +(52096, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:21.943+00', '{"cached":null,"ignore_cache":false}'), +(52097, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.083+00', '{"cached":null,"ignore_cache":false}'), +(52098, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.42+00', '{"cached":null,"ignore_cache":false}'), +(52099, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.445+00', '{"cached":null,"ignore_cache":false}'), +(52100, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.593+00', '{"cached":null,"ignore_cache":false}'), +(52101, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.624+00', '{"cached":null,"ignore_cache":false}'), +(52102, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.639+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52103, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.711+00', '{"cached":null,"ignore_cache":false}'), +(52104, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:22.955+00', '{"cached":null,"ignore_cache":false}'), +(52105, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.002+00', '{"cached":null,"ignore_cache":false}'), +(52106, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.225+00', '{"cached":null,"ignore_cache":false}'), +(52107, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.246+00', '{"cached":null,"ignore_cache":false}'), +(52108, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.297+00', '{"cached":null,"ignore_cache":false}'), +(52109, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.343+00', '{"cached":null,"ignore_cache":false}'), +(52110, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.581+00', '{"cached":null,"ignore_cache":false}'), +(52111, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.772+00', '{"cached":null,"ignore_cache":false}'), +(52112, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.807+00', '{"cached":null,"ignore_cache":false}'), +(52113, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.866+00', '{"cached":null,"ignore_cache":false}'), +(52114, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:23.975+00', '{"cached":null,"ignore_cache":false}'), +(52115, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.029+00', '{"cached":null,"ignore_cache":false}'), +(52116, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.051+00', '{"cached":null,"ignore_cache":false}'), +(52117, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.074+00', '{"cached":null,"ignore_cache":false}'), +(52118, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.109+00', '{"cached":null,"ignore_cache":false}'), +(52119, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.121+00', '{"cached":null,"ignore_cache":false}'), +(52120, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.146+00', '{"cached":null,"ignore_cache":false}'), +(52121, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.218+00', '{"cached":null,"ignore_cache":false}'), +(52122, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.229+00', '{"cached":null,"ignore_cache":false}'), +(52123, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:16:24.764+00', '{"cached":null,"ignore_cache":false}'), +(52124, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.305+00', '{"cached":null,"ignore_cache":false}'), +(52125, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.31+00', '{"cached":null,"ignore_cache":false}'), +(52126, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.326+00', '{"cached":null,"ignore_cache":false}'), +(52127, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.384+00', '{"cached":null,"ignore_cache":false}'), +(52128, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.447+00', '{"cached":null,"ignore_cache":false}'), +(52129, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:06.493+00', '{"cached":null,"ignore_cache":false}'), +(52130, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.235+00', '{"cached":null,"ignore_cache":false}'), +(52131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.356+00', '{"cached":null,"ignore_cache":false}'), +(52132, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.373+00', '{"cached":null,"ignore_cache":false}'), +(52133, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.453+00', '{"cached":null,"ignore_cache":false}'), +(52134, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.542+00', '{"cached":null,"ignore_cache":false}'), +(52135, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.855+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52136, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:07.971+00', '{"cached":null,"ignore_cache":false}'), +(52137, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.054+00', '{"cached":null,"ignore_cache":false}'), +(52138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.089+00', '{"cached":null,"ignore_cache":false}'), +(52139, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.189+00', '{"cached":null,"ignore_cache":false}'), +(52140, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.281+00', '{"cached":null,"ignore_cache":false}'), +(52141, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.288+00', '{"cached":null,"ignore_cache":false}'), +(52142, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.311+00', '{"cached":null,"ignore_cache":false}'), +(52143, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.338+00', '{"cached":null,"ignore_cache":false}'), +(52144, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.355+00', '{"cached":null,"ignore_cache":false}'), +(52145, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.675+00', '{"cached":null,"ignore_cache":false}'), +(52146, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.693+00', '{"cached":null,"ignore_cache":false}'), +(52147, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:08.966+00', '{"cached":null,"ignore_cache":false}'), +(52148, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:09.315+00', '{"cached":null,"ignore_cache":false}'), +(52149, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:09.503+00', '{"cached":null,"ignore_cache":false}'), +(52150, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:09.51+00', '{"cached":null,"ignore_cache":false}'), +(52151, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:09.526+00', '{"cached":null,"ignore_cache":false}'), +(52152, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:09.547+00', '{"cached":null,"ignore_cache":false}'), +(52153, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:10.106+00', '{"cached":null,"ignore_cache":false}'), +(52154, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:10.265+00', '{"cached":null,"ignore_cache":false}'), +(52155, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:31.903+00', '{"cached":null,"ignore_cache":false}'), +(52156, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.044+00', '{"cached":null,"ignore_cache":false}'), +(52157, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.325+00', '{"cached":null,"ignore_cache":false}'), +(52158, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.465+00', '{"cached":null,"ignore_cache":false}'), +(52159, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.625+00', '{"cached":null,"ignore_cache":false}'), +(52160, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.753+00', '{"cached":null,"ignore_cache":false}'), +(52161, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.759+00', '{"cached":null,"ignore_cache":false}'), +(52162, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.792+00', '{"cached":null,"ignore_cache":false}'), +(52163, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.813+00', '{"cached":null,"ignore_cache":false}'), +(52164, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:32.841+00', '{"cached":null,"ignore_cache":false}'), +(52165, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.081+00', '{"cached":null,"ignore_cache":false}'), +(52166, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.109+00', '{"cached":null,"ignore_cache":false}'), +(52167, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.122+00', '{"cached":null,"ignore_cache":false}'), +(52168, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.346+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52169, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.451+00', '{"cached":null,"ignore_cache":false}'), +(52170, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.554+00', '{"cached":null,"ignore_cache":false}'), +(52171, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:33.69+00', '{"cached":null,"ignore_cache":false}'), +(52172, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.042+00', '{"cached":null,"ignore_cache":false}'), +(52173, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.065+00', '{"cached":null,"ignore_cache":false}'), +(52174, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.139+00', '{"cached":null,"ignore_cache":false}'), +(52175, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.329+00', '{"cached":null,"ignore_cache":false}'), +(52176, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.354+00', '{"cached":null,"ignore_cache":false}'), +(52177, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.428+00', '{"cached":null,"ignore_cache":false}'), +(52178, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.439+00', '{"cached":null,"ignore_cache":false}'), +(52179, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.564+00', '{"cached":null,"ignore_cache":false}'), +(52180, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.618+00', '{"cached":null,"ignore_cache":false}'), +(52181, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:34.638+00', '{"cached":null,"ignore_cache":false}'), +(52182, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:35.143+00', '{"cached":null,"ignore_cache":false}'), +(52183, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:17:35.168+00', '{"cached":null,"ignore_cache":false}'), +(52184, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.37+00', '{"cached":null,"ignore_cache":false}'), +(52185, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.409+00', '{"cached":null,"ignore_cache":false}'), +(52186, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.562+00', '{"cached":null,"ignore_cache":false}'), +(52187, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.588+00', '{"cached":null,"ignore_cache":false}'), +(52188, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.759+00', '{"cached":null,"ignore_cache":false}'), +(52189, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.802+00', '{"cached":null,"ignore_cache":false}'), +(52190, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.886+00', '{"cached":null,"ignore_cache":false}'), +(52191, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:03.887+00', '{"cached":null,"ignore_cache":false}'), +(52192, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.115+00', '{"cached":null,"ignore_cache":false}'), +(52193, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.133+00', '{"cached":null,"ignore_cache":false}'), +(52194, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.517+00', '{"cached":null,"ignore_cache":false}'), +(52195, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.609+00', '{"cached":null,"ignore_cache":false}'), +(52196, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.805+00', '{"cached":null,"ignore_cache":false}'), +(52197, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.824+00', '{"cached":null,"ignore_cache":false}'), +(52198, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.916+00', '{"cached":null,"ignore_cache":false}'), +(52199, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:04.922+00', '{"cached":null,"ignore_cache":false}'), +(52200, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.146+00', '{"cached":null,"ignore_cache":false}'), +(52201, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.382+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52202, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.383+00', '{"cached":null,"ignore_cache":false}'), +(52203, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.383+00', '{"cached":null,"ignore_cache":false}'), +(52204, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.431+00', '{"cached":null,"ignore_cache":false}'), +(52205, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.495+00', '{"cached":null,"ignore_cache":false}'), +(52206, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:05.919+00', '{"cached":null,"ignore_cache":false}'), +(52207, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.244+00', '{"cached":null,"ignore_cache":false}'), +(52208, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.285+00', '{"cached":null,"ignore_cache":false}'), +(52209, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.443+00', '{"cached":null,"ignore_cache":false}'), +(52210, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.582+00', '{"cached":null,"ignore_cache":false}'), +(52211, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.645+00', '{"cached":null,"ignore_cache":false}'), +(52212, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.867+00', '{"cached":null,"ignore_cache":false}'), +(52213, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:06.983+00', '{"cached":null,"ignore_cache":false}'), +(52214, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.81+00', '{"cached":null,"ignore_cache":false}'), +(52215, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.813+00', '{"cached":null,"ignore_cache":false}'), +(52216, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.886+00', '{"cached":null,"ignore_cache":false}'), +(52217, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:28.922+00', '{"cached":null,"ignore_cache":false}'), +(52218, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:29.005+00', '{"cached":null,"ignore_cache":false}'), +(52219, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:29.024+00', '{"cached":null,"ignore_cache":false}'), +(52220, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:29.592+00', '{"cached":null,"ignore_cache":false}'), +(52221, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.517+00', '{"cached":null,"ignore_cache":false}'), +(52222, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.55+00', '{"cached":null,"ignore_cache":false}'), +(52223, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.622+00', '{"cached":null,"ignore_cache":false}'), +(52224, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.722+00', '{"cached":null,"ignore_cache":false}'), +(52225, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:30.735+00', '{"cached":null,"ignore_cache":false}'), +(52226, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.533+00', '{"cached":null,"ignore_cache":false}'), +(52227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.756+00', '{"cached":null,"ignore_cache":false}'), +(52228, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:35.954+00', '{"cached":null,"ignore_cache":false}'), +(52229, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.06+00', '{"cached":null,"ignore_cache":false}'), +(52230, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.215+00', '{"cached":null,"ignore_cache":false}'), +(52231, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.226+00', '{"cached":null,"ignore_cache":false}'), +(52232, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.293+00', '{"cached":null,"ignore_cache":false}'), +(52233, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.361+00', '{"cached":null,"ignore_cache":false}'), +(52234, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:36.567+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52235, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:37.061+00', '{"cached":null,"ignore_cache":false}'), +(52236, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:37.217+00', '{"cached":null,"ignore_cache":false}'), +(52237, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:37.329+00', '{"cached":null,"ignore_cache":false}'), +(52238, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:37.395+00', '{"cached":null,"ignore_cache":false}'), +(52239, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:41.399+00', '{"cached":null,"ignore_cache":false}'), +(52240, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:41.75+00', '{"cached":null,"ignore_cache":false}'), +(52241, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:41.972+00', '{"cached":null,"ignore_cache":false}'), +(52242, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:18:42.057+00', '{"cached":null,"ignore_cache":false}'), +(52243, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.733+00', '{"cached":null,"ignore_cache":false}'), +(52244, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:07.918+00', '{"cached":null,"ignore_cache":false}'), +(52245, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.038+00', '{"cached":null,"ignore_cache":false}'), +(52246, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.113+00', '{"cached":null,"ignore_cache":false}'), +(52247, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.134+00', '{"cached":null,"ignore_cache":false}'), +(52248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.208+00', '{"cached":null,"ignore_cache":false}'), +(52249, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.218+00', '{"cached":null,"ignore_cache":false}'), +(52250, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.293+00', '{"cached":null,"ignore_cache":false}'), +(52251, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.598+00', '{"cached":null,"ignore_cache":false}'), +(52252, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:08.706+00', '{"cached":null,"ignore_cache":false}'), +(52253, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.06+00', '{"cached":null,"ignore_cache":false}'), +(52254, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.143+00', '{"cached":null,"ignore_cache":false}'), +(52255, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.187+00', '{"cached":null,"ignore_cache":false}'), +(52256, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.207+00', '{"cached":null,"ignore_cache":false}'), +(52257, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.293+00', '{"cached":null,"ignore_cache":false}'), +(52258, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.299+00', '{"cached":null,"ignore_cache":false}'), +(52259, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.461+00', '{"cached":null,"ignore_cache":false}'), +(52260, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.58+00', '{"cached":null,"ignore_cache":false}'), +(52261, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.839+00', '{"cached":null,"ignore_cache":false}'), +(52262, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.855+00', '{"cached":null,"ignore_cache":false}'), +(52263, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.875+00', '{"cached":null,"ignore_cache":false}'), +(52264, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.888+00', '{"cached":null,"ignore_cache":false}'), +(52265, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:09.889+00', '{"cached":null,"ignore_cache":false}'), +(52266, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.191+00', '{"cached":null,"ignore_cache":false}'), +(52267, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.278+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52268, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.361+00', '{"cached":null,"ignore_cache":false}'), +(52269, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.638+00', '{"cached":null,"ignore_cache":false}'), +(52270, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.722+00', '{"cached":null,"ignore_cache":false}'), +(52271, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.774+00', '{"cached":null,"ignore_cache":false}'), +(52272, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.851+00', '{"cached":null,"ignore_cache":false}'), +(52273, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:19:10.938+00', '{"cached":null,"ignore_cache":false}'), +(52274, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.114+00', '{"cached":null,"ignore_cache":false}'), +(52275, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.234+00', '{"cached":null,"ignore_cache":false}'), +(52276, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.505+00', '{"cached":null,"ignore_cache":false}'), +(52277, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:13.92+00', '{"cached":null,"ignore_cache":false}'), +(52278, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.008+00', '{"cached":null,"ignore_cache":false}'), +(52279, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.272+00', '{"cached":null,"ignore_cache":false}'), +(52280, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.512+00', '{"cached":null,"ignore_cache":false}'), +(52281, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.569+00', '{"cached":null,"ignore_cache":false}'), +(52282, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.658+00', '{"cached":null,"ignore_cache":false}'), +(52283, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.691+00', '{"cached":null,"ignore_cache":false}'), +(52284, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.903+00', '{"cached":null,"ignore_cache":false}'), +(52285, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:14.91+00', '{"cached":null,"ignore_cache":false}'), +(52286, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:15.034+00', '{"cached":null,"ignore_cache":false}'), +(52287, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:15.104+00', '{"cached":null,"ignore_cache":false}'), +(52288, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:15.498+00', '{"cached":null,"ignore_cache":false}'), +(52289, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:15.615+00', '{"cached":null,"ignore_cache":false}'), +(52290, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:19.77+00', '{"cached":null,"ignore_cache":false}'), +(52291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:19.814+00', '{"cached":null,"ignore_cache":false}'), +(52292, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:19.909+00', '{"cached":null,"ignore_cache":false}'), +(52293, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.573+00', '{"cached":null,"ignore_cache":false}'), +(52294, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:21.661+00', '{"cached":null,"ignore_cache":false}'), +(52295, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:22.2+00', '{"cached":null,"ignore_cache":false}'), +(52296, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:22.337+00', '{"cached":null,"ignore_cache":false}'), +(52297, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:22.358+00', '{"cached":null,"ignore_cache":false}'), +(52298, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:22.38+00', '{"cached":null,"ignore_cache":false}'), +(52299, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:22.662+00', '{"cached":null,"ignore_cache":false}'), +(52300, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:22.684+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52301, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:22.909+00', '{"cached":null,"ignore_cache":false}'), +(52302, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:23.131+00', '{"cached":null,"ignore_cache":false}'), +(52303, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:31.569+00', '{"cached":null,"ignore_cache":false}'), +(52304, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:32.513+00', '{"cached":null,"ignore_cache":false}'), +(52305, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:32.623+00', '{"cached":null,"ignore_cache":false}'), +(52306, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:32.704+00', '{"cached":null,"ignore_cache":false}'), +(52307, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.448+00', '{"cached":null,"ignore_cache":false}'), +(52308, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:33.481+00', '{"cached":null,"ignore_cache":false}'), +(52309, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.269+00', '{"cached":null,"ignore_cache":false}'), +(52310, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.729+00', '{"cached":null,"ignore_cache":false}'), +(52311, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:34.973+00', '{"cached":null,"ignore_cache":false}'), +(52312, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.081+00', '{"cached":null,"ignore_cache":false}'), +(52313, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.281+00', '{"cached":null,"ignore_cache":false}'), +(52314, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.311+00', '{"cached":null,"ignore_cache":false}'), +(52315, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.339+00', '{"cached":null,"ignore_cache":false}'), +(52316, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.544+00', '{"cached":null,"ignore_cache":false}'), +(52317, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:35.904+00', '{"cached":null,"ignore_cache":false}'), +(52318, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.128+00', '{"cached":null,"ignore_cache":false}'), +(52319, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.292+00', '{"cached":null,"ignore_cache":false}'), +(52320, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.317+00', '{"cached":null,"ignore_cache":false}'), +(52321, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.465+00', '{"cached":null,"ignore_cache":false}'), +(52322, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.493+00', '{"cached":null,"ignore_cache":false}'), +(52323, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:36.501+00', '{"cached":null,"ignore_cache":false}'), +(52324, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:37.245+00', '{"cached":null,"ignore_cache":false}'), +(52325, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:37.413+00', '{"cached":null,"ignore_cache":false}'), +(52326, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:37.544+00', '{"cached":null,"ignore_cache":false}'), +(52327, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:37.766+00', '{"cached":null,"ignore_cache":false}'), +(52328, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:37.911+00', '{"cached":null,"ignore_cache":false}'), +(52329, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.038+00', '{"cached":null,"ignore_cache":false}'), +(52330, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.102+00', '{"cached":null,"ignore_cache":false}'), +(52331, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.113+00', '{"cached":null,"ignore_cache":false}'), +(52332, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.245+00', '{"cached":null,"ignore_cache":false}'), +(52333, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.248+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52334, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.285+00', '{"cached":null,"ignore_cache":false}'), +(52335, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.525+00', '{"cached":null,"ignore_cache":false}'), +(52336, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.55+00', '{"cached":null,"ignore_cache":false}'), +(52337, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.627+00', '{"cached":null,"ignore_cache":false}'), +(52338, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.633+00', '{"cached":null,"ignore_cache":false}'), +(52339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.75+00', '{"cached":null,"ignore_cache":false}'), +(52340, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:38.921+00', '{"cached":null,"ignore_cache":false}'), +(52341, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:39.235+00', '{"cached":null,"ignore_cache":false}'), +(52342, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.404+00', '{"cached":null,"ignore_cache":false}'), +(52343, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.428+00', '{"cached":null,"ignore_cache":false}'), +(52344, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.516+00', '{"cached":null,"ignore_cache":false}'), +(52345, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.535+00', '{"cached":null,"ignore_cache":false}'), +(52346, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.657+00', '{"cached":null,"ignore_cache":false}'), +(52347, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:53.71+00', '{"cached":null,"ignore_cache":false}'), +(52348, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:54.006+00', '{"cached":null,"ignore_cache":false}'), +(52349, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:54.019+00', '{"cached":null,"ignore_cache":false}'), +(52350, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:59.032+00', '{"cached":null,"ignore_cache":false}'), +(52351, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:59.073+00', '{"cached":null,"ignore_cache":false}'), +(52352, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:59.235+00', '{"cached":null,"ignore_cache":false}'), +(52353, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:59.289+00', '{"cached":null,"ignore_cache":false}'), +(52354, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:59.741+00', '{"cached":null,"ignore_cache":false}'), +(52355, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:20:59.844+00', '{"cached":null,"ignore_cache":false}'), +(52356, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:00.072+00', '{"cached":null,"ignore_cache":false}'), +(52357, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:00.123+00', '{"cached":null,"ignore_cache":false}'), +(52358, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:00.16+00', '{"cached":null,"ignore_cache":false}'), +(52359, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:00.162+00', '{"cached":null,"ignore_cache":false}'), +(52360, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:05.295+00', '{"cached":null,"ignore_cache":false}'), +(52361, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:06.175+00', '{"cached":null,"ignore_cache":false}'), +(52362, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:06.3+00', '{"cached":null,"ignore_cache":false}'), +(52363, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:06.301+00', '{"cached":null,"ignore_cache":false}'), +(52364, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:06.808+00', '{"cached":null,"ignore_cache":false}'), +(52365, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:07.005+00', '{"cached":null,"ignore_cache":false}'), +(52366, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:20.511+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52367, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:21.351+00', '{"cached":null,"ignore_cache":false}'), +(52368, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:21.394+00', '{"cached":null,"ignore_cache":false}'), +(52369, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:21.511+00', '{"cached":null,"ignore_cache":false}'), +(52370, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:25.959+00', '{"cached":null,"ignore_cache":false}'), +(52371, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:26.923+00', '{"cached":null,"ignore_cache":false}'), +(52372, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:27.71+00', '{"cached":null,"ignore_cache":false}'), +(52373, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:27.749+00', '{"cached":null,"ignore_cache":false}'), +(52374, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:27.998+00', '{"cached":null,"ignore_cache":false}'), +(52375, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.235+00', '{"cached":null,"ignore_cache":false}'), +(52376, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.309+00', '{"cached":null,"ignore_cache":false}'), +(52377, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.39+00', '{"cached":null,"ignore_cache":false}'), +(52378, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.437+00', '{"cached":null,"ignore_cache":false}'), +(52379, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.522+00', '{"cached":null,"ignore_cache":false}'), +(52380, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.563+00', '{"cached":null,"ignore_cache":false}'), +(52381, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.625+00', '{"cached":null,"ignore_cache":false}'), +(52382, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:28.714+00', '{"cached":null,"ignore_cache":false}'), +(52383, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:30.568+00', '{"cached":null,"ignore_cache":false}'), +(52384, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:30.666+00', '{"cached":null,"ignore_cache":false}'), +(52385, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:30.738+00', '{"cached":null,"ignore_cache":false}'), +(52386, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.023+00', '{"cached":null,"ignore_cache":false}'), +(52387, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.569+00', '{"cached":null,"ignore_cache":false}'), +(52388, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.793+00', '{"cached":null,"ignore_cache":false}'), +(52389, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.855+00', '{"cached":null,"ignore_cache":false}'), +(52390, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.888+00', '{"cached":null,"ignore_cache":false}'), +(52391, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.931+00', '{"cached":null,"ignore_cache":false}'), +(52392, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:31.959+00', '{"cached":null,"ignore_cache":false}'), +(52393, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:32.03+00', '{"cached":null,"ignore_cache":false}'), +(52394, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:32.056+00', '{"cached":null,"ignore_cache":false}'), +(52395, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:32.066+00', '{"cached":null,"ignore_cache":false}'), +(52396, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:32.103+00', '{"cached":null,"ignore_cache":false}'), +(52397, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:32.382+00', '{"cached":null,"ignore_cache":false}'), +(52398, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.504+00', '{"cached":null,"ignore_cache":false}'), +(52399, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.632+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52400, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.644+00', '{"cached":null,"ignore_cache":false}'), +(52401, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.672+00', '{"cached":null,"ignore_cache":false}'), +(52402, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.735+00', '{"cached":null,"ignore_cache":false}'), +(52403, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:35.769+00', '{"cached":null,"ignore_cache":false}'), +(52404, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36+00', '{"cached":null,"ignore_cache":false}'), +(52405, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.249+00', '{"cached":null,"ignore_cache":false}'), +(52406, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.52+00', '{"cached":null,"ignore_cache":false}'), +(52407, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.617+00', '{"cached":null,"ignore_cache":false}'), +(52408, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:36.801+00', '{"cached":null,"ignore_cache":false}'), +(52409, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.049+00', '{"cached":null,"ignore_cache":false}'), +(52410, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.26+00', '{"cached":null,"ignore_cache":false}'), +(52411, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.261+00', '{"cached":null,"ignore_cache":false}'), +(52412, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.442+00', '{"cached":null,"ignore_cache":false}'), +(52413, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.489+00', '{"cached":null,"ignore_cache":false}'), +(52414, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.887+00', '{"cached":null,"ignore_cache":false}'), +(52415, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:37.993+00', '{"cached":null,"ignore_cache":false}'), +(52416, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.161+00', '{"cached":null,"ignore_cache":false}'), +(52417, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.342+00', '{"cached":null,"ignore_cache":false}'), +(52418, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.525+00', '{"cached":null,"ignore_cache":false}'), +(52419, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.605+00', '{"cached":null,"ignore_cache":false}'), +(52420, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.902+00', '{"cached":null,"ignore_cache":false}'), +(52421, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:38.914+00', '{"cached":null,"ignore_cache":false}'), +(52422, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.181+00', '{"cached":null,"ignore_cache":false}'), +(52423, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.404+00', '{"cached":null,"ignore_cache":false}'), +(52424, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.447+00', '{"cached":null,"ignore_cache":false}'), +(52425, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.486+00', '{"cached":null,"ignore_cache":false}'), +(52426, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.662+00', '{"cached":null,"ignore_cache":false}'), +(52427, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.663+00', '{"cached":null,"ignore_cache":false}'), +(52428, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.7+00', '{"cached":null,"ignore_cache":false}'), +(52429, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.767+00', '{"cached":null,"ignore_cache":false}'), +(52430, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.837+00', '{"cached":null,"ignore_cache":false}'), +(52431, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.943+00', '{"cached":null,"ignore_cache":false}'), +(52432, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:39.991+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52433, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:40.053+00', '{"cached":null,"ignore_cache":false}'), +(52434, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:40.387+00', '{"cached":null,"ignore_cache":false}'), +(52435, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:40.454+00', '{"cached":null,"ignore_cache":false}'), +(52436, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:40.477+00', '{"cached":null,"ignore_cache":false}'), +(52437, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:40.635+00', '{"cached":null,"ignore_cache":false}'), +(52438, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:42.249+00', '{"cached":null,"ignore_cache":false}'), +(52439, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:42.44+00', '{"cached":null,"ignore_cache":false}'), +(52440, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:42.484+00', '{"cached":null,"ignore_cache":false}'), +(52441, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:42.716+00', '{"cached":null,"ignore_cache":false}'), +(52442, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:42.961+00', '{"cached":null,"ignore_cache":false}'), +(52443, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:42.967+00', '{"cached":null,"ignore_cache":false}'), +(52444, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.049+00', '{"cached":null,"ignore_cache":false}'), +(52445, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.341+00', '{"cached":null,"ignore_cache":false}'), +(52446, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.382+00', '{"cached":null,"ignore_cache":false}'), +(52447, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.424+00', '{"cached":null,"ignore_cache":false}'), +(52448, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.487+00', '{"cached":null,"ignore_cache":false}'), +(52449, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.536+00', '{"cached":null,"ignore_cache":false}'), +(52450, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.566+00', '{"cached":null,"ignore_cache":false}'), +(52451, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.611+00', '{"cached":null,"ignore_cache":false}'), +(52452, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.663+00', '{"cached":null,"ignore_cache":false}'), +(52453, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:43.697+00', '{"cached":null,"ignore_cache":false}'), +(52454, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:44.105+00', '{"cached":null,"ignore_cache":false}'), +(52455, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:21:44.149+00', '{"cached":null,"ignore_cache":false}'), +(52456, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.177+00', '{"cached":null,"ignore_cache":false}'), +(52457, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.26+00', '{"cached":null,"ignore_cache":false}'), +(52458, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.631+00', '{"cached":null,"ignore_cache":false}'), +(52459, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:10.862+00', '{"cached":null,"ignore_cache":false}'), +(52460, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.044+00', '{"cached":null,"ignore_cache":false}'), +(52461, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.176+00', '{"cached":null,"ignore_cache":false}'), +(52462, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.528+00', '{"cached":null,"ignore_cache":false}'), +(52463, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:11.99+00', '{"cached":null,"ignore_cache":false}'), +(52464, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.054+00', '{"cached":null,"ignore_cache":false}'), +(52465, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.268+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52466, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:13.638+00', '{"cached":null,"ignore_cache":false}'), +(52467, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.277+00', '{"cached":null,"ignore_cache":false}'), +(52468, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.281+00', '{"cached":null,"ignore_cache":false}'), +(52469, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.678+00', '{"cached":null,"ignore_cache":false}'), +(52470, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:14.825+00', '{"cached":null,"ignore_cache":false}'), +(52471, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.571+00', '{"cached":null,"ignore_cache":false}'), +(52472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.573+00', '{"cached":null,"ignore_cache":false}'), +(52473, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.574+00', '{"cached":null,"ignore_cache":false}'), +(52474, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.575+00', '{"cached":null,"ignore_cache":false}'), +(52475, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.676+00', '{"cached":null,"ignore_cache":false}'), +(52476, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.813+00', '{"cached":null,"ignore_cache":false}'), +(52477, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.845+00', '{"cached":null,"ignore_cache":false}'), +(52478, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.846+00', '{"cached":null,"ignore_cache":false}'), +(52479, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:15.869+00', '{"cached":null,"ignore_cache":false}'), +(52480, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.006+00', '{"cached":null,"ignore_cache":false}'), +(52481, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.008+00', '{"cached":null,"ignore_cache":false}'), +(52482, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.042+00', '{"cached":null,"ignore_cache":false}'), +(52483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.456+00', '{"cached":null,"ignore_cache":false}'), +(52484, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.467+00', '{"cached":null,"ignore_cache":false}'), +(52485, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.481+00', '{"cached":null,"ignore_cache":false}'), +(52486, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:16.834+00', '{"cached":null,"ignore_cache":false}'), +(52487, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.016+00', '{"cached":null,"ignore_cache":false}'), +(52488, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.034+00', '{"cached":null,"ignore_cache":false}'), +(52489, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.067+00', '{"cached":null,"ignore_cache":false}'), +(52490, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.114+00', '{"cached":null,"ignore_cache":false}'), +(52491, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.246+00', '{"cached":null,"ignore_cache":false}'), +(52492, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.315+00', '{"cached":null,"ignore_cache":false}'), +(52493, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.326+00', '{"cached":null,"ignore_cache":false}'), +(52494, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:17.79+00', '{"cached":null,"ignore_cache":false}'), +(52495, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.048+00', '{"cached":null,"ignore_cache":false}'), +(52496, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.541+00', '{"cached":null,"ignore_cache":false}'), +(52497, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.565+00', '{"cached":null,"ignore_cache":false}'), +(52498, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.635+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52499, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.666+00', '{"cached":null,"ignore_cache":false}'), +(52500, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.727+00', '{"cached":null,"ignore_cache":false}'), +(52501, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.795+00', '{"cached":null,"ignore_cache":false}'), +(52502, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:18.826+00', '{"cached":null,"ignore_cache":false}'), +(52503, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.532+00', '{"cached":null,"ignore_cache":false}'), +(52504, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:19.941+00', '{"cached":null,"ignore_cache":false}'), +(52505, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.613+00', '{"cached":null,"ignore_cache":false}'), +(52506, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.617+00', '{"cached":null,"ignore_cache":false}'), +(52507, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.768+00', '{"cached":null,"ignore_cache":false}'), +(52508, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.774+00', '{"cached":null,"ignore_cache":false}'), +(52509, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.777+00', '{"cached":null,"ignore_cache":false}'), +(52510, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.781+00', '{"cached":null,"ignore_cache":false}'), +(52511, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.782+00', '{"cached":null,"ignore_cache":false}'), +(52512, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.783+00', '{"cached":null,"ignore_cache":false}'), +(52513, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.784+00', '{"cached":null,"ignore_cache":false}'), +(52514, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.785+00', '{"cached":null,"ignore_cache":false}'), +(52515, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:20.925+00', '{"cached":null,"ignore_cache":false}'), +(52516, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:21.481+00', '{"cached":null,"ignore_cache":false}'), +(52517, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:21.482+00', '{"cached":null,"ignore_cache":false}'), +(52518, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:21.569+00', '{"cached":null,"ignore_cache":false}'), +(52519, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:21.986+00', '{"cached":null,"ignore_cache":false}'), +(52520, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:22.527+00', '{"cached":null,"ignore_cache":false}'), +(52521, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:22.845+00', '{"cached":null,"ignore_cache":false}'), +(52522, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:22.99+00', '{"cached":null,"ignore_cache":false}'), +(52523, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:23.169+00', '{"cached":null,"ignore_cache":false}'), +(52524, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:23.209+00', '{"cached":null,"ignore_cache":false}'), +(52525, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:23.234+00', '{"cached":null,"ignore_cache":false}'), +(52526, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:23.253+00', '{"cached":null,"ignore_cache":false}'), +(52527, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:23.598+00', '{"cached":null,"ignore_cache":false}'), +(52528, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:23.712+00', '{"cached":null,"ignore_cache":false}'), +(52529, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:23.956+00', '{"cached":null,"ignore_cache":false}'), +(52530, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.085+00', '{"cached":null,"ignore_cache":false}'), +(52531, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.225+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52532, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.456+00', '{"cached":null,"ignore_cache":false}'), +(52533, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.619+00', '{"cached":null,"ignore_cache":false}'), +(52534, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.634+00', '{"cached":null,"ignore_cache":false}'), +(52535, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.717+00', '{"cached":null,"ignore_cache":false}'), +(52536, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.737+00', '{"cached":null,"ignore_cache":false}'), +(52537, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:24.77+00', '{"cached":null,"ignore_cache":false}'), +(52538, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.4+00', '{"cached":null,"ignore_cache":false}'), +(52539, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.422+00', '{"cached":null,"ignore_cache":false}'), +(52540, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.422+00', '{"cached":null,"ignore_cache":false}'), +(52541, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.472+00', '{"cached":null,"ignore_cache":false}'), +(52542, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.474+00', '{"cached":null,"ignore_cache":false}'), +(52543, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.475+00', '{"cached":null,"ignore_cache":false}'), +(52544, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.731+00', '{"cached":null,"ignore_cache":false}'), +(52545, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.751+00', '{"cached":null,"ignore_cache":false}'), +(52546, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:25.785+00', '{"cached":null,"ignore_cache":false}'), +(52547, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:26.814+00', '{"cached":null,"ignore_cache":false}'), +(52548, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:23:26.862+00', '{"cached":null,"ignore_cache":false}'), +(52549, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:00.867+00', '{"cached":null,"ignore_cache":false}'), +(52550, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:00.937+00', '{"cached":null,"ignore_cache":false}'), +(52551, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.017+00', '{"cached":null,"ignore_cache":false}'), +(52552, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:01.625+00', '{"cached":null,"ignore_cache":false}'), +(52553, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.025+00', '{"cached":null,"ignore_cache":false}'), +(52554, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.436+00', '{"cached":null,"ignore_cache":false}'), +(52555, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.438+00', '{"cached":null,"ignore_cache":false}'), +(52556, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.496+00', '{"cached":null,"ignore_cache":false}'), +(52557, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.521+00', '{"cached":null,"ignore_cache":false}'), +(52558, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.625+00', '{"cached":null,"ignore_cache":false}'), +(52559, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.73+00', '{"cached":null,"ignore_cache":false}'), +(52560, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.756+00', '{"cached":null,"ignore_cache":false}'), +(52561, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.796+00', '{"cached":null,"ignore_cache":false}'), +(52562, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.854+00', '{"cached":null,"ignore_cache":false}'), +(52563, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:02.867+00', '{"cached":null,"ignore_cache":false}'), +(52564, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:03.064+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52565, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:03.203+00', '{"cached":null,"ignore_cache":false}'), +(52566, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:03.265+00', '{"cached":null,"ignore_cache":false}'), +(52567, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:03.397+00', '{"cached":null,"ignore_cache":false}'), +(52568, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:20.446+00', '{"cached":null,"ignore_cache":false}'), +(52569, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:20.473+00', '{"cached":null,"ignore_cache":false}'), +(52570, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.031+00', '{"cached":null,"ignore_cache":false}'), +(52571, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.11+00', '{"cached":null,"ignore_cache":false}'), +(52572, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.13+00', '{"cached":null,"ignore_cache":false}'), +(52573, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.269+00', '{"cached":null,"ignore_cache":false}'), +(52574, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.498+00', '{"cached":null,"ignore_cache":false}'), +(52575, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.51+00', '{"cached":null,"ignore_cache":false}'), +(52576, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.733+00', '{"cached":null,"ignore_cache":false}'), +(52577, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.737+00', '{"cached":null,"ignore_cache":false}'), +(52578, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:24.77+00', '{"cached":null,"ignore_cache":false}'), +(52579, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.313+00', '{"cached":null,"ignore_cache":false}'), +(52580, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.33+00', '{"cached":null,"ignore_cache":false}'), +(52581, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.379+00', '{"cached":null,"ignore_cache":false}'), +(52582, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.698+00', '{"cached":null,"ignore_cache":false}'), +(52583, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.706+00', '{"cached":null,"ignore_cache":false}'), +(52584, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.739+00', '{"cached":null,"ignore_cache":false}'), +(52585, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.86+00', '{"cached":null,"ignore_cache":false}'), +(52586, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.901+00', '{"cached":null,"ignore_cache":false}'), +(52587, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:27.937+00', '{"cached":null,"ignore_cache":false}'), +(52588, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.728+00', '{"cached":null,"ignore_cache":false}'), +(52589, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.882+00', '{"cached":null,"ignore_cache":false}'), +(52590, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:28.94+00', '{"cached":null,"ignore_cache":false}'), +(52591, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.233+00', '{"cached":null,"ignore_cache":false}'), +(52592, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.495+00', '{"cached":null,"ignore_cache":false}'), +(52593, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.505+00', '{"cached":null,"ignore_cache":false}'), +(52594, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.633+00', '{"cached":null,"ignore_cache":false}'), +(52595, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.647+00', '{"cached":null,"ignore_cache":false}'), +(52596, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:29.812+00', '{"cached":null,"ignore_cache":false}'), +(52597, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.007+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52598, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.041+00', '{"cached":null,"ignore_cache":false}'), +(52599, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.134+00', '{"cached":null,"ignore_cache":false}'), +(52600, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.218+00', '{"cached":null,"ignore_cache":false}'), +(52601, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.267+00', '{"cached":null,"ignore_cache":false}'), +(52602, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.293+00', '{"cached":null,"ignore_cache":false}'), +(52603, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.391+00', '{"cached":null,"ignore_cache":false}'), +(52604, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.399+00', '{"cached":null,"ignore_cache":false}'), +(52605, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.408+00', '{"cached":null,"ignore_cache":false}'), +(52606, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.838+00', '{"cached":null,"ignore_cache":false}'), +(52607, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.839+00', '{"cached":null,"ignore_cache":false}'), +(52608, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:30.9+00', '{"cached":null,"ignore_cache":false}'), +(52609, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.177+00', '{"cached":null,"ignore_cache":false}'), +(52610, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.627+00', '{"cached":null,"ignore_cache":false}'), +(52611, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.752+00', '{"cached":null,"ignore_cache":false}'), +(52612, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.754+00', '{"cached":null,"ignore_cache":false}'), +(52613, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.762+00', '{"cached":null,"ignore_cache":false}'), +(52614, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.762+00', '{"cached":null,"ignore_cache":false}'), +(52615, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:31.944+00', '{"cached":null,"ignore_cache":false}'), +(52616, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.181+00', '{"cached":null,"ignore_cache":false}'), +(52617, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.304+00', '{"cached":null,"ignore_cache":false}'), +(52618, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.317+00', '{"cached":null,"ignore_cache":false}'), +(52619, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.376+00', '{"cached":null,"ignore_cache":false}'), +(52620, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.46+00', '{"cached":null,"ignore_cache":false}'), +(52621, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.57+00', '{"cached":null,"ignore_cache":false}'), +(52622, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.682+00', '{"cached":null,"ignore_cache":false}'), +(52623, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.874+00', '{"cached":null,"ignore_cache":false}'), +(52624, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.883+00', '{"cached":null,"ignore_cache":false}'), +(52625, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:32.964+00', '{"cached":null,"ignore_cache":false}'), +(52626, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:33.006+00', '{"cached":null,"ignore_cache":false}'), +(52627, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:33.176+00', '{"cached":null,"ignore_cache":false}'), +(52628, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:33.177+00', '{"cached":null,"ignore_cache":false}'), +(52629, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:33.425+00', '{"cached":null,"ignore_cache":false}'), +(52630, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:33.503+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52631, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:49.869+00', '{"cached":null,"ignore_cache":false}'), +(52632, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.786+00', '{"cached":null,"ignore_cache":false}'), +(52633, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.912+00', '{"cached":null,"ignore_cache":false}'), +(52634, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:50.981+00', '{"cached":null,"ignore_cache":false}'), +(52635, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:51.056+00', '{"cached":null,"ignore_cache":false}'), +(52636, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:51.169+00', '{"cached":null,"ignore_cache":false}'), +(52637, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:51.31+00', '{"cached":null,"ignore_cache":false}'), +(52638, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:51.444+00', '{"cached":null,"ignore_cache":false}'), +(52639, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:51.457+00', '{"cached":null,"ignore_cache":false}'), +(52640, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:51.49+00', '{"cached":null,"ignore_cache":false}'), +(52641, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:52.545+00', '{"cached":null,"ignore_cache":false}'), +(52642, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.539+00', '{"cached":null,"ignore_cache":false}'), +(52643, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.71+00', '{"cached":null,"ignore_cache":false}'), +(52644, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.784+00', '{"cached":null,"ignore_cache":false}'), +(52645, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:53.881+00', '{"cached":null,"ignore_cache":false}'), +(52646, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:54.328+00', '{"cached":null,"ignore_cache":false}'), +(52647, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:54.446+00', '{"cached":null,"ignore_cache":false}'), +(52648, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:54.616+00', '{"cached":null,"ignore_cache":false}'), +(52649, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:54.8+00', '{"cached":null,"ignore_cache":false}'), +(52650, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:55.001+00', '{"cached":null,"ignore_cache":false}'), +(52651, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:55.003+00', '{"cached":null,"ignore_cache":false}'), +(52652, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:55.24+00', '{"cached":null,"ignore_cache":false}'), +(52653, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:55.367+00', '{"cached":null,"ignore_cache":false}'), +(52654, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:55.745+00', '{"cached":null,"ignore_cache":false}'), +(52655, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:24:56.102+00', '{"cached":null,"ignore_cache":false}'), +(52656, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.534+00', '{"cached":null,"ignore_cache":false}'), +(52657, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.593+00', '{"cached":null,"ignore_cache":false}'), +(52658, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.61+00', '{"cached":null,"ignore_cache":false}'), +(52659, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.624+00', '{"cached":null,"ignore_cache":false}'), +(52660, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.769+00', '{"cached":null,"ignore_cache":false}'), +(52661, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.944+00', '{"cached":null,"ignore_cache":false}'), +(52662, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.96+00', '{"cached":null,"ignore_cache":false}'), +(52663, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:17.993+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52664, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.248+00', '{"cached":null,"ignore_cache":false}'), +(52665, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.276+00', '{"cached":null,"ignore_cache":false}'), +(52666, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.392+00', '{"cached":null,"ignore_cache":false}'), +(52667, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:18.555+00', '{"cached":null,"ignore_cache":false}'), +(52668, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.002+00', '{"cached":null,"ignore_cache":false}'), +(52669, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.029+00', '{"cached":null,"ignore_cache":false}'), +(52670, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.086+00', '{"cached":null,"ignore_cache":false}'), +(52671, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.097+00', '{"cached":null,"ignore_cache":false}'), +(52672, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.103+00', '{"cached":null,"ignore_cache":false}'), +(52673, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.115+00', '{"cached":null,"ignore_cache":false}'), +(52674, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.349+00', '{"cached":null,"ignore_cache":false}'), +(52675, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.356+00', '{"cached":null,"ignore_cache":false}'), +(52676, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.441+00', '{"cached":null,"ignore_cache":false}'), +(52677, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.489+00', '{"cached":null,"ignore_cache":false}'), +(52678, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.58+00', '{"cached":null,"ignore_cache":false}'), +(52679, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:19.675+00', '{"cached":null,"ignore_cache":false}'), +(52680, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.141+00', '{"cached":null,"ignore_cache":false}'), +(52681, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.184+00', '{"cached":null,"ignore_cache":false}'), +(52682, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.271+00', '{"cached":null,"ignore_cache":false}'), +(52683, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.272+00', '{"cached":null,"ignore_cache":false}'), +(52684, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.288+00', '{"cached":null,"ignore_cache":false}'), +(52685, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.36+00', '{"cached":null,"ignore_cache":false}'), +(52686, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.444+00', '{"cached":null,"ignore_cache":false}'), +(52687, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:20.548+00', '{"cached":null,"ignore_cache":false}'), +(52688, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.718+00', '{"cached":null,"ignore_cache":false}'), +(52689, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:50.796+00', '{"cached":null,"ignore_cache":false}'), +(52690, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.041+00', '{"cached":null,"ignore_cache":false}'), +(52691, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.066+00', '{"cached":null,"ignore_cache":false}'), +(52692, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.354+00', '{"cached":null,"ignore_cache":false}'), +(52693, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.386+00', '{"cached":null,"ignore_cache":false}'), +(52694, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.747+00', '{"cached":null,"ignore_cache":false}'), +(52695, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:51.952+00', '{"cached":null,"ignore_cache":false}'), +(52696, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:52.035+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52697, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:52.075+00', '{"cached":null,"ignore_cache":false}'), +(52698, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:52.095+00', '{"cached":null,"ignore_cache":false}'), +(52699, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:52.097+00', '{"cached":null,"ignore_cache":false}'), +(52700, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:52.243+00', '{"cached":null,"ignore_cache":false}'), +(52701, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.023+00', '{"cached":null,"ignore_cache":false}'), +(52702, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.132+00', '{"cached":null,"ignore_cache":false}'), +(52703, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.461+00', '{"cached":null,"ignore_cache":false}'), +(52704, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.473+00', '{"cached":null,"ignore_cache":false}'), +(52705, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.504+00', '{"cached":null,"ignore_cache":false}'), +(52706, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.596+00', '{"cached":null,"ignore_cache":false}'), +(52707, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:55.689+00', '{"cached":null,"ignore_cache":false}'), +(52708, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.897+00', '{"cached":null,"ignore_cache":false}'), +(52709, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.918+00', '{"cached":null,"ignore_cache":false}'), +(52710, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:57.966+00', '{"cached":null,"ignore_cache":false}'), +(52711, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:58.002+00', '{"cached":null,"ignore_cache":false}'), +(52712, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:58.043+00', '{"cached":null,"ignore_cache":false}'), +(52713, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:25:58.113+00', '{"cached":null,"ignore_cache":false}'), +(52714, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.1+00', '{"cached":null,"ignore_cache":false}'), +(52715, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.19+00', '{"cached":null,"ignore_cache":false}'), +(52716, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.275+00', '{"cached":null,"ignore_cache":false}'), +(52717, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.412+00', '{"cached":null,"ignore_cache":false}'), +(52718, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.437+00', '{"cached":null,"ignore_cache":false}'), +(52719, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.505+00', '{"cached":null,"ignore_cache":false}'), +(52720, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.559+00', '{"cached":null,"ignore_cache":false}'), +(52721, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.561+00', '{"cached":null,"ignore_cache":false}'), +(52722, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.792+00', '{"cached":null,"ignore_cache":false}'), +(52723, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:00.986+00', '{"cached":null,"ignore_cache":false}'), +(52724, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:13.586+00', '{"cached":null,"ignore_cache":false}'), +(52725, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:13.774+00', '{"cached":null,"ignore_cache":false}'), +(52726, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:13.969+00', '{"cached":null,"ignore_cache":false}'), +(52727, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:14.661+00', '{"cached":null,"ignore_cache":false}'), +(52728, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:14.793+00', '{"cached":null,"ignore_cache":false}'), +(52729, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:15.31+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52730, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:15.426+00', '{"cached":null,"ignore_cache":false}'), +(52731, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:18.005+00', '{"cached":null,"ignore_cache":false}'), +(52732, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.608+00', '{"cached":null,"ignore_cache":false}'), +(52733, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:26.629+00', '{"cached":null,"ignore_cache":false}'), +(52734, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:32.728+00', '{"cached":null,"ignore_cache":false}'), +(52735, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.129+00', '{"cached":null,"ignore_cache":false}'), +(52736, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.368+00', '{"cached":null,"ignore_cache":false}'), +(52737, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.41+00', '{"cached":null,"ignore_cache":false}'), +(52738, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.433+00', '{"cached":null,"ignore_cache":false}'), +(52739, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.499+00', '{"cached":null,"ignore_cache":false}'), +(52740, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.55+00', '{"cached":null,"ignore_cache":false}'), +(52741, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.989+00', '{"cached":null,"ignore_cache":false}'), +(52742, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:33.99+00', '{"cached":null,"ignore_cache":false}'), +(52743, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:34.003+00', '{"cached":null,"ignore_cache":false}'), +(52744, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:34.659+00', '{"cached":null,"ignore_cache":false}'), +(52745, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:35.275+00', '{"cached":null,"ignore_cache":false}'), +(52746, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:35.649+00', '{"cached":null,"ignore_cache":false}'), +(52747, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:35.691+00', '{"cached":null,"ignore_cache":false}'), +(52748, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:35.965+00', '{"cached":null,"ignore_cache":false}'), +(52749, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.34+00', '{"cached":null,"ignore_cache":false}'), +(52750, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.386+00', '{"cached":null,"ignore_cache":false}'), +(52751, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.445+00', '{"cached":null,"ignore_cache":false}'), +(52752, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.611+00', '{"cached":null,"ignore_cache":false}'), +(52753, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:36.649+00', '{"cached":null,"ignore_cache":false}'), +(52754, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.01+00', '{"cached":null,"ignore_cache":false}'), +(52755, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.14+00', '{"cached":null,"ignore_cache":false}'), +(52756, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.155+00', '{"cached":null,"ignore_cache":false}'), +(52757, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.162+00', '{"cached":null,"ignore_cache":false}'), +(52758, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:37.248+00', '{"cached":null,"ignore_cache":false}'), +(52759, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:38.553+00', '{"cached":null,"ignore_cache":false}'), +(52760, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:38.988+00', '{"cached":null,"ignore_cache":false}'), +(52761, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.092+00', '{"cached":null,"ignore_cache":false}'), +(52762, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.136+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52763, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.137+00', '{"cached":null,"ignore_cache":false}'), +(52764, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.253+00', '{"cached":null,"ignore_cache":false}'), +(52765, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.476+00', '{"cached":null,"ignore_cache":false}'), +(52766, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.58+00', '{"cached":null,"ignore_cache":false}'), +(52767, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.632+00', '{"cached":null,"ignore_cache":false}'), +(52768, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:39.65+00', '{"cached":null,"ignore_cache":false}'), +(52769, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:40.133+00', '{"cached":null,"ignore_cache":false}'), +(52770, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:40.219+00', '{"cached":null,"ignore_cache":false}'), +(52771, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:40.274+00', '{"cached":null,"ignore_cache":false}'), +(52772, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:40.278+00', '{"cached":null,"ignore_cache":false}'), +(52773, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:40.54+00', '{"cached":null,"ignore_cache":false}'), +(52774, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:42.161+00', '{"cached":null,"ignore_cache":false}'), +(52775, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:42.329+00', '{"cached":null,"ignore_cache":false}'), +(52776, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:42.451+00', '{"cached":null,"ignore_cache":false}'), +(52777, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:42.497+00', '{"cached":null,"ignore_cache":false}'), +(52778, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:42.602+00', '{"cached":null,"ignore_cache":false}'), +(52779, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:42.752+00', '{"cached":null,"ignore_cache":false}'), +(52780, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:42.845+00', '{"cached":null,"ignore_cache":false}'), +(52781, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.119+00', '{"cached":null,"ignore_cache":false}'), +(52782, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.15+00', '{"cached":null,"ignore_cache":false}'), +(52783, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.548+00', '{"cached":null,"ignore_cache":false}'), +(52784, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.585+00', '{"cached":null,"ignore_cache":false}'), +(52785, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.657+00', '{"cached":null,"ignore_cache":false}'), +(52786, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:43.961+00', '{"cached":null,"ignore_cache":false}'), +(52787, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:44.415+00', '{"cached":null,"ignore_cache":false}'), +(52788, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:44.541+00', '{"cached":null,"ignore_cache":false}'), +(52789, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:44.573+00', '{"cached":null,"ignore_cache":false}'), +(52790, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:44.664+00', '{"cached":null,"ignore_cache":false}'), +(52791, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:44.812+00', '{"cached":null,"ignore_cache":false}'), +(52792, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:44.987+00', '{"cached":null,"ignore_cache":false}'), +(52793, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.267+00', '{"cached":null,"ignore_cache":false}'), +(52794, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.786+00', '{"cached":null,"ignore_cache":false}'), +(52795, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.865+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52796, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.95+00', '{"cached":null,"ignore_cache":false}'), +(52797, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:45.962+00', '{"cached":null,"ignore_cache":false}'), +(52798, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.017+00', '{"cached":null,"ignore_cache":false}'), +(52799, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.037+00', '{"cached":null,"ignore_cache":false}'), +(52800, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.892+00', '{"cached":null,"ignore_cache":false}'), +(52801, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:46.976+00', '{"cached":null,"ignore_cache":false}'), +(52802, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.011+00', '{"cached":null,"ignore_cache":false}'), +(52803, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.087+00', '{"cached":null,"ignore_cache":false}'), +(52804, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.197+00', '{"cached":null,"ignore_cache":false}'), +(52805, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.234+00', '{"cached":null,"ignore_cache":false}'), +(52806, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.266+00', '{"cached":null,"ignore_cache":false}'), +(52807, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.289+00', '{"cached":null,"ignore_cache":false}'), +(52808, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.579+00', '{"cached":null,"ignore_cache":false}'), +(52809, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:26:47.604+00', '{"cached":null,"ignore_cache":false}'), +(52810, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.815+00', '{"cached":null,"ignore_cache":false}'), +(52811, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:32.92+00', '{"cached":null,"ignore_cache":false}'), +(52812, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.189+00', '{"cached":null,"ignore_cache":false}'), +(52813, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.211+00', '{"cached":null,"ignore_cache":false}'), +(52814, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.267+00', '{"cached":null,"ignore_cache":false}'), +(52815, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.38+00', '{"cached":null,"ignore_cache":false}'), +(52816, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.559+00', '{"cached":null,"ignore_cache":false}'), +(52817, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.64+00', '{"cached":null,"ignore_cache":false}'), +(52818, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.669+00', '{"cached":null,"ignore_cache":false}'), +(52819, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.788+00', '{"cached":null,"ignore_cache":false}'), +(52820, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.798+00', '{"cached":null,"ignore_cache":false}'), +(52821, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.949+00', '{"cached":null,"ignore_cache":false}'), +(52822, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.977+00', '{"cached":null,"ignore_cache":false}'), +(52823, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:33.998+00', '{"cached":null,"ignore_cache":false}'), +(52824, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:34.364+00', '{"cached":null,"ignore_cache":false}'), +(52825, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:34.39+00', '{"cached":null,"ignore_cache":false}'), +(52826, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.041+00', '{"cached":null,"ignore_cache":false}'), +(52827, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.463+00', '{"cached":null,"ignore_cache":false}'), +(52828, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.579+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52829, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.668+00', '{"cached":null,"ignore_cache":false}'), +(52830, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.761+00', '{"cached":null,"ignore_cache":false}'), +(52831, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.796+00', '{"cached":null,"ignore_cache":false}'), +(52832, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:57.977+00', '{"cached":null,"ignore_cache":false}'), +(52833, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.048+00', '{"cached":null,"ignore_cache":false}'), +(52834, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.05+00', '{"cached":null,"ignore_cache":false}'), +(52835, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.057+00', '{"cached":null,"ignore_cache":false}'), +(52836, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.07+00', '{"cached":null,"ignore_cache":false}'), +(52837, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.4+00', '{"cached":null,"ignore_cache":false}'), +(52838, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.524+00', '{"cached":null,"ignore_cache":false}'), +(52839, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.534+00', '{"cached":null,"ignore_cache":false}'), +(52840, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:58.624+00', '{"cached":null,"ignore_cache":false}'), +(52841, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.014+00', '{"cached":null,"ignore_cache":false}'), +(52842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.117+00', '{"cached":null,"ignore_cache":false}'), +(52843, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.367+00', '{"cached":null,"ignore_cache":false}'), +(52844, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.41+00', '{"cached":null,"ignore_cache":false}'), +(52845, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.781+00', '{"cached":null,"ignore_cache":false}'), +(52846, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.782+00', '{"cached":null,"ignore_cache":false}'), +(52847, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.805+00', '{"cached":null,"ignore_cache":false}'), +(52848, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:31:59.839+00', '{"cached":null,"ignore_cache":false}'), +(52849, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:00.11+00', '{"cached":null,"ignore_cache":false}'), +(52850, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:00.376+00', '{"cached":null,"ignore_cache":false}'), +(52851, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:00.416+00', '{"cached":null,"ignore_cache":false}'), +(52852, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:00.424+00', '{"cached":null,"ignore_cache":false}'), +(52853, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:00.524+00', '{"cached":null,"ignore_cache":false}'), +(52854, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:00.709+00', '{"cached":null,"ignore_cache":false}'), +(52855, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:00.858+00', '{"cached":null,"ignore_cache":false}'), +(52856, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.454+00', '{"cached":null,"ignore_cache":false}'), +(52857, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.63+00', '{"cached":null,"ignore_cache":false}'), +(52858, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.713+00', '{"cached":null,"ignore_cache":false}'), +(52859, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:20.889+00', '{"cached":null,"ignore_cache":false}'), +(52860, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.096+00', '{"cached":null,"ignore_cache":false}'), +(52861, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.656+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52862, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:21.909+00', '{"cached":null,"ignore_cache":false}'), +(52863, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.294+00', '{"cached":null,"ignore_cache":false}'), +(52864, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.526+00', '{"cached":null,"ignore_cache":false}'), +(52865, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.583+00', '{"cached":null,"ignore_cache":false}'), +(52866, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:22.724+00', '{"cached":null,"ignore_cache":false}'), +(52867, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.466+00', '{"cached":null,"ignore_cache":false}'), +(52868, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:23.872+00', '{"cached":null,"ignore_cache":false}'), +(52869, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.166+00', '{"cached":null,"ignore_cache":false}'), +(52870, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.281+00', '{"cached":null,"ignore_cache":false}'), +(52871, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.373+00', '{"cached":null,"ignore_cache":false}'), +(52872, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.466+00', '{"cached":null,"ignore_cache":false}'), +(52873, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.668+00', '{"cached":null,"ignore_cache":false}'), +(52874, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.752+00', '{"cached":null,"ignore_cache":false}'), +(52875, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.767+00', '{"cached":null,"ignore_cache":false}'), +(52876, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:24.98+00', '{"cached":null,"ignore_cache":false}'), +(52877, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:25.338+00', '{"cached":null,"ignore_cache":false}'), +(52878, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:25.53+00', '{"cached":null,"ignore_cache":false}'), +(52879, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:25.627+00', '{"cached":null,"ignore_cache":false}'), +(52880, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:25.628+00', '{"cached":null,"ignore_cache":false}'), +(52881, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:25.68+00', '{"cached":null,"ignore_cache":false}'), +(52882, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:25.771+00', '{"cached":null,"ignore_cache":false}'), +(52883, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:25.823+00', '{"cached":null,"ignore_cache":false}'), +(52884, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:32:26.319+00', '{"cached":null,"ignore_cache":false}'), +(52885, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:12.961+00', '{"cached":null,"ignore_cache":false}'), +(52886, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.131+00', '{"cached":null,"ignore_cache":false}'), +(52887, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.34+00', '{"cached":null,"ignore_cache":false}'), +(52888, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.503+00', '{"cached":null,"ignore_cache":false}'), +(52889, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.648+00', '{"cached":null,"ignore_cache":false}'), +(52890, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:13.714+00', '{"cached":null,"ignore_cache":false}'), +(52891, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.543+00', '{"cached":null,"ignore_cache":false}'), +(52892, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:14.677+00', '{"cached":null,"ignore_cache":false}'), +(52893, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.105+00', '{"cached":null,"ignore_cache":false}'), +(52894, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.281+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52895, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.476+00', '{"cached":null,"ignore_cache":false}'), +(52896, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.507+00', '{"cached":null,"ignore_cache":false}'), +(52897, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.761+00', '{"cached":null,"ignore_cache":false}'), +(52898, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.829+00', '{"cached":null,"ignore_cache":false}'), +(52899, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.863+00', '{"cached":null,"ignore_cache":false}'), +(52900, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:15.932+00', '{"cached":null,"ignore_cache":false}'), +(52901, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.003+00', '{"cached":null,"ignore_cache":false}'), +(52902, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.233+00', '{"cached":null,"ignore_cache":false}'), +(52903, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.468+00', '{"cached":null,"ignore_cache":false}'), +(52904, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.476+00', '{"cached":null,"ignore_cache":false}'), +(52905, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.484+00', '{"cached":null,"ignore_cache":false}'), +(52906, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.782+00', '{"cached":null,"ignore_cache":false}'), +(52907, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.877+00', '{"cached":null,"ignore_cache":false}'), +(52908, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:16.957+00', '{"cached":null,"ignore_cache":false}'), +(52909, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:17.122+00', '{"cached":null,"ignore_cache":false}'), +(52910, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:17.123+00', '{"cached":null,"ignore_cache":false}'), +(52911, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:17.147+00', '{"cached":null,"ignore_cache":false}'), +(52912, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:17.306+00', '{"cached":null,"ignore_cache":false}'), +(52913, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:34:17.417+00', '{"cached":null,"ignore_cache":false}'), +(52914, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:31.985+00', '{"cached":null,"ignore_cache":false}'), +(52915, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.291+00', '{"cached":null,"ignore_cache":false}'), +(52916, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.302+00', '{"cached":null,"ignore_cache":false}'), +(52917, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.373+00', '{"cached":null,"ignore_cache":false}'), +(52918, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.396+00', '{"cached":null,"ignore_cache":false}'), +(52919, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.441+00', '{"cached":null,"ignore_cache":false}'), +(52920, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.496+00', '{"cached":null,"ignore_cache":false}'), +(52921, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.532+00', '{"cached":null,"ignore_cache":false}'), +(52922, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.6+00', '{"cached":null,"ignore_cache":false}'), +(52923, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.738+00', '{"cached":null,"ignore_cache":false}'), +(52924, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.743+00', '{"cached":null,"ignore_cache":false}'), +(52925, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.756+00', '{"cached":null,"ignore_cache":false}'), +(52926, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.775+00', '{"cached":null,"ignore_cache":false}'), +(52927, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:32.836+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52928, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:33.072+00', '{"cached":null,"ignore_cache":false}'), +(52929, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:36:33.099+00', '{"cached":null,"ignore_cache":false}'), +(52930, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.672+00', '{"cached":null,"ignore_cache":false}'), +(52931, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:01.921+00', '{"cached":null,"ignore_cache":false}'), +(52932, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.08+00', '{"cached":null,"ignore_cache":false}'), +(52933, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.541+00', '{"cached":null,"ignore_cache":false}'), +(52934, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.67+00', '{"cached":null,"ignore_cache":false}'), +(52935, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.691+00', '{"cached":null,"ignore_cache":false}'), +(52936, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.752+00', '{"cached":null,"ignore_cache":false}'), +(52937, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.877+00', '{"cached":null,"ignore_cache":false}'), +(52938, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:02.981+00', '{"cached":null,"ignore_cache":false}'), +(52939, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.144+00', '{"cached":null,"ignore_cache":false}'), +(52940, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.268+00', '{"cached":null,"ignore_cache":false}'), +(52941, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.542+00', '{"cached":null,"ignore_cache":false}'), +(52942, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:03.775+00', '{"cached":null,"ignore_cache":false}'), +(52943, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.165+00', '{"cached":null,"ignore_cache":false}'), +(52944, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.473+00', '{"cached":null,"ignore_cache":false}'), +(52945, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.701+00', '{"cached":null,"ignore_cache":false}'), +(52946, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.702+00', '{"cached":null,"ignore_cache":false}'), +(52947, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.712+00', '{"cached":null,"ignore_cache":false}'), +(52948, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.901+00', '{"cached":null,"ignore_cache":false}'), +(52949, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:04.974+00', '{"cached":null,"ignore_cache":false}'), +(52950, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.009+00', '{"cached":null,"ignore_cache":false}'), +(52951, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.054+00', '{"cached":null,"ignore_cache":false}'), +(52952, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.199+00', '{"cached":null,"ignore_cache":false}'), +(52953, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.398+00', '{"cached":null,"ignore_cache":false}'), +(52954, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.443+00', '{"cached":null,"ignore_cache":false}'), +(52955, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.84+00', '{"cached":null,"ignore_cache":false}'), +(52956, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:05.931+00', '{"cached":null,"ignore_cache":false}'), +(52957, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:06.288+00', '{"cached":null,"ignore_cache":false}'), +(52958, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:06.438+00', '{"cached":null,"ignore_cache":false}'), +(52959, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:06.532+00', '{"cached":null,"ignore_cache":false}'), +(52960, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:39:06.543+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52961, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.129+00', '{"cached":null,"ignore_cache":false}'), +(52962, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.157+00', '{"cached":null,"ignore_cache":false}'), +(52963, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.274+00', '{"cached":null,"ignore_cache":false}'), +(52964, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.383+00', '{"cached":null,"ignore_cache":false}'), +(52965, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.475+00', '{"cached":null,"ignore_cache":false}'), +(52966, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.574+00', '{"cached":null,"ignore_cache":false}'), +(52967, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.603+00', '{"cached":null,"ignore_cache":false}'), +(52968, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.658+00', '{"cached":null,"ignore_cache":false}'), +(52969, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.668+00', '{"cached":null,"ignore_cache":false}'), +(52970, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.709+00', '{"cached":null,"ignore_cache":false}'), +(52971, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.837+00', '{"cached":null,"ignore_cache":false}'), +(52972, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.843+00', '{"cached":null,"ignore_cache":false}'), +(52973, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.883+00', '{"cached":null,"ignore_cache":false}'), +(52974, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:32.941+00', '{"cached":null,"ignore_cache":false}'), +(52975, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:33.225+00', '{"cached":null,"ignore_cache":false}'), +(52976, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-13 16:41:33.272+00', '{"cached":null,"ignore_cache":false}'), +(52977, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.349+00', '{"cached":null,"ignore_cache":false}'), +(52978, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.84+00', '{"cached":null,"ignore_cache":false}'), +(52979, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:24.873+00', '{"cached":null,"ignore_cache":false}'), +(52980, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:25.325+00', '{"cached":null,"ignore_cache":false}'), +(52981, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:25.471+00', '{"cached":null,"ignore_cache":false}'), +(52982, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:25.564+00', '{"cached":null,"ignore_cache":false}'), +(52983, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:25.716+00', '{"cached":null,"ignore_cache":false}'), +(52984, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:25.733+00', '{"cached":null,"ignore_cache":false}'), +(52985, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:26.181+00', '{"cached":null,"ignore_cache":false}'), +(52986, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:26.282+00', '{"cached":null,"ignore_cache":false}'), +(52987, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:26.397+00', '{"cached":null,"ignore_cache":false}'), +(52988, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:26.543+00', '{"cached":null,"ignore_cache":false}'), +(52989, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:26.635+00', '{"cached":null,"ignore_cache":false}'), +(52990, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:26.887+00', '{"cached":null,"ignore_cache":false}'), +(52991, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.025+00', '{"cached":null,"ignore_cache":false}'), +(52992, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.026+00', '{"cached":null,"ignore_cache":false}'), +(52993, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.042+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(52994, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.043+00', '{"cached":null,"ignore_cache":false}'), +(52995, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.048+00', '{"cached":null,"ignore_cache":false}'), +(52996, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.049+00', '{"cached":null,"ignore_cache":false}'), +(52997, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.088+00', '{"cached":null,"ignore_cache":false}'), +(52998, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.089+00', '{"cached":null,"ignore_cache":false}'), +(52999, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.157+00', '{"cached":null,"ignore_cache":false}'), +(53000, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.197+00', '{"cached":null,"ignore_cache":false}'), +(53001, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.503+00', '{"cached":null,"ignore_cache":false}'), +(53002, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.601+00', '{"cached":null,"ignore_cache":false}'), +(53003, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.715+00', '{"cached":null,"ignore_cache":false}'), +(53004, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:27.99+00', '{"cached":null,"ignore_cache":false}'), +(53005, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:28.8+00', '{"cached":null,"ignore_cache":false}'), +(53006, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:28.82+00', '{"cached":null,"ignore_cache":false}'), +(53007, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 08:32:29.044+00', '{"cached":null,"ignore_cache":false}'), +(53008, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.087+00', '{"cached":null,"ignore_cache":false}'), +(53009, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.125+00', '{"cached":null,"ignore_cache":false}'), +(53010, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.134+00', '{"cached":null,"ignore_cache":false}'), +(53011, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.223+00', '{"cached":null,"ignore_cache":false}'), +(53012, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.953+00', '{"cached":null,"ignore_cache":false}'), +(53013, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:51.96+00', '{"cached":null,"ignore_cache":false}'), +(53014, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.087+00', '{"cached":null,"ignore_cache":false}'), +(53015, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.569+00', '{"cached":null,"ignore_cache":false}'), +(53016, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.572+00', '{"cached":null,"ignore_cache":false}'), +(53017, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.607+00', '{"cached":null,"ignore_cache":false}'), +(53018, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:52.698+00', '{"cached":null,"ignore_cache":false}'), +(53019, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.195+00', '{"cached":null,"ignore_cache":false}'), +(53020, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.358+00', '{"cached":null,"ignore_cache":false}'), +(53021, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.837+00', '{"cached":null,"ignore_cache":false}'), +(53022, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:53.885+00', '{"cached":null,"ignore_cache":false}'), +(53023, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.158+00', '{"cached":null,"ignore_cache":false}'), +(53024, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.289+00', '{"cached":null,"ignore_cache":false}'), +(53025, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.487+00', '{"cached":null,"ignore_cache":false}'), +(53026, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:54.57+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53027, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:55.105+00', '{"cached":null,"ignore_cache":false}'), +(53028, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:55.166+00', '{"cached":null,"ignore_cache":false}'), +(53029, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:55.362+00', '{"cached":null,"ignore_cache":false}'), +(53030, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:55.487+00', '{"cached":null,"ignore_cache":false}'), +(53031, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:55.525+00', '{"cached":null,"ignore_cache":false}'), +(53032, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:55.67+00', '{"cached":null,"ignore_cache":false}'), +(53033, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:03:55.889+00', '{"cached":null,"ignore_cache":false}'), +(53034, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.27+00', '{"cached":null,"ignore_cache":false}'), +(53035, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.457+00', '{"cached":null,"ignore_cache":false}'), +(53036, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.465+00', '{"cached":null,"ignore_cache":false}'), +(53037, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.795+00', '{"cached":null,"ignore_cache":false}'), +(53038, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.805+00', '{"cached":null,"ignore_cache":false}'), +(53039, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.894+00', '{"cached":null,"ignore_cache":false}'), +(53040, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:05.92+00', '{"cached":null,"ignore_cache":false}'), +(53041, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.397+00', '{"cached":null,"ignore_cache":false}'), +(53042, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.439+00', '{"cached":null,"ignore_cache":false}'), +(53043, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.69+00', '{"cached":null,"ignore_cache":false}'), +(53044, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:06.888+00', '{"cached":null,"ignore_cache":false}'), +(53045, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.101+00', '{"cached":null,"ignore_cache":false}'), +(53046, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.33+00', '{"cached":null,"ignore_cache":false}'), +(53047, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.347+00', '{"cached":null,"ignore_cache":false}'), +(53048, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.35+00', '{"cached":null,"ignore_cache":false}'), +(53049, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.648+00', '{"cached":null,"ignore_cache":false}'), +(53050, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:07.807+00', '{"cached":null,"ignore_cache":false}'), +(53051, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.165+00', '{"cached":null,"ignore_cache":false}'), +(53052, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.353+00', '{"cached":null,"ignore_cache":false}'), +(53053, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.421+00', '{"cached":null,"ignore_cache":false}'), +(53054, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.459+00', '{"cached":null,"ignore_cache":false}'), +(53055, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.489+00', '{"cached":null,"ignore_cache":false}'), +(53056, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.625+00', '{"cached":null,"ignore_cache":false}'), +(53057, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.681+00', '{"cached":null,"ignore_cache":false}'), +(53058, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.712+00', '{"cached":null,"ignore_cache":false}'), +(53059, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.826+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53060, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:08.873+00', '{"cached":null,"ignore_cache":false}'), +(53061, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:09.432+00', '{"cached":null,"ignore_cache":false}'), +(53062, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:09.504+00', '{"cached":null,"ignore_cache":false}'), +(53063, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.572+00', '{"cached":null,"ignore_cache":false}'), +(53064, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.611+00', '{"cached":null,"ignore_cache":false}'), +(53065, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.628+00', '{"cached":null,"ignore_cache":false}'), +(53066, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:11.686+00', '{"cached":null,"ignore_cache":false}'), +(53067, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:12.474+00', '{"cached":null,"ignore_cache":false}'), +(53068, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.165+00', '{"cached":null,"ignore_cache":false}'), +(53069, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.183+00', '{"cached":null,"ignore_cache":false}'), +(53070, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.195+00', '{"cached":null,"ignore_cache":false}'), +(53071, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.374+00', '{"cached":null,"ignore_cache":false}'), +(53072, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.433+00', '{"cached":null,"ignore_cache":false}'), +(53073, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.685+00', '{"cached":null,"ignore_cache":false}'), +(53074, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.769+00', '{"cached":null,"ignore_cache":false}'), +(53075, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.77+00', '{"cached":null,"ignore_cache":false}'), +(53076, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.777+00', '{"cached":null,"ignore_cache":false}'), +(53077, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:13.953+00', '{"cached":null,"ignore_cache":false}'), +(53078, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.017+00', '{"cached":null,"ignore_cache":false}'), +(53079, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.053+00', '{"cached":null,"ignore_cache":false}'), +(53080, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.487+00', '{"cached":null,"ignore_cache":false}'), +(53081, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.647+00', '{"cached":null,"ignore_cache":false}'), +(53082, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.651+00', '{"cached":null,"ignore_cache":false}'), +(53083, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.669+00', '{"cached":null,"ignore_cache":false}'), +(53084, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.686+00', '{"cached":null,"ignore_cache":false}'), +(53085, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.777+00', '{"cached":null,"ignore_cache":false}'), +(53086, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.877+00', '{"cached":null,"ignore_cache":false}'), +(53087, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:14.884+00', '{"cached":null,"ignore_cache":false}'), +(53088, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:15.28+00', '{"cached":null,"ignore_cache":false}'), +(53089, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:15.281+00', '{"cached":null,"ignore_cache":false}'), +(53090, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:25:15.289+00', '{"cached":null,"ignore_cache":false}'), +(53091, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.025+00', '{"cached":null,"ignore_cache":false}'), +(53092, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.264+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53093, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.365+00', '{"cached":null,"ignore_cache":false}'), +(53094, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.383+00', '{"cached":null,"ignore_cache":false}'), +(53095, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.511+00', '{"cached":null,"ignore_cache":false}'), +(53096, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.675+00', '{"cached":null,"ignore_cache":false}'), +(53097, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.791+00', '{"cached":null,"ignore_cache":false}'), +(53098, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:12.989+00', '{"cached":null,"ignore_cache":false}'), +(53099, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.082+00', '{"cached":null,"ignore_cache":false}'), +(53100, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.093+00', '{"cached":null,"ignore_cache":false}'), +(53101, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.432+00', '{"cached":null,"ignore_cache":false}'), +(53102, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.568+00', '{"cached":null,"ignore_cache":false}'), +(53103, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.588+00', '{"cached":null,"ignore_cache":false}'), +(53104, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.667+00', '{"cached":null,"ignore_cache":false}'), +(53105, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.824+00', '{"cached":null,"ignore_cache":false}'), +(53106, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:13.894+00', '{"cached":null,"ignore_cache":false}'), +(53107, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.076+00', '{"cached":null,"ignore_cache":false}'), +(53108, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.315+00', '{"cached":null,"ignore_cache":false}'), +(53109, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.405+00', '{"cached":null,"ignore_cache":false}'), +(53110, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.493+00', '{"cached":null,"ignore_cache":false}'), +(53111, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.628+00', '{"cached":null,"ignore_cache":false}'), +(53112, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.691+00', '{"cached":null,"ignore_cache":false}'), +(53113, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.728+00', '{"cached":null,"ignore_cache":false}'), +(53114, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.778+00', '{"cached":null,"ignore_cache":false}'), +(53115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:14.949+00', '{"cached":null,"ignore_cache":false}'), +(53116, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:15.019+00', '{"cached":null,"ignore_cache":false}'), +(53117, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:15.121+00', '{"cached":null,"ignore_cache":false}'), +(53118, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:15.134+00', '{"cached":null,"ignore_cache":false}'), +(53119, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:15.163+00', '{"cached":null,"ignore_cache":false}'), +(53120, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:15.249+00', '{"cached":null,"ignore_cache":false}'), +(53121, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:15.256+00', '{"cached":null,"ignore_cache":false}'), +(53122, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:30:15.292+00', '{"cached":null,"ignore_cache":false}'), +(53123, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.247+00', '{"cached":null,"ignore_cache":false}'), +(53124, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.407+00', '{"cached":null,"ignore_cache":false}'), +(53125, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.501+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53126, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.512+00', '{"cached":null,"ignore_cache":false}'), +(53127, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.786+00', '{"cached":null,"ignore_cache":false}'), +(53128, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:07.922+00', '{"cached":null,"ignore_cache":false}'), +(53129, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.593+00', '{"cached":null,"ignore_cache":false}'), +(53130, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.679+00', '{"cached":null,"ignore_cache":false}'), +(53131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.748+00', '{"cached":null,"ignore_cache":false}'), +(53132, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.777+00', '{"cached":null,"ignore_cache":false}'), +(53133, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.876+00', '{"cached":null,"ignore_cache":false}'), +(53134, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.89+00', '{"cached":null,"ignore_cache":false}'), +(53135, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:08.902+00', '{"cached":null,"ignore_cache":false}'), +(53136, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.059+00', '{"cached":null,"ignore_cache":false}'), +(53137, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.2+00', '{"cached":null,"ignore_cache":false}'), +(53138, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.369+00', '{"cached":null,"ignore_cache":false}'), +(53139, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.426+00', '{"cached":null,"ignore_cache":false}'), +(53140, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.578+00', '{"cached":null,"ignore_cache":false}'), +(53141, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.787+00', '{"cached":null,"ignore_cache":false}'), +(53142, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.842+00', '{"cached":null,"ignore_cache":false}'), +(53143, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:09.929+00', '{"cached":null,"ignore_cache":false}'), +(53144, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.287+00', '{"cached":null,"ignore_cache":false}'), +(53145, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.33+00', '{"cached":null,"ignore_cache":false}'), +(53146, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.368+00', '{"cached":null,"ignore_cache":false}'), +(53147, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.442+00', '{"cached":null,"ignore_cache":false}'), +(53148, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.554+00', '{"cached":null,"ignore_cache":false}'), +(53149, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.609+00', '{"cached":null,"ignore_cache":false}'), +(53150, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.705+00', '{"cached":null,"ignore_cache":false}'), +(53151, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:10.834+00', '{"cached":null,"ignore_cache":false}'), +(53152, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:11.896+00', '{"cached":null,"ignore_cache":false}'), +(53153, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.127+00', '{"cached":null,"ignore_cache":false}'), +(53154, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.542+00', '{"cached":null,"ignore_cache":false}'), +(53155, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.573+00', '{"cached":null,"ignore_cache":false}'), +(53156, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:12.858+00', '{"cached":null,"ignore_cache":false}'), +(53157, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.138+00', '{"cached":null,"ignore_cache":false}'), +(53158, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.29+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53159, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.291+00', '{"cached":null,"ignore_cache":false}'), +(53160, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.359+00', '{"cached":null,"ignore_cache":false}'), +(53161, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.362+00', '{"cached":null,"ignore_cache":false}'), +(53162, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.471+00', '{"cached":null,"ignore_cache":false}'), +(53163, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.472+00', '{"cached":null,"ignore_cache":false}'), +(53164, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.48+00', '{"cached":null,"ignore_cache":false}'), +(53165, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:13.975+00', '{"cached":null,"ignore_cache":false}'), +(53166, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:14.066+00', '{"cached":null,"ignore_cache":false}'), +(53167, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:14.117+00', '{"cached":null,"ignore_cache":false}'), +(53168, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:14.372+00', '{"cached":null,"ignore_cache":false}'), +(53169, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:14.467+00', '{"cached":null,"ignore_cache":false}'), +(53170, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:14.482+00', '{"cached":null,"ignore_cache":false}'), +(53171, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:14.896+00', '{"cached":null,"ignore_cache":false}'), +(53172, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:14.912+00', '{"cached":null,"ignore_cache":false}'), +(53173, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:24.978+00', '{"cached":null,"ignore_cache":false}'), +(53174, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:25.015+00', '{"cached":null,"ignore_cache":false}'), +(53175, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:25.139+00', '{"cached":null,"ignore_cache":false}'), +(53176, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:25.168+00', '{"cached":null,"ignore_cache":false}'), +(53177, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:25.22+00', '{"cached":null,"ignore_cache":false}'), +(53178, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:25.222+00', '{"cached":null,"ignore_cache":false}'), +(53179, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:39.13+00', '{"cached":null,"ignore_cache":false}'), +(53180, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:39.193+00', '{"cached":null,"ignore_cache":false}'), +(53181, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:39.247+00', '{"cached":null,"ignore_cache":false}'), +(53182, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:39.357+00', '{"cached":null,"ignore_cache":false}'), +(53183, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:39.384+00', '{"cached":null,"ignore_cache":false}'), +(53184, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:35:39.416+00', '{"cached":null,"ignore_cache":false}'), +(53185, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.064+00', '{"cached":null,"ignore_cache":false}'), +(53186, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.579+00', '{"cached":null,"ignore_cache":false}'), +(53187, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.687+00', '{"cached":null,"ignore_cache":false}'), +(53188, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.78+00', '{"cached":null,"ignore_cache":false}'), +(53189, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.871+00', '{"cached":null,"ignore_cache":false}'), +(53190, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:12.977+00', '{"cached":null,"ignore_cache":false}'), +(53191, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53192, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.081+00', '{"cached":null,"ignore_cache":false}'), +(53193, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.15+00', '{"cached":null,"ignore_cache":false}'), +(53194, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.179+00', '{"cached":null,"ignore_cache":false}'), +(53195, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.249+00', '{"cached":null,"ignore_cache":false}'), +(53196, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.279+00', '{"cached":null,"ignore_cache":false}'), +(53197, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.33+00', '{"cached":null,"ignore_cache":false}'), +(53198, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.357+00', '{"cached":null,"ignore_cache":false}'), +(53199, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.586+00', '{"cached":null,"ignore_cache":false}'), +(53200, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:13.641+00', '{"cached":null,"ignore_cache":false}'), +(53201, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.548+00', '{"cached":null,"ignore_cache":false}'), +(53202, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.561+00', '{"cached":null,"ignore_cache":false}'), +(53203, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.578+00', '{"cached":null,"ignore_cache":false}'), +(53204, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.613+00', '{"cached":null,"ignore_cache":false}'), +(53205, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.615+00', '{"cached":null,"ignore_cache":false}'), +(53206, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:16.627+00', '{"cached":null,"ignore_cache":false}'), +(53207, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.708+00', '{"cached":null,"ignore_cache":false}'), +(53208, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.836+00', '{"cached":null,"ignore_cache":false}'), +(53209, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.844+00', '{"cached":null,"ignore_cache":false}'), +(53210, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.898+00', '{"cached":null,"ignore_cache":false}'), +(53211, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.905+00', '{"cached":null,"ignore_cache":false}'), +(53212, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:17.94+00', '{"cached":null,"ignore_cache":false}'), +(53213, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:18.03+00', '{"cached":null,"ignore_cache":false}'), +(53214, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:18.051+00', '{"cached":null,"ignore_cache":false}'), +(53215, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:18.225+00', '{"cached":null,"ignore_cache":false}'), +(53216, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:40:18.246+00', '{"cached":null,"ignore_cache":false}'), +(53217, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.556+00', '{"cached":null,"ignore_cache":false}'), +(53218, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:21.809+00', '{"cached":null,"ignore_cache":false}'), +(53219, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.224+00', '{"cached":null,"ignore_cache":false}'), +(53220, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.386+00', '{"cached":null,"ignore_cache":false}'), +(53221, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.642+00', '{"cached":null,"ignore_cache":false}'), +(53222, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.725+00', '{"cached":null,"ignore_cache":false}'), +(53223, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.762+00', '{"cached":null,"ignore_cache":false}'), +(53224, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:22.847+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53225, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.117+00', '{"cached":null,"ignore_cache":false}'), +(53226, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.128+00', '{"cached":null,"ignore_cache":false}'), +(53227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.148+00', '{"cached":null,"ignore_cache":false}'), +(53228, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.199+00', '{"cached":null,"ignore_cache":false}'), +(53229, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:23.719+00', '{"cached":null,"ignore_cache":false}'), +(53230, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.107+00', '{"cached":null,"ignore_cache":false}'), +(53231, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.131+00', '{"cached":null,"ignore_cache":false}'), +(53232, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.174+00', '{"cached":null,"ignore_cache":false}'), +(53233, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.202+00', '{"cached":null,"ignore_cache":false}'), +(53234, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.289+00', '{"cached":null,"ignore_cache":false}'), +(53235, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.543+00', '{"cached":null,"ignore_cache":false}'), +(53236, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.658+00', '{"cached":null,"ignore_cache":false}'), +(53237, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.755+00', '{"cached":null,"ignore_cache":false}'), +(53238, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.756+00', '{"cached":null,"ignore_cache":false}'), +(53239, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.764+00', '{"cached":null,"ignore_cache":false}'), +(53240, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.792+00', '{"cached":null,"ignore_cache":false}'), +(53241, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:24.895+00', '{"cached":null,"ignore_cache":false}'), +(53242, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:25.201+00', '{"cached":null,"ignore_cache":false}'), +(53243, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:25.254+00', '{"cached":null,"ignore_cache":false}'), +(53244, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:25.274+00', '{"cached":null,"ignore_cache":false}'), +(53245, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:25.285+00', '{"cached":null,"ignore_cache":false}'), +(53246, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:25.353+00', '{"cached":null,"ignore_cache":false}'), +(53247, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:25.399+00', '{"cached":null,"ignore_cache":false}'), +(53248, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:41:25.547+00', '{"cached":null,"ignore_cache":false}'), +(53249, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.213+00', '{"cached":null,"ignore_cache":false}'), +(53250, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.246+00', '{"cached":null,"ignore_cache":false}'), +(53251, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.555+00', '{"cached":null,"ignore_cache":false}'), +(53252, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.611+00', '{"cached":null,"ignore_cache":false}'), +(53253, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.707+00', '{"cached":null,"ignore_cache":false}'), +(53254, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.814+00', '{"cached":null,"ignore_cache":false}'), +(53255, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:12.933+00', '{"cached":null,"ignore_cache":false}'), +(53256, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.096+00', '{"cached":null,"ignore_cache":false}'), +(53257, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.13+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53258, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.237+00', '{"cached":null,"ignore_cache":false}'), +(53259, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.297+00', '{"cached":null,"ignore_cache":false}'), +(53260, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.304+00', '{"cached":null,"ignore_cache":false}'), +(53261, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.312+00', '{"cached":null,"ignore_cache":false}'), +(53262, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.351+00', '{"cached":null,"ignore_cache":false}'), +(53263, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.391+00', '{"cached":null,"ignore_cache":false}'), +(53264, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:45:13.491+00', '{"cached":null,"ignore_cache":false}'), +(53265, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.369+00', '{"cached":null,"ignore_cache":false}'), +(53266, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.583+00', '{"cached":null,"ignore_cache":false}'), +(53267, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.687+00', '{"cached":null,"ignore_cache":false}'), +(53268, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.741+00', '{"cached":null,"ignore_cache":false}'), +(53269, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:33.903+00', '{"cached":null,"ignore_cache":false}'), +(53270, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.183+00', '{"cached":null,"ignore_cache":false}'), +(53271, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.334+00', '{"cached":null,"ignore_cache":false}'), +(53272, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.357+00', '{"cached":null,"ignore_cache":false}'), +(53273, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.631+00', '{"cached":null,"ignore_cache":false}'), +(53274, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.803+00', '{"cached":null,"ignore_cache":false}'), +(53275, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.805+00', '{"cached":null,"ignore_cache":false}'), +(53276, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.806+00', '{"cached":null,"ignore_cache":false}'), +(53277, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.819+00', '{"cached":null,"ignore_cache":false}'), +(53278, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.829+00', '{"cached":null,"ignore_cache":false}'), +(53279, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.845+00', '{"cached":null,"ignore_cache":false}'), +(53280, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:46:34.942+00', '{"cached":null,"ignore_cache":false}'), +(53281, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.443+00', '{"cached":null,"ignore_cache":false}'), +(53282, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.69+00', '{"cached":null,"ignore_cache":false}'), +(53283, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:12.845+00', '{"cached":null,"ignore_cache":false}'), +(53284, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.034+00', '{"cached":null,"ignore_cache":false}'), +(53285, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.048+00', '{"cached":null,"ignore_cache":false}'), +(53286, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.182+00', '{"cached":null,"ignore_cache":false}'), +(53287, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.265+00', '{"cached":null,"ignore_cache":false}'), +(53288, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.282+00', '{"cached":null,"ignore_cache":false}'), +(53289, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.322+00', '{"cached":null,"ignore_cache":false}'), +(53290, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.345+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53291, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.36+00', '{"cached":null,"ignore_cache":false}'), +(53292, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.391+00', '{"cached":null,"ignore_cache":false}'), +(53293, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.414+00', '{"cached":null,"ignore_cache":false}'), +(53294, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.421+00', '{"cached":null,"ignore_cache":false}'), +(53295, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.467+00', '{"cached":null,"ignore_cache":false}'), +(53296, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:50:13.729+00', '{"cached":null,"ignore_cache":false}'), +(53297, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.391+00', '{"cached":null,"ignore_cache":false}'), +(53298, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.505+00', '{"cached":null,"ignore_cache":false}'), +(53299, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.558+00', '{"cached":null,"ignore_cache":false}'), +(53300, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.819+00', '{"cached":null,"ignore_cache":false}'), +(53301, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:01.979+00', '{"cached":null,"ignore_cache":false}'), +(53302, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.086+00', '{"cached":null,"ignore_cache":false}'), +(53303, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.442+00', '{"cached":null,"ignore_cache":false}'), +(53304, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.472+00', '{"cached":null,"ignore_cache":false}'), +(53305, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:02.851+00', '{"cached":null,"ignore_cache":false}'), +(53306, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:03.094+00', '{"cached":null,"ignore_cache":false}'), +(53307, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:03.458+00', '{"cached":null,"ignore_cache":false}'), +(53308, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:03.529+00', '{"cached":null,"ignore_cache":false}'), +(53309, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:03.649+00', '{"cached":null,"ignore_cache":false}'), +(53310, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.299+00', '{"cached":null,"ignore_cache":false}'), +(53311, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.404+00', '{"cached":null,"ignore_cache":false}'), +(53312, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.437+00', '{"cached":null,"ignore_cache":false}'), +(53313, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.571+00', '{"cached":null,"ignore_cache":false}'), +(53314, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.813+00', '{"cached":null,"ignore_cache":false}'), +(53315, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:04.942+00', '{"cached":null,"ignore_cache":false}'), +(53316, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.076+00', '{"cached":null,"ignore_cache":false}'), +(53317, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.102+00', '{"cached":null,"ignore_cache":false}'), +(53318, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.283+00', '{"cached":null,"ignore_cache":false}'), +(53319, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.321+00', '{"cached":null,"ignore_cache":false}'), +(53320, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.432+00', '{"cached":null,"ignore_cache":false}'), +(53321, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.797+00', '{"cached":null,"ignore_cache":false}'), +(53322, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.838+00', '{"cached":null,"ignore_cache":false}'), +(53323, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:05.947+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53324, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:06.167+00', '{"cached":null,"ignore_cache":false}'), +(53325, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:06.184+00', '{"cached":null,"ignore_cache":false}'), +(53326, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:06.215+00', '{"cached":null,"ignore_cache":false}'), +(53327, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:06.269+00', '{"cached":null,"ignore_cache":false}'), +(53328, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:06.636+00', '{"cached":null,"ignore_cache":false}'), +(53329, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:51:06.95+00', '{"cached":null,"ignore_cache":false}'), +(53330, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:11.93+00', '{"cached":null,"ignore_cache":false}'), +(53331, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.172+00', '{"cached":null,"ignore_cache":false}'), +(53332, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.187+00', '{"cached":null,"ignore_cache":false}'), +(53333, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.347+00', '{"cached":null,"ignore_cache":false}'), +(53334, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.367+00', '{"cached":null,"ignore_cache":false}'), +(53335, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.481+00', '{"cached":null,"ignore_cache":false}'), +(53336, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.502+00', '{"cached":null,"ignore_cache":false}'), +(53337, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.658+00', '{"cached":null,"ignore_cache":false}'), +(53338, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:12.979+00', '{"cached":null,"ignore_cache":false}'), +(53339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:13.022+00', '{"cached":null,"ignore_cache":false}'), +(53340, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:13.082+00', '{"cached":null,"ignore_cache":false}'), +(53341, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:13.157+00', '{"cached":null,"ignore_cache":false}'), +(53342, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:13.178+00', '{"cached":null,"ignore_cache":false}'), +(53343, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:13.183+00', '{"cached":null,"ignore_cache":false}'), +(53344, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:13.194+00', '{"cached":null,"ignore_cache":false}'), +(53345, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:55:13.218+00', '{"cached":null,"ignore_cache":false}'), +(53346, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.455+00', '{"cached":null,"ignore_cache":false}'), +(53347, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.569+00', '{"cached":null,"ignore_cache":false}'), +(53348, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.711+00', '{"cached":null,"ignore_cache":false}'), +(53349, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.797+00', '{"cached":null,"ignore_cache":false}'), +(53350, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.838+00', '{"cached":null,"ignore_cache":false}'), +(53351, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.861+00', '{"cached":null,"ignore_cache":false}'), +(53352, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.907+00', '{"cached":null,"ignore_cache":false}'), +(53353, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:22.918+00', '{"cached":null,"ignore_cache":false}'), +(53354, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.016+00', '{"cached":null,"ignore_cache":false}'), +(53355, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.234+00', '{"cached":null,"ignore_cache":false}'), +(53356, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.715+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53357, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.76+00', '{"cached":null,"ignore_cache":false}'), +(53358, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.808+00', '{"cached":null,"ignore_cache":false}'), +(53359, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.914+00', '{"cached":null,"ignore_cache":false}'), +(53360, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.966+00', '{"cached":null,"ignore_cache":false}'), +(53361, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 11:56:23.981+00', '{"cached":null,"ignore_cache":false}'), +(53362, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:10.848+00', '{"cached":null,"ignore_cache":false}'), +(53363, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.017+00', '{"cached":null,"ignore_cache":false}'), +(53364, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.019+00', '{"cached":null,"ignore_cache":false}'), +(53365, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.078+00', '{"cached":null,"ignore_cache":false}'), +(53366, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.201+00', '{"cached":null,"ignore_cache":false}'), +(53367, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.213+00', '{"cached":null,"ignore_cache":false}'), +(53368, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:11.805+00', '{"cached":null,"ignore_cache":false}'), +(53369, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:12.079+00', '{"cached":null,"ignore_cache":false}'), +(53370, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:12.226+00', '{"cached":null,"ignore_cache":false}'), +(53371, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:12.298+00', '{"cached":null,"ignore_cache":false}'), +(53372, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.079+00', '{"cached":null,"ignore_cache":false}'), +(53373, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.117+00', '{"cached":null,"ignore_cache":false}'), +(53374, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.118+00', '{"cached":null,"ignore_cache":false}'), +(53375, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.131+00', '{"cached":null,"ignore_cache":false}'), +(53376, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.138+00', '{"cached":null,"ignore_cache":false}'), +(53377, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.697+00', '{"cached":null,"ignore_cache":false}'), +(53378, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.703+00', '{"cached":null,"ignore_cache":false}'), +(53379, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.709+00', '{"cached":null,"ignore_cache":false}'), +(53380, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.719+00', '{"cached":null,"ignore_cache":false}'), +(53381, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:13.972+00', '{"cached":null,"ignore_cache":false}'), +(53382, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.349+00', '{"cached":null,"ignore_cache":false}'), +(53383, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.796+00', '{"cached":null,"ignore_cache":false}'), +(53384, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:14.822+00', '{"cached":null,"ignore_cache":false}'), +(53385, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:15.043+00', '{"cached":null,"ignore_cache":false}'), +(53386, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:15.056+00', '{"cached":null,"ignore_cache":false}'), +(53387, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:15.302+00', '{"cached":null,"ignore_cache":false}'), +(53388, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:15.684+00', '{"cached":null,"ignore_cache":false}'), +(53389, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:15.824+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53390, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:15.873+00', '{"cached":null,"ignore_cache":false}'), +(53391, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.004+00', '{"cached":null,"ignore_cache":false}'), +(53392, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.03+00', '{"cached":null,"ignore_cache":false}'), +(53393, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.044+00', '{"cached":null,"ignore_cache":false}'), +(53394, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.435+00', '{"cached":null,"ignore_cache":false}'), +(53395, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.436+00', '{"cached":null,"ignore_cache":false}'), +(53396, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.456+00', '{"cached":null,"ignore_cache":false}'), +(53397, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.621+00', '{"cached":null,"ignore_cache":false}'), +(53398, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.636+00', '{"cached":null,"ignore_cache":false}'), +(53399, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.645+00', '{"cached":null,"ignore_cache":false}'), +(53400, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.649+00', '{"cached":null,"ignore_cache":false}'), +(53401, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.655+00', '{"cached":null,"ignore_cache":false}'), +(53402, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.673+00', '{"cached":null,"ignore_cache":false}'), +(53403, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.709+00', '{"cached":null,"ignore_cache":false}'), +(53404, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.751+00', '{"cached":null,"ignore_cache":false}'), +(53405, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.808+00', '{"cached":null,"ignore_cache":false}'), +(53406, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.961+00', '{"cached":null,"ignore_cache":false}'), +(53407, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:16.978+00', '{"cached":null,"ignore_cache":false}'), +(53408, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 12:00:17.124+00', '{"cached":null,"ignore_cache":false}'), +(53409, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:11.866+00', '{"cached":null,"ignore_cache":false}'), +(53410, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.137+00', '{"cached":null,"ignore_cache":false}'), +(53411, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.239+00', '{"cached":null,"ignore_cache":false}'), +(53412, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.309+00', '{"cached":null,"ignore_cache":false}'), +(53413, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.319+00', '{"cached":null,"ignore_cache":false}'), +(53414, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.427+00', '{"cached":null,"ignore_cache":false}'), +(53415, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.612+00', '{"cached":null,"ignore_cache":false}'), +(53416, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:12.686+00', '{"cached":null,"ignore_cache":false}'), +(53417, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.069+00', '{"cached":null,"ignore_cache":false}'), +(53418, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.121+00', '{"cached":null,"ignore_cache":false}'), +(53419, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.146+00', '{"cached":null,"ignore_cache":false}'), +(53420, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.197+00', '{"cached":null,"ignore_cache":false}'), +(53421, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.236+00', '{"cached":null,"ignore_cache":false}'), +(53422, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.24+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53423, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.319+00', '{"cached":null,"ignore_cache":false}'), +(53424, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:13.357+00', '{"cached":null,"ignore_cache":false}'), +(53425, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.429+00', '{"cached":null,"ignore_cache":false}'), +(53426, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.474+00', '{"cached":null,"ignore_cache":false}'), +(53427, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.498+00', '{"cached":null,"ignore_cache":false}'), +(53428, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.567+00', '{"cached":null,"ignore_cache":false}'), +(53429, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.724+00', '{"cached":null,"ignore_cache":false}'), +(53430, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.838+00', '{"cached":null,"ignore_cache":false}'), +(53431, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.883+00', '{"cached":null,"ignore_cache":false}'), +(53432, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.911+00', '{"cached":null,"ignore_cache":false}'), +(53433, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:18.962+00', '{"cached":null,"ignore_cache":false}'), +(53434, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:19+00', '{"cached":null,"ignore_cache":false}'), +(53435, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.461+00', '{"cached":null,"ignore_cache":false}'), +(53436, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.488+00', '{"cached":null,"ignore_cache":false}'), +(53437, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.505+00', '{"cached":null,"ignore_cache":false}'), +(53438, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.587+00', '{"cached":null,"ignore_cache":false}'), +(53439, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.636+00', '{"cached":null,"ignore_cache":false}'), +(53440, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 12:05:26.681+00', '{"cached":null,"ignore_cache":false}'), +(53441, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.942+00', '{"cached":null,"ignore_cache":false}'), +(53442, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:11.969+00', '{"cached":null,"ignore_cache":false}'), +(53443, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.092+00', '{"cached":null,"ignore_cache":false}'), +(53444, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.118+00', '{"cached":null,"ignore_cache":false}'), +(53445, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.323+00', '{"cached":null,"ignore_cache":false}'), +(53446, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.408+00', '{"cached":null,"ignore_cache":false}'), +(53447, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.417+00', '{"cached":null,"ignore_cache":false}'), +(53448, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.521+00', '{"cached":null,"ignore_cache":false}'), +(53449, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.762+00', '{"cached":null,"ignore_cache":false}'), +(53450, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:12.954+00', '{"cached":null,"ignore_cache":false}'), +(53451, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:13.025+00', '{"cached":null,"ignore_cache":false}'), +(53452, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:13.047+00', '{"cached":null,"ignore_cache":false}'), +(53453, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:13.048+00', '{"cached":null,"ignore_cache":false}'), +(53454, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:13.065+00', '{"cached":null,"ignore_cache":false}'), +(53455, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:13.154+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53456, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 12:10:13.155+00', '{"cached":null,"ignore_cache":false}'), +(53457, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.105+00', '{"cached":null,"ignore_cache":false}'), +(53458, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.32+00', '{"cached":null,"ignore_cache":false}'), +(53459, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.399+00', '{"cached":null,"ignore_cache":false}'), +(53460, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.469+00', '{"cached":null,"ignore_cache":false}'), +(53461, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.649+00', '{"cached":null,"ignore_cache":false}'), +(53462, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.826+00', '{"cached":null,"ignore_cache":false}'), +(53463, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.914+00', '{"cached":null,"ignore_cache":false}'), +(53464, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.933+00', '{"cached":null,"ignore_cache":false}'), +(53465, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:12.962+00', '{"cached":null,"ignore_cache":false}'), +(53466, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:13.241+00', '{"cached":null,"ignore_cache":false}'), +(53467, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:13.318+00', '{"cached":null,"ignore_cache":false}'), +(53468, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:13.377+00', '{"cached":null,"ignore_cache":false}'), +(53469, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:13.394+00', '{"cached":null,"ignore_cache":false}'), +(53470, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:13.401+00', '{"cached":null,"ignore_cache":false}'), +(53471, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:13.407+00', '{"cached":null,"ignore_cache":false}'), +(53472, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 12:15:13.438+00', '{"cached":null,"ignore_cache":false}'), +(53473, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.639+00', '{"cached":null,"ignore_cache":false}'), +(53474, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:26.701+00', '{"cached":null,"ignore_cache":false}'), +(53475, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:27.176+00', '{"cached":null,"ignore_cache":false}'), +(53476, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:27.567+00', '{"cached":null,"ignore_cache":false}'), +(53477, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:27.582+00', '{"cached":null,"ignore_cache":false}'), +(53478, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:27.659+00', '{"cached":null,"ignore_cache":false}'), +(53479, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.201+00', '{"cached":null,"ignore_cache":false}'), +(53480, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.35+00', '{"cached":null,"ignore_cache":false}'), +(53481, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.355+00', '{"cached":null,"ignore_cache":false}'), +(53482, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.665+00', '{"cached":null,"ignore_cache":false}'), +(53483, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.733+00', '{"cached":null,"ignore_cache":false}'), +(53484, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.744+00', '{"cached":null,"ignore_cache":false}'), +(53485, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.767+00', '{"cached":null,"ignore_cache":false}'), +(53486, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.792+00', '{"cached":null,"ignore_cache":false}'), +(53487, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.804+00', '{"cached":null,"ignore_cache":false}'), +(53488, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:28.976+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53489, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.126+00', '{"cached":null,"ignore_cache":false}'), +(53490, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.14+00', '{"cached":null,"ignore_cache":false}'), +(53491, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.142+00', '{"cached":null,"ignore_cache":false}'), +(53492, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.189+00', '{"cached":null,"ignore_cache":false}'), +(53493, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.217+00', '{"cached":null,"ignore_cache":false}'), +(53494, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.234+00', '{"cached":null,"ignore_cache":false}'), +(53495, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.332+00', '{"cached":null,"ignore_cache":false}'), +(53496, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.335+00', '{"cached":null,"ignore_cache":false}'), +(53497, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.338+00', '{"cached":null,"ignore_cache":false}'), +(53498, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.375+00', '{"cached":null,"ignore_cache":false}'), +(53499, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.519+00', '{"cached":null,"ignore_cache":false}'), +(53500, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:29.631+00', '{"cached":null,"ignore_cache":false}'), +(53501, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:30.039+00', '{"cached":null,"ignore_cache":false}'), +(53502, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:30.039+00', '{"cached":null,"ignore_cache":false}'), +(53503, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:30.173+00', '{"cached":null,"ignore_cache":false}'), +(53504, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 23:52:30.205+00', '{"cached":null,"ignore_cache":false}'), +(53505, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.11+00', '{"cached":null,"ignore_cache":false}'), +(53506, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.18+00', '{"cached":null,"ignore_cache":false}'), +(53507, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.256+00', '{"cached":null,"ignore_cache":false}'), +(53508, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.281+00', '{"cached":null,"ignore_cache":false}'), +(53509, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.312+00', '{"cached":null,"ignore_cache":false}'), +(53510, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.349+00', '{"cached":null,"ignore_cache":false}'), +(53511, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.5+00', '{"cached":null,"ignore_cache":false}'), +(53512, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.561+00', '{"cached":null,"ignore_cache":false}'), +(53513, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.566+00', '{"cached":null,"ignore_cache":false}'), +(53514, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.653+00', '{"cached":null,"ignore_cache":false}'), +(53515, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.661+00', '{"cached":null,"ignore_cache":false}'), +(53516, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.732+00', '{"cached":null,"ignore_cache":false}'), +(53517, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.741+00', '{"cached":null,"ignore_cache":false}'), +(53518, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.775+00', '{"cached":null,"ignore_cache":false}'), +(53519, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:27.996+00', '{"cached":null,"ignore_cache":false}'), +(53520, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-14 23:57:28.03+00', '{"cached":null,"ignore_cache":false}'), +(53521, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.468+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53522, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.673+00', '{"cached":null,"ignore_cache":false}'), +(53523, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.767+00', '{"cached":null,"ignore_cache":false}'), +(53524, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.856+00', '{"cached":null,"ignore_cache":false}'), +(53525, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:35.988+00', '{"cached":null,"ignore_cache":false}'), +(53526, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:36.112+00', '{"cached":null,"ignore_cache":false}'), +(53527, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:36.241+00', '{"cached":null,"ignore_cache":false}'), +(53528, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:36.462+00', '{"cached":null,"ignore_cache":false}'), +(53529, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:36.669+00', '{"cached":null,"ignore_cache":false}'), +(53530, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:36.757+00', '{"cached":null,"ignore_cache":false}'), +(53531, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:36.923+00', '{"cached":null,"ignore_cache":false}'), +(53532, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.077+00', '{"cached":null,"ignore_cache":false}'), +(53533, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.116+00', '{"cached":null,"ignore_cache":false}'), +(53534, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.381+00', '{"cached":null,"ignore_cache":false}'), +(53535, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.395+00', '{"cached":null,"ignore_cache":false}'), +(53536, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.401+00', '{"cached":null,"ignore_cache":false}'), +(53537, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.407+00', '{"cached":null,"ignore_cache":false}'), +(53538, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.417+00', '{"cached":null,"ignore_cache":false}'), +(53539, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.436+00', '{"cached":null,"ignore_cache":false}'), +(53540, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.602+00', '{"cached":null,"ignore_cache":false}'), +(53541, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.687+00', '{"cached":null,"ignore_cache":false}'), +(53542, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.791+00', '{"cached":null,"ignore_cache":false}'), +(53543, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:37.961+00', '{"cached":null,"ignore_cache":false}'), +(53544, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:38.221+00', '{"cached":null,"ignore_cache":false}'), +(53545, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:38.245+00', '{"cached":null,"ignore_cache":false}'), +(53546, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:38.477+00', '{"cached":null,"ignore_cache":false}'), +(53547, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:38.511+00', '{"cached":null,"ignore_cache":false}'), +(53548, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:38.527+00', '{"cached":null,"ignore_cache":false}'), +(53549, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:39.145+00', '{"cached":null,"ignore_cache":false}'), +(53550, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:39.146+00', '{"cached":null,"ignore_cache":false}'), +(53551, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:39.209+00', '{"cached":null,"ignore_cache":false}'), +(53552, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:02:39.237+00', '{"cached":null,"ignore_cache":false}'), +(53553, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.423+00', '{"cached":null,"ignore_cache":false}'), +(53554, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.594+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.823+00', '{"cached":null,"ignore_cache":false}'), +(53556, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.852+00', '{"cached":null,"ignore_cache":false}'), +(53557, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:38.928+00', '{"cached":null,"ignore_cache":false}'), +(53558, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.023+00', '{"cached":null,"ignore_cache":false}'), +(53559, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.054+00', '{"cached":null,"ignore_cache":false}'), +(53560, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.099+00', '{"cached":null,"ignore_cache":false}'), +(53561, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.151+00', '{"cached":null,"ignore_cache":false}'), +(53562, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.232+00', '{"cached":null,"ignore_cache":false}'), +(53563, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.241+00', '{"cached":null,"ignore_cache":false}'), +(53564, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.287+00', '{"cached":null,"ignore_cache":false}'), +(53565, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.377+00', '{"cached":null,"ignore_cache":false}'), +(53566, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.427+00', '{"cached":null,"ignore_cache":false}'), +(53567, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.607+00', '{"cached":null,"ignore_cache":false}'), +(53568, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:07:39.627+00', '{"cached":null,"ignore_cache":false}'), +(53569, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:50.801+00', '{"cached":null,"ignore_cache":false}'), +(53570, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.095+00', '{"cached":null,"ignore_cache":false}'), +(53571, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.251+00', '{"cached":null,"ignore_cache":false}'), +(53572, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.285+00', '{"cached":null,"ignore_cache":false}'), +(53573, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.521+00', '{"cached":null,"ignore_cache":false}'), +(53574, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:51.539+00', '{"cached":null,"ignore_cache":false}'), +(53575, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:52.075+00', '{"cached":null,"ignore_cache":false}'), +(53576, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:52.505+00', '{"cached":null,"ignore_cache":false}'), +(53577, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:52.674+00', '{"cached":null,"ignore_cache":false}'), +(53578, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:52.73+00', '{"cached":null,"ignore_cache":false}'), +(53579, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:52.869+00', '{"cached":null,"ignore_cache":false}'), +(53580, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:52.925+00', '{"cached":null,"ignore_cache":false}'), +(53581, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.091+00', '{"cached":null,"ignore_cache":false}'), +(53582, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.095+00', '{"cached":null,"ignore_cache":false}'), +(53583, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.151+00', '{"cached":null,"ignore_cache":false}'), +(53584, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.196+00', '{"cached":null,"ignore_cache":false}'), +(53585, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.197+00', '{"cached":null,"ignore_cache":false}'), +(53586, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.373+00', '{"cached":null,"ignore_cache":false}'), +(53587, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.576+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53588, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:53.939+00', '{"cached":null,"ignore_cache":false}'), +(53589, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.002+00', '{"cached":null,"ignore_cache":false}'), +(53590, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.055+00', '{"cached":null,"ignore_cache":false}'), +(53591, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.138+00', '{"cached":null,"ignore_cache":false}'), +(53592, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.28+00', '{"cached":null,"ignore_cache":false}'), +(53593, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.321+00', '{"cached":null,"ignore_cache":false}'), +(53594, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.404+00', '{"cached":null,"ignore_cache":false}'), +(53595, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.615+00', '{"cached":null,"ignore_cache":false}'), +(53596, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.859+00', '{"cached":null,"ignore_cache":false}'), +(53597, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:09:54.955+00', '{"cached":null,"ignore_cache":false}'), +(53598, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:35.543+00', '{"cached":null,"ignore_cache":false}'), +(53599, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:35.544+00', '{"cached":null,"ignore_cache":false}'), +(53600, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:35.57+00', '{"cached":null,"ignore_cache":false}'), +(53601, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:35.577+00', '{"cached":null,"ignore_cache":false}'), +(53602, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:35.585+00', '{"cached":null,"ignore_cache":false}'), +(53603, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:35.873+00', '{"cached":null,"ignore_cache":false}'), +(53604, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:35.93+00', '{"cached":null,"ignore_cache":false}'), +(53605, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:36.262+00', '{"cached":null,"ignore_cache":false}'), +(53606, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:36.29+00', '{"cached":null,"ignore_cache":false}'), +(53607, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:36.697+00', '{"cached":null,"ignore_cache":false}'), +(53608, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:36.782+00', '{"cached":null,"ignore_cache":false}'), +(53609, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:36.857+00', '{"cached":null,"ignore_cache":false}'), +(53610, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:36.975+00', '{"cached":null,"ignore_cache":false}'), +(53611, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.053+00', '{"cached":null,"ignore_cache":false}'), +(53612, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.293+00', '{"cached":null,"ignore_cache":false}'), +(53613, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.333+00', '{"cached":null,"ignore_cache":false}'), +(53614, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.422+00', '{"cached":null,"ignore_cache":false}'), +(53615, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.581+00', '{"cached":null,"ignore_cache":false}'), +(53616, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.674+00', '{"cached":null,"ignore_cache":false}'), +(53617, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.714+00', '{"cached":null,"ignore_cache":false}'), +(53618, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:37.747+00', '{"cached":null,"ignore_cache":false}'), +(53619, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:38.003+00', '{"cached":null,"ignore_cache":false}'), +(53620, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:38.033+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53621, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:38.254+00', '{"cached":null,"ignore_cache":false}'), +(53622, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:38.276+00', '{"cached":null,"ignore_cache":false}'), +(53623, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:38.592+00', '{"cached":null,"ignore_cache":false}'), +(53624, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:39.033+00', '{"cached":null,"ignore_cache":false}'), +(53625, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:39.034+00', '{"cached":null,"ignore_cache":false}'), +(53626, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:12:39.222+00', '{"cached":null,"ignore_cache":false}'), +(53627, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.385+00', '{"cached":null,"ignore_cache":false}'), +(53628, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.588+00', '{"cached":null,"ignore_cache":false}'), +(53629, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:33.659+00', '{"cached":null,"ignore_cache":false}'), +(53630, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.025+00', '{"cached":null,"ignore_cache":false}'), +(53631, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.194+00', '{"cached":null,"ignore_cache":false}'), +(53632, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.231+00', '{"cached":null,"ignore_cache":false}'), +(53633, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.34+00', '{"cached":null,"ignore_cache":false}'), +(53634, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.377+00', '{"cached":null,"ignore_cache":false}'), +(53635, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.508+00', '{"cached":null,"ignore_cache":false}'), +(53636, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.54+00', '{"cached":null,"ignore_cache":false}'), +(53637, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.542+00', '{"cached":null,"ignore_cache":false}'), +(53638, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.581+00', '{"cached":null,"ignore_cache":false}'), +(53639, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.601+00', '{"cached":null,"ignore_cache":false}'), +(53640, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.628+00', '{"cached":null,"ignore_cache":false}'), +(53641, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:34.973+00', '{"cached":null,"ignore_cache":false}'), +(53642, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:17:35.051+00', '{"cached":null,"ignore_cache":false}'), +(53643, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.443+00', '{"cached":null,"ignore_cache":false}'), +(53644, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:33.766+00', '{"cached":null,"ignore_cache":false}'), +(53645, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.086+00', '{"cached":null,"ignore_cache":false}'), +(53646, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.104+00', '{"cached":null,"ignore_cache":false}'), +(53647, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.115+00', '{"cached":null,"ignore_cache":false}'), +(53648, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.191+00', '{"cached":null,"ignore_cache":false}'), +(53649, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.266+00', '{"cached":null,"ignore_cache":false}'), +(53650, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.299+00', '{"cached":null,"ignore_cache":false}'), +(53651, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.444+00', '{"cached":null,"ignore_cache":false}'), +(53652, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.498+00', '{"cached":null,"ignore_cache":false}'), +(53653, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.719+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53654, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.781+00', '{"cached":null,"ignore_cache":false}'), +(53655, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.794+00', '{"cached":null,"ignore_cache":false}'), +(53656, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.853+00', '{"cached":null,"ignore_cache":false}'), +(53657, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:34.9+00', '{"cached":null,"ignore_cache":false}'), +(53658, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:22:35.126+00', '{"cached":null,"ignore_cache":false}'), +(53659, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.307+00', '{"cached":null,"ignore_cache":false}'), +(53660, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.45+00', '{"cached":null,"ignore_cache":false}'), +(53661, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.494+00', '{"cached":null,"ignore_cache":false}'), +(53662, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.518+00', '{"cached":null,"ignore_cache":false}'), +(53663, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.538+00', '{"cached":null,"ignore_cache":false}'), +(53664, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.589+00', '{"cached":null,"ignore_cache":false}'), +(53665, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.641+00', '{"cached":null,"ignore_cache":false}'), +(53666, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.693+00', '{"cached":null,"ignore_cache":false}'), +(53667, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.729+00', '{"cached":null,"ignore_cache":false}'), +(53668, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.905+00', '{"cached":null,"ignore_cache":false}'), +(53669, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.966+00', '{"cached":null,"ignore_cache":false}'), +(53670, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.988+00', '{"cached":null,"ignore_cache":false}'), +(53671, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:33.996+00', '{"cached":null,"ignore_cache":false}'), +(53672, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:34.061+00', '{"cached":null,"ignore_cache":false}'), +(53673, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:34.327+00', '{"cached":null,"ignore_cache":false}'), +(53674, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:27:34.341+00', '{"cached":null,"ignore_cache":false}'), +(53675, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.239+00', '{"cached":null,"ignore_cache":false}'), +(53676, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.636+00', '{"cached":null,"ignore_cache":false}'), +(53677, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:33.864+00', '{"cached":null,"ignore_cache":false}'), +(53678, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.024+00', '{"cached":null,"ignore_cache":false}'), +(53679, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.257+00', '{"cached":null,"ignore_cache":false}'), +(53680, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.275+00', '{"cached":null,"ignore_cache":false}'), +(53681, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.396+00', '{"cached":null,"ignore_cache":false}'), +(53682, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.412+00', '{"cached":null,"ignore_cache":false}'), +(53683, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.473+00', '{"cached":null,"ignore_cache":false}'), +(53684, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.49+00', '{"cached":null,"ignore_cache":false}'), +(53685, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.605+00', '{"cached":null,"ignore_cache":false}'), +(53686, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.608+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53687, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.681+00', '{"cached":null,"ignore_cache":false}'), +(53688, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:34.758+00', '{"cached":null,"ignore_cache":false}'), +(53689, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:35.019+00', '{"cached":null,"ignore_cache":false}'), +(53690, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:32:35.042+00', '{"cached":null,"ignore_cache":false}'), +(53691, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.613+00', '{"cached":null,"ignore_cache":false}'), +(53692, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:33.776+00', '{"cached":null,"ignore_cache":false}'), +(53693, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.063+00', '{"cached":null,"ignore_cache":false}'), +(53694, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.073+00', '{"cached":null,"ignore_cache":false}'), +(53695, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.079+00', '{"cached":null,"ignore_cache":false}'), +(53696, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.117+00', '{"cached":null,"ignore_cache":false}'), +(53697, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.165+00', '{"cached":null,"ignore_cache":false}'), +(53698, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.174+00', '{"cached":null,"ignore_cache":false}'), +(53699, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.178+00', '{"cached":null,"ignore_cache":false}'), +(53700, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.2+00', '{"cached":null,"ignore_cache":false}'), +(53701, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.265+00', '{"cached":null,"ignore_cache":false}'), +(53702, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.38+00', '{"cached":null,"ignore_cache":false}'), +(53703, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.396+00', '{"cached":null,"ignore_cache":false}'), +(53704, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.412+00', '{"cached":null,"ignore_cache":false}'), +(53705, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.742+00', '{"cached":null,"ignore_cache":false}'), +(53706, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:37:34.763+00', '{"cached":null,"ignore_cache":false}'), +(53707, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.274+00', '{"cached":null,"ignore_cache":false}'), +(53708, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.323+00', '{"cached":null,"ignore_cache":false}'), +(53709, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.563+00', '{"cached":null,"ignore_cache":false}'), +(53710, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.599+00', '{"cached":null,"ignore_cache":false}'), +(53711, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.601+00', '{"cached":null,"ignore_cache":false}'), +(53712, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.652+00', '{"cached":null,"ignore_cache":false}'), +(53713, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:33.889+00', '{"cached":null,"ignore_cache":false}'), +(53714, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.487+00', '{"cached":null,"ignore_cache":false}'), +(53715, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.506+00', '{"cached":null,"ignore_cache":false}'), +(53716, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.544+00', '{"cached":null,"ignore_cache":false}'), +(53717, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.61+00', '{"cached":null,"ignore_cache":false}'), +(53718, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.689+00', '{"cached":null,"ignore_cache":false}'), +(53719, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.721+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53720, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.774+00', '{"cached":null,"ignore_cache":false}'), +(53721, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:34.941+00', '{"cached":null,"ignore_cache":false}'), +(53722, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:42:35.088+00', '{"cached":null,"ignore_cache":false}'), +(53723, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:33.89+00', '{"cached":null,"ignore_cache":false}'), +(53724, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.194+00', '{"cached":null,"ignore_cache":false}'), +(53725, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.358+00', '{"cached":null,"ignore_cache":false}'), +(53726, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.39+00', '{"cached":null,"ignore_cache":false}'), +(53727, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.415+00', '{"cached":null,"ignore_cache":false}'), +(53728, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.451+00', '{"cached":null,"ignore_cache":false}'), +(53729, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.489+00', '{"cached":null,"ignore_cache":false}'), +(53730, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.547+00', '{"cached":null,"ignore_cache":false}'), +(53731, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.685+00', '{"cached":null,"ignore_cache":false}'), +(53732, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.808+00', '{"cached":null,"ignore_cache":false}'), +(53733, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.809+00', '{"cached":null,"ignore_cache":false}'), +(53734, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.857+00', '{"cached":null,"ignore_cache":false}'), +(53735, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.904+00', '{"cached":null,"ignore_cache":false}'), +(53736, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:34.981+00', '{"cached":null,"ignore_cache":false}'), +(53737, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:35.239+00', '{"cached":null,"ignore_cache":false}'), +(53738, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:47:35.451+00', '{"cached":null,"ignore_cache":false}'), +(53739, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.539+00', '{"cached":null,"ignore_cache":false}'), +(53740, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:33.801+00', '{"cached":null,"ignore_cache":false}'), +(53741, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.023+00', '{"cached":null,"ignore_cache":false}'), +(53742, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.159+00', '{"cached":null,"ignore_cache":false}'), +(53743, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.202+00', '{"cached":null,"ignore_cache":false}'), +(53744, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.473+00', '{"cached":null,"ignore_cache":false}'), +(53745, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.505+00', '{"cached":null,"ignore_cache":false}'), +(53746, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.622+00', '{"cached":null,"ignore_cache":false}'), +(53747, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.645+00', '{"cached":null,"ignore_cache":false}'), +(53748, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.743+00', '{"cached":null,"ignore_cache":false}'), +(53749, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.744+00', '{"cached":null,"ignore_cache":false}'), +(53750, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.745+00', '{"cached":null,"ignore_cache":false}'), +(53751, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.752+00', '{"cached":null,"ignore_cache":false}'), +(53752, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:34.77+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53753, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:35.091+00', '{"cached":null,"ignore_cache":false}'), +(53754, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:52:35.095+00', '{"cached":null,"ignore_cache":false}'), +(53755, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.064+00', '{"cached":null,"ignore_cache":false}'), +(53756, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.211+00', '{"cached":null,"ignore_cache":false}'), +(53757, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.276+00', '{"cached":null,"ignore_cache":false}'), +(53758, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.282+00', '{"cached":null,"ignore_cache":false}'), +(53759, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.523+00', '{"cached":null,"ignore_cache":false}'), +(53760, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.538+00', '{"cached":null,"ignore_cache":false}'), +(53761, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.889+00', '{"cached":null,"ignore_cache":false}'), +(53762, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.938+00', '{"cached":null,"ignore_cache":false}'), +(53763, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:33.963+00', '{"cached":null,"ignore_cache":false}'), +(53764, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:34.087+00', '{"cached":null,"ignore_cache":false}'), +(53765, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:34.182+00', '{"cached":null,"ignore_cache":false}'), +(53766, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:34.221+00', '{"cached":null,"ignore_cache":false}'), +(53767, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:34.242+00', '{"cached":null,"ignore_cache":false}'), +(53768, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:34.401+00', '{"cached":null,"ignore_cache":false}'), +(53769, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:34.655+00', '{"cached":null,"ignore_cache":false}'), +(53770, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 11:57:34.693+00', '{"cached":null,"ignore_cache":false}'), +(53771, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:55.912+00', '{"cached":null,"ignore_cache":false}'), +(53772, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.21+00', '{"cached":null,"ignore_cache":false}'), +(53773, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.211+00', '{"cached":null,"ignore_cache":false}'), +(53774, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.638+00', '{"cached":null,"ignore_cache":false}'), +(53775, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.785+00', '{"cached":null,"ignore_cache":false}'), +(53776, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:57.853+00', '{"cached":null,"ignore_cache":false}'), +(53777, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:58.204+00', '{"cached":null,"ignore_cache":false}'), +(53778, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:58.659+00', '{"cached":null,"ignore_cache":false}'), +(53779, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:58.675+00', '{"cached":null,"ignore_cache":false}'), +(53780, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:58.756+00', '{"cached":null,"ignore_cache":false}'), +(53781, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.064+00', '{"cached":null,"ignore_cache":false}'), +(53782, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.093+00', '{"cached":null,"ignore_cache":false}'), +(53783, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.153+00', '{"cached":null,"ignore_cache":false}'), +(53784, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.157+00', '{"cached":null,"ignore_cache":false}'), +(53785, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.433+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53786, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.449+00', '{"cached":null,"ignore_cache":false}'), +(53787, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.549+00', '{"cached":null,"ignore_cache":false}'), +(53788, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.744+00', '{"cached":null,"ignore_cache":false}'), +(53789, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.78+00', '{"cached":null,"ignore_cache":false}'), +(53790, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.814+00', '{"cached":null,"ignore_cache":false}'), +(53791, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.834+00', '{"cached":null,"ignore_cache":false}'), +(53792, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 12:05:59.928+00', '{"cached":null,"ignore_cache":false}'), +(53793, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 12:06:00.106+00', '{"cached":null,"ignore_cache":false}'), +(53794, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 12:06:00.142+00', '{"cached":null,"ignore_cache":false}'), +(53795, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 12:06:00.167+00', '{"cached":null,"ignore_cache":false}'), +(53796, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 12:06:00.234+00', '{"cached":null,"ignore_cache":false}'), +(53797, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 12:06:00.309+00', '{"cached":null,"ignore_cache":false}'), +(53798, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 12:06:00.595+00', '{"cached":null,"ignore_cache":false}'), +(53799, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 12:06:00.68+00', '{"cached":null,"ignore_cache":false}'), +(53800, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.202+00', '{"cached":null,"ignore_cache":false}'), +(53801, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.496+00', '{"cached":null,"ignore_cache":false}'), +(53802, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.624+00', '{"cached":null,"ignore_cache":false}'), +(53803, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.71+00', '{"cached":null,"ignore_cache":false}'), +(53804, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:58.717+00', '{"cached":null,"ignore_cache":false}'), +(53805, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.008+00', '{"cached":null,"ignore_cache":false}'), +(53806, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.02+00', '{"cached":null,"ignore_cache":false}'), +(53807, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.078+00', '{"cached":null,"ignore_cache":false}'), +(53808, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.142+00', '{"cached":null,"ignore_cache":false}'), +(53809, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.449+00', '{"cached":null,"ignore_cache":false}'), +(53810, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.472+00', '{"cached":null,"ignore_cache":false}'), +(53811, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.478+00', '{"cached":null,"ignore_cache":false}'), +(53812, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.64+00', '{"cached":null,"ignore_cache":false}'), +(53813, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.694+00', '{"cached":null,"ignore_cache":false}'), +(53814, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.784+00', '{"cached":null,"ignore_cache":false}'), +(53815, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 12:10:59.799+00', '{"cached":null,"ignore_cache":false}'), +(53816, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.138+00', '{"cached":null,"ignore_cache":false}'), +(53817, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.224+00', '{"cached":null,"ignore_cache":false}'), +(53818, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.321+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53819, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.357+00', '{"cached":null,"ignore_cache":false}'), +(53820, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.407+00', '{"cached":null,"ignore_cache":false}'), +(53821, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.448+00', '{"cached":null,"ignore_cache":false}'), +(53822, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.462+00', '{"cached":null,"ignore_cache":false}'), +(53823, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.513+00', '{"cached":null,"ignore_cache":false}'), +(53824, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.778+00', '{"cached":null,"ignore_cache":false}'), +(53825, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:09.83+00', '{"cached":null,"ignore_cache":false}'), +(53826, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.927+00', '{"cached":null,"ignore_cache":false}'), +(53827, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:13.983+00', '{"cached":null,"ignore_cache":false}'), +(53828, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:14.09+00', '{"cached":null,"ignore_cache":false}'), +(53829, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:14.12+00', '{"cached":null,"ignore_cache":false}'), +(53830, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:14.125+00', '{"cached":null,"ignore_cache":false}'), +(53831, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 12:16:14.142+00', '{"cached":null,"ignore_cache":false}'), +(53832, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.223+00', '{"cached":null,"ignore_cache":false}'), +(53833, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.438+00', '{"cached":null,"ignore_cache":false}'), +(53834, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.859+00', '{"cached":null,"ignore_cache":false}'), +(53835, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:39.927+00', '{"cached":null,"ignore_cache":false}'), +(53836, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.012+00', '{"cached":null,"ignore_cache":false}'), +(53837, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.317+00', '{"cached":null,"ignore_cache":false}'), +(53838, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.45+00', '{"cached":null,"ignore_cache":false}'), +(53839, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.467+00', '{"cached":null,"ignore_cache":false}'), +(53840, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.527+00', '{"cached":null,"ignore_cache":false}'), +(53841, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.546+00', '{"cached":null,"ignore_cache":false}'), +(53842, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.572+00', '{"cached":null,"ignore_cache":false}'), +(53843, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.641+00', '{"cached":null,"ignore_cache":false}'), +(53844, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.821+00', '{"cached":null,"ignore_cache":false}'), +(53845, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.837+00', '{"cached":null,"ignore_cache":false}'), +(53846, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.912+00', '{"cached":null,"ignore_cache":false}'), +(53847, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:40.966+00', '{"cached":null,"ignore_cache":false}'), +(53848, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.028+00', '{"cached":null,"ignore_cache":false}'), +(53849, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.076+00', '{"cached":null,"ignore_cache":false}'), +(53850, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.281+00', '{"cached":null,"ignore_cache":false}'), +(53851, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.488+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53852, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.526+00', '{"cached":null,"ignore_cache":false}'), +(53853, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.542+00', '{"cached":null,"ignore_cache":false}'), +(53854, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.545+00', '{"cached":null,"ignore_cache":false}'), +(53855, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.652+00', '{"cached":null,"ignore_cache":false}'), +(53856, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.89+00', '{"cached":null,"ignore_cache":false}'), +(53857, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:41.964+00', '{"cached":null,"ignore_cache":false}'), +(53858, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:42.029+00', '{"cached":null,"ignore_cache":false}'), +(53859, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:13:42.092+00', '{"cached":null,"ignore_cache":false}'), +(53860, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:40.908+00', '{"cached":null,"ignore_cache":false}'), +(53861, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.134+00', '{"cached":null,"ignore_cache":false}'), +(53862, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.135+00', '{"cached":null,"ignore_cache":false}'), +(53863, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.497+00', '{"cached":null,"ignore_cache":false}'), +(53864, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.566+00', '{"cached":null,"ignore_cache":false}'), +(53865, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.61+00', '{"cached":null,"ignore_cache":false}'), +(53866, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.692+00', '{"cached":null,"ignore_cache":false}'), +(53867, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.806+00', '{"cached":null,"ignore_cache":false}'), +(53868, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.839+00', '{"cached":null,"ignore_cache":false}'), +(53869, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.889+00', '{"cached":null,"ignore_cache":false}'), +(53870, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.893+00', '{"cached":null,"ignore_cache":false}'), +(53871, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.956+00', '{"cached":null,"ignore_cache":false}'), +(53872, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:41.979+00', '{"cached":null,"ignore_cache":false}'), +(53873, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:42.014+00', '{"cached":null,"ignore_cache":false}'), +(53874, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:42.393+00', '{"cached":null,"ignore_cache":false}'), +(53875, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:18:42.442+00', '{"cached":null,"ignore_cache":false}'), +(53876, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.755+00', '{"cached":null,"ignore_cache":false}'), +(53877, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.768+00', '{"cached":null,"ignore_cache":false}'), +(53878, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.811+00', '{"cached":null,"ignore_cache":false}'), +(53879, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.825+00', '{"cached":null,"ignore_cache":false}'), +(53880, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.874+00', '{"cached":null,"ignore_cache":false}'), +(53881, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:16.898+00', '{"cached":null,"ignore_cache":false}'), +(53882, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.269+00', '{"cached":null,"ignore_cache":false}'), +(53883, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.363+00', '{"cached":null,"ignore_cache":false}'), +(53884, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.664+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53885, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.714+00', '{"cached":null,"ignore_cache":false}'), +(53886, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.814+00', '{"cached":null,"ignore_cache":false}'), +(53887, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.82+00', '{"cached":null,"ignore_cache":false}'), +(53888, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.844+00', '{"cached":null,"ignore_cache":false}'), +(53889, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:17.877+00', '{"cached":null,"ignore_cache":false}'), +(53890, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:18.108+00', '{"cached":null,"ignore_cache":false}'), +(53891, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:26:18.237+00', '{"cached":null,"ignore_cache":false}'), +(53892, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.167+00', '{"cached":null,"ignore_cache":false}'), +(53893, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.179+00', '{"cached":null,"ignore_cache":false}'), +(53894, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.245+00', '{"cached":null,"ignore_cache":false}'), +(53895, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.301+00', '{"cached":null,"ignore_cache":false}'), +(53896, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.339+00', '{"cached":null,"ignore_cache":false}'), +(53897, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.357+00', '{"cached":null,"ignore_cache":false}'), +(53898, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.849+00', '{"cached":null,"ignore_cache":false}'), +(53899, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.913+00', '{"cached":null,"ignore_cache":false}'), +(53900, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:16.951+00', '{"cached":null,"ignore_cache":false}'), +(53901, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:17.152+00', '{"cached":null,"ignore_cache":false}'), +(53902, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:17.16+00', '{"cached":null,"ignore_cache":false}'), +(53903, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:17.168+00', '{"cached":null,"ignore_cache":false}'), +(53904, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:17.177+00', '{"cached":null,"ignore_cache":false}'), +(53905, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:17.277+00', '{"cached":null,"ignore_cache":false}'), +(53906, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:17.549+00', '{"cached":null,"ignore_cache":false}'), +(53907, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:31:17.568+00', '{"cached":null,"ignore_cache":false}'), +(53908, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:14.918+00', '{"cached":null,"ignore_cache":false}'), +(53909, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.616+00', '{"cached":null,"ignore_cache":false}'), +(53910, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.891+00', '{"cached":null,"ignore_cache":false}'), +(53911, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:15.93+00', '{"cached":null,"ignore_cache":false}'), +(53912, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.428+00', '{"cached":null,"ignore_cache":false}'), +(53913, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.617+00', '{"cached":null,"ignore_cache":false}'), +(53914, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.723+00', '{"cached":null,"ignore_cache":false}'), +(53915, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:16.926+00', '{"cached":null,"ignore_cache":false}'), +(53916, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.272+00', '{"cached":null,"ignore_cache":false}'), +(53917, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.306+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53918, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.361+00', '{"cached":null,"ignore_cache":false}'), +(53919, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.41+00', '{"cached":null,"ignore_cache":false}'), +(53920, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.438+00', '{"cached":null,"ignore_cache":false}'), +(53921, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.866+00', '{"cached":null,"ignore_cache":false}'), +(53922, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.878+00', '{"cached":null,"ignore_cache":false}'), +(53923, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:17.892+00', '{"cached":null,"ignore_cache":false}'), +(53924, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.028+00', '{"cached":null,"ignore_cache":false}'), +(53925, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.289+00', '{"cached":null,"ignore_cache":false}'), +(53926, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.332+00', '{"cached":null,"ignore_cache":false}'), +(53927, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.346+00', '{"cached":null,"ignore_cache":false}'), +(53928, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.5+00', '{"cached":null,"ignore_cache":false}'), +(53929, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.603+00', '{"cached":null,"ignore_cache":false}'), +(53930, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.627+00', '{"cached":null,"ignore_cache":false}'), +(53931, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.642+00', '{"cached":null,"ignore_cache":false}'), +(53932, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.644+00', '{"cached":null,"ignore_cache":false}'), +(53933, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:32:18.83+00', '{"cached":null,"ignore_cache":false}'), +(53934, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.174+00', '{"cached":null,"ignore_cache":false}'), +(53935, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.194+00', '{"cached":null,"ignore_cache":false}'), +(53936, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.291+00', '{"cached":null,"ignore_cache":false}'), +(53937, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.423+00', '{"cached":null,"ignore_cache":false}'), +(53938, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.459+00', '{"cached":null,"ignore_cache":false}'), +(53939, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.592+00', '{"cached":null,"ignore_cache":false}'), +(53940, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.62+00', '{"cached":null,"ignore_cache":false}'), +(53941, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.637+00', '{"cached":null,"ignore_cache":false}'), +(53942, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.701+00', '{"cached":null,"ignore_cache":false}'), +(53943, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.796+00', '{"cached":null,"ignore_cache":false}'), +(53944, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.881+00', '{"cached":null,"ignore_cache":false}'), +(53945, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.894+00', '{"cached":null,"ignore_cache":false}'), +(53946, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.928+00', '{"cached":null,"ignore_cache":false}'), +(53947, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:17.934+00', '{"cached":null,"ignore_cache":false}'), +(53948, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:18.215+00', '{"cached":null,"ignore_cache":false}'), +(53949, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:36:18.228+00', '{"cached":null,"ignore_cache":false}'), +(53950, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.399+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53951, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.539+00', '{"cached":null,"ignore_cache":false}'), +(53952, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.589+00', '{"cached":null,"ignore_cache":false}'), +(53953, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.679+00', '{"cached":null,"ignore_cache":false}'), +(53954, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.847+00', '{"cached":null,"ignore_cache":false}'), +(53955, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:01.889+00', '{"cached":null,"ignore_cache":false}'), +(53956, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.053+00', '{"cached":null,"ignore_cache":false}'), +(53957, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.068+00', '{"cached":null,"ignore_cache":false}'), +(53958, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.366+00', '{"cached":null,"ignore_cache":false}'), +(53959, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.413+00', '{"cached":null,"ignore_cache":false}'), +(53960, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.784+00', '{"cached":null,"ignore_cache":false}'), +(53961, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:02.817+00', '{"cached":null,"ignore_cache":false}'), +(53962, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:03.1+00', '{"cached":null,"ignore_cache":false}'), +(53963, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:03.477+00', '{"cached":null,"ignore_cache":false}'), +(53964, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:03.497+00', '{"cached":null,"ignore_cache":false}'), +(53965, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:03.642+00', '{"cached":null,"ignore_cache":false}'), +(53966, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:03.969+00', '{"cached":null,"ignore_cache":false}'), +(53967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:04.252+00', '{"cached":null,"ignore_cache":false}'), +(53968, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:04.283+00', '{"cached":null,"ignore_cache":false}'), +(53969, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.705+00', '{"cached":null,"ignore_cache":false}'), +(53970, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.803+00', '{"cached":null,"ignore_cache":false}'), +(53971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.894+00', '{"cached":null,"ignore_cache":false}'), +(53972, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.903+00', '{"cached":null,"ignore_cache":false}'), +(53973, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:14.948+00', '{"cached":null,"ignore_cache":false}'), +(53974, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.024+00', '{"cached":null,"ignore_cache":false}'), +(53975, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.025+00', '{"cached":null,"ignore_cache":false}'), +(53976, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.069+00', '{"cached":null,"ignore_cache":false}'), +(53977, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.244+00', '{"cached":null,"ignore_cache":false}'), +(53978, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.298+00', '{"cached":null,"ignore_cache":false}'), +(53979, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.344+00', '{"cached":null,"ignore_cache":false}'), +(53980, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.381+00', '{"cached":null,"ignore_cache":false}'), +(53981, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.459+00', '{"cached":null,"ignore_cache":false}'), +(53982, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.493+00', '{"cached":null,"ignore_cache":false}'), +(53983, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.707+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(53984, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:37:15.898+00', '{"cached":null,"ignore_cache":false}'), +(53985, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.618+00', '{"cached":null,"ignore_cache":false}'), +(53986, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.718+00', '{"cached":null,"ignore_cache":false}'), +(53987, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.756+00', '{"cached":null,"ignore_cache":false}'), +(53988, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.798+00', '{"cached":null,"ignore_cache":false}'), +(53989, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.833+00', '{"cached":null,"ignore_cache":false}'), +(53990, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:16.862+00', '{"cached":null,"ignore_cache":false}'), +(53991, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.456+00', '{"cached":null,"ignore_cache":false}'), +(53992, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.53+00', '{"cached":null,"ignore_cache":false}'), +(53993, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.579+00', '{"cached":null,"ignore_cache":false}'), +(53994, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.682+00', '{"cached":null,"ignore_cache":false}'), +(53995, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.785+00', '{"cached":null,"ignore_cache":false}'), +(53996, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.814+00', '{"cached":null,"ignore_cache":false}'), +(53997, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.852+00', '{"cached":null,"ignore_cache":false}'), +(53998, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:17.891+00', '{"cached":null,"ignore_cache":false}'), +(53999, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:18.218+00', '{"cached":null,"ignore_cache":false}'), +(54000, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:41:18.238+00', '{"cached":null,"ignore_cache":false}'), +(54001, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.533+00', '{"cached":null,"ignore_cache":false}'), +(54002, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.599+00', '{"cached":null,"ignore_cache":false}'), +(54003, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.621+00', '{"cached":null,"ignore_cache":false}'), +(54004, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.634+00', '{"cached":null,"ignore_cache":false}'), +(54005, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.684+00', '{"cached":null,"ignore_cache":false}'), +(54006, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:16.706+00', '{"cached":null,"ignore_cache":false}'), +(54007, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.001+00', '{"cached":null,"ignore_cache":false}'), +(54008, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.11+00', '{"cached":null,"ignore_cache":false}'), +(54009, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.408+00', '{"cached":null,"ignore_cache":false}'), +(54010, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.471+00', '{"cached":null,"ignore_cache":false}'), +(54011, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.654+00', '{"cached":null,"ignore_cache":false}'), +(54012, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.763+00', '{"cached":null,"ignore_cache":false}'), +(54013, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.909+00', '{"cached":null,"ignore_cache":false}'), +(54014, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:18.941+00', '{"cached":null,"ignore_cache":false}'), +(54015, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:19.114+00', '{"cached":null,"ignore_cache":false}'), +(54016, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:42:19.226+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54017, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.805+00', '{"cached":null,"ignore_cache":false}'), +(54018, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.899+00', '{"cached":null,"ignore_cache":false}'), +(54019, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.922+00', '{"cached":null,"ignore_cache":false}'), +(54020, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.936+00', '{"cached":null,"ignore_cache":false}'), +(54021, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:16.97+00', '{"cached":null,"ignore_cache":false}'), +(54022, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.031+00', '{"cached":null,"ignore_cache":false}'), +(54023, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.499+00', '{"cached":null,"ignore_cache":false}'), +(54024, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.704+00', '{"cached":null,"ignore_cache":false}'), +(54025, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.715+00', '{"cached":null,"ignore_cache":false}'), +(54026, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.725+00', '{"cached":null,"ignore_cache":false}'), +(54027, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.957+00', '{"cached":null,"ignore_cache":false}'), +(54028, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.965+00', '{"cached":null,"ignore_cache":false}'), +(54029, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:17.985+00', '{"cached":null,"ignore_cache":false}'), +(54030, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:18.032+00', '{"cached":null,"ignore_cache":false}'), +(54031, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:18.185+00', '{"cached":null,"ignore_cache":false}'), +(54032, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:46:18.245+00', '{"cached":null,"ignore_cache":false}'), +(54033, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.291+00', '{"cached":null,"ignore_cache":false}'), +(54034, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.558+00', '{"cached":null,"ignore_cache":false}'), +(54035, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.573+00', '{"cached":null,"ignore_cache":false}'), +(54036, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.597+00', '{"cached":null,"ignore_cache":false}'), +(54037, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:32.814+00', '{"cached":null,"ignore_cache":false}'), +(54038, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.273+00', '{"cached":null,"ignore_cache":false}'), +(54039, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.354+00', '{"cached":null,"ignore_cache":false}'), +(54040, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.865+00', '{"cached":null,"ignore_cache":false}'), +(54041, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:33.933+00', '{"cached":null,"ignore_cache":false}'), +(54042, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:34.124+00', '{"cached":null,"ignore_cache":false}'), +(54043, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:34.235+00', '{"cached":null,"ignore_cache":false}'), +(54044, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:34.357+00', '{"cached":null,"ignore_cache":false}'), +(54045, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:34.389+00', '{"cached":null,"ignore_cache":false}'), +(54046, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:34.627+00', '{"cached":null,"ignore_cache":false}'), +(54047, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:34.868+00', '{"cached":null,"ignore_cache":false}'), +(54048, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:34.959+00', '{"cached":null,"ignore_cache":false}'), +(54049, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.711+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54050, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.748+00', '{"cached":null,"ignore_cache":false}'), +(54051, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.774+00', '{"cached":null,"ignore_cache":false}'), +(54052, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.839+00', '{"cached":null,"ignore_cache":false}'), +(54053, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.863+00', '{"cached":null,"ignore_cache":false}'), +(54054, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:40.889+00', '{"cached":null,"ignore_cache":false}'), +(54055, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:44.688+00', '{"cached":null,"ignore_cache":false}'), +(54056, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.072+00', '{"cached":null,"ignore_cache":false}'), +(54057, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.132+00', '{"cached":null,"ignore_cache":false}'), +(54058, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.194+00', '{"cached":null,"ignore_cache":false}'), +(54059, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.275+00', '{"cached":null,"ignore_cache":false}'), +(54060, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.276+00', '{"cached":null,"ignore_cache":false}'), +(54061, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.292+00', '{"cached":null,"ignore_cache":false}'), +(54062, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.409+00', '{"cached":null,"ignore_cache":false}'), +(54063, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.61+00', '{"cached":null,"ignore_cache":false}'), +(54064, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:45.631+00', '{"cached":null,"ignore_cache":false}'), +(54065, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.422+00', '{"cached":null,"ignore_cache":false}'), +(54066, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.449+00', '{"cached":null,"ignore_cache":false}'), +(54067, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.536+00', '{"cached":null,"ignore_cache":false}'), +(54068, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.539+00', '{"cached":null,"ignore_cache":false}'), +(54069, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.547+00', '{"cached":null,"ignore_cache":false}'), +(54070, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.599+00', '{"cached":null,"ignore_cache":false}'), +(54071, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:48.949+00', '{"cached":null,"ignore_cache":false}'), +(54072, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:49.037+00', '{"cached":null,"ignore_cache":false}'), +(54073, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:49.112+00', '{"cached":null,"ignore_cache":false}'), +(54074, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:49.123+00', '{"cached":null,"ignore_cache":false}'), +(54075, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:49.137+00', '{"cached":null,"ignore_cache":false}'), +(54076, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:48:49.155+00', '{"cached":null,"ignore_cache":false}'), +(54077, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.849+00', '{"cached":null,"ignore_cache":false}'), +(54078, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.906+00', '{"cached":null,"ignore_cache":false}'), +(54079, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.918+00', '{"cached":null,"ignore_cache":false}'), +(54080, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.961+00', '{"cached":null,"ignore_cache":false}'), +(54081, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:48.981+00', '{"cached":null,"ignore_cache":false}'), +(54082, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.081+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54083, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.574+00', '{"cached":null,"ignore_cache":false}'), +(54084, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.589+00', '{"cached":null,"ignore_cache":false}'), +(54085, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.592+00', '{"cached":null,"ignore_cache":false}'), +(54086, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.612+00', '{"cached":null,"ignore_cache":false}'), +(54087, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.657+00', '{"cached":null,"ignore_cache":false}'), +(54088, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:49.671+00', '{"cached":null,"ignore_cache":false}'), +(54089, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.489+00', '{"cached":null,"ignore_cache":false}'), +(54090, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.603+00', '{"cached":null,"ignore_cache":false}'), +(54091, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.761+00', '{"cached":null,"ignore_cache":false}'), +(54092, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.904+00', '{"cached":null,"ignore_cache":false}'), +(54093, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.911+00', '{"cached":null,"ignore_cache":false}'), +(54094, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.953+00', '{"cached":null,"ignore_cache":false}'), +(54095, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:56.993+00', '{"cached":null,"ignore_cache":false}'), +(54096, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.115+00', '{"cached":null,"ignore_cache":false}'), +(54097, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.135+00', '{"cached":null,"ignore_cache":false}'), +(54098, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.265+00', '{"cached":null,"ignore_cache":false}'), +(54099, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.561+00', '{"cached":null,"ignore_cache":false}'), +(54100, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:57.933+00', '{"cached":null,"ignore_cache":false}'), +(54101, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:58.146+00', '{"cached":null,"ignore_cache":false}'), +(54102, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:58.169+00', '{"cached":null,"ignore_cache":false}'), +(54103, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:58.178+00', '{"cached":null,"ignore_cache":false}'), +(54104, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:58.303+00', '{"cached":null,"ignore_cache":false}'), +(54105, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:58.312+00', '{"cached":null,"ignore_cache":false}'), +(54106, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:58.715+00', '{"cached":null,"ignore_cache":false}'), +(54107, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:51:58.73+00', '{"cached":null,"ignore_cache":false}'), +(54108, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:33.84+00', '{"cached":null,"ignore_cache":false}'), +(54109, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.228+00', '{"cached":null,"ignore_cache":false}'), +(54110, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.246+00', '{"cached":null,"ignore_cache":false}'), +(54111, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.263+00', '{"cached":null,"ignore_cache":false}'), +(54112, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.344+00', '{"cached":null,"ignore_cache":false}'), +(54113, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:34.432+00', '{"cached":null,"ignore_cache":false}'), +(54114, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.068+00', '{"cached":null,"ignore_cache":false}'), +(54115, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.1+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54116, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.119+00', '{"cached":null,"ignore_cache":false}'), +(54117, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.438+00', '{"cached":null,"ignore_cache":false}'), +(54118, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:35.969+00', '{"cached":null,"ignore_cache":false}'), +(54119, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:36.033+00', '{"cached":null,"ignore_cache":false}'), +(54120, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:36.234+00', '{"cached":null,"ignore_cache":false}'), +(54121, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:36.392+00', '{"cached":null,"ignore_cache":false}'), +(54122, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:36.581+00', '{"cached":null,"ignore_cache":false}'), +(54123, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:37.063+00', '{"cached":null,"ignore_cache":false}'), +(54124, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:37.141+00', '{"cached":null,"ignore_cache":false}'), +(54125, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.833+00', '{"cached":null,"ignore_cache":false}'), +(54126, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.836+00', '{"cached":null,"ignore_cache":false}'), +(54127, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.854+00', '{"cached":null,"ignore_cache":false}'), +(54128, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.87+00', '{"cached":null,"ignore_cache":false}'), +(54129, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.878+00', '{"cached":null,"ignore_cache":false}'), +(54130, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:40.946+00', '{"cached":null,"ignore_cache":false}'), +(54131, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:44.701+00', '{"cached":null,"ignore_cache":false}'), +(54132, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.003+00', '{"cached":null,"ignore_cache":false}'), +(54133, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.175+00', '{"cached":null,"ignore_cache":false}'), +(54134, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.25+00', '{"cached":null,"ignore_cache":false}'), +(54135, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.294+00', '{"cached":null,"ignore_cache":false}'), +(54136, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.314+00', '{"cached":null,"ignore_cache":false}'), +(54137, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.383+00', '{"cached":null,"ignore_cache":false}'), +(54138, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.393+00', '{"cached":null,"ignore_cache":false}'), +(54139, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.597+00', '{"cached":null,"ignore_cache":false}'), +(54140, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:53:45.634+00', '{"cached":null,"ignore_cache":false}'), +(54141, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.598+00', '{"cached":null,"ignore_cache":false}'), +(54142, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.693+00', '{"cached":null,"ignore_cache":false}'), +(54143, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.737+00', '{"cached":null,"ignore_cache":false}'), +(54144, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.9+00', '{"cached":null,"ignore_cache":false}'), +(54145, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.931+00', '{"cached":null,"ignore_cache":false}'), +(54146, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:07.943+00', '{"cached":null,"ignore_cache":false}'), +(54147, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.008+00', '{"cached":null,"ignore_cache":false}'), +(54148, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.034+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54149, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.093+00', '{"cached":null,"ignore_cache":false}'), +(54150, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.284+00', '{"cached":null,"ignore_cache":false}'), +(54151, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.667+00', '{"cached":null,"ignore_cache":false}'), +(54152, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.72+00', '{"cached":null,"ignore_cache":false}'), +(54153, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.785+00', '{"cached":null,"ignore_cache":false}'), +(54154, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:08.906+00', '{"cached":null,"ignore_cache":false}'), +(54155, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.353+00', '{"cached":null,"ignore_cache":false}'), +(54156, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.367+00', '{"cached":null,"ignore_cache":false}'), +(54157, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.391+00', '{"cached":null,"ignore_cache":false}'), +(54158, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.433+00', '{"cached":null,"ignore_cache":false}'), +(54159, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.517+00', '{"cached":null,"ignore_cache":false}'), +(54160, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.811+00', '{"cached":null,"ignore_cache":false}'), +(54161, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.875+00', '{"cached":null,"ignore_cache":false}'), +(54162, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:09.889+00', '{"cached":null,"ignore_cache":false}'), +(54163, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:10.046+00', '{"cached":null,"ignore_cache":false}'), +(54164, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:10.098+00', '{"cached":null,"ignore_cache":false}'), +(54165, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:10.224+00', '{"cached":null,"ignore_cache":false}'), +(54166, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:10.455+00', '{"cached":null,"ignore_cache":false}'), +(54167, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:10.734+00', '{"cached":null,"ignore_cache":false}'), +(54168, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.738+00', '{"cached":null,"ignore_cache":false}'), +(54169, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.773+00', '{"cached":null,"ignore_cache":false}'), +(54170, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:50.967+00', '{"cached":null,"ignore_cache":false}'), +(54171, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.192+00', '{"cached":null,"ignore_cache":false}'), +(54172, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.221+00', '{"cached":null,"ignore_cache":false}'), +(54173, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.266+00', '{"cached":null,"ignore_cache":false}'), +(54174, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.317+00', '{"cached":null,"ignore_cache":false}'), +(54175, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.387+00', '{"cached":null,"ignore_cache":false}'), +(54176, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.441+00', '{"cached":null,"ignore_cache":false}'), +(54177, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.544+00', '{"cached":null,"ignore_cache":false}'), +(54178, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:51.615+00', '{"cached":null,"ignore_cache":false}'), +(54179, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.157+00', '{"cached":null,"ignore_cache":false}'), +(54180, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.177+00', '{"cached":null,"ignore_cache":false}'), +(54181, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.219+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54182, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.24+00', '{"cached":null,"ignore_cache":false}'), +(54183, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.873+00', '{"cached":null,"ignore_cache":false}'), +(54184, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:52.906+00', '{"cached":null,"ignore_cache":false}'), +(54185, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.029+00', '{"cached":null,"ignore_cache":false}'), +(54186, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.198+00', '{"cached":null,"ignore_cache":false}'), +(54187, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.221+00', '{"cached":null,"ignore_cache":false}'), +(54188, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.272+00', '{"cached":null,"ignore_cache":false}'), +(54189, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.328+00', '{"cached":null,"ignore_cache":false}'), +(54190, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.502+00', '{"cached":null,"ignore_cache":false}'), +(54191, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.848+00', '{"cached":null,"ignore_cache":false}'), +(54192, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.851+00', '{"cached":null,"ignore_cache":false}'), +(54193, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:53.888+00', '{"cached":null,"ignore_cache":false}'), +(54194, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:54.002+00', '{"cached":null,"ignore_cache":false}'), +(54195, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:54.12+00', '{"cached":null,"ignore_cache":false}'), +(54196, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:54.138+00', '{"cached":null,"ignore_cache":false}'), +(54197, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:54.61+00', '{"cached":null,"ignore_cache":false}'), +(54198, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:54:54.725+00', '{"cached":null,"ignore_cache":false}'), +(54199, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.271+00', '{"cached":null,"ignore_cache":false}'), +(54200, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.28+00', '{"cached":null,"ignore_cache":false}'), +(54201, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.354+00', '{"cached":null,"ignore_cache":false}'), +(54202, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.419+00', '{"cached":null,"ignore_cache":false}'), +(54203, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.439+00', '{"cached":null,"ignore_cache":false}'), +(54204, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.489+00', '{"cached":null,"ignore_cache":false}'), +(54205, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.508+00', '{"cached":null,"ignore_cache":false}'), +(54206, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.545+00', '{"cached":null,"ignore_cache":false}'), +(54207, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.665+00', '{"cached":null,"ignore_cache":false}'), +(54208, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.872+00', '{"cached":null,"ignore_cache":false}'), +(54209, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:16.951+00', '{"cached":null,"ignore_cache":false}'), +(54210, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17+00', '{"cached":null,"ignore_cache":false}'), +(54211, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.347+00', '{"cached":null,"ignore_cache":false}'), +(54212, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.419+00', '{"cached":null,"ignore_cache":false}'), +(54213, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.502+00', '{"cached":null,"ignore_cache":false}'), +(54214, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.52+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54215, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.575+00', '{"cached":null,"ignore_cache":false}'), +(54216, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.644+00', '{"cached":null,"ignore_cache":false}'), +(54217, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.888+00', '{"cached":null,"ignore_cache":false}'), +(54218, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:17.944+00', '{"cached":null,"ignore_cache":false}'), +(54219, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:55:18.023+00', '{"cached":null,"ignore_cache":false}'), +(54220, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.439+00', '{"cached":null,"ignore_cache":false}'), +(54221, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.495+00', '{"cached":null,"ignore_cache":false}'), +(54222, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.571+00', '{"cached":null,"ignore_cache":false}'), +(54223, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.577+00', '{"cached":null,"ignore_cache":false}'), +(54224, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.591+00', '{"cached":null,"ignore_cache":false}'), +(54225, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.652+00', '{"cached":null,"ignore_cache":false}'), +(54226, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:11.743+00', '{"cached":null,"ignore_cache":false}'), +(54227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.02+00', '{"cached":null,"ignore_cache":false}'), +(54228, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.134+00', '{"cached":null,"ignore_cache":false}'), +(54229, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.178+00', '{"cached":null,"ignore_cache":false}'), +(54230, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.275+00', '{"cached":null,"ignore_cache":false}'), +(54231, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.297+00', '{"cached":null,"ignore_cache":false}'), +(54232, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.317+00', '{"cached":null,"ignore_cache":false}'), +(54233, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.318+00', '{"cached":null,"ignore_cache":false}'), +(54234, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.526+00', '{"cached":null,"ignore_cache":false}'), +(54235, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:56:12.661+00', '{"cached":null,"ignore_cache":false}'), +(54236, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.713+00', '{"cached":null,"ignore_cache":false}'), +(54237, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.747+00', '{"cached":null,"ignore_cache":false}'), +(54238, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.782+00', '{"cached":null,"ignore_cache":false}'), +(54239, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.812+00', '{"cached":null,"ignore_cache":false}'), +(54240, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.836+00', '{"cached":null,"ignore_cache":false}'), +(54241, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:41.865+00', '{"cached":null,"ignore_cache":false}'), +(54242, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.724+00', '{"cached":null,"ignore_cache":false}'), +(54243, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.878+00', '{"cached":null,"ignore_cache":false}'), +(54244, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:46.943+00', '{"cached":null,"ignore_cache":false}'), +(54245, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:47.192+00', '{"cached":null,"ignore_cache":false}'), +(54246, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:47.195+00', '{"cached":null,"ignore_cache":false}'), +(54247, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:47.255+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:47.274+00', '{"cached":null,"ignore_cache":false}'), +(54249, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:47.327+00', '{"cached":null,"ignore_cache":false}'), +(54250, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:47.603+00', '{"cached":null,"ignore_cache":false}'), +(54251, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 13:58:47.671+00', '{"cached":null,"ignore_cache":false}'), +(54252, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.183+00', '{"cached":null,"ignore_cache":false}'), +(54253, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.186+00', '{"cached":null,"ignore_cache":false}'), +(54254, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.22+00', '{"cached":null,"ignore_cache":false}'), +(54255, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.241+00', '{"cached":null,"ignore_cache":false}'), +(54256, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.259+00', '{"cached":null,"ignore_cache":false}'), +(54257, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.289+00', '{"cached":null,"ignore_cache":false}'), +(54258, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:40.903+00', '{"cached":null,"ignore_cache":false}'), +(54259, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.044+00', '{"cached":null,"ignore_cache":false}'), +(54260, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.305+00', '{"cached":null,"ignore_cache":false}'), +(54261, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.347+00', '{"cached":null,"ignore_cache":false}'), +(54262, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.362+00', '{"cached":null,"ignore_cache":false}'), +(54263, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.542+00', '{"cached":null,"ignore_cache":false}'), +(54264, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.646+00', '{"cached":null,"ignore_cache":false}'), +(54265, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:41.939+00', '{"cached":null,"ignore_cache":false}'), +(54266, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.117+00', '{"cached":null,"ignore_cache":false}'), +(54267, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.188+00', '{"cached":null,"ignore_cache":false}'), +(54268, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.249+00', '{"cached":null,"ignore_cache":false}'), +(54269, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.261+00', '{"cached":null,"ignore_cache":false}'), +(54270, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.33+00', '{"cached":null,"ignore_cache":false}'), +(54271, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.446+00', '{"cached":null,"ignore_cache":false}'), +(54272, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.681+00', '{"cached":null,"ignore_cache":false}'), +(54273, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.705+00', '{"cached":null,"ignore_cache":false}'), +(54274, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:42.827+00', '{"cached":null,"ignore_cache":false}'), +(54275, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:43.163+00', '{"cached":null,"ignore_cache":false}'), +(54276, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:43.169+00', '{"cached":null,"ignore_cache":false}'), +(54277, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:43.33+00', '{"cached":null,"ignore_cache":false}'), +(54278, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:43.348+00', '{"cached":null,"ignore_cache":false}'), +(54279, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:43.398+00', '{"cached":null,"ignore_cache":false}'), +(54280, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:43.42+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54281, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:43.805+00', '{"cached":null,"ignore_cache":false}'), +(54282, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:44.083+00', '{"cached":null,"ignore_cache":false}'), +(54283, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:02:44.089+00', '{"cached":null,"ignore_cache":false}'), +(54284, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.232+00', '{"cached":null,"ignore_cache":false}'), +(54285, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.445+00', '{"cached":null,"ignore_cache":false}'), +(54286, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.505+00', '{"cached":null,"ignore_cache":false}'), +(54287, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.596+00', '{"cached":null,"ignore_cache":false}'), +(54288, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.618+00', '{"cached":null,"ignore_cache":false}'), +(54289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.66+00', '{"cached":null,"ignore_cache":false}'), +(54290, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.691+00', '{"cached":null,"ignore_cache":false}'), +(54291, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.74+00', '{"cached":null,"ignore_cache":false}'), +(54292, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:17.938+00', '{"cached":null,"ignore_cache":false}'), +(54293, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:03:18.072+00', '{"cached":null,"ignore_cache":false}'), +(54294, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.64+00', '{"cached":null,"ignore_cache":false}'), +(54295, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.681+00', '{"cached":null,"ignore_cache":false}'), +(54296, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.694+00', '{"cached":null,"ignore_cache":false}'), +(54297, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.749+00', '{"cached":null,"ignore_cache":false}'), +(54298, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.792+00', '{"cached":null,"ignore_cache":false}'), +(54299, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:14.81+00', '{"cached":null,"ignore_cache":false}'), +(54300, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.639+00', '{"cached":null,"ignore_cache":false}'), +(54301, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:24.907+00', '{"cached":null,"ignore_cache":false}'), +(54302, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.088+00', '{"cached":null,"ignore_cache":false}'), +(54303, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.217+00', '{"cached":null,"ignore_cache":false}'), +(54304, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.232+00', '{"cached":null,"ignore_cache":false}'), +(54305, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.256+00', '{"cached":null,"ignore_cache":false}'), +(54306, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.27+00', '{"cached":null,"ignore_cache":false}'), +(54307, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.299+00', '{"cached":null,"ignore_cache":false}'), +(54308, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.597+00', '{"cached":null,"ignore_cache":false}'), +(54309, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:04:25.65+00', '{"cached":null,"ignore_cache":false}'), +(54310, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:09.98+00', '{"cached":null,"ignore_cache":false}'), +(54311, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.124+00', '{"cached":null,"ignore_cache":false}'), +(54312, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.209+00', '{"cached":null,"ignore_cache":false}'), +(54313, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:10.263+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54314, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.244+00', '{"cached":null,"ignore_cache":false}'), +(54315, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.272+00', '{"cached":null,"ignore_cache":false}'), +(54316, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.278+00', '{"cached":null,"ignore_cache":false}'), +(54317, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.471+00', '{"cached":null,"ignore_cache":false}'), +(54318, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.495+00', '{"cached":null,"ignore_cache":false}'), +(54319, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:11.505+00', '{"cached":null,"ignore_cache":false}'), +(54320, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.28+00', '{"cached":null,"ignore_cache":false}'), +(54321, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.402+00', '{"cached":null,"ignore_cache":false}'), +(54322, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.62+00', '{"cached":null,"ignore_cache":false}'), +(54323, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.726+00', '{"cached":null,"ignore_cache":false}'), +(54324, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.776+00', '{"cached":null,"ignore_cache":false}'), +(54325, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:12.968+00', '{"cached":null,"ignore_cache":false}'), +(54326, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.026+00', '{"cached":null,"ignore_cache":false}'), +(54327, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.061+00', '{"cached":null,"ignore_cache":false}'), +(54328, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.166+00', '{"cached":null,"ignore_cache":false}'), +(54329, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.293+00', '{"cached":null,"ignore_cache":false}'), +(54330, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.414+00', '{"cached":null,"ignore_cache":false}'), +(54331, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.63+00', '{"cached":null,"ignore_cache":false}'), +(54332, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:13.86+00', '{"cached":null,"ignore_cache":false}'), +(54333, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.101+00', '{"cached":null,"ignore_cache":false}'), +(54334, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.126+00', '{"cached":null,"ignore_cache":false}'), +(54335, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.16+00', '{"cached":null,"ignore_cache":false}'), +(54336, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.173+00', '{"cached":null,"ignore_cache":false}'), +(54337, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.372+00', '{"cached":null,"ignore_cache":false}'), +(54338, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.625+00', '{"cached":null,"ignore_cache":false}'), +(54339, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:14.769+00', '{"cached":null,"ignore_cache":false}'), +(54340, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.753+00', '{"cached":null,"ignore_cache":false}'), +(54341, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.899+00', '{"cached":null,"ignore_cache":false}'), +(54342, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:31.997+00', '{"cached":null,"ignore_cache":false}'), +(54343, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.126+00', '{"cached":null,"ignore_cache":false}'), +(54344, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.469+00', '{"cached":null,"ignore_cache":false}'), +(54345, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.472+00', '{"cached":null,"ignore_cache":false}'), +(54346, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:32.824+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54347, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:33.313+00', '{"cached":null,"ignore_cache":false}'), +(54348, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:33.42+00', '{"cached":null,"ignore_cache":false}'), +(54349, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:33.473+00', '{"cached":null,"ignore_cache":false}'), +(54350, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:33.579+00', '{"cached":null,"ignore_cache":false}'), +(54351, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:33.804+00', '{"cached":null,"ignore_cache":false}'), +(54352, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:33.841+00', '{"cached":null,"ignore_cache":false}'), +(54353, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:33.96+00', '{"cached":null,"ignore_cache":false}'), +(54354, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:34.077+00', '{"cached":null,"ignore_cache":false}'), +(54355, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:34.269+00', '{"cached":null,"ignore_cache":false}'), +(54356, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:34.503+00', '{"cached":null,"ignore_cache":false}'), +(54357, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.331+00', '{"cached":null,"ignore_cache":false}'), +(54358, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.535+00', '{"cached":null,"ignore_cache":false}'), +(54359, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.58+00', '{"cached":null,"ignore_cache":false}'), +(54360, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:46.623+00', '{"cached":null,"ignore_cache":false}'), +(54361, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.225+00', '{"cached":null,"ignore_cache":false}'), +(54362, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.38+00', '{"cached":null,"ignore_cache":false}'), +(54363, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.535+00', '{"cached":null,"ignore_cache":false}'), +(54364, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.536+00', '{"cached":null,"ignore_cache":false}'), +(54365, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:47.786+00', '{"cached":null,"ignore_cache":false}'), +(54366, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.163+00', '{"cached":null,"ignore_cache":false}'), +(54367, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.198+00', '{"cached":null,"ignore_cache":false}'), +(54368, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.206+00', '{"cached":null,"ignore_cache":false}'), +(54369, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.636+00', '{"cached":null,"ignore_cache":false}'), +(54370, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.718+00', '{"cached":null,"ignore_cache":false}'), +(54371, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.777+00', '{"cached":null,"ignore_cache":false}'), +(54372, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:48.945+00', '{"cached":null,"ignore_cache":false}'), +(54373, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:49.221+00', '{"cached":null,"ignore_cache":false}'), +(54374, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:49.254+00', '{"cached":null,"ignore_cache":false}'), +(54375, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:49.437+00', '{"cached":null,"ignore_cache":false}'), +(54376, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:49.791+00', '{"cached":null,"ignore_cache":false}'), +(54377, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:49.829+00', '{"cached":null,"ignore_cache":false}'), +(54378, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.108+00', '{"cached":null,"ignore_cache":false}'), +(54379, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.123+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54380, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.175+00', '{"cached":null,"ignore_cache":false}'), +(54381, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.211+00', '{"cached":null,"ignore_cache":false}'), +(54382, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.312+00', '{"cached":null,"ignore_cache":false}'), +(54383, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.348+00', '{"cached":null,"ignore_cache":false}'), +(54384, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.357+00', '{"cached":null,"ignore_cache":false}'), +(54385, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:05:50.483+00', '{"cached":null,"ignore_cache":false}'), +(54386, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.461+00', '{"cached":null,"ignore_cache":false}'), +(54387, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.563+00', '{"cached":null,"ignore_cache":false}'), +(54388, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.621+00', '{"cached":null,"ignore_cache":false}'), +(54389, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.792+00', '{"cached":null,"ignore_cache":false}'), +(54390, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.83+00', '{"cached":null,"ignore_cache":false}'), +(54391, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.842+00', '{"cached":null,"ignore_cache":false}'), +(54392, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.868+00', '{"cached":null,"ignore_cache":false}'), +(54393, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.871+00', '{"cached":null,"ignore_cache":false}'), +(54394, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:19.91+00', '{"cached":null,"ignore_cache":false}'), +(54395, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.219+00', '{"cached":null,"ignore_cache":false}'), +(54396, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.295+00', '{"cached":null,"ignore_cache":false}'), +(54397, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.387+00', '{"cached":null,"ignore_cache":false}'), +(54398, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.625+00', '{"cached":null,"ignore_cache":false}'), +(54399, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.669+00', '{"cached":null,"ignore_cache":false}'), +(54400, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:20.961+00', '{"cached":null,"ignore_cache":false}'), +(54401, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.142+00', '{"cached":null,"ignore_cache":false}'), +(54402, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.16+00', '{"cached":null,"ignore_cache":false}'), +(54403, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.17+00', '{"cached":null,"ignore_cache":false}'), +(54404, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.401+00', '{"cached":null,"ignore_cache":false}'), +(54405, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.611+00', '{"cached":null,"ignore_cache":false}'), +(54406, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.708+00', '{"cached":null,"ignore_cache":false}'), +(54407, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.713+00', '{"cached":null,"ignore_cache":false}'), +(54408, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.785+00', '{"cached":null,"ignore_cache":false}'), +(54409, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.818+00', '{"cached":null,"ignore_cache":false}'), +(54410, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.855+00', '{"cached":null,"ignore_cache":false}'), +(54411, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:21.895+00', '{"cached":null,"ignore_cache":false}'), +(54412, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.133+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54413, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.142+00', '{"cached":null,"ignore_cache":false}'), +(54414, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.435+00', '{"cached":null,"ignore_cache":false}'), +(54415, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.536+00', '{"cached":null,"ignore_cache":false}'), +(54416, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.545+00', '{"cached":null,"ignore_cache":false}'), +(54417, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:22.553+00', '{"cached":null,"ignore_cache":false}'), +(54418, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.037+00', '{"cached":null,"ignore_cache":false}'), +(54419, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.232+00', '{"cached":null,"ignore_cache":false}'), +(54420, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.333+00', '{"cached":null,"ignore_cache":false}'), +(54421, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.403+00', '{"cached":null,"ignore_cache":false}'), +(54422, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.499+00', '{"cached":null,"ignore_cache":false}'), +(54423, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.554+00', '{"cached":null,"ignore_cache":false}'), +(54424, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.572+00', '{"cached":null,"ignore_cache":false}'), +(54425, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.661+00', '{"cached":null,"ignore_cache":false}'), +(54426, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.678+00', '{"cached":null,"ignore_cache":false}'), +(54427, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.722+00', '{"cached":null,"ignore_cache":false}'), +(54428, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:54.754+00', '{"cached":null,"ignore_cache":false}'), +(54429, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.18+00', '{"cached":null,"ignore_cache":false}'), +(54430, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.189+00', '{"cached":null,"ignore_cache":false}'), +(54431, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.258+00', '{"cached":null,"ignore_cache":false}'), +(54432, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.278+00', '{"cached":null,"ignore_cache":false}'), +(54433, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.378+00', '{"cached":null,"ignore_cache":false}'), +(54434, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.389+00', '{"cached":null,"ignore_cache":false}'), +(54435, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.561+00', '{"cached":null,"ignore_cache":false}'), +(54436, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.837+00', '{"cached":null,"ignore_cache":false}'), +(54437, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:06:55.903+00', '{"cached":null,"ignore_cache":false}'), +(54438, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.276+00', '{"cached":null,"ignore_cache":false}'), +(54439, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.294+00', '{"cached":null,"ignore_cache":false}'), +(54440, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.393+00', '{"cached":null,"ignore_cache":false}'), +(54441, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.397+00', '{"cached":null,"ignore_cache":false}'), +(54442, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.431+00', '{"cached":null,"ignore_cache":false}'), +(54443, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.441+00', '{"cached":null,"ignore_cache":false}'), +(54444, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.689+00', '{"cached":null,"ignore_cache":false}'), +(54445, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.705+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54446, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.922+00', '{"cached":null,"ignore_cache":false}'), +(54447, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.951+00', '{"cached":null,"ignore_cache":false}'), +(54448, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:05.96+00', '{"cached":null,"ignore_cache":false}'), +(54449, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:06.026+00', '{"cached":null,"ignore_cache":false}'), +(54450, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.168+00', '{"cached":null,"ignore_cache":false}'), +(54451, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.217+00', '{"cached":null,"ignore_cache":false}'), +(54452, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.361+00', '{"cached":null,"ignore_cache":false}'), +(54453, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.415+00', '{"cached":null,"ignore_cache":false}'), +(54454, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.495+00', '{"cached":null,"ignore_cache":false}'), +(54455, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.497+00', '{"cached":null,"ignore_cache":false}'), +(54456, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.591+00', '{"cached":null,"ignore_cache":false}'), +(54457, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.611+00', '{"cached":null,"ignore_cache":false}'), +(54458, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.861+00', '{"cached":null,"ignore_cache":false}'), +(54459, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:54.996+00', '{"cached":null,"ignore_cache":false}'), +(54460, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:55.199+00', '{"cached":null,"ignore_cache":false}'), +(54461, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:55.267+00', '{"cached":null,"ignore_cache":false}'), +(54462, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:55.279+00', '{"cached":null,"ignore_cache":false}'), +(54463, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:55.305+00', '{"cached":null,"ignore_cache":false}'), +(54464, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:55.322+00', '{"cached":null,"ignore_cache":false}'), +(54465, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:07:55.362+00', '{"cached":null,"ignore_cache":false}'), +(54466, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:36.941+00', '{"cached":null,"ignore_cache":false}'), +(54467, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.033+00', '{"cached":null,"ignore_cache":false}'), +(54468, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.174+00', '{"cached":null,"ignore_cache":false}'), +(54469, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:37.775+00', '{"cached":null,"ignore_cache":false}'), +(54470, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.004+00', '{"cached":null,"ignore_cache":false}'), +(54471, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.035+00', '{"cached":null,"ignore_cache":false}'), +(54472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.035+00', '{"cached":null,"ignore_cache":false}'), +(54473, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.079+00', '{"cached":null,"ignore_cache":false}'), +(54474, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.187+00', '{"cached":null,"ignore_cache":false}'), +(54475, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.517+00', '{"cached":null,"ignore_cache":false}'), +(54476, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.532+00', '{"cached":null,"ignore_cache":false}'), +(54477, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.613+00', '{"cached":null,"ignore_cache":false}'), +(54478, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.781+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54479, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.782+00', '{"cached":null,"ignore_cache":false}'), +(54480, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:38.951+00', '{"cached":null,"ignore_cache":false}'), +(54481, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.077+00', '{"cached":null,"ignore_cache":false}'), +(54482, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.38+00', '{"cached":null,"ignore_cache":false}'), +(54483, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.422+00', '{"cached":null,"ignore_cache":false}'), +(54484, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.531+00', '{"cached":null,"ignore_cache":false}'), +(54485, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.622+00', '{"cached":null,"ignore_cache":false}'), +(54486, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.644+00', '{"cached":null,"ignore_cache":false}'), +(54487, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.772+00', '{"cached":null,"ignore_cache":false}'), +(54488, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.829+00', '{"cached":null,"ignore_cache":false}'), +(54489, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:39.837+00', '{"cached":null,"ignore_cache":false}'), +(54490, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:40.294+00', '{"cached":null,"ignore_cache":false}'), +(54491, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:40.335+00', '{"cached":null,"ignore_cache":false}'), +(54492, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:40.341+00', '{"cached":null,"ignore_cache":false}'), +(54493, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:40.473+00', '{"cached":null,"ignore_cache":false}'), +(54494, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:40.491+00', '{"cached":null,"ignore_cache":false}'), +(54495, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:08:40.544+00', '{"cached":null,"ignore_cache":false}'), +(54496, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.448+00', '{"cached":null,"ignore_cache":false}'), +(54497, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.473+00', '{"cached":null,"ignore_cache":false}'), +(54498, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.533+00', '{"cached":null,"ignore_cache":false}'), +(54499, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.563+00', '{"cached":null,"ignore_cache":false}'), +(54500, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.581+00', '{"cached":null,"ignore_cache":false}'), +(54501, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:14.636+00', '{"cached":null,"ignore_cache":false}'), +(54502, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.834+00', '{"cached":null,"ignore_cache":false}'), +(54503, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:24.917+00', '{"cached":null,"ignore_cache":false}'), +(54504, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.012+00', '{"cached":null,"ignore_cache":false}'), +(54505, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.087+00', '{"cached":null,"ignore_cache":false}'), +(54506, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.104+00', '{"cached":null,"ignore_cache":false}'), +(54507, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.225+00', '{"cached":null,"ignore_cache":false}'), +(54508, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.271+00', '{"cached":null,"ignore_cache":false}'), +(54509, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.299+00', '{"cached":null,"ignore_cache":false}'), +(54510, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.485+00', '{"cached":null,"ignore_cache":false}'), +(54511, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:09:25.683+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54512, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:07.98+00', '{"cached":null,"ignore_cache":false}'), +(54513, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.021+00', '{"cached":null,"ignore_cache":false}'), +(54514, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.025+00', '{"cached":null,"ignore_cache":false}'), +(54515, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.084+00', '{"cached":null,"ignore_cache":false}'), +(54516, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.141+00', '{"cached":null,"ignore_cache":false}'), +(54517, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.156+00', '{"cached":null,"ignore_cache":false}'), +(54518, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.458+00', '{"cached":null,"ignore_cache":false}'), +(54519, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.476+00', '{"cached":null,"ignore_cache":false}'), +(54520, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:08.69+00', '{"cached":null,"ignore_cache":false}'), +(54521, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.019+00', '{"cached":null,"ignore_cache":false}'), +(54522, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.065+00', '{"cached":null,"ignore_cache":false}'), +(54523, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.073+00', '{"cached":null,"ignore_cache":false}'), +(54524, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.147+00', '{"cached":null,"ignore_cache":false}'), +(54525, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.177+00', '{"cached":null,"ignore_cache":false}'), +(54526, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.409+00', '{"cached":null,"ignore_cache":false}'), +(54527, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.489+00', '{"cached":null,"ignore_cache":false}'), +(54528, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.743+00', '{"cached":null,"ignore_cache":false}'), +(54529, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:09.849+00', '{"cached":null,"ignore_cache":false}'), +(54530, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.075+00', '{"cached":null,"ignore_cache":false}'), +(54531, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.258+00', '{"cached":null,"ignore_cache":false}'), +(54532, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.569+00', '{"cached":null,"ignore_cache":false}'), +(54533, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.696+00', '{"cached":null,"ignore_cache":false}'), +(54534, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.801+00', '{"cached":null,"ignore_cache":false}'), +(54535, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.867+00', '{"cached":null,"ignore_cache":false}'), +(54536, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.919+00', '{"cached":null,"ignore_cache":false}'), +(54537, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:10.961+00', '{"cached":null,"ignore_cache":false}'), +(54538, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:11.386+00', '{"cached":null,"ignore_cache":false}'), +(54539, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:11.429+00', '{"cached":null,"ignore_cache":false}'), +(54540, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:36.863+00', '{"cached":null,"ignore_cache":false}'), +(54541, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.189+00', '{"cached":null,"ignore_cache":false}'), +(54542, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.198+00', '{"cached":null,"ignore_cache":false}'), +(54543, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.29+00', '{"cached":null,"ignore_cache":false}'), +(54544, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.477+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54545, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.652+00', '{"cached":null,"ignore_cache":false}'), +(54546, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:37.832+00', '{"cached":null,"ignore_cache":false}'), +(54547, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.025+00', '{"cached":null,"ignore_cache":false}'), +(54548, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.093+00', '{"cached":null,"ignore_cache":false}'), +(54549, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.486+00', '{"cached":null,"ignore_cache":false}'), +(54550, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.544+00', '{"cached":null,"ignore_cache":false}'), +(54551, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.585+00', '{"cached":null,"ignore_cache":false}'), +(54552, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.626+00', '{"cached":null,"ignore_cache":false}'), +(54553, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.661+00', '{"cached":null,"ignore_cache":false}'), +(54554, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.895+00', '{"cached":null,"ignore_cache":false}'), +(54555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.896+00', '{"cached":null,"ignore_cache":false}'), +(54556, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.949+00', '{"cached":null,"ignore_cache":false}'), +(54557, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:38.985+00', '{"cached":null,"ignore_cache":false}'), +(54558, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.063+00', '{"cached":null,"ignore_cache":false}'), +(54559, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.113+00', '{"cached":null,"ignore_cache":false}'), +(54560, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.274+00', '{"cached":null,"ignore_cache":false}'), +(54561, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.296+00', '{"cached":null,"ignore_cache":false}'), +(54562, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.332+00', '{"cached":null,"ignore_cache":false}'), +(54563, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.356+00', '{"cached":null,"ignore_cache":false}'), +(54564, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.569+00', '{"cached":null,"ignore_cache":false}'), +(54565, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:39.763+00', '{"cached":null,"ignore_cache":false}'), +(54566, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.37+00', '{"cached":null,"ignore_cache":false}'), +(54567, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.429+00', '{"cached":null,"ignore_cache":false}'), +(54568, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.665+00', '{"cached":null,"ignore_cache":false}'), +(54569, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.801+00', '{"cached":null,"ignore_cache":false}'), +(54570, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.816+00', '{"cached":null,"ignore_cache":false}'), +(54571, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:44.973+00', '{"cached":null,"ignore_cache":false}'), +(54572, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:45.008+00', '{"cached":null,"ignore_cache":false}'), +(54573, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:45.033+00', '{"cached":null,"ignore_cache":false}'), +(54574, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:45.17+00', '{"cached":null,"ignore_cache":false}'), +(54575, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:10:45.319+00', '{"cached":null,"ignore_cache":false}'), +(54576, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.302+00', '{"cached":null,"ignore_cache":false}'), +(54577, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.443+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54578, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.473+00', '{"cached":null,"ignore_cache":false}'), +(54579, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.51+00', '{"cached":null,"ignore_cache":false}'), +(54580, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.554+00', '{"cached":null,"ignore_cache":false}'), +(54581, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.585+00', '{"cached":null,"ignore_cache":false}'), +(54582, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.59+00', '{"cached":null,"ignore_cache":false}'), +(54583, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.692+00', '{"cached":null,"ignore_cache":false}'), +(54584, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:32.897+00', '{"cached":null,"ignore_cache":false}'), +(54585, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:33.01+00', '{"cached":null,"ignore_cache":false}'), +(54586, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.823+00', '{"cached":null,"ignore_cache":false}'), +(54587, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.906+00', '{"cached":null,"ignore_cache":false}'), +(54588, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.95+00', '{"cached":null,"ignore_cache":false}'), +(54589, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.973+00', '{"cached":null,"ignore_cache":false}'), +(54590, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:34.977+00', '{"cached":null,"ignore_cache":false}'), +(54591, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:35.018+00', '{"cached":null,"ignore_cache":false}'), +(54592, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.457+00', '{"cached":null,"ignore_cache":false}'), +(54593, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.462+00', '{"cached":null,"ignore_cache":false}'), +(54594, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.488+00', '{"cached":null,"ignore_cache":false}'), +(54595, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.574+00', '{"cached":null,"ignore_cache":false}'), +(54596, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.605+00', '{"cached":null,"ignore_cache":false}'), +(54597, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.62+00', '{"cached":null,"ignore_cache":false}'), +(54598, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:40.988+00', '{"cached":null,"ignore_cache":false}'), +(54599, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:41.019+00', '{"cached":null,"ignore_cache":false}'), +(54600, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:41.074+00', '{"cached":null,"ignore_cache":false}'), +(54601, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:41.105+00', '{"cached":null,"ignore_cache":false}'), +(54602, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:41.133+00', '{"cached":null,"ignore_cache":false}'), +(54603, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:41.141+00', '{"cached":null,"ignore_cache":false}'), +(54604, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:52.125+00', '{"cached":null,"ignore_cache":false}'), +(54605, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:52.195+00', '{"cached":null,"ignore_cache":false}'), +(54606, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:52.206+00', '{"cached":null,"ignore_cache":false}'), +(54607, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:52.265+00', '{"cached":null,"ignore_cache":false}'), +(54608, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:52.357+00', '{"cached":null,"ignore_cache":false}'), +(54609, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:11:52.381+00', '{"cached":null,"ignore_cache":false}'), +(54610, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.761+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54611, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.829+00', '{"cached":null,"ignore_cache":false}'), +(54612, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.846+00', '{"cached":null,"ignore_cache":false}'), +(54613, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.855+00', '{"cached":null,"ignore_cache":false}'), +(54614, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.871+00', '{"cached":null,"ignore_cache":false}'), +(54615, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:14.884+00', '{"cached":null,"ignore_cache":false}'), +(54616, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:21.96+00', '{"cached":null,"ignore_cache":false}'), +(54617, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:22.001+00', '{"cached":null,"ignore_cache":false}'), +(54618, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:22.062+00', '{"cached":null,"ignore_cache":false}'), +(54619, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:22.098+00', '{"cached":null,"ignore_cache":false}'), +(54620, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:22.137+00', '{"cached":null,"ignore_cache":false}'), +(54621, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:22.183+00', '{"cached":null,"ignore_cache":false}'), +(54622, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.589+00', '{"cached":null,"ignore_cache":false}'), +(54623, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.725+00', '{"cached":null,"ignore_cache":false}'), +(54624, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.735+00', '{"cached":null,"ignore_cache":false}'), +(54625, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:29.978+00', '{"cached":null,"ignore_cache":false}'), +(54626, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.095+00', '{"cached":null,"ignore_cache":false}'), +(54627, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.236+00', '{"cached":null,"ignore_cache":false}'), +(54628, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.245+00', '{"cached":null,"ignore_cache":false}'), +(54629, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.252+00', '{"cached":null,"ignore_cache":false}'), +(54630, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.275+00', '{"cached":null,"ignore_cache":false}'), +(54631, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.455+00', '{"cached":null,"ignore_cache":false}'), +(54632, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.473+00', '{"cached":null,"ignore_cache":false}'), +(54633, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.813+00', '{"cached":null,"ignore_cache":false}'), +(54634, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:30.825+00', '{"cached":null,"ignore_cache":false}'), +(54635, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.13+00', '{"cached":null,"ignore_cache":false}'), +(54636, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.335+00', '{"cached":null,"ignore_cache":false}'), +(54637, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.4+00', '{"cached":null,"ignore_cache":false}'), +(54638, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.447+00', '{"cached":null,"ignore_cache":false}'), +(54639, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.729+00', '{"cached":null,"ignore_cache":false}'), +(54640, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:31.942+00', '{"cached":null,"ignore_cache":false}'), +(54641, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:32.325+00', '{"cached":null,"ignore_cache":false}'), +(54642, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:32.372+00', '{"cached":null,"ignore_cache":false}'), +(54643, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:32.561+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54644, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:32.604+00', '{"cached":null,"ignore_cache":false}'), +(54645, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:32.686+00', '{"cached":null,"ignore_cache":false}'), +(54646, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:32.699+00', '{"cached":null,"ignore_cache":false}'), +(54647, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:33.075+00', '{"cached":null,"ignore_cache":false}'), +(54648, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:33.232+00', '{"cached":null,"ignore_cache":false}'), +(54649, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.193+00', '{"cached":null,"ignore_cache":false}'), +(54650, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.5+00', '{"cached":null,"ignore_cache":false}'), +(54651, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.798+00', '{"cached":null,"ignore_cache":false}'), +(54652, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.804+00', '{"cached":null,"ignore_cache":false}'), +(54653, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.847+00', '{"cached":null,"ignore_cache":false}'), +(54654, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:12:59.891+00', '{"cached":null,"ignore_cache":false}'), +(54655, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.249+00', '{"cached":null,"ignore_cache":false}'), +(54656, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.387+00', '{"cached":null,"ignore_cache":false}'), +(54657, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.51+00', '{"cached":null,"ignore_cache":false}'), +(54658, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.519+00', '{"cached":null,"ignore_cache":false}'), +(54659, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.594+00', '{"cached":null,"ignore_cache":false}'), +(54660, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.696+00', '{"cached":null,"ignore_cache":false}'), +(54661, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.756+00', '{"cached":null,"ignore_cache":false}'), +(54662, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:01.929+00', '{"cached":null,"ignore_cache":false}'), +(54663, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.598+00', '{"cached":null,"ignore_cache":false}'), +(54664, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.648+00', '{"cached":null,"ignore_cache":false}'), +(54665, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.747+00', '{"cached":null,"ignore_cache":false}'), +(54666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.811+00', '{"cached":null,"ignore_cache":false}'), +(54667, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:02.841+00', '{"cached":null,"ignore_cache":false}'), +(54668, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.062+00', '{"cached":null,"ignore_cache":false}'), +(54669, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.063+00', '{"cached":null,"ignore_cache":false}'), +(54670, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.246+00', '{"cached":null,"ignore_cache":false}'), +(54671, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.288+00', '{"cached":null,"ignore_cache":false}'), +(54672, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.418+00', '{"cached":null,"ignore_cache":false}'), +(54673, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.507+00', '{"cached":null,"ignore_cache":false}'), +(54674, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.556+00', '{"cached":null,"ignore_cache":false}'), +(54675, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.572+00', '{"cached":null,"ignore_cache":false}'), +(54676, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:03.687+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54677, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.269+00', '{"cached":null,"ignore_cache":false}'), +(54678, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.341+00', '{"cached":null,"ignore_cache":false}'), +(54679, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.423+00', '{"cached":null,"ignore_cache":false}'), +(54680, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.589+00', '{"cached":null,"ignore_cache":false}'), +(54681, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.776+00', '{"cached":null,"ignore_cache":false}'), +(54682, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.823+00', '{"cached":null,"ignore_cache":false}'), +(54683, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:13.871+00', '{"cached":null,"ignore_cache":false}'), +(54684, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.026+00', '{"cached":null,"ignore_cache":false}'), +(54685, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.044+00', '{"cached":null,"ignore_cache":false}'), +(54686, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.291+00', '{"cached":null,"ignore_cache":false}'), +(54687, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.59+00', '{"cached":null,"ignore_cache":false}'), +(54688, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:14.79+00', '{"cached":null,"ignore_cache":false}'), +(54689, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.073+00', '{"cached":null,"ignore_cache":false}'), +(54690, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.139+00', '{"cached":null,"ignore_cache":false}'), +(54691, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.271+00', '{"cached":null,"ignore_cache":false}'), +(54692, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.345+00', '{"cached":null,"ignore_cache":false}'), +(54693, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.581+00', '{"cached":null,"ignore_cache":false}'), +(54694, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.739+00', '{"cached":null,"ignore_cache":false}'), +(54695, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:15.75+00', '{"cached":null,"ignore_cache":false}'), +(54696, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.092+00', '{"cached":null,"ignore_cache":false}'), +(54697, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.113+00', '{"cached":null,"ignore_cache":false}'), +(54698, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.138+00', '{"cached":null,"ignore_cache":false}'), +(54699, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.154+00', '{"cached":null,"ignore_cache":false}'), +(54700, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.175+00', '{"cached":null,"ignore_cache":false}'), +(54701, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.183+00', '{"cached":null,"ignore_cache":false}'), +(54702, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.591+00', '{"cached":null,"ignore_cache":false}'), +(54703, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.72+00', '{"cached":null,"ignore_cache":false}'), +(54704, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.852+00', '{"cached":null,"ignore_cache":false}'), +(54705, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.945+00', '{"cached":null,"ignore_cache":false}'), +(54706, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:22.952+00', '{"cached":null,"ignore_cache":false}'), +(54707, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:13:23.031+00', '{"cached":null,"ignore_cache":false}'), +(54708, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:20.986+00', '{"cached":null,"ignore_cache":false}'), +(54709, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54710, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.035+00', '{"cached":null,"ignore_cache":false}'), +(54711, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.035+00', '{"cached":null,"ignore_cache":false}'), +(54712, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.097+00', '{"cached":null,"ignore_cache":false}'), +(54713, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.259+00', '{"cached":null,"ignore_cache":false}'), +(54714, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.283+00', '{"cached":null,"ignore_cache":false}'), +(54715, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.289+00', '{"cached":null,"ignore_cache":false}'), +(54716, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.579+00', '{"cached":null,"ignore_cache":false}'), +(54717, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.672+00', '{"cached":null,"ignore_cache":false}'), +(54718, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.751+00', '{"cached":null,"ignore_cache":false}'), +(54719, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:21.83+00', '{"cached":null,"ignore_cache":false}'), +(54720, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.067+00', '{"cached":null,"ignore_cache":false}'), +(54721, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.097+00', '{"cached":null,"ignore_cache":false}'), +(54722, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.138+00', '{"cached":null,"ignore_cache":false}'), +(54723, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.221+00', '{"cached":null,"ignore_cache":false}'), +(54724, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.457+00', '{"cached":null,"ignore_cache":false}'), +(54725, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.646+00', '{"cached":null,"ignore_cache":false}'), +(54726, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.757+00', '{"cached":null,"ignore_cache":false}'), +(54727, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.762+00', '{"cached":null,"ignore_cache":false}'), +(54728, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:22.857+00', '{"cached":null,"ignore_cache":false}'), +(54729, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.063+00', '{"cached":null,"ignore_cache":false}'), +(54730, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.102+00', '{"cached":null,"ignore_cache":false}'), +(54731, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.11+00', '{"cached":null,"ignore_cache":false}'), +(54732, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.132+00', '{"cached":null,"ignore_cache":false}'), +(54733, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.134+00', '{"cached":null,"ignore_cache":false}'), +(54734, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.184+00', '{"cached":null,"ignore_cache":false}'), +(54735, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.306+00', '{"cached":null,"ignore_cache":false}'), +(54736, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.434+00', '{"cached":null,"ignore_cache":false}'), +(54737, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.444+00', '{"cached":null,"ignore_cache":false}'), +(54738, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:23.963+00', '{"cached":null,"ignore_cache":false}'), +(54739, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:24.101+00', '{"cached":null,"ignore_cache":false}'), +(54740, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:24.949+00', '{"cached":null,"ignore_cache":false}'), +(54741, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.167+00', '{"cached":null,"ignore_cache":false}'), +(54742, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.309+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54743, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.33+00', '{"cached":null,"ignore_cache":false}'), +(54744, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.381+00', '{"cached":null,"ignore_cache":false}'), +(54745, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.39+00', '{"cached":null,"ignore_cache":false}'), +(54746, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.435+00', '{"cached":null,"ignore_cache":false}'), +(54747, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.642+00', '{"cached":null,"ignore_cache":false}'), +(54748, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.8+00', '{"cached":null,"ignore_cache":false}'), +(54749, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.828+00', '{"cached":null,"ignore_cache":false}'), +(54750, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.939+00', '{"cached":null,"ignore_cache":false}'), +(54751, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:36.979+00', '{"cached":null,"ignore_cache":false}'), +(54752, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:37.016+00', '{"cached":null,"ignore_cache":false}'), +(54753, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:37.034+00', '{"cached":null,"ignore_cache":false}'), +(54754, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:37.059+00', '{"cached":null,"ignore_cache":false}'), +(54755, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:37.193+00', '{"cached":null,"ignore_cache":false}'), +(54756, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:37.429+00', '{"cached":null,"ignore_cache":false}'), +(54757, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.401+00', '{"cached":null,"ignore_cache":false}'), +(54758, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.408+00', '{"cached":null,"ignore_cache":false}'), +(54759, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.548+00', '{"cached":null,"ignore_cache":false}'), +(54760, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.576+00', '{"cached":null,"ignore_cache":false}'), +(54761, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.653+00', '{"cached":null,"ignore_cache":false}'), +(54762, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.682+00', '{"cached":null,"ignore_cache":false}'), +(54763, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.739+00', '{"cached":null,"ignore_cache":false}'), +(54764, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.754+00', '{"cached":null,"ignore_cache":false}'), +(54765, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:45.964+00', '{"cached":null,"ignore_cache":false}'), +(54766, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:15:46.039+00', '{"cached":null,"ignore_cache":false}'), +(54767, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.474+00', '{"cached":null,"ignore_cache":false}'), +(54768, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.648+00', '{"cached":null,"ignore_cache":false}'), +(54769, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.953+00', '{"cached":null,"ignore_cache":false}'), +(54770, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:22.981+00', '{"cached":null,"ignore_cache":false}'), +(54771, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.011+00', '{"cached":null,"ignore_cache":false}'), +(54772, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.06+00', '{"cached":null,"ignore_cache":false}'), +(54773, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.082+00', '{"cached":null,"ignore_cache":false}'), +(54774, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.16+00', '{"cached":null,"ignore_cache":false}'), +(54775, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.176+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54776, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.196+00', '{"cached":null,"ignore_cache":false}'), +(54777, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.442+00', '{"cached":null,"ignore_cache":false}'), +(54778, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:23.73+00', '{"cached":null,"ignore_cache":false}'), +(54779, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:24.161+00', '{"cached":null,"ignore_cache":false}'), +(54780, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:24.173+00', '{"cached":null,"ignore_cache":false}'), +(54781, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:24.186+00', '{"cached":null,"ignore_cache":false}'), +(54782, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:24.195+00', '{"cached":null,"ignore_cache":false}'), +(54783, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:24.233+00', '{"cached":null,"ignore_cache":false}'), +(54784, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:24.528+00', '{"cached":null,"ignore_cache":false}'), +(54785, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:16:24.564+00', '{"cached":null,"ignore_cache":false}'), +(54786, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:39.983+00', '{"cached":null,"ignore_cache":false}'), +(54787, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.02+00', '{"cached":null,"ignore_cache":false}'), +(54788, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.064+00', '{"cached":null,"ignore_cache":false}'), +(54789, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.113+00', '{"cached":null,"ignore_cache":false}'), +(54790, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.17+00', '{"cached":null,"ignore_cache":false}'), +(54791, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:40.173+00', '{"cached":null,"ignore_cache":false}'), +(54792, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.132+00', '{"cached":null,"ignore_cache":false}'), +(54793, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.238+00', '{"cached":null,"ignore_cache":false}'), +(54794, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.261+00', '{"cached":null,"ignore_cache":false}'), +(54795, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.28+00', '{"cached":null,"ignore_cache":false}'), +(54796, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.509+00', '{"cached":null,"ignore_cache":false}'), +(54797, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.545+00', '{"cached":null,"ignore_cache":false}'), +(54798, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.565+00', '{"cached":null,"ignore_cache":false}'), +(54799, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.617+00', '{"cached":null,"ignore_cache":false}'), +(54800, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.743+00', '{"cached":null,"ignore_cache":false}'), +(54801, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:17:41.946+00', '{"cached":null,"ignore_cache":false}'), +(54802, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.271+00', '{"cached":null,"ignore_cache":false}'), +(54803, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.424+00', '{"cached":null,"ignore_cache":false}'), +(54804, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.577+00', '{"cached":null,"ignore_cache":false}'), +(54805, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.786+00', '{"cached":null,"ignore_cache":false}'), +(54806, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.857+00', '{"cached":null,"ignore_cache":false}'), +(54807, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.95+00', '{"cached":null,"ignore_cache":false}'), +(54808, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:23.973+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54809, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.001+00', '{"cached":null,"ignore_cache":false}'), +(54810, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.006+00', '{"cached":null,"ignore_cache":false}'), +(54811, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.033+00', '{"cached":null,"ignore_cache":false}'), +(54812, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.136+00', '{"cached":null,"ignore_cache":false}'), +(54813, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.335+00', '{"cached":null,"ignore_cache":false}'), +(54814, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.384+00', '{"cached":null,"ignore_cache":false}'), +(54815, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.57+00', '{"cached":null,"ignore_cache":false}'), +(54816, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:24.989+00', '{"cached":null,"ignore_cache":false}'), +(54817, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:25.002+00', '{"cached":null,"ignore_cache":false}'), +(54818, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:25.602+00', '{"cached":null,"ignore_cache":false}'), +(54819, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.189+00', '{"cached":null,"ignore_cache":false}'), +(54820, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.198+00', '{"cached":null,"ignore_cache":false}'), +(54821, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.244+00', '{"cached":null,"ignore_cache":false}'), +(54822, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.623+00', '{"cached":null,"ignore_cache":false}'), +(54823, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.684+00', '{"cached":null,"ignore_cache":false}'), +(54824, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.715+00', '{"cached":null,"ignore_cache":false}'), +(54825, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.769+00', '{"cached":null,"ignore_cache":false}'), +(54826, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.793+00', '{"cached":null,"ignore_cache":false}'), +(54827, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.807+00', '{"cached":null,"ignore_cache":false}'), +(54828, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.939+00', '{"cached":null,"ignore_cache":false}'), +(54829, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:26.977+00', '{"cached":null,"ignore_cache":false}'), +(54830, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.313+00', '{"cached":null,"ignore_cache":false}'), +(54831, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.487+00', '{"cached":null,"ignore_cache":false}'), +(54832, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.488+00', '{"cached":null,"ignore_cache":false}'), +(54833, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.515+00', '{"cached":null,"ignore_cache":false}'), +(54834, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.538+00', '{"cached":null,"ignore_cache":false}'), +(54835, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.611+00', '{"cached":null,"ignore_cache":false}'), +(54836, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.637+00', '{"cached":null,"ignore_cache":false}'), +(54837, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.66+00', '{"cached":null,"ignore_cache":false}'), +(54838, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:27.665+00', '{"cached":null,"ignore_cache":false}'), +(54839, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.479+00', '{"cached":null,"ignore_cache":false}'), +(54840, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.498+00', '{"cached":null,"ignore_cache":false}'), +(54841, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.5+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54842, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.546+00', '{"cached":null,"ignore_cache":false}'), +(54843, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.567+00', '{"cached":null,"ignore_cache":false}'), +(54844, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.577+00', '{"cached":null,"ignore_cache":false}'), +(54845, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:28.976+00', '{"cached":null,"ignore_cache":false}'), +(54846, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:29.194+00', '{"cached":null,"ignore_cache":false}'), +(54847, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:29.298+00', '{"cached":null,"ignore_cache":false}'), +(54848, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:29.33+00', '{"cached":null,"ignore_cache":false}'), +(54849, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:29.385+00', '{"cached":null,"ignore_cache":false}'), +(54850, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:29.47+00', '{"cached":null,"ignore_cache":false}'), +(54851, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.393+00', '{"cached":null,"ignore_cache":false}'), +(54852, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.553+00', '{"cached":null,"ignore_cache":false}'), +(54853, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.626+00', '{"cached":null,"ignore_cache":false}'), +(54854, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.629+00', '{"cached":null,"ignore_cache":false}'), +(54855, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.808+00', '{"cached":null,"ignore_cache":false}'), +(54856, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:30.841+00', '{"cached":null,"ignore_cache":false}'), +(54857, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.022+00', '{"cached":null,"ignore_cache":false}'), +(54858, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.024+00', '{"cached":null,"ignore_cache":false}'), +(54859, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.21+00', '{"cached":null,"ignore_cache":false}'), +(54860, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.842+00', '{"cached":null,"ignore_cache":false}'), +(54861, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.869+00', '{"cached":null,"ignore_cache":false}'), +(54862, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:31.976+00', '{"cached":null,"ignore_cache":false}'), +(54863, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:32.204+00', '{"cached":null,"ignore_cache":false}'), +(54864, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:32.265+00', '{"cached":null,"ignore_cache":false}'), +(54865, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:32.456+00', '{"cached":null,"ignore_cache":false}'), +(54866, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:32.5+00', '{"cached":null,"ignore_cache":false}'), +(54867, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:32.547+00', '{"cached":null,"ignore_cache":false}'), +(54868, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:32.658+00', '{"cached":null,"ignore_cache":false}'), +(54869, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:18:38.026+00', '{"cached":null,"ignore_cache":false}'), +(54870, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.523+00', '{"cached":null,"ignore_cache":false}'), +(54871, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.833+00', '{"cached":null,"ignore_cache":false}'), +(54872, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.888+00', '{"cached":null,"ignore_cache":false}'), +(54873, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.901+00', '{"cached":null,"ignore_cache":false}'), +(54874, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:14.924+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54875, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.419+00', '{"cached":null,"ignore_cache":false}'), +(54876, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:15.774+00', '{"cached":null,"ignore_cache":false}'), +(54877, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.073+00', '{"cached":null,"ignore_cache":false}'), +(54878, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.091+00', '{"cached":null,"ignore_cache":false}'), +(54879, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.182+00', '{"cached":null,"ignore_cache":false}'), +(54880, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.333+00', '{"cached":null,"ignore_cache":false}'), +(54881, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.458+00', '{"cached":null,"ignore_cache":false}'), +(54882, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.464+00', '{"cached":null,"ignore_cache":false}'), +(54883, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.468+00', '{"cached":null,"ignore_cache":false}'), +(54884, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:16.713+00', '{"cached":null,"ignore_cache":false}'), +(54885, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:17.027+00', '{"cached":null,"ignore_cache":false}'), +(54886, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:17.091+00', '{"cached":null,"ignore_cache":false}'), +(54887, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.704+00', '{"cached":null,"ignore_cache":false}'), +(54888, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:31.928+00', '{"cached":null,"ignore_cache":false}'), +(54889, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.01+00', '{"cached":null,"ignore_cache":false}'), +(54890, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.076+00', '{"cached":null,"ignore_cache":false}'), +(54891, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.092+00', '{"cached":null,"ignore_cache":false}'), +(54892, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.183+00', '{"cached":null,"ignore_cache":false}'), +(54893, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.229+00', '{"cached":null,"ignore_cache":false}'), +(54894, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.269+00', '{"cached":null,"ignore_cache":false}'), +(54895, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.323+00', '{"cached":null,"ignore_cache":false}'), +(54896, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.347+00', '{"cached":null,"ignore_cache":false}'), +(54897, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.665+00', '{"cached":null,"ignore_cache":false}'), +(54898, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.681+00', '{"cached":null,"ignore_cache":false}'), +(54899, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.879+00', '{"cached":null,"ignore_cache":false}'), +(54900, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:32.975+00', '{"cached":null,"ignore_cache":false}'), +(54901, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.143+00', '{"cached":null,"ignore_cache":false}'), +(54902, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.244+00', '{"cached":null,"ignore_cache":false}'), +(54903, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.283+00', '{"cached":null,"ignore_cache":false}'), +(54904, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.596+00', '{"cached":null,"ignore_cache":false}'), +(54905, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.625+00', '{"cached":null,"ignore_cache":false}'), +(54906, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.68+00', '{"cached":null,"ignore_cache":false}'), +(54907, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:33.737+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54908, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.007+00', '{"cached":null,"ignore_cache":false}'), +(54909, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.297+00', '{"cached":null,"ignore_cache":false}'), +(54910, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.304+00', '{"cached":null,"ignore_cache":false}'), +(54911, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.433+00', '{"cached":null,"ignore_cache":false}'), +(54912, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.469+00', '{"cached":null,"ignore_cache":false}'), +(54913, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.522+00', '{"cached":null,"ignore_cache":false}'), +(54914, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.746+00', '{"cached":null,"ignore_cache":false}'), +(54915, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:34.832+00', '{"cached":null,"ignore_cache":false}'), +(54916, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.132+00', '{"cached":null,"ignore_cache":false}'), +(54917, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.17+00', '{"cached":null,"ignore_cache":false}'), +(54918, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.24+00', '{"cached":null,"ignore_cache":false}'), +(54919, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.323+00', '{"cached":null,"ignore_cache":false}'), +(54920, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.338+00', '{"cached":null,"ignore_cache":false}'), +(54921, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.343+00', '{"cached":null,"ignore_cache":false}'), +(54922, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:55.897+00', '{"cached":null,"ignore_cache":false}'), +(54923, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:56.106+00', '{"cached":null,"ignore_cache":false}'), +(54924, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:56.112+00', '{"cached":null,"ignore_cache":false}'), +(54925, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:56.145+00', '{"cached":null,"ignore_cache":false}'), +(54926, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:56.189+00', '{"cached":null,"ignore_cache":false}'), +(54927, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:56.207+00', '{"cached":null,"ignore_cache":false}'), +(54928, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.416+00', '{"cached":null,"ignore_cache":false}'), +(54929, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.639+00', '{"cached":null,"ignore_cache":false}'), +(54930, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.649+00', '{"cached":null,"ignore_cache":false}'), +(54931, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.756+00', '{"cached":null,"ignore_cache":false}'), +(54932, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.822+00', '{"cached":null,"ignore_cache":false}'), +(54933, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.9+00', '{"cached":null,"ignore_cache":false}'), +(54934, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:57.996+00', '{"cached":null,"ignore_cache":false}'), +(54935, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.004+00', '{"cached":null,"ignore_cache":false}'), +(54936, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.186+00', '{"cached":null,"ignore_cache":false}'), +(54937, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.341+00', '{"cached":null,"ignore_cache":false}'), +(54938, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.344+00', '{"cached":null,"ignore_cache":false}'), +(54939, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.493+00', '{"cached":null,"ignore_cache":false}'), +(54940, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.512+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54941, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.519+00', '{"cached":null,"ignore_cache":false}'), +(54942, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.563+00', '{"cached":null,"ignore_cache":false}'), +(54943, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.692+00', '{"cached":null,"ignore_cache":false}'), +(54944, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.757+00', '{"cached":null,"ignore_cache":false}'), +(54945, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:58.785+00', '{"cached":null,"ignore_cache":false}'), +(54946, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:59.531+00', '{"cached":null,"ignore_cache":false}'), +(54947, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:19:59.581+00', '{"cached":null,"ignore_cache":false}'), +(54948, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.105+00', '{"cached":null,"ignore_cache":false}'), +(54949, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.292+00', '{"cached":null,"ignore_cache":false}'), +(54950, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.304+00', '{"cached":null,"ignore_cache":false}'), +(54951, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.309+00', '{"cached":null,"ignore_cache":false}'), +(54952, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.342+00', '{"cached":null,"ignore_cache":false}'), +(54953, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.396+00', '{"cached":null,"ignore_cache":false}'), +(54954, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.631+00', '{"cached":null,"ignore_cache":false}'), +(54955, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.641+00', '{"cached":null,"ignore_cache":false}'), +(54956, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.785+00', '{"cached":null,"ignore_cache":false}'), +(54957, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.814+00', '{"cached":null,"ignore_cache":false}'), +(54958, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.99+00', '{"cached":null,"ignore_cache":false}'), +(54959, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:38.991+00', '{"cached":null,"ignore_cache":false}'), +(54960, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:39.004+00', '{"cached":null,"ignore_cache":false}'), +(54961, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:39.021+00', '{"cached":null,"ignore_cache":false}'), +(54962, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:39.326+00', '{"cached":null,"ignore_cache":false}'), +(54963, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:39.347+00', '{"cached":null,"ignore_cache":false}'), +(54964, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.658+00', '{"cached":null,"ignore_cache":false}'), +(54965, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.734+00', '{"cached":null,"ignore_cache":false}'), +(54966, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.857+00', '{"cached":null,"ignore_cache":false}'), +(54967, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.882+00', '{"cached":null,"ignore_cache":false}'), +(54968, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:50.961+00', '{"cached":null,"ignore_cache":false}'), +(54969, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.209+00', '{"cached":null,"ignore_cache":false}'), +(54970, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.216+00', '{"cached":null,"ignore_cache":false}'), +(54971, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.224+00', '{"cached":null,"ignore_cache":false}'), +(54972, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.487+00', '{"cached":null,"ignore_cache":false}'), +(54973, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.672+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(54974, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.793+00', '{"cached":null,"ignore_cache":false}'), +(54975, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:51.853+00', '{"cached":null,"ignore_cache":false}'), +(54976, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.523+00', '{"cached":null,"ignore_cache":false}'), +(54977, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.58+00', '{"cached":null,"ignore_cache":false}'), +(54978, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.581+00', '{"cached":null,"ignore_cache":false}'), +(54979, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.582+00', '{"cached":null,"ignore_cache":false}'), +(54980, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.62+00', '{"cached":null,"ignore_cache":false}'), +(54981, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.645+00', '{"cached":null,"ignore_cache":false}'), +(54982, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.744+00', '{"cached":null,"ignore_cache":false}'), +(54983, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:52.962+00', '{"cached":null,"ignore_cache":false}'), +(54984, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.279+00', '{"cached":null,"ignore_cache":false}'), +(54985, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.378+00', '{"cached":null,"ignore_cache":false}'), +(54986, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.426+00', '{"cached":null,"ignore_cache":false}'), +(54987, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.429+00', '{"cached":null,"ignore_cache":false}'), +(54988, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.468+00', '{"cached":null,"ignore_cache":false}'), +(54989, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:53.496+00', '{"cached":null,"ignore_cache":false}'), +(54990, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.12+00', '{"cached":null,"ignore_cache":false}'), +(54991, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.331+00', '{"cached":null,"ignore_cache":false}'), +(54992, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.344+00', '{"cached":null,"ignore_cache":false}'), +(54993, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.387+00', '{"cached":null,"ignore_cache":false}'), +(54994, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.437+00', '{"cached":null,"ignore_cache":false}'), +(54995, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:20:54.489+00', '{"cached":null,"ignore_cache":false}'), +(54996, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.625+00', '{"cached":null,"ignore_cache":false}'), +(54997, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.733+00', '{"cached":null,"ignore_cache":false}'), +(54998, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.75+00', '{"cached":null,"ignore_cache":false}'), +(54999, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:16.872+00', '{"cached":null,"ignore_cache":false}'), +(55000, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.06+00', '{"cached":null,"ignore_cache":false}'), +(55001, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.177+00', '{"cached":null,"ignore_cache":false}'), +(55002, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.567+00', '{"cached":null,"ignore_cache":false}'), +(55003, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.573+00', '{"cached":null,"ignore_cache":false}'), +(55004, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.608+00', '{"cached":null,"ignore_cache":false}'), +(55005, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.612+00', '{"cached":null,"ignore_cache":false}'), +(55006, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:17.948+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55007, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:18.241+00', '{"cached":null,"ignore_cache":false}'), +(55008, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:18.262+00', '{"cached":null,"ignore_cache":false}'), +(55009, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:18.278+00', '{"cached":null,"ignore_cache":false}'), +(55010, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:18.331+00', '{"cached":null,"ignore_cache":false}'), +(55011, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:18.672+00', '{"cached":null,"ignore_cache":false}'), +(55012, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:21:18.786+00', '{"cached":null,"ignore_cache":false}'), +(55013, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.912+00', '{"cached":null,"ignore_cache":false}'), +(55014, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.947+00', '{"cached":null,"ignore_cache":false}'), +(55015, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.957+00', '{"cached":null,"ignore_cache":false}'), +(55016, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:15.98+00', '{"cached":null,"ignore_cache":false}'), +(55017, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.181+00', '{"cached":null,"ignore_cache":false}'), +(55018, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:16.697+00', '{"cached":null,"ignore_cache":false}'), +(55019, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.019+00', '{"cached":null,"ignore_cache":false}'), +(55020, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.126+00', '{"cached":null,"ignore_cache":false}'), +(55021, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.162+00', '{"cached":null,"ignore_cache":false}'), +(55022, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.389+00', '{"cached":null,"ignore_cache":false}'), +(55023, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.514+00', '{"cached":null,"ignore_cache":false}'), +(55024, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.593+00', '{"cached":null,"ignore_cache":false}'), +(55025, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.748+00', '{"cached":null,"ignore_cache":false}'), +(55026, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:17.827+00', '{"cached":null,"ignore_cache":false}'), +(55027, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:18.031+00', '{"cached":null,"ignore_cache":false}'), +(55028, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:18.422+00', '{"cached":null,"ignore_cache":false}'), +(55029, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:22:18.488+00', '{"cached":null,"ignore_cache":false}'), +(55030, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.888+00', '{"cached":null,"ignore_cache":false}'), +(55031, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.896+00', '{"cached":null,"ignore_cache":false}'), +(55032, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.899+00', '{"cached":null,"ignore_cache":false}'), +(55033, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.922+00', '{"cached":null,"ignore_cache":false}'), +(55034, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:21.949+00', '{"cached":null,"ignore_cache":false}'), +(55035, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.013+00', '{"cached":null,"ignore_cache":false}'), +(55036, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.689+00', '{"cached":null,"ignore_cache":false}'), +(55037, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:22.865+00', '{"cached":null,"ignore_cache":false}'), +(55038, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.177+00', '{"cached":null,"ignore_cache":false}'), +(55039, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.221+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55040, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.335+00', '{"cached":null,"ignore_cache":false}'), +(55041, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.369+00', '{"cached":null,"ignore_cache":false}'), +(55042, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.371+00', '{"cached":null,"ignore_cache":false}'), +(55043, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.455+00', '{"cached":null,"ignore_cache":false}'), +(55044, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.456+00', '{"cached":null,"ignore_cache":false}'), +(55045, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.725+00', '{"cached":null,"ignore_cache":false}'), +(55046, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.865+00', '{"cached":null,"ignore_cache":false}'), +(55047, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:23.901+00', '{"cached":null,"ignore_cache":false}'), +(55048, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:24.022+00', '{"cached":null,"ignore_cache":false}'), +(55049, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:24.104+00', '{"cached":null,"ignore_cache":false}'), +(55050, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:24.118+00', '{"cached":null,"ignore_cache":false}'), +(55051, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:24.143+00', '{"cached":null,"ignore_cache":false}'), +(55052, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:24.398+00', '{"cached":null,"ignore_cache":false}'), +(55053, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.12+00', '{"cached":null,"ignore_cache":false}'), +(55054, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.121+00', '{"cached":null,"ignore_cache":false}'), +(55055, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.277+00', '{"cached":null,"ignore_cache":false}'), +(55056, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.348+00', '{"cached":null,"ignore_cache":false}'), +(55057, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.359+00', '{"cached":null,"ignore_cache":false}'), +(55058, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.36+00', '{"cached":null,"ignore_cache":false}'), +(55059, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.37+00', '{"cached":null,"ignore_cache":false}'), +(55060, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.743+00', '{"cached":null,"ignore_cache":false}'), +(55061, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:25.88+00', '{"cached":null,"ignore_cache":false}'), +(55062, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.462+00', '{"cached":null,"ignore_cache":false}'), +(55063, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.618+00', '{"cached":null,"ignore_cache":false}'), +(55064, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.674+00', '{"cached":null,"ignore_cache":false}'), +(55065, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.681+00', '{"cached":null,"ignore_cache":false}'), +(55066, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:31.836+00', '{"cached":null,"ignore_cache":false}'), +(55067, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:32.066+00', '{"cached":null,"ignore_cache":false}'), +(55068, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:32.111+00', '{"cached":null,"ignore_cache":false}'), +(55069, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:32.193+00', '{"cached":null,"ignore_cache":false}'), +(55070, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:32.388+00', '{"cached":null,"ignore_cache":false}'), +(55071, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:32.468+00', '{"cached":null,"ignore_cache":false}'), +(55072, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.873+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55073, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:33.988+00', '{"cached":null,"ignore_cache":false}'), +(55074, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.242+00', '{"cached":null,"ignore_cache":false}'), +(55075, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.3+00', '{"cached":null,"ignore_cache":false}'), +(55076, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.322+00', '{"cached":null,"ignore_cache":false}'), +(55077, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.345+00', '{"cached":null,"ignore_cache":false}'), +(55078, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.379+00', '{"cached":null,"ignore_cache":false}'), +(55079, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.408+00', '{"cached":null,"ignore_cache":false}'), +(55080, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.532+00', '{"cached":null,"ignore_cache":false}'), +(55081, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:34.666+00', '{"cached":null,"ignore_cache":false}'), +(55082, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.373+00', '{"cached":null,"ignore_cache":false}'), +(55083, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.455+00', '{"cached":null,"ignore_cache":false}'), +(55084, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.546+00', '{"cached":null,"ignore_cache":false}'), +(55085, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.557+00', '{"cached":null,"ignore_cache":false}'), +(55086, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.57+00', '{"cached":null,"ignore_cache":false}'), +(55087, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:35.62+00', '{"cached":null,"ignore_cache":false}'), +(55088, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.678+00', '{"cached":null,"ignore_cache":false}'), +(55089, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.733+00', '{"cached":null,"ignore_cache":false}'), +(55090, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.751+00', '{"cached":null,"ignore_cache":false}'), +(55091, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.824+00', '{"cached":null,"ignore_cache":false}'), +(55092, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.832+00', '{"cached":null,"ignore_cache":false}'), +(55093, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:23:36.872+00', '{"cached":null,"ignore_cache":false}'), +(55094, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.699+00', '{"cached":null,"ignore_cache":false}'), +(55095, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.7+00', '{"cached":null,"ignore_cache":false}'), +(55096, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.706+00', '{"cached":null,"ignore_cache":false}'), +(55097, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.727+00', '{"cached":null,"ignore_cache":false}'), +(55098, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.833+00', '{"cached":null,"ignore_cache":false}'), +(55099, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:37.857+00', '{"cached":null,"ignore_cache":false}'), +(55100, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.084+00', '{"cached":null,"ignore_cache":false}'), +(55101, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.129+00', '{"cached":null,"ignore_cache":false}'), +(55102, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.199+00', '{"cached":null,"ignore_cache":false}'), +(55103, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.263+00', '{"cached":null,"ignore_cache":false}'), +(55104, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.275+00', '{"cached":null,"ignore_cache":false}'), +(55105, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.365+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55106, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.402+00', '{"cached":null,"ignore_cache":false}'), +(55107, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.42+00', '{"cached":null,"ignore_cache":false}'), +(55108, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.481+00', '{"cached":null,"ignore_cache":false}'), +(55109, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:38.498+00', '{"cached":null,"ignore_cache":false}'), +(55110, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.893+00', '{"cached":null,"ignore_cache":false}'), +(55111, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.918+00', '{"cached":null,"ignore_cache":false}'), +(55112, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.938+00', '{"cached":null,"ignore_cache":false}'), +(55113, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:39.998+00', '{"cached":null,"ignore_cache":false}'), +(55114, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.013+00', '{"cached":null,"ignore_cache":false}'), +(55115, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.03+00', '{"cached":null,"ignore_cache":false}'), +(55116, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.633+00', '{"cached":null,"ignore_cache":false}'), +(55117, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.717+00', '{"cached":null,"ignore_cache":false}'), +(55118, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.768+00', '{"cached":null,"ignore_cache":false}'), +(55119, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.769+00', '{"cached":null,"ignore_cache":false}'), +(55120, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:40.874+00', '{"cached":null,"ignore_cache":false}'), +(55121, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.117+00', '{"cached":null,"ignore_cache":false}'), +(55122, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.337+00', '{"cached":null,"ignore_cache":false}'), +(55123, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.341+00', '{"cached":null,"ignore_cache":false}'), +(55124, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.505+00', '{"cached":null,"ignore_cache":false}'), +(55125, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.78+00', '{"cached":null,"ignore_cache":false}'), +(55126, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:41.898+00', '{"cached":null,"ignore_cache":false}'), +(55127, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:42.208+00', '{"cached":null,"ignore_cache":false}'), +(55128, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:42.425+00', '{"cached":null,"ignore_cache":false}'), +(55129, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:42.658+00', '{"cached":null,"ignore_cache":false}'), +(55130, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:42.945+00', '{"cached":null,"ignore_cache":false}'), +(55131, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:43.105+00', '{"cached":null,"ignore_cache":false}'), +(55132, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:43.185+00', '{"cached":null,"ignore_cache":false}'), +(55133, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:43.26+00', '{"cached":null,"ignore_cache":false}'), +(55134, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:43.356+00', '{"cached":null,"ignore_cache":false}'), +(55135, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:43.637+00', '{"cached":null,"ignore_cache":false}'), +(55136, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:43.814+00', '{"cached":null,"ignore_cache":false}'), +(55137, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.447+00', '{"cached":null,"ignore_cache":false}'), +(55138, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.513+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55139, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.745+00', '{"cached":null,"ignore_cache":false}'), +(55140, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.763+00', '{"cached":null,"ignore_cache":false}'), +(55141, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.791+00', '{"cached":null,"ignore_cache":false}'), +(55142, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.865+00', '{"cached":null,"ignore_cache":false}'), +(55143, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.893+00', '{"cached":null,"ignore_cache":false}'), +(55144, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:25:59.985+00', '{"cached":null,"ignore_cache":false}'), +(55145, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:00.199+00', '{"cached":null,"ignore_cache":false}'), +(55146, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:00.28+00', '{"cached":null,"ignore_cache":false}'), +(55147, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.762+00', '{"cached":null,"ignore_cache":false}'), +(55148, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.798+00', '{"cached":null,"ignore_cache":false}'), +(55149, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.821+00', '{"cached":null,"ignore_cache":false}'), +(55150, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.867+00', '{"cached":null,"ignore_cache":false}'), +(55151, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.896+00', '{"cached":null,"ignore_cache":false}'), +(55152, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:07.897+00', '{"cached":null,"ignore_cache":false}'), +(55153, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.445+00', '{"cached":null,"ignore_cache":false}'), +(55154, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.488+00', '{"cached":null,"ignore_cache":false}'), +(55155, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.774+00', '{"cached":null,"ignore_cache":false}'), +(55156, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.809+00', '{"cached":null,"ignore_cache":false}'), +(55157, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.853+00', '{"cached":null,"ignore_cache":false}'), +(55158, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.861+00', '{"cached":null,"ignore_cache":false}'), +(55159, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.892+00', '{"cached":null,"ignore_cache":false}'), +(55160, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.94+00', '{"cached":null,"ignore_cache":false}'), +(55161, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:24.953+00', '{"cached":null,"ignore_cache":false}'), +(55162, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:26:25.255+00', '{"cached":null,"ignore_cache":false}'), +(55163, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:02.885+00', '{"cached":null,"ignore_cache":false}'), +(55164, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.055+00', '{"cached":null,"ignore_cache":false}'), +(55165, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.197+00', '{"cached":null,"ignore_cache":false}'), +(55166, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.213+00', '{"cached":null,"ignore_cache":false}'), +(55167, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.224+00', '{"cached":null,"ignore_cache":false}'), +(55168, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.385+00', '{"cached":null,"ignore_cache":false}'), +(55169, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.509+00', '{"cached":null,"ignore_cache":false}'), +(55170, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.594+00', '{"cached":null,"ignore_cache":false}'), +(55171, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.65+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55172, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.726+00', '{"cached":null,"ignore_cache":false}'), +(55173, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.815+00', '{"cached":null,"ignore_cache":false}'), +(55174, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:03.843+00', '{"cached":null,"ignore_cache":false}'), +(55175, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:04.274+00', '{"cached":null,"ignore_cache":false}'), +(55176, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:04.357+00', '{"cached":null,"ignore_cache":false}'), +(55177, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:04.423+00', '{"cached":null,"ignore_cache":false}'), +(55178, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:04.433+00', '{"cached":null,"ignore_cache":false}'), +(55179, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:04.701+00', '{"cached":null,"ignore_cache":false}'), +(55180, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:05.066+00', '{"cached":null,"ignore_cache":false}'), +(55181, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:05.448+00', '{"cached":null,"ignore_cache":false}'), +(55182, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:05.735+00', '{"cached":null,"ignore_cache":false}'), +(55183, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.423+00', '{"cached":null,"ignore_cache":false}'), +(55184, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.436+00', '{"cached":null,"ignore_cache":false}'), +(55185, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.507+00', '{"cached":null,"ignore_cache":false}'), +(55186, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.576+00', '{"cached":null,"ignore_cache":false}'), +(55187, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.582+00', '{"cached":null,"ignore_cache":false}'), +(55188, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.586+00', '{"cached":null,"ignore_cache":false}'), +(55189, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.851+00', '{"cached":null,"ignore_cache":false}'), +(55190, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:06.873+00', '{"cached":null,"ignore_cache":false}'), +(55191, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:07.163+00', '{"cached":null,"ignore_cache":false}'), +(55192, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:07.201+00', '{"cached":null,"ignore_cache":false}'), +(55193, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:07.202+00', '{"cached":null,"ignore_cache":false}'), +(55194, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:27:07.281+00', '{"cached":null,"ignore_cache":false}'), +(55195, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:37.943+00', '{"cached":null,"ignore_cache":false}'), +(55196, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.07+00', '{"cached":null,"ignore_cache":false}'), +(55197, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.458+00', '{"cached":null,"ignore_cache":false}'), +(55198, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.487+00', '{"cached":null,"ignore_cache":false}'), +(55199, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.508+00', '{"cached":null,"ignore_cache":false}'), +(55200, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.521+00', '{"cached":null,"ignore_cache":false}'), +(55201, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.539+00', '{"cached":null,"ignore_cache":false}'), +(55202, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.568+00', '{"cached":null,"ignore_cache":false}'), +(55203, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.819+00', '{"cached":null,"ignore_cache":false}'), +(55204, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:38.92+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55205, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:40.833+00', '{"cached":null,"ignore_cache":false}'), +(55206, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:41.019+00', '{"cached":null,"ignore_cache":false}'), +(55207, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:41.051+00', '{"cached":null,"ignore_cache":false}'), +(55208, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:41.052+00', '{"cached":null,"ignore_cache":false}'), +(55209, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:41.089+00', '{"cached":null,"ignore_cache":false}'), +(55210, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:41.109+00', '{"cached":null,"ignore_cache":false}'), +(55211, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.545+00', '{"cached":null,"ignore_cache":false}'), +(55212, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.675+00', '{"cached":null,"ignore_cache":false}'), +(55213, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.798+00', '{"cached":null,"ignore_cache":false}'), +(55214, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.885+00', '{"cached":null,"ignore_cache":false}'), +(55215, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:42.974+00', '{"cached":null,"ignore_cache":false}'), +(55216, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:43.025+00', '{"cached":null,"ignore_cache":false}'), +(55217, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:43.052+00', '{"cached":null,"ignore_cache":false}'), +(55218, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:43.068+00', '{"cached":null,"ignore_cache":false}'), +(55219, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:43.305+00', '{"cached":null,"ignore_cache":false}'), +(55220, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:43.347+00', '{"cached":null,"ignore_cache":false}'), +(55221, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.479+00', '{"cached":null,"ignore_cache":false}'), +(55222, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.541+00', '{"cached":null,"ignore_cache":false}'), +(55223, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.55+00', '{"cached":null,"ignore_cache":false}'), +(55224, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.564+00', '{"cached":null,"ignore_cache":false}'), +(55225, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.612+00', '{"cached":null,"ignore_cache":false}'), +(55226, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:28:49.699+00', '{"cached":null,"ignore_cache":false}'), +(55227, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.087+00', '{"cached":null,"ignore_cache":false}'), +(55228, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.118+00', '{"cached":null,"ignore_cache":false}'), +(55229, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.126+00', '{"cached":null,"ignore_cache":false}'), +(55230, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.193+00', '{"cached":null,"ignore_cache":false}'), +(55231, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.206+00', '{"cached":null,"ignore_cache":false}'), +(55232, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.284+00', '{"cached":null,"ignore_cache":false}'), +(55233, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.626+00', '{"cached":null,"ignore_cache":false}'), +(55234, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.777+00', '{"cached":null,"ignore_cache":false}'), +(55235, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.855+00', '{"cached":null,"ignore_cache":false}'), +(55236, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:03.882+00', '{"cached":null,"ignore_cache":false}'), +(55237, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.102+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55238, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.118+00', '{"cached":null,"ignore_cache":false}'), +(55239, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.209+00', '{"cached":null,"ignore_cache":false}'), +(55240, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.275+00', '{"cached":null,"ignore_cache":false}'), +(55241, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.453+00', '{"cached":null,"ignore_cache":false}'), +(55242, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.693+00', '{"cached":null,"ignore_cache":false}'), +(55243, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.73+00', '{"cached":null,"ignore_cache":false}'), +(55244, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.849+00', '{"cached":null,"ignore_cache":false}'), +(55245, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:04.962+00', '{"cached":null,"ignore_cache":false}'), +(55246, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.25+00', '{"cached":null,"ignore_cache":false}'), +(55247, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.465+00', '{"cached":null,"ignore_cache":false}'), +(55248, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.539+00', '{"cached":null,"ignore_cache":false}'), +(55249, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:05.729+00', '{"cached":null,"ignore_cache":false}'), +(55250, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:06.125+00', '{"cached":null,"ignore_cache":false}'), +(55251, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:06.13+00', '{"cached":null,"ignore_cache":false}'), +(55252, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:06.205+00', '{"cached":null,"ignore_cache":false}'), +(55253, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:06.265+00', '{"cached":null,"ignore_cache":false}'), +(55254, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:06.289+00', '{"cached":null,"ignore_cache":false}'), +(55255, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:06.455+00', '{"cached":null,"ignore_cache":false}'), +(55256, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:29:06.552+00', '{"cached":null,"ignore_cache":false}'), +(55257, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.519+00', '{"cached":null,"ignore_cache":false}'), +(55258, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.541+00', '{"cached":null,"ignore_cache":false}'), +(55259, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.785+00', '{"cached":null,"ignore_cache":false}'), +(55260, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.891+00', '{"cached":null,"ignore_cache":false}'), +(55261, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.941+00', '{"cached":null,"ignore_cache":false}'), +(55262, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:37.981+00', '{"cached":null,"ignore_cache":false}'), +(55263, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.102+00', '{"cached":null,"ignore_cache":false}'), +(55264, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.13+00', '{"cached":null,"ignore_cache":false}'), +(55265, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.211+00', '{"cached":null,"ignore_cache":false}'), +(55266, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.23+00', '{"cached":null,"ignore_cache":false}'), +(55267, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.257+00', '{"cached":null,"ignore_cache":false}'), +(55268, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.269+00', '{"cached":null,"ignore_cache":false}'), +(55269, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.294+00', '{"cached":null,"ignore_cache":false}'), +(55270, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.335+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55271, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.555+00', '{"cached":null,"ignore_cache":false}'), +(55272, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:30:38.561+00', '{"cached":null,"ignore_cache":false}'), +(55273, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.178+00', '{"cached":null,"ignore_cache":false}'), +(55274, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.248+00', '{"cached":null,"ignore_cache":false}'), +(55275, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.325+00', '{"cached":null,"ignore_cache":false}'), +(55276, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.383+00', '{"cached":null,"ignore_cache":false}'), +(55277, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.4+00', '{"cached":null,"ignore_cache":false}'), +(55278, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.493+00', '{"cached":null,"ignore_cache":false}'), +(55279, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.951+00', '{"cached":null,"ignore_cache":false}'), +(55280, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:14.973+00', '{"cached":null,"ignore_cache":false}'), +(55281, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.116+00', '{"cached":null,"ignore_cache":false}'), +(55282, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.261+00', '{"cached":null,"ignore_cache":false}'), +(55283, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.38+00', '{"cached":null,"ignore_cache":false}'), +(55284, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.61+00', '{"cached":null,"ignore_cache":false}'), +(55285, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.627+00', '{"cached":null,"ignore_cache":false}'), +(55286, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.831+00', '{"cached":null,"ignore_cache":false}'), +(55287, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.871+00', '{"cached":null,"ignore_cache":false}'), +(55288, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:15.873+00', '{"cached":null,"ignore_cache":false}'), +(55289, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:16.156+00', '{"cached":null,"ignore_cache":false}'), +(55290, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:16.28+00', '{"cached":null,"ignore_cache":false}'), +(55291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:16.383+00', '{"cached":null,"ignore_cache":false}'), +(55292, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.383+00', '{"cached":null,"ignore_cache":false}'), +(55293, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.39+00', '{"cached":null,"ignore_cache":false}'), +(55294, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.485+00', '{"cached":null,"ignore_cache":false}'), +(55295, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.521+00', '{"cached":null,"ignore_cache":false}'), +(55296, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.551+00', '{"cached":null,"ignore_cache":false}'), +(55297, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.694+00', '{"cached":null,"ignore_cache":false}'), +(55298, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.712+00', '{"cached":null,"ignore_cache":false}'), +(55299, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:31.754+00', '{"cached":null,"ignore_cache":false}'), +(55300, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:32.127+00', '{"cached":null,"ignore_cache":false}'), +(55301, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:32.14+00', '{"cached":null,"ignore_cache":false}'), +(55302, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.681+00', '{"cached":null,"ignore_cache":false}'), +(55303, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.683+00', '{"cached":null,"ignore_cache":false}'), +(55304, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.715+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55305, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.742+00', '{"cached":null,"ignore_cache":false}'), +(55306, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.817+00', '{"cached":null,"ignore_cache":false}'), +(55307, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:53.872+00', '{"cached":null,"ignore_cache":false}'), +(55308, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.174+00', '{"cached":null,"ignore_cache":false}'), +(55309, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.397+00', '{"cached":null,"ignore_cache":false}'), +(55310, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.448+00', '{"cached":null,"ignore_cache":false}'), +(55311, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.644+00', '{"cached":null,"ignore_cache":false}'), +(55312, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.653+00', '{"cached":null,"ignore_cache":false}'), +(55313, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.702+00', '{"cached":null,"ignore_cache":false}'), +(55314, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.754+00', '{"cached":null,"ignore_cache":false}'), +(55315, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:54.978+00', '{"cached":null,"ignore_cache":false}'), +(55316, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.017+00', '{"cached":null,"ignore_cache":false}'), +(55317, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.121+00', '{"cached":null,"ignore_cache":false}'), +(55318, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.287+00', '{"cached":null,"ignore_cache":false}'), +(55319, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.384+00', '{"cached":null,"ignore_cache":false}'), +(55320, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.407+00', '{"cached":null,"ignore_cache":false}'), +(55321, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.42+00', '{"cached":null,"ignore_cache":false}'), +(55322, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.514+00', '{"cached":null,"ignore_cache":false}'), +(55323, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.547+00', '{"cached":null,"ignore_cache":false}'), +(55324, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.568+00', '{"cached":null,"ignore_cache":false}'), +(55325, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:55.582+00', '{"cached":null,"ignore_cache":false}'), +(55326, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.091+00', '{"cached":null,"ignore_cache":false}'), +(55327, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.108+00', '{"cached":null,"ignore_cache":false}'), +(55328, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.13+00', '{"cached":null,"ignore_cache":false}'), +(55329, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.255+00', '{"cached":null,"ignore_cache":false}'), +(55330, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.275+00', '{"cached":null,"ignore_cache":false}'), +(55331, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.308+00', '{"cached":null,"ignore_cache":false}'), +(55332, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.58+00', '{"cached":null,"ignore_cache":false}'), +(55333, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:31:56.593+00', '{"cached":null,"ignore_cache":false}'), +(55334, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:18.952+00', '{"cached":null,"ignore_cache":false}'), +(55335, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.15+00', '{"cached":null,"ignore_cache":false}'), +(55336, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.206+00', '{"cached":null,"ignore_cache":false}'), +(55337, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.291+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55338, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.345+00', '{"cached":null,"ignore_cache":false}'), +(55339, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.413+00', '{"cached":null,"ignore_cache":false}'), +(55340, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.45+00', '{"cached":null,"ignore_cache":false}'), +(55341, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.467+00', '{"cached":null,"ignore_cache":false}'), +(55342, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.709+00', '{"cached":null,"ignore_cache":false}'), +(55343, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:19.742+00', '{"cached":null,"ignore_cache":false}'), +(55344, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.294+00', '{"cached":null,"ignore_cache":false}'), +(55345, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.36+00', '{"cached":null,"ignore_cache":false}'), +(55346, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.425+00', '{"cached":null,"ignore_cache":false}'), +(55347, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.485+00', '{"cached":null,"ignore_cache":false}'), +(55348, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.489+00', '{"cached":null,"ignore_cache":false}'), +(55349, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:32:22.501+00', '{"cached":null,"ignore_cache":false}'), +(55350, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.449+00', '{"cached":null,"ignore_cache":false}'), +(55351, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.522+00', '{"cached":null,"ignore_cache":false}'), +(55352, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.608+00', '{"cached":null,"ignore_cache":false}'), +(55353, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.724+00', '{"cached":null,"ignore_cache":false}'), +(55354, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.756+00', '{"cached":null,"ignore_cache":false}'), +(55355, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.783+00', '{"cached":null,"ignore_cache":false}'), +(55356, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.789+00', '{"cached":null,"ignore_cache":false}'), +(55357, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:49.954+00', '{"cached":null,"ignore_cache":false}'), +(55358, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.02+00', '{"cached":null,"ignore_cache":false}'), +(55359, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.081+00', '{"cached":null,"ignore_cache":false}'), +(55360, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.202+00', '{"cached":null,"ignore_cache":false}'), +(55361, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.404+00', '{"cached":null,"ignore_cache":false}'), +(55362, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.411+00', '{"cached":null,"ignore_cache":false}'), +(55363, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.42+00', '{"cached":null,"ignore_cache":false}'), +(55364, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.679+00', '{"cached":null,"ignore_cache":false}'), +(55365, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.825+00', '{"cached":null,"ignore_cache":false}'), +(55366, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:50.951+00', '{"cached":null,"ignore_cache":false}'), +(55367, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.067+00', '{"cached":null,"ignore_cache":false}'), +(55368, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.076+00', '{"cached":null,"ignore_cache":false}'), +(55369, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.08+00', '{"cached":null,"ignore_cache":false}'), +(55370, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.214+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55371, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.252+00', '{"cached":null,"ignore_cache":false}'), +(55372, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.261+00', '{"cached":null,"ignore_cache":false}'), +(55373, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.355+00', '{"cached":null,"ignore_cache":false}'), +(55374, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.514+00', '{"cached":null,"ignore_cache":false}'), +(55375, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:51.518+00', '{"cached":null,"ignore_cache":false}'), +(55376, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:55.653+00', '{"cached":null,"ignore_cache":false}'), +(55377, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.418+00', '{"cached":null,"ignore_cache":false}'), +(55378, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.434+00', '{"cached":null,"ignore_cache":false}'), +(55379, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.442+00', '{"cached":null,"ignore_cache":false}'), +(55380, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.486+00', '{"cached":null,"ignore_cache":false}'), +(55381, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:33:56.517+00', '{"cached":null,"ignore_cache":false}'), +(55382, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.091+00', '{"cached":null,"ignore_cache":false}'), +(55383, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.142+00', '{"cached":null,"ignore_cache":false}'), +(55384, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.15+00', '{"cached":null,"ignore_cache":false}'), +(55385, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.17+00', '{"cached":null,"ignore_cache":false}'), +(55386, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.201+00', '{"cached":null,"ignore_cache":false}'), +(55387, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.235+00', '{"cached":null,"ignore_cache":false}'), +(55388, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.456+00', '{"cached":null,"ignore_cache":false}'), +(55389, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.621+00', '{"cached":null,"ignore_cache":false}'), +(55390, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.642+00', '{"cached":null,"ignore_cache":false}'), +(55391, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.855+00', '{"cached":null,"ignore_cache":false}'), +(55392, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.931+00', '{"cached":null,"ignore_cache":false}'), +(55393, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:35.982+00', '{"cached":null,"ignore_cache":false}'), +(55394, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.228+00', '{"cached":null,"ignore_cache":false}'), +(55395, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.264+00', '{"cached":null,"ignore_cache":false}'), +(55396, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.338+00', '{"cached":null,"ignore_cache":false}'), +(55397, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.375+00', '{"cached":null,"ignore_cache":false}'), +(55398, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.601+00', '{"cached":null,"ignore_cache":false}'), +(55399, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.782+00', '{"cached":null,"ignore_cache":false}'), +(55400, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.826+00', '{"cached":null,"ignore_cache":false}'), +(55401, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.834+00', '{"cached":null,"ignore_cache":false}'), +(55402, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.914+00', '{"cached":null,"ignore_cache":false}'), +(55403, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.937+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55404, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:36.972+00', '{"cached":null,"ignore_cache":false}'), +(55405, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.212+00', '{"cached":null,"ignore_cache":false}'), +(55406, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.311+00', '{"cached":null,"ignore_cache":false}'), +(55407, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.438+00', '{"cached":null,"ignore_cache":false}'), +(55408, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.618+00', '{"cached":null,"ignore_cache":false}'), +(55409, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.722+00', '{"cached":null,"ignore_cache":false}'), +(55410, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.756+00', '{"cached":null,"ignore_cache":false}'), +(55411, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:37.769+00', '{"cached":null,"ignore_cache":false}'), +(55412, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:38.227+00', '{"cached":null,"ignore_cache":false}'), +(55413, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:38.416+00', '{"cached":null,"ignore_cache":false}'), +(55414, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.092+00', '{"cached":null,"ignore_cache":false}'), +(55415, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.305+00', '{"cached":null,"ignore_cache":false}'), +(55416, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.421+00', '{"cached":null,"ignore_cache":false}'), +(55417, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.456+00', '{"cached":null,"ignore_cache":false}'), +(55418, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.466+00', '{"cached":null,"ignore_cache":false}'), +(55419, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.515+00', '{"cached":null,"ignore_cache":false}'), +(55420, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.573+00', '{"cached":null,"ignore_cache":false}'), +(55421, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.588+00', '{"cached":null,"ignore_cache":false}'), +(55422, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.812+00', '{"cached":null,"ignore_cache":false}'), +(55423, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:40.87+00', '{"cached":null,"ignore_cache":false}'), +(55424, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.21+00', '{"cached":null,"ignore_cache":false}'), +(55425, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.245+00', '{"cached":null,"ignore_cache":false}'), +(55426, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.583+00', '{"cached":null,"ignore_cache":false}'), +(55427, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.883+00', '{"cached":null,"ignore_cache":false}'), +(55428, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.923+00', '{"cached":null,"ignore_cache":false}'), +(55429, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.984+00', '{"cached":null,"ignore_cache":false}'), +(55430, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:41.996+00', '{"cached":null,"ignore_cache":false}'), +(55431, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:42.011+00', '{"cached":null,"ignore_cache":false}'), +(55432, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:42.33+00', '{"cached":null,"ignore_cache":false}'), +(55433, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:42.369+00', '{"cached":null,"ignore_cache":false}'), +(55434, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.237+00', '{"cached":null,"ignore_cache":false}'), +(55435, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.362+00', '{"cached":null,"ignore_cache":false}'), +(55436, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.433+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55437, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.504+00', '{"cached":null,"ignore_cache":false}'), +(55438, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.526+00', '{"cached":null,"ignore_cache":false}'), +(55439, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:50.57+00', '{"cached":null,"ignore_cache":false}'), +(55440, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.679+00', '{"cached":null,"ignore_cache":false}'), +(55441, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.726+00', '{"cached":null,"ignore_cache":false}'), +(55442, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.872+00', '{"cached":null,"ignore_cache":false}'), +(55443, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.877+00', '{"cached":null,"ignore_cache":false}'), +(55444, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.894+00', '{"cached":null,"ignore_cache":false}'), +(55445, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:34:51.96+00', '{"cached":null,"ignore_cache":false}'), +(55446, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.868+00', '{"cached":null,"ignore_cache":false}'), +(55447, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:13.975+00', '{"cached":null,"ignore_cache":false}'), +(55448, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.044+00', '{"cached":null,"ignore_cache":false}'), +(55449, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.136+00', '{"cached":null,"ignore_cache":false}'), +(55450, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.416+00', '{"cached":null,"ignore_cache":false}'), +(55451, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.519+00', '{"cached":null,"ignore_cache":false}'), +(55452, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.541+00', '{"cached":null,"ignore_cache":false}'), +(55453, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.57+00', '{"cached":null,"ignore_cache":false}'), +(55454, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.589+00', '{"cached":null,"ignore_cache":false}'), +(55455, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.793+00', '{"cached":null,"ignore_cache":false}'), +(55456, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:14.81+00', '{"cached":null,"ignore_cache":false}'), +(55457, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.048+00', '{"cached":null,"ignore_cache":false}'), +(55458, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.092+00', '{"cached":null,"ignore_cache":false}'), +(55459, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.264+00', '{"cached":null,"ignore_cache":false}'), +(55460, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.29+00', '{"cached":null,"ignore_cache":false}'), +(55461, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.322+00', '{"cached":null,"ignore_cache":false}'), +(55462, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.5+00', '{"cached":null,"ignore_cache":false}'), +(55463, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.542+00', '{"cached":null,"ignore_cache":false}'), +(55464, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.805+00', '{"cached":null,"ignore_cache":false}'), +(55465, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.824+00', '{"cached":null,"ignore_cache":false}'), +(55466, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.827+00', '{"cached":null,"ignore_cache":false}'), +(55467, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.835+00', '{"cached":null,"ignore_cache":false}'), +(55468, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.86+00', '{"cached":null,"ignore_cache":false}'), +(55469, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:15.905+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55470, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:16.071+00', '{"cached":null,"ignore_cache":false}'), +(55471, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:16.178+00', '{"cached":null,"ignore_cache":false}'), +(55472, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:16.19+00', '{"cached":null,"ignore_cache":false}'), +(55473, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:16.317+00', '{"cached":null,"ignore_cache":false}'), +(55474, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:16.379+00', '{"cached":null,"ignore_cache":false}'), +(55475, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:16.598+00', '{"cached":null,"ignore_cache":false}'), +(55476, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:16.631+00', '{"cached":null,"ignore_cache":false}'), +(55477, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.625+00', '{"cached":null,"ignore_cache":false}'), +(55478, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.643+00', '{"cached":null,"ignore_cache":false}'), +(55479, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.818+00', '{"cached":null,"ignore_cache":false}'), +(55480, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.828+00', '{"cached":null,"ignore_cache":false}'), +(55481, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.92+00', '{"cached":null,"ignore_cache":false}'), +(55482, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:37.931+00', '{"cached":null,"ignore_cache":false}'), +(55483, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.004+00', '{"cached":null,"ignore_cache":false}'), +(55484, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.101+00', '{"cached":null,"ignore_cache":false}'), +(55485, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.125+00', '{"cached":null,"ignore_cache":false}'), +(55486, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.19+00', '{"cached":null,"ignore_cache":false}'), +(55487, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.242+00', '{"cached":null,"ignore_cache":false}'), +(55488, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.251+00', '{"cached":null,"ignore_cache":false}'), +(55489, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.281+00', '{"cached":null,"ignore_cache":false}'), +(55490, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.3+00', '{"cached":null,"ignore_cache":false}'), +(55491, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.507+00', '{"cached":null,"ignore_cache":false}'), +(55492, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:35:38.628+00', '{"cached":null,"ignore_cache":false}'), +(55493, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:19.945+00', '{"cached":null,"ignore_cache":false}'), +(55494, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.058+00', '{"cached":null,"ignore_cache":false}'), +(55495, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.103+00', '{"cached":null,"ignore_cache":false}'), +(55496, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.143+00', '{"cached":null,"ignore_cache":false}'), +(55497, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.226+00', '{"cached":null,"ignore_cache":false}'), +(55498, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.32+00', '{"cached":null,"ignore_cache":false}'), +(55499, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.357+00', '{"cached":null,"ignore_cache":false}'), +(55500, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.608+00', '{"cached":null,"ignore_cache":false}'), +(55501, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.757+00', '{"cached":null,"ignore_cache":false}'), +(55502, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:20.771+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55503, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.058+00', '{"cached":null,"ignore_cache":false}'), +(55504, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.274+00', '{"cached":null,"ignore_cache":false}'), +(55505, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.443+00', '{"cached":null,"ignore_cache":false}'), +(55506, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.449+00', '{"cached":null,"ignore_cache":false}'), +(55507, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.605+00', '{"cached":null,"ignore_cache":false}'), +(55508, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.647+00', '{"cached":null,"ignore_cache":false}'), +(55509, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.683+00', '{"cached":null,"ignore_cache":false}'), +(55510, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.69+00', '{"cached":null,"ignore_cache":false}'), +(55511, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:21.747+00', '{"cached":null,"ignore_cache":false}'), +(55512, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.05+00', '{"cached":null,"ignore_cache":false}'), +(55513, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.06+00', '{"cached":null,"ignore_cache":false}'), +(55514, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.09+00', '{"cached":null,"ignore_cache":false}'), +(55515, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.334+00', '{"cached":null,"ignore_cache":false}'), +(55516, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.448+00', '{"cached":null,"ignore_cache":false}'), +(55517, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.497+00', '{"cached":null,"ignore_cache":false}'), +(55518, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.613+00', '{"cached":null,"ignore_cache":false}'), +(55519, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.741+00', '{"cached":null,"ignore_cache":false}'), +(55520, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.894+00', '{"cached":null,"ignore_cache":false}'), +(55521, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:22.997+00', '{"cached":null,"ignore_cache":false}'), +(55522, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:23.043+00', '{"cached":null,"ignore_cache":false}'), +(55523, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:23.145+00', '{"cached":null,"ignore_cache":false}'), +(55524, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:23.228+00', '{"cached":null,"ignore_cache":false}'), +(55525, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.283+00', '{"cached":null,"ignore_cache":false}'), +(55526, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.309+00', '{"cached":null,"ignore_cache":false}'), +(55527, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.762+00', '{"cached":null,"ignore_cache":false}'), +(55528, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.827+00', '{"cached":null,"ignore_cache":false}'), +(55529, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.844+00', '{"cached":null,"ignore_cache":false}'), +(55530, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.899+00', '{"cached":null,"ignore_cache":false}'), +(55531, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.911+00', '{"cached":null,"ignore_cache":false}'), +(55532, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:37.938+00', '{"cached":null,"ignore_cache":false}'), +(55533, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:38.029+00', '{"cached":null,"ignore_cache":false}'), +(55534, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:36:38.194+00', '{"cached":null,"ignore_cache":false}'), +(55535, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.444+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55536, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.611+00', '{"cached":null,"ignore_cache":false}'), +(55537, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.629+00', '{"cached":null,"ignore_cache":false}'), +(55538, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.826+00', '{"cached":null,"ignore_cache":false}'), +(55539, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:50.981+00', '{"cached":null,"ignore_cache":false}'), +(55540, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.03+00', '{"cached":null,"ignore_cache":false}'), +(55541, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.037+00', '{"cached":null,"ignore_cache":false}'), +(55542, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.08+00', '{"cached":null,"ignore_cache":false}'), +(55543, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.093+00', '{"cached":null,"ignore_cache":false}'), +(55544, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.22+00', '{"cached":null,"ignore_cache":false}'), +(55545, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.228+00', '{"cached":null,"ignore_cache":false}'), +(55546, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.337+00', '{"cached":null,"ignore_cache":false}'), +(55547, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.361+00', '{"cached":null,"ignore_cache":false}'), +(55548, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.56+00', '{"cached":null,"ignore_cache":false}'), +(55549, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.572+00', '{"cached":null,"ignore_cache":false}'), +(55550, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.822+00', '{"cached":null,"ignore_cache":false}'), +(55551, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.901+00', '{"cached":null,"ignore_cache":false}'), +(55552, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:51.928+00', '{"cached":null,"ignore_cache":false}'), +(55553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.275+00', '{"cached":null,"ignore_cache":false}'), +(55554, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.301+00', '{"cached":null,"ignore_cache":false}'), +(55555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.668+00', '{"cached":null,"ignore_cache":false}'), +(55556, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.743+00', '{"cached":null,"ignore_cache":false}'), +(55557, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.826+00', '{"cached":null,"ignore_cache":false}'), +(55558, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.827+00', '{"cached":null,"ignore_cache":false}'), +(55559, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.836+00', '{"cached":null,"ignore_cache":false}'), +(55560, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:52.845+00', '{"cached":null,"ignore_cache":false}'), +(55561, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.472+00', '{"cached":null,"ignore_cache":false}'), +(55562, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.529+00', '{"cached":null,"ignore_cache":false}'), +(55563, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.565+00', '{"cached":null,"ignore_cache":false}'), +(55564, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.579+00', '{"cached":null,"ignore_cache":false}'), +(55565, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.586+00', '{"cached":null,"ignore_cache":false}'), +(55566, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:37:53.626+00', '{"cached":null,"ignore_cache":false}'), +(55567, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:57.781+00', '{"cached":null,"ignore_cache":false}'), +(55568, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.126+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55569, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.235+00', '{"cached":null,"ignore_cache":false}'), +(55570, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.25+00', '{"cached":null,"ignore_cache":false}'), +(55571, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.473+00', '{"cached":null,"ignore_cache":false}'), +(55572, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:58.752+00', '{"cached":null,"ignore_cache":false}'), +(55573, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.14+00', '{"cached":null,"ignore_cache":false}'), +(55574, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.195+00', '{"cached":null,"ignore_cache":false}'), +(55575, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.218+00', '{"cached":null,"ignore_cache":false}'), +(55576, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.436+00', '{"cached":null,"ignore_cache":false}'), +(55577, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.521+00', '{"cached":null,"ignore_cache":false}'), +(55578, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.53+00', '{"cached":null,"ignore_cache":false}'), +(55579, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.546+00', '{"cached":null,"ignore_cache":false}'), +(55580, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.568+00', '{"cached":null,"ignore_cache":false}'), +(55581, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.582+00', '{"cached":null,"ignore_cache":false}'), +(55582, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.592+00', '{"cached":null,"ignore_cache":false}'), +(55583, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.643+00', '{"cached":null,"ignore_cache":false}'), +(55584, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.685+00', '{"cached":null,"ignore_cache":false}'), +(55585, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.723+00', '{"cached":null,"ignore_cache":false}'), +(55586, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.753+00', '{"cached":null,"ignore_cache":false}'), +(55587, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.813+00', '{"cached":null,"ignore_cache":false}'), +(55588, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.85+00', '{"cached":null,"ignore_cache":false}'), +(55589, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.89+00', '{"cached":null,"ignore_cache":false}'), +(55590, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:38:59.907+00', '{"cached":null,"ignore_cache":false}'), +(55591, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:00.042+00', '{"cached":null,"ignore_cache":false}'), +(55592, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:00.162+00', '{"cached":null,"ignore_cache":false}'), +(55593, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.571+00', '{"cached":null,"ignore_cache":false}'), +(55594, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.62+00', '{"cached":null,"ignore_cache":false}'), +(55595, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.643+00', '{"cached":null,"ignore_cache":false}'), +(55596, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.679+00', '{"cached":null,"ignore_cache":false}'), +(55597, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.7+00', '{"cached":null,"ignore_cache":false}'), +(55598, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:39:05.711+00', '{"cached":null,"ignore_cache":false}'), +(55599, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.357+00', '{"cached":null,"ignore_cache":false}'), +(55600, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.506+00', '{"cached":null,"ignore_cache":false}'), +(55601, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.643+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55602, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.797+00', '{"cached":null,"ignore_cache":false}'), +(55603, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.907+00', '{"cached":null,"ignore_cache":false}'), +(55604, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:38.992+00', '{"cached":null,"ignore_cache":false}'), +(55605, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.1+00', '{"cached":null,"ignore_cache":false}'), +(55606, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.103+00', '{"cached":null,"ignore_cache":false}'), +(55607, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.165+00', '{"cached":null,"ignore_cache":false}'), +(55608, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.168+00', '{"cached":null,"ignore_cache":false}'), +(55609, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.302+00', '{"cached":null,"ignore_cache":false}'), +(55610, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.303+00', '{"cached":null,"ignore_cache":false}'), +(55611, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.35+00', '{"cached":null,"ignore_cache":false}'), +(55612, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.373+00', '{"cached":null,"ignore_cache":false}'), +(55613, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.471+00', '{"cached":null,"ignore_cache":false}'), +(55614, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:40:39.699+00', '{"cached":null,"ignore_cache":false}'), +(55615, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.42+00', '{"cached":null,"ignore_cache":false}'), +(55616, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.619+00', '{"cached":null,"ignore_cache":false}'), +(55617, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.621+00', '{"cached":null,"ignore_cache":false}'), +(55618, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.655+00', '{"cached":null,"ignore_cache":false}'), +(55619, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.713+00', '{"cached":null,"ignore_cache":false}'), +(55620, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.726+00', '{"cached":null,"ignore_cache":false}'), +(55621, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.771+00', '{"cached":null,"ignore_cache":false}'), +(55622, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:44.805+00', '{"cached":null,"ignore_cache":false}'), +(55623, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:45.012+00', '{"cached":null,"ignore_cache":false}'), +(55624, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:41:45.152+00', '{"cached":null,"ignore_cache":false}'), +(55625, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.332+00', '{"cached":null,"ignore_cache":false}'), +(55626, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.444+00', '{"cached":null,"ignore_cache":false}'), +(55627, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.556+00', '{"cached":null,"ignore_cache":false}'), +(55628, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.565+00', '{"cached":null,"ignore_cache":false}'), +(55629, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.591+00', '{"cached":null,"ignore_cache":false}'), +(55630, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.649+00', '{"cached":null,"ignore_cache":false}'), +(55631, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.692+00', '{"cached":null,"ignore_cache":false}'), +(55632, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.712+00', '{"cached":null,"ignore_cache":false}'), +(55633, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.991+00', '{"cached":null,"ignore_cache":false}'), +(55634, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:05.994+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55635, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:06.964+00', '{"cached":null,"ignore_cache":false}'), +(55636, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:07.017+00', '{"cached":null,"ignore_cache":false}'), +(55637, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:07.065+00', '{"cached":null,"ignore_cache":false}'), +(55638, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:07.075+00', '{"cached":null,"ignore_cache":false}'), +(55639, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:07.206+00', '{"cached":null,"ignore_cache":false}'), +(55640, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:07.224+00', '{"cached":null,"ignore_cache":false}'), +(55641, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.927+00', '{"cached":null,"ignore_cache":false}'), +(55642, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:48.95+00', '{"cached":null,"ignore_cache":false}'), +(55643, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.066+00', '{"cached":null,"ignore_cache":false}'), +(55644, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.188+00', '{"cached":null,"ignore_cache":false}'), +(55645, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.231+00', '{"cached":null,"ignore_cache":false}'), +(55646, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.427+00', '{"cached":null,"ignore_cache":false}'), +(55647, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.528+00', '{"cached":null,"ignore_cache":false}'), +(55648, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.546+00', '{"cached":null,"ignore_cache":false}'), +(55649, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.579+00', '{"cached":null,"ignore_cache":false}'), +(55650, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.632+00', '{"cached":null,"ignore_cache":false}'), +(55651, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.704+00', '{"cached":null,"ignore_cache":false}'), +(55652, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.79+00', '{"cached":null,"ignore_cache":false}'), +(55653, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.834+00', '{"cached":null,"ignore_cache":false}'), +(55654, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.909+00', '{"cached":null,"ignore_cache":false}'), +(55655, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:49.968+00', '{"cached":null,"ignore_cache":false}'), +(55656, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.131+00', '{"cached":null,"ignore_cache":false}'), +(55657, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.238+00', '{"cached":null,"ignore_cache":false}'), +(55658, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.349+00', '{"cached":null,"ignore_cache":false}'), +(55659, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.455+00', '{"cached":null,"ignore_cache":false}'), +(55660, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.543+00', '{"cached":null,"ignore_cache":false}'), +(55661, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.558+00', '{"cached":null,"ignore_cache":false}'), +(55662, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.587+00', '{"cached":null,"ignore_cache":false}'), +(55663, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.628+00', '{"cached":null,"ignore_cache":false}'), +(55664, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.686+00', '{"cached":null,"ignore_cache":false}'), +(55665, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:50.961+00', '{"cached":null,"ignore_cache":false}'), +(55666, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:51.089+00', '{"cached":null,"ignore_cache":false}'), +(55667, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:51.186+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55668, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:51.231+00', '{"cached":null,"ignore_cache":false}'), +(55669, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:51.301+00', '{"cached":null,"ignore_cache":false}'), +(55670, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:51.312+00', '{"cached":null,"ignore_cache":false}'), +(55671, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:51.372+00', '{"cached":null,"ignore_cache":false}'), +(55672, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:43:51.398+00', '{"cached":null,"ignore_cache":false}'), +(55673, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.279+00', '{"cached":null,"ignore_cache":false}'), +(55674, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.366+00', '{"cached":null,"ignore_cache":false}'), +(55675, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.508+00', '{"cached":null,"ignore_cache":false}'), +(55676, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.662+00', '{"cached":null,"ignore_cache":false}'), +(55677, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.669+00', '{"cached":null,"ignore_cache":false}'), +(55678, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.691+00', '{"cached":null,"ignore_cache":false}'), +(55679, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.721+00', '{"cached":null,"ignore_cache":false}'), +(55680, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.727+00', '{"cached":null,"ignore_cache":false}'), +(55681, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:04.969+00', '{"cached":null,"ignore_cache":false}'), +(55682, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:05.083+00', '{"cached":null,"ignore_cache":false}'), +(55683, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.233+00', '{"cached":null,"ignore_cache":false}'), +(55684, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.515+00', '{"cached":null,"ignore_cache":false}'), +(55685, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.529+00', '{"cached":null,"ignore_cache":false}'), +(55686, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.53+00', '{"cached":null,"ignore_cache":false}'), +(55687, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.608+00', '{"cached":null,"ignore_cache":false}'), +(55688, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.615+00', '{"cached":null,"ignore_cache":false}'), +(55689, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.786+00', '{"cached":null,"ignore_cache":false}'), +(55690, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.9+00', '{"cached":null,"ignore_cache":false}'), +(55691, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:06.913+00', '{"cached":null,"ignore_cache":false}'), +(55692, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.152+00', '{"cached":null,"ignore_cache":false}'), +(55693, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.281+00', '{"cached":null,"ignore_cache":false}'), +(55694, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.297+00', '{"cached":null,"ignore_cache":false}'), +(55695, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.404+00', '{"cached":null,"ignore_cache":false}'), +(55696, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.448+00', '{"cached":null,"ignore_cache":false}'), +(55697, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.872+00', '{"cached":null,"ignore_cache":false}'), +(55698, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.99+00', '{"cached":null,"ignore_cache":false}'), +(55699, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.995+00', '{"cached":null,"ignore_cache":false}'), +(55700, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.996+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55701, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:07.996+00', '{"cached":null,"ignore_cache":false}'), +(55702, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:08.009+00', '{"cached":null,"ignore_cache":false}'), +(55703, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:08.061+00', '{"cached":null,"ignore_cache":false}'), +(55704, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:44:08.106+00', '{"cached":null,"ignore_cache":false}'), +(55705, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.128+00', '{"cached":null,"ignore_cache":false}'), +(55706, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.152+00', '{"cached":null,"ignore_cache":false}'), +(55707, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.267+00', '{"cached":null,"ignore_cache":false}'), +(55708, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.28+00', '{"cached":null,"ignore_cache":false}'), +(55709, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.333+00', '{"cached":null,"ignore_cache":false}'), +(55710, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.383+00', '{"cached":null,"ignore_cache":false}'), +(55711, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.423+00', '{"cached":null,"ignore_cache":false}'), +(55712, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.462+00', '{"cached":null,"ignore_cache":false}'), +(55713, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.619+00', '{"cached":null,"ignore_cache":false}'), +(55714, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.782+00', '{"cached":null,"ignore_cache":false}'), +(55715, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:32.937+00', '{"cached":null,"ignore_cache":false}'), +(55716, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.087+00', '{"cached":null,"ignore_cache":false}'), +(55717, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.105+00', '{"cached":null,"ignore_cache":false}'), +(55718, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.12+00', '{"cached":null,"ignore_cache":false}'), +(55719, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.141+00', '{"cached":null,"ignore_cache":false}'), +(55720, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.2+00', '{"cached":null,"ignore_cache":false}'), +(55721, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.647+00', '{"cached":null,"ignore_cache":false}'), +(55722, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.748+00', '{"cached":null,"ignore_cache":false}'), +(55723, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:33.907+00', '{"cached":null,"ignore_cache":false}'), +(55724, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.18+00', '{"cached":null,"ignore_cache":false}'), +(55725, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.46+00', '{"cached":null,"ignore_cache":false}'), +(55726, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.54+00', '{"cached":null,"ignore_cache":false}'), +(55727, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.712+00', '{"cached":null,"ignore_cache":false}'), +(55728, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.86+00', '{"cached":null,"ignore_cache":false}'), +(55729, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.914+00', '{"cached":null,"ignore_cache":false}'), +(55730, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.962+00', '{"cached":null,"ignore_cache":false}'), +(55731, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:34.994+00', '{"cached":null,"ignore_cache":false}'), +(55732, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:35.012+00', '{"cached":null,"ignore_cache":false}'), +(55733, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:35.017+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55734, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:35.086+00', '{"cached":null,"ignore_cache":false}'), +(55735, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:35.244+00', '{"cached":null,"ignore_cache":false}'), +(55736, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:35.309+00', '{"cached":null,"ignore_cache":false}'), +(55737, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:37.877+00', '{"cached":null,"ignore_cache":false}'), +(55738, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.157+00', '{"cached":null,"ignore_cache":false}'), +(55739, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.21+00', '{"cached":null,"ignore_cache":false}'), +(55740, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.21+00', '{"cached":null,"ignore_cache":false}'), +(55741, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.321+00', '{"cached":null,"ignore_cache":false}'), +(55742, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.325+00', '{"cached":null,"ignore_cache":false}'), +(55743, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.345+00', '{"cached":null,"ignore_cache":false}'), +(55744, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.417+00', '{"cached":null,"ignore_cache":false}'), +(55745, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.452+00', '{"cached":null,"ignore_cache":false}'), +(55746, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.552+00', '{"cached":null,"ignore_cache":false}'), +(55747, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.558+00', '{"cached":null,"ignore_cache":false}'), +(55748, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.588+00', '{"cached":null,"ignore_cache":false}'), +(55749, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.62+00', '{"cached":null,"ignore_cache":false}'), +(55750, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.657+00', '{"cached":null,"ignore_cache":false}'), +(55751, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:38.935+00', '{"cached":null,"ignore_cache":false}'), +(55752, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:45:39.024+00', '{"cached":null,"ignore_cache":false}'), +(55753, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.104+00', '{"cached":null,"ignore_cache":false}'), +(55754, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.225+00', '{"cached":null,"ignore_cache":false}'), +(55755, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.355+00', '{"cached":null,"ignore_cache":false}'), +(55756, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.461+00', '{"cached":null,"ignore_cache":false}'), +(55757, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.495+00', '{"cached":null,"ignore_cache":false}'), +(55758, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.545+00', '{"cached":null,"ignore_cache":false}'), +(55759, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.592+00', '{"cached":null,"ignore_cache":false}'), +(55760, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.632+00', '{"cached":null,"ignore_cache":false}'), +(55761, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.803+00', '{"cached":null,"ignore_cache":false}'), +(55762, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:46:51.938+00', '{"cached":null,"ignore_cache":false}'), +(55763, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.495+00', '{"cached":null,"ignore_cache":false}'), +(55764, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.615+00', '{"cached":null,"ignore_cache":false}'), +(55765, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:39.963+00', '{"cached":null,"ignore_cache":false}'), +(55766, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.032+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55767, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.401+00', '{"cached":null,"ignore_cache":false}'), +(55768, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.855+00', '{"cached":null,"ignore_cache":false}'), +(55769, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:40.925+00', '{"cached":null,"ignore_cache":false}'), +(55770, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:41.078+00', '{"cached":null,"ignore_cache":false}'), +(55771, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:41.27+00', '{"cached":null,"ignore_cache":false}'), +(55772, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:41.693+00', '{"cached":null,"ignore_cache":false}'), +(55773, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:41.702+00', '{"cached":null,"ignore_cache":false}'), +(55774, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:41.848+00', '{"cached":null,"ignore_cache":false}'), +(55775, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:41.883+00', '{"cached":null,"ignore_cache":false}'), +(55776, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:41.978+00', '{"cached":null,"ignore_cache":false}'), +(55777, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:42.125+00', '{"cached":null,"ignore_cache":false}'), +(55778, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.002+00', '{"cached":null,"ignore_cache":false}'), +(55779, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.05+00', '{"cached":null,"ignore_cache":false}'), +(55780, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.053+00', '{"cached":null,"ignore_cache":false}'), +(55781, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.06+00', '{"cached":null,"ignore_cache":false}'), +(55782, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.179+00', '{"cached":null,"ignore_cache":false}'), +(55783, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.201+00', '{"cached":null,"ignore_cache":false}'), +(55784, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.562+00', '{"cached":null,"ignore_cache":false}'), +(55785, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.594+00', '{"cached":null,"ignore_cache":false}'), +(55786, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.645+00', '{"cached":null,"ignore_cache":false}'), +(55787, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.768+00', '{"cached":null,"ignore_cache":false}'), +(55788, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.83+00', '{"cached":null,"ignore_cache":false}'), +(55789, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:49:44.852+00', '{"cached":null,"ignore_cache":false}'), +(55790, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.053+00', '{"cached":null,"ignore_cache":false}'), +(55791, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.302+00', '{"cached":null,"ignore_cache":false}'), +(55792, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.349+00', '{"cached":null,"ignore_cache":false}'), +(55793, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.489+00', '{"cached":null,"ignore_cache":false}'), +(55794, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.729+00', '{"cached":null,"ignore_cache":false}'), +(55795, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.742+00', '{"cached":null,"ignore_cache":false}'), +(55796, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.872+00', '{"cached":null,"ignore_cache":false}'), +(55797, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.89+00', '{"cached":null,"ignore_cache":false}'), +(55798, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:42.991+00', '{"cached":null,"ignore_cache":false}'), +(55799, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:43.016+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55800, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:43.038+00', '{"cached":null,"ignore_cache":false}'), +(55801, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:43.071+00', '{"cached":null,"ignore_cache":false}'), +(55802, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:43.093+00', '{"cached":null,"ignore_cache":false}'), +(55803, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:43.106+00', '{"cached":null,"ignore_cache":false}'), +(55804, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:43.49+00', '{"cached":null,"ignore_cache":false}'), +(55805, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:43.547+00', '{"cached":null,"ignore_cache":false}'), +(55806, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:45.093+00', '{"cached":null,"ignore_cache":false}'), +(55807, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:45.134+00', '{"cached":null,"ignore_cache":false}'), +(55808, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:45.176+00', '{"cached":null,"ignore_cache":false}'), +(55809, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:45.191+00', '{"cached":null,"ignore_cache":false}'), +(55810, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:45.239+00', '{"cached":null,"ignore_cache":false}'), +(55811, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:45.257+00', '{"cached":null,"ignore_cache":false}'), +(55812, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.307+00', '{"cached":null,"ignore_cache":false}'), +(55813, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.311+00', '{"cached":null,"ignore_cache":false}'), +(55814, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.565+00', '{"cached":null,"ignore_cache":false}'), +(55815, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.57+00', '{"cached":null,"ignore_cache":false}'), +(55816, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.62+00', '{"cached":null,"ignore_cache":false}'), +(55817, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.633+00', '{"cached":null,"ignore_cache":false}'), +(55818, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.642+00', '{"cached":null,"ignore_cache":false}'), +(55819, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:46.687+00', '{"cached":null,"ignore_cache":false}'), +(55820, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:47.026+00', '{"cached":null,"ignore_cache":false}'), +(55821, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:50:47.032+00', '{"cached":null,"ignore_cache":false}'), +(55822, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.46+00', '{"cached":null,"ignore_cache":false}'), +(55823, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.479+00', '{"cached":null,"ignore_cache":false}'), +(55824, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.519+00', '{"cached":null,"ignore_cache":false}'), +(55825, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.572+00', '{"cached":null,"ignore_cache":false}'), +(55826, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:45.662+00', '{"cached":null,"ignore_cache":false}'), +(55827, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.065+00', '{"cached":null,"ignore_cache":false}'), +(55828, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.274+00', '{"cached":null,"ignore_cache":false}'), +(55829, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.274+00', '{"cached":null,"ignore_cache":false}'), +(55830, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.356+00', '{"cached":null,"ignore_cache":false}'), +(55831, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.357+00', '{"cached":null,"ignore_cache":false}'), +(55832, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.364+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55833, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:46.669+00', '{"cached":null,"ignore_cache":false}'), +(55834, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.812+00', '{"cached":null,"ignore_cache":false}'), +(55835, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.928+00', '{"cached":null,"ignore_cache":false}'), +(55836, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:48.985+00', '{"cached":null,"ignore_cache":false}'), +(55837, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.189+00', '{"cached":null,"ignore_cache":false}'), +(55838, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.309+00', '{"cached":null,"ignore_cache":false}'), +(55839, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.353+00', '{"cached":null,"ignore_cache":false}'), +(55840, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.394+00', '{"cached":null,"ignore_cache":false}'), +(55841, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.397+00', '{"cached":null,"ignore_cache":false}'), +(55842, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.413+00', '{"cached":null,"ignore_cache":false}'), +(55843, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.582+00', '{"cached":null,"ignore_cache":false}'), +(55844, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:49.756+00', '{"cached":null,"ignore_cache":false}'), +(55845, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.589+00', '{"cached":null,"ignore_cache":false}'), +(55846, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.701+00', '{"cached":null,"ignore_cache":false}'), +(55847, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:50.861+00', '{"cached":null,"ignore_cache":false}'), +(55848, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:51.071+00', '{"cached":null,"ignore_cache":false}'), +(55849, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:51.289+00', '{"cached":null,"ignore_cache":false}'), +(55850, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:51.351+00', '{"cached":null,"ignore_cache":false}'), +(55851, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:51.427+00', '{"cached":null,"ignore_cache":false}'), +(55852, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:51.734+00', '{"cached":null,"ignore_cache":false}'), +(55853, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:51:51.743+00', '{"cached":null,"ignore_cache":false}'), +(55854, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.278+00', '{"cached":null,"ignore_cache":false}'), +(55855, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.546+00', '{"cached":null,"ignore_cache":false}'), +(55856, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.576+00', '{"cached":null,"ignore_cache":false}'), +(55857, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.64+00', '{"cached":null,"ignore_cache":false}'), +(55858, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.641+00', '{"cached":null,"ignore_cache":false}'), +(55859, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.796+00', '{"cached":null,"ignore_cache":false}'), +(55860, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.832+00', '{"cached":null,"ignore_cache":false}'), +(55861, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:30.845+00', '{"cached":null,"ignore_cache":false}'), +(55862, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.041+00', '{"cached":null,"ignore_cache":false}'), +(55863, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.208+00', '{"cached":null,"ignore_cache":false}'), +(55864, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.216+00', '{"cached":null,"ignore_cache":false}'), +(55865, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.26+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55866, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.393+00', '{"cached":null,"ignore_cache":false}'), +(55867, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:31.465+00', '{"cached":null,"ignore_cache":false}'), +(55868, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.006+00', '{"cached":null,"ignore_cache":false}'), +(55869, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.052+00', '{"cached":null,"ignore_cache":false}'), +(55870, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.155+00', '{"cached":null,"ignore_cache":false}'), +(55871, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.583+00', '{"cached":null,"ignore_cache":false}'), +(55872, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:32.603+00', '{"cached":null,"ignore_cache":false}'), +(55873, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.35+00', '{"cached":null,"ignore_cache":false}'), +(55874, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.679+00', '{"cached":null,"ignore_cache":false}'), +(55875, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:33.964+00', '{"cached":null,"ignore_cache":false}'), +(55876, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:34.012+00', '{"cached":null,"ignore_cache":false}'), +(55877, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:34.122+00', '{"cached":null,"ignore_cache":false}'), +(55878, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:34.216+00', '{"cached":null,"ignore_cache":false}'), +(55879, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:34.435+00', '{"cached":null,"ignore_cache":false}'), +(55880, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:52:34.508+00', '{"cached":null,"ignore_cache":false}'), +(55881, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.83+00', '{"cached":null,"ignore_cache":false}'), +(55882, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:52.869+00', '{"cached":null,"ignore_cache":false}'), +(55883, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.013+00', '{"cached":null,"ignore_cache":false}'), +(55884, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.033+00', '{"cached":null,"ignore_cache":false}'), +(55885, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.175+00', '{"cached":null,"ignore_cache":false}'), +(55886, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.227+00', '{"cached":null,"ignore_cache":false}'), +(55887, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.408+00', '{"cached":null,"ignore_cache":false}'), +(55888, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.465+00', '{"cached":null,"ignore_cache":false}'), +(55889, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.533+00', '{"cached":null,"ignore_cache":false}'), +(55890, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.701+00', '{"cached":null,"ignore_cache":false}'), +(55891, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:53.991+00', '{"cached":null,"ignore_cache":false}'), +(55892, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.057+00', '{"cached":null,"ignore_cache":false}'), +(55893, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.501+00', '{"cached":null,"ignore_cache":false}'), +(55894, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.614+00', '{"cached":null,"ignore_cache":false}'), +(55895, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.645+00', '{"cached":null,"ignore_cache":false}'), +(55896, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:54.966+00', '{"cached":null,"ignore_cache":false}'), +(55897, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.122+00', '{"cached":null,"ignore_cache":false}'), +(55898, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.157+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55899, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.188+00', '{"cached":null,"ignore_cache":false}'), +(55900, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.241+00', '{"cached":null,"ignore_cache":false}'), +(55901, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.341+00', '{"cached":null,"ignore_cache":false}'), +(55902, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.483+00', '{"cached":null,"ignore_cache":false}'), +(55903, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.616+00', '{"cached":null,"ignore_cache":false}'), +(55904, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.632+00', '{"cached":null,"ignore_cache":false}'), +(55905, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.763+00', '{"cached":null,"ignore_cache":false}'), +(55906, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.797+00', '{"cached":null,"ignore_cache":false}'), +(55907, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:55.836+00', '{"cached":null,"ignore_cache":false}'), +(55908, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:56.164+00', '{"cached":null,"ignore_cache":false}'), +(55909, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:53:56.185+00', '{"cached":null,"ignore_cache":false}'), +(55910, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.065+00', '{"cached":null,"ignore_cache":false}'), +(55911, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.162+00', '{"cached":null,"ignore_cache":false}'), +(55912, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.229+00', '{"cached":null,"ignore_cache":false}'), +(55913, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.263+00', '{"cached":null,"ignore_cache":false}'), +(55914, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.287+00', '{"cached":null,"ignore_cache":false}'), +(55915, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.33+00', '{"cached":null,"ignore_cache":false}'), +(55916, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.442+00', '{"cached":null,"ignore_cache":false}'), +(55917, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.513+00', '{"cached":null,"ignore_cache":false}'), +(55918, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.745+00', '{"cached":null,"ignore_cache":false}'), +(55919, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:54:03.911+00', '{"cached":null,"ignore_cache":false}'), +(55920, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.289+00', '{"cached":null,"ignore_cache":false}'), +(55921, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.373+00', '{"cached":null,"ignore_cache":false}'), +(55922, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.399+00', '{"cached":null,"ignore_cache":false}'), +(55923, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.619+00', '{"cached":null,"ignore_cache":false}'), +(55924, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.625+00', '{"cached":null,"ignore_cache":false}'), +(55925, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.675+00', '{"cached":null,"ignore_cache":false}'), +(55926, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.696+00', '{"cached":null,"ignore_cache":false}'), +(55927, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.698+00', '{"cached":null,"ignore_cache":false}'), +(55928, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.955+00', '{"cached":null,"ignore_cache":false}'), +(55929, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:02.993+00', '{"cached":null,"ignore_cache":false}'), +(55930, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.39+00', '{"cached":null,"ignore_cache":false}'), +(55931, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.472+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55932, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.488+00', '{"cached":null,"ignore_cache":false}'), +(55933, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.498+00', '{"cached":null,"ignore_cache":false}'), +(55934, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.553+00', '{"cached":null,"ignore_cache":false}'), +(55935, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:03.578+00', '{"cached":null,"ignore_cache":false}'), +(55936, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.382+00', '{"cached":null,"ignore_cache":false}'), +(55937, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.444+00', '{"cached":null,"ignore_cache":false}'), +(55938, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.807+00', '{"cached":null,"ignore_cache":false}'), +(55939, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.885+00', '{"cached":null,"ignore_cache":false}'), +(55940, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:41.89+00', '{"cached":null,"ignore_cache":false}'), +(55941, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.075+00', '{"cached":null,"ignore_cache":false}'), +(55942, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.135+00', '{"cached":null,"ignore_cache":false}'), +(55943, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.313+00', '{"cached":null,"ignore_cache":false}'), +(55944, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.423+00', '{"cached":null,"ignore_cache":false}'), +(55945, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.429+00', '{"cached":null,"ignore_cache":false}'), +(55946, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.615+00', '{"cached":null,"ignore_cache":false}'), +(55947, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.63+00', '{"cached":null,"ignore_cache":false}'), +(55948, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.684+00', '{"cached":null,"ignore_cache":false}'), +(55949, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.705+00', '{"cached":null,"ignore_cache":false}'), +(55950, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:42.912+00', '{"cached":null,"ignore_cache":false}'), +(55951, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:55:43.019+00', '{"cached":null,"ignore_cache":false}'), +(55952, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.918+00', '{"cached":null,"ignore_cache":false}'), +(55953, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:43.965+00', '{"cached":null,"ignore_cache":false}'), +(55954, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:44.012+00', '{"cached":null,"ignore_cache":false}'), +(55955, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:44.021+00', '{"cached":null,"ignore_cache":false}'), +(55956, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:44.162+00', '{"cached":null,"ignore_cache":false}'), +(55957, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:44.19+00', '{"cached":null,"ignore_cache":false}'), +(55958, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.891+00', '{"cached":null,"ignore_cache":false}'), +(55959, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:45.904+00', '{"cached":null,"ignore_cache":false}'), +(55960, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.016+00', '{"cached":null,"ignore_cache":false}'), +(55961, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.069+00', '{"cached":null,"ignore_cache":false}'), +(55962, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.112+00', '{"cached":null,"ignore_cache":false}'), +(55963, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.127+00', '{"cached":null,"ignore_cache":false}'), +(55964, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.206+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55965, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.227+00', '{"cached":null,"ignore_cache":false}'), +(55966, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.378+00', '{"cached":null,"ignore_cache":false}'), +(55967, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:56:46.459+00', '{"cached":null,"ignore_cache":false}'), +(55968, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.908+00', '{"cached":null,"ignore_cache":false}'), +(55969, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.945+00', '{"cached":null,"ignore_cache":false}'), +(55970, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:19.98+00', '{"cached":null,"ignore_cache":false}'), +(55971, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.014+00', '{"cached":null,"ignore_cache":false}'), +(55972, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.037+00', '{"cached":null,"ignore_cache":false}'), +(55973, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:20.044+00', '{"cached":null,"ignore_cache":false}'), +(55974, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.236+00', '{"cached":null,"ignore_cache":false}'), +(55975, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.287+00', '{"cached":null,"ignore_cache":false}'), +(55976, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.314+00', '{"cached":null,"ignore_cache":false}'), +(55977, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.471+00', '{"cached":null,"ignore_cache":false}'), +(55978, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.482+00', '{"cached":null,"ignore_cache":false}'), +(55979, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.521+00', '{"cached":null,"ignore_cache":false}'), +(55980, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.571+00', '{"cached":null,"ignore_cache":false}'), +(55981, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.59+00', '{"cached":null,"ignore_cache":false}'), +(55982, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.626+00', '{"cached":null,"ignore_cache":false}'), +(55983, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 14:59:21.813+00', '{"cached":null,"ignore_cache":false}'), +(55984, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.613+00', '{"cached":null,"ignore_cache":false}'), +(55985, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.862+00', '{"cached":null,"ignore_cache":false}'), +(55986, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:10.98+00', '{"cached":null,"ignore_cache":false}'), +(55987, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.188+00', '{"cached":null,"ignore_cache":false}'), +(55988, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.438+00', '{"cached":null,"ignore_cache":false}'), +(55989, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.439+00', '{"cached":null,"ignore_cache":false}'), +(55990, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.473+00', '{"cached":null,"ignore_cache":false}'), +(55991, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:11.632+00', '{"cached":null,"ignore_cache":false}'), +(55992, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:12.373+00', '{"cached":null,"ignore_cache":false}'), +(55993, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:12.541+00', '{"cached":null,"ignore_cache":false}'), +(55994, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:12.59+00', '{"cached":null,"ignore_cache":false}'), +(55995, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:12.673+00', '{"cached":null,"ignore_cache":false}'), +(55996, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:12.696+00', '{"cached":null,"ignore_cache":false}'), +(55997, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:12.793+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(55998, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.119+00', '{"cached":null,"ignore_cache":false}'), +(55999, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.183+00', '{"cached":null,"ignore_cache":false}'), +(56000, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.232+00', '{"cached":null,"ignore_cache":false}'), +(56001, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.235+00', '{"cached":null,"ignore_cache":false}'), +(56002, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.548+00', '{"cached":null,"ignore_cache":false}'), +(56003, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:13.614+00', '{"cached":null,"ignore_cache":false}'), +(56004, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:14.065+00', '{"cached":null,"ignore_cache":false}'), +(56005, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:14.248+00', '{"cached":null,"ignore_cache":false}'), +(56006, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:14.349+00', '{"cached":null,"ignore_cache":false}'), +(56007, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:14.373+00', '{"cached":null,"ignore_cache":false}'), +(56008, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:14.441+00', '{"cached":null,"ignore_cache":false}'), +(56009, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:14.457+00', '{"cached":null,"ignore_cache":false}'), +(56010, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.764+00', '{"cached":null,"ignore_cache":false}'), +(56011, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.769+00', '{"cached":null,"ignore_cache":false}'), +(56012, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:41.998+00', '{"cached":null,"ignore_cache":false}'), +(56013, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.04+00', '{"cached":null,"ignore_cache":false}'), +(56014, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.135+00', '{"cached":null,"ignore_cache":false}'), +(56015, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.155+00', '{"cached":null,"ignore_cache":false}'), +(56016, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.321+00', '{"cached":null,"ignore_cache":false}'), +(56017, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.45+00', '{"cached":null,"ignore_cache":false}'), +(56018, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.523+00', '{"cached":null,"ignore_cache":false}'), +(56019, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.559+00', '{"cached":null,"ignore_cache":false}'), +(56020, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.659+00', '{"cached":null,"ignore_cache":false}'), +(56021, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.693+00', '{"cached":null,"ignore_cache":false}'), +(56022, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.714+00', '{"cached":null,"ignore_cache":false}'), +(56023, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.736+00', '{"cached":null,"ignore_cache":false}'), +(56024, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:42.904+00', '{"cached":null,"ignore_cache":false}'), +(56025, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:00:43.022+00', '{"cached":null,"ignore_cache":false}'), +(56026, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.76+00', '{"cached":null,"ignore_cache":false}'), +(56027, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.873+00', '{"cached":null,"ignore_cache":false}'), +(56028, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.879+00', '{"cached":null,"ignore_cache":false}'), +(56029, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.936+00', '{"cached":null,"ignore_cache":false}'), +(56030, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.949+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56031, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:50.993+00', '{"cached":null,"ignore_cache":false}'), +(56032, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.361+00', '{"cached":null,"ignore_cache":false}'), +(56033, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.438+00', '{"cached":null,"ignore_cache":false}'), +(56034, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.572+00', '{"cached":null,"ignore_cache":false}'), +(56035, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.607+00', '{"cached":null,"ignore_cache":false}'), +(56036, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.638+00', '{"cached":null,"ignore_cache":false}'), +(56037, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.813+00', '{"cached":null,"ignore_cache":false}'), +(56038, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.863+00', '{"cached":null,"ignore_cache":false}'), +(56039, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:52.878+00', '{"cached":null,"ignore_cache":false}'), +(56040, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:53.078+00', '{"cached":null,"ignore_cache":false}'), +(56041, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:01:53.153+00', '{"cached":null,"ignore_cache":false}'), +(56042, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.172+00', '{"cached":null,"ignore_cache":false}'), +(56043, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.269+00', '{"cached":null,"ignore_cache":false}'), +(56044, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.288+00', '{"cached":null,"ignore_cache":false}'), +(56045, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.382+00', '{"cached":null,"ignore_cache":false}'), +(56046, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.437+00', '{"cached":null,"ignore_cache":false}'), +(56047, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:52.476+00', '{"cached":null,"ignore_cache":false}'), +(56048, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.142+00', '{"cached":null,"ignore_cache":false}'), +(56049, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.241+00', '{"cached":null,"ignore_cache":false}'), +(56050, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.243+00', '{"cached":null,"ignore_cache":false}'), +(56051, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.259+00', '{"cached":null,"ignore_cache":false}'), +(56052, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.273+00', '{"cached":null,"ignore_cache":false}'), +(56053, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:53.323+00', '{"cached":null,"ignore_cache":false}'), +(56054, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.236+00', '{"cached":null,"ignore_cache":false}'), +(56055, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.256+00', '{"cached":null,"ignore_cache":false}'), +(56056, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:54.284+00', '{"cached":null,"ignore_cache":false}'), +(56057, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.026+00', '{"cached":null,"ignore_cache":false}'), +(56058, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.216+00', '{"cached":null,"ignore_cache":false}'), +(56059, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.237+00', '{"cached":null,"ignore_cache":false}'), +(56060, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.557+00', '{"cached":null,"ignore_cache":false}'), +(56061, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.819+00', '{"cached":null,"ignore_cache":false}'), +(56062, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.824+00', '{"cached":null,"ignore_cache":false}'), +(56063, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.829+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56064, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:55.849+00', '{"cached":null,"ignore_cache":false}'), +(56065, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:56.131+00', '{"cached":null,"ignore_cache":false}'), +(56066, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:56.187+00', '{"cached":null,"ignore_cache":false}'), +(56067, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:56.513+00', '{"cached":null,"ignore_cache":false}'), +(56068, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:56.535+00', '{"cached":null,"ignore_cache":false}'), +(56069, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:56.556+00', '{"cached":null,"ignore_cache":false}'), +(56070, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:02:56.771+00', '{"cached":null,"ignore_cache":false}'), +(56071, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.147+00', '{"cached":null,"ignore_cache":false}'), +(56072, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.171+00', '{"cached":null,"ignore_cache":false}'), +(56073, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.259+00', '{"cached":null,"ignore_cache":false}'), +(56074, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.328+00', '{"cached":null,"ignore_cache":false}'), +(56075, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.447+00', '{"cached":null,"ignore_cache":false}'), +(56076, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.545+00', '{"cached":null,"ignore_cache":false}'), +(56077, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.559+00', '{"cached":null,"ignore_cache":false}'), +(56078, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.6+00', '{"cached":null,"ignore_cache":false}'), +(56079, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.854+00', '{"cached":null,"ignore_cache":false}'), +(56080, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:49.883+00', '{"cached":null,"ignore_cache":false}'), +(56081, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.07+00', '{"cached":null,"ignore_cache":false}'), +(56082, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.124+00', '{"cached":null,"ignore_cache":false}'), +(56083, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.218+00', '{"cached":null,"ignore_cache":false}'), +(56084, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.392+00', '{"cached":null,"ignore_cache":false}'), +(56085, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.495+00', '{"cached":null,"ignore_cache":false}'), +(56086, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.545+00', '{"cached":null,"ignore_cache":false}'), +(56087, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.653+00', '{"cached":null,"ignore_cache":false}'), +(56088, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.778+00', '{"cached":null,"ignore_cache":false}'), +(56089, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:50.794+00', '{"cached":null,"ignore_cache":false}'), +(56090, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.061+00', '{"cached":null,"ignore_cache":false}'), +(56091, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.148+00', '{"cached":null,"ignore_cache":false}'), +(56092, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.558+00', '{"cached":null,"ignore_cache":false}'), +(56093, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.63+00', '{"cached":null,"ignore_cache":false}'), +(56094, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.745+00', '{"cached":null,"ignore_cache":false}'), +(56095, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.838+00', '{"cached":null,"ignore_cache":false}'), +(56096, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.96+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56097, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:51.983+00', '{"cached":null,"ignore_cache":false}'), +(56098, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:52.057+00', '{"cached":null,"ignore_cache":false}'), +(56099, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:52.216+00', '{"cached":null,"ignore_cache":false}'), +(56100, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:03:52.305+00', '{"cached":null,"ignore_cache":false}'), +(56101, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.644+00', '{"cached":null,"ignore_cache":false}'), +(56102, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.71+00', '{"cached":null,"ignore_cache":false}'), +(56103, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.828+00', '{"cached":null,"ignore_cache":false}'), +(56104, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.923+00', '{"cached":null,"ignore_cache":false}'), +(56105, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:10.985+00', '{"cached":null,"ignore_cache":false}'), +(56106, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.029+00', '{"cached":null,"ignore_cache":false}'), +(56107, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.031+00', '{"cached":null,"ignore_cache":false}'), +(56108, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.09+00', '{"cached":null,"ignore_cache":false}'), +(56109, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.168+00', '{"cached":null,"ignore_cache":false}'), +(56110, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.235+00', '{"cached":null,"ignore_cache":false}'), +(56111, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.284+00', '{"cached":null,"ignore_cache":false}'), +(56112, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.453+00', '{"cached":null,"ignore_cache":false}'), +(56113, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:11.766+00', '{"cached":null,"ignore_cache":false}'), +(56114, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.277+00', '{"cached":null,"ignore_cache":false}'), +(56115, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.692+00', '{"cached":null,"ignore_cache":false}'), +(56116, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.831+00', '{"cached":null,"ignore_cache":false}'), +(56117, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.889+00', '{"cached":null,"ignore_cache":false}'), +(56118, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:12.997+00', '{"cached":null,"ignore_cache":false}'), +(56119, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.008+00', '{"cached":null,"ignore_cache":false}'), +(56120, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.088+00', '{"cached":null,"ignore_cache":false}'), +(56121, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.348+00', '{"cached":null,"ignore_cache":false}'), +(56122, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.512+00', '{"cached":null,"ignore_cache":false}'), +(56123, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.573+00', '{"cached":null,"ignore_cache":false}'), +(56124, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:13.595+00', '{"cached":null,"ignore_cache":false}'), +(56125, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.124+00', '{"cached":null,"ignore_cache":false}'), +(56126, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.148+00', '{"cached":null,"ignore_cache":false}'), +(56127, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.216+00', '{"cached":null,"ignore_cache":false}'), +(56128, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.292+00', '{"cached":null,"ignore_cache":false}'), +(56129, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.421+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56130, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.454+00', '{"cached":null,"ignore_cache":false}'), +(56131, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.465+00', '{"cached":null,"ignore_cache":false}'), +(56132, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:04:14.531+00', '{"cached":null,"ignore_cache":false}'), +(56133, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.174+00', '{"cached":null,"ignore_cache":false}'), +(56134, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.402+00', '{"cached":null,"ignore_cache":false}'), +(56135, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.42+00', '{"cached":null,"ignore_cache":false}'), +(56136, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.626+00', '{"cached":null,"ignore_cache":false}'), +(56137, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.628+00', '{"cached":null,"ignore_cache":false}'), +(56138, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.667+00', '{"cached":null,"ignore_cache":false}'), +(56139, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.707+00', '{"cached":null,"ignore_cache":false}'), +(56140, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:19.727+00', '{"cached":null,"ignore_cache":false}'), +(56141, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:20.125+00', '{"cached":null,"ignore_cache":false}'), +(56142, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:20.143+00', '{"cached":null,"ignore_cache":false}'), +(56143, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.755+00', '{"cached":null,"ignore_cache":false}'), +(56144, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.859+00', '{"cached":null,"ignore_cache":false}'), +(56145, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.867+00', '{"cached":null,"ignore_cache":false}'), +(56146, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.88+00', '{"cached":null,"ignore_cache":false}'), +(56147, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.907+00', '{"cached":null,"ignore_cache":false}'), +(56148, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:21.916+00', '{"cached":null,"ignore_cache":false}'), +(56149, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.205+00', '{"cached":null,"ignore_cache":false}'), +(56150, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.303+00', '{"cached":null,"ignore_cache":false}'), +(56151, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.422+00', '{"cached":null,"ignore_cache":false}'), +(56152, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.554+00', '{"cached":null,"ignore_cache":false}'), +(56153, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.65+00', '{"cached":null,"ignore_cache":false}'), +(56154, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.674+00', '{"cached":null,"ignore_cache":false}'), +(56155, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.693+00', '{"cached":null,"ignore_cache":false}'), +(56156, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.75+00', '{"cached":null,"ignore_cache":false}'), +(56157, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:26.769+00', '{"cached":null,"ignore_cache":false}'), +(56158, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.195+00', '{"cached":null,"ignore_cache":false}'), +(56159, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.202+00', '{"cached":null,"ignore_cache":false}'), +(56160, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.264+00', '{"cached":null,"ignore_cache":false}'), +(56161, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.538+00', '{"cached":null,"ignore_cache":false}'), +(56162, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.588+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56163, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:27.765+00', '{"cached":null,"ignore_cache":false}'), +(56164, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:28.015+00', '{"cached":null,"ignore_cache":false}'), +(56165, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:28.073+00', '{"cached":null,"ignore_cache":false}'), +(56166, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:28.086+00', '{"cached":null,"ignore_cache":false}'), +(56167, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:28.28+00', '{"cached":null,"ignore_cache":false}'), +(56168, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:28.441+00', '{"cached":null,"ignore_cache":false}'), +(56169, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:29.987+00', '{"cached":null,"ignore_cache":false}'), +(56170, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.599+00', '{"cached":null,"ignore_cache":false}'), +(56171, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.693+00', '{"cached":null,"ignore_cache":false}'), +(56172, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.695+00', '{"cached":null,"ignore_cache":false}'), +(56173, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.751+00', '{"cached":null,"ignore_cache":false}'), +(56174, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.885+00', '{"cached":null,"ignore_cache":false}'), +(56175, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.894+00', '{"cached":null,"ignore_cache":false}'), +(56176, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:41.992+00', '{"cached":null,"ignore_cache":false}'), +(56177, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.03+00', '{"cached":null,"ignore_cache":false}'), +(56178, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.134+00', '{"cached":null,"ignore_cache":false}'), +(56179, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.143+00', '{"cached":null,"ignore_cache":false}'), +(56180, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.308+00', '{"cached":null,"ignore_cache":false}'), +(56181, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.318+00', '{"cached":null,"ignore_cache":false}'), +(56182, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.328+00', '{"cached":null,"ignore_cache":false}'), +(56183, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.337+00', '{"cached":null,"ignore_cache":false}'), +(56184, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.668+00', '{"cached":null,"ignore_cache":false}'), +(56185, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:05:42.686+00', '{"cached":null,"ignore_cache":false}'), +(56186, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.127+00', '{"cached":null,"ignore_cache":false}'), +(56187, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.196+00', '{"cached":null,"ignore_cache":false}'), +(56188, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.445+00', '{"cached":null,"ignore_cache":false}'), +(56189, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.524+00', '{"cached":null,"ignore_cache":false}'), +(56190, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.681+00', '{"cached":null,"ignore_cache":false}'), +(56191, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.731+00', '{"cached":null,"ignore_cache":false}'), +(56192, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.755+00', '{"cached":null,"ignore_cache":false}'), +(56193, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:00.819+00', '{"cached":null,"ignore_cache":false}'), +(56194, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.023+00', '{"cached":null,"ignore_cache":false}'), +(56195, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.136+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56196, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.165+00', '{"cached":null,"ignore_cache":false}'), +(56197, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.225+00', '{"cached":null,"ignore_cache":false}'), +(56198, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.28+00', '{"cached":null,"ignore_cache":false}'), +(56199, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.288+00', '{"cached":null,"ignore_cache":false}'), +(56200, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.309+00', '{"cached":null,"ignore_cache":false}'), +(56201, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.34+00', '{"cached":null,"ignore_cache":false}'), +(56202, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:01.399+00', '{"cached":null,"ignore_cache":false}'), +(56203, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.085+00', '{"cached":null,"ignore_cache":false}'), +(56204, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.339+00', '{"cached":null,"ignore_cache":false}'), +(56205, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.378+00', '{"cached":null,"ignore_cache":false}'), +(56206, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.521+00', '{"cached":null,"ignore_cache":false}'), +(56207, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.559+00', '{"cached":null,"ignore_cache":false}'), +(56208, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.621+00', '{"cached":null,"ignore_cache":false}'), +(56209, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.755+00', '{"cached":null,"ignore_cache":false}'), +(56210, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.926+00', '{"cached":null,"ignore_cache":false}'), +(56211, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.959+00', '{"cached":null,"ignore_cache":false}'), +(56212, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:02.986+00', '{"cached":null,"ignore_cache":false}'), +(56213, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.004+00', '{"cached":null,"ignore_cache":false}'), +(56214, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.029+00', '{"cached":null,"ignore_cache":false}'), +(56215, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.066+00', '{"cached":null,"ignore_cache":false}'), +(56216, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.08+00', '{"cached":null,"ignore_cache":false}'), +(56217, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.397+00', '{"cached":null,"ignore_cache":false}'), +(56218, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.879+00', '{"cached":null,"ignore_cache":false}'), +(56219, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:03.923+00', '{"cached":null,"ignore_cache":false}'), +(56220, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.066+00', '{"cached":null,"ignore_cache":false}'), +(56221, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.149+00', '{"cached":null,"ignore_cache":false}'), +(56222, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.189+00', '{"cached":null,"ignore_cache":false}'), +(56223, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.242+00', '{"cached":null,"ignore_cache":false}'), +(56224, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.294+00', '{"cached":null,"ignore_cache":false}'), +(56225, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.644+00', '{"cached":null,"ignore_cache":false}'), +(56226, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:04.787+00', '{"cached":null,"ignore_cache":false}'), +(56227, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:05.019+00', '{"cached":null,"ignore_cache":false}'), +(56228, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:05.333+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56229, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:05.401+00', '{"cached":null,"ignore_cache":false}'), +(56230, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:05.501+00', '{"cached":null,"ignore_cache":false}'), +(56231, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:05.855+00', '{"cached":null,"ignore_cache":false}'), +(56232, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:05.872+00', '{"cached":null,"ignore_cache":false}'), +(56233, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:05.924+00', '{"cached":null,"ignore_cache":false}'), +(56234, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:06.046+00', '{"cached":null,"ignore_cache":false}'), +(56235, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:06.297+00', '{"cached":null,"ignore_cache":false}'), +(56236, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:06:06.496+00', '{"cached":null,"ignore_cache":false}'), +(56237, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.639+00', '{"cached":null,"ignore_cache":false}'), +(56238, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.775+00', '{"cached":null,"ignore_cache":false}'), +(56239, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.885+00', '{"cached":null,"ignore_cache":false}'), +(56240, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.921+00', '{"cached":null,"ignore_cache":false}'), +(56241, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:45.951+00', '{"cached":null,"ignore_cache":false}'), +(56242, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.06+00', '{"cached":null,"ignore_cache":false}'), +(56243, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.09+00', '{"cached":null,"ignore_cache":false}'), +(56244, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.112+00', '{"cached":null,"ignore_cache":false}'), +(56245, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.545+00', '{"cached":null,"ignore_cache":false}'), +(56246, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:46.92+00', '{"cached":null,"ignore_cache":false}'), +(56247, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.17+00', '{"cached":null,"ignore_cache":false}'), +(56248, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.215+00', '{"cached":null,"ignore_cache":false}'), +(56249, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.436+00', '{"cached":null,"ignore_cache":false}'), +(56250, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.463+00', '{"cached":null,"ignore_cache":false}'), +(56251, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.635+00', '{"cached":null,"ignore_cache":false}'), +(56252, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.714+00', '{"cached":null,"ignore_cache":false}'), +(56253, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:47.912+00', '{"cached":null,"ignore_cache":false}'), +(56254, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.026+00', '{"cached":null,"ignore_cache":false}'), +(56255, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.041+00', '{"cached":null,"ignore_cache":false}'), +(56256, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.21+00', '{"cached":null,"ignore_cache":false}'), +(56257, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.256+00', '{"cached":null,"ignore_cache":false}'), +(56258, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.288+00', '{"cached":null,"ignore_cache":false}'), +(56259, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.324+00', '{"cached":null,"ignore_cache":false}'), +(56260, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.373+00', '{"cached":null,"ignore_cache":false}'), +(56261, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.397+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56262, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.485+00', '{"cached":null,"ignore_cache":false}'), +(56263, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.621+00', '{"cached":null,"ignore_cache":false}'), +(56264, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.655+00', '{"cached":null,"ignore_cache":false}'), +(56265, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.67+00', '{"cached":null,"ignore_cache":false}'), +(56266, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:48.792+00', '{"cached":null,"ignore_cache":false}'), +(56267, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:07:49.001+00', '{"cached":null,"ignore_cache":false}'), +(56268, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.365+00', '{"cached":null,"ignore_cache":false}'), +(56269, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.555+00', '{"cached":null,"ignore_cache":false}'), +(56270, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.677+00', '{"cached":null,"ignore_cache":false}'), +(56271, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.908+00', '{"cached":null,"ignore_cache":false}'), +(56272, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:35.925+00', '{"cached":null,"ignore_cache":false}'), +(56273, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.204+00', '{"cached":null,"ignore_cache":false}'), +(56274, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.363+00', '{"cached":null,"ignore_cache":false}'), +(56275, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.65+00', '{"cached":null,"ignore_cache":false}'), +(56276, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.72+00', '{"cached":null,"ignore_cache":false}'), +(56277, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.897+00', '{"cached":null,"ignore_cache":false}'), +(56278, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:36.97+00', '{"cached":null,"ignore_cache":false}'), +(56279, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.084+00', '{"cached":null,"ignore_cache":false}'), +(56280, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.2+00', '{"cached":null,"ignore_cache":false}'), +(56281, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.473+00', '{"cached":null,"ignore_cache":false}'), +(56282, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.482+00', '{"cached":null,"ignore_cache":false}'), +(56283, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.733+00', '{"cached":null,"ignore_cache":false}'), +(56284, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.777+00', '{"cached":null,"ignore_cache":false}'), +(56285, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:37.893+00', '{"cached":null,"ignore_cache":false}'), +(56286, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.03+00', '{"cached":null,"ignore_cache":false}'), +(56287, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.241+00', '{"cached":null,"ignore_cache":false}'), +(56288, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.293+00', '{"cached":null,"ignore_cache":false}'), +(56289, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.307+00', '{"cached":null,"ignore_cache":false}'), +(56290, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.508+00', '{"cached":null,"ignore_cache":false}'), +(56291, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.633+00', '{"cached":null,"ignore_cache":false}'), +(56292, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.66+00', '{"cached":null,"ignore_cache":false}'), +(56293, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.733+00', '{"cached":null,"ignore_cache":false}'), +(56294, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.74+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56295, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:38.85+00', '{"cached":null,"ignore_cache":false}'), +(56296, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:08:39.002+00', '{"cached":null,"ignore_cache":false}'), +(56297, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:33.989+00', '{"cached":null,"ignore_cache":false}'), +(56298, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.009+00', '{"cached":null,"ignore_cache":false}'), +(56299, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.135+00', '{"cached":null,"ignore_cache":false}'), +(56300, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.152+00', '{"cached":null,"ignore_cache":false}'), +(56301, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.156+00', '{"cached":null,"ignore_cache":false}'), +(56302, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.21+00', '{"cached":null,"ignore_cache":false}'), +(56303, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:34.972+00', '{"cached":null,"ignore_cache":false}'), +(56304, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.023+00', '{"cached":null,"ignore_cache":false}'), +(56305, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.119+00', '{"cached":null,"ignore_cache":false}'), +(56306, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.183+00', '{"cached":null,"ignore_cache":false}'), +(56307, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.201+00', '{"cached":null,"ignore_cache":false}'), +(56308, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.345+00', '{"cached":null,"ignore_cache":false}'), +(56309, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.557+00', '{"cached":null,"ignore_cache":false}'), +(56310, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.645+00', '{"cached":null,"ignore_cache":false}'), +(56311, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.749+00', '{"cached":null,"ignore_cache":false}'), +(56312, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.75+00', '{"cached":null,"ignore_cache":false}'), +(56313, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:35.877+00', '{"cached":null,"ignore_cache":false}'), +(56314, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.032+00', '{"cached":null,"ignore_cache":false}'), +(56315, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.075+00', '{"cached":null,"ignore_cache":false}'), +(56316, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.094+00', '{"cached":null,"ignore_cache":false}'), +(56317, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.143+00', '{"cached":null,"ignore_cache":false}'), +(56318, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.35+00', '{"cached":null,"ignore_cache":false}'), +(56319, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.357+00', '{"cached":null,"ignore_cache":false}'), +(56320, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:36.725+00', '{"cached":null,"ignore_cache":false}'), +(56321, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.129+00', '{"cached":null,"ignore_cache":false}'), +(56322, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.135+00', '{"cached":null,"ignore_cache":false}'), +(56323, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.161+00', '{"cached":null,"ignore_cache":false}'), +(56324, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.205+00', '{"cached":null,"ignore_cache":false}'), +(56325, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.207+00', '{"cached":null,"ignore_cache":false}'), +(56326, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.357+00', '{"cached":null,"ignore_cache":false}'), +(56327, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.518+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56328, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:09:37.615+00', '{"cached":null,"ignore_cache":false}'), +(56329, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.548+00', '{"cached":null,"ignore_cache":false}'), +(56330, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.783+00', '{"cached":null,"ignore_cache":false}'), +(56331, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.845+00', '{"cached":null,"ignore_cache":false}'), +(56332, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:41.968+00', '{"cached":null,"ignore_cache":false}'), +(56333, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.012+00', '{"cached":null,"ignore_cache":false}'), +(56334, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.09+00', '{"cached":null,"ignore_cache":false}'), +(56335, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.191+00', '{"cached":null,"ignore_cache":false}'), +(56336, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.224+00', '{"cached":null,"ignore_cache":false}'), +(56337, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.293+00', '{"cached":null,"ignore_cache":false}'), +(56338, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.352+00', '{"cached":null,"ignore_cache":false}'), +(56339, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.378+00', '{"cached":null,"ignore_cache":false}'), +(56340, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.423+00', '{"cached":null,"ignore_cache":false}'), +(56341, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.466+00', '{"cached":null,"ignore_cache":false}'), +(56342, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.477+00', '{"cached":null,"ignore_cache":false}'), +(56343, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.545+00', '{"cached":null,"ignore_cache":false}'), +(56344, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:10:42.735+00', '{"cached":null,"ignore_cache":false}'), +(56345, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.284+00', '{"cached":null,"ignore_cache":false}'), +(56346, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.354+00', '{"cached":null,"ignore_cache":false}'), +(56347, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.405+00', '{"cached":null,"ignore_cache":false}'), +(56348, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.417+00', '{"cached":null,"ignore_cache":false}'), +(56349, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.898+00', '{"cached":null,"ignore_cache":false}'), +(56350, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:15.916+00', '{"cached":null,"ignore_cache":false}'), +(56351, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:16.059+00', '{"cached":null,"ignore_cache":false}'), +(56352, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:16.069+00', '{"cached":null,"ignore_cache":false}'), +(56353, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:16.106+00', '{"cached":null,"ignore_cache":false}'), +(56354, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:16.221+00', '{"cached":null,"ignore_cache":false}'), +(56355, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.555+00', '{"cached":null,"ignore_cache":false}'), +(56356, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.739+00', '{"cached":null,"ignore_cache":false}'), +(56357, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.77+00', '{"cached":null,"ignore_cache":false}'), +(56358, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.778+00', '{"cached":null,"ignore_cache":false}'), +(56359, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.916+00', '{"cached":null,"ignore_cache":false}'), +(56360, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:17.99+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56361, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.035+00', '{"cached":null,"ignore_cache":false}'), +(56362, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.151+00', '{"cached":null,"ignore_cache":false}'), +(56363, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.49+00', '{"cached":null,"ignore_cache":false}'), +(56364, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:18.505+00', '{"cached":null,"ignore_cache":false}'), +(56365, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.072+00', '{"cached":null,"ignore_cache":false}'), +(56366, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.184+00', '{"cached":null,"ignore_cache":false}'), +(56367, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.209+00', '{"cached":null,"ignore_cache":false}'), +(56368, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.246+00', '{"cached":null,"ignore_cache":false}'), +(56369, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.333+00', '{"cached":null,"ignore_cache":false}'), +(56370, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.356+00', '{"cached":null,"ignore_cache":false}'), +(56371, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:19.359+00', '{"cached":null,"ignore_cache":false}'), +(56372, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:20.299+00', '{"cached":null,"ignore_cache":false}'), +(56373, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:20.617+00', '{"cached":null,"ignore_cache":false}'), +(56374, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:11:20.62+00', '{"cached":null,"ignore_cache":false}'), +(56375, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.318+00', '{"cached":null,"ignore_cache":false}'), +(56376, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.506+00', '{"cached":null,"ignore_cache":false}'), +(56377, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.556+00', '{"cached":null,"ignore_cache":false}'), +(56378, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.658+00', '{"cached":null,"ignore_cache":false}'), +(56379, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.73+00', '{"cached":null,"ignore_cache":false}'), +(56380, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.792+00', '{"cached":null,"ignore_cache":false}'), +(56381, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.805+00', '{"cached":null,"ignore_cache":false}'), +(56382, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.825+00', '{"cached":null,"ignore_cache":false}'), +(56383, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:56.882+00', '{"cached":null,"ignore_cache":false}'), +(56384, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.281+00', '{"cached":null,"ignore_cache":false}'), +(56385, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.367+00', '{"cached":null,"ignore_cache":false}'), +(56386, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:57.873+00', '{"cached":null,"ignore_cache":false}'), +(56387, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.144+00', '{"cached":null,"ignore_cache":false}'), +(56388, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.356+00', '{"cached":null,"ignore_cache":false}'), +(56389, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.431+00', '{"cached":null,"ignore_cache":false}'), +(56390, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.481+00', '{"cached":null,"ignore_cache":false}'), +(56391, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.52+00', '{"cached":null,"ignore_cache":false}'), +(56392, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:58.622+00', '{"cached":null,"ignore_cache":false}'), +(56393, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.086+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56394, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.28+00', '{"cached":null,"ignore_cache":false}'), +(56395, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.454+00', '{"cached":null,"ignore_cache":false}'), +(56396, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.568+00', '{"cached":null,"ignore_cache":false}'), +(56397, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.673+00', '{"cached":null,"ignore_cache":false}'), +(56398, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.768+00', '{"cached":null,"ignore_cache":false}'), +(56399, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.782+00', '{"cached":null,"ignore_cache":false}'), +(56400, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.802+00', '{"cached":null,"ignore_cache":false}'), +(56401, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.812+00', '{"cached":null,"ignore_cache":false}'), +(56402, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.879+00', '{"cached":null,"ignore_cache":false}'), +(56403, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:12:59.98+00', '{"cached":null,"ignore_cache":false}'), +(56404, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.885+00', '{"cached":null,"ignore_cache":false}'), +(56405, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.928+00', '{"cached":null,"ignore_cache":false}'), +(56406, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:33.948+00', '{"cached":null,"ignore_cache":false}'), +(56407, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.162+00', '{"cached":null,"ignore_cache":false}'), +(56408, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.608+00', '{"cached":null,"ignore_cache":false}'), +(56409, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.679+00', '{"cached":null,"ignore_cache":false}'), +(56410, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.725+00', '{"cached":null,"ignore_cache":false}'), +(56411, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:34.857+00', '{"cached":null,"ignore_cache":false}'), +(56412, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.099+00', '{"cached":null,"ignore_cache":false}'), +(56413, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.101+00', '{"cached":null,"ignore_cache":false}'), +(56414, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.118+00', '{"cached":null,"ignore_cache":false}'), +(56415, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.243+00', '{"cached":null,"ignore_cache":false}'), +(56416, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.344+00', '{"cached":null,"ignore_cache":false}'), +(56417, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.518+00', '{"cached":null,"ignore_cache":false}'), +(56418, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.541+00', '{"cached":null,"ignore_cache":false}'), +(56419, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.55+00', '{"cached":null,"ignore_cache":false}'), +(56420, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.58+00', '{"cached":null,"ignore_cache":false}'), +(56421, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.753+00', '{"cached":null,"ignore_cache":false}'), +(56422, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.863+00', '{"cached":null,"ignore_cache":false}'), +(56423, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:35.97+00', '{"cached":null,"ignore_cache":false}'), +(56424, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:36.212+00', '{"cached":null,"ignore_cache":false}'), +(56425, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:36.337+00', '{"cached":null,"ignore_cache":false}'), +(56426, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:36.373+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56427, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:36.412+00', '{"cached":null,"ignore_cache":false}'), +(56428, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:36.668+00', '{"cached":null,"ignore_cache":false}'), +(56429, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:14:36.74+00', '{"cached":null,"ignore_cache":false}'), +(56430, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.681+00', '{"cached":null,"ignore_cache":false}'), +(56431, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:00.847+00', '{"cached":null,"ignore_cache":false}'), +(56432, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.007+00', '{"cached":null,"ignore_cache":false}'), +(56433, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.031+00', '{"cached":null,"ignore_cache":false}'), +(56434, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.124+00', '{"cached":null,"ignore_cache":false}'), +(56435, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.208+00', '{"cached":null,"ignore_cache":false}'), +(56436, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.328+00', '{"cached":null,"ignore_cache":false}'), +(56437, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.472+00', '{"cached":null,"ignore_cache":false}'), +(56438, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.548+00', '{"cached":null,"ignore_cache":false}'), +(56439, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.797+00', '{"cached":null,"ignore_cache":false}'), +(56440, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.918+00', '{"cached":null,"ignore_cache":false}'), +(56441, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:01.997+00', '{"cached":null,"ignore_cache":false}'), +(56442, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.345+00', '{"cached":null,"ignore_cache":false}'), +(56443, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.676+00', '{"cached":null,"ignore_cache":false}'), +(56444, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.943+00', '{"cached":null,"ignore_cache":false}'), +(56445, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.965+00', '{"cached":null,"ignore_cache":false}'), +(56446, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:02.98+00', '{"cached":null,"ignore_cache":false}'), +(56447, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.103+00', '{"cached":null,"ignore_cache":false}'), +(56448, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.178+00', '{"cached":null,"ignore_cache":false}'), +(56449, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.193+00', '{"cached":null,"ignore_cache":false}'), +(56450, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.218+00', '{"cached":null,"ignore_cache":false}'), +(56451, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.325+00', '{"cached":null,"ignore_cache":false}'), +(56452, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.351+00', '{"cached":null,"ignore_cache":false}'), +(56453, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.433+00', '{"cached":null,"ignore_cache":false}'), +(56454, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.554+00', '{"cached":null,"ignore_cache":false}'), +(56455, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.748+00', '{"cached":null,"ignore_cache":false}'), +(56456, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.776+00', '{"cached":null,"ignore_cache":false}'), +(56457, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.794+00', '{"cached":null,"ignore_cache":false}'), +(56458, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:03.826+00', '{"cached":null,"ignore_cache":false}'), +(56459, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:04.227+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56460, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:17:04.275+00', '{"cached":null,"ignore_cache":false}'), +(56461, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.197+00', '{"cached":null,"ignore_cache":false}'), +(56462, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.89+00', '{"cached":null,"ignore_cache":false}'), +(56463, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:34.947+00', '{"cached":null,"ignore_cache":false}'), +(56464, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.048+00', '{"cached":null,"ignore_cache":false}'), +(56465, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.268+00', '{"cached":null,"ignore_cache":false}'), +(56466, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.447+00', '{"cached":null,"ignore_cache":false}'), +(56467, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.453+00', '{"cached":null,"ignore_cache":false}'), +(56468, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.548+00', '{"cached":null,"ignore_cache":false}'), +(56469, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.599+00', '{"cached":null,"ignore_cache":false}'), +(56470, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.658+00', '{"cached":null,"ignore_cache":false}'), +(56471, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.837+00', '{"cached":null,"ignore_cache":false}'), +(56472, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.863+00', '{"cached":null,"ignore_cache":false}'), +(56473, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.87+00', '{"cached":null,"ignore_cache":false}'), +(56474, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:35.968+00', '{"cached":null,"ignore_cache":false}'), +(56475, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:36.293+00', '{"cached":null,"ignore_cache":false}'), +(56476, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:19:36.304+00', '{"cached":null,"ignore_cache":false}'), +(56477, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.162+00', '{"cached":null,"ignore_cache":false}'), +(56478, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.238+00', '{"cached":null,"ignore_cache":false}'), +(56479, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.514+00', '{"cached":null,"ignore_cache":false}'), +(56480, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.54+00', '{"cached":null,"ignore_cache":false}'), +(56481, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.587+00', '{"cached":null,"ignore_cache":false}'), +(56482, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.658+00', '{"cached":null,"ignore_cache":false}'), +(56483, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.694+00', '{"cached":null,"ignore_cache":false}'), +(56484, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.73+00', '{"cached":null,"ignore_cache":false}'), +(56485, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.819+00', '{"cached":null,"ignore_cache":false}'), +(56486, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:07.841+00', '{"cached":null,"ignore_cache":false}'), +(56487, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.03+00', '{"cached":null,"ignore_cache":false}'), +(56488, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.201+00', '{"cached":null,"ignore_cache":false}'), +(56489, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.215+00', '{"cached":null,"ignore_cache":false}'), +(56490, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.625+00', '{"cached":null,"ignore_cache":false}'), +(56491, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.625+00', '{"cached":null,"ignore_cache":false}'), +(56492, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.634+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56493, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.635+00', '{"cached":null,"ignore_cache":false}'), +(56494, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:08.65+00', '{"cached":null,"ignore_cache":false}'), +(56495, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.017+00', '{"cached":null,"ignore_cache":false}'), +(56496, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.058+00', '{"cached":null,"ignore_cache":false}'), +(56497, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.551+00', '{"cached":null,"ignore_cache":false}'), +(56498, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.552+00', '{"cached":null,"ignore_cache":false}'), +(56499, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.584+00', '{"cached":null,"ignore_cache":false}'), +(56500, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.647+00', '{"cached":null,"ignore_cache":false}'), +(56501, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.698+00', '{"cached":null,"ignore_cache":false}'), +(56502, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:09.723+00', '{"cached":null,"ignore_cache":false}'), +(56503, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.336+00', '{"cached":null,"ignore_cache":false}'), +(56504, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.502+00', '{"cached":null,"ignore_cache":false}'), +(56505, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.56+00', '{"cached":null,"ignore_cache":false}'), +(56506, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.647+00', '{"cached":null,"ignore_cache":false}'), +(56507, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.664+00', '{"cached":null,"ignore_cache":false}'), +(56508, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:10.683+00', '{"cached":null,"ignore_cache":false}'), +(56509, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.537+00', '{"cached":null,"ignore_cache":false}'), +(56510, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.968+00', '{"cached":null,"ignore_cache":false}'), +(56511, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:23.997+00', '{"cached":null,"ignore_cache":false}'), +(56512, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.032+00', '{"cached":null,"ignore_cache":false}'), +(56513, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.066+00', '{"cached":null,"ignore_cache":false}'), +(56514, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.119+00', '{"cached":null,"ignore_cache":false}'), +(56515, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.286+00', '{"cached":null,"ignore_cache":false}'), +(56516, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.331+00', '{"cached":null,"ignore_cache":false}'), +(56517, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:24.468+00', '{"cached":null,"ignore_cache":false}'), +(56518, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:25.445+00', '{"cached":null,"ignore_cache":false}'), +(56519, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:25.755+00', '{"cached":null,"ignore_cache":false}'), +(56520, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.272+00', '{"cached":null,"ignore_cache":false}'), +(56521, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.304+00', '{"cached":null,"ignore_cache":false}'), +(56522, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.438+00', '{"cached":null,"ignore_cache":false}'), +(56523, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.452+00', '{"cached":null,"ignore_cache":false}'), +(56524, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.453+00', '{"cached":null,"ignore_cache":false}'), +(56525, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.63+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56526, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.8+00', '{"cached":null,"ignore_cache":false}'), +(56527, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:26.976+00', '{"cached":null,"ignore_cache":false}'), +(56528, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:23:27.172+00', '{"cached":null,"ignore_cache":false}'), +(56529, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.809+00', '{"cached":null,"ignore_cache":false}'), +(56530, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.906+00', '{"cached":null,"ignore_cache":false}'), +(56531, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:17.953+00', '{"cached":null,"ignore_cache":false}'), +(56532, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.058+00', '{"cached":null,"ignore_cache":false}'), +(56533, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.173+00', '{"cached":null,"ignore_cache":false}'), +(56534, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.19+00', '{"cached":null,"ignore_cache":false}'), +(56535, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.243+00', '{"cached":null,"ignore_cache":false}'), +(56536, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.253+00', '{"cached":null,"ignore_cache":false}'), +(56537, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.261+00', '{"cached":null,"ignore_cache":false}'), +(56538, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.301+00', '{"cached":null,"ignore_cache":false}'), +(56539, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.735+00', '{"cached":null,"ignore_cache":false}'), +(56540, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:18.892+00', '{"cached":null,"ignore_cache":false}'), +(56541, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:19.014+00', '{"cached":null,"ignore_cache":false}'), +(56542, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:19.035+00', '{"cached":null,"ignore_cache":false}'), +(56543, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:19.067+00', '{"cached":null,"ignore_cache":false}'), +(56544, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:26:19.093+00', '{"cached":null,"ignore_cache":false}'), +(56545, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.436+00', '{"cached":null,"ignore_cache":false}'), +(56546, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.549+00', '{"cached":null,"ignore_cache":false}'), +(56547, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.708+00', '{"cached":null,"ignore_cache":false}'), +(56548, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.751+00', '{"cached":null,"ignore_cache":false}'), +(56549, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.785+00', '{"cached":null,"ignore_cache":false}'), +(56550, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.806+00', '{"cached":null,"ignore_cache":false}'), +(56551, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.823+00', '{"cached":null,"ignore_cache":false}'), +(56552, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:25.837+00', '{"cached":null,"ignore_cache":false}'), +(56553, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.487+00', '{"cached":null,"ignore_cache":false}'), +(56554, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.51+00', '{"cached":null,"ignore_cache":false}'), +(56555, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.557+00', '{"cached":null,"ignore_cache":false}'), +(56556, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.586+00', '{"cached":null,"ignore_cache":false}'), +(56557, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.719+00', '{"cached":null,"ignore_cache":false}'), +(56558, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.726+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56559, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.746+00', '{"cached":null,"ignore_cache":false}'), +(56560, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:28:26.754+00', '{"cached":null,"ignore_cache":false}'), +(56561, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:38.92+00', '{"cached":null,"ignore_cache":false}'), +(56562, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.03+00', '{"cached":null,"ignore_cache":false}'), +(56563, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.104+00', '{"cached":null,"ignore_cache":false}'), +(56564, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.259+00', '{"cached":null,"ignore_cache":false}'), +(56565, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.33+00', '{"cached":null,"ignore_cache":false}'), +(56566, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.373+00', '{"cached":null,"ignore_cache":false}'), +(56567, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.411+00', '{"cached":null,"ignore_cache":false}'), +(56568, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.419+00', '{"cached":null,"ignore_cache":false}'), +(56569, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:39.866+00', '{"cached":null,"ignore_cache":false}'), +(56570, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.118+00', '{"cached":null,"ignore_cache":false}'), +(56571, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.264+00', '{"cached":null,"ignore_cache":false}'), +(56572, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.334+00', '{"cached":null,"ignore_cache":false}'), +(56573, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.512+00', '{"cached":null,"ignore_cache":false}'), +(56574, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.542+00', '{"cached":null,"ignore_cache":false}'), +(56575, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.598+00', '{"cached":null,"ignore_cache":false}'), +(56576, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.662+00', '{"cached":null,"ignore_cache":false}'), +(56577, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:40.733+00', '{"cached":null,"ignore_cache":false}'), +(56578, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:41.051+00', '{"cached":null,"ignore_cache":false}'), +(56579, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:41.09+00', '{"cached":null,"ignore_cache":false}'), +(56580, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.269+00', '{"cached":null,"ignore_cache":false}'), +(56581, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.282+00', '{"cached":null,"ignore_cache":false}'), +(56582, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.411+00', '{"cached":null,"ignore_cache":false}'), +(56583, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.447+00', '{"cached":null,"ignore_cache":false}'), +(56584, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.509+00', '{"cached":null,"ignore_cache":false}'), +(56585, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:48.519+00', '{"cached":null,"ignore_cache":false}'), +(56586, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.244+00', '{"cached":null,"ignore_cache":false}'), +(56587, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.305+00', '{"cached":null,"ignore_cache":false}'), +(56588, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.323+00', '{"cached":null,"ignore_cache":false}'), +(56589, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.335+00', '{"cached":null,"ignore_cache":false}'), +(56590, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.402+00', '{"cached":null,"ignore_cache":false}'), +(56591, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-16 15:29:49.849+00', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56592, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:11.973+00', '{"cached":null,"ignore_cache":false}'), +(56593, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.064+00', '{"cached":null,"ignore_cache":false}'), +(56594, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.258+00', '{"cached":null,"ignore_cache":false}'), +(56595, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.316+00', '{"cached":null,"ignore_cache":false}'), +(56596, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.388+00', '{"cached":null,"ignore_cache":false}'), +(56597, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.402+00', '{"cached":null,"ignore_cache":false}'), +(56598, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.414+00', '{"cached":null,"ignore_cache":false}'), +(56599, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.539+00', '{"cached":null,"ignore_cache":false}'), +(56600, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.604+00', '{"cached":null,"ignore_cache":false}'), +(56601, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.645+00', '{"cached":null,"ignore_cache":false}'), +(56602, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.715+00', '{"cached":null,"ignore_cache":false}'), +(56603, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.762+00', '{"cached":null,"ignore_cache":false}'), +(56604, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.79+00', '{"cached":null,"ignore_cache":false}'), +(56605, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:12.816+00', '{"cached":null,"ignore_cache":false}'), +(56606, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.107+00', '{"cached":null,"ignore_cache":false}'), +(56607, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.109+00', '{"cached":null,"ignore_cache":false}'), +(56608, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:13.952+00', '{"cached":null,"ignore_cache":false}'), +(56609, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.036+00', '{"cached":null,"ignore_cache":false}'), +(56610, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.18+00', '{"cached":null,"ignore_cache":false}'), +(56611, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.667+00', '{"cached":null,"ignore_cache":false}'), +(56612, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.762+00', '{"cached":null,"ignore_cache":false}'), +(56613, NULL, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.88+00', '{"cached":null,"ignore_cache":false}'), +(56614, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.895+00', '{"cached":null,"ignore_cache":false}'), +(56615, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.97+00', '{"cached":null,"ignore_cache":false}'), +(56616, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:14.994+00', '{"cached":null,"ignore_cache":false}'), +(56617, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:15.007+00', '{"cached":null,"ignore_cache":false}'), +(56618, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:15.076+00', '{"cached":null,"ignore_cache":false}'), +(56619, NULL, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:15.097+00', '{"cached":null,"ignore_cache":false}'), +(56620, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:15.103+00', '{"cached":null,"ignore_cache":false}'), +(56621, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:15.113+00', '{"cached":null,"ignore_cache":false}'), +(56622, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:15.428+00', '{"cached":null,"ignore_cache":false}'), +(56623, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-17 04:20:15.441+00', '{"cached":null,"ignore_cache":false}'), +(56648, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-22 17:07:09.721+07', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56649, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-22 17:18:17.386+07', '{"cached":null,"ignore_cache":null}'), +(56650, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:27.753+07', '{"cached":null,"ignore_cache":null}'), +(56651, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:30.723+07', '{"cached":null,"ignore_cache":false}'), +(56652, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:30.838+07', '{"cached":null,"ignore_cache":false}'), +(56653, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:31.06+07', '{"cached":null,"ignore_cache":false}'), +(56654, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:31.259+07', '{"cached":null,"ignore_cache":false}'), +(56655, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.709+07', '{"cached":null,"ignore_cache":false}'), +(56656, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.753+07', '{"cached":null,"ignore_cache":false}'), +(56657, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.825+07', '{"cached":null,"ignore_cache":false}'), +(56658, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:32.92+07', '{"cached":null,"ignore_cache":false}'), +(56659, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:33.744+07', '{"cached":null,"ignore_cache":false}'), +(56660, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-22 17:21:33.811+07', '{"cached":null,"ignore_cache":false}'), +(56661, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-22 17:22:49.714+07', '{"cached":null,"ignore_cache":null}'), +(56662, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-22 17:22:59.428+07', '{"cached":null,"ignore_cache":null}'), +(56663, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-22 17:23:16.63+07', '{"cached":null,"ignore_cache":null}'), +(56664, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-22 17:24:46.836+07', '{"cached":null,"ignore_cache":null}'), +(56665, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:25:26.257+07', '{"cached":null,"ignore_cache":null}'), +(56666, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:25:26.564+07', '{"cached":null,"ignore_cache":false}'), +(56667, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-22 17:25:31.69+07', '{"cached":null,"ignore_cache":null}'), +(56668, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:49.193+07', '{"cached":null,"ignore_cache":false}'), +(56669, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:49.796+07', '{"cached":null,"ignore_cache":false}'), +(56670, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.129+07', '{"cached":null,"ignore_cache":false}'), +(56671, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.215+07', '{"cached":null,"ignore_cache":false}'), +(56672, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.28+07', '{"cached":null,"ignore_cache":false}'), +(56673, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.321+07', '{"cached":null,"ignore_cache":false}'), +(56674, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.334+07', '{"cached":null,"ignore_cache":false}'), +(56675, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.57+07', '{"cached":null,"ignore_cache":false}'), +(56676, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.676+07', '{"cached":null,"ignore_cache":false}'), +(56677, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.687+07', '{"cached":null,"ignore_cache":false}'), +(56678, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.702+07', '{"cached":null,"ignore_cache":false}'), +(56679, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.785+07', '{"cached":null,"ignore_cache":false}'), +(56680, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:50.788+07', '{"cached":null,"ignore_cache":false}'), +(56681, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:51.651+07', '{"cached":null,"ignore_cache":false}'), +(56682, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:51.913+07', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56683, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:51.922+07', '{"cached":null,"ignore_cache":false}'), +(56684, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:52.096+07', '{"cached":null,"ignore_cache":false}'), +(56685, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:52.124+07', '{"cached":null,"ignore_cache":false}'), +(56686, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:30:52.815+07', '{"cached":null,"ignore_cache":false}'), +(56687, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.334+07', '{"cached":null,"ignore_cache":false}'), +(56688, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.664+07', '{"cached":null,"ignore_cache":false}'), +(56689, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.914+07', '{"cached":null,"ignore_cache":false}'), +(56690, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.919+07', '{"cached":null,"ignore_cache":false}'), +(56691, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.921+07', '{"cached":null,"ignore_cache":false}'), +(56692, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.923+07', '{"cached":null,"ignore_cache":false}'), +(56693, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.925+07', '{"cached":null,"ignore_cache":false}'), +(56694, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:20.926+07', '{"cached":null,"ignore_cache":false}'), +(56695, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:21.58+07', '{"cached":null,"ignore_cache":false}'), +(56696, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.21+07', '{"cached":null,"ignore_cache":false}'), +(56697, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.211+07', '{"cached":null,"ignore_cache":false}'), +(56698, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.268+07', '{"cached":null,"ignore_cache":false}'), +(56699, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.271+07', '{"cached":null,"ignore_cache":false}'), +(56700, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.594+07', '{"cached":null,"ignore_cache":false}'), +(56701, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.613+07', '{"cached":null,"ignore_cache":false}'), +(56702, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:22.796+07', '{"cached":null,"ignore_cache":false}'), +(56703, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:25.5+07', '{"cached":null,"ignore_cache":false}'), +(56704, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:25.827+07', '{"cached":null,"ignore_cache":false}'), +(56705, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:26.114+07', '{"cached":null,"ignore_cache":false}'), +(56706, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:26.336+07', '{"cached":null,"ignore_cache":false}'), +(56707, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.796+07', '{"cached":null,"ignore_cache":false}'), +(56708, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.83+07', '{"cached":null,"ignore_cache":false}'), +(56709, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.839+07', '{"cached":null,"ignore_cache":false}'), +(56710, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.855+07', '{"cached":null,"ignore_cache":false}'), +(56711, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.935+07', '{"cached":null,"ignore_cache":false}'), +(56712, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.947+07', '{"cached":null,"ignore_cache":false}'), +(56713, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:48.954+07', '{"cached":null,"ignore_cache":false}'), +(56714, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:49.156+07', '{"cached":null,"ignore_cache":false}'), +(56715, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:49.477+07', '{"cached":null,"ignore_cache":false}'), +(56716, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:50.188+07', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56717, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:50.369+07', '{"cached":null,"ignore_cache":false}'), +(56718, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:50.487+07', '{"cached":null,"ignore_cache":false}'), +(56719, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-22 17:33:52.081+07', '{"cached":null,"ignore_cache":false}'), +(56720, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:03.537+07', '{"cached":null,"ignore_cache":null}'), +(56721, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:04.539+07', '{"cached":null,"ignore_cache":false}'), +(56722, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:40.612+07', '{"cached":null,"ignore_cache":null}'), +(56723, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:42.271+07', '{"cached":null,"ignore_cache":false}'), +(56724, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:42.334+07', '{"cached":null,"ignore_cache":false}'), +(56725, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:42.779+07', '{"cached":null,"ignore_cache":false}'), +(56726, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:42.848+07', '{"cached":null,"ignore_cache":false}'), +(56727, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.436+07', '{"cached":null,"ignore_cache":false}'), +(56728, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.526+07', '{"cached":null,"ignore_cache":false}'), +(56729, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.687+07', '{"cached":null,"ignore_cache":false}'), +(56730, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.789+07', '{"cached":null,"ignore_cache":false}'), +(56731, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.797+07', '{"cached":null,"ignore_cache":false}'), +(56732, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-24 15:13:43.855+07', '{"cached":null,"ignore_cache":false}'), +(56733, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:15.383+07', '{"cached":null,"ignore_cache":null}'), +(56734, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:17.501+07', '{"cached":null,"ignore_cache":null}'), +(56735, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:17.714+07', '{"cached":null,"ignore_cache":false}'), +(56736, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:25.999+07', '{"cached":null,"ignore_cache":null}'), +(56737, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:26.184+07', '{"cached":null,"ignore_cache":false}'), +(56738, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:53.16+07', '{"cached":null,"ignore_cache":null}'), +(56739, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:56.422+07', '{"cached":null,"ignore_cache":null}'), +(56740, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.004+07', '{"cached":null,"ignore_cache":false}'), +(56741, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.063+07', '{"cached":null,"ignore_cache":false}'), +(56742, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.187+07', '{"cached":null,"ignore_cache":false}'), +(56743, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.325+07', '{"cached":null,"ignore_cache":false}'), +(56744, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.342+07', '{"cached":null,"ignore_cache":false}'), +(56745, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.348+07', '{"cached":null,"ignore_cache":false}'), +(56746, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.531+07', '{"cached":null,"ignore_cache":false}'), +(56747, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:57.569+07', '{"cached":null,"ignore_cache":false}'), +(56748, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-02-24 15:15:03.038+07', '{"cached":null,"ignore_cache":null}'), +(56749, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-24 15:15:05.678+07', '{"cached":null,"ignore_cache":null}'), +(56750, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-24 15:15:05.856+07', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56751, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-24 15:15:05.905+07', '{"cached":null,"ignore_cache":false}'), +(56752, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:29.941+07', '{"cached":null,"ignore_cache":null}'), +(56753, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:30.244+07', '{"cached":null,"ignore_cache":false}'), +(56754, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:30.332+07', '{"cached":null,"ignore_cache":false}'), +(56755, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.123+06', '{"cached":null,"ignore_cache":false}'), +(56756, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.21+06', '{"cached":null,"ignore_cache":false}'), +(56757, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.342+06', '{"cached":null,"ignore_cache":false}'), +(56758, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.35+06', '{"cached":null,"ignore_cache":false}'), +(56759, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.353+06', '{"cached":null,"ignore_cache":false}'), +(56760, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.402+06', '{"cached":null,"ignore_cache":false}'), +(56761, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.404+06', '{"cached":null,"ignore_cache":false}'), +(56762, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.469+06', '{"cached":null,"ignore_cache":false}'), +(56763, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.54+06', '{"cached":null,"ignore_cache":false}'), +(56764, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.542+06', '{"cached":null,"ignore_cache":false}'), +(56765, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.55+06', '{"cached":null,"ignore_cache":false}'), +(56766, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.594+06', '{"cached":null,"ignore_cache":false}'), +(56767, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.599+06', '{"cached":null,"ignore_cache":false}'), +(56768, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.601+06', '{"cached":null,"ignore_cache":false}'), +(56769, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.735+06', '{"cached":null,"ignore_cache":false}'), +(56770, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:25.819+06', '{"cached":null,"ignore_cache":false}'), +(56771, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.891+06', '{"cached":null,"ignore_cache":false}'), +(56772, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.962+06', '{"cached":null,"ignore_cache":false}'), +(56773, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:42.994+06', '{"cached":null,"ignore_cache":false}'), +(56774, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.041+06', '{"cached":null,"ignore_cache":false}'), +(56775, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.165+06', '{"cached":null,"ignore_cache":false}'), +(56776, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.167+06', '{"cached":null,"ignore_cache":false}'), +(56777, NULL, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.284+06', '{"cached":null,"ignore_cache":false}'), +(56778, NULL, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.34+06', '{"cached":null,"ignore_cache":false}'), +(56779, NULL, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.361+06', '{"cached":null,"ignore_cache":false}'), +(56780, NULL, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.363+06', '{"cached":null,"ignore_cache":false}'), +(56781, NULL, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.383+06', '{"cached":null,"ignore_cache":false}'), +(56782, NULL, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-04-28 17:17:43.489+06', '{"cached":null,"ignore_cache":false}'), +(56783, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.832+06', '{"cached":null,"ignore_cache":false}'), +(56784, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:11.834+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56785, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.016+06', '{"cached":null,"ignore_cache":false}'), +(56786, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.021+06', '{"cached":null,"ignore_cache":false}'), +(56787, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.083+06', '{"cached":null,"ignore_cache":false}'), +(56788, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.19+06', '{"cached":null,"ignore_cache":false}'), +(56789, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.321+06', '{"cached":null,"ignore_cache":false}'), +(56790, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.335+06', '{"cached":null,"ignore_cache":false}'), +(56791, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.394+06', '{"cached":null,"ignore_cache":false}'), +(56792, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.397+06', '{"cached":null,"ignore_cache":false}'), +(56793, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.399+06', '{"cached":null,"ignore_cache":false}'), +(56794, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.485+06', '{"cached":null,"ignore_cache":false}'), +(56795, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.57+06', '{"cached":null,"ignore_cache":false}'), +(56796, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:18:12.593+06', '{"cached":null,"ignore_cache":false}'), +(56797, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:03.807+06', '{"cached":null,"ignore_cache":null}'), +(56798, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:04.166+06', '{"cached":null,"ignore_cache":false}'), +(56799, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:04.169+06', '{"cached":null,"ignore_cache":false}'), +(56800, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:14.467+06', '{"cached":null,"ignore_cache":null}'), +(56801, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-04-28 17:19:21.75+06', '{"cached":null,"ignore_cache":null}'), +(56802, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.052+06', '{"cached":null,"ignore_cache":false}'), +(56803, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.089+06', '{"cached":null,"ignore_cache":false}'), +(56804, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.246+06', '{"cached":null,"ignore_cache":false}'), +(56805, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.271+06', '{"cached":null,"ignore_cache":false}'), +(56806, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.373+06', '{"cached":null,"ignore_cache":false}'), +(56807, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.608+06', '{"cached":null,"ignore_cache":false}'), +(56808, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.618+06', '{"cached":null,"ignore_cache":false}'), +(56809, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.624+06', '{"cached":null,"ignore_cache":false}'), +(56810, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.673+06', '{"cached":null,"ignore_cache":false}'), +(56811, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.759+06', '{"cached":null,"ignore_cache":false}'), +(56812, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.898+06', '{"cached":null,"ignore_cache":false}'), +(56813, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:41.943+06', '{"cached":null,"ignore_cache":false}'), +(56814, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:42.009+06', '{"cached":null,"ignore_cache":false}'), +(56815, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:42.029+06', '{"cached":null,"ignore_cache":false}'), +(56816, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:20:42.217+06', '{"cached":null,"ignore_cache":false}'), +(56817, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.579+06', '{"cached":null,"ignore_cache":false}'), +(56818, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.712+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56819, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.727+06', '{"cached":null,"ignore_cache":false}'), +(56820, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.777+06', '{"cached":null,"ignore_cache":false}'), +(56821, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.778+06', '{"cached":null,"ignore_cache":false}'), +(56822, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.832+06', '{"cached":null,"ignore_cache":false}'), +(56823, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.948+06', '{"cached":null,"ignore_cache":false}'), +(56824, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.997+06', '{"cached":null,"ignore_cache":false}'), +(56825, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:09.999+06', '{"cached":null,"ignore_cache":false}'), +(56826, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:10.021+06', '{"cached":null,"ignore_cache":false}'), +(56827, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:10.068+06', '{"cached":null,"ignore_cache":false}'), +(56828, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-04-28 17:21:10.203+06', '{"cached":null,"ignore_cache":false}'), +(56829, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.487+06', '{"cached":null,"ignore_cache":false}'), +(56830, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.489+06', '{"cached":null,"ignore_cache":false}'), +(56831, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.502+06', '{"cached":null,"ignore_cache":false}'), +(56832, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.582+06', '{"cached":null,"ignore_cache":false}'), +(56833, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.6+06', '{"cached":null,"ignore_cache":false}'), +(56834, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.822+06', '{"cached":null,"ignore_cache":false}'), +(56835, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.834+06', '{"cached":null,"ignore_cache":false}'), +(56836, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.836+06', '{"cached":null,"ignore_cache":false}'), +(56837, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:24.953+06', '{"cached":null,"ignore_cache":false}'), +(56838, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:25.015+06', '{"cached":null,"ignore_cache":false}'), +(56839, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:25.09+06', '{"cached":null,"ignore_cache":false}'), +(56840, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:25.109+06', '{"cached":null,"ignore_cache":false}'), +(56841, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:25.12+06', '{"cached":null,"ignore_cache":false}'), +(56842, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:25.128+06', '{"cached":null,"ignore_cache":false}'), +(56843, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:25.343+06', '{"cached":null,"ignore_cache":false}'), +(56844, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.922+06', '{"cached":null,"ignore_cache":false}'), +(56845, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.924+06', '{"cached":null,"ignore_cache":false}'), +(56846, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.931+06', '{"cached":null,"ignore_cache":false}'), +(56847, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:32.983+06', '{"cached":null,"ignore_cache":false}'), +(56848, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:33.088+06', '{"cached":null,"ignore_cache":false}'), +(56849, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:33.141+06', '{"cached":null,"ignore_cache":false}'), +(56850, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:33.149+06', '{"cached":null,"ignore_cache":false}'), +(56851, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:33.159+06', '{"cached":null,"ignore_cache":false}'), +(56852, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.684+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56853, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.721+06', '{"cached":null,"ignore_cache":false}'), +(56854, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.722+06', '{"cached":null,"ignore_cache":false}'), +(56855, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.753+06', '{"cached":null,"ignore_cache":false}'), +(56856, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.847+06', '{"cached":null,"ignore_cache":false}'), +(56857, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.858+06', '{"cached":null,"ignore_cache":false}'), +(56858, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.9+06', '{"cached":null,"ignore_cache":false}'), +(56859, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:39.923+06', '{"cached":null,"ignore_cache":false}'), +(56860, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.666+06', '{"cached":null,"ignore_cache":false}'), +(56861, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.67+06', '{"cached":null,"ignore_cache":false}'), +(56862, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.673+06', '{"cached":null,"ignore_cache":false}'), +(56863, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.686+06', '{"cached":null,"ignore_cache":false}'), +(56864, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.814+06', '{"cached":null,"ignore_cache":false}'), +(56865, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.862+06', '{"cached":null,"ignore_cache":false}'), +(56866, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.887+06', '{"cached":null,"ignore_cache":false}'), +(56867, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:22:42.892+06', '{"cached":null,"ignore_cache":false}'), +(56868, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.841+06', '{"cached":null,"ignore_cache":false}'), +(56869, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.843+06', '{"cached":null,"ignore_cache":false}'), +(56870, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.865+06', '{"cached":null,"ignore_cache":false}'), +(56871, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.872+06', '{"cached":null,"ignore_cache":false}'), +(56872, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.953+06', '{"cached":null,"ignore_cache":false}'), +(56873, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:04.955+06', '{"cached":null,"ignore_cache":false}'), +(56874, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.02+06', '{"cached":null,"ignore_cache":false}'), +(56875, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.097+06', '{"cached":null,"ignore_cache":false}'), +(56876, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.099+06', '{"cached":null,"ignore_cache":false}'), +(56877, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.127+06', '{"cached":null,"ignore_cache":false}'), +(56878, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.19+06', '{"cached":null,"ignore_cache":false}'), +(56879, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.232+06', '{"cached":null,"ignore_cache":false}'), +(56880, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.273+06', '{"cached":null,"ignore_cache":false}'), +(56881, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.404+06', '{"cached":null,"ignore_cache":false}'), +(56882, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.525+06', '{"cached":null,"ignore_cache":false}'), +(56883, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.611+06', '{"cached":null,"ignore_cache":false}'), +(56884, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:23:05.875+06', '{"cached":null,"ignore_cache":false}'), +(56885, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.889+06', '{"cached":null,"ignore_cache":false}'), +(56886, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.972+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56887, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:03.981+06', '{"cached":null,"ignore_cache":false}'), +(56888, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:04.033+06', '{"cached":null,"ignore_cache":false}'), +(56889, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:04.041+06', '{"cached":null,"ignore_cache":false}'), +(56890, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:04.102+06', '{"cached":null,"ignore_cache":false}'), +(56891, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:04.118+06', '{"cached":null,"ignore_cache":false}'), +(56892, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:28:04.154+06', '{"cached":null,"ignore_cache":false}'), +(56893, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.908+06', '{"cached":null,"ignore_cache":false}'), +(56894, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.913+06', '{"cached":null,"ignore_cache":false}'), +(56895, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.943+06', '{"cached":null,"ignore_cache":false}'), +(56896, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:03.966+06', '{"cached":null,"ignore_cache":false}'), +(56897, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:04.045+06', '{"cached":null,"ignore_cache":false}'), +(56898, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:04.07+06', '{"cached":null,"ignore_cache":false}'), +(56899, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:04.1+06', '{"cached":null,"ignore_cache":false}'), +(56900, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:33:04.117+06', '{"cached":null,"ignore_cache":false}'), +(56901, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.863+06', '{"cached":null,"ignore_cache":false}'), +(56902, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.889+06', '{"cached":null,"ignore_cache":false}'), +(56903, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.921+06', '{"cached":null,"ignore_cache":false}'), +(56904, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:03.923+06', '{"cached":null,"ignore_cache":false}'), +(56905, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:04.026+06', '{"cached":null,"ignore_cache":false}'), +(56906, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:04.028+06', '{"cached":null,"ignore_cache":false}'), +(56907, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:04.083+06', '{"cached":null,"ignore_cache":false}'), +(56908, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:38:04.086+06', '{"cached":null,"ignore_cache":false}'), +(56909, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.868+06', '{"cached":null,"ignore_cache":false}'), +(56910, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.918+06', '{"cached":null,"ignore_cache":false}'), +(56911, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.932+06', '{"cached":null,"ignore_cache":false}'), +(56912, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:03.947+06', '{"cached":null,"ignore_cache":false}'), +(56913, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:04.012+06', '{"cached":null,"ignore_cache":false}'), +(56914, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:04.048+06', '{"cached":null,"ignore_cache":false}'), +(56915, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:04.078+06', '{"cached":null,"ignore_cache":false}'), +(56916, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:43:04.099+06', '{"cached":null,"ignore_cache":false}'), +(56917, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.467+06', '{"cached":null,"ignore_cache":false}'), +(56918, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.501+06', '{"cached":null,"ignore_cache":false}'), +(56919, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.533+06', '{"cached":null,"ignore_cache":false}'), +(56920, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.677+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56921, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.695+06', '{"cached":null,"ignore_cache":false}'), +(56922, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.703+06', '{"cached":null,"ignore_cache":false}'), +(56923, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.724+06', '{"cached":null,"ignore_cache":false}'), +(56924, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:45:37.733+06', '{"cached":null,"ignore_cache":false}'), +(56925, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:04.829+06', '{"cached":null,"ignore_cache":null}'), +(56926, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.066+06', '{"cached":null,"ignore_cache":false}'), +(56927, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.083+06', '{"cached":null,"ignore_cache":false}'), +(56928, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.096+06', '{"cached":null,"ignore_cache":false}'), +(56929, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.114+06', '{"cached":null,"ignore_cache":false}'), +(56930, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.257+06', '{"cached":null,"ignore_cache":false}'), +(56931, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.263+06', '{"cached":null,"ignore_cache":false}'), +(56932, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.329+06', '{"cached":null,"ignore_cache":false}'), +(56933, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:05.338+06', '{"cached":null,"ignore_cache":false}'), +(56934, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:08.152+06', '{"cached":null,"ignore_cache":null}'), +(56935, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:08.248+06', '{"cached":null,"ignore_cache":null}'), +(56936, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.669+06', '{"cached":null,"ignore_cache":null}'), +(56937, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.83+06', '{"cached":null,"ignore_cache":false}'), +(56938, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.85+06', '{"cached":null,"ignore_cache":false}'), +(56939, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.931+06', '{"cached":null,"ignore_cache":false}'), +(56940, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:25.949+06', '{"cached":null,"ignore_cache":false}'), +(56941, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:26.035+06', '{"cached":null,"ignore_cache":false}'), +(56942, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:26.044+06', '{"cached":null,"ignore_cache":false}'), +(56943, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:26.054+06', '{"cached":null,"ignore_cache":false}'), +(56944, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:26.055+06', '{"cached":null,"ignore_cache":false}'), +(56945, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:45.74+06', '{"cached":null,"ignore_cache":null}'), +(56946, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-04-28 17:46:46.046+06', '{"cached":null,"ignore_cache":false}'), +(56947, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 17:19:31.217+06', '{"cached":null,"ignore_cache":null}'), +(56948, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 17:19:32.045+06', '{"cached":null,"ignore_cache":false}'), +(56949, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 17:21:17.602+06', '{"cached":null,"ignore_cache":null}'), +(56950, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 17:21:18.006+06', '{"cached":null,"ignore_cache":false}'), +(56951, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-05-02 17:22:32.014+06', '{"cached":null,"ignore_cache":null}'), +(56952, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-05-02 17:22:32.389+06', '{"cached":null,"ignore_cache":false}'), +(56953, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:14.027+06', '{"cached":null,"ignore_cache":null}'), +(56954, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:25.966+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56955, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:43.449+06', '{"cached":null,"ignore_cache":null}'), +(56956, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-02 17:45:55.355+06', '{"cached":null,"ignore_cache":null}'), +(56957, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.793+06', '{"cached":null,"ignore_cache":false}'), +(56958, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:46.828+06', '{"cached":null,"ignore_cache":false}'), +(56959, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.033+06', '{"cached":null,"ignore_cache":false}'), +(56960, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.055+06', '{"cached":null,"ignore_cache":false}'), +(56961, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.069+06', '{"cached":null,"ignore_cache":false}'), +(56962, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.09+06', '{"cached":null,"ignore_cache":false}'), +(56963, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.128+06', '{"cached":null,"ignore_cache":false}'), +(56964, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.321+06', '{"cached":null,"ignore_cache":false}'), +(56965, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.331+06', '{"cached":null,"ignore_cache":false}'), +(56966, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.477+06', '{"cached":null,"ignore_cache":false}'), +(56967, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.515+06', '{"cached":null,"ignore_cache":false}'), +(56968, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.567+06', '{"cached":null,"ignore_cache":false}'), +(56969, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.571+06', '{"cached":null,"ignore_cache":false}'), +(56970, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.608+06', '{"cached":null,"ignore_cache":false}'), +(56971, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.65+06', '{"cached":null,"ignore_cache":false}'), +(56972, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-02 20:15:47.749+06', '{"cached":null,"ignore_cache":false}'), +(56973, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.3+06', '{"cached":null,"ignore_cache":false}'), +(56974, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.342+06', '{"cached":null,"ignore_cache":false}'), +(56975, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.356+06', '{"cached":null,"ignore_cache":false}'), +(56976, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.399+06', '{"cached":null,"ignore_cache":false}'), +(56977, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.508+06', '{"cached":null,"ignore_cache":false}'), +(56978, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.509+06', '{"cached":null,"ignore_cache":false}'), +(56979, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.53+06', '{"cached":null,"ignore_cache":false}'), +(56980, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 20:16:01.546+06', '{"cached":null,"ignore_cache":false}'), +(56981, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.585+06', '{"cached":null,"ignore_cache":false}'), +(56982, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.705+06', '{"cached":null,"ignore_cache":false}'), +(56983, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.758+06', '{"cached":null,"ignore_cache":false}'), +(56984, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.77+06', '{"cached":null,"ignore_cache":false}'), +(56985, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.772+06', '{"cached":null,"ignore_cache":false}'), +(56986, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.835+06', '{"cached":null,"ignore_cache":false}'), +(56987, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.839+06', '{"cached":null,"ignore_cache":false}'), +(56988, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.874+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(56989, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:58.876+06', '{"cached":null,"ignore_cache":false}'), +(56990, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:59.283+06', '{"cached":null,"ignore_cache":false}'), +(56991, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 20:41:59.366+06', '{"cached":null,"ignore_cache":false}'), +(56992, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.713+06', '{"cached":null,"ignore_cache":false}'), +(56993, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.715+06', '{"cached":null,"ignore_cache":false}'), +(56994, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:50.953+06', '{"cached":null,"ignore_cache":false}'), +(56995, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.007+06', '{"cached":null,"ignore_cache":false}'), +(56996, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.043+06', '{"cached":null,"ignore_cache":false}'), +(56997, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.142+06', '{"cached":null,"ignore_cache":false}'), +(56998, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.146+06', '{"cached":null,"ignore_cache":false}'), +(56999, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.148+06', '{"cached":null,"ignore_cache":false}'), +(57000, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.149+06', '{"cached":null,"ignore_cache":false}'), +(57001, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.244+06', '{"cached":null,"ignore_cache":false}'), +(57002, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.252+06', '{"cached":null,"ignore_cache":false}'), +(57003, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.381+06', '{"cached":null,"ignore_cache":false}'), +(57004, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-02 20:45:51.383+06', '{"cached":null,"ignore_cache":false}'), +(57005, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.006+06', '{"cached":null,"ignore_cache":false}'), +(57006, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.257+06', '{"cached":null,"ignore_cache":false}'), +(57007, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.457+06', '{"cached":null,"ignore_cache":false}'), +(57008, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.463+06', '{"cached":null,"ignore_cache":false}'), +(57009, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.486+06', '{"cached":null,"ignore_cache":false}'), +(57010, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.521+06', '{"cached":null,"ignore_cache":false}'), +(57011, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.558+06', '{"cached":null,"ignore_cache":false}'), +(57012, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.559+06', '{"cached":null,"ignore_cache":false}'), +(57013, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.674+06', '{"cached":null,"ignore_cache":false}'), +(57014, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.768+06', '{"cached":null,"ignore_cache":false}'), +(57015, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.877+06', '{"cached":null,"ignore_cache":false}'), +(57016, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:46.988+06', '{"cached":null,"ignore_cache":false}'), +(57017, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:54:47.013+06', '{"cached":null,"ignore_cache":false}'), +(57018, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:32.038+06', '{"cached":null,"ignore_cache":null}'), +(57019, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:32.337+06', '{"cached":null,"ignore_cache":false}'), +(57020, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:39.522+06', '{"cached":null,"ignore_cache":null}'), +(57021, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:39.676+06', '{"cached":null,"ignore_cache":false}'), +(57022, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:48.348+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57023, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:55:48.482+06', '{"cached":null,"ignore_cache":false}'), +(57024, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.336+06', '{"cached":null,"ignore_cache":false}'), +(57025, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.421+06', '{"cached":null,"ignore_cache":false}'), +(57026, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.47+06', '{"cached":null,"ignore_cache":false}'), +(57027, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.768+06', '{"cached":null,"ignore_cache":false}'), +(57028, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.799+06', '{"cached":null,"ignore_cache":false}'), +(57029, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.819+06', '{"cached":null,"ignore_cache":false}'), +(57030, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.838+06', '{"cached":null,"ignore_cache":false}'), +(57031, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.97+06', '{"cached":null,"ignore_cache":false}'), +(57032, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:57.976+06', '{"cached":null,"ignore_cache":false}'), +(57033, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:58.012+06', '{"cached":null,"ignore_cache":false}'), +(57034, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:58.02+06', '{"cached":null,"ignore_cache":false}'), +(57035, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:58.16+06', '{"cached":null,"ignore_cache":false}'), +(57036, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:58.197+06', '{"cached":null,"ignore_cache":false}'), +(57037, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-03 12:58:58.2+06', '{"cached":null,"ignore_cache":false}'), +(57038, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.726+06', '{"cached":null,"ignore_cache":false}'), +(57039, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.748+06', '{"cached":null,"ignore_cache":false}'), +(57040, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.77+06', '{"cached":null,"ignore_cache":false}'), +(57041, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.799+06', '{"cached":null,"ignore_cache":false}'), +(57042, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.96+06', '{"cached":null,"ignore_cache":false}'), +(57043, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:30.999+06', '{"cached":null,"ignore_cache":false}'), +(57044, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.147+06', '{"cached":null,"ignore_cache":false}'), +(57045, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.187+06', '{"cached":null,"ignore_cache":false}'), +(57046, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.215+06', '{"cached":null,"ignore_cache":false}'), +(57047, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.242+06', '{"cached":null,"ignore_cache":false}'), +(57048, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.257+06', '{"cached":null,"ignore_cache":false}'), +(57049, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.275+06', '{"cached":null,"ignore_cache":false}'), +(57050, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.371+06', '{"cached":null,"ignore_cache":false}'), +(57051, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.388+06', '{"cached":null,"ignore_cache":false}'), +(57052, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:31.426+06', '{"cached":null,"ignore_cache":false}'), +(57053, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.182+06', '{"cached":null,"ignore_cache":false}'), +(57054, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.212+06', '{"cached":null,"ignore_cache":false}'), +(57055, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.277+06', '{"cached":null,"ignore_cache":false}'), +(57056, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:34.302+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57057, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.372+06', '{"cached":null,"ignore_cache":false}'), +(57058, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.412+06', '{"cached":null,"ignore_cache":false}'), +(57059, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.46+06', '{"cached":null,"ignore_cache":false}'), +(57060, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.49+06', '{"cached":null,"ignore_cache":false}'), +(57061, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.587+06', '{"cached":null,"ignore_cache":false}'), +(57062, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.684+06', '{"cached":null,"ignore_cache":false}'), +(57063, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.689+06', '{"cached":null,"ignore_cache":false}'), +(57064, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.734+06', '{"cached":null,"ignore_cache":false}'), +(57065, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.752+06', '{"cached":null,"ignore_cache":false}'), +(57066, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.78+06', '{"cached":null,"ignore_cache":false}'), +(57067, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-05-03 12:59:51.813+06', '{"cached":null,"ignore_cache":false}'), +(57068, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.258+06', '{"cached":null,"ignore_cache":false}'), +(57069, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.26+06', '{"cached":null,"ignore_cache":false}'), +(57070, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.312+06', '{"cached":null,"ignore_cache":false}'), +(57071, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-03 14:02:08.321+06', '{"cached":null,"ignore_cache":false}'), +(57072, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.311+06', '{"cached":null,"ignore_cache":false}'), +(57073, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.634+06', '{"cached":null,"ignore_cache":false}'), +(57074, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.724+06', '{"cached":null,"ignore_cache":false}'), +(57075, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.771+06', '{"cached":null,"ignore_cache":false}'), +(57076, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.773+06', '{"cached":null,"ignore_cache":false}'), +(57077, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.775+06', '{"cached":null,"ignore_cache":false}'), +(57078, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.777+06', '{"cached":null,"ignore_cache":false}'), +(57079, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.781+06', '{"cached":null,"ignore_cache":false}'), +(57080, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.867+06', '{"cached":null,"ignore_cache":false}'), +(57081, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.869+06', '{"cached":null,"ignore_cache":false}'), +(57082, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.871+06', '{"cached":null,"ignore_cache":false}'), +(57083, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.891+06', '{"cached":null,"ignore_cache":false}'), +(57084, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.898+06', '{"cached":null,"ignore_cache":false}'), +(57085, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:24:59.904+06', '{"cached":null,"ignore_cache":false}'), +(57086, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:00.156+06', '{"cached":null,"ignore_cache":false}'), +(57087, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:00.194+06', '{"cached":null,"ignore_cache":false}'), +(57088, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.182+06', '{"cached":null,"ignore_cache":false}'), +(57089, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.185+06', '{"cached":null,"ignore_cache":false}'), +(57090, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.207+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57091, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.307+06', '{"cached":null,"ignore_cache":false}'), +(57092, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.635+06', '{"cached":null,"ignore_cache":false}'), +(57093, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.711+06', '{"cached":null,"ignore_cache":false}'), +(57094, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.737+06', '{"cached":null,"ignore_cache":false}'), +(57095, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.808+06', '{"cached":null,"ignore_cache":false}'), +(57096, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.889+06', '{"cached":null,"ignore_cache":false}'), +(57097, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.941+06', '{"cached":null,"ignore_cache":false}'), +(57098, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:48.949+06', '{"cached":null,"ignore_cache":false}'), +(57099, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:49.087+06', '{"cached":null,"ignore_cache":false}'), +(57100, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:49.317+06', '{"cached":null,"ignore_cache":false}'), +(57101, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:49.444+06', '{"cached":null,"ignore_cache":false}'), +(57102, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:25:49.447+06', '{"cached":null,"ignore_cache":false}'), +(57103, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:20.997+06', '{"cached":null,"ignore_cache":false}'), +(57104, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.12+06', '{"cached":null,"ignore_cache":false}'), +(57105, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.122+06', '{"cached":null,"ignore_cache":false}'), +(57106, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.161+06', '{"cached":null,"ignore_cache":false}'), +(57107, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.42+06', '{"cached":null,"ignore_cache":false}'), +(57108, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.446+06', '{"cached":null,"ignore_cache":false}'), +(57109, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.46+06', '{"cached":null,"ignore_cache":false}'), +(57110, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.551+06', '{"cached":null,"ignore_cache":false}'), +(57111, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.622+06', '{"cached":null,"ignore_cache":false}'), +(57112, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.641+06', '{"cached":null,"ignore_cache":false}'), +(57113, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.642+06', '{"cached":null,"ignore_cache":false}'), +(57114, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.809+06', '{"cached":null,"ignore_cache":false}'), +(57115, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:21.966+06', '{"cached":null,"ignore_cache":false}'), +(57116, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:22.113+06', '{"cached":null,"ignore_cache":false}'), +(57117, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:28:22.124+06', '{"cached":null,"ignore_cache":false}'), +(57118, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.512+06', '{"cached":null,"ignore_cache":false}'), +(57119, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.513+06', '{"cached":null,"ignore_cache":false}'), +(57120, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.519+06', '{"cached":null,"ignore_cache":false}'), +(57121, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.559+06', '{"cached":null,"ignore_cache":false}'), +(57122, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.734+06', '{"cached":null,"ignore_cache":false}'), +(57123, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.736+06', '{"cached":null,"ignore_cache":false}'), +(57124, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.751+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57125, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:29:28.753+06', '{"cached":null,"ignore_cache":false}'), +(57126, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.522+06', '{"cached":null,"ignore_cache":false}'), +(57127, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.544+06', '{"cached":null,"ignore_cache":false}'), +(57128, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.55+06', '{"cached":null,"ignore_cache":false}'), +(57129, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.588+06', '{"cached":null,"ignore_cache":false}'), +(57130, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.695+06', '{"cached":null,"ignore_cache":false}'), +(57131, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.725+06', '{"cached":null,"ignore_cache":false}'), +(57132, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.787+06', '{"cached":null,"ignore_cache":false}'), +(57133, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:21.808+06', '{"cached":null,"ignore_cache":false}'), +(57134, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.303+06', '{"cached":null,"ignore_cache":false}'), +(57135, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.325+06', '{"cached":null,"ignore_cache":false}'), +(57136, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.346+06', '{"cached":null,"ignore_cache":false}'), +(57137, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.691+06', '{"cached":null,"ignore_cache":false}'), +(57138, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:54.83+06', '{"cached":null,"ignore_cache":false}'), +(57139, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.13+06', '{"cached":null,"ignore_cache":false}'), +(57140, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.166+06', '{"cached":null,"ignore_cache":false}'), +(57141, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.253+06', '{"cached":null,"ignore_cache":false}'), +(57142, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.337+06', '{"cached":null,"ignore_cache":false}'), +(57143, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.363+06', '{"cached":null,"ignore_cache":false}'), +(57144, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.505+06', '{"cached":null,"ignore_cache":false}'), +(57145, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:30:55.511+06', '{"cached":null,"ignore_cache":false}'), +(57146, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.591+06', '{"cached":null,"ignore_cache":false}'), +(57147, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.621+06', '{"cached":null,"ignore_cache":false}'), +(57148, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.719+06', '{"cached":null,"ignore_cache":false}'), +(57149, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:15.797+06', '{"cached":null,"ignore_cache":false}'), +(57150, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.403+06', '{"cached":null,"ignore_cache":false}'), +(57151, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.412+06', '{"cached":null,"ignore_cache":false}'), +(57152, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.488+06', '{"cached":null,"ignore_cache":false}'), +(57153, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.49+06', '{"cached":null,"ignore_cache":false}'), +(57154, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.691+06', '{"cached":null,"ignore_cache":false}'), +(57155, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.727+06', '{"cached":null,"ignore_cache":false}'), +(57156, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:16.858+06', '{"cached":null,"ignore_cache":false}'), +(57157, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:17.032+06', '{"cached":null,"ignore_cache":false}'), +(57158, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:17.309+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57159, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:17.361+06', '{"cached":null,"ignore_cache":false}'), +(57160, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:17.388+06', '{"cached":null,"ignore_cache":false}'), +(57161, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.198+06', '{"cached":null,"ignore_cache":false}'), +(57162, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.201+06', '{"cached":null,"ignore_cache":false}'), +(57163, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.216+06', '{"cached":null,"ignore_cache":false}'), +(57164, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.238+06', '{"cached":null,"ignore_cache":false}'), +(57165, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.374+06', '{"cached":null,"ignore_cache":false}'), +(57166, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.417+06', '{"cached":null,"ignore_cache":false}'), +(57167, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.559+06', '{"cached":null,"ignore_cache":false}'), +(57168, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.676+06', '{"cached":null,"ignore_cache":false}'), +(57169, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.686+06', '{"cached":null,"ignore_cache":false}'), +(57170, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.716+06', '{"cached":null,"ignore_cache":false}'), +(57171, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:41.745+06', '{"cached":null,"ignore_cache":false}'), +(57172, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:42.06+06', '{"cached":null,"ignore_cache":false}'), +(57173, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:42.157+06', '{"cached":null,"ignore_cache":false}'), +(57174, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:42.203+06', '{"cached":null,"ignore_cache":false}'), +(57175, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:31:42.218+06', '{"cached":null,"ignore_cache":false}'), +(57176, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.201+06', '{"cached":null,"ignore_cache":false}'), +(57177, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.306+06', '{"cached":null,"ignore_cache":false}'), +(57178, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.32+06', '{"cached":null,"ignore_cache":false}'), +(57179, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.377+06', '{"cached":null,"ignore_cache":false}'), +(57180, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.593+06', '{"cached":null,"ignore_cache":false}'), +(57181, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.744+06', '{"cached":null,"ignore_cache":false}'), +(57182, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.781+06', '{"cached":null,"ignore_cache":false}'), +(57183, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.813+06', '{"cached":null,"ignore_cache":false}'), +(57184, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.823+06', '{"cached":null,"ignore_cache":false}'), +(57185, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.87+06', '{"cached":null,"ignore_cache":false}'), +(57186, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:36.894+06', '{"cached":null,"ignore_cache":false}'), +(57187, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:37.022+06', '{"cached":null,"ignore_cache":false}'), +(57188, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:37.111+06', '{"cached":null,"ignore_cache":false}'), +(57189, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:37.25+06', '{"cached":null,"ignore_cache":false}'), +(57190, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:34:37.35+06', '{"cached":null,"ignore_cache":false}'), +(57191, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.843+06', '{"cached":null,"ignore_cache":false}'), +(57192, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.924+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57193, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.929+06', '{"cached":null,"ignore_cache":false}'), +(57194, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:52.945+06', '{"cached":null,"ignore_cache":false}'), +(57195, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.08+06', '{"cached":null,"ignore_cache":false}'), +(57196, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.13+06', '{"cached":null,"ignore_cache":false}'), +(57197, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.157+06', '{"cached":null,"ignore_cache":false}'), +(57198, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.215+06', '{"cached":null,"ignore_cache":false}'), +(57199, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.271+06', '{"cached":null,"ignore_cache":false}'), +(57200, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.275+06', '{"cached":null,"ignore_cache":false}'), +(57201, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.277+06', '{"cached":null,"ignore_cache":false}'), +(57202, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.443+06', '{"cached":null,"ignore_cache":false}'), +(57203, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.493+06', '{"cached":null,"ignore_cache":false}'), +(57204, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.516+06', '{"cached":null,"ignore_cache":false}'), +(57205, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:48:53.545+06', '{"cached":null,"ignore_cache":false}'), +(57206, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.257+06', '{"cached":null,"ignore_cache":false}'), +(57207, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.298+06', '{"cached":null,"ignore_cache":false}'), +(57208, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.324+06', '{"cached":null,"ignore_cache":false}'), +(57209, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.383+06', '{"cached":null,"ignore_cache":false}'), +(57210, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.506+06', '{"cached":null,"ignore_cache":false}'), +(57211, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.555+06', '{"cached":null,"ignore_cache":false}'), +(57212, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.581+06', '{"cached":null,"ignore_cache":false}'), +(57213, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.603+06', '{"cached":null,"ignore_cache":false}'), +(57214, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.701+06', '{"cached":null,"ignore_cache":false}'), +(57215, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.745+06', '{"cached":null,"ignore_cache":false}'), +(57216, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.852+06', '{"cached":null,"ignore_cache":false}'), +(57217, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.911+06', '{"cached":null,"ignore_cache":false}'), +(57218, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.947+06', '{"cached":null,"ignore_cache":false}'), +(57219, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:26.949+06', '{"cached":null,"ignore_cache":false}'), +(57220, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:49:27.108+06', '{"cached":null,"ignore_cache":false}'), +(57221, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.011+06', '{"cached":null,"ignore_cache":false}'), +(57222, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.073+06', '{"cached":null,"ignore_cache":false}'), +(57223, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.112+06', '{"cached":null,"ignore_cache":false}'), +(57224, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.115+06', '{"cached":null,"ignore_cache":false}'), +(57225, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.353+06', '{"cached":null,"ignore_cache":false}'), +(57226, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.377+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57227, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.544+06', '{"cached":null,"ignore_cache":false}'), +(57228, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.583+06', '{"cached":null,"ignore_cache":false}'), +(57229, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.586+06', '{"cached":null,"ignore_cache":false}'), +(57230, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.631+06', '{"cached":null,"ignore_cache":false}'), +(57231, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.658+06', '{"cached":null,"ignore_cache":false}'), +(57232, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.911+06', '{"cached":null,"ignore_cache":false}'), +(57233, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.977+06', '{"cached":null,"ignore_cache":false}'), +(57234, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:25.981+06', '{"cached":null,"ignore_cache":false}'), +(57235, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:26.012+06', '{"cached":null,"ignore_cache":false}'), +(57236, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.827+06', '{"cached":null,"ignore_cache":false}'), +(57237, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.835+06', '{"cached":null,"ignore_cache":false}'), +(57238, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.844+06', '{"cached":null,"ignore_cache":false}'), +(57239, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:38.845+06', '{"cached":null,"ignore_cache":false}'), +(57240, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.029+06', '{"cached":null,"ignore_cache":false}'), +(57241, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.035+06', '{"cached":null,"ignore_cache":false}'), +(57242, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.194+06', '{"cached":null,"ignore_cache":false}'), +(57243, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.205+06', '{"cached":null,"ignore_cache":false}'), +(57244, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.293+06', '{"cached":null,"ignore_cache":false}'), +(57245, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.295+06', '{"cached":null,"ignore_cache":false}'), +(57246, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.365+06', '{"cached":null,"ignore_cache":false}'), +(57247, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.596+06', '{"cached":null,"ignore_cache":false}'), +(57248, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.63+06', '{"cached":null,"ignore_cache":false}'), +(57249, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.691+06', '{"cached":null,"ignore_cache":false}'), +(57250, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:39.82+06', '{"cached":null,"ignore_cache":false}'), +(57251, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:50.282+06', '{"cached":null,"ignore_cache":null}'), +(57252, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:54.97+06', '{"cached":null,"ignore_cache":null}'), +(57253, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.401+06', '{"cached":null,"ignore_cache":false}'), +(57254, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.415+06', '{"cached":null,"ignore_cache":false}'), +(57255, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.434+06', '{"cached":null,"ignore_cache":false}'), +(57256, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.459+06', '{"cached":null,"ignore_cache":false}'), +(57257, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.491+06', '{"cached":null,"ignore_cache":false}'), +(57258, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.525+06', '{"cached":null,"ignore_cache":false}'), +(57259, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.555+06', '{"cached":null,"ignore_cache":false}'), +(57260, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:50:55.605+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57261, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.308+06', '{"cached":null,"ignore_cache":false}'), +(57262, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.331+06', '{"cached":null,"ignore_cache":false}'), +(57263, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.358+06', '{"cached":null,"ignore_cache":false}'), +(57264, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.359+06', '{"cached":null,"ignore_cache":false}'), +(57265, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.475+06', '{"cached":null,"ignore_cache":false}'), +(57266, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.491+06', '{"cached":null,"ignore_cache":false}'), +(57267, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.673+06', '{"cached":null,"ignore_cache":false}'), +(57268, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.708+06', '{"cached":null,"ignore_cache":false}'), +(57269, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.745+06', '{"cached":null,"ignore_cache":false}'), +(57270, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.814+06', '{"cached":null,"ignore_cache":false}'), +(57271, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.817+06', '{"cached":null,"ignore_cache":false}'), +(57272, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.82+06', '{"cached":null,"ignore_cache":false}'), +(57273, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:03.94+06', '{"cached":null,"ignore_cache":false}'), +(57274, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:04.371+06', '{"cached":null,"ignore_cache":false}'), +(57275, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:04.374+06', '{"cached":null,"ignore_cache":false}'), +(57276, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.392+06', '{"cached":null,"ignore_cache":null}'), +(57277, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.629+06', '{"cached":null,"ignore_cache":false}'), +(57278, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.64+06', '{"cached":null,"ignore_cache":false}'), +(57279, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.706+06', '{"cached":null,"ignore_cache":false}'), +(57280, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.716+06', '{"cached":null,"ignore_cache":false}'), +(57281, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.77+06', '{"cached":null,"ignore_cache":false}'), +(57282, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.793+06', '{"cached":null,"ignore_cache":false}'), +(57283, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.835+06', '{"cached":null,"ignore_cache":false}'), +(57284, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:34.851+06', '{"cached":null,"ignore_cache":false}'), +(57285, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-08 12:51:42.617+06', '{"cached":null,"ignore_cache":null}'), +(57286, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2023-05-08 12:55:33.074+06', '{"cached":null,"ignore_cache":null}'), +(57287, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2023-05-08 12:55:33.297+06', '{"cached":null,"ignore_cache":false}'), +(57288, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.478+06', '{"cached":null,"ignore_cache":false}'), +(57289, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.482+06', '{"cached":null,"ignore_cache":false}'), +(57290, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.516+06', '{"cached":null,"ignore_cache":false}'), +(57291, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.52+06', '{"cached":null,"ignore_cache":false}'), +(57292, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.659+06', '{"cached":null,"ignore_cache":false}'), +(57293, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.674+06', '{"cached":null,"ignore_cache":false}'), +(57294, NULL, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.823+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57295, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.837+06', '{"cached":null,"ignore_cache":false}'), +(57296, NULL, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.85+06', '{"cached":null,"ignore_cache":false}'), +(57297, NULL, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:27.953+06', '{"cached":null,"ignore_cache":false}'), +(57298, NULL, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:28.05+06', '{"cached":null,"ignore_cache":false}'), +(57299, NULL, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:28.075+06', '{"cached":null,"ignore_cache":false}'), +(57300, NULL, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:28.136+06', '{"cached":null,"ignore_cache":false}'), +(57301, NULL, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:28.3+06', '{"cached":null,"ignore_cache":false}'), +(57302, NULL, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:28.392+06', '{"cached":null,"ignore_cache":false}'), +(57303, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:38.959+06', '{"cached":null,"ignore_cache":null}'), +(57304, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:39.135+06', '{"cached":null,"ignore_cache":false}'), +(57305, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:54.546+06', '{"cached":null,"ignore_cache":null}'), +(57306, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 12:57:54.782+06', '{"cached":null,"ignore_cache":false}'), +(57307, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:50.746+06', '{"cached":null,"ignore_cache":null}'), +(57308, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:50.841+06', '{"cached":null,"ignore_cache":false}'), +(57309, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:50.849+06', '{"cached":null,"ignore_cache":false}'), +(57310, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:58.96+06', '{"cached":null,"ignore_cache":null}'), +(57311, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.138+06', '{"cached":null,"ignore_cache":false}'), +(57312, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.14+06', '{"cached":null,"ignore_cache":false}'), +(57313, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.282+06', '{"cached":null,"ignore_cache":false}'), +(57314, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.286+06', '{"cached":null,"ignore_cache":false}'), +(57315, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.326+06', '{"cached":null,"ignore_cache":false}'), +(57316, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.362+06', '{"cached":null,"ignore_cache":false}'), +(57317, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.434+06', '{"cached":null,"ignore_cache":false}'), +(57318, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:58:59.443+06', '{"cached":null,"ignore_cache":false}'), +(57319, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:04.135+06', '{"cached":null,"ignore_cache":null}'), +(57320, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:04.282+06', '{"cached":null,"ignore_cache":null}'), +(57321, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:14.988+06', '{"cached":null,"ignore_cache":null}'), +(57322, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:15.275+06', '{"cached":null,"ignore_cache":false}'), +(57323, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:25.458+06', '{"cached":null,"ignore_cache":null}'), +(57324, 1, 'card', 5, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:25.68+06', '{"cached":null,"ignore_cache":false}'), +(57325, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.265+06', '{"cached":null,"ignore_cache":null}'), +(57326, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.485+06', '{"cached":null,"ignore_cache":false}'), +(57327, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.493+06', '{"cached":null,"ignore_cache":false}'), +(57328, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.515+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57329, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.517+06', '{"cached":null,"ignore_cache":false}'), +(57330, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.588+06', '{"cached":null,"ignore_cache":false}'), +(57331, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.607+06', '{"cached":null,"ignore_cache":false}'), +(57332, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.672+06', '{"cached":null,"ignore_cache":false}'), +(57333, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:38.723+06', '{"cached":null,"ignore_cache":false}'), +(57334, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:42.279+06', '{"cached":null,"ignore_cache":null}'), +(57335, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:42.416+06', '{"cached":null,"ignore_cache":null}'), +(57336, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-08 12:59:56.836+06', '{"cached":null,"ignore_cache":null}'), +(57337, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:00:09.115+06', '{"cached":null,"ignore_cache":null}'), +(57338, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-08 13:00:09.181+06', '{"cached":null,"ignore_cache":null}'), +(57339, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.517+06', '{"cached":null,"ignore_cache":false}'), +(57340, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.538+06', '{"cached":null,"ignore_cache":false}'), +(57341, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.603+06', '{"cached":null,"ignore_cache":false}'), +(57342, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.722+06', '{"cached":null,"ignore_cache":false}'), +(57343, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.853+06', '{"cached":null,"ignore_cache":false}'), +(57344, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.87+06', '{"cached":null,"ignore_cache":false}'), +(57345, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.932+06', '{"cached":null,"ignore_cache":false}'), +(57346, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.946+06', '{"cached":null,"ignore_cache":false}'), +(57347, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:37.951+06', '{"cached":null,"ignore_cache":false}'), +(57348, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.111+06', '{"cached":null,"ignore_cache":false}'), +(57349, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.135+06', '{"cached":null,"ignore_cache":false}'), +(57350, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.328+06', '{"cached":null,"ignore_cache":false}'), +(57351, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.341+06', '{"cached":null,"ignore_cache":false}'), +(57352, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.361+06', '{"cached":null,"ignore_cache":false}'), +(57353, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:38.382+06', '{"cached":null,"ignore_cache":false}'), +(57354, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.468+06', '{"cached":null,"ignore_cache":false}'), +(57355, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.484+06', '{"cached":null,"ignore_cache":false}'), +(57356, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.498+06', '{"cached":null,"ignore_cache":false}'), +(57357, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.502+06', '{"cached":null,"ignore_cache":false}'), +(57358, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.639+06', '{"cached":null,"ignore_cache":false}'), +(57359, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.642+06', '{"cached":null,"ignore_cache":false}'), +(57360, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.675+06', '{"cached":null,"ignore_cache":false}'), +(57361, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 13:04:46.753+06', '{"cached":null,"ignore_cache":false}'), +(57362, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.21+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57363, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.401+06', '{"cached":null,"ignore_cache":false}'), +(57364, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.426+06', '{"cached":null,"ignore_cache":false}'), +(57365, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.461+06', '{"cached":null,"ignore_cache":false}'), +(57366, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.468+06', '{"cached":null,"ignore_cache":false}'), +(57367, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.525+06', '{"cached":null,"ignore_cache":false}'), +(57368, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.548+06', '{"cached":null,"ignore_cache":false}'), +(57369, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.68+06', '{"cached":null,"ignore_cache":false}'), +(57370, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 13:26:13.708+06', '{"cached":null,"ignore_cache":false}'), +(57371, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:33.493+06', '{"cached":null,"ignore_cache":null}'), +(57372, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:33.685+06', '{"cached":null,"ignore_cache":false}'), +(57373, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:33.713+06', '{"cached":null,"ignore_cache":false}'), +(57374, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.754+06', '{"cached":null,"ignore_cache":false}'), +(57375, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.776+06', '{"cached":null,"ignore_cache":false}'), +(57376, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.799+06', '{"cached":null,"ignore_cache":false}'), +(57377, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.864+06', '{"cached":null,"ignore_cache":false}'), +(57378, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:48.897+06', '{"cached":null,"ignore_cache":false}'), +(57379, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.002+06', '{"cached":null,"ignore_cache":false}'), +(57380, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.061+06', '{"cached":null,"ignore_cache":false}'), +(57381, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.092+06', '{"cached":null,"ignore_cache":false}'), +(57382, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.181+06', '{"cached":null,"ignore_cache":false}'), +(57383, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.211+06', '{"cached":null,"ignore_cache":false}'), +(57384, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.248+06', '{"cached":null,"ignore_cache":false}'), +(57385, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.315+06', '{"cached":null,"ignore_cache":false}'), +(57386, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.344+06', '{"cached":null,"ignore_cache":false}'), +(57387, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.53+06', '{"cached":null,"ignore_cache":false}'), +(57388, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:49.61+06', '{"cached":null,"ignore_cache":false}'), +(57389, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.513+06', '{"cached":null,"ignore_cache":false}'), +(57390, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.568+06', '{"cached":null,"ignore_cache":false}'), +(57391, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.573+06', '{"cached":null,"ignore_cache":false}'), +(57392, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.594+06', '{"cached":null,"ignore_cache":false}'), +(57393, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.659+06', '{"cached":null,"ignore_cache":false}'), +(57394, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.685+06', '{"cached":null,"ignore_cache":false}'), +(57395, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.732+06', '{"cached":null,"ignore_cache":false}'), +(57396, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-08 13:27:57.743+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57397, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:54.782+06', '{"cached":null,"ignore_cache":null}'), +(57398, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:54.876+06', '{"cached":null,"ignore_cache":false}'), +(57399, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:54.896+06', '{"cached":null,"ignore_cache":false}'), +(57400, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:56.931+06', '{"cached":null,"ignore_cache":null}'), +(57401, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-08 13:28:57.198+06', '{"cached":null,"ignore_cache":false}'), +(57402, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:10.116+06', '{"cached":null,"ignore_cache":null}'), +(57403, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:10.198+06', '{"cached":null,"ignore_cache":false}'), +(57404, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:10.212+06', '{"cached":null,"ignore_cache":false}'), +(57405, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:13.757+06', '{"cached":null,"ignore_cache":null}'), +(57406, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:14.033+06', '{"cached":null,"ignore_cache":false}'), +(57407, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:28.149+06', '{"cached":null,"ignore_cache":false}'), +(57408, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:40.909+06', '{"cached":null,"ignore_cache":null}'), +(57409, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:41.181+06', '{"cached":null,"ignore_cache":false}'), +(57410, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:43.343+06', '{"cached":null,"ignore_cache":null}'), +(57411, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:43.417+06', '{"cached":null,"ignore_cache":false}'), +(57412, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-08 13:29:43.432+06', '{"cached":null,"ignore_cache":false}'), +(57413, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.244+06', '{"cached":null,"ignore_cache":null}'), +(57414, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.433+06', '{"cached":null,"ignore_cache":false}'), +(57415, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.447+06', '{"cached":null,"ignore_cache":false}'), +(57416, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.463+06', '{"cached":null,"ignore_cache":false}'), +(57417, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.503+06', '{"cached":null,"ignore_cache":false}'), +(57418, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.508+06', '{"cached":null,"ignore_cache":false}'), +(57419, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-08 13:30:30.564+06', '{"cached":null,"ignore_cache":false}'), +(57420, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-08 13:31:29.354+06', '{"cached":null,"ignore_cache":null}'), +(57421, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:31:31.45+06', '{"cached":null,"ignore_cache":null}'), +(57422, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:31:31.693+06', '{"cached":null,"ignore_cache":false}'), +(57423, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:29.21+06', '{"cached":null,"ignore_cache":false}'), +(57424, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:33.806+06', '{"cached":null,"ignore_cache":null}'), +(57425, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:34.149+06', '{"cached":null,"ignore_cache":false}'), +(57426, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:44.685+06', '{"cached":null,"ignore_cache":null}'), +(57427, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:44.929+06', '{"cached":null,"ignore_cache":false}'), +(57428, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:10.231+06', '{"cached":null,"ignore_cache":null}'), +(57429, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.296+06', '{"cached":null,"ignore_cache":false}'), +(57430, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.34+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57431, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.343+06', '{"cached":null,"ignore_cache":false}'), +(57432, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.356+06', '{"cached":null,"ignore_cache":false}'), +(57433, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.482+06', '{"cached":null,"ignore_cache":false}'), +(57434, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.496+06', '{"cached":null,"ignore_cache":false}'), +(57435, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.602+06', '{"cached":null,"ignore_cache":false}'), +(57436, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:31:11.636+06', '{"cached":null,"ignore_cache":false}'), +(57437, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:48.876+06', '{"cached":null,"ignore_cache":null}'), +(57438, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.08+06', '{"cached":null,"ignore_cache":false}'), +(57439, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.103+06', '{"cached":null,"ignore_cache":false}'), +(57440, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.202+06', '{"cached":null,"ignore_cache":false}'), +(57441, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.215+06', '{"cached":null,"ignore_cache":false}'), +(57442, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.284+06', '{"cached":null,"ignore_cache":false}'), +(57443, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.286+06', '{"cached":null,"ignore_cache":false}'), +(57444, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.391+06', '{"cached":null,"ignore_cache":false}'), +(57445, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:32:50.427+06', '{"cached":null,"ignore_cache":false}'), +(57446, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:03.834+06', '{"cached":null,"ignore_cache":null}'), +(57447, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.788+06', '{"cached":null,"ignore_cache":false}'), +(57448, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.799+06', '{"cached":null,"ignore_cache":false}'), +(57449, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.967+06', '{"cached":null,"ignore_cache":false}'), +(57450, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:04.989+06', '{"cached":null,"ignore_cache":false}'), +(57451, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:05.007+06', '{"cached":null,"ignore_cache":false}'), +(57452, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:05.031+06', '{"cached":null,"ignore_cache":false}'), +(57453, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:05.101+06', '{"cached":null,"ignore_cache":false}'), +(57454, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:35:05.137+06', '{"cached":null,"ignore_cache":false}'), +(57455, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.688+06', '{"cached":null,"ignore_cache":null}'), +(57456, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:09.951+06', '{"cached":null,"ignore_cache":false}'), +(57457, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.022+06', '{"cached":null,"ignore_cache":false}'), +(57458, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.052+06', '{"cached":null,"ignore_cache":false}'), +(57459, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.242+06', '{"cached":null,"ignore_cache":false}'), +(57460, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.244+06', '{"cached":null,"ignore_cache":false}'), +(57461, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.281+06', '{"cached":null,"ignore_cache":false}'), +(57462, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.319+06', '{"cached":null,"ignore_cache":false}'), +(57463, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:10.348+06', '{"cached":null,"ignore_cache":false}'), +(57464, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:36:51.562+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57465, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:37:14.788+06', '{"cached":null,"ignore_cache":null}'), +(57466, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:39:33.462+06', '{"cached":null,"ignore_cache":null}'), +(57467, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:04.928+06', '{"cached":null,"ignore_cache":null}'), +(57468, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.052+06', '{"cached":null,"ignore_cache":false}'), +(57469, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.066+06', '{"cached":null,"ignore_cache":false}'), +(57470, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.14+06', '{"cached":null,"ignore_cache":false}'), +(57471, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.144+06', '{"cached":null,"ignore_cache":false}'), +(57472, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.268+06', '{"cached":null,"ignore_cache":false}'), +(57473, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.284+06', '{"cached":null,"ignore_cache":false}'), +(57474, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.33+06', '{"cached":null,"ignore_cache":false}'), +(57475, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:06.403+06', '{"cached":null,"ignore_cache":false}'), +(57476, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.377+06', '{"cached":null,"ignore_cache":null}'), +(57477, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.667+06', '{"cached":null,"ignore_cache":false}'), +(57478, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.702+06', '{"cached":null,"ignore_cache":false}'), +(57479, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.752+06', '{"cached":null,"ignore_cache":false}'), +(57480, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.796+06', '{"cached":null,"ignore_cache":false}'), +(57481, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.912+06', '{"cached":null,"ignore_cache":false}'), +(57482, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.92+06', '{"cached":null,"ignore_cache":false}'), +(57483, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.951+06', '{"cached":null,"ignore_cache":false}'), +(57484, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:16.983+06', '{"cached":null,"ignore_cache":false}'), +(57485, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:50:36.504+06', '{"cached":null,"ignore_cache":null}'), +(57486, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:19.046+06', '{"cached":null,"ignore_cache":null}'), +(57487, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.136+06', '{"cached":null,"ignore_cache":false}'), +(57488, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.202+06', '{"cached":null,"ignore_cache":false}'), +(57489, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.279+06', '{"cached":null,"ignore_cache":false}'), +(57490, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.284+06', '{"cached":null,"ignore_cache":false}'), +(57491, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.341+06', '{"cached":null,"ignore_cache":false}'), +(57492, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.348+06', '{"cached":null,"ignore_cache":false}'), +(57493, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.45+06', '{"cached":null,"ignore_cache":false}'), +(57494, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:51:20.475+06', '{"cached":null,"ignore_cache":false}'), +(57495, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:56:17.323+06', '{"cached":null,"ignore_cache":null}'), +(57496, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:25.487+06', '{"cached":null,"ignore_cache":null}'), +(57497, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.706+06', '{"cached":null,"ignore_cache":false}'), +(57498, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.805+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57499, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.807+06', '{"cached":null,"ignore_cache":false}'), +(57500, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.826+06', '{"cached":null,"ignore_cache":false}'), +(57501, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.914+06', '{"cached":null,"ignore_cache":false}'), +(57502, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.918+06', '{"cached":null,"ignore_cache":false}'), +(57503, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:26.999+06', '{"cached":null,"ignore_cache":false}'), +(57504, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:27.099+06', '{"cached":null,"ignore_cache":false}'), +(57505, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:39.252+06', '{"cached":null,"ignore_cache":null}'), +(57506, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.182+06', '{"cached":null,"ignore_cache":false}'), +(57507, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.239+06', '{"cached":null,"ignore_cache":false}'), +(57508, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.272+06', '{"cached":null,"ignore_cache":false}'), +(57509, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.274+06', '{"cached":null,"ignore_cache":false}'), +(57510, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.428+06', '{"cached":null,"ignore_cache":false}'), +(57511, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.454+06', '{"cached":null,"ignore_cache":false}'), +(57512, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.534+06', '{"cached":null,"ignore_cache":false}'), +(57513, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:40.569+06', '{"cached":null,"ignore_cache":false}'), +(57514, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 13:59:59.839+06', '{"cached":null,"ignore_cache":null}'), +(57515, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.99+06', '{"cached":null,"ignore_cache":false}'), +(57516, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:00.993+06', '{"cached":null,"ignore_cache":false}'), +(57517, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.056+06', '{"cached":null,"ignore_cache":false}'), +(57518, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.078+06', '{"cached":null,"ignore_cache":false}'), +(57519, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.181+06', '{"cached":null,"ignore_cache":false}'), +(57520, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.24+06', '{"cached":null,"ignore_cache":false}'), +(57521, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.277+06', '{"cached":null,"ignore_cache":false}'), +(57522, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:01.417+06', '{"cached":null,"ignore_cache":false}'), +(57523, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:00:16.121+06', '{"cached":null,"ignore_cache":null}'), +(57524, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:04:28.892+06', '{"cached":null,"ignore_cache":null}'), +(57525, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:04:29.295+06', '{"cached":null,"ignore_cache":false}'), +(57526, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:05:07.851+06', '{"cached":null,"ignore_cache":true}'), +(57527, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:05:30.552+06', '{"cached":null,"ignore_cache":null}'), +(57528, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:05:30.782+06', '{"cached":null,"ignore_cache":false}'), +(57529, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:07:13.505+06', '{"cached":null,"ignore_cache":null}'), +(57530, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:07:14.398+06', '{"cached":null,"ignore_cache":false}'), +(57531, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:51.98+06', '{"cached":null,"ignore_cache":null}'), +(57532, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:52.224+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57533, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:52.232+06', '{"cached":null,"ignore_cache":false}'), +(57534, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:57.296+06', '{"cached":null,"ignore_cache":null}'), +(57535, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:57.481+06', '{"cached":null,"ignore_cache":false}'), +(57536, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-09 14:09:57.492+06', '{"cached":null,"ignore_cache":false}'), +(57537, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.391+06', '{"cached":null,"ignore_cache":null}'), +(57538, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.911+06', '{"cached":null,"ignore_cache":false}'), +(57539, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:02.981+06', '{"cached":null,"ignore_cache":false}'), +(57540, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.231+06', '{"cached":null,"ignore_cache":false}'), +(57541, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.281+06', '{"cached":null,"ignore_cache":false}'), +(57542, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.375+06', '{"cached":null,"ignore_cache":false}'), +(57543, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.397+06', '{"cached":null,"ignore_cache":false}'), +(57544, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.399+06', '{"cached":null,"ignore_cache":false}'), +(57545, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:03.408+06', '{"cached":null,"ignore_cache":false}'), +(57546, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:14.726+06', '{"cached":null,"ignore_cache":null}'), +(57547, 1, 'card', 18, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:15.023+06', '{"cached":null,"ignore_cache":false}'), +(57548, 1, 'card', 19, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:15.025+06', '{"cached":null,"ignore_cache":false}'), +(57549, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:15.048+06', '{"cached":null,"ignore_cache":false}'), +(57550, 1, 'card', 29, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:15.118+06', '{"cached":null,"ignore_cache":false}'), +(57551, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:15.153+06', '{"cached":null,"ignore_cache":false}'), +(57552, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-09 14:10:15.222+06', '{"cached":null,"ignore_cache":false}'), +(57553, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:25.311+06', '{"cached":null,"ignore_cache":null}'), +(57554, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:35.242+06', '{"cached":null,"ignore_cache":null}'), +(57555, 1, 'card', 21, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:35.577+06', '{"cached":null,"ignore_cache":false}'), +(57556, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:17:43.014+06', '{"cached":null,"ignore_cache":null}'), +(57557, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-09 14:17:43.284+06', '{"cached":null,"ignore_cache":false}'), +(57558, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-09 14:17:43.355+06', '{"cached":null,"ignore_cache":false}'), +(57559, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-09 14:27:15.525+06', '{"cached":null,"ignore_cache":null}'), +(57560, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-09 14:27:16.056+06', '{"cached":null,"ignore_cache":false}'), +(57561, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-09 14:27:16.07+06', '{"cached":null,"ignore_cache":false}'), +(57562, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:28:47.448+06', '{"cached":null,"ignore_cache":null}'), +(57563, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-09 14:28:47.737+06', '{"cached":null,"ignore_cache":false}'), +(57564, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-09 14:28:47.988+06', '{"cached":null,"ignore_cache":false}'), +(57565, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:08.708+06', '{"cached":null,"ignore_cache":null}'), +(57566, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.217+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57567, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.259+06', '{"cached":null,"ignore_cache":false}'), +(57568, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.261+06', '{"cached":null,"ignore_cache":false}'), +(57569, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.293+06', '{"cached":null,"ignore_cache":false}'), +(57570, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.457+06', '{"cached":null,"ignore_cache":false}'), +(57571, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.467+06', '{"cached":null,"ignore_cache":false}'), +(57572, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.522+06', '{"cached":null,"ignore_cache":false}'), +(57573, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:09.531+06', '{"cached":null,"ignore_cache":false}'), +(57574, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:28+06', '{"cached":null,"ignore_cache":null}'), +(57575, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:28.149+06', '{"cached":null,"ignore_cache":false}'), +(57576, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:28.276+06', '{"cached":null,"ignore_cache":false}'), +(57577, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:37.059+06', '{"cached":null,"ignore_cache":null}'), +(57578, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:37.202+06', '{"cached":null,"ignore_cache":false}'), +(57579, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:37.256+06', '{"cached":null,"ignore_cache":false}'), +(57580, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.371+06', '{"cached":null,"ignore_cache":null}'), +(57581, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.648+06', '{"cached":null,"ignore_cache":false}'), +(57582, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.67+06', '{"cached":null,"ignore_cache":false}'), +(57583, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.671+06', '{"cached":null,"ignore_cache":false}'), +(57584, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.773+06', '{"cached":null,"ignore_cache":false}'), +(57585, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.825+06', '{"cached":null,"ignore_cache":false}'), +(57586, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.834+06', '{"cached":null,"ignore_cache":false}'), +(57587, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.861+06', '{"cached":null,"ignore_cache":false}'), +(57588, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:43:51.91+06', '{"cached":null,"ignore_cache":false}'), +(57589, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:08.955+06', '{"cached":null,"ignore_cache":null}'), +(57590, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:09.304+06', '{"cached":null,"ignore_cache":false}'), +(57591, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.195+06', '{"cached":null,"ignore_cache":null}'), +(57592, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.376+06', '{"cached":null,"ignore_cache":false}'), +(57593, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.454+06', '{"cached":null,"ignore_cache":false}'), +(57594, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.456+06', '{"cached":null,"ignore_cache":false}'), +(57595, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.461+06', '{"cached":null,"ignore_cache":false}'), +(57596, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.56+06', '{"cached":null,"ignore_cache":false}'), +(57597, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.609+06', '{"cached":null,"ignore_cache":false}'), +(57598, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.614+06', '{"cached":null,"ignore_cache":false}'), +(57599, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:42.623+06', '{"cached":null,"ignore_cache":false}'), +(57600, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:44.512+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57601, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:44.839+06', '{"cached":null,"ignore_cache":false}'), +(57602, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:56.87+06', '{"cached":null,"ignore_cache":null}'), +(57603, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.066+06', '{"cached":null,"ignore_cache":false}'), +(57604, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.081+06', '{"cached":null,"ignore_cache":false}'), +(57605, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.121+06', '{"cached":null,"ignore_cache":false}'), +(57606, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.153+06', '{"cached":null,"ignore_cache":false}'), +(57607, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.205+06', '{"cached":null,"ignore_cache":false}'), +(57608, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.311+06', '{"cached":null,"ignore_cache":false}'), +(57609, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.349+06', '{"cached":null,"ignore_cache":false}'), +(57610, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:57.367+06', '{"cached":null,"ignore_cache":false}'), +(57611, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:01.292+06', '{"cached":null,"ignore_cache":null}'), +(57612, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:01.635+06', '{"cached":null,"ignore_cache":false}'), +(57613, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.438+06', '{"cached":null,"ignore_cache":null}'), +(57614, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.601+06', '{"cached":null,"ignore_cache":false}'), +(57615, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.625+06', '{"cached":null,"ignore_cache":false}'), +(57616, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.673+06', '{"cached":null,"ignore_cache":false}'), +(57617, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.676+06', '{"cached":null,"ignore_cache":false}'), +(57618, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.784+06', '{"cached":null,"ignore_cache":false}'), +(57619, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.809+06', '{"cached":null,"ignore_cache":false}'), +(57620, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.866+06', '{"cached":null,"ignore_cache":false}'), +(57621, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:03.868+06', '{"cached":null,"ignore_cache":false}'), +(57622, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.142+06', '{"cached":null,"ignore_cache":null}'), +(57623, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.727+06', '{"cached":null,"ignore_cache":false}'), +(57624, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.743+06', '{"cached":null,"ignore_cache":false}'), +(57625, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.781+06', '{"cached":null,"ignore_cache":false}'), +(57626, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.795+06', '{"cached":null,"ignore_cache":false}'), +(57627, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.873+06', '{"cached":null,"ignore_cache":false}'), +(57628, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.891+06', '{"cached":null,"ignore_cache":false}'), +(57629, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.903+06', '{"cached":null,"ignore_cache":false}'), +(57630, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:05.946+06', '{"cached":null,"ignore_cache":false}'), +(57631, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.201+06', '{"cached":null,"ignore_cache":null}'), +(57632, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.713+06', '{"cached":null,"ignore_cache":false}'), +(57633, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.73+06', '{"cached":null,"ignore_cache":false}'), +(57634, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.757+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57635, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.787+06', '{"cached":null,"ignore_cache":false}'), +(57636, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.871+06', '{"cached":null,"ignore_cache":false}'), +(57637, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.919+06', '{"cached":null,"ignore_cache":false}'), +(57638, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.93+06', '{"cached":null,"ignore_cache":false}'), +(57639, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:09.951+06', '{"cached":null,"ignore_cache":false}'), +(57640, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:11.655+06', '{"cached":null,"ignore_cache":null}'), +(57641, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:45:12.038+06', '{"cached":null,"ignore_cache":false}'), +(57642, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.095+06', '{"cached":null,"ignore_cache":null}'), +(57643, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.283+06', '{"cached":null,"ignore_cache":false}'), +(57644, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.302+06', '{"cached":null,"ignore_cache":false}'), +(57645, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.304+06', '{"cached":null,"ignore_cache":false}'), +(57646, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.338+06', '{"cached":null,"ignore_cache":false}'), +(57647, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.46+06', '{"cached":null,"ignore_cache":false}'), +(57648, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.465+06', '{"cached":null,"ignore_cache":false}'), +(57649, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.476+06', '{"cached":null,"ignore_cache":false}'), +(57650, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:29.503+06', '{"cached":null,"ignore_cache":false}'), +(57651, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.274+06', '{"cached":null,"ignore_cache":null}'), +(57652, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.407+06', '{"cached":null,"ignore_cache":false}'), +(57653, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.434+06', '{"cached":null,"ignore_cache":false}'), +(57654, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.506+06', '{"cached":null,"ignore_cache":false}'), +(57655, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.532+06', '{"cached":null,"ignore_cache":false}'), +(57656, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.543+06', '{"cached":null,"ignore_cache":false}'), +(57657, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.548+06', '{"cached":null,"ignore_cache":false}'), +(57658, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.66+06', '{"cached":null,"ignore_cache":false}'), +(57659, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:42.688+06', '{"cached":null,"ignore_cache":false}'), +(57660, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:47:09.432+06', '{"cached":null,"ignore_cache":null}'), +(57661, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:52:44.161+06', '{"cached":null,"ignore_cache":null}'), +(57662, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:51.974+06', '{"cached":null,"ignore_cache":null}'), +(57663, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.104+06', '{"cached":null,"ignore_cache":false}'), +(57664, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.113+06', '{"cached":null,"ignore_cache":false}'), +(57665, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.225+06', '{"cached":null,"ignore_cache":false}'), +(57666, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.298+06', '{"cached":null,"ignore_cache":false}'), +(57667, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.335+06', '{"cached":null,"ignore_cache":false}'), +(57668, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.343+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57669, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.481+06', '{"cached":null,"ignore_cache":false}'), +(57670, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:55:53.53+06', '{"cached":null,"ignore_cache":false}'), +(57671, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-09 14:56:08.958+06', '{"cached":null,"ignore_cache":null}'), +(57672, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-09 14:56:09.203+06', '{"cached":null,"ignore_cache":false}'), +(57673, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-09 14:56:09.259+06', '{"cached":null,"ignore_cache":false}'), +(57674, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:13.84+06', '{"cached":null,"ignore_cache":null}'), +(57675, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.342+06', '{"cached":null,"ignore_cache":false}'), +(57676, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.347+06', '{"cached":null,"ignore_cache":false}'), +(57677, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.423+06', '{"cached":null,"ignore_cache":false}'), +(57678, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.477+06', '{"cached":null,"ignore_cache":false}'), +(57679, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.531+06', '{"cached":null,"ignore_cache":false}'), +(57680, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.582+06', '{"cached":null,"ignore_cache":false}'), +(57681, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.621+06', '{"cached":null,"ignore_cache":false}'), +(57682, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:14.636+06', '{"cached":null,"ignore_cache":false}'), +(57683, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:33.052+06', '{"cached":null,"ignore_cache":null}'), +(57684, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:47.13+06', '{"cached":null,"ignore_cache":null}'), +(57685, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.233+06', '{"cached":null,"ignore_cache":false}'), +(57686, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.288+06', '{"cached":null,"ignore_cache":false}'), +(57687, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.381+06', '{"cached":null,"ignore_cache":false}'), +(57688, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.383+06', '{"cached":null,"ignore_cache":false}'), +(57689, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.468+06', '{"cached":null,"ignore_cache":false}'), +(57690, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.473+06', '{"cached":null,"ignore_cache":false}'), +(57691, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.578+06', '{"cached":null,"ignore_cache":false}'), +(57692, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:26:48.654+06', '{"cached":null,"ignore_cache":false}'), +(57693, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:02.749+06', '{"cached":null,"ignore_cache":null}'), +(57694, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:03.376+06', '{"cached":null,"ignore_cache":false}'), +(57695, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.338+06', '{"cached":null,"ignore_cache":null}'), +(57696, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.66+06', '{"cached":null,"ignore_cache":false}'), +(57697, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.696+06', '{"cached":null,"ignore_cache":false}'), +(57698, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.707+06', '{"cached":null,"ignore_cache":false}'), +(57699, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.749+06', '{"cached":null,"ignore_cache":false}'), +(57700, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.783+06', '{"cached":null,"ignore_cache":false}'), +(57701, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.81+06', '{"cached":null,"ignore_cache":false}'), +(57702, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.934+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57703, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:11.944+06', '{"cached":null,"ignore_cache":false}'), +(57704, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:18.903+06', '{"cached":null,"ignore_cache":null}'), +(57705, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.95+06', '{"cached":null,"ignore_cache":false}'), +(57706, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:19.952+06', '{"cached":null,"ignore_cache":false}'), +(57707, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.018+06', '{"cached":null,"ignore_cache":false}'), +(57708, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.072+06', '{"cached":null,"ignore_cache":false}'), +(57709, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.1+06', '{"cached":null,"ignore_cache":false}'), +(57710, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.146+06', '{"cached":null,"ignore_cache":false}'), +(57711, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.189+06', '{"cached":null,"ignore_cache":false}'), +(57712, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:20.195+06', '{"cached":null,"ignore_cache":false}'), +(57713, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:35.228+06', '{"cached":null,"ignore_cache":null}'), +(57714, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.092+06', '{"cached":null,"ignore_cache":null}'), +(57715, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.303+06', '{"cached":null,"ignore_cache":false}'), +(57716, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.329+06', '{"cached":null,"ignore_cache":false}'), +(57717, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.389+06', '{"cached":null,"ignore_cache":false}'), +(57718, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.455+06', '{"cached":null,"ignore_cache":false}'), +(57719, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.542+06', '{"cached":null,"ignore_cache":false}'), +(57720, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.589+06', '{"cached":null,"ignore_cache":false}'), +(57721, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.689+06', '{"cached":null,"ignore_cache":false}'), +(57722, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:52.707+06', '{"cached":null,"ignore_cache":false}'), +(57723, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:45.963+06', '{"cached":null,"ignore_cache":null}'), +(57724, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.197+06', '{"cached":null,"ignore_cache":false}'), +(57725, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.244+06', '{"cached":null,"ignore_cache":false}'), +(57726, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.328+06', '{"cached":null,"ignore_cache":false}'), +(57727, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.33+06', '{"cached":null,"ignore_cache":false}'), +(57728, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.445+06', '{"cached":null,"ignore_cache":false}'), +(57729, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.476+06', '{"cached":null,"ignore_cache":false}'), +(57730, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.479+06', '{"cached":null,"ignore_cache":false}'), +(57731, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:45:46.489+06', '{"cached":null,"ignore_cache":false}'), +(57732, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.241+06', '{"cached":null,"ignore_cache":null}'), +(57733, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.778+06', '{"cached":null,"ignore_cache":false}'), +(57734, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.786+06', '{"cached":null,"ignore_cache":false}'), +(57735, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.802+06', '{"cached":null,"ignore_cache":false}'), +(57736, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.842+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57737, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.926+06', '{"cached":null,"ignore_cache":false}'), +(57738, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.953+06', '{"cached":null,"ignore_cache":false}'), +(57739, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:40.967+06', '{"cached":null,"ignore_cache":false}'), +(57740, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:46:41.003+06', '{"cached":null,"ignore_cache":false}'), +(57741, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:14.501+06', '{"cached":null,"ignore_cache":null}'), +(57742, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.568+06', '{"cached":null,"ignore_cache":false}'), +(57743, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.58+06', '{"cached":null,"ignore_cache":false}'), +(57744, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.591+06', '{"cached":null,"ignore_cache":false}'), +(57745, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.603+06', '{"cached":null,"ignore_cache":false}'), +(57746, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.697+06', '{"cached":null,"ignore_cache":false}'), +(57747, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.708+06', '{"cached":null,"ignore_cache":false}'), +(57748, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.758+06', '{"cached":null,"ignore_cache":false}'), +(57749, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:30.76+06', '{"cached":null,"ignore_cache":false}'), +(57750, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.007+06', '{"cached":null,"ignore_cache":false}'), +(57751, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.022+06', '{"cached":null,"ignore_cache":false}'), +(57752, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.023+06', '{"cached":null,"ignore_cache":false}'), +(57753, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.082+06', '{"cached":null,"ignore_cache":false}'), +(57754, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.152+06', '{"cached":null,"ignore_cache":false}'), +(57755, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.185+06', '{"cached":null,"ignore_cache":false}'), +(57756, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.257+06', '{"cached":null,"ignore_cache":false}'), +(57757, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:42.259+06', '{"cached":null,"ignore_cache":false}'), +(57758, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.353+06', '{"cached":null,"ignore_cache":false}'), +(57759, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.377+06', '{"cached":null,"ignore_cache":false}'), +(57760, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.379+06', '{"cached":null,"ignore_cache":false}'), +(57761, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.454+06', '{"cached":null,"ignore_cache":false}'), +(57762, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.496+06', '{"cached":null,"ignore_cache":false}'), +(57763, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.532+06', '{"cached":null,"ignore_cache":false}'), +(57764, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.567+06', '{"cached":null,"ignore_cache":false}'), +(57765, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:53.587+06', '{"cached":null,"ignore_cache":false}'), +(57766, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:12.61+06', '{"cached":null,"ignore_cache":null}'), +(57767, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:12.765+06', '{"cached":null,"ignore_cache":false}'), +(57768, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:15.996+06', '{"cached":null,"ignore_cache":null}'), +(57769, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.147+06', '{"cached":null,"ignore_cache":false}'), +(57770, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.155+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57771, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.182+06', '{"cached":null,"ignore_cache":false}'), +(57772, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.203+06', '{"cached":null,"ignore_cache":false}'), +(57773, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.303+06', '{"cached":null,"ignore_cache":false}'), +(57774, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.311+06', '{"cached":null,"ignore_cache":false}'), +(57775, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.352+06', '{"cached":null,"ignore_cache":false}'), +(57776, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:16.355+06', '{"cached":null,"ignore_cache":false}'), +(57777, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.756+06', '{"cached":null,"ignore_cache":false}'), +(57778, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.767+06', '{"cached":null,"ignore_cache":false}'), +(57779, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.778+06', '{"cached":null,"ignore_cache":false}'), +(57780, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.814+06', '{"cached":null,"ignore_cache":false}'), +(57781, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.878+06', '{"cached":null,"ignore_cache":false}'), +(57782, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.913+06', '{"cached":null,"ignore_cache":false}'), +(57783, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.983+06', '{"cached":null,"ignore_cache":false}'), +(57784, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-09 16:48:42.992+06', '{"cached":null,"ignore_cache":false}'), +(57785, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:13.402+06', '{"cached":null,"ignore_cache":null}'), +(57786, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:39.471+06', '{"cached":null,"ignore_cache":null}'), +(57787, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.597+06', '{"cached":null,"ignore_cache":false}'), +(57788, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.609+06', '{"cached":null,"ignore_cache":false}'), +(57789, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.658+06', '{"cached":null,"ignore_cache":false}'), +(57790, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.66+06', '{"cached":null,"ignore_cache":false}'), +(57791, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.74+06', '{"cached":null,"ignore_cache":false}'), +(57792, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.747+06', '{"cached":null,"ignore_cache":false}'), +(57793, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.832+06', '{"cached":null,"ignore_cache":false}'), +(57794, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 12:46:40.909+06', '{"cached":null,"ignore_cache":false}'), +(57795, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.438+06', '{"cached":null,"ignore_cache":null}'), +(57796, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.791+06', '{"cached":null,"ignore_cache":false}'), +(57797, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.853+06', '{"cached":null,"ignore_cache":false}'), +(57798, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.863+06', '{"cached":null,"ignore_cache":false}'), +(57799, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.909+06', '{"cached":null,"ignore_cache":false}'), +(57800, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.992+06', '{"cached":null,"ignore_cache":false}'), +(57801, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:18.995+06', '{"cached":null,"ignore_cache":false}'), +(57802, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:19.06+06', '{"cached":null,"ignore_cache":false}'), +(57803, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 12:47:19.09+06', '{"cached":null,"ignore_cache":false}'), +(57804, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:48:19.486+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57805, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:48:41.233+06', '{"cached":null,"ignore_cache":null}'), +(57806, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:48:43.83+06', '{"cached":null,"ignore_cache":null}'), +(57807, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:19.821+06', '{"cached":null,"ignore_cache":null}'), +(57808, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:39.984+06', '{"cached":null,"ignore_cache":null}'), +(57809, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:49:52.756+06', '{"cached":null,"ignore_cache":null}'), +(57810, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.417+06', '{"cached":null,"ignore_cache":null}'), +(57811, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.664+06', '{"cached":null,"ignore_cache":false}'), +(57812, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.805+06', '{"cached":null,"ignore_cache":false}'), +(57813, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.822+06', '{"cached":null,"ignore_cache":false}'), +(57814, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.824+06', '{"cached":null,"ignore_cache":false}'), +(57815, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.861+06', '{"cached":null,"ignore_cache":false}'), +(57816, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.868+06', '{"cached":null,"ignore_cache":false}'), +(57817, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.939+06', '{"cached":null,"ignore_cache":false}'), +(57818, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:08.964+06', '{"cached":null,"ignore_cache":false}'), +(57819, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:51:34.081+06', '{"cached":null,"ignore_cache":null}'), +(57820, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:52:04.67+06', '{"cached":null,"ignore_cache":null}'), +(57821, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:52:20.703+06', '{"cached":null,"ignore_cache":null}'), +(57822, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:52:56.44+06', '{"cached":null,"ignore_cache":null}'), +(57823, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:02.662+06', '{"cached":null,"ignore_cache":null}'), +(57824, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.469+06', '{"cached":null,"ignore_cache":false}'), +(57825, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.498+06', '{"cached":null,"ignore_cache":false}'), +(57826, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.533+06', '{"cached":null,"ignore_cache":false}'), +(57827, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.561+06', '{"cached":null,"ignore_cache":false}'), +(57828, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.67+06', '{"cached":null,"ignore_cache":false}'), +(57829, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.688+06', '{"cached":null,"ignore_cache":false}'), +(57830, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.695+06', '{"cached":null,"ignore_cache":false}'), +(57831, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 12:53:03.762+06', '{"cached":null,"ignore_cache":false}'), +(57832, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.156+06', '{"cached":null,"ignore_cache":null}'), +(57833, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.487+06', '{"cached":null,"ignore_cache":false}'), +(57834, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.519+06', '{"cached":null,"ignore_cache":false}'), +(57835, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.545+06', '{"cached":null,"ignore_cache":false}'), +(57836, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.613+06', '{"cached":null,"ignore_cache":false}'), +(57837, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.695+06', '{"cached":null,"ignore_cache":false}'), +(57838, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.699+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57839, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.716+06', '{"cached":null,"ignore_cache":false}'), +(57840, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:15.736+06', '{"cached":null,"ignore_cache":false}'), +(57841, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.764+06', '{"cached":null,"ignore_cache":false}'), +(57842, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.789+06', '{"cached":null,"ignore_cache":false}'), +(57843, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.791+06', '{"cached":null,"ignore_cache":false}'), +(57844, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:51.803+06', '{"cached":null,"ignore_cache":false}'), +(57845, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.071+06', '{"cached":null,"ignore_cache":false}'), +(57846, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.085+06', '{"cached":null,"ignore_cache":false}'), +(57847, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.093+06', '{"cached":null,"ignore_cache":false}'), +(57848, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.14+06', '{"cached":null,"ignore_cache":false}'), +(57849, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.142+06', '{"cached":null,"ignore_cache":false}'), +(57850, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.29+06', '{"cached":null,"ignore_cache":false}'), +(57851, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.4+06', '{"cached":null,"ignore_cache":false}'), +(57852, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.441+06', '{"cached":null,"ignore_cache":false}'), +(57853, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.572+06', '{"cached":null,"ignore_cache":false}'), +(57854, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.705+06', '{"cached":null,"ignore_cache":false}'), +(57855, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 12:54:52.749+06', '{"cached":null,"ignore_cache":false}'), +(57856, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:36.84+06', '{"cached":null,"ignore_cache":null}'), +(57857, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.333+06', '{"cached":null,"ignore_cache":false}'), +(57858, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.336+06', '{"cached":null,"ignore_cache":false}'), +(57859, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.365+06', '{"cached":null,"ignore_cache":false}'), +(57860, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.386+06', '{"cached":null,"ignore_cache":false}'), +(57861, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.479+06', '{"cached":null,"ignore_cache":false}'), +(57862, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.508+06', '{"cached":null,"ignore_cache":false}'), +(57863, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.552+06', '{"cached":null,"ignore_cache":false}'), +(57864, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:37.569+06', '{"cached":null,"ignore_cache":false}'), +(57865, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.26+06', '{"cached":null,"ignore_cache":false}'), +(57866, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.261+06', '{"cached":null,"ignore_cache":false}'), +(57867, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.276+06', '{"cached":null,"ignore_cache":false}'), +(57868, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.403+06', '{"cached":null,"ignore_cache":false}'), +(57869, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.439+06', '{"cached":null,"ignore_cache":false}'), +(57870, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.464+06', '{"cached":null,"ignore_cache":false}'), +(57871, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.503+06', '{"cached":null,"ignore_cache":false}'), +(57872, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:02:54.527+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57873, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:34.987+06', '{"cached":null,"ignore_cache":null}'), +(57874, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.517+06', '{"cached":null,"ignore_cache":false}'), +(57875, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.533+06', '{"cached":null,"ignore_cache":false}'), +(57876, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.536+06', '{"cached":null,"ignore_cache":false}'), +(57877, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.548+06', '{"cached":null,"ignore_cache":false}'), +(57878, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.673+06', '{"cached":null,"ignore_cache":false}'), +(57879, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.683+06', '{"cached":null,"ignore_cache":false}'), +(57880, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.706+06', '{"cached":null,"ignore_cache":false}'), +(57881, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:35.726+06', '{"cached":null,"ignore_cache":false}'), +(57882, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:41.627+06', '{"cached":null,"ignore_cache":null}'), +(57883, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.196+06', '{"cached":null,"ignore_cache":false}'), +(57884, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.234+06', '{"cached":null,"ignore_cache":false}'), +(57885, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.236+06', '{"cached":null,"ignore_cache":false}'), +(57886, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.238+06', '{"cached":null,"ignore_cache":false}'), +(57887, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.35+06', '{"cached":null,"ignore_cache":false}'), +(57888, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.384+06', '{"cached":null,"ignore_cache":false}'), +(57889, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.424+06', '{"cached":null,"ignore_cache":false}'), +(57890, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:04:42.433+06', '{"cached":null,"ignore_cache":false}'), +(57891, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.566+06', '{"cached":null,"ignore_cache":false}'), +(57892, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.585+06', '{"cached":null,"ignore_cache":false}'), +(57893, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.631+06', '{"cached":null,"ignore_cache":false}'), +(57894, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.633+06', '{"cached":null,"ignore_cache":false}'), +(57895, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.725+06', '{"cached":null,"ignore_cache":false}'), +(57896, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.746+06', '{"cached":null,"ignore_cache":false}'), +(57897, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.754+06', '{"cached":null,"ignore_cache":false}'), +(57898, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:06.758+06', '{"cached":null,"ignore_cache":false}'), +(57899, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.437+06', '{"cached":null,"ignore_cache":false}'), +(57900, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.482+06', '{"cached":null,"ignore_cache":false}'), +(57901, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.49+06', '{"cached":null,"ignore_cache":false}'), +(57902, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.509+06', '{"cached":null,"ignore_cache":false}'), +(57903, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.606+06', '{"cached":null,"ignore_cache":false}'), +(57904, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.619+06', '{"cached":null,"ignore_cache":false}'), +(57905, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.699+06', '{"cached":null,"ignore_cache":false}'), +(57906, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:05:10.7+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57907, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:16.194+06', '{"cached":null,"ignore_cache":null}'), +(57908, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:16.386+06', '{"cached":null,"ignore_cache":false}'), +(57909, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:16.425+06', '{"cached":null,"ignore_cache":false}'), +(57910, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:20.868+06', '{"cached":null,"ignore_cache":false}'), +(57911, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:20.893+06', '{"cached":null,"ignore_cache":false}'), +(57912, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:29.632+06', '{"cached":null,"ignore_cache":null}'), +(57913, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:29.768+06', '{"cached":null,"ignore_cache":false}'), +(57914, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:29.79+06', '{"cached":null,"ignore_cache":false}'), +(57915, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:34.054+06', '{"cached":null,"ignore_cache":false}'), +(57916, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:34.064+06', '{"cached":null,"ignore_cache":false}'), +(57917, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 13:06:54.599+06', '{"cached":null,"ignore_cache":null}'), +(57918, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.462+06', '{"cached":null,"ignore_cache":null}'), +(57919, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.701+06', '{"cached":null,"ignore_cache":false}'), +(57920, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.733+06', '{"cached":null,"ignore_cache":false}'), +(57921, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.735+06', '{"cached":null,"ignore_cache":false}'), +(57922, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.784+06', '{"cached":null,"ignore_cache":false}'), +(57923, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.882+06', '{"cached":null,"ignore_cache":false}'), +(57924, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.907+06', '{"cached":null,"ignore_cache":false}'), +(57925, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.922+06', '{"cached":null,"ignore_cache":false}'), +(57926, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:13.973+06', '{"cached":null,"ignore_cache":false}'), +(57927, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.803+06', '{"cached":null,"ignore_cache":false}'), +(57928, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.827+06', '{"cached":null,"ignore_cache":false}'), +(57929, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.836+06', '{"cached":null,"ignore_cache":false}'), +(57930, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.899+06', '{"cached":null,"ignore_cache":false}'), +(57931, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.966+06', '{"cached":null,"ignore_cache":false}'), +(57932, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:18.993+06', '{"cached":null,"ignore_cache":false}'), +(57933, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:19.015+06', '{"cached":null,"ignore_cache":false}'), +(57934, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:19.04+06', '{"cached":null,"ignore_cache":false}'), +(57935, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:36.562+06', '{"cached":null,"ignore_cache":null}'), +(57936, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.048+06', '{"cached":null,"ignore_cache":false}'), +(57937, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.059+06', '{"cached":null,"ignore_cache":false}'), +(57938, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.083+06', '{"cached":null,"ignore_cache":false}'), +(57939, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.128+06', '{"cached":null,"ignore_cache":false}'), +(57940, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.167+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57941, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.199+06', '{"cached":null,"ignore_cache":false}'), +(57942, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.213+06', '{"cached":null,"ignore_cache":false}'), +(57943, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:08:37.287+06', '{"cached":null,"ignore_cache":false}'), +(57944, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:20.711+06', '{"cached":null,"ignore_cache":null}'), +(57945, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.565+06', '{"cached":null,"ignore_cache":false}'), +(57946, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.625+06', '{"cached":null,"ignore_cache":false}'), +(57947, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.626+06', '{"cached":null,"ignore_cache":false}'), +(57948, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.673+06', '{"cached":null,"ignore_cache":false}'), +(57949, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.749+06', '{"cached":null,"ignore_cache":false}'), +(57950, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.838+06', '{"cached":null,"ignore_cache":false}'), +(57951, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.868+06', '{"cached":null,"ignore_cache":false}'), +(57952, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:21.899+06', '{"cached":null,"ignore_cache":false}'), +(57953, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.368+06', '{"cached":null,"ignore_cache":false}'), +(57954, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.402+06', '{"cached":null,"ignore_cache":false}'), +(57955, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.434+06', '{"cached":null,"ignore_cache":false}'), +(57956, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.448+06', '{"cached":null,"ignore_cache":false}'), +(57957, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.549+06', '{"cached":null,"ignore_cache":false}'), +(57958, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.606+06', '{"cached":null,"ignore_cache":false}'), +(57959, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.657+06', '{"cached":null,"ignore_cache":false}'), +(57960, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.672+06', '{"cached":null,"ignore_cache":false}'), +(57961, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.707+06', '{"cached":null,"ignore_cache":false}'), +(57962, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.841+06', '{"cached":null,"ignore_cache":false}'), +(57963, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:25.924+06', '{"cached":null,"ignore_cache":false}'), +(57964, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:26.011+06', '{"cached":null,"ignore_cache":false}'), +(57965, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:26.045+06', '{"cached":null,"ignore_cache":false}'), +(57966, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:26.051+06', '{"cached":null,"ignore_cache":false}'), +(57967, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:26.064+06', '{"cached":null,"ignore_cache":false}'), +(57968, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.844+06', '{"cached":null,"ignore_cache":false}'), +(57969, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.846+06', '{"cached":null,"ignore_cache":false}'), +(57970, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.901+06', '{"cached":null,"ignore_cache":false}'), +(57971, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:46.935+06', '{"cached":null,"ignore_cache":false}'), +(57972, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.031+06', '{"cached":null,"ignore_cache":false}'), +(57973, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.114+06', '{"cached":null,"ignore_cache":false}'), +(57974, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.212+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(57975, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.229+06', '{"cached":null,"ignore_cache":false}'), +(57976, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.232+06', '{"cached":null,"ignore_cache":false}'), +(57977, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.271+06', '{"cached":null,"ignore_cache":false}'), +(57978, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.274+06', '{"cached":null,"ignore_cache":false}'), +(57979, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.312+06', '{"cached":null,"ignore_cache":false}'), +(57980, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.508+06', '{"cached":null,"ignore_cache":false}'), +(57981, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.527+06', '{"cached":null,"ignore_cache":false}'), +(57982, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:47.531+06', '{"cached":null,"ignore_cache":false}'), +(57983, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.321+06', '{"cached":null,"ignore_cache":false}'), +(57984, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.353+06', '{"cached":null,"ignore_cache":false}'), +(57985, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.355+06', '{"cached":null,"ignore_cache":false}'), +(57986, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.432+06', '{"cached":null,"ignore_cache":false}'), +(57987, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.511+06', '{"cached":null,"ignore_cache":false}'), +(57988, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.518+06', '{"cached":null,"ignore_cache":false}'), +(57989, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.536+06', '{"cached":null,"ignore_cache":false}'), +(57990, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:13:57.572+06', '{"cached":null,"ignore_cache":false}'), +(57991, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.118+06', '{"cached":null,"ignore_cache":false}'), +(57992, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.149+06', '{"cached":null,"ignore_cache":false}'), +(57993, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.184+06', '{"cached":null,"ignore_cache":false}'), +(57994, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.188+06', '{"cached":null,"ignore_cache":false}'), +(57995, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.231+06', '{"cached":null,"ignore_cache":false}'), +(57996, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.264+06', '{"cached":null,"ignore_cache":false}'), +(57997, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.295+06', '{"cached":null,"ignore_cache":false}'), +(57998, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.339+06', '{"cached":null,"ignore_cache":false}'), +(57999, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.359+06', '{"cached":null,"ignore_cache":false}'), +(58000, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.373+06', '{"cached":null,"ignore_cache":false}'), +(58001, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.391+06', '{"cached":null,"ignore_cache":false}'), +(58002, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.42+06', '{"cached":null,"ignore_cache":false}'), +(58003, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.469+06', '{"cached":null,"ignore_cache":false}'), +(58004, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.491+06', '{"cached":null,"ignore_cache":false}'), +(58005, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.641+06', '{"cached":null,"ignore_cache":false}'), +(58006, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:00.677+06', '{"cached":null,"ignore_cache":false}'), +(58007, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.747+06', '{"cached":null,"ignore_cache":false}'), +(58008, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.765+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58009, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.81+06', '{"cached":null,"ignore_cache":false}'), +(58010, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 13:15:04.855+06', '{"cached":null,"ignore_cache":false}'), +(58011, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.643+06', '{"cached":null,"ignore_cache":false}'), +(58012, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.715+06', '{"cached":null,"ignore_cache":false}'), +(58013, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.723+06', '{"cached":null,"ignore_cache":false}'), +(58014, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.736+06', '{"cached":null,"ignore_cache":false}'), +(58015, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.81+06', '{"cached":null,"ignore_cache":false}'), +(58016, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.911+06', '{"cached":null,"ignore_cache":false}'), +(58017, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.916+06', '{"cached":null,"ignore_cache":false}'), +(58018, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.917+06', '{"cached":null,"ignore_cache":false}'), +(58019, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:30.966+06', '{"cached":null,"ignore_cache":false}'), +(58020, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:31.062+06', '{"cached":null,"ignore_cache":false}'), +(58021, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:31.158+06', '{"cached":null,"ignore_cache":false}'), +(58022, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:31.19+06', '{"cached":null,"ignore_cache":false}'), +(58023, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:31.214+06', '{"cached":null,"ignore_cache":false}'), +(58024, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:31.226+06', '{"cached":null,"ignore_cache":false}'), +(58025, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:16:31.26+06', '{"cached":null,"ignore_cache":false}'), +(58026, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.332+06', '{"cached":null,"ignore_cache":false}'), +(58027, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.375+06', '{"cached":null,"ignore_cache":false}'), +(58028, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.378+06', '{"cached":null,"ignore_cache":false}'), +(58029, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 13:18:17.496+06', '{"cached":null,"ignore_cache":false}'), +(58030, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.208+06', '{"cached":null,"ignore_cache":null}'), +(58031, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.699+06', '{"cached":null,"ignore_cache":false}'), +(58032, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.73+06', '{"cached":null,"ignore_cache":false}'), +(58033, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.746+06', '{"cached":null,"ignore_cache":false}'), +(58034, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.763+06', '{"cached":null,"ignore_cache":false}'), +(58035, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.849+06', '{"cached":null,"ignore_cache":false}'), +(58036, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.867+06', '{"cached":null,"ignore_cache":false}'), +(58037, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.928+06', '{"cached":null,"ignore_cache":false}'), +(58038, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:01.983+06', '{"cached":null,"ignore_cache":false}'), +(58039, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:15.756+06', '{"cached":null,"ignore_cache":null}'), +(58040, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.21+06', '{"cached":null,"ignore_cache":false}'), +(58041, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.231+06', '{"cached":null,"ignore_cache":false}'), +(58042, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.294+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58043, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.302+06', '{"cached":null,"ignore_cache":false}'), +(58044, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.451+06', '{"cached":null,"ignore_cache":false}'), +(58045, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.484+06', '{"cached":null,"ignore_cache":false}'), +(58046, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.498+06', '{"cached":null,"ignore_cache":false}'), +(58047, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:22:16.511+06', '{"cached":null,"ignore_cache":false}'), +(58048, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.291+06', '{"cached":null,"ignore_cache":false}'), +(58049, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.317+06', '{"cached":null,"ignore_cache":false}'), +(58050, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.365+06', '{"cached":null,"ignore_cache":false}'), +(58051, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.461+06', '{"cached":null,"ignore_cache":false}'), +(58052, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.501+06', '{"cached":null,"ignore_cache":false}'), +(58053, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.544+06', '{"cached":null,"ignore_cache":false}'), +(58054, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.618+06', '{"cached":null,"ignore_cache":false}'), +(58055, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:09.638+06', '{"cached":null,"ignore_cache":false}'), +(58056, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.348+06', '{"cached":null,"ignore_cache":false}'), +(58057, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.355+06', '{"cached":null,"ignore_cache":false}'), +(58058, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.369+06', '{"cached":null,"ignore_cache":false}'), +(58059, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.385+06', '{"cached":null,"ignore_cache":false}'), +(58060, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.488+06', '{"cached":null,"ignore_cache":false}'), +(58061, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.495+06', '{"cached":null,"ignore_cache":false}'), +(58062, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.507+06', '{"cached":null,"ignore_cache":false}'), +(58063, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:27:15.556+06', '{"cached":null,"ignore_cache":false}'), +(58064, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.876+06', '{"cached":null,"ignore_cache":false}'), +(58065, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.935+06', '{"cached":null,"ignore_cache":false}'), +(58066, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.936+06', '{"cached":null,"ignore_cache":false}'), +(58067, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:28.979+06', '{"cached":null,"ignore_cache":false}'), +(58068, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.158+06', '{"cached":null,"ignore_cache":false}'), +(58069, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.198+06', '{"cached":null,"ignore_cache":false}'), +(58070, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.236+06', '{"cached":null,"ignore_cache":false}'), +(58071, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.261+06', '{"cached":null,"ignore_cache":false}'), +(58072, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.271+06', '{"cached":null,"ignore_cache":false}'), +(58073, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.273+06', '{"cached":null,"ignore_cache":false}'), +(58074, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.278+06', '{"cached":null,"ignore_cache":false}'), +(58075, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.413+06', '{"cached":null,"ignore_cache":false}'), +(58076, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.462+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58077, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.487+06', '{"cached":null,"ignore_cache":false}'), +(58078, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:35:29.523+06', '{"cached":null,"ignore_cache":false}'), +(58079, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.324+06', '{"cached":null,"ignore_cache":null}'), +(58080, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.45+06', '{"cached":null,"ignore_cache":false}'), +(58081, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.496+06', '{"cached":null,"ignore_cache":false}'), +(58082, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.528+06', '{"cached":null,"ignore_cache":false}'), +(58083, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.552+06', '{"cached":null,"ignore_cache":false}'), +(58084, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.595+06', '{"cached":null,"ignore_cache":false}'), +(58085, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.631+06', '{"cached":null,"ignore_cache":false}'), +(58086, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.739+06', '{"cached":null,"ignore_cache":false}'), +(58087, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:20.778+06', '{"cached":null,"ignore_cache":false}'), +(58088, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.95+06', '{"cached":null,"ignore_cache":false}'), +(58089, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:25.973+06', '{"cached":null,"ignore_cache":false}'), +(58090, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26+06', '{"cached":null,"ignore_cache":false}'), +(58091, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26.005+06', '{"cached":null,"ignore_cache":false}'), +(58092, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26.073+06', '{"cached":null,"ignore_cache":false}'), +(58093, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26.074+06', '{"cached":null,"ignore_cache":false}'), +(58094, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26.125+06', '{"cached":null,"ignore_cache":false}'), +(58095, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:26.132+06', '{"cached":null,"ignore_cache":false}'), +(58096, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.29+06', '{"cached":null,"ignore_cache":false}'), +(58097, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.302+06', '{"cached":null,"ignore_cache":false}'), +(58098, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.303+06', '{"cached":null,"ignore_cache":false}'), +(58099, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.334+06', '{"cached":null,"ignore_cache":false}'), +(58100, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.409+06', '{"cached":null,"ignore_cache":false}'), +(58101, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.432+06', '{"cached":null,"ignore_cache":false}'), +(58102, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.497+06', '{"cached":null,"ignore_cache":false}'), +(58103, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:34.511+06', '{"cached":null,"ignore_cache":false}'), +(58104, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.307+06', '{"cached":null,"ignore_cache":false}'), +(58105, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.32+06', '{"cached":null,"ignore_cache":false}'), +(58106, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.356+06', '{"cached":null,"ignore_cache":false}'), +(58107, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.394+06', '{"cached":null,"ignore_cache":false}'), +(58108, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.41+06', '{"cached":null,"ignore_cache":false}'), +(58109, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.423+06', '{"cached":null,"ignore_cache":false}'), +(58110, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.501+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58111, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:43.532+06', '{"cached":null,"ignore_cache":false}'), +(58112, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.457+06', '{"cached":null,"ignore_cache":false}'), +(58113, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.482+06', '{"cached":null,"ignore_cache":false}'), +(58114, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.49+06', '{"cached":null,"ignore_cache":false}'), +(58115, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.503+06', '{"cached":null,"ignore_cache":false}'), +(58116, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.55+06', '{"cached":null,"ignore_cache":false}'), +(58117, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.579+06', '{"cached":null,"ignore_cache":false}'), +(58118, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.64+06', '{"cached":null,"ignore_cache":false}'), +(58119, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:40:48.698+06', '{"cached":null,"ignore_cache":false}'), +(58120, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:13.75+06', '{"cached":null,"ignore_cache":null}'), +(58121, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.793+06', '{"cached":null,"ignore_cache":null}'), +(58122, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.898+06', '{"cached":null,"ignore_cache":false}'), +(58123, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.923+06', '{"cached":null,"ignore_cache":false}'), +(58124, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:28.966+06', '{"cached":null,"ignore_cache":false}'), +(58125, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:29.019+06', '{"cached":null,"ignore_cache":false}'), +(58126, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:29.045+06', '{"cached":null,"ignore_cache":false}'), +(58127, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:29.067+06', '{"cached":null,"ignore_cache":false}'), +(58128, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:29.149+06', '{"cached":null,"ignore_cache":false}'), +(58129, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:29.166+06', '{"cached":null,"ignore_cache":false}'), +(58130, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.829+06', '{"cached":null,"ignore_cache":false}'), +(58131, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.835+06', '{"cached":null,"ignore_cache":false}'), +(58132, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.853+06', '{"cached":null,"ignore_cache":false}'), +(58133, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.854+06', '{"cached":null,"ignore_cache":false}'), +(58134, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.915+06', '{"cached":null,"ignore_cache":false}'), +(58135, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.927+06', '{"cached":null,"ignore_cache":false}'), +(58136, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:39.997+06', '{"cached":null,"ignore_cache":false}'), +(58137, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 13:41:40.018+06', '{"cached":null,"ignore_cache":false}'), +(58138, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:28.912+06', '{"cached":null,"ignore_cache":null}'), +(58139, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.103+06', '{"cached":null,"ignore_cache":false}'), +(58140, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.111+06', '{"cached":null,"ignore_cache":false}'), +(58141, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.321+06', '{"cached":null,"ignore_cache":false}'), +(58142, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.324+06', '{"cached":null,"ignore_cache":false}'), +(58143, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.353+06', '{"cached":null,"ignore_cache":false}'), +(58144, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.355+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58145, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.477+06', '{"cached":null,"ignore_cache":false}'), +(58146, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 14:36:30.493+06', '{"cached":null,"ignore_cache":false}'), +(58147, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:09.86+06', '{"cached":null,"ignore_cache":null}'), +(58148, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.552+06', '{"cached":null,"ignore_cache":false}'), +(58149, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.672+06', '{"cached":null,"ignore_cache":false}'), +(58150, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.714+06', '{"cached":null,"ignore_cache":false}'), +(58151, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.738+06', '{"cached":null,"ignore_cache":false}'), +(58152, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.75+06', '{"cached":null,"ignore_cache":false}'), +(58153, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.778+06', '{"cached":null,"ignore_cache":false}'), +(58154, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.891+06', '{"cached":null,"ignore_cache":false}'), +(58155, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:10.923+06', '{"cached":null,"ignore_cache":false}'), +(58156, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.511+06', '{"cached":null,"ignore_cache":false}'), +(58157, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.513+06', '{"cached":null,"ignore_cache":false}'), +(58158, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.587+06', '{"cached":null,"ignore_cache":false}'), +(58159, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.6+06', '{"cached":null,"ignore_cache":false}'), +(58160, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.752+06', '{"cached":null,"ignore_cache":false}'), +(58161, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.792+06', '{"cached":null,"ignore_cache":false}'), +(58162, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.809+06', '{"cached":null,"ignore_cache":false}'), +(58163, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 14:47:15.841+06', '{"cached":null,"ignore_cache":false}'), +(58164, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:55.667+06', '{"cached":null,"ignore_cache":null}'), +(58165, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.358+06', '{"cached":null,"ignore_cache":false}'), +(58166, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.359+06', '{"cached":null,"ignore_cache":false}'), +(58167, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.361+06', '{"cached":null,"ignore_cache":false}'), +(58168, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.37+06', '{"cached":null,"ignore_cache":false}'), +(58169, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.373+06', '{"cached":null,"ignore_cache":false}'), +(58170, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.38+06', '{"cached":null,"ignore_cache":false}'), +(58171, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.49+06', '{"cached":null,"ignore_cache":false}'), +(58172, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 15:33:56.505+06', '{"cached":null,"ignore_cache":false}'), +(58173, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.684+06', '{"cached":null,"ignore_cache":false}'), +(58174, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.686+06', '{"cached":null,"ignore_cache":false}'), +(58175, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.726+06', '{"cached":null,"ignore_cache":false}'), +(58176, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.743+06', '{"cached":null,"ignore_cache":false}'), +(58177, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.817+06', '{"cached":null,"ignore_cache":false}'), +(58178, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.865+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58179, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.886+06', '{"cached":null,"ignore_cache":false}'), +(58180, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:25.895+06', '{"cached":null,"ignore_cache":false}'), +(58181, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.103+06', '{"cached":null,"ignore_cache":false}'), +(58182, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.137+06', '{"cached":null,"ignore_cache":false}'), +(58183, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.153+06', '{"cached":null,"ignore_cache":false}'), +(58184, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.242+06', '{"cached":null,"ignore_cache":false}'), +(58185, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.279+06', '{"cached":null,"ignore_cache":false}'), +(58186, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.335+06', '{"cached":null,"ignore_cache":false}'), +(58187, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.366+06', '{"cached":null,"ignore_cache":false}'), +(58188, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 15:43:56.383+06', '{"cached":null,"ignore_cache":false}'), +(58189, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.808+06', '{"cached":null,"ignore_cache":false}'), +(58190, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.832+06', '{"cached":null,"ignore_cache":false}'), +(58191, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.86+06', '{"cached":null,"ignore_cache":false}'), +(58192, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.936+06', '{"cached":null,"ignore_cache":false}'), +(58193, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:29.979+06', '{"cached":null,"ignore_cache":false}'), +(58194, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:30.009+06', '{"cached":null,"ignore_cache":false}'), +(58195, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:30.013+06', '{"cached":null,"ignore_cache":false}'), +(58196, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:30.048+06', '{"cached":null,"ignore_cache":false}'), +(58197, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.387+06', '{"cached":null,"ignore_cache":false}'), +(58198, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.412+06', '{"cached":null,"ignore_cache":false}'), +(58199, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.414+06', '{"cached":null,"ignore_cache":false}'), +(58200, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.415+06', '{"cached":null,"ignore_cache":false}'), +(58201, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.518+06', '{"cached":null,"ignore_cache":false}'), +(58202, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.549+06', '{"cached":null,"ignore_cache":false}'), +(58203, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.601+06', '{"cached":null,"ignore_cache":false}'), +(58204, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 15:44:33.637+06', '{"cached":null,"ignore_cache":false}'), +(58205, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:07.317+06', '{"cached":null,"ignore_cache":null}'), +(58206, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:07.437+06', '{"cached":null,"ignore_cache":false}'), +(58207, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:07.515+06', '{"cached":null,"ignore_cache":false}'), +(58208, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:10.886+06', '{"cached":null,"ignore_cache":false}'), +(58209, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:10.945+06', '{"cached":null,"ignore_cache":false}'), +(58210, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:16.031+06', '{"cached":null,"ignore_cache":null}'), +(58211, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:16.126+06', '{"cached":null,"ignore_cache":false}'), +(58212, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:16.155+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58213, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:18.807+06', '{"cached":null,"ignore_cache":false}'), +(58214, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:18.871+06', '{"cached":null,"ignore_cache":false}'), +(58215, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:28.425+06', '{"cached":null,"ignore_cache":null}'), +(58216, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:28.563+06', '{"cached":null,"ignore_cache":false}'), +(58217, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:28.579+06', '{"cached":null,"ignore_cache":false}'), +(58218, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 15:45:28.583+06', '{"cached":null,"ignore_cache":false}'), +(58219, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:18:56.185+06', '{"cached":null,"ignore_cache":null}'), +(58220, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:18:57.083+06', '{"cached":null,"ignore_cache":false}'), +(58221, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:18:57.145+06', '{"cached":null,"ignore_cache":false}'), +(58222, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:03.564+06', '{"cached":null,"ignore_cache":null}'), +(58223, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:17.332+06', '{"cached":null,"ignore_cache":null}'), +(58224, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:17.585+06', '{"cached":null,"ignore_cache":null}'), +(58225, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:55.252+06', '{"cached":null,"ignore_cache":null}'), +(58226, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:55.379+06', '{"cached":null,"ignore_cache":false}'), +(58227, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:55.465+06', '{"cached":null,"ignore_cache":false}'), +(58228, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:56.891+06', '{"cached":null,"ignore_cache":null}'), +(58229, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:19:57.342+06', '{"cached":null,"ignore_cache":false}'), +(58230, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:22:21.172+06', '{"cached":null,"ignore_cache":false}'), +(58231, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:50.835+06', '{"cached":null,"ignore_cache":null}'), +(58232, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.224+06', '{"cached":null,"ignore_cache":false}'), +(58233, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.249+06', '{"cached":null,"ignore_cache":false}'), +(58234, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.296+06', '{"cached":null,"ignore_cache":false}'), +(58235, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.417+06', '{"cached":null,"ignore_cache":false}'), +(58236, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.449+06', '{"cached":null,"ignore_cache":false}'), +(58237, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.58+06', '{"cached":null,"ignore_cache":false}'), +(58238, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.615+06', '{"cached":null,"ignore_cache":false}'), +(58239, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:51.687+06', '{"cached":null,"ignore_cache":false}'), +(58240, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.432+06', '{"cached":null,"ignore_cache":false}'), +(58241, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.453+06', '{"cached":null,"ignore_cache":false}'), +(58242, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.46+06', '{"cached":null,"ignore_cache":false}'), +(58243, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.501+06', '{"cached":null,"ignore_cache":false}'), +(58244, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.599+06', '{"cached":null,"ignore_cache":false}'), +(58245, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.663+06', '{"cached":null,"ignore_cache":false}'), +(58246, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.7+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58247, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 16:26:59.732+06', '{"cached":null,"ignore_cache":false}'), +(58248, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:17.307+06', '{"cached":null,"ignore_cache":null}'), +(58249, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:17.459+06', '{"cached":null,"ignore_cache":false}'), +(58250, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:17.49+06', '{"cached":null,"ignore_cache":false}'), +(58251, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:29.048+06', '{"cached":null,"ignore_cache":null}'), +(58252, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:30.044+06', '{"cached":null,"ignore_cache":null}'), +(58253, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:27:30.452+06', '{"cached":null,"ignore_cache":false}'), +(58254, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-10 16:28:28.838+06', '{"cached":null,"ignore_cache":null}'), +(58255, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:27.881+06', '{"cached":null,"ignore_cache":null}'), +(58256, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:27.985+06', '{"cached":null,"ignore_cache":false}'), +(58257, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:28.035+06', '{"cached":null,"ignore_cache":false}'), +(58258, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:28.988+06', '{"cached":null,"ignore_cache":null}'), +(58259, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:29.272+06', '{"cached":null,"ignore_cache":false}'), +(58260, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:59.67+06', '{"cached":null,"ignore_cache":false}'), +(58261, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:10.139+06', '{"cached":null,"ignore_cache":null}'), +(58262, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:10.266+06', '{"cached":null,"ignore_cache":false}'), +(58263, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:10.315+06', '{"cached":null,"ignore_cache":false}'), +(58264, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:17.502+06', '{"cached":null,"ignore_cache":null}'), +(58265, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:17.617+06', '{"cached":null,"ignore_cache":false}'), +(58266, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:17.652+06', '{"cached":null,"ignore_cache":false}'), +(58267, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:23.205+06', '{"cached":null,"ignore_cache":null}'), +(58268, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:23.615+06', '{"cached":null,"ignore_cache":false}'), +(58269, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:25.674+06', '{"cached":null,"ignore_cache":null}'), +(58270, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:25.781+06', '{"cached":null,"ignore_cache":false}'), +(58271, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:25.825+06', '{"cached":null,"ignore_cache":false}'), +(58272, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:34.694+06', '{"cached":null,"ignore_cache":null}'), +(58273, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:35.399+06', '{"cached":null,"ignore_cache":null}'), +(58274, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:35.649+06', '{"cached":null,"ignore_cache":false}'), +(58275, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:09.35+06', '{"cached":null,"ignore_cache":true}'), +(58276, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:32.731+06', '{"cached":null,"ignore_cache":null}'), +(58277, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:32.835+06', '{"cached":null,"ignore_cache":false}'), +(58278, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:32.896+06', '{"cached":null,"ignore_cache":false}'), +(58279, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:35.885+06', '{"cached":null,"ignore_cache":null}'), +(58280, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:35.981+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58281, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:35.984+06', '{"cached":null,"ignore_cache":false}'), +(58282, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:42.123+06', '{"cached":null,"ignore_cache":null}'), +(58283, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:42.367+06', '{"cached":null,"ignore_cache":false}'), +(58284, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:04.241+06', '{"cached":null,"ignore_cache":null}'), +(58285, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:04.359+06', '{"cached":null,"ignore_cache":false}'), +(58286, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:04.382+06', '{"cached":null,"ignore_cache":false}'), +(58287, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:06.555+06', '{"cached":null,"ignore_cache":null}'), +(58288, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:06.682+06', '{"cached":null,"ignore_cache":false}'), +(58289, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:06.693+06', '{"cached":null,"ignore_cache":false}'), +(58290, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 16:32:06.726+06', '{"cached":null,"ignore_cache":false}'), +(58291, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:35:41.92+06', '{"cached":null,"ignore_cache":null}'), +(58292, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-05-10 16:35:42.557+06', '{"cached":null,"ignore_cache":false}'), +(58293, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-05-10 16:35:42.562+06', '{"cached":null,"ignore_cache":false}'), +(58294, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:35:42.564+06', '{"cached":null,"ignore_cache":false}'), +(58295, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.165+06', '{"cached":null,"ignore_cache":false}'), +(58296, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.375+06', '{"cached":null,"ignore_cache":false}'), +(58297, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.466+06', '{"cached":null,"ignore_cache":false}'), +(58298, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.502+06', '{"cached":null,"ignore_cache":false}'), +(58299, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.505+06', '{"cached":null,"ignore_cache":false}'), +(58300, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.511+06', '{"cached":null,"ignore_cache":false}'), +(58301, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.646+06', '{"cached":null,"ignore_cache":false}'), +(58302, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.671+06', '{"cached":null,"ignore_cache":false}'), +(58303, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.673+06', '{"cached":null,"ignore_cache":false}'), +(58304, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.676+06', '{"cached":null,"ignore_cache":false}'), +(58305, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:25.679+06', '{"cached":null,"ignore_cache":false}'), +(58306, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:26.079+06', '{"cached":null,"ignore_cache":false}'), +(58307, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 17:04:26.336+06', '{"cached":null,"ignore_cache":false}'), +(58308, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.931+06', '{"cached":null,"ignore_cache":false}'), +(58309, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 17:05:59.949+06', '{"cached":null,"ignore_cache":false}'), +(58310, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.222+06', '{"cached":null,"ignore_cache":false}'), +(58311, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.672+06', '{"cached":null,"ignore_cache":false}'), +(58312, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.695+06', '{"cached":null,"ignore_cache":false}'), +(58313, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.871+06', '{"cached":null,"ignore_cache":false}'), +(58314, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.877+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58315, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:00.981+06', '{"cached":null,"ignore_cache":false}'), +(58316, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:01.064+06', '{"cached":null,"ignore_cache":false}'), +(58317, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:01.178+06', '{"cached":null,"ignore_cache":false}'), +(58318, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:01.42+06', '{"cached":null,"ignore_cache":false}'), +(58319, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:01.568+06', '{"cached":null,"ignore_cache":false}'), +(58320, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.415+06', '{"cached":null,"ignore_cache":false}'), +(58321, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.436+06', '{"cached":null,"ignore_cache":false}'), +(58322, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.571+06', '{"cached":null,"ignore_cache":false}'), +(58323, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.595+06', '{"cached":null,"ignore_cache":false}'), +(58324, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.631+06', '{"cached":null,"ignore_cache":false}'), +(58325, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.693+06', '{"cached":null,"ignore_cache":false}'), +(58326, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.732+06', '{"cached":null,"ignore_cache":false}'), +(58327, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:08.793+06', '{"cached":null,"ignore_cache":false}'), +(58328, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.758+06', '{"cached":null,"ignore_cache":false}'), +(58329, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.824+06', '{"cached":null,"ignore_cache":false}'), +(58330, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.897+06', '{"cached":null,"ignore_cache":false}'), +(58331, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:15.933+06', '{"cached":null,"ignore_cache":false}'), +(58332, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.164+06', '{"cached":null,"ignore_cache":false}'), +(58333, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.175+06', '{"cached":null,"ignore_cache":false}'), +(58334, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.2+06', '{"cached":null,"ignore_cache":false}'), +(58335, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.212+06', '{"cached":null,"ignore_cache":false}'), +(58336, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.391+06', '{"cached":null,"ignore_cache":false}'), +(58337, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.58+06', '{"cached":null,"ignore_cache":false}'), +(58338, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.682+06', '{"cached":null,"ignore_cache":false}'), +(58339, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.731+06', '{"cached":null,"ignore_cache":false}'), +(58340, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.733+06', '{"cached":null,"ignore_cache":false}'), +(58341, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.791+06', '{"cached":null,"ignore_cache":false}'), +(58342, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.81+06', '{"cached":null,"ignore_cache":false}'), +(58343, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:21.987+06', '{"cached":null,"ignore_cache":false}'), +(58344, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:22.056+06', '{"cached":null,"ignore_cache":false}'), +(58345, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:22.108+06', '{"cached":null,"ignore_cache":false}'), +(58346, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.83+06', '{"cached":null,"ignore_cache":false}'), +(58347, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.832+06', '{"cached":null,"ignore_cache":false}'), +(58348, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:24.929+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58349, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-10 17:06:25.005+06', '{"cached":null,"ignore_cache":false}'), +(58350, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 12:14:43.459+06', '{"cached":null,"ignore_cache":null}'), +(58351, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-11 12:14:44.318+06', '{"cached":null,"ignore_cache":false}'), +(58352, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-11 12:14:44.328+06', '{"cached":null,"ignore_cache":false}'), +(58353, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:00.717+06', '{"cached":null,"ignore_cache":null}'), +(58354, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.368+06', '{"cached":null,"ignore_cache":null}'), +(58355, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.721+06', '{"cached":null,"ignore_cache":false}'), +(58356, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.798+06', '{"cached":null,"ignore_cache":false}'), +(58357, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.801+06', '{"cached":null,"ignore_cache":false}'), +(58358, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.902+06', '{"cached":null,"ignore_cache":false}'), +(58359, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:22.968+06', '{"cached":null,"ignore_cache":false}'), +(58360, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:23.052+06', '{"cached":null,"ignore_cache":false}'), +(58361, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:23.084+06', '{"cached":null,"ignore_cache":false}'), +(58362, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:23.092+06', '{"cached":null,"ignore_cache":false}'), +(58363, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:55.714+06', '{"cached":null,"ignore_cache":null}'), +(58364, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.864+06', '{"cached":null,"ignore_cache":false}'), +(58365, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.871+06', '{"cached":null,"ignore_cache":false}'), +(58366, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.878+06', '{"cached":null,"ignore_cache":false}'), +(58367, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.921+06', '{"cached":null,"ignore_cache":false}'), +(58368, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.939+06', '{"cached":null,"ignore_cache":false}'), +(58369, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:56.948+06', '{"cached":null,"ignore_cache":false}'), +(58370, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:57.061+06', '{"cached":null,"ignore_cache":false}'), +(58371, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-11 14:39:57.175+06', '{"cached":null,"ignore_cache":false}'), +(58372, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:42.747+06', '{"cached":null,"ignore_cache":null}'), +(58373, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.059+06', '{"cached":null,"ignore_cache":false}'), +(58374, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.113+06', '{"cached":null,"ignore_cache":false}'), +(58375, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.206+06', '{"cached":null,"ignore_cache":false}'), +(58376, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.261+06', '{"cached":null,"ignore_cache":false}'), +(58377, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.317+06', '{"cached":null,"ignore_cache":false}'), +(58378, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.344+06', '{"cached":null,"ignore_cache":false}'), +(58379, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.588+06', '{"cached":null,"ignore_cache":false}'), +(58380, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:36:44.624+06', '{"cached":null,"ignore_cache":false}'), +(58381, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:05.208+06', '{"cached":null,"ignore_cache":null}'), +(58382, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:05.477+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58383, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.455+06', '{"cached":null,"ignore_cache":null}'), +(58384, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.686+06', '{"cached":null,"ignore_cache":false}'), +(58385, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.694+06', '{"cached":null,"ignore_cache":false}'), +(58386, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.698+06', '{"cached":null,"ignore_cache":false}'), +(58387, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.702+06', '{"cached":null,"ignore_cache":false}'), +(58388, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.976+06', '{"cached":null,"ignore_cache":false}'), +(58389, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.977+06', '{"cached":null,"ignore_cache":false}'), +(58390, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.986+06', '{"cached":null,"ignore_cache":false}'), +(58391, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:38:26.994+06', '{"cached":null,"ignore_cache":false}'), +(58392, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.195+06', '{"cached":null,"ignore_cache":null}'), +(58393, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.437+06', '{"cached":null,"ignore_cache":false}'), +(58394, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.491+06', '{"cached":null,"ignore_cache":false}'), +(58395, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.51+06', '{"cached":null,"ignore_cache":false}'), +(58396, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.594+06', '{"cached":null,"ignore_cache":false}'), +(58397, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.703+06', '{"cached":null,"ignore_cache":false}'), +(58398, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.729+06', '{"cached":null,"ignore_cache":false}'), +(58399, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.747+06', '{"cached":null,"ignore_cache":false}'), +(58400, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:08.788+06', '{"cached":null,"ignore_cache":false}'), +(58401, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.933+06', '{"cached":null,"ignore_cache":false}'), +(58402, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:14.973+06', '{"cached":null,"ignore_cache":false}'), +(58403, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.014+06', '{"cached":null,"ignore_cache":false}'), +(58404, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.037+06', '{"cached":null,"ignore_cache":false}'), +(58405, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.196+06', '{"cached":null,"ignore_cache":false}'), +(58406, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.198+06', '{"cached":null,"ignore_cache":false}'), +(58407, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.219+06', '{"cached":null,"ignore_cache":false}'), +(58408, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:15.346+06', '{"cached":null,"ignore_cache":false}'), +(58409, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.31+06', '{"cached":null,"ignore_cache":false}'), +(58410, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.319+06', '{"cached":null,"ignore_cache":false}'), +(58411, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.385+06', '{"cached":null,"ignore_cache":false}'), +(58412, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.445+06', '{"cached":null,"ignore_cache":false}'), +(58413, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.506+06', '{"cached":null,"ignore_cache":false}'), +(58414, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.548+06', '{"cached":null,"ignore_cache":false}'), +(58415, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.555+06', '{"cached":null,"ignore_cache":false}'), +(58416, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:40:34.567+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58417, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.498+06', '{"cached":null,"ignore_cache":null}'), +(58418, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.77+06', '{"cached":null,"ignore_cache":false}'), +(58419, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.86+06', '{"cached":null,"ignore_cache":false}'), +(58420, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.932+06', '{"cached":null,"ignore_cache":false}'), +(58421, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.947+06', '{"cached":null,"ignore_cache":false}'), +(58422, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.994+06', '{"cached":null,"ignore_cache":false}'), +(58423, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:01.042+06', '{"cached":null,"ignore_cache":false}'), +(58424, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:01.086+06', '{"cached":null,"ignore_cache":false}'), +(58425, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:01.183+06', '{"cached":null,"ignore_cache":false}'), +(58426, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:09.824+06', '{"cached":null,"ignore_cache":null}'), +(58427, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.244+06', '{"cached":null,"ignore_cache":false}'), +(58428, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.252+06', '{"cached":null,"ignore_cache":false}'), +(58429, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.32+06', '{"cached":null,"ignore_cache":false}'), +(58430, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.34+06', '{"cached":null,"ignore_cache":false}'), +(58431, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.412+06', '{"cached":null,"ignore_cache":false}'), +(58432, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.419+06', '{"cached":null,"ignore_cache":false}'), +(58433, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.46+06', '{"cached":null,"ignore_cache":false}'), +(58434, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:10.466+06', '{"cached":null,"ignore_cache":false}'), +(58435, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.742+06', '{"cached":null,"ignore_cache":false}'), +(58436, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.751+06', '{"cached":null,"ignore_cache":false}'), +(58437, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.791+06', '{"cached":null,"ignore_cache":false}'), +(58438, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.836+06', '{"cached":null,"ignore_cache":false}'), +(58439, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.91+06', '{"cached":null,"ignore_cache":false}'), +(58440, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.93+06', '{"cached":null,"ignore_cache":false}'), +(58441, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.935+06', '{"cached":null,"ignore_cache":false}'), +(58442, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:42:18.991+06', '{"cached":null,"ignore_cache":false}'), +(58443, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:51.933+06', '{"cached":null,"ignore_cache":null}'), +(58444, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.349+06', '{"cached":null,"ignore_cache":false}'), +(58445, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.354+06', '{"cached":null,"ignore_cache":false}'), +(58446, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.377+06', '{"cached":null,"ignore_cache":false}'), +(58447, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.385+06', '{"cached":null,"ignore_cache":false}'), +(58448, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.526+06', '{"cached":null,"ignore_cache":false}'), +(58449, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.529+06', '{"cached":null,"ignore_cache":false}'), +(58450, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.554+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58451, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:52.604+06', '{"cached":null,"ignore_cache":false}'), +(58452, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.403+06', '{"cached":null,"ignore_cache":null}'), +(58453, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.75+06', '{"cached":null,"ignore_cache":false}'), +(58454, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.777+06', '{"cached":null,"ignore_cache":false}'), +(58455, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.888+06', '{"cached":null,"ignore_cache":false}'), +(58456, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.894+06', '{"cached":null,"ignore_cache":false}'), +(58457, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.961+06', '{"cached":null,"ignore_cache":false}'), +(58458, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:57.986+06', '{"cached":null,"ignore_cache":false}'), +(58459, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:58+06', '{"cached":null,"ignore_cache":false}'), +(58460, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:43:58.015+06', '{"cached":null,"ignore_cache":false}'), +(58461, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.296+06', '{"cached":null,"ignore_cache":false}'), +(58462, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.344+06', '{"cached":null,"ignore_cache":false}'), +(58463, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.346+06', '{"cached":null,"ignore_cache":false}'), +(58464, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.37+06', '{"cached":null,"ignore_cache":false}'), +(58465, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.434+06', '{"cached":null,"ignore_cache":false}'), +(58466, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.468+06', '{"cached":null,"ignore_cache":false}'), +(58467, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.514+06', '{"cached":null,"ignore_cache":false}'), +(58468, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:01.524+06', '{"cached":null,"ignore_cache":false}'), +(58469, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.254+06', '{"cached":null,"ignore_cache":false}'), +(58470, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.257+06', '{"cached":null,"ignore_cache":false}'), +(58471, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.311+06', '{"cached":null,"ignore_cache":false}'), +(58472, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.339+06', '{"cached":null,"ignore_cache":false}'), +(58473, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.389+06', '{"cached":null,"ignore_cache":false}'), +(58474, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.416+06', '{"cached":null,"ignore_cache":false}'), +(58475, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.443+06', '{"cached":null,"ignore_cache":false}'), +(58476, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:26.502+06', '{"cached":null,"ignore_cache":false}'), +(58477, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.243+06', '{"cached":null,"ignore_cache":null}'), +(58478, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.839+06', '{"cached":null,"ignore_cache":false}'), +(58479, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.841+06', '{"cached":null,"ignore_cache":false}'), +(58480, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.856+06', '{"cached":null,"ignore_cache":false}'), +(58481, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:45.915+06', '{"cached":null,"ignore_cache":false}'), +(58482, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:46.004+06', '{"cached":null,"ignore_cache":false}'), +(58483, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:46.034+06', '{"cached":null,"ignore_cache":false}'), +(58484, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:46.046+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58485, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:44:46.06+06', '{"cached":null,"ignore_cache":false}'), +(58486, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:02.523+06', '{"cached":null,"ignore_cache":null}'), +(58487, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.054+06', '{"cached":null,"ignore_cache":false}'), +(58488, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.093+06', '{"cached":null,"ignore_cache":false}'), +(58489, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.107+06', '{"cached":null,"ignore_cache":false}'), +(58490, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.191+06', '{"cached":null,"ignore_cache":false}'), +(58491, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.226+06', '{"cached":null,"ignore_cache":false}'), +(58492, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.239+06', '{"cached":null,"ignore_cache":false}'), +(58493, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.251+06', '{"cached":null,"ignore_cache":false}'), +(58494, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:03.312+06', '{"cached":null,"ignore_cache":false}'), +(58495, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:36.775+06', '{"cached":null,"ignore_cache":null}'), +(58496, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.012+06', '{"cached":null,"ignore_cache":false}'), +(58497, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.068+06', '{"cached":null,"ignore_cache":false}'), +(58498, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.094+06', '{"cached":null,"ignore_cache":false}'), +(58499, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.096+06', '{"cached":null,"ignore_cache":false}'), +(58500, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.252+06', '{"cached":null,"ignore_cache":false}'), +(58501, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.266+06', '{"cached":null,"ignore_cache":false}'), +(58502, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.287+06', '{"cached":null,"ignore_cache":false}'), +(58503, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:37.297+06', '{"cached":null,"ignore_cache":false}'), +(58504, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.886+06', '{"cached":null,"ignore_cache":false}'), +(58505, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:56.975+06', '{"cached":null,"ignore_cache":false}'), +(58506, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:57.003+06', '{"cached":null,"ignore_cache":false}'), +(58507, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:57.055+06', '{"cached":null,"ignore_cache":false}'), +(58508, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:57.091+06', '{"cached":null,"ignore_cache":false}'), +(58509, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:57.135+06', '{"cached":null,"ignore_cache":false}'), +(58510, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:57.153+06', '{"cached":null,"ignore_cache":false}'), +(58511, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:45:57.176+06', '{"cached":null,"ignore_cache":false}'), +(58512, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:46:26.51+06', '{"cached":null,"ignore_cache":null}'), +(58513, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:46:26.711+06', '{"cached":null,"ignore_cache":false}'), +(58514, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.26+06', '{"cached":null,"ignore_cache":null}'), +(58515, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.442+06', '{"cached":null,"ignore_cache":false}'), +(58516, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.444+06', '{"cached":null,"ignore_cache":false}'), +(58517, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.46+06', '{"cached":null,"ignore_cache":false}'), +(58518, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.503+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58519, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.543+06', '{"cached":null,"ignore_cache":false}'), +(58520, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.565+06', '{"cached":null,"ignore_cache":false}'), +(58521, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.623+06', '{"cached":null,"ignore_cache":false}'), +(58522, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:48:32.67+06', '{"cached":null,"ignore_cache":false}'), +(58523, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:34.822+06', '{"cached":null,"ignore_cache":null}'), +(58524, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.034+06', '{"cached":null,"ignore_cache":false}'), +(58525, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.073+06', '{"cached":null,"ignore_cache":false}'), +(58526, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.092+06', '{"cached":null,"ignore_cache":false}'), +(58527, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.124+06', '{"cached":null,"ignore_cache":false}'), +(58528, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.175+06', '{"cached":null,"ignore_cache":false}'), +(58529, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.214+06', '{"cached":null,"ignore_cache":false}'), +(58530, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.254+06', '{"cached":null,"ignore_cache":false}'), +(58531, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:39.272+06', '{"cached":null,"ignore_cache":false}'), +(58532, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.964+06', '{"cached":null,"ignore_cache":false}'), +(58533, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.993+06', '{"cached":null,"ignore_cache":false}'), +(58534, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:43.994+06', '{"cached":null,"ignore_cache":false}'), +(58535, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:44.007+06', '{"cached":null,"ignore_cache":false}'), +(58536, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:44.142+06', '{"cached":null,"ignore_cache":false}'), +(58537, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:44.143+06', '{"cached":null,"ignore_cache":false}'), +(58538, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:44.153+06', '{"cached":null,"ignore_cache":false}'), +(58539, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:44.171+06', '{"cached":null,"ignore_cache":false}'), +(58540, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.934+06', '{"cached":null,"ignore_cache":false}'), +(58541, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.941+06', '{"cached":null,"ignore_cache":false}'), +(58542, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.966+06', '{"cached":null,"ignore_cache":false}'), +(58543, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:47.967+06', '{"cached":null,"ignore_cache":false}'), +(58544, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:48.057+06', '{"cached":null,"ignore_cache":false}'), +(58545, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:48.087+06', '{"cached":null,"ignore_cache":false}'), +(58546, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:48.148+06', '{"cached":null,"ignore_cache":false}'), +(58547, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:48.156+06', '{"cached":null,"ignore_cache":false}'), +(58548, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.538+06', '{"cached":null,"ignore_cache":false}'), +(58549, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.548+06', '{"cached":null,"ignore_cache":false}'), +(58550, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.555+06', '{"cached":null,"ignore_cache":false}'), +(58551, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.598+06', '{"cached":null,"ignore_cache":false}'), +(58552, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.678+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58553, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.68+06', '{"cached":null,"ignore_cache":false}'), +(58554, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.747+06', '{"cached":null,"ignore_cache":false}'), +(58555, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:56.774+06', '{"cached":null,"ignore_cache":false}'), +(58556, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:50:16.082+06', '{"cached":null,"ignore_cache":null}'), +(58557, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-22 12:50:16.202+06', '{"cached":null,"ignore_cache":null}'), +(58558, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:09.483+06', '{"cached":null,"ignore_cache":false}'), +(58559, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.05+06', '{"cached":null,"ignore_cache":null}'), +(58560, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.239+06', '{"cached":null,"ignore_cache":false}'), +(58561, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.274+06', '{"cached":null,"ignore_cache":false}'), +(58562, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.333+06', '{"cached":null,"ignore_cache":false}'), +(58563, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.338+06', '{"cached":null,"ignore_cache":false}'), +(58564, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.428+06', '{"cached":null,"ignore_cache":false}'), +(58565, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.453+06', '{"cached":null,"ignore_cache":false}'), +(58566, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.458+06', '{"cached":null,"ignore_cache":false}'), +(58567, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:18.481+06', '{"cached":null,"ignore_cache":false}'), +(58568, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:03.945+06', '{"cached":null,"ignore_cache":null}'), +(58569, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.284+06', '{"cached":null,"ignore_cache":false}'), +(58570, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.322+06', '{"cached":null,"ignore_cache":false}'), +(58571, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.361+06', '{"cached":null,"ignore_cache":false}'), +(58572, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.373+06', '{"cached":null,"ignore_cache":false}'), +(58573, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.448+06', '{"cached":null,"ignore_cache":false}'), +(58574, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.469+06', '{"cached":null,"ignore_cache":false}'), +(58575, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.53+06', '{"cached":null,"ignore_cache":false}'), +(58576, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:04.557+06', '{"cached":null,"ignore_cache":false}'), +(58577, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.003+06', '{"cached":null,"ignore_cache":null}'), +(58578, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.334+06', '{"cached":null,"ignore_cache":false}'), +(58579, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.341+06', '{"cached":null,"ignore_cache":false}'), +(58580, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.412+06', '{"cached":null,"ignore_cache":false}'), +(58581, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.424+06', '{"cached":null,"ignore_cache":false}'), +(58582, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.456+06', '{"cached":null,"ignore_cache":false}'), +(58583, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.527+06', '{"cached":null,"ignore_cache":false}'), +(58584, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.574+06', '{"cached":null,"ignore_cache":false}'), +(58585, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:47.576+06', '{"cached":null,"ignore_cache":false}'), +(58586, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-22 12:53:59.216+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58587, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.589+06', '{"cached":null,"ignore_cache":null}'), +(58588, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.688+06', '{"cached":null,"ignore_cache":false}'), +(58589, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.726+06', '{"cached":null,"ignore_cache":false}'), +(58590, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.738+06', '{"cached":null,"ignore_cache":false}'), +(58591, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.744+06', '{"cached":null,"ignore_cache":false}'), +(58592, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.82+06', '{"cached":null,"ignore_cache":false}'), +(58593, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.87+06', '{"cached":null,"ignore_cache":false}'), +(58594, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.925+06', '{"cached":null,"ignore_cache":false}'), +(58595, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:15.927+06', '{"cached":null,"ignore_cache":false}'), +(58596, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:17.652+06', '{"cached":null,"ignore_cache":null}'), +(58597, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:17.837+06', '{"cached":null,"ignore_cache":false}'), +(58598, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.169+06', '{"cached":null,"ignore_cache":null}'), +(58599, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.317+06', '{"cached":null,"ignore_cache":false}'), +(58600, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.352+06', '{"cached":null,"ignore_cache":false}'), +(58601, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.372+06', '{"cached":null,"ignore_cache":false}'), +(58602, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.411+06', '{"cached":null,"ignore_cache":false}'), +(58603, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.457+06', '{"cached":null,"ignore_cache":false}'), +(58604, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.512+06', '{"cached":null,"ignore_cache":false}'), +(58605, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.529+06', '{"cached":null,"ignore_cache":false}'), +(58606, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:33.538+06', '{"cached":null,"ignore_cache":false}'), +(58607, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:35.235+06', '{"cached":null,"ignore_cache":null}'), +(58608, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:35.393+06', '{"cached":null,"ignore_cache":false}'), +(58609, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:43.074+06', '{"cached":null,"ignore_cache":null}'), +(58610, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:50.945+06', '{"cached":null,"ignore_cache":false}'), +(58611, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-22 12:54:54.388+06', '{"cached":null,"ignore_cache":null}'), +(58612, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:01.502+06', '{"cached":null,"ignore_cache":false}'), +(58613, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:17.687+06', '{"cached":null,"ignore_cache":false}'), +(58614, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.826+06', '{"cached":null,"ignore_cache":null}'), +(58615, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.969+06', '{"cached":null,"ignore_cache":false}'), +(58616, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:28.97+06', '{"cached":null,"ignore_cache":false}'), +(58617, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.018+06', '{"cached":null,"ignore_cache":false}'), +(58618, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.043+06', '{"cached":null,"ignore_cache":false}'), +(58619, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.099+06', '{"cached":null,"ignore_cache":false}'), +(58620, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.115+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58621, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.153+06', '{"cached":null,"ignore_cache":false}'), +(58622, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:29.191+06', '{"cached":null,"ignore_cache":false}'), +(58623, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:56:15.981+06', '{"cached":null,"ignore_cache":null}'), +(58624, 1, 'table', 71, TIMESTAMP WITH TIME ZONE '2023-05-22 12:56:16.118+06', '{"cached":null,"ignore_cache":null}'), +(58625, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:12.187+06', '{"cached":null,"ignore_cache":false}'), +(58626, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.773+06', '{"cached":null,"ignore_cache":null}'), +(58627, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.888+06', '{"cached":null,"ignore_cache":false}'), +(58628, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.937+06', '{"cached":null,"ignore_cache":false}'), +(58629, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.989+06', '{"cached":null,"ignore_cache":false}'), +(58630, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:21.992+06', '{"cached":null,"ignore_cache":false}'), +(58631, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:22.067+06', '{"cached":null,"ignore_cache":false}'), +(58632, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:22.104+06', '{"cached":null,"ignore_cache":false}'), +(58633, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:22.147+06', '{"cached":null,"ignore_cache":false}'), +(58634, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:22.171+06', '{"cached":null,"ignore_cache":false}'), +(58635, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:03.878+06', '{"cached":null,"ignore_cache":null}'), +(58636, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.225+06', '{"cached":null,"ignore_cache":false}'), +(58637, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.231+06', '{"cached":null,"ignore_cache":false}'), +(58638, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.244+06', '{"cached":null,"ignore_cache":false}'), +(58639, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.26+06', '{"cached":null,"ignore_cache":false}'), +(58640, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.342+06', '{"cached":null,"ignore_cache":false}'), +(58641, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.402+06', '{"cached":null,"ignore_cache":false}'), +(58642, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.41+06', '{"cached":null,"ignore_cache":false}'), +(58643, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 13:00:04.425+06', '{"cached":null,"ignore_cache":false}'), +(58644, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:02:02.081+06', '{"cached":null,"ignore_cache":null}'), +(58645, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-22 13:02:02.221+06', '{"cached":null,"ignore_cache":null}'), +(58646, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:02:21.61+06', '{"cached":null,"ignore_cache":false}'), +(58647, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:12.829+06', '{"cached":null,"ignore_cache":null}'), +(58648, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:12.929+06', '{"cached":null,"ignore_cache":false}'), +(58649, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:12.964+06', '{"cached":null,"ignore_cache":false}'), +(58650, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:29.598+06', '{"cached":null,"ignore_cache":null}'), +(58651, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:29.744+06', '{"cached":null,"ignore_cache":false}'), +(58652, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:29.791+06', '{"cached":null,"ignore_cache":false}'), +(58653, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:55.29+06', '{"cached":null,"ignore_cache":null}'), +(58654, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:55.44+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58655, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:36.642+06', '{"cached":null,"ignore_cache":false}'), +(58656, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.854+06', '{"cached":null,"ignore_cache":null}'), +(58657, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.981+06', '{"cached":null,"ignore_cache":false}'), +(58658, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:40.99+06', '{"cached":null,"ignore_cache":false}'), +(58659, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.017+06', '{"cached":null,"ignore_cache":false}'), +(58660, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.1+06', '{"cached":null,"ignore_cache":false}'), +(58661, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.11+06', '{"cached":null,"ignore_cache":false}'), +(58662, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.129+06', '{"cached":null,"ignore_cache":false}'), +(58663, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.197+06', '{"cached":null,"ignore_cache":false}'), +(58664, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:41.242+06', '{"cached":null,"ignore_cache":false}'), +(58665, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:50.607+06', '{"cached":null,"ignore_cache":null}'), +(58666, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:50.725+06', '{"cached":null,"ignore_cache":false}'), +(58667, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:50.743+06', '{"cached":null,"ignore_cache":false}'), +(58668, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:27.886+06', '{"cached":null,"ignore_cache":null}'), +(58669, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:27.974+06', '{"cached":null,"ignore_cache":false}'), +(58670, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:27.989+06', '{"cached":null,"ignore_cache":false}'), +(58671, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:36.989+06', '{"cached":null,"ignore_cache":null}'), +(58672, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:37.104+06', '{"cached":null,"ignore_cache":false}'), +(58673, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:37.116+06', '{"cached":null,"ignore_cache":false}'), +(58674, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:40.638+06', '{"cached":null,"ignore_cache":null}'), +(58675, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:40.708+06', '{"cached":null,"ignore_cache":false}'), +(58676, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:40.715+06', '{"cached":null,"ignore_cache":false}'), +(58677, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:40.716+06', '{"cached":null,"ignore_cache":false}'), +(58678, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:49.388+06', '{"cached":null,"ignore_cache":null}'), +(58679, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:49.461+06', '{"cached":null,"ignore_cache":false}'), +(58680, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:49.468+06', '{"cached":null,"ignore_cache":false}'), +(58681, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:49.474+06', '{"cached":null,"ignore_cache":false}'), +(58682, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-05-22 13:12:00.712+06', '{"cached":null,"ignore_cache":null}'), +(58683, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-22 13:12:00.783+06', '{"cached":null,"ignore_cache":false}'), +(58684, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-22 13:12:00.788+06', '{"cached":null,"ignore_cache":false}'), +(58685, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.309+06', '{"cached":null,"ignore_cache":false}'), +(58686, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.322+06', '{"cached":null,"ignore_cache":false}'), +(58687, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.387+06', '{"cached":null,"ignore_cache":false}'), +(58688, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:25.399+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58689, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.569+06', '{"cached":null,"ignore_cache":false}'), +(58690, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.577+06', '{"cached":null,"ignore_cache":false}'), +(58691, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.631+06', '{"cached":null,"ignore_cache":false}'), +(58692, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:30.64+06', '{"cached":null,"ignore_cache":false}'), +(58693, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.66+06', '{"cached":null,"ignore_cache":false}'), +(58694, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.68+06', '{"cached":null,"ignore_cache":false}'), +(58695, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.732+06', '{"cached":null,"ignore_cache":false}'), +(58696, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.748+06', '{"cached":null,"ignore_cache":false}'), +(58697, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.812+06', '{"cached":null,"ignore_cache":false}'), +(58698, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.838+06', '{"cached":null,"ignore_cache":false}'), +(58699, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.845+06', '{"cached":null,"ignore_cache":false}'), +(58700, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.949+06', '{"cached":null,"ignore_cache":false}'), +(58701, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:36.968+06', '{"cached":null,"ignore_cache":false}'), +(58702, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:37.022+06', '{"cached":null,"ignore_cache":false}'), +(58703, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:37.054+06', '{"cached":null,"ignore_cache":false}'), +(58704, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:37.098+06', '{"cached":null,"ignore_cache":false}'), +(58705, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:37.099+06', '{"cached":null,"ignore_cache":false}'), +(58706, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:37.299+06', '{"cached":null,"ignore_cache":false}'), +(58707, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:37.328+06', '{"cached":null,"ignore_cache":false}'), +(58708, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.233+06', '{"cached":null,"ignore_cache":false}'), +(58709, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.255+06', '{"cached":null,"ignore_cache":false}'), +(58710, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.258+06', '{"cached":null,"ignore_cache":false}'), +(58711, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.259+06', '{"cached":null,"ignore_cache":false}'), +(58712, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.352+06', '{"cached":null,"ignore_cache":false}'), +(58713, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.376+06', '{"cached":null,"ignore_cache":false}'), +(58714, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.414+06', '{"cached":null,"ignore_cache":false}'), +(58715, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:42.432+06', '{"cached":null,"ignore_cache":false}'), +(58716, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.799+06', '{"cached":null,"ignore_cache":false}'), +(58717, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.816+06', '{"cached":null,"ignore_cache":false}'), +(58718, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.838+06', '{"cached":null,"ignore_cache":false}'), +(58719, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.852+06', '{"cached":null,"ignore_cache":false}'), +(58720, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.907+06', '{"cached":null,"ignore_cache":false}'), +(58721, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.922+06', '{"cached":null,"ignore_cache":false}'), +(58722, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:46.992+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58723, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-22 13:14:47.001+06', '{"cached":null,"ignore_cache":false}'), +(58724, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 13:16:39.582+06', '{"cached":null,"ignore_cache":null}'), +(58725, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-22 13:16:39.671+06', '{"cached":null,"ignore_cache":false}'), +(58726, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-22 13:16:39.693+06', '{"cached":null,"ignore_cache":false}'), +(58727, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-05-22 13:16:43.876+06', '{"cached":null,"ignore_cache":null}'), +(58728, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:31.438+06', '{"cached":null,"ignore_cache":null}'), +(58729, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.155+06', '{"cached":null,"ignore_cache":false}'), +(58730, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.174+06', '{"cached":null,"ignore_cache":false}'), +(58731, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.321+06', '{"cached":null,"ignore_cache":false}'), +(58732, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.356+06', '{"cached":null,"ignore_cache":false}'), +(58733, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.359+06', '{"cached":null,"ignore_cache":false}'), +(58734, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.365+06', '{"cached":null,"ignore_cache":false}'), +(58735, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.454+06', '{"cached":null,"ignore_cache":false}'), +(58736, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:32.459+06', '{"cached":null,"ignore_cache":false}'), +(58737, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.513+06', '{"cached":null,"ignore_cache":null}'), +(58738, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.956+06', '{"cached":null,"ignore_cache":false}'), +(58739, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:56.998+06', '{"cached":null,"ignore_cache":false}'), +(58740, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.015+06', '{"cached":null,"ignore_cache":false}'), +(58741, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.022+06', '{"cached":null,"ignore_cache":false}'), +(58742, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.172+06', '{"cached":null,"ignore_cache":false}'), +(58743, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.182+06', '{"cached":null,"ignore_cache":false}'), +(58744, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.211+06', '{"cached":null,"ignore_cache":false}'), +(58745, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:14:57.221+06', '{"cached":null,"ignore_cache":false}'), +(58746, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.281+06', '{"cached":null,"ignore_cache":false}'), +(58747, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.355+06', '{"cached":null,"ignore_cache":false}'), +(58748, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.397+06', '{"cached":null,"ignore_cache":false}'), +(58749, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.443+06', '{"cached":null,"ignore_cache":false}'), +(58750, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.578+06', '{"cached":null,"ignore_cache":false}'), +(58751, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.609+06', '{"cached":null,"ignore_cache":false}'), +(58752, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.668+06', '{"cached":null,"ignore_cache":false}'), +(58753, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:14.708+06', '{"cached":null,"ignore_cache":false}'), +(58754, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.252+06', '{"cached":null,"ignore_cache":false}'), +(58755, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.256+06', '{"cached":null,"ignore_cache":false}'), +(58756, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.281+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58757, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.295+06', '{"cached":null,"ignore_cache":false}'), +(58758, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.446+06', '{"cached":null,"ignore_cache":false}'), +(58759, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.457+06', '{"cached":null,"ignore_cache":false}'), +(58760, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.481+06', '{"cached":null,"ignore_cache":false}'), +(58761, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:24.52+06', '{"cached":null,"ignore_cache":false}'), +(58762, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:58.098+06', '{"cached":null,"ignore_cache":null}'), +(58763, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:17:58.59+06', '{"cached":null,"ignore_cache":false}'), +(58764, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:35.906+06', '{"cached":null,"ignore_cache":null}'), +(58765, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:36.028+06', '{"cached":null,"ignore_cache":null}'), +(58766, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:41.958+06', '{"cached":null,"ignore_cache":null}'), +(58767, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:26:42.262+06', '{"cached":null,"ignore_cache":false}'), +(58768, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.387+06', '{"cached":null,"ignore_cache":false}'), +(58769, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.488+06', '{"cached":null,"ignore_cache":false}'), +(58770, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.505+06', '{"cached":null,"ignore_cache":false}'), +(58771, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.626+06', '{"cached":null,"ignore_cache":false}'), +(58772, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-05-31 18:31:58.791+06', '{"cached":null,"ignore_cache":false}'), +(58773, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.311+06', '{"cached":null,"ignore_cache":null}'), +(58774, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.572+06', '{"cached":null,"ignore_cache":false}'), +(58775, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.582+06', '{"cached":null,"ignore_cache":false}'), +(58776, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.596+06', '{"cached":null,"ignore_cache":false}'), +(58777, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.637+06', '{"cached":null,"ignore_cache":false}'), +(58778, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.733+06', '{"cached":null,"ignore_cache":false}'), +(58779, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.751+06', '{"cached":null,"ignore_cache":false}'), +(58780, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.777+06', '{"cached":null,"ignore_cache":false}'), +(58781, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:38.821+06', '{"cached":null,"ignore_cache":false}'), +(58782, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.167+06', '{"cached":null,"ignore_cache":false}'), +(58783, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.188+06', '{"cached":null,"ignore_cache":false}'), +(58784, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.28+06', '{"cached":null,"ignore_cache":false}'), +(58785, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.296+06', '{"cached":null,"ignore_cache":false}'), +(58786, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.34+06', '{"cached":null,"ignore_cache":false}'), +(58787, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.35+06', '{"cached":null,"ignore_cache":false}'), +(58788, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.382+06', '{"cached":null,"ignore_cache":false}'), +(58789, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:42.444+06', '{"cached":null,"ignore_cache":false}'), +(58790, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.631+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58791, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.633+06', '{"cached":null,"ignore_cache":false}'), +(58792, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.639+06', '{"cached":null,"ignore_cache":false}'), +(58793, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.671+06', '{"cached":null,"ignore_cache":false}'), +(58794, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.806+06', '{"cached":null,"ignore_cache":false}'), +(58795, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.834+06', '{"cached":null,"ignore_cache":false}'), +(58796, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.847+06', '{"cached":null,"ignore_cache":false}'), +(58797, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:55:52.88+06', '{"cached":null,"ignore_cache":false}'), +(58798, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:56:07.331+06', '{"cached":null,"ignore_cache":null}'), +(58799, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:56:23.37+06', '{"cached":null,"ignore_cache":false}'), +(58800, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.027+06', '{"cached":null,"ignore_cache":null}'), +(58801, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.22+06', '{"cached":null,"ignore_cache":false}'), +(58802, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.229+06', '{"cached":null,"ignore_cache":false}'), +(58803, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.231+06', '{"cached":null,"ignore_cache":false}'), +(58804, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.262+06', '{"cached":null,"ignore_cache":false}'), +(58805, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.391+06', '{"cached":null,"ignore_cache":false}'), +(58806, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.41+06', '{"cached":null,"ignore_cache":false}'), +(58807, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.454+06', '{"cached":null,"ignore_cache":false}'), +(58808, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:27.487+06', '{"cached":null,"ignore_cache":false}'), +(58809, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:29.126+06', '{"cached":null,"ignore_cache":null}'), +(58810, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:50.689+06', '{"cached":null,"ignore_cache":false}'), +(58811, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.206+06', '{"cached":null,"ignore_cache":null}'), +(58812, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.455+06', '{"cached":null,"ignore_cache":false}'), +(58813, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.461+06', '{"cached":null,"ignore_cache":false}'), +(58814, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.471+06', '{"cached":null,"ignore_cache":false}'), +(58815, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.474+06', '{"cached":null,"ignore_cache":false}'), +(58816, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.592+06', '{"cached":null,"ignore_cache":false}'), +(58817, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.61+06', '{"cached":null,"ignore_cache":false}'), +(58818, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.62+06', '{"cached":null,"ignore_cache":false}'), +(58819, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:57.651+06', '{"cached":null,"ignore_cache":false}'), +(58820, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.502+06', '{"cached":null,"ignore_cache":false}'), +(58821, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.512+06', '{"cached":null,"ignore_cache":false}'), +(58822, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.562+06', '{"cached":null,"ignore_cache":false}'), +(58823, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.571+06', '{"cached":null,"ignore_cache":false}'), +(58824, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.646+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58825, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.672+06', '{"cached":null,"ignore_cache":false}'), +(58826, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.731+06', '{"cached":null,"ignore_cache":false}'), +(58827, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:05.744+06', '{"cached":null,"ignore_cache":false}'), +(58828, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.504+06', '{"cached":null,"ignore_cache":false}'), +(58829, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.572+06', '{"cached":null,"ignore_cache":false}'), +(58830, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.579+06', '{"cached":null,"ignore_cache":false}'), +(58831, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.598+06', '{"cached":null,"ignore_cache":false}'), +(58832, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.675+06', '{"cached":null,"ignore_cache":false}'), +(58833, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.748+06', '{"cached":null,"ignore_cache":false}'), +(58834, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.773+06', '{"cached":null,"ignore_cache":false}'), +(58835, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-05-31 18:58:07.784+06', '{"cached":null,"ignore_cache":false}'), +(58836, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:57.524+06', '{"cached":null,"ignore_cache":null}'), +(58837, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.283+06', '{"cached":null,"ignore_cache":false}'), +(58838, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.304+06', '{"cached":null,"ignore_cache":false}'), +(58839, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.307+06', '{"cached":null,"ignore_cache":false}'), +(58840, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.31+06', '{"cached":null,"ignore_cache":false}'), +(58841, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.338+06', '{"cached":null,"ignore_cache":false}'), +(58842, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.346+06', '{"cached":null,"ignore_cache":false}'), +(58843, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.445+06', '{"cached":null,"ignore_cache":false}'), +(58844, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:19:58.477+06', '{"cached":null,"ignore_cache":false}'), +(58845, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:04.05+06', '{"cached":null,"ignore_cache":null}'), +(58846, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:04.21+06', '{"cached":null,"ignore_cache":false}'), +(58847, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:04.249+06', '{"cached":null,"ignore_cache":false}'), +(58848, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:09.358+06', '{"cached":null,"ignore_cache":null}'), +(58849, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:09.465+06', '{"cached":null,"ignore_cache":false}'), +(58850, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:09.469+06', '{"cached":null,"ignore_cache":false}'), +(58851, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:09.471+06', '{"cached":null,"ignore_cache":false}'), +(58852, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:11.699+06', '{"cached":null,"ignore_cache":null}'), +(58853, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:11.791+06', '{"cached":null,"ignore_cache":false}'), +(58854, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:11.793+06', '{"cached":null,"ignore_cache":false}'), +(58855, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.164+06', '{"cached":null,"ignore_cache":null}'), +(58856, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.337+06', '{"cached":null,"ignore_cache":false}'), +(58857, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.351+06', '{"cached":null,"ignore_cache":false}'), +(58858, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.367+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58859, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.369+06', '{"cached":null,"ignore_cache":false}'), +(58860, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.371+06', '{"cached":null,"ignore_cache":false}'), +(58861, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.407+06', '{"cached":null,"ignore_cache":false}'), +(58862, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.45+06', '{"cached":null,"ignore_cache":false}'), +(58863, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:20:16.482+06', '{"cached":null,"ignore_cache":false}'), +(58864, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:21.614+06', '{"cached":null,"ignore_cache":null}'), +(58865, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.089+06', '{"cached":null,"ignore_cache":false}'), +(58866, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.096+06', '{"cached":null,"ignore_cache":false}'), +(58867, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.108+06', '{"cached":null,"ignore_cache":false}'), +(58868, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.11+06', '{"cached":null,"ignore_cache":false}'), +(58869, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.221+06', '{"cached":null,"ignore_cache":false}'), +(58870, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.253+06', '{"cached":null,"ignore_cache":false}'), +(58871, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.332+06', '{"cached":null,"ignore_cache":false}'), +(58872, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:22.391+06', '{"cached":null,"ignore_cache":false}'), +(58873, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.203+06', '{"cached":null,"ignore_cache":false}'), +(58874, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.22+06', '{"cached":null,"ignore_cache":false}'), +(58875, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.225+06', '{"cached":null,"ignore_cache":false}'), +(58876, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.258+06', '{"cached":null,"ignore_cache":false}'), +(58877, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.346+06', '{"cached":null,"ignore_cache":false}'), +(58878, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.377+06', '{"cached":null,"ignore_cache":false}'), +(58879, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.383+06', '{"cached":null,"ignore_cache":false}'), +(58880, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:31.388+06', '{"cached":null,"ignore_cache":false}'), +(58881, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.699+06', '{"cached":null,"ignore_cache":false}'), +(58882, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.729+06', '{"cached":null,"ignore_cache":false}'), +(58883, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.773+06', '{"cached":null,"ignore_cache":false}'), +(58884, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.823+06', '{"cached":null,"ignore_cache":false}'), +(58885, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.87+06', '{"cached":null,"ignore_cache":false}'), +(58886, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.896+06', '{"cached":null,"ignore_cache":false}'), +(58887, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.923+06', '{"cached":null,"ignore_cache":false}'), +(58888, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:36.939+06', '{"cached":null,"ignore_cache":false}'), +(58889, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.587+06', '{"cached":null,"ignore_cache":false}'), +(58890, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.601+06', '{"cached":null,"ignore_cache":false}'), +(58891, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.634+06', '{"cached":null,"ignore_cache":false}'), +(58892, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.653+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58893, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.762+06', '{"cached":null,"ignore_cache":false}'), +(58894, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.776+06', '{"cached":null,"ignore_cache":false}'), +(58895, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.788+06', '{"cached":null,"ignore_cache":false}'), +(58896, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:41.806+06', '{"cached":null,"ignore_cache":false}'), +(58897, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.779+06', '{"cached":null,"ignore_cache":false}'), +(58898, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.795+06', '{"cached":null,"ignore_cache":false}'), +(58899, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.808+06', '{"cached":null,"ignore_cache":false}'), +(58900, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.829+06', '{"cached":null,"ignore_cache":false}'), +(58901, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.947+06', '{"cached":null,"ignore_cache":false}'), +(58902, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.968+06', '{"cached":null,"ignore_cache":false}'), +(58903, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:49.99+06', '{"cached":null,"ignore_cache":false}'), +(58904, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:50.01+06', '{"cached":null,"ignore_cache":false}'), +(58905, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.377+06', '{"cached":null,"ignore_cache":false}'), +(58906, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.413+06', '{"cached":null,"ignore_cache":false}'), +(58907, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.435+06', '{"cached":null,"ignore_cache":false}'), +(58908, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.458+06', '{"cached":null,"ignore_cache":false}'), +(58909, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.498+06', '{"cached":null,"ignore_cache":false}'), +(58910, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.564+06', '{"cached":null,"ignore_cache":false}'), +(58911, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.64+06', '{"cached":null,"ignore_cache":false}'), +(58912, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:55.662+06', '{"cached":null,"ignore_cache":false}'), +(58913, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.372+06', '{"cached":null,"ignore_cache":false}'), +(58914, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.403+06', '{"cached":null,"ignore_cache":false}'), +(58915, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.405+06', '{"cached":null,"ignore_cache":false}'), +(58916, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.442+06', '{"cached":null,"ignore_cache":false}'), +(58917, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.511+06', '{"cached":null,"ignore_cache":false}'), +(58918, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.527+06', '{"cached":null,"ignore_cache":false}'), +(58919, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.542+06', '{"cached":null,"ignore_cache":false}'), +(58920, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:40:56.594+06', '{"cached":null,"ignore_cache":false}'), +(58921, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.937+06', '{"cached":null,"ignore_cache":false}'), +(58922, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.939+06', '{"cached":null,"ignore_cache":false}'), +(58923, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:01.96+06', '{"cached":null,"ignore_cache":false}'), +(58924, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:02.025+06', '{"cached":null,"ignore_cache":false}'), +(58925, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:02.056+06', '{"cached":null,"ignore_cache":false}'), +(58926, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:02.095+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58927, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:02.138+06', '{"cached":null,"ignore_cache":false}'), +(58928, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:02.151+06', '{"cached":null,"ignore_cache":false}'), +(58929, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.454+06', '{"cached":null,"ignore_cache":false}'), +(58930, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.46+06', '{"cached":null,"ignore_cache":false}'), +(58931, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.503+06', '{"cached":null,"ignore_cache":false}'), +(58932, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.604+06', '{"cached":null,"ignore_cache":false}'), +(58933, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.622+06', '{"cached":null,"ignore_cache":false}'), +(58934, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.633+06', '{"cached":null,"ignore_cache":false}'), +(58935, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.678+06', '{"cached":null,"ignore_cache":false}'), +(58936, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:07.68+06', '{"cached":null,"ignore_cache":false}'), +(58937, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.784+06', '{"cached":null,"ignore_cache":false}'), +(58938, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.821+06', '{"cached":null,"ignore_cache":false}'), +(58939, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.852+06', '{"cached":null,"ignore_cache":false}'), +(58940, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.862+06', '{"cached":null,"ignore_cache":false}'), +(58941, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.917+06', '{"cached":null,"ignore_cache":false}'), +(58942, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.965+06', '{"cached":null,"ignore_cache":false}'), +(58943, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:13.98+06', '{"cached":null,"ignore_cache":false}'), +(58944, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:14.015+06', '{"cached":null,"ignore_cache":false}'), +(58945, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.675+06', '{"cached":null,"ignore_cache":false}'), +(58946, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.716+06', '{"cached":null,"ignore_cache":false}'), +(58947, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.718+06', '{"cached":null,"ignore_cache":false}'), +(58948, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.723+06', '{"cached":null,"ignore_cache":false}'), +(58949, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.816+06', '{"cached":null,"ignore_cache":false}'), +(58950, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.845+06', '{"cached":null,"ignore_cache":false}'), +(58951, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.879+06', '{"cached":null,"ignore_cache":false}'), +(58952, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:41:17.922+06', '{"cached":null,"ignore_cache":false}'), +(58953, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:43:53.698+06', '{"cached":null,"ignore_cache":null}'), +(58954, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:02.464+06', '{"cached":null,"ignore_cache":null}'), +(58955, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:02.795+06', '{"cached":null,"ignore_cache":false}'), +(58956, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:09.165+06', '{"cached":null,"ignore_cache":true}'), +(58957, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:14.819+06', '{"cached":null,"ignore_cache":false}'), +(58958, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:53.801+06', '{"cached":null,"ignore_cache":null}'), +(58959, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:44:54.085+06', '{"cached":null,"ignore_cache":false}'), +(58960, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:01.895+06', '{"cached":null,"ignore_cache":true}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58961, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:05.615+06', '{"cached":null,"ignore_cache":true}'), +(58962, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:10.838+06', '{"cached":null,"ignore_cache":true}'), +(58963, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.149+06', '{"cached":null,"ignore_cache":null}'), +(58964, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.278+06', '{"cached":null,"ignore_cache":false}'), +(58965, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.304+06', '{"cached":null,"ignore_cache":false}'), +(58966, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.313+06', '{"cached":null,"ignore_cache":false}'), +(58967, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.341+06', '{"cached":null,"ignore_cache":false}'), +(58968, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.422+06', '{"cached":null,"ignore_cache":false}'), +(58969, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.424+06', '{"cached":null,"ignore_cache":false}'), +(58970, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.484+06', '{"cached":null,"ignore_cache":false}'), +(58971, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:13.506+06', '{"cached":null,"ignore_cache":false}'), +(58972, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:14.993+06', '{"cached":null,"ignore_cache":null}'), +(58973, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.105+06', '{"cached":null,"ignore_cache":false}'), +(58974, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.134+06', '{"cached":null,"ignore_cache":false}'), +(58975, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.154+06', '{"cached":null,"ignore_cache":false}'), +(58976, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.175+06', '{"cached":null,"ignore_cache":false}'), +(58977, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.231+06', '{"cached":null,"ignore_cache":false}'), +(58978, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.262+06', '{"cached":null,"ignore_cache":false}'), +(58979, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.304+06', '{"cached":null,"ignore_cache":false}'), +(58980, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:15.317+06', '{"cached":null,"ignore_cache":false}'), +(58981, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:16.546+06', '{"cached":null,"ignore_cache":null}'), +(58982, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:16.795+06', '{"cached":null,"ignore_cache":false}'), +(58983, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.06+06', '{"cached":null,"ignore_cache":null}'), +(58984, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.184+06', '{"cached":null,"ignore_cache":false}'), +(58985, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.197+06', '{"cached":null,"ignore_cache":false}'), +(58986, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.29+06', '{"cached":null,"ignore_cache":false}'), +(58987, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.317+06', '{"cached":null,"ignore_cache":false}'), +(58988, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.337+06', '{"cached":null,"ignore_cache":false}'), +(58989, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.36+06', '{"cached":null,"ignore_cache":false}'), +(58990, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.418+06', '{"cached":null,"ignore_cache":false}'), +(58991, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:19.453+06', '{"cached":null,"ignore_cache":false}'), +(58992, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:27.832+06', '{"cached":null,"ignore_cache":null}'), +(58993, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:45:28.101+06', '{"cached":null,"ignore_cache":false}'), +(58994, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:46:02.232+06', '{"cached":null,"ignore_cache":null}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(58995, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:46:02.468+06', '{"cached":null,"ignore_cache":false}'), +(58996, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:28.762+06', '{"cached":null,"ignore_cache":null}'), +(58997, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:29.025+06', '{"cached":null,"ignore_cache":false}'), +(58998, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:32.749+06', '{"cached":null,"ignore_cache":false}'), +(58999, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:43.075+06', '{"cached":null,"ignore_cache":null}'), +(59000, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:43.328+06', '{"cached":null,"ignore_cache":false}'), +(59001, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.448+06', '{"cached":null,"ignore_cache":null}'), +(59002, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.591+06', '{"cached":null,"ignore_cache":false}'), +(59003, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.602+06', '{"cached":null,"ignore_cache":false}'), +(59004, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.605+06', '{"cached":null,"ignore_cache":false}'), +(59005, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.647+06', '{"cached":null,"ignore_cache":false}'), +(59006, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.714+06', '{"cached":null,"ignore_cache":false}'), +(59007, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.743+06', '{"cached":null,"ignore_cache":false}'), +(59008, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.769+06', '{"cached":null,"ignore_cache":false}'), +(59009, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:47:47.792+06', '{"cached":null,"ignore_cache":false}'), +(59010, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-07-12 12:48:06.207+06', '{"cached":null,"ignore_cache":null}'), +(59011, 1, 'table', 69, TIMESTAMP WITH TIME ZONE '2023-07-12 12:48:41.443+06', '{"cached":null,"ignore_cache":null}'), +(59012, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:07.161+06', '{"cached":null,"ignore_cache":null}'), +(59013, 1, 'card', 32, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:07.395+06', '{"cached":null,"ignore_cache":false}'), +(59014, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:15.868+06', '{"cached":null,"ignore_cache":null}'), +(59015, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.031+06', '{"cached":null,"ignore_cache":false}'), +(59016, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.041+06', '{"cached":null,"ignore_cache":false}'), +(59017, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.055+06', '{"cached":null,"ignore_cache":false}'), +(59018, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.071+06', '{"cached":null,"ignore_cache":false}'), +(59019, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.177+06', '{"cached":null,"ignore_cache":false}'), +(59020, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.18+06', '{"cached":null,"ignore_cache":false}'), +(59021, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.197+06', '{"cached":null,"ignore_cache":false}'), +(59022, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:16.247+06', '{"cached":null,"ignore_cache":false}'), +(59023, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:53.866+06', '{"cached":null,"ignore_cache":null}'), +(59024, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:54.136+06', '{"cached":null,"ignore_cache":false}'), +(59025, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:49:59.444+06', '{"cached":null,"ignore_cache":true}'), +(59026, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.229+06', '{"cached":null,"ignore_cache":null}'), +(59027, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.364+06', '{"cached":null,"ignore_cache":false}'), +(59028, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.371+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(59029, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.395+06', '{"cached":null,"ignore_cache":false}'), +(59030, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.416+06', '{"cached":null,"ignore_cache":false}'), +(59031, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.495+06', '{"cached":null,"ignore_cache":false}'), +(59032, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.527+06', '{"cached":null,"ignore_cache":false}'), +(59033, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.532+06', '{"cached":null,"ignore_cache":false}'), +(59034, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:34.557+06', '{"cached":null,"ignore_cache":false}'), +(59035, 1, 'dashboard', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:41.877+06', '{"cached":null,"ignore_cache":null}'), +(59036, 1, 'card', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:41.936+06', '{"cached":null,"ignore_cache":false}'), +(59037, 1, 'card', 4, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:41.943+06', '{"cached":null,"ignore_cache":false}'), +(59038, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:41.948+06', '{"cached":null,"ignore_cache":false}'), +(59039, 1, 'dashboard', 4, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:43.371+06', '{"cached":null,"ignore_cache":null}'), +(59040, 1, 'card', 12, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:43.436+06', '{"cached":null,"ignore_cache":false}'), +(59041, 1, 'card', 33, TIMESTAMP WITH TIME ZONE '2023-07-12 12:50:43.438+06', '{"cached":null,"ignore_cache":false}'), +(59042, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.054+06', '{"cached":null,"ignore_cache":null}'), +(59043, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.174+06', '{"cached":null,"ignore_cache":false}'), +(59044, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.175+06', '{"cached":null,"ignore_cache":false}'), +(59045, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.196+06', '{"cached":null,"ignore_cache":false}'), +(59046, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.219+06', '{"cached":null,"ignore_cache":false}'), +(59047, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.272+06', '{"cached":null,"ignore_cache":false}'), +(59048, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.307+06', '{"cached":null,"ignore_cache":false}'), +(59049, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.331+06', '{"cached":null,"ignore_cache":false}'), +(59050, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:35.354+06', '{"cached":null,"ignore_cache":false}'), +(59051, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.457+06', '{"cached":null,"ignore_cache":false}'), +(59052, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.475+06', '{"cached":null,"ignore_cache":false}'), +(59053, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.5+06', '{"cached":null,"ignore_cache":false}'), +(59054, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.573+06', '{"cached":null,"ignore_cache":false}'), +(59055, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.62+06', '{"cached":null,"ignore_cache":false}'), +(59056, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.646+06', '{"cached":null,"ignore_cache":false}'), +(59057, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.664+06', '{"cached":null,"ignore_cache":false}'), +(59058, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:40.7+06', '{"cached":null,"ignore_cache":false}'), +(59059, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.499+06', '{"cached":null,"ignore_cache":false}'), +(59060, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.52+06', '{"cached":null,"ignore_cache":false}'), +(59061, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.534+06', '{"cached":null,"ignore_cache":false}'), +(59062, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.556+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(59063, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.604+06', '{"cached":null,"ignore_cache":false}'), +(59064, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.629+06', '{"cached":null,"ignore_cache":false}'), +(59065, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.699+06', '{"cached":null,"ignore_cache":false}'), +(59066, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:51:43.736+06', '{"cached":null,"ignore_cache":false}'), +(59067, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:26.258+06', '{"cached":null,"ignore_cache":null}'), +(59068, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:26.512+06', '{"cached":null,"ignore_cache":false}'), +(59069, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:56.214+06', '{"cached":null,"ignore_cache":null}'), +(59070, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:56.496+06', '{"cached":null,"ignore_cache":false}'), +(59071, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:10:00.243+06', '{"cached":null,"ignore_cache":null}'), +(59072, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:10:00.521+06', '{"cached":null,"ignore_cache":false}'), +(59073, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:13:58.155+06', '{"cached":null,"ignore_cache":false}'), +(59074, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:22:57+06', '{"cached":null,"ignore_cache":null}'), +(59075, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:22:57.249+06', '{"cached":null,"ignore_cache":false}'), +(59076, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:23.135+06', '{"cached":null,"ignore_cache":null}'), +(59077, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:23.383+06', '{"cached":null,"ignore_cache":false}'), +(59078, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:26.302+06', '{"cached":null,"ignore_cache":false}'), +(59079, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:24:32.476+06', '{"cached":null,"ignore_cache":false}'), +(59080, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:42.795+06', '{"cached":null,"ignore_cache":null}'), +(59081, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:43.204+06', '{"cached":null,"ignore_cache":false}'), +(59082, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:47.789+06', '{"cached":null,"ignore_cache":null}'), +(59083, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:47.997+06', '{"cached":null,"ignore_cache":false}'), +(59084, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:38:54.093+06', '{"cached":null,"ignore_cache":true}'), +(59085, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:39:00.723+06', '{"cached":null,"ignore_cache":true}'), +(59086, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:39:08.503+06', '{"cached":null,"ignore_cache":true}'), +(59087, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:39:52.412+06', '{"cached":null,"ignore_cache":true}'), +(59088, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:45.87+06', '{"cached":null,"ignore_cache":null}'), +(59089, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.128+06', '{"cached":null,"ignore_cache":false}'), +(59090, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.133+06', '{"cached":null,"ignore_cache":false}'), +(59091, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.135+06', '{"cached":null,"ignore_cache":false}'), +(59092, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.169+06', '{"cached":null,"ignore_cache":false}'), +(59093, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.245+06', '{"cached":null,"ignore_cache":false}'), +(59094, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.254+06', '{"cached":null,"ignore_cache":false}'), +(59095, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.288+06', '{"cached":null,"ignore_cache":false}'), +(59096, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:46.352+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(59097, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:49.904+06', '{"cached":null,"ignore_cache":null}'), +(59098, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:50.107+06', '{"cached":null,"ignore_cache":false}'), +(59099, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:41:54.797+06', '{"cached":null,"ignore_cache":true}'), +(59100, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:06.105+06', '{"cached":null,"ignore_cache":true}'), +(59101, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.646+06', '{"cached":null,"ignore_cache":null}'), +(59102, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.767+06', '{"cached":null,"ignore_cache":false}'), +(59103, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.782+06', '{"cached":null,"ignore_cache":false}'), +(59104, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.792+06', '{"cached":null,"ignore_cache":false}'), +(59105, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.803+06', '{"cached":null,"ignore_cache":false}'), +(59106, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.864+06', '{"cached":null,"ignore_cache":false}'), +(59107, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.888+06', '{"cached":null,"ignore_cache":false}'), +(59108, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.933+06', '{"cached":null,"ignore_cache":false}'), +(59109, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:12.977+06', '{"cached":null,"ignore_cache":false}'), +(59110, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:13.972+06', '{"cached":null,"ignore_cache":null}'), +(59111, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:14.234+06', '{"cached":null,"ignore_cache":false}'), +(59112, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:42:22.393+06', '{"cached":null,"ignore_cache":true}'), +(59113, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-07-12 13:43:16.298+06', '{"cached":null,"ignore_cache":null}'), +(59114, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:18.323+06', '{"cached":null,"ignore_cache":null}'), +(59115, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 13:44:18.607+06', '{"cached":null,"ignore_cache":false}'), +(59116, 1, 'table', 70, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:12.06+06', '{"cached":null,"ignore_cache":null}'), +(59117, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:32.963+06', '{"cached":null,"ignore_cache":null}'), +(59118, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.607+06', '{"cached":null,"ignore_cache":false}'), +(59119, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.648+06', '{"cached":null,"ignore_cache":false}'), +(59120, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.679+06', '{"cached":null,"ignore_cache":false}'), +(59121, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.737+06', '{"cached":null,"ignore_cache":false}'), +(59122, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.798+06', '{"cached":null,"ignore_cache":false}'), +(59123, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.821+06', '{"cached":null,"ignore_cache":false}'), +(59124, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.879+06', '{"cached":null,"ignore_cache":false}'), +(59125, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 14:39:33.888+06', '{"cached":null,"ignore_cache":false}'), +(59126, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.4+06', '{"cached":null,"ignore_cache":false}'), +(59127, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.441+06', '{"cached":null,"ignore_cache":false}'), +(59128, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.492+06', '{"cached":null,"ignore_cache":false}'), +(59129, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.557+06', '{"cached":null,"ignore_cache":false}'), +(59130, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.561+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(59131, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.61+06', '{"cached":null,"ignore_cache":false}'), +(59132, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.673+06', '{"cached":null,"ignore_cache":false}'), +(59133, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 14:50:16.71+06', '{"cached":null,"ignore_cache":false}'), +(59134, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.695+06', '{"cached":null,"ignore_cache":null}'), +(59135, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.934+06', '{"cached":null,"ignore_cache":false}'), +(59136, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.952+06', '{"cached":null,"ignore_cache":false}'), +(59137, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.967+06', '{"cached":null,"ignore_cache":false}'), +(59138, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:36.973+06', '{"cached":null,"ignore_cache":false}'), +(59139, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:37.069+06', '{"cached":null,"ignore_cache":false}'), +(59140, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:37.1+06', '{"cached":null,"ignore_cache":false}'), +(59141, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:37.105+06', '{"cached":null,"ignore_cache":false}'), +(59142, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:37.158+06', '{"cached":null,"ignore_cache":false}'), +(59143, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.028+06', '{"cached":null,"ignore_cache":false}'), +(59144, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.029+06', '{"cached":null,"ignore_cache":false}'), +(59145, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.035+06', '{"cached":null,"ignore_cache":false}'), +(59146, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.068+06', '{"cached":null,"ignore_cache":false}'), +(59147, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.183+06', '{"cached":null,"ignore_cache":false}'), +(59148, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.195+06', '{"cached":null,"ignore_cache":false}'), +(59149, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.197+06', '{"cached":null,"ignore_cache":false}'), +(59150, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:50.251+06', '{"cached":null,"ignore_cache":false}'), +(59151, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:55.998+06', '{"cached":null,"ignore_cache":false}'), +(59152, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.017+06', '{"cached":null,"ignore_cache":false}'), +(59153, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.022+06', '{"cached":null,"ignore_cache":false}'), +(59154, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.061+06', '{"cached":null,"ignore_cache":false}'), +(59155, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.166+06', '{"cached":null,"ignore_cache":false}'), +(59156, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.178+06', '{"cached":null,"ignore_cache":false}'), +(59157, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.215+06', '{"cached":null,"ignore_cache":false}'), +(59158, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:52:56.236+06', '{"cached":null,"ignore_cache":false}'), +(59159, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.351+06', '{"cached":null,"ignore_cache":null}'), +(59160, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.649+06', '{"cached":null,"ignore_cache":false}'), +(59161, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.68+06', '{"cached":null,"ignore_cache":false}'), +(59162, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.684+06', '{"cached":null,"ignore_cache":false}'), +(59163, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.77+06', '{"cached":null,"ignore_cache":false}'), +(59164, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.821+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(59165, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.844+06', '{"cached":null,"ignore_cache":false}'), +(59166, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.866+06', '{"cached":null,"ignore_cache":false}'), +(59167, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:19.884+06', '{"cached":null,"ignore_cache":false}'), +(59168, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:20.817+06', '{"cached":null,"ignore_cache":null}'), +(59169, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:21.124+06', '{"cached":null,"ignore_cache":false}'), +(59170, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.681+06', '{"cached":null,"ignore_cache":null}'), +(59171, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.977+06', '{"cached":null,"ignore_cache":false}'), +(59172, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.978+06', '{"cached":null,"ignore_cache":false}'), +(59173, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:22.984+06', '{"cached":null,"ignore_cache":false}'), +(59174, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:23.044+06', '{"cached":null,"ignore_cache":false}'), +(59175, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:23.166+06', '{"cached":null,"ignore_cache":false}'), +(59176, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:23.167+06', '{"cached":null,"ignore_cache":false}'), +(59177, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:23.169+06', '{"cached":null,"ignore_cache":false}'), +(59178, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:23.207+06', '{"cached":null,"ignore_cache":false}'), +(59179, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:24.613+06', '{"cached":null,"ignore_cache":null}'), +(59180, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 14:53:24.915+06', '{"cached":null,"ignore_cache":false}'), +(59181, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:10.602+06', '{"cached":null,"ignore_cache":true}'), +(59182, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:14.816+06', '{"cached":null,"ignore_cache":true}'), +(59183, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:18.427+06', '{"cached":null,"ignore_cache":true}'), +(59184, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 14:56:47.556+06', '{"cached":null,"ignore_cache":true}'), +(59185, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 15:51:02.96+06', '{"cached":null,"ignore_cache":false}'), +(59186, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 15:51:10.266+06', '{"cached":null,"ignore_cache":false}'), +(59187, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:12.151+06', '{"cached":null,"ignore_cache":false}'), +(59188, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:22.623+06', '{"cached":null,"ignore_cache":null}'), +(59189, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:22.899+06', '{"cached":null,"ignore_cache":false}'), +(59190, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:32.29+06', '{"cached":null,"ignore_cache":false}'), +(59191, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 17:47:41.479+06', '{"cached":null,"ignore_cache":false}'), +(59192, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:33.076+06', '{"cached":null,"ignore_cache":null}'), +(59193, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.06+06', '{"cached":null,"ignore_cache":false}'), +(59194, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.062+06', '{"cached":null,"ignore_cache":false}'), +(59195, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.173+06', '{"cached":null,"ignore_cache":false}'), +(59196, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.224+06', '{"cached":null,"ignore_cache":false}'), +(59197, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.402+06', '{"cached":null,"ignore_cache":false}'), +(59198, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.411+06', '{"cached":null,"ignore_cache":false}'); +INSERT INTO PUBLIC.VIEW_LOG(ID, USER_ID, MODEL, MODEL_ID, TIMESTAMP, METADATA) VALUES +(59199, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.419+06', '{"cached":null,"ignore_cache":false}'), +(59200, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.466+06', '{"cached":null,"ignore_cache":false}'), +(59201, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:34.575+06', '{"cached":null,"ignore_cache":null}'), +(59202, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:35.268+06', '{"cached":null,"ignore_cache":false}'), +(59203, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:35.35+06', '{"cached":null,"ignore_cache":false}'), +(59204, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:41.318+06', '{"cached":null,"ignore_cache":null}'), +(59205, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:41.73+06', '{"cached":null,"ignore_cache":false}'), +(59206, 1, 'dashboard', 2, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:43.94+06', '{"cached":null,"ignore_cache":null}'), +(59207, 1, 'card', 31, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.215+06', '{"cached":null,"ignore_cache":false}'), +(59208, 1, 'card', 1, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.239+06', '{"cached":null,"ignore_cache":false}'), +(59209, 1, 'card', 16, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.262+06', '{"cached":null,"ignore_cache":false}'), +(59210, 1, 'card', 30, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.359+06', '{"cached":null,"ignore_cache":false}'), +(59211, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.413+06', '{"cached":null,"ignore_cache":false}'), +(59212, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.52+06', '{"cached":null,"ignore_cache":false}'), +(59213, 1, 'card', 28, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.557+06', '{"cached":null,"ignore_cache":false}'), +(59214, 1, 'card', 14, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:44.566+06', '{"cached":null,"ignore_cache":false}'), +(59215, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:45.79+06', '{"cached":null,"ignore_cache":null}'), +(59216, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:46.291+06', '{"cached":null,"ignore_cache":false}'), +(59217, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:49.857+06', '{"cached":null,"ignore_cache":null}'), +(59218, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 19:49:50.161+06', '{"cached":null,"ignore_cache":false}'), +(59219, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 19:50:00.875+06', '{"cached":null,"ignore_cache":false}'), +(59220, 1, 'card', 9, TIMESTAMP WITH TIME ZONE '2023-07-12 19:50:14.611+06', '{"cached":null,"ignore_cache":false}'), +(59221, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:20.037+06', '{"cached":null,"ignore_cache":false}'), +(59222, 1, 'card', 13, TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:26.794+06', '{"cached":null,"ignore_cache":false}'), +(59223, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:00.722+06', '{"cached":null,"ignore_cache":null}'), +(59224, 1, 'card', 20, TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:01.432+06', '{"cached":null,"ignore_cache":false}'), +(59225, 1, 'card', 27, TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:01.563+06', '{"cached":null,"ignore_cache":false}'), +(59226, 1, 'dashboard', 3, TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:19.167+06', '{"cached":null,"ignore_cache":null}'); +CREATE INDEX PUBLIC.IDX_VIEW_LOG_USER_ID ON PUBLIC.VIEW_LOG(USER_ID); +CREATE INDEX PUBLIC.IDX_VIEW_LOG_TIMESTAMP ON PUBLIC.VIEW_LOG(MODEL_ID); +CREATE CACHED TABLE PUBLIC.NATIVE_QUERY_SNIPPET COMMENT 'Query snippets (raw text) to be substituted in native queries'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_F6D2CDE7_60C9_4D97_8623_1512A01B69BD) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_F6D2CDE7_60C9_4D97_8623_1512A01B69BD, + NAME VARCHAR(254) NOT NULL COMMENT 'Name of the query snippet', + DESCRIPTION CLOB, + CONTENT CLOB NOT NULL COMMENT 'Raw query snippet', + CREATOR_ID INT NOT NULL, + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL, + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL, + UPDATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL, + COLLECTION_ID INT COMMENT 'ID of the Snippet Folder (Collection) this Snippet is in, if any', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.NATIVE_QUERY_SNIPPET ADD CONSTRAINT PUBLIC.PK_NATIVE_QUERY_SNIPPET PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.NATIVE_QUERY_SNIPPET; +CREATE INDEX PUBLIC.IDX_SNIPPET_NAME ON PUBLIC.NATIVE_QUERY_SNIPPET(NAME); +CREATE INDEX PUBLIC.IDX_SNIPPET_COLLECTION_ID ON PUBLIC.NATIVE_QUERY_SNIPPET(COLLECTION_ID); +CREATE CACHED TABLE PUBLIC.MODEL_ACTION COMMENT 'Ties actions to models'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_6EF803E1_4CA2_450D_B70F_13849C2FFAC9) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_6EF803E1_4CA2_450D_B70F_13849C2FFAC9, + ENTITY_ID CHAR(21) NOT NULL COMMENT 'Random NanoID tag for unique identity.', + SLUG VARCHAR(254) NOT NULL COMMENT 'The referenceable name for this action', + CARD_ID INT NOT NULL COMMENT 'The associated model', + ACTION_ID INT COMMENT 'The associated action', + REQUIRES_PK BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Indicates that the primary key(s) need to be passed in as parameters', + PARAMETER_MAPPINGS CLOB COMMENT 'Mappings for primary keys to action parameters', + VISUALIZATION_SETTINGS CLOB COMMENT 'Settings for rendering the action' +); +ALTER TABLE PUBLIC.MODEL_ACTION ADD CONSTRAINT PUBLIC.PK_MODEL_ACTION PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.MODEL_ACTION; +CREATE CACHED TABLE PUBLIC.PULSE_CHANNEL_RECIPIENT( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_9FB79DA5_1ADE_447D_8990_E43EB458767A) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_9FB79DA5_1ADE_447D_8990_E43EB458767A, + PULSE_CHANNEL_ID INT NOT NULL, + USER_ID INT NOT NULL +); +ALTER TABLE PUBLIC.PULSE_CHANNEL_RECIPIENT ADD CONSTRAINT PUBLIC.PK_PULSE_CHANNEL_RECIPIENT PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.PULSE_CHANNEL_RECIPIENT; +CREATE CACHED TABLE PUBLIC.METABASE_DATABASE( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_1DDA2DDF_5A61_4A27_B552_908FF1E2661D) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_1DDA2DDF_5A61_4A27_B552_908FF1E2661D SELECTIVITY 100, + CREATED_AT TIMESTAMP DEFAULT NOW() NOT NULL SELECTIVITY 100, + UPDATED_AT TIMESTAMP DEFAULT NOW() NOT NULL SELECTIVITY 100, + NAME VARCHAR(254) NOT NULL SELECTIVITY 100, + DESCRIPTION CLOB, + DETAILS CLOB NOT NULL, + ENGINE VARCHAR(254) NOT NULL SELECTIVITY 100, + IS_SAMPLE BOOLEAN DEFAULT FALSE NOT NULL SELECTIVITY 100, + IS_FULL_SYNC BOOLEAN DEFAULT TRUE NOT NULL SELECTIVITY 50, + POINTS_OF_INTEREST CLOB, + CAVEATS CLOB, + METADATA_SYNC_SCHEDULE VARCHAR(254) DEFAULT '0 50 * * * ? *' NOT NULL SELECTIVITY 100 COMMENT 'The cron schedule string for when this database should undergo the metadata sync process (and analysis for new fields).', + CACHE_FIELD_VALUES_SCHEDULE VARCHAR(254) DEFAULT '0 50 0 * * ? *' NOT NULL SELECTIVITY 100 COMMENT 'The cron schedule string for when FieldValues for eligible Fields should be updated.', + TIMEZONE VARCHAR(254) SELECTIVITY 100 COMMENT 'Timezone identifier for the database, set by the sync process', + IS_ON_DEMAND BOOLEAN DEFAULT 'false' NOT NULL SELECTIVITY 50 COMMENT 'Whether we should do On-Demand caching of FieldValues for this DB. This means FieldValues are updated when their Field is used in a Dashboard or Card param.', + OPTIONS CLOB COMMENT 'Serialized JSON containing various options like QB behavior.', + AUTO_RUN_QUERIES BOOLEAN DEFAULT TRUE NOT NULL SELECTIVITY 50 COMMENT 'Whether to automatically run queries when doing simple filtering and summarizing in the Query Builder.', + REFINGERPRINT BOOLEAN SELECTIVITY 50 COMMENT 'Whether or not to enable periodic refingerprinting for this Database.', + CACHE_TTL INT SELECTIVITY 50 COMMENT 'Granular cache TTL for specific database.', + INITIAL_SYNC_STATUS VARCHAR(32) DEFAULT 'complete' NOT NULL SELECTIVITY 50 COMMENT 'String indicating whether a database has completed its initial sync and is ready to use', + CREATOR_ID INT SELECTIVITY 100 COMMENT 'ID of the admin who added the database', + SETTINGS CLOB COMMENT 'Serialized JSON containing Database-local Settings for this Database' +); +ALTER TABLE PUBLIC.METABASE_DATABASE ADD CONSTRAINT PUBLIC.PK_METABASE_DATABASE PRIMARY KEY(ID); +-- 1 +/- SELECT COUNT(*) FROM PUBLIC.METABASE_DATABASE; +INSERT INTO PUBLIC.METABASE_DATABASE(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DETAILS, ENGINE, IS_SAMPLE, IS_FULL_SYNC, POINTS_OF_INTEREST, CAVEATS, METADATA_SYNC_SCHEDULE, CACHE_FIELD_VALUES_SCHEDULE, TIMEZONE, IS_ON_DEMAND, OPTIONS, AUTO_RUN_QUERIES, REFINGERPRINT, CACHE_TTL, INITIAL_SYNC_STATUS, CREATOR_ID, SETTINGS) VALUES +(3, TIMESTAMP '2022-12-28 20:19:33.773', TIMESTAMP '2022-12-28 20:19:33.773', 'Performance', NULL, '{"additional-options":null,"ssl":false,"use-srv":false,"let-user-control-scheduling":null,"authdb":"","port":27017,"advanced-options":true,"dbname":"performance","use-connection-uri":false,"host":"localhost","tunnel-enabled":false,"pass":"","version":"4.4.18","user":"","client-ssl-key-value":null}', 'mongo', FALSE, TRUE, NULL, NULL, '0 49 * * * ? *', '0 0 2 * * ? *', NULL, FALSE, NULL, TRUE, NULL, NULL, 'complete', 1, NULL); +CREATE CACHED TABLE PUBLIC.QRTZ_SIMPLE_TRIGGERS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL, + TRIGGER_NAME VARCHAR(200) NOT NULL, + TRIGGER_GROUP VARCHAR(200) NOT NULL, + REPEAT_COUNT BIGINT NOT NULL, + REPEAT_INTERVAL BIGINT NOT NULL, + TIMES_TRIGGERED BIGINT NOT NULL +); +ALTER TABLE PUBLIC.QRTZ_SIMPLE_TRIGGERS ADD CONSTRAINT PUBLIC.PK_QRTZ_SIMPLE_TRIGGERS PRIMARY KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_SIMPLE_TRIGGERS; +CREATE CACHED TABLE PUBLIC.CARD_BOOKMARK COMMENT 'Table holding bookmarks on cards'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_2CF79133_88CE_4929_85C1_F880B342C009) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_2CF79133_88CE_4929_85C1_F880B342C009, + USER_ID INT NOT NULL COMMENT 'ID of the User who bookmarked the Card', + CARD_ID INT NOT NULL COMMENT 'ID of the Card bookmarked by the user', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the bookmark was created' +); +ALTER TABLE PUBLIC.CARD_BOOKMARK ADD CONSTRAINT PUBLIC.PK_CARD_BOOKMARK PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.CARD_BOOKMARK; +CREATE INDEX PUBLIC.IDX_CARD_BOOKMARK_USER_ID ON PUBLIC.CARD_BOOKMARK(USER_ID); +CREATE INDEX PUBLIC.IDX_CARD_BOOKMARK_CARD_ID ON PUBLIC.CARD_BOOKMARK(CARD_ID); +CREATE CACHED TABLE PUBLIC.PERMISSIONS( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_A02A3E48_A07E_45F0_A81A_3315B8C485C8) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_A02A3E48_A07E_45F0_A81A_3315B8C485C8, + OBJECT VARCHAR(254) NOT NULL, + GROUP_ID INT NOT NULL +); +ALTER TABLE PUBLIC.PERMISSIONS ADD CONSTRAINT PUBLIC.PK_PERMISSIONS PRIMARY KEY(ID); +-- 24 +/- SELECT COUNT(*) FROM PUBLIC.PERMISSIONS; +INSERT INTO PUBLIC.PERMISSIONS(ID, OBJECT, GROUP_ID) VALUES +(1, '/', 2), +(2, '/collection/root/', 1), +(3, '/application/subscription/', 1), +(4, '/collection/namespace/snippets/root/', 1), +(11, '/collection/2/', 1), +(13, '/collection/3/', 1), +(15, '/collection/4/', 1), +(16, '/collection/5/', 1), +(17, '/collection/6/', 1), +(51, '/collection/7/', 1), +(52, '/collection/8/', 1), +(53, '/collection/9/', 1), +(54, '/collection/10/', 1), +(55, '/collection/11/', 1), +(56, '/collection/12/', 1), +(57, '/collection/13/', 1), +(58, '/collection/14/', 1), +(59, '/collection/15/', 1), +(60, '/collection/16/', 1), +(61, '/collection/17/', 1), +(63, '/db/3/', 1), +(64, '/download/db/3/', 1), +(95, '/collection/18/', 1), +(100, '/download/db/3/native/', 1); +CREATE INDEX PUBLIC.IDX_PERMISSIONS_GROUP_ID ON PUBLIC.PERMISSIONS(GROUP_ID); +CREATE INDEX PUBLIC.IDX_PERMISSIONS_OBJECT ON PUBLIC.PERMISSIONS(OBJECT); +CREATE INDEX PUBLIC.IDX_PERMISSIONS_GROUP_ID_OBJECT ON PUBLIC.PERMISSIONS(GROUP_ID, OBJECT); +CREATE CACHED TABLE PUBLIC.QRTZ_CRON_TRIGGERS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL SELECTIVITY 9, + TRIGGER_NAME VARCHAR(200) NOT NULL SELECTIVITY 100, + TRIGGER_GROUP VARCHAR(200) NOT NULL SELECTIVITY 9, + CRON_EXPRESSION VARCHAR(120) NOT NULL SELECTIVITY 81, + TIME_ZONE_ID VARCHAR(80) SELECTIVITY 18 +); +ALTER TABLE PUBLIC.QRTZ_CRON_TRIGGERS ADD CONSTRAINT PUBLIC.PK_QRTZ_CRON_TRIGGERS PRIMARY KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP); +-- 9 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_CRON_TRIGGERS; +INSERT INTO PUBLIC.QRTZ_CRON_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP, CRON_EXPRESSION, TIME_ZONE_ID) VALUES +('MetabaseScheduler', 'metabase.task.upgrade-checks.trigger', 'DEFAULT', '0 15 6,18 * * ? *', 'Asia/Dhaka'), +('MetabaseScheduler', 'metabase.task.anonymous-stats.trigger', 'DEFAULT', '0 20 21 * * ? *', 'Asia/Dhaka'), +('MetabaseScheduler', 'metabase.task.refresh-channel-cache.trigger', 'DEFAULT', '0 57 0/4 1/1 * ? *', 'Asia/Dhaka'), +('MetabaseScheduler', 'metabase.task.abandonment-emails.trigger', 'DEFAULT', '0 0 12 * * ? *', 'Asia/Dhaka'), +('MetabaseScheduler', 'metabase.task.send-pulses.trigger', 'DEFAULT', '0 0 * * * ? *', 'Asia/Dhaka'), +('MetabaseScheduler', 'metabase.task.follow-up-emails.trigger', 'DEFAULT', '0 0 12 * * ? *', 'Asia/Dhaka'), +('MetabaseScheduler', 'metabase.task.task-history-cleanup.trigger', 'DEFAULT', '0 0 * * * ? *', 'Asia/Dhaka'), +('MetabaseScheduler', 'metabase.task.sync-and-analyze.trigger.3', 'DEFAULT', '0 49 * * * ? *', 'GMT'), +('MetabaseScheduler', 'metabase.task.update-field-values.trigger.3', 'DEFAULT', '0 0 2 * * ? *', 'GMT'); +CREATE CACHED TABLE PUBLIC.QUERY_ACTION COMMENT 'A readwrite query type of action'( + ACTION_ID INT NOT NULL COMMENT 'The related action', + CARD_ID INT NOT NULL COMMENT 'The related card' +); +ALTER TABLE PUBLIC.QUERY_ACTION ADD CONSTRAINT PUBLIC.PK_QUERY_ACTION PRIMARY KEY(ACTION_ID, CARD_ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QUERY_ACTION; +CREATE CACHED TABLE PUBLIC.QRTZ_SIMPROP_TRIGGERS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL, + TRIGGER_NAME VARCHAR(200) NOT NULL, + TRIGGER_GROUP VARCHAR(200) NOT NULL, + STR_PROP_1 VARCHAR(512), + STR_PROP_2 VARCHAR(512), + STR_PROP_3 VARCHAR(512), + INT_PROP_1 INT, + INT_PROP_2 INT, + LONG_PROP_1 BIGINT, + LONG_PROP_2 BIGINT, + DEC_PROP_1 NUMBER(13, 4), + DEC_PROP_2 NUMBER(13, 4), + BOOL_PROP_1 BOOLEAN, + BOOL_PROP_2 BOOLEAN +); +ALTER TABLE PUBLIC.QRTZ_SIMPROP_TRIGGERS ADD CONSTRAINT PUBLIC.PK_QRTZ_SIMPROP_TRIGGERS PRIMARY KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_SIMPROP_TRIGGERS; +CREATE CACHED TABLE PUBLIC.METABASE_TABLE( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_51D5A3C6_C497_4CAD_B02A_5D59F75D44D5) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_51D5A3C6_C497_4CAD_B02A_5D59F75D44D5 SELECTIVITY 100, + CREATED_AT TIMESTAMP NOT NULL SELECTIVITY 100, + UPDATED_AT TIMESTAMP NOT NULL SELECTIVITY 100, + NAME VARCHAR(254) NOT NULL SELECTIVITY 100, + DESCRIPTION CLOB, + ENTITY_TYPE VARCHAR(254) SELECTIVITY 41, + ACTIVE BOOLEAN NOT NULL SELECTIVITY 8, + DB_ID INT NOT NULL SELECTIVITY 16, + DISPLAY_NAME VARCHAR(254) SELECTIVITY 100, + VISIBILITY_TYPE VARCHAR(254) SELECTIVITY 8, + SCHEMA VARCHAR(254) SELECTIVITY 16, + POINTS_OF_INTEREST CLOB, + CAVEATS CLOB, + SHOW_IN_GETTING_STARTED BOOLEAN DEFAULT FALSE NOT NULL SELECTIVITY 8, + FIELD_ORDER VARCHAR(254) DEFAULT 'database' NOT NULL SELECTIVITY 8, + INITIAL_SYNC_STATUS VARCHAR(32) DEFAULT 'complete' NOT NULL SELECTIVITY 8 COMMENT 'String indicating whether a table has completed its initial sync and is ready to use' +); +ALTER TABLE PUBLIC.METABASE_TABLE ADD CONSTRAINT PUBLIC.PK_METABASE_TABLE PRIMARY KEY(ID); +-- 4 +/- SELECT COUNT(*) FROM PUBLIC.METABASE_TABLE; +INSERT INTO PUBLIC.METABASE_TABLE(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, ENTITY_TYPE, ACTIVE, DB_ID, DISPLAY_NAME, VISIBILITY_TYPE, SCHEMA, POINTS_OF_INTEREST, CAVEATS, SHOW_IN_GETTING_STARTED, FIELD_ORDER, INITIAL_SYNC_STATUS) VALUES +(69, TIMESTAMP '2022-12-28 20:19:34.304', TIMESTAMP '2022-12-28 20:19:38.151', 'populationEstimatesPerDay', NULL, 'entity/GenericTable', TRUE, 3, 'PopulationEstimatesPerDay', NULL, NULL, NULL, NULL, FALSE, 'database', 'complete'), +(70, TIMESTAMP '2022-12-28 20:19:34.332', TIMESTAMP '2022-12-28 20:19:38.16', 'registrations', NULL, 'entity/GenericTable', TRUE, 3, 'Registrations', NULL, NULL, NULL, NULL, FALSE, 'database', 'complete'), +(71, TIMESTAMP '2022-12-28 20:19:34.336', TIMESTAMP '2023-05-11 14:49:00.133', 'corrections', NULL, 'entity/GenericTable', FALSE, 3, 'Corrections', NULL, NULL, NULL, NULL, FALSE, 'database', 'complete'), +(72, TIMESTAMP '2022-12-28 20:19:34.338', TIMESTAMP '2022-12-28 20:19:38.199', 'changelog', NULL, 'entity/EventTable', FALSE, 3, 'Changelog', NULL, NULL, NULL, NULL, FALSE, 'database', 'complete'); +CREATE INDEX PUBLIC.IDX_TABLE_DB_ID ON PUBLIC.METABASE_TABLE(DB_ID); +CREATE INDEX PUBLIC.IDX_METABASE_TABLE_SHOW_IN_GETTING_STARTED ON PUBLIC.METABASE_TABLE(SHOW_IN_GETTING_STARTED); +CREATE INDEX PUBLIC.IDX_METABASE_TABLE_DB_ID_SCHEMA ON PUBLIC.METABASE_TABLE(DB_ID, SCHEMA); +CREATE CACHED TABLE PUBLIC.QRTZ_BLOB_TRIGGERS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL, + TRIGGER_NAME VARCHAR(200) NOT NULL, + TRIGGER_GROUP VARCHAR(200) NOT NULL, + BLOB_DATA BLOB +); +ALTER TABLE PUBLIC.QRTZ_BLOB_TRIGGERS ADD CONSTRAINT PUBLIC.PK_QRTZ_BLOB_TRIGGERS PRIMARY KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_BLOB_TRIGGERS; +CREATE CACHED TABLE PUBLIC.QRTZ_CALENDARS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL, + CALENDAR_NAME VARCHAR(200) NOT NULL, + CALENDAR BLOB NOT NULL +); +ALTER TABLE PUBLIC.QRTZ_CALENDARS ADD CONSTRAINT PUBLIC.PK_QRTZ_CALENDARS PRIMARY KEY(SCHED_NAME, CALENDAR_NAME); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_CALENDARS; +CREATE CACHED TABLE PUBLIC.QRTZ_PAUSED_TRIGGER_GRPS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL, + TRIGGER_GROUP VARCHAR(200) NOT NULL +); +ALTER TABLE PUBLIC.QRTZ_PAUSED_TRIGGER_GRPS ADD CONSTRAINT PUBLIC.PK_SCHED_NAME PRIMARY KEY(SCHED_NAME, TRIGGER_GROUP); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_PAUSED_TRIGGER_GRPS; +CREATE CACHED TABLE PUBLIC.QRTZ_FIRED_TRIGGERS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL SELECTIVITY 100, + ENTRY_ID VARCHAR(95) NOT NULL SELECTIVITY 100, + TRIGGER_NAME VARCHAR(200) NOT NULL SELECTIVITY 100, + TRIGGER_GROUP VARCHAR(200) NOT NULL SELECTIVITY 100, + INSTANCE_NAME VARCHAR(200) NOT NULL SELECTIVITY 100, + FIRED_TIME BIGINT NOT NULL SELECTIVITY 100, + SCHED_TIME BIGINT SELECTIVITY 100, + PRIORITY INT NOT NULL SELECTIVITY 100, + STATE VARCHAR(16) NOT NULL SELECTIVITY 100, + JOB_NAME VARCHAR(200) SELECTIVITY 100, + JOB_GROUP VARCHAR(200) SELECTIVITY 100, + IS_NONCONCURRENT BOOLEAN SELECTIVITY 100, + REQUESTS_RECOVERY BOOLEAN SELECTIVITY 100 +); +ALTER TABLE PUBLIC.QRTZ_FIRED_TRIGGERS ADD CONSTRAINT PUBLIC.PK_QRTZ_FIRED_TRIGGERS PRIMARY KEY(SCHED_NAME, ENTRY_ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_FIRED_TRIGGERS; +CREATE INDEX PUBLIC.IDX_QRTZ_FT_TRIG_INST_NAME ON PUBLIC.QRTZ_FIRED_TRIGGERS(SCHED_NAME, INSTANCE_NAME); +CREATE INDEX PUBLIC.IDX_QRTZ_FT_INST_JOB_REQ_RCVRY ON PUBLIC.QRTZ_FIRED_TRIGGERS(SCHED_NAME, INSTANCE_NAME, REQUESTS_RECOVERY); +CREATE INDEX PUBLIC.IDX_QRTZ_FT_J_G ON PUBLIC.QRTZ_FIRED_TRIGGERS(SCHED_NAME, JOB_NAME, JOB_GROUP); +CREATE INDEX PUBLIC.IDX_QRTZ_FT_JG ON PUBLIC.QRTZ_FIRED_TRIGGERS(SCHED_NAME, JOB_GROUP); +CREATE INDEX PUBLIC.IDX_QRTZ_FT_T_G ON PUBLIC.QRTZ_FIRED_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP); +CREATE INDEX PUBLIC.IDX_QRTZ_FT_TG ON PUBLIC.QRTZ_FIRED_TRIGGERS(SCHED_NAME, TRIGGER_GROUP); +CREATE CACHED TABLE PUBLIC.QRTZ_SCHEDULER_STATE COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL SELECTIVITY 100, + INSTANCE_NAME VARCHAR(200) NOT NULL SELECTIVITY 100, + LAST_CHECKIN_TIME BIGINT NOT NULL SELECTIVITY 100, + CHECKIN_INTERVAL BIGINT NOT NULL SELECTIVITY 100 +); +ALTER TABLE PUBLIC.QRTZ_SCHEDULER_STATE ADD CONSTRAINT PUBLIC.PK_QRTZ_SCHEDULER_STATE PRIMARY KEY(SCHED_NAME, INSTANCE_NAME); +-- 1 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_SCHEDULER_STATE; +INSERT INTO PUBLIC.QRTZ_SCHEDULER_STATE(SCHED_NAME, INSTANCE_NAME, LAST_CHECKIN_TIME, CHECKIN_INTERVAL) VALUES +('MetabaseScheduler', 'nileem29-Inspiron-55021692966222963', 1692966261459, 7500); +CREATE CACHED TABLE PUBLIC.QRTZ_LOCKS COMMENT 'Used for Quartz scheduler.'( + SCHED_NAME VARCHAR(120) NOT NULL SELECTIVITY 50, + LOCK_NAME VARCHAR(40) NOT NULL SELECTIVITY 100 +); +ALTER TABLE PUBLIC.QRTZ_LOCKS ADD CONSTRAINT PUBLIC.PK_QRTZ_LOCKS PRIMARY KEY(SCHED_NAME, LOCK_NAME); +-- 2 +/- SELECT COUNT(*) FROM PUBLIC.QRTZ_LOCKS; +INSERT INTO PUBLIC.QRTZ_LOCKS(SCHED_NAME, LOCK_NAME) VALUES +('MetabaseScheduler', 'TRIGGER_ACCESS'), +('MetabaseScheduler', 'STATE_ACCESS'); +CREATE CACHED TABLE PUBLIC.TIMELINE_EVENT COMMENT 'Events table'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_44FF26BA_7F0F_4B97_BCB3_DB3CF7789B64) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_44FF26BA_7F0F_4B97_BCB3_DB3CF7789B64, + TIMELINE_ID INT NOT NULL COMMENT 'ID of the timeline containing the event', + NAME VARCHAR(255) NOT NULL COMMENT 'Name of the event', + DESCRIPTION VARCHAR(255) COMMENT 'Optional markdown description of the event', + TIMESTAMP TIMESTAMP WITH TIME ZONE NOT NULL COMMENT 'When the event happened', + TIME_MATTERS BOOLEAN NOT NULL COMMENT 'Indicate whether the time component matters or if the timestamp should just serve to indicate the day of the event without any time associated to it.', + TIMEZONE VARCHAR(255) NOT NULL COMMENT 'Timezone to display the underlying UTC timestamp in for the client', + ICON VARCHAR(128) NOT NULL COMMENT 'the icon to use when displaying the event', + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Whether or not the event has been archived', + CREATOR_ID INT NOT NULL COMMENT 'ID of the user who created the event', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the event was created', + UPDATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the event was modified' +); +ALTER TABLE PUBLIC.TIMELINE_EVENT ADD CONSTRAINT PUBLIC.PK_TIMELINE_EVENT PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.TIMELINE_EVENT; +CREATE INDEX PUBLIC.IDX_TIMELINE_EVENT_TIMELINE_ID ON PUBLIC.TIMELINE_EVENT(TIMELINE_ID); +CREATE INDEX PUBLIC.IDX_TIMELINE_EVENT_TIMELINE_ID_TIMESTAMP ON PUBLIC.TIMELINE_EVENT(TIMELINE_ID, TIMESTAMP); +CREATE CACHED TABLE PUBLIC.COLLECTION_BOOKMARK COMMENT 'Table holding bookmarks on collections'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_40E7D26C_4D5D_4B18_BC95_929288F4E47E) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_40E7D26C_4D5D_4B18_BC95_929288F4E47E, + USER_ID INT NOT NULL COMMENT 'ID of the User who bookmarked the Collection', + COLLECTION_ID INT NOT NULL COMMENT 'ID of the Card bookmarked by the user', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the bookmark was created' +); +ALTER TABLE PUBLIC.COLLECTION_BOOKMARK ADD CONSTRAINT PUBLIC.PK_COLLECTION_BOOKMARK PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.COLLECTION_BOOKMARK; +CREATE INDEX PUBLIC.IDX_COLLECTION_BOOKMARK_USER_ID ON PUBLIC.COLLECTION_BOOKMARK(USER_ID); +CREATE INDEX PUBLIC.IDX_COLLECTION_BOOKMARK_COLLECTION_ID ON PUBLIC.COLLECTION_BOOKMARK(COLLECTION_ID); +CREATE CACHED TABLE PUBLIC.CORE_USER( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_30D101F9_4CD1_4E8E_8767_7B882B1F9975) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_30D101F9_4CD1_4E8E_8767_7B882B1F9975, + EMAIL VARCHAR_IGNORECASE(254) NOT NULL, + FIRST_NAME VARCHAR(254), + LAST_NAME VARCHAR(254), + PASSWORD VARCHAR(254), + PASSWORD_SALT VARCHAR(254) DEFAULT 'default', + DATE_JOINED TIMESTAMP NOT NULL, + LAST_LOGIN TIMESTAMP, + IS_SUPERUSER BOOLEAN DEFAULT FALSE NOT NULL, + IS_ACTIVE BOOLEAN DEFAULT TRUE NOT NULL, + RESET_TOKEN VARCHAR(254), + RESET_TRIGGERED BIGINT, + IS_QBNEWB BOOLEAN DEFAULT TRUE NOT NULL, + GOOGLE_AUTH BOOLEAN DEFAULT FALSE NOT NULL, + LDAP_AUTH BOOLEAN DEFAULT FALSE NOT NULL, + LOGIN_ATTRIBUTES CLOB COMMENT 'JSON serialized map with attributes used for row level permissions', + UPDATED_AT TIMESTAMP COMMENT 'When was this User last updated?', + SSO_SOURCE VARCHAR(254) COMMENT 'String to indicate the SSO backend the user is from', + LOCALE VARCHAR(5) COMMENT 'Preferred ISO locale (language/country) code, e.g "en" or "en-US", for this User. Overrides site default.', + IS_DATASETNEWB BOOLEAN DEFAULT TRUE NOT NULL COMMENT 'Boolean flag to indicate if the dataset info modal has been dismissed.', + SETTINGS CLOB COMMENT 'Serialized JSON containing User-local Settings for this User' +); +ALTER TABLE PUBLIC.CORE_USER ADD CONSTRAINT PUBLIC.PK_CORE_USER PRIMARY KEY(ID); +-- 1 +/- SELECT COUNT(*) FROM PUBLIC.CORE_USER; +INSERT INTO PUBLIC.CORE_USER(ID, EMAIL, FIRST_NAME, LAST_NAME, PASSWORD, PASSWORD_SALT, DATE_JOINED, LAST_LOGIN, IS_SUPERUSER, IS_ACTIVE, RESET_TOKEN, RESET_TRIGGERED, IS_QBNEWB, GOOGLE_AUTH, LDAP_AUTH, LOGIN_ATTRIBUTES, UPDATED_AT, SSO_SOURCE, LOCALE, IS_DATASETNEWB, SETTINGS) VALUES +(1, CAST('user@opencrvs.org' AS VARCHAR_IGNORECASE), 'OpenCRVS', 'User', '$2a$10$wPjljujfMA74bY2gq8YWV.ZyBssybkKWm7xfaKDstwXlCYYvFMB6y', '635efd7e-ff74-4cc5-b460-95ee8523c5c5', TIMESTAMP '2022-12-13 12:23:43.64', TIMESTAMP '2023-08-25 18:23:58.531', TRUE, TRUE, NULL, NULL, FALSE, FALSE, FALSE, NULL, TIMESTAMP '2023-08-25 18:23:58.531', NULL, NULL, TRUE, NULL); +CREATE CACHED TABLE PUBLIC.APP COMMENT 'Defines top level concerns for App'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_1998AEFF_9509_4479_9F00_1BA4A9D619EE) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_1998AEFF_9509_4479_9F00_1BA4A9D619EE, + ENTITY_ID CHAR(21) NOT NULL COMMENT 'Random NanoID tag for unique identity.', + COLLECTION_ID INT NOT NULL COMMENT 'The associated collection', + DASHBOARD_ID INT COMMENT 'The homepage of the app', + NAV_ITEMS CLOB COMMENT 'JSON for the navigation items of the app', + OPTIONS CLOB COMMENT 'JSON for frontend related additions, such as styling', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the app was created', + UPDATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when the app was updated' +); +ALTER TABLE PUBLIC.APP ADD CONSTRAINT PUBLIC.PK_APP PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.APP; +CREATE CACHED TABLE PUBLIC.REPORT_CARD( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_0E16F799_1A31_4961_9020_CDCADFFD2ECE) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_0E16F799_1A31_4961_9020_CDCADFFD2ECE, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + NAME VARCHAR(254) NOT NULL, + DESCRIPTION CLOB, + DISPLAY VARCHAR(254) NOT NULL, + DATASET_QUERY CLOB NOT NULL, + VISUALIZATION_SETTINGS CLOB NOT NULL, + CREATOR_ID INT NOT NULL, + DATABASE_ID INT NOT NULL, + TABLE_ID INT, + QUERY_TYPE VARCHAR(16), + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL, + COLLECTION_ID INT COMMENT 'Optional ID of Collection this Card belongs to.', + PUBLIC_UUID CHAR(36) COMMENT 'Unique UUID used to in publically-accessible links to this Card.', + MADE_PUBLIC_BY_ID INT COMMENT 'The ID of the User who first publically shared this Card.', + ENABLE_EMBEDDING BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Is this Card allowed to be embedded in different websites (using a signed JWT)?', + EMBEDDING_PARAMS CLOB COMMENT 'Serialized JSON containing information about required parameters that must be supplied when embedding this Card.', + CACHE_TTL INT COMMENT 'The maximum time, in seconds, to return cached results for this Card rather than running a new query.', + RESULT_METADATA CLOB COMMENT 'Serialized JSON containing metadata about the result columns from running the query.', + COLLECTION_POSITION SMALLINT COMMENT 'Optional pinned position for this item in its Collection. NULL means item is not pinned.', + DATASET BOOLEAN DEFAULT 'false' NOT NULL COMMENT 'Indicate whether question is a dataset', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.', + PARAMETERS CLOB COMMENT 'List of parameter associated to a card', + PARAMETER_MAPPINGS CLOB COMMENT 'List of parameter associated to a card', + COLLECTION_PREVIEW BOOLEAN DEFAULT TRUE NOT NULL COMMENT 'Indicating whether the card should be visualized in the collection preview', + IS_WRITE BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Indicates that this query will perform writes to a db' +); +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.PK_REPORT_CARD PRIMARY KEY(ID); +-- 25 +/- SELECT COUNT(*) FROM PUBLIC.REPORT_CARD; +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(1, TIMESTAMP '2022-12-13 13:55:36.171', TIMESTAMP '2023-01-26 09:18:10.064', 'Registrations by Gender', NULL, 'bar', '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"}', '{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"count","series_settings":{"Registrations":{"color":"#509EE3","show_series_values":true},"Count":{"color":"#69C8C8"}},"graph.dimensions":["Gender"]}', 1, 3, NULL, 'native', FALSE, 4, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Gender","field_ref":["field","Gender",{"base-type":"type/Text"}],"name":"Gender","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":2,"nil%":0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":2,"nil%":0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":2,"nil%":0}}}]', NULL, FALSE, 'Ksk2s3aUAdBmDtMTNwtH3', '[{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(2, TIMESTAMP '2022-12-13 16:05:38.684', TIMESTAMP '2022-12-29 10:26:26.814', 'Age under 1 year', 'Those who were under 1 year age at the time of registration', 'bar', '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"}', '{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["Count"]}', 1, 3, NULL, 'native', FALSE, 4, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Gender","field_ref":["field","Gender",{"base-type":"type/Text"}],"name":"Gender","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'nbbCJ21ti500TiOUVV2tq', '[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(4, TIMESTAMP '2022-12-13 19:04:05.857', TIMESTAMP '2022-12-29 10:27:42.093', 'Age under 5 years', 'Those who were under 1 year age at the time of registration (in bar chart)', 'bar', '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"}', '{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]}', 1, 3, NULL, 'native', FALSE, 4, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Gender","field_ref":["field","Gender",{"base-type":"type/Text"}],"name":"Gender","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'fln_xwOYWPvA6slmtJM8d', '[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(5, TIMESTAMP '2022-12-14 12:29:12.608', TIMESTAMP '2022-12-29 10:34:20.238', 'Total Birth Registered', NULL, 'bar', '{"database":3,"native":{"template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]"},"type":"native"}', '{"graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]}', 1, 3, NULL, 'native', FALSE, 5, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Gender","field_ref":["field","Gender",{"base-type":"type/Text"}],"name":"Gender","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'xpgHA2VNSp-rFzEMvXEW-', '[{"id":"29d3350d-d408-b8fa-0408-459134efb248","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(6, TIMESTAMP '2022-12-14 12:38:23.142', TIMESTAMP '2022-12-29 10:34:50.996', 'Within legally stipulated period', 'Those who were registered within 30 days of birth', 'bar', '{"database":3,"native":{"template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]"},"type":"native"}', '{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]}', 1, 3, NULL, 'native', FALSE, 5, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Gender","field_ref":["field","Gender",{"base-type":"type/Text"}],"name":"Gender","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'lyVkSLROwXmq-KGRr307r', '[{"id":"17df9448-b493-4181-215b-67b245b002a0","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ed14456d-7b78-9730-8a38-240630157985","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(7, TIMESTAMP '2022-12-14 12:44:07.794', TIMESTAMP '2022-12-29 10:33:45.375', 'Late Birth Registration', 'Those who registered between 30 days and 1 year of birth', 'bar', '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"}', '{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.metrics":["Count"]}', 1, 3, NULL, 'native', FALSE, 5, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Gender","field_ref":["field","Gender",{"base-type":"type/Text"}],"name":"Gender","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'Zzaq5dWSAeXhNl-dh1vAY', '[{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(8, TIMESTAMP '2022-12-14 12:47:04.866', TIMESTAMP '2022-12-29 10:33:14.27', 'Delayed Birth Registration', 'Those who registered after 1 year of birth', 'bar', '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"}', '{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]}', 1, 3, NULL, 'native', FALSE, 5, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Gender","field_ref":["field","Gender",{"base-type":"type/Text"}],"name":"Gender","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'MkeDZBr_8kshqVAdiACxv', '[{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(9, TIMESTAMP '2022-12-14 18:09:38.271', TIMESTAMP '2023-07-12 19:52:35.858', ' Completeness Rates by State (%)', NULL, 'map', '{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3}', '{"map.type":"region","map.region":"cdc1d5eb-c7f8-8b01-b296-eda34d06b6da","map.metric":"percentage","map.dimension":"State","table.pivot_column":"Completeness Rate","table.cell_column":"State"}', 1, 3, NULL, 'native', FALSE, 6, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"State","field_ref":["field","State",{"base-type":"type/Text"}],"name":"State","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Completeness Rate","field_ref":["field","Completeness Rate",{"base-type":"type/Float"}],"name":"Completeness Rate","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, '9t73rF7ixsw9EVOWpx7ab', '[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}]', '[]', TRUE, FALSE), +(10, TIMESTAMP '2022-12-14 18:42:08.037', TIMESTAMP '2022-12-29 10:32:36.031', 'Total Registrations', NULL, 'scalar', '{"type":"native","native":{"template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","collection":"registrations"},"database":3}', '{}', 1, 3, NULL, 'native', FALSE, 4, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"totalRegistrations","field_ref":["field","totalRegistrations",{"base-type":"type/Integer"}],"name":"totalRegistrations","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'BKDzBlQYMhO5wQWhVbytt', '[{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(11, TIMESTAMP '2022-12-14 18:53:39.211', TIMESTAMP '2022-12-29 10:30:04.204', 'Registrations by age', NULL, 'bar', '{"database":3,"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"type":"native"}', '{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]}', 1, 3, NULL, 'native', FALSE, 4, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"total","field_ref":["field","total",{"base-type":"type/Integer"}],"name":"total","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"category","field_ref":["field","category",{"base-type":"type/Text"}],"name":"category","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'g6QTDGvlih9yRnNCJqvy9', '[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(12, TIMESTAMP '2022-12-14 19:46:36.051', TIMESTAMP '2023-01-25 12:42:53.356', 'Leaderboard of Registrars', '', 'row', '{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"type":"native"}', '{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null}', 1, 3, NULL, 'native', FALSE, 4, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Registrar Name","field_ref":["field","Registrar Name",{"base-type":"type/Text"}],"name":"Registrar Name","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Registrations","field_ref":["field","Registrations",{"base-type":"type/Integer"}],"name":"Registrations","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'VxeUMjNq8eLaHweLGUvYF', '[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(13, TIMESTAMP '2022-12-16 10:23:02.863', TIMESTAMP '2023-05-31 18:57:50.252', 'Completeness Rate', NULL, 'gauge', '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"}', '{"table.pivot_column":"percentage","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}},"table.cell_column":"totalRegistrations"}', 1, 3, NULL, 'native', FALSE, 7, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"percentage","field_ref":["field","percentage",{"base-type":"type/Float"}],"name":"percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"totalRegistrations","field_ref":["field","totalRegistrations",{"base-type":"type/Integer"}],"name":"totalRegistrations","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"estimate","field_ref":["field","estimate",{"base-type":"type/Float"}],"name":"estimate","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'RUK20xOu8Io0PvT4a332Q', '[{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}]', '[]', TRUE, FALSE); +INSERT INTO SYSTEM_LOB_STREAM VALUES(553, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registr', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(553, 1, 'ations"},"database":3}', NULL); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(14, TIMESTAMP '2022-12-16 10:43:38.23', TIMESTAMP '2023-01-26 09:18:54.372', 'Registrations over Time', NULL, 'line', '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3}', '{"graph.show_goal":false,"graph.show_trendline":false,"graph.show_values":false,"graph.x_axis.axis_enabled":true,"graph.x_axis.title_text":"Over Time","graph.metrics":["count"],"column_settings":{"[\"ref\",[\"field\",677,null]]":{"date_abbreviate":true}},"graph.x_axis.scale":"timeseries","graph.dimensions":["createdAt"]}', 1, 3, 70, 'query', FALSE, NULL, NULL, NULL, FALSE, NULL, NULL, '[{"description":null,"semantic_type":"type/CreationTimestamp","coercion_strategy":null,"unit":"month","name":"createdAt","settings":null,"field_ref":["field",677,{"temporal-unit":"month"}],"effective_type":"type/Instant","id":677,"visibility_type":"normal","display_name":"CreatedAt","fingerprint":{"global":{"distinct-count":26,"nil%":0},"type":{"type/DateTime":{"earliest":"2022-12-08T08:03:53.732Z","latest":"2022-12-21T14:00:11.284Z"}}},"base_type":"type/Instant"},{"display_name":"Count","semantic_type":"type/Quantity","field_ref":["aggregation",0],"name":"count","base_type":"type/BigInteger","effective_type":"type/BigInteger","fingerprint":{"global":{"distinct-count":13,"nil%":0},"type":{"type/Number":{"min":10,"q1":1522,"q3":1608,"max":2258,"sd":532.3994427745644,"avg":1545}}}}]', NULL, FALSE, 'qNwCeJEl62KWFEc_8ueNS', '[]', '[]', TRUE, FALSE), +(16, TIMESTAMP '2022-12-16 13:06:40.361', TIMESTAMP '2023-01-26 09:45:41.01', 'Total Registrations (without native query)', NULL, 'scalar', '{"type":"query","query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3}', '{}', 1, 3, 70, 'query', FALSE, NULL, NULL, NULL, FALSE, NULL, NULL, '[{"base_type":"type/BigInteger","semantic_type":"type/Quantity","name":"count","display_name":"Count","source":"aggregation","field_ref":["aggregation",0]}]', NULL, FALSE, 'BOot6oon80vLb791-gzQb', '[]', '[]', TRUE, FALSE), +(18, TIMESTAMP '2022-12-19 08:37:34.118', TIMESTAMP '2023-01-26 09:34:47.945', 'Live Births by Literacy of Parents', NULL, 'bar', SYSTEM_COMBINE_CLOB(553), '{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"Mother":{"color":"#ED8535"},"mothersLiteracy":{"title":"mother","color":"#ED8535"},"fathersLiteracy":{"title":"father","color":"#8A5EB0"},"Father":{"color":"#8A5EB0"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]}', 1, 3, NULL, 'native', TRUE, 10, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Category","field_ref":["field","Category",{"base-type":"type/Text"}],"name":"Category","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Literacy","field_ref":["field","Literacy",{"base-type":"type/Text"}],"name":"Literacy","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'eRSJUaHW6haiucK8BtpC_', '[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(19, TIMESTAMP '2022-12-19 08:50:07.838', TIMESTAMP '2023-05-09 14:14:19.27', 'Live Births by Order', NULL, 'bar', '{"type":"native","native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3}', '{"graph.show_values":true,"pie.dimension":"birthOrder","graph.series_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":[null],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#F7C41F"}},"graph.dimensions":[]}', 1, 3, NULL, 'native', TRUE, 11, NULL, NULL, FALSE, NULL, NULL, '[]', NULL, FALSE, 'L6nXdi04nvxgEh1eJYrwR', '[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"District","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}]', '[]', TRUE, FALSE); +INSERT INTO SYSTEM_LOB_STREAM VALUES(554, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.cate', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(554, 1, 'gory\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(555, 0, '{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(555, 1, ' },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3}', NULL); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(20, TIMESTAMP '2022-12-19 09:56:45.336', TIMESTAMP '2023-05-10 16:31:24.88', 'Live Births by Age of Mother', NULL, 'bar', SYSTEM_COMBINE_CLOB(554), '{"graph.show_values":true,"table.cell_column":"Count","graph.series_order_dimension":null,"graph.x_axis.title_text":"Age","graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.dimensions":["Order"]}', 1, 3, NULL, 'native', FALSE, 12, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Order","field_ref":["field","Order",{"base-type":"type/Text"}],"name":"Order","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0}}},{"display_name":"Percentage","field_ref":["field","Percentage",{"base-type":"type/Float"}],"name":"Percentage","base_type":"type/Float","effective_type":"type/Float","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0}}}]', NULL, FALSE, 'PcnknQN2IYs_mJkwA8yRq', '[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","type":"string/=","target":["dimension",["template-tag","filterDistrict"]],"name":"District","slug":"filterDistrict"}]', '[]', TRUE, FALSE), +(21, TIMESTAMP '2022-12-19 10:32:35.258', TIMESTAMP '2023-01-26 09:36:24.473', 'Live Births by Level of Education of Parent', NULL, 'bar', SYSTEM_COMBINE_CLOB(555), '{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"Mother":{"color":"#E75454"},"fathersAttainment":{"title":"father","color":"#69C8C8"},"mothersAttainment":{"title":"mother","color":"#E75454"},"Father":{"color":"#69C8C8"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Relationship"]}', 1, 3, NULL, 'native', TRUE, 14, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Educational Attainment","field_ref":["field","Educational Attainment",{"base-type":"type/Text"}],"name":"Educational Attainment","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Relationship","field_ref":["field","Relationship",{"base-type":"type/Text"}],"name":"Relationship","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Count","field_ref":["field","Count",{"base-type":"type/Integer"}],"name":"Count","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'W6bdia0Vw-6PC1efnHIR4', '[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}]', '[]', TRUE, FALSE); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(27, TIMESTAMP '2022-12-20 09:21:07.317', TIMESTAMP '2023-05-22 13:10:36.288', 'Live Births by Place of Birth', NULL, 'pie', '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"ADMIN_STRUCTURE"],"Admin Structure"],[["=",["field",668,null],"CRVS_OFFICE"],"CRVS Office"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"OTHER"],"Other"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"}', '{"pie.colors":{"Health Facility":"#689636","Taxi":"#69C8C8"}}', 1, 3, 70, 'query', FALSE, 9, NULL, NULL, FALSE, NULL, NULL, '[{"base_type":"type/Text","name":"PlaceOfBirth","display_name":"PlaceOfBirth","expression_name":"PlaceOfBirth","field_ref":["expression","PlaceOfBirth"],"source":"breakout"},{"base_type":"type/BigInteger","semantic_type":"type/Quantity","name":"count","display_name":"Count","source":"aggregation","field_ref":["aggregation",0]}]', NULL, FALSE, 'AfR2OybIvG3i-a1qt-k0u', '[]', '[]', TRUE, FALSE), +(28, TIMESTAMP '2022-12-20 09:26:38.493', TIMESTAMP '2023-05-22 12:59:11.838', 'Record Corrections by Type', NULL, 'pie', '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"type":"query"}', '{"pie.colors":{"Clerical Error":"#8A5EB0"}}', 1, 3, 71, 'query', FALSE, 17, NULL, NULL, FALSE, NULL, NULL, '[{"base_type":"type/Text","name":"Reason","display_name":"Reason","expression_name":"Reason","field_ref":["expression","Reason"],"source":"breakout"},{"base_type":"type/BigInteger","semantic_type":"type/Quantity","name":"count","display_name":"Count","source":"aggregation","field_ref":["aggregation",0]}]', NULL, FALSE, '__hZ2xD-7VCBJ7mLFxB9Y', '[]', '[]', TRUE, FALSE), +(29, TIMESTAMP '2022-12-20 09:32:37.984', TIMESTAMP '2023-05-09 14:14:27.238', 'Live Births by Type of Birth', NULL, 'pie', '{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"database":3}', '{"pie.colors":{"Quadruplet":"#8A5EB0","Single":"#F7C41F"}}', 1, 3, 70, 'query', TRUE, 15, NULL, NULL, FALSE, NULL, NULL, '[{"base_type":"type/Text","name":"TypeOfBirth","display_name":"TypeOfBirth","expression_name":"TypeOfBirth","field_ref":["expression","TypeOfBirth"],"source":"breakout"},{"base_type":"type/BigInteger","semantic_type":"type/Quantity","name":"count","display_name":"Count","source":"aggregation","field_ref":["aggregation",0]}]', NULL, FALSE, 'GOqql9fnmIgyeOChWso6x', '[]', '[]', TRUE, FALSE), +(30, TIMESTAMP '2022-12-20 10:12:01.203', TIMESTAMP '2023-05-22 13:02:21.253', '% of Total Registrations Certified', NULL, 'pie', '{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"}', '{"pie.colors":{"Certified":"#E75454","Not Certified":"#F7C4C4"}}', 1, 3, 70, 'query', FALSE, 8, NULL, NULL, FALSE, NULL, NULL, '[{"base_type":"type/Text","name":"Status","display_name":"Status","expression_name":"Status","field_ref":["expression","Status"],"source":"breakout"},{"base_type":"type/BigInteger","semantic_type":"type/Quantity","name":"count","display_name":"Count","source":"aggregation","field_ref":["aggregation",0]}]', NULL, FALSE, 'i9_4VwkR62cl03HLkb9e7', '[]', '[]', TRUE, FALSE); +INSERT INTO SYSTEM_LOB_STREAM VALUES(556, 0, '{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","de', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(556, 1, 'fault":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"}', NULL); +INSERT INTO PUBLIC.REPORT_CARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, DISPLAY, DATASET_QUERY, VISUALIZATION_SETTINGS, CREATOR_ID, DATABASE_ID, TABLE_ID, QUERY_TYPE, ARCHIVED, COLLECTION_ID, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, CACHE_TTL, RESULT_METADATA, COLLECTION_POSITION, DATASET, ENTITY_ID, PARAMETERS, PARAMETER_MAPPINGS, COLLECTION_PREVIEW, IS_WRITE) VALUES +(31, TIMESTAMP '2022-12-21 07:21:47.991', TIMESTAMP '2023-01-26 09:25:34.729', 'Registrations by Age', NULL, 'bar', SYSTEM_COMBINE_CLOB(556), '{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.x_axis.labels_enabled":false,"graph.series_order_dimension":null,"stackable.stack_display":"bar","graph.x_axis.title_text":"Category","graph.label_value_frequency":"fit","graph.metrics":["Total"],"graph.label_value_formatting":"auto","graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"title":"Over age 5","color":"#509EE3"},"12":{"title":"Under age 1","color":"#509EE3"},"23":{"color":"#F9D45C","title":"Total"},"total":{"color":"#8A5EB0"},"20,085":{"axis":null},"Total":{"color":"#8A5EB0"}},"graph.dimensions":["Category"],"stackable.stack_type":"stacked"}', 1, 3, NULL, 'native', FALSE, 4, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"Total","field_ref":["field","Total",{"base-type":"type/Integer"}],"name":"Total","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}},{"display_name":"Category","field_ref":["field","Category",{"base-type":"type/Text"}],"name":"Category","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0.0}}}]', NULL, FALSE, 'hTP9EUEq13VA1N_H-258l', '[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE), +(32, TIMESTAMP '2023-01-24 10:30:25.392', TIMESTAMP '2023-05-09 14:17:29.726', 'Registrations by State', NULL, 'row', '{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["desc",["aggregation",0,null]]],"limit":10},"type":"query"}', '{"map.type":"region","map.region":"us_states","graph.dimensions":["stateName"],"graph.metrics":["count"]}', 1, 3, 70, 'query', FALSE, 18, NULL, NULL, FALSE, NULL, NULL, '[{"description":null,"semantic_type":"type/State","coercion_strategy":null,"name":"stateName","settings":null,"field_ref":["field",671,null],"effective_type":"type/Text","id":671,"visibility_type":"normal","display_name":"StateName","fingerprint":{"global":{"distinct-count":6,"nil%":0},"type":{"type/Text":{"percent-json":0,"percent-url":0,"percent-email":0,"percent-state":0,"average-length":5.538461538461538}}},"base_type":"type/Text"},{"display_name":"Count","semantic_type":"type/Quantity","field_ref":["aggregation",0],"name":"count","base_type":"type/BigInteger","effective_type":"type/BigInteger","fingerprint":{"global":{"distinct-count":10,"nil%":0},"type":{"type/Number":{"min":705,"q1":790,"q3":1160,"max":1830,"sd":339.08923768104336,"avg":1043.2}}}}]', NULL, FALSE, 'Ja4C9jmYDwEnYTid4pLzA', '[]', '[]', TRUE, FALSE), +(33, TIMESTAMP '2023-01-24 11:31:40.926', TIMESTAMP '2023-05-10 16:31:56.532', 'Registrations by State', NULL, 'row', '{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"}', '{"series_settings":{"Registrations":{"color":"#ED8535"}},"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","table.pivot_column":"State Name","table.cell_column":"Registrations","column_settings":{"[\"name\",\"State Name\"]":{"column_title":"State Name"}},"graph.metrics":["Registrations"]}', 1, 3, NULL, 'native', FALSE, 18, NULL, NULL, FALSE, NULL, NULL, '[{"display_name":"State Name","field_ref":["field","State Name",{"base-type":"type/Text"}],"name":"State Name","base_type":"type/Text","effective_type":"type/Text","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0}}},{"display_name":"Registrations","field_ref":["field","Registrations",{"base-type":"type/Integer"}],"name":"Registrations","base_type":"type/Integer","effective_type":"type/Integer","semantic_type":null,"fingerprint":{"global":{"distinct-count":1,"nil%":0}}}]', NULL, FALSE, 'g5hTQaT1d2p1OX0tU90WQ', '[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}]', '[]', TRUE, FALSE); +CREATE INDEX PUBLIC.IDX_CARD_CREATOR_ID ON PUBLIC.REPORT_CARD(CREATOR_ID); +CREATE INDEX PUBLIC.IDX_CARD_COLLECTION_ID ON PUBLIC.REPORT_CARD(COLLECTION_ID); +CREATE INDEX PUBLIC.IDX_CARD_PUBLIC_UUID ON PUBLIC.REPORT_CARD(PUBLIC_UUID); +CREATE CACHED TABLE PUBLIC.REVISION( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_D640115F_5EEE_4A4B_940C_6BFF8723C873) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_D640115F_5EEE_4A4B_940C_6BFF8723C873, + MODEL VARCHAR(16) NOT NULL, + MODEL_ID INT NOT NULL, + USER_ID INT NOT NULL, + TIMESTAMP TIMESTAMP WITH TIME ZONE NOT NULL, + OBJECT CLOB NOT NULL, + IS_REVERSION BOOLEAN DEFAULT FALSE NOT NULL, + IS_CREATION BOOLEAN DEFAULT FALSE NOT NULL, + MESSAGE CLOB +); +ALTER TABLE PUBLIC.REVISION ADD CONSTRAINT PUBLIC.PK_REVISION PRIMARY KEY(ID); +-- 296 +/- SELECT COUNT(*) FROM PUBLIC.REVISION; +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(21, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:05:38.691+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Under 1 (at the time of registration)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"table","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender"},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(25, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:06:51.034+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Under 1 Year (at the time of registration)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"table","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender"},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(26, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:07:10.587+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Under 1 Year (at the time of registration)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"bar","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(33, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:15:49.337+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 1 year (at the time of registration)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"bar","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(35, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 16:31:44.875+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 1 year (at the time of registration)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"pie","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(38, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:05.865+06', '{"description":"bar graph with percentage","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 5 Years (at the time of registration) - II","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"table","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count"},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(43, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:04:44.96+06', '{"description":null,"name":"Live Births","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(44, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:19.596+06', '{"description":null,"name":"Live Births","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(45, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:05:19.614+06', '{"description":null,"name":"Live Births","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(46, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:04.743+06', '{"description":"bar graph with percentage","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 5 Years (at the time of registration) - II","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(47, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:06:28.995+06', '{"description":"bar graph with percentage","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 5 Years (at the time of registration) - II","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(50, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:10.791+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 1 year","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"pie","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(51, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:56:57.422+06', '{"description":"Those who were under 1 year age at the time of registration","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 1 year","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"pie","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(54, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:01.82+06', '{"description":"Those who were under 1 year age at the time of registration (in bar chart)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 5 Years (at the time of registration) - II","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(55, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-13 19:58:08.137+06', '{"description":"Those who were under 1 year age at the time of registration (in bar chart)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":2,"query_type":"native","name":"Age under 5 Years - II","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(56, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:07:49.374+06', '{"description":"Those who were under 1 year age at the time of registration","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 1 year","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 366\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"pie","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(58, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:07:54.904+06', '{"description":"Those who were under 1 year age at the time of registration (in bar chart)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 5 Years - II","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lt\": 1826\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(59, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:07:56.815+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Total Birth Registered","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.show_goal":false,"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(60, 'Card', 5, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:29:12.622+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Total Birth Registered","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":5,"parameter_mappings":[],"display":"bar","entity_id":"xpgHA2VNSp-rFzEMvXEW-","collection_preview":true,"visualization_settings":{"graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"29d3350d-d408-b8fa-0408-459134efb248","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(61, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:32:52.364+06', '{"description":"Those who were under 1 year age at the time of registration","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 1 year","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}, \n { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n }, \n { \"$project\": {\n \"_id\": false,\n \"Gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"pie","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"count","fieldRef":["field","count",{"base-type":"type/Integer"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(63, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:33:29.053+06', '{"description":"Those who were under 1 year age at the time of registration (in bar chart)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 5 Years - II","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(64, 'Card', 6, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:38:23.164+06', '{"description":"Those who were registered within 30 days of birth","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Within legally stipulated period","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":6,"parameter_mappings":[],"display":"table","entity_id":"lyVkSLROwXmq-KGRr307r","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count"},"is_write":false,"parameters":[{"id":"17df9448-b493-4181-215b-67b245b002a0","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ed14456d-7b78-9730-8a38-240630157985","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(65, 'Card', 7, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:44:07.803+06', '{"description":"Those who registered between 30 days and 1 year of birth","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Late Birth Registration","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":7,"parameter_mappings":[],"display":"table","entity_id":"Zzaq5dWSAeXhNl-dh1vAY","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count"},"is_write":false,"parameters":[{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(66, 'Card', 8, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:04.875+06', '{"description":"Those who registered after 1 year of birth","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Delayed Birth Registration","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":8,"parameter_mappings":[],"display":"table","entity_id":"MkeDZBr_8kshqVAdiACxv","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count"},"is_write":false,"parameters":[{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(67, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:30.747+06', '{"description":null,"name":"Live Births ","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(68, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:30.795+06', '{"description":null,"name":"Live Births ","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(69, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:42.388+06', '{"description":null,"name":"Live Births ","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(70, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:47:42.467+06', '{"description":null,"name":"Live Births ","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(71, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:48:03.205+06', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(72, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:48:03.253+06', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(83, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.262+06', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(84, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:52:54.291+06', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":6,"size_y":4,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":6,"id":2,"card_id":2,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":12,"id":3,"card_id":3,"series":[]},{"size_x":6,"size_y":4,"row":4,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(85, 'Card', 6, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:30.725+06', '{"description":"Those who were registered within 30 days of birth","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Within legally stipulated period","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":6,"parameter_mappings":[],"display":"bar","entity_id":"lyVkSLROwXmq-KGRr307r","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"17df9448-b493-4181-215b-67b245b002a0","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ed14456d-7b78-9730-8a38-240630157985","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(86, 'Card', 8, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:44.64+06', '{"description":"Those who registered after 1 year of birth","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Delayed Birth Registration","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":8,"parameter_mappings":[],"display":"bar","entity_id":"MkeDZBr_8kshqVAdiACxv","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(87, 'Card', 7, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:53:59.096+06', '{"description":"Those who registered between 30 days and 1 year of birth","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Late Birth Registration","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":7,"parameter_mappings":[],"display":"bar","entity_id":"Zzaq5dWSAeXhNl-dh1vAY","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(93, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:47.744+06', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":9,"size_y":5,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":9,"size_y":5,"row":0,"col":9,"id":2,"card_id":2,"series":[]},{"size_x":9,"size_y":5,"row":5,"col":9,"id":3,"card_id":3,"series":[]},{"size_x":9,"size_y":5,"row":5,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(94, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 12:55:47.781+06', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":9,"size_y":5,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":9,"size_y":5,"row":0,"col":9,"id":2,"card_id":2,"series":[]},{"size_x":9,"size_y":5,"row":5,"col":9,"id":3,"card_id":3,"series":[]},{"size_x":9,"size_y":5,"row":5,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(105, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:27:06.514+06', '{"description":"Those who were under 1 year age at the time of registration (in bar chart)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 5 Years","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(557, 0, '{"description":"Those who were under 1 year age at the time of registration","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 1 year","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":2,"parameter_mappings":[],"display":"bar","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(557, 1, 'template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(106, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:28:48.448+06', SYSTEM_COMBINE_CLOB(557), FALSE, FALSE, NULL), +(107, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 15:29:11.779+06', '{"description":"Those who were under 1 year age at the time of registration (in bar chart)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 5 years","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(110, 'Card', 10, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:42:08.065+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Total Registrations","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2},"id":10,"parameter_mappings":[],"display":"scalar","entity_id":"BKDzBlQYMhO5wQWhVbytt","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(111, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-14 18:49:55.953+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.show_goal":false,"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(116, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-15 15:25:17.473+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''t1''}\n , {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"table","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":true,"table.cell_column":"Count","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":true,"graph.label_value_frequency":"fit","graph.metrics":[null],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"Gender","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["totalList","totalList4"]},"is_write":false,"parameters":[{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(171, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:18:56.196+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(172, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 09:19:08.383+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[{ $facet: {\n totals: [{$count: \"total\"}, {$addFields: {\"category\": \"Total\"}}],\n ageGroups: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , childsAge: ''$childsAgeInDaysAtDeclaration''\n \n }}\n , {$addFields: {\n par: {$switch:\n {\n branches: [\n {case: {$and: [{$lt: [''$childsAge'', 365]}, {$gte: [''$childsAge'', 0]}] }, then: ''<1''}, \n {case: {$and: [{$lt: [''$childsAge'', 1825]}, {$gte: [''$childsAge'', 365]}] }, then: ''<5''}\n \n ],\n default: ''>5''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , par: ''$par''\n }}\n , {$group: { \n _id: { par: ''$par''}\n , totalCustomer: {$sum: NumberInt(1)}\n }}\n , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.par''\n , ''total'': ''$totalCustomer''\n }}\n \n]}}, {\n $project: {\n mergedArray: {$concatArrays: [\"$totals\", \"$ageGroups\"]}\n }\n }, {$unwind:''$mergedArray''}, { $replaceRoot: { newRoot: \"$mergedArray\" } }, {\n $sort: {\n category: 1\n }\n }]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"c97128fd-562d-db2b-6598-15a6e6d55895","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"03de7e1f-951b-64f3-4e0e-425c6b90b7b5","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"4c0bfdb6-1d4a-98f9-4f61-0832811807fb","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"63ea14da-1bc2-082e-b3f5-28340b8000d0","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(181, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 10:43:38.246+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"query":{"source-table":22,"aggregation":[["count"]],"breakout":[["field",354,null]]},"type":"query"},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.dimensions":["createdAt"],"graph.metrics":["count"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(201, 'Card', 15, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:08:12.815+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"native","name":"Filter date test","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterDate","display-name":"Filterdate","type":"date","default":null}},"query":"[{$project: {foo: ''[[{{filterDate}}]]''}}]","collection":"analyticsRegistrations"},"type":"native"},"id":15,"parameter_mappings":[],"display":"table","entity_id":"1z0T_0BESRBrkEWYBglCm","collection_preview":true,"visualization_settings":{"table.pivot_column":"foo","table.cell_column":"_id"},"is_write":false,"parameters":[{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","type":"date/single","target":["variable",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(205, 'Card', 15, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:11:58.979+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"native","name":"Filter date test","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterDate","display-name":"Filterdate","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="}},"query":"[{$project: {foo: ''[[{{filterDate}}]]''}}]","collection":"analyticsRegistrations"},"type":"native"},"id":15,"parameter_mappings":[],"display":"table","entity_id":"1z0T_0BESRBrkEWYBglCm","collection_preview":true,"visualization_settings":{"table.pivot_column":"foo","table.cell_column":"_id"},"is_write":false,"parameters":[{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","type":"string/=","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(207, 'Card', 15, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:13:28.888+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"native","name":"Filter date test","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterFrom":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterFrom","display-name":"Filterfrom","type":"date","default":null},"filterTo":{"id":"0d4ae775-ae4b-95a3-6342-771cd1b8f66e","name":"filterTo","display-name":"Filterto","type":"date","default":null}},"query":"[{$project: {foo: ''[[{{filterFrom}}]] - [[{{filterTo}}]]''}}]","collection":"analyticsRegistrations"},"type":"native"},"id":15,"parameter_mappings":[],"display":"table","entity_id":"1z0T_0BESRBrkEWYBglCm","collection_preview":true,"visualization_settings":{"table.pivot_column":"foo","table.cell_column":"_id"},"is_write":false,"parameters":[{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","type":"date/single","target":["variable",["template-tag","filterFrom"]],"name":"Filterfrom","slug":"filterFrom"},{"id":"0d4ae775-ae4b-95a3-6342-771cd1b8f66e","type":"date/single","target":["variable",["template-tag","filterTo"]],"name":"Filterto","slug":"filterTo"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(558, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $sort: {\n category: 1\n }\n }\n ]\n ","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"table","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"category","target":["variable",["template-tag","filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(558, 1, 'erEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(559, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"table","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"s', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(559, 1, 'how_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(560, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Filteroffice","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"table","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(560, 1, 'otal"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"date/month-year","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"date/month-year","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(561, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2},"id":11,"parameter_mappings":[],"display":"table","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axi', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(561, 1, 's.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"date/month-year","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(562, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(562, 1, 'axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"date/month-year","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(563, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.show_goal":false,"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(563, 1, 'ag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(564, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"table","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.show_goal":false,"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(564, 1, '-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(565, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.show_goal":false,"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-t', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(565, 1, 'ag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(566, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_setti', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(566, 1, 'ngs":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"date/month-year","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(209, 'Card', 15, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:15:26.281+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"native","name":"Filter date test","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterFrom":{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","name":"filterFrom","display-name":"Filterfrom","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="},"filterTo":{"id":"0d4ae775-ae4b-95a3-6342-771cd1b8f66e","name":"filterTo","display-name":"Filterto","type":"dimension","default":null,"dimension":["field",354,null],"widget-type":"string/="}},"query":"[{$project: {foo: ''[[{{filterFrom}}]] - [[{{filterTo}}]]''}}]","collection":"analyticsRegistrations"},"type":"native"},"id":15,"parameter_mappings":[],"display":"table","entity_id":"1z0T_0BESRBrkEWYBglCm","collection_preview":true,"visualization_settings":{"table.pivot_column":"foo","table.cell_column":"_id"},"is_write":false,"parameters":[{"id":"feb3ffd2-fa2c-0881-9f28-a1b401cb4715","type":"string/=","target":["dimension",["template-tag","filterFrom"]],"name":"Filterfrom","slug":"filterFrom"},{"id":"0d4ae775-ae4b-95a3-6342-771cd1b8f66e","type":"string/=","target":["dimension",["template-tag","filterTo"]],"name":"Filterto","slug":"filterTo"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(217, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:32:02.562+00', SYSTEM_COMBINE_CLOB(558), FALSE, FALSE, NULL), +(218, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:39:30.498+00', SYSTEM_COMBINE_CLOB(559), FALSE, FALSE, NULL), +(220, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 12:41:51.789+00', SYSTEM_COMBINE_CLOB(560), FALSE, FALSE, NULL), +(222, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:42.748+00', SYSTEM_COMBINE_CLOB(561), FALSE, FALSE, NULL), +(223, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:00:51.299+00', SYSTEM_COMBINE_CLOB(562), FALSE, FALSE, NULL), +(225, 'Card', 16, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:06:40.366+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Total Registrations (without native query)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":22,"aggregation":[["count"]]},"database":2},"id":16,"parameter_mappings":[],"display":"scalar","entity_id":"BOot6oon80vLb791-gzQb","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(230, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:02.855+00', SYSTEM_COMBINE_CLOB(563), FALSE, FALSE, NULL), +(231, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:10.749+00', SYSTEM_COMBINE_CLOB(564), FALSE, FALSE, NULL), +(232, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:08:26.98+00', SYSTEM_COMBINE_CLOB(565), FALSE, FALSE, NULL), +(236, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:09:55.075+00', SYSTEM_COMBINE_CLOB(566), FALSE, FALSE, NULL), +(237, 'Card', 16, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:10:28.396+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Total Registrations (without native query)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"query":{"aggregation":[["count"]],"filter":["time-interval",["field",354,null],-1,"year"],"source-table":22},"type":"query"},"id":16,"parameter_mappings":[],"display":"scalar","entity_id":"BOot6oon80vLb791-gzQb","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(567, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_s', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(567, 1, 'ettings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"date/month-year","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(568, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]","collection":"analyticsRegistrations","template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_s', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(568, 1, 'ettings":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"date/month-year","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(569, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"table.columns":[],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":[],"graph.show_goal":false,"graph.show_values":true,"graph.metrics":[null]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(569, 1, 'id":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(570, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(570, 1, '":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(571, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"collection":"analyticsRegistrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"database":2},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(571, 1, '":{"graph.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(572, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","tar', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(572, 1, 'get":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(244, 'Card', 16, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:13:36.431+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Total Registrations (without native query)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"source-table":22},"database":2},"id":16,"parameter_mappings":[],"display":"scalar","entity_id":"BOot6oon80vLb791-gzQb","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(247, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:14:54.833+00', SYSTEM_COMBINE_CLOB(567), FALSE, FALSE, NULL), +(248, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:05.811+00', SYSTEM_COMBINE_CLOB(568), FALSE, FALSE, NULL), +(249, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:15:44.565+00', SYSTEM_COMBINE_CLOB(569), FALSE, FALSE, NULL), +(266, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:00.101+00', SYSTEM_COMBINE_CLOB(570), FALSE, FALSE, NULL), +(267, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-16 13:40:09.121+00', SYSTEM_COMBINE_CLOB(571), FALSE, FALSE, NULL), +(282, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:37:34.14+00', SYSTEM_COMBINE_CLOB(572), FALSE, TRUE, NULL), +(283, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 08:50:07.847+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"beccc634-814a-9420-d087-07b4285b8659","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"9e3a2f1d-031c-0bd1-0818-6efa8b490cfe","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }},\n {\n \"$group\": {\n \"_id\": {\n \"birthOrder\": \"$birthOrder\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"birthOrder\": \"$_id.birthOrder\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"pie.dimension":"birthOrder","pie.metric":"count","graph.dimensions":["birthOrder"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.metrics":["count"]},"is_write":false,"parameters":[{"id":"a666e98b-e623-90ba-d4d8-a871c18b99aa","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"9cf30dcd-6044-2331-bcf2-4542534ad91c","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"1ca050d1-c518-b429-bbd0-d6d252bdfd61","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"beccc634-814a-9420-d087-07b4285b8659","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"9e3a2f1d-031c-0bd1-0818-6efa8b490cfe","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(573, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''birthOrder'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"pie.dimension":"birthOrder","pie.metric":"count","graph.dimensions":["birthOrder"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"category","target":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(573, 1, '"variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(574, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''birthOrder'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"birthOrder\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.series_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#7172AD"}},"graph.dimensions":["birthOrder"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"category","target":["variable",["template-tag","filterEvent"]],"na', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(574, 1, 'me":"Filterevent","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(575, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.series_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#7172AD"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filtereven', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(575, 1, 't","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(576, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [ {gte: [''$mothersAge'', 9.0]}, {lte: [''$mothersAge'', 14.0]}] }, then: ''9-14''},\n {case: {$and: [ {gt: [''$mothersAge'', 14]}, {lte: [''$mothersAge'', 19]}] }, then: ''15-19''},\n {case: {$and: [ {gt: [''$mothersAge'', 19]}, {lte: [''$mothersAge'', 24]}] }, then: ''20-24''},\n {case: {$and: [ {gt: [''$mothersAge'', 24]}, {lte: [''$mothersAge'', 29]}] }, then: ''25-29''},\n {case: {$and: [ {gt: [''$mothersAge'', 29]}, {lte: [''$mothersAge'', 34]}] }, then: ''30-34''},\n {case: {$and: [ {gt: [''$mothersAge'', 34]}, {lte: [''$mothersAge'', 39]}] }, then: ''35-39''},\n {case: {$and: [ {gt: [''$mothersAge'', 39]}, {lte: [''$mothersAge'', 44]}] }, then: ''40-44''},\n {case: {$and: [ {gt: [''$mothersAge'', 44]}, {lte: [''$mothersAge'', 49]}] }, then: ''45-49''},\n {case: {$and: [ {gt: [''$mothersAge'', 49]}, {lte: [''$mothersAge'', 54]}] }, then: ''50-54''},\n {case: {$and: [ {gt: [''$mothersAge'', 54]}, {lte: [''$mothersAge'', 59]}] }, then: ''55-59''},\n {case: {$and: [ {gt: [''$mothersAge'', 59]} ]}, then: ''60+''}\n\n \n\n\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(576, 1, 'native"},"id":20,"parameter_mappings":[],"display":"table","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"table.pivot_column":"Order","table.cell_column":"Count"},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(577, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(577, 1, ':20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"table.pivot_column":"Order","table.cell_column":"Count","graph.dimensions":["Order"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(578, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(578, 1, '"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"table.pivot_column":"Order","table.cell_column":"Count","graph.dimensions":["Order"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(579, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"pie.dimension":"Category","pie.metric":"Count","graph.dimensions":["Educational Attainment","Attainment"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filte', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(579, 1, 'rEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(580, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","gra', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(580, 1, 'ph.series_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#7172AD"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(581, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(581, 1, '83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(582, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(582, 1, '"name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"table.pivot_column":"Order","table.cell_column":"Count","graph.dimensions":["Order"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(583, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"pie.dimension":"Category","pie.metric":"Count","graph.dimensions":["Educational Attainment","Attainment"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(583, 1, ':["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(584, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"pie.dimension":"Category","pie.metric":"Count","graph.dimensions":["Educational Attainment","Attainment"],"graph.show_values":true,"graph.x_axis.axis_enabled":"compact","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(584, 1, 'e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(585, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"pie.dimension":"Category","pie.metric":"Count","graph.dimensions":["Educational Attainment","Attainment"],"graph.show_values":true,"graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.y_axis.auto_range":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filter', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(585, 1, 'Gender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(586, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"row","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"pie.dimension":"Category","pie.metric":"Count","graph.dimensions":["Educational Attainment","Attainment"],"graph.show_values":true,"graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.y_axis.auto_range":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filter', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(586, 1, 'Gender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(587, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"pie.dimension":"Educational Attainment","pie.metric":"Count","graph.dimensions":["Educational Attainment","Attainment"],"graph.show_values":true,"graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.y_axis.auto_range":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["templat', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(587, 1, 'e-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(588, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"mothersAttainment":{"title":"mother"},"fathersAttainment":{"title":"father"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Attainment"]},"is_write":false,"parameter', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(588, 1, 's":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(589, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": \"$_id\"\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": -1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"s', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(589, 1, 'tring/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(284, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:28:20.21+00', SYSTEM_COMBINE_CLOB(573), FALSE, FALSE, NULL), +(285, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:31:08.227+00', SYSTEM_COMBINE_CLOB(574), FALSE, FALSE, NULL), +(286, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:31:47.848+00', SYSTEM_COMBINE_CLOB(575), FALSE, FALSE, NULL), +(287, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 09:56:45.344+00', SYSTEM_COMBINE_CLOB(576), FALSE, TRUE, NULL), +(288, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:14:19.745+00', SYSTEM_COMBINE_CLOB(577), FALSE, FALSE, NULL), +(289, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:18:25.788+00', SYSTEM_COMBINE_CLOB(578), FALSE, FALSE, NULL), +(290, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-19 10:32:35.267+00', SYSTEM_COMBINE_CLOB(579), FALSE, TRUE, NULL), +(302, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:52:36.051+00', SYSTEM_COMBINE_CLOB(580), FALSE, FALSE, NULL), +(303, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:53:22.356+00', SYSTEM_COMBINE_CLOB(581), FALSE, FALSE, NULL), +(304, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:58:12.624+00', SYSTEM_COMBINE_CLOB(582), FALSE, FALSE, NULL), +(305, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 05:59:05.275+00', SYSTEM_COMBINE_CLOB(583), FALSE, FALSE, NULL), +(323, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:57:45.674+00', SYSTEM_COMBINE_CLOB(584), FALSE, FALSE, NULL), +(324, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 06:58:51.449+00', SYSTEM_COMBINE_CLOB(585), FALSE, FALSE, NULL), +(327, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:02:29.825+00', SYSTEM_COMBINE_CLOB(586), FALSE, FALSE, NULL), +(330, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:03:35.831+00', SYSTEM_COMBINE_CLOB(587), FALSE, FALSE, NULL), +(333, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:10:28.973+00', SYSTEM_COMBINE_CLOB(588), FALSE, FALSE, NULL), +(336, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 07:24:45.777+00', SYSTEM_COMBINE_CLOB(589), FALSE, FALSE, NULL), +(351, 'Card', 26, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:34:27.517+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Birth order by mother''s age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrder":["field",346,null]},"aggregation":[["count"]],"breakout":[["expression","MothersAgeGroup"],["expression","BirthOrder"]]},"database":2},"id":26,"parameter_mappings":[],"display":"table","entity_id":"rqIKCYaUJtkwCiLzYcfii","collection_preview":true,"visualization_settings":{"table.pivot":true,"table.pivot_column":"MothersAgeGroup","table.cell_column":"count"},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(352, 'Card', 26, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:46:50.763+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Birth order by mother''s age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"type":"query"},"id":26,"parameter_mappings":[],"display":"table","entity_id":"rqIKCYaUJtkwCiLzYcfii","collection_preview":true,"visualization_settings":{"table.pivot":true,"table.pivot_column":"BirthOrderGroup","table.cell_column":"count"},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(353, 'Card', 26, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 08:47:39.364+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Birth order by mother''s age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"query":{"source-table":22,"expressions":{"MothersAgeGroup":["case",[[["<",["field",350,null],14],"9-14"],[["<",["field",350,null],19],"15-19"],[["<",["field",350,null],24],"20-24"],[["<",["field",350,null],29],"25-29"],[["<",["field",350,null],34],"30-34"],[["<",["field",350,null],39],"35-39"],[["<",["field",350,null],44],"40-44"],[["<",["field",350,null],49],"45-49"],[["<",["field",350,null],54],"50-54"],[["<",["field",350,null],59],"55-59"],[[">",["field",350,null],59],"60+"]]],"BirthOrderGroup":["case",[[["=",["field",346,null],1],"1"],[["=",["field",346,null],2],"2"],[["=",["field",346,null],3],"3"],[["=",["field",346,null],4],"4"],[["=",["field",346,null],5],"5"],[[">",["field",346,null],6],"6+"]]]},"aggregation":[["count"]],"breakout":[["expression","BirthOrderGroup"],["expression","MothersAgeGroup"]]},"type":"query"},"id":26,"parameter_mappings":[],"display":"table","entity_id":"rqIKCYaUJtkwCiLzYcfii","collection_preview":true,"visualization_settings":{"table.pivot":true,"table.pivot_column":"BirthOrderGroup","table.cell_column":"count","table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(359, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:21:07.333+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Place of birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":22,"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional doctors"]]]},"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"database":2},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(364, 'Card', 28, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:26:38.503+00', '{"description":null,"archived":false,"collection_position":null,"table_id":68,"database_id":2,"enable_embedding":false,"collection_id":17,"query_type":"query","name":"Corrections by type","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":68,"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial order"]]]},"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"database":2},"id":28,"parameter_mappings":[],"display":"pie","entity_id":"__hZ2xD-7VCBJ7mLFxB9Y","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(369, 'Card', 29, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 09:32:38.019+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":15,"query_type":"query","name":"Live Births by Type of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"query":{"source-table":22,"expressions":{"TypeOfBirth":["case",[[["=",["field",342,null],"SINGLE"],"Single"],[["=",["field",342,null],"TWIN"],"Twin"],[["=",["field",342,null],"TRIPLET"],"Triplet"],[["=",["field",342,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"type":"query"},"id":29,"parameter_mappings":[],"display":"pie","entity_id":"GOqql9fnmIgyeOChWso6x","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(590, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars for last 30 days","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(590, 1, '":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(591, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["f', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(591, 1, 'ield",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(592, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(592, 1, ' then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"mothersAttainment":{"title":"mother"},"fathersAttainment":{"title":"father"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Attainment"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(593, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(593, 1, '"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(594, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Percentage"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"fi', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(594, 1, 'lterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(595, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(595, 1, '"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(596, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }},\n {\n $limit: 20\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(596, 1, '"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(597, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 20\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(597, 1, '"dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(598, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(598, 1, '"dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(599, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"thisday"}}},"database":2},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["di', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(599, 1, 'mension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"thisday"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(600, 0, '{"description":"This leaderboard is showing the result of past 30 days","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(600, 1, '"dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(601, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Live births registered by age of child v2","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native"},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","co', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(601, 1, 'llection_preview":true,"visualization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.series_order_dimension":null,"graph.x_axis.title_text":"Category","graph.metrics":["total"],"graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"color":"#F9D45C","title":"Over age 5"},"12":{"color":"#A989C5","title":"Under age 1"},"23":{"title":"Total"}},"graph.dimensions":["category","total"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(602, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native"},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","collection_preview":tru', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(602, 1, 'e,"visualization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.series_order_dimension":null,"graph.x_axis.title_text":"Category","graph.metrics":["total"],"graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"color":"#F9D45C","title":"Over age 5"},"12":{"color":"#A989C5","title":"Under age 1"},"23":{"title":"Total"}},"graph.dimensions":["category","total"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(603, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"analyticsRegistrations"},"type":"native"},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","collection_preview":tru', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(603, 1, 'e,"visualization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.series_order_dimension":null,"graph.x_axis.title_text":"Category","graph.metrics":["total"],"graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"title":"Over age 5","color":"#509EE3"},"12":{"title":"Under age 1","color":"#509EE3"},"23":{"color":"#F9D45C","title":"Total"}},"graph.dimensions":["category","total"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(394, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:04:17.126+00', SYSTEM_COMBINE_CLOB(590), FALSE, FALSE, NULL), +(395, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:12:01.212+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"Certificates issued","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":22,"aggregation":[["count"]],"expressions":{"Status":["case",[[["=",["field",651,null],"REGISTERED"],"Not Certified"],[["=",["field",651,null],"CERTIFIED"],"Certified"]]]},"breakout":[["expression","Status"]]},"database":2},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(402, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 10:52:54.697+00', SYSTEM_COMBINE_CLOB(591), FALSE, FALSE, NULL), +(403, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:07:50.598+00', SYSTEM_COMBINE_CLOB(592), FALSE, FALSE, NULL), +(404, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:08:29.56+00', SYSTEM_COMBINE_CLOB(593), FALSE, FALSE, NULL), +(405, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:09:37.642+00', SYSTEM_COMBINE_CLOB(594), FALSE, FALSE, NULL), +(406, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:03.401+00', SYSTEM_COMBINE_CLOB(595), FALSE, FALSE, NULL), +(407, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:10:24.529+00', SYSTEM_COMBINE_CLOB(596), FALSE, FALSE, NULL), +(408, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:13.446+00', SYSTEM_COMBINE_CLOB(597), FALSE, FALSE, NULL), +(409, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 11:11:32.817+00', SYSTEM_COMBINE_CLOB(598), FALSE, FALSE, NULL), +(414, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:22:44.277+00', SYSTEM_COMBINE_CLOB(599), FALSE, FALSE, NULL), +(415, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-20 12:23:27.126+00', SYSTEM_COMBINE_CLOB(600), FALSE, FALSE, NULL), +(419, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:21:48.04+00', SYSTEM_COMBINE_CLOB(601), FALSE, TRUE, NULL), +(420, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:22:41.144+00', SYSTEM_COMBINE_CLOB(602), FALSE, FALSE, NULL), +(421, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:24:43.811+00', SYSTEM_COMBINE_CLOB(603), FALSE, FALSE, NULL), +(430, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:07.284+00', '{"description":null,"archived":false,"collection_position":null,"table_id":22,"database_id":2,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Place of birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",338,null],"BUS"],"Bus"],[["=",["field",338,null],"CAR_TAXI"],"Taxi"],[["=",["field",338,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",338,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",338,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",338,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",538,null],"Birth"],["time-interval",["field",354,null],"current","year"]],"source-table":22},"database":2},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(431, 'Card', 28, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 07:32:38.954+00', '{"description":null,"archived":false,"collection_position":null,"table_id":68,"database_id":2,"enable_embedding":false,"collection_id":17,"query_type":"query","name":"Corrections by type","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]],"expressions":{"ReasonForCorrection":["case",[[["=",["field",617,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",617,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",650,null],"Birth"],["time-interval",["field",640,null],"current","year"]],"source-table":68},"database":2},"id":28,"parameter_mappings":[],"display":"pie","entity_id":"__hZ2xD-7VCBJ7mLFxB9Y","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(604, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"count","graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","type":"dat', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(604, 1, 'e/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(605, 0, '{"description":"This widget will show the result of past 30 days (default)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard by Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","targe', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(605, 1, 't":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(606, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Registrations"],"graph.series_order":null,"table.pivot_column":"count","graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"bb02d443-ba05-0c59-5887-eb51b5e72', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(606, 1, 'b90","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(607, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"714d5902-296d-8cee-ed3c-103c588a855a","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"count","graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"714d5902-296d-8cee-ed3c-103c588a855a","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"90028ce9-3f5d-246a-8b0e-9221adb5128a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"8f889b01-8027-df24-1000-aa0e7cd2123e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1b5d8679-3ac1-295e-94c5-709031bb6279","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"bb02d443-ba05-0c59-5887-eb51b5e72b90","type":"dat', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(607, 1, 'e/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(438, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:50:07.484+00', SYSTEM_COMBINE_CLOB(604), FALSE, FALSE, NULL), +(439, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:51:09.204+00', SYSTEM_COMBINE_CLOB(605), FALSE, FALSE, NULL), +(440, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:08.766+00', SYSTEM_COMBINE_CLOB(606), FALSE, FALSE, NULL), +(441, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:54:51.594+00', SYSTEM_COMBINE_CLOB(607), FALSE, FALSE, NULL), +(442, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:57:18.951+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"registrations\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"registrations\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.registrations'', 100]}, ''$totalCount'']}\n , ''Registrations'': \"$allInfo.registrations\"\n \n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Registrations"],"graph.series_order":null,"table.pivot_column":"count","series_settings":{"Registrations":{"show_series_values":true}},"graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"56bcad79-0f63-fedb-353f-06d76542e554","type":"category","target":["variable",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"44beaa9e-5267-84ba-f544-6122407db01b","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(443, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 10:58:34.876+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"56bcad79-0f63-fedb-353f-06d76542e554","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"44beaa9e-5267-84ba-f544-6122407db01b","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","name":"filterOffice","display-name":"Filteroffice","type":"text"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Registrations'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n }}\n]","collection":"analyticsRegistrations"},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Registrations"],"graph.series_order":null,"table.pivot_column":"count","series_settings":{"Registrations":{"color":"#509EE3","show_series_values":true}},"graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"56bcad79-0f63-fedb-353f-06d76542e554","type":"category","target":["variable",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"1db3e4d1-30e4-b363-17a0-da2e6a738d96","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"44beaa9e-5267-84ba-f544-6122407db01b","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"cc89381c-80b2-8721-6c42-64b9ac1f3932","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"2b1d42f4-11a7-0113-3a30-70ed4b8ac7ae","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(608, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null}}},"database":2},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"count","series_settings":{"Registrations":{"color":"#509EE3","show_series_values":true}},"graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(608, 1, '":"filterState"},{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(609, 0, '{"description":"This widget will show the result of past 30 days (default)","archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard of Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",352,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/relative","default":"past30days"}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","targe', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(609, 1, 't":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate","default":"past30days"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(610, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromString: { dateString: ''$date''}} \n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsRegistrations"},"type":"native"},"id":13,"parameter_mappings":[', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(610, 1, '],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"778705c5-e02b-4b7e-1379-c87c41870dd5","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(611, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","name":"filterGender","display-name":"Filtergender","type":"text"},"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"text"},"filterEvent":{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]},\n test: ''[[ {{ filterDate }} ]]''\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dime', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(611, 1, 'nsion":"state","table.pivot_column":"_id","table.cell_column":"percentage"},"is_write":false,"parameters":[{"id":"9e84f2a4-2b4c-dc2a-6529-b508bbeedb40","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","type":"category","target":["variable",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"2e51c7f1-4ab9-fe06-d4d4-0b1ecdc4daf1","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"c7c17369-6fda-f065-f3c6-3270b4494260","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(612, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"_id","table.cell_column":"percentage"},"is_write":false,"parameters":[{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","type":"date/range","target":["dimension",["template-tag","filterDate"]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(612, 1, '],"name":"Filterdate","slug":"filterDate"},{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(613, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n state: ''$_id.name'',\n percentage: {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"_id","table.cell_column":"percentage"},"is_write":false,"parameters":[{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","type":"date/range","target":["dimension",["template-tag","filterDate"]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(613, 1, '],"name":"Filterdate","slug":"filterDate"},{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(444, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-21 11:04:42.033+00', SYSTEM_COMBINE_CLOB(608), FALSE, FALSE, NULL), +(445, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 08:17:00.357+00', SYSTEM_COMBINE_CLOB(609), FALSE, FALSE, NULL), +(453, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 12:03:42.573+00', SYSTEM_COMBINE_CLOB(610), FALSE, FALSE, NULL), +(457, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:45:51.027+00', SYSTEM_COMBINE_CLOB(611), FALSE, FALSE, NULL), +(458, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:18.849+00', SYSTEM_COMBINE_CLOB(612), FALSE, FALSE, NULL), +(459, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:50:35.114+00', SYSTEM_COMBINE_CLOB(613), FALSE, FALSE, NULL), +(462, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 13:58:31.47+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"_id","table.cell_column":"percentage"},"is_write":false,"parameters":[{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(614, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2},"id":13,"parameter_mappings":[],"display":"table","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualizatio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(614, 1, 'n_settings":{"table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(615, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateToString: {\n date: {$dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }}}\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualizatio', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(615, 1, 'n_settings":{"table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(616, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsPopulationEstimatesPerDay","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}}},"database":2},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(616, 1, 'table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(617, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(617, 1, 'table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(618, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":13,"parameter_mappings":[],"display":"scalar","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(618, 1, '"table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(619, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(619, 1, 'table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(620, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",571,null],"widget-type":"date/range","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",572,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"analyticsPopulationEstimatesPerDay"},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"_id","table.cell_column":"percentage"},"is_write":false,"parameters":[{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","type":"date/range","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f884c63f-cae1', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(620, 1, '-253b-a66a-e9d1284f25b2","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(621, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(621, 1, 'series_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#7172AD"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(622, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11",', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(622, 1, '"name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"table.pivot_column":"Order","table.cell_column":"Count","graph.dimensions":["Order"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(623, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(623, 1, ' then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"mothersAttainment":{"title":"mother"},"fathersAttainment":{"title":"father"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Attainment"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(624, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"analyticsRegistrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["fiel', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(624, 1, 'd",354,null],"widget-type":"date/month-year","default":null}}},"database":2},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(625, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":2,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":2,"native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",336,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",538,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",340,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",339,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",354,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"analyticsRegistrations"},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(625, 1, 'series_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#7172AD"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(626, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_colu', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(626, 1, 'mn":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(627, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n , mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id.mothersLiteracy\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , \"count\": \"$qty\"\n }},\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(627, 1, ',"widget-type":"date/month-year","default":null}}},"type":"native"},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(628, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''9-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Count\": -1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(628, 1, 'erState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"table.pivot_column":"Order","table.cell_column":"Count","graph.dimensions":["Order"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(629, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(629, 1, ' then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Attainment'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Attainment\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"mothersAttainment":{"title":"mother"},"fathersAttainment":{"title":"father"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Attainment"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(630, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.series_or', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(630, 1, 'der_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#7172AD"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(631, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterDate":{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f884c63f-cae1-253b-a66a-e9d1284f25b2","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n }, \n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: \"$date\" },\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n \n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$_id.date\", { $dateToString: { format: \"%Y-%m-%d\", date: \"$$date\" }} ] },\n { $eq: [ \"$_id.stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: {name: \"$name\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n }}\n \n]","collection":"populationEstimatesPerDay"},"database":3},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"_id","table.cell_column":"percentage"},"is_write":false,"parameters":[{"id":"00f44aca-d69e-e96d-fe06-3a75520a7a56","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f884c63f-cae1-253b-a6', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(631, 1, '6a-e9d1284f25b2","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(463, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:22.347+00', SYSTEM_COMBINE_CLOB(614), FALSE, FALSE, NULL), +(464, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 14:02:31.999+00', SYSTEM_COMBINE_CLOB(615), FALSE, FALSE, NULL), +(465, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-22 17:41:43.058+00', SYSTEM_COMBINE_CLOB(616), FALSE, FALSE, NULL), +(470, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:33.917+00', SYSTEM_COMBINE_CLOB(617), FALSE, FALSE, NULL), +(471, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:45.567+00', SYSTEM_COMBINE_CLOB(618), FALSE, FALSE, NULL), +(472, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:05:53.406+00', SYSTEM_COMBINE_CLOB(619), FALSE, FALSE, NULL), +(473, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 09:39:38.712+00', SYSTEM_COMBINE_CLOB(620), FALSE, FALSE, NULL), +(476, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:30:38.65+00', SYSTEM_COMBINE_CLOB(621), FALSE, FALSE, NULL), +(477, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:17.355+00', SYSTEM_COMBINE_CLOB(622), FALSE, FALSE, NULL), +(478, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:37.019+00', SYSTEM_COMBINE_CLOB(623), FALSE, FALSE, NULL), +(479, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:32:53.796+00', SYSTEM_COMBINE_CLOB(624), FALSE, FALSE, NULL), +(485, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-23 11:37:13.288+00', SYSTEM_COMBINE_CLOB(625), FALSE, FALSE, NULL), +(488, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:12:04.156+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"Certificates issued","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"type":"query"},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(489, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:14:18.341+00', SYSTEM_COMBINE_CLOB(626), FALSE, FALSE, NULL), +(490, 'Card', 28, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:16:49.4+00', '{"description":null,"archived":false,"collection_position":null,"table_id":71,"database_id":3,"enable_embedding":false,"collection_id":17,"query_type":"query","name":"Corrections by type","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"database":3},"id":28,"parameter_mappings":[],"display":"pie","entity_id":"__hZ2xD-7VCBJ7mLFxB9Y","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(491, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:18:49.961+00', SYSTEM_COMBINE_CLOB(627), FALSE, FALSE, NULL), +(492, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:20:09.525+00', SYSTEM_COMBINE_CLOB(628), FALSE, FALSE, NULL), +(493, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:21:28.929+00', SYSTEM_COMBINE_CLOB(629), FALSE, FALSE, NULL), +(494, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:22:57.541+00', SYSTEM_COMBINE_CLOB(630), FALSE, FALSE, NULL), +(495, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:24:24.266+00', SYSTEM_COMBINE_CLOB(631), FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(632, 0, '{"description":"Those who were under 1 year age at the time of registration","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 1 year","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":2,"parameter_mappings":[],"display":"bar","entity_id":"nbbCJ21ti500TiOUVV2tq","collection_preview":true,"visualization_settings":{"table.columns":[{"name":"Gender","fieldRef":["field","Gender",{"base-type":"type/Text"}],"enabled":true},{"name":"Count","fieldRef":["field","Count",{"base-type":"type/Integer"}],"enabled":true},{"name":"Percentage","fieldRef":["field","Percentage",{"base-type":"type/Float"}],"enabled":true}],"table.pivot_column":"count","table.cell_column":"Gender","graph.dimensions":["Gender"],"graph.series_order_dimension":null,"graph.series_order":null,"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"cb98e793-8e53-1c97-650e-a02494c83f92","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"5761782f-224e-a408-7ca4-53e2c8675c1a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"b37cbcc8-2f00-7cbc-7fe7-f1bb06d7360b","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"afb955cd-8d16-cefa-b646-e9c72bfa71cf","type":"string/=","target":["dimension",["template-', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(632, 1, 'tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(496, 'Card', 29, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:25:22.889+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":15,"query_type":"query","name":"Live Births by Type of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":70,"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"order-by":[["desc",["aggregation",0,null]]]},"database":3},"id":29,"parameter_mappings":[],"display":"pie","entity_id":"GOqql9fnmIgyeOChWso6x","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(497, 'Card', 2, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:26:26.823+00', SYSTEM_COMBINE_CLOB(632), FALSE, FALSE, NULL), +(498, 'Card', 4, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:27:42.103+00', '{"description":"Those who were under 1 year age at the time of registration (in bar chart)","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Age under 5 years","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 1825\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"20e2c029-3679-018c-24d6-484d76a11d32","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":4,"parameter_mappings":[],"display":"bar","entity_id":"fln_xwOYWPvA6slmtJM8d","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"20e2c029-3679-018c-24d6-484d76a11d32","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"91aa0f89-bfc5-64ee-f07e-2f7b7e7ef6d9","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"00b3ab49-d6ce-c6cf-ae25-9b472e0ba093","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"accbacb5-9d7d-c299-3a26-20dd34d7f29e","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(633, 0, '{"description":"This widget will show the result of past 30 days (default)","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard of Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(633, 1, ',["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(634, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterGender":{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"d700b567-972d-4291-274e-1fb46830afc1","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''Under 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''Under 5''\n }\n ],\n default: ''Over 5''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''Under 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } }\n]"},"type":"native"},"id":11,"parameter_mappings":[],"display":"bar","entity_id":"g6QTDGvlih9yRnNCJqvy9","collection_preview":true,"visualization_settings":{"graph', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(634, 1, '.show_values":true,"graph.x_axis.labels_enabled":false,"table.cell_column":"total","graph.series_order_dimension":null,"graph.y_axis.labels_enabled":false,"graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.y_axis.axis_enabled":true,"table.column_formatting":[{"columns":[],"type":"single","operator":"=","value":"","color":"#509EE3","highlight_row":false}],"graph.label_value_formatting":"auto","graph.series_order":null,"table.pivot_column":"category","column_settings":{"[\"name\",\"Total\"]":{"show_mini_bar":false}},"graph.dimensions":["category"]},"is_write":false,"parameters":[{"id":"46d35bb0-9f4f-a718-3a30-c67b33ebfbbd","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"1e389631-be8c-fe8d-ce92-18066d89fb39","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"ba70e3f4-7b8e-02e5-2762-8e2174e0b651","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"d700b567-972d-4291-274e-1fb46830afc1","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"ea45ef14-a48c-031a-9105-1d97f9a69f69","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(635, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n },\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 365] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ]\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","collection":"registrations"},"database":3},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","collection_preview":true,"visual', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(635, 1, 'ization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.series_order_dimension":null,"graph.x_axis.title_text":"Category","graph.metrics":["total"],"graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"title":"Over age 5","color":"#509EE3"},"12":{"title":"Under age 1","color":"#509EE3"},"23":{"color":"#F9D45C","title":"Total"}},"graph.dimensions":["category","total"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(636, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"count","series_settings":{"Registrations":{"color":"#509EE3","show_series_values":true}},"graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filter', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(636, 1, 'State"},{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(499, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:29:03.007+00', SYSTEM_COMBINE_CLOB(633), FALSE, FALSE, NULL), +(500, 'Card', 11, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:30:04.231+00', SYSTEM_COMBINE_CLOB(634), FALSE, FALSE, NULL), +(501, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:31:02.445+00', SYSTEM_COMBINE_CLOB(635), FALSE, FALSE, NULL), +(502, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:31:53.665+00', SYSTEM_COMBINE_CLOB(636), FALSE, FALSE, NULL), +(503, 'Card', 10, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:32:36.044+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Total Registrations","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$match: {\n $and: [\n {_id: {$ne: null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {$group: { \n _id: {}\n , totalCount: {$sum: NumberInt(1)}\n }} \n , {$project: { \n _id : NumberInt(0)\n , totalRegistrations: \"$totalCount\"\n }}\n]","collection":"registrations"},"database":3},"id":10,"parameter_mappings":[],"display":"scalar","entity_id":"BKDzBlQYMhO5wQWhVbytt","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[{"id":"053e22d6-e6e4-b616-8a72-cd33a1476315","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cda8c18e-0863-d59e-4846-e6622917d67e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"65249c37-7695-8cb3-8e07-7083a1b456a4","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"eefc749d-e0cc-e166-a295-d9c52e783c05","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(504, 'Card', 8, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:33:14.279+00', '{"description":"Those who registered after 1 year of birth","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Delayed Birth Registration","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gte\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":8,"parameter_mappings":[],"display":"bar","entity_id":"MkeDZBr_8kshqVAdiACxv","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"3bffb6db-9e95-50fa-12fd-dda03857f422","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"85e9c397-723a-65c1-df67-4172fbdeea93","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"99ca6028-9f6d-7549-0ab6-660eba6323ef","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"1e669469-e672-c46e-49f4-30efe8cd1191","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(505, 'Card', 7, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:33:45.388+00', '{"description":"Those who registered between 30 days and 1 year of birth","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Late Birth Registration","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$gt\": 30, \"$lt\": 365\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterGender":{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":7,"parameter_mappings":[],"display":"bar","entity_id":"Zzaq5dWSAeXhNl-dh1vAY","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"5d7a6d00-7f98-e2d4-8095-e0704b459c5d","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8b68eed9-d27c-7ecd-8a68-85307b3de991","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"83f2c880-2d8a-7f8f-85be-dd41982224fb","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"12a7eee1-4c1a-8682-c515-6bcc366d171b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(506, 'Card', 5, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:34:20.252+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Total Birth Registered","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterGender":{"id":"29d3350d-d408-b8fa-0408-459134efb248","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]"},"type":"native"},"id":5,"parameter_mappings":[],"display":"bar","entity_id":"xpgHA2VNSp-rFzEMvXEW-","collection_preview":true,"visualization_settings":{"graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"29d3350d-d408-b8fa-0408-459134efb248","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"d6d97d15-a9aa-9fc3-4bb7-5a09703a9c4f","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"4af39868-00c9-9c02-3886-4c42abca9e5e","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92bbbad3-c4b7-10cb-93f8-5483f92ce1f6","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(507, 'Card', 6, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:34:51.02+00', '{"description":"Those who were registered within 30 days of birth","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":5,"query_type":"native","name":"Within legally stipulated period","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterGender":{"id":"17df9448-b493-4181-215b-67b245b002a0","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ed14456d-7b78-9730-8a38-240630157985","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n \"childsAgeInDaysAtDeclaration\": {\n \"$lte\": 30\n }\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]"},"type":"native"},"id":6,"parameter_mappings":[],"display":"bar","entity_id":"lyVkSLROwXmq-KGRr307r","collection_preview":true,"visualization_settings":{"table.pivot_column":"Gender","table.cell_column":"Count","graph.dimensions":["Gender"],"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"17df9448-b493-4181-215b-67b245b002a0","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ed14456d-7b78-9730-8a38-240630157985","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"5bd8f8bc-c416-c538-b008-7d0e52275d91","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8dfa9d7c-05f3-d445-6a7d-03582599bb28","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(508, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 10:35:53.991+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Place of birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"source-table":70,"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]]},"type":"query"},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(637, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"analyticsRegistrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"tabl', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(637, 1, 'e.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(638, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: { $dateFromParts: {\n year: { $add: [ { $year: \"$date\" }, 1 ] },\n month: { $month: \"$date\" },\n day: { $dayOfMonth: \"$date\" }\n }\n }\n }\n },\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }}, \n {\n $lookup: {\n from: \"registrations\",\n let: { name: \"$name\", date: {$dateToString: {date: \"$date\" }}},\n as: \"registrations\",\n pipeline: [\n {$group: {\n _id: { \n date: { $dateToString: { format: \"%Y-%m-%d\", date: \"$createdAt\" } }, \n stateName: \"$stateName\"\n },\n total: { $sum: 1 }\n }},\n {$addFields:{stateName: ''$_id.stateName'', date: {$dateToString: { date: { $dateFromString: { dateString: ''$_id.date''}}}}}},\n {\n $match:\n {\n $expr:\n {\n $and:\n [\n { $eq: [ \"$date\", \"$$date\" ] },\n { $eq: [ \"$stateName\", \"$$name\" ] }\n ]\n }\n }\n } \n ] \n }\n },\n\n {$addFields: {\n totalRegistrations: {\n $reduce: {\n input: \"$registrations\",\n initialValue: 0,\n in: { $add: [ \"$$value\", \"$$this.total\" ] }\n } \n \n } \n }},\n{$addFields: {estimate: ''$estimate.estimatedNumberOfBirths''}},\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum:''$estimatedNumberOfBirths'' }\n }\n },\n {$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n } \n }}, \n {$project: {_id: false, percentage: ''$percentage''}} \n]","collection":"populationEstimatesPerDay"},"database":3},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_c', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(638, 1, 'olumn":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(639, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterEvent":{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",659,null],"widget-type":"string/=","default":null},"filterGender":{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","name":"filterGender","display-name":"Filtergender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterDate":{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null}},"query":"[\n {\n $addFields: {\n date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }\n }\n },\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterGender }} ]]\n [[ {{ filterDate }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n },\n {\n $lookup: {\n from: ''registrations'',\n let: {\n name: ''$name'',\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$date'' } }\n },\n as: ''registrations'',\n pipeline: [\n {\n $addFields: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } }\n }\n },\n {\n $match: {\n $expr: {\n $and: [\n { $eq: [''$date'', ''$$date''] },\n { $eq: [''$stateName'', ''$$name''] }\n ]\n }\n }\n },\n {\n $group: {\n _id: {\n date: {\n $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' }\n },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { stateName: ''$_id.stateName'' } }\n ]\n }\n },\n\n {\n $addFields: {\n totalRegistrations: {\n $reduce: {\n input: ''$registrations'',\n initialValue: 0,\n in: { $add: [''$$value'', ''$$this.total''] }\n }\n }\n }\n },\n { $addFields: { estimate: ''$estimate.estimatedNumberOfBirths'' } },\n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }\n }\n },\n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } }\n]\n","collection":"populationEstimatesPerDay"},"database":3},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"545955ab-f6ec-0de1-3f4e-ce9e50e91e82","type":"string/=","target":["dimension",["template-tag","filterEvent"]]', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(639, 1, ',"name":"Event","slug":"filterEvent"},{"id":"63587bed-9b53-1d2a-5396-317e766e7de8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"92951985-5ced-b397-b9b6-ea5a04ef29d5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"fcf90832-e5e8-d1f2-86bf-4601339adab5","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(513, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:13:45.011+00', SYSTEM_COMBINE_CLOB(637), FALSE, FALSE, NULL), +(520, 'Card', 16, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:34:27.868+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Total Registrations (without native query)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":70,"aggregation":[["count"]]},"database":3},"id":16,"parameter_mappings":[],"display":"scalar","entity_id":"BOot6oon80vLb791-gzQb","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(521, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:40:47.616+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"source-table":70,"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],"current","year"]],"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]]},"type":"query"},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.dimensions":["createdAt"],"graph.metrics":["count"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(524, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 11:45:15.943+00', SYSTEM_COMBINE_CLOB(638), FALSE, FALSE, NULL), +(525, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 12:18:27.505+00', SYSTEM_COMBINE_CLOB(639), FALSE, FALSE, NULL), +(526, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:36:03.704+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"text"}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","collection":"populationEstimatesPerDay"},"database":3},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","type":"category","target":["variable",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(527, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:19.524+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"populationEstimatesPerDay"},"database":3},"id":9,"parameter_mappings":[],"display":"table","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(528, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:40:45.71+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3},"id":9,"parameter_mappings":[],"display":"table","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(529, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:28.079+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":9,"parameter_mappings":[],"display":"table","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(530, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:46:50.75+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(531, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2022-12-29 13:51:15.025+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_column":"percentage","table.cell_column":"foo","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"7e3afad2-42a4-9a14-5b31-682bb7d61ac2","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"1f3f4237-bceb-1188-a732-80eea58169b8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(539, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:07:53.191+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.dimensions":["createdAt"],"graph.metrics":["count"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(540, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:10:26.732+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"day"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_trendline":false,"graph.show_values":false,"graph.x_axis.axis_enabled":true,"graph.x_axis.title_text":"Over Time","graph.metrics":["count"],"column_settings":{"[\"ref\",[\"field\",677,null]]":{"date_abbreviate":true}},"graph.x_axis.scale":"timeseries","graph.dimensions":["createdAt"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(541, 'Card', 32, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:30:25.481+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"query","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["desc",["aggregation",0,null]]],"limit":10},"type":"query"},"id":32,"parameter_mappings":[],"display":"row","entity_id":"Ja4C9jmYDwEnYTid4pLzA","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"us_states","graph.dimensions":["stateName"],"graph.metrics":["count"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL), +(542, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 10:39:47.887+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State (%)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(640, 0, '{"description":"","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard of Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"database":3},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"fi', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(640, 1, 'lterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(641, 0, '{"description":"","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard of Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"type":"native"},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"f', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(641, 1, 'ilterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(543, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:30.221+00', SYSTEM_COMBINE_CLOB(640), FALSE, FALSE, NULL), +(544, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:20:41.435+00', SYSTEM_COMBINE_CLOB(641), FALSE, FALSE, NULL), +(545, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:31:41.215+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Filterdate","type":"text"},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Filtergender","type":"text"},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Filterevent","type":"text"},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"Filterstate","type":"text"},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Filteroffice","type":"text"}}},"database":3},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"graph.dimensions":["State Name"],"graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"category","target":["variable",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"category","target":["variable",["template-tag","filterGender"]],"name":"Filtergender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"category","target":["variable",["template-tag","filterEvent"]],"name":"Filterevent","slug":"filterEvent"},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"category","target":["variable",["template-tag","filterOffice"]],"name":"Filteroffice","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, TRUE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(546, 'Card', 32, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:32:03.235+00', '{"description":null,"archived":true,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"query","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["desc",["aggregation",0,null]]],"limit":10},"type":"query"},"id":32,"parameter_mappings":[],"display":"row","entity_id":"Ja4C9jmYDwEnYTid4pLzA","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"us_states","graph.dimensions":["stateName"],"graph.metrics":["count"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(547, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:33:36.306+00', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"graph.dimensions":["State Name"],"graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(642, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(642, 1, 'erState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"table.pivot_column":"Order","table.cell_column":"Count","graph.dimensions":["Order"],"graph.x_axis.title_text":"Age","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(643, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(643, 1, ' {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"mothersAttainment":{"title":"mother"},"fathersAttainment":{"title":"father"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Relationship"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(644, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"graph.dimensions":["State Name"],"graph.show_values":true,"graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":fa', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(644, 1, 'lse,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(645, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }}\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"fi', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(645, 1, 'lterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(646, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(646, 1, 'display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(647, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(647, 1, 'n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(648, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(648, 1, '-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","collection_preview":true,"visualization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.x_axis.labels_enabled":false,"graph.series_order_dimension":"total","stackable.stack_display":"bar","graph.x_axis.title_text":"Category","graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.label_value_formatting":"auto","graph.series_order":[{"key":"20,085","color":"#7172AD","enabled":true,"name":"20,085"},{"key":"17,956","color":"#F9D45C","enabled":true,"name":"17,956"},{"key":"20,082","color":"#F2A86F","enabled":true,"name":"20,082"},{"key":"3","color":"#EF8C8C","enabled":true,"name":"3"},{"key":"2,129","color":"#98D9D9","enabled":true,"name":"2,129"}],"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"title":"Over age 5","color":"#509EE3"},"12":{"title":"Under age 1","color":"#509EE3"},"23":{"color":"#F9D45C","title":"Total"},"20,085":{"axis":null}},"graph.dimensions":["category","total"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(649, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 10\n }\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"na', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(649, 1, 'me":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(548, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 11:54:15.873+00', SYSTEM_COMBINE_CLOB(642), FALSE, FALSE, NULL), +(549, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 12:10:26.951+00', SYSTEM_COMBINE_CLOB(643), FALSE, FALSE, NULL), +(558, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:24:30.824+00', SYSTEM_COMBINE_CLOB(644), FALSE, FALSE, NULL), +(559, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:25:15.18+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"% of Total Registrations Certified","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"source-table":70,"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"aggregation":[["count"]],"breakout":[["expression","Status"]]},"type":"query"},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(560, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:27:14.017+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Place of birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(561, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:45:39.039+00', SYSTEM_COMBINE_CLOB(645), FALSE, FALSE, NULL), +(562, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:48:01.01+00', SYSTEM_COMBINE_CLOB(646), FALSE, FALSE, NULL), +(563, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-24 13:49:46.42+00', SYSTEM_COMBINE_CLOB(647), FALSE, FALSE, NULL), +(568, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:30:28.341+00', SYSTEM_COMBINE_CLOB(648), FALSE, FALSE, NULL), +(569, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 07:42:00.381+00', SYSTEM_COMBINE_CLOB(649), FALSE, FALSE, NULL), +(573, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:12.734+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query"},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_trendline":false,"graph.show_values":false,"graph.x_axis.axis_enabled":true,"graph.x_axis.title_text":"Over Time","graph.metrics":["count"],"column_settings":{"[\"ref\",[\"field\",677,null]]":{"date_abbreviate":true}},"graph.x_axis.scale":"timeseries","graph.dimensions":["createdAt"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(650, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOf', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(650, 1, 'fice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(651, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(651, 1, '-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","collection_preview":true,"visualization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.x_axis.labels_enabled":false,"graph.series_order_dimension":null,"stackable.stack_display":"bar","graph.x_axis.title_text":"Category","graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.label_value_formatting":"auto","graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"title":"Over age 5","color":"#509EE3"},"12":{"title":"Under age 1","color":"#509EE3"},"23":{"color":"#F9D45C","title":"Total"},"20,085":{"axis":null},"total":{"color":"#8A5EB0"}},"graph.dimensions":["category"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(652, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"count","series_settings":{"Registrations":{"color":"#509EE3","show_series_values":true},"Count":{"color":"#69C8C8"}},"graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","type":"string/=","target":["dimension",["template-tag","filterState"]],"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(652, 1, 'name":"State","slug":"filterState"},{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(653, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"series_settings":{"Registrations":{"color":"#ED8535"}},"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["templat', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(653, 1, 'e-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(654, 0, '{"description":"","archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Leaderboard of Registrars","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"practitionerName\": \"$practitionerName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"practitionerName\": \"$_id.practitionerName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"practitionerName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Registrar Name'': \"$allInfo.practitionerName\"\n , ''Registrations'': \"$allInfo.count\"\n }},\n {\n $limit: 30\n }\n]","template-tags":{"filterGender":{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}}},"type":"native"},"id":12,"parameter_mappings":[],"display":"row","entity_id":"VxeUMjNq8eLaHweLGUvYF","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.cell_column":"Percentage","graph.series_order_dimension":null,"graph.x_axis.title_text":"Registrars","graph.metrics":["Registrations"],"graph.label_value_formatting":"full","graph.series_order":null,"table.pivot_column":"Registrations","series_settings":{"Registrations":{"color":"#509EE3"}},"graph.dimensions":["Registrar Name"],"stackable.stack_type":null},"is_write":false,"parameters":[{"id":"b288ecc8-38b4-f4f3-b4bf-fe10b1a567b5","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"ec1ff9e7-75a1-b336-9d16-2492471a20f4","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"69f31f7f-da03-4eae-fa1a-9e64b3278ba8","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"f', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(654, 1, 'ilterState"},{"id":"a0cbb9fa-29b4-05bd-fa95-84e485a444e3","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"},{"id":"b51746bd-9fd8-c0df-eb92-8e6c61bbac21","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(574, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:20:43.943+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"week"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"database":3},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_trendline":false,"graph.show_values":false,"graph.x_axis.axis_enabled":true,"graph.x_axis.title_text":"Over Time","graph.metrics":["count"],"column_settings":{"[\"ref\",[\"field\",677,null]]":{"date_abbreviate":true}},"graph.x_axis.scale":"timeseries","graph.dimensions":["createdAt"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(575, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:21:52.777+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query"},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_trendline":false,"graph.show_values":false,"graph.x_axis.axis_enabled":true,"graph.x_axis.title_text":"Over Time","graph.metrics":["count"],"column_settings":{"[\"ref\",[\"field\",677,null]]":{"date_abbreviate":true}},"graph.x_axis.scale":"timeseries","graph.dimensions":["createdAt"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(576, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:25:18.848+00', SYSTEM_COMBINE_CLOB(650), FALSE, FALSE, NULL), +(579, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:31:36.008+00', SYSTEM_COMBINE_CLOB(651), FALSE, FALSE, NULL), +(580, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:01.375+00', SYSTEM_COMBINE_CLOB(652), FALSE, FALSE, NULL), +(581, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:33:59.488+00', SYSTEM_COMBINE_CLOB(653), FALSE, FALSE, NULL), +(582, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:34:39.511+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"% of Total Registrations Certified","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query"},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{"pie.colors":{"Certified":"#E75454","Not Certified":"#F7C4C4"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(585, 'Card', 12, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 12:42:53.396+00', SYSTEM_COMBINE_CLOB(654), FALSE, FALSE, NULL), +(588, 'Card', 29, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:36:37.205+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":15,"query_type":"query","name":"Live Births by Type of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"type":"query"},"id":29,"parameter_mappings":[],"display":"pie","entity_id":"GOqql9fnmIgyeOChWso6x","collection_preview":true,"visualization_settings":{"pie.colors":{"Quadruplet":"#FBE499","Single":"#F7C41F"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(655, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Live birth by literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(655, 1, ' }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(656, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Live births by literacy of parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(656, 1, ' }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(657, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Live Births by Literacy of Parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(657, 1, ' }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother"},"fathersLiteracy":{"title":"father"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(589, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2023-01-25 13:51:35.9+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_trendline":false,"graph.show_values":false,"graph.x_axis.axis_enabled":true,"graph.x_axis.title_text":"Over Time","graph.metrics":["count"],"column_settings":{"[\"ref\",[\"field\",677,null]]":{"date_abbreviate":true}},"graph.x_axis.scale":"timeseries","graph.dimensions":["createdAt"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(590, 'Card', 28, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 06:57:00.119+00', '{"description":null,"archived":false,"collection_position":null,"table_id":71,"database_id":3,"enable_embedding":false,"collection_id":17,"query_type":"query","name":"Corrections by type","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"database":3},"id":28,"parameter_mappings":[],"display":"pie","entity_id":"__hZ2xD-7VCBJ7mLFxB9Y","collection_preview":true,"visualization_settings":{"pie.colors":{"Clerical Error":"#8A5EB0"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(593, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:29.743+00', SYSTEM_COMBINE_CLOB(655), FALSE, FALSE, NULL), +(594, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:56:46.886+00', SYSTEM_COMBINE_CLOB(656), FALSE, FALSE, NULL), +(595, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 08:57:06.258+00', SYSTEM_COMBINE_CLOB(657), FALSE, FALSE, NULL), +(599, 'Card', 28, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:00:03.216+00', '{"description":null,"archived":false,"collection_position":null,"table_id":71,"database_id":3,"enable_embedding":false,"collection_id":17,"query_type":"query","name":"Record Corrections by Type","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":71,"expressions":{"ReasonForCorrection":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["and",["=",["field",693,null],"Birth"],["time-interval",["field",695,null],"current","year"]],"aggregation":[["count"]],"breakout":[["expression","ReasonForCorrection"]]},"database":3},"id":28,"parameter_mappings":[],"display":"pie","entity_id":"__hZ2xD-7VCBJ7mLFxB9Y","collection_preview":true,"visualization_settings":{"pie.colors":{"Clerical Error":"#8A5EB0"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(604, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:01:47.789+00', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":5,"size_y":4,"row":0,"col":5,"id":21,"card_id":20,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":0,"id":22,"card_id":19,"series":[]},{"size_x":4,"size_y":4,"row":0,"col":10,"id":24,"card_id":18,"series":[]},{"size_x":4,"size_y":4,"row":0,"col":14,"id":25,"card_id":21,"series":[]},{"size_x":9,"size_y":4,"row":4,"col":9,"id":29,"card_id":27,"series":[]},{"size_x":9,"size_y":4,"row":4,"col":0,"id":31,"card_id":29,"series":[]}]}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(658, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.series_or', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(658, 1, 'der_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#F7C41F"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(659, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live births by age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(659, 1, 'erState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.x_axis.title_text":"Age","graph.dimensions":["Order"],"table.cell_column":"Count","table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(660, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Live Births by Literacy of Parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"fathersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"mothersLiteracy\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(660, 1, ' }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"mothersLiteracy":{"title":"mother","color":"#ED8535"},"fathersLiteracy":{"title":"father","color":"#8A5EB0"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(661, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"fathersAttainment\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\":', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(661, 1, ' {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"mothersAttainment\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"mothersAttainment":{"title":"mother","color":"#E75454"},"fathersAttainment":{"title":"father","color":"#69C8C8"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Relationship"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(605, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:02:46.141+00', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":22,"card_id":19,"series":[]},{"size_x":9,"size_y":4,"row":4,"col":0,"id":24,"card_id":18,"series":[]},{"size_x":9,"size_y":4,"row":4,"col":9,"id":25,"card_id":21,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":0,"id":29,"card_id":27,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":9,"id":31,"card_id":29,"series":[]}]}', FALSE, FALSE, NULL), +(606, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:02:47.547+00', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":22,"card_id":19,"series":[]},{"size_x":9,"size_y":4,"row":4,"col":0,"id":24,"card_id":18,"series":[]},{"size_x":9,"size_y":4,"row":4,"col":9,"id":25,"card_id":21,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":0,"id":29,"card_id":27,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":9,"id":31,"card_id":29,"series":[]}]}', FALSE, FALSE, NULL), +(607, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:06:07.884+00', SYSTEM_COMBINE_CLOB(658), FALSE, FALSE, NULL), +(608, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:24.832+00', SYSTEM_COMBINE_CLOB(659), FALSE, FALSE, NULL), +(609, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:07:59.564+00', SYSTEM_COMBINE_CLOB(660), FALSE, FALSE, NULL), +(610, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:08:21.662+00', SYSTEM_COMBINE_CLOB(661), FALSE, FALSE, NULL), +(611, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:09:12.951+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Place of birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query"},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{"pie.colors":{"Health Facility":"#689636","Taxi":"#69C8C8"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(612, 'Card', 29, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:10:07.391+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":15,"query_type":"query","name":"Live Births by Type of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"type":"query"},"id":29,"parameter_mappings":[],"display":"pie","entity_id":"GOqql9fnmIgyeOChWso6x","collection_preview":true,"visualization_settings":{"pie.colors":{"Quadruplet":"#8A5EB0","Single":"#F7C41F"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(662, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by Age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''total'' }, { $addFields: { category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n category: ''$_id.par'',\n total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { total: 1, category: 1 } },\n {\n $sort: {\n category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(662, 1, '-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","collection_preview":true,"visualization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.x_axis.labels_enabled":false,"graph.series_order_dimension":null,"stackable.stack_display":"bar","graph.x_axis.title_text":"Category","graph.label_value_frequency":"fit","graph.metrics":["total"],"graph.label_value_formatting":"auto","graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"title":"Over age 5","color":"#509EE3"},"12":{"title":"Under age 1","color":"#509EE3"},"23":{"color":"#F9D45C","title":"Total"},"20,085":{"axis":null},"total":{"color":"#8A5EB0"}},"graph.dimensions":["category"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(663, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by Gender","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , { \"$group\": {\n \"_id\": {\n \"gender\": \"$gender\"\n },\n \"count\": {\n \"$sum\": 1\n },\n }\n },\n { \"$project\": {\n \"_id\": false,\n \"gender\": \"$_id.gender\",\n \"count\": true\n }\n },\n {$match: {\n \"gender\": {$ne: null}\n }}\n \n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Gender'': \"$allInfo.gender\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }}\n]","template-tags":{"filterDate":{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/relative","default":null},"filterGender":{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":1,"parameter_mappings":[],"display":"bar","entity_id":"Ksk2s3aUAdBmDtMTNwtH3","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_values":true,"table.columns":[],"table.cell_column":"Gender","graph.series_order_dimension":null,"graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"count","series_settings":{"Registrations":{"color":"#509EE3","show_series_values":true},"Count":{"color":"#69C8C8"}},"graph.dimensions":["Gender"]},"is_write":false,"parameters":[{"id":"57523c92-bc05-e144-f15d-a07fc78322c2","type":"date/relative","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"f7834d58-4acc-cc46-0aee-08d1421f1ff1","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"af46a4e6-571c-e47f-e8ab-2cf527f54d68","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"a771e085-c491-259c-3020-bb9f97cf56f4","type":"string/=","target":["dimension",["template-tag","filterState"]],"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(663, 1, 'name":"State","slug":"filterState"},{"id":"09bc4ac9-1847-d645-24c9-4f2892e147d0","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(664, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":4,"query_type":"native","name":"Registrations by Age","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $match: {\n $and: [{ _id: { $ne: null } }\n [[{{ filterDate }} ]]\n [[{{ filterGender }} ]]\n [[{{ filterEvent }}]]\n [[{{ filterState }}]]\n [[{{ filterOffice }}]]\n ]\n }\n },\n {\n $facet: {\n totals: [{ $count: ''Total'' }, { $addFields: { Category: ''Total'' } }],\n ageGroups: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 365] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 1''\n }\n ],\n default: ''''\n }\n }\n }\n },\n {$match: {\n par: {$ne: ''''}\n }}\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n ageGroups2: [\n {\n $project: {\n _id: 0,\n childsAge: ''$childsAgeInDaysAtDeclaration''\n }\n },\n {\n $addFields: {\n par: {\n $switch: {\n branches: [\n {\n case: {\n $and: [\n { $lt: [''$childsAge'', 1825] },\n { $gte: [''$childsAge'', 0] }\n ]\n },\n then: ''< 5''\n }\n ],\n default: ''5+''\n }\n }\n }\n },\n {\n $project: {\n _id: 0,\n par: ''$par''\n }\n },\n {\n $group: {\n _id: { par: ''$par'' },\n totalCustomer: { $sum: 1 }\n }\n },\n {\n $project: {\n _id: 0,\n Category: ''$_id.par'',\n Total: ''$totalCustomer''\n }\n }\n ],\n }\n },\n {\n $project: {\n mergedArray: { $concatArrays: [''$totals'', ''$ageGroups'', ''$ageGroups2''] }\n }\n },\n { $unwind: ''$mergedArray'' },\n { $replaceRoot: { newRoot: ''$mergedArray'' } },\n {\n $addFields: {\n order: {\n $cond: {\n if: { $eq: [''$Category'', ''Total''] },\n then: 1,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 1''] },\n then: 2,\n else: {\n $cond: {\n if: { $eq: [''$Category'', ''< 5''] },\n then: 3,\n else: 4\n }\n }\n }\n }\n }\n }\n }\n },\n {\n $sort: {\n order: 1\n }\n },\n { $project: { Total: 1, Category: 1 } },\n {\n $sort: {\n Category: -1\n }\n },\n]","template-tags":{"filterDate":{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","name":"filterGender","display', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(664, 1, '-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":31,"parameter_mappings":[],"display":"bar","entity_id":"hTP9EUEq13VA1N_H-258l","collection_preview":true,"visualization_settings":{"graph.y_axis.title_text":"Total","graph.show_values":true,"graph.x_axis.labels_enabled":false,"graph.series_order_dimension":null,"stackable.stack_display":"bar","graph.x_axis.title_text":"Category","graph.label_value_frequency":"fit","graph.metrics":["Total"],"graph.label_value_formatting":"auto","graph.series_order":null,"series_settings":{"4":{"title":"Under age 5","color":"#509EE3"},"7":{"title":"Over age 5","color":"#509EE3"},"12":{"title":"Under age 1","color":"#509EE3"},"23":{"color":"#F9D45C","title":"Total"},"total":{"color":"#8A5EB0"},"20,085":{"axis":null},"Total":{"color":"#8A5EB0"}},"graph.dimensions":["Category"],"stackable.stack_type":"stacked"},"is_write":false,"parameters":[{"id":"84b2ec9e-eea8-e9ee-160f-57a211462c2a","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"7d3014f2-7de5-b2b0-fb10-0796ecc6fe38","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"086c0846-69f4-a2b9-16b8-86af040bf2c8","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"537bc06b-acf9-9d28-3c92-346d83ce5156","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"5626fb9c-14cd-0fe8-2254-687e292aeb7b","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(665, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":10,"query_type":"native","name":"Live Births by Literacy of Parents","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"e8218caf-e2aa-573e-1776-02cffff42462","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"bf69e085-3c01-7924-5108-7151c85dc371","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersLiteracy\": \"$fathersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Father\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n ,mothersLiteracy: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersLiteracy\": \"$mothersLiteracy\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersLiteracy\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"LITERATE\"] },\n then: \"Literate\"\n },\n {\n case: { $eq: [\"$_id\", \"ILLITERATE\"] },\n then: \"Illiterate\"\n }\n ],\n default: \"\"\n }\n }\n , count: \"$count\"\n }}\n {$addFields: {\n literacy: \"Mother\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n }\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersLiteracy\", \"$mothersLiteracy\" ]\n }\n }\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(665, 1, ' }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Category'': \"$allInfo._id\"\n , ''Literacy'': \"$allInfo.literacy\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Literacy\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":18,"parameter_mappings":[],"display":"bar","entity_id":"eRSJUaHW6haiucK8BtpC_","collection_preview":true,"visualization_settings":{"graph.show_values":true,"graph.label_value_formatting":"auto","graph.dimensions":["Category","Literacy"],"series_settings":{"Mother":{"color":"#ED8535"},"mothersLiteracy":{"title":"mother","color":"#ED8535"},"fathersLiteracy":{"title":"father","color":"#8A5EB0"},"Father":{"color":"#8A5EB0"}},"graph.x_axis.title_text":"Literacy","graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"e8218caf-e2aa-573e-1776-02cffff42462","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"bf69e085-3c01-7924-5108-7151c85dc371","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"6a8590c0-c44b-6cb5-1927-bf56805a21a7","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"0debbb0c-3e5f-021c-9188-83371bf19895","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"d17f4f32-f1f3-5666-2cf8-b6735eef97b0","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(666, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":14,"query_type":"native","name":"Live Births by Level of Education of Parent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null}},"query":"[\n {$facet: {\n fathersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"fathersAttainment\": \"$fathersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.fathersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Father\"\n }}\n ]\n , mothersAttainment: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": { \"mothersAttainment\": \"$mothersEducationalAttainment\" } \n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id.mothersAttainment\"\n , \"count\": \"$qty\"\n }},\n {$match: {\n \"_id\": {$ne: null}\n }}\n , {$project: {\n _id: NumberInt(0)\n , \"_id\": {\n ', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(666, 1, ' $switch: {\n branches: [\n {\n case: { $eq: [\"$_id\", \"KORANIC\"] },\n then: \"Koranic\"\n },\n {\n case: { $eq: [\"$_id\", \"MODERN\"] },\n then: \"Modern\"\n },\n {\n case: { $eq: [\"$_id\", \"HIGHER_SCHOOL\"] },\n then: \"Higher School\"\n },\n {\n case: { $eq: [\"$_id\", \"PRIMARY\"] },\n then: \"Primary\"\n },\n {\n case: { $eq: [\"$_id\", \"UNIVERSITY\"] },\n then: \"University\"\n },\n {\n case: { $eq: [\"$_id\", \"POLYTECNIC_NCE\"] },\n then: \"Polytecnic NCE\"\n },\n {\n case: { $eq: [\"$_id\", \"SECONDARY\"] },\n then: \"Secondary\"\n }\n ],\n default: \"Others\"\n }\n }\n , count: \"$count\"\n }},\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {$addFields: {\n attainment: \"Mother\"\n }}\n ]\n }},\n {\n $project: {\n allInfo: {\n $concatArrays: [ \"$fathersAttainment\", \"$mothersAttainment\" ]\n }\n }\n }, {\n $unwind: \"$allInfo\"\n },\n {$project: {\n _id: NumberInt(0)\n , ''Educational Attainment'': \"$allInfo._id\"\n , ''Relationship'': \"$allInfo.attainment\"\n , ''Count'': \"$allInfo.count\"\n }},\n {\n \"$sort\": {\n \"Relationship\": 1\n }\n }\n]\n","collection":"registrations"},"database":3},"id":21,"parameter_mappings":[],"display":"bar","entity_id":"W6bdia0Vw-6PC1efnHIR4","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"Educational Attainment","graph.x_axis.axis_enabled":true,"graph.y_axis.auto_split":true,"graph.metrics":["Count"],"pie.metric":"Count","series_settings":{"Mother":{"color":"#E75454"},"fathersAttainment":{"title":"father","color":"#69C8C8"},"mothersAttainment":{"title":"mother","color":"#E75454"},"Father":{"color":"#69C8C8"}},"graph.y_axis.auto_range":true,"graph.dimensions":["Educational Attainment","Relationship"]},"is_write":false,"parameters":[{"id":"a94c0fd1-e550-61f5-bf93-6745782a3236","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"8e0c3f0a-82b1-067f-aeaf-69750553ec6e","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"bdbcbf25-7d5e-f7a9-27f7-1bce6a670ec1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"e7f94a82-3d11-349f-1011-235d052a57cb","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"b6d5ee98-e1eb-8e7d-6c1c-77350781da39","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(667, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live Births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.series_or', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(667, 1, 'der_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":["Count"],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#F7C41F"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(668, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live Births by Age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(668, 1, 'erState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.x_axis.title_text":"Age","graph.dimensions":["Order"],"table.cell_column":"Count","table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(613, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:17:57.006+00', SYSTEM_COMBINE_CLOB(662), FALSE, FALSE, NULL), +(614, 'Card', 1, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:10.107+00', SYSTEM_COMBINE_CLOB(663), FALSE, FALSE, NULL), +(615, 'Card', 14, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:18:54.412+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Registrations over Time","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["field",677,{"temporal-unit":"month"}]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3},"id":14,"parameter_mappings":[],"display":"line","entity_id":"qNwCeJEl62KWFEc_8ueNS","collection_preview":true,"visualization_settings":{"graph.show_goal":false,"graph.show_trendline":false,"graph.show_values":false,"graph.x_axis.axis_enabled":true,"graph.x_axis.title_text":"Over Time","graph.metrics":["count"],"column_settings":{"[\"ref\",[\"field\",677,null]]":{"date_abbreviate":true}},"graph.x_axis.scale":"timeseries","graph.dimensions":["createdAt"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(616, 'Card', 31, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:25:34.776+00', SYSTEM_COMBINE_CLOB(664), FALSE, FALSE, NULL), +(617, 'Card', 28, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:28:44.234+00', '{"description":null,"archived":false,"collection_position":null,"table_id":71,"database_id":3,"enable_embedding":false,"collection_id":17,"query_type":"query","name":"Record Corrections by Type","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"source-table":71,"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"]]]},"filter":["=",["field",693,null],"Birth"],"aggregation":[["count"]],"breakout":[["expression","Reason"]]},"database":3},"id":28,"parameter_mappings":[],"display":"pie","entity_id":"__hZ2xD-7VCBJ7mLFxB9Y","collection_preview":true,"visualization_settings":{"pie.colors":{"Clerical Error":"#8A5EB0"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(618, 'Card', 18, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:34:47.978+00', SYSTEM_COMBINE_CLOB(665), FALSE, FALSE, NULL), +(619, 'Card', 21, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:24.497+00', SYSTEM_COMBINE_CLOB(666), FALSE, FALSE, NULL), +(620, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:39.789+00', SYSTEM_COMBINE_CLOB(667), FALSE, FALSE, NULL), +(621, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:36:55.075+00', SYSTEM_COMBINE_CLOB(668), FALSE, FALSE, NULL), +(622, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:37:31.846+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Live Births by Place of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month"]],"source-table":70},"type":"query"},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{"pie.colors":{"Health Facility":"#689636","Taxi":"#69C8C8"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(623, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:02.502+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"% of Total Registrations Certified","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{"pie.colors":{"Certified":"#E75454","Not Certified":"#F7C4C4"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(624, 'Card', 16, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:45:41.043+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":null,"query_type":"query","name":"Total Registrations (without native query)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3},"id":16,"parameter_mappings":[],"display":"scalar","entity_id":"BOot6oon80vLb791-gzQb","collection_preview":true,"visualization_settings":{},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(627, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:15.363+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Live Births by Place of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{"pie.colors":{"Health Facility":"#689636","Taxi":"#69C8C8"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(628, 'Card', 29, 1, TIMESTAMP WITH TIME ZONE '2023-01-26 09:55:42.924+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":15,"query_type":"query","name":"Live Births by Type of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"database":3},"id":29,"parameter_mappings":[],"display":"pie","entity_id":"GOqql9fnmIgyeOChWso6x","collection_preview":true,"visualization_settings":{"pie.colors":{"Quadruplet":"#8A5EB0","Single":"#F7C41F"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(669, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live Births by Age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filt', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(669, 1, 'erState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","name":"filterOffice","display-name":"LGA","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}}},"type":"native"},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.x_axis.title_text":"Age","graph.dimensions":["Order"],"table.cell_column":"Count","table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.show_values":true,"graph.metrics":["Count"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8b07b619-ea79-a772-e83a-92f986ab040c","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"LGA","slug":"filterOffice"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(632, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-01-31 07:20:23.922+00', SYSTEM_COMBINE_CLOB(669), FALSE, FALSE, NULL), +(633, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:02:21.279+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Live Births by Place of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{"pie.colors":{"Health Facility":"#689636","Taxi":"#69C8C8"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(634, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2023-02-02 09:03:27.973+00', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Live Births by Place of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"BUS"],"Bus"],[["=",["field",668,null],"CAR_TAXI"],"Taxi"],[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"MATERNITY_HOME"],"Maternity Home"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"TRADITIONAL_DOCTORS"],"Traditional Doctors"],[["=",["field",668,null],"SPIRITUAL_HOMES"],"Spritual Homes"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{"pie.colors":{"Health Facility":"#689636","Taxi":"#69C8C8"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(635, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:06:54.348+07', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":9,"size_y":5,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":9,"size_y":5,"row":0,"col":9,"id":2,"card_id":2,"series":[]},{"size_x":9,"size_y":5,"row":5,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(636, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:07:09.619+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[]}', FALSE, TRUE, NULL), +(637, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:18:17.345+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[]}', FALSE, FALSE, NULL), +(638, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:22:59.393+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[]}', FALSE, FALSE, NULL), +(639, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:25:31.429+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":2,"size_y":2,"row":0,"col":0,"id":37,"card_id":12,"series":[]}]}', FALSE, FALSE, NULL), +(640, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:25:31.526+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":5,"size_y":4,"row":0,"col":0,"id":37,"card_id":12,"series":[]}]}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(670, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live Births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.seri', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(670, 1, 'es_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":[null],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#F7C41F"}},"graph.dimensions":[]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"District","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(671, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by state","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"series_settings":{"Registrations":{"color":"#ED8535"}},"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["templat', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(671, 1, 'e-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(672, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"table","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"series_settings":{"Registrations":{"color":"#ED8535"}},"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","table.pivot_column":"State Name","table.cell_column":"Registrations","graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(672, 1, '362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(673, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"table","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"series_settings":{"Registrations":{"color":"#ED8535"}},"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","table.pivot_column":"State Name","table.cell_column":"Registrations","column_settings":{"[\"name\",\"State Name\"]":{"column_title":"State"}},"graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag","f', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(673, 1, 'ilterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(674, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"table","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"series_settings":{"Registrations":{"color":"#ED8535"}},"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","table.pivot_column":"State Name","table.cell_column":"Registrations","column_settings":{"[\"name\",\"State Name\"]":{"column_title":"State Name"}},"graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-ta', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(674, 1, 'g","filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(641, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-22 17:25:31.631+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":5,"size_y":4,"row":0,"col":0,"id":37,"card_id":12,"series":[]}]}', FALSE, FALSE, NULL), +(645, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:52.796+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":5,"size_y":4,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":2,"size_y":2,"row":0,"col":0,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(646, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:53.037+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":8,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":9,"size_y":8,"row":0,"col":9,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(647, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:14:53.105+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":8,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":9,"size_y":8,"row":0,"col":9,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(648, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:29.713+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":8,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":9,"size_y":8,"row":0,"col":9,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(649, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:29.883+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":8,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":9,"size_y":8,"row":0,"col":9,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(650, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-02-24 15:18:29.917+07', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":8,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":9,"size_y":8,"row":0,"col":9,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(651, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2023-05-08 13:32:28.803+06', SYSTEM_COMBINE_CLOB(670), FALSE, FALSE, NULL), +(660, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:05:01.745+06', SYSTEM_COMBINE_CLOB(671), FALSE, FALSE, NULL), +(661, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:05:20.153+06', SYSTEM_COMBINE_CLOB(672), FALSE, FALSE, NULL), +(662, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:06:24.683+06', SYSTEM_COMBINE_CLOB(673), FALSE, FALSE, NULL), +(663, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:07:29.162+06', SYSTEM_COMBINE_CLOB(674), FALSE, FALSE, NULL), +(664, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:25.201+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(665, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:25.215+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(666, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:25.223+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(667, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:25.234+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":8,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(675, 0, '{"description":null,"archived":true,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":11,"query_type":"native","name":"Live Births by Order","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","name":"filterOffice","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null},"filterDate":{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , birthOrder: ''$birthOrder''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$eq: [''$birthOrder'', 1]}] }, then: ''1''},\n {case: {$and: [{$eq: [''$birthOrder'', 2]}] }, then: ''2''},\n {case: {$and: [{$eq: [''$birthOrder'', 3]}] }, then: ''3''},\n {case: {$and: [{$eq: [''$birthOrder'', 4]}] }, then: ''4''},\n {case: {$and: [{$eq: [''$birthOrder'', 5]}] }, then: ''5''},\n {case: {$and: [{$gte: [''$birthOrder'', 6]}] }, then: ''6+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3},"id":19,"parameter_mappings":[],"display":"bar","entity_id":"L6nXdi04nvxgEh1eJYrwR","collection_preview":true,"visualization_settings":{"graph.show_values":true,"pie.dimension":"birthOrder","graph.serie', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(675, 1, 's_order_dimension":null,"graph.x_axis.title_text":"Birth Order","graph.metrics":[null],"graph.series_order":null,"pie.metric":"count","series_settings":{"Count":{"color":"#F7C41F"}},"graph.dimensions":[]},"is_write":false,"parameters":[{"id":"7335b5ec-6aa2-3c6e-fc23-b8d6526592a4","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"95aa438c-e710-4c95-1ce3-1de5858df3b6","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"aa6006c9-d593-07e3-ab90-62f764a51ebe","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"8f65e91d-33a7-6447-1bf2-b2b318fce33d","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"District","slug":"filterOffice"},{"id":"996f1d61-a845-0afe-bb4c-f36ac4ab32be","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(668, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:25.253+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(669, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:12:25.285+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(670, 'Card', 19, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:14:19.307+06', SYSTEM_COMBINE_CLOB(675), FALSE, FALSE, NULL), +(671, 'Card', 29, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:14:27.284+06', '{"description":null,"archived":true,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":15,"query_type":"query","name":"Live Births by Type of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","TypeOfBirth"]],"expressions":{"TypeOfBirth":["case",[[["=",["field",674,null],"SINGLE"],"Single"],[["=",["field",674,null],"TWIN"],"Twin"],[["=",["field",674,null],"TRIPLET"],"Triplet"],[["=",["field",674,null],"QUADRUPLET"],"Quadruplet"]]]},"filter":["=",["field",666,null],"Birth"],"order-by":[["desc",["aggregation",0,null]]],"source-table":70},"database":3},"id":29,"parameter_mappings":[],"display":"pie","entity_id":"GOqql9fnmIgyeOChWso6x","collection_preview":true,"visualization_settings":{"pie.colors":{"Quadruplet":"#8A5EB0","Single":"#F7C41F"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(672, 'Dashboard', 1, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:16:17.22+06', '{"description":null,"name":"Births registered by age of child","cache_ttl":null,"cards":[{"size_x":9,"size_y":5,"row":0,"col":0,"id":1,"card_id":1,"series":[]},{"size_x":9,"size_y":5,"row":0,"col":9,"id":2,"card_id":2,"series":[]},{"size_x":9,"size_y":5,"row":5,"col":0,"id":4,"card_id":4,"series":[]}]}', FALSE, FALSE, NULL), +(673, 'Card', 32, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:17:29.731+06', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"query","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"source-table":70,"aggregation":[["count"]],"breakout":[["field",671,null]],"order-by":[["desc",["aggregation",0,null]]],"limit":10},"type":"query"},"id":32,"parameter_mappings":[],"display":"row","entity_id":"Ja4C9jmYDwEnYTid4pLzA","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"us_states","graph.dimensions":["stateName"],"graph.metrics":["count"]},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(674, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:44:33.355+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State in percent","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(675, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:46:23.844+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State (%)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"910cd1de-9dbd-c36c-96bd-39d55ad9b84f","map.metric":"percentage","map.dimension":"state","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(677, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:47:09.386+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(678, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:52:44.069+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(679, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:52:44.101+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(680, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:32.941+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(681, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 14:57:32.99+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(682, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:35.107+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(683, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:27:35.163+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(676, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live Births by Age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(676, 1, 'filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",670,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.x_axis.title_text":"Age","graph.dimensions":[],"table.cell_column":"Count","table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.show_values":true,"graph.metrics":[null]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","type":"string/=","target":["dimension",["template-tag","filterDistrict"]],"name":"District","slug":"filterDistrict"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(677, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live Births by Age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(677, 1, '\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.x_axis.title_text":"Age","graph.dimensions":[],"table.cell_column":"Count","table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.show_values":true,"graph.metrics":[null]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","type":"string/=","target":["dimension",["template-tag","filterDistrict"]],"name":"District","slug":"filterDistrict"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(678, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live Births by Age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(678, 1, '\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3},"id":20,"parameter_mappings":[],"display":"table","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.x_axis.title_text":"Age","graph.dimensions":[],"table.cell_column":"Count","table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.show_values":true,"graph.metrics":[null]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","type":"string/=","target":["dimension",["template-tag","filterDistrict"]],"name":"District","slug":"filterDistrict"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(679, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live Births by Age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(679, 1, '\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.show_values":true,"table.cell_column":"Count","graph.series_order_dimension":null,"graph.x_axis.title_text":"Age","graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","type":"string/=","target":["dimension",["template-tag","filterDistrict"]],"name":"District","slug":"filterDistrict"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(680, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":12,"query_type":"native","name":"Live Births by Age of Mother","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterGender":{"id":"56559614-c685-9d81-d44b-a688fe5b103b","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":null},"filterState":{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterDate":{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/month-year","default":null},"filterDistrict":{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","name":"filterDistrict","display-name":"District","type":"dimension","dimension":["field",723,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": false,\n \"totalCount\": \"$qty\"\n }}\n \n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterDistrict }} ]]\n [[ {{ filterDate }} ]]\n ]\n }}\n , {$project: {\n _id: NumberInt(0)\n , mothersAge: ''$mothersAgeAtBirthOfChildInYears''\n \n }}\n , {$addFields: {\n orders: {$switch:\n {\n branches: [\n {case: {$and: [{$gte: [''$mothersAge'', 9]}, {$lt: [''$mothersAge'', 15]}] }, then: ''09-14''},\n {case: {$and: [{$gte: [''$mothersAge'', 15]}, {$lt: [''$mothersAge'', 20]}] }, then: ''15-19''},\n {case: {$and: [{$gte: [''$mothersAge'', 20]}, {$lt: [''$mothersAge'', 25]}] }, then: ''20-24''},\n {case: {$and: [{$gte: [''$mothersAge'', 25]}, {$lt: [''$mothersAge'', 30]}] }, then: ''25-29''},\n {case: {$and: [{$gte: [''$mothersAge'', 30]}, {$lt: [''$mothersAge'', 35]}] }, then: ''30-34''},\n {case: {$and: [{$gte: [''$mothersAge'', 35]}, {$lt: [''$mothersAge'', 40]}] }, then: ''35-39''},\n {case: {$and: [{$gte: [''$mothersAge'', 40]}, {$lt: [''$mothersAge'', 45]}] }, then: ''40-44''},\n {case: {$and: [{$gte: [''$mothersAge'', 45]}, {$lt: [''$mothersAge'', 50]}] }, then: ''45-49''},\n {case: {$and: [{$gte: [''$mothersAge'', 50]}, {$lt: [''$mothersAge'', 55]}] }, then: ''50-54''},\n {case: {$and: [{$gte: [''$mothersAge'', 55]}, {$lt: [''$mothersAge'', 60]}] }, then: ''55-59''},\n {case: {$and: [{$gte: [''$mothersAge'', 60]}] }, then: ''60+''}\n ], \n default: ''''\n }}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n }}\n , {$match: {\n orders: {$ne: ''''}\n }}\n , {$project: {\n _id: NumberInt(0)\n , orders: ''$orders''\n , totalCount: \"$totalCount\"\n }}\n \n , {$group: { \n _id: { orders: ''$orders''}\n , totalCount: {$sum: NumberInt(1)}\n }} , {$project: {\n _id: NumberInt(0)\n , ''category'': ''$_id.orders''\n , ''count'': ''$totalCount''', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(680, 1, '\n }}\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''Order'': \"$allInfo.category\"\n , ''Count'': \"$allInfo.count\"\n , ''Percentage'': {$divide: [{$multiply: [''$allInfo.count'', 100]}, ''$totalCount'']}\n \n }},\n {\n \"$sort\": {\n \"Order\": 1\n }\n }\n]","collection":"registrations"},"database":3},"id":20,"parameter_mappings":[],"display":"bar","entity_id":"PcnknQN2IYs_mJkwA8yRq","collection_preview":true,"visualization_settings":{"graph.show_values":true,"table.cell_column":"Count","graph.series_order_dimension":null,"graph.x_axis.title_text":"Age","graph.metrics":["Count"],"graph.series_order":null,"table.pivot_column":"Order","series_settings":{"Count":{"color":"#E75454"}},"graph.dimensions":["Order"]},"is_write":false,"parameters":[{"id":"56559614-c685-9d81-d44b-a688fe5b103b","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"cd1a4146-89c8-79a8-3ea0-145647317de1","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent"},{"id":"f105fc3f-8509-e01b-cd4e-bf3ea930da11","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"State","slug":"filterState"},{"id":"557cb4d2-a41c-3867-3703-360b7e03aeb7","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"0d1e592a-47dc-e5ed-9522-613ab64ea6c2","type":"string/=","target":["dimension",["template-tag","filterDistrict"]],"name":"District","slug":"filterDistrict"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(681, 0, '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":18,"query_type":"native","name":"Registrations by State","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"template-tags":{"filterDate":{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","name":"filterDate","display-name":"Date","type":"dimension","dimension":["field",677,null],"widget-type":"date/all-options","default":null},"filterGender":{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","name":"filterGender","display-name":"Gender","type":"dimension","dimension":["field",680,null],"widget-type":"string/=","default":null},"filterEvent":{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","name":"filterEvent","display-name":"Event","type":"dimension","dimension":["field",666,null],"widget-type":"string/=","default":["Birth"]},"filterState":{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","name":"filterState","display-name":"State","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null},"filterOffice":{"id":"58ab4870-ee4a-8362-2689-440572bb65de","name":"filterOffice","display-name":"Office","type":"dimension","dimension":["field",676,null],"widget-type":"string/=","default":null}},"query":"[\n {$facet: {\n totalCountInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\"$group\" : { \n \"_id\": null\n , \"qty\": {$sum: NumberInt(1)}\n }}\n , {\"$project\" : { \n \"_id\": \"$_id\"\n , \"totalCount\": \"$qty\"\n }}\n ]\n , otherInfo: [\n {$match: {\n $and: [\n {\"_id\": {\"$ne\": null}}\n [[ {{ filterDate }} ]]\n [[ {{ filterGender }} ]]\n [[ {{ filterEvent }} ]]\n [[ {{ filterState }} ]]\n [[ {{ filterOffice }} ]]\n ]\n }}\n , {\n \"$group\": {\n \"_id\": {\n \"stateName\": \"$stateName\"\n },\n \"count\": {\n \"$sum\": 1\n }\n }\n },\n {\n \"$sort\": {\n \"_id\": 1\n }\n },\n {\n \"$project\": {\n \"_id\": false,\n \"stateName\": \"$_id.stateName\",\n \"count\": true\n }\n },\n {\n \"$sort\": {\n \"count\": -1,\n \"stateName\": 1\n }\n }\n ]\n }}\n , {$replaceRoot: {\n newRoot: {\n $mergeObjects: [\n {allInfo: ''$otherInfo''}, {''$arrayElemAt'': [''$totalCountInfo'', 0]}\n ]\n }\n }}\n , {$unwind: ''$allInfo''}\n , {$project: {\n _id: NumberInt(0)\n , ''State Name'': \"$allInfo.stateName\"\n , ''Registrations'': \"$allInfo.count\"\n }}\n]","collection":"registrations"},"type":"native"},"id":33,"parameter_mappings":[],"display":"row","entity_id":"g5hTQaT1d2p1OX0tU90WQ","collection_preview":true,"visualization_settings":{"series_settings":{"Registrations":{"color":"#ED8535"}},"graph.dimensions":["State Name"],"graph.show_values":true,"graph.y_axis.title_text":"No. of registrations","table.pivot_column":"State Name","table.cell_column":"Registrations","column_settings":{"[\"name\",\"State Name\"]":{"column_title":"State Name"}},"graph.metrics":["Registrations"]},"is_write":false,"parameters":[{"id":"f86f592c-2219-063c-8dc4-ca623c06a3ca","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Date","slug":"filterDate"},{"id":"91f3014a-fb66-6724-708c-8e89f56e2779","type":"string/=","target":["dimension",["template-tag","filterGender"]],"name":"Gender","slug":"filterGender"},{"id":"757a20cf-8f70-6857-0ed5-acb310688b3a","type":"string/=","target":["dimension",["template-tag","filterEvent"]],"name":"Event","slug":"filterEvent","default":["Birth"]},{"id":"9384f1c8-b896-7ddb-6f32-204beba13dd3","type":"string/=","target":["dimension",["template-tag"', NULL); +INSERT INTO SYSTEM_LOB_STREAM VALUES(681, 1, ',"filterState"]],"name":"State","slug":"filterState"},{"id":"58ab4870-ee4a-8362-2689-440572bb65de","type":"string/=","target":["dimension",["template-tag","filterOffice"]],"name":"Office","slug":"filterOffice"}],"dataset":false,"public_uuid":null}', NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(684, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:14.416+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(685, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:47:14.45+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(686, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:13.313+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(687, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-09 16:49:13.346+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(688, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:22:20.612+06', SYSTEM_COMBINE_CLOB(676), FALSE, FALSE, NULL), +(689, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:29:52.716+06', SYSTEM_COMBINE_CLOB(677), FALSE, FALSE, NULL), +(690, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:03.225+06', SYSTEM_COMBINE_CLOB(678), FALSE, FALSE, NULL), +(691, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:30:59.041+06', SYSTEM_COMBINE_CLOB(679), FALSE, FALSE, NULL), +(692, 'Card', 20, 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:24.896+06', SYSTEM_COMBINE_CLOB(680), FALSE, FALSE, NULL), +(693, 'Card', 33, 1, TIMESTAMP WITH TIME ZONE '2023-05-10 16:31:56.545+06', SYSTEM_COMBINE_CLOB(681), FALSE, FALSE, NULL), +(694, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:00.602+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(695, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-11 12:15:00.658+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(696, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.39+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(697, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:41:00.435+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(698, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:34.739+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(699, 'Dashboard', 2, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:49:34.767+06', '{"description":null,"name":"Registrations Dashboard","cache_ttl":null,"cards":[{"size_x":4,"size_y":4,"row":0,"col":14,"id":14,"card_id":1,"series":[]},{"size_x":13,"size_y":5,"row":4,"col":5,"id":15,"card_id":9,"series":[]},{"size_x":5,"size_y":5,"row":4,"col":0,"id":17,"card_id":13,"series":[]},{"size_x":12,"size_y":4,"row":9,"col":0,"id":18,"card_id":14,"series":[]},{"size_x":3,"size_y":4,"row":0,"col":0,"id":20,"card_id":16,"series":[]},{"size_x":5,"size_y":4,"row":0,"col":9,"id":33,"card_id":31,"series":[]},{"size_x":6,"size_y":4,"row":0,"col":3,"id":34,"card_id":30,"series":[]},{"size_x":6,"size_y":4,"row":9,"col":12,"id":36,"card_id":28,"series":[]}]}', FALSE, FALSE, NULL), +(700, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:52:09.078+06', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"% of Total Registrations Certified","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["and",["=",["field",666,null],"Birth"],["time-interval",["field",677,null],-12,"month",{"include-current":true}],["=",["field",671,null],"Central"]],"source-table":70},"database":3},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{"pie.colors":{"Certified":"#E75454","Not Certified":"#F7C4C4"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(701, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:55:17.381+06', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"% of Total Registrations Certified","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"query","query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Certified"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"database":3},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{"pie.colors":{"Certified":"#E75454","Not Certified":"#F7C4C4"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(702, 'Card', 28, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 12:59:11.853+06', '{"description":null,"archived":false,"collection_position":null,"table_id":71,"database_id":3,"enable_embedding":false,"collection_id":17,"query_type":"query","name":"Record Corrections by Type","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Reason"]],"expressions":{"Reason":["case",[[["=",["field",688,null],"CLERICAL_ERROR"],"Clerical Error"],[["=",["field",688,null],"JUDICIAL_ORDER"],"Judicial Order"],[["=",["field",688,null],"MATERIAL_ERROR"],"Material Error"],[["=",["field",688,null],"MATERIAL_OMISSION"],"Material Omission"],[["=",["field",688,null],"OTHER"],"Other"]]]},"filter":["=",["field",693,null],"Birth"],"source-table":71},"type":"query"},"id":28,"parameter_mappings":[],"display":"pie","entity_id":"__hZ2xD-7VCBJ7mLFxB9Y","collection_preview":true,"visualization_settings":{"pie.colors":{"Clerical Error":"#8A5EB0"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(703, 'Card', 30, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:02:21.269+06', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":8,"query_type":"query","name":"% of Total Registrations Certified","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","Status"]],"expressions":{"Status":["case",[[["=",["field",682,null],"REGISTERED"],"Not Certified"],[["=",["field",682,null],"CERTIFIED"],"Certified"],[["=",["field",682,null],"ISSUED"],"Issued"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"},"id":30,"parameter_mappings":[],"display":"pie","entity_id":"i9_4VwkR62cl03HLkb9e7","collection_preview":true,"visualization_settings":{"pie.colors":{"Certified":"#E75454","Not Certified":"#F7C4C4"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(704, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:29.558+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(705, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:03:29.579+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(706, 'Card', 27, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:10:36.304+06', '{"description":null,"archived":false,"collection_position":null,"table_id":70,"database_id":3,"enable_embedding":false,"collection_id":9,"query_type":"query","name":"Live Births by Place of Birth","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"query":{"aggregation":[["count"]],"breakout":[["expression","PlaceOfBirth"]],"expressions":{"PlaceOfBirth":["case",[[["=",["field",668,null],"HEALTH_FACILITY"],"Health Facility"],[["=",["field",668,null],"ADMIN_STRUCTURE"],"Admin Structure"],[["=",["field",668,null],"CRVS_OFFICE"],"CRVS Office"],[["=",["field",668,null],"PRIVATE_HOME"],"Private Home"],[["=",["field",668,null],"OTHER"],"Other"]]]},"filter":["=",["field",666,null],"Birth"],"source-table":70},"type":"query"},"id":27,"parameter_mappings":[],"display":"pie","entity_id":"AfR2OybIvG3i-a1qt-k0u","collection_preview":true,"visualization_settings":{"pie.colors":{"Health Facility":"#689636","Taxi":"#69C8C8"}},"is_write":false,"parameters":[],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(707, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:36.949+06', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":8,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":9,"size_y":8,"row":0,"col":9,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(708, 'Dashboard', 4, 1, TIMESTAMP WITH TIME ZONE '2023-05-22 13:11:36.97+06', '{"description":null,"name":"Leaderboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":8,"row":0,"col":0,"id":37,"card_id":12,"series":[]},{"size_x":9,"size_y":8,"row":0,"col":9,"id":38,"card_id":33,"series":[]}]}', FALSE, FALSE, NULL), +(709, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:21:38.399+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"text"},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"text"}}},"type":"native"},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_column":"percentage","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","type":"category","target":["variable",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","type":"category","target":["variable",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(710, 'Card', 13, 1, TIMESTAMP WITH TIME ZONE '2023-05-31 18:57:50.281+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":7,"query_type":"native","name":"Completeness Rate","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n {\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n }, \n {\n $group: {\n _id: null,\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n }, \n {\n $addFields: {\n percentage: {\n $cond: {\n if: { $eq: [''$totalRegistrations'', 0] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [''$estimate'', 0] },\n then: 0,\n else: { $divide: [''$totalRegistrations'', ''$estimate''] }\n }\n }\n }\n }\n }\n },\n { $project: { _id: false, percentage: ''$percentage'', totalRegistrations: ''$totalRegistrations'', estimate: ''$estimate'' } } \n]","template-tags":{"filterDate":{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":13,"parameter_mappings":[],"display":"gauge","entity_id":"RUK20xOu8Io0PvT4a332Q","collection_preview":true,"visualization_settings":{"table.pivot_column":"percentage","gauge.segments":[{"min":0,"max":0.25,"color":"#ED6E6E","label":""},{"min":0.25,"max":0.75,"color":"#F9CF48","label":""},{"min":0.75,"max":1,"color":"#84BB4C","label":""}],"table.cell_column":"totalRegistrations","column_settings":{"[\"name\",\"percentage\"]":{"scale":100,"suffix":" %"}}},"is_write":false,"parameters":[{"id":"56e116a3-0612-74c2-b84a-28f672d719ef","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"8735e3f7-fcc5-2a78-8fad-0b88ae7b9a12","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(711, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2023-07-12 12:52:50.686+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State (%)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"database":3,"native":{"collection":"registrations","query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: {\n $dateFromParts: {\n year: { $add: [{ $year: ''$date'' }, 1] },\n month: { $month: ''$date'' },\n day: { $dayOfMonth: ''$date'' }\n }\n }}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/month-year","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}}},"type":"native"},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"cdc1d5eb-c7f8-8b01-b296-eda34d06b6da","map.metric":"percentage","map.dimension":"State","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/month-year","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL), +(712, 'Card', 9, 1, TIMESTAMP WITH TIME ZONE '2023-07-12 19:52:35.884+06', '{"description":null,"archived":false,"collection_position":null,"table_id":null,"database_id":3,"enable_embedding":false,"collection_id":6,"query_type":"native","name":" Completeness Rates by State (%)","creator_id":1,"made_public_by_id":null,"embedding_params":null,"cache_ttl":null,"dataset_query":{"type":"native","native":{"template-tags":{"filterDate":{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","name":"filterDate","display-name":"Filterdate","type":"dimension","dimension":["field",658,null],"widget-type":"date/all-options","default":null},"filterState":{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","name":"filterState","display-name":"Filterstate","type":"dimension","dimension":["field",671,null],"widget-type":"string/=","default":null}},"query":"[\n {\n $group: {\n _id: {\n date: { $dateToString: { format: ''%Y-%m-%d'', date: ''$createdAt'' } },\n stateName: ''$stateName''\n },\n total: { $sum: 1 }\n }\n },\n { $addFields: { estimatedNumberOfBirths: 0, stateName: ''$_id.stateName'', date: {$dateFromString: {dateString: ''$_id.date'' } }}},\n { $unionWith: { coll: ''populationEstimatesPerDay'', pipeline: [{$addFields: {stateName: ''$name'', date: ''$date''}}]}},\n\n{ $group: {\n _id: {\n date: ''$date'',\n stateName: ''$stateName''\n },\n totalRegistrations: { $sum: ''$total'' },\n estimate: { $sum: ''$estimatedNumberOfBirths'' }, \n }},\n {$addFields:{stateName: ''$_id.stateName'', date: ''$_id.date''}},\n{\n $match: {\n $and: [\n { _id: { $ne: null } }\n [[ {{ filterDate }} ]]\n [[ {{ filterState }} ]]\n ]\n }\n}, \n{\n $group: {\n _id: {name: \"$stateName\"},\n totalRegistrations: { $sum: ''$totalRegistrations'' },\n estimate: { $sum: ''$estimate'' }\n }\n}, \n{$addFields: {\n percentage: {\n $cond: {\n if: { $eq: [ \"$totalRegistrations\", 0 ] },\n then: 0,\n else: {\n $cond: {\n if: { $eq: [ \"$estimate\", 0 ] },\n then: 0,\n else: {$divide: [''$totalRegistrations'', ''$estimate'']}\n }\n }\n }\n} \n}}, \n{$project: {\n _id: false,\n State: ''$_id.name'',\n ''Completeness Rate'': {$round: [{$multiply: [''$percentage'', 100] }, 0]}\n}} \n]","collection":"registrations"},"database":3},"id":9,"parameter_mappings":[],"display":"map","entity_id":"9t73rF7ixsw9EVOWpx7ab","collection_preview":true,"visualization_settings":{"map.type":"region","map.region":"cdc1d5eb-c7f8-8b01-b296-eda34d06b6da","map.metric":"percentage","map.dimension":"State","table.pivot_column":"Completeness Rate","table.cell_column":"State"},"is_write":false,"parameters":[{"id":"1e69ed7b-8ae8-6cfe-0c1c-ae93f5048bee","type":"date/all-options","target":["dimension",["template-tag","filterDate"]],"name":"Filterdate","slug":"filterDate"},{"id":"f9f00080-004f-1c25-e71b-af69fb2fc1b1","type":"string/=","target":["dimension",["template-tag","filterState"]],"name":"Filterstate","slug":"filterState"}],"dataset":false,"public_uuid":null}', FALSE, FALSE, NULL); +INSERT INTO PUBLIC.REVISION(ID, MODEL, MODEL_ID, USER_ID, TIMESTAMP, OBJECT, IS_REVERSION, IS_CREATION, MESSAGE) VALUES +(713, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:19.089+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL), +(714, 'Dashboard', 3, 1, TIMESTAMP WITH TIME ZONE '2023-08-25 18:24:19.12+06', '{"description":null,"name":"Statistics Dashboard","cache_ttl":null,"cards":[{"size_x":9,"size_y":4,"row":0,"col":9,"id":21,"card_id":20,"series":[]},{"size_x":9,"size_y":4,"row":0,"col":0,"id":29,"card_id":27,"series":[]}]}', FALSE, FALSE, NULL); +CREATE INDEX PUBLIC.IDX_REVISION_MODEL_MODEL_ID ON PUBLIC.REVISION(MODEL, MODEL_ID); +CREATE CACHED TABLE PUBLIC.METRIC( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_921E3E57_56A0_49A0_AE48_CA7806C6D314) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_921E3E57_56A0_49A0_AE48_CA7806C6D314, + TABLE_ID INT NOT NULL, + CREATOR_ID INT NOT NULL, + NAME VARCHAR(254) NOT NULL, + DESCRIPTION CLOB, + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL, + DEFINITION CLOB NOT NULL, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + POINTS_OF_INTEREST CLOB, + CAVEATS CLOB, + HOW_IS_THIS_CALCULATED CLOB, + SHOW_IN_GETTING_STARTED BOOLEAN DEFAULT FALSE NOT NULL, + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.' +); +ALTER TABLE PUBLIC.METRIC ADD CONSTRAINT PUBLIC.PK_METRIC PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.METRIC; +CREATE INDEX PUBLIC.IDX_METRIC_CREATOR_ID ON PUBLIC.METRIC(CREATOR_ID); +CREATE INDEX PUBLIC.IDX_METRIC_TABLE_ID ON PUBLIC.METRIC(TABLE_ID); +CREATE INDEX PUBLIC.IDX_METRIC_SHOW_IN_GETTING_STARTED ON PUBLIC.METRIC(SHOW_IN_GETTING_STARTED); +CREATE CACHED TABLE PUBLIC.APP_PERMISSION_GRAPH_REVISION COMMENT 'Used to keep track of changes made to app permissions.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_B98AB84C_B0B7_437D_AB7A_EEBD7CDDA984) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_B98AB84C_B0B7_437D_AB7A_EEBD7CDDA984, + BEFORE CLOB NOT NULL COMMENT 'Serialized JSON of the apps graph before the changes.', + AFTER CLOB NOT NULL COMMENT 'Serialized JSON of the apps graph after the changes.', + USER_ID INT NOT NULL COMMENT 'The ID of the admin who made this set of changes.', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'The timestamp of when these changes were made.', + REMARK CLOB COMMENT 'Optional remarks explaining why these changes were made.' +); +ALTER TABLE PUBLIC.APP_PERMISSION_GRAPH_REVISION ADD CONSTRAINT PUBLIC.PK_APP_PERMISSION_GRAPH_REVISION PRIMARY KEY(ID); +-- 0 +/- SELECT COUNT(*) FROM PUBLIC.APP_PERMISSION_GRAPH_REVISION; +CREATE CACHED TABLE PUBLIC.REPORT_DASHBOARD( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_AE8D7640_4A16_4E34_954B_085CBB99D93B) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_AE8D7640_4A16_4E34_954B_085CBB99D93B, + CREATED_AT TIMESTAMP NOT NULL, + UPDATED_AT TIMESTAMP NOT NULL, + NAME VARCHAR(254) NOT NULL, + DESCRIPTION CLOB, + CREATOR_ID INT NOT NULL, + PARAMETERS CLOB NOT NULL, + POINTS_OF_INTEREST CLOB, + CAVEATS CLOB, + SHOW_IN_GETTING_STARTED BOOLEAN DEFAULT FALSE NOT NULL, + PUBLIC_UUID CHAR(36) COMMENT 'Unique UUID used to in publically-accessible links to this Dashboard.', + MADE_PUBLIC_BY_ID INT COMMENT 'The ID of the User who first publically shared this Dashboard.', + ENABLE_EMBEDDING BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Is this Dashboard allowed to be embedded in different websites (using a signed JWT)?', + EMBEDDING_PARAMS CLOB COMMENT 'Serialized JSON containing information about required parameters that must be supplied when embedding this Dashboard.', + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Is this Dashboard archived (effectively treated as deleted?)', + POSITION INT COMMENT 'The position this Dashboard should appear in the Dashboards list, lower-numbered positions appearing before higher numbered ones.', + COLLECTION_ID INT COMMENT 'Optional ID of Collection this Dashboard belongs to.', + COLLECTION_POSITION SMALLINT COMMENT 'Optional pinned position for this item in its Collection. NULL means item is not pinned.', + CACHE_TTL INT COMMENT 'Granular cache TTL for specific dashboard.', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.', + IS_APP_PAGE BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Indicates that this dashboard serves as a page of an app' +); +ALTER TABLE PUBLIC.REPORT_DASHBOARD ADD CONSTRAINT PUBLIC.PK_REPORT_DASHBOARD PRIMARY KEY(ID); +-- 4 +/- SELECT COUNT(*) FROM PUBLIC.REPORT_DASHBOARD; +INSERT INTO PUBLIC.REPORT_DASHBOARD(ID, CREATED_AT, UPDATED_AT, NAME, DESCRIPTION, CREATOR_ID, PARAMETERS, POINTS_OF_INTEREST, CAVEATS, SHOW_IN_GETTING_STARTED, PUBLIC_UUID, MADE_PUBLIC_BY_ID, ENABLE_EMBEDDING, EMBEDDING_PARAMS, ARCHIVED, POSITION, COLLECTION_ID, COLLECTION_POSITION, CACHE_TTL, ENTITY_ID, IS_APP_PAGE) VALUES +(1, TIMESTAMP '2022-12-13 14:15:06.924', TIMESTAMP '2023-05-09 14:16:17.208', 'Births registered by age of child', NULL, 1, '[{"name":"Gender","slug":"gender","id":"4600174f","type":"string/=","sectionId":"string"},{"name":"Event","slug":"event","id":"fa21fc60","type":"string/=","sectionId":"string","default":["Birth"]},{"name":"State","slug":"state","id":"7425de21","type":"string/=","sectionId":"string"},{"name":"Office","slug":"office","id":"c6f1160d","type":"string/=","sectionId":"string"}]', NULL, NULL, FALSE, NULL, NULL, FALSE, NULL, FALSE, NULL, 3, NULL, NULL, '3pLhjavGYq2czcZWLNbzd', FALSE), +(2, TIMESTAMP '2022-12-14 12:48:54.898', TIMESTAMP '2023-05-22 12:49:34.755', 'Registrations Dashboard', NULL, 1, '[{"name":"Event","slug":"event","id":"6299a85e","type":"string/=","sectionId":"string","default":["Birth"]},{"name":"Time period","slug":"time_period","id":"45724d13","type":"date/all-options","sectionId":"date","default":"past12months~"},{"name":"State","slug":"state","id":"80f32cc","type":"string/=","sectionId":"location"},{"name":"Gender","slug":"gender","id":"6ffeab10","type":"string/=","sectionId":"string"}]', NULL, NULL, FALSE, 'fec78656-e4f9-4b51-b540-0fed81dbd821', 1, TRUE, '{}', FALSE, NULL, 3, NULL, NULL, '2N0xVbGQZOZM2ZYrUnxy9', FALSE), +(3, TIMESTAMP '2022-12-20 05:46:30.828', TIMESTAMP '2023-08-25 18:24:19.102', 'Statistics Dashboard', NULL, 1, '[{"name":"Event","slug":"event","id":"65d94567","type":"string/=","sectionId":"string","default":["Birth"]},{"name":"Time period","slug":"time_period","id":"7d44a6ef","type":"date/all-options","sectionId":"date","default":"past12months~"},{"name":"State","slug":"state","id":"6111342e","type":"string/=","sectionId":"location"},{"name":"District","slug":"district","id":"c6c83494","type":"string/=","sectionId":"location","isMultiSelect":true,"filteringParameters":["6111342e"]},{"name":"Gender","slug":"gender","id":"ae9a87b8","type":"string/=","sectionId":"string"}]', NULL, NULL, FALSE, 'a17e9bc0-15a2-4bd1-92fa-ab0f346227ca', 1, FALSE, NULL, FALSE, NULL, 3, NULL, NULL, 'ggTBrAYECgQRxy8Mj-rgQ', FALSE), +(4, TIMESTAMP '2023-02-22 17:07:09.49', TIMESTAMP '2023-05-22 13:11:36.964', 'Leaderboard', NULL, 1, '[{"name":"Event","slug":"event","id":"4d1c7aac","type":"string/=","sectionId":"string","default":["Birth"]},{"name":"Time period","slug":"time_period","id":"9882246c","type":"date/all-options","sectionId":"date","default":"past12months~"},{"name":"State","slug":"state","id":"f7070a19","type":"string/=","sectionId":"location"},{"name":"Gender","slug":"gender","id":"d2d1a17a","type":"string/=","sectionId":"string"}]', NULL, NULL, FALSE, 'acae0527-74be-4804-a3ee-f8b3c9c8784c', 1, FALSE, NULL, FALSE, NULL, 3, NULL, NULL, 'le9HkULKBMVZJTMeeuRPL', FALSE); +CREATE INDEX PUBLIC.IDX_DASHBOARD_CREATOR_ID ON PUBLIC.REPORT_DASHBOARD(CREATOR_ID); +CREATE INDEX PUBLIC.IDX_REPORT_DASHBOARD_SHOW_IN_GETTING_STARTED ON PUBLIC.REPORT_DASHBOARD(SHOW_IN_GETTING_STARTED); +CREATE INDEX PUBLIC.IDX_DASHBOARD_PUBLIC_UUID ON PUBLIC.REPORT_DASHBOARD(PUBLIC_UUID); +CREATE INDEX PUBLIC.IDX_DASHBOARD_COLLECTION_ID ON PUBLIC.REPORT_DASHBOARD(COLLECTION_ID); +CREATE CACHED TABLE PUBLIC.COLLECTION COMMENT 'Collections are an optional way to organize Cards and handle permissions for them.'( + ID INT DEFAULT (NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_CA8F9CC6_8730_4733_A518_B4A26ABBA961) NOT NULL NULL_TO_DEFAULT SEQUENCE PUBLIC.SYSTEM_SEQUENCE_CA8F9CC6_8730_4733_A518_B4A26ABBA961, + NAME CLOB NOT NULL COMMENT 'The user-facing name of this Collection.', + DESCRIPTION CLOB COMMENT 'Optional description for this Collection.', + COLOR CHAR(7) NOT NULL COMMENT 'Seven-character hex color for this Collection, including the preceding hash sign.', + ARCHIVED BOOLEAN DEFAULT FALSE NOT NULL COMMENT 'Whether this Collection has been archived and should be hidden from users.', + LOCATION VARCHAR(254) DEFAULT '/' NOT NULL COMMENT 'Directory-structure path of ancestor Collections. e.g. "/1/2/" means our Parent is Collection 2, and their parent is Collection 1.', + PERSONAL_OWNER_ID INT COMMENT 'If set, this Collection is a personal Collection, for exclusive use of the User with this ID.', + SLUG VARCHAR(254) NOT NULL COMMENT 'Sluggified version of the Collection name. Used only for display purposes in URL; not unique or indexed.', + NAMESPACE VARCHAR(254) COMMENT 'The namespace (hierachy) this Collection belongs to. NULL means the Collection is in the default namespace.', + AUTHORITY_LEVEL VARCHAR(255) COMMENT 'Nullable column to incidate collection''s authority level. Initially values are "official" and nil.', + ENTITY_ID CHAR(21) COMMENT 'Random NanoID tag for unique identity.', + CREATED_AT TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL COMMENT 'Timestamp of when this Collection was created.' +); +ALTER TABLE PUBLIC.COLLECTION ADD CONSTRAINT PUBLIC.PK_COLLECTION PRIMARY KEY(ID); +-- 18 +/- SELECT COUNT(*) FROM PUBLIC.COLLECTION; +INSERT INTO PUBLIC.COLLECTION(ID, NAME, DESCRIPTION, COLOR, ARCHIVED, LOCATION, PERSONAL_OWNER_ID, SLUG, NAMESPACE, AUTHORITY_LEVEL, ENTITY_ID, CREATED_AT) VALUES +(1, 'OpenCRVS User''s Personal Collection', NULL, '#31698A', FALSE, '/', 1, 'opencrvs_user_s_personal_collection', NULL, NULL, 'eUiluB2VBdtTMG4rgqc_2', TIMESTAMP WITH TIME ZONE '2022-12-13 12:23:49.427+06'), +(2, 'Questions', 'Contain questions to generate widgets with filters', '#509EE3', FALSE, '/', NULL, 'questions', NULL, NULL, 'JMklNN1fc-IXAnb0UK7fk', TIMESTAMP WITH TIME ZONE '2022-12-13 13:22:37.222+06'), +(3, 'Dashboards', NULL, '#509EE3', FALSE, '/', NULL, 'dashboards', NULL, NULL, 'Mq1Y2JUVMmZtXxyNyGOVl', TIMESTAMP WITH TIME ZONE '2022-12-13 14:14:51.797+06'), +(4, 'Live births registered by age of child', NULL, '#509EE3', FALSE, '/2/', NULL, 'live_births_registered_by_age_of_child', NULL, NULL, '67otAkA2eP-YqwDakjCdI', TIMESTAMP WITH TIME ZONE '2022-12-14 12:07:41.139+06'), +(5, 'Live births registered by time period', NULL, '#509EE3', FALSE, '/2/', NULL, 'live_births_registered_by_time_period', NULL, NULL, 'gykwn49pkFcEPLdgYY-8q', TIMESTAMP WITH TIME ZONE '2022-12-14 12:08:21.337+06'), +(6, 'Live births by State', NULL, '#509EE3', FALSE, '/2/', NULL, 'live_births_by_state', NULL, NULL, 'nK2Lvf2Xeky73O7Zme3wH', TIMESTAMP WITH TIME ZONE '2022-12-14 12:59:09.5+06'), +(7, 'Completeness rate', NULL, '#509EE3', FALSE, '/2/', NULL, 'completeness_rate', NULL, NULL, 'wp1bvvDIKxAVo8L9-FCus', TIMESTAMP WITH TIME ZONE '2022-12-16 09:20:35.508+00'), +(8, 'Certificates issued', NULL, '#509EE3', FALSE, '/2/', NULL, 'certificates_issued', NULL, NULL, 'C4K40S2osvO9PabWzY4-9', TIMESTAMP WITH TIME ZONE '2022-12-19 07:15:22.669+00'), +(9, 'Place of birth', NULL, '#509EE3', FALSE, '/2/', NULL, 'place_of_birth', NULL, NULL, 'Sw2DxOMKsd-YR9Y4Sbvla', TIMESTAMP WITH TIME ZONE '2022-12-19 07:23:24.172+00'), +(10, 'Literacy of parents', NULL, '#509EE3', TRUE, '/2/', NULL, 'literacy_of_parents', NULL, NULL, 'Zr6gGvR-yJ9PM64LN_4AR', TIMESTAMP WITH TIME ZONE '2022-12-19 07:40:07.175+00'), +(11, 'Live births by Order', NULL, '#509EE3', TRUE, '/2/', NULL, 'live_births_by_order', NULL, NULL, 'cvQYsSA1hupC9a000w9pn', TIMESTAMP WITH TIME ZONE '2022-12-19 08:39:34.27+00'), +(12, 'Live births by age of Mother', NULL, '#509EE3', FALSE, '/2/', NULL, 'live_births_by_age_of_mother', NULL, NULL, 'yhrAnvFm9vod8LpKaVzMr', TIMESTAMP WITH TIME ZONE '2022-12-19 09:34:42.54+00'), +(13, 'Age of Mother by Birth Order', NULL, '#509EE3', FALSE, '/2/', NULL, 'age_of_mother_by_birth_order', NULL, NULL, 'vAq0oMfa2R_zaHHPfWYt-', TIMESTAMP WITH TIME ZONE '2022-12-19 10:19:36.059+00'), +(14, 'Live Births by Level of Education of Parent', NULL, '#509EE3', TRUE, '/2/', NULL, 'live_births_by_level_of_education_of_parent', NULL, NULL, 'o5y-bvFWBYYmS8oyeSdgE', TIMESTAMP WITH TIME ZONE '2022-12-19 10:20:47.134+00'), +(15, 'Live Births by Type of Birth', NULL, '#509EE3', TRUE, '/2/', NULL, 'live_births_by_type_of_birth', NULL, NULL, 'Wqfkq8mVd5hRnRkzXPF1v', TIMESTAMP WITH TIME ZONE '2022-12-19 10:35:06.25+00'), +(16, 'Statistics Dashboard', NULL, '#509EE3', TRUE, '/3/', NULL, 'statistics_dashboard', NULL, NULL, 'UVvLZ5FE10beMDZT6WiNO', TIMESTAMP WITH TIME ZONE '2022-12-20 05:38:14.416+00'), +(17, 'Corrections by type', NULL, '#509EE3', FALSE, '/2/', NULL, 'corrections_by_type', NULL, NULL, 'OFMEtecbBt-Ml-2vclWgH', TIMESTAMP WITH TIME ZONE '2022-12-20 06:49:24.453+00'), +(18, 'Registrations by State', NULL, '#509EE3', FALSE, '/2/', NULL, 'registrations_by_state', NULL, NULL, '21lMNml8Vaqy5DBY44GBK', TIMESTAMP WITH TIME ZONE '2023-01-24 10:27:40.548+00'); +CREATE INDEX PUBLIC.IDX_COLLECTION_LOCATION ON PUBLIC.COLLECTION(LOCATION); +CREATE INDEX PUBLIC.IDX_COLLECTION_PERSONAL_OWNER_ID ON PUBLIC.COLLECTION(PERSONAL_OWNER_ID); +DROP TABLE IF EXISTS SYSTEM_LOB_STREAM; +CALL SYSTEM_COMBINE_BLOB(-1); +DROP ALIAS IF EXISTS SYSTEM_COMBINE_CLOB; +DROP ALIAS IF EXISTS SYSTEM_COMBINE_BLOB; +ALTER TABLE PUBLIC.DIMENSION ADD CONSTRAINT PUBLIC.UNIQUE_DIMENSION_FIELD_ID_NAME UNIQUE(FIELD_ID, NAME); +ALTER TABLE PUBLIC.METRIC_IMPORTANT_FIELD ADD CONSTRAINT PUBLIC.UNIQUE_METRIC_IMPORTANT_FIELD_METRIC_ID_FIELD_ID UNIQUE(METRIC_ID, FIELD_ID); +ALTER TABLE PUBLIC.METABASE_FIELD ADD CONSTRAINT PUBLIC.IDX_UNIQ_FIELD_TABLE_ID_PARENT_ID_NAME UNIQUE(TABLE_ID, PARENT_ID, NAME); +ALTER TABLE PUBLIC.PULSE_CARD ADD CONSTRAINT PUBLIC.CONSTRAINT_A4 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.COLLECTION ADD CONSTRAINT PUBLIC.UNIQUE_COLLECTION_PERSONAL_OWNER_ID UNIQUE(PERSONAL_OWNER_ID); +ALTER TABLE PUBLIC.BOOKMARK_ORDERING ADD CONSTRAINT PUBLIC.UNIQUE_BOOKMARK_USER_ID_TYPE_ITEM_ID UNIQUE(USER_ID, TYPE, ITEM_ID); +ALTER TABLE PUBLIC.REPORT_CARDFAVORITE ADD CONSTRAINT PUBLIC.IDX_UNIQUE_CARDFAVORITE_CARD_ID_OWNER_ID UNIQUE(CARD_ID, OWNER_ID); +ALTER TABLE PUBLIC.METABASE_TABLE ADD CONSTRAINT PUBLIC.IDX_UNIQ_TABLE_DB_ID_SCHEMA_NAME UNIQUE(DB_ID, SCHEMA, NAME); +ALTER TABLE PUBLIC.DATABASECHANGELOG ADD CONSTRAINT PUBLIC.IDX_DATABASECHANGELOG_ID_AUTHOR_FILENAME UNIQUE(ID, AUTHOR, FILENAME); +ALTER TABLE PUBLIC.TIMELINE ADD CONSTRAINT PUBLIC.CONSTRAINT_B2 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.MODEL_ACTION ADD CONSTRAINT PUBLIC.UNIQUE_MODEL_ACTION_CARD_ID_SLUG UNIQUE(CARD_ID, SLUG); +ALTER TABLE PUBLIC.PERMISSIONS_GROUP ADD CONSTRAINT PUBLIC.UNIQUE_PERMISSIONS_GROUP_NAME UNIQUE(NAME); +ALTER TABLE PUBLIC.SEGMENT ADD CONSTRAINT PUBLIC.CONSTRAINT_A UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.DASHBOARD_BOOKMARK ADD CONSTRAINT PUBLIC.UNIQUE_DASHBOARD_BOOKMARK_USER_ID_DASHBOARD_ID UNIQUE(USER_ID, DASHBOARD_ID); +ALTER TABLE PUBLIC.PERSISTED_INFO ADD CONSTRAINT PUBLIC.CONSTRAINT_2 UNIQUE(CARD_ID); +ALTER TABLE PUBLIC.CORE_USER ADD CONSTRAINT PUBLIC.CONSTRAINT_4 UNIQUE(EMAIL); +ALTER TABLE PUBLIC.PULSE_CHANNEL ADD CONSTRAINT PUBLIC.CONSTRAINT_5 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.DIMENSION ADD CONSTRAINT PUBLIC.CONSTRAINT_6 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.GROUP_TABLE_ACCESS_POLICY ADD CONSTRAINT PUBLIC.UNIQUE_GTAP_TABLE_ID_GROUP_ID UNIQUE(TABLE_ID, GROUP_ID); +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.CONSTRAINT_7 UNIQUE(PUBLIC_UUID); +ALTER TABLE PUBLIC.METRIC ADD CONSTRAINT PUBLIC.CONSTRAINT_8 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.REPORT_DASHBOARD ADD CONSTRAINT PUBLIC.CONSTRAINT_9 UNIQUE(PUBLIC_UUID); +ALTER TABLE PUBLIC.REPORT_DASHBOARDCARD ADD CONSTRAINT PUBLIC.CONSTRAINT_1 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.BOOKMARK_ORDERING ADD CONSTRAINT PUBLIC.UNIQUE_BOOKMARK_USER_ID_ORDERING UNIQUE(USER_ID, ORDERING); +ALTER TABLE PUBLIC.MODEL_ACTION ADD CONSTRAINT PUBLIC.CONSTRAINT_80 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.COLLECTION ADD CONSTRAINT PUBLIC.CONSTRAINT_B UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.PERMISSIONS ADD CONSTRAINT PUBLIC.CONSTRAINT_C UNIQUE(GROUP_ID, OBJECT); +ALTER TABLE PUBLIC.APP ADD CONSTRAINT PUBLIC.CONSTRAINT_F UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.REPORT_DASHBOARD ADD CONSTRAINT PUBLIC.CONSTRAINT_97 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.NATIVE_QUERY_SNIPPET ADD CONSTRAINT PUBLIC.CONSTRAINT_4B3 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.LABEL ADD CONSTRAINT PUBLIC.CONSTRAINT_44 UNIQUE(SLUG); +ALTER TABLE PUBLIC.PULSE ADD CONSTRAINT PUBLIC.CONSTRAINT_48 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP ADD CONSTRAINT PUBLIC.UNIQUE_PERMISSIONS_GROUP_MEMBERSHIP_USER_ID_GROUP_ID UNIQUE(USER_ID, GROUP_ID); +ALTER TABLE PUBLIC.NATIVE_QUERY_SNIPPET ADD CONSTRAINT PUBLIC.CONSTRAINT_4B UNIQUE(NAME); +ALTER TABLE PUBLIC.CARD_BOOKMARK ADD CONSTRAINT PUBLIC.UNIQUE_CARD_BOOKMARK_USER_ID_CARD_ID UNIQUE(USER_ID, CARD_ID); +ALTER TABLE PUBLIC.APP ADD CONSTRAINT PUBLIC.CONSTRAINT_FE UNIQUE(COLLECTION_ID); +ALTER TABLE PUBLIC.DASHBOARD_FAVORITE ADD CONSTRAINT PUBLIC.UNIQUE_DASHBOARD_FAVORITE_USER_ID_DASHBOARD_ID UNIQUE(USER_ID, DASHBOARD_ID); +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.CONSTRAINT_73 UNIQUE(ENTITY_ID); +ALTER TABLE PUBLIC.COLLECTION_BOOKMARK ADD CONSTRAINT PUBLIC.UNIQUE_COLLECTION_BOOKMARK_USER_ID_COLLECTION_ID UNIQUE(USER_ID, COLLECTION_ID); +ALTER TABLE PUBLIC.CARD_LABEL ADD CONSTRAINT PUBLIC.UNIQUE_CARD_LABEL_CARD_ID_LABEL_ID UNIQUE(CARD_ID, LABEL_ID); +ALTER TABLE PUBLIC.METABASE_FIELD ADD CONSTRAINT PUBLIC.FK_FIELD_PARENT_REF_FIELD_ID FOREIGN KEY(PARENT_ID) REFERENCES PUBLIC.METABASE_FIELD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PERSISTED_INFO ADD CONSTRAINT PUBLIC.FK_PERSISTED_INFO_REF_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) NOCHECK; +ALTER TABLE PUBLIC.CORE_SESSION ADD CONSTRAINT PUBLIC.FK_SESSION_REF_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REPORT_DASHBOARD ADD CONSTRAINT PUBLIC.FK_DASHBOARD_MADE_PUBLIC_BY_ID FOREIGN KEY(MADE_PUBLIC_BY_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.QUERY_ACTION ADD CONSTRAINT PUBLIC.FK_QUERY_ACTION_REF_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.TIMELINE_EVENT ADD CONSTRAINT PUBLIC.FK_EVENT_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DASHBOARDCARD_SERIES ADD CONSTRAINT PUBLIC.FK_DASHBOARDCARD_SERIES_REF_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.HTTP_ACTION ADD CONSTRAINT PUBLIC.FK_HTTP_ACTION_REF_ACTION_ID FOREIGN KEY(ACTION_ID) REFERENCES PUBLIC.ACTION(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP ADD CONSTRAINT PUBLIC.FK_PERMISSIONS_GROUP_MEMBERSHIP_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.APP ADD CONSTRAINT PUBLIC.FK_APP_REF_DASHBOARD_ID FOREIGN KEY(DASHBOARD_ID) REFERENCES PUBLIC.REPORT_DASHBOARD(ID) ON DELETE SET NULL NOCHECK; +ALTER TABLE PUBLIC.GROUP_TABLE_ACCESS_POLICY ADD CONSTRAINT PUBLIC.FK_GTAP_GROUP_ID FOREIGN KEY(GROUP_ID) REFERENCES PUBLIC.PERMISSIONS_GROUP(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.QRTZ_BLOB_TRIGGERS ADD CONSTRAINT PUBLIC.FK_QRTZ_BLOB_TRIGGERS_TRIGGERS FOREIGN KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) REFERENCES PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) NOCHECK; +ALTER TABLE PUBLIC.REPORT_DASHBOARDCARD ADD CONSTRAINT PUBLIC.FK_DASHBOARDCARD_REF_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DASHBOARD_BOOKMARK ADD CONSTRAINT PUBLIC.FK_DASHBOARD_BOOKMARK_DASHBOARD_ID FOREIGN KEY(DASHBOARD_ID) REFERENCES PUBLIC.REPORT_DASHBOARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PERSISTED_INFO ADD CONSTRAINT PUBLIC.FK_PERSISTED_INFO_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE_CARD ADD CONSTRAINT PUBLIC.FK_PULSE_CARD_REF_PULSE_ID FOREIGN KEY(PULSE_ID) REFERENCES PUBLIC.PULSE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DASHBOARDCARD_SERIES ADD CONSTRAINT PUBLIC.FK_DASHBOARDCARD_SERIES_REF_DASHBOARDCARD_ID FOREIGN KEY(DASHBOARDCARD_ID) REFERENCES PUBLIC.REPORT_DASHBOARDCARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.NATIVE_QUERY_SNIPPET ADD CONSTRAINT PUBLIC.FK_SNIPPET_COLLECTION_ID FOREIGN KEY(COLLECTION_ID) REFERENCES PUBLIC.COLLECTION(ID) ON DELETE SET NULL NOCHECK; +ALTER TABLE PUBLIC.REPORT_DASHBOARDCARD ADD CONSTRAINT PUBLIC.FK_REPORT_DASHBOARDCARD_REF_ACTION_ID FOREIGN KEY(ACTION_ID) REFERENCES PUBLIC.ACTION(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.QRTZ_SIMPLE_TRIGGERS ADD CONSTRAINT PUBLIC.FK_QRTZ_SIMPLE_TRIGGERS_TRIGGERS FOREIGN KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) REFERENCES PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) NOCHECK; +ALTER TABLE PUBLIC.PULSE ADD CONSTRAINT PUBLIC.FK_PULSE_COLLECTION_ID FOREIGN KEY(COLLECTION_ID) REFERENCES PUBLIC.COLLECTION(ID) ON DELETE SET NULL NOCHECK; +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.FK_CARD_REF_USER_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.LOGIN_HISTORY ADD CONSTRAINT PUBLIC.FK_LOGIN_HISTORY_SESSION_ID FOREIGN KEY(SESSION_ID) REFERENCES PUBLIC.CORE_SESSION(ID) ON DELETE SET NULL NOCHECK; +ALTER TABLE PUBLIC.VIEW_LOG ADD CONSTRAINT PUBLIC.FK_VIEW_LOG_REF_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REPORT_CARDFAVORITE ADD CONSTRAINT PUBLIC.FK_CARDFAVORITE_REF_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.GROUP_TABLE_ACCESS_POLICY ADD CONSTRAINT PUBLIC.FK_GTAP_TABLE_ID FOREIGN KEY(TABLE_ID) REFERENCES PUBLIC.METABASE_TABLE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.TIMELINE_EVENT ADD CONSTRAINT PUBLIC.FK_EVENTS_TIMELINE_ID FOREIGN KEY(TIMELINE_ID) REFERENCES PUBLIC.TIMELINE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REPORT_DASHBOARDCARD ADD CONSTRAINT PUBLIC.FK_DASHBOARDCARD_REF_DASHBOARD_ID FOREIGN KEY(DASHBOARD_ID) REFERENCES PUBLIC.REPORT_DASHBOARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.QRTZ_TRIGGERS ADD CONSTRAINT PUBLIC.FK_QRTZ_TRIGGERS_JOB_DETAILS FOREIGN KEY(SCHED_NAME, JOB_NAME, JOB_GROUP) REFERENCES PUBLIC.QRTZ_JOB_DETAILS(SCHED_NAME, JOB_NAME, JOB_GROUP) NOCHECK; +ALTER TABLE PUBLIC.LOGIN_HISTORY ADD CONSTRAINT PUBLIC.FK_LOGIN_HISTORY_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.CARD_BOOKMARK ADD CONSTRAINT PUBLIC.FK_CARD_BOOKMARK_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.METRIC_IMPORTANT_FIELD ADD CONSTRAINT PUBLIC.FK_METRIC_IMPORTANT_FIELD_METABASE_FIELD_ID FOREIGN KEY(FIELD_ID) REFERENCES PUBLIC.METABASE_FIELD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REPORT_DASHBOARD ADD CONSTRAINT PUBLIC.FK_DASHBOARD_REF_USER_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.GROUP_TABLE_ACCESS_POLICY ADD CONSTRAINT PUBLIC.FK_GTAP_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.APPLICATION_PERMISSIONS_REVISION ADD CONSTRAINT PUBLIC.FK_GENERAL_PERMISSIONS_REVISION_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) NOCHECK; +ALTER TABLE PUBLIC.COLLECTION_BOOKMARK ADD CONSTRAINT PUBLIC.FK_COLLECTION_BOOKMARK_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PERSISTED_INFO ADD CONSTRAINT PUBLIC.FK_PERSISTED_INFO_DATABASE_ID FOREIGN KEY(DATABASE_ID) REFERENCES PUBLIC.METABASE_DATABASE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.SECRET ADD CONSTRAINT PUBLIC.FK_SECRET_REF_USER_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) NOCHECK; +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.FK_CARD_MADE_PUBLIC_BY_ID FOREIGN KEY(MADE_PUBLIC_BY_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.METABASE_FIELDVALUES ADD CONSTRAINT PUBLIC.FK_FIELDVALUES_REF_FIELD_ID FOREIGN KEY(FIELD_ID) REFERENCES PUBLIC.METABASE_FIELD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.APP ADD CONSTRAINT PUBLIC.FK_APP_REF_COLLECTION_ID FOREIGN KEY(COLLECTION_ID) REFERENCES PUBLIC.COLLECTION(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PERMISSIONS ADD CONSTRAINT PUBLIC.FK_PERMISSIONS_GROUP_ID FOREIGN KEY(GROUP_ID) REFERENCES PUBLIC.PERMISSIONS_GROUP(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE_CARD ADD CONSTRAINT PUBLIC.FK_PULSE_CARD_REF_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.TIMELINE ADD CONSTRAINT PUBLIC.FK_TIMELINE_COLLECTION_ID FOREIGN KEY(COLLECTION_ID) REFERENCES PUBLIC.COLLECTION(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.COMPUTATION_JOB_RESULT ADD CONSTRAINT PUBLIC.FK_COMPUTATION_RESULT_REF_JOB_ID FOREIGN KEY(JOB_ID) REFERENCES PUBLIC.COMPUTATION_JOB(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.COLLECTION_PERMISSION_GRAPH_REVISION ADD CONSTRAINT PUBLIC.FK_COLLECTION_REVISION_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DASHBOARD_FAVORITE ADD CONSTRAINT PUBLIC.FK_DASHBOARD_FAVORITE_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.QRTZ_CRON_TRIGGERS ADD CONSTRAINT PUBLIC.FK_QRTZ_CRON_TRIGGERS_TRIGGERS FOREIGN KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) REFERENCES PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) NOCHECK; +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.FK_REPORT_CARD_REF_DATABASE_ID FOREIGN KEY(DATABASE_ID) REFERENCES PUBLIC.METABASE_DATABASE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REVISION ADD CONSTRAINT PUBLIC.FK_REVISION_REF_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.SEGMENT ADD CONSTRAINT PUBLIC.FK_SEGMENT_REF_TABLE_ID FOREIGN KEY(TABLE_ID) REFERENCES PUBLIC.METABASE_TABLE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.QRTZ_SIMPROP_TRIGGERS ADD CONSTRAINT PUBLIC.FK_QRTZ_SIMPROP_TRIGGERS_TRIGGERS FOREIGN KEY(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) REFERENCES PUBLIC.QRTZ_TRIGGERS(SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) NOCHECK; +ALTER TABLE PUBLIC.METABASE_DATABASE ADD CONSTRAINT PUBLIC.FK_DATABASE_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE SET NULL NOCHECK; +ALTER TABLE PUBLIC.METRIC ADD CONSTRAINT PUBLIC.FK_METRIC_REF_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE_CHANNEL ADD CONSTRAINT PUBLIC.FK_PULSE_CHANNEL_REF_PULSE_ID FOREIGN KEY(PULSE_ID) REFERENCES PUBLIC.PULSE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.FK_REPORT_CARD_REF_TABLE_ID FOREIGN KEY(TABLE_ID) REFERENCES PUBLIC.METABASE_TABLE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.COLLECTION_BOOKMARK ADD CONSTRAINT PUBLIC.FK_COLLECTION_BOOKMARK_COLLECTION_ID FOREIGN KEY(COLLECTION_ID) REFERENCES PUBLIC.COLLECTION(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.METRIC_IMPORTANT_FIELD ADD CONSTRAINT PUBLIC.FK_METRIC_IMPORTANT_FIELD_METRIC_ID FOREIGN KEY(METRIC_ID) REFERENCES PUBLIC.METRIC(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.MODEL_ACTION ADD CONSTRAINT PUBLIC.FK_MODEL_ACTION_REF_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DIMENSION ADD CONSTRAINT PUBLIC.FK_DIMENSION_DISPLAYFK_REF_FIELD_ID FOREIGN KEY(HUMAN_READABLE_FIELD_ID) REFERENCES PUBLIC.METABASE_FIELD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.METABASE_FIELD ADD CONSTRAINT PUBLIC.FK_FIELD_REF_TABLE_ID FOREIGN KEY(TABLE_ID) REFERENCES PUBLIC.METABASE_TABLE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.CARD_LABEL ADD CONSTRAINT PUBLIC.FK_CARD_LABEL_REF_LABEL_ID FOREIGN KEY(LABEL_ID) REFERENCES PUBLIC.LABEL(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE ADD CONSTRAINT PUBLIC.FK_PULSE_REF_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.BOOKMARK_ORDERING ADD CONSTRAINT PUBLIC.FK_BOOKMARK_ORDERING_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE_CHANNEL_RECIPIENT ADD CONSTRAINT PUBLIC.FK_PULSE_CHANNEL_RECIPIENT_REF_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.QUERY_ACTION ADD CONSTRAINT PUBLIC.FK_QUERY_ACTION_REF_ACTION_ID FOREIGN KEY(ACTION_ID) REFERENCES PUBLIC.ACTION(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.COMPUTATION_JOB ADD CONSTRAINT PUBLIC.FK_COMPUTATION_JOB_REF_USER_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DASHBOARD_BOOKMARK ADD CONSTRAINT PUBLIC.FK_DASHBOARD_BOOKMARK_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.METRIC ADD CONSTRAINT PUBLIC.FK_METRIC_REF_TABLE_ID FOREIGN KEY(TABLE_ID) REFERENCES PUBLIC.METABASE_TABLE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.COLLECTION ADD CONSTRAINT PUBLIC.FK_COLLECTION_PERSONAL_OWNER_ID FOREIGN KEY(PERSONAL_OWNER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.CARD_BOOKMARK ADD CONSTRAINT PUBLIC.FK_CARD_BOOKMARK_DASHBOARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE ADD CONSTRAINT PUBLIC.FK_PULSE_REF_DASHBOARD_ID FOREIGN KEY(DASHBOARD_ID) REFERENCES PUBLIC.REPORT_DASHBOARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REPORT_CARDFAVORITE ADD CONSTRAINT PUBLIC.FK_CARDFAVORITE_REF_USER_ID FOREIGN KEY(OWNER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DASHBOARD_FAVORITE ADD CONSTRAINT PUBLIC.FK_DASHBOARD_FAVORITE_DASHBOARD_ID FOREIGN KEY(DASHBOARD_ID) REFERENCES PUBLIC.REPORT_DASHBOARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.MODEL_ACTION ADD CONSTRAINT PUBLIC.FK_MODEL_ACTION_REF_ACTION_ID FOREIGN KEY(ACTION_ID) REFERENCES PUBLIC.ACTION(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE_CARD ADD CONSTRAINT PUBLIC.FK_PULSE_CARD_REF_PULSE_CARD_ID FOREIGN KEY(DASHBOARD_CARD_ID) REFERENCES PUBLIC.REPORT_DASHBOARDCARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.REPORT_DASHBOARD ADD CONSTRAINT PUBLIC.FK_DASHBOARD_COLLECTION_ID FOREIGN KEY(COLLECTION_ID) REFERENCES PUBLIC.COLLECTION(ID) ON DELETE SET NULL NOCHECK; +ALTER TABLE PUBLIC.REPORT_CARD ADD CONSTRAINT PUBLIC.FK_CARD_COLLECTION_ID FOREIGN KEY(COLLECTION_ID) REFERENCES PUBLIC.COLLECTION(ID) ON DELETE SET NULL NOCHECK; +ALTER TABLE PUBLIC.CARD_LABEL ADD CONSTRAINT PUBLIC.FK_CARD_LABEL_REF_CARD_ID FOREIGN KEY(CARD_ID) REFERENCES PUBLIC.REPORT_CARD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.METABASE_TABLE ADD CONSTRAINT PUBLIC.FK_TABLE_REF_DATABASE_ID FOREIGN KEY(DB_ID) REFERENCES PUBLIC.METABASE_DATABASE(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.DIMENSION ADD CONSTRAINT PUBLIC.FK_DIMENSION_REF_FIELD_ID FOREIGN KEY(FIELD_ID) REFERENCES PUBLIC.METABASE_FIELD(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PERMISSIONS_GROUP_MEMBERSHIP ADD CONSTRAINT PUBLIC.FK_PERMISSIONS_GROUP_GROUP_ID FOREIGN KEY(GROUP_ID) REFERENCES PUBLIC.PERMISSIONS_GROUP(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.ACTIVITY ADD CONSTRAINT PUBLIC.FK_ACTIVITY_REF_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PERMISSIONS_REVISION ADD CONSTRAINT PUBLIC.FK_PERMISSIONS_REVISION_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.NATIVE_QUERY_SNIPPET ADD CONSTRAINT PUBLIC.FK_SNIPPET_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.PULSE_CHANNEL_RECIPIENT ADD CONSTRAINT PUBLIC.FK_PULSE_CHANNEL_RECIPIENT_REF_PULSE_CHANNEL_ID FOREIGN KEY(PULSE_CHANNEL_ID) REFERENCES PUBLIC.PULSE_CHANNEL(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.SEGMENT ADD CONSTRAINT PUBLIC.FK_SEGMENT_REF_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.TIMELINE ADD CONSTRAINT PUBLIC.FK_TIMELINE_CREATOR_ID FOREIGN KEY(CREATOR_ID) REFERENCES PUBLIC.CORE_USER(ID) ON DELETE CASCADE NOCHECK; +ALTER TABLE PUBLIC.APP_PERMISSION_GRAPH_REVISION ADD CONSTRAINT PUBLIC.FK_APP_PERMISSION_GRAPH_REVISION_USER_ID FOREIGN KEY(USER_ID) REFERENCES PUBLIC.CORE_USER(ID) NOCHECK; diff --git a/src/api/data-generator/handler.ts b/src/api/data-generator/handler.ts new file mode 100644 index 0000000000..9265a8e791 --- /dev/null +++ b/src/api/data-generator/handler.ts @@ -0,0 +1,21 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ +import * as Hapi from '@hapi/hapi' +import { getStatistics } from '@countryconfig/api/data-generator/service' + +export async function statisticsHandler( + request: Hapi.Request, + h: Hapi.ResponseToolkit +) { + // This handler is only used by the dummy data-generator script for demo purposes + // TODO: it is technical debt and data-generator should instead call the Core FHIR APIs + return getStatistics() +} diff --git a/src/api/data-generator/service.ts b/src/api/data-generator/service.ts new file mode 100644 index 0000000000..3a6099f90f --- /dev/null +++ b/src/api/data-generator/service.ts @@ -0,0 +1,73 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ +import { FHIR_URL } from '@countryconfig/constants' +import fetch from 'node-fetch' +import { merge } from 'lodash' + +const STATISTIC_EXTENSION_URLS = [ + 'http://opencrvs.org/specs/id/statistics-male-populations', + 'http://opencrvs.org/specs/id/statistics-female-populations', + 'http://opencrvs.org/specs/id/statistics-total-populations', + 'http://opencrvs.org/specs/id/statistics-male-female-ratios', + 'http://opencrvs.org/specs/id/statistics-crude-birth-rates' +] + +type StatisticsExtension = { valueString: string; url: string } + +type BundleEntryWithLocation = Omit & { + resource: fhir.Location +} + +export async function getStatistics() { + // This function is only used by the data generator script + // TODO: it is technical debt and data-generator should instead call the Core FHIR API + const res = await fetch(`${FHIR_URL}/Location?type=ADMIN_STRUCTURE&_count=0`) + const locationBundle: fhir.Bundle = await res.json() + if (!locationBundle.entry) { + throw new Error('Received invalid FHIR location bundle') + } + + const locations = locationBundle.entry + .filter((entry: fhir.BundleEntry): entry is BundleEntryWithLocation => { + if (!entry.resource || !entry.resource.id) { + throw new Error('Resource in entry not valid') + } + return Boolean((entry.resource as fhir.Location | undefined)?.extension) + }) + .map((entry: BundleEntryWithLocation) => { + /* + * This parses the format we store statistics in FHIR into a more API-consumer friendly format + */ + + const statistics: Record = {} + + entry.resource.extension + ?.filter((ext): ext is StatisticsExtension => + STATISTIC_EXTENSION_URLS.includes(ext.url) + ) + .forEach((item) => { + const values: Array<{ + [year: string]: number + }> = JSON.parse(item.valueString) + + // eslint-disable-next-line prefer-spread + statistics[item.url] = merge.apply(null, values) + }) + + return { + id: entry.resource.id, + statistics + } + }) + .filter(({ statistics }) => Object.keys(statistics).length > 0) + + return locations +} diff --git a/src/api/workqueue/__snapshots__/workqueueConfig.test.ts.snap b/src/api/workqueue/__snapshots__/workqueueConfig.test.ts.snap new file mode 100644 index 0000000000..ec430acd1b --- /dev/null +++ b/src/api/workqueue/__snapshots__/workqueueConfig.test.ts.snap @@ -0,0 +1,794 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Workqueue config > should match the snapshot (Workqueue integrity) 1`] = ` +[ + { + "actions": [ + { + "conditionals": [], + "type": "VALIDATE", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Last updated", + "description": "This is the label for the workqueue column", + "id": "workqueue.default.column.modifiedAt", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "Draft", + "name": { + "defaultMessage": "In progress", + "description": "Title of in progress workqueue", + "id": "workqueues.inProgress.title", + }, + "query": { + "clauses": [ + {}, + ], + "type": "and", + }, + "slug": "in-progress", + }, + { + "actions": [ + { + "conditionals": [], + "type": "READ", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Last updated", + "description": "This is the label for the workqueue column", + "id": "workqueue.default.column.modifiedAt", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileSearch", + "name": { + "defaultMessage": "Correction requested", + "description": "Title of correction requested workqueue", + "id": "workqueues.correctionRequested.title", + }, + "query": { + "clauses": [ + {}, + ], + "type": "and", + }, + "slug": "correction-requested", + }, + { + "actions": [], + "columns": [ + { + "label": { + "defaultMessage": "Sent for your attestation", + "description": "Label for workqueue column: waitingForAttestation.dateOfEvent", + "id": "workqueues.waitingForAttestation.dateOfEvent", + }, + "value": { + "$event": "createdAt", + }, + }, + { + "label": { + "defaultMessage": "Status of the event", + "description": "Label for workqueue column: eventStatus", + "id": "workqueues.eventStatus", + }, + "value": { + "$event": "status", + }, + }, + ], + "icon": "FileSearch", + "name": { + "defaultMessage": "Waiting for attestation", + "description": "Title of waiting for attestation", + "id": "workqueues.waitingForAttestation.title", + }, + "query": { + "clauses": [ + {}, + ], + "type": "and", + }, + "slug": "waiting-for-attestation", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Last updated", + "description": "This is the label for the workqueue column", + "id": "workqueue.default.column.modifiedAt", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "PushPin", + "name": { + "defaultMessage": "Assigned to you", + "description": "Title of assigned to you workqueue", + "id": "workqueues.assignedToYou.title", + }, + "query": { + "clauses": [ + { + "assignedTo": { + "term": { + "$userField": "id", + }, + "type": "exact", + }, + }, + ], + "type": "and", + }, + "slug": "assigned-to-you", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Last updated", + "description": "This is the label for the workqueue column", + "id": "workqueue.default.column.modifiedAt", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "emptyMessage": { + "defaultMessage": "No recent records", + "description": "Empty message for recent workqueue", + "id": "workqueues.recent.emptyMessage", + }, + "icon": "Timer", + "name": { + "defaultMessage": "Recent", + "description": "Title of recent workqueue", + "id": "workqueues.recent.title", + }, + "query": { + "clauses": [ + { + "updatedAt": { + "term": "last7Days", + "type": "timePeriod", + }, + "updatedBy": { + "term": { + "$userField": "id", + }, + "type": "exact", + }, + }, + ], + "type": "and", + }, + "slug": "recent", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Last updated", + "description": "This is the label for the workqueue column", + "id": "workqueue.default.column.modifiedAt", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "emptyMessage": { + "defaultMessage": "No notifications", + "description": "Empty message for notifications workqueue", + "id": "workqueues.notifications.emptyMessage", + }, + "icon": "File", + "name": { + "defaultMessage": "Notifications", + "description": "Title of notifications workqueue", + "id": "workqueues.notifications.title", + }, + "query": { + "clauses": [ + { + "flags": { + "anyOf": [ + "incomplete", + ], + "noneOf": [ + "rejected", + ], + }, + "updatedAtLocation": { + "term": { + "$userField": "primaryOfficeId", + }, + "type": "exact", + }, + }, + ], + "type": "and", + }, + "slug": "requires-completion", + }, + { + "actions": [], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Sent for review", + "description": "This is the label for the workqueue column", + "id": "workqueue.sent-for-review.column.sent-for-review", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileSearch", + "name": { + "defaultMessage": "Sent for review", + "description": "Title of sent for review workqueue", + "id": "workqueues.sentForReview.title", + }, + "query": { + "clauses": [ + { + "createdBy": { + "term": { + "$userField": "id", + }, + "type": "exact", + }, + "flags": { + "noneOf": [ + "rejected", + ], + }, + "status": { + "terms": [ + "DECLARED", + "NOTIFIED", + ], + "type": "anyOf", + }, + }, + ], + "type": "and", + }, + "slug": "sent-for-review", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Sent for review", + "description": "This is the label for the workqueue column", + "id": "workqueue.in-review.column.sent-for-update", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileSearch", + "name": { + "defaultMessage": "Ready for review", + "description": "Title of ready for review workqueue", + "id": "workqueues.inReview.title", + }, + "query": { + "clauses": [ + { + "flags": { + "noneOf": [ + "rejected", + ], + }, + "status": { + "term": "DECLARED", + "type": "exact", + }, + "updatedAtLocation": { + "term": { + "$userField": "primaryOfficeId", + }, + "type": "exact", + }, + }, + ], + "type": "and", + }, + "slug": "in-review", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Sent for review", + "description": "This is the label for the workqueue column", + "id": "workqueue.in-review-all.column.sent-for-review", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileSearch", + "name": { + "defaultMessage": "Ready for review", + "description": "Title of ready for review (all) workqueue", + "id": "workqueues.inReviewAll.title", + }, + "query": { + "clauses": [ + { + "flags": { + "noneOf": [ + "rejected", + ], + }, + "status": { + "terms": [ + "DECLARED", + "VALIDATED", + ], + "type": "anyOf", + }, + "updatedAtLocation": { + "term": { + "$userField": "primaryOfficeId", + }, + "type": "exact", + }, + }, + { + "flags": { + "anyOf": [ + "correction-requested", + ], + }, + "updatedAtLocation": { + "term": { + "$userField": "primaryOfficeId", + }, + "type": "exact", + }, + }, + ], + "type": "or", + }, + "slug": "in-review-all", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Sent for update", + "description": "This is the label for the workqueue column", + "id": "workqueue.sent-for-update.column.sent-for-update", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileMinus", + "name": { + "defaultMessage": "Requires updates", + "description": "Title of requires updates workqueue", + "id": "workqueues.requiresUpdates.title", + }, + "query": { + "clauses": [ + { + "createdBy": { + "term": { + "$userField": "id", + }, + "type": "exact", + }, + "flags": { + "anyOf": [ + "rejected", + ], + }, + "status": { + "terms": [ + "DECLARED", + "NOTIFIED", + ], + "type": "anyOf", + }, + }, + ], + "type": "and", + }, + "slug": "requires-updates-self", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Sent for update", + "description": "This is the label for the workqueue column", + "id": "workqueue.sent-for-update.column.sent-for-update", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileMinus", + "name": { + "defaultMessage": "Requires updates", + "description": "Title of requires updates workqueue", + "id": "workqueues.requiresUpdates.title", + }, + "query": { + "clauses": [ + { + "flags": { + "anyOf": [ + "rejected", + ], + }, + "updatedAtLocation": { + "term": { + "$userField": "primaryOfficeId", + }, + "type": "exact", + }, + }, + ], + "type": "and", + }, + "slug": "requires-updates-office", + }, + { + "actions": [], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Sent for approval", + "description": "This is the label for the workqueue column", + "id": "workqueue.sent-for-approval.column.sent-for-approval", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileText", + "name": { + "defaultMessage": "Sent for approval", + "description": "Title of sent for approval workqueue", + "id": "workqueues.sentForApproval.title", + }, + "query": { + "clauses": [ + { + "flags": { + "noneOf": [ + "rejected", + ], + }, + "status": { + "term": "VALIDATED", + "type": "exact", + }, + "updatedBy": { + "term": { + "$userField": "id", + }, + "type": "exact", + }, + }, + { + "flags": { + "anyOf": [ + "correction-requested", + ], + }, + "updatedBy": { + "term": { + "$userField": "id", + }, + "type": "exact", + }, + }, + ], + "type": "or", + }, + "slug": "sent-for-approval", + }, + { + "actions": [ + { + "conditionals": [], + "type": "DEFAULT", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Last updated", + "description": "This is the label for the workqueue column", + "id": "workqueue.default.column.modifiedAt", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "FileText", + "name": { + "defaultMessage": "In external validation", + "description": "Title of in external validation workqueue", + "id": "workqueues.inExternalValidation.title", + }, + "query": { + "clauses": [ + { + "flags": { + "anyOf": [ + "register:requested", + ], + }, + "updatedAtLocation": { + "term": { + "$userField": "primaryOfficeId", + }, + "type": "exact", + }, + }, + ], + "type": "and", + }, + "slug": "in-external-validation", + }, + { + "actions": [ + { + "conditionals": [], + "type": "PRINT_CERTIFICATE", + }, + ], + "columns": [ + { + "label": { + "defaultMessage": "Date of Event", + "description": "Label for workqueue column: dateOfEvent", + "id": "workqueues.dateOfEvent", + }, + "value": { + "$event": "dateOfEvent", + }, + }, + { + "label": { + "defaultMessage": "Registered", + "description": "This is the label for the workqueue column", + "id": "workqueue.ready-to-print.column.registered", + }, + "value": { + "$event": "updatedAt", + }, + }, + ], + "icon": "Printer", + "name": { + "defaultMessage": "Ready to print", + "description": "Title of ready to print workqueue", + "id": "workqueues.readyToPrint.title", + }, + "query": { + "clauses": [ + { + "flags": { + "anyOf": [ + "pending-certification", + ], + "noneOf": [ + "correction-requested", + ], + }, + "status": { + "term": "REGISTERED", + "type": "exact", + }, + "updatedAtLocation": { + "term": { + "$userField": "primaryOfficeId", + }, + "type": "exact", + }, + }, + ], + "type": "and", + }, + "slug": "ready-to-print", + }, +] +`; diff --git a/src/api/workqueue/workqueueConfig.test.ts b/src/api/workqueue/workqueueConfig.test.ts new file mode 100644 index 0000000000..401b641fbf --- /dev/null +++ b/src/api/workqueue/workqueueConfig.test.ts @@ -0,0 +1,25 @@ +import { describe, expect, it } from 'vitest' +import { Workqueues } from './workqueueConfig' + +describe('Workqueue config', () => { + it('should match the snapshot (Workqueue integrity)', () => { + expect(Workqueues).toMatchSnapshot() + }) + + it('should only include NOTIFIED and DECLARED records in sent-for-review workqueue', () => { + const sentForReviewWorkqueue = Workqueues.find( + (workqueue) => workqueue.slug === 'sent-for-review' + ) + + if (!sentForReviewWorkqueue) { + throw new Error('sent-for-review workqueue not found') + } + + // @ts-expect-error - query is a union type, and we are not narrowing it here. + expect(sentForReviewWorkqueue.query.clauses[0].status.terms).toEqual([ + 'DECLARED', + 'NOTIFIED' + ]) + expect(sentForReviewWorkqueue.actions.length).toEqual(0) + }) +}) diff --git a/src/client-config.prod.js b/src/client-config.prod.js index 440c876eae..1efdd8ec66 100644 --- a/src/client-config.prod.js +++ b/src/client-config.prod.js @@ -11,6 +11,8 @@ const scheme = window.location.protocol // "http:" or "https:" const hostname = '{{hostname}}' // Replace dynamically if needed const sentry = '{{sentry}}' // Replace dynamically if needed +const minioBucket = '{{minio_bucket}}' +const minioBaseUrl = '{{minio_base_url}}' window.config = { API_GATEWAY_URL: `${scheme}//gateway.${hostname}/`, @@ -18,8 +20,15 @@ window.config = { LOGIN_URL: `${scheme}//login.${hostname}`, AUTH_URL: `${scheme}//gateway.${hostname}/auth/`, MINIO_URL: `${scheme}//minio.${hostname}/ocrvs/`, - MINIO_BASE_URL: `${scheme}//minio.${hostname}`, // URL without path/bucket information, used for file uploads, v2 - MINIO_BUCKET: 'ocrvs', + /** E2E uses single minio for all the different services. @see start-prod.sh. */ + MINIO_BASE_URL: minioBaseUrl.startsWith('http') + ? minioBaseUrl + : // Resolve the protocol on the same level as the other URLs. + `${scheme}${minioBaseUrl}`, // URL without path/bucket information, used for file uploads, v2 + /** Bucket name is hardcoded as 'ocrvs'. In live system, it cannot be changed without data migration. + * In E2E environment, buckets are separated from different PR environments to avoid conflicts. @see start-prod.sh + */ + MINIO_BUCKET: minioBucket, COUNTRY_CONFIG_URL: `${scheme}//countryconfig.${hostname}`, // Country code in uppercase ALPHA-3 format COUNTRY: 'FAR', @@ -55,7 +64,6 @@ window.config = { } ], FEATURES: { - // The V2_EVENTS variable is passed down from src/index.ts:309 V2_EVENTS: {{ V2_EVENTS }} } } diff --git a/src/constants.ts b/src/constants.ts index b7bff13d41..d752884767 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -32,4 +32,9 @@ export const CHECK_INVALID_TOKEN = env.CHECK_INVALID_TOKEN export const PRODUCTION = env.isProd export const QA_ENV = env.QA_ENV export const V2_EVENTS = env.V2_EVENTS + +export const ESIGNET_REDIRECT_URL = env.ESIGNET_REDIRECT_URL +export const OPENID_PROVIDER_CLIENT_ID = env.OPENID_PROVIDER_CLIENT_ID +export const OPENID_PROVIDER_CLAIMS = env.OPENID_PROVIDER_CLAIMS +export const MOSIP_API_USERINFO_URL = env.MOSIP_API_USERINFO_URL export const ANALYTICS_DATABASE_URL = env.ANALYTICS_DATABASE_URL diff --git a/src/data-generator/address.ts b/src/data-generator/address.ts new file mode 100644 index 0000000000..981d916f9e --- /dev/null +++ b/src/data-generator/address.ts @@ -0,0 +1,21 @@ +import { faker } from '@faker-js/faker' +import { Location } from './location' + +export function createAddressInput(location: Location, type: string) { + return { + country: 'FAR', + state: location.partOf.split('/')[1], + district: location.id, + city: faker.location.city(), + postalCode: faker.location.zipCode(), + type, + line: [ + faker.location.streetAddress(), + faker.location.zipCode(), + 'URBAN', + '', + '', + 'URBAN' + ] + } +} diff --git a/src/data-generator/assets/528KB-random.png b/src/data-generator/assets/528KB-random.png new file mode 100644 index 0000000000..02bd690173 Binary files /dev/null and b/src/data-generator/assets/528KB-random.png differ diff --git a/src/data-generator/assets/signature.pdf b/src/data-generator/assets/signature.pdf new file mode 100644 index 0000000000..9b24c5090c Binary files /dev/null and b/src/data-generator/assets/signature.pdf differ diff --git a/src/data-generator/auth.ts b/src/data-generator/auth.ts new file mode 100644 index 0000000000..e9856dba63 --- /dev/null +++ b/src/data-generator/auth.ts @@ -0,0 +1,91 @@ +import fetch from 'node-fetch' +import { AUTH_HOST } from './constants' +import { VERIFICATION_CODE } from './index' +import { User } from './users' + +export async function getToken( + username: string, + password: string +): Promise { + const authenticateResponse = await fetch(`${AUTH_HOST}/authenticate`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'x-correlation-id': username + '-' + Date.now() + }, + body: JSON.stringify({ + username, + password + }) + }) + const { nonce, token } = await authenticateResponse.json() + + if (token) { + return token + } + + const verifyResponse = await fetch(`${AUTH_HOST}/verifyCode`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'x-correlation-id': username + '-' + Date.now() + }, + body: JSON.stringify({ + nonce, + code: VERIFICATION_CODE + }) + }) + const data = await verifyResponse.json() + + if (!data.token) { + throw new Error( + `Failed to get token for user ${username}, password ${password}` + ) + } + + return data.token +} + +export async function getTokenForSystemClient( + clientId: string, + clientSecret: string +): Promise { + const authenticateResponse = await fetch( + `${AUTH_HOST}/token?client_id=${clientId}&client_secret=${clientSecret}&grant_type=client_credentials`, + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'x-correlation-id': clientId + '-' + Date.now() + } + } + ) + const res = await authenticateResponse.json() + return res.access_token +} + +export function readToken(token: string) { + return JSON.parse(Buffer.from(token.split('.')[1], 'base64').toString()) +} + +export async function updateToken(user: User): Promise { + if (!user.stillInUse) { + return + } + let token + try { + token = user.isSystemUser + ? await getTokenForSystemClient(user.username, user.password) + : await getToken(user.username, user.password) + } catch (error) { + console.log('Failed to fetch token for user', user.username) + await new Promise((resolve) => setTimeout(resolve, 3000)) + return updateToken(user) + } + + user.token = token + + const data = readToken(token) + + setTimeout(() => updateToken(user), data.exp * 1000 - Date.now() - 60000) +} diff --git a/src/data-generator/birthNotification.ts b/src/data-generator/birthNotification.ts new file mode 100644 index 0000000000..7677c50fea --- /dev/null +++ b/src/data-generator/birthNotification.ts @@ -0,0 +1,517 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ +interface BirthNotification { + child: { + firstName: string + lastName: string + weight: string // in kg + gender: 'male' | 'female' | 'unknown' + } + father: { + firstName: string + lastName: string + nid: string + dateOfBirth: string + } + mother: { + firstName: string + lastName: string + dateOfBirth: string + nid: string + } + phoneNumber: string + email: string + address: fhir.Address[] + dateOfBirth: string + placeOfBirth: string // Location Resource + createdAt: string + officeLocation: string + office: string +} + +export function birthNotification({ + child, + father, + mother, + phoneNumber, + email, + address, + dateOfBirth, + placeOfBirth, + createdAt, + officeLocation, + office +}: BirthNotification) { + return { + resourceType: 'Bundle', + type: 'document', + meta: { + lastUpdated: createdAt + }, + entry: [ + { + fullUrl: 'urn:uuid:37dd8e55-69c0-493d-b1a0-b7462a1d806a', + resource: { + identifier: { + system: 'urn:ietf:rfc:3986', + value: '8f793c5a-3d53-4c9b-898b-1c04759716c6' + }, + resourceType: 'Composition', + status: 'final', + type: { + coding: [ + { + system: 'http://opencrvs.org/doc-types', + code: 'birth-notification' + } + ], + text: 'Birth Notification' + }, + class: { + coding: [ + { + system: 'http://opencrvs.org/specs/classes', + code: 'crvs-document' + } + ], + text: 'CRVS Document' + }, + subject: { + reference: 'urn:uuid:760c393e-4dc3-4572-83f6-b70765963ef1' + }, + date: createdAt, + author: [], + title: 'Birth Notification', + section: [ + { + title: 'Child details', + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'child-details' + } + ], + text: 'Child details' + }, + entry: [ + { + reference: 'urn:uuid:760c393e-4dc3-4572-83f6-b70765963ef1' + } + ] + }, + { + title: 'Birth encounter', + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'birth-encounter' + } + ], + text: 'Birth encounter' + }, + entry: [ + { + reference: 'urn:uuid:7cb1d9cc-ea4b-4046-bea0-38bdf3082f56' + } + ] + }, + { + title: "Mother's details", + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'mother-details' + } + ], + text: "Mother's details" + }, + entry: [ + { + reference: 'urn:uuid:d9d3a8c8-6a47-47a1-be86-0493a4ec55a7' + } + ] + }, + { + title: "Informant's details", + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/sections', + code: 'informant-details' + } + ], + text: "Informant's details" + }, + entry: [ + { + reference: 'urn:uuid:b74fbd0e-8536-4c11-833d-781e89a4b553' + } + ] + }, + { + title: "Father's details", + code: { + coding: [ + { + system: 'http://opencrvs.org/doc-sections', + code: 'father-details' + } + ], + text: "Father's details" + }, + entry: [ + { + reference: 'urn:uuid:ad1e15bb-51da-449a-8a12-c7dae10728e4' + } + ] + } + ] + } + }, + { + fullUrl: 'urn:uuid:8546aaf3-8a60-4150-bc24-ab5579bc0fa2', + resource: { + resourceType: 'Task', + status: 'draft', + intent: 'unknown', + identifier: [], + code: { + coding: [ + { + system: 'http://opencrvs.org/specs/types', + code: 'BIRTH' + } + ] + }, + focus: { + reference: 'urn:uuid:37dd8e55-69c0-493d-b1a0-b7462a1d806a' + }, + extension: [ + { + url: 'http://opencrvs.org/specs/extension/contact-person', + valueString: 'MOTHER' + }, + { + url: 'http://opencrvs.org/specs/extension/contact-person-phone-number', + valueString: phoneNumber + }, + { + url: 'http://opencrvs.org/specs/extension/contact-person-email', + valueString: email + }, + { + url: 'http://opencrvs.org/specs/extension/timeLoggedMS', + valueInteger: 0 + }, + { + url: 'http://opencrvs.org/specs/extension/in-complete-fields', + valueString: 'N/A' + }, + { + url: 'http://opencrvs.org/specs/extension/regLastLocation', + valueReference: { + reference: officeLocation + } + }, + { + url: 'http://opencrvs.org/specs/extension/regLastOffice', + valueReference: { + reference: office + } + } + ] + } + }, + { + fullUrl: 'urn:uuid:760c393e-4dc3-4572-83f6-b70765963ef1', + resource: { + resourceType: 'Patient', + active: true, + name: [ + { + use: 'en', + family: child.lastName, + given: [child.firstName] + } + ], + gender: child.gender, + birthDate: dateOfBirth, + deceasedBoolean: false, + multipleBirthBoolean: false + } + }, + { + fullUrl: 'urn:uuid:d9d3a8c8-6a47-47a1-be86-0493a4ec55a7', + resource: { + resourceType: 'Patient', + active: true, + identifier: [ + { + use: 'official', + type: { + coding: [ + { + system: 'http://opencrvs.org/specs/identifier-type', + code: 'NATIONAL_ID' + } + ] + }, + value: mother.nid + } + ], + name: [ + { + use: 'en', + family: mother.lastName, + given: [mother.firstName] + } + ], + gender: 'female', + telecom: [ + { + use: 'mobile', + system: 'phone', + value: phoneNumber + } + ], + birthDate: mother.dateOfBirth, + deceasedBoolean: false, + multipleBirthInteger: 2, + maritalStatus: { + coding: [ + { + system: + 'http://hl7.org/fhir/StructureDefinition/marital-status', + code: 'M' + } + ], + text: 'MARRIED' + }, + address, + extension: [ + { + url: 'http://opencrvs.org/specs/extension/patient-occupation', + valueString: 'Housewife' + }, + { + url: 'http://hl7.org/fhir/StructureDefinition/patient-nationality', + extension: [ + { + url: 'code', + valueCodeableConcept: { + coding: [ + { + system: 'urn:iso:std:iso:3166', + code: 'FAR' + } + ] + } + }, + { + url: 'period', + valuePeriod: { + start: '', + end: '' + } + } + ] + }, + { + url: 'http://opencrvs.org/specs/extension/educational-attainment', + valueString: 'POST_SECONDARY_ISCED_4' + } + ] + } + }, + { + fullUrl: 'urn:uuid:b74fbd0e-8536-4c11-833d-781e89a4b553', + resource: { + resourceType: 'RelatedPerson', + relationship: { + coding: [ + { + system: + 'http://hl7.org/fhir/ValueSet/relatedperson-relationshiptype', + code: 'MOTHER' + } + ] + }, + patient: { + reference: 'urn:uuid:d9d3a8c8-6a47-47a1-be86-0493a4ec55a7' + } + } + }, + { + fullUrl: 'urn:uuid:ad1e15bb-51da-449a-8a12-c7dae10728e4', + resource: { + resourceType: 'Patient', + active: true, + identifier: [ + { + use: 'official', + type: { + coding: [ + { + system: 'http://opencrvs.org/specs/identifier-type', + code: 'NATIONAL_ID' + } + ] + }, + value: father.nid + } + ], + name: [ + { + use: 'en', + family: father.firstName, + given: [father.lastName] + } + ], + gender: 'male', + telecom: [], + birthDate: father.dateOfBirth, + deceasedBoolean: false, + multipleBirthInteger: 2, + maritalStatus: { + coding: [ + { + system: + 'http://hl7.org/fhir/StructureDefinition/marital-status', + code: 'M' + } + ], + text: 'MARRIED' + }, + address, + extension: [ + { + url: 'http://opencrvs.org/specs/extension/patient-occupation', + valueString: 'Businessman' + }, + { + url: 'http://hl7.org/fhir/StructureDefinition/patient-nationality', + extension: [ + { + url: 'code', + valueCodeableConcept: { + coding: [ + { + system: 'urn:iso:std:iso:3166', + code: 'FAR' + } + ] + } + }, + { + url: 'period', + valuePeriod: { + start: '', + end: '' + } + } + ] + }, + { + url: 'http://opencrvs.org/specs/extension/educational-attainment', + valueString: 'POST_SECONDARY_ISCED_4' + } + ] + } + }, + { + fullUrl: 'urn:uuid:7cb1d9cc-ea4b-4046-bea0-38bdf3082f56', + resource: { + resourceType: 'Encounter', + status: 'finished', + location: [ + { + location: { + reference: placeOfBirth + } + } + ] + } + }, + { + fullUrl: 'urn:uuid:45c68568-2ca0-4932-9731-535dd4180fe0', + resource: { + resourceType: 'Observation', + status: 'final', + context: { + reference: 'urn:uuid:7cb1d9cc-ea4b-4046-bea0-38bdf3082f56' + }, + category: [ + { + coding: [ + { + system: 'http://hl7.org/fhir/observation-category', + code: 'procedure', + display: 'Procedure' + } + ] + } + ], + code: { + coding: [ + { + system: 'http://loinc.org', + code: '57722-1', + display: 'Birth plurality of Pregnancy' + } + ] + }, + valueQuantity: { + value: 'SINGLE' + } + } + }, + { + fullUrl: 'urn:uuid:d2d3d5b8-658e-4c29-9ec5-cb2431b4ddf3', + resource: { + resourceType: 'Observation', + status: 'final', + context: { + reference: 'urn:uuid:7cb1d9cc-ea4b-4046-bea0-38bdf3082f56' + }, + category: [ + { + coding: [ + { + system: 'http://hl7.org/fhir/observation-category', + code: 'vital-signs', + display: 'Vital Signs' + } + ] + } + ], + code: { + coding: [ + { + system: 'http://loinc.org', + code: '3141-9', + display: 'Body weight Measured' + } + ] + }, + valueQuantity: { + value: child.weight, + unit: 'kg', + system: 'http://unitsofmeasure.org', + code: 'kg' + } + } + } + ] + } +} diff --git a/src/data-generator/certify.ts b/src/data-generator/certify.ts new file mode 100644 index 0000000000..f018027552 --- /dev/null +++ b/src/data-generator/certify.ts @@ -0,0 +1,256 @@ +import fetch from 'node-fetch' +import { User } from './users' + +import { idsToFHIRIds, log, removeEmptyFields } from './util' +import { + AttachmentInput, + BirthRegistrationInput, + DeathRegistrationInput, + MarkBirthAsCertifiedMutation, + MarkDeathAsCertifiedMutation, + PaymentOutcomeType, + PaymentType +} from './gateway' +import { omit } from 'lodash' +import { GATEWAY_HOST } from './constants' +import { MARK_BIRTH_AS_CERTIFIED, MARK_DEATH_AS_CERTIFIED } from './queries' +import { differenceInDays } from 'date-fns' +import { ConfigResponse } from './config' +import { fetchDeathRegistration, fetchRegistration } from './declare' +import { location } from './options' + +export function createBirthCertificationDetails( + createdAt: Date, + declaration: Awaited>, + config: ConfigResponse +) { + const withIdsRemoved = idsToFHIRIds( + omit(declaration, ['__typename', 'id', 'registration.type']), + [ + 'eventLocation.id', + 'mother.id', + 'father.id', + 'child.id', + 'registration.id', + 'informant.id' + ] + ) + + const data = { + ...withIdsRemoved, + eventLocation: { + _fhirID: withIdsRemoved.eventLocation?._fhirID + }, + registration: { + ...withIdsRemoved.registration, + attachments: withIdsRemoved.registration?.attachments?.filter( + (x): x is AttachmentInput => x !== null + ), + status: [ + { + timestamp: createdAt.toISOString() + } + ], + certificates: [ + { + hasShowedVerifiedDocument: false, + data: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==', + collector: { + relationship: 'MOTHER' + } + } + ] + } + } + return removeEmptyFields(data) +} + +export function createDeathCertificationDetails( + createdAt: Date, + declaration: Awaited>, + config: ConfigResponse +): DeathRegistrationInput { + const withIdsRemoved = idsToFHIRIds( + omit(declaration, ['__typename', 'id', 'registration.type']), + [ + 'id', + 'eventLocation.id', + 'mother.id', + 'father.id', + 'informant.id', + 'deceased.id', + 'registration.id' + ] + ) + + const completionDays = differenceInDays( + createdAt, + declaration.deceased?.deceased?.deathDate + ? new Date(declaration.deceased?.deceased?.deathDate) + : new Date() + ) + + const paymentAmount = + completionDays < config.config.DEATH.REGISTRATION_TARGET + ? config.config.DEATH.FEE.ON_TIME + : config.config.DEATH.FEE.DELAYED + + log( + 'Collecting certification payment of', + paymentAmount, + 'for completion days', + completionDays + ) + + const data: DeathRegistrationInput = { + ...withIdsRemoved, + deceased: { + ...withIdsRemoved.deceased, + identifier: withIdsRemoved.deceased?.identifier?.filter( + (id) => id?.type != 'DEATH_REGISTRATION_NUMBER' + ) + }, + eventLocation: + withIdsRemoved.eventLocation?.type === location.privateHome + ? { + address: withIdsRemoved.eventLocation?.address, + type: withIdsRemoved.eventLocation?.type + } + : { + _fhirID: withIdsRemoved.eventLocation?._fhirID + }, + registration: { + ...withIdsRemoved.registration, + attachments: withIdsRemoved.registration?.attachments?.filter( + (x): x is AttachmentInput => x !== null + ), + draftId: withIdsRemoved._fhirIDMap?.composition, + certificates: [ + { + hasShowedVerifiedDocument: false, + data: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==', + payments: [ + { + type: PaymentType.Manual, + total: paymentAmount, + amount: paymentAmount, + outcome: PaymentOutcomeType.Completed, + date: createdAt + } + ], + collector: { + relationship: 'INFORMANT' + } + } + ], + status: [ + { + timestamp: createdAt.toISOString(), + timeLoggedMS: Math.round(9999 * Math.random()) + } + ] + } + } + + return removeEmptyFields(data) +} + +export async function markBirthAsCertified( + id: string, + user: User, + details: BirthRegistrationInput +) { + const { token, username } = user + + const requestStart = Date.now() + + const certifyDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `certification-${id}` + }, + body: JSON.stringify({ + query: MARK_BIRTH_AS_CERTIFIED, + variables: { + id: id, + details + } + }) + }) + const requestEnd = Date.now() + const result = (await certifyDeclarationRes.json()) as { + errors: any[] + data: MarkBirthAsCertifiedMutation + } + + if (result.errors) { + // eslint-disable-next-line no-console + console.error(JSON.stringify(result.errors, null, 2)) + throw new Error('Birth declaration could not be certified') + } + + log( + 'Birth declaration', + result.data.markBirthAsCertified, + 'is now certified by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return result.data.markBirthAsCertified +} + +export async function markDeathAsCertified( + id: string, + user: User, + details: DeathRegistrationInput +) { + const { token, username } = user + + const requestStart = Date.now() + + const certifyDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `death-certification-${id}` + }, + body: JSON.stringify({ + query: MARK_DEATH_AS_CERTIFIED, + variables: { + id, + details + } + }) + }) + const requestEnd = Date.now() + const result = (await certifyDeclarationRes.json()) as { + errors: any[] + data: MarkDeathAsCertifiedMutation + } + if (result.errors) { + // eslint-disable-next-line no-console + console.error(JSON.stringify(result.errors, null, 2)) + details.registration?.certificates?.forEach((cert) => { + if (cert?.data) { + cert.data = 'REDACTED' + } + }) + // eslint-disable-next-line no-console + console.error(JSON.stringify(details)) + throw new Error('Death declaration could not be certified') + } + + log( + 'Death declaration', + result.data.markDeathAsCertified, + 'is now certified by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return result.data.markDeathAsCertified +} diff --git a/src/data-generator/config.ts b/src/data-generator/config.ts new file mode 100644 index 0000000000..c0750ba795 --- /dev/null +++ b/src/data-generator/config.ts @@ -0,0 +1,105 @@ +import fetch from 'node-fetch' +import { URL } from 'url' +import { CONFIG_HOST, COUNTRY_CONFIG_HOST } from './constants' + +export async function getConfig(token: string): Promise { + const res = await fetch(new URL('/config', CONFIG_HOST).href, { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + authorization: `Bearer ${token}` + } + }) + + if (!res.ok) { + throw new Error(`Could not fetch config, ${res.statusText} ${res.status}`) + } + + return res.json() +} + +export async function getCountryAlpha3(): Promise { + const res = await fetch( + new URL('/client-config.js', COUNTRY_CONFIG_HOST).href + ) + if (!res.ok) { + throw new Error(`Could not fetch config, ${res.statusText} ${res.status}`) + } + + return Function( + `let window={}; ${await res.text()} ; return window.config.COUNTRY` + )() +} + +export interface ConfigResponse { + config: Config + certificates: Certificate[] + formConfig: FormConfig +} + +interface Certificate { + _id: string + svgCode: string + svgFilename: string + user: string + event: string + status: string + svgDateUpdated: number + svgDateCreated: number +} + +interface Config { + APPLICATION_NAME: string + FIELD_AGENT_AUDIT_LOCATIONS: string + DECLARATION_AUDIT_LOCATIONS: string + HIDE_EVENT_REGISTER_INFORMATION: boolean + ADDRESSES: number + _id: string + BIRTH: Birth + COUNTRY_LOGO: CountryLogo + CURRENCY: Currency + DEATH: Death + PHONE_NUMBER_PATTERN: string + NID_NUMBER_PATTERN: string +} + +interface Birth { + FEE: BirthFee + REGISTRATION_TARGET: number + LATE_REGISTRATION_TARGET: number + _id: string +} + +interface BirthFee { + ON_TIME: number + LATE: number + DELAYED: number +} + +interface CountryLogo { + _id: string + fileName: string + file: string +} + +interface Currency { + languagesAndCountry: string[] + _id: string + isoCode: string +} + +interface Death { + FEE: DeathFee + REGISTRATION_TARGET: number + _id: string +} + +interface DeathFee { + ON_TIME: number + DELAYED: number +} + +interface FormConfig { + questionConfig: any[] + formDrafts: any[] +} diff --git a/src/data-generator/constants.ts b/src/data-generator/constants.ts new file mode 100644 index 0000000000..a76af9489c --- /dev/null +++ b/src/data-generator/constants.ts @@ -0,0 +1,11 @@ +export const COUNTRY_CONFIG_HOST = + process.env.COUNTRY_CONFIG_HOST || 'http://localhost:3040' + +export const AUTH_HOST = process.env.AUTH_HOST || 'http://localhost:4040' + +export const GATEWAY_HOST = process.env.GATEWAY_HOST || 'http://localhost:7070' + +export const METRICS_API_HOST = + process.env.METRICS_API_HOST || 'http://localhost:1050' + +export const CONFIG_HOST = process.env.CONFIG_HOST || 'http://localhost:2021/' diff --git a/src/data-generator/declare.ts b/src/data-generator/declare.ts new file mode 100644 index 0000000000..d4884c5bfb --- /dev/null +++ b/src/data-generator/declare.ts @@ -0,0 +1,638 @@ +import { faker } from '@faker-js/faker' +import { differenceInDays, differenceInYears, sub } from 'date-fns' +import fetch from 'node-fetch' +import { createAddressInput } from './address' +import { GATEWAY_HOST } from './constants' +import { + BirthRegistrationInput, + CreateDeathDeclarationMutation, + DeathRegistrationInput, + FetchBirthRegistrationQuery, + FetchDeathRegistrationQuery, + PersonInput, + SearchEventsQuery +} from './gateway' +import { Facility, Location } from './location' +import { User } from './users' +import { log } from './util' +import { birthNotification } from './birthNotification' +import { + CREATE_DEATH_DECLARATION, + FETCH_DEATH_REGISTRATION_QUERY, + FETCH_REGISTRATION_QUERY, + SEARCH_EVENTS +} from './queries' +import { + BIRTH_ATTACHMENTS, + DEATH_ATTACHMENTS, + education, + identity, + maritalStatus, + location as locationTypes, + address, + informant, + mannerOfDeath, + birth, + attendant, + causeOfDeathMethod +} from './options' + +const HOME_BIRTH_WEIGHT = 0.2 +const HOME_DEATH_WEIGHT = 0.2 +/* + * Number of attachments per record. Please see `BIRTH_ATTACHMENTS` + * and `DEATH_ATTACHMENTS`, this number cannot exceed the biggest + * index of either of them. + */ +const NUMBER_OF_ATTACHMENTS_PER_RECORD = process.env + .NUMBER_OF_ATTACHMENTS_PER_RECORD + ? parseInt(process.env.NUMBER_OF_ATTACHMENTS_PER_RECORD, 10) + : 2 + +function randomWeightInKg() { + return Math.round(2.5 + 2 * Math.random()) +} + +function getIDFromResponse(resBody: fhir.Bundle): string { + if ( + !resBody || + !resBody.entry || + !resBody.entry[0] || + !resBody.entry[0].response || + !resBody.entry[0].response.location + ) { + throw new Error(`FHIR did not send a valid response`) + } + // return the Composition's id + return resBody.entry[0].response.location.split('/')[3] +} + +export async function sendBirthNotification( + { username, token }: Partial, + sex: 'male' | 'female', + birthDate: Date, + createdAt: Date, + facility: Facility, + district: Location, + office: Facility +): Promise { + const lastName = faker.person.lastName() + const firstName = faker.person.firstName() + const motherFirstName = faker.person.firstName('female') + const requestStart = Date.now() + + const notification = birthNotification({ + child: { + firstName, + lastName, + weight: randomWeightInKg().toString(), + gender: sex + }, + father: { + firstName: faker.person.firstName('male'), + lastName, + nid: faker.number.bigInt({ min: 1000000000, max: 9999999999 }).toString(), + dateOfBirth: sub(birthDate, { years: 20 }).toISOString().split('T')[0] + }, + mother: { + firstName: motherFirstName, + lastName, + dateOfBirth: sub(birthDate, { years: 20 }).toISOString().split('T')[0], + nid: faker.number.bigInt({ min: 1000000000, max: 9999999999 }).toString() + }, + createdAt: createdAt.toISOString(), + address: [ + { + type: 'PRIMARY_ADDRESS', + line: ['12', 'Usual Street', 'Usual Residental Area', '', '', 'URBAN'], + city: faker.location.city(), + district: district.id, + state: district.partOf.split('/')[1], + postalCode: faker.location.zipCode(), + country: 'FAR' + } + ], + phoneNumber: + '+2607' + faker.number.bigInt({ min: 10000000, max: 99999999 }), + email: faker.internet.email({ + firstName: motherFirstName, + lastName: lastName + }), + dateOfBirth: birthDate.toISOString().split('T')[0], + placeOfBirth: `Location/${facility.id}`, + officeLocation: office.partOf, + office: `Location/${office.id}` + }) + + const createBirthNotification = await fetch(`${GATEWAY_HOST}/notification`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `birth-notification-${firstName}-${lastName}` + }, + body: JSON.stringify(notification) + }) + + if (!createBirthNotification.ok) { + log( + 'Failed to create a birth notification', + await createBirthNotification.text() + ) + throw new Error('Failed to create a birth notification') + } + + const response = await createBirthNotification.json() + + const requestEnd = Date.now() + log( + 'Creating birth notification', + firstName, + lastName, + 'born', + birthDate.toISOString().split('T')[0], + 'created by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return getIDFromResponse(response) +} + +export function createBirthDeclarationData( + sex: 'male' | 'female' | undefined, + birthDate: Date, + declarationTime: Date, + location: Location, + facility: Facility, + base64Attachment: string +): BirthRegistrationInput { + const timeFilling = Math.round(100000 + Math.random() * 100000) // 100 - 200 seconds + const familyName = faker.person.lastName() + const firstNames = faker.person.firstName() + const motherFirstName = faker.person.firstName('female') + const isLateRegistration = differenceInDays(new Date(), birthDate) > 365 + + const mother: PersonInput = { + nationality: ['FAR'], + occupation: 'Bookkeeper', + educationalAttainment: education.primaryIsced_1, + dateOfMarriage: sub(birthDate, { years: 2 }).toISOString().split('T')[0], + identifier: [ + { + id: faker.number + .bigInt({ min: 1000000000, max: 9999999999 }) + .toString(), + type: identity.nationalId + } + ], + name: [ + { + use: 'en', + firstNames: motherFirstName, + familyName: familyName + } + ], + birthDate: sub(birthDate, { years: 20 }).toISOString().split('T')[0], + maritalStatus: maritalStatus.married, + address: [ + createAddressInput(location, address.primaryAddress), + createAddressInput(location, address.primaryAddress) + ] + } + + return { + createdAt: declarationTime.toISOString(), + registration: { + informantType: informant.mother, + otherInformantType: '', + contactPhoneNumber: + '+2607' + faker.number.bigInt({ min: 10000000, max: 99999999 }), + contactEmail: faker.internet.email({ + firstName: motherFirstName, + lastName: familyName + }), + status: [ + { + timestamp: sub(declarationTime, { + seconds: timeFilling / 1000 + }), + timeLoggedMS: timeFilling * 1000 + } + ], + draftId: faker.string.uuid(), + attachments: faker.helpers + .arrayElements(BIRTH_ATTACHMENTS, NUMBER_OF_ATTACHMENTS_PER_RECORD) + .map((attachment) => ({ + ...attachment, + contentType: 'image/png', + data: 'data:image/png;base64,' + base64Attachment + })), + inCompleteFields: !sex ? 'child/child-view-group/gender' : undefined + }, + father: { + detailsExist: false, + reasonNotApplying: 'Father unknown' + }, + questionnaire: [ + ...(isLateRegistration + ? [ + { + fieldId: 'birth.child.child-view-group.reasonForLateRegistration', + value: 'Late registration' + } + ] + : []), + { + fieldId: 'birth.mother.mother-view-group.motherIdType', + value: 'NATIONAL_ID' + } + ], + child: { + name: [ + { + use: 'en', + firstNames, + familyName + } + ], + gender: sex, + birthDate: birthDate.toISOString().split('T')[0], + multipleBirth: Math.round(Math.random() * 5) + }, + attendantAtBirth: attendant.physician, + birthType: birth.single, + weightAtBirth: Math.round(2.5 + 2 * Math.random() * 10) / 10, + eventLocation: + Math.random() < HOME_BIRTH_WEIGHT + ? { + address: { + country: 'FAR', + state: location.partOf.replace('Location/', ''), + district: location.id, + city: faker.location.city(), + postalCode: faker.location.zipCode(), + line: [ + faker.location.streetAddress(), + faker.location.zipCode(), + 'URBAN' + ] + }, + type: locationTypes.privateHome + } + : { + _fhirID: facility.id + }, + mother + } +} + +export async function createBirthDeclaration( + { username, token }: User, + sex: 'male' | 'female' | undefined, + birthDate: Date, + declarationTime: Date, + location: Location, + facility: Facility, + base64Attachment: string +) { + const details = createBirthDeclarationData( + sex, + birthDate, + declarationTime, + location, + facility, + base64Attachment + ) + + const name = details.child?.name + ?.map((name) => `${name?.firstNames} ${name?.familyName}`) + .join(' ') + const requestStart = Date.now() + const createDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `declare-${name}` + }, + body: JSON.stringify({ + query: ` + mutation submitMutation($details: BirthRegistrationInput!) { + createBirthRegistration(details: $details) { + compositionId + } + }`, + variables: { + details + } + }) + }) + const requestEnd = Date.now() + log( + 'Creating', + name, + 'born', + birthDate.toISOString().split('T')[0], + 'declared', + declarationTime.toISOString().split('T')[0], + 'days in between', + differenceInDays(declarationTime, birthDate), + 'created by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + const result = await createDeclarationRes.json() + if (!result?.data?.createBirthRegistration?.compositionId) { + log(result) + throw new Error('Birth declaration was not created') + } + return result.data.createBirthRegistration.compositionId +} + +export async function createDeathDeclaration( + { username, token }: User, + deathTime: Date, + sex: 'male' | 'female' | undefined, + declarationTime: Date, + location: Location, + facility: Facility, + base64Attachment: string +) { + const familyName = faker.person.lastName() + const firstNames = faker.person.firstName() + const spouseFirstName = faker.person.firstName() + + const requestStart = Date.now() + + const birthDate = sub(deathTime, { years: Math.random() * 100 }) + const deathDay = deathTime + const timeFilling = Math.round(100000 + Math.random() * 100000) // 100 - 200 seconds + const details: DeathRegistrationInput = { + causeOfDeathEstablished: 'true', + causeOfDeathMethod: causeOfDeathMethod.physician, + deathDescription: '', + createdAt: declarationTime.toISOString(), + registration: { + informantType: 'SPOUSE', + contactPhoneNumber: + '+2607' + faker.number.bigInt({ min: 10000000, max: 99999999 }), + contactEmail: faker.internet.email({ + firstName: spouseFirstName, + lastName: familyName + }), + attachments: faker.helpers + .arrayElements(DEATH_ATTACHMENTS, NUMBER_OF_ATTACHMENTS_PER_RECORD) + .map((attachment) => ({ + ...attachment, + contentType: 'image/png', + data: 'data:image/png;base64,' + base64Attachment + })), + draftId: faker.string.uuid(), + status: [ + { + timestamp: sub(declarationTime, { + seconds: timeFilling / 1000 + }), + timeLoggedMS: timeFilling * 1000 + } + ], + inCompleteFields: !sex ? 'child/child-view-group/gender' : undefined + }, + causeOfDeath: 'Natural cause', + deceased: { + identifier: [ + { + id: faker.number + .bigInt({ min: 1000000000, max: 9999999999 }) + .toString(), + type: identity.nationalId + }, + { + id: faker.number + .bigInt({ min: 100000000, max: 999999999 }) + .toString(), + type: identity.socialSecurityNumber + } + ], + nationality: ['FAR'], + name: [ + { + use: 'en', + firstNames: firstNames, + familyName: familyName + } + ], + birthDate: birthDate.toISOString().split('T')[0], + gender: sex, + maritalStatus: maritalStatus.married, + address: [createAddressInput(location, address.primaryAddress)], + age: Math.max(1, differenceInYears(deathDay, birthDate)), + deceased: { + deceased: true, + deathDate: deathDay.toISOString().split('T')[0] + } + }, + mannerOfDeath: mannerOfDeath.naturalCauses, + maleDependentsOfDeceased: Math.round(Math.random() * 5), + femaleDependentsOfDeceased: Math.round(Math.random() * 5), + eventLocation: + Math.random() < HOME_DEATH_WEIGHT + ? { + address: { + type: address.primaryAddress, + line: ['', '', '', '', '', ''], + country: 'FAR', + state: location.partOf.replace('Location/', ''), + district: location.id + }, + type: locationTypes.deceasedUsualResidence + } + : { + _fhirID: facility.id + }, + informant: { + birthDate: sub(declarationTime, { years: 20 }) + .toISOString() + .split('T')[0], + occupation: 'consultant', + nationality: ['FAR'], + identifier: [ + { + id: faker.number + .bigInt({ min: 1000000000, max: 9999999999 }) + .toString(), + type: identity.nationalId + } + ], + name: [ + { + use: 'en', + firstNames: spouseFirstName, + familyName: familyName + } + ], + address: [createAddressInput(location, address.primaryAddress)] + }, + father: { + name: [ + { + use: 'en', + familyName: familyName + } + ] + }, + mother: { + name: [ + { + use: 'en', + familyName: familyName + } + ] + } + } + + const createDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `declare-death-${firstNames}-${familyName}` + }, + body: JSON.stringify({ + variables: { + details + }, + query: CREATE_DEATH_DECLARATION + }) + }) + const requestEnd = Date.now() + log( + 'Creating a death declaration for', + firstNames, + familyName, + 'born', + birthDate.toISOString().split('T')[0], + 'died', + deathDay.toISOString().split('T')[0], + 'declared', + declarationTime.toISOString().split('T')[0], + 'days in between', + differenceInDays(declarationTime, deathDay), + 'created by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + const result = (await createDeclarationRes.json()) as { + data: CreateDeathDeclarationMutation + } + if (!result?.data?.createDeathRegistration?.compositionId) { + log(result) + + throw new Error('Death declaration was not created') + } + return result.data.createDeathRegistration.compositionId +} + +export async function fetchRegistration(user: User, compositionId: string) { + const fetchDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${user.token}`, + 'x-correlation-id': `fetch-declaration-${compositionId}` + }, + body: JSON.stringify({ + query: FETCH_REGISTRATION_QUERY, + variables: { + id: compositionId + } + }) + }) + + const res = (await fetchDeclarationRes.json()) as { + data: FetchBirthRegistrationQuery + } + if (!res.data?.fetchBirthRegistration) { + throw new Error( + `Fetching birth declaration data for ${compositionId} failed` + ) + } + + return res.data.fetchBirthRegistration +} + +export async function fetchDeathRegistration( + user: User, + compositionId: string +) { + const fetchDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${user.token}`, + 'x-correlation-id': `fetch-declaration-${compositionId}` + }, + body: JSON.stringify({ + query: FETCH_DEATH_REGISTRATION_QUERY, + variables: { + id: compositionId + } + }) + }) + + const res = (await fetchDeclarationRes.json()) as { + data: FetchDeathRegistrationQuery + } + if (!res.data?.fetchDeathRegistration) { + throw new Error( + `Fetching death declaration data for ${compositionId} failed` + ) + } + + return res.data.fetchDeathRegistration +} + +export async function fetchAlreadyGeneratedInterval( + token: string, + locationId: string +): Promise { + const fetchFirst = async (sort: 'desc' | 'asc') => { + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `fetch-interval-oldest` + }, + body: JSON.stringify({ + query: SEARCH_EVENTS, + variables: { + sort, + advancedSearchParameters: { + declarationJurisdictionId: locationId + } + } + }) + }) + const body = (await res.json()) as { + data: SearchEventsQuery + errors: any[] + } + + if (body.errors) { + log(body.errors) + throw new Error('Fetching generated intervals failed') + } + + const data = body.data + + return data.searchEvents?.results?.map( + (d) => new Date(d!.registration!.dateOfDeclaration) + )[0] + } + + return (await Promise.all([fetchFirst('asc'), fetchFirst('desc')])).filter( + (x): x is Date => Boolean(x) + ) +} diff --git a/src/data-generator/gateway.ts b/src/data-generator/gateway.ts new file mode 100644 index 0000000000..d2514bed22 --- /dev/null +++ b/src/data-generator/gateway.ts @@ -0,0 +1,2983 @@ +/* DO NOT EDIT! This file is auto-generated by yarn data-generator:generate-types - see `codegen.yml` */ +export type Maybe = T | null +export type InputMaybe = Maybe +export type Exact = { + [K in keyof T]: T[K] +} +export type MakeOptional = Omit & { + [SubKey in K]?: Maybe +} +export type MakeMaybe = Omit & { + [SubKey in K]: Maybe +} +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: string + String: string + Boolean: boolean + Int: number + Float: number + Date: any + Map: any +} + +export type AdditionalIdWithCompositionId = { + __typename?: 'AdditionalIdWithCompositionId' + compositionId: Scalars['String'] + trackingId: Scalars['String'] +} + +export type Address = { + __typename?: 'Address' + city?: Maybe + country?: Maybe + district?: Maybe + districtName?: Maybe + from?: Maybe + line?: Maybe>> + lineName?: Maybe>> + postalCode?: Maybe + state?: Maybe + stateName?: Maybe + text?: Maybe + to?: Maybe + type?: Maybe + use?: Maybe +} + +export type AddressInput = { + city?: InputMaybe + country?: InputMaybe + district?: InputMaybe + from?: InputMaybe + line?: InputMaybe>> + postalCode?: InputMaybe + state?: InputMaybe + text?: InputMaybe + to?: InputMaybe + type?: InputMaybe + use?: InputMaybe +} + +export type AdvancedSeachParameters = { + __typename?: 'AdvancedSeachParameters' + childDoB?: Maybe + childDoBEnd?: Maybe + childDoBStart?: Maybe + childFirstNames?: Maybe + childGender?: Maybe + childLastName?: Maybe + compositionType?: Maybe>> + contactNumber?: Maybe + dateOfEvent?: Maybe + dateOfEventEnd?: Maybe + dateOfEventStart?: Maybe + dateOfRegistration?: Maybe + dateOfRegistrationEnd?: Maybe + dateOfRegistrationStart?: Maybe + deceasedDoB?: Maybe + deceasedDoBEnd?: Maybe + deceasedDoBStart?: Maybe + deceasedFamilyName?: Maybe + deceasedFirstNames?: Maybe + deceasedGender?: Maybe + deceasedIdentifier?: Maybe + declarationJurisdictionId?: Maybe + declarationLocationId?: Maybe + event?: Maybe + eventCountry?: Maybe + eventLocationId?: Maybe + eventLocationLevel1?: Maybe + eventLocationLevel2?: Maybe + eventLocationLevel3?: Maybe + eventLocationLevel4?: Maybe + eventLocationLevel5?: Maybe + fatherDoB?: Maybe + fatherDoBEnd?: Maybe + fatherDoBStart?: Maybe + fatherFamilyName?: Maybe + fatherFirstNames?: Maybe + fatherIdentifier?: Maybe + informantDoB?: Maybe + informantDoBEnd?: Maybe + informantDoBStart?: Maybe + informantFamilyName?: Maybe + informantFirstNames?: Maybe + informantIdentifier?: Maybe + motherDoB?: Maybe + motherDoBEnd?: Maybe + motherDoBStart?: Maybe + motherFamilyName?: Maybe + motherFirstNames?: Maybe + motherIdentifier?: Maybe + name?: Maybe + nationalId?: Maybe + registrationNumber?: Maybe + registrationStatuses?: Maybe>> + trackingId?: Maybe +} + +export type AdvancedSearchParametersInput = { + brideDoB?: InputMaybe + brideDoBEnd?: InputMaybe + brideDoBStart?: InputMaybe + brideFamilyName?: InputMaybe + brideFirstNames?: InputMaybe + brideIdentifier?: InputMaybe + childDoB?: InputMaybe + childDoBEnd?: InputMaybe + childDoBStart?: InputMaybe + childFirstNames?: InputMaybe + childGender?: InputMaybe + childLastName?: InputMaybe + compositionType?: InputMaybe>> + contactNumber?: InputMaybe + dateOfEvent?: InputMaybe + dateOfEventEnd?: InputMaybe + dateOfEventStart?: InputMaybe + dateOfMarriage?: InputMaybe + dateOfRegistration?: InputMaybe + dateOfRegistrationEnd?: InputMaybe + dateOfRegistrationStart?: InputMaybe + deceasedDoB?: InputMaybe + deceasedDoBEnd?: InputMaybe + deceasedDoBStart?: InputMaybe + deceasedFamilyName?: InputMaybe + deceasedFirstNames?: InputMaybe + deceasedGender?: InputMaybe + deceasedIdentifier?: InputMaybe + declarationJurisdictionId?: InputMaybe + declarationLocationId?: InputMaybe + event?: InputMaybe + eventCountry?: InputMaybe + eventLocationId?: InputMaybe + eventLocationLevel1?: InputMaybe + eventLocationLevel2?: InputMaybe + eventLocationLevel3?: InputMaybe + eventLocationLevel4?: InputMaybe + eventLocationLevel5?: InputMaybe + fatherDoB?: InputMaybe + fatherDoBEnd?: InputMaybe + fatherDoBStart?: InputMaybe + fatherFamilyName?: InputMaybe + fatherFirstNames?: InputMaybe + fatherIdentifier?: InputMaybe + groomDoB?: InputMaybe + groomDoBEnd?: InputMaybe + groomDoBStart?: InputMaybe + groomFamilyName?: InputMaybe + groomFirstNames?: InputMaybe + groomIdentifier?: InputMaybe + informantDoB?: InputMaybe + informantDoBEnd?: InputMaybe + informantDoBStart?: InputMaybe + informantFamilyName?: InputMaybe + informantFirstNames?: InputMaybe + informantIdentifier?: InputMaybe + motherDoB?: InputMaybe + motherDoBEnd?: InputMaybe + motherDoBStart?: InputMaybe + motherFamilyName?: InputMaybe + motherFirstNames?: InputMaybe + motherIdentifier?: InputMaybe + name?: InputMaybe + nationalId?: InputMaybe + recordId?: InputMaybe + registrationNumber?: InputMaybe + registrationStatuses?: InputMaybe>> + trackingId?: InputMaybe +} + +export type ApplicationConfiguration = { + __typename?: 'ApplicationConfiguration' + APPLICATION_NAME?: Maybe + BIRTH?: Maybe + COUNTRY_LOGO?: Maybe + CURRENCY?: Maybe + DATE_OF_BIRTH_UNKNOWN?: Maybe + DEATH?: Maybe + EXTERNAL_VALIDATION_WORKQUEUE?: Maybe + FIELD_AGENT_AUDIT_LOCATIONS?: Maybe + INFORMANT_NOTIFICATION_DELIVERY_METHOD?: Maybe + INFORMANT_SIGNATURE?: Maybe + INFORMANT_SIGNATURE_REQUIRED?: Maybe + LOGIN_BACKGROUND?: Maybe + MARRIAGE?: Maybe + MARRIAGE_REGISTRATION?: Maybe + NID_NUMBER_PATTERN?: Maybe + PHONE_NUMBER_PATTERN?: Maybe + USER_NOTIFICATION_DELIVERY_METHOD?: Maybe +} + +export type ApplicationConfigurationInput = { + APPLICATION_NAME?: InputMaybe + BIRTH?: InputMaybe + COUNTRY_LOGO?: InputMaybe + CURRENCY?: InputMaybe + DATE_OF_BIRTH_UNKNOWN?: InputMaybe + DEATH?: InputMaybe + EXTERNAL_VALIDATION_WORKQUEUE?: InputMaybe + FIELD_AGENT_AUDIT_LOCATIONS?: InputMaybe + INFORMANT_NOTIFICATION_DELIVERY_METHOD?: InputMaybe + INFORMANT_SIGNATURE?: InputMaybe + INFORMANT_SIGNATURE_REQUIRED?: InputMaybe + LOGIN_BACKGROUND?: InputMaybe + MARRIAGE?: InputMaybe + NID_NUMBER_PATTERN?: InputMaybe + PHONE_NUMBER_PATTERN?: InputMaybe + USER_NOTIFICATION_DELIVERY_METHOD?: InputMaybe +} + +export type AssignmentData = { + __typename?: 'AssignmentData' + avatarURL: Scalars['String'] + firstName?: Maybe + lastName?: Maybe + officeName?: Maybe + userId?: Maybe +} + +export type Attachment = { + __typename?: 'Attachment' + _fhirID?: Maybe + contentType?: Maybe + createdAt?: Maybe + data?: Maybe + description?: Maybe + id: Scalars['ID'] + originalFileName?: Maybe + status?: Maybe + subject?: Maybe + systemFileName?: Maybe + type?: Maybe + uri?: Maybe +} + +export type AttachmentInput = { + _fhirID?: InputMaybe + contentType?: InputMaybe + createdAt?: InputMaybe + data?: InputMaybe + description?: InputMaybe + originalFileName?: InputMaybe + status?: InputMaybe + subject?: InputMaybe + systemFileName?: InputMaybe + type?: InputMaybe + uri?: InputMaybe +} + +export type AuditLogItemBase = { + action: Scalars['String'] + ipAddress: Scalars['String'] + practitionerId: Scalars['String'] + time: Scalars['String'] + userAgent: Scalars['String'] +} + +export type Avatar = { + __typename?: 'Avatar' + data: Scalars['String'] + type: Scalars['String'] +} + +export type AvatarInput = { + data: Scalars['String'] + type: Scalars['String'] +} + +export type Birth = { + __typename?: 'Birth' + FEE?: Maybe + LATE_REGISTRATION_TARGET?: Maybe + PRINT_IN_ADVANCE?: Maybe + REGISTRATION_TARGET?: Maybe +} + +export type BirthEventSearchSet = EventSearchSet & { + __typename?: 'BirthEventSearchSet' + childGender?: Maybe + childName?: Maybe>> + dateOfBirth?: Maybe + fatherDateOfBirth?: Maybe + fatherIdentifier?: Maybe + fathersFirstName?: Maybe + fathersLastName?: Maybe + id: Scalars['ID'] + motherDateOfBirth?: Maybe + motherIdentifier?: Maybe + mothersFirstName?: Maybe + mothersLastName?: Maybe + operationHistories?: Maybe>> + placeOfBirth?: Maybe + registration?: Maybe + type?: Maybe +} + +export type BirthFee = { + __typename?: 'BirthFee' + DELAYED?: Maybe + LATE?: Maybe + ON_TIME?: Maybe +} + +export type BirthFeeInput = { + DELAYED?: InputMaybe + LATE?: InputMaybe + ON_TIME?: InputMaybe +} + +export type BirthInput = { + FEE?: InputMaybe + LATE_REGISTRATION_TARGET?: InputMaybe + PRINT_IN_ADVANCE?: InputMaybe + REGISTRATION_TARGET?: InputMaybe +} + +export type BirthRegResultSet = { + __typename?: 'BirthRegResultSet' + results?: Maybe>> + totalItems?: Maybe +} + +export type BirthRegistration = EventRegistration & { + __typename?: 'BirthRegistration' + _fhirIDMap?: Maybe + attendantAtBirth?: Maybe + birthType?: Maybe + child?: Maybe + childrenBornAliveToMother?: Maybe + createdAt?: Maybe + eventLocation?: Maybe + father?: Maybe + foetalDeathsToMother?: Maybe + history?: Maybe>> + id: Scalars['ID'] + informant?: Maybe + lastPreviousLiveBirth?: Maybe + mother?: Maybe + otherAttendantAtBirth?: Maybe + questionnaire?: Maybe>> + registration?: Maybe + updatedAt?: Maybe + weightAtBirth?: Maybe +} + +export type BirthRegistrationInput = { + _fhirIDMap?: InputMaybe + attendantAtBirth?: InputMaybe + birthType?: InputMaybe + child?: InputMaybe + childrenBornAliveToMother?: InputMaybe + createdAt?: InputMaybe + eventLocation?: InputMaybe + father?: InputMaybe + foetalDeathsToMother?: InputMaybe + informant?: InputMaybe + lastPreviousLiveBirth?: InputMaybe + mother?: InputMaybe + otherAttendantAtBirth?: InputMaybe + questionnaire?: InputMaybe>> + registration?: InputMaybe + updatedAt?: InputMaybe + weightAtBirth?: InputMaybe +} + +export type BookMarkedSearches = { + __typename?: 'BookMarkedSearches' + searchList?: Maybe> +} + +export type BookmarkSearchInput = { + name: Scalars['String'] + parameters: AdvancedSearchParametersInput + userId: Scalars['String'] +} + +export type BookmarkedSeachItem = { + __typename?: 'BookmarkedSeachItem' + name: Scalars['String'] + parameters: AdvancedSeachParameters + searchId: Scalars['String'] +} + +export type Certificate = { + __typename?: 'Certificate' + collector?: Maybe + data?: Maybe + hasShowedVerifiedDocument?: Maybe + payments?: Maybe>> +} + +export type CertificateInput = { + collector?: InputMaybe + data?: InputMaybe + hasShowedVerifiedDocument?: InputMaybe + payments?: InputMaybe>> +} + +export type CertificateSvg = { + __typename?: 'CertificateSVG' + event: Event + id: Scalars['ID'] + status: CertificateStatus + svgCode: Scalars['String'] + svgDateCreated: Scalars['String'] + svgDateUpdated: Scalars['String'] + svgFilename: Scalars['String'] + user: Scalars['String'] +} + +export type CertificateSvgInput = { + event: Event + id?: InputMaybe + status: CertificateStatus + svgCode: Scalars['String'] + svgDateCreated?: InputMaybe + svgDateUpdated?: InputMaybe + svgFilename: Scalars['String'] + user: Scalars['String'] +} + +export enum CertificateStatus { + Active = 'ACTIVE', + Inactive = 'INACTIVE' +} + +export type CertificationMetric = { + __typename?: 'CertificationMetric' + eventType: Scalars['String'] + total: Scalars['Float'] +} + +export type Comment = { + __typename?: 'Comment' + comment?: Maybe + createdAt?: Maybe + id: Scalars['ID'] + user?: Maybe +} + +export type CommentInput = { + comment?: InputMaybe + createdAt?: InputMaybe + user?: InputMaybe +} + +export type ComparisonInput = { + eq?: InputMaybe + gt?: InputMaybe + gte?: InputMaybe + in?: InputMaybe> + lt?: InputMaybe + lte?: InputMaybe + ne?: InputMaybe + nin?: InputMaybe> +} + +export type ContactPoint = { + __typename?: 'ContactPoint' + system?: Maybe + use?: Maybe + value?: Maybe +} + +export type ContactPointInput = { + system?: InputMaybe + use?: InputMaybe + value?: InputMaybe +} + +export type CorrectionInput = { + attestedAndCopied?: InputMaybe + data?: InputMaybe + hasShowedVerifiedDocument?: InputMaybe + location?: InputMaybe + noSupportingDocumentationRequired?: InputMaybe + note?: InputMaybe + otherReason?: InputMaybe + payments?: InputMaybe>> + reason?: InputMaybe + requester?: InputMaybe + values?: InputMaybe>> +} + +export type CorrectionMetric = { + __typename?: 'CorrectionMetric' + reason: Scalars['String'] + total: Scalars['Float'] +} + +export type CorrectionValueInput = { + fieldName?: InputMaybe + newValue?: InputMaybe + oldValue?: InputMaybe + section?: InputMaybe +} + +export type CountryLogo = { + __typename?: 'CountryLogo' + file?: Maybe + fileName?: Maybe +} + +export type CountryLogoInput = { + file?: InputMaybe + fileName?: InputMaybe +} + +export type CreatedIds = { + __typename?: 'CreatedIds' + compositionId?: Maybe + isPotentiallyDuplicate?: Maybe + trackingId?: Maybe +} + +export type Currency = { + __typename?: 'Currency' + isoCode?: Maybe + languagesAndCountry?: Maybe>> +} + +export type CurrencyInput = { + isoCode?: InputMaybe + languagesAndCountry?: InputMaybe>> +} + +export type Death = { + __typename?: 'Death' + FEE?: Maybe + PRINT_IN_ADVANCE?: Maybe + REGISTRATION_TARGET?: Maybe +} + +export type DeathEventSearchSet = EventSearchSet & { + __typename?: 'DeathEventSearchSet' + dateOfDeath?: Maybe + deceasedGender?: Maybe + deceasedName?: Maybe>> + id: Scalars['ID'] + operationHistories?: Maybe>> + registration?: Maybe + type?: Maybe +} + +export type DeathFee = { + __typename?: 'DeathFee' + DELAYED?: Maybe + ON_TIME?: Maybe +} + +export type DeathFeeInput = { + DELAYED?: InputMaybe + ON_TIME?: InputMaybe +} + +export type DeathInput = { + FEE?: InputMaybe + PRINT_IN_ADVANCE?: InputMaybe + REGISTRATION_TARGET?: InputMaybe +} + +export type DeathRegistration = EventRegistration & { + __typename?: 'DeathRegistration' + _fhirIDMap?: Maybe + causeOfDeath?: Maybe + causeOfDeathEstablished?: Maybe + causeOfDeathMethod?: Maybe + createdAt?: Maybe + deathDescription?: Maybe + deceased?: Maybe + eventLocation?: Maybe + father?: Maybe + femaleDependentsOfDeceased?: Maybe + history?: Maybe>> + id: Scalars['ID'] + informant?: Maybe + maleDependentsOfDeceased?: Maybe + mannerOfDeath?: Maybe + medicalPractitioner?: Maybe + mother?: Maybe + questionnaire?: Maybe>> + registration?: Maybe + spouse?: Maybe + updatedAt?: Maybe +} + +export type DeathRegistrationInput = { + _fhirIDMap?: InputMaybe + causeOfDeath?: InputMaybe + causeOfDeathEstablished?: InputMaybe + causeOfDeathMethod?: InputMaybe + createdAt?: InputMaybe + deathDescription?: InputMaybe + deceased?: InputMaybe + eventLocation?: InputMaybe + father?: InputMaybe + femaleDependentsOfDeceased?: InputMaybe + informant?: InputMaybe + maleDependentsOfDeceased?: InputMaybe + mannerOfDeath?: InputMaybe + medicalPractitioner?: InputMaybe + mother?: InputMaybe + questionnaire?: InputMaybe>> + registration?: InputMaybe + spouse?: InputMaybe + updatedAt?: InputMaybe +} + +export type Deceased = { + __typename?: 'Deceased' + deathDate?: Maybe + deceased?: Maybe +} + +export type DeceasedInput = { + deathDate?: InputMaybe + deceased?: InputMaybe +} + +export type DeclarationsStartedMetrics = { + __typename?: 'DeclarationsStartedMetrics' + fieldAgentDeclarations: Scalars['Int'] + hospitalDeclarations: Scalars['Int'] + officeDeclarations: Scalars['Int'] +} + +export type Dummy = { + __typename?: 'Dummy' + dummy: Scalars['String'] +} + +export type DuplicatesInfo = { + __typename?: 'DuplicatesInfo' + compositionId?: Maybe + trackingId?: Maybe +} + +export type Estimation = { + __typename?: 'Estimation' + femaleEstimation: Scalars['Int'] + locationId: Scalars['String'] + locationLevel: Scalars['String'] + maleEstimation: Scalars['Int'] + totalEstimation: Scalars['Int'] +} + +export enum Event { + Birth = 'birth', + Death = 'death', + Marriage = 'marriage' +} + +export type EventMetrics = { + __typename?: 'EventMetrics' + eventLocationType: Scalars['String'] + gender: Scalars['String'] + practitionerRole: Scalars['String'] + timeLabel: Scalars['String'] + total: Scalars['Int'] +} + +export type EventMetricsByLocation = { + __typename?: 'EventMetricsByLocation' + delayed: Scalars['Int'] + healthFacility: Scalars['Int'] + home: Scalars['Int'] + late: Scalars['Int'] + location: Location + total: Scalars['Int'] +} + +export type EventMetricsByRegistrar = { + __typename?: 'EventMetricsByRegistrar' + delayed: Scalars['Int'] + late: Scalars['Int'] + registrarPractitioner?: Maybe + total: Scalars['Int'] +} + +export type EventMetricsByTime = { + __typename?: 'EventMetricsByTime' + delayed: Scalars['Int'] + healthFacility: Scalars['Int'] + home: Scalars['Int'] + late: Scalars['Int'] + month: Scalars['String'] + time: Scalars['String'] + total: Scalars['Int'] +} + +export type EventProgressData = { + __typename?: 'EventProgressData' + timeInProgress?: Maybe + timeInReadyForReview?: Maybe + timeInReadyToPrint?: Maybe + timeInRequiresUpdates?: Maybe + timeInWaitingForApproval?: Maybe + timeInWaitingForBRIS?: Maybe +} + +export type EventProgressResultSet = { + __typename?: 'EventProgressResultSet' + results?: Maybe>> + totalItems?: Maybe +} + +export type EventProgressSet = { + __typename?: 'EventProgressSet' + dateOfEvent?: Maybe + id: Scalars['ID'] + name?: Maybe>> + progressReport?: Maybe + registration?: Maybe + startedAt?: Maybe + startedBy?: Maybe + startedByFacility?: Maybe + type?: Maybe +} + +export type EventRegistration = { + createdAt?: Maybe + history?: Maybe>> + id: Scalars['ID'] + registration?: Maybe +} + +export type EventSearchResultSet = { + __typename?: 'EventSearchResultSet' + results?: Maybe>> + totalItems?: Maybe +} + +export type EventSearchSet = { + id: Scalars['ID'] + operationHistories?: Maybe>> + registration?: Maybe + type?: Maybe +} + +export type History = { + __typename?: 'History' + action?: Maybe + certificates?: Maybe>> + comments?: Maybe>> + date?: Maybe + dhis2Notification?: Maybe + duplicateOf?: Maybe + hasShowedVerifiedDocument?: Maybe + input?: Maybe>> + ipAddress?: Maybe + location?: Maybe + office?: Maybe + otherReason?: Maybe + output?: Maybe>> + potentialDuplicates?: Maybe> + reason?: Maybe + regStatus?: Maybe + requester?: Maybe + signature?: Maybe + statusReason?: Maybe + system?: Maybe + user?: Maybe +} + +export type HumanName = { + __typename?: 'HumanName' + familyName?: Maybe + firstNames?: Maybe + marriedLastName?: Maybe + use?: Maybe +} + +export type HumanNameInput = { + familyName?: InputMaybe + firstNames?: InputMaybe + marriedLastName?: InputMaybe + use?: InputMaybe +} + +export type Identifier = { + __typename?: 'Identifier' + system?: Maybe + value?: Maybe +} + +export type IdentityInput = { + fieldsModifiedByIdentity?: InputMaybe>> + id?: InputMaybe + otherType?: InputMaybe + type?: InputMaybe +} + +export type IdentityType = { + __typename?: 'IdentityType' + fieldsModifiedByIdentity?: Maybe>> + id?: Maybe + otherType?: Maybe + type?: Maybe +} + +export enum ImageFit { + Fill = 'FILL', + Tile = 'TILE' +} + +export type InputOutput = { + __typename?: 'InputOutput' + valueCode?: Maybe + valueId?: Maybe + valueString?: Maybe +} + +export type IntegratedSystem = { + __typename?: 'IntegratedSystem' + name?: Maybe + type?: Maybe + username?: Maybe +} + +export enum IntegratingSystemType { + Mosip = 'MOSIP', + Osia = 'OSIA', + Other = 'OTHER' +} + +export type LabelInput = { + label: Scalars['String'] + lang: Scalars['String'] +} + +export type LocalRegistrar = { + __typename?: 'LocalRegistrar' + name: Array> + role: SystemRoleType + signature?: Maybe +} + +export type Location = { + __typename?: 'Location' + _fhirID?: Maybe + address?: Maybe
+ alias?: Maybe> + altitude?: Maybe + description?: Maybe + geoData?: Maybe + id: Scalars['ID'] + identifier?: Maybe> + latitude?: Maybe + longitude?: Maybe + name?: Maybe + partOf?: Maybe + status?: Maybe + telecom?: Maybe>> + type?: Maybe +} + +export type LocationInput = { + _fhirID?: InputMaybe + address?: InputMaybe + alias?: InputMaybe>> + altitude?: InputMaybe + description?: InputMaybe + geoData?: InputMaybe + identifier?: InputMaybe>> + latitude?: InputMaybe + longitude?: InputMaybe + name?: InputMaybe + partOf?: InputMaybe + status?: InputMaybe + telecom?: InputMaybe>> + type?: InputMaybe +} + +export type LocationStatisticsResponse = { + __typename?: 'LocationStatisticsResponse' + offices: Scalars['Int'] + population?: Maybe + registrars: Scalars['Int'] +} + +export type LocationWiseEstimationMetric = { + __typename?: 'LocationWiseEstimationMetric' + estimated: Scalars['Int'] + locationId: Scalars['String'] + locationName: Scalars['String'] + total: Scalars['Int'] + within1Year: Scalars['Int'] + within5Years: Scalars['Int'] + withinTarget: Scalars['Int'] +} + +export type LoginBackground = { + __typename?: 'LoginBackground' + backgroundColor?: Maybe + backgroundImage?: Maybe + imageFit?: Maybe +} + +export type LoginBackgroundInput = { + backgroundColor?: InputMaybe + backgroundImage?: InputMaybe + imageFit?: InputMaybe +} + +export type Marriage = { + __typename?: 'Marriage' + FEE?: Maybe + PRINT_IN_ADVANCE?: Maybe + REGISTRATION_TARGET?: Maybe +} + +export type MarriageEventSearchSet = EventSearchSet & { + __typename?: 'MarriageEventSearchSet' + brideIdentifier?: Maybe + brideName?: Maybe>> + dateOfMarriage?: Maybe + groomIdentifier?: Maybe + groomName?: Maybe>> + id: Scalars['ID'] + operationHistories?: Maybe>> + registration?: Maybe + type?: Maybe +} + +export type MarriageFee = { + __typename?: 'MarriageFee' + DELAYED?: Maybe + ON_TIME?: Maybe +} + +export type MarriageFeeInput = { + DELAYED?: InputMaybe + ON_TIME?: InputMaybe +} + +export type MarriageInput = { + FEE?: InputMaybe + PRINT_IN_ADVANCE?: InputMaybe + REGISTRATION_TARGET?: InputMaybe +} + +export type MarriageRegistration = EventRegistration & { + __typename?: 'MarriageRegistration' + _fhirIDMap?: Maybe + bride?: Maybe + createdAt?: Maybe + eventLocation?: Maybe + groom?: Maybe + history?: Maybe>> + id: Scalars['ID'] + informant?: Maybe + questionnaire?: Maybe>> + registration?: Maybe + typeOfMarriage?: Maybe + updatedAt?: Maybe + witnessOne?: Maybe + witnessTwo?: Maybe +} + +export type MarriageRegistrationInput = { + _fhirIDMap?: InputMaybe + bride?: InputMaybe + createdAt?: InputMaybe + eventLocation?: InputMaybe + groom?: InputMaybe + informant?: InputMaybe + questionnaire?: InputMaybe>> + registration?: InputMaybe + typeOfMarriage?: InputMaybe + updatedAt?: InputMaybe + witnessOne?: InputMaybe + witnessTwo?: InputMaybe +} + +export type MedicalPractitioner = { + __typename?: 'MedicalPractitioner' + lastVisitDate?: Maybe + name?: Maybe + qualification?: Maybe +} + +export type MedicalPractitionerInput = { + lastVisitDate?: InputMaybe + name?: InputMaybe + qualification?: InputMaybe +} + +export type MixedTotalMetricsResult = + | TotalMetricsByLocation + | TotalMetricsByRegistrar + | TotalMetricsByTime + +export type MonthWiseEstimationMetric = { + __typename?: 'MonthWiseEstimationMetric' + estimated: Scalars['Int'] + month: Scalars['Int'] + total: Scalars['Int'] + within1Year: Scalars['Int'] + within5Years: Scalars['Int'] + withinTarget: Scalars['Int'] + year: Scalars['Int'] +} + +export type Mutation = { + __typename?: 'Mutation' + activateUser?: Maybe + auditUser?: Maybe + bookmarkAdvancedSearch?: Maybe + changeAvatar?: Maybe + changeEmail?: Maybe + changePassword?: Maybe + changePhone?: Maybe + createBirthRegistration: CreatedIds + createDeathRegistration: CreatedIds + createMarriageRegistration: CreatedIds + createNotification: Notification + createOrUpdateCertificateSVG?: Maybe + createOrUpdateUser: User + deactivateSystem?: Maybe + deleteSystem?: Maybe + markBirthAsCertified: Scalars['ID'] + markBirthAsIssued: Scalars['ID'] + markBirthAsRegistered: BirthRegistration + markBirthAsValidated?: Maybe + markBirthAsVerified?: Maybe + markDeathAsCertified: Scalars['ID'] + markDeathAsIssued: Scalars['ID'] + markDeathAsRegistered: DeathRegistration + markDeathAsValidated?: Maybe + markDeathAsVerified?: Maybe + markEventAsArchived: Scalars['ID'] + markEventAsDuplicate: Scalars['ID'] + markEventAsNotDuplicate: Scalars['ID'] + markEventAsReinstated?: Maybe + markEventAsUnassigned: Scalars['ID'] + markEventAsVoided: Scalars['ID'] + markMarriageAsCertified: Scalars['ID'] + markMarriageAsIssued: Scalars['ID'] + markMarriageAsRegistered: MarriageRegistration + markMarriageAsValidated?: Maybe + reactivateSystem?: Maybe + refreshSystemSecret?: Maybe + registerSystem?: Maybe + removeBookmarkedAdvancedSearch?: Maybe + requestBirthRegistrationCorrection: Scalars['ID'] + requestDeathRegistrationCorrection: Scalars['ID'] + requestMarriageRegistrationCorrection: Scalars['ID'] + resendInvite?: Maybe + resetPasswordInvite?: Maybe + toggleInformantSMSNotification?: Maybe> + updateApplicationConfig?: Maybe + updateBirthRegistration: Scalars['ID'] + updateDeathRegistration: Scalars['ID'] + updatePermissions?: Maybe + updateRole: Response + usernameReminder?: Maybe + voidNotification?: Maybe +} + +export type MutationActivateUserArgs = { + password: Scalars['String'] + securityQNAs: Array> + userId: Scalars['String'] +} + +export type MutationAuditUserArgs = { + action: Scalars['String'] + comment?: InputMaybe + reason: Scalars['String'] + userId: Scalars['String'] +} + +export type MutationBookmarkAdvancedSearchArgs = { + bookmarkSearchInput: BookmarkSearchInput +} + +export type MutationChangeAvatarArgs = { + avatar: AvatarInput + userId: Scalars['String'] +} + +export type MutationChangeEmailArgs = { + email: Scalars['String'] + nonce: Scalars['String'] + userId: Scalars['String'] + verifyCode: Scalars['String'] +} + +export type MutationChangePasswordArgs = { + existingPassword: Scalars['String'] + password: Scalars['String'] + userId: Scalars['String'] +} + +export type MutationChangePhoneArgs = { + nonce: Scalars['String'] + phoneNumber: Scalars['String'] + userId: Scalars['String'] + verifyCode: Scalars['String'] +} + +export type MutationCreateBirthRegistrationArgs = { + details: BirthRegistrationInput +} + +export type MutationCreateDeathRegistrationArgs = { + details: DeathRegistrationInput +} + +export type MutationCreateMarriageRegistrationArgs = { + details: MarriageRegistrationInput +} + +export type MutationCreateNotificationArgs = { + details: NotificationInput +} + +export type MutationCreateOrUpdateCertificateSvgArgs = { + certificateSVG: CertificateSvgInput +} + +export type MutationCreateOrUpdateUserArgs = { + user: UserInput +} + +export type MutationDeactivateSystemArgs = { + clientId: Scalars['ID'] +} + +export type MutationDeleteSystemArgs = { + clientId: Scalars['ID'] +} + +export type MutationMarkBirthAsCertifiedArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkBirthAsIssuedArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkBirthAsRegisteredArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkBirthAsValidatedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkBirthAsVerifiedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkDeathAsCertifiedArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkDeathAsIssuedArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkDeathAsRegisteredArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkDeathAsValidatedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkDeathAsVerifiedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationMarkEventAsArchivedArgs = { + comment?: InputMaybe + duplicateTrackingId?: InputMaybe + id: Scalars['String'] + reason?: InputMaybe +} + +export type MutationMarkEventAsDuplicateArgs = { + comment?: InputMaybe + duplicateTrackingId?: InputMaybe + id: Scalars['String'] + reason: Scalars['String'] +} + +export type MutationMarkEventAsNotDuplicateArgs = { + id: Scalars['String'] +} + +export type MutationMarkEventAsReinstatedArgs = { + id: Scalars['String'] +} + +export type MutationMarkEventAsUnassignedArgs = { + id: Scalars['String'] +} + +export type MutationMarkEventAsVoidedArgs = { + comment?: InputMaybe + id: Scalars['String'] + reason: Scalars['String'] +} + +export type MutationMarkMarriageAsCertifiedArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkMarriageAsIssuedArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkMarriageAsRegisteredArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationMarkMarriageAsValidatedArgs = { + details?: InputMaybe + id: Scalars['ID'] +} + +export type MutationReactivateSystemArgs = { + clientId: Scalars['ID'] +} + +export type MutationRefreshSystemSecretArgs = { + clientId: Scalars['String'] +} + +export type MutationRegisterSystemArgs = { + system?: InputMaybe +} + +export type MutationRemoveBookmarkedAdvancedSearchArgs = { + removeBookmarkedSearchInput: RemoveBookmarkedSeachInput +} + +export type MutationRequestBirthRegistrationCorrectionArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationRequestDeathRegistrationCorrectionArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationRequestMarriageRegistrationCorrectionArgs = { + details: MarriageRegistrationInput + id: Scalars['ID'] +} + +export type MutationResendInviteArgs = { + userId: Scalars['String'] +} + +export type MutationResetPasswordInviteArgs = { + userId: Scalars['String'] +} + +export type MutationToggleInformantSmsNotificationArgs = { + smsNotifications?: InputMaybe> +} + +export type MutationUpdateApplicationConfigArgs = { + applicationConfig?: InputMaybe +} + +export type MutationUpdateBirthRegistrationArgs = { + details: BirthRegistrationInput + id: Scalars['ID'] +} + +export type MutationUpdateDeathRegistrationArgs = { + details: DeathRegistrationInput + id: Scalars['ID'] +} + +export type MutationUpdatePermissionsArgs = { + setting: UpdatePermissionsInput +} + +export type MutationUpdateRoleArgs = { + systemRole?: InputMaybe +} + +export type MutationUsernameReminderArgs = { + userId: Scalars['String'] +} + +export type MutationVoidNotificationArgs = { + id: Scalars['ID'] +} + +export type Notification = { + __typename?: 'Notification' + child?: Maybe + createdAt?: Maybe + father?: Maybe + id: Scalars['ID'] + informant?: Maybe + location?: Maybe + mother?: Maybe + updatedAt?: Maybe +} + +export type NotificationInput = { + child?: InputMaybe + createdAt?: InputMaybe + father?: InputMaybe + informant?: InputMaybe + location?: InputMaybe + mother?: InputMaybe + updatedAt?: InputMaybe +} + +export type OidpUserAddress = { + __typename?: 'OIDPUserAddress' + city?: Maybe + country?: Maybe + formatted?: Maybe + locality?: Maybe + postal_code?: Maybe + region?: Maybe + street_address?: Maybe +} + +export type OidpUserInfo = { + __typename?: 'OIDPUserInfo' + address?: Maybe + birthdate?: Maybe + email?: Maybe + email_verified?: Maybe + family_name?: Maybe + gender?: Maybe + given_name?: Maybe + locale?: Maybe + middle_name?: Maybe + name?: Maybe + nickname?: Maybe + phone_number?: Maybe + phone_number_verified?: Maybe + picture?: Maybe + preferred_username?: Maybe + profile?: Maybe + sub: Scalars['String'] + updated_at?: Maybe + website?: Maybe + zoneinfo?: Maybe +} + +export type OperationHistorySearchSet = { + __typename?: 'OperationHistorySearchSet' + notificationFacilityAlias?: Maybe>> + notificationFacilityName?: Maybe + operatedOn?: Maybe + operationType?: Maybe + operatorName?: Maybe>> + operatorOfficeAlias?: Maybe>> + operatorOfficeName?: Maybe + operatorRole?: Maybe + rejectComment?: Maybe + rejectReason?: Maybe +} + +export type Payment = { + __typename?: 'Payment' + amount?: Maybe + date?: Maybe + outcome?: Maybe + paymentId?: Maybe + total?: Maybe + type?: Maybe +} + +export type PaymentInput = { + amount?: InputMaybe + data?: InputMaybe + date?: InputMaybe + outcome?: InputMaybe + paymentId?: InputMaybe + total?: InputMaybe + type?: InputMaybe +} + +export type PaymentMetric = { + __typename?: 'PaymentMetric' + paymentType: Scalars['String'] + total: Scalars['Float'] +} + +export enum PaymentOutcomeType { + Completed = 'COMPLETED', + Error = 'ERROR', + Partial = 'PARTIAL' +} + +export enum PaymentType { + Manual = 'MANUAL' +} + +export type Person = { + __typename?: 'Person' + _fhirID?: Maybe + address?: Maybe>> + age?: Maybe + ageOfIndividualInYears?: Maybe + birthDate?: Maybe + dateOfMarriage?: Maybe + deceased?: Maybe + detailsExist?: Maybe + educationalAttainment?: Maybe + exactDateOfBirthUnknown?: Maybe + gender?: Maybe + id?: Maybe + identifier?: Maybe>> + maritalStatus?: Maybe + multipleBirth?: Maybe + name?: Maybe>> + nationality?: Maybe>> + occupation?: Maybe + photo?: Maybe>> + reasonNotApplying?: Maybe + telecom?: Maybe>> +} + +export type PersonInput = { + _fhirID?: InputMaybe + address?: InputMaybe>> + age?: InputMaybe + ageOfIndividualInYears?: InputMaybe + birthDate?: InputMaybe + dateOfMarriage?: InputMaybe + deceased?: InputMaybe + detailsExist?: InputMaybe + educationalAttainment?: InputMaybe + gender?: InputMaybe + identifier?: InputMaybe>> + maritalStatus?: InputMaybe + multipleBirth?: InputMaybe + name?: InputMaybe>> + nationality?: InputMaybe>> + occupation?: InputMaybe + photo?: InputMaybe> + reasonNotApplying?: InputMaybe + telecom?: InputMaybe>> +} + +export type Query = { + __typename?: 'Query' + fetchBirthRegistration?: Maybe + fetchDeathRegistration?: Maybe + fetchEventRegistration?: Maybe + fetchLocationWiseEventMetrics?: Maybe> + fetchMarriageRegistration?: Maybe + fetchMonthWiseEventMetrics?: Maybe> + fetchRecordDetailsForVerification?: Maybe + fetchRegistration?: Maybe + fetchRegistrationCountByStatus?: Maybe + fetchRegistrationForViewing?: Maybe + fetchSystem?: Maybe + getActiveCertificatesSVG?: Maybe> + getCertificateSVG?: Maybe + getDeclarationsStartedMetrics?: Maybe + getEventsWithProgress?: Maybe + getLocationStatistics?: Maybe + getOIDPUserInfo?: Maybe + getRegistrationsListByFilter?: Maybe + getSystemRoles?: Maybe> + getTotalCertifications?: Maybe> + getTotalCorrections?: Maybe> + getTotalMetrics?: Maybe + getTotalPayments?: Maybe> + getUser?: Maybe + getUserAuditLog?: Maybe + getUserByEmail?: Maybe + getUserByMobile?: Maybe + getVSExports?: Maybe + hasChildLocation?: Maybe + informantSMSNotifications?: Maybe> + listBirthRegistrations?: Maybe + listNotifications?: Maybe>> + locationById?: Maybe + locationsByParent?: Maybe>> + queryPersonByIdentifier?: Maybe + queryPersonByNidIdentifier?: Maybe + queryRegistrationByIdentifier?: Maybe + searchBirthRegistrations?: Maybe>> + searchDeathRegistrations?: Maybe>> + searchEvents?: Maybe + searchFieldAgents?: Maybe + searchUsers?: Maybe + verifyPasswordById?: Maybe +} + +export type QueryFetchBirthRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchDeathRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchEventRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchLocationWiseEventMetricsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryFetchMarriageRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchMonthWiseEventMetricsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryFetchRecordDetailsForVerificationArgs = { + id: Scalars['String'] +} + +export type QueryFetchRegistrationArgs = { + id: Scalars['ID'] +} + +export type QueryFetchRegistrationCountByStatusArgs = { + event?: InputMaybe + locationId?: InputMaybe + status: Array> +} + +export type QueryFetchRegistrationForViewingArgs = { + id: Scalars['ID'] +} + +export type QueryFetchSystemArgs = { + clientId: Scalars['ID'] +} + +export type QueryGetCertificateSvgArgs = { + event: Event + status: CertificateStatus +} + +export type QueryGetDeclarationsStartedMetricsArgs = { + locationId: Scalars['String'] + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetEventsWithProgressArgs = { + compositionType?: InputMaybe>> + count?: InputMaybe + declarationJurisdictionId?: InputMaybe + registrationStatuses?: InputMaybe>> + skip?: InputMaybe + sort?: InputMaybe +} + +export type QueryGetLocationStatisticsArgs = { + locationId?: InputMaybe + populationYear: Scalars['Int'] +} + +export type QueryGetOidpUserInfoArgs = { + clientId: Scalars['String'] + code: Scalars['String'] + grantType?: InputMaybe + redirectUri: Scalars['String'] +} + +export type QueryGetRegistrationsListByFilterArgs = { + event: Scalars['String'] + filterBy: Scalars['String'] + locationId?: InputMaybe + size: Scalars['Int'] + skip: Scalars['Int'] + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetSystemRolesArgs = { + active?: InputMaybe + role?: InputMaybe + sortBy?: InputMaybe + sortOrder?: InputMaybe + title?: InputMaybe + value?: InputMaybe +} + +export type QueryGetTotalCertificationsArgs = { + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetTotalCorrectionsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetTotalMetricsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetTotalPaymentsArgs = { + event: Scalars['String'] + locationId?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QueryGetUserArgs = { + userId?: InputMaybe +} + +export type QueryGetUserAuditLogArgs = { + count: Scalars['Int'] + practitionerId: Scalars['String'] + skip?: InputMaybe + timeEnd?: InputMaybe + timeStart?: InputMaybe +} + +export type QueryGetUserByEmailArgs = { + email?: InputMaybe +} + +export type QueryGetUserByMobileArgs = { + mobile?: InputMaybe +} + +export type QueryHasChildLocationArgs = { + parentId?: InputMaybe +} + +export type QueryListBirthRegistrationsArgs = { + count?: InputMaybe + from?: InputMaybe + locationIds?: InputMaybe>> + skip?: InputMaybe + status?: InputMaybe + to?: InputMaybe + userId?: InputMaybe +} + +export type QueryListNotificationsArgs = { + from?: InputMaybe + locationIds?: InputMaybe>> + status?: InputMaybe + to?: InputMaybe + userId?: InputMaybe +} + +export type QueryLocationByIdArgs = { + locationId?: InputMaybe +} + +export type QueryLocationsByParentArgs = { + parentId?: InputMaybe + type?: InputMaybe +} + +export type QueryQueryPersonByIdentifierArgs = { + identifier: Scalars['ID'] +} + +export type QueryQueryPersonByNidIdentifierArgs = { + country?: InputMaybe + dob?: InputMaybe + nid?: InputMaybe +} + +export type QueryQueryRegistrationByIdentifierArgs = { + identifier: Scalars['ID'] +} + +export type QuerySearchBirthRegistrationsArgs = { + fromDate?: InputMaybe + toDate?: InputMaybe +} + +export type QuerySearchDeathRegistrationsArgs = { + fromDate?: InputMaybe + toDate?: InputMaybe +} + +export type QuerySearchEventsArgs = { + advancedSearchParameters: AdvancedSearchParametersInput + count?: InputMaybe + skip?: InputMaybe + sort?: InputMaybe + sortColumn?: InputMaybe + userId?: InputMaybe +} + +export type QuerySearchFieldAgentsArgs = { + count?: InputMaybe + event?: InputMaybe + language?: InputMaybe + locationId?: InputMaybe + primaryOfficeId?: InputMaybe + skip?: InputMaybe + sort?: InputMaybe + status?: InputMaybe + timeEnd: Scalars['String'] + timeStart: Scalars['String'] +} + +export type QuerySearchUsersArgs = { + count?: InputMaybe + email?: InputMaybe + locationId?: InputMaybe + mobile?: InputMaybe + primaryOfficeId?: InputMaybe + skip?: InputMaybe + sort?: InputMaybe + status?: InputMaybe + systemRole?: InputMaybe + username?: InputMaybe +} + +export type QueryVerifyPasswordByIdArgs = { + id: Scalars['String'] + password: Scalars['String'] +} + +export type QuestionnaireQuestion = { + __typename?: 'QuestionnaireQuestion' + fieldId?: Maybe + value?: Maybe +} + +export type QuestionnaireQuestionInput = { + fieldId?: InputMaybe + value?: InputMaybe +} + +export type RecordDetails = BirthRegistration | DeathRegistration + +export enum RegAction { + Assigned = 'ASSIGNED', + Downloaded = 'DOWNLOADED', + FlaggedAsPotentialDuplicate = 'FLAGGED_AS_POTENTIAL_DUPLICATE', + MarkedAsDuplicate = 'MARKED_AS_DUPLICATE', + MarkedAsNotDuplicate = 'MARKED_AS_NOT_DUPLICATE', + Reinstated = 'REINSTATED', + RequestedCorrection = 'REQUESTED_CORRECTION', + Unassigned = 'UNASSIGNED', + Verified = 'VERIFIED', + Viewed = 'VIEWED' +} + +export enum RegStatus { + Archived = 'ARCHIVED', + Certified = 'CERTIFIED', + DeclarationUpdated = 'DECLARATION_UPDATED', + Declared = 'DECLARED', + InProgress = 'IN_PROGRESS', + Issued = 'ISSUED', + Registered = 'REGISTERED', + Rejected = 'REJECTED', + Validated = 'VALIDATED', + WaitingValidation = 'WAITING_VALIDATION' +} + +export type RegWorkflow = { + __typename?: 'RegWorkflow' + comments?: Maybe>> + id: Scalars['ID'] + location?: Maybe + office?: Maybe + reason?: Maybe + timeLogged?: Maybe + timestamp?: Maybe + type?: Maybe + user?: Maybe +} + +export type RegWorkflowInput = { + comments?: InputMaybe>> + location?: InputMaybe + reason?: InputMaybe + timeLoggedMS?: InputMaybe + timestamp?: InputMaybe + type?: InputMaybe + user?: InputMaybe +} + +export type Registration = { + __typename?: 'Registration' + _fhirID?: Maybe + assignment?: Maybe + attachments?: Maybe>> + book?: Maybe + brideSignature?: Maybe + brideSignatureURI?: Maybe + certificates?: Maybe>> + contact?: Maybe + contactEmail?: Maybe + contactPhoneNumber?: Maybe + contactRelationship?: Maybe + draftId?: Maybe + duplicates?: Maybe>> + groomSignature?: Maybe + groomSignatureURI?: Maybe + id?: Maybe + inCompleteFields?: Maybe + informantType?: Maybe + informantsSignature?: Maybe + informantsSignatureURI?: Maybe + otherInformantType?: Maybe + page?: Maybe + paperFormID?: Maybe + registrationNumber?: Maybe + status?: Maybe>> + trackingId?: Maybe + type?: Maybe + witnessOneSignature?: Maybe + witnessOneSignatureURI?: Maybe + witnessTwoSignature?: Maybe + witnessTwoSignatureURI?: Maybe +} + +export type RegistrationCountResult = { + __typename?: 'RegistrationCountResult' + results: Array> + total: Scalars['Int'] +} + +export type RegistrationInput = { + _fhirID?: InputMaybe + attachments?: InputMaybe> + book?: InputMaybe + brideSignature?: InputMaybe + certificates?: InputMaybe>> + contactEmail?: InputMaybe + contactPhoneNumber?: InputMaybe + correction?: InputMaybe + draftId?: InputMaybe + groomSignature?: InputMaybe + inCompleteFields?: InputMaybe + informantType?: InputMaybe + informantsSignature?: InputMaybe + location?: InputMaybe + otherInformantType?: InputMaybe + page?: InputMaybe + paperFormID?: InputMaybe + registrationNumber?: InputMaybe + status?: InputMaybe>> + trackingId?: InputMaybe + type?: InputMaybe + witnessOneSignature?: InputMaybe + witnessTwoSignature?: InputMaybe +} + +export type RegistrationSearchSet = { + __typename?: 'RegistrationSearchSet' + assignment?: Maybe + comment?: Maybe + contactNumber?: Maybe + contactRelationship?: Maybe + createdAt?: Maybe + dateOfDeclaration?: Maybe + duplicates?: Maybe>> + eventLocationId?: Maybe + modifiedAt?: Maybe + reason?: Maybe + registeredLocationId?: Maybe + registrationNumber?: Maybe + status?: Maybe + trackingId?: Maybe +} + +export enum RegistrationType { + Birth = 'BIRTH', + Death = 'DEATH', + Marriage = 'MARRIAGE' +} + +export type Reinstated = { + __typename?: 'Reinstated' + registrationStatus?: Maybe + taskEntryResourceID: Scalars['ID'] +} + +export type RelatedPerson = { + __typename?: 'RelatedPerson' + _fhirID?: Maybe + _fhirIDPatient?: Maybe + address?: Maybe>> + affidavit?: Maybe>> + age?: Maybe + ageOfIndividualInYears?: Maybe + birthDate?: Maybe + dateOfMarriage?: Maybe + deceased?: Maybe + detailsExist?: Maybe + educationalAttainment?: Maybe + exactDateOfBirthUnknown?: Maybe + gender?: Maybe + id?: Maybe + identifier?: Maybe>> + maritalStatus?: Maybe + multipleBirth?: Maybe + name?: Maybe>> + nationality?: Maybe>> + occupation?: Maybe + otherRelationship?: Maybe + photo?: Maybe>> + reasonNotApplying?: Maybe + relationship?: Maybe + telecom?: Maybe>> +} + +export type RelatedPersonInput = { + _fhirID?: InputMaybe + _fhirIDPatient?: InputMaybe + address?: InputMaybe>> + affidavit?: InputMaybe> + age?: InputMaybe + ageOfIndividualInYears?: InputMaybe + birthDate?: InputMaybe + dateOfMarriage?: InputMaybe + deceased?: InputMaybe + detailsExist?: InputMaybe + educationalAttainment?: InputMaybe + exactDateOfBirthUnknown?: InputMaybe + gender?: InputMaybe + id?: InputMaybe + identifier?: InputMaybe>> + maritalStatus?: InputMaybe + multipleBirth?: InputMaybe + name?: InputMaybe>> + nationality?: InputMaybe>> + occupation?: InputMaybe + otherRelationship?: InputMaybe + photo?: InputMaybe> + reasonNotApplying?: InputMaybe + relationship?: InputMaybe + telecom?: InputMaybe>> +} + +export type RemoveBookmarkedSeachInput = { + searchId: Scalars['String'] + userId: Scalars['String'] +} + +export type Response = { + __typename?: 'Response' + roleIdMap: Scalars['Map'] +} + +export type Role = { + __typename?: 'Role' + _id: Scalars['ID'] + labels: Array +} + +export type RoleInput = { + _id?: InputMaybe + labels: Array +} + +export type RoleLabel = { + __typename?: 'RoleLabel' + label: Scalars['String'] + lang: Scalars['String'] +} + +export type SmsNotification = { + __typename?: 'SMSNotification' + createdAt: Scalars['String'] + enabled: Scalars['Boolean'] + id?: Maybe + name: Scalars['String'] + updatedAt: Scalars['String'] +} + +export type SmsNotificationInput = { + enabled: Scalars['Boolean'] + id: Scalars['String'] + name: Scalars['String'] +} + +export type SearchFieldAgentResponse = { + __typename?: 'SearchFieldAgentResponse' + avatar?: Maybe + averageTimeForDeclaredDeclarations?: Maybe + creationDate?: Maybe + fullName?: Maybe + practitionerId?: Maybe + primaryOfficeId?: Maybe + role?: Maybe + status?: Maybe + totalNumberOfDeclarationStarted?: Maybe + totalNumberOfInProgressAppStarted?: Maybe + totalNumberOfRejectedDeclarations?: Maybe +} + +export type SearchFieldAgentResult = { + __typename?: 'SearchFieldAgentResult' + results?: Maybe>> + totalItems?: Maybe +} + +export type SearchUserResult = { + __typename?: 'SearchUserResult' + results?: Maybe>> + totalItems?: Maybe +} + +export type SecurityQuestionAnswer = { + answer?: InputMaybe + questionKey?: InputMaybe +} + +export type Signature = { + __typename?: 'Signature' + data?: Maybe + type?: Maybe +} + +export type SignatureInput = { + data: Scalars['String'] + type?: InputMaybe +} + +export enum Status { + Active = 'active', + Deactivated = 'deactivated', + Disabled = 'disabled', + Pending = 'pending' +} + +export type StatusReason = { + __typename?: 'StatusReason' + text?: Maybe +} + +export type StatusWiseRegistrationCount = { + __typename?: 'StatusWiseRegistrationCount' + count: Scalars['Int'] + status: Scalars['String'] +} + +export type System = { + __typename?: 'System' + _id: Scalars['ID'] + clientId: Scalars['ID'] + integratingSystemType?: Maybe + name: Scalars['String'] + settings?: Maybe + shaSecret: Scalars['ID'] + status: SystemStatus + type: SystemType +} + +export type SystemInput = { + integratingSystemType?: InputMaybe + name: Scalars['String'] + settings?: InputMaybe + type: SystemType +} + +export type SystemRole = { + __typename?: 'SystemRole' + active: Scalars['Boolean'] + id: Scalars['ID'] + roles: Array + value: SystemRoleType +} + +export type SystemRoleInput = { + active?: InputMaybe + id: Scalars['ID'] + roles?: InputMaybe> + value?: InputMaybe +} + +export enum SystemRoleType { + FieldAgent = 'FIELD_AGENT', + LocalRegistrar = 'LOCAL_REGISTRAR', + LocalSystemAdmin = 'LOCAL_SYSTEM_ADMIN', + NationalRegistrar = 'NATIONAL_REGISTRAR', + NationalSystemAdmin = 'NATIONAL_SYSTEM_ADMIN', + PerformanceManagement = 'PERFORMANCE_MANAGEMENT', + RegistrationAgent = 'REGISTRATION_AGENT' +} + +export type SystemSecret = { + __typename?: 'SystemSecret' + clientSecret: Scalars['ID'] + system: System +} + +export type SystemSettings = { + __typename?: 'SystemSettings' + dailyQuota?: Maybe + openIdProviderBaseUrl?: Maybe + openIdProviderClaims?: Maybe + openIdProviderClientId?: Maybe + webhook?: Maybe> +} + +export type SystemSettingsInput = { + dailyQuota?: InputMaybe + webhook?: InputMaybe>> +} + +export enum SystemStatus { + Active = 'active', + Deactivated = 'deactivated' +} + +export enum SystemType { + Health = 'HEALTH', + NationalId = 'NATIONAL_ID', + RecordSearch = 'RECORD_SEARCH', + Webhook = 'WEBHOOK' +} + +export type TotalMetricsByLocation = { + __typename?: 'TotalMetricsByLocation' + results: Array + total?: Maybe +} + +export type TotalMetricsByRegistrar = { + __typename?: 'TotalMetricsByRegistrar' + results: Array + total?: Maybe +} + +export type TotalMetricsByTime = { + __typename?: 'TotalMetricsByTime' + results: Array + total?: Maybe +} + +export type TotalMetricsResult = { + __typename?: 'TotalMetricsResult' + estimated: Estimation + results: Array +} + +export type TotalVsExport = { + __typename?: 'TotalVSExport' + results?: Maybe> +} + +export type UpdatePermissionsInput = { + clientId: Scalars['String'] + webhook: Array +} + +export type User = { + __typename?: 'User' + avatar?: Maybe + catchmentArea?: Maybe> + creationDate: Scalars['String'] + device?: Maybe + email?: Maybe + id: Scalars['ID'] + identifier?: Maybe + localRegistrar?: Maybe + mobile?: Maybe + name: Array + practitionerId: Scalars['String'] + primaryOffice?: Maybe + role: Role + searches?: Maybe> + signature?: Maybe + status: Status + systemRole: SystemRoleType + underInvestigation?: Maybe + userMgntUserID: Scalars['ID'] + username?: Maybe +} + +export type UserAuditLogItem = AuditLogItemBase & { + __typename?: 'UserAuditLogItem' + action: Scalars['String'] + ipAddress: Scalars['String'] + practitionerId: Scalars['String'] + time: Scalars['String'] + userAgent: Scalars['String'] +} + +export type UserAuditLogItemWithComposition = AuditLogItemBase & { + __typename?: 'UserAuditLogItemWithComposition' + action: Scalars['String'] + data: AdditionalIdWithCompositionId + ipAddress: Scalars['String'] + practitionerId: Scalars['String'] + time: Scalars['String'] + userAgent: Scalars['String'] +} + +export type UserAuditLogResultItem = + | UserAuditLogItem + | UserAuditLogItemWithComposition + +export type UserAuditLogResultSet = { + __typename?: 'UserAuditLogResultSet' + results: Array + total: Scalars['Int'] +} + +export type UserIdentifierInput = { + system?: InputMaybe + use?: InputMaybe + value?: InputMaybe +} + +export type UserInfo = { + __typename?: 'UserInfo' + districtFhirId?: Maybe + locationLevel3FhirId?: Maybe + oidpUserInfo?: Maybe + stateFhirId?: Maybe +} + +export type UserInput = { + catchmentArea?: InputMaybe>> + device?: InputMaybe + email?: InputMaybe + id?: InputMaybe + identifier?: InputMaybe>> + mobile?: InputMaybe + name: Array + password?: InputMaybe + primaryOffice?: InputMaybe + role?: InputMaybe + signature?: InputMaybe + status?: InputMaybe + systemRole: SystemRoleType + username?: InputMaybe +} + +export type VsExport = { + __typename?: 'VSExport' + createdOn: Scalars['Date'] + endDate: Scalars['Date'] + event: Scalars['String'] + fileSize: Scalars['String'] + startDate: Scalars['Date'] + url: Scalars['String'] +} + +export type VerifyPasswordResult = { + __typename?: 'VerifyPasswordResult' + id?: Maybe + mobile?: Maybe + scrope?: Maybe>> + status?: Maybe + username?: Maybe +} + +export type WebhookInput = { + event: Scalars['String'] + permissions: Array> +} + +export type WebhookPermission = { + __typename?: 'WebhookPermission' + event: Scalars['String'] + permissions: Array +} + +export type BirthRegistrationFragmentFragment = { + __typename: 'BirthRegistration' + _fhirIDMap?: any | null + id: string + createdAt?: any | null + attendantAtBirth?: string | null + weightAtBirth?: number | null + birthType?: string | null + child?: { + __typename?: 'Person' + id?: string | null + birthDate?: string | null + gender?: string | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + } | null + informant?: { + __typename?: 'RelatedPerson' + id?: string | null + relationship?: string | null + _fhirIDPatient?: string | null + occupation?: string | null + nationality?: Array | null + birthDate?: string | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + } | null + mother?: { + __typename?: 'Person' + id?: string | null + birthDate?: string | null + multipleBirth?: number | null + maritalStatus?: string | null + occupation?: string | null + detailsExist?: boolean | null + dateOfMarriage?: any | null + educationalAttainment?: string | null + nationality?: Array | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + telecom?: Array<{ + __typename?: 'ContactPoint' + system?: string | null + value?: string | null + } | null> | null + } | null + father?: { + __typename?: 'Person' + id?: string | null + birthDate?: string | null + maritalStatus?: string | null + occupation?: string | null + detailsExist?: boolean | null + dateOfMarriage?: any | null + educationalAttainment?: string | null + nationality?: Array | null + reasonNotApplying?: string | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + telecom?: Array<{ + __typename?: 'ContactPoint' + system?: string | null + value?: string | null + } | null> | null + } | null + registration?: { + __typename?: 'Registration' + id?: string | null + informantType?: string | null + contactPhoneNumber?: string | null + type?: RegistrationType | null + trackingId?: string | null + registrationNumber?: string | null + attachments?: Array<{ + __typename?: 'Attachment' + data?: string | null + uri?: string | null + type?: string | null + contentType?: string | null + subject?: string | null + } | null> | null + status?: Array<{ + __typename?: 'RegWorkflow' + type?: RegStatus | null + timestamp?: any | null + comments?: Array<{ + __typename?: 'Comment' + comment?: string | null + } | null> | null + } | null> | null + } | null + eventLocation?: { + __typename?: 'Location' + id: string + type?: string | null + address?: { + __typename?: 'Address' + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null + } | null + questionnaire?: Array<{ + __typename?: 'QuestionnaireQuestion' + fieldId?: string | null + value?: string | null + } | null> | null +} + +export type RegisterBirthDeclarationMutationVariables = Exact<{ + id: Scalars['ID'] + details: BirthRegistrationInput +}> + +export type RegisterBirthDeclarationMutation = { + __typename?: 'Mutation' + markBirthAsRegistered: { __typename?: 'BirthRegistration'; id: string } +} + +export type MarkEventAsVoidedMutationVariables = Exact<{ + id: Scalars['String'] + reason: Scalars['String'] + comment: Scalars['String'] +}> + +export type MarkEventAsVoidedMutation = { + __typename?: 'Mutation' + markEventAsVoided: string +} + +export type CreateDeathDeclarationMutationVariables = Exact<{ + details: DeathRegistrationInput +}> + +export type CreateDeathDeclarationMutation = { + __typename?: 'Mutation' + createDeathRegistration: { + __typename?: 'CreatedIds' + trackingId?: string | null + compositionId?: string | null + } +} + +export type MarkBirthAsCertifiedMutationVariables = Exact<{ + id: Scalars['ID'] + details: BirthRegistrationInput +}> + +export type MarkBirthAsCertifiedMutation = { + __typename?: 'Mutation' + markBirthAsCertified: string +} + +export type MarkDeathAsCertifiedMutationVariables = Exact<{ + id: Scalars['ID'] + details: DeathRegistrationInput +}> + +export type MarkDeathAsCertifiedMutation = { + __typename?: 'Mutation' + markDeathAsCertified: string +} + +export type MarkBirthAsIssuedMutationVariables = Exact<{ + id: Scalars['ID'] + details: BirthRegistrationInput +}> + +export type MarkBirthAsIssuedMutation = { + __typename?: 'Mutation' + markBirthAsIssued: string +} + +export type MarkDeathAsIssuedMutationVariables = Exact<{ + id: Scalars['ID'] + details: DeathRegistrationInput +}> + +export type MarkDeathAsIssuedMutation = { + __typename?: 'Mutation' + markDeathAsIssued: string +} + +export type SearchEventsQueryVariables = Exact<{ + sort?: InputMaybe + advancedSearchParameters: AdvancedSearchParametersInput +}> + +export type SearchEventsQuery = { + __typename?: 'Query' + searchEvents?: { + __typename?: 'EventSearchResultSet' + results?: Array< + | { + __typename?: 'BirthEventSearchSet' + registration?: { + __typename?: 'RegistrationSearchSet' + dateOfDeclaration?: any | null + } | null + } + | { + __typename?: 'DeathEventSearchSet' + registration?: { + __typename?: 'RegistrationSearchSet' + dateOfDeclaration?: any | null + } | null + } + | { + __typename?: 'MarriageEventSearchSet' + registration?: { + __typename?: 'RegistrationSearchSet' + dateOfDeclaration?: any | null + } | null + } + | null + > | null + } | null +} + +export type RegisterDeathDeclarationMutationVariables = Exact<{ + id: Scalars['ID'] + details: DeathRegistrationInput +}> + +export type RegisterDeathDeclarationMutation = { + __typename?: 'Mutation' + markDeathAsRegistered: { __typename?: 'DeathRegistration'; id: string } +} + +export type FetchBirthRegistrationQueryVariables = Exact<{ + id: Scalars['ID'] +}> + +export type FetchBirthRegistrationQuery = { + __typename?: 'Query' + fetchBirthRegistration?: { + __typename: 'BirthRegistration' + _fhirIDMap?: any | null + id: string + createdAt?: any | null + attendantAtBirth?: string | null + weightAtBirth?: number | null + birthType?: string | null + child?: { + __typename?: 'Person' + id?: string | null + birthDate?: string | null + gender?: string | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + } | null + informant?: { + __typename?: 'RelatedPerson' + id?: string | null + relationship?: string | null + _fhirIDPatient?: string | null + occupation?: string | null + nationality?: Array | null + birthDate?: string | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + } | null + mother?: { + __typename?: 'Person' + id?: string | null + birthDate?: string | null + multipleBirth?: number | null + maritalStatus?: string | null + occupation?: string | null + detailsExist?: boolean | null + dateOfMarriage?: any | null + educationalAttainment?: string | null + nationality?: Array | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + telecom?: Array<{ + __typename?: 'ContactPoint' + system?: string | null + value?: string | null + } | null> | null + } | null + father?: { + __typename?: 'Person' + id?: string | null + birthDate?: string | null + maritalStatus?: string | null + occupation?: string | null + detailsExist?: boolean | null + dateOfMarriage?: any | null + educationalAttainment?: string | null + nationality?: Array | null + reasonNotApplying?: string | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + telecom?: Array<{ + __typename?: 'ContactPoint' + system?: string | null + value?: string | null + } | null> | null + } | null + registration?: { + __typename?: 'Registration' + id?: string | null + informantType?: string | null + contactPhoneNumber?: string | null + type?: RegistrationType | null + trackingId?: string | null + registrationNumber?: string | null + attachments?: Array<{ + __typename?: 'Attachment' + data?: string | null + uri?: string | null + type?: string | null + contentType?: string | null + subject?: string | null + } | null> | null + status?: Array<{ + __typename?: 'RegWorkflow' + type?: RegStatus | null + timestamp?: any | null + comments?: Array<{ + __typename?: 'Comment' + comment?: string | null + } | null> | null + } | null> | null + } | null + eventLocation?: { + __typename?: 'Location' + id: string + type?: string | null + address?: { + __typename?: 'Address' + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null + } | null + questionnaire?: Array<{ + __typename?: 'QuestionnaireQuestion' + fieldId?: string | null + value?: string | null + } | null> | null + } | null +} + +export type FetchDeathRegistrationQueryVariables = Exact<{ + id: Scalars['ID'] +}> + +export type FetchDeathRegistrationQuery = { + __typename?: 'Query' + fetchDeathRegistration?: { + __typename: 'DeathRegistration' + _fhirIDMap?: any | null + id: string + createdAt?: any | null + mannerOfDeath?: string | null + causeOfDeath?: string | null + maleDependentsOfDeceased?: number | null + femaleDependentsOfDeceased?: number | null + causeOfDeathEstablished?: string | null + causeOfDeathMethod?: string | null + deceased?: { + __typename?: 'Person' + id?: string | null + birthDate?: string | null + age?: number | null + gender?: string | null + maritalStatus?: string | null + nationality?: Array | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + deceased?: { __typename?: 'Deceased'; deathDate?: string | null } | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + } | null + informant?: { + __typename?: 'RelatedPerson' + id?: string | null + relationship?: string | null + _fhirIDPatient?: string | null + nationality?: Array | null + occupation?: string | null + birthDate?: string | null + identifier?: Array<{ + __typename?: 'IdentityType' + id?: string | null + type?: string | null + } | null> | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + telecom?: Array<{ + __typename?: 'ContactPoint' + system?: string | null + value?: string | null + } | null> | null + address?: Array<{ + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null> | null + } | null + father?: { + __typename?: 'Person' + id?: string | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + } | null + mother?: { + __typename?: 'Person' + id?: string | null + name?: Array<{ + __typename?: 'HumanName' + use?: string | null + firstNames?: string | null + familyName?: string | null + } | null> | null + } | null + medicalPractitioner?: { + __typename?: 'MedicalPractitioner' + name?: string | null + qualification?: string | null + lastVisitDate?: any | null + } | null + registration?: { + __typename?: 'Registration' + id?: string | null + informantType?: string | null + contactPhoneNumber?: string | null + type?: RegistrationType | null + trackingId?: string | null + registrationNumber?: string | null + attachments?: Array<{ + __typename?: 'Attachment' + data?: string | null + uri?: string | null + type?: string | null + contentType?: string | null + subject?: string | null + } | null> | null + status?: Array<{ + __typename?: 'RegWorkflow' + type?: RegStatus | null + timestamp?: any | null + } | null> | null + } | null + eventLocation?: { + __typename?: 'Location' + id: string + type?: string | null + address?: { + __typename?: 'Address' + type?: string | null + line?: Array | null + district?: string | null + state?: string | null + city?: string | null + postalCode?: string | null + country?: string | null + } | null + } | null + } | null +} + +export type GetSystemRolesQueryVariables = Exact<{ [key: string]: never }> + +export type GetSystemRolesQuery = { + __typename?: 'Query' + getSystemRoles?: Array<{ + __typename?: 'SystemRole' + value: SystemRoleType + roles: Array<{ + __typename?: 'Role' + _id: string + labels: Array<{ __typename?: 'RoleLabel'; label: string }> + }> + }> | null +} + +export type GetTotalMetricsQueryVariables = Exact<{ + event: Scalars['String'] + timeStart: Scalars['String'] + timeEnd: Scalars['String'] + locationId?: InputMaybe +}> + +export type GetTotalMetricsQuery = { + __typename?: 'Query' + getTotalMetrics?: { + __typename: 'TotalMetricsResult' + estimated: { + __typename: 'Estimation' + totalEstimation: number + maleEstimation: number + femaleEstimation: number + locationId: string + locationLevel: string + } + results: Array<{ + __typename: 'EventMetrics' + total: number + gender: string + eventLocationType: string + practitionerRole: string + timeLabel: string + }> + } | null +} diff --git a/src/data-generator/index.ts b/src/data-generator/index.ts new file mode 100644 index 0000000000..9fea67aba3 --- /dev/null +++ b/src/data-generator/index.ts @@ -0,0 +1,933 @@ +import { + createBirthDeclaration, + createDeathDeclaration, + fetchAlreadyGeneratedInterval, + fetchDeathRegistration, + fetchRegistration, + sendBirthNotification +} from './declare' +import { + createRegistrationDetails, + createBirthRegistrationDetailsForNotification, + markAsRegistered, + markDeathAsRegistered +} from './register' +import { + createBirthCertificationDetails, + createDeathCertificationDetails, + markBirthAsCertified, + markDeathAsCertified +} from './certify' + +import { + getDayOfYear, + getDaysInYear, + startOfYear, + setYear, + addDays, + differenceInDays, + sub, + add, + startOfDay, + isWithinInterval, + endOfYear, + endOfDay, + min +} from 'date-fns' + +import { getToken, readToken, updateToken } from './auth' +import { getRandomFromBrackets, log } from './util' +import { getLocations, getFacilities, Location, Facility } from './location' + +import { getLocationMetrics } from './statistics' +import { User, createUsers } from './users' +import PQueue from 'p-queue' +import { BirthRegistrationInput } from './gateway' +import { ConfigResponse, getConfig, getCountryAlpha3 } from './config' +import { markEventAsRejected } from './reject' +import { + createBirthIssuingDetails, + createDeathIssuingDetails, + markBirthAsIssued, + markDeathAsIssued +} from './issue' +import { readFileSync } from 'fs' +import { join } from 'path' +// import { callVSExportAPIToGenerateDeclarationData } from './vsExport' +/* + * + * Configuration + * + */ + +// The script is required to log in with a demo system admin +// This prevents the script from being used in production, as there are no users with a "demo" scope there +const LOCAL_SYS_ADMIN_USERNAME = 'e.mayuka' +const LOCAL_SYS_ADMIN_PASSWORD = 'test' +const REGISTRAR_USERNAME = 'k.mweene' +const REGISTRAR_PASSWORD = 'test' + +export const VERIFICATION_CODE = '000000' + +export const FIELD_AGENTS = 5 +export const HOSPITAL_FIELD_AGENTS = 7 +export const REGISTRATION_AGENTS = 2 +export const LOCAL_REGISTRARS = 1 + +export const PROBABILITY_TO_BE_INCOMPLETE = 0.05 +export const PROBABILITY_TO_BE_REJECTED = 0.02 + +const CONCURRENCY = process.env.CONCURRENCY + ? parseInt(process.env.CONCURRENCY, 10) + : 3 + +const END_YEAR = process.env.END_YEAR + ? parseInt(process.env.END_YEAR, 10) + : new Date().getFullYear() +const START_YEAR = process.env.START_YEAR + ? parseInt(process.env.START_YEAR, 10) + : END_YEAR - 2 + +const REGISTER = process.env.REGISTER !== 'false' +const CERTIFY = process.env.CERTIFY !== 'false' + +const BIRTH_OVERALL_REGISTRATIONS_COMPARED_TO_ESTIMATE = 0.8 +const DEATH_OVERALL_REGISTRATIONS_COMPARED_TO_ESTIMATE = 0.4 + +const ATTACHMENT = readFileSync(join(__dirname, 'assets', '528KB-random.png'), { + encoding: 'base64' +}) + +const today = new Date() +const currentYear = today.getFullYear() + +const queue = new PQueue({ concurrency: CONCURRENCY, timeout: 1000 * 60 }) + +const rejectionReason = 'Misspelling' +const rejectionComment = 'Family name misspelled' + +let pauseTimeout: NodeJS.Timeout +function onError(error: Error) { + console.error(error) + clearTimeout(pauseTimeout) + + if (!queue.isPaused) { + log('Stopping queue') + queue.pause() + } else { + log('Extending queue stop for 30 more seconds') + } + + pauseTimeout = setTimeout(() => { + log('Queue starting up again') + queue.start() + }, 30000) +} + +async function keepTokensValid(users: User[]) { + users.forEach((user) => { + const data = readToken(user.token) + setTimeout(() => updateToken(user), data.exp * 1000 - Date.now() - 60000) + }) +} + +function wait(time: number) { + return new Promise((resolve) => setTimeout(resolve, time)) +} + +async function main() { + log('Fetching token for system administrator') + const localSYSAdminToken = await getToken( + LOCAL_SYS_ADMIN_USERNAME, + LOCAL_SYS_ADMIN_PASSWORD + ) + const registrarToken = await getToken(REGISTRAR_USERNAME, REGISTRAR_PASSWORD) + console.log('Got token for system administrator') + const config = await getConfig(localSYSAdminToken) + const countryAlpha3 = await getCountryAlpha3() + + const BIRTH_COMPLETION_DISTRIBUTION = [ + { range: [0, config.config.BIRTH.REGISTRATION_TARGET], weight: 0.8 }, + { + range: [ + config.config.BIRTH.REGISTRATION_TARGET, + config.config.BIRTH.LATE_REGISTRATION_TARGET + ], + weight: 0.15 + }, + { + range: [config.config.BIRTH.LATE_REGISTRATION_TARGET, 365 * 5], + weight: 0.025 + }, + { range: [365 * 5 + 1, 365 * 20], weight: 0.025 } + ] + + const DEATH_COMPLETION_DISTRIBUTION = [ + { range: [0, config.config.DEATH.REGISTRATION_TARGET], weight: 0.75 }, + { + range: [config.config.DEATH.REGISTRATION_TARGET, 365], + weight: 0.125 + }, + { range: [366, 365 * 5], weight: 0.125 } + ] + + log('Got token for system administrator') + log('Fetching locations') + const locations = await getLocations() + const facilities = await getFacilities() + const crvsOffices = facilities.filter( + ({ type }: Location) => type === 'CRVS_OFFICE' + ) + + const healthFacilities = facilities.filter( + ({ type }: Facility) => type === 'HEALTH_FACILITY' + ) + + log('Found', locations.length, 'locations') + + /* + * + * Loop through years (END_YEAR -> START_YEAR) + * + */ + + for (let y = END_YEAR; y >= START_YEAR; y--) { + log('Generating data for year', y) + /* + * + * Loop through all locations + * + */ + + for (const location of locations) { + log('Fetching already generated interval') + const generatedInterval = await fetchAlreadyGeneratedInterval( + registrarToken, + location.id + ) + + if (generatedInterval.length === 0) { + log('No events have been generated for this location') + } else { + log( + 'Events already exist for this location between', + generatedInterval[0], + '-', + generatedInterval[1] + ) + } + + /* + * + * Create required users & authorization tokens + * + */ + log('Creating users for', location.name, '(', location.id, ')') + + const users = await createUsers( + localSYSAdminToken, + location, + countryAlpha3, + config.config.PHONE_NUMBER_PATTERN, + { + fieldAgents: FIELD_AGENTS, + hospitalFieldAgents: HOSPITAL_FIELD_AGENTS, + registrationAgents: REGISTRATION_AGENTS, + localRegistrars: LOCAL_REGISTRARS + } + ) + const allUsers = [ + ...users.fieldAgents, + ...users.hospitals, + ...users.registrationAgents, + ...users.registrars + ] + + // User tokens expire after 20 minutes, so we need to + // keep on refreshing them as long as the user is in use + keepTokensValid(allUsers) + + const deathDeclarers = [...users.fieldAgents, ...users.registrationAgents] + const birthDeclararers = [ + ...users.fieldAgents, + ...users.hospitals, + ...users.registrationAgents + ] + + const isCurrentYear = y === currentYear + + const randomRegistrar = + users.registrars[Math.floor(Math.random() * users.registrars.length)] + + const days = Array.from({ length: getDaysInYear(y) }).map(() => 0) + const estimations = await getEstimates( + randomRegistrar, + y, + location, + isCurrentYear, + days + ) + let { totalDeathsThisYear } = estimations + const { birthRates } = estimations + + if (isCurrentYear) { + const currentDayNumber = getDayOfYear(today) + // Remove future dates from the arrays + days.splice(currentDayNumber - 1) + } + + log('Creating declarations for', location.name, 'estimates', { + births: birthRates, + death: totalDeathsThisYear + }) + + birthRates.female = + birthRates.female * BIRTH_OVERALL_REGISTRATIONS_COMPARED_TO_ESTIMATE + birthRates.male = + birthRates.male * BIRTH_OVERALL_REGISTRATIONS_COMPARED_TO_ESTIMATE + + totalDeathsThisYear = + totalDeathsThisYear * DEATH_OVERALL_REGISTRATIONS_COMPARED_TO_ESTIMATE + + const femalesPerDay = days.slice(0) + const malesPerDay = days.slice(0) + const deathsPerDay = days.slice(0) + + for (let i = 0; i < birthRates.female; i++) { + femalesPerDay[Math.floor(Math.random() * days.length)]++ + } + for (let i = 0; i < birthRates.male; i++) { + malesPerDay[Math.floor(Math.random() * days.length)]++ + } + for (let i = 0; i < totalDeathsThisYear; i++) { + deathsPerDay[Math.floor(Math.random() * days.length)]++ + } + log('Creating', { + male: malesPerDay.reduce((a, x) => a + x), + female: femalesPerDay.reduce((a, x) => a + x), + death: deathsPerDay.reduce((a, x) => a + x) + }) + + /* + * + * Loop through days in the year (last day of the year -> start of the year) + * + */ + + for (let d = days.length - 1; d >= 0; d--) { + const submissionDate = addDays(startOfYear(setYear(new Date(), y)), d) + + if ( + generatedInterval.length === 2 && + isWithinInterval(submissionDate, { + start: startOfDay(generatedInterval[0]), + end: endOfDay(generatedInterval[1]) + }) + ) { + log('Data for', submissionDate, 'already exists. Skipping.') + continue + } + + /* + * + * CREATE DEATH DECLARATIONS + * - Declaring user is chosen randomly from users with declare role + * - + */ + + const deathsToday = deathsPerDay[d] + + log( + 'Creating death declarations for', + submissionDate, + 'total:', + deathsToday + ) + + // Create death declarations + const operations = [] + for (let ix = 0; ix < deathsToday; ix++) { + const completionDays = getRandomFromBrackets( + DEATH_COMPLETION_DISTRIBUTION + ) + operations.push( + deathDeclarationWorkflow( + deathDeclarers, + submissionDate, + location, + deathsToday, + users, + healthFacilities, + completionDays, + config, + PROBABILITY_TO_BE_INCOMPLETE, + PROBABILITY_TO_BE_REJECTED + ).bind(null, ix) + ) + } + + /* + * + * CREATE BIRTH DECLARATIONS + * + * - Registration day is the one we're currently at in the loop + * - Birthdate is randomised date in the past based on completion brackets + * - Gender is randomised based on configured male / female birth rates + * - Declaring / registering / certifying user is randomised from a pool of users + * with the correct role + */ + + log( + 'Creating birth declarations for', + submissionDate, + 'male:', + malesPerDay[d], + 'female', + femalesPerDay[d] + ) + + // Create birth declarations + const totalChildBirths = malesPerDay[d] + femalesPerDay[d] + const probabilityForMale = malesPerDay[d] / totalChildBirths + + for (let ix = 0; ix < Math.round(totalChildBirths); ix++) { + const completionDays = getRandomFromBrackets( + BIRTH_COMPLETION_DISTRIBUTION + ) + operations.push( + birthDeclarationWorkflow( + birthDeclararers, + users, + probabilityForMale, + submissionDate, + crvsOffices, + healthFacilities, + location, + totalChildBirths, + completionDays, + config, + PROBABILITY_TO_BE_INCOMPLETE, + PROBABILITY_TO_BE_REJECTED + ).bind(null, ix) + ) + } + await queue.addAll(operations) + // Doesnt work because the API isnt exposed in deployed environments: https://github.com/opencrvs/opencrvs-core/issues/4761 + // await callVSExportAPIToGenerateDeclarationData(submissionDate) + } + + /* + * Ensure target rate numbers match the configured rate numbers + * This is done because sometimes a number of declarations fail during the generator run + * which then again causes the target rate numbers to be incorrect + */ + + const operations = [] + + const newEstimates = await getEstimates( + randomRegistrar, + y, + location, + isCurrentYear, + Array.from({ length: getDaysInYear(y) }).map(() => 0) + ) + + const shouldGenerate = + (newEstimates.birthRates.male + newEstimates.birthRates.female) * + BIRTH_OVERALL_REGISTRATIONS_COMPARED_TO_ESTIMATE + + const delta = + shouldGenerate - + newEstimates.birthMetrics.results.reduce( + (acc, cur) => acc + cur.total, + 0 + ) + + log('Filling birth declarations', { + shouldGenerate, + generated: newEstimates.birthMetrics.results.reduce( + (acc, cur) => acc + cur.total, + 0 + ), + delta, + distribution: Array.from({ length: delta }) + .map(() => getRandomFromBrackets(BIRTH_COMPLETION_DISTRIBUTION)) + .reduce( + (acc, cur) => { + BIRTH_COMPLETION_DISTRIBUTION.forEach((d) => { + if (cur >= d.range[0] && cur <= d.range[1]) { + acc[d.range[0]] = acc[d.range[0]] ? acc[d.range[0]] + 1 : 1 + } + }) + return acc + }, + {} as Record + ) + }) + + for (let ix = 0; ix < delta; ix++) { + const randomSubmissionDate = min([ + addDays( + startOfYear(setYear(new Date(), y)), + Math.floor(Math.random() * days.length) + ), + new Date() + ]) + const completionDays = getRandomFromBrackets( + BIRTH_COMPLETION_DISTRIBUTION + ) + operations.push( + await birthDeclarationWorkflow( + birthDeclararers, + users, + birthRates.male / (birthRates.male + birthRates.female), + randomSubmissionDate, + crvsOffices, + healthFacilities, + location, + delta, + completionDays, + config, + PROBABILITY_TO_BE_INCOMPLETE, + PROBABILITY_TO_BE_REJECTED + ).bind(null, ix) + ) + } + await queue.addAll(operations) + + /* + * Same for death + */ + const shouldGenerateDeaths = + newEstimates.totalDeathsThisYear * + DEATH_OVERALL_REGISTRATIONS_COMPARED_TO_ESTIMATE + const totalGeneratedDeaths = newEstimates.deathMetrics.results.reduce( + (acc, cur) => acc + cur.total, + 0 + ) + const deathDelta = shouldGenerateDeaths - totalGeneratedDeaths + + log('Filling death declarations', { + shouldGenerateDeaths, + totalGeneratedDeaths, + deathDelta, + distribution: Array.from({ length: deathDelta }) + .map(() => getRandomFromBrackets(DEATH_COMPLETION_DISTRIBUTION)) + .reduce( + (acc, cur) => { + DEATH_COMPLETION_DISTRIBUTION.forEach((d) => { + if (cur >= d.range[0] && cur <= d.range[1]) { + acc[d.range[0]] = acc[d.range[0]] ? acc[d.range[0]] + 1 : 1 + } + }) + return acc + }, + {} as Record + ) + }) + + for (let ix = 0; ix < deathDelta; ix++) { + const submissionDate = min([ + addDays( + startOfYear(setYear(new Date(), y)), + Math.floor(Math.random() * days.length) + ), + new Date() + ]) + const completionDays = getRandomFromBrackets( + DEATH_COMPLETION_DISTRIBUTION + ) + operations.push( + deathDeclarationWorkflow( + deathDeclarers, + submissionDate, + location, + deathDelta, + users, + healthFacilities, + completionDays, + config, + PROBABILITY_TO_BE_INCOMPLETE, + PROBABILITY_TO_BE_REJECTED + ).bind(null, ix) + ) + } + await queue.addAll(operations) + + allUsers.forEach((user) => { + user.stillInUse = false + }) + } + } + + process.exit(0) + + async function getEstimates( + randomRegistrar: User, + y: number, + location: Location, + isCurrentYear: boolean, + days: number[] + ) { + const birthMetrics = await getLocationMetrics( + randomRegistrar.token, + startOfYear(new Date(y, 1, 1)), + endOfYear(new Date(y, 1, 1)), + location.id, + 'BIRTH' + ) + const deathMetrics = await getLocationMetrics( + randomRegistrar.token, + startOfYear(new Date(y, 1, 1)), + endOfYear(new Date(y, 1, 1)), + location.id, + 'DEATH' + ) + + let totalDeathsThisYear = deathMetrics.estimated.totalEstimation + + // Calculate crude birth & death rates for this district for both men and women + const birthRates = { + male: birthMetrics.estimated.maleEstimation, + female: birthMetrics.estimated.femaleEstimation + } + + if (isCurrentYear) { + // If we're processing the current year, only take into account + // the days until today + const currentDayNumber = getDayOfYear(today) + + // Adjust birth rates to the amount of days passed since the start of this year + birthRates.female = (birthRates.female / days.length) * currentDayNumber + birthRates.male = (birthRates.male / days.length) * currentDayNumber + + totalDeathsThisYear = + (totalDeathsThisYear / days.length) * currentDayNumber + } + + return { birthRates, birthMetrics, totalDeathsThisYear, deathMetrics } + } +} + +main() + +function birthDeclarationWorkflow( + birthDeclararers: User[], + users: { + fieldAgents: User[] + hospitals: User[] + registrationAgents: User[] + registrars: User[] + }, + probabilityForMale: number, + submissionDate: Date, + crvsOffices: Facility[], + healthFacilities: Facility[], + location: Location, + totalChildBirths: number, + completionDays: number, + config: ConfigResponse, + probabilityToBeIncomplete: number, + probabilityToBeRejected: number +) { + return async (ix: number) => { + try { + const randomUser = + birthDeclararers[Math.floor(Math.random() * birthDeclararers.length)] + + const randomRegistrar = + users.registrars[Math.floor(Math.random() * users.registrars.length)] + + const isHospitalUser = users.hospitals.includes(randomUser) + + const sex = Math.random() < probabilityForMale ? 'male' : 'female' + // This is here so that no creation timestamps would be equal + // InfluxDB will otherwise interpret the events as the same exact measurement + const submissionTime = add(startOfDay(submissionDate), { + seconds: 24 * 60 * 60 * Math.random() + }) + + const birthDate = sub(submissionTime, { days: completionDays }) + + const crvsOffice = crvsOffices.find( + ({ id }) => id === randomUser.primaryOfficeId + ) + + if (!crvsOffice) { + throw new Error( + `CRVS office was not found with the id ${randomUser.primaryOfficeId}` + ) + } + + const districtFacilities = healthFacilities.filter( + ({ partOf }) => partOf?.split('/')[1] === location.id + ) + + if (districtFacilities.length === 0) { + throw new Error('Could not find any facilities for location') + } + + const randomFacility = + districtFacilities[ + Math.floor(Math.random() * districtFacilities.length) + ] + + const declaredRecently = differenceInDays(today, submissionTime) < 4 + + let id: string + let registrationDetails: BirthRegistrationInput + const keepDeclarationIncomplete = + Math.random() < probabilityToBeIncomplete + if (isHospitalUser) { + log('Sending a DHIS2 Hospital notification') + + id = await sendBirthNotification( + randomUser, + sex, + birthDate, + submissionTime, + randomFacility, + location, + crvsOffice + ) + } else { + id = await createBirthDeclaration( + randomUser, + keepDeclarationIncomplete ? undefined : sex, + birthDate, + submissionTime, + location, + randomFacility, + ATTACHMENT + ) + } + + if (!REGISTER) { + log('Birth', submissionDate, ix, '/', Math.round(totalChildBirths)) + return + } + + log('Registering', id) + + if (Math.random() < probabilityToBeRejected) { + await fetchRegistration(randomRegistrar, id) + await markEventAsRejected( + randomRegistrar, + id, + rejectionReason, + rejectionComment + ) + } + + if (!declaredRecently || Math.random() > 0.5) { + const declaration = await fetchRegistration(randomRegistrar, id) + try { + if (isHospitalUser) { + registrationDetails = createBirthRegistrationDetailsForNotification( + add(new Date(submissionTime), { + days: 1 + }), + location, + declaration + ) + } else { + /* When the declaration is kept incomplete, we don't provide the gender when sending + * the declaration. So before registering we add the gender to make it complete + */ + if (keepDeclarationIncomplete) { + declaration.child = { ...declaration.child, gender: sex } + } + registrationDetails = createRegistrationDetails( + add(new Date(submissionTime), { + days: 1 + }), + declaration + ) + } + } catch (error) { + console.log(error) + console.log(JSON.stringify(declaration)) + throw error + } + + await markAsRegistered(randomRegistrar, id, registrationDetails) + + if (CERTIFY && (!declaredRecently || Math.random() > 0.5)) { + const registration = await fetchRegistration(randomRegistrar, id) + // Wait for few seconds so registration gets updated to elasticsearch before certifying + await wait(2000) + log('Certifying', id) + await markBirthAsCertified( + registration.id, + randomRegistrar, + createBirthCertificationDetails( + add(new Date(submissionTime), { + days: 1 + }), + registration, + config + ) + ) + + // Wait for few seconds so registration gets updated to elasticsearch before issuing + await wait(2000) + log('Issuing', id) + await markBirthAsIssued( + registration.id, + randomRegistrar, + createBirthIssuingDetails( + add(new Date(submissionTime), { + days: 1 + }), + registration, + config + ) + ) + } else { + log( + 'Will not register or certify because the declaration was added today' + ) + } + } + + log('Birth', submissionDate, ix, '/', Math.round(totalChildBirths)) + } catch (error) { + onError(error) + } + } +} + +function deathDeclarationWorkflow( + deathDeclarers: User[], + submissionDate: Date, + location: Location, + deathsToday: number, + users: { + fieldAgents: User[] + hospitals: User[] + registrationAgents: User[] + registrars: User[] + }, + healthFacilities: Facility[], + completionDays: number, + config: ConfigResponse, + probabilityToBeIncomplete: number, + probabilityToBeRejected: number +) { + return async (ix: number) => { + try { + const randomUser = + deathDeclarers[Math.floor(Math.random() * deathDeclarers.length)] + + const submissionTime = add(startOfDay(submissionDate), { + seconds: 24 * 60 * 60 * Math.random() + }) + + const sex = Math.random() > 0.4 ? 'male' : 'female' + const keepDeclarationIncomplete = + Math.random() < probabilityToBeIncomplete + const declaredRecently = differenceInDays(today, submissionTime) < 4 + + const districtFacilities = healthFacilities.filter( + ({ partOf }) => partOf?.split('/')[1] === location.id + ) + + const randomFacility = + districtFacilities[ + Math.floor(Math.random() * districtFacilities.length) + ] + const deathTime = sub(submissionTime, { days: completionDays }) + log('Declaring') + const compositionId = await createDeathDeclaration( + randomUser, + deathTime, + keepDeclarationIncomplete ? undefined : sex, + submissionTime, + location, + randomFacility, + ATTACHMENT + ) + + if (!REGISTER) { + log('Death', submissionDate, ix, '/', deathsToday) + return + } + + const randomRegistrar = + users.registrars[Math.floor(Math.random() * users.registrars.length)] + log('Registering', { compositionId }) + + if (Math.random() < probabilityToBeRejected) { + await fetchRegistration(randomRegistrar, compositionId) + await markEventAsRejected( + randomRegistrar, + compositionId, + rejectionReason, + rejectionComment + ) + } + + if (!declaredRecently || Math.random() > 0.5) { + const declaration = await fetchDeathRegistration( + randomRegistrar, + compositionId + ) + + /* When the declaration is kept incomplete, we don't provide the gender when sending + * the declaration. So before registering we add the gender to make it complete + */ + if (keepDeclarationIncomplete) { + declaration.deceased = { ...declaration.deceased, gender: sex } + } + + await markDeathAsRegistered( + randomRegistrar, + compositionId, + createRegistrationDetails( + add(new Date(submissionTime), { + days: 1 + }), + declaration + ) + ) + if (CERTIFY && (!declaredRecently || Math.random() > 0.5)) { + const registration = await fetchDeathRegistration( + randomRegistrar, + compositionId + ) + log('Certifying', registration.id) + await wait(2000) + await markDeathAsCertified( + registration.id, + randomRegistrar, + createDeathCertificationDetails( + add(new Date(submissionTime), { + days: 2 + }), + registration, + config + ) + ) + + log('Issuing', registration.id) + await wait(2000) + await markDeathAsIssued( + registration.id, + randomRegistrar, + createDeathIssuingDetails( + add(new Date(submissionTime), { + days: 2 + }), + registration, + config + ) + ) + } + } + + log('Death', submissionDate, ix, '/', deathsToday) + } catch (error) { + onError(error) + } + } +} diff --git a/src/data-generator/issue.ts b/src/data-generator/issue.ts new file mode 100644 index 0000000000..5fc6fafce2 --- /dev/null +++ b/src/data-generator/issue.ts @@ -0,0 +1,278 @@ +import fetch from 'node-fetch' +import { User } from './users' + +import { idsToFHIRIds, log, removeEmptyFields } from './util' +import { + AttachmentInput, + BirthRegistrationInput, + DeathRegistrationInput, + MarkBirthAsIssuedMutation, + MarkDeathAsIssuedMutation, + PaymentOutcomeType, + PaymentType +} from './gateway' +import { omit } from 'lodash' +import { GATEWAY_HOST } from './constants' +import { MARK_BIRTH_AS_ISSUED, MARK_DEATH_AS_ISSUED } from './queries' +import { differenceInDays } from 'date-fns' +import { ConfigResponse } from './config' +import { fetchDeathRegistration, fetchRegistration } from './declare' +import { location } from './options' + +export function createBirthIssuingDetails( + createdAt: Date, + declaration: Awaited>, + config: ConfigResponse +) { + const withIdsRemoved = idsToFHIRIds( + omit(declaration, ['__typename', 'id', 'registration.type']), + [ + 'eventLocation.id', + 'mother.id', + 'father.id', + 'child.id', + 'registration.id', + 'informant.id' + ] + ) + + const completionDays = differenceInDays( + createdAt, + new Date(declaration.child?.birthDate!) + ) + + const paymentAmount = + completionDays < config.config.BIRTH.REGISTRATION_TARGET + ? config.config.BIRTH.FEE.ON_TIME + : completionDays < config.config.BIRTH.LATE_REGISTRATION_TARGET + ? config.config.BIRTH.FEE.LATE + : config.config.BIRTH.FEE.DELAYED + log( + 'Collecting certification payment of', + paymentAmount, + 'for completion days', + completionDays + ) + const data = { + ...withIdsRemoved, + eventLocation: { + _fhirID: withIdsRemoved.eventLocation?._fhirID + }, + registration: { + ...withIdsRemoved.registration, + attachments: withIdsRemoved.registration?.attachments?.filter( + (x): x is AttachmentInput => x !== null + ), + status: [ + { + timestamp: createdAt.toISOString() + } + ], + certificates: [ + { + hasShowedVerifiedDocument: false, + payments: [ + { + type: PaymentType.Manual, + total: paymentAmount, + amount: paymentAmount, + outcome: PaymentOutcomeType.Completed, + date: createdAt + } + ], + collector: { + relationship: 'MOTHER' + } + } + ] + } + } + return removeEmptyFields(data) +} + +export function createDeathIssuingDetails( + createdAt: Date, + declaration: Awaited>, + config: ConfigResponse +): DeathRegistrationInput { + const withIdsRemoved = idsToFHIRIds( + omit(declaration, ['__typename', 'id', 'registration.type']), + [ + 'id', + 'eventLocation.id', + 'mother.id', + 'father.id', + 'informant.individual.id', + 'informant.id', + 'deceased.id', + 'registration.id' + ] + ) + + const completionDays = differenceInDays( + createdAt, + declaration.deceased?.deceased?.deathDate + ? new Date(declaration.deceased?.deceased?.deathDate) + : new Date() + ) + + const paymentAmount = + completionDays < config.config.DEATH.REGISTRATION_TARGET + ? config.config.DEATH.FEE.ON_TIME + : config.config.DEATH.FEE.DELAYED + + log( + 'Collecting certification payment of', + paymentAmount, + 'for completion days', + completionDays + ) + + const data: DeathRegistrationInput = { + ...withIdsRemoved, + deceased: { + ...withIdsRemoved.deceased, + identifier: withIdsRemoved.deceased?.identifier?.filter( + (id) => id?.type != 'DEATH_REGISTRATION_NUMBER' + ) + }, + eventLocation: + withIdsRemoved.eventLocation?.type === location.privateHome + ? { + address: withIdsRemoved.eventLocation?.address, + type: withIdsRemoved.eventLocation?.type + } + : { + _fhirID: withIdsRemoved.eventLocation?._fhirID + }, + registration: { + ...withIdsRemoved.registration, + attachments: withIdsRemoved.registration?.attachments?.filter( + (x): x is AttachmentInput => x !== null + ), + draftId: withIdsRemoved._fhirIDMap?.composition, + certificates: [ + { + hasShowedVerifiedDocument: false, + payments: [ + { + type: PaymentType.Manual, + total: paymentAmount, + amount: paymentAmount, + outcome: PaymentOutcomeType.Completed, + date: createdAt + } + ], + collector: { + relationship: 'INFORMANT' + } + } + ], + status: [ + { + timestamp: createdAt.toISOString(), + timeLoggedMS: Math.round(9999 * Math.random()) + } + ] + } + } + + return removeEmptyFields(data) +} + +export async function markBirthAsIssued( + id: string, + user: User, + details: BirthRegistrationInput +) { + const { token, username } = user + + const requestStart = Date.now() + + const certifyDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `certification-${id}` + }, + body: JSON.stringify({ + query: MARK_BIRTH_AS_ISSUED, + variables: { + id: id, + details + } + }) + }) + const requestEnd = Date.now() + const result = (await certifyDeclarationRes.json()) as { + errors: any[] + data: MarkBirthAsIssuedMutation + } + + if (result.errors) { + console.error(JSON.stringify(result.errors, null, 2)) + throw new Error('Birth declaration could not be issued') + } + + log( + 'Birth declaration', + result.data.markBirthAsIssued, + 'is now issued by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return result.data.markBirthAsIssued +} + +export async function markDeathAsIssued( + id: string, + user: User, + details: DeathRegistrationInput +) { + const { token, username } = user + + const requestStart = Date.now() + + const certifyDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `death-certification-${id}` + }, + body: JSON.stringify({ + query: MARK_DEATH_AS_ISSUED, + variables: { + id, + details + } + }) + }) + const requestEnd = Date.now() + const result = (await certifyDeclarationRes.json()) as { + errors: any[] + data: MarkDeathAsIssuedMutation + } + if (result.errors) { + console.error(JSON.stringify(result.errors, null, 2)) + details.registration?.certificates?.forEach((cert) => { + if (cert?.data) { + cert.data = 'REDACTED' + } + }) + console.error(JSON.stringify(details)) + throw new Error('Death declaration could not be issued') + } + + log( + 'Death declaration', + result.data.markDeathAsIssued, + 'is now issued by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return result.data.markDeathAsIssued +} diff --git a/src/data-generator/location.ts b/src/data-generator/location.ts new file mode 100644 index 0000000000..ea4809117e --- /dev/null +++ b/src/data-generator/location.ts @@ -0,0 +1,124 @@ +import { ILocation } from '@countryconfig/utils' +import fetch from 'node-fetch' +import { GATEWAY_HOST } from './constants' + +export type Location = { + id: string + name: string + alias: string + physicalType: string + jurisdictionType?: string + type: string + partOf: string +} +export type Facility = { + id: string + name: string + alias: string + address: string + physicalType: string + type: string + partOf: string +} + +export async function getLocations() { + const url = `${GATEWAY_HOST}/location?type=ADMIN_STRUCTURE&_count=0` + + const res = await fetch(url, { + method: 'GET' + }) + + if (res && res.status !== 200) { + throw Error(res.statusText) + } + + const response = await res.json() + const locations = { + data: response.entry.reduce( + (accumulator: { [key: string]: ILocation }, entry: fhir.BundleEntry) => { + if (!entry.resource || !entry.resource.id) { + throw new Error('Resource in entry not valid') + } + + accumulator[entry.resource.id] = generateLocationResource( + entry.resource as fhir.Location + ) + + return accumulator + }, + {} + ) + } + return Object.values(locations.data).filter( + ({ partOf }: any) => partOf !== 'Location/0' + ) +} + +export async function getFacilities() { + const resCRVSOffices = await fetch( + `${GATEWAY_HOST}/location?type=CRVS_OFFICE&_count=0` + ) + const resHealthFacilities = await fetch( + `${GATEWAY_HOST}/location?type=HEALTH_FACILITY&_count=0` + ) + + const locationBundleCRVSOffices = await resCRVSOffices.json() + const locationBundleHealthFacilities = await resHealthFacilities.json() + + const facilities = locationBundleCRVSOffices.entry.reduce( + (accumulator: { [key: string]: ILocation }, entry: fhir.BundleEntry) => { + if (!entry.resource || !entry.resource.id) { + throw new Error('Resource in entry not valid') + } + + accumulator[entry.resource.id] = generateLocationResource( + entry.resource as fhir.Location + ) + return accumulator + }, + {} + ) + + locationBundleHealthFacilities.entry.reduce( + (accumulator: { [key: string]: ILocation }, entry: fhir.BundleEntry) => { + if (!entry.resource || !entry.resource.id) { + throw new Error('Resource in entry not valid') + } + + accumulator[entry.resource.id] = generateLocationResource( + entry.resource as fhir.Location + ) + return accumulator + }, + facilities + ) + return Object.values(facilities) +} + +export function generateLocationResource( + fhirLocation: fhir.Location +): ILocation { + const loc = {} as ILocation + loc.id = fhirLocation.id + loc.name = fhirLocation.name + loc.alias = + fhirLocation.alias && fhirLocation.alias[0] ? fhirLocation.alias[0] : '' + loc.status = fhirLocation.status + loc.physicalType = + fhirLocation.physicalType && + fhirLocation.physicalType.coding && + fhirLocation.physicalType.coding[0].display + ? fhirLocation.physicalType.coding[0].display + : '' + loc.type = + fhirLocation.type && + fhirLocation.type.coding && + fhirLocation.type.coding[0].code + ? fhirLocation.type.coding[0].code + : '' + loc.partOf = + fhirLocation.partOf && fhirLocation.partOf.reference + ? fhirLocation.partOf.reference + : '' + return loc +} diff --git a/src/data-generator/options.ts b/src/data-generator/options.ts new file mode 100644 index 0000000000..ab7c4d6a28 --- /dev/null +++ b/src/data-generator/options.ts @@ -0,0 +1,221 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ + +// A file just to store the constants used in data-generator + +/** Mapping of attachment types to identifiers */ +const attachmentType = { + attestedLetterOfDeath: 'ATTESTED_LETTER_OF_DEATH', + birthCertificate: 'BIRTH_CERTIFICATE', + burialReceipt: 'BURIAL_RECEIPT', + coronersReport: 'CORONERS_REPORT', + hospitalCertificateOfDeath: 'HOSPITAL_CERTIFICATE_OF_DEATH', + marriageNotice: 'MARRIAGE_NOTICE', + medicallyCertifiedCauseOfDeath: 'MEDICALLY_CERTIFIED_CAUSE_OF_DEATH', + nationalId: 'NATIONAL_ID', + notificationOfBirth: 'NOTIFICATION_OF_BIRTH', + other: 'OTHER', + passport: 'PASSPORT', + policeCertificateOfDeath: 'POLICE_CERTIFICATE_OF_DEATH', + proofOfAssignedResponsibility: 'PROOF_OF_ASSIGNED_RESPONSIBILITY', + proofOfLegalGuardianship: 'PROOF_OF_LEGAL_GUARDIANSHIP', + verbalAutopsyReport: 'VERBAL_AUTOPSY_REPORT' +} + +/** Mapping types of attachment subjects to identifiers */ +const attachmentSubject = { + bride: 'BRIDE', + child: 'CHILD', + childAge: 'CHILD_AGE', + deceasedDeathCauseProof: 'DECEASED_DEATH_CAUSE_PROOF', + deceasedDeathProof: 'DECEASED_DEATH_PROOF', + deceasedIdProof: 'DECEASED_ID_PROOF', + father: 'FATHER', + groom: 'GROOM', + informantIdProof: 'INFORMANT_ID_PROOF', + legalGuardianProof: 'LEGAL_GUARDIAN_PROOF', + marriageNoticeProof: 'MARRIAGE_NOTICE_PROOF', + mother: 'MOTHER', + other: 'OTHER', + parent: 'PARENT' +} + +export const DEATH_ATTACHMENTS = [ + { + subject: attachmentSubject.deceasedIdProof, + type: attachmentType.nationalId + }, + { + subject: attachmentSubject.deceasedIdProof, + type: attachmentType.passport + }, + { + subject: attachmentSubject.deceasedIdProof, + type: attachmentType.birthCertificate + }, + { + subject: attachmentSubject.informantIdProof, + type: attachmentType.nationalId + }, + { + subject: attachmentSubject.informantIdProof, + type: attachmentType.other + } +] as const + +export const BIRTH_ATTACHMENTS = [ + { + subject: attachmentSubject.child, + type: attachmentType.notificationOfBirth + }, + { + subject: attachmentSubject.mother, + type: attachmentType.nationalId + }, + { + subject: attachmentSubject.mother, + type: attachmentType.passport + }, + { + subject: attachmentSubject.mother, + type: attachmentType.birthCertificate + }, + { + subject: attachmentSubject.mother, + type: attachmentType.other + } +] as const + +/** Mapping of education types to identifiers */ +export const education = { + firstStageTertiaryIsced_5: 'FIRST_STAGE_TERTIARY_ISCED_5', + noSchooling: 'NO_SCHOOLING', + postSecondaryIsced_4: 'POST_SECONDARY_ISCED_4', + primaryIsced_1: 'PRIMARY_ISCED_1' +} as const + +/** Mapping of location types to identifiers */ +export const location = { + adminStructure: 'ADMIN_STRUCTURE', + crvsOffice: 'CRVS_OFFICE', + deceasedUsualResidence: 'DECEASED_USUAL_RESIDENCE', + healthFacility: 'HEALTH_FACILITY', + hospital: 'HOSPITAL', + idpCamp: 'IDP_CAMP', + militaryBaseOrCantonment: 'MILITARY_BASE_OR_CANTONMENT', + other: 'OTHER', + otherHealthInstitution: 'OTHER_HEALTH_INSTITUTION', + primaryAddress: 'PRIMARY_ADDRESS', + privateHome: 'PRIVATE_HOME', + secondaryAddress: 'SECONDARY_ADDRESS', + unhcrCamp: 'UNHCR_CAMP' +} + +/** Mapping of identity types to identifiers */ +export const identity = { + nationalId: 'NATIONAL_ID', + birthRegistrationNumber: 'BIRTH_REGISTRATION_NUMBER', + deathRegistrationNumber: 'DEATH_REGISTRATION_NUMBER', + passport: 'PASSPORT', + drivingLicense: 'DRIVING_LICENSE', + refugeeNumber: 'REFUGEE_NUMBER', + alienNumber: 'ALIEN_NUMBER', + other: 'OTHER', + noId: 'NO_ID', + socialSecurityNumber: 'SOCIAL_SECURITY_NO' +} + +/** Mapping of marital status types to identifiers */ +export const maritalStatus = { + divorced: 'DIVORCED', + married: 'MARRIED', + notStated: 'NOT_STATED', + separated: 'SEPARATED', + single: 'SINGLE', + widowed: 'WIDOWED' +} + +/** Mapping of address types to identifiers. Note that location and addresses are different, as persons address cannot be a hospital for example. */ +export const address = { + adminStructure: 'ADMIN_STRUCTURE', + crvsOffice: 'CRVS_OFFICE', + deceasedUsualResidence: 'DECEASED_USUAL_RESIDENCE', + healthFacility: 'HEALTH_FACILITY', + idpCamp: 'IDP_CAMP', + militaryBaseOrCantonment: 'MILITARY_BASE_OR_CANTONMENT', + other: 'OTHER', + primaryAddress: 'PRIMARY_ADDRESS', + privateHome: 'PRIVATE_HOME', + secondaryAddress: 'SECONDARY_ADDRESS', + unhcrCamp: 'UNHCR_CAMP' +} + +/** Mapping of informant types to identifiers */ +export const informant = { + bride: 'BRIDE', + brother: 'BROTHER', + daughter: 'DAUGHTER', + daughterInLaw: 'DAUGHTER_IN_LAW', + father: 'FATHER', + granddaughter: 'GRANDDAUGHTER', + grandfather: 'GRANDFATHER', + grandmother: 'GRANDMOTHER', + grandson: 'GRANDSON', + groom: 'GROOM', + informant: 'INFORMANT', + legalGuardian: 'LEGAL_GUARDIAN', + mother: 'MOTHER', + other: 'OTHER', + otherFamilyMember: 'OTHER_FAMILY_MEMBER', + sister: 'SISTER', + son: 'SON', + sonInLaw: 'SON_IN_LAW', + spouse: 'SPOUSE' +} + +/** Mapping manners of death to identifiers */ +export const mannerOfDeath = { + accident: 'ACCIDENT', + homicide: 'HOMICIDE', + mannerUndetermined: 'MANNER_UNDETERMINED', + naturalCauses: 'NATURAL_CAUSES', + suicide: 'SUICIDE' +} + +/** Mapping types of birth to identifiers */ +export const birth = { + higherMultipleDelivery: 'HIGHER_MULTIPLE_DELIVERY', + quadruplet: 'QUADRUPLET', + single: 'SINGLE', + triplet: 'TRIPLET', + twin: 'TWIN' +} + +/** Mapping attendant types to identifiers */ +export const attendant = { + layperson: 'LAYPERSON', + midwife: 'MIDWIFE', + none: 'NONE', + nurse: 'NURSE', + nurseMidwife: 'NURSE_MIDWIFE', + other: 'OTHER', + otherParamedicalPersonnel: 'OTHER_PARAMEDICAL_PERSONNEL', + physician: 'PHYSICIAN', + traditionalBirthAttendant: 'TRADITIONAL_BIRTH_ATTENDANT' +} + +/** Mapping of cause-of-death method types into identifiers */ +export const causeOfDeathMethod = { + layReported: 'LAY_REPORTED', + medicallyCertified: 'MEDICALLY_CERTIFIED', + physician: 'PHYSICIAN', + verbalAutopsy: 'VERBAL_AUTOPSY' +} diff --git a/src/data-generator/queries.ts b/src/data-generator/queries.ts new file mode 100644 index 0000000000..5a76785b03 --- /dev/null +++ b/src/data-generator/queries.ts @@ -0,0 +1,393 @@ +import gql from 'graphql-tag' +import { print } from 'graphql/language/printer' + +const birthRegistrationFragment = gql` + fragment BirthRegistrationFragment on BirthRegistration { + __typename + _fhirIDMap + id + createdAt + child { + id + name { + use + firstNames + familyName + } + birthDate + gender + } + informant { + id + relationship + _fhirIDPatient + identifier { + id + type + } + name { + use + firstNames + familyName + } + occupation + nationality + birthDate + address { + type + line + district + state + city + postalCode + country + } + } + mother { + id + name { + use + firstNames + familyName + } + birthDate + multipleBirth + maritalStatus + occupation + detailsExist + dateOfMarriage + educationalAttainment + nationality + identifier { + id + type + } + address { + type + line + district + state + city + postalCode + country + } + telecom { + system + value + } + } + father { + id + name { + use + firstNames + familyName + } + birthDate + maritalStatus + occupation + detailsExist + dateOfMarriage + educationalAttainment + nationality + identifier { + id + type + } + address { + type + line + district + state + city + postalCode + country + } + telecom { + system + value + } + reasonNotApplying + } + registration { + id + informantType + contactPhoneNumber + contactEmail + attachments { + data + uri + type + contentType + subject + } + status { + comments { + comment + } + type + timestamp + } + type + trackingId + registrationNumber + } + attendantAtBirth + weightAtBirth + birthType + eventLocation { + id + type + address { + line + district + state + city + postalCode + country + } + } + questionnaire { + fieldId + value + } + } +` + +export const MARK_AS_REGISTERED_QUERY = print(gql` + mutation registerBirthDeclaration( + $id: ID! + $details: BirthRegistrationInput! + ) { + markBirthAsRegistered(id: $id, details: $details) { + id + } + } +`) + +export const MARK_AS_REJECTED_QUERY = print(gql` + mutation markEventAsVoided( + $id: String! + $reason: String! + $comment: String! + ) { + markEventAsVoided(id: $id, reason: $reason, comment: $comment) + } +`) + +export const CREATE_DEATH_DECLARATION = print(gql` + mutation createDeathDeclaration($details: DeathRegistrationInput!) { + createDeathRegistration(details: $details) { + trackingId + compositionId + } + } +`) + +export const MARK_BIRTH_AS_CERTIFIED = print(gql` + mutation markBirthAsCertified($id: ID!, $details: BirthRegistrationInput!) { + markBirthAsCertified(id: $id, details: $details) + } +`) + +export const MARK_DEATH_AS_CERTIFIED = print(gql` + mutation markDeathAsCertified($id: ID!, $details: DeathRegistrationInput!) { + markDeathAsCertified(id: $id, details: $details) + } +`) + +export const MARK_BIRTH_AS_ISSUED = print(gql` + mutation markBirthAsIssued($id: ID!, $details: BirthRegistrationInput!) { + markBirthAsIssued(id: $id, details: $details) + } +`) + +export const MARK_DEATH_AS_ISSUED = print(gql` + mutation markDeathAsIssued($id: ID!, $details: DeathRegistrationInput!) { + markDeathAsIssued(id: $id, details: $details) + } +`) + +export const SEARCH_EVENTS = print(gql` + query searchEvents( + $sort: String + $advancedSearchParameters: AdvancedSearchParametersInput! + ) { + searchEvents( + advancedSearchParameters: $advancedSearchParameters + sort: $sort + sortColumn: "dateOfDeclaration" + count: 1 + ) { + results { + registration { + dateOfDeclaration + } + } + } + } +`) +export const MARK_DEATH_AS_REGISTERED = print(gql` + mutation registerDeathDeclaration( + $id: ID! + $details: DeathRegistrationInput! + ) { + markDeathAsRegistered(id: $id, details: $details) { + id + } + } +`) + +export const FETCH_REGISTRATION_QUERY = print(gql` + ${birthRegistrationFragment} + query fetchBirthRegistration($id: ID!) { + fetchBirthRegistration(id: $id) { + ...BirthRegistrationFragment + } + } +`) + +export const FETCH_DEATH_REGISTRATION_QUERY = print(gql` + query fetchDeathRegistration($id: ID!) { + fetchDeathRegistration(id: $id) { + __typename + _fhirIDMap + id + createdAt + deceased { + id + name { + use + firstNames + familyName + } + birthDate + age + gender + maritalStatus + nationality + identifier { + id + type + } + gender + deceased { + deathDate + } + address { + type + line + district + state + city + postalCode + country + } + } + informant { + id + relationship + _fhirIDPatient + identifier { + id + type + } + name { + use + firstNames + familyName + } + nationality + occupation + birthDate + telecom { + system + value + } + address { + type + line + district + state + city + postalCode + country + } + } + father { + id + name { + use + firstNames + familyName + } + } + mother { + id + name { + use + firstNames + familyName + } + } + medicalPractitioner { + name + qualification + lastVisitDate + } + registration { + id + informantType + contactPhoneNumber + contactEmail + attachments { + data + uri + type + contentType + subject + } + status { + type + timestamp + } + type + trackingId + registrationNumber + } + eventLocation { + id + type + address { + type + line + district + state + city + postalCode + country + } + } + mannerOfDeath + causeOfDeath + maleDependentsOfDeceased + femaleDependentsOfDeceased + causeOfDeathEstablished + causeOfDeathMethod + } + } +`) + +export const getSystemRolesQuery = print(gql` + query getSystemRoles { + getSystemRoles(active: true) { + value + roles { + _id + labels { + label + } + } + } + } +`) diff --git a/src/data-generator/register.ts b/src/data-generator/register.ts new file mode 100644 index 0000000000..b021b8e784 --- /dev/null +++ b/src/data-generator/register.ts @@ -0,0 +1,240 @@ +import fetch from 'node-fetch' +import { User } from './users' + +import { idsToFHIRIds, log, removeEmptyFields } from './util' + +import { Location } from './location' + +import { + AttachmentInput, + BirthRegistrationInput, + DeathRegistrationInput, + RegisterBirthDeclarationMutation, + RegisterDeathDeclarationMutation +} from './gateway' +import { omit } from 'lodash' +import { sub } from 'date-fns' +import { GATEWAY_HOST } from './constants' +import { MARK_AS_REGISTERED_QUERY, MARK_DEATH_AS_REGISTERED } from './queries' +import { fetchDeathRegistration, fetchRegistration } from './declare' +import { attendant, birth, maritalStatus } from './options' + +// Hospital notifications have a limited set of data in them +// This part amends the missing fields if needed +export function createBirthRegistrationDetailsForNotification( + createdAt: Date, + location: Location, + declaration: Awaited> +): BirthRegistrationInput { + if (!declaration.registration) { + throw new Error(`declaration.registration did not exist for declaration`) + } + + if (!declaration.child) { + throw new Error(`declaration.child did not exist for declaration`) + } + + if (!declaration.informant) { + throw new Error(`declaration.informant did not exist for declaration`) + } + + if (!declaration.father) { + throw new Error(`declaration.father did not exist for declaration`) + } + + if (!declaration.child.birthDate) { + throw new Error(`declaration.child.birthDate did not exist for declaration`) + } + + if (!declaration.mother) { + throw new Error(`declaration.mother did not exist for declaration`) + } + + const registrationInput = omit( + createRegistrationDetails(createdAt, declaration), + ['father.reasonNotApplying'] + ) + + const res = { + ...registrationInput, + createdAt, + registration: { + ...registrationInput.registration, + draftId: declaration.id + }, + birthType: birth.single, + weightAtBirth: Math.round((2.5 + 2 * Math.random()) * 10) / 10, + attendantAtBirth: attendant.physician, + eventLocation: { + _fhirID: (declaration.eventLocation as any)?._fhirID + }, + informant: { + ...registrationInput.informant, + occupation: 'Farmer', + nationality: ['FAR'] + }, + father: { + ...registrationInput.father, + dateOfMarriage: sub(new Date(declaration.child.birthDate), { years: 2 }) + .toISOString() + .split('T')[0], + occupation: 'Bookkeeper' + }, + mother: { + ...registrationInput.mother, + identifier: declaration.mother.identifier, + name: declaration.mother.name, + occupation: 'Bookkeeper', + dateOfMarriage: sub(new Date(declaration.child.birthDate), { years: 2 }) + .toISOString() + .split('T')[0], + maritalStatus: maritalStatus.married, + _fhirID: declaration.mother.id + }, + _fhirIDMap: declaration._fhirIDMap + } + + return res +} + +// Cleans unnecessary fields from declaration data to make it an input type +export function createRegistrationDetails( + createdAt: Date, + declaration: + | Awaited> + | Awaited> +) { + const MINUTES_15 = 1000 * 60 * 15 + + const withIdsRemoved = omit( + idsToFHIRIds(declaration, [ + 'registration.id', + 'child.id', + 'mother.id', + 'father.id', + 'eventLocation.id', + 'informant.id', + 'deceased.id' + ]), + ['registration.registrationNumber', 'registration.type'] + ) + + delete withIdsRemoved.__typename + delete withIdsRemoved.id + + const data = { + ...withIdsRemoved, + eventLocation: { + _fhirID: withIdsRemoved.eventLocation?._fhirID + }, + registration: { + ...withIdsRemoved.registration, + attachments: withIdsRemoved.registration?.attachments?.filter( + (x): x is AttachmentInput => x !== null + ), + status: [ + { + // This is needed to avoid the following error from Metrics service: + // Error: No time logged extension found in task, task ID: 93c59687-b3d1-4d58-91c3-6888f1987f2a + timeLoggedMS: Math.round(MINUTES_15 + MINUTES_15 * Math.random()), + timestamp: createdAt.toISOString() + } + ] + } + } + + return removeEmptyFields(data) +} + +export async function markAsRegistered( + user: User, + id: string, + details: BirthRegistrationInput +) { + const { token, username } = user + + const requestStart = Date.now() + const reviewDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `registration-${id}` + }, + body: JSON.stringify({ + query: MARK_AS_REGISTERED_QUERY, + variables: { + id, + details + } + }) + }) + const requestEnd = Date.now() + const result = (await reviewDeclarationRes.json()) as { + errors: any[] + data: RegisterBirthDeclarationMutation + } + if (result.errors) { + console.error(JSON.stringify(result.errors, null, 2)) + console.error(JSON.stringify(details)) + throw new Error('Birth declaration was not registered') + } + + const data = result.data.markBirthAsRegistered + + log( + 'Declaration', + data.id, + 'is now reviewed by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return data +} + +export async function markDeathAsRegistered( + user: User, + id: string, + details: DeathRegistrationInput +) { + const { token, username } = user + + const requestStart = Date.now() + const reviewDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `registration-${id}` + }, + body: JSON.stringify({ + query: MARK_DEATH_AS_REGISTERED, + variables: { + id, + details + } + }) + }) + const requestEnd = Date.now() + const result = (await reviewDeclarationRes.json()) as { + data: RegisterDeathDeclarationMutation + errors: any[] + } + if (result.errors) { + console.error(JSON.stringify(result.errors, null, 2)) + console.error(JSON.stringify(details)) + + throw new Error('Death declaration was not registered') + } + const data = result.data.markDeathAsRegistered + log( + 'Declaration', + data.id, + 'is now reviewed by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return data +} diff --git a/src/data-generator/reject.ts b/src/data-generator/reject.ts new file mode 100644 index 0000000000..37b22fab6f --- /dev/null +++ b/src/data-generator/reject.ts @@ -0,0 +1,53 @@ +import fetch from 'node-fetch' +import { User } from './users' +import { log } from './util' + +import { GATEWAY_HOST } from './constants' +import { MARK_AS_REJECTED_QUERY } from './queries' + +export async function markEventAsRejected( + user: User, + id: string, + reason: string, + comment: string +) { + const { token, username } = user + + const requestStart = Date.now() + const rejectDeclarationRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `rejection-${id}` + }, + body: JSON.stringify({ + query: MARK_AS_REJECTED_QUERY, + variables: { + id, + reason, + comment + } + }) + }) + const requestEnd = Date.now() + const result = await rejectDeclarationRes.json() + + if (result.errors) { + console.error(JSON.stringify(result.errors, null, 2)) + console.error(JSON.stringify(reason)) + console.error(JSON.stringify(comment)) + throw new Error('Error Occurred while rejecting event') + } + const data = result.data + + log( + 'Declaration', + id, + 'has been rejected by', + username, + `(took ${requestEnd - requestStart}ms)` + ) + + return data +} diff --git a/src/data-generator/statistics.ts b/src/data-generator/statistics.ts new file mode 100644 index 0000000000..b90d0b68ef --- /dev/null +++ b/src/data-generator/statistics.ts @@ -0,0 +1,103 @@ +import fetch from 'node-fetch' +import gql from 'graphql-tag' +import { print } from 'graphql/language/printer' + +import { COUNTRY_CONFIG_HOST, GATEWAY_HOST } from './constants' +import { GetTotalMetricsQuery } from './gateway' + +type StatisticUrls = + | 'http://opencrvs.org/specs/id/statistics-male-populations' + | 'http://opencrvs.org/specs/id/statistics-female-populations' + | 'http://opencrvs.org/specs/id/statistics-total-populations' + | 'http://opencrvs.org/specs/id/statistics-male-female-ratios' + | 'http://opencrvs.org/specs/id/statistics-crude-birth-rates' + +export type DistrictStatistic = { + id: string + statistics: Record +} +type Statistics = Array + +export async function getStatistics(token: string): Promise { + const res = await fetch(`${COUNTRY_CONFIG_HOST}/statistics`, { + headers: { + Authorization: `Bearer ${token}`, + 'x-correlation-id': 'statistics-' + Date.now().toString() + } + }) + return await res.json() +} + +export const TOTAL_METRICS = print(gql` + query getTotalMetrics( + $event: String! + $timeStart: String! + $timeEnd: String! + $locationId: String + ) { + getTotalMetrics( + timeStart: $timeStart + timeEnd: $timeEnd + locationId: $locationId + event: $event + ) { + estimated { + totalEstimation + maleEstimation + femaleEstimation + locationId + locationLevel + __typename + } + results { + total + gender + eventLocationType + practitionerRole + timeLabel + __typename + } + __typename + } + } +`) + +export async function getLocationMetrics( + token: string, + timeStart: Date, + timeEnd: Date, + locationId: string, + type: 'BIRTH' | 'DEATH' +) { + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + headers: { + authorization: `Bearer ${token}`, + 'content-type': 'application/json' + }, + body: JSON.stringify({ + operationName: 'getTotalMetrics', + variables: { + timeStart: timeStart.toISOString(), + timeEnd: timeEnd.toISOString(), + event: type, + locationId + }, + query: TOTAL_METRICS + }), + method: 'POST' + }) + + const body = (await res.json()) as { + data: GetTotalMetricsQuery + errors: any[] + } + + if ( + (body.errors && body.errors.length > 0) || + body.data?.getTotalMetrics == null + ) { + throw new Error(body.errors[0].message) + } + + return body.data.getTotalMetrics +} diff --git a/src/data-generator/users.ts b/src/data-generator/users.ts new file mode 100644 index 0000000000..5fb6075484 --- /dev/null +++ b/src/data-generator/users.ts @@ -0,0 +1,509 @@ +import { faker } from '@faker-js/faker' +import { log } from './util' +import { Facility, getFacilities, Location } from './location' +import fetch from 'node-fetch' +import { getToken, getTokenForSystemClient } from './auth' +import { GATEWAY_HOST } from './constants' +import { expand } from 'regex-to-strings' +import { convertToMSISDN } from '@countryconfig/utils' +import { readFileSync } from 'fs' +import { join } from 'path' +import { MutationCreateOrUpdateUserArgs } from './gateway' +import { getSystemRolesQuery } from '@countryconfig/data-generator/queries' +import { SystemRole as GQLSystemRole } from '@countryconfig/data-generator/gateway' + +export type User = { + username: string + password: string + token: string + stillInUse: boolean + primaryOfficeId: string + isSystemUser: boolean +} + +type Config = { + fieldAgents: number + hospitalFieldAgents: number + registrationAgents: number + localRegistrars: number +} + +enum SystemRole { + NationalSystemAdmin = 'NATIONAL_SYSTEM_ADMIN', + FieldAgent = 'FIELD_AGENT', + LocalRegistrar = 'LOCAL_REGISTRAR', + LocalSystemAdmin = 'LOCAL_SYSTEM_ADMIN', + RegistrationAgent = 'REGISTRATION_AGENT', + NationalRegistrar = 'NATIONAL_REGISTRAR', + StateRegistrar = 'STATE_REGISTRAR', + DistrictRegistrar = 'DISTRICT_REGISTRAR' +} + +interface ISystemInfo { + clientId: string + shaSecret: string +} + +const nationalSystemAdmin: User[] = [] + +const SIGNATURE = readFileSync( + join(__dirname, 'assets', '528KB-random.png') +).toString('base64') + +export async function getAgentRoles(token: string): Promise { + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: getSystemRolesQuery, + variables: { + active: true + } + }) + }) + + if (!res.ok) { + throw new Error( + `Could not fetch agent roles, ${res.statusText} ${res.status}` + ) + } + const roles = await res.json() + return roles.data.getSystemRoles +} + +export async function createUser( + token: string, + primaryOfficeId: string, + countryAlpha3: string, + phoneNumberRegex: string, + overrides: Record +) { + const firstName = faker.person.firstName() + const familyName = faker.person.lastName() + log('Creating user', firstName, familyName, overrides) + + const phoneNumberExpander = expand(phoneNumberRegex) + const generatedPhoneNumber = phoneNumberExpander.getIterator().next().value + countryAlpha3 = countryAlpha3.toUpperCase() === 'FAR' ? 'ZMB' : countryAlpha3 + + const user: Partial = { + name: [ + { + use: 'en', + firstNames: firstName, + familyName: familyName + } + ], + identifier: [ + { + system: 'NATIONAL_ID', + value: faker.number + .bigInt({ min: 100000000, max: 999999999 }) + .toString() + } + ], + username: + firstName.toLocaleLowerCase() + '.' + familyName.toLocaleLowerCase(), + mobile: convertToMSISDN(generatedPhoneNumber, countryAlpha3), + email: faker.internet.email({ provider: 'example.com' }), + primaryOffice: primaryOfficeId, + ...overrides + } + + if ( + overrides?.systemRole === SystemRole.LocalRegistrar || + overrides?.systemRole === SystemRole.RegistrationAgent + ) { + user.signature = { + data: 'data:image/png;base64,' + SIGNATURE, + type: 'image/png' + } + } + + const createUserRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `createuser-${firstName}-${familyName}` + }, + body: JSON.stringify({ + query: ` + mutation createOrUpdateUser($user: UserInput!) { + createOrUpdateUser(user: $user) { + username + id + } + } + `, + variables: { user } + }) + }) + + const resp = await createUserRes.json() + + log('User created') + const { data } = resp as { + data: { createOrUpdateUser: { username: string; id: string } } + } + + const userToken = await getToken(data.createOrUpdateUser.username, 'test') + + const res = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${userToken}`, + 'x-correlation-id': `createuser-${firstName}-${familyName}` + }, + body: JSON.stringify({ + query: ` + mutation activateUser($userId: String!, $password: String!, $securityQNAs: [SecurityQuestionAnswer]!) { + activateUser(userId: $userId, password: $password, securityQNAs: $securityQNAs) + } + `, + variables: { + userId: data.createOrUpdateUser.id, + password: 'test', + securityQNAs: [] + } + }) + }) + + if (res.status !== 200) { + throw new Error('Could not activate user') + } + + return { + ...data.createOrUpdateUser, + token: userToken, + primaryOfficeId, + stillInUse: true, + password: 'test', + isSystemUser: false + } +} + +export async function getUsers(token: string, locationId: string) { + const getUsersRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `getusers` + }, + body: JSON.stringify({ + operationName: null, + variables: { + locationId: locationId, + count: 100 + }, + query: ` + query ($count: Int, $skip: Int, $locationId: String) { + searchUsers(count: $count, skip: $skip, locationId: $locationId) { + totalItems + results { + id + primaryOffice { + id + } + username + systemRole + } + } + } + ` + }) + }) + + const res = (await getUsersRes.json()) as { + data: { + searchUsers: { + results: Array<{ + username: string + systemRole: SystemRole + role: string + primaryOffice: { id: string } + }> + } + } + } + + return res.data.searchUsers.results +} + +export async function getUserByRole(token: string, systemRole: string) { + const getUsersRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + 'x-correlation-id': `getusers` + }, + body: JSON.stringify({ + operationName: null, + variables: { + systemRole, + count: 100 + }, + query: ` + query ($count: Int, $skip: Int, $systemRole: String) { + searchUsers(count: $count, skip: $skip, systemRole: $systemRole) { + totalItems + results { + id + primaryOffice { + id + } + username + systemRole + } + } + } + ` + }) + }) + + const res = (await getUsersRes.json()) as { + data: { + searchUsers: { + results: Array<{ + username: string + systemRole: SystemRole + role: string + primaryOffice: { id: string } + }> + } + } + } + + return res.data.searchUsers.results +} + +const registerSystemClient = async ( + name: string, + type: string, + token: string +) => { + const createUserRes = await fetch(`${GATEWAY_HOST}/graphql`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}` + }, + body: JSON.stringify({ + query: ` + mutation registerSystem($system: SystemInput) { + registerSystem(system: $system) { + clientSecret + system { + clientId + shaSecret + } + } + } + `, + variables: { system: { name, type } } + }) + }) + + return await createUserRes.json() +} + +export async function createSystemClient( + officeId: string, + systemClientName: string, + scope: + | 'HEALTH' + | 'NATIONAL_ID' + | 'EXTERNAL_VALIDATION' + | 'AGE_CHECK' + | 'RECORD_SEARCH', + natlSystemAdmin: User +): Promise { + const credentialsRes = await registerSystemClient( + systemClientName, + scope, + natlSystemAdmin.token + ) + const credentials: { + system: ISystemInfo + clientSecret: string + } = credentialsRes.data.registerSystem + + const systemToken = await getTokenForSystemClient( + credentials.system.clientId, + credentials.clientSecret + ) + + return { + token: systemToken, + username: credentials.system.clientId, + password: credentials.clientSecret, + stillInUse: true, + primaryOfficeId: officeId, + isSystemUser: true + } +} + +export async function createUsers( + token: string, + location: Location, + countryCode: string, + phoneNumberRegex: string, + config: Config +) { + log('Fetching existing users') + const existingUsers = await getUsers(token, location.id) + log('Found', existingUsers.length, 'existing users') + + const fieldAgents: User[] = await Promise.all( + existingUsers + .filter(({ systemRole }) => systemRole === 'FIELD_AGENT') + .map(async (user) => ({ + username: user.username, + password: 'test', + token: await getToken(user.username, 'test'), + stillInUse: true, + primaryOfficeId: user.primaryOffice.id, + isSystemUser: false + })) + ) + const registrationAgents: User[] = await Promise.all( + existingUsers + .filter(({ systemRole }) => systemRole === 'REGISTRATION_AGENT') + .map(async (user) => ({ + username: user.username, + password: 'test', + token: await getToken(user.username, 'test'), + stillInUse: true, + primaryOfficeId: user.primaryOffice.id, + isSystemUser: false + })) + ) + const registrars: User[] = await Promise.all( + existingUsers + .filter(({ systemRole }) => systemRole === 'LOCAL_REGISTRAR') + .map(async (user) => ({ + username: user.username, + password: 'test', + token: await getToken(user.username, 'test'), + stillInUse: true, + primaryOfficeId: user.primaryOffice.id, + isSystemUser: false + })) + ) + + if (!nationalSystemAdmin.length) { + const natlUserRes = await getUserByRole(token, 'NATIONAL_SYSTEM_ADMIN') + const mappedNatlUserRes = await Promise.all( + natlUserRes + .filter(({ username }) => username !== 'o.admin') + .map(async (user) => { + return { + username: user.username, + password: 'test', + token: await getToken(user.username, 'test'), + stillInUse: true, + primaryOfficeId: user.primaryOffice.id, + isSystemUser: false + } + }) + ) + nationalSystemAdmin.push(mappedNatlUserRes[0]) + } + + // These cannot be fetched through gateway, so we'll always have to regenerate them + const hospitals: User[] = [] + + const facilities = await getFacilities() + + const crvsOffices = facilities + .filter(({ type }: Facility) => type === 'CRVS_OFFICE') + .filter(({ partOf }: Facility) => partOf === 'Location/' + location.id) + + const healthFacilities = facilities + .filter(({ type }: Facility) => type === 'HEALTH_FACILITY') + .filter(({ partOf }: Facility) => partOf === 'Location/' + location.id) + + if (crvsOffices.length === 0) { + throw new Error(`Cannot find any CRVS offices for ${location.name}`) + } + + const userRoles = (await getAgentRoles(token))?.reduce( + (rolesObj, userRole) => { + return { + ...rolesObj, + [userRole.value]: userRole.roles.map((role) => role._id) + } + }, + {} + ) as Record + + const FIELD_AGENT_ROLES = userRoles.FIELD_AGENT + const randomOffice = + crvsOffices[Math.floor(Math.random() * crvsOffices.length)] + log('Creating field agents') + for (let i = fieldAgents.length; i < config.fieldAgents; i++) { + const randomFieldAgentRole = + FIELD_AGENT_ROLES[Math.floor(Math.random() * FIELD_AGENT_ROLES.length)] + fieldAgents.push( + await createUser(token, randomOffice.id, countryCode, phoneNumberRegex, { + systemRole: 'FIELD_AGENT', + role: randomFieldAgentRole + }) + ) + } + + log('Field agents created') + log('Creating', config.hospitalFieldAgents, 'hospitals') + const natlSystemAdminUser = nationalSystemAdmin[0] + for (let i = 0; i < config.hospitalFieldAgents; i++) { + const user = await createSystemClient( + randomOffice.id, + faker.helpers.arrayElement(healthFacilities).name, + 'HEALTH', + natlSystemAdminUser + ) + hospitals.push(user) + } + + log('Hospitals created') + + const REGISTRATION_AGENT_ROLES = userRoles.REGISTRATION_AGENT + log('Creating registration agents') + for (let i = registrationAgents.length; i < config.registrationAgents; i++) { + const randomRegistrationAgentRole = + REGISTRATION_AGENT_ROLES[ + Math.floor(Math.random() * REGISTRATION_AGENT_ROLES.length) + ] + registrationAgents.push( + await createUser(token, randomOffice.id, countryCode, phoneNumberRegex, { + systemRole: 'REGISTRATION_AGENT', + role: randomRegistrationAgentRole + }) + ) + } + log('Registration agents created') + + const LOCAL_REGISTRAR_ROLES = userRoles.LOCAL_REGISTRAR + log('Creating local registrars') + for (let i = registrars.length; i < config.localRegistrars; i++) { + const randomLocalRegRole = + LOCAL_REGISTRAR_ROLES[ + Math.floor(Math.random() * LOCAL_REGISTRAR_ROLES.length) + ] + registrars.push( + await createUser(token, randomOffice.id, countryCode, phoneNumberRegex, { + systemRole: 'LOCAL_REGISTRAR', + role: randomLocalRegRole + }) + ) + } + log('Local registrars created') + + return { fieldAgents, hospitals, registrationAgents, registrars } +} diff --git a/src/data-generator/util.ts b/src/data-generator/util.ts new file mode 100644 index 0000000000..a3a54704e5 --- /dev/null +++ b/src/data-generator/util.ts @@ -0,0 +1,109 @@ +import { get, set } from 'lodash' + +export function log(...params: Parameters) { + console.log(new Date().toISOString(), ...params) +} +export function getRandomInt(min: number, max: number) { + min = Math.ceil(min) + max = Math.floor(max) + return Math.floor(Math.random() * (max - min + 1)) + min +} + +export function getRandomFromBrackets( + completionBrackets: { range: number[]; weight: number }[] +) { + const completion = Math.random() + const index = completionBrackets.find((_val, index) => { + const total = completionBrackets + .slice(0, index + 1) + .reduce((m, n) => m + n.weight, 0) + return total > completion + })! + + const completionDays = getRandomInt(index.range[0], index.range[1]) + return completionDays +} + +// Utility function for adding concurrency for async for loops +export function createConcurrentBuffer(concurrency: number) { + const currentPromises: Array> = [] + + return ( + handler: (...props: T[]) => Promise, + ...variablesToBind: T[] + ) => { + const prom = handler(...variablesToBind).catch((err) => log(err)) + currentPromises.push(prom) + + prom.finally(() => currentPromises.splice(currentPromises.indexOf(prom), 1)) + + if (currentPromises.length < concurrency) { + return Promise.resolve() + } + + return Promise.race(currentPromises) + } +} + +export function nullsToEmptyString(object: any) { + for (const key of Object.keys(object)) { + const value = object[key] + if (value === null) { + object[key] = '' + continue + } + if (typeof value === 'object' && !Array.isArray(value)) { + nullsToEmptyString(value) + continue + } + if (Array.isArray(value)) { + value.forEach(nullsToEmptyString) + } + } +} + +export type RecursiveRequired = Required<{ + [P in keyof T]: IfAny, null>> +}> + +type IfAny = 0 extends 1 & T ? Y : N + +type ReplaceIdWithFHIRId = T extends { id: string } + ? Omit & { _fhirID: string } + : T + +type ReplaceIdKeysWithFHIRId< + T extends Record, + T2 = { [P in keyof T]: ReplaceIdKeysWithFHIRId> } +> = IfAny + +export function idsToFHIRIds>( + target: T, + keys: ReadonlyArray +): ReplaceIdKeysWithFHIRId { + return keys.reduce((memo, key) => { + const value = get(memo, key) + + if (value === undefined) { + return memo + } + + const fhirKey = key.split('.').slice(0, -1).concat('_fhirID').join('.') + return set(set(memo, fhirKey, value), key, undefined) + }, target) as ReplaceIdKeysWithFHIRId +} + +function isObject(value: any) { + return typeof value === 'object' && !Array.isArray(value) && value !== null +} + +export function removeEmptyFields>(object: T): T { + return Object.fromEntries( + Object.entries(object) + .filter(([, value]) => value !== null) + .map(([key, value]) => [ + key, + isObject(value) ? removeEmptyFields(value) : value + ]) + ) as T +} diff --git a/src/data-generator/vsExport.ts b/src/data-generator/vsExport.ts new file mode 100644 index 0000000000..40b0aecdd8 --- /dev/null +++ b/src/data-generator/vsExport.ts @@ -0,0 +1,33 @@ +import fetch from 'node-fetch' +import { URL } from 'url' +import { METRICS_API_HOST } from './constants' +import { format, isSameDay, startOfMonth } from 'date-fns' +import { log } from './util' + +export async function callVSExportAPIToGenerateDeclarationData( + submissionDate: Date +) { + const formattedDate = format(submissionDate, 'yyyy-MM-dd') + const vsExportURL = new URL('vsExport', METRICS_API_HOST) + vsExportURL.searchParams.set('startDate', formattedDate) + vsExportURL.searchParams.set('endDate', formattedDate) + vsExportURL.searchParams.append('isScheduler', 'true') + if (isSameDay(submissionDate, startOfMonth(submissionDate))) { + vsExportURL.searchParams.append('isScheduler', 'false') + } + log('Calling vsExport URL :: ', vsExportURL.href) + try { + const vsExportRes = await fetch(vsExportURL, { + method: 'GET', + headers: { + 'Content-Type': 'application/json' + } + }) + const res = await vsExportRes.json() + log(res.message) + return res + } catch (error) { + log(`Error occurred while generating VSExport`, error) + throw error + } +} diff --git a/src/data-seeding/employees/handler.ts b/src/data-seeding/employees/handler.ts index 12919c151e..59aee343b5 100644 --- a/src/data-seeding/employees/handler.ts +++ b/src/data-seeding/employees/handler.ts @@ -8,15 +8,12 @@ * * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. */ -import { QA_ENV } from '@countryconfig/constants' import { readCSVToJSON } from '@countryconfig/utils' import { Request, ResponseToolkit } from '@hapi/hapi' export async function usersHandler(_: Request, h: ResponseToolkit) { const users: unknown[] = await readCSVToJSON( - process.env.NODE_ENV === 'production' && !QA_ENV - ? './src/data-seeding/employees/source/prod-employees.csv' - : './src/data-seeding/employees/source/default-employees.csv' + './src/data-seeding/employees/source/default-employees.csv' ) return h.response(users) } diff --git a/src/data-seeding/roles/__snapshots__/roles.test.ts.snap b/src/data-seeding/roles/__snapshots__/roles.test.ts.snap new file mode 100644 index 0000000000..9ecc51403d --- /dev/null +++ b/src/data-seeding/roles/__snapshots__/roles.test.ts.snap @@ -0,0 +1,765 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`Roles config > should have consistent audit and search event definitions 1`] = ` +[ + { + "id": "FIELD_AGENT", + "label": { + "defaultMessage": "Field Agent", + "description": "Name for user role Field Agent", + "id": "userRole.fieldAgent", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=my-jurisdiction]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "REGISTRATION_AGENT", + "label": { + "defaultMessage": "Registration Officer", + "description": "Name for user role Registration Officer", + "id": "userRole.registrationOfficer", + }, + "scopes": [ + "record.read", + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-for-approval", + "record.declaration-submit-for-updates", + "record.declaration-edit", + "record.review-duplicates", + "record.declaration-archive", + "record.declaration-reinstate", + "record.registration-print&issue-certified-copies", + "record.registration-request-correction", + "performance.read", + "performance.read-dashboards", + "organisation.read-locations:my-office", + "user.read:only-my-audit", + "search.birth", + "search.death", + "search.marriage", + "organisation.read-locations:my-jurisdiction", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-completion|requires-updates-office|in-review|sent-for-approval|in-external-validation|ready-to-print|ready-to-issue]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.declared.validate[event=birth|death|tennis-club-membership]", + "record.declared.reject[event=birth|death|tennis-club-membership]", + "record.declared.archive[event=birth|death|tennis-club-membership]", + "record.declared.review-duplicates[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + "record.registered.request-correction[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "LOCAL_REGISTRAR", + "label": { + "defaultMessage": "Local Registrar", + "description": "Name for user role Local Registrar", + "id": "userRole.localRegistrar", + }, + "scopes": [ + "record.read", + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-for-updates", + "record.unassign-others", + "record.declaration-edit", + "record.declaration-archive", + "record.declaration-reinstate", + "record.review-duplicates", + "record.register", + "record.registration-print&issue-certified-copies", + "profile.electronic-signature", + "record.registration-correct", + "record.confirm-registration", + "record.reject-registration", + "performance.read", + "performance.read-dashboards", + "profile.electronic-signature", + "user.read:only-my-audit", + "organisation.read-locations:my-office", + "performance.vital-statistics-export", + "search.birth", + "search.death", + "search.marriage", + "organisation.read-locations:my-jurisdiction", + "user.read:my-office", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-completion|requires-updates-office|in-review-all|in-external-validation|ready-to-print|ready-to-issue]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.declared.reject[event=birth|death|tennis-club-membership]", + "record.declared.archive[event=birth|death|tennis-club-membership]", + "record.declared.review-duplicates[event=birth|death|tennis-club-membership]", + "record.register[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + "record.registered.correct[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "LOCAL_SYSTEM_ADMIN", + "label": { + "defaultMessage": "Administrator", + "description": "Name for user role Administrator", + "id": "userRole.administrator", + }, + "scopes": [ + "organisation.read-locations:my-jurisdiction", + "user.create:my-jurisdiction", + "user.create[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]", + "user.update:my-jurisdiction", + "user.edit[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]", + "user.read:my-jurisdiction", + ], + }, + { + "id": "NATIONAL_SYSTEM_ADMIN", + "label": { + "defaultMessage": "National Administrator", + "description": "Name for user role National Administrator", + "id": "userRole.nationalAdministrator", + }, + "scopes": [ + "config.update:all", + "organisation.read-locations:all", + "user.create:all", + "user.create[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]", + "user.update:all", + "user.edit[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]", + "user.read:all", + ], + }, + { + "id": "PERFORMANCE_MANAGER", + "label": { + "defaultMessage": "Operations Manager", + "description": "Name for user role Operations Manager", + "id": "userRole.operationsManager", + }, + "scopes": [ + "performance.read", + "performance.read-dashboards", + "performance.vital-statistics-export", + "organisation.read-locations:all", + ], + }, + { + "id": "NATIONAL_REGISTRAR", + "label": { + "defaultMessage": "Registrar General", + "description": "Name for user role Registrar General", + "id": "userRole.registrarGeneral", + }, + "scopes": [ + "record.read", + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-for-updates", + "record.unassign-others", + "record.declaration-edit", + "record.declaration-archive", + "record.declaration-reinstate", + "record.review-duplicates", + "record.register", + "record.registration-print&issue-certified-copies", + "profile.electronic-signature", + "record.registration-correct", + "record.confirm-registration", + "record.reject-registration", + "performance.read", + "performance.read-dashboards", + "performance.vital-statistics-export", + "user.read:only-my-audit", + "profile.electronic-signature", + "organisation.read-locations:my-office", + "user.read:my-office", + "search.birth", + "search.death", + "search.marriage", + "organisation.read-locations:my-jurisdiction", + "user.read:my-office", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-completion|requires-updates-office|in-review-all|in-external-validation|ready-to-print|ready-to-issue]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.declared.reject[event=birth|death|tennis-club-membership]", + "record.declared.archive[event=birth|death|tennis-club-membership]", + "record.declared.review-duplicates[event=birth|death|tennis-club-membership]", + "record.register[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + "record.registered.correct[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "HOSPITAL_CLERK", + "label": { + "defaultMessage": "Hospital Clerk", + "description": "Name for user role Hospital Clerk", + "id": "userRole.hospitalClerk", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "COMMUNITY_LEADER", + "label": { + "defaultMessage": "Community Leader", + "description": "Name for user role Community Leader", + "id": "userRole.communityLeader", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "record.registration-print&issue-certified-copies", + "search.birth", + "search.death", + "search.marriage", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|sent-for-review|ready-to-print]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "POLICE_OFFICER", + "label": { + "defaultMessage": "Police Officer", + "description": "Name for user role Police Officer", + "id": "userRole.policeOfficer", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "HOSPITAL_CLERK", + "label": { + "defaultMessage": "Hospital Clerk", + "description": "Name for user role Hospital Clerk", + "id": "userRole.hospitalClerk", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "HEALTHCARE_WORKER", + "label": { + "defaultMessage": "Healthcare Worker", + "description": "Name for user role Healthcare Worker", + "id": "userRole.healthcareWorker", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "COMMUNITY_LEADER", + "label": { + "defaultMessage": "Community Leader", + "description": "Name for user role Community Leader", + "id": "userRole.communityLeader", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, +] +`; + +exports[`Roles config > should match the snapshot (scopes integrity) 1`] = ` +[ + { + "id": "FIELD_AGENT", + "label": { + "defaultMessage": "Field Agent", + "description": "Name for user role Field Agent", + "id": "userRole.fieldAgent", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=my-jurisdiction]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "REGISTRATION_AGENT", + "label": { + "defaultMessage": "Registration Officer", + "description": "Name for user role Registration Officer", + "id": "userRole.registrationOfficer", + }, + "scopes": [ + "record.read", + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-for-approval", + "record.declaration-submit-for-updates", + "record.declaration-edit", + "record.review-duplicates", + "record.declaration-archive", + "record.declaration-reinstate", + "record.registration-print&issue-certified-copies", + "record.registration-request-correction", + "performance.read", + "performance.read-dashboards", + "organisation.read-locations:my-office", + "user.read:only-my-audit", + "search.birth", + "search.death", + "search.marriage", + "organisation.read-locations:my-jurisdiction", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-completion|requires-updates-office|in-review|sent-for-approval|in-external-validation|ready-to-print|ready-to-issue]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.declared.validate[event=birth|death|tennis-club-membership]", + "record.declared.reject[event=birth|death|tennis-club-membership]", + "record.declared.archive[event=birth|death|tennis-club-membership]", + "record.declared.review-duplicates[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + "record.registered.request-correction[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "LOCAL_REGISTRAR", + "label": { + "defaultMessage": "Local Registrar", + "description": "Name for user role Local Registrar", + "id": "userRole.localRegistrar", + }, + "scopes": [ + "record.read", + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-for-updates", + "record.unassign-others", + "record.declaration-edit", + "record.declaration-archive", + "record.declaration-reinstate", + "record.review-duplicates", + "record.register", + "record.registration-print&issue-certified-copies", + "profile.electronic-signature", + "record.registration-correct", + "record.confirm-registration", + "record.reject-registration", + "performance.read", + "performance.read-dashboards", + "profile.electronic-signature", + "user.read:only-my-audit", + "organisation.read-locations:my-office", + "performance.vital-statistics-export", + "search.birth", + "search.death", + "search.marriage", + "organisation.read-locations:my-jurisdiction", + "user.read:my-office", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-completion|requires-updates-office|in-review-all|in-external-validation|ready-to-print|ready-to-issue]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.declared.reject[event=birth|death|tennis-club-membership]", + "record.declared.archive[event=birth|death|tennis-club-membership]", + "record.declared.review-duplicates[event=birth|death|tennis-club-membership]", + "record.register[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + "record.registered.correct[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "LOCAL_SYSTEM_ADMIN", + "label": { + "defaultMessage": "Administrator", + "description": "Name for user role Administrator", + "id": "userRole.administrator", + }, + "scopes": [ + "organisation.read-locations:my-jurisdiction", + "user.create:my-jurisdiction", + "user.create[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]", + "user.update:my-jurisdiction", + "user.edit[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]", + "user.read:my-jurisdiction", + ], + }, + { + "id": "NATIONAL_SYSTEM_ADMIN", + "label": { + "defaultMessage": "National Administrator", + "description": "Name for user role National Administrator", + "id": "userRole.nationalAdministrator", + }, + "scopes": [ + "config.update:all", + "organisation.read-locations:all", + "user.create:all", + "user.create[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]", + "user.update:all", + "user.edit[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]", + "user.read:all", + ], + }, + { + "id": "PERFORMANCE_MANAGER", + "label": { + "defaultMessage": "Operations Manager", + "description": "Name for user role Operations Manager", + "id": "userRole.operationsManager", + }, + "scopes": [ + "performance.read", + "performance.read-dashboards", + "performance.vital-statistics-export", + "organisation.read-locations:all", + ], + }, + { + "id": "NATIONAL_REGISTRAR", + "label": { + "defaultMessage": "Registrar General", + "description": "Name for user role Registrar General", + "id": "userRole.registrarGeneral", + }, + "scopes": [ + "record.read", + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-for-updates", + "record.unassign-others", + "record.declaration-edit", + "record.declaration-archive", + "record.declaration-reinstate", + "record.review-duplicates", + "record.register", + "record.registration-print&issue-certified-copies", + "profile.electronic-signature", + "record.registration-correct", + "record.confirm-registration", + "record.reject-registration", + "performance.read", + "performance.read-dashboards", + "performance.vital-statistics-export", + "user.read:only-my-audit", + "profile.electronic-signature", + "organisation.read-locations:my-office", + "user.read:my-office", + "search.birth", + "search.death", + "search.marriage", + "organisation.read-locations:my-jurisdiction", + "user.read:my-office", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-completion|requires-updates-office|in-review-all|in-external-validation|ready-to-print|ready-to-issue]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.declared.reject[event=birth|death|tennis-club-membership]", + "record.declared.archive[event=birth|death|tennis-club-membership]", + "record.declared.review-duplicates[event=birth|death|tennis-club-membership]", + "record.register[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + "record.registered.correct[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "HOSPITAL_CLERK", + "label": { + "defaultMessage": "Hospital Clerk", + "description": "Name for user role Hospital Clerk", + "id": "userRole.hospitalClerk", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "COMMUNITY_LEADER", + "label": { + "defaultMessage": "Community Leader", + "description": "Name for user role Community Leader", + "id": "userRole.communityLeader", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "record.registration-print&issue-certified-copies", + "search.birth", + "search.death", + "search.marriage", + "user.read:only-my-audit", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|sent-for-review|ready-to-print]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + "record.registered.print-certified-copies[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "POLICE_OFFICER", + "label": { + "defaultMessage": "Police Officer", + "description": "Name for user role Police Officer", + "id": "userRole.policeOfficer", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "HOSPITAL_CLERK", + "label": { + "defaultMessage": "Hospital Clerk", + "description": "Name for user role Hospital Clerk", + "id": "userRole.hospitalClerk", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "HEALTHCARE_WORKER", + "label": { + "defaultMessage": "Healthcare Worker", + "description": "Name for user role Healthcare Worker", + "id": "userRole.healthcareWorker", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, + { + "id": "COMMUNITY_LEADER", + "label": { + "defaultMessage": "Community Leader", + "description": "Name for user role Community Leader", + "id": "userRole.communityLeader", + }, + "scopes": [ + "record.declare-birth", + "record.declare-death", + "record.declare-marriage", + "record.declaration-submit-incomplete", + "record.declaration-submit-for-review", + "search.birth", + "search.death", + "search.marriage", + "search[event=birth,access=all]", + "search[event=death,access=all]", + "search[event=tennis-club-membership,access=all]", + "workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]", + "record.create[event=birth|death|tennis-club-membership]", + "record.read[event=birth|death|tennis-club-membership]", + "record.declare[event=birth|death|tennis-club-membership]", + "record.notify[event=birth|death|tennis-club-membership]", + ], + }, +] +`; diff --git a/src/data-seeding/roles/roles.test.ts b/src/data-seeding/roles/roles.test.ts new file mode 100644 index 0000000000..cb4f56bf74 --- /dev/null +++ b/src/data-seeding/roles/roles.test.ts @@ -0,0 +1,99 @@ +import { describe, it, expect } from 'vitest' +import { roles } from './roles' + +describe('Roles config', () => { + it('should match the snapshot (scopes integrity)', () => { + expect(roles).toMatchSnapshot() + }) + + it('each role should have valid scopes', () => { + for (const role of roles) { + expect(role.id).toBeTruthy() + expect(role.label.defaultMessage).toBeTruthy() + expect(Array.isArray(role.scopes)).toBe(true) + + for (const scope of role.scopes) { + expect(typeof scope).toBe('string') + + const valid = + // Configurable search scopes + scope.startsWith('search[') || + // Legacyt search scopes + scope.startsWith('search.') || + // Records + scope.startsWith('record.') || + // Configurable workqueue scopes + scope.startsWith('workqueue[') || + // User scopes + scope.startsWith('user.') || + // Constants like SCOPES.RECORD_DECLARE_BIRTH + scope.startsWith('SCOPES.') || + // Performance scopes + scope.startsWith('performance.') || + // Organisation scopes + scope.startsWith('organisation.') || + // Profile scopes + scope.startsWith('profile.') || + // Config scopes + scope.startsWith('config.') + // Any other scopes should be manually added here + + if (!valid) { + throw new Error(`Invalid scope "${scope}" found in role ${role.id}`) + } + } + } + }) + + it('should include the correct roles', () => { + const AUDIT_SCOPE = 'user.read:only-my-audit' + + const rolesWithAudit = roles + .filter((role) => role.scopes.includes(AUDIT_SCOPE)) + .map((role) => role.id) + + // Update this list if requirements change + expect(rolesWithAudit.sort()).toEqual([ + 'COMMUNITY_LEADER', + 'FIELD_AGENT', + 'HOSPITAL_CLERK', + 'LOCAL_REGISTRAR', + 'NATIONAL_REGISTRAR', + 'REGISTRATION_AGENT' + ]) + + const createRecordScope = + 'record.create[event=birth|death|tennis-club-membership]' + + const rolesWithCreateRecord = roles + .filter((role) => role.scopes.includes(createRecordScope)) + .map((role) => role.id) + + // Update this list if requirements change + expect(rolesWithCreateRecord.sort()).toEqual([ + 'COMMUNITY_LEADER', + 'FIELD_AGENT', + 'HEALTHCARE_WORKER', + 'HOSPITAL_CLERK', + 'COMMUNITY_LEADER', + 'LOCAL_REGISTRAR', + 'NATIONAL_REGISTRAR', + 'POLICE_OFFICER', + 'REGISTRATION_AGENT', + 'HOSPITAL_CLERK' + ]) + + const fullWorkqueueScope = + 'workqueue[id=assigned-to-you|recent|requires-completion|requires-updates-office|in-review-all|in-external-validation|ready-to-print|ready-to-issue]' + + const rolesWithWorkqueue = roles + .filter((role) => role.scopes.includes(fullWorkqueueScope)) + .map((role) => role.id) + + // Update this list if requirements change + expect(rolesWithWorkqueue.sort()).toEqual([ + 'LOCAL_REGISTRAR', + 'NATIONAL_REGISTRAR' + ]) + }) +}) diff --git a/src/data-seeding/roles/roles.ts b/src/data-seeding/roles/roles.ts index 2830301c2c..67840e60e4 100644 --- a/src/data-seeding/roles/roles.ts +++ b/src/data-seeding/roles/roles.ts @@ -24,6 +24,7 @@ export const roles: Role[] = [ SCOPES.SEARCH_BIRTH, SCOPES.SEARCH_DEATH, SCOPES.SEARCH_MARRIAGE, + SCOPES.USER_READ_ONLY_MY_AUDIT, 'search[event=birth,access=all]', 'search[event=death,access=my-jurisdiction]', 'search[event=tennis-club-membership,access=all]', @@ -33,130 +34,26 @@ export const roles: Role[] = [ 'record.notify[event=birth|death|tennis-club-membership]' ] }, - { - id: 'POLICE_OFFICER', - label: { - defaultMessage: 'Police Officer', - description: 'Name for user role Police Officer', - id: 'userRole.policeOfficer' - }, - scopes: [ - SCOPES.RECORD_DECLARE_BIRTH, - SCOPES.RECORD_DECLARE_DEATH, - SCOPES.RECORD_DECLARE_MARRIAGE, - SCOPES.RECORD_SUBMIT_INCOMPLETE, - SCOPES.RECORD_SUBMIT_FOR_REVIEW, - SCOPES.SEARCH_BIRTH, - SCOPES.SEARCH_DEATH, - SCOPES.SEARCH_MARRIAGE, - 'search[event=birth,access=all]', - 'search[event=death,access=all]', - 'search[event=tennis-club-membership,access=all]', - `record.create[event=birth|death|tennis-club-membership]`, - 'record.declare[event=birth|death|tennis-club-membership]', - 'record.notify[event=birth|death|tennis-club-membership]' - ] - }, - { - id: 'HOSPITAL_CLERK', - label: { - defaultMessage: 'Hospital Clerk', - description: 'Name for user role Hospital Clerk', - id: 'userRole.hospitalClerk' - }, - scopes: [ - SCOPES.RECORD_DECLARE_BIRTH, - SCOPES.RECORD_DECLARE_DEATH, - SCOPES.RECORD_DECLARE_MARRIAGE, - SCOPES.RECORD_SUBMIT_INCOMPLETE, - SCOPES.RECORD_SUBMIT_FOR_REVIEW, - SCOPES.SEARCH_BIRTH, - SCOPES.SEARCH_DEATH, - SCOPES.SEARCH_MARRIAGE, - 'search[event=birth,access=all]', - 'search[event=death,access=all]', - 'search[event=tennis-club-membership,access=all]', - 'workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]', - `record.create[event=birth|death|tennis-club-membership]`, - 'record.declare[event=birth|death|tennis-club-membership]', - 'record.notify[event=birth|death|tennis-club-membership]' - ] - }, - { - id: 'HEALTHCARE_WORKER', - label: { - defaultMessage: 'Healthcare Worker', - description: 'Name for user role Healthcare Worker', - id: 'userRole.healthcareWorker' - }, - scopes: [ - SCOPES.RECORD_DECLARE_BIRTH, - SCOPES.RECORD_DECLARE_DEATH, - SCOPES.RECORD_DECLARE_MARRIAGE, - SCOPES.RECORD_SUBMIT_INCOMPLETE, - SCOPES.RECORD_SUBMIT_FOR_REVIEW, - SCOPES.SEARCH_BIRTH, - SCOPES.SEARCH_DEATH, - SCOPES.SEARCH_MARRIAGE, - 'search[event=birth,access=all]', - 'search[event=death,access=all]', - 'search[event=tennis-club-membership,access=all]', - `record.create[event=birth|death|tennis-club-membership]`, - 'record.declare[event=birth|death|tennis-club-membership]', - 'record.notify[event=birth|death|tennis-club-membership]' - ] - }, - { - id: 'COMMUNITY_LEADER', - label: { - defaultMessage: 'Community Leader', - description: 'Name for user role Community Leader', - id: 'userRole.communityLeader' - }, - scopes: [ - SCOPES.RECORD_DECLARE_BIRTH, - SCOPES.RECORD_DECLARE_DEATH, - SCOPES.RECORD_DECLARE_MARRIAGE, - SCOPES.RECORD_SUBMIT_INCOMPLETE, - SCOPES.RECORD_SUBMIT_FOR_REVIEW, - SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES, - SCOPES.SEARCH_BIRTH, - SCOPES.SEARCH_DEATH, - SCOPES.SEARCH_MARRIAGE, - SCOPES.USER_READ_ONLY_MY_AUDIT, - 'search[event=birth,access=all]', - 'search[event=death,access=all]', - 'search[event=tennis-club-membership,access=all]', - 'workqueue[id=assigned-to-you|recent|sent-for-review|ready-to-print]', - 'record.create[event=birth|death|tennis-club-membership]', - 'record.read[event=birth|death|tennis-club-membership]', - 'record.declare[event=birth|death|tennis-club-membership]', - 'record.notify[event=birth|death|tennis-club-membership]', - 'record.registered.print-certified-copies[event=birth|death|tennis-club-membership]' - ] - }, { id: 'REGISTRATION_AGENT', label: { - defaultMessage: 'Registration Agent', - description: 'Name for user role Registration Agent', - id: 'userRole.registrationAgent' + defaultMessage: 'Registration Officer', + description: 'Name for user role Registration Officer', + id: 'userRole.registrationOfficer' }, scopes: [ SCOPES.RECORD_READ, SCOPES.RECORD_DECLARE_BIRTH, SCOPES.RECORD_DECLARE_DEATH, SCOPES.RECORD_DECLARE_MARRIAGE, - SCOPES.RECORD_DECLARATION_EDIT, SCOPES.RECORD_SUBMIT_FOR_APPROVAL, SCOPES.RECORD_SUBMIT_FOR_UPDATES, + SCOPES.RECORD_DECLARATION_EDIT, SCOPES.RECORD_REVIEW_DUPLICATES, SCOPES.RECORD_DECLARATION_ARCHIVE, SCOPES.RECORD_DECLARATION_REINSTATE, - SCOPES.RECORD_REGISTRATION_REQUEST_CORRECTION, - SCOPES.RECORD_PRINT_RECORDS_SUPPORTING_DOCUMENTS, - SCOPES.RECORD_EXPORT_RECORDS, SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES, + SCOPES.RECORD_REGISTRATION_REQUEST_CORRECTION, SCOPES.PERFORMANCE_READ, SCOPES.PERFORMANCE_READ_DASHBOARDS, SCOPES.ORGANISATION_READ_LOCATIONS_MY_OFFICE, @@ -164,6 +61,8 @@ export const roles: Role[] = [ SCOPES.SEARCH_BIRTH, SCOPES.SEARCH_DEATH, SCOPES.SEARCH_MARRIAGE, + SCOPES.ORGANISATION_READ_LOCATIONS_MY_JURISDICTION, + SCOPES.USER_READ_ONLY_MY_AUDIT, 'search[event=birth,access=all]', 'search[event=death,access=all]', 'search[event=tennis-club-membership,access=all]', @@ -191,17 +90,16 @@ export const roles: Role[] = [ SCOPES.RECORD_DECLARE_BIRTH, SCOPES.RECORD_DECLARE_DEATH, SCOPES.RECORD_DECLARE_MARRIAGE, - SCOPES.RECORD_DECLARATION_EDIT, SCOPES.RECORD_SUBMIT_FOR_UPDATES, - SCOPES.RECORD_REVIEW_DUPLICATES, + SCOPES.RECORD_UNASSIGN_OTHERS, + SCOPES.RECORD_DECLARATION_EDIT, SCOPES.RECORD_DECLARATION_ARCHIVE, SCOPES.RECORD_DECLARATION_REINSTATE, + SCOPES.RECORD_REVIEW_DUPLICATES, SCOPES.RECORD_REGISTER, - SCOPES.RECORD_REGISTRATION_CORRECT, - SCOPES.RECORD_PRINT_RECORDS_SUPPORTING_DOCUMENTS, - SCOPES.RECORD_EXPORT_RECORDS, - SCOPES.RECORD_UNASSIGN_OTHERS, SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES, + SCOPES.PROFILE_ELECTRONIC_SIGNATURE, + SCOPES.RECORD_REGISTRATION_CORRECT, SCOPES.RECORD_CONFIRM_REGISTRATION, SCOPES.RECORD_REJECT_REGISTRATION, SCOPES.PERFORMANCE_READ, @@ -209,9 +107,12 @@ export const roles: Role[] = [ SCOPES.PROFILE_ELECTRONIC_SIGNATURE, SCOPES.USER_READ_ONLY_MY_AUDIT, SCOPES.ORGANISATION_READ_LOCATIONS_MY_OFFICE, + SCOPES.PERFORMANCE_EXPORT_VITAL_STATISTICS, SCOPES.SEARCH_BIRTH, SCOPES.SEARCH_DEATH, SCOPES.SEARCH_MARRIAGE, + SCOPES.ORGANISATION_READ_LOCATIONS_MY_JURISDICTION, + SCOPES.USER_READ_MY_OFFICE, 'search[event=birth,access=all]', 'search[event=death,access=all]', 'search[event=tennis-club-membership,access=all]', @@ -231,36 +132,34 @@ export const roles: Role[] = [ { id: 'LOCAL_SYSTEM_ADMIN', label: { - defaultMessage: 'Local System Admin', - description: 'Name for user role Local System Admin', - id: 'userRole.localSystemAdmin' + defaultMessage: 'Administrator', + description: 'Name for user role Administrator', + id: 'userRole.administrator' }, scopes: [ - SCOPES.USER_READ_MY_OFFICE, + SCOPES.ORGANISATION_READ_LOCATIONS_MY_JURISDICTION, SCOPES.USER_CREATE_MY_JURISDICTION, + 'user.create[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]', SCOPES.USER_UPDATE_MY_JURISDICTION, - 'user.create[role=FIELD_AGENT|POLICE_OFFICER|HOSPITAL_CLERK|HEALTHCARE_WORKER|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]', - 'user.edit[role=FIELD_AGENT|POLICE_OFFICER|HOSPITAL_CLERK|HEALTHCARE_WORKER|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]', - SCOPES.ORGANISATION_READ_LOCATIONS_MY_JURISDICTION, - SCOPES.PERFORMANCE_READ, - SCOPES.PERFORMANCE_READ_DASHBOARDS, - SCOPES.PERFORMANCE_EXPORT_VITAL_STATISTICS + 'user.edit[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR]', + SCOPES.USER_READ_MY_JURISDICTION ] }, { id: 'NATIONAL_SYSTEM_ADMIN', label: { - defaultMessage: 'National System Admin', - description: 'Name for user role National System Admin', - id: 'userRole.nationalSystemAdmin' + defaultMessage: 'National Administrator', + description: 'Name for user role National Administrator', + id: 'userRole.nationalAdministrator' }, scopes: [ + SCOPES.CONFIG_UPDATE_ALL, + SCOPES.ORGANISATION_READ_LOCATIONS, SCOPES.USER_CREATE, - 'user.create[role=FIELD_AGENT|POLICE_OFFICER|HOSPITAL_CLERK|HEALTHCARE_WORKER|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]', - 'user.edit[role=FIELD_AGENT|POLICE_OFFICER|HOSPITAL_CLERK|HEALTHCARE_WORKER|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]', - SCOPES.USER_READ, + 'user.create[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]', SCOPES.USER_UPDATE, - SCOPES.ORGANISATION_READ_LOCATIONS, + 'user.edit[role=FIELD_AGENT|HOSPITAL_CLERK|COMMUNITY_LEADER|REGISTRATION_AGENT|LOCAL_REGISTRAR|NATIONAL_REGISTRAR|LOCAL_SYSTEM_ADMIN|NATIONAL_SYSTEM_ADMIN|PERFORMANCE_MANAGER]', + SCOPES.USER_READ, SCOPES.PERFORMANCE_READ, SCOPES.PERFORMANCE_READ_DASHBOARDS, SCOPES.PERFORMANCE_EXPORT_VITAL_STATISTICS, @@ -271,22 +170,23 @@ export const roles: Role[] = [ { id: 'PERFORMANCE_MANAGER', label: { - defaultMessage: 'Performance Manager', - description: 'Name for user role Performance Manager', - id: 'userRole.performanceManager' + defaultMessage: 'Operations Manager', + description: 'Name for user role Operations Manager', + id: 'userRole.operationsManager' }, scopes: [ SCOPES.PERFORMANCE_READ, SCOPES.PERFORMANCE_READ_DASHBOARDS, - SCOPES.PERFORMANCE_EXPORT_VITAL_STATISTICS + SCOPES.PERFORMANCE_EXPORT_VITAL_STATISTICS, + SCOPES.ORGANISATION_READ_LOCATIONS ] }, { id: 'NATIONAL_REGISTRAR', label: { - defaultMessage: 'National Registrar', - description: 'Name for user role National Registrar', - id: 'userRole.nationalRegistrar' + defaultMessage: 'Registrar General', + description: 'Name for user role Registrar General', + id: 'userRole.registrarGeneral' }, scopes: [ SCOPES.RECORD_READ, @@ -294,15 +194,15 @@ export const roles: Role[] = [ SCOPES.RECORD_DECLARE_DEATH, SCOPES.RECORD_DECLARE_MARRIAGE, SCOPES.RECORD_SUBMIT_FOR_UPDATES, - SCOPES.RECORD_REVIEW_DUPLICATES, + SCOPES.RECORD_UNASSIGN_OTHERS, + SCOPES.RECORD_DECLARATION_EDIT, SCOPES.RECORD_DECLARATION_ARCHIVE, SCOPES.RECORD_DECLARATION_REINSTATE, + SCOPES.RECORD_REVIEW_DUPLICATES, SCOPES.RECORD_REGISTER, - SCOPES.RECORD_REGISTRATION_CORRECT, - SCOPES.RECORD_PRINT_RECORDS_SUPPORTING_DOCUMENTS, - SCOPES.RECORD_EXPORT_RECORDS, - SCOPES.RECORD_UNASSIGN_OTHERS, SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES, + SCOPES.PROFILE_ELECTRONIC_SIGNATURE, + SCOPES.RECORD_REGISTRATION_CORRECT, SCOPES.RECORD_CONFIRM_REGISTRATION, SCOPES.RECORD_REJECT_REGISTRATION, SCOPES.PERFORMANCE_READ, @@ -315,6 +215,8 @@ export const roles: Role[] = [ SCOPES.SEARCH_BIRTH, SCOPES.SEARCH_DEATH, SCOPES.SEARCH_MARRIAGE, + SCOPES.ORGANISATION_READ_LOCATIONS_MY_JURISDICTION, + SCOPES.USER_READ_MY_OFFICE, 'search[event=birth,access=all]', 'search[event=death,access=all]', 'search[event=tennis-club-membership,access=all]', @@ -330,5 +232,160 @@ export const roles: Role[] = [ 'record.registered.correct[event=birth|death|tennis-club-membership]', 'record.unassign-others[event=birth|death|tennis-club-membership]' ] + }, + { + id: 'HOSPITAL_CLERK', + label: { + defaultMessage: 'Hospital Clerk', + description: 'Name for user role Hospital Clerk', + id: 'userRole.hospitalClerk' + }, + scopes: [ + SCOPES.RECORD_DECLARE_BIRTH, + SCOPES.RECORD_DECLARE_DEATH, + SCOPES.RECORD_SUBMIT_INCOMPLETE, + SCOPES.RECORD_SUBMIT_FOR_REVIEW, + SCOPES.SEARCH_BIRTH, + SCOPES.SEARCH_DEATH, + SCOPES.USER_READ_ONLY_MY_AUDIT, + 'search[event=birth,access=all]', + 'search[event=death,access=all]', + 'search[event=tennis-club-membership,access=all]', + 'workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]', + 'record.create[event=birth|death|tennis-club-membership]', + 'record.read[event=birth|death|tennis-club-membership]', + 'record.declare[event=birth|death|tennis-club-membership]', + 'record.notify[event=birth|death|tennis-club-membership]' + ] + }, + { + id: 'COMMUNITY_LEADER', + label: { + defaultMessage: 'Community Leader', + description: 'Name for user role Community Leader', + id: 'userRole.communityLeader' + }, + scopes: [ + SCOPES.RECORD_DECLARE_BIRTH, + SCOPES.RECORD_DECLARE_DEATH, + SCOPES.RECORD_DECLARE_MARRIAGE, + SCOPES.RECORD_SUBMIT_INCOMPLETE, + SCOPES.RECORD_SUBMIT_FOR_REVIEW, + SCOPES.RECORD_PRINT_ISSUE_CERTIFIED_COPIES, + SCOPES.SEARCH_BIRTH, + SCOPES.SEARCH_DEATH, + SCOPES.SEARCH_MARRIAGE, + SCOPES.USER_READ_ONLY_MY_AUDIT, + 'search[event=birth,access=all]', + 'search[event=death,access=all]', + 'search[event=tennis-club-membership,access=all]', + 'workqueue[id=assigned-to-you|recent|sent-for-review|ready-to-print]', + 'record.create[event=birth|death|tennis-club-membership]', + 'record.read[event=birth|death|tennis-club-membership]', + 'record.declare[event=birth|death|tennis-club-membership]', + 'record.notify[event=birth|death|tennis-club-membership]', + 'record.registered.print-certified-copies[event=birth|death|tennis-club-membership]' + ] + }, + // Legacy roles from v1.8 for backwards compatibility + { + id: 'POLICE_OFFICER', + label: { + defaultMessage: 'Police Officer', + description: 'Name for user role Police Officer', + id: 'userRole.policeOfficer' + }, + scopes: [ + SCOPES.RECORD_DECLARE_BIRTH, + SCOPES.RECORD_DECLARE_DEATH, + SCOPES.RECORD_DECLARE_MARRIAGE, + SCOPES.RECORD_SUBMIT_INCOMPLETE, + SCOPES.RECORD_SUBMIT_FOR_REVIEW, + SCOPES.SEARCH_BIRTH, + SCOPES.SEARCH_DEATH, + SCOPES.SEARCH_MARRIAGE, + 'search[event=birth,access=all]', + 'search[event=death,access=all]', + 'search[event=tennis-club-membership,access=all]', + 'workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]', + `record.create[event=birth|death|tennis-club-membership]`, + 'record.declare[event=birth|death|tennis-club-membership]', + 'record.notify[event=birth|death|tennis-club-membership]' + ] + }, + { + id: 'SOCIAL_WORKER', + label: { + defaultMessage: 'Social Worker', + description: 'Name for user role Social Worker', + id: 'userRole.socialWorker' + }, + scopes: [ + SCOPES.RECORD_DECLARE_BIRTH, + SCOPES.RECORD_DECLARE_DEATH, + SCOPES.RECORD_DECLARE_MARRIAGE, + SCOPES.RECORD_SUBMIT_INCOMPLETE, + SCOPES.RECORD_SUBMIT_FOR_REVIEW, + SCOPES.SEARCH_BIRTH, + SCOPES.SEARCH_DEATH, + SCOPES.SEARCH_MARRIAGE, + 'search[event=birth,access=all]', + 'search[event=death,access=all]', + 'search[event=tennis-club-membership,access=all]', + 'workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]', + `record.create[event=birth|death|tennis-club-membership]`, + 'record.declare[event=birth|death|tennis-club-membership]', + 'record.notify[event=birth|death|tennis-club-membership]' + ] + }, + { + id: 'HEALTHCARE_WORKER', + label: { + defaultMessage: 'Healthcare Worker', + description: 'Name for user role Healthcare Worker', + id: 'userRole.healthcareWorker' + }, + scopes: [ + SCOPES.RECORD_DECLARE_BIRTH, + SCOPES.RECORD_DECLARE_DEATH, + SCOPES.RECORD_DECLARE_MARRIAGE, + SCOPES.RECORD_SUBMIT_INCOMPLETE, + SCOPES.RECORD_SUBMIT_FOR_REVIEW, + SCOPES.SEARCH_BIRTH, + SCOPES.SEARCH_DEATH, + SCOPES.SEARCH_MARRIAGE, + 'search[event=birth,access=all]', + 'search[event=death,access=all]', + 'search[event=tennis-club-membership,access=all]', + 'workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]', + `record.create[event=birth|death|tennis-club-membership]`, + 'record.declare[event=birth|death|tennis-club-membership]', + 'record.notify[event=birth|death|tennis-club-membership]' + ] + }, + { + id: 'LOCAL_LEADER', + label: { + defaultMessage: 'Local Leader', + description: 'Name for user role Local Leader', + id: 'userRole.LocalLeader' + }, + scopes: [ + SCOPES.RECORD_DECLARE_BIRTH, + SCOPES.RECORD_DECLARE_DEATH, + SCOPES.RECORD_DECLARE_MARRIAGE, + SCOPES.RECORD_SUBMIT_INCOMPLETE, + SCOPES.RECORD_SUBMIT_FOR_REVIEW, + SCOPES.SEARCH_BIRTH, + SCOPES.SEARCH_DEATH, + SCOPES.SEARCH_MARRIAGE, + 'search[event=birth,access=all]', + 'search[event=death,access=all]', + 'search[event=tennis-club-membership,access=all]', + 'workqueue[id=assigned-to-you|recent|requires-updates-self|sent-for-review]', + `record.create[event=birth|death|tennis-club-membership]`, + 'record.declare[event=birth|death|tennis-club-membership]', + 'record.notify[event=birth|death|tennis-club-membership]' + ] } ] diff --git a/src/environment.ts b/src/environment.ts index a4224430d5..b28575332e 100644 --- a/src/environment.ts +++ b/src/environment.ts @@ -32,7 +32,16 @@ export const env = cleanEnv(process.env, { }), QA_ENV: bool({ default: false }), V2_EVENTS: bool({ default: false }), + ESIGNET_REDIRECT_URL: url({ devDefault: 'http://localhost:20260/authorize' }), + OPENID_PROVIDER_CLIENT_ID: str({ devDefault: 'mock-client_id' }), + OPENID_PROVIDER_CLAIMS: str({ + devDefault: 'name,family_name,given_name,middle_name,birthdate,address' + }), + MOSIP_API_USERINFO_URL: url({ + devDefault: 'http://localhost:2024/esignet/get-oidp-user-info' + }), ANALYTICS_DATABASE_URL: url({ + default: undefined, devDefault: 'postgres://events_analytics:analytics_password@localhost:5432/events', desc: 'The database URL for reads and writes to `analytics.events`. See `/infrastructure/postgres/setup-analytics.sh` for how the default database is set up for your country.' diff --git a/src/form/README.md b/src/form/README.md index d6185b718a..db8e6da533 100644 --- a/src/form/README.md +++ b/src/form/README.md @@ -236,19 +236,19 @@ This object holds sections for birth declaration forms. All sections are contain **Urban options** - - #### `number` + - #### `numberUrbanOption` Number of property in an urban street. Array index: 1 - - #### `addressLine2` + - #### `addressLine2UrbanOption` Used for street name. Array index: 2 - - #### `addressLine3` + - #### `addressLine3UrbanOption` Used for residential area name. Array index: 3 - - #### `postCode` + - #### `postCodeUrbanOption` Postcode for urban address. diff --git a/src/form/addresses/address-fields.ts b/src/form/addresses/address-fields.ts index 17ab505ae9..6f1f6c6b26 100644 --- a/src/form/addresses/address-fields.ts +++ b/src/form/addresses/address-fields.ts @@ -5,6 +5,7 @@ import { AddressSubsections, Conditional, EventLocationAddressCases, + FLEX_DIRECTION, SerializedFormField } from '../types/types' import { @@ -15,7 +16,10 @@ import { isUseCaseForPlaceOfEvent, sentenceCase } from '../../utils/address-utils' -import { yesNoRadioOptions } from '../common/select-options' +import { + urbanRuralRadioOptions, + yesNoRadioOptions +} from '../common/select-options' import { ADMIN_LEVELS } from '.' import { getPlaceOfBirthFields } from '../birth/required-fields' import { getPlaceOfDeathFields } from '../death/required-fields' @@ -334,13 +338,42 @@ export function getAddressFields( }, // Required // Select fields are added for each administrative location level from Humdata ...getAdminLevelSelects(section, useCase, addressHierarchy), // Required + { + name: `ruralOrUrban${sentenceCase(useCase)}${sentenceCase(section)}`, + type: 'RADIO_GROUP', + label: { + defaultMessage: ' ', + description: 'Empty label for form field', + id: 'form.field.label.emptyLabel' + }, + options: urbanRuralRadioOptions, + initialValue: 'URBAN', + flexDirection: FLEX_DIRECTION.ROW, + required: false, + hideValueInPreview: true, + previewGroup: isUseCaseForPlaceOfEvent(useCase) + ? useCase + : `${useCase}Address`, + validator: [], + conditionals: isUseCaseForPlaceOfEvent(useCase) + ? getPlaceOfEventConditionals(section, 'ruralOrUrban', useCase) + : getAddressConditionals(section, 'ruralOrUrban', useCase), + mapping: getMapping({ + section, + type: 'RADIO_GROUP', + location: '', + useCase, + fieldName: `country${sentenceCase(useCase)}${sentenceCase(section)}`, + fhirLineArrayPosition: 5 // The selected index in the FHIR Address line array to store this value + }) + }, { name: `city${sentenceCase(useCase)}${sentenceCase(section)}`, type: 'TEXT', label: { defaultMessage: 'Town', description: 'Title for the address line 4', - id: 'form.field.label.city' + id: 'form.field.label.cityUrbanOption' }, previewGroup: isUseCaseForPlaceOfEvent(useCase) ? useCase @@ -350,12 +383,8 @@ export function getAddressFields( validator: [], dependency: `district${sentenceCase(useCase)}${sentenceCase(section)}`, conditionals: isUseCaseForPlaceOfEvent(useCase) - ? getPlaceOfEventConditionals( - section, - 'configurableAddressLines', - useCase - ) - : getAddressConditionals(section, 'configurableAddressLines', useCase), + ? getPlaceOfEventConditionals(section, 'urban', useCase) + : getAddressConditionals(section, 'urban', useCase), mapping: getMapping({ section, type: 'TEXT', @@ -365,12 +394,14 @@ export function getAddressFields( }) }, { - name: `addressLine1${sentenceCase(useCase)}${sentenceCase(section)}`, + name: `addressLine1UrbanOption${sentenceCase(useCase)}${sentenceCase( + section + )}`, type: 'TEXT', label: { defaultMessage: 'Residential Area', description: 'Title for the address line 1', - id: 'form.field.label.addressLine1' + id: 'form.field.label.addressLine1UrbanOption' }, previewGroup: isUseCaseForPlaceOfEvent(useCase) ? useCase @@ -380,30 +411,28 @@ export function getAddressFields( validator: [], dependency: `district${sentenceCase(useCase)}${sentenceCase(section)}`, conditionals: isUseCaseForPlaceOfEvent(useCase) - ? getPlaceOfEventConditionals( - section, - 'configurableAddressLines', - useCase - ) - : getAddressConditionals(section, 'configurableAddressLines', useCase), + ? getPlaceOfEventConditionals(section, 'urban', useCase) + : getAddressConditionals(section, 'urban', useCase), mapping: getMapping({ section, type: 'TEXT', location: '', useCase, - fieldName: `addressLine1${sentenceCase(useCase)}${sentenceCase( - section - )}`, + fieldName: `addressLine1UrbanOption${sentenceCase( + useCase + )}${sentenceCase(section)}`, fhirLineArrayPosition: 2 }) }, { - name: `addressLine2${sentenceCase(useCase)}${sentenceCase(section)}`, + name: `addressLine2UrbanOption${sentenceCase(useCase)}${sentenceCase( + section + )}`, type: 'TEXT', label: { defaultMessage: 'Street', description: 'Title for the address line 2', - id: 'form.field.label.addressLine2' + id: 'form.field.label.addressLine2UrbanOption' }, previewGroup: isUseCaseForPlaceOfEvent(useCase) ? useCase @@ -413,25 +442,23 @@ export function getAddressFields( validator: [], dependency: `district${sentenceCase(useCase)}${sentenceCase(section)}`, conditionals: isUseCaseForPlaceOfEvent(useCase) - ? getPlaceOfEventConditionals( - section, - 'configurableAddressLines', - useCase - ) - : getAddressConditionals(section, 'configurableAddressLines', useCase), + ? getPlaceOfEventConditionals(section, 'urban', useCase) + : getAddressConditionals(section, 'urban', useCase), mapping: getMapping({ section, type: 'TEXT', location: '', useCase, - fieldName: `addressLine2${sentenceCase(useCase)}${sentenceCase( - section - )}`, + fieldName: `addressLine2UrbanOption${sentenceCase( + useCase + )}${sentenceCase(section)}`, fhirLineArrayPosition: 1 }) }, { - name: `addressLine3${sentenceCase(useCase)}${sentenceCase(section)}`, + name: `addressLine3UrbanOption${sentenceCase(useCase)}${sentenceCase( + section + )}`, type: 'TEXT', label: { defaultMessage: 'Number', @@ -446,20 +473,16 @@ export function getAddressFields( validator: [], dependency: `district${sentenceCase(useCase)}${sentenceCase(section)}`, conditionals: isUseCaseForPlaceOfEvent(useCase) - ? getPlaceOfEventConditionals( - section, - 'configurableAddressLines', - useCase - ) - : getAddressConditionals(section, 'configurableAddressLines', useCase), + ? getPlaceOfEventConditionals(section, 'urban', useCase) + : getAddressConditionals(section, 'urban', useCase), mapping: getMapping({ section, type: 'TEXT', location: '', useCase, - fieldName: `addressLine3${sentenceCase(useCase)}${sentenceCase( - section - )}`, + fieldName: `addressLine3UrbanOption${sentenceCase( + useCase + )}${sentenceCase(section)}`, fhirLineArrayPosition: 0 }) }, @@ -479,12 +502,8 @@ export function getAddressFields( validator: [], dependency: `district${sentenceCase(useCase)}${sentenceCase(section)}`, conditionals: isUseCaseForPlaceOfEvent(useCase) - ? getPlaceOfEventConditionals( - section, - 'configurableAddressLines', - useCase - ) - : getAddressConditionals(section, 'configurableAddressLines', useCase), + ? getPlaceOfEventConditionals(section, 'urban', useCase) + : getAddressConditionals(section, 'urban', useCase), mapping: getMapping({ section, type: 'TEXT', @@ -493,6 +512,37 @@ export function getAddressFields( fieldName: `postalCode${sentenceCase(useCase)}${sentenceCase(section)}` }) }, + { + name: `addressLine1RuralOption${sentenceCase(useCase)}${sentenceCase( + section + )}`, + type: 'TEXT', + label: { + defaultMessage: 'Village', + description: 'Title for the address line 1', + id: 'form.field.label.addressLine1RuralOption' + }, + previewGroup: isUseCaseForPlaceOfEvent(useCase) + ? useCase + : `${useCase}Address`, + required: false, + initialValue: '', + validator: [], + dependency: `district${sentenceCase(useCase)}${sentenceCase(section)}`, + conditionals: isUseCaseForPlaceOfEvent(useCase) + ? getPlaceOfEventConditionals(section, 'rural', useCase) + : getAddressConditionals(section, 'rural', useCase), + mapping: getMapping({ + section, + type: 'TEXT', + location: '', + useCase, + fieldName: `addressLine1RuralOption${sentenceCase( + useCase + )}${sentenceCase(section)}`, + fhirLineArrayPosition: 4 + }) + }, // INTERNATIONAL ADDRESSES ARE SUPPLIED BECAUSE INFORMANTS & CITIZENS MAY LIVE ABROAD & REGISTER AN EVENT AT ONE OF YOUR FOREIGN EMBASSIES // SOMETIMES THIS IS ALSO REQUIRED FOR DIPLOMATIC REASONS OR FOR MILITARY FORCES { diff --git a/src/form/addresses/index.ts b/src/form/addresses/index.ts index 920f093907..3322f70ead 100644 --- a/src/form/addresses/index.ts +++ b/src/form/addresses/index.ts @@ -17,7 +17,9 @@ import { informantNotMotherOrFather, isInformantSpouse, mothersDetailsDontExistOnOtherPage, - primaryAddressSameAsOtherPrimaryAddress /*, + primaryAddressSameAsOtherPrimaryAddress, + hideIfDeceasedAddressNotAvailable, + hideIfMotherAddressNotAvailable /*, SPOUSE_DETAILS_DONT_EXIST*/ } from '../common/default-validation-conditionals' import { formMessageDescriptors } from '../common/messages' @@ -122,9 +124,11 @@ export const defaultAddressConfiguration: IAddressConfiguration[] = [ config: AddressSubsections.PRIMARY_ADDRESS_SUBSECTION, label: formMessageDescriptors.primaryAddress, conditionalCase: [ - expressionToConditional(detailsDontExist), expressionToConditional( - `${detailsDontExist} || ${primaryAddressSameAsOtherPrimaryAddress}`, + `${detailsDontExist} || ${hideIfMotherAddressNotAvailable[0].expression}` + ), + expressionToConditional( + `${detailsDontExist} || ${hideIfMotherAddressNotAvailable[0].expression} || ${primaryAddressSameAsOtherPrimaryAddress}`, 'hideInPreview' ) ] @@ -136,10 +140,10 @@ export const defaultAddressConfiguration: IAddressConfiguration[] = [ yComparisonSection: 'mother', conditionalCase: [ expressionToConditional( - `(${detailsDontExist} || ${mothersDetailsDontExistOnOtherPage})` + `(${detailsDontExist} || ${mothersDetailsDontExistOnOtherPage}) || ${hideIfMotherAddressNotAvailable[0].expression}` ), expressionToConditional( - `(${detailsDontExist} || ${mothersDetailsDontExistOnOtherPage} || !${primaryAddressSameAsOtherPrimaryAddress})`, + `(${detailsDontExist} || ${mothersDetailsDontExistOnOtherPage}) || ${hideIfMotherAddressNotAvailable[0].expression} || !${primaryAddressSameAsOtherPrimaryAddress}`, 'hideInPreview' ) ] @@ -191,9 +195,11 @@ export const defaultAddressConfiguration: IAddressConfiguration[] = [ config: AddressCopyConfigCases.PRIMARY_ADDRESS_SAME_AS_OTHER_PRIMARY, label: formMessageDescriptors.primaryAddressSameAsDeceasedsPrimary, conditionalCase: [ - expressionToConditional(isInformantSpouse), expressionToConditional( - `${isInformantSpouse} || !${primaryAddressSameAsOtherPrimaryAddress}`, + `${isInformantSpouse} || ${hideIfDeceasedAddressNotAvailable[0].expression}` + ), + expressionToConditional( + `${isInformantSpouse} || ${hideIfDeceasedAddressNotAvailable[0].expression} || !${primaryAddressSameAsOtherPrimaryAddress}`, 'hideInPreview' ) ], @@ -272,9 +278,11 @@ export const defaultAddressConfiguration: IAddressConfiguration[] = [ config: AddressSubsections.PRIMARY_ADDRESS_SUBSECTION, label: formMessageDescriptors.primaryAddress, conditionalCase: [ - expressionToConditional(detailsDontExist), expressionToConditional( - `${detailsDontExist} || ${primaryAddressSameAsOtherPrimaryAddress}`, + `${detailsDontExist} || ${hideIfDeceasedAddressNotAvailable[0].expression}` + ), + expressionToConditional( + `${detailsDontExist} || ${hideIfDeceasedAddressNotAvailable[0].expression} || ${primaryAddressSameAsOtherPrimaryAddress}`, 'hideInPreview' ) ] @@ -285,9 +293,11 @@ export const defaultAddressConfiguration: IAddressConfiguration[] = [ xComparisonSection: 'spouse', yComparisonSection: 'deceased', conditionalCase: [ - expressionToConditional(detailsDontExist), expressionToConditional( - `${detailsDontExist} || !${primaryAddressSameAsOtherPrimaryAddress}`, + `${detailsDontExist} || ${hideIfDeceasedAddressNotAvailable[0].expression}` + ), + expressionToConditional( + `${detailsDontExist} || ${hideIfDeceasedAddressNotAvailable[0].expression} || !${primaryAddressSameAsOtherPrimaryAddress}`, 'hideInPreview' ) ] diff --git a/src/form/birth/certificate-handlebars.ts b/src/form/birth/certificate-handlebars.ts index c2893ce031..fca10ffafa 100644 --- a/src/form/birth/certificate-handlebars.ts +++ b/src/form/birth/certificate-handlebars.ts @@ -17,11 +17,11 @@ export const certificateHandlebars = { certificateDate: 'certificateDate', registrar: 'registrar', registrationAgent: 'registrationAgent', - registrarName: 'registrarName', // @deprecated use registrar.name instead - role: 'role', // @deprecated use registrar.role instead - registrarSignature: 'registrarSignature', // @deprecated use registrar.signature instead + registrarName: 'registrarName', + role: 'role', + registrarSignature: 'registrarSignature', registrationDate: 'registrationDate', - registrationLocation: 'registrationLocation', // @deprecated use registrar.office/state/district instead + registrationLocation: 'registrationLocation', contactEmail: 'contactEmail', contactPhoneNumber: 'contactPhoneNumber', birthConfigurableIdentifier1: 'birthConfigurableIdentifier1', @@ -35,10 +35,11 @@ export const certificateHandlebars = { districtPlaceofbirth: 'districtPlaceofbirth', // @deprecated use districtPlaceofbirthId instead: Refer to https://github.com/opencrvs/opencrvs-farajaland/pull/815 districtPlaceofbirthId: 'districtPlaceofbirthId', // Use with location helper like this: {{location districtPlaceofbirthId 'name'}} cityPlaceofbirth: 'cityPlaceofbirth', - addressLine3Placeofbirth: 'addressLine3Placeofbirth', - addressLine2Placeofbirth: 'addressLine2Placeofbirth', - addressLine1Placeofbirth: 'addressLine1Placeofbirth', + addressLine3UrbanOptionPlaceofbirth: 'addressLine3UrbanOptionPlaceofbirth', + addressLine2UrbanOptionPlaceofbirth: 'addressLine2UrbanOptionPlaceofbirth', + addressLine1UrbanOptionPlaceofbirth: 'addressLine1UrbanOptionPlaceofbirth', postalCodePlaceofbirth: 'postalCodePlaceofbirth', + addressLine1RuralOptionPlaceofbirth: 'addressLine1RuralOptionPlaceofbirth', internationalStatePlaceofbirth: 'internationalStatePlaceofbirth', internationalDistrictPlaceofbirth: 'internationalDistrictPlaceofbirth', internationalCityPlaceofbirth: 'internationalCityPlaceofbirth', @@ -99,10 +100,15 @@ export const certificateHandlebars = { districtPrimaryInformant: 'districtPrimaryInformant', // @deprecated use districtPrimaryInformantId instead: Refer to https://github.com/opencrvs/opencrvs-farajaland/pull/815 districtPrimaryInformantId: 'districtPrimaryInformantId', // Use with location helper like this: {{location districtPrimaryInformantId 'name'}} cityPrimaryInformant: 'cityPrimaryInformant', - addressLine3PrimaryInformant: 'addressLine3PrimaryInformant', - addressLine2PrimaryInformant: 'addressLine2PrimaryInformant', - addressLine1PrimaryInformant: 'addressLine1PrimaryInformant', + addressLine3UrbanOptionPrimaryInformant: + 'addressLine3UrbanOptionPrimaryInformant', + addressLine2UrbanOptionPrimaryInformant: + 'addressLine2UrbanOptionPrimaryInformant', + addressLine1UrbanOptionPrimaryInformant: + 'addressLine1UrbanOptionPrimaryInformant', postalCodePrimaryInformant: 'postalCodePrimaryInformant', + addressLine1RuralOptionPrimaryInformant: + 'addressLine1RuralOptionPrimaryInformant', internationalStatePrimaryInformant: 'internationalStatePrimaryInformant', internationalDistrictPrimaryInformant: 'internationalDistrictPrimaryInformant', @@ -121,10 +127,11 @@ export const certificateHandlebars = { districtPrimaryMother: 'districtPrimaryMother', // @deprecated use districtPrimaryMotherId instead: Refer to https://github.com/opencrvs/opencrvs-farajaland/pull/815 districtPrimaryMotherId: 'districtPrimaryMotherId', // Use with location helper like this: {{location districtPrimaryMotherId 'name'}} cityPrimaryMother: 'cityPrimaryMother', - addressLine3PrimaryMother: 'addressLine3PrimaryMother', - addressLine2PrimaryMother: 'addressLine2PrimaryMother', - addressLine1PrimaryMother: 'addressLine1PrimaryMother', + addressLine3UrbanOptionPrimaryMother: 'addressLine3UrbanOptionPrimaryMother', + addressLine2UrbanOptionPrimaryMother: 'addressLine2UrbanOptionPrimaryMother', + addressLine1UrbanOptionPrimaryMother: 'addressLine1UrbanOptionPrimaryMother', postalCodePrimaryMother: 'postalCodePrimaryMother', + addressLine1RuralOptionPrimaryMother: 'addressLine1RuralOptionPrimaryMother', internationalStatePrimaryMother: 'internationalStatePrimaryMother', internationalDistrictPrimaryMother: 'internationalDistrictPrimaryMother', internationalCityPrimaryMother: 'internationalCityPrimaryMother', @@ -142,10 +149,11 @@ export const certificateHandlebars = { districtPrimaryFather: 'districtPrimaryFather', // @deprecated use districtPrimaryFatherId instead: Refer to https://github.com/opencrvs/opencrvs-farajaland/pull/815 districtPrimaryFatherId: 'districtPrimaryFatherId', // Use with location helper like this: {{location districtPrimaryFatherId 'name'}} cityPrimaryFather: 'cityPrimaryFather', - addressLine3PrimaryFather: 'addressLine3PrimaryFather', - addressLine2PrimaryFather: 'addressLine2PrimaryFather', - addressLine1PrimaryFather: 'addressLine1PrimaryFather', + addressLine3UrbanOptionPrimaryFather: 'addressLine3UrbanOptionPrimaryFather', + addressLine2UrbanOptionPrimaryFather: 'addressLine2UrbanOptionPrimaryFather', + addressLine1UrbanOptionPrimaryFather: 'addressLine1UrbanOptionPrimaryFather', postalCodePrimaryFather: 'postalCodePrimaryFather', + addressLine1RuralOptionPrimaryFather: 'addressLine1RuralOptionPrimaryFather', internationalStatePrimaryFather: 'internationalStatePrimaryFather', internationalDistrictPrimaryFather: 'internationalDistrictPrimaryFather', internationalCityPrimaryFather: 'internationalCityPrimaryFather', diff --git a/src/form/birth/index.ts b/src/form/birth/index.ts index 6aa9e2e580..9bdbc627a2 100644 --- a/src/form/birth/index.ts +++ b/src/form/birth/index.ts @@ -61,7 +61,11 @@ import { informantNotMotherOrFather, detailsExistConditional, ageOfIndividualValidators, - ageOfParentsConditionals + ageOfParentsConditionals, + hideIfMotherAddressNotAvailable, + exactDateOfBirthUnknownConditionals, + disableIfVerifiedOrAuthenticated, + typeOfIDVerificationConditionals } from '../common/default-validation-conditionals' import { informantFirstNameConditionals, @@ -77,9 +81,14 @@ import { } from './required-sections' import { certificateHandlebars } from './certificate-handlebars' import { getSectionMapping } from '@countryconfig/utils/mapping/section/birth/mapping-utils' -import { getCommonSectionMapping } from '@countryconfig/utils/mapping/field-mapping-utils' +import { + getCommonSectionMapping, + getCustomFieldMapping +} from '@countryconfig/utils/mapping/field-mapping-utils' import { getReasonForLateRegistration } from '../custom-fields' import { getIDNumberFields, getIDType } from '../custom-fields' +import { getInitialValueFromIDReader, idReaderFields } from '@opencrvs/mosip' +import { esignetConfig, qrCodeConfig } from '../common/id-reader-configurations' // import { createCustomFieldExample } from '../custom-fields' // ======================= FORM CONFIGURATION ======================= @@ -225,25 +234,39 @@ export const birthForm: ISerializedForm = { fields: [ informantType, // Required field. otherInformantType(Event.Birth), // Required field. - getFirstNameField( - 'informantNameInEnglish', + ...idReaderFields( + 'birth', + 'informant', + qrCodeConfig, + esignetConfig, + getCustomFieldMapping( + `birth.informant.informant-view-group.verified` + ), informantFirstNameConditionals.concat( hideIfInformantMotherOrFather - ), - certificateHandlebars.informantFirstName - ), // Required field. + ) + ), + getFirstNameField( + 'informantNameInEnglish', + informantFirstNameConditionals + .concat(hideIfInformantMotherOrFather) + .concat(disableIfVerifiedOrAuthenticated), + certificateHandlebars.informantFirstName, + getInitialValueFromIDReader('firstName') + ), // Required field. In Farajaland, we have built the option to integrate with MOSIP. So we have different conditionals for each name to check MOSIP responses. You could always refactor firstNamesEng for a basic setup getFamilyNameField( 'informantNameInEnglish', - informantFamilyNameConditionals.concat( - hideIfInformantMotherOrFather - ), - certificateHandlebars.informantFamilyName + informantFamilyNameConditionals + .concat(hideIfInformantMotherOrFather) + .concat(disableIfVerifiedOrAuthenticated), + certificateHandlebars.informantFamilyName, + getInitialValueFromIDReader('familyName') ), // Required field. getBirthDate( 'informantBirthDate', - informantBirthDateConditionals.concat( - hideIfInformantMotherOrFather - ), + informantBirthDateConditionals + .concat(hideIfInformantMotherOrFather) + .concat(disableIfVerifiedOrAuthenticated), [ { operation: 'dateFormatIsCorrect', @@ -258,30 +281,42 @@ export const birthForm: ISerializedForm = { parameters: [16, 100] } ], - certificateHandlebars.informantBirthDate + certificateHandlebars.informantBirthDate, + getInitialValueFromIDReader('birthDate') ), // Required field. - exactDateOfBirthUnknown(hideIfInformantMotherOrFather), + exactDateOfBirthUnknown( + hideIfInformantMotherOrFather.concat( + exactDateOfBirthUnknownConditionals + ) + ), getAgeOfIndividualInYears( formMessageDescriptors.ageOfInformant, exactDateOfBirthUnknownConditional.concat( - hideIfInformantMotherOrFather + hideIfInformantMotherOrFather, + exactDateOfBirthUnknownConditionals ), ageOfIndividualValidators, certificateHandlebars.ageOfInformantInYears ), getNationality( certificateHandlebars.informantNationality, - hideIfInformantMotherOrFather + hideIfInformantMotherOrFather.concat( + disableIfVerifiedOrAuthenticated + ) ), // Required field. getIDType( 'birth', 'informant', - hideIfInformantMotherOrFather, + hideIfInformantMotherOrFather.concat( + typeOfIDVerificationConditionals + ), true ), ...getIDNumberFields( 'informant', - hideIfInformantMotherOrFather, + hideIfInformantMotherOrFather.concat( + typeOfIDVerificationConditionals + ), true ), // ADDRESS FIELDS WILL RENDER HERE @@ -317,37 +352,68 @@ export const birthForm: ISerializedForm = { mothersDetailsExistConditionals ), getReasonNotExisting(certificateHandlebars.motherReasonNotApplying), // Strongly recommend is required if you want to register abandoned / orphaned children! + ...idReaderFields( + 'birth', + 'mother', + qrCodeConfig, + esignetConfig, + getCustomFieldMapping(`birth.mother.mother-view-group.verified`), + detailsExist + ), getFirstNameField( 'motherNameInEnglish', - motherFirstNameConditionals, - certificateHandlebars.motherFirstName + motherFirstNameConditionals.concat( + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.motherFirstName, + getInitialValueFromIDReader('firstName') ), // Required field. getFamilyNameField( 'motherNameInEnglish', - motherFamilyNameConditionals, - certificateHandlebars.motherFamilyName + motherFamilyNameConditionals.concat( + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.motherFamilyName, + getInitialValueFromIDReader('familyName') ), // Required field. getBirthDate( 'motherBirthDate', - mothersBirthDateConditionals, + mothersBirthDateConditionals.concat( + disableIfVerifiedOrAuthenticated + ), parentsBirthDateValidators, - certificateHandlebars.motherBirthDate + certificateHandlebars.motherBirthDate, + getInitialValueFromIDReader('birthDate') ), // Required field. - exactDateOfBirthUnknown(detailsExistConditional), + exactDateOfBirthUnknown( + detailsExistConditional.concat( + exactDateOfBirthUnknownConditionals + ) + ), getAgeOfIndividualInYears( formMessageDescriptors.ageOfMother, exactDateOfBirthUnknownConditional.concat( - detailsExistConditional + detailsExistConditional, + exactDateOfBirthUnknownConditionals ), ageOfParentsConditionals, certificateHandlebars.ageOfMotherInYears ), getNationality( certificateHandlebars.motherNationality, - detailsExist + detailsExist.concat(disableIfVerifiedOrAuthenticated) ), // Required field. - getIDType('birth', 'mother', detailsExist, true), - ...getIDNumberFields('mother', detailsExist, true), + getIDType( + 'birth', + 'mother', + detailsExist.concat(typeOfIDVerificationConditionals), + true + ), + ...getIDNumberFields( + 'mother', + detailsExist.concat(typeOfIDVerificationConditionals), + true + ), // ADDRESS FIELDS WILL RENDER HERE divider('mother-address-seperator', detailsExist), getMaritalStatus(certificateHandlebars.motherMaritalStatus, [ @@ -396,39 +462,73 @@ export const birthForm: ISerializedForm = { fathersDetailsExistConditionals ), getReasonNotExisting('fatherReasonNotApplying'), // Strongly recommend is required if you want to register abandoned / orphaned children! + ...idReaderFields( + 'birth', + 'father', + qrCodeConfig, + esignetConfig, + getCustomFieldMapping(`birth.father.father-view-group.verified`), + detailsExist + ), getFirstNameField( 'fatherNameInEnglish', - fatherFirstNameConditionals, - certificateHandlebars.fatherFirstName + fatherFirstNameConditionals.concat( + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.fatherFirstName, + getInitialValueFromIDReader('firstName') ), // Required field. getFamilyNameField( 'fatherNameInEnglish', - fatherFamilyNameConditionals, - certificateHandlebars.fatherFamilyName + fatherFamilyNameConditionals.concat( + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.fatherFamilyName, + getInitialValueFromIDReader('familyName') ), // Required field. getBirthDate( 'fatherBirthDate', - fathersBirthDateConditionals, + fathersBirthDateConditionals.concat( + disableIfVerifiedOrAuthenticated + ), parentsBirthDateValidators, - certificateHandlebars.fatherBirthDate + certificateHandlebars.fatherBirthDate, + getInitialValueFromIDReader('birthDate') ), // Required field. - exactDateOfBirthUnknown(detailsExistConditional), + exactDateOfBirthUnknown( + detailsExistConditional.concat( + exactDateOfBirthUnknownConditionals + ) + ), getAgeOfIndividualInYears( formMessageDescriptors.ageOfFather, exactDateOfBirthUnknownConditional.concat( - detailsExistConditional + detailsExistConditional, + exactDateOfBirthUnknownConditionals ), ageOfParentsConditionals, certificateHandlebars.ageOfFatherInYears ), getNationality( certificateHandlebars.fatherNationality, - detailsExist + detailsExist.concat(disableIfVerifiedOrAuthenticated) ), // Required field. - getIDType('birth', 'father', detailsExist, true), - ...getIDNumberFields('father', detailsExist, true), + getIDType( + 'birth', + 'father', + detailsExist.concat(typeOfIDVerificationConditionals), + true + ), + ...getIDNumberFields( + 'father', + detailsExist.concat(typeOfIDVerificationConditionals), + true + ), // ADDRESS FIELDS WILL RENDER HERE - divider('father-address-seperator', detailsExist), + divider('father-address-seperator', [ + ...detailsExist, + ...hideIfMotherAddressNotAvailable + ]), getMaritalStatus(certificateHandlebars.fatherMaritalStatus, [ { action: 'hide', diff --git a/src/form/birth/optional-fields.ts b/src/form/birth/optional-fields.ts index 38df50af2a..7f5394e911 100644 --- a/src/form/birth/optional-fields.ts +++ b/src/form/birth/optional-fields.ts @@ -79,16 +79,9 @@ export const multipleBirth: SerializedFormField = { expression: '!values.detailsExist' } ], + maxLength: 2, required: false, initialValue: '', - validator: [ - { - operation: 'greaterThanZero' - }, - { - operation: 'maxLength', - parameters: [2] - } - ], + validator: [], mapping: getFieldMapping('multipleBirth', certificateHandlebars.multipleBirth) } diff --git a/src/form/birth/required-sections.ts b/src/form/birth/required-sections.ts index a968430b88..20d1fea5f6 100644 --- a/src/form/birth/required-sections.ts +++ b/src/form/birth/required-sections.ts @@ -49,13 +49,6 @@ export const documentsSection = { { id: 'documents-view-group', fields: [ - { - name: 'paragraph', - type: 'PARAGRAPH', - label: formMessageDescriptors.documentsParagraph, - initialValue: '', - validator: [] - }, { name: 'uploadDocForChildDOB', type: 'DOCUMENT_UPLOADER_WITH_OPTION', @@ -201,7 +194,7 @@ export const documentsSection = { { action: 'hide', expression: - "(draftData && draftData.registration && draftData.registration.informantType && selectedInformantAndContactType.selectedInformantType && (selectedInformantAndContactType.selectedInformantType === 'MOTHER' || selectedInformantAndContactType.selectedInformantType === 'FATHER'))" + "draftData?.informant?.informantType === 'MOTHER' || draftData?.informant?.informantType === 'FATHER'" } ], mapping: getFieldMapping('documents') diff --git a/src/form/common/common-optional-fields.ts b/src/form/common/common-optional-fields.ts index 3d78ff4e28..5854456fff 100644 --- a/src/form/common/common-optional-fields.ts +++ b/src/form/common/common-optional-fields.ts @@ -208,6 +208,7 @@ export const informantsSignature = { id: 'review.inputs.informantsSignature' }, validator: [], + required: true, type: 'SIGNATURE', allowedFileFormats: ['image/png', 'image/svg'], mapping: { diff --git a/src/form/common/common-required-fields.ts b/src/form/common/common-required-fields.ts index 261f8b26c6..3f725478c8 100644 --- a/src/form/common/common-required-fields.ts +++ b/src/form/common/common-required-fields.ts @@ -20,35 +20,42 @@ export const getBirthDate = ( fieldName: string, conditionals: Conditional[], validator: any[], - certificateHandlebar: string + certificateHandlebar: string, + initialValue: string | { dependsOn: string[]; expression: string } = '' ): SerializedFormField => ({ name: fieldName, // A field with this name MUST exist type: 'DATE', label: formMessageDescriptors.dateOfBirth, required: true, conditionals, - initialValue: '', + initialValue, validator, mapping: getFieldMapping('birthDate', certificateHandlebar) }) -export const getGender = (certificateHandlebar: string) => +export const getGender = ( + certificateHandlebar: string, + initialValue: string | { dependsOn: string[]; expression: string } = '', + conditionals: Conditional[] = [] +) => ({ name: 'gender', // A field with this name MUST exist type: 'SELECT_WITH_OPTIONS', label: formMessageDescriptors.sex, required: true, - initialValue: '', + initialValue, validator: [], placeholder: formMessageDescriptors.formSelectPlaceholder, mapping: getFieldMapping('gender', certificateHandlebar), - options: genderOptions + options: genderOptions, + conditionals }) satisfies SerializedFormField export const getFamilyNameField = ( previewGroup: string, conditionals: Conditional[], - certificateHandlebar: string + certificateHandlebar: string, + initialValue: string | { dependsOn: string[]; expression: string } = '' ) => ({ name: 'familyNameEng', // A field with this name MUST exist @@ -58,7 +65,7 @@ export const getFamilyNameField = ( label: formMessageDescriptors.familyName, maxLength: 32, required: true, - initialValue: '', + initialValue, validator: [ { operation: 'englishOnlyNameFormat' @@ -92,7 +99,8 @@ export const getMiddleNameField = ( export const getFirstNameField = ( previewGroup: string, conditionals: Conditional[], - certificateHandlebar: string + certificateHandlebar: string, + initialValue: string | { dependsOn: string[]; expression: string } = '' ) => ({ name: 'firstNamesEng', // A field with this name MUST exist @@ -106,7 +114,7 @@ export const getFirstNameField = ( conditionals, maxLength: 32, required: true, - initialValue: '', + initialValue, validator: [ { operation: 'englishOnlyNameFormat' diff --git a/src/form/common/default-validation-conditionals.ts b/src/form/common/default-validation-conditionals.ts index d67d068813..342e380b9d 100644 --- a/src/form/common/default-validation-conditionals.ts +++ b/src/form/common/default-validation-conditionals.ts @@ -66,7 +66,8 @@ export const mothersBirthDateConditionals = [ }, { action: 'hide', - expression: 'values.exactDateOfBirthUnknown' + expression: + 'values.exactDateOfBirthUnknown && !$form?.idReader?.birthDate && $form?.verified !== "verified" && $form?.verified !== "authenticated"' }, { action: 'disable', @@ -110,6 +111,20 @@ export const hideIfInformantMotherOrFather = [ export const isInformantSpouse = '!values.informantType || values.informantType==="SPOUSE"' +export const hideIfDeceasedAddressNotAvailable = [ + { + action: 'hide', + expression: '!(draftData && draftData.deceased?.countryPrimaryDeceased)' + } +] + +export const hideIfMotherAddressNotAvailable = [ + { + action: 'hide', + expression: '!(draftData && draftData.mother?.countryPrimaryMother)' + } +] + export const hideIfInformantSpouse = [ { action: 'hide', @@ -157,7 +172,8 @@ export const fathersBirthDateConditionals = [ }, { action: 'hide', - expression: 'values.exactDateOfBirthUnknown' + expression: + 'values.exactDateOfBirthUnknown && !$form?.idReader?.birthDate && $form?.verified !== "verified" && $form?.verified !== "authenticated"' }, { action: 'disable', @@ -301,7 +317,7 @@ export function getNationalIDValidators(configCase: string): Validator[] { }, { operation: 'duplicateIDNumber', - parameters: ['mother.iD'] + parameters: ['mother.motherNationalId'] } ] } else if (configCase === 'mother') { @@ -312,7 +328,7 @@ export function getNationalIDValidators(configCase: string): Validator[] { }, { operation: 'duplicateIDNumber', - parameters: ['father.iD'] + parameters: ['father.fatherNationalId'] } ] } else if (configCase === 'deceased') { @@ -323,7 +339,7 @@ export function getNationalIDValidators(configCase: string): Validator[] { }, { operation: 'duplicateIDNumber', - parameters: ['informant.informantID'] + parameters: ['informant.informantNationalId'] } ] } else if (configCase === 'groom') { @@ -334,7 +350,7 @@ export function getNationalIDValidators(configCase: string): Validator[] { }, { operation: 'duplicateIDNumber', - parameters: ['bride.iD'] + parameters: ['bride.brideNationalId'] } ] } else if (configCase === 'bride') { @@ -345,7 +361,7 @@ export function getNationalIDValidators(configCase: string): Validator[] { }, { operation: 'duplicateIDNumber', - parameters: ['groom.iD'] + parameters: ['groom.groomNationalId'] } ] } else { @@ -357,23 +373,23 @@ export function getNationalIDValidators(configCase: string): Validator[] { }, { operation: 'duplicateIDNumber', - parameters: ['deceased.deceasedID'] + parameters: ['deceased.deceasedNationalId'] }, { operation: 'duplicateIDNumber', - parameters: ['mother.iD'] + parameters: ['mother.motherNationalId'] }, { operation: 'duplicateIDNumber', - parameters: ['father.iD'] + parameters: ['father.fatherNationalId'] }, { operation: 'duplicateIDNumber', - parameters: ['groom.iD'] + parameters: ['groom.groomNationalId'] }, { operation: 'duplicateIDNumber', - parameters: ['bride.iD'] + parameters: ['bride.brideNationalId'] } ] } @@ -382,7 +398,8 @@ export function getNationalIDValidators(configCase: string): Validator[] { export const informantBirthDateConditionals = [ { action: 'hide', - expression: 'values.exactDateOfBirthUnknown' + expression: + 'values.exactDateOfBirthUnknown && !$form?.idReader?.birthDate && $form?.verified !== "verified" && $form?.verified !== "authenticated"' }, { action: 'disable', @@ -397,7 +414,8 @@ export const spouseBirthDateConditionals = [ }, { action: 'hide', - expression: 'values.exactDateOfBirthUnknown' + expression: + 'values.exactDateOfBirthUnknown && !$form?.idReader?.birthDate && $form?.verified !== "verified" && $form?.verified !== "authenticated"' }, { action: 'disable', @@ -451,3 +469,43 @@ export const detailsDontExist = '!values.detailsExist' // primary address same as other primary export const primaryAddressSameAsOtherPrimaryAddress = 'values.primaryAddressSameAsOtherPrimary' +export const disableIfVerifiedOrAuthenticated = [ + { + action: 'disable', + expression: + '$form?.verified === "verified" || $form?.verified === "authenticated"' + } +] + +export const hideIfQRReaderFilledBirthDate = [ + { + action: 'hide', + expression: '$form?.idReader?.birthDate' + } +] + +const disableIfVerified = [ + { + action: 'disable', + expression: '$form?.verified === "verified"' + } +] + +export const hideIfVerified = [ + { action: 'hide', expression: '$form?.verified === "verified"' } +] + +const hideIfAuthenticated = [ + { action: 'hide', expression: '$form?.verified === "authenticated"' } +] + +export const typeOfIDVerificationConditionals = [ + ...disableIfVerified, + ...hideIfAuthenticated +] + +export const exactDateOfBirthUnknownConditionals = [ + ...hideIfQRReaderFilledBirthDate, + ...hideIfAuthenticated, + ...hideIfVerified +] diff --git a/src/form/common/id-reader-configurations.ts b/src/form/common/id-reader-configurations.ts new file mode 100644 index 0000000000..812db0e0dc --- /dev/null +++ b/src/form/common/id-reader-configurations.ts @@ -0,0 +1,64 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ + +import { and } from '@opencrvs/toolkit/conditionals' +import { + ESIGNET_REDIRECT_URL, + MOSIP_API_USERINFO_URL, + OPENID_PROVIDER_CLIENT_ID, + OPENID_PROVIDER_CLAIMS +} from '@countryconfig/constants' + +function objectHasProperty( + property: string, + type: 'string' | 'number' | 'boolean' | 'array' | 'object', + format?: string +) { + return { + type: 'object', + properties: { + [property]: { + type, + format + } + }, + required: [property] + } +} + +export const qrCodeConfig = { + validation: { + rule: and( + objectHasProperty('firstName', 'string'), + objectHasProperty('familyName', 'string'), + objectHasProperty('gender', 'string'), + objectHasProperty('birthDate', 'string'), + objectHasProperty('nid', 'string') + ), + errorMessage: { + defaultMessage: 'This QR code is not recognised. Please try again.', + description: 'Error message for QR code validation', + id: 'form.field.qr.validation.error' + } + } +} + +export const esignetConfig = { + fieldName: 'esignet', + esignetAuthUrl: ESIGNET_REDIRECT_URL, + openIdProviderClientId: OPENID_PROVIDER_CLIENT_ID, + openIdProviderClaims: OPENID_PROVIDER_CLAIMS, + callback: { + fieldName: 'esignetCallback', + mosipAPIUserInfoUrl: MOSIP_API_USERINFO_URL + }, + loaderFieldName: 'esignetLoader' +} diff --git a/src/form/common/messages.ts b/src/form/common/messages.ts index 5fdf2003c9..d7bd124139 100644 --- a/src/form/common/messages.ts +++ b/src/form/common/messages.ts @@ -456,11 +456,6 @@ export const formMessageDescriptors = { description: 'Form section name for Documents', id: 'form.section.documents.name' }, - documentsParagraph: { - defaultMessage: 'The following documents are required', - description: 'Documents Paragraph text', - id: 'form.section.documents.birth.requirements' - }, proofOfBirth: { defaultMessage: 'Proof of birth', description: 'Label for list item Proof of birth', diff --git a/src/form/custom-fields.ts b/src/form/custom-fields.ts index d43fd8aa13..4fba9208ac 100644 --- a/src/form/custom-fields.ts +++ b/src/form/custom-fields.ts @@ -15,6 +15,7 @@ import { MessageDescriptor } from 'react-intl' import { getNationalIDValidators } from './common/default-validation-conditionals' import { formMessageDescriptors } from './common/messages' import { Conditional, SerializedFormField } from './types/types' +import { getInitialValueFromIDReader } from '@opencrvs/mosip' // ======================= CUSTOM FIELD CONFIGURATION ======================= @@ -157,7 +158,11 @@ export function getIDType( description: 'A form field that asks for the type of ID.', defaultMessage: 'Type of ID' }, - initialValue: '', + initialValue: { + dependsOn: ['idReader', 'verified'], + expression: + '!!$form?.idReader?.nid || $form?.verified === "verified" || $form?.verified === "authenticated" ? "NATIONAL_ID" : ""' + }, validator: [], mapping: getCustomFieldMapping(fieldId), placeholder: formMessageDescriptors.formSelectPlaceholder, @@ -173,6 +178,14 @@ function getValidators(configCase: string, idValue: IDType) { return [] } +function initialValuesForIDType(idType: IDType) { + if (idType === 'NATIONAL_ID') { + return getInitialValueFromIDReader('nid') + } else { + return '' + } +} + export function getIDNumber( sectionId: string, idValue: IDType, @@ -194,7 +207,7 @@ export function getIDNumber( description: 'A form field that asks for the id number.', defaultMessage: 'ID number' }, - initialValue: '', + initialValue: initialValuesForIDType(idValue), validator: validators, mapping: { template: { diff --git a/src/form/death/certficate-handlebars.ts b/src/form/death/certficate-handlebars.ts index 4556f7f764..fce7b8deda 100644 --- a/src/form/death/certficate-handlebars.ts +++ b/src/form/death/certficate-handlebars.ts @@ -17,11 +17,11 @@ export const certificateHandlebars = { certificateDate: 'certificateDate', registrar: 'registrar', registrationAgent: 'registrationAgent', - registrarName: 'registrarName', // @deprecated use registrar.name instead - role: 'role', // @deprecated use registrar.role instead - registrarSignature: 'registrarSignature', // @deprecated use registrar.signature instead + registrarName: 'registrarName', + role: 'role', + registrarSignature: 'registrarSignature', registrationDate: 'registrationDate', - registrationLocation: 'registrationLocation', // @deprecated use registrar.office/state/district instead + registrationLocation: 'registrationLocation', contactEmail: 'contactEmail', contactPhoneNumber: 'contactPhoneNumber', eventDate: 'eventDate', @@ -36,18 +36,24 @@ export const certificateHandlebars = { deceasedRefugeeId: 'deceasedRefugeeId', deceasedMaritalStatus: 'deceasedMaritalStatus', countryPrimaryDeceased: 'countryPrimaryDeceased', - statePrimaryDeceased: 'statePrimaryDeceased', // @deprecated use statePrimaryDeceasedId instead - statePrimaryDeceasedId: 'statePrimaryDeceasedId', - districtPrimaryDeceased: 'districtPrimaryDeceased', // @deprecated use districtPrimaryDeceasedId instead - districtPrimaryDeceasedId: 'districtPrimaryDeceasedId', + statePrimaryDeceased: 'statePrimaryDeceased', + districtPrimaryDeceased: 'districtPrimaryDeceased', cityPrimaryDeceased: 'cityPrimaryDeceased', ageOfDeceasedInYears: 'ageOfDeceasedInYears', + addressLine3UrbanOptionPrimaryDeceased: + 'addressLine3UrbanOptionPrimaryDeceased', + addressLine2UrbanOptionPrimaryDeceased: + 'addressLine2UrbanOptionPrimaryDeceased', + addressLine1UrbanOptionPrimaryDeceased: + 'addressLine1UrbanOptionPrimaryDeceased', ageOfInformantInYears: 'ageOfInformantInYears', ageOfSpouseInYears: 'ageOfSpouseInYears', addressLine3PrimaryDeceased: 'addressLine3PrimaryDeceased', addressLine2PrimaryDeceased: 'addressLine2PrimaryDeceased', addressLine1PrimaryDeceased: 'addressLine1PrimaryDeceased', postalCodePrimaryDeceased: 'postalCodePrimaryDeceased', + addressLine1RuralOptionPrimaryDeceased: + 'addressLine1RuralOptionPrimaryDeceased', internationalStatePrimaryDeceased: 'internationalStatePrimaryDeceased', internationalDistrictPrimaryDeceased: 'internationalDistrictPrimaryDeceased', internationalCityPrimaryDeceased: 'internationalCityPrimaryDeceased', @@ -74,10 +80,11 @@ export const certificateHandlebars = { districtPlaceofdeath: 'districtPlaceofdeath', // @deprecated use districtPlaceofdeathId instead districtPlaceofdeathId: 'districtPlaceofdeathId', cityPlaceofdeath: 'cityPlaceofdeath', - addressLine3Placeofdeath: 'addressLine3Placeofdeath', - addressLine2Placeofdeath: 'addressLine2Placeofdeath', - addressLine1Placeofdeath: 'addressLine1Placeofdeath', + addressLine3UrbanOptionPlaceofdeath: 'addressLine3UrbanOptionPlaceofdeath', + addressLine2UrbanOptionPlaceofdeath: 'addressLine2UrbanOptionPlaceofdeath', + addressLine1UrbanOptionPlaceofdeath: 'addressLine1UrbanOptionPlaceofdeath', postalCodePlaceofdeath: 'postalCodePlaceofdeath', + addressLine1RuralOptionPlaceofdeath: 'addressLine1RuralOptionPlaceofdeath', internationalStatePlaceofdeath: 'internationalStatePlaceofdeath', internationalDistrictPlaceofdeath: 'internationalDistrictPlaceofdeath', internationalCityPlaceofdeath: 'internationalCityPlaceofdeath', @@ -98,15 +105,18 @@ export const certificateHandlebars = { informantAlienId: 'informantAlienId', informantRefugeeId: 'informantRefugeeId', countryPrimaryInformant: 'countryPrimaryInformant', - statePrimaryInformant: 'statePrimaryInformant', // @deprecated use statePrimaryInformantId instead - statePrimaryInformantId: 'statePrimaryInformantId', - districtPrimaryInformant: 'districtPrimaryInformant', // @deprecated use districtPrimaryInformantId instead - districtPrimaryInformantId: 'districtPrimaryInformantId', + statePrimaryInformant: 'statePrimaryInformant', + districtPrimaryInformant: 'districtPrimaryInformant', cityPrimaryInformant: 'cityPrimaryInformant', - addressLine3PrimaryInformant: 'addressLine3PrimaryInformant', - addressLine2PrimaryInformant: 'addressLine2PrimaryInformant', - addressLine1PrimaryInformant: 'addressLine1PrimaryInformant', + addressLine3UrbanOptionPrimaryInformant: + 'addressLine3UrbanOptionPrimaryInformant', + addressLine2UrbanOptionPrimaryInformant: + 'addressLine2UrbanOptionPrimaryInformant', + addressLine1UrbanOptionPrimaryInformant: + 'addressLine1UrbanOptionPrimaryInformant', postalCodePrimaryInformant: 'postalCodePrimaryInformant', + addressLine1RuralOptionPrimaryInformant: + 'addressLine1RuralOptionPrimaryInformant', internationalStatePrimaryInformant: 'internationalStatePrimaryInformant', internationalDistrictPrimaryInformant: 'internationalDistrictPrimaryInformant', @@ -131,10 +141,8 @@ export const certificateHandlebars = { spouseOccupation: 'spouseOccupation', spouseEducationalAttainment: 'spouseEducationalAttainment', countryPrimarySpouse: 'countryPrimarySpouse', - statePrimarySpouse: 'statePrimarySpouse', // @deprecated use statePrimarySpouseId instead - statePrimarySpouseId: 'statePrimarySpouseId', - districtPrimarySpouse: 'districtPrimarySpouse', // @deprecated use districtPrimarySpouseId instead - districtPrimarySpouseId: 'districtPrimarySpouseId', + statePrimarySpouse: 'statePrimarySpouse', + districtPrimarySpouse: 'districtPrimarySpouse', cityPrimarySpouse: 'cityPrimarySpouse', addressLine3UrbanOptionPrimarySpouse: 'addressLine3UrbanOptionPrimarySpouse', addressLine2UrbanOptionPrimarySpouse: 'addressLine2UrbanOptionPrimarySpouse', @@ -175,10 +183,8 @@ export const certificateHandlebars = { fatherOccupation: 'fatherOccupation', fatherEducationalAttainment: 'fatherEducationalAttainment', countryPrimaryMother: 'countryPrimaryMother', - statePrimaryMother: 'statePrimaryMother', // @deprecated use statePrimaryMotherId instead - statePrimaryMotherId: 'statePrimaryMotherId', - districtPrimaryMother: 'districtPrimaryMother', // @deprecated use districtPrimaryMotherId instead - districtPrimaryMotherId: 'districtPrimaryMotherId', + statePrimaryMother: 'statePrimaryMother', + districtPrimaryMother: 'districtPrimaryMother', cityPrimaryMother: 'cityPrimaryMother', addressLine3UrbanOptionPrimaryMother: 'addressLine3UrbanOptionPrimaryMother', addressLine2UrbanOptionPrimaryMother: 'addressLine2UrbanOptionPrimaryMother', @@ -197,10 +203,8 @@ export const certificateHandlebars = { internationalPostalCodePrimaryMother: 'internationalPostalCodePrimaryMother', fatherReasonNotApplying: 'fatherReasonNotApplying', countryPrimaryFather: 'countryPrimaryFather', - statePrimaryFather: 'statePrimaryFather', // @deprecated use statePrimaryFatherId instead - statePrimaryFatherId: 'statePrimaryFatherId', - districtPrimaryFather: 'districtPrimaryFather', // @deprecated use districtPrimaryFatherId instead - districtPrimaryFatherId: 'districtPrimaryFatherId', + statePrimaryFather: 'statePrimaryFather', + districtPrimaryFather: 'districtPrimaryFather', cityPrimaryFather: 'cityPrimaryFather', addressLine3UrbanOptionPrimaryFather: 'addressLine3UrbanOptionPrimaryFather', addressLine2UrbanOptionPrimaryFather: 'addressLine2UrbanOptionPrimaryFather', diff --git a/src/form/death/index.ts b/src/form/death/index.ts index 08aeaedcc2..8a992218ed 100644 --- a/src/form/death/index.ts +++ b/src/form/death/index.ts @@ -61,7 +61,11 @@ import { spouseBirthDateConditionals, spouseFamilyNameConditionals, spouseFirstNameConditionals, - hideIfInformantSpouse + hideIfInformantSpouse, + hideIfDeceasedAddressNotAvailable, + disableIfVerifiedOrAuthenticated, + exactDateOfBirthUnknownConditionals, + typeOfIDVerificationConditionals } from '../common/default-validation-conditionals' import { documentsSection, @@ -77,12 +81,17 @@ import { spouseNameInEnglish } from '../common/preview-groups' import { certificateHandlebars } from './certficate-handlebars' -import { getCommonSectionMapping } from '@countryconfig/utils/mapping/field-mapping-utils' +import { + getCommonSectionMapping, + getCustomFieldMapping +} from '@countryconfig/utils/mapping/field-mapping-utils' import { getNumberOfDependants } from '@countryconfig/form/death/custom-fields' import { getIDNumberFields, getIDType } from '@countryconfig/form/custom-fields' import { getSectionMapping } from '@countryconfig/utils/mapping/section/death/mapping-utils' //import { getSectionMapping } from '@countryconfig/utils/mapping/section/death/mapping-utils' import { getReasonForLateRegistration } from '../custom-fields' +import { idReaderFields, getInitialValueFromIDReader } from '@opencrvs/mosip' +import { qrCodeConfig, esignetConfig } from '../common/id-reader-configurations' // import { createCustomFieldExample } from '../custom-fields' @@ -177,38 +186,69 @@ export const deathForm = { { id: 'deceased-view-group', fields: [ + ...idReaderFields( + 'death', + 'deceased', + qrCodeConfig, + esignetConfig, + getCustomFieldMapping( + `death.deceased.deceased-view-group.verified` + ) + ), getFirstNameField( 'deceasedNameInEnglish', - [], - certificateHandlebars.deceasedFirstName + disableIfVerifiedOrAuthenticated, + certificateHandlebars.deceasedFirstName, + getInitialValueFromIDReader('firstName') ), // Required field. Names in Latin characters must be provided for international passport getFamilyNameField( 'deceasedNameInEnglish', - [], - certificateHandlebars.deceasedFamilyName + disableIfVerifiedOrAuthenticated, + certificateHandlebars.deceasedFamilyName, + getInitialValueFromIDReader('familyName') ), // Required field. Names in Latin characters must be provided for international passport - getGender(certificateHandlebars.deceasedGender), // Required field. + getGender( + certificateHandlebars.deceasedGender, + getInitialValueFromIDReader('gender'), + disableIfVerifiedOrAuthenticated + ), // Required field. getBirthDate( 'deceasedBirthDate', [ { action: 'hide', - expression: 'values.exactDateOfBirthUnknown' + expression: + 'values.exactDateOfBirthUnknown && !$form?.idReader?.birthDate && $form?.verified !== "verified" && $form?.verified !== "authenticated"' } - ], + ].concat(disableIfVerifiedOrAuthenticated), isValidBirthDate, - certificateHandlebars.deceasedBirthDate + certificateHandlebars.deceasedBirthDate, + getInitialValueFromIDReader('birthDate') ), // Required field., - exactDateOfBirthUnknown([]), + exactDateOfBirthUnknown(exactDateOfBirthUnknownConditionals), getAgeOfIndividualInYears( formMessageDescriptors.ageOfDeceased, - exactDateOfBirthUnknownConditional, + exactDateOfBirthUnknownConditional.concat( + exactDateOfBirthUnknownConditionals + ), ageOfDeceasedConditionals, certificateHandlebars.ageOfDeceasedInYears ), - getNationality(certificateHandlebars.deceasedNationality, []), - getIDType('death', 'deceased', [], true), - ...getIDNumberFields('deceased', [], true), + getNationality( + certificateHandlebars.deceasedNationality, + disableIfVerifiedOrAuthenticated + ), + getIDType( + 'death', + 'deceased', + typeOfIDVerificationConditionals, + true + ), + ...getIDNumberFields( + 'deceased', + typeOfIDVerificationConditionals, + true + ), getMaritalStatus(certificateHandlebars.deceasedMaritalStatus, []), getNumberOfDependants() ], @@ -255,19 +295,40 @@ export const deathForm = { fields: [ deathInformantType, otherInformantType(Event.Death), + ...idReaderFields( + 'death', + 'informant', + qrCodeConfig, + esignetConfig, + getCustomFieldMapping( + `death.informant.informant-view-group.verified` + ), + informantFirstNameConditionals.concat(hideIfInformantSpouse) + ), getFirstNameField( 'informantNameInEnglish', - informantFirstNameConditionals.concat(hideIfInformantSpouse), - certificateHandlebars.informantFirstName - ), // Required field. + informantFirstNameConditionals.concat( + hideIfInformantSpouse, + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.informantFirstName, + getInitialValueFromIDReader('firstName') + ), // Required field. In Farajaland, we have built the option to integrate with MOSIP. So we have different conditionals for each name to check MOSIP responses. You could always refactor firstNamesEng for a basic setup getFamilyNameField( 'informantNameInEnglish', - informantFamilyNameConditionals.concat(hideIfInformantSpouse), - certificateHandlebars.informantFamilyName + informantFamilyNameConditionals.concat( + hideIfInformantSpouse, + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.informantFamilyName, + getInitialValueFromIDReader('familyName') ), // Required field. getBirthDate( 'informantBirthDate', - informantBirthDateConditionals.concat(hideIfInformantSpouse), + informantBirthDateConditionals.concat( + hideIfInformantSpouse, + disableIfVerifiedOrAuthenticated + ), [ { operation: 'dateFormatIsCorrect', @@ -282,21 +343,36 @@ export const deathForm = { parameters: [16, 100] } ], - certificateHandlebars.informantBirthDate + certificateHandlebars.informantBirthDate, + getInitialValueFromIDReader('birthDate') ), // Required field. - exactDateOfBirthUnknown(hideIfInformantSpouse), + exactDateOfBirthUnknown( + hideIfInformantSpouse.concat(exactDateOfBirthUnknownConditionals) + ), getAgeOfIndividualInYears( formMessageDescriptors.ageOfInformant, - exactDateOfBirthUnknownConditional.concat(hideIfInformantSpouse), + exactDateOfBirthUnknownConditional.concat( + hideIfInformantSpouse, + exactDateOfBirthUnknownConditionals + ), ageOfIndividualValidators, certificateHandlebars.ageOfInformantInYears ), getNationality( certificateHandlebars.informantNationality, - hideIfInformantSpouse + hideIfInformantSpouse.concat(disableIfVerifiedOrAuthenticated) + ), + getIDType( + 'death', + 'informant', + hideIfInformantSpouse.concat(typeOfIDVerificationConditionals), + true + ), + ...getIDNumberFields( + 'informant', + hideIfInformantSpouse.concat(typeOfIDVerificationConditionals), + true ), - getIDType('death', 'informant', hideIfInformantSpouse, true), - ...getIDNumberFields('informant', hideIfInformantSpouse, true), // ADDRESS FIELDS WILL RENDER HERE divider('informant-address-separator', hideIfInformantSpouse), registrationPhone, @@ -322,19 +398,35 @@ export const deathForm = { ), divider('spouse-details-seperator', spouseDetailsExistConditionals), getReasonNotExisting(certificateHandlebars.spouseReasonNotApplying), + ...idReaderFields( + 'death', + 'spouse', + qrCodeConfig, + esignetConfig, + getCustomFieldMapping(`death.spouse.spouse-view-group.verified`), + detailsExist + ), getFirstNameField( 'spouseNameInEnglish', - spouseFirstNameConditionals, - certificateHandlebars.spouseFirstName + spouseFirstNameConditionals.concat( + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.spouseFirstName, + getInitialValueFromIDReader('firstName') ), // Required field. In Farajaland, we have built the option to integrate with MOSIP. So we have different conditionals for each name to check MOSIP responses. You could always refactor firstNamesEng for a basic setup getFamilyNameField( 'spouseNameInEnglish', - spouseFamilyNameConditionals, - certificateHandlebars.spouseFamilyName + spouseFamilyNameConditionals.concat( + disableIfVerifiedOrAuthenticated + ), + certificateHandlebars.spouseFamilyName, + getInitialValueFromIDReader('familyName') ), // Required field. getBirthDate( 'spouseBirthDate', - spouseBirthDateConditionals, + spouseBirthDateConditionals.concat( + disableIfVerifiedOrAuthenticated + ), [ { operation: 'dateFormatIsCorrect', @@ -345,23 +437,41 @@ export const deathForm = { parameters: [] } ], - certificateHandlebars.spouseBirthDate + certificateHandlebars.spouseBirthDate, + getInitialValueFromIDReader('birthDate') ), // Required field. - exactDateOfBirthUnknown(detailsExist), + exactDateOfBirthUnknown( + detailsExist.concat(exactDateOfBirthUnknownConditionals) + ), getAgeOfIndividualInYears( formMessageDescriptors.ageOfSpouse, - exactDateOfBirthUnknownConditional.concat(detailsExist), + exactDateOfBirthUnknownConditional.concat( + detailsExist, + exactDateOfBirthUnknownConditionals + ), ageOfIndividualValidators, certificateHandlebars.ageOfSpouseInYears ), getNationality( certificateHandlebars.spouseNationality, - detailsExist + detailsExist.concat(disableIfVerifiedOrAuthenticated) + ), + getIDType( + 'death', + 'spouse', + detailsExist.concat(typeOfIDVerificationConditionals), + true + ), + ...getIDNumberFields( + 'spouse', + detailsExist.concat(typeOfIDVerificationConditionals), + true ), - getIDType('death', 'spouse', detailsExist, true), - ...getIDNumberFields('spouse', detailsExist, true), // ADDRESS FIELDS WILL RENDER HERE - divider('spouse-address-separator') + divider( + 'spouse-address-separator', + hideIfDeceasedAddressNotAvailable + ) ], previewGroups: [spouseNameInEnglish] } diff --git a/src/form/death/required-fields.ts b/src/form/death/required-fields.ts index 72e5140c69..fcd6619435 100644 --- a/src/form/death/required-fields.ts +++ b/src/form/death/required-fields.ts @@ -10,7 +10,6 @@ */ import { getFieldMapping } from '@countryconfig/utils/mapping/field-mapping-utils' -import { divider } from '../common/common-optional-fields' import { formMessageDescriptors, informantMessageDescriptors @@ -129,16 +128,6 @@ export const getDeathDescription: SerializedFormField = { export const getPlaceOfDeathFields = () => [ - { - name: 'placeOfDeathTitle', - type: 'HEADING3', - label: formMessageDescriptors.placeOfDeath, - previewGroup: 'placeOfDeath', - ignoreBottomMargin: false, - initialValue: '', - validator: [] - }, - divider('place-of-death-seperator'), { name: 'placeOfDeath', type: 'SELECT_WITH_OPTIONS', diff --git a/src/form/death/required-sections.ts b/src/form/death/required-sections.ts index 5a7fbea524..bde5987a80 100644 --- a/src/form/death/required-sections.ts +++ b/src/form/death/required-sections.ts @@ -45,13 +45,6 @@ export const documentsSection = { { id: 'documents-view-group', fields: [ - { - name: 'paragraph', - type: 'PARAGRAPH', - label: formMessageDescriptors.deceasedParagraph, - initialValue: '', - validator: [] - }, { name: 'uploadDocForDeceased', type: 'DOCUMENT_UPLOADER_WITH_OPTION', diff --git a/src/form/marriage/certificate-handlebars.ts b/src/form/marriage/certificate-handlebars.ts index 1067cb049a..7aee2a392f 100644 --- a/src/form/marriage/certificate-handlebars.ts +++ b/src/form/marriage/certificate-handlebars.ts @@ -17,11 +17,11 @@ export const certificateHandlebars = { certificateDate: 'certificateDate', registrar: 'registrar', registrationAgent: 'registrationAgent', - registrarName: 'registrarName', // @deprecated use registrar.name instead - role: 'role', // @deprecated use registrar.role instead - registrarSignature: 'registrarSignature', // @deprecated use registrar.signature instead + registrarName: 'registrarName', + role: 'role', + registrarSignature: 'registrarSignature', registrationDate: 'registrationDate', - registrationLocation: 'registrationLocation', // @deprecated use registrar.office/state/district instead + registrationLocation: 'registrationLocation', contactEmail: 'contactEmail', contactPhoneNumber: 'contactPhoneNumber', eventDate: 'eventDate', @@ -38,15 +38,18 @@ export const certificateHandlebars = { ageOfGroomInYears: 'ageOfGroomInYears', ageOfBrideInYears: 'ageOfBrideInYears', countryPrimaryInformant: 'countryPrimaryInformant', - statePrimaryInformant: 'statePrimaryInformant', // @deprecated use statePrimaryInformantId instead - statePrimaryInformantId: 'statePrimaryInformantId', - districtPrimaryInformant: 'districtPrimaryInformant', // @deprecated use districtPrimaryInformantId instead - districtPrimaryInformantId: 'districtPrimaryInformantId', + statePrimaryInformant: 'statePrimaryInformant', + districtPrimaryInformant: 'districtPrimaryInformant', cityPrimaryInformant: 'cityPrimaryInformant', - addressLine3PrimaryInformant: 'addressLine3PrimaryInformant', - addressLine2PrimaryInformant: 'addressLine2PrimaryInformant', - addressLine1PrimaryInformant: 'addressLine1PrimaryInformant', + addressLine3UrbanOptionPrimaryInformant: + 'addressLine3UrbanOptionPrimaryInformant', + addressLine2UrbanOptionPrimaryInformant: + 'addressLine2UrbanOptionPrimaryInformant', + addressLine1UrbanOptionPrimaryInformant: + 'addressLine1UrbanOptionPrimaryInformant', postalCodePrimaryInformant: 'postalCodePrimaryInformant', + addressLine1RuralOptionPrimaryInformant: + 'addressLine1RuralOptionPrimaryInformant', internationalStatePrimaryInformant: 'internationalStatePrimaryInformant', internationalDistrictPrimaryInformant: 'internationalDistrictPrimaryInformant', @@ -73,15 +76,14 @@ export const certificateHandlebars = { groomRefugeeId: 'groomRefugeeId', groomMarriedLastNameEng: 'groomMarriedLastNameEng', countryPrimaryGroom: 'countryPrimaryGroom', - statePrimaryGroom: 'statePrimaryGroom', // @deprecated use statePrimaryGroomId instead - statePrimaryGroomId: 'statePrimaryGroomId', - districtPrimaryGroom: 'districtPrimaryGroom', // @deprecated use districtPrimaryGroomId instead - districtPrimaryGroomId: 'districtPrimaryGroomId', + statePrimaryGroom: 'statePrimaryGroom', + districtPrimaryGroom: 'districtPrimaryGroom', cityPrimaryGroom: 'cityPrimaryGroom', - addressLine3PrimaryGroom: 'addressLine3PrimaryGroom', - addressLine2PrimaryGroom: 'addressLine2PrimaryGroom', - addressLine1PrimaryGroom: 'addressLine1PrimaryGroom', + addressLine3UrbanOptionPrimaryGroom: 'addressLine3UrbanOptionPrimaryGroom', + addressLine2UrbanOptionPrimaryGroom: 'addressLine2UrbanOptionPrimaryGroom', + addressLine1UrbanOptionPrimaryGroom: 'addressLine1UrbanOptionPrimaryGroom', postalCodePrimaryGroom: 'postalCodePrimaryGroom', + addressLine1RuralOptionPrimaryGroom: 'addressLine1RuralOptionPrimaryGroom', internationalStatePrimaryGroom: 'internationalStatePrimaryGroom', internationalDistrictPrimaryGroom: 'internationalDistrictPrimaryGroom', internationalCityPrimaryGroom: 'internationalCityPrimaryGroom', @@ -102,15 +104,14 @@ export const certificateHandlebars = { brideRefugeeId: 'brideRefugeeId', brideMarriedLastNameEng: 'brideMarriedLastNameEng', countryPrimaryBride: 'countryPrimaryBride', - statePrimaryBride: 'statePrimaryBride', // @deprecated use statePrimaryBrideId instead - statePrimaryBrideId: 'statePrimaryBrideId', - districtPrimaryBride: 'districtPrimaryBride', // @deprecated use districtPrimaryBrideId instead - districtPrimaryBrideId: 'districtPrimaryBrideId', + statePrimaryBride: 'statePrimaryBride', + districtPrimaryBride: 'districtPrimaryBride', cityPrimaryBride: 'cityPrimaryBride', - addressLine3PrimaryBride: 'addressLine3PrimaryBride', - addressLine2PrimaryBride: 'addressLine2PrimaryBride', - addressLine1PrimaryBride: 'addressLine1PrimaryBride', + addressLine3UrbanOptionPrimaryBride: 'addressLine3UrbanOptionPrimaryBride', + addressLine2UrbanOptionPrimaryBride: 'addressLine2UrbanOptionPrimaryBride', + addressLine1UrbanOptionPrimaryBride: 'addressLine1UrbanOptionPrimaryBride', postalCodePrimaryBride: 'postalCodePrimaryBride', + addressLine1RuralOptionPrimaryBride: 'addressLine1RuralOptionPrimaryBride', internationalStatePrimaryBride: 'internationalStatePrimaryBride', internationalDistrictPrimaryBride: 'internationalDistrictPrimaryBride', internationalCityPrimaryBride: 'internationalCityPrimaryBride', @@ -123,15 +124,18 @@ export const certificateHandlebars = { internationalPostalCodePrimaryBride: 'internationalPostalCodePrimaryBride', typeOfMarriage: 'typeOfMarriage', countryPlaceofmarriage: 'countryPlaceofmarriage', - statePlaceofmarriage: 'statePlaceofmarriage', // @deprecated use statePlaceofmarriageId instead - statePlaceofmarriageId: 'statePlaceofmarriageId', - districtPlaceofmarriage: 'districtPlaceofmarriage', // @deprecated use districtPlaceofmarriageId instead - districtPlaceofmarriageId: 'districtPlaceofmarriageId', + statePlaceofmarriage: 'statePlaceofmarriage', + districtPlaceofmarriage: 'districtPlaceofmarriage', cityPlaceofmarriage: 'cityPlaceofmarriage', - addressLine3Placeofmarriage: 'addressLine3Placeofmarriage', - addressLine2Placeofmarriage: 'addressLine2Placeofmarriage', - addressLine1Placeofmarriage: 'addressLine1Placeofmarriage', + addressLine3UrbanOptionPlaceofmarriage: + 'addressLine3UrbanOptionPlaceofmarriage', + addressLine2UrbanOptionPlaceofmarriage: + 'addressLine2UrbanOptionPlaceofmarriage', + addressLine1UrbanOptionPlaceofmarriage: + 'addressLine1UrbanOptionPlaceofmarriage', postalCodePlaceofmarriage: 'postalCodePlaceofmarriage', + addressLine1RuralOptionPlaceofmarriage: + 'addressLine1RuralOptionPlaceofmarriage', internationalStatePlaceofmarriage: 'internationalStatePlaceofmarriage', internationalDistrictPlaceofmarriage: 'internationalDistrictPlaceofmarriage', internationalCityPlaceofmarriage: 'internationalCityPlaceofmarriage', diff --git a/src/form/marriage/required-sections.ts b/src/form/marriage/required-sections.ts index 358b1f58c2..07b372cfd9 100644 --- a/src/form/marriage/required-sections.ts +++ b/src/form/marriage/required-sections.ts @@ -60,13 +60,6 @@ export const documentsSection = { { id: 'documents-view-group', fields: [ - { - name: 'paragraph', - type: 'PARAGRAPH', - label: formMessageDescriptors.documentsParagraph, - initialValue: '', - validator: [] - }, getDocUploaderForMarriage( 'uploadDocForMarriageProof', 'proofOfMarriageNotice', diff --git a/src/form/types/types.ts b/src/form/types/types.ts index 3a7055c22d..eddadc43d5 100644 --- a/src/form/types/types.ts +++ b/src/form/types/types.ts @@ -353,6 +353,7 @@ export interface INumberFormField extends IFormFieldBase { step?: number max?: number inputWidth?: number + maxLength?: number } export interface IBigNumberFormField extends IFormFieldBase { type: typeof BIG_NUMBER diff --git a/src/form/v2/birth/validators.ts b/src/form/v2/birth/validators.ts index c35c0a2bc5..20f1727c9c 100644 --- a/src/form/v2/birth/validators.ts +++ b/src/form/v2/birth/validators.ts @@ -8,8 +8,8 @@ * * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. */ -import { defineFormConditional } from '@opencrvs/toolkit/conditionals' import { field } from '@opencrvs/toolkit/events' +import { defineFormConditional } from '@opencrvs/toolkit/conditionals' export const MAX_NAME_LENGTH = 32 diff --git a/src/index.ts b/src/index.ts index 1cf0b51473..38c1012025 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,10 +19,12 @@ import * as Pino from 'hapi-pino' import * as JWT from 'hapi-auth-jwt2' import * as inert from '@hapi/inert' import * as Sentry from 'hapi-sentry' +import * as H2o2 from '@hapi/h2o2' import fetch from 'node-fetch' import { CLIENT_APP_URL, DOMAIN, + GATEWAY_URL, LOGIN_URL, SENTRY_DSN, V2_EVENTS, @@ -30,9 +32,9 @@ import { COUNTRY_CONFIG_PORT, CHECK_INVALID_TOKEN, AUTH_URL, - DEFAULT_TIMEOUT, - GATEWAY_URL + DEFAULT_TIMEOUT } from '@countryconfig/constants' +import { statisticsHandler } from '@countryconfig/api/data-generator/handler' import { contentHandler, countryLogoHandler @@ -66,6 +68,19 @@ import { readFileSync } from 'fs' import { ActionType, EventDocument } from '@opencrvs/toolkit/events' import { Event } from './form/types/types' import { onRegisterHandler } from './api/registration' +import { env } from './environment' +import { + mosipRegistrationForApprovalHandler, + mosipRegistrationForReviewHandler, + mosipRegistrationHandler, + verify +} from '@opencrvs/mosip' +import { + fhirBirthToMosip, + fhirDeathToMosip, + shouldForwardToIDSystem +} from './utils/mosip' +import { getEventType } from './utils/fhir' import { workqueueconfigHandler } from './api/workqueue/handler' import getUserNotificationRoutes from './config/routes/userNotificationRoutes' import { @@ -76,7 +91,6 @@ import { syncLocationStatistics } from './analytics/analytics' import { getClient } from './analytics/postgres' -import { env } from './environment' import { createClient } from '@opencrvs/toolkit/api' export interface ITokenPayload { @@ -87,7 +101,7 @@ export interface ITokenPayload { } export default function getPlugins() { - const plugins: any[] = [inert, JWT] + const plugins: any[] = [inert, JWT, H2o2] if (process.env.NODE_ENV === 'production') { plugins.push({ @@ -116,7 +130,7 @@ export default function getPlugins() { return plugins } -const getTokenPayload = (token: string): ITokenPayload => { +export const getTokenPayload = (token: string): ITokenPayload => { let decoded: ITokenPayload try { decoded = decode(token) @@ -433,7 +447,33 @@ export async function createServer() { server.route({ method: 'POST', path: '/event-registration', - handler: eventRegistrationHandler, + handler: async (request, h) => { + const url = env.isProd ? 'http://mosip-api:2024' : 'http://localhost:2024' + const result = await verify({ url, request }) + const bundle = request.payload as fhir.Bundle + + if (shouldForwardToIDSystem(request.payload as fhir.Bundle, result)) { + const payload = + getEventType(bundle) === 'BIRTH' + ? fhirBirthToMosip(bundle) + : fhirDeathToMosip(bundle) + + logger.info( + 'Passed country specified custom logic check for id creation. Forwarding to MOSIP...' + ) + + return mosipRegistrationHandler({ + url, + headers: request.headers, + payload + })(request, h) + } else { + logger.info( + 'Failed country specified custom logic check for id creation. Bypassing id system...' + ) + return eventRegistrationHandler(request, h) + } + }, options: { tags: ['api'], description: @@ -453,6 +493,17 @@ export async function createServer() { } }) + server.route({ + method: 'GET', + path: '/statistics', + handler: statisticsHandler, + options: { + tags: ['api'], + description: + 'Returns population and crude birth rate statistics for each location' + } + }) + server.route({ method: 'POST', path: '/email', @@ -535,6 +586,37 @@ export async function createServer() { } }) + server.route({ + method: '*', + path: '/graphql', + handler: (_, h) => + h.proxy({ + uri: `${GATEWAY_URL}/graphql`, + passThrough: true + }), + options: { + auth: false, + payload: { + output: 'data', + parse: false + } + } + }) + + server.route({ + method: 'GET', + path: '/{param*}', + options: { + auth: false + }, + handler: { + directory: { + path: 'public', + index: ['index.html', 'default.html'] + } + } + }) + server.route({ method: 'GET', path: '/static/{param*}', @@ -651,6 +733,43 @@ export async function createServer() { } }) + server.route({ + method: 'POST', + path: '/trigger/events/{event}/actions/sent-notification', + handler: mosipRegistrationForReviewHandler({ + url: env.isProd ? 'http://mosip-api:2024' : 'http://localhost:2024' + }), + options: { + tags: ['api', 'custom-event'], + description: 'Receives notifications on sent-notification action' + } + }) + + server.route({ + method: 'POST', + path: '/trigger/events/{event}/actions/sent-notification-for-review', + handler: mosipRegistrationForReviewHandler({ + url: env.isProd ? 'http://mosip-api:2024' : 'http://localhost:2024' + }), + options: { + tags: ['api', 'custom-event'], + description: + 'Receives notifications on sent-notification-for-review action' + } + }) + + server.route({ + method: 'POST', + path: '/trigger/events/{event}/actions/sent-for-approval', + handler: mosipRegistrationForApprovalHandler({ + url: env.isProd ? 'http://mosip-api:2024' : 'http://localhost:2024' + }), + options: { + tags: ['api', 'custom-event'], + description: 'Receives notifications on sent-for-approval action' + } + }) + server.route({ method: 'POST', path: `/trigger/events/${Event.TENNIS_CLUB_MEMBERSHIP}/actions/${ActionType.REGISTER}`, @@ -692,6 +811,13 @@ export async function createServer() { }) server.ext('onPostHandler', async (request, h) => { + if (!env.ANALYTICS_DATABASE_URL) { + logger.warn( + 'Skipping reindex, no ANALYTICS_DATABASE_URL environment variable set.' + ) + return h.continue + } + const response = request.response as Hapi.ResponseObject const parsedPath = /^\/trigger\/events\/[^/]+\/actions\/([^/]+)$/.exec( request.route.path @@ -725,8 +851,10 @@ export async function createServer() { async function start() { await server.start() - await syncLocationLevels() - await syncLocationStatistics() + if (env.ANALYTICS_DATABASE_URL) { + await syncLocationLevels() + await syncLocationStatistics() + } const logMsg = `Server successfully started on ${COUNTRY_CONFIG_HOST}:${COUNTRY_CONFIG_PORT}` logger.info(logMsg) diff --git a/src/tests/testData.json b/src/tests/testData.json new file mode 100644 index 0000000000..36b8e31aec --- /dev/null +++ b/src/tests/testData.json @@ -0,0 +1,199 @@ +{ + "testLocations": [ + { + "resourceType": "Location", + "identifier": [], + "name": "Moktarpur Union Parishad", + "alias": ["মোক্তারপুর ইউনিয়ন পরিষদ"], + "status": "active", + "mode": "instance", + "partOf": { + "reference": "Location/788a92e1-d431-4af5-9346-71a260aff879" + }, + "type": { + "coding": [ + { + "system": "http://opencrvs.org/specs/location-type", + "code": "CRVS_OFFICE" + } + ] + }, + "physicalType": { "coding": [{ "code": "bu", "display": "Building" }] }, + "telecom": [ + { "system": "phone", "value": "" }, + { "system": "email", "value": "" } + ], + "address": { + "line": ["Moktarpur", "Kaliganj"], + "district": "Gazipur", + "state": "Dhaka" + } + }, + { + "resourceType": "Location", + "identifier": [ + { + "system": "http://opencrvs.org/specs/id/geo-id", + "value": "3476" + }, + { "system": "http://opencrvs.org/specs/id/bbs-code", "value": "94" }, + { + "system": "http://opencrvs.org/specs/id/jurisdiction-type", + "value": "UNION" + } + ], + "name": "Moktarpur", + "alias": ["মোক্তারপুর"], + "description": "division=3&district=20&upazila=165&union=3476", + "status": "active", + "mode": "instance", + "partOf": { + "reference": "Location/5a659979-b374-4344-ad86-9c876800b68a" + }, + "type": { + "coding": [ + { + "system": "http://opencrvs.org/specs/location-type", + "code": "ADMIN_STRUCTURE" + } + ] + }, + "physicalType": { + "coding": [{ "code": "jdn", "display": "Jurisdiction" }] + }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/location-boundary-geojson", + "valueAttachment": { + "contentType": "application/geo+json", + "data": "" + } + } + ] + }, + { + "resourceType": "Location", + "identifier": [ + { + "system": "http://opencrvs.org/specs/id/geo-id", + "value": "165" + }, + { "system": "http://opencrvs.org/specs/id/bbs-code", "value": "34" }, + { + "system": "http://opencrvs.org/specs/id/jurisdiction-type", + "value": "UPAZILA" + } + ], + "name": "Kaliganj", + "alias": ["কালীগঞ্জ"], + "description": "division=3&district=20&upazila=165", + "status": "active", + "mode": "instance", + "partOf": { + "reference": "Location/ceeefb9e-5124-4d9c-85c2-11857957c7d1" + }, + "type": { + "coding": [ + { + "system": "http://opencrvs.org/specs/location-type", + "code": "ADMIN_STRUCTURE" + } + ] + }, + "physicalType": { + "coding": [{ "code": "jdn", "display": "Jurisdiction" }] + }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/location-boundary-geojson", + "valueAttachment": { + "contentType": "application/geo+json", + "data": "eyJ0eXBlIjoiRmVhdHVyZSIsInByb3BlcnRpZXMiOnsiTmFtZSI6IkthbGlnYW5qIiwiZGVzY3JpcHRpb24iOm51bGwsImFsdGl0dWRlTW9kZSI6ImNsYW1wVG9Hcm91bmQiLCJBRE0xX0VOIjoiRGhha2EiLCJBRE0zX0VOIjoiS2FsaWdhbmoiLCJBRE0zQUxUMUVOIjoiIiwiZGF0ZSI6IjIwMTUtMDEtMDEiLCJBRE0zX1JFRiI6IiIsIkFETTJfUENPREUiOiIzMDMzIiwiQURNMl9FTiI6IkdhemlwdXIiLCJJblBvbHlfRklEIjoiMjQ2IiwidmFsaWRPbiI6IjIwMTgtMDQtMTAiLCJBRE0wX1BDT0RFIjoiQkQiLCJBRE0xX1BDT0RFIjoiMzAiLCJ2YWxpZFRvIjoiPE51bGw+IiwiU2ltUGduRmxhZyI6IjAiLCJNaW5TaW1wVG9sIjoiMC4wMDg5OTMiLCJGSUQiOiIyNDYiLCJBRE0wX0VOIjoiQmFuZ2xhZGVzaCIsIlNoYXBlX0xlbmciOiIwLjk3MDg5NCIsIkFETTNfUENPREUiOiIzMDMzMzQiLCJNYXhTaW1wVG9sIjoiMC4wMDg5OTMiLCJBRE0zQUxUMkVOIjoiIiwiRmllbGRfMSI6IkthbGlnYW5qIn0sImdlb21ldHJ5Ijp7InR5cGUiOiJNdWx0aVBvbHlnb24iLCJjb29yZGluYXRlcyI6W1tbWzkwLjU2NzQ5ODgxODAwMDA1LDI0LjAyNzY3MDI5NDAwMDA3XSxbOTAuNTUxNTQ0NjQzMDAwMDYsMjQuMDQ3MzE3MzU1MDAwMDhdLFs5MC40OTgxNzI5MzMwMDAwMywyNC4wMzc3Nzc4NDQwMDAwNl0sWzkwLjQ5MjM2NTk3ODAwMDA3LDI0LjAyNzY5NTM0ODAwMDA3XSxbOTAuNDk0MDk0ODMzMDAwMDgsMjMuOTg3MzAyMDYxMDAwMDRdLFs5MC41MTQ4OTM5NDcwMDAwOCwyMy45NjY4ODcwNjAwMDAwM10sWzkwLjQ5MDM5MTg2MjAwMDA4LDIzLjk2MTM1OTQ0MTAwMDA3XSxbOTAuNTE0MTMzODA4MDAwMDUsMjMuOTU4OTI5NDUyMDAwMDZdLFs5MC41MTMzNjQ2NDYwMDAwNywyMy45MzUzMTQwMDUwMDAwN10sWzkwLjQ5MDAyOTEyMzAwMDA2LDIzLjkzNjM5OTU1MTAwMDAyXSxbOTAuNDkyMjcxNTg5MDAwMDQsMjMuOTE1NTMwNzY4MDAwMDVdLFs5MC40NjE1NjY5MTYwMDAwNCwyMy44ODMzNzA4OTYwMDAwM10sWzkwLjQ2NDA3MDA3NDAwMDA2LDIzLjg0NjMwMTc3MzAwMDA1XSxbOTAuNDcxMjY5NDIzMDAwMDgsMjMuODQ3MzA4Mjk2MDAwMDVdLFs5MC41MDIyNzIxNzcwMDAwNywyMy44NTc5MDA4MjMwMDAwMl0sWzkwLjUyNTY3NjQ1NjAwMDA0LDIzLjg5NjUxNDA1OTAwMDAzXSxbOTAuNTQ5Mzc0MTM4MDAwMDgsMjMuODg1MjczNjUzMDAwMDddLFs5MC41NzA2Njc4NzAwMDAwOCwyMy44OTQ5ODkzMTMwMDAwNV0sWzkwLjU2MDM5MTIyOTAwMDA2LDIzLjkxMTA5NTM0NjAwMDAyXSxbOTAuNjE0MTAxOTAzMDAwMDYsMjMuOTI4MDk0MTIxMDAwMDddLFs5MC42MTgwOTQyMTAwMDAwNCwyMy45Njg0MTgxNTcwMDAwM10sWzkwLjY1Nzk3MjI4MTAwMDA3LDI0LjAxMzQ3MzIwOTAwMDA0XSxbOTAuNjUwMzEwNjYxMDAwMDUsMjQuMDM2ODY3MDIzMDAwMDddLFs5MC42MTIzNTk2OTMwMDAwMywyNC4wNDUxNzAyOTgwMDAwN10sWzkwLjU2NzQ5ODgxODAwMDA1LDI0LjAyNzY3MDI5NDAwMDA3XV1dXX19" + } + } + ] + }, + { + "resourceType": "Location", + "identifier": [ + { + "system": "http://opencrvs.org/specs/id/geo-id", + "value": "20" + }, + { "system": "http://opencrvs.org/specs/id/bbs-code", "value": "33" }, + { + "system": "http://opencrvs.org/specs/id/jurisdiction-type", + "value": "DISTRICT" + } + ], + "name": "Gazipur", + "alias": ["গাজীপুর "], + "description": "division=3&district=20", + "status": "active", + "mode": "instance", + "partOf": { + "reference": "Location/9a236522-0c3d-40eb-83ad-e8567518c763" + }, + "type": { + "coding": [ + { + "system": "http://opencrvs.org/specs/location-type", + "code": "ADMIN_STRUCTURE" + } + ] + }, + "physicalType": { + "coding": [{ "code": "jdn", "display": "Jurisdiction" }] + }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/location-boundary-geojson", + "valueAttachment": { + "contentType": "application/geo+json", + "data": "eyJ0eXBlIjoiRmVhdHVyZSIsInByb3BlcnRpZXMiOnsiTmFtZSI6IkdhemlwdXIiLCJkZXNjcmlwdGlvbiI6bnVsbCwiYWx0aXR1ZGVNb2RlIjoiY2xhbXBUb0dyb3VuZCIsIkFETTFfRU4iOiJEaGFrYSIsIkFETTJBTFQyRU4iOiIiLCJBRE0wX0VOIjoiQmFuZ2xhZGVzaCIsIkFETTJfUENPREUiOiIzMDMzIiwiQURNMl9FTiI6IkdhemlwdXIiLCJJblBvbHlfRklEIjoiMTciLCJ2YWxpZE9uIjoiMjAxOC0wNC0xMCIsIkFETTJBTFQxRU4iOiIiLCJBRE0wX1BDT0RFIjoiQkQiLCJBRE0xX1BDT0RFIjoiMzAiLCJTaW1QZ25GbGFnIjoiMCIsIk1pblNpbXBUb2wiOiIwLjAwODk5MyIsIkZJRCI6IjE3IiwiZGF0ZSI6IjIwMTUtMDEtMDEiLCJTaGFwZV9MZW5nIjoiMi40NjEyOSIsIk1heFNpbXBUb2wiOiIwLjAwODk5MyIsIkFETTJfUkVGIjoiIiwiVmFsaWRUbyI6IjxOdWxsPiIsIkZpZWxkXzEiOiJHYXppcHVyIn0sImdlb21ldHJ5Ijp7InR5cGUiOiJNdWx0aVBvbHlnb24iLCJjb29yZGluYXRlcyI6W1tbWzkwLjUyOTAxMDg0NTAwMDA3LDI0LjMwMzI5NDc4ODAwMDA3XSxbOTAuNDQzMDM5OTI2MDAwMDQsMjQuMzQxMTM4MjAzMDAwMDddLFs5MC40MDI0MjQ3ODYwMDAwNCwyNC4yODI2ODgzMjEwMDAwMl0sWzkwLjM2MjQ5ODU1NDAwMDA3LDI0LjI4MTAwNDk4MzAwMDA2XSxbOTAuMzU5Mjg0MTk4MDAwMDcsMjQuMzAwMTM3MDk4MDAwMDVdLFs5MC4zMjUzNTc1MTMwMDAwOSwyNC4yOTkxODk1NTQwMDAwN10sWzkwLjI5MDQ5Nzc2ODAwMDA4LDI0LjI3Nzc3NDkxMjAwMDA0XSxbOTAuMzAwODMyODYxMDAwMDYsMjQuMjY5MzU2MjIxMDAwMDddLFs5MC4yOTAwMTY1NjgwMDAwNiwyNC4yMjYwNzczMDIwMDAwOF0sWzkwLjI2NjE1ODQ1ODAwMDA2LDI0LjIxNTExNTkwNTAwMDA2XSxbOTAuMjI1OTU2Njk1MDAwMDQsMjQuMTYyNTA0NTU5MDAwMDddLFs5MC4yMTcxOTQ5NTcwMDAwNiwyNC4xMjg0MTEzMzQwMDAwOF0sWzkwLjIzMDQzMjczMzAwMDA0LDI0LjEwNjAzNDQ4MDAwMDA2XSxbOTAuMjAwOTI1NjM4MDAwMDYsMjQuMDkzNzc5OTAwMDAwMDddLFs5MC4xNzMzNTg4MjMwMDAwNiwyNC4xMDgwMjAxODcwMDAwMl0sWzkwLjE3Njk5ODI4NTAwMDA4LDI0LjA3NDc5ODg3ODAwMDAyXSxbOTAuMTU3NzYxMzY1MDAwMDYsMjQuMDY0MjczMDcyMDAwMDVdLFs5MC4xNDc1NTI2MTgwMDAwOCwyNC4wMzM1NDMwMDUwMDAwN10sWzkwLjE3NjM3ODU3NjAwMDA1LDI0LjAwMDMzMDA2NDAwMDAyXSxbOTAuMTkxNzgxNDMyMDAwMDgsMjQuMDE0MDQwMTM0MDAwMDNdLFs5MC4yMzk3MTM4NzIwMDAwNCwyNC4wMDkyMTA5NTEwMDAwNl0sWzkwLjI0NjAyOTgwNTAwMDAzLDI0LjAzMzMxOTk1NzAwMDA2XSxbOTAuMjYwMDI2MTgwMDAwMDcsMjQuMDE0ODI3NTM3MDAwMDNdLFs5MC4yNTAwNjc3MjcwMDAwNCwyMy45OTIxNjQwMDMwMDAwM10sWzkwLjI2MDEzMjU2MTAwMDAzLDIzLjk3MTEzMTMwOTAwMDA0XSxbOTAuMjk3ODEyMDM0MDAwMDYsMjMuOTYxODc0MTI4MDAwMDNdLFs5MC4zMDAxNzM5NTYwMDAwNCwyMy45NDg4MzU4NzQwMDAwNV0sWzkwLjM0MDg0MjE2MDAwMDA4LDIzLjk1NTU2OTgzNzAwMDA0XSxbOTAuMzUwMTg3NDEyMDAwMDgsMjMuODgyMzM0ODg4MDAwMDZdLFs5MC4zNzcxNTMwMzkwMDAwNiwyMy44OTgwNDAwOTEwMDAwNF0sWzkwLjM5NTcxNTMzMDAwMDA5LDIzLjg4MDE1NzAxMDAwMDA2XSxbOTAuNDM4MjAwNjI4MDAwMDYsMjMuOTAxMDYzNDE4MDAwMDRdLFs5MC40NTc4MDA2MjAwMDAwNiwyMy44OTY0NDcxMDAwMDAwNV0sWzkwLjQ3MTI2OTQyMzAwMDA4LDIzLjg0NzMwODI5NjAwMDA1XSxbOTAuNTAyMjcyMTc3MDAwMDcsMjMuODU3OTAwODIzMDAwMDJdLFs5MC41MjU2NzY0NTYwMDAwNCwyMy44OTY1MTQwNTkwMDAwM10sWzkwLjU0OTM3NDEzODAwMDA4LDIzLjg4NTI3MzY1MzAwMDA3XSxbOTAuNTcwNjY3ODcwMDAwMDgsMjMuODk0OTg5MzEzMDAwMDVdLFs5MC41NjAzOTEyMjkwMDAwNiwyMy45MTEwOTUzNDYwMDAwMl0sWzkwLjYwODE1MzM4MDAwMDAzLDIzLjkyMTUxNzAwMTAwMDA0XSxbOTAuNjE4MDk0MjEwMDAwMDQsMjMuOTY4NDE4MTU3MDAwMDNdLFs5MC42NTc5NzIyODEwMDAwNywyNC4wMTM0NzMyMDkwMDAwNF0sWzkwLjYzNTMzNDA1MjAwMDA4LDI0LjA3MDc3ODcxNTAwMDA3XSxbOTAuNjM5Njk0ODYxMDAwMDcsMjQuMTA2MDg3MDQ4MDAwMDZdLFs5MC42NTY2MjkxMTMwMDAwNiwyNC4wOTIzMDM3NTUwMDAwNV0sWzkwLjcwMjk2MSwyNC4xMDY1NjA0NjgwMDAwNV0sWzkwLjY3NjMwMjUwNjAwMDA3LDI0LjExNTUyOTY4MzAwMDAzXSxbOTAuNjk1MzAwMDExMDAwMDksMjQuMTM5OTU4MzExMDAwMDRdLFs5MC42NzE2ODk0MTMwMDAwOCwyNC4yMDQ4NDMwNjQwMDAwNF0sWzkwLjY4Mjk1MDMwMDAwMDA3LDI0LjI0NDM0ODMyMDAwMDAzXSxbOTAuNjQ5MjkzNDMzMDAwMDgsMjQuMjU3OTg3ODQ5MDAwMDddLFs5MC42MjE4Mjc0MTQwMDAwNSwyNC4yNjg1NTg0OTIwMDAwN10sWzkwLjU3MjkwODM3NzAwMDAzLDI0LjI0NjQ1MTI2MzAwMDA0XSxbOTAuNTIxMDYyNzI0MDAwMDUsMjQuMjg3NzAyOTU1MDAwMDRdLFs5MC41MjkwMTA4NDUwMDAwNywyNC4zMDMyOTQ3ODgwMDAwN11dXV19fQ==" + } + } + ] + }, + { + "resourceType": "Location", + "identifier": [ + { + "system": "http://opencrvs.org/specs/id/geo-id", + "value": "3" + }, + { "system": "http://opencrvs.org/specs/id/bbs-code", "value": "30" }, + { + "system": "http://opencrvs.org/specs/id/jurisdiction-type", + "value": "DIVISION" + } + ], + "name": "Dhaka", + "alias": ["ঢাকা"], + "description": "division=3", + "status": "active", + "mode": "instance", + "partOf": { "reference": "Location/0" }, + "type": { + "coding": [ + { + "system": "http://opencrvs.org/specs/location-type", + "code": "ADMIN_STRUCTURE" + } + ] + }, + "physicalType": { + "coding": [{ "code": "jdn", "display": "Jurisdiction" }] + }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/location-boundary-geojson", + "valueAttachment": { + "contentType": "application/geo+json", + "data": "eyJ0eXBlIjoiRmVhdHVyZSIsInByb3BlcnRpZXMiOnsiTmFtZSI6IkRoYWthIiwiZGVzY3JpcHRpb24iOm51bGwsImFsdGl0dWRlTW9kZSI6ImNsYW1wVG9Hcm91bmQiLCJBRE0xX0VOIjoiRGhha2EiLCJBRE0xX1JFRiI6IiIsIkFETTFBTFQxRU4iOiIiLCJBRE0wX0VOIjoiQmFuZ2xhZGVzaCIsInZhbGlkVG8iOiI8TnVsbD4iLCJJblBvbHlfRklEIjoiMiIsInZhbGlkT24iOiIyMDE4LTA0LTEwIiwiQURNMUFMVDJFTiI6IiIsIkFETTBfUENPREUiOiJCRCIsIkFETTFfUENPREUiOiIzMCIsIlNpbVBnbkZsYWciOiIwIiwiTWluU2ltcFRvbCI6IjAuMDA4OTkzIiwiRklEIjoiMiIsImRhdGUiOiIyMDE1LTAxLTAxIiwiU2hhcGVfTGVuZyI6IjEyLjE5Nzc1OCIsIk1heFNpbXBUb2wiOiIwLjAwODk5MyIsIkZpZWxkXzEiOiJEaGFrYSJ9LCJnZW9tZXRyeSI6eyJ0eXBlIjoiTXVsdGlQb2x5Z29uIiwiY29vcmRpbmF0ZXMiOltbW1s5MC40NTMxNzA2MTUwMDAwMywyMy4wMDQwODUyNjEwMDAwNl0sWzkwLjQ1ODM3MzkwODAwMDA2LDIzLjAwNDAzNTI4MjAwMDA3XSxbOTAuNDU2NjU0Nzc2MDAwMDUsMjMuMDA2MDYxNDU0MDAwMDhdLFs5MC40NTE3MzU3MTEwMDAwOCwyMy4wMDYzMjQ1NDMwMDAwNl0sWzkwLjQ1MzE3MDYxNTAwMDAzLDIzLjAwNDA4NTI2MTAwMDA2XV1dLFtbWzkwLjQ4OTIxNzQ3NzAwMDA3LDIzLjAxMzk1MTg5MDAwMDA0XSxbOTAuNDg5ODA4MzU5MDAwMDUsMjMuMDIyNTI5OTc4MDAwMDJdLFs5MC40Nzc3MDczNTAwMDAwNiwyMy4wMTYyNzY0MTIwMDAwMl0sWzkwLjQ3NTcxNDExNDAwMDA4LDIzLjAwNzU4Mjc4OTAwMDAzXSxbOTAuNDg5MjE3NDc3MDAwMDcsMjMuMDEzOTUxODkwMDAwMDRdXV0sW1tbOTAuNTUxNzEyMzM5MDAwMDYsMjMuMTAwNDMwOTYzMDAwMDZdLFs5MC41NTMzNjk1NDIwMDAwNCwyMy4xMDEzODA5NzkwMDAwNl0sWzkwLjU1MzY4MTMzOTAwMDA0LDIzLjEwMTgxMDA4NzAwMDA1XSxbOTAuNTUzODkwMzg1MDAwMDUsMjMuMTAyMzM0OTY4MDAwMDRdLFs5MC41NTM4OTI3MzgwMDAwNiwyMy4xMDI5MDg1NjEwMDAwNV0sWzkwLjU1Mzc5ODU4OTAwMDA1LDIzLjEwNTI1MTI5MTAwMDA2XSxbOTAuNTUzNzQ5MDg3MDAwMDksMjMuMTA1NjgxNjY2MDAwMDddLFs5MC41NTM0NDA0MTcwMDAwNSwyMy4xMDYwMTc1MzkwMDAwNV0sWzkwLjU1MjkyMzA4MzAwMDA1LDIzLjEwNTkyMzM3NTAwMDAzXSxbOTAuNTUyNTU5OTkwMDAwMDgsMjMuMTA1NjM3ODQ0MDAwMDZdLFs5MC41NTAxNzQ0NTQwMDAwNiwyMy4xMDM0NDc3NDQwMDAwNV0sWzkwLjU0ODMwNzI0NjAwMDA0LDIzLjEwMTczMzQzMTAwMDA3XSxbOTAuNTQ3MTExMDIyMDAwMDgsMjMuMDk5OTIwNzk3MDAwMDRdLFs5MC41NDY2OTQxODAwMDAwMywyMy4wOTkwMTQ0MTIwMDAwM10sWzkwLjUyNjU5NzQ3MjAwMDA1LDIzLjA4Njc1MDIxNjAwMDA0XSxbOTAuNTE5MTQ0OTg4MDAwMDUsMjMuMDgzNTI0MDc3MDAwMDVdLFs5MC41MTU0NzUzMDIwMDAwOCwyMy4wODMxMDU4OTIwMDAwNV0sWzkwLjUxNTAxMDg1OTAwMDA5LDIzLjA4MzI1MDgwODAwMDA2XSxbOTAuNTE0OTYwMDgzMDAwMDYsMjMuMDgzNTM3Nzc2MDAwMDddLFs5MC41MTQ5NjExNzYwMDAwNCwyMy4wODM4MjQ1NzYwMDAwNF0sWzkwLjUxNTAxNTIyODAwMDA0LDIzLjA4NDM5ODAwNTAwMDAzXSxbOTAuNTE1MTcxNTA0MDAwMDgsMjMuMDg0NzMyMjg4MDAwMDVdLFs5MC41MTU0MzEwODYwMDAwNCwyMy4wODUxMTM2NTkwMDAwNl0sWzkwLjUxNTc5NDc3NzAwMDA1LDIzLjA4NTU5MDY2NDAwMDA1XSxbOTAuNTE1ODQ3ODYxMDAwMDUsMjMuMDg2MDY4Njg0MDAwMDVdLFs5MC41MTU2NDI4NzcwMDAwNiwyMy4wODY0MDM1ODEwMDAwN10sWzkwLjUxNTM4NDMxOTAwMDA4LDIzLjA4NjQ1MjQxMzAwMDA3XSxbOTAuNTE0OTcwNDYyMDAwMDYsMjMuMDg2MjYyMzczMDAwMDddLFs5MC41MTQ1NTI5NjYwMDAwNSwyMy4wODUxMTY1MjAwMDAwNF0sWzkwLjUxNDQ0Mzk1NDAwMDA2LDIzLjA4MzczMDg0ODAwMDA3XSxbOTAuNTE0ODUwNTg2MDAwMDgsMjMuMDgxODY1MzAzMDAwMDNdLFs5MC41MTU2MTk5MDgwMDAwOCwyMy4wODAzODA3ODgwMDAwN10sWzkwLjUxNzU3MzA2ODAwMDA1LDIzLjA3Nzc5MzE3MDAwMDA2XSxbOTAuNTE4MzQ1NjM2MDAwMDUsMjMuMDc3MTY5NjA3MDAwMDNdLFs5MC41MTg4MDk2ODYwMDAwNSwyMy4wNzY5Mjg3MDYwMDAwNV0sWzkwLjUxOTM3NjY3NDAwMDA2LDIzLjA3NjY0MDAzOTAwMDA0XSxbOTAuNTE5NzkwNTY3MDAwMDksMjMuMDc2Njg2NjY1MDAwMDddLFs5MC41MTk5OTczNjMwMDAwNywyMy4wNzY4MjkzODYwMDAwNF0sWzkwLjUyMDUyMTE4NjAwMDA1LDIzLjA3ODY0Mzg5NTAwMDAzXSxbOTAuNTIwNzMyMjc4MDAwMDgsMjMuMDc5NzQyOTg3MDAwMDNdLFs5MC41MjE5ODI1NDgwMDAwNCwyMy4wODI0MTU1MDMwMDAwNV0sWzkwLjUyMjM0NTY0MjAwMDA2LDIzLjA4Mjg5MjQ5NDAwMDA4XSxbOTAuNTI0MzY1MDM1MDAwMDcsMjMuMDg0MDMzMDE2MDAwMDNdLFs5MC41NDIwMTg4NDYwMDAwOCwyMy4wOTI4MTYzMDMwMDAwNl0sWzkwLjU0MjY5MTg5NTAwMDA4LDIzLjA5MzEwMDc5MjAwMDAzXSxbOTAuNTQzMTU2NTMyMDAwMDcsMjMuMDkzMDAzNzgyMDAwMDRdLFs5MC41NDMxNTQyMjYwMDAwNywyMy4wOTI0MzAxODcwMDAwNV0sWzkwLjU0MTQzOTk2ODAwMDA4LDIzLjA5MDE0MTY1NzAwMDA2XSxbOTAuNTQwNTA1MTY4MDAwMDQsMjMuMDg4OTQ5NjYxMDAwMDddLFs5MC41Mzk3MjcxMDMwMDAwOCwyMy4wODgxODczMjkwMDAwNV0sWzkwLjUzOTIwODg5NTAwMDA2LDIzLjA4Nzg1NDg3MjAwMDA0XSxbOTAuNTM4NzQyMzY3MDAwMDUsMjMuMDg3NDczNjg2MDAwMDddLFs5MC41Mzg2MzY5NTMwMDAwNCwyMy4wODY5MDA0NDEwMDAwN10sWzkwLjUzODczNzk4ODAwMDA0LDIzLjA4NjM3NDQ3OTAwMDAzXSxbOTAuNTM5NDA5ODUyMDAwMDYsMjMuMDg2MzcyMTg2MDAwMDZdLFs5MC41NDAwODE0OTEwMDAwOCwyMy4wODY0NjUzMDMwMDAwN10sWzkwLjU0MDU5ODc0MjAwMDA0LDIzLjA4NjU1OTUxMTAwMDA4XSxbOTAuNTQxMzIzMjA4MDAwMDUsMjMuMDg2ODkxMjU2MDAwMDZdLFs5MC41NDI1MTUzOTgwMDAwMywyMy4wODc3NDc1NzEwMDAwMl0sWzkwLjU0MzI5MjcwNzAwMDAzLDIzLjA4ODMxODUwMzAwMDA0XSxbOTAuNTQzNzA3NTcwMDAwMDQsMjMuMDg4NzQ3Mjc5MDAwMDddLFs5MC41NDUzMTYyMTAwMDAwNywyMy4wOTA0MTUxMjIwMDAwMl0sWzkwLjU0OTI2MTk4NjAwMDAzLDIzLjA5NTE4MTEwMTAwMDA0XSxbOTAuNTQ5ODMzODcyMDAwMDgsMjMuMDk1OTQ0MTAzMDAwMDJdLFs5MC41NTE3MTIzMzkwMDAwNiwyMy4xMDA0MzA5NjMwMDAwNl1dXSxbW1s5MC41NDIwNTk3NzAwMDAwNCwyMy4zMzI5NDY1NzEwMDAwNF0sWzkwLjU0MjUwOTU3NDAwMDA2LDIzLjMzNDExMjUxMTAwMDA2XSxbOTAuNTQyNTEwNTQ2MDAwMDcsMjMuMzM0MzUxMzE0MDAwMDZdLFs5MC41NDIzNTU2NTAwMDAwNSwyMy4zMzQ0NDc4MjQwMDAwNV0sWzkwLjU0MDE4MzU4NDAwMDAzLDIzLjMzNDkzMjk0MzAwMDA3XSxbOTAuNTM2NjEyOTY0MDAwMDgsMjMuMzM1MTg0NTg3MDAwMDddLFs5MC41MzQyODI4OTkwMDAwNiwyMy4zMzUwMDExNjYwMDAwNF0sWzkwLjUzMzAzODMyMTAwMDA1LDIzLjMzNDQzMTgyMTAwMDA3XSxbOTAuNTMxNzQwMTE0MDAwMDYsMjMuMzMzMjg5MDU4MDAwMDVdLFs5MC41MzA1NDIzNTkwMDAwNCwyMy4zMzE1NzIzNTYwMDAwNF0sWzkwLjUyOTMxMzUwNzAwMDA0LDIzLjMyODMyNTgwNjAwMDA3XSxbOTAuNTI5MjYwMjIyMDAwMDYsMjMuMzI3OTkxNzcwMDAwMDRdLFs5MC41MjkyNTcwMDEwMDAwOCwyMy4zMjcxNzg4MjEwMDAwOF0sWzkwLjUyOTYxNDQwMjAwMDA1LDIzLjMyNTg4NzA0MDAwMDA1XSxbOTAuNTMwMDI0ODU3MDAwMDYsMjMuMzI1MDI1MjcxMDAwMDddLFs5MC41MzA1NDAxNzYwMDAwNCwyMy4zMjQ0MDI1MTYwMDAwOF0sWzkwLjUzMDg0OTM5NjAwMDA2LDIzLjMyNDA2NjY4NzAwMDAzXSxbOTAuNTM0NjIwODEyMDAwMDcsMjMuMzIyNDI4NTExMDAwMDZdLFs5MC41NDExNjM2NzAwMDAwNiwyMy4zMjEyMTE0NTYwMDAwN10sWzkwLjU1MjIxMzcwODAwMDA3LDIzLjMyMTIyMDMzMjAwMDA1XSxbOTAuNTUyNjI3NzU1MDAwMDYsMjMuMzIxMjY2ODU5MDAwMDVdLFs5MC41NTMxOTc4ODEwMDAwNywyMy4zMjEzNjAyNTcwMDAwNF0sWzkwLjU1NjA5ODQzNjAwMDA3LDIzLjMyMTkyMzU3OTAwMDA0XSxbOTAuNTU2NjY4NzUyMDAwMDYsMjMuMzIyMjA4MzQ3MDAwMDddLFs5MC41NTcwMzQyNDIwMDAwNCwyMy4zMjI5MjQwMzAwMDAwMl0sWzkwLjU1ODkxNjA5NDAwMDA0LDIzLjMyNzM2MjYyMjAwMDA3XSxbOTAuNTU5MDczMTcxMDAwMDgsMjMuMzI3NzkyMjUxMDAwMDZdLFs5MC41NTg5NzEwNTcwMDAwNiwyMy4zMjgwNzk0MDgwMDAwNl0sWzkwLjU1ODc2NDAxNzAwMDA0LDIzLjMyODEyODEzNDAwMDA1XSxbOTAuNTU3ODg0MzEyMDAwMDYsMjMuMzI4MTMxMjY5MDAwMDRdLFs5MC41NTcxMDcxMjcwMDAwNSwyMy4zMjc5NDI2NTIwMDAwNV0sWzkwLjU1NjI3Njk4NTAwMDA3LDIzLjMyNzUxNTQxMDAwMDA1XSxbOTAuNTU1NTUxMzcxMDAwMDQsMjMuMzI3MjMxMTkyMDAwMDZdLFs5MC41NTQ5ODE0MTcwMDAwOCwyMy4zMjcxODU3ODgwMDAwN10sWzkwLjU1NDEwMTUyMTAwMDA2LDIzLjMyNzE0MDkxODAwMDA1XSxbOTAuNTUyODU5MTA3MDAwMDcsMjMuMzI3MDk3MzE5MDAwMDddLFs5MC41NTE5Nzk0MTEwMDAwNSwyMy4zMjcxMDA0MjEwMDAwN10sWzkwLjU1MTYxNzY4NTAwMDA1LDIzLjMyNzI5MzA3ODAwMDAzXSxbOTAuNTUxNjE5NjU5MDAwMDQsMjMuMzI3NzcxMjQ5MDAwMDJdLFs5MC41NTIwODcwNzEwMDAwNywyMy4zMjgxNTE4MDUwMDAwNl0sWzkwLjU1Mjc2MTEzMzAwMDA1LDIzLjMyODM4ODIzNTAwMDAzXSxbOTAuNTYwOTQ2OTM1MDAwMDYsMjMuMzMwMjcxMjgxMDAwMDJdLFs5MC41NjQ4NTY2MzYwMDAwNiwyMy4zMzA3MzU0MDkwMDAwNl0sWzkwLjU2ODg5NDMzNDAwMDA1LDIzLjMzMDgxNjIwODAwMDA0XSxbOTAuNTcwOTE1MDI1MDAwMDMsMjMuMzMxMjg3MDMyMDAwMDNdLFs5MC41NzE0MzQ4NzQwMDAwMywyMy4zMzE3NjI3NDgwMDAwN10sWzkwLjU3MTY5NTcyNTAwMDA0LDIzLjMzMjI4Nzk2MDAwMDAzXSxbOTAuNTcyMDYxNzMzMDAwMDYsMjMuMzMzMDk5MDEyMDAwMDVdLFs5MC41NzE4MDU3OTIwMDAwOCwyMy4zMzM3MjE1MjAwMDAwNF0sWzkwLjU2NTU3MDU3MzAwMDA2LDIzLjMzNDMxNzc0MTAwMDA2XSxbOTAuNTU2NjE2ODE2MDAwMDMsMjMuMzM0NTQxMTk2MDAwMDNdLFs5MC41NTI3MzQyODgwMDAwNywyMy4zMzQ0NTg5NzAwMDAwN10sWzkwLjU0ODA5ODY2MDAwMDA1LDIzLjMzMzgwNjI2MjAwMDA1XSxbOTAuNTQyMDU5NzcwMDAwMDQsMjMuMzMyOTQ2NTcxMDAwMDRdXV0sW1tbOTAuMDg2NTk3OTY2MDAwMDYsMjQuNzc1ODU3MjM2MDAwMDRdLFs5MC4wNzg1NTMzOTkwMDAwNCwyNC43ODU0MTY5MjAwMDAwNV0sWzkwLjA3MjM2MTQ4NTAwMDA0LDI0Ljc4NjA1MDU0NjAwMDA3XSxbOTAuMDYyNTU5NjE3MDAwMDMsMjQuNzgwNzA2NjY4MDAwMDVdLFs5MC4wNDUzMDgzODEwMDAwNCwyNC43NzU0MzIzMTYwMDAwNF0sWzkwLjA0NTA2NzYxMjAwMDA4LDI0Ljc3NTU0NDE1MzAwMDA2XSxbOTAuMDQ0ODgwMzEwMDAwMDUsMjQuNzc1NjI1NDkyMDAwMDddLFs5MC4wNDI5MzkyODEwMDAwMywyNC43NzY0NDYyMjkwMDAwNF0sWzkwLjA0MjQ4NzA4NjAwMDA1LDI0Ljc3NjYyNTI5MjAwMDA2XSxbOTAuMDQyMTk3NzY1MDAwMDgsMjQuNzc2NjkxOTgxMDAwMDZdLFs5MC4wNDE0ODQ5NTAwMDAwNCwyNC43NzY4MDIyNTIwMDAwNF0sWzkwLjA0MTMyNjY4MTAwMDA0LDI0Ljc3NjgxNjk3MDAwMDAzXSxbOTAuMDM4MjY4NTM5MDAwMDYsMjQuNzc3MDUzNzI5MDAwMDRdLFs5MC4wMzc4ODI0MzgwMDAwNSwyNC43NzcwNjA2MDEwMDAwN10sWzkwLjAzMjIyMjU3NDAwMDA2LDI0Ljc3NzAzNDgzMjAwMDAzXSxbOTAuMDMyMTUxNDcyMDAwMDcsMjQuNzc3MDIwNzM2MDAwMDVdLFs5MC4wMzIwMDMzODgwMDAwOCwyNC43NzY5Nzg5OTYwMDAwM10sWzkwLjAzMTg1NTYxMjAwMDA3LDI0Ljc3NjkzNzI1NzAwMDA0XSxbOTAuMDMxNzE1ODcyMDAwMDYsMjQuNzc2ODgzNjYzMDAwMDRdLFs5MC4wMzE1OTM3NTQwMDAwOCwyNC43NzY4MzI4ODcwMDAwN10sWzkwLjAyNzAyMzk0NjAwMDA0LDI0Ljc3NDIwMzk0MTAwMDA1XSxbOTAuMDI1OTE1Mjc3MDAwMDgsMjQuNzczNDYyNDI5MDAwMDZdLFs5MC4wMjQ1Nzg3NjMwMDAwOCwyNC43NzI1MjA1NjIwMDAwN10sWzkwLjAyNDE0MzE1NTAwMDA1LDI0Ljc3MjIwNTY2MjAwMDAzXSxbOTAuMDIzNjU0MDYxMDAwMDYsMjQuNzcxODQwNTMyMDAwMDZdLFs5MC4wMjI1MzAxOTAwMDAwNSwyNC43NzA1NTU5ODIwMDAwOF0sWzkwLjAyMjI3NzI1NDAwMDA3LDI0Ljc3MDEwMjE5MDAwMDA1XSxbOTAuMDIyMTgyOTE3MDAwMDcsMjQuNzY5Nzg0OTc0MDAwMDZdLFs5MC4wMjIxMTA4MjEwMDAwNywyNC43NjkzNzQwNTUwMDAwN10sWzkwLjAyMjEwMzY4MjAwMDA4LDI0Ljc2OTIxMDkyNTAwMDA0XSxbOTAuMDIyMTAzNjU5MDAwMDQsMjQuNzY5MDc4Mjc3MDAwMDZdLFs5MC4wMjIxMjMzNzMwMDAwNiwyNC43Njg2ODAzMjUwMDAwNV0sWzkwLjAyMjE0MzEwODAwMDA4LDI0Ljc2ODQxMzg5NDAwMDA1XSxbOTAuMDIyMTYyODQ2MDAwMDcsMjQuNzY4MTYxMDExMDAwMDddLFs5MC4wMjIyNTA0ODUwMDAwOSwyNC43NjczMzE3OTgwMDAwNF0sWzkwLjAyMjI5MTU1NzAwMDA3LDI0Ljc2NzEwOTM5MzAwMDA2XSxbOTAuMDIyMzgwNTIwMDAwMDcsMjQuNzY2NzgzMTE5MDAwMDJdLFs5MC4wMjI0Mzk4NDEwMDAwNSwyNC43NjY2MzQwOTIwMDAwNl0sWzkwLjAxOTYwMjc5MDAwMDA4LDI0Ljc1NDIwODkwMTAwMDAzXSxbOTAuMDA4NDUzOTU1MDAwMDUsMjQuNzQ1ODc2NzIzMDAwMDRdLFs4OS45OTk2MDQyNDUwMDAwNiwyNC43NDIxOTE1NTQwMDAwNF0sWzg5Ljk5MjE1MjkxODAwMDA0LDI0LjczNjkyMjYxMTAwMDA3XSxbODkuOTkyMTI3Mjc2MDAwMDgsMjQuNzM2ODExNDA5MDAwMDRdLFs4OS45OTIxMTczOTQwMDAwNSwyNC43MzY3MDgxMTEwMDAwNF0sWzg5Ljk5MjE4MTI2MDAwMDA1LDI0LjczMzM5NzUxMDAwMDAzXSxbODkuOTkyMjQyODExMDAwMDQsMjQuNzMyNTA3MzQ3MDAwMDJdLFs4OS45OTIzNjQ5NzcwMDAwOCwyNC43MzA3OTQ3NTgwMDAwNl0sWzg5Ljk5MjQzMDg0MzAwMDA4LDI0LjczMDA3MTY3NzAwMDA3XSxbODkuOTkyNDczODA2MDAwMDgsMjQuNzI5ODkxMDUwMDAwMDVdLFs4OS45OTI1ODE2ODQwMDAwNywyNC43MjkzNDEyNjQwMDAwM10sWzg5Ljk5MjY2NzMxODAwMDAzLDI0LjcyODY5NDM4NzAwMDA4XSxbODkuOTkyNjU0NjYzMDAwMDUsMjQuNzI4NDQxNTA0MDAwMDVdLFs4OS45OTI1NzY0OTAwMDAwMywyNC43MjgzMzkzMzEwMDAwM10sWzg5Ljk4OTQyMDAzNDAwMDAzLDI0LjcyNzQ2NzAzOTAwMDAzXSxbODkuOTgwODAxMjYyMDAwMDYsMjQuNzI1MDk0Mjg2MDAwMDZdLFs4OS45NzQwMTQ5MjUwMDAwNiwyNC43MjM4NTI1NjMwMDAwNF0sWzg5Ljk3Mzg1MTQ3MDAwMDA2LDI0LjcyMzgyOTM5MTAwMDA0XSxbODkuOTczNzQwODQ4MDAwMDMsMjQuNzIzODI4ODA3MDAwMDddLFs4OS45NzM1MTI0OTkwMDAwNCwyNC43MjM4MjgyMDMwMDAwNF0sWzg5Ljk3MzEwODkzMjAwMDA2LDI0LjcyMzg5OTgxNzAwMDA3XSxbODkuOTcyMDY2MzI4MDAwMDQsMjQuNzI0MTAxMTQyMDAwMDVdLFs4OS45NzE3MzY2MDUwMDAwNSwyNC43MjQxODc0NDQwMDAwNV0sWzg5Ljk3MTUxNzgyMDAwMDAzLDI0LjcyNDI1MTE4NzAwMDA1XSxbODkuOTcxMDUyNDMwMDAwMDQsMjQuNzI0NDExOTczMDAwMDNdLFs4OS45NzA4NjkxNzYwMDAwNiwyNC43MjQ0ODQxOTAwMDAwNl0sWzg5Ljk3MDY5NDI2NDAwMDAzLDI0LjcyNDU2NDg3MzAwMDA4XSxbODkuOTY1MzY5MTkwMDAwMDUsMjQuNzI3MDgwNzAzMDAwMDddLFs4OS45NTc3ODk3NjMwMDAwNSwyNC43MzExMTE4ODcwMDAwNV0sWzg5Ljk1NzY3NTQwMzAwMDA1LDI0LjczMTE4MTg0ODAwMDA2XSxbODkuOTU3NjUyNTMyMDAwMDUsMjQuNzMxMTk1OTUzMDAwMDVdLFs4OS45NTc0MzU4NjAwMDAwMywyNC43MzEzNDU0NzcwMDAwNV0sWzg5Ljk1NzE5MjYwMzAwMDA3LDI0LjczMTUyMjA4NTAwMDA1XSxbODkuOTU3MTY3MjU3MDAwMDQsMjQuNzMxNTQ1Nzg2MDAwMDNdLFs4OS45NTcxNDc3ODAwMDAwNywyNC43MzE1NzExODIwMDAwNF0sWzg5Ljk1NzAxODU1MTAwMDAzLDI0LjczMTc0MTA0OTAwMDA1XSxbODkuOTU2OTc2NDg5MDAwMDYsMjQuNzMxODQ2MDI5MDAwMDVdLFs4OS45NTY5NTM4ODQwMDAwOSwyNC43MzE5ODI2MjMwMDAwOF0sWzg5Ljk1Njk2MzY3NzAwMDAzLDI0LjczMjI2MzczMjAwMDA0XSxbODkuOTU2OTg0MDIzMDAwMDgsMjQuNzMyNDA0MjkwMDAwMDNdLFs4OS45NTcwMzQ2NDQwMDAwMywyNC43MzI1NzU5MDIwMDAwNl0sWzg5Ljk1NzA5MTQ3NTAwMDA4LDI0LjczMjY1ODMzMTAwMDA0XSxbODkuOTU3MjA0NTIwMDAwMDYsMjQuNzMyODIyMDU5MDAwMDZdLFs4OS45NTczMzk1MDkwMDAwNiwyNC43MzI5Nzg0NTQwMDAwM10sWzg5Ljk1NzU1Njk4MTAwMDA0LDI0LjczMzIwODgxOTAwMDAzXSxbODkuOTU3NjY1NzIxMDAwMDcsMjQuNzMzMzA5ODkxMDAwMDNdLFs4OS45NTc3NDQ4MTIwMDAwNCwyNC43MzMzNjY5MjQwMDAwNV0sWzg5Ljk1Nzg2Mzc2MjAwMDA0LDI0LjczMzQzODA3OTAwMDA1XSxbODkuOTU4MTY3MTYyMDAwMDUsMjQuNzMzNjEzMTUwMDAwMDVdLFs4OS45NTgzOTUxODMwMDAwNSwyNC43MzM3Mjg5MjkwMDAwNV0sWzg5Ljk1OTUwNTM2MDAwMDA0LDI0LjczNDE2MTA1MTAwMDA2XSxbODkuOTYwODg3NDk2MDAwMDUsMjQuNzM0NTY2MTQxMDAwMDddLFs4OS45NjEyMzMyNzcwMDAwOCwyNC43MzQ2MjA0MjEwMDAwNV0sWzg5Ljk2MTM5NzM2MzAwMDA2LDI0LjczNDY0NTg2NDAwMDA3XSxbODkuOTYxOTYwMDkzMDAwMDcsMjQuNzM0NjU2NzMzMDAwMDddLFs4OS45NjIwNDc4NTcwMDAwNywyNC43MzQ2NTg0NDgwMDAwNl0sWzg5Ljk2MjEzMzEzMzAwMDA3LDI0LjczNDcwMjQ5ODAwMDA1XSxbODkuOTYyMTQ5ODE2MDAwMDgsMjQuNzM0NzIxNjk0MDAwMDNdLFs4OS45NjIyNTcwMDkwMDAwNCwyNC43MzQ4NDU5MDUwMDAwNF0sWzg5Ljk2MjM0NDEwNzAwMDA0LDI0LjczNTAwNTY3MTAwMDA3XSxbODkuOTYyNDAwODkyMDAwMDYsMjQuNzM1MjYwMjYwMDAwMDhdLFs4OS45NjIzNzMzMDMwMDAwNSwyNC43MzU1Mzc5NzAwMDAwNV0sWzg5Ljk1ODA5NzIyNDAwMDA4LDI0Ljc0NDA1MTgyNzAwMDA4XSxbODkuOTU4MDcyMTc4MDAwMDcsMjQuNzQ0MDkzNTkwMDAwMDNdLFs4OS45NTc5NjMwMjIwMDAwNiwyNC43NDQyNzUzMTgwMDAwNl0sWzg5Ljk1NzkyMTkwNjAwMDA4LDI0Ljc0NDMwOTczOTAwMDA3XSxbODkuOTU3ODM0NDI1MDAwMDQsMjQuNzQ0MzcyMzcxMDAwMDVdLFs4OS45NTc3NzA0MzcwMDAwOCwyNC43NDQ0MTgwNzQwMDAwN10sWzg5Ljk1NjQwOTE2NDAwMDA0LDI0Ljc0NTA1NjA5NzAwMDAzXSxbODkuOTU2MjM4ODQ5MDAwMDQsMjQuNzQ1MTMzMzc5MDAwMDRdLFs4OS45NTYwNDQ3MzgwMDAwNiwyNC43NDUyMTAwOTAwMDAwNl0sWzg5Ljk1NTY2ODI2NTAwMDA0LDI0Ljc0NTM0ODgzOTAwMDAzXSxbODkuOTU1MDQ5NzcxMDAwMDYsMjQuNzQ1NTc2NzAwMDAwMDddLFs4OS45NTQ2MzI1MTMwMDAwNCwyNC43NDU2ODMyNTcwMDAwNV0sWzg5Ljk1NDQ5NzE0ODAwMDA5LDI0Ljc0NTY4NjAzOTAwMDA4XSxbODkuOTQ1MzEwOTMwMDAwMDYsMjQuNzQ1NTc1NzIwMDAwMDNdLFs4OS45NDM4NzQ1NzUwMDAwNSwyNC43NDUzMTgzNTUwMDAwNV0sWzg5Ljk0MDkyNjY1ODAwMDA4LDI0Ljc0OTYzNTk1ODAwMDA2XSxbODkuOTQxMjAzMDUyMDAwMDUsMjQuNzUwNzUyMDE3MDAwMDJdLFs4OS45NDEyNjAxMDMwMDAwNSwyNC43NTEwMTk1OTYwMDAwNV0sWzg5Ljk0MTI2LDI0Ljc1MTIzOTczOTAwMDAzXSxbODkuOTQxMjU5ODc0MDAwMDgsMjQuNzUxNTA2MTY2MDAwMDddLFs4OS45NDExNzM4OTIwMDAwNSwyNC43NTE2Mzg3ODMwMDAwM10sWzg5Ljk0MDk2NDU1NDAwMDA2LDI0Ljc1MTg1MDk0MDAwMDA1XSxbODkuOTM1NjIyOTgwMDAwMDYsMjQuNzU2NTgwMDk2MDAwMDVdLFs4OS45MjYxMjgzOTAwMDAwMywyNC43NTQ0Nzc1OTQwMDAwNF0sWzg5LjkyMTU5MTQ0NzAwMDA4LDI0Ljc0NTY5MTYyODAwMDAzXSxbODkuOTExNTg3Mzk3MDAwMDYsMjQuNzM2MTI3OTQzMDAwMDRdLFs4OS45MTEzNzU1MzYwMDAwNCwyNC43MzU5NDM4MDEwMDAwOF0sWzg5LjkxMTA2NTEzMzAwMDA4LDI0LjczNTcwNDI4NDAwMDA2XSxbODkuOTA3NzYwNzY5MDAwMDUsMjQuNzM0Nzc3MTI0MDAwMDZdLFs4OS45MDI2MTU1OTEwMDAwOSwyNC43MzQ2NjU0OTQwMDAwN10sWzg5LjkwMjQ3MjgwMjAwMDAzLDI0LjczNDY5MjQ5NTAwMDA1XSxbODkuODk1MDgxMzQ5MDAwMDcsMjQuNzM2NDA0NjE0MDAwMDRdLFs4OS44OTE5NDcxOTkwMDAwNywyNC43Mzc4MTE4NjIwMDAwNl0sWzg5Ljg4OTQ3NTA1OTAwMDA2LDI0LjczOTA3NjcyNDAwMDAzXSxbODkuODg5NDUxODE1MDAwMDksMjQuNzM5MTUwMDg4MDAwMDNdLFs4OS44ODkyMTYwMjMwMDAwNywyNC43NDAxOTQxNzcwMDAwM10sWzg5Ljg4Nzk1ODk2NjAwMDA0LDI0Ljc0MTc5NTE5OTAwMDAyXSxbODkuODgxOTkzMTMzMDAwMDQsMjQuNzQxODg0ODg4MDAwMDddLFs4OS44ODE0MjQ4MjkwMDAwOCwyNC43NDE4NTkwMzgwMDAwM10sWzg5Ljg4MTExMzM3OTAwMDA2LDI0Ljc0MTc5MDQ5MTAwMDA3XSxbODkuODgxMDU3NDU2MDAwMDYsMjQuNzQxNzc4MDI4MDAwMDZdLFs4OS44ODAzNTE4MTgwMDAwNywyNC43NDE1NTExMTUwMDAwNV0sWzg5Ljg4MDI0NDM3OTAwMDAzLDI0Ljc0MTQzOTgzMDAwMDA1XSxbODkuODgwMTM5MTUwMDAwMDUsMjQuNzQxMjc5NDM3MDAwMDZdLFs4OS44Nzg2NTc0MzQwMDAwNSwyNC43MzM4MTU5OTQwMDAwNV0sWzg5Ljg3ODI2NTQ0NjAwMDA2LDI0LjczMTc0NDA4MzAwMDAyXSxbODkuODc4MjI3MzQ5MDAwMDQsMjQuNzMxNTE3Njk5MDAwMDVdLFs4OS44NzgxOTc5MDUwMDAwNCwyNC43MzEyODk2MzIwMDAwM10sWzg5Ljg3ODE4NTA1MDAwMDA3LDI0LjcyODk0MzEyOTAwMDA3XSxbODkuODc4MTg2NDIwMDAwMDgsMjQuNzI4ODAyNTc4MDAwMDZdLFs4OS44NzgxOTQ4MTkwMDAwNCwyNC43MjgxMTI4MDUwMDAwMl0sWzg5Ljg3ODIxNzUzMzAwMDA1LDI0LjcyNzYzNDcyMDAwMDAzXSxbODkuODc5MjU1MjgyMDAwMDMsMjQuNzEyMTUzMzI3MDAwMDddLFs4OS44NzkzNjU1OTYwMDAwNywyNC43MTA4NTk2NTIwMDAwN10sWzg5Ljg3OTQ3Mzg0NDAwMDA3LDI0LjcxMDEwMzkxNjAwMDA0XSxbODkuODc5NTAzNjIxMDAwMDgsMjQuNzA5OTgwODg2MDAwMDRdLFs4OS44Nzk2MDc4MzYwMDAwNSwyNC43MDk1NjMyNjIwMDAwN10sWzg5Ljg3OTcwOTU1MzAwMDA1LDI0LjcwOTE3MTYwMzAwMDA3XSxbODkuODc5OTkzNDI5MDAwMDgsMjQuNzA4MjY1MjkzMDAwMDddLFs4OS44ODAxODA2NDkwMDAwNywyNC43MDc5NTE1OTgwMDAwMl0sWzg5Ljg4MDMzNTk2NjAwMDA4LDI0LjcwNzcyMTk4MzAwMDA2XSxbODkuODgxNjEwNzU5MDAwMDcsMjQuNzA2MDUzODU4MDAwMDhdLFs4OS44ODE3MTEyODQwMDAwNiwyNC43MDU5MzE0NDgwMDAwNl0sWzg5Ljg4MTg3MzM0MTAwMDA3LDI0LjcwNTc1NjAyNjAwMDA3XSxbODkuODgxOTYwMjQ2MDAwMDYsMjQuNzA1NjYyMzkyMDAwMDhdLFs4OS44ODIxNzg1NjYwMDAwNSwyNC43MDU0NTAzMjMwMDAwNF0sWzg5Ljg4MjI0ODc1MzAwMDA2LDI0LjcwNTM5MDU0NDAwMDA3XSxbODkuODgyMzQ3MzcxMDAwMDQsMjQuNzA1MzI0MDE1MDAwMDNdLFs4OS44ODI4OTc1NzgwMDAwNCwyNC43MDUwMzQzMDgwMDAwNV0sWzg5Ljg4MzAzMDE2NTAwMDA0LDI0LjcwNDk4NDE3NDAwMDA2XSxbODkuODgzMTQ1NzQ5MDAwMDUsMjQuNzA0OTQ0NzUwMDAwMDRdLFs4OS44ODM0MTQzMDgwMDAwNiwyNC43MDQ4NjAyODkwMDAwN10sWzg5Ljg4MzU2Mzg3NTAwMDA1LDI0LjcwNDgyMTQ1NzAwMDA0XSxbODkuODgzNzE3MTUyMDAwMDMsMjQuNzA0Nzc5ODA1MDAwMDRdLFs4OS44ODM5NTg4NjkwMDAwOCwyNC43MDQ2NTQ2ODAwMDAwM10sWzg5Ljg4NDEwNjkyOTAwMDA0LDI0LjcwNDU3NTc2OTAwMDAzXSxbODkuODg0MjM4NjEzMDAwMDQsMjQuNzA0NDk4NTM4MDAwMDVdLFs4OS44ODUwMTMyNzEwMDAwNSwyNC43MDQwMzA2MjQwMDAwNF0sWzg5Ljg4NTQ0MzU5NzAwMDA2LDI0LjcwMzczNTczNjAwMDA2XSxbODkuODg1NTQ2NTQ1MDAwMDcsMjQuNzAzNjYyOTk4MDAwMDNdLFs4OS44ODU2NzI2ODAwMDAwOCwyNC43MDM1Njk5NTYwMDAwMl0sWzg5Ljg4NjE1MDM0NDAwMDA0LDI0LjcwMzE5NjY0MDAwMDA0XSxbODkuODkxODgyMTExMDAwMDksMjQuNjk4Njg1Njg1MDAwMDRdLFs4OS44OTIzODc2NDIwMDAwNywyNC42OTgxOTU1MjQwMDAwM10sWzg5Ljg5Mjg2MTYzNDAwMDA0LDI0LjY5NzczNDY5MTAwMDA1XSxbODkuODk0MDk2NDI2MDAwMDMsMjQuNjk2MjkxMDg5MDAwMDZdLFs4OS44OTQyMDM3NTUwMDAwNCwyNC42OTYxMzU5MzUwMDAwM10sWzg5Ljg5NDI3MDg3NDAwMDA5LDI0LjY5NjAzNzc2NTAwMDAzXSxbODkuODk0ODkyNjMyMDAwMDUsMjQuNjk1MDc0NjUxMDAwMDNdLFs4OS44OTUzODUzOTgwMDAwMywyNC42OTQyOTg4NDkwMDAwNl0sWzg5Ljg5NTczODA5NjAwMDA2LDI0LjY5MzY2OTcwOTAwMDA2XSxbODkuODk2MDgxNTc1MDAwMDQsMjQuNjkyOTgwMTY2MDAwMDRdLFs4OS44OTYyMjYwODcwMDAwNiwyNC42OTI2ODM5MTcwMDAwN10sWzg5Ljg5NjU2MjE2NDAwMDA0LDI0LjY5MTk3MDA5NTAwMDA0XSxbODkuODk2Nzc5NzM1MDAwMDUsMjQuNjkxNDgxOTc3MDAwMDJdLFs4OS44OTY4NzQ3ODUwMDAwOCwyNC42OTEyMjQ2NDQwMDAwNF0sWzg5Ljg5Njk1MzQ0MDAwMDA2LDI0LjY5MDk5MzgyODAwMDA1XSxbODkuODk4NjEzMjI3MDAwMDYsMjQuNjg2MDU2OTY5MDAwMDVdLFs4OS44OTkxMzcyOTAwMDAwNiwyNC42ODM5MzgyOTgwMDAwNF0sWzg5Ljg5OTI0ODI5NzAwMDA0LDI0LjY4MzQxNDU0MzAwMDAzXSxbODkuODk5NDI2OTE2MDAwMDQsMjQuNjgyMTY3MTgxMDAwMDddLFs4OS44OTk0MzgwOTcwMDAwOSwyNC42ODE3MDQ4ODgwMDAwN10sWzg5Ljg5OTQwOTUzODAwMDA0LDI0LjY4MTQ5NDg4NTAwMDA2XSxbODkuODk1MzQzMzIzMDAwMDgsMjQuNjc2MjQ1MzQ0MDAwMDVdLFs4OS44OTUxODk2NDAwMDAwNywyNC42NzYwNzcwMjQwMDAwNV0sWzg5Ljg5NDkxNDY3MzAwMDA3LDI0LjY3NTc4NjEzMDAwMDA2XSxbODkuODk0NjA3ODgxMDAwMDcsMjQuNjc1NTA1OTM2MDAwMDRdLFs4OS44OTM4NjQ1NjgwMDAwOCwyNC42NzQ5NTUwNTMwMDAwOF0sWzg5Ljg5MzM2NTU2NzAwMDA1LDI0LjY3NDc4MzY2NTAwMDA2XSxbODkuODkzMDkyOTAwMDAwMDYsMjQuNjc0NzAxMDU4MDAwMDRdLFs4OS44OTI1NTA5NTQwMDAwNiwyNC42NzQ1NDc2OTkwMDAwN10sWzg5Ljg5MTQ0NzI1NDAwMDA3LDI0LjY3NDI4ODM3ODAwMDAzXSxbODkuODkxMjM1MDc3MDAwMDMsMjQuNjc0MjYzOTUzMDAwMDRdLFs4OS44OTA5NjIzNjgwMDAwMywyNC42NzQyMzI3MDgwMDAwM10sWzg5Ljg4OTk5MzgxNzAwMDA2LDI0LjY3NDEzNzE3MTAwMDA0XSxbODkuODg5ODQ4MzQ3MDAwMDUsMjQuNjc0MTI2OTA0MDAwMDVdLFs4OS44ODkwNjMyMjEwMDAwNywyNC42NzQwODc5NDEwMDAwNF0sWzg5Ljg4ODkwODc5MDAwMDA3LDI0LjY3NDA4MTA1NDAwMDA2XSxbODkuODg3OTQ2OTg3MDAwMDgsMjQuNjc0MDQwODI2MDAwMDddLFs4OS44ODc4MDI0MzkwMDAwNCwyNC42NzQwMzUwNzUwMDAwNl0sWzg5Ljg4NzI2MDY5MzAwMDAzLDI0LjY3NDAxMzc4MzAwMDA4XSxbODkuODg3MDUwMDQ3MDAwMDYsMjQuNjc0MDA2Mjg3MDAwMDVdLFs4OS44ODYwODE1NDgwMDAwNSwyNC42NzQxOTk3MzQwMDAwN10sWzg5Ljg4NDQxNDE3OTAwMDAzLDI0LjY3NDU5OTIzNTAwMDA3XSxbODkuODg0MDEzNDc2MDAwMDYsMjQuNjc0Njk3MTQzMDAwMDZdLFs4OS44ODM3ODMyOTcwMDAwNCwyNC42NzQ3Njk3ODMwMDAwNF0sWzg5Ljg4MzEwNDE0OTAwMDA4LDI0LjY3NTAyMzI2ODAwMDA3XSxbODkuODgyNjc2NDkyMDAwMDMsMjQuNjc1MjA0Njk0MDAwMDZdLFs4OS44ODE3NDAxODAwMDAwNywyNC42NzU2NDE0MjYwMDAwM10sWzg5Ljg4MTUwMzY3MTAwMDA4LDI0LjY3NTg3MTU0MzAwMDAzXSxbODkuODgxNDE3NDAwMDAwMDMsMjQuNjc1OTcwODIzMDAwMDZdLFs4OS44ODExNzQzMTEwMDAwNSwyNC42NzYyOTc0NjAwMDAwNl0sWzg5Ljg4MTEwNDQwOTAwMDA1LDI0LjY3NjM5Njc1MTAwMDAzXSxbODkuODgwNjM1MTkwMDAwMDgsMjQuNjc3MDc2NTY3MDAwMDNdLFs4OS44ODA0NzkyOTgwMDAwNywyNC42NzczMDMzNjAwMDAwNV0sWzg5Ljg4MDQ0NDk2NDAwMDA1LDI0LjY3NzM1NDcwMDAwMDAyXSxbODkuODgwNDI1Nzg1MDAwMDYsMjQuNjc3MzgzNDcyMDAwMDNdLFs4OS44Nzk5MDkyMDIwMDAwOCwyNC42NzgxNjMxNjAwMDAwNV0sWzg5Ljg3OTYxNTk1MDAwMDA3LDI0LjY3ODYxMTY3OTAwMDAzXSxbODkuODc5Mzc3NDYxMDAwMDUsMjQuNjc4OTYyMDI1MDAwMDNdLFs4OS44NzkzMDc4ODAwMDAwNiwyNC42NzkwNDY2NDAwMDAwMl0sWzg5Ljg3OTIwNzQyNDAwMDA3LDI0LjY3OTExNzExODAwMDA4XSxbODkuODc5MTIyNDI4MDAwMDcsMjQuNjc5MTcxODAzMDAwMDNdLFs4OS44Nzg4MzcyNTUwMDAwNiwyNC42NzkyNDI2OTcwMDAwNl0sWzg5Ljg3ODY4ODM3MTAwMDA3LDI0LjY3OTI0MjU3NzAwMDAyXSxbODkuODc4NTkwNzY0MDAwMDgsMjQuNjc5MjQxOTMzMDAwMDddLFs4OS44Nzg0Mjg5NTgwMDAwOSwyNC42NzkxODg3NDMwMDAwNV0sWzg5Ljg3ODEyNzg5NTAwMDAzLDI0LjY3OTA4MzUwNzAwMDAzXSxbODkuODc4MDYxNTIyMDAwMDUsMjQuNjc5MDQzOTQwMDAwMDRdLFs4OS44Nzc2NTMzMjAwMDAwNCwyNC42Nzg1NzczNTQwMDAwM10sWzg5Ljg3NzQ5NTk2ODAwMDA2LDI0LjY3ODM5MzIwOTAwMDAzXSxbODkuODc3NDI5MzMyMDAwMDgsMjQuNjc4MzA4NDg0MDAwMDddLFs4OS44NjY4OTcwMDUwMDAwNiwyNC42NjQyOTI3MTkwMDAwNl0sWzg5Ljg2NjgwMTA5MTAwMDA3LDI0LjY2NDE2MjgwNzAwMDAzXSxbODkuODY2NTk0ODA3MDAwMDcsMjQuNjYzODQ1OTU1MDAwMDZdLFs4OS44NjY0MDI0MDIwMDAwNiwyNC42NjM1NDY2MTMwMDAwNV0sWzg5Ljg2NjIzMDA1MzAwMDA0LDI0LjY2MzI2ODczOTAwMDA1XSxbODkuODY2MDM5ODkxMDAwMDcsMjQuNjYyODk2MDE3MDAwMDRdLFs4OS44NjU5NjI4NTAwMDAwNywyNC42NjI3MzczMzMwMDAwNV0sWzg5Ljg2NTc1MDU0MjAwMDA2LDI0LjY2MjI4MTA0OTAwMDA2XSxbODkuODY1NjE3NzcxMDAwMDcsMjQuNjYxOTYyNTY5MDAwMDJdLFs4OS44NjU0NDY1NzQwMDAwMywyNC42NjE0NzU4NDAwMDAwNF0sWzg5Ljg2NTM3NDgzODAwMDA0LDI0LjY2MDk3NzkxMTAwMDAzXSxbODkuODY1Mzc2NzkxMDAwMDcsMjQuNjYwNTk4MDI0MDAwMDJdLFs4OS44NjU2MTQxNDQwMDAwNiwyNC42NTg3MTUxNTYwMDAwM10sWzg5Ljg2NTc3NDIzMzAwMDA4LDI0LjY1ODAzMzk4MDAwMDAzXSxbODkuODY1OTc2NDcxMDAwMDcsMjQuNjU3NTAxODYyMDAwMDZdLFs4OS44NjYwMjAxMzcwMDAwOCwyNC42NTczODg0NDIwMDAwN10sWzg5Ljg2NjEwNTI3NzAwMDAzLDI0LjY1NzE5MjA4MTAwMDA2XSxbODkuODY2MTkwMzgyMDAwMDcsMjQuNjU3MDI1MDc1MDAwMDRdLFs4OS44NjY0MDQ4NDQwMDAwNCwyNC42NTY2MTE1MDYwMDAwNV0sWzg5Ljg2Njg3OTE4NzAwMDA1LDI0LjY1NjA1MTQwNTAwMDAzXSxbODkuODY3MjcxNjIyMDAwMDMsMjQuNjU1NTUwNTAxMDAwMDVdLFs4OS44NjgyMzMxMTkwMDAwOCwyNC42NTQyNjcxNzEwMDAwN10sWzg5Ljg2ODc1NzMyMjAwMDA4LDI0LjY1MzU1Njk1ODAwMDAyXSxbODkuODY5MDgxMTI2MDAwMDgsMjQuNjUzMTExODcxMDAwMDhdLFs4OS44NjkyNTg5NjAwMDAwOCwyNC42NTI4NjE0MDAwMDAwNl0sWzg5Ljg2OTU0OTczNDAwMDAzLDI0LjY1MjM5ODc4NDAwMDA3XSxbODkuODY5NTkwMzMyMDAwMDksMjQuNjUyMjYyMjE4MDAwMDNdLFs4OS44Njk2OTUwODMwMDAwNywyNC42NTE5MDYxMjYwMDAwM10sWzg5Ljg2OTczMTA5NTAwMDA4LDI0LjY1MDgzMTQwMDAwMDA3XSxbODkuODY5NzM2NTUzMDAwMDUsMjQuNjUwNjMxMDE4MDAwMDddLFs4OS44Njk3Mzc1MzEwMDAwNiwyNC42NTA1ODEzNDUwMDAwM10sWzg5Ljg2OTQ0NDEyMTAwMDA3LDI0LjY1MDAyMDAwMzAwMDA3XSxbODkuODY4ODEyNzIyMDAwMDksMjQuNjQ5MDA3MzUyMDAwMDddLFs4OS44NjczMTc0MzYwMDAwNiwyNC42NDgxNDM1MjYwMDAwN10sWzg5Ljg2NDkxNjg1ODAwMDA3LDI0LjY0Njg4NTQzNDAwMDA3XSxbODkuODY0NjQ1NTY1MDAwMDUsMjQuNjQ2NzQ2MzMwMDAwMDRdLFs4OS44NjQ0ODM1MjUwMDAwOCwyNC42NDY2Njg4NTEwMDAwN10sWzg5Ljg2NDI5MTg0MTAwMDA3LDI0LjY0NjU4OTY1MTAwMDA2XSxbODkuODY0MDY4MzU4MDAwMDUsMjQuNjQ2NTAzMDg1MDAwMDZdLFs4OS44NjA5NDExNjgwMDAwNywyNC42NDU4NTYxNjEwMDAwNF0sWzg5Ljg2MDIyNjEzNjAwMDA1LDI0LjY0NTcxMDk5MjAwMDAzXSxbODkuODU5NDU5ODMzMDAwMDcsMjQuNjQ1NTc2NDk4MDAwMDNdLFs4OS44NTkyMTgzOTAwMDAwOCwyNC42NDU1Mzg0NTMwMDAwM10sWzg5Ljg1ODk3NjkxNzAwMDA2LDI0LjY0NTUyNzUwMTAwMDA2XSxbODkuODU4MzMyMTY1MDAwMDQsMjQuNjQ1NDk4NjcxMDAwMDRdLFs4OS44NTY1MzY0NDgwMDAwNCwyNC42NDU1MTYxNjAwMDAwNl0sWzg5Ljg1MDgwMjE2MDAwMDA2LDI0LjY0NjM3NzA0NTAwMDA3XSxbODkuODUwNTU4NDQxMDAwMDMsMjQuNjQ2NDM2NjM3MDAwMDhdLFs4OS44NTAwODU1MzMwMDAwOCwyNC42NDY1NDExNTkwMDAwNF0sWzg5Ljg0OTk3NDA0OTAwMDA4LDI0LjY0NjU0NTU2NDAwMDA2XSxbODkuODQ5OTI0MDIwMDAwMDYsMjQuNjQ2NTQ3MjA2MDAwMDRdLFs4OS44NDk1ODYxNzQwMDAwOCwyNC42NDY1NTcwMjkwMDAwNl0sWzg5Ljg0OTExNjE4MTAwMDA2LDI0LjY0NjU0Njk2MjAwMDA2XSxbODkuODQ4OTQwMTczMDAwMDcsMjQuNjQ2NTM3NzU1MDAwMDVdLFs4OS44NDg3MzE0MzIwMDAwOCwyNC42NDY1MjY4MTkwMDAwM10sWzg5Ljg0NzYwMzc0MTAwMDA2LDI0LjY0NjQ2NjQxMDAwMDA3XSxbODkuODQ3NDE2NjE4MDAwMDcsMjQuNjQ2NDU2MDYwMDAwMDVdLFs4OS44NDUzNzcwOTgwMDAwOSwyNC42NDYwODMxMTgwMDAwNF0sWzg5Ljg0NDg1NjM2ODAwMDA4LDI0LjY0NTkwMTk1MDAwMDA1XSxbODkuODQzODc1NDUyMDAwMDgsMjQuNjQ1NTI1NTU5MDAwMDhdLFs4OS44NDM1NzYzNjkwMDAwNiwyNC42NDU0MDY3MDkwMDAwNF0sWzg5Ljg0MzM0NzA3MjAwMDA5LDI0LjY0NTI5MDE4OTAwMDA0XSxbODkuODQzMTE5OTc4MDAwMDYsMjQuNjQ1MTQyNjI0MDAwMDddLFs4OS44NDI5OTc0ODQwMDAwOCwyNC42NDUwNjA2NDgwMDAwM10sWzg5Ljg0Mjg1MDAwNzAwMDA0LDI0LjY0NDk1NzE5NjAwMDA2XSxbODkuODQyODM0ODkyMDAwMDQsMjQuNjQ0OTQzMDY3MDAwMDRdLFs4OS44NDIzNzkwMjgwMDAwNCwyNC42NDQ1MDg1MTEwMDAwM10sWzg5Ljg0MjMwMjkxMzAwMDA4LDI0LjY0NDM4MTQyNDAwMDA3XSxbODkuODQyMTU3MzQ1MDAwMDMsMjQuNjQzOTg3ODMzMDAwMDRdLFs4OS44NDIxMzQzMjMwMDAwNCwyNC42NDM4NzgzMDIwMDAwOF0sWzg5Ljg0MjA4OTU3MTAwMDAzLDI0LjY0MzYxMjk1MjAwMDA3XSxbODkuODQyNTQ5OTcxMDAwMDQsMjQuNjMxNTU2Mjc1MDAwMDRdLFs4OS44NDI2MDg4MTcwMDAwNCwyNC42MzE0MTQwOTAwMDAwOF0sWzg5Ljg0NDEwMjg4ODAwMDA3LDI0LjYyODQ3OTgxNDAwMDA2XSxbODkuODQyMTkyNjY2MDAwMDcsMjQuNjE0ODc3OTI3MDAwMDddLFs4OS44NDIxNDUzMzUwMDAwNSwyNC42MTQ3MDc5NzAwMDAwNF0sWzg5Ljg0MjA3OTExNDAwMDA2LDI0LjYxNDU4NDg0NTAwMDAyXSxbODkuODQxOTY1NDU3MDAwMDcsMjQuNjE0Mzc0MTc2MDAwMDddLFs4OS44NDE4MDA3NTkwMDAwOCwyNC42MTQyNDQ3MzgwMDAwMl0sWzg5Ljg0MTUxNDE3MzAwMDA2LDI0LjYxNDA2OTQ0OTAwMDA2XSxbODkuODM1ODQ5MTEyMDAwMDYsMjQuNjEyMTE0ODA3MDAwMDddLFs4OS44MjczMzA4MzAwMDAwNSwyNC42MDc4NTUzMzgwMDAwNF0sWzg5LjgyMjkxMzU4MzAwMDA2LDI0LjU5NDYxNjA2MjAwMDA2XSxbODkuODIzMTExMDg0MDAwMDYsMjQuNTkzNTU1MDc3MDAwMDhdLFs4OS44MjMyMzMyMTcwMDAwNSwyNC41OTMxODg4NzYwMDAwNl0sWzg5LjgyMzM5OTQzMjAwMDAzLDI0LjU5Mjg2MzM2ODAwMDA1XSxbODkuODIzNDc3NjkxMDAwMDUsMjQuNTkyNzQ3MTc3MDAwMDRdLFs4OS44MjM3MzA5OTYwMDAwNSwyNC41OTIzODkwMzEwMDAwNF0sWzg5LjgyMzc1MTY5OTAwMDA3LDI0LjU5MjM3MzgxNTAwMDAzXSxbODkuODI0MDM2ODk1MDAwMDYsMjQuNTkyMTY2NDIxMDAwMDZdLFs4OS44MjQ3MzQ4MTkwMDAwNywyNC41OTE3MTIyNjYwMDAwNl0sWzg5LjgyMDE4MDM1MjAwMDA4LDI0LjU4NjMxNzI3MDAwMDA1XSxbODkuODExOTgwNTA2MDAwMDUsMjQuNTgxNTczNTUxMDAwMDhdLFs4OS44MTExMDY1NzIwMDAwOSwyNC41NzQwNjA5NTMwMDAwN10sWzg5LjgwODcxMTM1ODAwMDA0LDI0LjU2NzcyMjIyOTAwMDAzXSxbODkuODAyOTM2MDcxMDAwMDMsMjQuNTY2ODY5NzY0MDAwMDVdLFs4OS43OTQ3NTg3MzIwMDAwNSwyNC41NjcxMDYwODgwMDAwNl0sWzg5Ljc5NDQwODA5NzAwMDAzLDI0LjU2NzEzNzc4NjAwMDA1XSxbODkuNzk0MjIxMzQ4MDAwMDYsMjQuNTY3MTYxODA0MDAwMDJdLFs4OS43OTMwMzM0NTMwMDAwOCwyNC41NjczNzk3NTkwMDAwNl0sWzg5Ljc5MjgxODU3MzAwMDAzLDI0LjU2NzQzMDgzMDAwMDAzXSxbODkuNzkyNjA3OTg3MDAwMDUsMjQuNTY3NDk5OTczMDAwMDVdLFs4OS43OTIxNjkxODEwMDAwOCwyNC41Njc2NjI1MDEwMDAwM10sWzg5Ljc5MTk5MzE1MDAwMDA1LDI0LjU2NzczNjc3MDAwMDA3XSxbODkuNzkxNzk3MzQ5MDAwMDMsMjQuNTY3ODIxMTcyMDAwMDRdLFs4OS43OTE1MzkxNjMwMDAwNCwyNC41Njc5MzI1ODEwMDAwNF0sWzg5Ljc5MTQyNDg4NTAwMDA4LDI0LjU2Nzk4ODg3MDAwMDA4XSxbODkuNzkxMjQxNzIzMDAwMDQsMjQuNTY4MDgxNzU1MDAwMDRdLFs4OS43OTEwMjc2NDMwMDAwNiwyNC41NjgyMDg0NjYwMDAwNF0sWzg5Ljc5MDk1Nzc4OTAwMDA2LDI0LjU2ODI3MjE1NTAwMDA1XSxbODkuNzkwNzYxODE1MDAwMDUsMjQuNTY4NDYxNTQ4MDAwMDddLFs4OS43OTA2NTg1NTQwMDAwNiwyNC41Njg1NzI2MDcwMDAwOF0sWzg5Ljc5MDU2MjMyOTAwMDA3LDI0LjU2ODcxOTIzNzAwMDA0XSxbODkuNzkwNTUwNTY5MDAwMDYsMjQuNTY4NzQwMTA3MDAwMDVdLFs4OS43OTAzMjExODMwMDAwNiwyNC41NjkxNjA4ODkwMDAwNV0sWzg5Ljc5MDIzMTk1MDAwMDA4LDI0LjU2OTM3MTMxNDAwMDAyXSxbODkuNzg5MDY4NTIwMDAwMDYsMjQuNTcyMjg5MTY5MDAwMDRdLFs4OS43ODM3MTM4OTYwMDAwNSwyNC41Njk0MTAwNzkwMDAwOF0sWzg5Ljc3NDE0NjU0MDAwMDA2LDI0LjU2NTA2MTk4NDAwMDA3XSxbODkuNzczODg1MzcxMDAwMDYsMjQuNTY0OTM5MTAyMDAwMDRdLFs4OS43NzMxOTM1MTEwMDAwNCwyNC41NjQ1NzczNjEwMDAwM10sWzg5Ljc3MzEzOTg2NzAwMDA1LDI0LjU2NDU0NzM2MTAwMDA1XSxbODkuNzcyODg4NjQ1MDAwMDgsMjQuNTY0Mzg2MTA3MDAwMDhdLFs4OS43NzI4NTE2NTYwMDAwNiwyNC41NjQzNjIzNDQwMDAwN10sWzg5Ljc3Mjc4MTk5MjAwMDAzLDI0LjU2NDMxNzA4MTAwMDA3XSxbODkuNzcyMTQ3OTg0MDAwMDcsMjQuNTYzODc5MjE3MDAwMDhdLFs4OS43NzE5MjE0ODMwMDAwOSwyNC41NjM3MDEwNjQwMDAwNF0sWzg5Ljc3MTU4NDQxOTAwMDA4LDI0LjU2MzM5OTY4NzAwMDA3XSxbODkuNzcwOTM1Njg1MDAwMDQsMjQuNTYyNzQ4OTg4MDAwMDddLFs4OS43NzA2NzYxODIwMDAwNSwyNC41NjIzOTI5NzIwMDAwNV0sWzg5Ljc3MDI0NTIzODAwMDA5LDI0LjU2MTc5MTcxMjAwMDA2XSxbODkuNzY5OTk1MzI0MDAwMDQsMjQuNTYxNDI1NTUwMDAwMDJdLFs4OS43Njk1NjQ2MzkwMDAwNywyNC41NjA2ODU5OTAwMDAwMl0sWzg5Ljc2Nzc1NDcwNTAwMDA3LDI0LjU1NzUxNDc5NjAwMDA4XSxbODkuNzY3NTY5MTc0MDAwMDcsMjQuNTU3MDUxNjM4MDAwMDhdLFs4OS43Njc0NjQ0MjkwMDAwOSwyNC41NTY3ODg5OTQwMDAwNF0sWzg5Ljc2NzQxOTU3MzAwMDA0LDI0LjU1NjUxNTE1MzAwMDA4XSxbODkuNzY3NDM5MTE2MDAwMDUsMjQuNTU1NjIyNzQ0MDAwMDZdLFs4OS43Njc0NDUxMDYwMDAwOCwyNC41NTU1NTQ0NTEwMDAwM10sWzg5Ljc2NzQ2NzE3MDAwMDAzLDI0LjU1NTMwMzI5MzAwMDA3XSxbODkuNzY3NTAyNTc4MDAwMDYsMjQuNTU1MDEwMzgzMDAwMDJdLFs4OS43Njc1NzQ2MDcwMDAwOSwyNC41NTQ2MDYzMjcwMDAwNF0sWzg5Ljc2NzY2MTg3MDAwMDA0LDI0LjU1NDEzODUxMDAwMDAzXSxbODkuNzY3NzExMzM2MDAwMDUsMjQuNTUzOTIwMTMxMDAwMDRdLFs4OS43Njc3NzYzNTEwMDAwNywyNC41NTM2Mzc0MjkwMDAwNV0sWzg5Ljc2Nzg0MjI5MzAwMDA2LDI0LjU1MzM1MjQ2OTAwMDA2XSxbODkuNzY4NzI2NjA3MDAwMDgsMjQuNTQ4MzQxODIyMDAwMDVdLFs4OS43NzAwNDg0NTkwMDAwNywyNC41NDA3NDU5NTQwMDAwNF0sWzg5Ljc3MDA1OTk5NjAwMDA0LDI0LjU0MDY3OTM2NDAwMDAzXSxbODkuNzcwMDYxNTY5MDAwMDYsMjQuNTQwNDk0MjE2MDAwMDddLFs4OS43NzAwNjE5OTIwMDAwOCwyNC41NDA0MzA5OTUwMDAwN10sWzg5Ljc3MDA1MzI3NDAwMDA4LDI0LjU0MDMwNDU0MDAwMDAyXSxbODkuNzY5OTk4MzMyMDAwMDYsMjQuNTQwMTQ2OTY1MDAwMDhdLFs4OS43Njk5NDU0MzcwMDAwNSwyNC41NDAwNTE0ODgwMDAwN10sWzg5Ljc2OTkyNTEzODAwMDA4LDI0LjU0MDAxNTMzMDAwMDA3XSxbODkuNzY5NzY0MjY4MDAwMDcsMjQuNTM5OTExNzg0MDAwMDNdLFs4OS43Njk2MDk4MTAwMDAwOCwyNC41Mzk4NDQzNzYwMDAwOF0sWzg5Ljc2OTI3MjExNjAwMDA4LDI0LjUzOTc1NTIzNzAwMDA3XSxbODkuNzYxOTI2MDY3MDAwMDUsMjQuNTM3OTE0OTA1MDAwMDRdLFs4OS43NTk0ODQ1MjkwMDAwOCwyNC41Mzc2MjQyNzYwMDAwM10sWzg5Ljc1ODk5OTQ5MTAwMDA1LDI0LjUzNzYzMjUzMzAwMDA4XSxbODkuNzU4MDE1MTQ0MDAwMDcsMjQuNTM3Njg4NTM1MDAwMDNdLFs4OS43NTc4NDUwNjMwMDAwNSwyNC41Mzc3Mjg5MDMwMDAwN10sWzg5Ljc1NzM5OTM3MjAwMDA3LDI0LjUzNzgxMTczMTAwMDAzXSxbODkuNzU2NTIxOTkyMDAwMDUsMjQuNTM3OTE3MDA0MDAwMDZdLFs4OS43NTU3NDg5NDUwMDAwNSwyNC41Mzc5OTc2MDQwMDAwNV0sWzg5Ljc1NTMyMTMxMTAwMDA1LDI0LjUzNzk5NTc4MTAwMDA2XSxbODkuNzQ5MDYxMzgzMDAwMDgsMjQuNTM3ODI0NjIwMDAwMDRdLFs4OS43NDg3OTkxNDYwMDAwNywyNC41Mzc4MTM0NTcwMDAwM10sWzg5Ljc0ODI0Nzg1MTAwMDAzLDI0LjUzNzc4MjA1NTAwMDA0XSxbODkuNzQ3NDIzODc3MDAwMDcsMjQuNTM3NzE0NjM1MDAwMDRdLFs4OS43NDcyMDIxMTgwMDAwOCwyNC41Mzc2NzQ3NTAwMDAwNl0sWzg5Ljc0NzA5Mjk1NzAwMDA2LDI0LjUzNzY0MzUxOTAwMDAzXSxbODkuNzQ2ODkyODMyMDAwMDcsMjQuNTM3NTg2MTczMDAwMDJdLFs4OS43NDY1MDQ3MzUwMDAwMywyNC41Mzc0MDk5NjcwMDAwM10sWzg5Ljc0NjI4NDAyNTAwMDA4LDI0LjUzNzMwOTY4MzAwMDA1XSxbODkuNzQ2MTc5NDk5MDAwMDUsMjQuNTM3MTIxNTM3MDAwMDhdLFs4OS43NDYwNzkyNzkwMDAwNywyNC41MzY5NDA3MzQwMDAwNF0sWzg5Ljc0NDY1NzE3MjAwMDA3LDI0LjUzMzQ2MjI3MDAwMDAzXSxbODkuNzQ0NjAyODU1MDAwMDQsMjQuNTMzMzE4MjM3MDAwMDZdLFs4OS43NDQ1MzA1NjQwMDAwNiwyNC41MzMwNjAxNDYwMDAwM10sWzg5Ljc0NDQ3Njk2NjAwMDA0LDI0LjUzMjg2NTMxMTAwMDAyXSxbODkuNzQ0NTAzODI5MDAwMDUsMjQuNTMyNzAyNzg2MDAwMDddLFs4OS43NDQ1NzY5MzIwMDAwOSwyNC41MzI1NTk1MzMwMDAwNF0sWzg5Ljc0NDYzOTQ5OTAwMDA3LDI0LjUzMjQzODI3NjAwMDA1XSxbODkuNzQ0NzE1MjYyMDAwMDYsMjQuNTMyMzUyMDM4MDAwMDZdLFs4OS43NDQ4NTE1NTAwMDAwOCwyNC41MzIyMzkzNzIwMDAwNV0sWzg5Ljc0NjY4MDk5NjAwMDA3LDI0LjUzMTUyNTAwMzAwMDA3XSxbODkuNzQ5MTg2NjIwMDAwMDUsMjQuNTMwNTQxMzQ5MDAwMDNdLFs4OS43NDk2NjY1NTMwMDAwNSwyNC41MzAyOTQ5MDQwMDAwN10sWzg5Ljc0OTgzOTcxMTAwMDA1LDI0LjUzMDA5ODE4ODAwMDA3XSxbODkuNzQ5OTYyMDM5MDAwMDgsMjQuNTI5ODY1MjYyMDAwMDRdLFs4OS43NTAwMTg2ODIwMDAwNywyNC41Mjk0NjE3NTMwMDAwOF0sWzg5Ljc0OTg2NTMyNzAwMDA3LDI0LjUyODUzNzQ0NDAwMDA1XSxbODkuNzQ5Njk5NDQ1MDAwMDMsMjQuNTI3NzA5MDc3MDAwMDVdLFs4OS43NDc2NjE5MTIwMDAwNywyNC41MjA1MDQwNDcwMDAwM10sWzg5Ljc0NzU2NjY0NzAwMDA0LDI0LjUyMDMxOTMwMjAwMDA4XSxbODkuNzQ3NDQ5OTQzMDAwMDUsMjQuNTIwMjExMjkyMDAwMDZdLFs4OS43NDc0MzAyMTEwMDAwNSwyNC41MjAyMDU2MTMwMDAwM10sWzg5Ljc0NzA1NTEyMTAwMDA3LDI0LjUyMDE4NDY2NTAwMDA0XSxbODkuNzQ2OTU2NjY5MDAwMDQsMjQuNTIwMjA1Mzg1MDAwMDVdLFs4OS43NDYxMjE5ODcwMDAwNCwyNC41MjA0NTg1NjQwMDAwMl0sWzg5Ljc0NTg2Njk5NDAwMDA0LDI0LjUyMDU0NTYyOTAwMDAzXSxbODkuNzQ0ODc4NTgzMDAwMDYsMjQuNTIwOTk3MjM4MDAwMDZdLFs4OS43NDM5MjEzNDEwMDAwMywyNC41MjE0NDA5OTIwMDAwN10sWzg5Ljc0MzI5NjI2NTAwMDA4LDI0LjUyMTc3MjQwOTAwMDA1XSxbODkuNzQyNDU5NjU5MDAwMDgsMjQuNTIyMjAzOTQwMDAwMDVdLFs4OS43NDEzMjM0NjQwMDAwNiwyNC41MjI2NDkwNjQwMDAwNl0sWzg5LjczOTgwOTA2NzAwMDA3LDI0LjUyMzA3ODg1MjAwMDAzXSxbODkuNzM5NTcyNDE2MDAwMDQsMjQuNTIzMDkzMTIwMDAwMDZdLFs4OS43Mzg3MTcyNzEwMDAwNCwyNC41MjMwODA5MTYwMDAwM10sWzg5LjczODU1ODc0NTAwMDAzLDI0LjUyMzA1OTE5MTAwMDA3XSxbODkuNzM4NDQ4NDA1MDAwMDQsMjQuNTIzMDA5MzI2MDAwMDhdLFs4OS43MzgyOTUyMjMwMDAwOCwyNC41MjI5Mzk2MzAwMDAwNV0sWzg5LjczNjI0MDkyMzAwMDA4LDI0LjUyMTMwNTgzNDAwMDAzXSxbODkuNzM1OTg2Mjk2MDAwMDgsMjQuNTIxMDY2MDUwMDAwMDZdLFs4OS43MzQ2ODAwNDkwMDAwOCwyNC41MTk2Mjg4NTEwMDAwNV0sWzg5LjczNDQwODQxMDAwMDA3LDI0LjUxOTI2NjU0MjAwMDAzXSxbODkuNzM0MzMyMjE4MDAwMDgsMjQuNTE5MTE2ODIwMDAwMDhdLFs4OS43MzQyOTA1NDQwMDAwMywyNC41MTg5ODM1MjkwMDAwMl0sWzg5LjczNDE3MDkxNzAwMDA5LDI0LjUxODM2NDY0ODAwMDA0XSxbODkuNzM0MTEwNDQyMDAwMDMsMjQuNTE3OTMwNDU2MDAwMDRdLFs4OS43MzQxMjg4NzEwMDAwNSwyNC41MTc2NzU5MDkwMDAwNV0sWzg5LjczNDE5MDQ1MjAwMDA2LDI0LjUxNzQzNzI0MzAwMDA3XSxbODkuNzM0MjMxNzM4MDAwMDYsMjQuNTE3MzE1Mzg3MDAwMDVdLFs4OS43MzQzMDE4NDkwMDAwOCwyNC41MTcxMjg2NjgwMDAwNV0sWzg5LjczNDU0NjgzNTAwMDA2LDI0LjUxNjgxMjk4ODAwMDAzXSxbODkuNzM0NjM5MjMyMDAwMDYsMjQuNTE2NzM3NTEzMDAwMDddLFs4OS43MzUwMjk3ODIwMDAwOCwyNC41MTY0NDEyODIwMDAwN10sWzg5LjczNzQyNjI5NjAwMDA4LDI0LjUxNDg2NTQ4OTAwMDA0XSxbODkuNzM3NjU2NzA4MDAwMDMsMjQuNTE0NzI5Mjg2MDAwMDNdLFs4OS43Mzc5MTk1MTMwMDAwNywyNC41MTQ1OTA4ODAwMDAwN10sWzg5LjczODM2NzkxMjAwMDA2LDI0LjUxNDM1Nzk2MzAwMDA3XSxbODkuNzM4NDM1NTE4MDAwMDcsMjQuNTE0MzM0MzczMDAwMDVdLFs4OS43Mzg4NjM2MzUwMDAwOSwyNC41MTQyMTIwNTYwMDAwOF0sWzg5LjczOTAxOTgwOTAwMDA3LDI0LjUxNDE3MTY4MzAwMDAzXSxbODkuNzM5MTIzODEzMDAwMDUsMjQuNTE0MTQ5ODQ5MDAwMDNdLFs4OS43MzkyODUyMTcwMDAwMywyNC41MTQxMTYyNjAwMDAwNF0sWzg5LjczOTM1MTg2MDAwMDA2LDI0LjUxNDExMTI5NTAwMDA4XSxbODkuNzM5NzAyMDE5MDAwMDUsMjQuNTE0MDk1NTI4MDAwMDRdLFs4OS43NTU0MDI5MDUwMDAwNCwyNC41MDYzODMzMTYwMDAwNF0sWzg5Ljc1NTUxMzc1ODAwMDA2LDI0LjUwNjMyNDc4ODAwMDAzXSxbODkuNzU1NTcwNDA2MDAwMDYsMjQuNTA2MjIxMDE1MDAwMDVdLFs4OS43NTU2NTMxMDMwMDAwNCwyNC41MDYwNDY3MjYwMDAwMl0sWzg5Ljc1ODE1NjA1MDAwMDA4LDI0LjQ5OTU1MTg3NDAwMDA4XSxbODkuNzU4MDM2NTU5MDAwMDYsMjQuNDk4OTcwODMwMDAwMDhdLFs4OS43NTc5MjIyMjkwMDAwMywyNC40OTg3NTUwMTYwMDAwOF0sWzg5Ljc1Nzc5MzQxOTAwMDA1LDI0LjQ5ODUzMjQwMjAwMDAyXSxbODkuNzU3NjQzNjM4MDAwMDUsMjQuNDk4MzA3NDk4MDAwMDNdLFs4OS43NTc2MTkwMzMwMDAwOCwyNC40OTgyNzA3NjcwMDAwN10sWzg5Ljc1MzA1ODc1ODAwMDA3LDI0LjQ5MjQwMDY2NTAwMDA1XSxbODkuNzUxNDE1MTYxMDAwMDcsMjQuNDkwMzUyMjgzMDAwMDVdLFs4OS43NDk4MjUyNTIwMDAwNSwyNC40ODg0NzQ0NDcwMDAwNF0sWzg5Ljc0OTQzNjI5MTAwMDA1LDI0LjQ4Nzg3Mzc1NzAwMDA1XSxbODkuNzQ5MjQ1MzcwMDAwMDQsMjQuNDg3NTY4NjE5MDAwMDZdLFs4OS43NDkwMzQ0ODAwMDAwMywyNC40ODcyMjM5MzUwMDAwM10sWzg5Ljc0ODkwMjYwNTAwMDA3LDI0LjQ4NzAwNDEzMjAwMDA0XSxbODkuNzQ4NzY1ODkxMDAwMDYsMjQuNDg2NzM2OTAzMDAwMDZdLFs4OS43NDg2NTQzOTgwMDAwNCwyNC40ODY1MDQ3MTYwMDAwN10sWzg5Ljc0ODA1NzQ1NDAwMDA1LDI0LjQ4NTE5MzU1NjAwMDA3XSxbODkuNzQ3OTQ1NzA4MDAwMDMsMjQuNDg0OTM0MjcyMDAwMDNdLFs4OS43NDc1Njk4ODAwMDAwNywyNC40ODM5NDUyMzYwMDAwN10sWzg5Ljc0NzQyNTc1OTAwMDA3LDI0LjQ4MzIyMDE5OTAwMDA3XSxbODkuNzQ3NDA5NTIwMDAwMDgsMjQuNDgzMDExODc2MDAwMDNdLFs4OS43NDc0MjIwNzgwMDAwNiwyNC40ODI5MDEyNjAwMDAwNl0sWzg5Ljc0NzQyNTUyOTAwMDA1LDI0LjQ4Mjg3MTM0NzAwMDA3XSxbODkuNzQ3NDc4NzAzMDAwMDcsMjQuNDgyNjUyOTgxMDAwMDZdLFs4OS43NDc1MjM3MDQwMDAwNiwyNC40ODI1MTA4MDcwMDAwNF0sWzg5Ljc0NzY0NzQzMjAwMDA2LDI0LjQ4MjE3MjMyMzAwMDA0XSxbODkuNzQ3NzA3ODkzMDAwMDQsMjQuNDgyMDExNTQ3MDAwMDddLFs4OS43NDgxNDMzNTYwMDAwNywyNC40ODA5MjczMzYwMDAwNF0sWzg5Ljc0ODE4ODg1NzAwMDA2LDI0LjQ4MDg0NDQzMjAwMDAzXSxbODkuNzQ4MzMyMzIwMDAwMDMsMjQuNDgwNjYwNjUxMDAwMDVdLFs4OS43NDg0MjIyMTIwMDAwNCwyNC40ODA1ODYyODkwMDAwM10sWzg5Ljc0ODUzNjcyNjAwMDA1LDI0LjQ4MDUzNjI0MDAwMDA1XSxbODkuNzQ4ODUzMjc0MDAwMDYsMjQuNDgwNDcwNzIzMDAwMDVdLFs4OS43NDkwMjI4OTUwMDAwNSwyNC40ODA0Njk4NzUwMDAwNF0sWzg5Ljc0OTM4MjA1OTAwMDA4LDI0LjQ4MDUzMTQzNDAwMDA2XSxbODkuNzQ5NTE4MzEzMDAwMDcsMjQuNDgwNTYxMDE0MDAwMDVdLFs4OS43NDk4MTE4OTIwMDAwOCwyNC40ODA3MjYzMzAwMDAwNF0sWzg5Ljc1MDIxNzI5MzAwMDA1LDI0LjQ4MDk1NTA1MjAwMDA3XSxbODkuNzUwNTM1NDkwMDAwMDYsMjQuNDgxMTQ4NjMyMDAwMDRdLFs4OS43NTA4MDAzNjcwMDAwNywyNC40ODEzMjUxODYwMDAwNV0sWzg5Ljc1MTEyODMxNTAwMDA3LDI0LjQ4MTU3OTE4MDAwMDA0XSxbODkuNzUxNjEyNjMzMDAwMDQsMjQuNDgxOTg2NDA1MDAwMDRdLFs4OS43NTE5MjE0MjIwMDAwNywyNC40ODIyNjAxMjQwMDAwNV0sWzg5Ljc1MjI3NDUxOTAwMDA4LDI0LjQ4MjU4ODEwMzAwMDA3XSxbODkuNzUyMzM4NTAyMDAwMDQsMjQuNDgyNjcyMzE1MDAwMDZdLFs4OS43NTI0NzUzOTIwMDAwNiwyNC40ODI4NTIwNDYwMDAwNl0sWzg5Ljc1Mjc5NTQ2MDAwMDA3LDI0LjQ4MzE5NTc3NjAwMDA2XSxbODkuNzUzNjM3ODM3MDAwMDQsMjQuNDg0MDgzOTU1MDAwMDddLFs4OS43NTM4OTYxODEwMDAwNywyNC40ODQyOTU0OTIwMDAwNl0sWzg5Ljc1NDM3ODc0MjAwMDA5LDI0LjQ4NDY2Mzc1NzAwMDA4XSxbODkuNzU0NTU4NjAyMDAwMDMsMjQuNDg0NzkzODgwMDAwMDRdLFs4OS43NTQ3MjU1MjYwMDAwNywyNC40ODQ5MTQzODUwMDAwMl0sWzg5Ljc1NDk5MzU0NTAwMDA1LDI0LjQ4NTA2Nzc5NjAwMDA3XSxbODkuNzU1NDI1NTgyMDAwMDQsMjQuNDg1MjUxOTUyMDAwMDZdLFs4OS43NTU3MDg1MTkwMDAwNSwyNC40ODUzNDY2ODAwMDAwOF0sWzg5Ljc1NjA0MTQ1MDAwMDA1LDI0LjQ4NTQyNjgwOTAwMDA1XSxbODkuNzU2MzUwMDQ0MDAwMDQsMjQuNDg1NDkxNjU5MDAwMDVdLFs4OS43NTY2MTE4NjkwMDAwNCwyNC40ODU1MDA1NDgwMDAwNl0sWzg5Ljc1NjgzNDU4NjAwMDA4LDI0LjQ4NTQ3NzE5OTAwMDA2XSxbODkuNzU2ODg0NTY2MDAwMDUsMjQuNDg1NDY4MjQ4MDAwMDddLFs4OS43NTc0NDg1OTMwMDAwNSwyNC40ODUzMzY1MDAwMDAwN10sWzg5Ljc1NzQ5ODI4MjAwMDA5LDI0LjQ4NTMxOTA4MjAwMDA1XSxbODkuNzU3NjM2ODU0MDAwMDUsMjQuNDg1MjcwMTkzMDAwMDhdLFs4OS43NTc2NTU5OTAwMDAwNSwyNC40ODUyNjExOTMwMDAwNF0sWzg5Ljc1Nzc5MzM1NzAwMDA4LDI0LjQ4NTE5NjQ5NzAwMDA2XSxbODkuNzU3OTgyOTYwMDAwMDUsMjQuNDg1MDcyMDUwMDAwMDRdLFs4OS43NTgwNTUwMDkwMDAwMywyNC40ODQ5NzI4MTcwMDAwM10sWzg5Ljc1ODA1ODQwMDAwMDA0LDI0LjQ4NDgxMjUwOTAwMDA1XSxbODkuNzU4MDExODc5MDAwMDQsMjQuNDg0NjI2MTU1MDAwMDZdLFs4OS43NTc4MDg4MjAwMDAwNCwyNC40ODM4ODUyMjcwMDAwM10sWzg5Ljc1Nzc0MjAyNTAwMDA4LDI0LjQ4MzY1NzA2OTAwMDA2XSxbODkuNzU3Njc3MDY2MDAwMDQsMjQuNDgzNDM1Njg3MDAwMDVdLFs4OS43NTc1MTY1NTgwMDAwOCwyNC40ODMwMjU2MTQwMDAwNF0sWzg5Ljc1NzM2ODA4MTAwMDA0LDI0LjQ4Mjc3MzA1MzAwMDA3XSxbODkuNzU3MTk0MzYxMDAwMDcsMjQuNDgyNDk2NzQxMDAwMDNdLFs4OS43NTYyMDU4MDAwMDAwMywyNC40ODEyODIwNzQwMDAwM10sWzg5Ljc1NjAxNTk1NzAwMDA1LDI0LjQ4MTA1MzcxNzAwMDA3XSxbODkuNzU1Njg3NjQ5MDAwMDQsMjQuNDgwNjYyNTYyMDAwMDhdLFs4OS43NDk0NjU0ODIwMDAwNiwyNC40NzMyODc1NTUwMDAwN10sWzg5Ljc0OTI5NDY4MjAwMDA4LDI0LjQ3MzEwODg5NTAwMDA1XSxbODkuNzQzNDIzMDQ3MDAwMDgsMjQuNDY3NTA3MjYxMDAwMDRdLFs4OS43NDIxOTcxOTEwMDAwNiwyNC40NTc1NTY3MDAwMDAwNV0sWzg5Ljc0MjE0NzczMjAwMDAzLDI0LjQ1NzAxMDc2MDAwMDA2XSxbODkuNzQyMTUyMTg5MDAwMDgsMjQuNDU2NzkxMTgzMDAwMDZdLFs4OS43NDIxNTk5NTQwMDAwNCwyNC40NTY2MTE2ODkwMDAwNl0sWzg5Ljc0MjE2NjY3NTAwMDA4LDI0LjQ1NjQ5MDkwMTAwMDA1XSxbODkuNzQyMTc4MTE4MDAwMDgsMjQuNDU2MzIyMTM5MDAwMDZdLFs4OS43NDIxOTc3NDIwMDAwMywyNC40NTYwNzMyMzYwMDAwN10sWzg5Ljc0MjIyMjY1MzAwMDA2LDI0LjQ1NTk1MzA0MjAwMDAzXSxbODkuNzQyMjc4NzYyMDAwMDcsMjQuNDU1ODA1ODA3MDAwMDVdLFs4OS43NDIzNjEwMDEwMDAwNiwyNC40NTU2OTc1NjYwMDAwM10sWzg5Ljc0MjU2ODU5MjAwMDA1LDI0LjQ1NTUwNzEyNDAwMDA2XSxbODkuNzQyNzQzMzU5MDAwMDMsMjQuNDU1Mzg1NDkzMDAwMDVdLFs4OS43NDI4OTY0NDUwMDAwNCwyNC40NTUzMTA2NzYwMDAwN10sWzg5Ljc0MzE0MjI0ODAwMDA4LDI0LjQ1NTI4MjMwNTAwMDAzXSxbODkuNzQ1NjI5NTEyMDAwMDUsMjQuNDU1MTc3XSxbODkuNzQ3NDMxNTIzMDAwMDUsMjQuNDU1MTM0Mjk3MDAwMDNdLFs4OS43NDgzMTQ4MDEwMDAwNSwyNC40NTUxODg4MzIwMDAwM10sWzg5Ljc1MDc2MDE2NDAwMDA0LDI0LjQ1NTM3NjkwNTAwMDA0XSxbODkuNzUzNjEwMjUwMDAwMDcsMjQuNDU1NjMzOTAyMDAwMDVdLFs4OS43NTM3NTQyMzQwMDAwNCwyNC40NTU2Mzg2NTIwMDAwNl0sWzg5Ljc1Mzg1OTA2NTAwMDA5LDI0LjQ1NTY0MTY0NDAwMDAyXSxbODkuNzU0NDgyMjU3MDAwMDYsMjQuNDU1NjIwNjQzMDAwMDNdLFs4OS43NTQ2NTAwNTgwMDAwNCwyNC40NTU1ODc2MTEwMDAwNl0sWzg5Ljc1NTAzNjMxNjAwMDAzLDI0LjQ1NTQ3NDc3NTAwMDAzXSxbODkuNzU1MTY5NDcwMDAwMDYsMjQuNDU1MzQwMDgwMDAwMDRdLFs4OS43NTUxOTYyMDMwMDAwOCwyNC40NTUyMjgzNTUwMDAwM10sWzg5Ljc1NTIwODE5MjAwMDA1LDI0LjQ1NTA4NzgxODAwMDA0XSxbODkuNzU1MDk4MDMxMDAwMDUsMjQuNDU0ODEyMTcwMDAwMDNdLFs4OS43NTI4MDU0ODMwMDAwMywyNC40NDk3ODc5MDQwMDAwNl0sWzg5Ljc1MjY4NDIwMTAwMDA4LDI0LjQ0OTUyODA0MzAwMDA0XSxbODkuNzUyMzc0OTg5MDAwMDMsMjQuNDQ4ODc4OTQyMDAwMDhdLFs4OS43NTIxOTU5NTIwMDAwOCwyNC40NDg1MTIyOTgwMDAwM10sWzg5Ljc1MTIxMTA1NTAwMDA2LDI0LjQ0NjY4ODUyMTAwMDA2XSxbODkuNzUwNjE5NjAyMDAwMDksMjQuNDQ1OTU2NTM2MDAwMDRdLFs4OS43NTAxNjkzMTIwMDAwOCwyNC40NDU0MDY1NDkwMDAwNF0sWzg5Ljc0OTUwNTU2OTAwMDA2LDI0LjQ0NDI4NjA3NTAwMDA0XSxbODkuNzQ5Mzc4OTY5MDAwMDgsMjQuNDQ0MDcxMzYxMDAwMDZdLFs4OS43NDkyMjE5ODEwMDAwNiwyNC40NDM3ODk5ODcwMDAwNl0sWzg5Ljc0ODkxNzAzMzAwMDA1LDI0LjQ0MzE4MTUyOTAwMDA3XSxbODkuNzQ4MzkzMjQ4MDAwMDcsMjQuNDQyMDc4MjE3MDAwMDddLFs4OS43NDgwMzE4MzAwMDAwNiwyNC40NDExOTAyNDMwMDAwNV0sWzg5Ljc0Nzk1ODg3NDAwMDA2LDI0LjQ0MDk3ODQ0MDAwMDA0XSxbODkuNzQ3OTA3NzM1MDAwMDcsMjQuNDQwODAzOTI3MDAwMDVdLFs4OS43NDc4ODc4MzIwMDAwNiwyNC40NDA3MzU1OTMwMDAwNl0sWzg5Ljc0NzA4MDgxMzAwMDA4LDI0LjQzNzI3NzMzMTAwMDA4XSxbODkuNzQ2OTMwNzYzMDAwMDgsMjQuNDM2NjEzODA4MDAwMDZdLFs4OS43NDY4MzAzNzIwMDAwMywyNC40MzYwOTQzMTIwMDAwMl0sWzg5Ljc0Njc5OTQ5NDAwMDA3LDI0LjQzNTgxMDMyNDAwMDA0XSxbODkuNzQ2NzY5ODgxMDAwMDMsMjQuNDM1NTA5OTY2MDAwMDRdLFs4OS43NDY2NTMwNjAwMDAwOSwyNC40MzQxMTA5NzIwMDAwNF0sWzg5Ljc0NjYyMjkzNzAwMDA0LDI0LjQzMzYwNDAxMzAwMDA0XSxbODkuNzQ2NTU3ODMyMDAwMDYsMjQuNDMyMzk3NTk2MDAwMDRdLFs4OS43NDY1MzgwNDgwMDAwNSwyNC40MzE5NjEyMTQwMDAwN10sWzg5Ljc0NjUzMzMxNDAwMDAzLDI0LjQzMTI0NDg3MzAwMDAzXSxbODkuNzQ2NTM1OTA3MDAwMDcsMjQuNDMxMTgxNjU0MDAwMDZdLFs4OS43NDY1NTA0NjYwMDAwMywyNC40MzA4MzkwMzUwMDAwOF0sWzg5Ljc0NjU3ODE4NjAwMDA4LDI0LjQzMDU0MjE2MTAwMDA2XSxbODkuNzQ3ODYyMDQ5MDAwMDUsMjQuNDI2ODc3Mzk3MDAwMDZdLFs4OS43NTU2MzQxNzcwMDAwNSwyNC40MDgxMTg2NTUwMDAwN10sWzg5Ljc2MTM2MTc4MjAwMDA1LDI0LjM5NDcyNTY3ODAwMDA0XSxbODkuNzY0NzIxNDI3MDAwMDQsMjQuMzg2MjA1OTk3MDAwMDVdLFs4OS43NjQ4ODI5NDUwMDAwNywyNC4zODU1MjAzOTEwMDAwNl0sWzg5Ljc2NTM2OTg2MzAwMDA1LDI0LjM4MzM0MzkwNDAwMDA3XSxbODkuNzY1NDI4OTE5MDAwMDQsMjQuMzgyOTAzNjkyMDAwMDddLFs4OS43NjU5OTIzMDYwMDAwNCwyNC4zNzU4MzQ4NzQwMDAwOF0sWzg5Ljc2NTk5MjY5NTAwMDA4LDI0LjM3NTYyMzc1NDAwMDA2XSxbODkuNzY1OTg4NzU1MDAwMDgsMjQuMzc1NTg3NjIyMDAwMDddLFs4OS43NjU5NDk2NjMwMDAwNywyNC4zNzUyMzAyMzcwMDAwNF0sWzg5Ljc2NDk5MTQwOTAwMDA2LDI0LjM3Mzg1NzAzOTAwMDAzXSxbODkuNzY0OTAyODU4MDAwMDgsMjQuMzczNzUxOTA2MDAwMDVdLFs4OS43NjQ0NzgyNDAwMDAwNywyNC4zNzMyNTM5MzEwMDAwOF0sWzg5Ljc2MTc0ODQ3NDAwMDA2LDI0LjM3MDQzNzkzMjAwMDA3XSxbODkuNzYxNTYwMjQyMDAwMDMsMjQuMzcwMjU0NzM5MDAwMDddLFs4OS43NjEzNTY3NTQwMDAwOCwyNC4zNzAxNTUwNjgwMDAwM10sWzg5Ljc2MTE4NzY0MjAwMDA0LDI0LjM3MDEyNzE0MjAwMDA2XSxbODkuNzYwNjI0MjU5MDAwMDUsMjQuMzY5ODYyNjM3MDAwMDRdLFs4OS43NjA0NzY4MzUwMDAwOCwyNC4zNjk3NzIwODUwMDAwMl0sWzg5Ljc2MDA5NDkwOTAwMDAzLDI0LjM2OTUyNTkyNzAwMDA0XSxbODkuNzU5ODU4NDM4MDAwMDQsMjQuMzY5MjcxNTMxMDAwMDRdLFs4OS43NTkxMzYxMjUwMDAwNSwyNC4zNjg0ODk2OTIwMDAwM10sWzg5Ljc1ODkzNTMzODAwMDA3LDI0LjM2ODI2Njk2MzAwMDA1XSxbODkuNzU4NzA0MTE1MDAwMDYsMjQuMzY4MDA5MTg4MDAwMDNdLFs4OS43NTUxNTg4MDgwMDAwMywyNC4zNjQwMTE5NzkwMDAwNV0sWzg5Ljc1NDY5MzY2MDAwMDA0LDI0LjM2MzQ3NjA4OTAwMDA3XSxbODkuNzU0Mjc4OTQzMDAwMDMsMjQuMzYyOTk1MDM1MDAwMDRdLFs4OS43NTQxNTYzMDcwMDAwNywyNC4zNjI4MzkwMzUwMDAwNF0sWzg5Ljc1NDEzNDE3ODAwMDA3LDI0LjM2MjgxMDc3NjAwMDA2XSxbODkuNzU0MDcwODY3MDAwMDUsMjQuMzYyNzI3MTI3MDAwMDNdLFs4OS43NTQwNDEwNTkwMDAwMywyNC4zNjI2ODddLFs4OS43NTM5OTQwNDAwMDAwNywyNC4zNjI2MjMxMzYwMDAwMl0sWzg5Ljc1MzgwODQzNjAwMDA0LDI0LjM2MjM2NzEyMDAwMDA0XSxbODkuNzUyOTE5NTI3MDAwMDcsMjQuMzYxMTAwMDgzMDAwMDVdLFs4OS43NTI3NTM5ODEwMDAwNywyNC4zNjA4Mjk0MjEwMDAwNl0sWzg5Ljc1MjU5OTYyNzAwMDA1LDI0LjM2MDUwOTEwMTAwMDA1XSxbODkuNzUyNDI0MjMzMDAwMDYsMjQuMzYwMDc0NzIxMDAwMDVdLFs4OS43NTIzNTgxMDcwMDAwOCwyNC4zNTk4NTcyODQwMDAwNF0sWzg5Ljc1MjM0Mzc5MTAwMDA0LDI0LjM1OTc3MjAyMjAwMDA3XSxbODkuNzUxNTY2MjAwMDAwMDcsMjQuMzU0MzY5Njg0MDAwMDZdLFs4OS43NTE0NzQ1ODgwMDAwNiwyNC4zNTM0Nzg3NjQwMDAwNF0sWzg5Ljc1MTQyMTg3NDAwMDA3LDI0LjM1MjcwNTg4ODAwMDA2XSxbODkuNzUxNDQ2OTE4MDAwMDYsMjQuMzUyMDI5MTAyMDAwMDddLFs4OS43NTE2Njk4MzMwMDAwNSwyNC4zNTA2Nzk3NjMwMDAwN10sWzg5Ljc1MTc4NTU3MDAwMDA0LDI0LjM1MDI1NzcxMjAwMDAzXSxbODkuNzUxODQwNzM0MDAwMDQsMjQuMzUwMDkxODQwMDAwMDZdLFs4OS43NTE5NjY2ODgwMDAwNCwyNC4zNDk4MDI0NjIwMDAwN10sWzg5Ljc1MjAxNDI3OTAwMDA0LDI0LjM0OTcyNTc2OTAwMDAzXSxbODkuNzUyMjQ4NjE0MDAwMDUsMjQuMzQ5NDY4NzQzMDAwMDVdLFs4OS43NTM0MjI2MzMwMDAwNywyNC4zNDgyMzY2NzQwMDAwOF0sWzg5Ljc1MzYwMzUyODAwMDA0LDI0LjM0ODA0OTU1NTAwMDA1XSxbODkuNzU2MzI0MTQ3MDAwMDQsMjQuMzQ1MzIwNjcyMDAwMDddLFs4OS43NTY2MDg2NjcwMDAwOCwyNC4zNDUwNzA0OTQwMDAwM10sWzg5Ljc1NzI1MjI4NTAwMDA1LDI0LjM0NDU1NTU3ODAwMDA0XSxbODkuNzU3NTc1NTczMDAwMDUsMjQuMzQ0MzI5MTY4MDAwMDZdLFs4OS43NjExNDQwOTkwMDAwMywyNC4zNDIxMDU2NDIwMDAwNF0sWzg5Ljc2MzQ4ODEyOTAwMDA1LDI0LjM0MDk1NzE4MjAwMDA3XSxbODkuNzYzODExMjA1MDAwMDgsMjQuMzQwODMzNDk2MDAwMDddLFs4OS43NjQxMTgzMjkwMDAwNCwyNC4zNDA2NzQyMjIwMDAwOF0sWzg5Ljc2NDE1Njg4MjAwMDA3LDI0LjM0MDY1MDAwOTAwMDA2XSxbODkuNzY0NTM0MTE1MDAwMDYsMjQuMzQwMzkxNDkxMDAwMDVdLFs4OS43NjQ1ODg0MDUwMDAwNCwyNC4zNDAzNTM3NTQwMDAwM10sWzg5Ljc2NDkzNjEwNDAwMDA3LDI0LjM0MDA3MzE3NTAwMDA0XSxbODkuNzY1MTMzOTcwMDAwMDgsMjQuMzM5ODU2NzE2MDAwMDRdLFs4OS43NjUyMDg2NzIwMDAwOSwyNC4zMzk3NzQ0MTYwMDAwN10sWzg5Ljc2NTQwNzE5NjAwMDA3LDI0LjMzOTUzMjU1NjAwMDA1XSxbODkuNzY1NDk5NTE2MDAwMDMsMjQuMzM5NDE5MjM1MDAwMDRdLFs4OS43NzA1NzMwNDYwMDAwNCwyNC4zMzE4MTUzNDQwMDAwNl0sWzg5Ljc3MTI5OTM0MDAwMDA0LDI0LjMzMDY0ODQ5OTAwMDA2XSxbODkuNzcxNDMyNzk2MDAwMDYsMjQuMzMwNDMzNjI3MDAwMDVdLFs4OS43NzE1MzU2OTMwMDAwMywyNC4zMzAyNTQyNzIwMDAwNV0sWzg5Ljc3MTY5MzcyNDAwMDA0LDI0LjMyOTkwNTA4OTAwMDA4XSxbODkuNzcxNzA5MjA4MDAwMDYsMjQuMzI5ODU5Mzg3MDAwMDZdLFs4OS43NzE3ODMwMTkwMDAwNSwyNC4zMjk1ODEyMDIwMDAwNF0sWzg5Ljc3MjUwNzUwMzAwMDA0LDI0LjMyNjQ3OTgyMzAwMDA2XSxbODkuNzcyNjUwMTk1MDAwMDQsMjQuMzI1NzQ3MzIyMDAwMDRdLFs4OS43NzI2ODc5MDkwMDAwNywyNC4zMjU0OTldLFs4OS43NzI3NDA1OTIwMDAwNSwyNC4zMjQ5NzQ2NjMwMDAwM10sWzg5Ljc3Mjc1ODAwNDAwMDA4LDI0LjMyNDcxMDUwNDAwMDA1XSxbODkuNzcyNzI0MDc0MDAwMDUsMjQuMzI0MDQ2NjA3MDAwMDddLFs4OS43NzI2NjIwMTkwMDAwNSwyNC4zMjM5NTM5MzcwMDAwNl0sWzg5Ljc3MjYzNjIxMzAwMDA2LDI0LjMyMzkxNTUxMzAwMDAzXSxbODkuNzcyNDc4NDIyMDAwMDYsMjQuMzIzNzkxMDg3MDAwMDddLFs4OS43NzI0MTc2ODkwMDAwNiwyNC4zMjM0NzU0NDMwMDAwNl0sWzg5Ljc3MjM0MjAwNjAwMDAzLDI0LjMyMzA4MDE4MzAwMDA2XSxbODkuNzcyMzA0MjI1MDAwMDgsMjQuMzIyODQ5MjQ3MDAwMDhdLFs4OS43NzIyMzU1MTIwMDAwNywyNC4zMjIzNDU2MTMwMDAwNF0sWzg5Ljc3MjIwNzI5MjAwMDA4LDI0LjMyMjEwNzkxODAwMDAzXSxbODkuNzcyMTc3MDM3MDAwMDYsMjQuMzIxODAyNDgyMDAwMDddLFs4OS43NzE3NTk4ODEwMDAwNCwyNC4zMTM0MjkyNDgwMDAwM10sWzg5Ljc3MTc1MTkyNzAwMDA4LDI0LjMxMzIyNzE0NjAwMDAzXSxbODkuNzcxNjkzMDQxMDAwMDUsMjQuMzExNzExOTQ5MDAwMDNdLFs4OS43NzE3NzgyODQwMDAwNSwyNC4zMTA3MTg1NjIwMDAwM10sWzg5Ljc3MTgwMTk2ODAwMDAzLDI0LjMxMDU2MzM2MzAwMDAzXSxbODkuNzcxODg0MTUzMDAwMDMsMjQuMzEwMDcyOTM4MDAwMDhdLFs4OS43NzQxNjAyMjQwMDAwNywyNC4zMDE2OTI0MzAwMDAwNl0sWzg5Ljc3NDE3ODUwNDAwMDA4LDI0LjMwMTYzMDM2MTAwMDA0XSxbODkuNzc0MjE0MTM0MDAwMDMsMjQuMzAxNTA5NjEzMDAwMDZdLFs4OS43NzQ0NDU5NDAwMDAwOCwyNC4zMDEwMzkxNjUwMDAwOF0sWzg5Ljc3NDU3MDQ1MTAwMDA1LDI0LjMwMDgxMTg1ODAwMDAzXSxbODkuNzc0NzQxODI2MDAwMDgsMjQuMzAwNTU0MTM3MDAwMDZdLFs4OS43NzU4Mzg4MjQwMDAwNiwyNC4yOTg5NTc2NjcwMDAwMl0sWzg5Ljc3NTkxMjYwNzAwMDA3LDI0LjI5ODg1NDQ3MjAwMDA3XSxbODkuNzc2MTQ0NDQ3MDAwMDQsMjQuMjk4NTM0MTgwMDAwMDVdLFs4OS43NzY0MDQ2MDIwMDAwNywyNC4yOTgyMjE4MzEwMDAwM10sWzg5Ljc3Njc1MTEyODAwMDA2LDI0LjI5NzgyODMyMTAwMDA1XSxbODkuNzc3NDA0MDI5MDAwMDgsMjQuMjk3MTAyNzcxMDAwMDNdLFs4OS43Nzc4NzQ4MjIwMDAwNiwyNC4yOTY2MTIzNDYwMDAwN10sWzg5Ljc3OTMxOTQ5NzAwMDA3LDI0LjI5NTE1MDcwODAwMDA1XSxbODkuNzc5ODQ0MDk0MDAwMDUsMjQuMjk0NzAyMTI5MDAwMDNdLFs4OS43ODA0OTk3MjUwMDAwOCwyNC4yOTQxNjA1OTQwMDAwNl0sWzg5Ljc4MDg3NTg5ODAwMDAzLDI0LjI5Mzg4Mjg0MTAwMDAzXSxbODkuNzgxMjI1NzM3MDAwMDYsMjQuMjkzNjk2NDk2MDAwMDVdLFs4OS43ODE4OTE1NjkwMDAwNCwyNC4yOTMzMDU2OTEwMDAwNl0sWzg5Ljc4MjU5NTk1ODAwMDA2LDI0LjI5Mjg3NjU1MzAwMDA0XSxbODkuNzgyOTU4Nzk5MDAwMDgsMjQuMjkyNjQ2MTkzMDAwMDVdLFs4OS43ODM0MDE5OTAwMDAwNywyNC4yOTIyNDg4NTMwMDAwNV0sWzg5Ljc4Mzk2NjM5OTAwMDA2LDI0LjI5MTczNDI2OTAwMDA3XSxbODkuNzg2MTY2ODA5MDAwMDYsMjQuMjg5NjEzMTc1MDAwMDZdLFs4OS43ODY1MjM3MTQwMDAwNSwyNC4yODkyNDExMDYwMDAwOF0sWzg5Ljc4Njk3MDcyMDAwMDA2LDI0LjI4ODU3MjIzOTAwMDA4XSxbODkuNzg3MDE0NTk5MDAwMDMsMjQuMjg4NDgxOTgxMDAwMDddLFs4OS43ODc1MTk1MDMwMDAwNiwyNC4yODc0MzY2NzIwMDAwN10sWzg5Ljc4ODA0NDA5NzAwMDA3LDI0LjI4NjIxMDc0NzAwMDA0XSxbODkuNzg4MzM2ODQ1MDAwMDYsMjQuMjg1NTIzNTk2MDAwMDhdLFs4OS43ODgzOTA0ODEwMDAwOCwyNC4yODUzMDQwODAwMDAwNl0sWzg5Ljc4ODYwNDQwMjAwMDAzLDI0LjI4NDQyNjU4MTAwMDA1XSxbODkuNzg5NjYxMTQ0MDAwMDQsMjQuMjc4ODUxMzYwMDAwMDNdLFs4OS43OTAwODE2NDEwMDAwOSwyNC4yNzY0ODEwNDUwMDAwM10sWzg5Ljc5MDE1ODc2NjAwMDA1LDI0LjI3NjAxNjU2NzAwMDA2XSxbODkuNzkwMjcxNjcwMDAwMDQsMjQuMjc1MTM3Nzk3MDAwMDddLFs4OS43OTAyOTYyOTIwMDAwNSwyNC4yNzQ1ODEyMzQwMDAwNF0sWzg5Ljc5MDY1ODExNTAwMDA0LDI0LjI2NTUzNTA1MzAwMDA2XSxbODkuNzkwNjUyNjM1MDAwMDcsMjQuMjY1MTIxMjY3MDAwMDRdLFs4OS43OTA2Mzk2NDIwMDAwMywyNC4yNjQ5NzE2NTYwMDAwNl0sWzg5Ljc5MDYzNzgyOTAwMDA1LDI0LjI2NDk1MTMzMTAwMDA4XSxbODkuNzkwNTExMjg3MDAwMDcsMjQuMjYzODI2NjczMDAwMDRdLFs4OS43OTA0OTAwMzUwMDAwNiwyNC4yNjM2NDQzMTAwMDAwN10sWzg5Ljc5MDQ3NzUzOTAwMDA1LDI0LjI2MzU2Njk1NjAwMDAzXSxbODkuNzkwNDUyODUwMDAwMDcsMjQuMjYzNDE0NTA3MDAwMDVdLFs4OS43OTAxOTU0OTMwMDAwNiwyNC4yNjIwODY0NDYwMDAwN10sWzg5Ljc5MDEzNDA2MDAwMDA3LDI0LjI2MTgxMjU3OTAwMDA0XSxbODkuNzg5Mjk1OTI3MDAwMDcsMjQuMjU5MDc4MTA3MDAwMDVdLFs4OS43ODg4NDUwODMwMDAwNywyNC4yNTc4NTM2NDQwMDAwOF0sWzg5Ljc4ODY3Mzc0MjAwMDA3LDI0LjI1NzM5NzI4OTAwMDA0XSxbODkuNzg4NDc4MjM1MDAwMDcsMjQuMjU3MDM1MTcyMDAwMDNdLFs4OS43ODY5NTQ3NzEwMDAwNywyNC4yNTM4MTY1MTgwMDAwNl0sWzg5Ljc4NTM0NTI1MTAwMDA4LDI0LjI1MDE5NDEwOTAwMDA2XSxbODkuNzg1MTM3MDYxMDAwMDYsMjQuMjQ5Njk3NjE5MDAwMDddLFs4OS43ODQ2NDk1OTEwMDAwNiwyNC4yNDg1MTA5MTEwMDAwNF0sWzg5Ljc4NDYwMjEzNDAwMDA3LDI0LjI0ODM1Nzg2NTAwMDA2XSxbODkuNzg0NTc4MzA3MDAwMDYsMjQuMjQ4MjQ4MzE4MDAwMDRdLFs4OS43ODM5NzE5NzQwMDAwNSwyNC4yNDQzNTc0NzcwMDAwNV0sWzg5Ljc4MzQxOTYzMTAwMDA3LDI0LjIzNTg2ODI3MTAwMDA3XSxbODkuNzg0MDY2NjgyMDAwMDYsMjQuMjI5Mjc1Nzk4MDAwMDZdLFs4OS43ODY3NjQ0NTcwMDAwNiwyNC4yMTI4MzM5MTUwMDAwM10sWzg5Ljc4NzAxMTMzMDAwMDA0LDI0LjIxMTUwMzcyNDAwMDA3XSxbODkuNzg3MTE2NTgzMDAwMDYsMjQuMjEwOTQ3MjcwMDAwMDhdLFs4OS43ODcyNjQ1NDIwMDAwNiwyNC4yMTA0MzE1MTkwMDAwNV0sWzg5Ljc4OTUyNzQ2NjAwMDA0LDI0LjIwMzQ1Nzk0ODAwMDA1XSxbODkuNzkxOTgzODc1MDAwMDgsMjQuMTk3MzIxNzYyMDAwMDZdLFs4OS43OTQxMjQ3MDYwMDAwNSwyNC4xOTEzNDQyOTQwMDAwM10sWzg5Ljc5Njg0NTMyNDAwMDA2LDI0LjE4MjQ1MTMyMjAwMDA4XSxbODkuNzk4NTM1NTM4MDAwMDcsMjQuMTc1NzA0ODg0MDAwMDNdLFs4OS43OTg1NDgzODkwMDAwOCwyNC4xNzUxNjEyNzkwMDAwNl0sWzg5Ljc5ODE0MTIwMjAwMDA3LDI0LjE3MjEyNzA3ODAwMDA3XSxbODkuNzk4MDA1ODg2MDAwMDYsMjQuMTcxODk4Mjc0MDAwMDZdLFs4OS43OTc4NTc2MTEwMDAwNCwyNC4xNzE2OTM3MjUwMDAwN10sWzg5Ljc5NzY3NjY2MDAwMDA0LDI0LjE3MTUzMDkwNzAwMDAzXSxbODkuNzk3NTczNjU2MDAwMDUsMjQuMTcxNDkzNTEzMDAwMDNdLFs4OS43OTcyMjAzNjQwMDAwNSwyNC4xNzEzNjU0NjUwMDAwNl0sWzg5Ljc5NjkxMDQyNzAwMDA2LDI0LjE3MTI1MzI4MDAwMDAzXSxbODkuNzk2Nzc3MjU4MDAwMDgsMjQuMTcxMjI0ODc2MDAwMDVdLFs4OS43OTY0MzMzNDUwMDAwOCwyNC4xNzExOTc4ODcwMDAwNl0sWzg5Ljc5NjI4NDQ1OTAwMDA1LDI0LjE3MTE4Njk2MjAwMDA0XSxbODkuNzkyMTMzNDg2MDAwMDcsMjQuMTcwODg1NTYwMDAwMDRdLFs4OS43OTIwMzkwOTQwMDAwNywyNC4xNzEyMjk3ODEwMDAwMl0sWzg5Ljc5MTg1ODY0NjAwMDA0LDI0LjE3MjA5MDk3MzAwMDAyXSxbODkuNzkxODQ5NjU0MDAwMDMsMjQuMTcyMTM0NDI3MDAwMDZdLFs4OS43ODY5NjY4NTEwMDAwNSwyNC4xNzE5NTk0NjMwMDAwNl0sWzg5Ljc4NjUyNzM0NTAwMDA4LDI0LjE3MTg3OTgxNzAwMDA1XSxbODkuNzg1NzQ1ODMzMDAwMDgsMjQuMTcxNzM4MTU5MDAwMDNdLFs4OS43ODM2ODExMDYwMDAwNywyNC4xNzEwNDU5ODEwMDAwOF0sWzg5Ljc4Mjk0MjQ1NDAwMDA4LDI0LjE3MDMwNjU1NjAwMDA3XSxbODkuNzgwMTg2Mzk4MDAwMDcsMjQuMTY3MzI1Mzk3MDAwMDddLFs4OS43ODAxMDc4MTcwMDAwNCwyNC4xNjcyMjI1NDQwMDAwM10sWzg5Ljc4MDA1ODEyOTAwMDA1LDI0LjE2NzEzNDk3MzAwMDAzXSxbODkuNzgwMDQxNjIyMDAwMDYsMjQuMTY3MDczNDE4MDAwMDNdLFs4OS43ODAwMzU1NjcwMDAwOCwyNC4xNjcwMTYzOTQwMDAwM10sWzg5Ljc3OTk3OTI3NDAwMDA4LDI0LjE2NjQ3NDM4NjAwMDA2XSxbODkuNzgxNzM3MzgwMDAwMDQsMjQuMTYzNjE0MjkzMDAwMDJdLFs4OS43ODIzODA0NDIwMDAwMywyNC4xNjI2NDM2OTMwMDAwNl0sWzg5Ljc4MzUyMzE3NTAwMDA4LDI0LjE2MTQzNjcwODAwMDA1XSxbODkuNzgzNzI2MjQ4MDAwMDUsMjQuMTYxMjMxNTE1MDAwMDVdLFs4OS43ODQ3MzE4NzMwMDAwNiwyNC4xNjAzMjA2OTIwMDAwM10sWzg5Ljc4NjM3NzQzMTAwMDA2LDI0LjE1ODk4NzM3ODAwMDA2XSxbODkuNzg3NTY3MDQ1MDAwMDYsMjQuMTU4MDM1NTg0MDAwMDZdLFs4OS43ODc3MDgzODQwMDAwNCwyNC4xNTc5NDk0MTIwMDAwNV0sWzg5Ljc5MjAxMjc0ODAwMDA1LDI0LjE1ODQzNTE3MjAwMDA1XSxbODkuNzk2NjEzMjU5MDAwMDgsMjQuMTU5MDAxMzY2MDAwMDRdLFs4OS43OTg2ODgwOTMwMDAwNywyNC4xNTk0NDcyNTUwMDAwM10sWzg5LjgwNDkxNDQyMDAwMDA1LDI0LjE1NDU3ODU1MjAwMDAzXSxbODkuODA1MTQ1ODAxMDAwMDQsMjQuMTUzMzIzOTQ2MDAwMDZdLFs4OS44MDUyMTMzODcwMDAwNCwyNC4xNTI5Nzc0MjMwMDAwNF0sWzg5LjgwNTI2MjE4NzAwMDA0LDI0LjE1Mjg0NjUxOTAwMDA0XSxbODkuODA1MzQ2MTg5MDAwMDMsMjQuMTUyNjI3MDMyMDAwMDVdLFs4OS44MDY3MzkzMzEwMDAwNywyNC4xNDkxNTk4OTIwMDAwNl0sWzg5LjgwNjg0NTUxNzAwMDA2LDI0LjE0ODkxMjc3MjAwMDA3XSxbODkuODA2ODYwMzMzMDAwMDMsMjQuMTQ4ODc4MzU2MDAwMDddLFs4OS44MDY5MTM2NjIwMDAwNiwyNC4xNDg4MDI3NzgwMDAwNl0sWzg5LjgwNjk2ODIyMjAwMDA4LDI0LjE0ODcyNTUwOTAwMDAzXSxbODkuODA3MzU2MTAxMDAwMDQsMjQuMTQ4MzE3ODYwMDAwMDhdLFs4OS44MDgxNDkzNDMwMDAwOCwyNC4xNDc1Mjc5ODAwMDAwNl0sWzg5LjgwODM5MjA4MTAwMDA4LDI0LjE0NzI5MjMyMDAwMDA4XSxbODkuODA5MjcyNzMyMDAwMDcsMjQuMTQ2NDU5NjQ0MDAwMDZdLFs4OS44MDk0OTUwODcwMDAwNywyNC4xNDYyNzUzMjYwMDAwMl0sWzg5LjgwOTg1NDc1ODAwMDA5LDI0LjE0NjAwMzExNTAwMDA0XSxbODkuODEwMjM5NjAzMDAwMDcsMjQuMTQ1NzYzMTEzMDAwMDRdLFs4OS44MTQzNDUyNDkwMDAwNCwyNC4xNDMyNjc5NDgwMDAwN10sWzg5LjgxODYzNjA1NDAwMDA4LDI0LjEzNDEyMTI2MTAwMDA4XSxbODkuODE3MDEyNzAyMDAwMDYsMjQuMTMxOTgwOTU3MDAwMDVdLFs4OS44MTY4ODc0NTcwMDAwNiwyNC4xMzE4MTMxNDgwMDAwNV0sWzg5LjgxNjcxNTI1NzAwMDA2LDI0LjEzMTU3NDE1MjAwMDA0XSxbODkuODE2NTI3NzU1MDAwMDQsMjQuMTMxMjgyMDc2MDAwMDVdLFs4OS44MTY1MTQyNjYwMDAwNywyNC4xMzEyNTI3MDUwMDAwN10sWzg5LjgxNjM5ODcwMzAwMDA2LDI0LjEzMDk4MTYwMDAwMDA0XSxbODkuODE2MzA5MDE1MDAwMDYsMjQuMTMwNjgyODY3MDAwMDhdLFs4OS44MTYyMTM3NTIwMDAwNywyNC4xMjk5ODIxOTMwMDAwNV0sWzg5LjgxNjIxMTk1MjAwMDA2LDI0LjEyOTk1MDU3OTAwMDAyXSxbODkuODE2MjA0NzcwMDAwMDcsMjQuMTI5ODEwNTcyMDAwMDVdLFs4OS44MTYxOTYzNzkwMDAwOCwyNC4xMjgxNTAzMzQwMDAwNV0sWzg5LjgxNjQ0NTg2MDAwMDA0LDI0LjExNzExNDk5NjAwMDA1XSxbODkuODE2ODQxNTQxMDAwMDMsMjQuMTA5NDA0Nzk3MDAwMDJdLFs4OS44MTcyMjcxMzMwMDAwNywyNC4xMDcyNTE2NDIwMDAwNV0sWzg5LjgxNzMzNjk5NTAwMDA2LDI0LjEwNjc1ODM4OTAwMDA1XSxbODkuODE3NDA1OTExMDAwMDQsMjQuMTA2NTE2Mjk3MDAwMDRdLFs4OS44MTg3MDc4MzEwMDAwNCwyNC4xMDIxNjYwMTQwMDAwM10sWzg5LjgxODc3MzkxOTAwMDA4LDI0LjEwMTk2MzQzMzAwMDA0XSxbODkuODE4ODg0Nzc2MDAwMDYsMjQuMTAxNjI5MzczMDAwMDRdLFs4OS44MTkwMjE4MTAwMDAwNCwyNC4xMDEyNjcxMTgwMDAwN10sWzg5LjgxOTI5NjQ1MTAwMDA3LDI0LjEwMDU2OTE0MDAwMDA2XSxbODkuODE5NTYwNDc2MDAwMDUsMjQuMDk5OTg2MzA5MDAwMDNdLFs4OS44MTk4ODQyOTcwMDAwNCwyNC4wOTkyOTQ1OTgwMDAwM10sWzg5LjgyMDA1MDIwNDAwMDA0LDI0LjA5ODk0OTg3NTAwMDA3XSxbODkuODIwNzcyNjAxMDAwMDQsMjQuMDk3NTMyMTAxMDAwMDddLFs4OS44MjE4NTM4MDcwMDAwOCwyNC4wOTU2NjcwODMwMDAwMl0sWzg5LjgyMjkzNzM1MjAwMDA1LDI0LjA5MzY0Mzk5NDAwMDA1XSxbODkuODIzNDQyMDQ2MDAwMDgsMjQuMDkyNjQzNjk1MDAwMDVdLFs4OS44MjM3Njk4NzYwMDAwOSwyNC4wOTE5MTc1NDQwMDAwN10sWzg5LjgyMzk4NTIyNjAwMDA1LDI0LjA5MTM3NDczMDAwMDA0XSxbODkuODI0MDkyMDMxMDAwMDgsMjQuMDkxMDY0OTM0MDAwMDNdLFs4OS44MjQ4Mjk1MDUwMDAwOCwyNC4wODg2Njk5ODIwMDAwNl0sWzg5LjgyNDg5ODYzNjAwMDA2LDI0LjA4ODI1MDA2MjAwMDA0XSxbODkuODI0OTM4NDAzMDAwMDMsMjQuMDg3OTQ2NDAwMDAwMDhdLFs4OS44MjQ5NTYwNDUwMDAwOCwyNC4wODc2MzM2NzgwMDAwM10sWzg5LjgyNDk4MDk4ODAwMDA1LDI0LjA4NDg4ODQ3MzAwMDAzXSxbODkuODI0ODk5OTA4MDAwMDgsMjQuMDg0MTQ1NDc5MDAwMDNdLFs4OS44MjQ4NzY3OTUwMDAwOCwyNC4wODM5NTk3MjgwMDAwMl0sWzg5LjgyNDc3Mzg2MDAwMDA1LDI0LjA4MzIzNzU5NTAwMDA3XSxbODkuODI0MzE3NDk3MDAwMDQsMjQuMDgwMTY1NTQ2MDAwMDVdLFs4OS44MjQxMjM0MzIwMDAwOCwyNC4wNzkwOTMzMTAwMDAwOF0sWzg5LjgyMzM2ODI4MTAwMDA2LDI0LjA3NTM0ODU3NDAwMDAzXSxbODkuODIyODk3MTU4MDAwMDUsMjQuMDczNDQzMzU2MDAwMDRdLFs4OS44MjI2NjY0MjEwMDAwNiwyNC4wNzI4OTc3NjcwMDAwM10sWzg5LjgyMDAyMjQ3NDAwMDA0LDI0LjA2NzUwMDczMzAwMDAzXSxbODkuODE5OTczNDI2MDAwMDUsMjQuMDY3NDAxODg2MDAwMDNdLFs4OS44MTk2MzM4MzgwMDAwNywyNC4wNjY4OTYyNDMwMDAwM10sWzg5LjgxODk0NjgzNzAwMDA2LDI0LjA2NTk4NzEyNTAwMDA1XSxbODkuODE3MjAwODA2MDAwMDcsMjQuMDYzODEwNTM1MDAwMDddLFs4OS44MTcwODM4OTAwMDAwNSwyNC4wNjM2Njg3MDEwMDAwNF0sWzg5LjgxNzAwNTYyNTAwMDA0LDI0LjA2MzU4MzkzMTAwMDA0XSxbODkuODE2NTc1ODU2MDAwMDQsMjQuMDYzMTcyNDQ4MDAwMDVdLFs4OS44MTMzMzcxNTkwMDAwNywyNC4wNjA0MDI0MDQwMDAwNl0sWzg5Ljc5OTE2ODI0NzAwMDA3LDI0LjA0ODQ2NDcwNTAwMDA3XSxbODkuNzkyOTQ1NTIyMDAwMDgsMjQuMDQyMjg2MjQ4MDAwMDRdLFs4OS43ODE5NTU0OTMwMDAwNSwyNC4wMzI0NTc5OTIwMDAwNV0sWzg5Ljc3NDYyMDE3MzAwMDA3LDI0LjAyNzQ1MzY1MzAwMDA3XSxbODkuNzcyOTAyMDM0MDAwMDgsMjQuMDI2NTY0MjU5MDAwMDVdLFs4OS43Njk3NTUzNTMwMDAwNSwyNC4wMjUxMDUzNjUwMDAwNl0sWzg5Ljc2NjYzODY3MzAwMDA1LDI0LjAyMzkxOTExNTAwMDA3XSxbODkuNzY2MjU0NDk1MDAwMDYsMjQuMDIzNzc4NTI4MDAwMDRdLFs4OS43NjYxMjY0MzMwMDAwNywyNC4wMjM3MzIwNDMwMDAwNV0sWzg5Ljc2NTg5MDI2MDAwMDA1LDI0LjAyMzY1NDkwNzAwMDA0XSxbODkuNzY1NTI1OTc3MDAwMDQsMjQuMDIzNTU4OTQ5MDAwMDZdLFs4OS43NjUwNzkzNjUwMDAwOCwyNC4wMjM0NDgxODMwMDAwM10sWzg5Ljc2NDU2MDg2OTAwMDA0LDI0LjAyMzMyMzc1NzAwMDA3XSxbODkuNzY0MzQ0MzExMDAwMDYsMjQuMDIzMjc2MDA1MDAwMDddLFs4OS43NjI0NzM2MTAwMDAwOSwyNC4wMjI4Njc3OTIwMDAwNl0sWzg5Ljc2MTc0NTI3MTAwMDA1LDI0LjAyMjcyNDk2ODAwMDAzXSxbODkuNzYwNTkzNTkyMDAwMDgsMjQuMDIyNTE5OTQ2MDAwMDVdLFs4OS43NTg3NTI4MjMwMDAwNywyNC4wMjIyMjIzODAwMDAwN10sWzg5Ljc1ODA1Mzc2NDAwMDA3LDI0LjAyMjIwMTUyMTAwMDA2XSxbODkuNzU3NDUzNjE5MDAwMDUsMjQuMDIyMTk4ODc5MDAwMDNdLFs4OS43NTcxNjgzOTIwMDAwNCwyNC4wMjIyMjgzNDUwMDAwM10sWzg5Ljc1NjcxNTYzNDAwMDA1LDI0LjAyMjI4NjkwNDAwMDA1XSxbODkuNzU0NzQ4MjA1MDAwMDYsMjQuMDIyNjcyNzE5MDAwMDddLFs4OS43NTMzOTg4NzAwMDAwNywyNC4wMjI5OTExOTkwMDAwNV0sWzg5Ljc1Mjc2OTM5NzAwMDA3LDI0LjAyMzIxODgxMzAwMDAzXSxbODkuNzUyNTY0NjA3MDAwMDcsMjQuMDIzMjg1NjYxMDAwMDVdLFs4OS43NTIxMzI5MzEwMDAwNiwyNC4wMjM0MDUyMDYwMDAwNl0sWzg5Ljc1MTk4MzI1MzAwMDA1LDI0LjAyMzQxNzM4MzAwMDA0XSxbODkuNzUxNzMwNjE0MDAwMDUsMjQuMDIzNDM3ODYxMDAwMDVdLFs4OS43NDk5MDg1NTkwMDAwNiwyNC4wMjM0Nzg5MzEwMDAwNl0sWzg5Ljc0OTU5MTQ4NDAwMDA2LDI0LjAyMzQ0ODQ5MjAwMDA2XSxbODkuNzQ1NTg5OTMzMDAwMDgsMjQuMDIyOTMxMDEyMDAwMDddLFs4OS43NDUzNTM2OTMwMDAwOCwyNC4wMjI4OTQ0OTMwMDAwMl0sWzg5Ljc0Mzg5ODAyODAwMDA1LDI0LjAyMjU4MjE0NjAwMDA1XSxbODkuNzQwNjM5MzU5MDAwMDYsMjQuMDIxODYyNTUyMDAwMDddLFs4OS43MzkwNzI1OTYwMDAwOSwyNC4wMjE0OTA2OTYwMDAwNl0sWzg5LjczODczNDEyNjAwMDA1LDI0LjAyMTQwNzEzNjAwMDA1XSxbODkuNzM4MTQ0MTQ0MDAwMDUsMjQuMDIxMjQ0Njc2MDAwMDRdLFs4OS43MzQ5NTIxNjYwMDAwOCwyNC4wMjAyNTQxMDYwMDAwNF0sWzg5LjczNDQyNjE3NTAwMDA3LDI0LjAyMDA1OTU2NzAwMDAzXSxbODkuNzMzODI1Mjc5MDAwMDksMjQuMDE5ODMwNDU5MDAwMDVdLFs4OS43MzM1NDAwNDIwMDAwNywyNC4wMTk3MTU5MzEwMDAwNl0sWzg5LjczMzMyMzU4MzAwMDA3LDI0LjAxOTYyODA1NDAwMDA3XSxbODkuNzMyODgwNTg3MDAwMDcsMjQuMDE5NDIzNDkyMDAwMDRdLFs4OS43MTg2NjM2ODMwMDAwNSwyNC4wMTIwMTY5OTMwMDAwM10sWzg5LjcxMTI4ODk4NzAwMDA1LDI0LjAwNzI4MTA5MzAwMDA3XSxbODkuNzA2NDQwNzQ4MDAwMDMsMjQuMDAzNzUzMjUxMDAwMDNdLFs4OS42OTkyODYyNDUwMDAwNSwyMy45OTczNDAwMTYwMDAwN10sWzg5LjY5OTI0NTE3OTAwMDA2LDIzLjk5NzI5NDc3NTAwMDA2XSxbODkuNjk4MjY3NjMwMDAwMDMsMjMuOTk2MjA4NDE2MDAwMDZdLFs4OS42OTYxNjI2NjcwMDAwNywyMy45OTI3MTk0OTMwMDAwNF0sWzg5LjY5NTQwMDA5NDAwMDA0LDIzLjk5MTMwMTAzOTAwMDA2XSxbODkuNjk0MjEyNDAyMDAwMDYsMjMuOTg4OTQ3NDU5MDAwMDNdLFs4OS42OTMzOTU3MzMwMDAwNSwyMy45ODcyOTgwMDIwMDAwNV0sWzg5LjY5MzIzNTQ1OTAwMDA1LDIzLjk4Njc0MTA2NjAwMDA0XSxbODkuNjkyOTc4Mzc4MDAwMDgsMjMuOTg1NjgxNTE1MDAwMDddLFs4OS42OTIwMzEzODEwMDAwNSwyMy45Nzk4MTQyNzEwMDAwN10sWzg5LjY5MTQ0MzEyNzAwMDA3LDIzLjk3NTU0ODcxNDAwMDA3XSxbODkuNjkxNzg2NDk4MDAwMDYsMjMuOTYzODIwMzg3MDAwMDZdLFs4OS42OTIxMTE1MzEwMDAwOCwyMy45NTM0NDYyODUwMDAwNF0sWzg5LjY5MjY2ODA1ODAwMDA0LDIzLjk0NzM1MjI2OTAwMDA4XSxbODkuNjkyNzI4NzQ5MDAwMDgsMjMuOTQ2NDkzNzU0MDAwMDddLFs4OS42OTI4MjcyOTgwMDAwNSwyMy45NDQ1NjMyODkwMDAwM10sWzg5LjY5MjgyMTE3NjAwMDA1LDIzLjk0NDE2NTg1NTAwMDA1XSxbODkuNjkyODAyMzMyMDAwMDQsMjMuOTQzMDQ0Njc3MDAwMDVdLFs4OS42OTI3OTE4MjcwMDAwNiwyMy45NDI5NDEzNDgwMDAwM10sWzg5LjY5Mjc4MDcwOTAwMDAzLDIzLjk0MjgzODAxOTAwMDA4XSxbODkuNjkyNzY5Mjg2MDAwMDQsMjMuOTQyNzMzNTU5MDAwMDNdLFs4OS42OTI3MTI0NjEwMDAwNCwyMy45NDI2MDg2ODcwMDAwN10sWzg5LjY5MjU4MzU5OTAwMDA1LDIzLjk0MjU1NjQ5MjAwMDA1XSxbODkuNjkyNDczNDU0MDAwMDQsMjMuOTQyNTEyMjQwMDAwMDRdLFs4OS42ODkwNzUxOTAwMDAwNCwyMy45NDE2NzA0NzIwMDAwNl0sWzg5LjY4MzkyOTQ1MDAwMDA1LDIzLjkzOTM2MjM2OTAwMDA0XSxbODkuNjg0NDk4Mzk5MDAwMDYsMjMuOTI1MjUyNzUxMDAwMDddLFs4OS42ODQ1NDg5OTIwMDAwMywyMy45MjUxNTYzMjEwMDAwM10sWzg5LjY4NTE1MjE5NTAwMDA2LDIzLjkyNDcyNDAwNTAwMDAzXSxbODkuNjg1Mjc1NTQyMDAwMDYsMjMuOTI0NjM1NjI3MDAwMDRdLFs4OS42ODU0MTkxNzEwMDAwNCwyMy45MjQ1NDA1MTgwMDAwN10sWzg5LjY4NTY3NTk0MDAwMDA3LDIzLjkyNDM4NzQ5MzAwMDA0XSxbODkuNjg1OTY5ODU0MDAwMDYsMjMuOTI0MjM3OTMxMDAwMDVdLFs4OS42ODY4NDkzNDcwMDAwOCwyMy45MjM4MjgxODcwMDAwM10sWzg5LjY4NzM3MTc1ODAwMDA0LDIzLjkyMzY1OTg5NDAwMDAyXSxbODkuNjg3OTA1NTAxMDAwMDUsMjMuOTIzNTAyOTEyMDAwMDZdLFs4OS42ODg2NTM5NjgwMDAwNCwyMy45MjM0MzYxMjMwMDAwNF0sWzg5LjY4OTQwNTk4ODAwMDAzLDIzLjkyMzQyNTIyNjAwMDA2XSxbODkuNjkyOTM2MDA5MDAwMDUsMjMuOTIzNTMzOTMyMDAwMDVdLFs4OS42OTM5NjYwMTMwMDAwOCwyMy45MjM2MTMzMjYwMDAwN10sWzg5LjY5NDM1NjA2MTAwMDA2LDIzLjkyMzcwOTUwNjAwMDAyXSxbODkuNjk0NjAwNjY4MDAwMDgsMjMuOTIzNzYxMzY1MDAwMDhdLFs4OS42OTQ4MDU2ODkwMDAwOCwyMy45MjM4MDE4NTMwMDAwNF0sWzg5LjY5NTE1NDA0OTAwMDA1LDIzLjkyMzg2ODAyODAwMDA3XSxbODkuNjk1NDIxMzgyMDAwMDYsMjMuOTIzOTE4ODAxMDAwMDddLFs4OS43MDAxNzA1NjEwMDAwNSwyMy45MDQ1NTY1MDcwMDAwNV0sWzg5LjcwMDI1MDI0NjAwMDA1LDIzLjkwNDIxOTA3NjAwMDA2XSxbODkuNzAwMzM3NDY3MDAwMDUsMjMuOTAzODA2NTc5MDAwMDVdLFs4OS43MDAzNjUxNDMwMDAwNiwyMy45MDM2NTM2NDYwMDAwN10sWzg5LjcwMDUxOTU0NjAwMDA3LDIzLjkwMjU5ODg1MTAwMDA1XSxbODkuNzAwNTQ3NTI3MDAwMDgsMjMuOTAyMzEyNjkxMDAwMDhdLFs4OS43MDA1NDU4MTIwMDAwOSwyMy45MDIyNTc5MzAwMDAwOF0sWzg5LjcwMDUzNzY5MTAwMDA4LDIzLjkwMjE4NDUyNTAwMDA1XSxbODkuNzAwNDM5MTM0MDAwMDgsMjMuOTAyMDUzOTI4MDAwMDRdLFs4OS43MDAyMzA4MzMwMDAwMywyMy45MDE4NTI1NTIwMDAwNF0sWzg5LjY5OTkxMTc5OTAwMDA2LDIzLjkwMTYwODYyMDAwMDA1XSxbODkuNjk5NTYxODI5MDAwMDYsMjMuOTAxMzMzNTc3MDAwMDZdLFs4OS42OTk1MTA2NTMwMDAwNiwyMy45MDEyOTI4MzEwMDAwM10sWzg5LjY5OTIyNDc0MTAwMDA4LDIzLjkwMTA2NDIwNTAwMDA3XSxbODkuNjk4OTIwNjE3MDAwMDYsMjMuOTAwNzQ3NDc2MDAwMDVdLFs4OS42OTg1MDQ3NjEwMDAwNCwyMy45MDAxNTcyOTkwMDAwNl0sWzg5LjY5ODQzNDc4MTAwMDA2LDIzLjkwMDAxNzcyMjAwMDAzXSxbODkuNjk4MjgyMDM3MDAwMDcsMjMuODk5NTU3OTAwMDAwMDVdLFs4OS42OTgxOTM4ODUwMDAwOCwyMy44OTkwNDY4MzMwMDAwNl0sWzg5LjY5ODE0OTk0NDAwMDA4LDIzLjg5ODY2NzM4NTAwMDA3XSxbODkuNjk4MTA2NjgxMDAwMDcsMjMuODk3NzMxMzE5MDAwMDZdLFs4OS42OTgwOTIyMDUwMDAwOCwyMy44OTY5NTc4OTIwMDAwNV0sWzg5LjY5ODExMjEyMjAwMDA1LDIzLjg5NjU3ODAwNDAwMDA1XSxbODkuNjk4NzMwMDkyMDAwMDYsMjMuODg4MTAyMzA0MDAwMDNdLFs4OS43MDAwMjgxMzMwMDAwNSwyMy44ODE5MTU5NDQwMDAwN10sWzg5LjcxMjE2OTMzMzAwMDA4LDIzLjg1ODM2MzMzNTAwMDA0XSxbODkuNzEyMzU2MjEzMDAwMDgsMjMuODU4MDk3NzkyMDAwMDJdLFs4OS43MTM4Njc4NjIwMDAwOSwyMy44NTYzNjEyOTcwMDAwM10sWzg5LjcxNDI4MDY5MDAwMDA3LDIzLjg1NTkyMTE2NTAwMDA0XSxbODkuNzE0NTU1Njk5MDAwMDcsMjMuODU1NjI5ODE1MDAwMDRdLFs4OS43MTQ2MTY2MDYwMDAwNSwyMy44NTU1NjU1NzEwMDAwNl0sWzg5LjcxNjk4NTMxODAwMDA3LDIzLjg1MzE0MDc3NDAwMDA1XSxbODkuNzE4NDA2MjI3MDAwMDYsMjMuODUxODcxNDk0MDAwMDJdLFs4OS43MjAyOTE1MjgwMDAwOCwyMy44NTAyNjk5NzMwMDAwMl0sWzg5LjcyNDA1MzE2NDAwMDA1LDIzLjg0Njg4OTU4MDAwMDA0XSxbODkuNzMwOTg4Mjg4MDAwMDUsMjMuODM5NDkyMzg5MDAwMDRdLFs4OS43MzE2NTEzMTgwMDAwNSwyMy44MzgzNDg2NzcwMDAwNl0sWzg5LjczMTc5NzkzNjAwMDA4LDIzLjgzODA4MDc4MDAwMDA0XSxbODkuNzMxODQ4NDYyMDAwMDcsMjMuODM3OTgzMjA0MDAwMDddLFs4OS43MzIxNzg2OTYwMDAwNiwyMy44MzcyMDk4MDcwMDAwOF0sWzg5LjczMjUxNDg5MzAwMDA5LDIzLjgzNjM3MDkzNjAwMDA0XSxbODkuNzMyNTcxNjUyMDAwMDUsMjMuODM2MjI1OTQ5MDAwMDRdLFs4OS43MzI2Nzg5NDMwMDAwNSwyMy44MzU4MzA0MDAwMDAwOF0sWzg5LjczMjc0MjAzODAwMDA4LDIzLjgzNTU4Nzc2MTAwMDA2XSxbODkuNzMyNzQxMjYxMDAwMDYsMjMuODM1MzY4MTU4MDAwMDVdLFs4OS43MzI3MTY4ODcwMDAwNCwyMy44MzUyODI4NzAwMDAwN10sWzg5LjczMjYxMzAzNjAwMDAzLDIzLjgzNTE5OTE0MDAwMDA0XSxbODkuNzMyNTA4MjE2MDAwMDQsMjMuODM1MTM4NTUzMDAwMDRdLFs4OS43MjUzMTA5OTEwMDAwNywyMy44MzEzNDAxNTMwMDAwNF0sWzg5LjcxMjg3NzkxNzAwMDA3LDIzLjgyNjIwMzk4MTAwMDA1XSxbODkuNzEyMDA0NTY4MDAwMDUsMjMuODI1ODM0Mjc5MDAwMDVdLFs4OS43MTE2MzI3NjYwMDAwNCwyMy44MjU2NjA4MzcwMDAwNF0sWzg5LjcxMTE4MzUzODAwMDA2LDIzLjgyNTM5NjM2MTAwMDA2XSxbODkuNzA3ODg4MjE1MDAwMDgsMjMuODIzMDUwNzM3MDAwMDddLFs4OS43MDc4NzcyMjAwMDAwNiwyMy44MjMwMjg3MDAwMDAwN10sWzg5LjcwNzgxNjUxMDAwMDA0LDIzLjgyMjg3MzMzOTAwMDA3XSxbODkuNzA3Nzk4MjQ0MDAwMDYsMjMuODIyODA5NTEzMDAwMDRdLFs4OS43MDc3OTkyMDcwMDAwNSwyMy44MjI3ODk3NTYwMDAwOF0sWzg5LjcwNzgxMTU4NTAwMDA2LDIzLjgyMjYwNjMwNzAwMDA2XSxbODkuNzA3ODQ2MjIzMDAwMDUsMjMuODIyMzQ2Njg4MDAwMDRdLFs4OS43MDc4NTE4NTYwMDAwNSwyMy44MjIyOTc1ODQwMDAwN10sWzg5LjcwNzg3NTQ3MDAwMDAzLDIzLjgyMjAyODkxMzAwMDA1XSxbODkuNzA3ODY2MTAxMDAwMDQsMjMuODIxOTY1MTA0MDAwMDddLFs4OS43MDc4MzAwNjYwMDAwNCwyMy44MjE3NTE2NDIwMDAwNF0sWzg5LjcwNzc0NTYzNTAwMDA0LDIzLjgyMTYzOTcwNjAwMDA0XSxbODkuNzA3NDYwODkzMDAwMDcsMjMuODIxMzcxMDEzMDAwMDNdLFs4OS43MDcyOTgzMTQwMDAwNywyMy44MjEyMTgyODEwMDAwM10sWzg5LjcwNjc5NDY1ODAwMDA0LDIzLjgyMDc0NTM3NzAwMDA0XSxbODkuNzA0NzAxNjExMDAwMDgsMjMuODE5MjIwNTM3MDAwMDRdLFs4OS43MDA1Mzk4NjMwMDAwNywyMy44MTY5OTIyMTIwMDAwNl0sWzg5LjY5NTg0NDYxNjAwMDA0LDIzLjgxNDU0NjUwOTAwMDAyXSxbODkuNjk1NzQ2MjMxMDAwMDQsMjMuODE0NTAzOTc0MDAwMDVdLFs4OS42OTUyNTU0NTYwMDAwNCwyMy44MTQzMjUxNzkwMDAwNF0sWzg5LjY5NDkyMTkwNDAwMDA3LDIzLjgxNDIxNzI1OTAwMDAzXSxbODkuNjk0MDY1MzM3MDAwMDQsMjMuODEzOTQzNDU4MDAwMDRdLFs4OS42OTMzODgzNzMwMDAwNiwyMy44MTM3NDg0ODAwMDAwN10sWzg5LjY5MzMwODM1MjAwMDAzLDIzLjgxMzcyNTczOTAwMDA2XSxbODkuNjkzMTA4NzU3MDAwMDYsMjMuODEzNjY5NDU0MDAwMDNdLFs4OS42OTI3NDY5MzAwMDAwNiwyMy44MTM1ODQwNTUwMDAwNF0sWzg5LjY5MjAzMDkyNjAwMDA5LDIzLjgxMzQyMzk5MzAwMDA3XSxbODkuNjcyNDQwNDY2MDAwMDcsMjMuODA5NzM4NDYzMDAwMDNdLFs4OS42NzIyNjI4ODEwMDAwNSwyMy44MDk3MTg4OTEwMDAwNV0sWzg5LjY3MTIwNzQ2MDAwMDA2LDIzLjgwOTYxOTU0NjAwMDA4XSxbODkuNjcwNzk5ODI4MDAwMDQsMjMuODA5NTgxOTgyMDAwMDVdLFs4OS42NjYxNTY1NjkwMDAwNywyMy44MDkyMDYxODcwMDAwM10sWzg5LjY2NTA3OTQ2MzAwMDA0LDIzLjgwOTE5MTQzMzAwMDAyXSxbODkuNjY0NDgxMDU5MDAwMDgsMjMuODA5MjUzOTI2MDAwMDVdLFs4OS42NjM5Mzc1NzAwMDAwMywyMy44MDkzMTcwOTgwMDAwN10sWzg5LjY2MzYzMzk5NzAwMDAzLDIzLjgwOTM3NzQwNjAwMDA3XSxbODkuNjYyNzE1MjgxMDAwMDMsMjMuODA5NTY3MzQxMDAwMDVdLFs4OS42NjE0OTU0MjMwMDAwOCwyMy44MDk4MjQzNTIwMDAwOF0sWzg5LjY1ODk1NzkxNTAwMDAzLDIzLjgxMDQyMTY4MTAwMDA0XSxbODkuNjU2Njc0NTYxMDAwMDUsMjMuODExMTk1NjY2MDAwMDZdLFs4OS42NDQ3MzU0OTcwMDAwNiwyMy44MTEyMzc1MDUwMDAwN10sWzg5LjY0MTAzNzk4OTAwMDA0LDIzLjgxMDIzNjUwMzAwMDA2XSxbODkuNjM3MjQ0MDY4MDAwMDksMjMuODA5Mzk2MDc2MDAwMDRdLFs4OS42MzY1ODY2NjcwMDAwNywyMy44MDkyNjY5NDUwMDAwNV0sWzg5LjYzNjUyMjU2NjAwMDA1LDIzLjgwOTI2MDAxOTAwMDA4XSxbODkuNjM2MTc5OTg0MDAwMDgsMjMuODA5MjIzMDgyMDAwMDddLFs4OS42MzQ5MjU1ODYwMDAwNywyMy44MDkwODg1ODMwMDAwNl0sWzg5LjYzMTMzMjg3ODAwMDA4LDIzLjgwOTE1NzM4MDAwMDA0XSxbODkuNjI5MzkyOTIyMDAwMDgsMjMuODA5MjAwMTUzMDAwMDZdLFs4OS42MjkxMDc4NDgwMDAwNSwyMy44MDkyMjM3NDEwMDAwNF0sWzg5LjYyODg4MDQ1MzAwMDA4LDIzLjgwOTI0NTc3NTAwMDAyXSxbODkuNjI4NjQwMTU4MDAwMDUsMjMuODA5MjczNDIzMDAwMDRdLFs4OS42MDc2OTgwNzkwMDAwNCwyMy44MTE3MTE3MjAwMDAwNl0sWzg5LjU4NzkxNjEyNjAwMDA0LDIzLjgxNDA3MTIzMzAwMDA1XSxbODkuNTg3MzU3MDU5MDAwMDYsMjMuODE0MTkyMjQwMDAwMDddLFs4OS41ODcwODM1ODEwMDAwNiwyMy44MTQyMjk4OTYwMDAwM10sWzg5LjU4NjgyMzMzOTAwMDAzLDIzLjgxNDI1MzQ3NDAwMDA1XSxbODkuNTg2NDAwMTQ0MDAwMDQsMjMuODE0Mjg5NTk4MDAwMDddLFs4OS41ODQxNjUyMzUwMDAwNiwyMy44MTQ0MzkzOTgwMDAwNV0sWzg5LjU4Mzg3MzE1NDAwMDA2LDIzLjgxNDQ0MDg3MDAwMDA2XSxbODkuNTgzNjcwNjg5MDAwMDMsMjMuODE0NDMzNTQ4MDAwMDddLFs4OS41ODM0ODk3MjQwMDAwNiwyMy44MTQ0MTgzODIwMDAwNF0sWzg5LjU4MjI0NDU0NzAwMDA3LDIzLjgxMzk5NDQ0MjAwMDAyXSxbODkuNTgxNTAxNTA0MDAwMDcsMjMuODEzNjk4MzA5MDAwMDddLFs4OS41ODAxODkxNjIwMDAwNywyMy44MTMwNzk5NzUwMDAwNV0sWzg5LjU3OTcxMDg4MDAwMDA1LDIzLjgxMjc4OTA3MDAwMDA2XSxbODkuNTc5NTA4ODM1MDAwMDcsMjMuODEyNjUyNDY5MDAwMDZdLFs4OS41Nzg5NTM0MjYwMDAwNiwyMy44MTIyMDk0OTQwMDAwNl0sWzg5LjU3ODU3MDA0NzAwMDA4LDIzLjgxMTg4ODM2MTAwMDA2XSxbODkuNTc4MTA0MDkwMDAwMDcsMjMuODExNDg4NTMyMDAwMDZdLFs4OS41Nzc3NjU1MTQwMDAwOCwyMy44MTExNjQ2OTgwMDAwM10sWzg5LjU3NzUxMDc0NTAwMDA0LDIzLjgxMDkyMDY4ODAwMDA3XSxbODkuNTc3MTkxNjUwMDAwMDMsMjMuODEwNTUxMTc4MDAwMDNdLFs4OS41NzY1Nzk1MDQwMDAwNSwyMy44MDk5MTgzNTkwMDAwNV0sWzg5LjU3NTM2OTE3MTAwMDAzLDIzLjgwODk4ODA3OTAwMDA3XSxbODkuNTc1MTM2OTk0MDAwMDUsMjMuODA4ODc1MTAwMDAwMDJdLFs4OS41NzQxMjgwMzAwMDAwNSwyMy44MDgzODUxMzMwMDAwNl0sWzg5LjU3Mzg5NjM5MDAwMDA3LDIzLjgwODI5NTg2MTAwMDAzXSxbODkuNTczODMxMTE4MDAwMDQsMjMuODA4MjczNjY1MDAwMDZdLFs4OS41NzM2MjQ4NzYwMDAwNSwyMy44MDgyMDQyMjIwMDAwM10sWzg5LjU3MzU2Nzg3MTAwMDA4LDIzLjgwODE4NzEzMDAwMDA4XSxbODkuNTczNDg0NDUxMDAwMDcsMjMuODA4MTc4OTk1MDAwMDVdLFs4OS41NzMzMzE3MTkwMDAwNywyMy44MDgxNjQ0NjAwMDAwNl0sWzg5LjU3MjIzMDMyNDAwMDAzLDIzLjgwODA4MDExODAwMDA4XSxbODkuNTcxNzIxLDIzLjgwODA5ODQ2MzAwMDA4XSxbODkuNTcxNTI1ODQ5MDAwMDcsMjMuODA4MTA5MjEyMDAwMDNdLFs4OS41NjMzMTgyODgwMDAwNiwyMy44MDk4ODQ3NzYwMDAwNV0sWzg5LjU1ODQ4NDE0MTAwMDA2LDIzLjgxMTE3MDU1MzAwMDA3XSxbODkuNTU2MjY0MTUxMDAwMDUsMjMuODExOTkzNDcwMDAwMDZdLFs4OS41NTMyMjc3MDcwMDAwOCwyMy44MTMwOTY4MTgwMDAwOF0sWzg5LjU1MjQyMTE1MzAwMDA3LDIzLjgxMzM2MDM3MjAwMDAzXSxbODkuNTUxODI4ODA1MDAwMDcsMjMuODEzNTE2MTU0MDAwMDddLFs4OS41NTEyMTEwMzgwMDAwOCwyMy44MTM2NTc3NDYwMDAwNV0sWzg5LjU0MzYwMzEyNzAwMDA0LDIzLjgxNDg2MjY5ODAwMDA3XSxbODkuNTQxMTQxODYwMDAwMDQsMjMuODE1MjQyMDk1MDAwMDNdLFs4OS41MzQ1MzM0NTcwMDAwNywyMy44MTYxNTYwMTUwMDAwNV0sWzg5LjUzMjIwMDA1NDAwMDA0LDIzLjgxNjI4NTU2OTAwMDA2XSxbODkuNTI5NTEzMDc5MDAwMDgsMjMuODE2MzY2MDI2MDAwMDNdLFs4OS41MjUzNTM3ODUwMDAwNSwyMy44MTY2MDM5MjkwMDAwNV0sWzg5LjUyMjUyNzEwODAwMDA4LDIzLjgxNjc5NDQ4MDAwMDA2XSxbODkuNTIyMjA4Mzk2MDAwMDUsMjMuODE2ODYxODAwMDAwMDNdLFs4OS41MTQ5NjM5MzcwMDAwNiwyMy44MTg2NDE3MDYwMDAwNV0sWzg5LjUxNDE1ODQ1NjAwMDA4LDIzLjgxODkxODA0NTAwMDAzXSxbODkuNTA3ODExMjY5MDAwMDYsMjMuODIxMjUwODQ1MDAwMDddLFs4OS41MDcyOTQzNDIwMDAwOCwyMy44MjE0ODAwODMwMDAwNF0sWzg5LjUwNzI3MTU5ODAwMDA1LDIzLjgyMTQ5MDE3MjAwMDA0XSxbODkuNTA2ODA3ODE0MDAwMDcsMjMuODIxNzAyMDc4MDAwMDRdLFs4OS41MDUxOTUwMjkwMDAwNSwyMy44MjI0NzE0MzYwMDAwNl0sWzg5LjUwNDgzODQyMzAwMDA4LDIzLjgyMjgxNzQ3MTAwMDA2XSxbODkuNTA0NTY3ODg1MDAwMDksMjMuODIzMjgxNzY3MDAwMDNdLFs4OS41MDQwNTk0NzcwMDAwNiwyMy44MjQwMTAwNTkwMDAwNV0sWzg5LjUwMzU4MjAwMjAwMDAzLDIzLjgyNDUwOTgxNzAwMDAzXSxbODkuNTAzMTY3NTczMDAwMDQsMjMuODI0ODg5NTMzMDAwMDNdLFs4OS41MDI5NTgyNzgwMDAwNSwyMy44MjUwNjE2MDMwMDAwNV0sWzg5LjUwMjE2ODkwMDAwMDA3LDIzLjgyNTUyMzA5MjAwMDAzXSxbODkuNDk5OTEzNzcyMDAwMDcsMjMuODI2NzkzODcxMDAwMDZdLFs4OS40OTk1ODQyODUwMDAwOCwyMy44MjY5NDIzOTkwMDAwN10sWzg5LjQ4NzczNDcyNzAwMDAzLDIzLjgzMTUxMzkxNzAwMDA1XSxbODkuNDgzMzc5MzExMDAwMDgsMjMuODMzMTAwMzU4MDAwMDJdLFs4OS40NzA4Nzg5NDcwMDAwNywyMy44MzgyMjMzMDAwMDAwNF0sWzg5LjQ3MDc1MTA3NDAwMDA4LDIzLjgzODI3NzYxOTAwMDA1XSxbODkuNDY4NTk0NTIwMDAwMDcsMjMuODM5MjUyNDU5MDAwMDhdLFs4OS40NjI1NzQyOTcwMDAwNiwyMy44NDI2NzkwOTIwMDAwM10sWzg5LjQ2MjEzODgwMjAwMDA4LDIzLjg0Mjk4OTc1MjAwMDA1XSxbODkuNDYxOTQ4MjkyMDAwMDUsMjMuODQzMTI1Njk5MDAwMDRdLFs4OS40NTAxMzE0NDEwMDAwNSwyMy44NTE5NDg1ODMwMDAwMl0sWzg5LjQ0NjIyNjM5NTAwMDA1LDIzLjg1NTEwODg2NzAwMDA3XSxbODkuNDQ1OTM5MzYyMDAwMDUsMjMuODU1MzQ2MDU4MDAwMDddLFs4OS40NDU2NjUxOTMwMDAwOCwyMy44NTU1ODgzNzkwMDAwNF0sWzg5LjQ0NTY0MTc4MzAwMDA0LDIzLjg1NTYwOTE4MjAwMDAyXSxbODkuNDQ0MTA4OTgwMDAwMDcsMjMuODU3MjMyMjg0MDAwMDhdLFs4OS40NDIyOTc5MDgwMDAwNiwyMy44NTg5NjgzOTUwMDAwM10sWzg5LjQzNjYwNTI4MjAwMDA3LDIzLjg2MzQxNjM3MjAwMDA3XSxbODkuNDMwNTU4NDEzMDAwMDksMjMuODY4MTM5NDMyMDAwMDhdLFs4OS40MTYyMTc2MTUwMDAwNSwyMy44Nzc2ODNdLFs4OS40MTE4NDk0NTcwMDAwNywyMy44Nzk5OTc4MDMwMDAwNF0sWzg5LjQxMTQ0NzEzOTAwMDA3LDIzLjg4MDE4MDg1OTAwMDA2XSxbODkuNDEwNjkwMTcwMDAwMDcsMjMuODgwNTI1NzAyMDAwMDZdLFs4OS40MDkzMDQzNzMwMDAwNSwyMy44ODE0NTI5NjIwMDAwM10sWzg5LjQwOTE4NTUyNzAwMDAzLDIzLjg4MTUzMjY2NzAwMDA0XSxbODkuNDA4OTI5NTMyMDAwMDYsMjMuODgxNzM0MzQ0MDAwMDVdLFs4OS40MDU3MzA4OTcwMDAwNywyMy44ODQ5MzA3MDQwMDAwNl0sWzg5LjQwNDQzNDQzNTAwMDA0LDIzLjg4NjcwOTU0NTAwMDAzXSxbODkuNDAzNDIzMjA1MDAwMDgsMjMuODg4NDAxNDE3MDAwMDddLFs4OS40MDMwMTI1MzAwMDAwNywyMy44ODg5OTI1NjAwMDAwOF0sWzg5LjQwMTc5MTczMDAwMDA3LDIzLjg5MDY1NTk0NTAwMDA1XSxbODkuNDAxNzE5MTU1MDAwMDgsMjMuODkwNzUwNTAxMDAwMDddLFs4OS4zOTU5OTMzMzUwMDAwNywyMy44OTgxNzkwODYwMDAwM10sWzg5LjM5NTU5MDAyMjAwMDA4LDIzLjg5ODY5MTIwNDAwMDA0XSxbODkuMzk0OTM4MTg0MDAwMDcsMjMuODk5NTAyMTAwMDAwMDZdLFs4OS4zOTI2MjM1NTgwMDAwOCwyMy45MDIzMDE5NzIwMDAwM10sWzg5LjM5MjQ4MjUwODAwMDA2LDIzLjkwMjQ2MjI5OTAwMDA0XSxbODkuMzkwOTY2MTM5MDAwMDYsMjMuOTA0MTgzNjk5MDAwMDRdLFs4OS4zOTAzMjU4NjEwMDAwNiwyMy45MDQ4MDg4OTUwMDAwM10sWzg5LjM4OTcxNzI1NzAwMDA5LDIzLjkwNTI5MDgyODAwMDAzXSxbODkuMzg5NDQ2MTI4MDAwMDMsMjMuOTA1NDk1MjMyMDAwMDhdLFs4OS4zODg4NzIxNjkwMDAwOCwyMy45MDU5MjA4NTAwMDAwM10sWzg5LjM4ODU1MzQ1MDAwMDA3LDIzLjkwNjEyNTYyOTAwMDAzXSxbODkuMzg4MTIzMDA3MDAwMDUsMjMuOTA2Mzg5MjM0MDAwMDddLFs4OS4zODc2NjAzMjIwMDAwNCwyMy45MDY2NTM4NDEwMDAwNF0sWzg5LjM4NjYyNTI4NTAwMDA0LDIzLjkwNzE5NTAzMjAwMDA2XSxbODkuMzg1MjIzNjIyMDAwMDcsMjMuOTA3ODA5ODI4MDAwMDRdLFs4OS4zODM5NjM4MDEwMDAwNSwyMy45MDgwOTgzMjkwMDAwNF0sWzg5LjM4MTUzODI0MDAwMDA1LDIzLjkwODUxNDIzMjAwMDA3XSxbODkuMzc3OTMyMjgxMDAwMDgsMjMuOTA5MTAyMDE1MDAwMDNdLFs4OS4zNzU1ODc5NDcwMDAwNCwyMy45MDk0NzQxMjAwMDAwM10sWzg5LjM3NTA5Mjc2NDAwMDA0LDIzLjkwOTUzMDI1MzAwMDA3XSxbODkuMzY1NjE4MDMzMDAwMDMsMjMuOTEwNTAxOTIyMDAwMDRdLFs4OS4zNjQ1MDUxODEwMDAwOCwyMy45MDgxNTg1NzkwMDAwM10sWzg5LjM2NDAzMjkzMjAwMDA0LDIzLjkwMDk1NDA5NDAwMDA0XSxbODkuMzY0MDIxNjEwMDAwMDcsMjMuOTAwNTcwMTgyMDAwMDJdLFs4OS4zNjQwMjYxNzkwMDAwNiwyMy45MDAyMDEwMTMwMDAwN10sWzg5LjM2NDAyODIwMDAwMDA2LDIzLjkwMDAzOTAwOTAwMDA3XSxbODkuMzY0MDUxMjIyMDAwMDYsMjMuODk5NTM3MjU3MDAwMDhdLFs4OS4zNjQwODk0NDcwMDAwOCwyMy44OTkwNjU0ODgwMDAwOF0sWzg5LjM2NDE0MDI2MTAwMDA1LDIzLjg5ODg0NDQxMTAwMDAzXSxbODkuMzY0MjI0MzcxMDAwMDMsMjMuODk4NTk0NjgzMDAwMDZdLFs4OS4zNjQzMjI5MjAwMDAwNiwyMy44OTg0MDU0MTYwMDAwNl0sWzg5LjM2NDUzNDk0NDAwMDA3LDIzLjg5ODExMzMxMzAwMDA3XSxbODkuMzY0NjQ4OTM1MDAwMDUsMjMuODk3OTY3NTc3MDAwMDNdLFs4OS4zNjQ3OTYwNTkwMDAwNywyMy44OTc3NjM4MzQwMDAwNV0sWzg5LjM2NDkxMDg4MTAwMDA3LDIzLjg5NzU3MzUwNDAwMDA0XSxbODkuMzY1MDA0MTU2MDAwMDUsMjMuODk3Mzk0OTQwMDAwMDNdLFs4OS4zNjUwNzYyMTkwMDAwNiwyMy44OTcyMjMwNjUwMDAwNV0sWzg5LjM2NTA5NTY0MzAwMDA3LDIzLjg5NzAxNzA5ODAwMDA1XSxbODkuMzY1MTE1MDcwMDAwMDYsMjMuODk2ODEwNTY4MDAwMDNdLFs4OS4zNjUxMzQ4NzMwMDAwNCwyMy44OTY1ODk5MjkwMDAwN10sWzg5LjM2NTE4NTg2NDAwMDA3LDIzLjg5NTUxNDc1NDAwMDAzXSxbODkuMzY1MTc2MTY0MDAwMDUsMjMuODk1MTc0ODgxMDAwMDZdLFs4OS4zNjUxMzYxOTcwMDAwOCwyMy44OTQ3NDY4MTkwMDAwM10sWzg5LjM2NTA0NDU3MjAwMDA0LDIzLjg5NDUyNDU5MDAwMDA2XSxbODkuMzY0OTUyMTIzMDAwMDgsMjMuODk0MzQ1ODI0MDAwMDNdLFs4OS4zNjM0OTU3OTEwMDAwNSwyMy44OTE5NjM3OTYwMDAwM10sWzg5LjM2MzE2Mjc4MzAwMDA2LDIzLjg5MTgyNTgwNzAwMDAzXSxbODkuMzYyNzMyODY5MDAwMDcsMjMuODkxNzMwMzE5MDAwMDNdLFs4OS4zNjI1MDk2MjUwMDAwOSwyMy44OTE2ODI1NDAwMDAwM10sWzg5LjM2MjExMTE4MTAwMDA1LDIzLjg5MTYxNzY2NDAwMDAyXSxbODkuMzYxMjAxMjAwMDAwMDQsMjMuODkxNTEzOTcxMDAwMDVdLFs4OS4zNjA4MzQyMjgwMDAwNCwyMy44OTE0NzkxNDEwMDAwNV0sWzg5LjM2MDYyNTY2NjAwMDAzLDIzLjg5MTUwNDgwNjAwMDA2XSxbODkuMzYwMzUzMTA5MDAwMDcsMjMuODkxNTU5NTU5MDAwMDNdLFs4OS4zNTk5MzQ4NDUwMDAwNSwyMy44OTE2NTQ5MTUwMDAwNl0sWzg5LjM1OTYxMjU3ODAwMDA1LDIzLjg5MTc2ODE2OTAwMDA0XSxbODkuMzU5MjI1OTQwMDAwMDQsMjMuODkxOTI0MDU2MDAwMDVdLFs4OS4zNTkwMTU3ODQwMDAwNiwyMy44OTIwMjM2NjMwMDAwM10sWzg5LjM1ODgzNzAyNjAwMDA2LDIzLjg5MjE2Nzk5NjAwMDA3XSxbODkuMzU4NzA2MDgxMDAwMDQsMjMuODkyMzI3NzcxMDAwMDVdLFs4OS4zNTg1NTgwMzQwMDAwNSwyMy44OTI1MzE1MDUwMDAwMl0sWzg5LjM1ODQwOTMxNTAwMDA3LDIzLjg5MjgwOTE4NjAwMDAyXSxbODkuMzU4MzA4Njk0MDAwMDcsMjMuODkzMDQ0MTY3MDAwMDNdLFs4OS4zNTgwODIyODgwMDAwNSwyMy44OTQwNzIzMTcwMDAwNV0sWzg5LjM1ODA0NzM0MjAwMDA4LDIzLjg5NDI0ODg2MjAwMDA0XSxbODkuMzU3OTkyODg3MDAwMDgsMjMuODk0NjQ2MDQ3MDAwMDRdLFs4OS4zNTc5ODkxMDcwMDAwNCwyMy44OTQ4NTIwNzYwMDAwNl0sWzg5LjM1Nzk4NjQ2NTAwMDA3LDIzLjg5NTAxNDA3ODAwMDAzXSxbODkuMzU3OTc5MTY5MDAwMDMsMjMuODk2NDI5ODMwMDAwMDVdLFs4OS4zNTc5ODczNTAwMDAwMywyMy44OTY4ODcxMTQwMDAwNF0sWzg5LjM1ODEwNjgyNzAwMDA5LDIzLjg5NzQzNDYyMTAwMDA2XSxbODkuMzU4MTk2MjYzMDAwMDgsMjMuODk3ODQ5MzQwMDAwMDVdLFs4OS4zNTc5NzE3NDEwMDAwOSwyMy44OTc5MzQyMDgwMDAwNF0sWzg5LjM1Njk0OTE3NzAwMDA1LDIzLjg5Nzk5MjAzMjAwMDA1XSxbODkuMzU2ODM5OTk4MDAwMDUsMjMuODk3NzgzODM4MDAwMDddLFs4OS4zNTY1Mzc5NjMwMDAwNSwyMy44OTY2NTgwNzgwMDAwM10sWzg5LjM1NjQxODQ5NDAwMDA4LDIzLjg5NjExMDAwODAwMDA1XSxbODkuMzU2Mjk5NzExMDAwMDgsMjMuODk1NTQ3ODI2MDAwMDRdLFs4OS4zNTUxODY2MjMwMDAwNywyMy44ODg3ODk5NzYwMDAwNl0sWzg5LjM1NTE0NTU0MTAwMDA3LDIzLjg4ODQwODE5NzAwMDA1XSxbODkuMzU1MTA5MTQ2MDAwMDcsMjMuODg3NzYxNjg0MDAwMDVdLFs4OS4zNTUxNTAyMjIwMDAwOCwyMy44ODcyNzgwNzQwMDAwNV0sWzg5LjM1NTE2OTQ0MDAwMDA1LDIzLjg4NzExNjcwNjAwMDAzXSxbODkuMzU1MjA2NTAxMDAwMDUsMjMuODg2ODIzMzE3MDAwMDVdLFs4OS4zNTUyOTk5MjgwMDAwOCwyMy44ODYxMTk3NjkwMDAwNl0sWzg5LjM1NTM1MTQ0OTAwMDA3LDIzLjg4NTk0Mzg1ODAwMDA4XSxbODkuMzU3NTAzMDQ4MDAwMDcsMjMuODg0ODY2NzQ1MDAwMDddLFs4OS4zNTkwMjgxMjgwMDAwMywyMy44ODM5NzMyODEwMDAwN10sWzg5LjM2MDc2ODAxOTAwMDAzLDIzLjg4Mjc3NTI5NDAwMDA2XSxbODkuMzYyOTEzNzMwMDAwMDYsMjMuODcwNzE1MDA5MDAwMDRdLFs4OS4zNjIzMjg1NDQwMDAwNCwyMy44Njk5Mzc1MTUwMDAwNl0sWzg5LjM1Njk5Mzk0ODAwMDA4LDIzLjg2NTk0NzQwMDAwMDA0XSxbODkuMzUyODUwNzA1MDAwMDQsMjMuODYyODM2NTM3MDAwMDhdLFs4OS4zNTI2ODIwNDEwMDAwNCwyMy44NjI2ODYyMzUwMDAwN10sWzg5LjM1MjQyNzg3MzAwMDA3LDIzLjg2MjMyNTU3NDAwMDA3XSxbODkuMzUxNTE1ODYyMDAwMDQsMjMuODYwNjM3ODA4MDAwMDRdLFs4OS4zNTE0OTA4OTUwMDAwNCwyMy44NjA0NzQ1NTkwMDAwN10sWzg5LjM1MTUxMDc3NDAwMDA4LDIzLjg1MjQxMTIwMDAwMDA2XSxbODkuMzUxNDc5OTU0MDAwMDcsMjMuODQ0NDE5ODc5MDAwMDRdLFs4OS4zNTE0NjA5MjQwMDAwNCwyMy44NDM0OTU2OTUwMDAwNl0sWzg5LjM1MTM5OTg3MTAwMDA3LDIzLjg0MTcwNDI1MDAwMDA4XSxbODkuMzUxMzg4NzAyMDAwMDcsMjMuODQxNTQzODgyMDAwMDVdLFs4OS4zNTEzNzMyNzkwMDAwOSwyMy44NDEzNzUwMzAwMDAwNV0sWzg5LjM1MTMzMzY4NDAwMDA1LDIzLjg0MTEzMDQzMDAwMDA4XSxbODkuMzUxMDcxMDc0MDAwMDYsMjMuODQwOTk0OTcwMDAwMDVdLFs4OS4zNTA4MDczMzAwMDAwNywyMy44NDA5MDI5NzQwMDAwN10sWzg5LjM1MDYwNDczMDAwMDA0LDIzLjg0MDg1NjM5NDAwMDA3XSxbODkuMzQ5OTQyOTU5MDAwMDMsMjMuODQwODMyNzE3MDAwMDddLFs4OS4zNDg2NDkzODMwMDAwNywyMy44NDAzNzczNDEwMDAwOF0sWzg5LjM0NjE1NTE1NTAwMDA4LDIzLjgzOTQ4MjE5MjAwMDA1XSxbODkuMzQ2MDE5NTEwMDAwMDgsMjMuODM5NDI0MDM2MDAwMDNdLFs4OS4zNDU3ODAzNzgwMDAwOSwyMy44MzkzMjA4NDUwMDAwM10sWzg5LjM0NTEyNDgzNzAwMDA3LDIzLjgzOTAzNjM3MjAwMDA3XSxbODkuMzQ0OTIwNTU2MDAwMDMsMjMuODM4ODk3NzYzMDAwMDNdLFs4OS4zNDQ2MzMzNzgwMDAwOCwyMy44Mzg2NDY0NjMwMDAwM10sWzg5LjMzNjk4NjQ2OTAwMDA3LDIzLjgyOTYzMjQxNjAwMDA0XSxbODkuMzM2NzYwNDEzMDAwMDQsMjMuODI5MzE1MzE2MDAwMDhdLFs4OS4zMzY3NDU4MDMwMDAwNCwyMy44MjkyOTIxMTAwMDAwNF0sWzg5LjMzNjcwMDE4NTAwMDA0LDIzLjgyOTIxMjMxNzAwMDA0XSxbODkuMzM2NDc0MTMwMDAwMDYsMjMuODI4Nzc0OTc4MDAwMDddLFs4OS4zMzY0NjIzMDAwMDAwNSwyMy44Mjg3NDc4MzEwMDAwNF0sWzg5LjMzNjQyNjg1ODAwMDA0LDIzLjgyODU5ODA4NDAwMDA4XSxbODkuMzM2MzUyMjQ1MDAwMDYsMjMuODI4MjQ2NjM4MDAwMDVdLFs4OS4zMzYzNTAyMjcwMDAwOCwyMy44MjgyMjEyMjYwMDAwNF0sWzg5LjMzNjM3NTg0MTAwMDA2LDIzLjgyNTgzOTY3MDAwMDA1XSxbODkuMzM2NDMwMzQ4MDAwMDgsMjMuODI1Njc5NTgzMDAwMDddLFs4OS4zMzY2NTc4ODYwMDAwNywyMy44MjU0NjIwOTcwMDAwN10sWzg5LjMzNjkxNTgyMDAwMDA2LDIzLjgyNTM2MTU5NTAwMDA2XSxbODkuMzM3MjUxODY0MDAwMDUsMjMuODI1Mjg1NzAzMDAwMDhdLFs4OS4zMzc5NDg4NjUwMDAwNCwyMy44MjQ1MTc1NzcwMDAwNV0sWzg5LjMzNzk4MTAxNzAwMDA2LDIzLjgyNDEwNjc1MTAwMDA0XSxbODkuMzM3OTc0NDA3MDAwMDUsMjMuODIzNTk1Mjc3MDAwMDRdLFs4OS4zMzc5MzgxMDYwMDAwOCwyMy44MjM0MzMxMDYwMDAwNF0sWzg5LjMzNzkyNjY4NTAwMDA3LDIzLjgyMzM4NjIwMzAwMDA0XSxbODkuMzM3ODkzMzE3MDAwMDcsMjMuODIzMjUwNTc3MDAwMDddLFs4OS4zMzc4ODM2OTYwMDAwNiwyMy44MjMyMTE1ODQwMDAwM10sWzg5LjMzNjg2NDU0NTAwMDA4LDIzLjgxOTA4OTEwMjAwMDA4XSxbODkuMzM2ODM5NTM4MDAwMDUsMjMuODE4OTk5MjM5MDAwMDVdLFs4OS4zMzY3NDkwMTgwMDAwMywyMy44MTg3NjAwNjEwMDAwM10sWzg5LjMzNjY1NjYwODAwMDA2LDIzLjgxODUzMTAzNzAwMDA3XSxbODkuMzM2NTgyODU5MDAwMDMsMjMuODE4MzcyNjU4MDAwMDRdLFs4OS4zMzQ0MzAyNDgwMDAwNSwyMy44MTQwNTcyOTgwMDAwMl0sWzg5LjMzMTQ4MDY5NTAwMDA0LDIzLjgwODMxNTg4OTAwMDAzXSxbODkuMzMxMjIyNTc5MDAwMDQsMjMuODA3Nzk5MzcyMDAwMDNdLFs4OS4zMjk2NDE3MTkwMDAwNSwyMy44MDQyODAxMjUwMDAwNV0sWzg5LjMyOTQ2NTc3NzAwMDA1LDIzLjgwMzgzMzk2MzAwMDA1XSxbODkuMzI5MzcxNjYxMDAwMDQsMjMuODAzNTgyOTExMDAwMDNdLFs4OS4zMjkyOTUwMzEwMDAwNywyMy44MDMzMzE5MzMwMDAwNF0sWzg5LjMyOTE0NTc2NjAwMDA3LDIzLjgwMjgyODg3MjAwMDA4XSxbODkuMzI2OTYwMzc0MDAwMDcsMjMuNzk1MjY1NjMyMDAwMDVdLFs4OS4zMjY5MDU1MjEwMDAwNywyMy43OTMwNTEzNzkwMDAwOF0sWzg5LjMyNjkxMjgxMDAwMDA3LDIzLjc5Mjg4NzEzNzAwMDA0XSxbODkuMzI3MDE0ODQ1MDAwMDYsMjMuNzkwOTQyODQxMDAwMDZdLFs4OS4zMjc2NTYyMjUwMDAwNiwyMy43OTA3MDU3MTgwMDAwM10sWzg5LjMyODA1NTc4MjAwMDA0LDIzLjc5MDY2OTYzNzAwMDA2XSxbODkuMzI4NDcwNjcwMDAwMDYsMjMuNzkwNjM0NzQ4MDAwMDZdLFs4OS4zMjk2MTA0NjkwMDAwNCwyMy43OTA1ODE1NTkwMDAwM10sWzg5LjMyOTgxODE3NTAwMDA3LDIzLjc5MDU3Mjg2NDAwMDA3XSxbODkuMzMwMDcyNzI3MDAwMDcsMjMuNzkwNTgwNzQ0MDAwMDddLFs4OS4zMzAyNDU2OTAwMDAwOCwyMy43ODg4NTE4MzAwMDAwNl0sWzg5LjMzMDMzMTM0NjAwMDA0LDIzLjc4NjIwMjM4MjAwMDA2XSxbODkuMzMwMTk2MzY4MDAwMDMsMjMuNzc4NTQyNDkxMDAwMDVdLFs4OS4zMjk5OTYxNTIwMDAwNCwyMy43NzgyOTA0MTYwMDAwNl0sWzg5LjMyOTcxNDIxNjAwMDA3LDIzLjc3ODA2NTA4MDAwMDAzXSxbODkuMzI5MDY5NTc1MDAwMDYsMjMuNzc3NjM0OTQ0MDAwMDZdLFs4OS4zMjg3NjYwNjQwMDAwNCwyMy43Nzc0OTA4MDMwMDAwM10sWzg5LjMyNzkyMTk0NzAwMDA1LDIzLjc3NzI2NDE0OTAwMDA4XSxbODkuMzI3MzMyNzc1MDAwMDYsMjMuNzc3MTQzMDM2MDAwMDRdLFs4OS4zMjY3MjIyNzEwMDAwNSwyMy43NzcwNTUxMzQwMDAwMl0sWzg5LjMyNTEwODAxOTAwMDA4LDIzLjc3NjgyOTYyMDAwMDA2XSxbODkuMzI0NTE1NTM4MDAwMDcsMjMuNzc2ODE1NzQwMDAwMDddLFs4OS4zMjQxMzQzMTEwMDAwOCwyMy43NzY4MTQ2MzYwMDAwNF0sWzg5LjMyMzQwOTczODAwMDA3LDIzLjc3Njg0MTM4MzAwMDAzXSxbODkuMzIyOTU4NjM0MDAwMDMsMjMuNzc2ODg5MDgyMDAwMDNdLFs4OS4zMjIyNDUyNDIwMDAwNiwyMy43NzY5NDgwNDkwMDAwNV0sWzg5LjMyMTgxMzg3NDAwMDA0LDIzLjc3Njk3NTUxMDAwMDA2XSxbODkuMzIwMDc3Nzg4MDAwMDUsMjMuNzc3MDYxMDE5MDAwMDNdLFs4OS4zMTk4NzgxMDIwMDAwOCwyMy43NzcwNjUyMjEwMDAwNF0sWzg5LjMxMTA3MTUzNzAwMDAzLDIzLjc3NjE2NDE3NDAwMDAzXSxbODkuMzEwMzI1ODkyMDAwMDQsMjMuNzY4NjEyMTk2MDAwMDVdLFs4OS4zMTA0Mzk3OTMwMDAwNiwyMy43Njg0NzI3MDYwMDAwN10sWzg5LjMxMDgzMDIyOTAwMDAzLDIzLjc2ODE3NjM4NjAwMDA1XSxbODkuMzExMTA4OTMxMDAwMDQsMjMuNzY4MDE1NjE0MDAwMDNdLFs4OS4zMTI0NzAyNzIwMDAwNCwyMy43Njc0MzY4NDUwMDAwOF0sWzg5LjMxMjUzMTA4NTAwMDA1LDIzLjc2NzQxOTYxNjAwMDA0XSxbODkuMzEzNDU2MDE3MDAwMDgsMjMuNzY3MTg5NDU3MDAwMDNdLFs4OS4zMTM1MTI4MTEwMDAwNywyMy43NjcxNzg0MTkwMDAwNl0sWzg5LjMxNTY3NTc3MjAwMDA4LDIzLjc2NjgzODU4MzAwMDA0XSxbODkuMzE1ODM1MzcwMDAwMDYsMjMuNzY2ODE0NDUzMDAwMDVdLFs4OS4zMTYwNjQ2MzUwMDAwMywyMy43NjY3ODE1OTcwMDAwM10sWzg5LjMxNjEzOTE5MTAwMDA1LDIzLjc2Njc3NTE1MzAwMDAzXSxbODkuMzE2MjcyNTM3MDAwMDMsMjMuNzY2Nzg2NDY5MDAwMDddLFs4OS4zMjE5ODYzMTcwMDAwNCwyMy43NjYwMTM5OTgwMDAwNl0sWzg5LjMyMTUyNzM0NzAwMDA5LDIzLjc2MzQ0NjI3MTAwMDA4XSxbODkuMzE2NDcxMjI3MDAwMDgsMjMuNzQ5MjkzNjUyMDAwMDZdLFs4OS4zMTYyMDU3NzcwMDAwNSwyMy43NDg2ODczMTkwMDAwNl0sWzg5LjMxNTcwMTg5MjAwMDA1LDIzLjc0NzkzOTM2NjAwMDAzXSxbODkuMzE1NDcwMzQ1MDAwMDUsMjMuNzQ3NzExOTcxMDAwMDZdLFs4OS4zMTUyMTE3ODIwMDAwNiwyMy43NDc1NDkzNzUwMDAwNl0sWzg5LjMxNTAyNjg5MTAwMDA2LDIzLjc0NzQ4ODcxNzAwMDA3XSxbODkuMzEzOTk0MjUyMDAwMDQsMjMuNzQ3NDA5NjIxMDAwMDNdLFs4OS4zMTA3Njg1OTIwMDAwNCwyMy43NDY0NTE0MDUwMDAwN10sWzg5LjMwNzc2MzE2MzAwMDA2LDIzLjc0NDkwODE0MzAwMDAzXSxbODkuMzAyNDMxMTIzMDAwMDgsMjMuNzQyMTAxMTIzMDAwMDVdLFs4OS4zMDIyNjUwMDQwMDAwNSwyMy43NDE5NzI3OTMwMDAwNl0sWzg5LjI5ODc1Mzc2MDAwMDA3LDIzLjczODEwMDE1NDAwMDA1XSxbODkuMjk4NjYyNDQ0MDAwMDYsMjMuNzM3ODYwOTUwMDAwMDNdLFs4OS4yOTgxNzU4NDcwMDAwNCwyMy43MzYyMDEzMzEwMDAwN10sWzg5LjI5ODE1ODQxMDAwMDA0LDIzLjczNjAyMjMwMjAwMDA0XSxbODkuMjk4MjA1NTc0MDAwMDYsMjMuNzM1ODYwNTAwMDAwMDZdLFs4OS4yOTgzNDUzNzgwMDAwOCwyMy43MzU2OTA2NTIwMDAwN10sWzg5LjI5ODU0OTE4NjAwMDA2LDIzLjczNTY0OTIzODAwMDA2XSxbODkuMzAxNjcyNDYwMDAwMDgsMjMuNzM1MDQwNzE4MDAwMDVdLFs4OS4zMDE5MzIxMTEwMDAwNCwyMy43MzQ5OTEwODQwMDAwNl0sWzg5LjMwMjQwNDQ1NDAwMDA1LDIzLjczNDk1ODc4MDAwMDA2XSxbODkuMzAyNzk5NDAxMDAwMDcsMjMuNzM0OTUxNTI5MDAwMDZdLFs4OS4zMDMyNTk3NDcwMDAwOCwyMy43MzQ5ODQ2NTIwMDAwNF0sWzg5LjMwMzQ0NDg1NzAwMDA0LDIzLjczNDk5OTU5OTAwMDA1XSxbODkuMzAzNjkxOTAxMDAwMDQsMjMuNzM1MDE0ODI1MDAwMDZdLFs4OS4zMDQwMzEzMDQwMDAwMywyMy43MzUwMTYzNTIwMDAwNl0sWzg5LjMwNDYwMjcyNDAwMDA2LDIzLjczNDk3NjAyMDAwMDAzXSxbODkuMzA1MjA1NTU5MDAwMDYsMjMuNzM0ODUxMTUxMDAwMDRdLFs4OS4zMDU3OTI5ODMwMDAwNiwyMy43MzQ2ODMzMDUwMDAwM10sWzg5LjMwNjUzNTMwODAwMDA0LDIzLjczNDQ0NTAyNDAwMDAyXSxbODkuMzA2ODkxMDk5MDAwMDQsMjMuNzM0MzA0MzYzMDAwMDRdLFs4OS4zMDc0NDg5ODgwMDAwMywyMy43MzM5MjI5OTMwMDAwOF0sWzg5LjMwNzY5NjY5OTAwMDA4LDIzLjczMzc1MzYxODAwMDA0XSxbODkuMzA4MjA4MTM1MDAwMDksMjMuNzMzNDAwODI4MDAwMDddLFs4OS4zMTAwODM2ODgwMDAwOCwyMy43MzE5MzEzMDkwMDAwNl0sWzg5LjMxMDk4Mzc5OTAwMDA0LDIzLjczMTA2ODIyODAwMDAzXSxbODkuMzExNTc1MzA4MDAwMDQsMjMuNzMwMTE4NTI1MDAwMDJdLFs4OS4zMTIwMjg3NDMwMDAwNCwyMy43MjkwMTE4MzYwMDAwNF0sWzg5LjMxMjEyMzU2ODAwMDA2LDIzLjcyODU4NjA0ODAwMDA3XSxbODkuMzEyMTg3NTEyMDAwMDQsMjMuNzI4MjAyNDY1MDAwMDRdLFs4OS4zMTIyMzcxNTkwMDAwNiwyMy43Mjc1NjM2NTQwMDAwNV0sWzg5LjMxMjE4MzQ0OTAwMDAzLDIzLjcyNjExMzc0MTAwMDA2XSxbODkuMzEyMTY5ODA1MDAwMDUsMjMuNzI1OTY4MDM1MDAwMDVdLFs4OS4zMTIxNTM4MTkwMDAwNiwyMy43MjU4MDA4NjcwMDAwM10sWzg5LjMxMjEwMjEzMDAwMDA4LDIzLjcyNTMxMDA3NDAwMDA1XSxbODkuMzExNzk4NDAzMDAwMDcsMjMuNzI0MzU2OTUwMDAwMDddLFs4OS4zMTQ0MzA2MzYwMDAwNSwyMy43MTYxMDI0MzcwMDAwN10sWzg5LjMyMTIzNzYyMzAwMDA2LDIzLjcwNTQyMDE3ODAwMDA1XSxbODkuMzIxMjYyNjQ3MDAwMDgsMjMuNzA0NzMwNDQ3MDAwMDNdLFs4OS4zMjEzMTQ4ODkwMDAwNiwyMy43MDQyOTAzNTMwMDAwM10sWzg5LjMyMTM4ODM0NjAwMDA1LDIzLjcwMzgzNzM2ODAwMDA1XSxbODkuMzIxNjA2OTkwMDAwMDgsMjMuNzAyOTkwOTg1MDAwMDRdLFs4OS4zMjE3MDc2NjEwMDAwNiwyMy43MDI3ODgyMDAwMDAwNF0sWzg5LjMyMjgwMjM3ODAwMDA2LDIzLjcwMTQ2MjQyNjAwMDAzXSxbODkuMzIzMTMyNjk0MDAwMDQsMjMuNzAxMDY5ODM4MDAwMDJdLFs4OS4zMjM4MDY1NzIwMDAwOCwyMy43MDAzODk3MTcwMDAwNl0sWzg5LjMyMzkwNjk3MTAwMDA0LDIzLjcwMDI5ODEzODAwMDA1XSxbODkuMzI0MTkzNjkxMDAwMDYsMjMuNzAwMDM2ODg5MDAwMDVdLFs4OS4zMzI2ODQwNTcwMDAwNSwyMy42OTI2MzE2NzEwMDAwN10sWzg5LjMzNjk4NzE3NTAwMDA1LDIzLjY4OTQ2NDAxMDAwMDA1XSxbODkuMzM5NzMzMzM2MDAwMDUsMjMuNjg4MDE3NTg3MDAwMDVdLFs4OS4zNDMyNTkzMjUwMDAwOCwyMy42ODYxMDgxMzEwMDAwM10sWzg5LjM0NjUyMTE5MjAwMDA3LDIzLjY4NDE2NDE3MzAwMDA2XSxbODkuMzQ2ODkzNTM3MDAwMDgsMjMuNjgzODYzNzI1MDAwMDRdLFs4OS4zNDc0NTI2NTAwMDAwNCwyMy42ODMzNTQwNjEwMDAwNV0sWzg5LjM0ODE0MTQzNDAwMDA3LDIzLjY4MjUyOTM3MzAwMDAyXSxbODkuMzQ4NTE0Njg1MDAwMDUsMjMuNjgyMDQ0MzI2MDAwMDRdLFs4OS4zNDg3NDY4NTMwMDAwOCwyMy42ODE3MDMyMDQwMDAwM10sWzg5LjM0OTQxOTc0MDAwMDAzLDIzLjY4MDY4MDg2MTAwMDA0XSxbODkuMzQ5NDQ4MDYzMDAwMDcsMjMuNjgwNTkzNDgwMDAwMDNdLFs4OS4zNDk3NjU3MjQwMDAwNiwyMy42Nzk1NzMwMjkwMDAwNF0sWzg5LjM0OTk3MTg5ODAwMDA0LDIzLjY3ODkwODg4OTAwMDA3XSxbODkuMzY1OTQ1MjM2MDAwMDcsMjMuNjY0NDcwODAyMDAwMDRdLFs4OS4zNjYxNDAwMjMwMDAwNywyMy42NjQzMDI4MDcwMDAwN10sWzg5LjM2NjMyMzc5NTAwMDA4LDIzLjY2NDE5NTE3MDAwMDAzXSxbODkuMzY2NTYwMDI4MDAwMDQsMjMuNjY0MDc1MzI4MDAwMDJdLFs4OS4zNjcyOTA5NDMwMDAwNiwyMy42NjQwNjQ3NjQwMDAwNV0sWzg5LjM3NTE1ODIyNTAwMDA2LDIzLjY2NDcxMzE0NTAwMDA2XSxbODkuMzc1NzA0ODMzMDAwMDQsMjMuNjY1MjQ4MjU5MDAwMDddLFs4OS4zNzU5MTcwOTIwMDAwNywyMy42NjU0NjQxOTcwMDAwNl0sWzg5LjM3NjA0ODk0MTAwMDA4LDIzLjY2NTY0MTk4NzAwMDA3XSxbODkuMzc2MTc5MjQzMDAwMDgsMjMuNjY1ODIyNTk3MDAwMDRdLFs4OS4zNzY0NzI4MTYwMDAwNSwyMy42NjYzMzk3NTQwMDAwM10sWzg5LjM3ODE5NzkyNzAwMDAzLDIzLjY2OTQyNTYwMTAwMDA2XSxbODkuMzc4MzY2NzY4MDAwMDMsMjMuNjY5OTQ3MzMzMDAwMDRdLFs4OS4zNzg2MTMyMTMwMDAwNSwyMy42NzA0NTQ3MDAwMDAwNV0sWzg5LjM3ODc1NjQ0NzAwMDA2LDIzLjY3MDYyNDA2ODAwMDA1XSxbODkuMzc5MDQyOTE3MDAwMDUsMjMuNjcwOTYyODAyMDAwMDhdLFs4OS4zODEwMDA3NjIwMDAwNCwyMy42NzI4NzU5MDUwMDAwN10sWzg5LjM4MTM5NzQ5MTAwMDA5LDIzLjY3MzIzMTQ0NjAwMDA1XSxbODkuMzgyMjU2OTQzMDAwMDcsMjMuNjczOTg2ODIyMDAwMDddLFs4OS4zODMyNTk2MDkwMDAwNSwyMy42NzQ3MjQ2OTgwMDAwM10sWzg5LjM4NjI0OTgxMDAwMDA0LDIzLjY3NjYyODg1ODAwMDA3XSxbODkuMzkxNTU4ODkwMDAwMDYsMjMuNjc4MDcyOTY4MDAwMDRdLFs4OS40MDM4ODE5NDgwMDAwNSwyMy42ODEzOTIzMDQwMDAwNF0sWzg5LjQwNDA5MDQxMDAwMDA0LDIzLjY4MTQ0ODQzMTAwMDA0XSxbODkuNDA0NTk1MTA5MDAwMDcsMjMuNjgxNTMzOTIwMDAwMDVdLFs4OS40MDcyMzY2OTAwMDAwNSwyMy42ODE4NzU5OTMwMDAwNl0sWzg5LjQwODUyOTczNDAwMDA3LDIzLjY4MjAxNTg1NzAwMDA3XSxbODkuNDA4NjQ1NTMwMDAwMDYsMjMuNjgyMDI4MTU0MDAwMDJdLFs4OS40MDkzNTEzMTEwMDAwOCwyMy42ODIwNDEwMDkwMDAwNV0sWzg5LjQxMDY0NzMyMTAwMDA2LDIzLjY4MTkzMDc4MzAwMDA0XSxbODkuNDExMjcwMzg3MDAwMDYsMjMuNjgxODY2NTM4MDAwMDddLFs4OS40MTEzNjQ4ODAwMDAwNiwyMy42ODE4NDU0NDUwMDAwOF0sWzg5LjQxMTU4Mzc1MzAwMDA2LDIzLjY4MTc2NzgwNzAwMDAzXSxbODkuNDExNzc2NjI3MDAwMDUsMjMuNjgxNjc4MjE2MDAwMDJdLFs4OS40MTIwMDkyNjMwMDAwNywyMy42ODE1Mzc5NjgwMDAwNF0sWzg5LjQxMjEyMDYxOTAwMDA2LDIzLjY4MTQ0NjM3MzAwMDAzXSxbODkuNDEyMjIwNjMxMDAwMDgsMjMuNjgxMzU2NDI4MDAwMDddLFs4OS40MTIzODc4MTcwMDAwOCwyMy42ODExODU0NDcwMDAwOF0sWzg5LjQxMjc3OTMzNzAwMDA3LDIzLjY4MDY3Mzc3ODAwMDAzXSxbODkuNDEzMDEyNDQ0MDAwMDYsMjMuNjgwMzU5MDkxMDAwMDddLFs4OS40MTMwOTU0MjYwMDAwNCwyMy42ODAyMzg1OTcwMDAwM10sWzg5LjQxMzIxMjk2MDAwMDA3LDIzLjY4MDA2NzQyODAwMDAzXSxbODkuNDEzNDI4NzE1MDAwMDcsMjMuNjc5NzI2MTQxMDAwMDZdLFs4OS40MTM1ODM5ODYwMDAwNSwyMy42Nzk0MDgzMzYwMDAwNV0sWzg5LjQxNTAxMzEzMjAwMDA3LDIzLjY3NjM3MjYzODAwMDAzXSxbODkuNDE1NjE0MzUxMDAwMDQsMjMuNjc1MDEyNzA1MDAwMDNdLFs4OS40MTU2NTI0OTkwMDAwMywyMy42NzQ5MTEyMzUwMDAwMl0sWzg5LjQxNTczMDAyODAwMDA0LDIzLjY3NDcwNjAzODAwMDA3XSxbODkuNDE1OTgwMTE5MDAwMDQsMjMuNjc0MTUxNDg3MDAwMDddLFs4OS40MTYyMTk0MTAwMDAwNSwyMy42NzM2ODIxMzgwMDAwNl0sWzg5LjQxNjU1Njk0NTAwMDA4LDIzLjY3MzI0MTk1MTAwMDAyXSxbODkuNDE2NzgxODkyMDAwMDcsMjMuNjczMDM0NDg2MDAwMDZdLFs4OS40MTcxOTA1NjYwMDAwNCwyMy42NzI3MjI3MTMwMDAwNF0sWzg5LjQxODY1NDY4MjAwMDA3LDIzLjY3MTc5MTY2MzAwMDA4XSxbODkuNDI0OTk3ODIxMDAwMDMsMjMuNjY3ODAzMjM3MDAwMDRdLFs4OS40MjkxNzYzNDAwMDAwOCwyMy42NjUxODU3MjgwMDAwNF0sWzg5LjQzMTUwODc4OTAwMDA4LDIzLjY2NDEwNDE5NzAwMDAzXSxbODkuNDM0NjI3ODE3MDAwMDMsMjMuNjYyNjAwNDEyMDAwMDddLFs4OS40MzUyMzUzNjkwMDAwNSwyMy42NjIyNzE4MTMwMDAwN10sWzg5LjQzNTQ0MDI0NzAwMDAzLDIzLjY2MjE1OTY1NDAwMDA1XSxbODkuNDM1NjI3OTI1MDAwMDYsMjMuNjYyMDU2NDY0MDAwMDVdLFs4OS40MzYyNjI2MTMwMDAwNSwyMy42NjE2ODczMTQwMDAwNl0sWzg5LjQzODEyNTY3ODAwMDA2LDIzLjY2MDQ4ODgxMTAwMDA1XSxbODkuNDM4NTA1MzIzMDAwMDcsMjMuNjYwMTM2NzkxMDAwMDddLFs4OS40Mzg5MTY3NDUwMDAwOSwyMy42NTk2NjIzODIwMDAwOF0sWzg5LjQzOTEyMzQ4NjAwMDA4LDIzLjY1OTM5ODkzMjAwMDA0XSxbODkuNDM5MzA4NDM5MDAwMDYsMjMuNjU5MTQyNzM5MDAwMDZdLFs4OS40Mzk1MTE2MjgwMDAwNSwyMy42NTg4NDk5MjAwMDAwMl0sWzg5LjQzOTU3NDc4OTAwMDA2LDIzLjY1ODYyNTQ2NDAwMDA3XSxbODkuNDM5NjE4NTY5MDAwMDYsMjMuNjU4MzQ3MzEwMDAwMDddLFs4OS40Mzk2MTU0NDEwMDAwNiwyMy42NTgyMTg1ODcwMDAwOF0sWzg5LjQzOTQzMjg4MDAwMDA4LDIzLjY1NjA0NDQ4ODAwMDA4XSxbODkuNDM5MjA0ODYxMDAwMDYsMjMuNjU1NDc4MDA1MDAwMDhdLFs4OS40MzkwMTY0MjgwMDAwNiwyMy42NTUxODY1OTAwMDAwM10sWzg5LjQzNzgxMzUwODAwMDAzLDIzLjY1MzM3MDA5NDAwMDAyXSxbODkuNDM2OTQ3Nzc1MDAwMDgsMjMuNjUyMTA0MDk5MDAwMDRdLFs4OS40MzY4MDY0NTIwMDAwNCwyMy42NTE5NzYwMDIwMDAwM10sWzg5LjQzNjY2NjY4ODAwMDA2LDIzLjY1MTg0MTcwMDAwMDAzXSxbODkuNDM2NTk3MjQyMDAwMDYsMjMuNjUxNzQ0MzQ5MDAwMDddLFs4OS40MzU5Mjc2MTMwMDAwNSwyMy42NTA2MjY0MDMwMDAwNV0sWzg5LjQzNTg5NTQyNzAwMDA1LDIzLjY1MDU1Nzk3OTAwMDA0XSxbODkuNDM1ODg2OTI0MDAwMDQsMjMuNjUwNTM5ODgzMDAwMDhdLFs4OS40MzU4MzIxNTYwMDAwNiwyMy42NTAyMzU0MDIwMDAwOF0sWzg5LjQzNTczODI5NTAwMDA4LDIzLjY0OTY4NjkwMjAwMDA0XSxbODkuNDM1NjcyMDg3MDAwMDYsMjMuNjQ5MTkyMTM0MDAwMDNdLFs4OS40MzU2NzkyMDUwMDAwNCwyMy42NDkwMzI5NjIwMDAwNF0sWzg5LjQzNTczNDYyODAwMDAzLDIzLjY0ODU0MTQ1OTAwMDA2XSxbODkuNDM1NzU3NTUzMDAwMDMsMjMuNjQ4MzQwMDA1MDAwMDJdLFs4OS40MzU3ODE5NDYwMDAwOCwyMy42NDgxNTMyMzQwMDAwNl0sWzg5LjQzNTgwMjcyNzAwMDA3LDIzLjY0ODAyMzQ2ODAwMDA4XSxbODkuNDM2MDg4NDY2MDAwMDYsMjMuNjQ2MzM5OTUyMDAwMDZdLFs4OS40MzYyNjMzOTIwMDAwNiwyMy42NDU3NzQ5MjgwMDAwNF0sWzg5LjQzNjUyNTA2MTAwMDA1LDIzLjY0NTIwMTc1MjAwMDA1XSxbODkuNDM2Njg5Mzg4MDAwMDUsMjMuNjQ0ODkyOTg2MDAwMDZdLFs4OS40Mzg4MzMzMDAwMDAwNiwyMy42NDE0MzczNjYwMDAwNV0sWzg5LjQzOTE2MTU1MzAwMDA4LDIzLjY0MDkwODQ2MDAwMDA1XSxbODkuNDM5MjU4MDU2MDAwMDksMjMuNjQwNzY3MTExMDAwMDZdLFs4OS40Mzk3NDg4ODkwMDAwNCwyMy42NDAzMzY0NTQwMDAwOF0sWzg5LjQ0MDk0MTcyODAwMDA0LDIzLjYzOTUyNzgzNTAwMDAyXSxbODkuNDQxNzQ5MjM0MDAwMDQsMjMuNjM5MDUzNzE1MDAwMDVdLFs4OS40NDE5OTU1NDQwMDAwNiwyMy42Mzg5MTUxNjIwMDAwNV0sWzg5LjQ0MjMyNTUxOTAwMDA2LDIzLjYzODg0MzUyNTAwMDAzXSxbODkuNDQ1MTgzODk4MDAwMDQsMjMuNjM4NzQ3NjQ0MDAwMDNdLFs4OS40NDcwNjMxNzUwMDAwNCwyMy42Mzg4NDI5ODYwMDAwNF0sWzg5LjQ0ODIwMTcwNDAwMDA0LDIzLjYzODkxNzYwNzAwMDA1XSxbODkuNDQ5OTEwOTQ5MDAwMDcsMjMuNjM5MTU3OTU5MDAwMDRdLFs4OS40NTA4NjYwNjcwMDAwNSwyMy42MzkyMDUzNzcwMDAwNV0sWzg5LjQ1MTE1MjUxMTAwMDAzLDIzLjYzOTIxMjYwMDAwMDA2XSxbODkuNDUzODgxMzI0MDAwMDYsMjMuNjM5MDM0ODA5MDAwMDddLFs4OS40NTU2Njc5OTYwMDAwNSwyMy42Mzg3ODE0MDQwMDAwNF0sWzg5LjQ1NTg1NDQxNzAwMDA3LDIzLjYzODc0ODE4NzAwMDAzXSxbODkuNDU2MzcxNTE0MDAwMDcsMjMuNjM4NjIwMTU3MDAwMDVdLFs4OS40NTc4MDExNTIwMDAwNiwyMy42MzgyMzkwMjEwMDAwNl0sWzg5LjQ2OTk1MDU1ODAwMDA1LDIzLjYzNDgxODczNjAwMDA2XSxbODkuNDcwMTAxMTkzMDAwMDYsMjMuNjM0NzY3ODc5MDAwMDRdLFs4OS40NzAyMDQwMDYwMDAwNywyMy42MzQ3MjQxOTYwMDAwNF0sWzg5LjQ3MDQ5ODA1MTAwMDA1LDIzLjYzNDU5MDg0MjAwMDAyXSxbODkuNDcxMDEwNzY0MDAwMDgsMjMuNjM0MzI2Njk3MDAwMDZdLFs4OS40NzEyNDQxNDIwMDAwNSwyMy42MzQxOTQyNjEwMDAwNl0sWzg5LjQ3MTk3MjU4MDAwMDA2LDIzLjYzMzc2NzEzMjAwMDA2XSxbODkuNDc0OTM2NTI3MDAwMDcsMjMuNjMxOTA1NzY1MDAwMDZdLFs4OS40NzUzMDI2NTMwMDAwOSwyMy42MzE2NzIxNTgwMDAwN10sWzg5LjQ3NTUzODI0MTAwMDA0LDIzLjYzMTUyMTA5NTAwMDA0XSxbODkuNDc1NjExMDcxMDAwMDYsMjMuNjMxNDY2MDE3MDAwMDRdLFs4OS40NzU2ODI5ODQwMDAwNiwyMy42MzE0MDk4MDUwMDAwM10sWzg5LjQ3NTkzMTAxMzAwMDA0LDIzLjYzMTIxMTkyOTAwMDA3XSxbODkuNDc3MzIyMjczMDAwMDgsMjMuNjMwMDQ1NzgxMDAwMDRdLFs4OS40Nzc4NDUxNzcwMDAwNiwyMy42Mjk1OTgxNzEwMDAwNV0sWzg5LjQ3OTU4ODA4MzAwMDA3LDIzLjYyODA1MDQzMTAwMDA4XSxbODkuNDc5OTY1MzMyMDAwMDYsMjMuNjI3NzEwNzE2MDAwMDJdLFs4OS40ODAwNTM1NzIwMDAwMywyMy42Mjc2MzA4NDgwMDAwMl0sWzg5LjQ4MDEyNTU3NTAwMDA1LDIzLjYyNzU1MTQ5MDAwMDAzXSxbODkuNDgwMjEzMjczMDAwMDYsMjMuNjI3NDUzNTU1MDAwMDVdLFs4OS40ODA3ODIyOTMwMDAwNiwyMy42MjY2NDkzMDQwMDAwN10sWzg5LjQ4MDg5NzY2MjAwMDA3LDIzLjYyNjQ0ODcxNzAwMDA3XSxbODkuNDgxMDQzMzYwMDAwMDYsMjMuNjI2MTcwMzI2MDAwMDhdLFs4OS40ODExODM3MDYwMDAwOCwyMy42MjU4NTA3MDMwMDAwM10sWzg5LjQ4MTMzMzQxMTAwMDA0LDIzLjYyNTQ4ODIwODAwMDA0XSxbODkuNDgxMzc3Njc2MDAwMDgsMjMuNjI1MzcyMDYyMDAwMDVdLFs4OS40ODE0OTQ3MDIwMDAwOCwyMy42MjUwNjEzOTUwMDAwNV0sWzg5LjQ4MTgzOTc5NjAwMDAzLDIzLjYyNDAxNDIwODAwMDA2XSxbODkuNDgxOTc2MjMyMDAwMDgsMjMuNjIzNTk2OTA2MDAwMDVdLFs4OS40ODIwMjI2MDAwMDAwNSwyMy42MjM0MTMwMjMwMDAwN10sWzg5LjQ4MjEyMzE4NTAwMDAzLDIzLjYyMjkxOTk1NzAwMDA4XSxbODkuNDgyMTU0Njc5MDAwMDgsMjMuNjIyNzAxMDIyMDAwMDZdLFs4OS40ODIyMTc2NTkwMDAwNywyMy42MjAzOTUxMDgwMDAwM10sWzg5LjQ4MjIxMTI1NjAwMDA4LDIzLjYyMDE1MzQ2NjAwMDAzXSxbODkuNDgyMTc5NTY2MDAwMDcsMjMuNjIwMDMyNTQ5MDAwMDNdLFs4OS40ODIxMjQ5MjQwMDAwNiwyMy42MTk5MDU5MTEwMDAwNV0sWzg5LjQ3MjcyMDE5NTAwMDA4LDIzLjYwMjUxNzA1OTAwMDA0XSxbODkuNDcwNjMwNDMzMDAwMDUsMjMuNTk5ODEwMzQwMDAwMDNdLFs4OS40NzA0MDEzMDcwMDAwMywyMy41OTk1MDkyMjYwMDAwN10sWzg5LjQ3MDM4NDE2MzAwMDA2LDIzLjU5OTA0OTYzNjAwMDA3XSxbODkuNDcwNDAwNzA5MDAwMDUsMjMuNTk4ODk1NTczMDAwMDVdLFs4OS40NzA2MTM2MjIwMDAwMywyMy41OTcxMzA5OTYwMDAwM10sWzg5LjQ3MDY0OTU0MDAwMDA3LDIzLjU5NzAzNDAxODAwMDA0XSxbODkuNDcwNzM4MTg4MDAwMDQsMjMuNTk2OTI1MzY2MDAwMDVdLFs4OS40NzA5MjY5ODUwMDAwNiwyMy41OTY3NDE5NzEwMDAwM10sWzg5LjQ3MTAxMzM4NzAwMDA4LDIzLjU5NjY1ODcxNTAwMDA1XSxbODkuNDcxMTM2OTEyMDAwMDgsMjMuNTk2NTU5Nzc3MDAwMDRdLFs4OS40NzEzNzExODAwMDAwNiwyMy41OTY0MTc3NDUwMDAwNV0sWzg5LjQ3MjkyNjczODAwMDA3LDIzLjU5NTUxODY0NzAwMDA2XSxbODkuNDczMDU5NTQxMDAwMDUsMjMuNTk1NDczMzcwMDAwMDRdLFs4OS40NzM0NDAxMjAwMDAwOCwyMy41OTUzNTM4NTAwMDAwNF0sWzg5LjQ3MzU3NTMwNzAwMDAzLDIzLjU5NTMyNDk1MTAwMDA3XSxbODkuNDc4Nzk1ODAwMDAwMDYsMjMuNTk0MzU3NDQyMDAwMDVdLFs4OS40ODA0NzgzNjMwMDAwMywyMy41OTQxNjYwNTYwMDAwNl0sWzg5LjQ4MDc3NzM5MDAwMDA3LDIzLjU5NDE0MTY1MTAwMDAzXSxbODkuNDgxMDkyOTc5MDAwMDQsMjMuNTk0MTEyMjIwMDAwMDZdLFs4OS40ODE0NzkxNTMwMDAwNywyMy41OTQwNDY4OTQwMDAwM10sWzg5LjQ4MTY4MjA4OTAwMDA2LDIzLjU5NDAwMjQwOTAwMDA0XSxbODkuNDgyMzU0NzUyMDAwMDUsMjMuNTkzODI5NjQ2MDAwMDddLFs4OS40ODI2NTk5MTMwMDAwOCwyMy41OTM3MjUwOTQwMDAwNF0sWzg5LjQ4MjkwNTc2MTAwMDA0LDIzLjU5MzU5MzgxMTAwMDA2XSxbODkuNDgzMDQxMTMyMDAwMDQsMjMuNTkzNTE2OTIxMDAwMDZdLFs4OS40ODM0ODc0OTAwMDAwNywyMy41OTMyNTU4OTYwMDAwN10sWzg5LjQ4MzY3Mzg3MDAwMDA4LDIzLjU5MzEzNjI2OTAwMDA3XSxbODkuNDg0MjI4Nzc3MDAwMDYsMjMuNTkyNzYzODI0MDAwMDNdLFs4OS40ODQzNzM4MzQwMDAwNSwyMy41OTI2Mzc4NTAwMDAwN10sWzg5LjQ5NDIzNTgyMjAwMDA2LDIzLjU4MzAzMzYxNDAwMDA0XSxbODkuNDk2MDYwMDQzMDAwMDYsMjMuNTgwOTkwMjY3MDAwMDZdLFs4OS40OTY1ODMxMjYwMDAwOCwyMy41ODAzNDcyNTkwMDAwNl0sWzg5LjQ5NjkyNzc3MDAwMDA3LDIzLjU3OTkxNjUwMzAwMDA1XSxbODkuNDk3OTY3OTg5MDAwMDcsMjMuNTc4MDE0NTQ5MDAwMDVdLFs4OS40OTgwOTgxODMwMDAwOCwyMy41Nzc3NjI2MjEwMDAwM10sWzg5LjQ5ODUwNDc1ODAwMDA4LDIzLjU3Njc0NjA3MTAwMDA2XSxbODkuNDk5MjQxODAxMDAwMDQsMjMuNTc0NzQ5OTgwMDAwMDRdLFs4OS40OTk3Mzk3NzIwMDAwNSwyMy41NzMyODgyOTcwMDAwM10sWzg5LjQ5OTg5MTA5MjAwMDA0LDIzLjU3Mjc5MjU1NTAwMDA0XSxbODkuNTAwMDEyMjkzMDAwMDUsMjMuNTcyMDgyNzU0MDAwMDZdLFs4OS40OTkwOTgyODcwMDAwNCwyMy41Njg2NjQ5MTIwMDAwM10sWzg5LjQ5ODI2MjU2NzAwMDA0LDIzLjU2NTUyOTAyNTAwMDA1XSxbODkuNDk4MTAwNzgxMDAwMDYsMjMuNTYyNjU0NDI5MDAwMDhdLFs4OS40OTgwODU4NTAwMDAwNSwyMy41NjEzNDUyMTMwMDAwNF0sWzg5LjQ5ODMxOTI0MjAwMDA0LDIzLjU1OTc5Njg2OTAwMDAyXSxbODkuNDk4OTAyOTQ2MDAwMDQsMjMuNTU4NjQ1Mzk2MDAwMDNdLFs4OS40OTkyNjM0MzUwMDAwNSwyMy41NTgwNTY2MTIwMDAwM10sWzg5LjQ5OTUxMTYwMzAwMDAzLDIzLjU1Nzc3NTcwNTAwMDA0XSxbODkuNTAwMDM3NjM4MDAwMDQsMjMuNTU3MjEzNDIyMDAwMDddLFs4OS41MDAxMzkzNDQwMDAwNSwyMy41NTcxMjAwMzUwMDAwM10sWzg5LjUwMTg4MjQzMzAwMDA1LDIzLjU1NTUyMTc2OTAwMDA1XSxbODkuNTA0MjEyMDc4MDAwMDgsMjMuNTUzNjk1NTg1MDAwMDddLFs4OS41MDQ0Njk4OTMwMDAwOCwyMy41NTM1MzE1NjAwMDAwN10sWzg5LjUwNDY4NzM2MzAwMDA3LDIzLjU1MzQzMDA3MTAwMDA0XSxbODkuNTA2MTQ0ODg1MDAwMDgsMjMuNTUyNzU5NTE2MDAwMDRdLFs4OS41MDc0NTAwMDYwMDAwNiwyMy41NTIzMDk3NjMwMDAwNF0sWzg5LjUwODk5NDE2NDAwMDA2LDIzLjU1MTg4MzMzNTAwMDA3XSxbODkuNTEwOTgzMDgwMDAwMDcsMjMuNTUxNDA2MzU0MDAwMDVdLFs4OS41MTEzNDUzNzMwMDAwNCwyMy41NTEzODU0NzQwMDAwM10sWzg5LjUxMTUxOTU0MDAwMDA1LDIzLjU1MTQwMDEzNjAwMDA0XSxbODkuNTExNjc5MzE4MDAwMDYsMjMuNTUxNDEzNjIyMDAwMDRdLFs4OS41MTE3ODc1MTAwMDAwMywyMy41NTE0NjcwMjgwMDAwNV0sWzg5LjUxMjE2MTAyMTAwMDA1LDIzLjU1MTU1OTY1NTAwMDA2XSxbODkuNTEyMzgzMjc2MDAwMDQsMjMuNTUxNTY5OTUwMDAwMDRdLFs4OS41MTcwMzEzNjcwMDAwNywyMy41NTE3NzA3NTEwMDAwNV0sWzg5LjUxOTM3ODg4MjAwMDA3LDIzLjU1MTUyMzQxNTAwMDA4XSxbODkuNTE5ODIxNjMyMDAwMDYsMjMuNTUxNDM4NDA3MDAwMDNdLFs4OS41MjA4Njc3ODUwMDAwNiwyMy41NTEyMDc5MTMwMDAwNF0sWzg5LjUyMTE3Njk5MjAwMDA1LDIzLjU1MTEzNDM0NTAwMDA0XSxbODkuNTIxNDc4NTM4MDAwMDUsMjMuNTUxMDYyNDQ3MDAwMDVdLFs4OS41MjIxNTM0NjUwMDAwMywyMy41NTA4NjY5MzMwMDAwN10sWzg5LjUyMzAzOTUwMTAwMDA4LDIzLjU1MDU0NTA0MDAwMDAzXSxbODkuNTI0NjEyMDc1MDAwMDUsMjMuNTQ5NjA1Mzc0MDAwMDddLFs4OS41MjUyNzU3NzkwMDAwOCwyMy41NDkwMzU1MjAwMDAwN10sWzg5LjUyNTc4MDA4MTAwMDA1LDIzLjU0ODYwMjM2MTAwMDA2XSxbODkuNTMzNDc4NTY5MDAwMDcsMjMuNTQxOTQ3NjYwMDAwMDZdLFs4OS41MzQ0Njk4OTcwMDAwNiwyMy41NDEwODc0NDIwMDAwNV0sWzg5LjUzNTM1NzExNzAwMDA1LDIzLjU0MDIyNjkwNjAwMDA0XSxbODkuNTM2MzQyOTQ0MDAwMDcsMjMuNTM5MDA3MDQ3MDAwMDRdLFs4OS41MzcyNDAzMTQwMDAwMywyMy41MzcxNjMwOTQwMDAwNV0sWzg5LjUzNzUwNDA5MTAwMDA3LDIzLjUzNjA2MTMyMzAwMDA3XSxbODkuNTM3NDAzNTIxMDAwMDQsMjMuNTM1MDUzODc4MDAwMDRdLFs4OS41MzcxNjYwNzkwMDAwMywyMy41MzQyMjk1MDMwMDAwNl0sWzg5LjUzNzA0Mzg3ODAwMDA4LDIzLjUzMzgwNTczMjAwMDA4XSxbODkuNTM2MzIwNzQ0MDAwMDgsMjMuNTMyNDEzMTA3MDAwMDJdLFs4OS41MzU1NzEzNjEwMDAwNSwyMy41MzExNzY3NzkwMDAwOF0sWzg5LjUzNDU4OTQ4MjAwMDA2LDIzLjUyOTgwOTM0MjAwMDA4XSxbODkuNTMzNzE2OTU1MDAwMDUsMjMuNTI5Mjk5MjA2MDAwMDhdLFs4OS41MzM0NTg3ODMwMDAwNywyMy41MjkxNTMzNDMwMDAwOF0sWzg5LjUzMzMxMzYyOTAwMDA4LDIzLjUyOTA4MDA4MzAwMDA1XSxbODkuNTMyODk0ODkxMDAwMDcsMjMuNTI4ODkwODMzMDAwMDVdLFs4OS41MzI2MjA2ODMwMDAwNiwyMy41Mjg3NzkzNTkwMDAwNV0sWzg5LjUzMjQxMTgzNDAwMDA3LDIzLjUyODcxMTU1MzAwMDA1XSxbODkuNTMyMjUxMTkzMDAwMDQsMjMuNTI4Njg5MDUyMDAwMDZdLFs4OS41MzIwMDk3NTEwMDAwMywyMy41Mjg2NjEyMjgwMDAwM10sWzg5LjUzMTcwNDMxOTAwMDA4LDIzLjUyODYzNjAzNDAwMDA0XSxbODkuNTMwNzIzMzk4MDAwMDgsMjMuNTI4NTY5Mjg2MDAwMDVdLFs4OS41MzAzNjg5MDgwMDAwNywyMy41Mjg1NjU5NTkwMDAwNV0sWzg5LjUyOTYwODM5MTAwMDA3LDIzLjUyODU4OTA2ODAwMDAzXSxbODkuNTI5NDc4ODUwMDAwMDMsMjMuNTI4NjAxNjYxMDAwMDRdLFs4OS41MjkzNjQ5MjgwMDAwNiwyMy41Mjg2MTMxNzEwMDAwN10sWzg5LjUyOTIzNDc3MzAwMDA0LDIzLjUyODYyNjg5MTAwMDA0XSxbODkuNTI5MTA0NjE0MDAwMDYsMjMuNTI4NjQxMTc2MDAwMDZdLFs4OS41Mjg5NTc5MTMwMDAwNiwyMy41Mjg2NTg3OTYwMDAwNl0sWzg5LjUyODU5ODA0NzAwMDA2LDIzLjUyODcwMzQzNTAwMDA3XSxbODkuNTI4Mjg2NTA4MDAwMDYsMjMuNTI4NzYwMDc1MDAwMDRdLFs4OS41MjcyMzA4NzUwMDAwNCwyMy41Mjg5NTUwMjgwMDAwNF0sWzg5LjUyNjk2NTU0ODAwMDA4LDIzLjUyOTAxNTE5MjAwMDAzXSxbODkuNTI2MzAwMTg2MDAwMDcsMjMuNTI5MjIyNjEzMDAwMDZdLFs4OS41MjU4NjU3OTAwMDAwNywyMy41MjkzOTA2NTUwMDAwNF0sWzg5LjUyNTU5ODc1NzAwMDA3LDIzLjUyOTQ5OTkyOTAwMDA1XSxbODkuNTI1MzMxMTExMDAwMDcsMjMuNTI5NjA4NjM0MDAwMDZdLFs4OS41MjQ3Nzg1NTEwMDAwNSwyMy41Mjk3NzQ2MTYwMDAwNV0sWzg5LjUyNDEyNDAzNTAwMDA2LDIzLjUyOTk0NDIzOTAwMDAzXSxbODkuNTI0MDA3MDEwMDAwMDUsMjMuNTI5OTY2NDYyMDAwMDZdLFs4OS41MjM4ODkzNzQwMDAwOCwyMy41Mjk5ODg2ODMwMDAwNl0sWzg5LjUyMzYzNzU2MDAwMDA1LDIzLjUzMDAzNTkwMTAwMDA4XSxbODkuNTIzNTIwNTM5MDAwMDYsMjMuNTMwMDU3NTU5MDAwMDZdLFs4OS41MjMyODYxOTMwMDAwNSwyMy41MzAwOTkxODEwMDAwM10sWzg5LjUyMzEwMjEzOTAwMDA2LDIzLjUzMDExNzI0OTAwMDA2XSxbODkuNTIyODY3OTA1MDAwMDYsMjMuNTMwMTI4Mzg3MDAwMDVdLFs4OS41MjI3NTA2MzcwMDAwNiwyMy41MzAxMzMxMDgwMDAwM10sWzg5LjUyMjQ4MzM4MDAwMDA0LDIzLjUzMDEzMzQxNzAwMDA2XSxbODkuNTIyMjE3MzU4MDAwMDMsMjMuNTMwMTMwMzQzMDAwMDVdLFs4OS41MjIwNjczNzIwMDAwNCwyMy41MzAxMjQyMzcwMDAwNV0sWzg5LjUyMTY2OTE1NDAwMDA1LDIzLjUzMDEwNjA3NzAwMDAzXSxbODkuNTIwOTc0NTUzMDAwMDMsMjMuNTMwMDE0NzQzMDAwMDRdLFs4OS41MjA4NTk4MTMwMDAwNywyMy41Mjk5OTgwMTcwMDAwM10sWzg5LjUyMDQ0OTI2MDAwMDA4LDIzLjUyOTkyMDUzOTAwMDA1XSxbODkuNTE5MjQzOTQ3MDAwMDYsMjMuNTI5NjgyNTM2MDAwMDVdLFs4OS41MTg5MjA2MjYwMDAwNywyMy41Mjk2MDk4NDAwMDAwM10sWzg5LjUxODYxNDE0NjAwMDA2LDIzLjUyOTUzNjA2NzAwMDA0XSxbODkuNTE4MjExOTkzMDAwMDgsMjMuNTI5NDIyNDc4MDAwMDddLFs4OS41MTU1NzM1MTAwMDAwOCwyMy41Mjg1NjAxMzQwMDAwM10sWzg5LjUwNzQ4NzgwMDAwMDA0LDIzLjUyNDk3NTMxODAwMDAzXSxbODkuNTA3MTk4NzEzMDAwMDQsMjMuNTI0ODM5NDc3MDAwMDZdLFs4OS41MDY0NzcxMTEwMDAwNCwyMy41MjQ0NDY1MjcwMDAwN10sWzg5LjUwNjE5OTQzMjAwMDA3LDIzLjUyNDI4OTI2ODAwMDA4XSxbODkuNTAyNjk0NjQ1MDAwMDgsMjMuNTIyMDA0Njk4MDAwMDVdLFs4OS41MDI1Njg4OTEwMDAwNywyMy41MjE5MDcxOTQwMDAwNV0sWzg5LjUwMTY4NjAwOTAwMDA4LDIzLjUyMTE4NTcwODAwMDA4XSxbODkuNTAxNDQwNjU2MDAwMDYsMjMuNTIwOTgzMzgyMDAwMDVdLFs4OS41MDA3MTQyOTEwMDAwNywyMy41MjAyNDAzNzMwMDAwNF0sWzg5LjUwMDYxNDYwNTAwMDA3LDIzLjUyMDEzMTA5NjAwMDA2XSxbODkuNTAwMzEzMjkxMDAwMDUsMjMuNTE5NzUxMzIxMDAwMDZdLFs4OS41MDAxNjg5MzgwMDAwNiwyMy41MTk1NTQzOTgwMDAwM10sWzg5LjUwMDAxNzAxNTAwMDA4LDIzLjUxOTMzNTQzMjAwMDA1XSxbODkuNDk0MDE2MTI4MDAwMDYsMjMuNTEwMDEyMzc2MDAwMDhdLFs4OS40OTM1OTMzMDEwMDAwMywyMy41MDkyNDI2NTkwMDAwNV0sWzg5LjQ5MjI5MDI5MDAwMDA4LDIzLjUwNjg0NTg4MjAwMDA1XSxbODkuNDkyMjE4NDUyMDAwMDMsMjMuNTA2NjYyMTcwMDAwMDNdLFs4OS40OTAwMTM1ODAwMDAwNCwyMy41MDA5MDA1NzUwMDAwNl0sWzg5LjQ4OTk3MzkxNjAwMDA1LDIzLjUwMDc4ODY2NjAwMDA2XSxbODkuNDg5ODk1NTE0MDAwMDcsMjMuNTAwNTYyNTkyMDAwMDVdLFs4OS40ODk3MzAzNjEwMDAwNiwyMy40OTk4OTQ3NTkwMDAwM10sWzg5LjQ4OTY3NTA2MTAwMDA3LDIzLjQ5OTM5MjcwMDAwMDA0XSxbODkuNDg5MzM4NDQ4MDAwMDcsMjMuNDk0ODQ5ODM5MDAwMDRdLFs4OS40ODkzMTY5MjIwMDAwNiwyMy40OTQ1NTg0NjQwMDAwOF0sWzg5LjQ4OTMxMjEyMDAwMDA4LDIzLjQ5NDM3NDk3MjAwMDA2XSxbODkuNDg5MzAzNjE2MDAwMDksMjMuNDk0MDQwMTcwMDAwMDZdLFs4OS40ODkzMDA0OTYwMDAwNiwyMy40OTM4OTY3NjQwMDAwNl0sWzg5LjQ4OTMwNTA4OTAwMDA4LDIzLjQ5MzEwMTkwMTAwMDA1XSxbODkuNDg5MzQwNzc2MDAwMDYsMjMuNDg5MDgxMzMzMDAwMDZdLFs4OS40ODkzNjgzMDUwMDAwOCwyMy40ODg0NDkxMzIwMDAwM10sWzg5LjQ4OTM5Mzk2MTAwMDA4LDIzLjQ4ODIyMzk2MzAwMDA1XSxbODkuNDg5ODQwMjY3MDAwMDMsMjMuNDg1MDk1NTg5MDAwMDNdLFs4OS40OTAyMjQ3NjUwMDAwNSwyMy40ODI1OTUzNDgwMDAwN10sWzg5LjQ5MDMyMTQ4NjAwMDA4LDIzLjQ4MjE5MzE0MzAwMDA3XSxbODkuNDkwMzg2MTQxMDAwMDQsMjMuNDgyMDEyMTM2MDAwMDRdLFs4OS40OTA1MDc3NDMwMDAwOCwyMy40ODE3NDQzNzQwMDAwN10sWzg5LjQ5MDY0NTY5NjAwMDA2LDIzLjQ4MTQ0MjIyOTAwMDA0XSxbODkuNDkxNTQzNTE4MDAwMDcsMjMuNDc5NjE5NDIwMDAwMDZdLFs4OS40OTE1OTEwMDcwMDAwNywyMy40Nzk1MjQ3MzEwMDAwM10sWzg5LjQ5MTYzODQ5NzAwMDA1LDIzLjQ3OTQzMDA0MjAwMDA1XSxbODkuNDkxNjg2Mjg4MDAwMDQsMjMuNDc5MzM2NDg0MDAwMDRdLFs4OS40OTE3NTAyOTQwMDAwNCwyMy40NzkyNDQxMDYwMDAwN10sWzg5LjQ5MTgxNDI5NTAwMDA0LDIzLjQ3OTE1Mjg1OTAwMDA3XSxbODkuNDkxOTQyNzc4MDAwMDcsMjMuNDc5MDA0ODAzMDAwMDddLFs4OS40OTQxMDU1NzcwMDAwOCwyMy40NzY1NTI2NzQwMDAwNl0sWzg5LjQ5NDYwNjUzOTAwMDA3LDIzLjQ3NjA2NDgzODAwMDA3XSxbODkuNDk1NjgzNDkwMDAwMDMsMjMuNDc1MTUzNzYwMDAwMDddLFs4OS40OTU3ODMyNTIwMDAwOCwyMy40NzUwNzI3ODcwMDAwNF0sWzg5LjQ5NTg2NjcyOTAwMDA2LDIzLjQ3NTAwODcwMTAwMDA0XSxbODkuNDk2MTc1MzA4MDAwMDMsMjMuNDc0ODE1NDk0MDAwMDRdLFs4OS40OTY1MzU2MDgwMDAwNCwyMy40NzQ3MDA5MjYwMDAwM10sWzg5LjQ5Njc4MzY0OTAwMDA2LDIzLjQ3NDY1NDg2OTAwMDA2XSxbODkuNDk2OTE2NTA4MDAwMDgsMjMuNDc0NjQxMTgzMDAwMDddLFs4OS40OTcwNDEwNDUwMDAwNiwyMy40NzQ2NDM4NDMwMDAwMl0sWzg5LjQ5NzI0MjkxNDAwMDA4LDIzLjQ3NDY2ODc3MTAwMDA0XSxbODkuNTAzODUwMTIxMDAwMDgsMjMuNDc2MDA5ODQzMDAwMDRdLFs4OS41MDM5NTAzODQwMDAwNiwyMy40NzYwMzg5NTMwMDAwNl0sWzg5LjUwNjk0OTY4MTAwMDA0LDIzLjQ3NzMzNDUwNDAwMDA1XSxbODkuNTA3NjI0MzM2MDAwMDUsMjMuNDc4MTg3OTcyMDAwMDZdLFs4OS41MDc3NTg1MDQwMDAwNCwyMy40Nzg1NjQzODQwMDAwNF0sWzg5LjUwODE1ODY5NDAwMDAzLDIzLjQ4MDQwMTU1MjAwMDA1XSxbODkuNTA4MzM2NzY0MDAwMDMsMjMuNDgxMjM2NTEyMDAwMDddLFs4OS41MDg1NTkwNTAwMDAwMywyMy40ODIyNzk5MzEwMDAwNV0sWzg5LjUwOTI5NjIzNjAwMDA3LDIzLjQ5MzM2OTM2OTAwMDA1XSxbODkuNTA5MzMxNDA5MDAwMDgsMjMuNDkzOTU0MzQ4MDAwMDVdLFs4OS41MDkyMzAzODIwMDAwNiwyMy40OTU2OTg0NzUwMDAwNF0sWzg5LjUwOTEzNDYzMDAwMDA2LDIzLjQ5NzE3Mzg5NjAwMDA1XSxbODkuNTA5MTE2NjkwMDAwMDQsMjMuNDk3MzkwMDYwMDAwMDRdLFs4OS41MDkwMTQ1MzQwMDAwNywyMy40OTgxMTUxNzgwMDAwM10sWzg5LjUwODk5NjAzNTAwMDA1LDIzLjQ5ODIzNDI0MDAwMDA0XSxbODkuNTA4ODY0Mjc1MDAwMDYsMjMuNDk4Njg4ODQ4MDAwMDNdLFs4OS41MDg3NDUwMDUwMDAwNCwyMy40OTg5OTMzMjYwMDAwNl0sWzg5LjUwODY4NzcwMjAwMDAzLDIzLjQ5OTA5NDE5ODAwMDAyXSxbODkuNTA4NjMxODI0MDAwMDgsMjMuNDk5MjIzODY3MDAwMDddLFs4OS41MDg1MDUyMTkwMDAwOSwyMy40OTk1MjU1MDEwMDAwNV0sWzg5LjUwODMyNTczMTAwMDA3LDIzLjQ5OTk3NDMxMTAwMDA3XSxbODkuNTA4MzAwOTI3MDAwMDUsMjMuNTAwMDYwMDQ0MDAwMDddLFs4OS41MDgyNDE2MjQwMDAwNSwyMy41MDAyODczNjgwMDAwNF0sWzg5LjUwODEzMDMxODAwMDA0LDIzLjUwMTA4NDE1NTAwMDA2XSxbODkuNTA4MDk4NDkwMDAwMDcsMjMuNTAxNDEzMTg0MDAwMDZdLFs4OS41MDc5NjE0NTAwMDAwNCwyMy41MDMwNDAzMzQwMDAwNV0sWzg5LjUwNzk0MTA5MTAwMDA4LDIzLjUwMzMzMDQ0NTAwMDA3XSxbODkuNTA3OTMxNTI4MDAwMDksMjMuNTAzNTE1MDIwMDAwMDddLFs4OS41MDc5MzAwNzIwMDAwOCwyMy41MDM2NjAxMDUwMDAwNV0sWzg5LjUwNzk0MTkyOTAwMDA4LDIzLjUwNDA5MzcxMjAwMDA0XSxbODkuNTA3OTcxMDQzMDAwMDUsMjMuNTA0ODI1NDUzMDAwMDJdLFs4OS41MDc5NzQ5ODYwMDAwOCwyMy41MDQ5MTc0ODcwMDAwNl0sWzg5LjUwODAwMDY5MjAwMDA1LDIzLjUwNTQxMzgwMzAwMDA3XSxbODkuNTA4MDE3ODYyMDAwMDMsMjMuNTA1NTcwMjM1MDAwMDVdLFs4OS41MDgxNzY5OTUwMDAwNCwyMy41MDYzMTk4ODgwMDAwNl0sWzg5LjUwODIwOTcwOTAwMDA4LDIzLjUwNjQxMjAxMzAwMDA0XSxbODkuNTA4NDI4NTA4MDAwMDcsMjMuNTA2ODM3ODA2MDAwMDhdLFs4OS41MDg5NjQxNzkwMDAwMywyMy41MDc2NTYzOTEwMDAwN10sWzg5LjUwOTg3ODgwMzAwMDA1LDIzLjUwOTA1MDg3MzAwMDA0XSxbODkuNTA5OTM3ODgxMDAwMDQsMjMuNTA5MTMyOTE5MDAwMDJdLFs4OS41MTAwMTcwNTcwMDAwOCwyMy41MDkyNDI2OTAwMDAwNl0sWzg5LjUxMTE2NTA2NjAwMDA1LDIzLjUxMDQzODYxMzAwMDA4XSxbODkuNTExNDY3NDg1MDAwMDgsMjMuNTEwNjg3OTYyMDAwMDhdLFs4OS41MTczMTE3OTcwMDAwNSwyMy41MTIzMzgyODMwMDAwOF0sWzg5LjUyMDA2NjE0NjAwMDAzLDIzLjUxMjgxNzA2MTAwMDA4XSxbODkuNTI1MDczNjU5MDAwMDQsMjMuNTEyOTY2Nzc0MDAwMDZdLFs4OS41Mjg1MTQzNzIwMDAwNywyMy41MTIzMTQ0NTIwMDAwNl0sWzg5LjUzMzg2MjEwNzAwMDA2LDIzLjUxMDg1NDgyODAwMDA1XSxbODkuNTQ1MzU5MTQ3MDAwMDYsMjMuNTA3Njc2NTQ2MDAwMDNdLFs4OS41NDU0NzQwNTYwMDAwNSwyMy41MDc2Mzk2MTkwMDAwM10sWzg5LjU1MjIxMDkzMzAwMDA4LDIzLjUwNTMwNDk3MjAwMDAzXSxbODkuNTcwODExOTkxMDAwMDgsMjMuNDk4ODA2MzE1MDAwMDJdLFs4OS41NzE4NzM3MzAwMDAwNSwyMy40OTgzMzM4ODcwMDAwNl0sWzg5LjU3MjM5OTE3MjAwMDA4LDIzLjQ5ODA3MTEyMDAwMDA4XSxbODkuNTcyNTEyOTI2MDAwMDYsMjMuNDk4MDA3NjM5MDAwMDRdLFs4OS41NzI2MjYwNzEwMDAwNiwyMy40OTc5NDM1OTEwMDAwMl0sWzg5LjU3NjYxODgwNTAwMDA3LDIzLjQ5NTYwMzE0NDAwMDAzXSxbODkuNTgwNDM1MTAxMDAwMDMsMjMuNDkzMjY2MDcxMDAwMDVdLFs4OS41ODgzMjc4ODQwMDAwOCwyMy40ODc4NTQ0NTgwMDAwN10sWzg5LjU5MzIxOTI3ODAwMDA1LDIzLjQ4NDI4MjQwNTAwMDA0XSxbODkuNjAwNjQyODQxMDAwMDgsMjMuNDc4NzUzNzU3MDAwMDVdLFs4OS42MDExOTE5NTkwMDAwNiwyMy40NzgzMDgwMzcwMDAwM10sWzg5LjYwMTMyNDc4OTAwMDA1LDIzLjQ3ODE5OTk4MzAwMDAyXSxbODkuNjAxNDcyOTYyMDAwMDYsMjMuNDc4MDc4NDE5MDAwMDRdLFs4OS42MDIzMTQxOTgwMDAwNCwyMy40NzczNjY5NzQwMDAwNl0sWzg5LjYwMjQ2NzYwNTAwMDA3LDIzLjQ3NzIzNDEzMTAwMDA1XSxbODkuNjAyNzk0NjgzMDAwMDcsMjMuNDc2OTQ1MzQ5MDAwMDZdLFs4OS42MDI5NjY5MDkwMDAwMywyMy40NzY3NjA2MTUwMDAwNV0sWzg5LjYwNDM1MjAzNTAwMDAzLDIzLjQ3NTE4OTAzODAwMDA1XSxbODkuNjA0NTYzMDA2MDAwMDMsMjMuNDc0OTQwNjA0MDAwMDRdLFs4OS42MDQ3MDA5MTEwMDAwNywyMy40NzQ3NzA0NTkwMDAwN10sWzg5LjYwNDc2NDc5OTAwMDA3LDIzLjQ3NDY5MTAyMDAwMDAyXSxbODkuNjA0ODI4MzgxMDAwMDYsMjMuNDc0NjExMDE0MDAwMDZdLFs4OS42MDQ4ODAyOTQwMDAwNSwyMy40NzQ1NDUwOTMwMDAwN10sWzg5LjYwNDk4NDQ4NTAwMDA1LDIzLjQ3NDM5MjM2MzAwMDA1XSxbODkuNjA1MzU0NjQ1MDAwMDMsMjMuNDczODEyOTQzMDAwMDRdLFs4OS42MDU1OTYxNzkwMDAwMywyMy40NzMzNzAzODAwMDAwNl0sWzg5LjYwNTk2MTQ0MjAwMDA4LDIzLjQ3MjY4NTkzNzAwMDA1XSxbODkuNjA2MjIzMTE3MDAwMDcsMjMuNDcyMDU0MzAxMDAwMDddLFs4OS42MDY1ODAzNzUwMDAwOCwyMy40NzEwNzQ1NzQwMDAwNl0sWzg5LjYwNjk2MjA3NjAwMDA2LDIzLjQ2OTg5ODQ0NjAwMDA2XSxbODkuNjA3MjI0NjQzMDAwMDUsMjMuNDY4OTYxOTUwMDAwMDVdLFs4OS42MDczMjA2NzkwMDAwNSwyMy40Njg0NjA4NjkwMDAwN10sWzg5LjYwNzUzNzc5MjAwMDA3LDIzLjQ2Njk1NzQ0OTAwMDA2XSxbODkuNjA3NTg4MDcxMDAwMDcsMjMuNDY1ODkwMDA3MDAwMDRdLFs4OS42MDc2NDM5NDAwMDAwNiwyMy40NjMwMzQ2MzkwMDAwNl0sWzg5LjYwNzE4NzcyMTAwMDA2LDIzLjQ0NDUxNTU3NDAwMDA0XSxbODkuNjA2Njc4MDM2MDAwMDYsMjMuNDI1MzgzMjIyMDAwMDVdLFs4OS42MDY2NTMyNjMwMDAwNiwyMy40MjUxNzU0MDMwMDAwM10sWzg5LjYwNjYzMTMyOTAwMDA0LDIzLjQyNDkzNzEwNjAwMDA3XSxbODkuNjA2NTgzNDkzMDAwMDcsMjMuNDI0MzU2NjIzMDAwMDVdLFs4OS42MDY1OTk0NDcwMDAwNiwyMy40MjQxMzM2NjMwMDAwOF0sWzg5LjYwNjgxNTAzNjAwMDA2LDIzLjQyMTE1NTA0NTAwMDAzXSxbODkuNjA2ODUwMDQzMDAwMDcsMjMuNDIwNzk4MzM0MDAwMDRdLFs4OS42MDY4NzkxMDQwMDAwOSwyMy40MjA1OTEyMTYwMDAwNV0sWzg5LjYwNzQ5NTkxOTAwMDAzLDIzLjQxNjQ5NzQ3ODAwMDA1XSxbODkuNjA3ODgyNzM5MDAwMDUsMjMuNDE0NTY0Mjc5MDAwMDVdLFs4OS42MDc5NTI0NTcwMDAwNywyMy40MTQyNTk1OTUwMDAwM10sWzg5LjYwODAyNTQ1OTAwMDAzLDIzLjQxMzk4MzE0NTAwMDAzXSxbODkuNjA4MDg3ODg2MDAwMDgsMjMuNDEzNzY1MzgyMDAwMDddLFs4OS42MDgyOTE2OTIwMDAwOCwyMy40MTMxMDkzMTUwMDAwNF0sWzg5LjYwODQyMDc0NjAwMDA0LDIzLjQxMjcwMDg5OTAwMDA3XSxbODkuNjA4NTExNDg5MDAwMDgsMjMuNDEyNDIzMzY1MDAwMDVdLFs4OS42MDg2MTc4MzEwMDAwNiwyMy40MTIxNDUzMDUwMDAwMl0sWzg5LjYwOTQxMDU5OTAwMDA2LDIzLjQxMDA3NDIzNzAwMDA2XSxbODkuNjA5NTYyMTE3MDAwMDUsMjMuNDA5NzIxNzY3MDAwMDZdLFs4OS42MTIyMDM1MzAwMDAwNCwyMy40MDQwNTU2NzUwMDAwNV0sWzg5LjYxMjMxMzM3NjAwMDAzLDIzLjQwMzgyOTU2MTAwMDA3XSxbODkuNjEyNDIyODc0MDAwMDYsMjMuNDAzNjE4MTIzMDAwMDZdLFs4OS42MTI3MzMwNDcwMDAwNiwyMy40MDMwNzc0ODEwMDAwM10sWzg5LjYxMzEwMDY2ODAwMDA3LDIzLjQwMjU1MzM1MzAwMDAzXSxbODkuNjEzOTI3NDEyMDAwMDcsMjMuNDAxMzc3NzMxMDAwMDNdLFs4OS42MTQwNDY1NDkwMDAwOCwyMy40MDEyMTU0MzQwMDAwNV0sWzg5LjYxNDM0MjI3MTAwMDA2LDIzLjQwMDY5Njc3MDAwMDAyXSxbODkuNjE0NDc0MjkyMDAwMDcsMjMuNDAwNDE1MzgxMDAwMDddLFs4OS42MTQ3OTE3NDMwMDAwNywyMy4zOTk2Nzk0MTcwMDAwN10sWzg5LjYxNTc0NTE4NDAwMDA1LDIzLjM5NzI5ODIwMTAwMDA3XSxbODkuNjE1OTA4ODM2MDAwMDcsMjMuMzk2ODYzMzI5MDAwMDRdLFs4OS42MTU5ODE5NjQwMDAwNywyMy4zOTY2MzkzNzcwMDAwNF0sWzg5LjYxNjcwNTI5MDAwMDA4LDIzLjM5Mzk3MDc5NDAwMDA0XSxbODkuNjE2NzkwMzg2MDAwMDUsMjMuMzkzNDEyNjU0MDAwMDNdLFs4OS42MTY4NTYyMzcwMDAwNCwyMy4zOTI5NTMyNjUwMDAwN10sWzg5LjYxNjg4MzQ2MzAwMDA4LDIzLjM5MjczNzY3MDAwMDAzXSxbODkuNjE3MDkyNjYwMDAwMDgsMjMuMzkxMDMwMzk0MDAwMDRdLFs4OS42MTc1ODY4MDYwMDAwOCwyMy4zODY4OTUwODIwMDAwMl0sWzg5LjYxNzU5NDk2MDAwMDA4LDIzLjM4NjgyNDUzMjAwMDA1XSxbODkuNjE3NDE5MTcwMDAwMDYsMjMuMzg2MzgxNDg4MDAwMDRdLFs4OS42MTcxNTkyNzkwMDAwOCwyMy4zODU4MzI2NjcwMDAwNV0sWzg5LjYxNjA2NTc0NzAwMDA1LDIzLjM4MzU5MjYzOTAwMDAzXSxbODkuNjE1OTU3Nzg2MDAwMDgsMjMuMzgzMzg1MTc5MDAwMDddLFs4OS42MTU1MjE3NjAwMDAwNCwyMy4zODI3MzI2MDcwMDAwNF0sWzg5LjYxNTM1MTE0OTAwMDA1LDIzLjM4MjUxMjAxMTAwMDA3XSxbODkuNjE1MTMxMzQ4MDAwMDMsMjMuMzgyMjc2NjEzMDAwMDRdLFs4OS42MTQ2NDgyNjQwMDAwNCwyMy4zODE4MjY2MDAwMDAwN10sWzg5LjYxNDQ5MzI4OTAwMDA1LDIzLjM4MTY5ODYyODAwMDA0XSxbODkuNjE0MzQ3MDEzMDAwMDQsMjMuMzgxNjI5MzkwMDAwMDZdLFs4OS42MTQyMDc3NTkwMDAwNywyMy4zODE1NjM1NTkwMDAwM10sWzg5LjYxNDEwMDQ3ODAwMDA3LDIzLjM4MTU0NTIyODAwMDA1XSxbODkuNjEzOTgzNDAwMDAwMDUsMjMuMzgxNTMwMjU5MDAwMDRdLFs4OS42MTM4NDI3MTEwMDAwNywyMy4zODE1MzgzODEwMDAwNF0sWzg5LjYxMzUxOTYyNzAwMDA3LDIzLjM4MTU5NDAzOTAwMDA1XSxbODkuNjEzMzg1MjgxMDAwMDMsMjMuMzgxNjI5MjczMDAwMDRdLFs4OS42MTMyMTU5OTYwMDAwNiwyMy4zODE2OTA5NTcwMDAwNV0sWzg5LjYxMzA4MTkxMDAwMDA2LDIzLjM4MTc0MTQzNjAwMDAzXSxbODkuNjEyODU0ODQ2MDAwMDYsMjMuMzgxNzk3MzMwMDAwMDRdLFs4OS42MTIzMDE5MTkwMDAwNiwyMy4zODE5MTc5MDUwMDAwMl0sWzg5LjYxMTgzNTAwNTAwMDA1LDIzLjM4MjAwODc3MDAwMDAzXSxbODkuNjExNjM4MDE3MDAwMDgsMjMuMzgyMDI4MDQwMDAwMDJdLFs4OS42MTEyODA0NjEwMDAwNCwyMy4zODIwNTQ4MTYwMDAwNV0sWzg5LjYxMDkxMzc1MzAwMDAzLDIzLjM4MjA3NDIyODAwMDA4XSxbODkuNjA3NDU5NzM5MDAwMDMsMjMuMzgyMTg1ODQ4MDAwMDZdLFs4OS42MDY3MjEzMjUwMDAwOCwyMy4zODIxNTU3NjYwMDAwNF0sWzg5LjYwNjM1ODE2MjAwMDA1LDIzLjM4MjExMzYzOTAwMDA3XSxbODkuNjA1ODM1ODM5MDAwMDYsMjMuMzgyMDE2OTE0MDAwMDhdLFs4OS42MDUzNzgzMzcwMDAwNSwyMy4zODE5MjMxNzIwMDAwM10sWzg5LjYwNDkxODIwNDAwMDA2LDIzLjM4MTc4ODc3NTAwMDA4XSxbODkuNjA0NjMyNTM1MDAwMDYsMjMuMzgxNzA0NDk4MDAwMDNdLFs4OS42MDExNDY2ODgwMDAwOSwyMy4zODA2MDIwOTcwMDAwNl0sWzg5LjYwMTAxNDIwMzAwMDAzLDIzLjM4MDUyNTU0NDAwMDAyXSxbODkuNjAwNzY3NjE3MDAwMDMsMjMuMzgwMzYwMDY0MDAwMDZdLFs4OS42MDA1MDQsMjMuMzgwMTYzNDg4MDAwMDVdLFs4OS41OTk0NzA2NzcwMDAwNiwyMy4zNzkyNjMxOTkwMDAwNF0sWzg5LjU5OTQwNzM4NjAwMDA1LDIzLjM3OTE1OTE1ODAwMDA1XSxbODkuNTk5Mzk4MDQ5MDAwMDYsMjMuMzc5MDEwMDkxMDAwMDVdLFs4OS41OTk0Mjk5NTEwMDAwNSwyMy4zNzg3NzMwNTkwMDAwM10sWzg5LjU5OTUzMTkyNTAwMDA2LDIzLjM3ODUyMDk2MDAwMDA2XSxbODkuNTk5NjI5NDM4MDAwMDgsMjMuMzc4MzI4Njk2MDAwMDRdLFs4OS41OTk3NjU5NjUwMDAwNywyMy4zNzgwNzcyNTMwMDAwN10sWzg5LjU5OTkwMDI1OTAwMDA0LDIzLjM3Nzg1NTE2MDAwMDAyXSxbODkuNTk5OTcxNTAwMDAwMDQsMjMuMzc3NzU1OTgwMDAwMDddLFs4OS42MDAwNzAwNjgwMDAwNCwyMy4zNzc2MTkwNDUwMDAwN10sWzg5LjYwMDI1NzYxMjAwMDA2LDIzLjM3NzM4MzUzOTAwMDA1XSxbODkuNjAwNDA2MTQ0MDAwMDMsMjMuMzc3MjA2MDgyMDAwMDRdLFs4OS42MDA3NDA5NDQwMDAwNSwyMy4zNzY4MTAwNTEwMDAwNl0sWzg5LjYwMTc0NDY3NDAwMDAzLDIzLjM3NTYzNjYzNTAwMDAzXSxbODkuNjAyMTE2NzU0MDAwMDYsMjMuMzc1MjQ1Nzc4MDAwMDhdLFs4OS42MDIzMjMxODkwMDAwNiwyMy4zNzUwMzA2NDIwMDAwN10sWzg5LjYwMjU4ODQ5OTAwMDAzLDIzLjM3NDc1OTE5NzAwMDA2XSxbODkuNjAzMTQ1Njg5MDAwMDMsMjMuMzc0MjI2NTM5MDAwMDZdLFs4OS42MDQyMjMwNzQwMDAwNiwyMy4zNzMyNTgyMjYwMDAwOF0sWzg5LjYwNDg2MDYwODAwMDA4LDIzLjM3Mjc0NjY1NDAwMDAzXSxbODkuNjA1MjE0OTAwMDAwMDgsMjMuMzcyNDcxNDgwMDAwMDZdLFs4OS42MDU2NTAyNjIwMDAwNCwyMy4zNzIxODM1MjIwMDAwNl0sWzg5LjYwNjE1MTIyOTAwMDAzLDIzLjM3MTgzNjQ1MjAwMDAzXSxbODkuNjA2NDQyNjIwMDAwMDUsMjMuMzcxNjMzMzc5MDAwMDZdLFs4OS42MDY3NTI0NDcwMDAwOCwyMy4zNzEzOTkzMDIwMDAwNF0sWzg5LjYwNzAxOTc1NjAwMDA2LDIzLjM3MTE3MDE5ODAwMDA3XSxbODkuNjA3MzAxMjA5MDAwMDcsMjMuMzcwOTE0NTk0MDAwMDZdLFs4OS42MDc0OTkzMjIwMDAwOCwyMy4zNzA3MTYzNjYwMDAwN10sWzg5LjYwNzY1NzA0NzAwMDAzLDIzLjM3MDUyNjUwNjAwMDAzXSxbODkuNjA3Nzc0Mjk5MDAwMDgsMjMuMzcwMzc0MzY5MDAwMDVdLFs4OS42MDc4OTA2ODgwMDAwNSwyMy4zNzAyMDQxNjQwMDAwM10sWzg5LjYwNzk5MTM1OTAwMDA0LDIzLjM2OTk3MTI1MjAwMDAzXSxbODkuNjA4MDE5NDA3MDAwMDksMjMuMzY5NzkxMjI5MDAwMDRdLFs4OS42MDgwMzEyOTcwMDAwOCwyMy4zNjk1OTUzNTYwMDAwNV0sWzg5LjYwNzg2NzQ0NTAwMDA3LDIzLjM2NTYzMDA0MzAwMDA3XSxbODkuNjA3ODE5NDY4MDAwMDYsMjMuMzY0Njg0ODQ5MDAwMDddLFs4OS42MDcyMDYyMTEwMDAwNiwyMy4zNTgyMTQ1ODIwMDAwN10sWzg5LjYwNzEzODY3NjAwMDAzLDIzLjM1Nzc4NzYwNTAwMDA2XSxbODkuNjA2OTI1MzQxMDAwMDgsMjMuMzU2ODI4NDQ2MDAwMDddLFs4OS42MDU5MzE3MTkwMDAwNywyMy4zNTI0NjkyMzMwMDAwMl0sWzg5LjYwNTg1MjU5NjAwMDAzLDIzLjM1MjEzNzYzODAwMDA0XSxbODkuNjA1NzI1MDg5MDAwMDMsMjMuMzUxODMzMDE4MDAwMDRdLFs4OS42MDU1NjUsMjMuMzUxNDg0ODQ1MDAwMDddLFs4OS42MDUzMTA1MTYwMDAwMywyMy4zNTEwMDgyODAwMDAwM10sWzg5LjYwNDk0NjY4MTAwMDA2LDIzLjM1MDM5NTM3NzAwMDA0XSxbODkuNjA0Njk0MzgyMDAwMDUsMjMuMzUwMDA3NDUzMDAwMDVdLFs4OS42MDQyNjQ2MzEwMDAwNCwyMy4zNDkyNTMyNDMwMDAwOF0sWzg5LjYwNDEwMjMxNTAwMDAzLDIzLjM0ODkzNTU0OTAwMDAzXSxbODkuNjAzOTY4NzQ4MDAwMDYsMjMuMzQ4NjE1NjY5MDAwMDNdLFs4OS42MDM4MzEzNzYwMDAwNywyMy4zNDgyMzgxOTcwMDAwNl0sWzg5LjYwMzYwNjc1NTAwMDA0LDIzLjM0NzQ4OTU4NTAwMDA2XSxbODkuNjAzNDU0Nzg2MDAwMDQsMjMuMzQ2NTcxNzg4MDAwMDZdLFs4OS42MDMzMTUxMTEwMDAwOSwyMy4zNDU1MzAzODQwMDAwM10sWzg5LjYwMzIyMjA4NTAwMDA4LDIzLjM0MzUwMzM3NDAwMDAyXSxbODkuNjAzMjAwMzM0MDAwMDYsMjMuMzQxODcyODY2MDAwMDddLFs4OS42MDMyMTMzNzAwMDAwNSwyMy4zNDE2MDA3ODAwMDAwOF0sWzg5LjYwMzI1OTU0NjAwMDA2LDIzLjM0MTI4NzAwMTAwMDA3XSxbODkuNjAzNjUyNDQyMDAwMDUsMjMuMzM5NjE2ODkzMDAwMDNdLFs4OS42MDM2NjU3MjAwMDAwNCwyMy4zMzk1NzIzMjgwMDAwM10sWzg5LjYwMzczMTQ2MzAwMDAzLDIzLjMzOTM2MDc4NDAwMDA2XSxbODkuNjA0MjY3Mjc2MDAwMDMsMjMuMzM3NzM2MjAxMDAwMDRdLFs4OS42MDQ0NDI4ODQwMDAwNCwyMy4zMzczODA0MDUwMDAwM10sWzg5LjYwNDYzNDk1MzAwMDA3LDIzLjMzNzAzOTMzMDAwMDA0XSxbODkuNjE2NTA0OTc4MDAwMDgsMjMuMzE2NzMzODQ3MDAwMDJdLFs4OS42MTY2ODk0MjMwMDAwOCwyMy4zMTY0NzIzNDEwMDAwNl0sWzg5LjYxNjk1MjcxOTAwMDA0LDIzLjMxNjEwNjAxOTAwMDA3XSxbODkuNjE4MzE4MTc0MDAwMDgsMjMuMzE0MjQwNjQyMDAwMDddLFs4OS42MjE0ODMyODAwMDAwNiwyMy4zMTAxODQ1ODMwMDAwMl0sWzg5LjYyMTk0MjM0OTAwMDA1LDIzLjMwOTY0MDg4NjAwMDA3XSxbODkuNjIyMjExNTQ5MDAwMDQsMjMuMzA5MzM4OTMwMDAwMDJdLFs4OS42MjIzODM4MDcwMDAwNiwyMy4zMDkxNjQzMjkwMDAwNV0sWzg5LjYyMjU4NzYwMDAwMDAzLDIzLjMwODk3MDA0NTAwMDAyXSxbODkuNjIyODU0ODE3MDAwMDcsMjMuMzA4NzE5NDU4MDAwMDRdLFs4OS42MjM0MDY5NzYwMDAwNywyMy4zMDgyMTc3NTcwMDAwMl0sWzg5LjYyNDU1MjcwNzAwMDA4LDIzLjMwNzI2MzU2NzAwMDA2XSxbODkuNjI1MjEzNzc5MDAwMDMsMjMuMzA2NzE4MDg2MDAwMDVdLFs4OS42MjU1MzY5MzQwMDAwOCwyMy4zMDY0NjE0MTcwMDAwNF0sWzg5LjYyNjEzNDExMzAwMDAzLDIzLjMwNjAyODY5MjAwMDA0XSxbODkuNjI2ODI1MDgwMDAwMDYsMjMuMzA1NjA4MDQzMDAwMDZdLFs4OS42Mjc2MTczNTcwMDAwOCwyMy4zMDUxMzI4NjgwMDAwNF0sWzg5LjYyOTQ3ODQ0MjAwMDA1LDIzLjMwNDE5NTU4MjAwMDAzXSxbODkuNjI5OTE3NTg0MDAwMDUsMjMuMzAzOTg3MTY2MDAwMDddLFs4OS42MzAzMjUxOTQwMDAwOCwyMy4zMDM3OTczMDYwMDAwNF0sWzg5LjYzMDcxNjU1NzAwMDA4LDIzLjMwMzYyNTQ3MDAwMDA0XSxbODkuNjM0OTEzMzc5MDAwMDcsMjMuMzAxODEwNjIxMDAwMDddLFs4OS42MzU3MjY3NzcwMDAwNiwyMy4zMDE1Mjg1MzcwMDAwMl0sWzg5LjYzNjM3NDY0MjAwMDA4LDIzLjMwMTMxNzc2MzAwMDA0XSxbODkuNjM3MTA5NjQ0MDAwMDgsMjMuMzAxMDkyNTExMDAwMDRdLFs4OS42NDAxNjA0MzEwMDAwOCwyMy4zMDAyMzkxNDIwMDAwN10sWzg5LjY0MDczMjU5NjAwMDA4LDIzLjMwMDEwMjcwMDAwMDAyXSxbODkuNjQxNzYxOTI3MDAwMDYsMjMuMjk5ODYyODU2MDAwMDZdLFs4OS42NDIxOTA4MDMwMDAwNiwyMy4yOTk4MjM3NTAwMDAwM10sWzg5LjY0MzA0ODAwNDAwMDA0LDIzLjI5OTcyMjk1MzAwMDA3XSxbODkuNjQzNDI3ODY2MDAwMDgsMjMuMjk5NjEyNTk3MDAwMDhdLFs4OS42NDM3ODEyMDgwMDAwNiwyMy4yOTk0NzY3NzYwMDAwNl0sWzg5LjY0NDE3NzczODAwMDA1LDIzLjI5OTMwMzc4OTAwMDA4XSxbODkuNjQ0NzI0ODUwMDAwMDUsMjMuMjk5MDQ3MDIzMDAwMDddLFs4OS42NDQ5ODA2NTcwMDAwOCwyMy4yOTg5MjYyMjAwMDAwNl0sWzg5LjY0NTIyMTI5NjAwMDA1LDIzLjI5ODc2NDE3MDAwMDAzXSxbODkuNjQ1MzMxOTUxMDAwMDYsMjMuMjk4NjM5NjUxMDAwMDNdLFs4OS42NDUzNjE1MzIwMDAwNCwyMy4yOTg1NDc2OTQwMDAwNF0sWzg5LjY0NTMyNzgxNDAwMDA0LDIzLjI5ODQ3MDgzNzAwMDAyXSxbODkuNjQ1MjY0MjkxMDAwMDUsMjMuMjk4MzM5MTQ5MDAwMDddLFs4OS42NDUxMTU2NjkwMDAwNiwyMy4yOTgxNDUxNjYwMDAwNF0sWzg5LjY0NDkzMTExMDAwMDA3LDIzLjI5ODAxOTk4MDAwMDA1XSxbODkuNjQyNjk1ODk2MDAwMDgsMjMuMjk3NDUwOTAxMDAwMDVdLFs4OS42NDE1OTI3NzIwMDAwOCwyMy4yOTcxODA3ODAwMDAwOF0sWzg5LjY0MTI3NjA2NjAwMDA1LDIzLjI5NzEwNDQwNDAwMDA0XSxbODkuNjM5NTk2MzY0MDAwMDYsMjMuMjk2OTE0ODExMDAwMDhdLFs4OS42Mzg3MDAxOTEwMDAwNSwyMy4yOTY4NTQ1OTkwMDAwM10sWzg5LjYzODI4NTU1ODAwMDA2LDIzLjI5NjgyNzY3MzAwMDA1XSxbODkuNjM3Nzg1MzQ2MDAwMDQsMjMuMjk2ODA1NjI5MDAwMDZdLFs4OS42Mzc0MTgzMjkwMDAwNywyMy4yOTY4MDEzOTUwMDAwNV0sWzg5LjYzNjg3NDYxODAwMDA0LDIzLjI5NjgxNTk0NDAwMDA2XSxbODkuNjM2Mjg2Nzg2MDAwMDgsMjMuMjk2ODczODYxMDAwMDVdLFs4OS42MzU1Mjg4MDQwMDAwNSwyMy4yOTcwMTcxOTYwMDAwN10sWzg5LjYzNTIyNzU5MjAwMDA0LDIzLjI5NzA4NzA2NjAwMDA3XSxbODkuNjM0OTI2MzgzMDAwMDUsMjMuMjk3MTU2OTM3MDAwMDddLFs4OS42MzQ2OTI2NzgwMDAwOCwyMy4yOTcyMzg4MTgwMDAwNF0sWzg5LjYzMzMyMTQ5NjAwMDA2LDIzLjI5Nzc3MTk1NzAwMDA3XSxbODkuNjMyNjYzMzM0MDAwMDksMjMuMjk4MDY1Njg0MDAwMDVdLFs4OS42MzEzOTg0NjcwMDAwNSwyMy4yOTg3MTc2MTQwMDAwNV0sWzg5LjYzMTAwODI0NjAwMDA4LDIzLjI5ODkyNTAyMTAwMDA2XSxbODkuNjMwMjgyODI1MDAwMDUsMjMuMjk5MzMzNzUxMDAwMDZdLFs4OS42Mjk2NjExMDkwMDAwNCwyMy4yOTk3MDMyMDMwMDAwNF0sWzg5LjYyOTUyMDYwMTAwMDA4LDIzLjI5OTc4Njk5MjAwMDA3XSxbODkuNjI5MzIyNTM4MDAwMDUsMjMuMjk5OTA3OTA2MDAwMDRdLFs4OS42Mjg3NjE2MzQwMDAwNiwyMy4zMDAyNzc0OTgwMDAwN10sWzg5LjYyODE0NTQ1MjAwMDA3LDIzLjMwMDc0MjM3MDAwMDAyXSxbODkuNjI3OTAxMjg2MDAwMDUsMjMuMzAwOTU1NzYxMDAwMDddLFs4OS42MjcyNTQyOTEwMDAwNCwyMy4zMDE2MTc1ODgwMDAwNl0sWzg5LjYyNTc5MTU4NDAwMDA3LDIzLjMwMzI2OTk3MzAwMDA2XSxbODkuNjI1MTM4MDY1MDAwMDQsMjMuMzA0MDcyMzU1MDAwMDddLFs4OS42MjQ1OTQyMTYwMDAwNSwyMy4zMDQ3Nzk1ODIwMDAwNF0sWzg5LjYyNDAxODAyNDAwMDA3LDIzLjMwNTQ2NTg0MjAwMDA1XSxbODkuNjIzNjM5OTI1MDAwMDgsMjMuMzA1OTE1NDU4MDAwMDddLFs4OS42MjMzODI5NTcwMDAwNSwyMy4zMDYyMTkxNDEwMDAwNF0sWzg5LjYyMzExNjcwNTAwMDA5LDIzLjMwNjQ1NTA1NDAwMDAzXSxbODkuNjIxNzU5MDU0MDAwMDUsMjMuMzA3NDQ5OTM0MDAwMDNdLFs4OS42MjEzNzQxMjUwMDAwNSwyMy4zMDc2MDkzNDEwMDAwNV0sWzg5LjYyMTAwNzM2NzAwMDA2LDIzLjMwNzcxODU0NjAwMDA1XSxbODkuNjIwNzg4MDQ3MDAwMDgsMjMuMzA3Njc1NjcyMDAwMDddLFs4OS42MjA0NDk2MzcwMDAwNCwyMy4zMDc0ODg1NDgwMDAwNF0sWzg5LjYxOTEzNDM4ODAwMDA4LDIzLjMwNjQ2MjM2NzAwMDA1XSxbODkuNjE4NjQxMTQzMDAwMDUsMjMuMzA2MDIxMzczMDAwMDhdLFs4OS42MTg0MDQyMzcwMDAwNSwyMy4zMDU3MTY0OTcwMDAwNV0sWzg5LjYxNzk1NzM5NTAwMDA4LDIzLjMwNTA4MTQwMjAwMDA0XSxbODkuNjE3NjUyMzg4MDAwMDcsMjMuMzA0NDM4NzQ5MDAwMDRdLFs4OS42MTc2NTA5NTQwMDAwNiwyMy4zMDQyOTg3MzQwMDAwNF0sWzg5LjYxODQzNjk2NjAwMDA1LDIzLjMwMTUyODA3MDAwMDA3XSxbODkuNjE4NjYwNjk4MDAwMDQsMjMuMzAwOTg0MzczMDAwMDZdLFs4OS42MTg3NTAyNDUwMDAwNiwyMy4zMDA3Njg5MjgwMDAwMl0sWzg5LjYxODk4NDk4ODAwMDA4LDIzLjMwMDMyODAwODAwMDA2XSxbODkuNjE5NDIwNzUwMDAwMDcsMjMuMjk5NTkwMDUwMDAwMDZdLFs4OS42MjA4MjQ3NDIwMDAwOCwyMy4yOTc0MjQ5NTcwMDAwM10sWzg5LjYyMjE1Mzk4OTAwMDA4LDIzLjI5NTg0ODUxMDAwMDA0XSxbODkuNjIyOTc1Mzc3MDAwMDUsMjMuMjk1MDA0NzY3MDAwMDJdLFs4OS42MjMyNjUyODcwMDAwNCwyMy4yOTQ3MTY0MDYwMDAwOF0sWzg5LjYyNDU4MjA4MDAwMDA0LDIzLjI5MzYzNzg1NjAwMDAzXSxbODkuNjI1NDkzODgzMDAwMDUsMjMuMjkyOTA3MjI4MDAwMDVdLFs4OS42MjkyOTgyMjAwMDAwNywyMy4yOTA1OTI1MTIwMDAwNV0sWzg5LjYzMDI4NzUzOTAwMDA1LDIzLjI4OTk5NDE0ODAwMDA2XSxbODkuNjMxOTk5NDk0MDAwMDcsMjMuMjg5MzA4MjczMDAwMDddLFs4OS42MzM0MTUwMjUwMDAwMywyMy4yODkwNjQ4NzEwMDAwNV0sWzg5LjYzMzc2MTA4ODAwMDA5LDIzLjI4OTAxMzE3NTAwMDA0XSxbODkuNjM0MDI5MDk4MDAwMDQsMjMuMjg5MDA5Mjg0MDAwMDNdLFs4OS42MzQzNjI4MDYwMDAwNywyMy4yODkwMDYxMTEwMDAwNV0sWzg5LjYzNDM4NDUwMzAwMDA0LDIzLjI4OTAwNjE2MDAwMDA0XSxbODkuNjM0Njc5OTY4MDAwMDYsMjMuMjg5MDE5ODM0MDAwMDRdLFs4OS42MzQ5MjU1NzkwMDAwOCwyMy4yODkwNDkxOTkwMDAwM10sWzg5LjYzNTQzNTQxNzAwMDA1LDIzLjI4OTExNjQzNzAwMDA4XSxbODkuNjM1NzE0ODgxMDAwMDcsMjMuMjg5MTcxMjg2MDAwMDZdLFs4OS42MzYxOTI4MzEwMDAwNywyMy4yODkyNzg1MzQwMDAwNl0sWzg5LjYzNzQ2NTE4MzAwMDA3LDIzLjI4OTU0NDU2NzAwMDA2XSxbODkuNjM3ODc1MzY5MDAwMDgsMjMuMjg5NjI0NTUzMDAwMDddLFs4OS42NDIyMDE4OTEwMDAwNywyMy4yOTAwNzU0MDcwMDAwN10sWzg5LjY0MjcwOTEwODAwMDA4LDIzLjI5MDA5NzQ1MzAwMDA0XSxbODkuNjQzMzE0NDU0MDAwMDYsMjMuMjkwMTA2NzM0MDAwMDZdLFs4OS42NDQ5MzgxOTIwMDAwNCwyMy4yOTAwNTE3MDMwMDAwN10sWzg5LjY0NTQ0MTg3MTAwMDA2LDIzLjI5MDAyNTc0MjAwMDA3XSxbODkuNjQ2NDkxMTM0MDAwMDksMjMuMjg5OTU4MTA0MDAwMDVdLFs4OS42NDg4MDg1NjMwMDAwNSwyMy4yODk3ODI2NDgwMDAwM10sWzg5LjY0ODkyNTk1MjAwMDA3LDIzLjI4OTc2NjUzODAwMDA0XSxbODkuNjQ5MjE2NjkwMDAwMDYsMjMuMjg5NzE5MjAwMDAwMDRdLFs4OS42NTA0MjQyMTQwMDAwNSwyMy4yODk0Mjg4ODUwMDAwNl0sWzg5LjY1MjMxNjcwMzAwMDA1LDIzLjI4ODk2MjI0MTAwMDA0XSxbODkuNjUyNjk0MDg4MDAwMDMsMjMuMjg4ODQ5NTk5MDAwMDZdLFs4OS42NTI4NjQxMjcwMDAwNCwyMy4yODg3OTg2MDEwMDAwNV0sWzg5LjY1MzA3NDIzMTAwMDA2LDIzLjI4ODczNDE0MDAwMDAzXSxbODkuNjUzNzk1MDg1MDAwMDcsMjMuMjg4NTA2NTE4MDAwMDhdLFs4OS42NTM5MjUwNjcwMDAwNSwyMy4yODg0NjQ0NjIwMDAwNF0sWzg5LjY1NTUwOTYzMDAwMDA0LDIzLjI4Nzk0OTExMjAwMDA0XSxbODkuNjU3NzE3NTE5MDAwMDcsMjMuMjg3MDk0MTA5MDAwMDddLFs4OS42NjM2Nzg2OTEwMDAwOSwyMy4yODM5Nzg3MjgwMDAwMl0sWzg5LjY2NTQzODUxMzAwMDA4LDIzLjI4Mjk5MzM2NzAwMDA3XSxbODkuNjY1NzE1MTQ3MDAwMDcsMjMuMjgyODM1MzE0MDAwMDddLFs4OS42NjYwMTA5MzcwMDAwNywyMy4yODI1OTE0ODUwMDAwN10sWzg5LjY2NjI1Njg0ODAwMDA1LDIzLjI4MjM3NTc3ODAwMDA3XSxbODkuNjY2NTU0OTkxMDAwMDUsMjMuMjgyMDQ2MTM5MDAwMDRdLFs4OS42NjY4NTQ0NTkwMDAwNCwyMy4yODE2NzM1OTYwMDAwOF0sWzg5LjY2NjkyNTU5MTAwMDA1LDIzLjI4MTU3Nzc3MTAwMDA2XSxbODkuNjY3MDg4MDg3MDAwMDgsMjMuMjgxMzU4NDk5MDAwMDhdLFs4OS42Njg4MTcxNzkwMDAwOSwyMy4yNzg4MTM2OTQwMDAwNl0sWzg5LjY2ODkxODQzNjAwMDA3LDIzLjI3ODY0Mjg0NDAwMDA1XSxbODkuNjY5MDA0NzYwMDAwMDYsMjMuMjc4NDU2NzE5MDAwMDhdLFs4OS42NjkwNTYzNzUwMDAwOCwyMy4yNzgzNDMzNDkwMDAwN10sWzg5LjY2OTA3NzUwNzAwMDA1LDIzLjI3ODE5OTk5MjAwMDA1XSxbODkuNjY5MDY5MDUxMDAwMDYsMjMuMjc4MDM1Njg2MDAwMDddLFs4OS42Njg5OTMwMzMwMDAwNSwyMy4yNzc4ODUzNTAwMDAwOF0sWzg5LjY2ODk0ODMyODAwMDA2LDIzLjI3Nzc5OTQ0MjAwMDA2XSxbODkuNjY4NzY0Mjk5MDAwMDMsMjMuMjc3NTg0NTE3MDAwMDRdLFs4OS42Njg1MzAzMjcwMDAwNCwyMy4yNzc0MjY1MDgwMDAwOF0sWzg5LjY2Nzk2NTk4NjAwMDA3LDIzLjI3NzE2Nzg3MTAwMDA3XSxbODkuNjY3NjA1NDc4MDAwMDQsMjMuMjc3MDIzNzA5MDAwMDVdLFs4OS42NjcxOTc2NDYwMDAwMywyMy4yNzY4NjUzMjkwMDAwM10sWzg5LjY2Njk5MzA2NDAwMDA1LDIzLjI3NjgwNzg3NDAwMDA0XSxbODkuNjY2Njk0NDA5MDAwMDYsMjMuMjc2NzM0OTc0MDAwMDhdLFs4OS42NjU5NzEyNDQwMDAwNSwyMy4yNzY1NzU5MjQwMDAwNF0sWzg5LjY2NTYyNTgzOTAwMDA5LDIzLjI3NjUwMjkyMjAwMDA4XSxbODkuNjY1MzI3MTEzMDAwMDUsMjMuMjc2NDU5Mzc5MDAwMDddLFs4OS42NjQ2NTE0NDEwMDAwNSwyMy4yNzYzNzA0MjkwMDAwNV0sWzg5LjY2NDI5MDM4NjAwMDA2LDIzLjI3NjMyNTA1NjAwMDA4XSxbODkuNjYzNTA2MjQ4MDAwMDMsMjMuMjc2MjM0MTc1MDAwMDddLFs4OS42NjI2Mjc2MzMwMDAwNiwyMy4yNzYxNjg0OTIwMDAwN10sWzg5LjY2MjE4NzM0MTAwMDA1LDIzLjI3NjE2MTMzNDAwMDA1XSxbODkuNjYxNzYxMDM3MDAwMDgsMjMuMjc2MTgxODY5MDAwMDNdLFs4OS42NjEzOTY5OTUwMDAwOCwyMy4yNzYyMzA3NjgwMDAwNl0sWzg5LjY2MDc5MTcwNzAwMDA0LDIzLjI3NjM0MzUwMzAwMDA4XSxbODkuNjYwNDg5MDUxMDAwMDcsMjMuMjc2NDA0OTUyMDAwMDZdLFs4OS42NjAxNTM5NzAwMDAwNywyMy4yNzY0NzkzMTMwMDAwNF0sWzg5LjY1OTg1MDcwNDAwMDA2LDIzLjI3NjUzOTA2NjAwMDA1XSxbODkuNjU5NTE4MTg1MDAwMDgsMjMuMjc2NTY3NzAxMDAwMDNdLFs4OS42NTkxODYyODAwMDAwOSwyMy4yNzY1OTUyMTAwMDAwNF0sWzg5LjY1ODg4NzQ0NzAwMDA0LDIzLjI3NjU5Mzk5NzAwMDA4XSxbODkuNjU4NTI4ODEwMDAwMDYsMjMuMjc2NTU5MzQyMDAwMDRdLFs4OS42NTgyODExMTcwMDAwNiwyMy4yNzY1MTQ3NjcwMDAwNF0sWzg5LjY1ODA0OTMxMDAwMDA4LDIzLjI3NjQ3MDc5MDAwMDA4XSxbODkuNjUwNjMxNjQ3MDAwMDcsMjMuMjczODczODEyMDAwMDNdLFs4OS42NTAxNDgxNTMwMDAwMywyMy4yNzM2ODI0NzUwMDAwNF0sWzg5LjY0OTEwOTgwMzAwMDA0LDIzLjI3MzEzMzA5MTAwMDAzXSxbODkuNjQ4MDExMDk3MDAwMDUsMjMuMjcyNDE1MzIzMDAwMDhdLFs4OS42NDc1NzY5MTAwMDAwNSwyMy4yNzIwNjgyNzAwMDAwM10sWzg5LjY0NjU5OTc0ODAwMDA5LDIzLjI3MTE0OTc3ODAwMDA1XSxbODkuNjM5Nzg2NjI0MDAwMDcsMjMuMjY0NDcyMzg2MDAwMDJdLFs4OS42Mzg2OTQ1MTQwMDAwNiwyMy4yNjMzOTMyNDQwMDAwNF0sWzg5LjYzNzQ2NzQ1ODAwMDA2LDIzLjI2MjE3MjY0MjAwMDA1XSxbODkuNjM2ODE1MTEyMDAwMDgsMjMuMjYxNDAyMTkxMDAwMDZdLFs4OS42MzY0NTgwOTIwMDAwNSwyMy4yNjA5MDExNTgwMDAwMl0sWzg5LjYzNjIwMjQzODAwMDA1LDIzLjI2MDUzODY3NzAwMDA2XSxbODkuNjM1OTEyMDM2MDAwMDQsMjMuMjYwMDMzODQ1MDAwMDddLFs4OS42MzU4MzY0NDkwMDAwNywyMy4yNTk4NTQ3MDEwMDAwNV0sWzg5LjYzNDM4MzIwNzAwMDA0LDIzLjI1NjM0MDI3MjAwMDA1XSxbODkuNjM0MDQ5NjU0MDAwMDgsMjMuMjU1NTMyNzI1MDAwMDJdLFs4OS42MzIyOTA1OTcwMDAwNiwyMy4yNTAyNzE5MTUwMDAwNF0sWzg5LjYzMjIyMzQzNjAwMDA2LDIzLjI1MDAzMTgxNTAwMDA2XSxbODkuNjMyMTU2MTM2MDAwMDUsMjMuMjQ5NzMwNzQyMDAwMDVdLFs4OS42MzIwODY3NzgwMDAwOSwyMy4yNDk0MDAzMDcwMDAwM10sWzg5LjYzMjAzNDQwMjAwMDA0LDIzLjI0OTExNTY0MjAwMDA1XSxbODkuNjMxOTc4OTk2MDAwMDQsMjMuMjQ4NzExMjgwMDAwMDddLFs4OS42MzE5NTU1ODMwMDAwNCwyMy4yNDgzMzY5MTYwMDAwM10sWzg5LjYzMTk5ODY3NjAwMDA4LDIzLjI0NzQzOTkxNjAwMDA4XSxbODkuNjMyMDgxNjA5MDAwMDcsMjMuMjQ2Mzg0MzY2MDAwMDNdLFs4OS42MzI4Nzg3MjAwMDAwNiwyMy4yMzgzMTIzMTgwMDAwNl0sWzg5LjYzMjkyMjA1NzAwMDAzLDIzLjIzNzk5MTc0MzAwMDA3XSxbODkuNjMyOTcwMDcxMDAwMDUsMjMuMjM3NzQ4NTI2MDAwMDhdLFs4OS42MzI5ODI0NjEwMDAwNCwyMy4yMzc2ODU4ODYwMDAwN10sWzg5LjYzMzA2NjUwNjAwMDAzLDIzLjIzNzQ0NzgzNTAwMDA3XSxbODkuNjMzMDc1MTI1MDAwMDYsMjMuMjM3NDIzNTc5MDAwMDVdLFs4OS42MzMyMjk3OTIwMDAwNywyMy4yMzcxNjMxMDcwMDAwN10sWzg5LjYzMzI0Nzg5NzAwMDA1LDIzLjIzNzEzMjY2NDAwMDA2XSxbODkuNjMzNDIyMDM2MDAwMDcsMjMuMjM2OTAxMDMyMDAwMDVdLFs4OS42MzM2NzYwNjEwMDAwNywyMy4yMzY2MTA4NzAwMDAwNV0sWzg5LjYzMzk2MjE5NjAwMDA4LDIzLjIzNjMwNjY2OTAwMDA0XSxbODkuNjM1MjU2NDkyMDAwMDUsMjMuMjM0OTQzOTgzMDAwMDVdLFs4OS42MzU0NjQ3NTUwMDAwNCwyMy4yMzQ3NDE3ODUwMDAwNF0sWzg5LjYzNTk2MjMxMDAwMDA4LDIzLjIzNDMwNzA4OTAwMDAzXSxbODkuNjM2MjY3NDgwMDAwMDcsMjMuMjM0MDc1NzU4MDAwMDddLFs4OS42MzY2NjkzMzEwMDAwNiwyMy4yMzM3ODc2MjgwMDAwN10sWzg5LjYzNzU2MjY0MTAwMDA1LDIzLjIzMzI4MTAxMTAwMDAzXSxbODkuNjM4MTk0NjM2MDAwMDQsMjMuMjMyOTQwOTAyMDAwMDVdLFs4OS42Mzg1MzE3MTIwMDAwMywyMy4yMzI3Njg5MTkwMDAwMl0sWzg5LjYzODc1NjE4NzAwMDA3LDIzLjIzMjY2ODk0MjAwMDAzXSxbODkuNjM5MDk0MDE3MDAwMDUsMjMuMjMyNTU3OTMzMDAwMDddLFs4OS42MzkzOTcyMjYwMDAwOSwyMy4yMzI0ODUyMzQwMDAwMl0sWzg5LjYzOTcwMTI2MzAwMDA2LDIzLjIzMjQ0NTI4MzAwMDA2XSxbODkuNjQwNTgwMjcyMDAwMDgsMjMuMjMyMzY3MTI2MDAwMDRdLFs4OS42NDA5MzAwNTAwMDAwNywyMy4yMzIzNTYwNzAwMDAwNF0sWzg5LjY0MTI3OTEwNjAwMDA3LDIzLjIzMjM4NjIyNDAwMDA0XSxbODkuNjQxNDcwNTcwMDAwMDgsMjMuMjMyNDA3NTUwMDAwMDZdLFs4OS42NDE1OTYzODEwMDAwNiwyMy4yMzI0MjE5NTEwMDAwNV0sWzg5LjY0MTgzMzkzMzAwMDA0LDIzLjIzMjQ1NjM2NzAwMDA1XSxbODkuNjQyMDU1MjUzMDAwMDgsMjMuMjMyNTA3MTE4MDAwMDZdLFs4OS42NDIzMDc5OTQwMDAwOCwyMy4yMzI1NzQzMTIwMDAwNV0sWzg5LjY0NDU5MTY4MzAwMDA0LDIzLjIzMzIzMjEzNzAwMDA3XSxbODkuNjQ1MDcwODU5MDAwMDQsMjMuMjMzMzgxMTM4MDAwMDNdLFs4OS42NDU0NzA2MjIwMDAwNiwyMy4yMzM1MjgyNjUwMDAwN10sWzg5LjY0NTc5MjIwNDAwMDAzLDIzLjIzMzY2OTU2NzAwMDA1XSxbODkuNjQ2MjAzNjc4MDAwMDYsMjMuMjMzODk0MDY0MDAwMDNdLFs4OS42NDY1MjMwMTUwMDAwNywyMy4yMzQwNzYwMTAwMDAwMl0sWzg5LjY0Njg3MDY5MzAwMDA0LDIzLjIzNDI4NDU1NDAwMDA2XSxbODkuNjQ3NDU4MDY2MDAwMDcsMjMuMjM0NjQ0Mzc1MDAwMDddLFs4OS42NDc4MDI5MzEwMDAwNiwyMy4yMzQ4Nzc3NTIwMDAwNV0sWzg5LjY0ODIwNTY4ODAwMDA4LDIzLjIzNTE2NzE0OTAwMDA2XSxbODkuNjQ4NjUyMDA0MDAwMDQsMjMuMjM1NTA0MDY3MDAwMDJdLFs4OS42NDkzNDgyMzEwMDAwMywyMy4yMzYwNjAwMzIwMDAwN10sWzg5LjY0OTkyMjcyOTAwMDA4LDIzLjIzNjU2MDM5MzAwMDA1XSxbODkuNjUwMzE5NTE5MDAwMDUsMjMuMjM2OTE2MzkxMDAwMDJdLFs4OS42NTA3MDEwNDMwMDAwOCwyMy4yMzcyNzAwOTcwMDAwOF0sWzg5LjY1MTA1MjM1MTAwMDAzLDIzLjIzNzYxNDcwMTAwMDA0XSxbODkuNjUxNTA2MDkzMDAwMDgsMjMuMjM4MDM4NTcyMDAwMDVdLFs4OS42NTE5MzE1ODAwMDAwNSwyMy4yMzg0MDUzNTYwMDAwNF0sWzg5LjY1MjQwMDk4ODAwMDA3LDIzLjIzODc5NzY0MzAwMDA1XSxbODkuNjUyODU3OTM0MDAwMDUsMjMuMjM5MTY2NzUyMDAwMDddLFs4OS42NTQwNTIwNjMwMDAwNSwyMy4yNDAxMDA5MjgwMDAwNl0sWzg5LjY1NDk1NjM4NDAwMDA2LDIzLjI0MDY0OTQyMDAwMDA3XSxbODkuNjU1OTk5MTE3MDAwMDgsMjMuMjQxMDcwMDU0MDAwMDNdLFs4OS42NjQ5NzEwNjMwMDAwNSwyMy4yNDQ0NjEwNTkwMDAwNl0sWzg5LjY2NjU1MDI4NDAwMDA0LDIzLjI0NDg4Mzg5NDAwMDA1XSxbODkuNjY2NzE4ODIzMDAwMDUsMjMuMjQ0OTE5ODIxMDAwMDVdLFs4OS42Njg0MTU5MDcwMDAwNSwyMy4yNDQ4NzU0MjMwMDAwNV0sWzg5LjY2ODk5OTA5ODAwMDA5LDIzLjI0NDc0NTEwODAwMDA3XSxbODkuNjY5NzkwMDAyMDAwMDcsMjMuMjQ0NDk1NTM4MDAwMDJdLFs4OS42NzAzNjA2NTAwMDAwOCwyMy4yNDQyNDU1MDEwMDAwMl0sWzg5LjY3MDY3MjA3MjAwMDA2LDIzLjI0NDA2NjYyMjAwMDA1XSxbODkuNjcxNDUwMzk1MDAwMDgsMjMuMjQzNTg4OTI5MDAwMDVdLFs4OS42NzE4Nzg0MzUwMDAwNSwyMy4yNDMzMTQ4NzcwMDAwNV0sWzg5LjY3MjU3NTQzNzAwMDAzLDIzLjI0Mjg1ODQ2MzAwMDA2XSxbODkuNjczOTk1MTQxMDAwMDMsMjMuMjQxMjk1ODYwMDAwMDRdLFs4OS42ODExNzg1NTAwMDAwOCwyMy4yMzI2MzkzMzYwMDAwM10sWzg5LjY4NTM2ODk3NTAwMDA3LDIzLjIyNzQ5MzIzMDAwMDA1XSxbODkuNjg1NTU1MDAzMDAwMDUsMjMuMjI3MjI4MjUzMDAwMDhdLFs4OS42ODY1Nzk1NzkwMDAwNywyMy4yMjU0Nzk1NTgwMDAwN10sWzg5LjY4NzM1OTE5MDAwMDA1LDIzLjIyNDExNDg0MzAwMDA1XSxbODkuNjg4MDk0NzA1MDAwMDgsMjMuMjIyNTI5Mjg4MDAwMDNdLFs4OS42ODgzMDUwNjMwMDAwOSwyMy4yMjE5MDg2NzQwMDAwOF0sWzg5LjY4ODUxNTk4MTAwMDA4LDIzLjIyMTE3NzQwNDAwMDA2XSxbODkuNjg4NTQ3NDE3MDAwMDUsMjMuMjIwNTI4NzcxMDAwMDNdLFs4OS42ODg1MDMyODkwMDAwNCwyMy4yMjAxOTcyNzkwMDAwNV0sWzg5LjY4ODM4NTA1MDAwMDA4LDIzLjIxOTY4NjY3MDAwMDA0XSxbODkuNjg0MTYzOTczMDAwMDcsMjMuMjA1Mjg1NTYzMDAwMDddLFs4OS42ODE3MjIyMjcwMDAwOCwyMy4xOTk1MjUzNjgwMDAwMl0sWzg5LjY4MTYxMjAzMDAwMDA1LDIzLjE5OTI0Nzk0MDAwMDA4XSxbODkuNjgxNTc1MDE0MDAwMDMsMjMuMTk5MTQ2MjQxMDAwMDVdLFs4OS42ODE0ODA0MjUwMDAwNywyMy4xOTg4NTQ3MjkwMDAwNl0sWzg5LjY4MTM2NjE2MTAwMDA4LDIzLjE5ODQ5MDM0NjAwMDAzXSxbODkuNjgxMjg0MjI4MDAwMDQsMjMuMTk4MTQxODM4MDAwMDNdLFs4OS42NzkyNTcxNDkwMDAwOCwyMy4xODU0NTA1ODMwMDAwM10sWzg5LjY3OTIzNTU0NjAwMDA5LDIzLjE4NTI5MDc2NDAwMDA2XSxbODkuNjc5MTkzMjU0MDAwMDQsMjMuMTg0OTcxNjkyMDAwMDNdLFs4OS42NzkwMzkxMDIwMDAwNSwyMy4xODM1NDI0MzYwMDAwNF0sWzg5LjY3OTAzNDU2MzAwMDA3LDIzLjE4MzM5Njc2NjAwMDA0XSxbODkuNjc5MDMwOTA5MDAwMDYsMjMuMTgzMjY1MjEzMDAwMDNdLFs4OS42NzkwNjY4ODkwMDAwNywyMy4xODI5MDIyNjQwMDAwNl0sWzg5LjY3OTE2NDc4NDAwMDA4LDIzLjE4MTkyODAwNjAwMDA4XSxbODkuNjc5MjAyODY5MDAwMDUsMjMuMTgxNTc5MTc1MDAwMDJdLFs4OS42NzkyOTk1NzkwMDAwMywyMy4xODExMDExNzYwMDAwM10sWzg5LjY3OTM3MTMxMDAwMDA4LDIzLjE4MDg1NTczMjAwMDA1XSxbODkuNjc5NDU4MDAxMDAwMDYsMjMuMTgwNjEwMzE3MDAwMDZdLFs4OS42Nzk3MjE0NTAwMDAwNSwyMy4xNzk5OTMyMDgwMDAwNF0sWzg5LjY3OTc2NTM1MTAwMDA3LDIzLjE3OTg5MjgwMjAwMDA0XSxbODkuNjc5ODgzMTgxMDAwMDQsMjMuMTc5NjQ5MTQ0MDAwMDVdLFs4OS42ODAyMDAyNzQwMDAwNywyMy4xNzkwNzE2NjIwMDAwN10sWzg5LjY4NTkxNTQ1MDAwMDA0LDIzLjE2ODc4MjQ2MjAwMDAyXSxbODkuNjg2MjgxMTEzMDAwMDYsMjMuMTY4MTcwNjI1MDAwMDddLFs4OS42ODY1MDM5NDMwMDAwNSwyMy4xNjc3OTc4ODMwMDAwNV0sWzg5LjY4NjY5NTExOTAwMDAzLDIzLjE2NzUxMzcxNjAwMDAzXSxbODkuNjg3NjQ5NTUwMDAwMDYsMjMuMTY2MTg0MzM4MDAwMDVdLFs4OS42ODc3MTM1NjYwMDAwNywyMy4xNjYwOTUyNjIwMDAwNl0sWzg5LjY4Nzg0MDY1MjAwMDAzLDIzLjE2NTkzMDA5MTAwMDA2XSxbODkuNjg5ODEzOTk5MDAwMDgsMjMuMTYzNjExODgzMDAwMDRdLFs4OS42ODk5MDk3OTgwMDAwMywyMy4xNjM1MDcwNTkwMDAwNF0sWzg5LjY5MDMwNzg1ODAwMDA0LDIzLjE2MzEzMjQwMDAwMDA1XSxbODkuNjkwNDM1MTA0MDAwMDcsMjMuMTYzMDI3MDczMDAwMDJdLFs4OS42OTA1NjI2NTUwMDAwNiwyMy4xNjI5MjIzMTEwMDAwNV0sWzg5LjY5MDY3NDI5NTAwMDA2LDIzLjE2MjgzMjc2MzAwMDA0XSxbODkuNjkwOTI5NTY5MDAwMDUsMjMuMTYyNjgxMzkzMDAwMDddLFs4OS42OTEwNzI4OTMwMDAwNywyMy4xNjI2MjA3MDAwMDAwNV0sWzg5LjY5MTIzMjcwNDAwMDA3LDIzLjE2MjU2MDAzOTAwMDAzXSxbODkuNjkxMzYwNDIzMDAwMDUsMjMuMTYyNTE0NTU4MDAwMDVdLFs4OS42OTE2MzIwMTIwMDAwNywyMy4xNjI0MzcxNzcwMDAwN10sWzg5LjY5MTc5MTQ4MTAwMDA1LDIzLjE2MjM5MTc1ODAwMDA3XSxbODkuNjkyMjg2NjE5MDAwMDcsMjMuMTYyMjgzMTk5MDAwMDZdLFs4OS42OTQ0OTAzNzQwMDAwNSwyMy4xNjE4MzEzMDkwMDAwNF0sWzg5LjY5NDY1MDA4MjAwMDA3LDIzLjE2MTgxNDY4MjAwMDA2XSxbODkuNjk1MDE3OTQwMDAwMDcsMjMuMTYxODI2MTIwMDAwMDZdLFs4OS42OTU4MDEzMjIwMDAwOCwyMy4xNjE5NjY1MjIwMDAwNl0sWzg5LjY5NTkyOTQ4MzAwMDA0LDIzLjE2MTk5NDk5NzAwMDAyXSxbODkuNjk2MDU3MzM3MDAwMDcsMjMuMTYyMDIzNDczMDAwMDNdLFs4OS42OTYyNjUwODMwMDAwNywyMy4xNjIwOTU1NzYwMDAwN10sWzg5LjY5NjM2MDg0OTAwMDA5LDIzLjE2MjEzOTIzMzAwMDA2XSxbODkuNjk2NTUzMjY0MDAwMDQsMjMuMTYyMjQwNjYzMDAwMDNdLFs4OS42OTcwMzM0MjAwMDAwOCwyMy4xNjI1NDcwMjQwMDAwNV0sWzg5LjY5NzMzNzMxMDAwMDA4LDIzLjE2Mjc2NjY2NDAwMDA2XSxbODkuNjk3NDQ5NDYyMDAwMDcsMjMuMTYyODU0Mzg5MDAwMDddLFs4OS42OTgwNTQ2NjUwMDAwOSwyMy4xNjMzNTYzMzEwMDAwNV0sWzg5LjY5ODE0OTMxOTAwMDA0LDIzLjE2MzQ4NzQ5NTAwMDAzXSxbODkuNjk4MjEwOTEzMDAwMDgsMjMuMTYzNjU4MTE1MDAwMDNdLFs4OS42OTgyNDIyODEwMDAwMywyMy4xNjM4MjkyNDIwMDAwOF0sWzg5LjY5ODI0MzYyNTAwMDAzLDIzLjE2NDA0NjYwNzAwMDA1XSxbODkuNjk4MjMwNjcxMDAwMDMsMjMuMTY0MjQxOTI3MDAwMDNdLFs4OS42OTgxNzIzNDUwMDAwNSwyMy4xNjQ2NTYyMTUwMDAwNF0sWzg5LjY5ODEyNjcwODAwMDA3LDIzLjE2NDg1NzY4MjAwMDA1XSxbODkuNjk4MDY1NTc4MDAwMDcsMjMuMTY1MTYxMzA3MDAwMDZdLFs4OS42OTgxNjkzOTQwMDAwNSwyMy4xNjU0Mjc5ODgwMDAwM10sWzg5LjY5ODI5NzQ4OTAwMDA4LDIzLjE2NTYyNDE0MTAwMDAyXSxbODkuNzAxNjI0NjAwMDAwMDYsMjMuMTY5MTIyMzkyMDAwMDhdLFs4OS43MDE4ODIyOTcwMDAwNSwyMy4xNjkzOTIxODQwMDAwNl0sWzg5LjcwMjE1NTgzODAwMDA3LDIzLjE2OTY3NzgxNDAwMDA3XSxbODkuNzAyNTkwMjU0MDAwMDksMjMuMTcwMTE0NDg4MDAwMDJdLFs4OS43MDI5MTIwMzkwMDAwNywyMy4xNzA0MDAyMDgwMDAwNV0sWzg5LjcwMzkyNDk2MzAwMDA4LDIzLjE3MTI4NjgwODAwMDA1XSxbODkuNzA0MzU4Njc2MDAwMDgsMjMuMTcxNjMxNDUwMDAwMDZdLFs4OS43MDU0NDk5NzAwMDAwNywyMy4xNzI0MzIzNzMwMDAwNV0sWzg5LjcwNjM5NjIxMDAwMDA0LDIzLjE3MzExMTA2OTAwMDA3XSxbODkuNzEzMjg4NjA2MDAwMDUsMjMuMTc3Njg3MjQ5MDAwMDNdLFs4OS43MTM0ODA3MzEwMDAwNiwyMy4xNzc3OTgyNTYwMDAwN10sWzg5LjcxMzY3MzE2MDAwMDA0LDIzLjE3NzkwODY5OTAwMDA2XSxbODkuNzE1ODE5NTU3MDAwMDMsMjMuMTc4OTcwNjA2MDAwMDZdLFs4OS43MTU5Nzk3MDMwMDAwNywyMy4xNzkwNDQ4NTUwMDAwM10sWzg5LjcxNjMzMjAyNTAwMDA0LDIzLjE3OTIwNzUyMzAwMDA2XSxbODkuNzE2NjUyMDEyMDAwMDUsMjMuMTc5MzU0ODkwMDAwMDddLFs4OS43MTcwMDQzMzcwMDAwNSwyMy4xNzk1MTY5OTEwMDAwN10sWzg5LjcyNDI5MDQ4MjAwMDA3LDIzLjE4Mjg2NTQ0NTAwMDA2XSxbODkuNzI3MTcyNjc5MDAwMDMsMjMuMTg0MDUyMTI1MDAwMDVdLFs4OS43MzIzOTE1MDAwMDAwNiwyMy4xODYxNDgzMjgwMDAwNl0sWzg5LjczMjUwMzQ3OTAwMDA2LDIzLjE4NjE5MTk5MTAwMDA0XSxbODkuNzMyNjYzNzAzMDAwMDcsMjMuMTg2MjM1NzM0MDAwMDRdLFs4OS43MzMyODc4MzUwMDAwNiwyMy4xODYzOTU0NDEwMDAwNl0sWzg5LjczMzU5MjEyODAwMDA1LDIzLjE4NjQ2ODIyMTAwMDA0XSxbODkuNzM2ODAzMzcwMDAwMDgsMjMuMTg3MTc5MzQ2MDAwMDVdLFs4OS43Mzc1NDU5OTEwMDAwNSwyMy4xODczMzgxMDMwMDAwNl0sWzg5LjczNzkwMDM2OTAwMDA0LDIzLjE4NzQxMDM5NTAwMDAzXSxbODkuNzM4Njg2NzE1MDAwMDksMjMuMTg3NTQwNDI2MDAwMDZdLFs4OS43Mzg5MzU1MjYwMDAwMywyMy4xODc1Njg1MDMwMDAwMl0sWzg5LjczOTYxMDg2OTAwMDA1LDIzLjE4NzYyMzgyMTAwMDA1XSxbODkuNzQwOTM4NzM3MDAwMDgsMjMuMTg3NjkwOTM4MDAwMDZdLFs4OS43NTE3NDMwMDMwMDAwNiwyMy4xODc3OTQ3MjkwMDAwN10sWzg5Ljc1MjcwNjcyMTAwMDA0LDIzLjE4Nzc4ODkwNjAwMDA0XSxbODkuNzUzMDc3MTc3MDAwMDgsMjMuMTg3NzU3ODcyMDAwMDhdLFs4OS43NTM0MzExNDUwMDAwNCwyMy4xODc3MjU2ODEwMDAwN10sWzg5Ljc1MzY1NDQxODAwMDA1LDIzLjE4NzY5NDk3ODAwMDAyXSxbODkuNzUzOTM3NTk5MDAwMDQsMjMuMTg3NjMzMzE5MDAwMDRdLFs4OS43NTc0NTg4MzkwMDAwNCwyMy4xODY1MjQ4NjkwMDAwNF0sWzg5Ljc1Nzc4MzM0MjAwMDA0LDIzLjE4NjQwMzk4NjAwMDA3XSxbODkuNzU3ODkwNjAzMDAwMDgsMjMuMTg2MzU4OTg0MDAwMDRdLFs4OS43NTgwNTgwNzQwMDAwOCwyMy4xODYyODM1ODgwMDAwNF0sWzg5Ljc1ODM0NzQ4ODAwMDA4LDIzLjE4NjE0Nzk3MDAwMDA0XSxbODkuNzU4NDY4NTE3MDAwMDQsMjMuMTg2MDg3MTgyMDAwMDVdLFs4OS43NTk0MTQyNTIwMDAwNiwyMy4xODU1NDQ5NDEwMDAwNV0sWzg5Ljc1OTc0NDY4OTAwMDA2LDIzLjE4NTM0ODk3MDAwMDA2XSxbODkuNzYwMDA5Nzc1MDAwMDcsMjMuMTg1MTU0MDMxMDAwMDJdLFs4OS43NjAxODU1OTYwMDAwNCwyMy4xODUwMTgyMzYwMDAwOF0sWzg5Ljc2MTczMTkxMzAwMDA2LDIzLjE4MzgwMDUzMDAwMDA0XSxbODkuNzYxODA1NjEwMDAwMDcsMjMuMTgzNzQwMjMwMDAwMDddLFs4OS43NjE4OTM2ODIwMDAwNSwyMy4xODM2NjUyNzUwMDAwN10sWzg5Ljc2MjA5OTE5NjAwMDA3LDIzLjE4MzQ4NTQ4NjAwMDA1XSxbODkuNzYyNTY2NTM3MDAwMDUsMjMuMTgzMDQ5MjA4MDAwMDZdLFs4OS43NjI4NzAzMDEwMDAwOCwyMy4xODI3MzQ2MzAwMDAwM10sWzg5Ljc2Mjk1NzE3ODAwMDA4LDIzLjE4MjY0NDQyOTAwMDA1XSxbODkuNzYzMzkyMjc3MDAwMDQsMjMuMTgyMTM0MTM4MDAwMDRdLFs4OS43NjM3OTA1MDQwMDAwNCwyMy4xODE1Nzk3NTcwMDAwN10sWzg5Ljc2NDIzNjUyMDAwMDA1LDIzLjE4MDkzNTExMjAwMDA0XSxbODkuNzY0NDExNjE5MDAwMDQsMjMuMTgwNjgwNzQ4MDAwMDRdLFs4OS43NjQ3MTQyNDEwMDAwNCwyMy4xODAxNDE0NjIwMDAwNV0sWzg5Ljc2NDgwOTU2ODAwMDAzLDIzLjE3OTkzMTU4MTAwMDA2XSxbODkuNzY0OTM2MjMxMDAwMDQsMjMuMTc5NDM4MzI5MDAwMDVdLFs4OS43NjQ5NTE3MzEwMDAwNSwyMy4xNzkzMDM5ODMwMDAwN10sWzg5Ljc2NDk2NzU2NjAwMDA1LDIzLjE3OTE1NDM5MjAwMDA0XSxbODkuNzY0OTY3MDY4MDAwMDMsMjMuMTc4OTE1MDEwMDAwMDNdLFs4OS43NjQ5MTgwNDYwMDAwNSwyMy4xNzg2NjA4NzgwMDAwN10sWzg5Ljc2NDg4NTk0MjAwMDAzLDIzLjE3ODUxMTc3ODAwMDAzXSxbODkuNzY0ODUzODA5MDAwMDQsMjMuMTc4Mzc3OTI1MDAwMDZdLFs4OS43NjQ3NTY4NzkwMDAwNiwyMy4xNzgxMDg0NzgwMDAwN10sWzg5Ljc2NDQ2Njk0OTAwMDA1LDIzLjE3NzMzMDYxODAwMDA0XSxbODkuNzY0MzcwMjQ4MDAwMDMsMjMuMTc3MTA1NzcxMDAwMDddLFs4OS43NjQyNTc5OTgwMDAwNiwyMy4xNzY4NjYyMjEwMDAwN10sWzg5Ljc2NDA4MTE3NjAwMDA1LDIzLjE3NjUzNzM3MjAwMDA0XSxbODkuNzY0MDAwODA1MDAwMDgsMjMuMTc2NDAyMzE2MDAwMDZdLFs4OS43NjM0ODY3NzEwMDAwMywyMy4xNzU2MjQ2ODUwMDAwNl0sWzg5Ljc2MzMxMDI3MzAwMDA2LDIzLjE3NTQ2MDY5MTAwMDA3XSxbODkuNzYzMTAwNDcxMDAwMDksMjMuMTc1MzEwMTk4MDAwMDNdLFs4OS43NjI5NzQxOTIwMDAwNiwyMy4xNzUyMzc3NDIwMDAwNF0sWzg5Ljc2MjY1NDEzODAwMDA3LDIzLjE3NTEwNDU4NDAwMDA1XSxbODkuNzYyNDYxOTA5MDAwMDgsMjMuMTc1MDMwMzMzMDAwMDVdLFs4OS43NjIyNjk2ODMwMDAwNiwyMy4xNzQ5NTY2NDkwMDAwMl0sWzg5Ljc2MjA2MTg4NjAwMDA4LDIzLjE3NDg4MjM3NTAwMDA0XSxbODkuNzYxNjYyMTE0MDAwMDUsMjMuMTc0NzY0OTAyMDAwMDVdLFs4OS43NjExMzQxMzEwMDAwNiwyMy4xNzQ2MzI1NTYwMDAwNl0sWzg5Ljc2MTAwNTk0NTAwMDA4LDIzLjE3NDYwMzU2NzAwMDA4XSxbODkuNzYwNzUwMTU2MDAwMDksMjMuMTc0NTYwMjcxMDAwMDhdLFs4OS43NTY3MjAyMzgwMDAwNywyMy4xNzQxNjU2NjgwMDAwNl0sWzg5Ljc1NjU0NDM5NzAwMDA4LDIzLjE3NDE1MTg0NTAwMDA0XSxbODkuNzU2MjI0NDEwMDAwMDcsMjMuMTc0MTUzNjA4MDAwMDRdLFs4OS43NTYwNjQ3MjMwMDAwNywyMy4xNzQxNTQ0OTAwMDAwM10sWzg5Ljc1NTc2MDYxMzAwMDA2LDIzLjE3NDE1NjI3ODAwMDA1XSxbODkuNzU1NDcyOTkzMDAwMDcsMjMuMTc0MTU4MDg5MDAwMDZdLFs4OS43NTUzMTMzMDUwMDAwNywyMy4xNzQxNTk1MzYwMDAwNV0sWzg5Ljc1MTM2MzQxMDAwMDA3LDIzLjE3NDA5NjMyNTAwMDA1XSxbODkuNzQ1NzAxMjg3MDAwMDMsMjMuMTczODUxODU0MDAwMDhdLFs4OS43NDEzODIsMjMuMTczNjExMDg1MDAwMDZdLFs4OS43NDA2NTg3OTEwMDAwNCwyMy4xNzM1NTYyNjEwMDAwNF0sWzg5Ljc0MDI0NjA3MjAwMDA1LDIzLjE3MzUxMzgwMTAwMDA3XSxbODkuNzM5NzMzODQ1MDAwMDUsMjMuMTczNDU3NjI3MDAwMDZdLFs4OS43MzkzMjI2NzMwMDAwNiwyMy4xNzM0MDUwMDUwMDAwNl0sWzg5LjczODk4MTQxMTAwMDA1LDIzLjE3MzM1ODE0NTAwMDA3XSxbODkuNzM4NTE3NTE1MDAwMDcsMjMuMTczMjU2MzE3MDAwMDRdLFs4OS43Mzc2Njg0MjgwMDAwNiwyMy4xNzI5MzMwOTQwMDAwM10sWzg5LjczNzU3MjMzNjAwMDA4LDIzLjE3Mjg4OTQ2MjAwMDA2XSxbODkuNzM3NDc2MjQ2MDAwMDksMjMuMTcyODQ1MjY1MDAwMDNdLFs4OS43MzY5MzE3OTEwMDAwNywyMy4xNzI1NjQ4ODkwMDAwNl0sWzg5LjczNjU5NTE3NzAwMDA4LDIzLjE3MjMyODMzMzAwMDA1XSxbODkuNzM0OTExNjM4MDAwMDksMjMuMTcxMDg0XSxbODkuNzM0NjIzMjQyMDAwMDUsMjMuMTcwODYyNzY0MDAwMDVdLFs4OS43MzQzMDIyNDAwMDAwMywyMy4xNzA2MTA0MjAwMDAwNl0sWzg5LjczNDAxMzU5OTAwMDA0LDIzLjE3MDM1ODY5NjAwMDA1XSxbODkuNzMzNzcyNTYzMDAwMDYsMjMuMTcwMTIxMTY1MDAwMDddLFs4OS43MzM2MTIyOTEwMDAwNCwyMy4xNjk5NTc3MzEwMDAwN10sWzg5LjczMjc0NTA1ODAwMDAzLDIzLjE2ODk0NzM1OTAwMDA3XSxbODkuNzMyNTY4NDQ5MDAwMDQsMjMuMTY4NzA5MzcyMDAwMDJdLFs4OS43MzI0NzE5NTkwMDAwNywyMy4xNjg1NjA3MjQwMDAwM10sWzg5LjczMjM3NTIyNDAwMDA3LDIzLjE2ODM4MjcxNzAwMDA0XSxbODkuNzMyMjc4Nzk1MDAwMDcsMjMuMTY4MjAzNTgxMDAwMDZdLFs4OS43MzIyMzA0ODcwMDAwNCwyMy4xNjgwODQzNzQwMDAwNV0sWzg5LjczMjA4NTAxNTAwMDA1LDIzLjE2NzY5NjgyNTAwMDA2XSxbODkuNzMyMDUyODI4MDAwMDYsMjMuMTY3NjA3NTY2MDAwMDddLFs4OS43MzE2MTYyNTcwMDAwNCwyMy4xNjYzNjk4MzEwMDAwNV0sWzg5LjczMTM1NzkyODAwMDA4LDIzLjE2NTYyNDE0NjAwMDAzXSxbODkuNzMwNjI4ODQzMDAwMDMsMjMuMTYzMTg3MzA4MDAwMDNdLFs4OS43MzA0NTA1MjUwMDAwNCwyMy4xNjI1ODkxMTQwMDAwN10sWzg5LjczMDM4NTQ4MzAwMDA4LDIzLjE2MjI5MDMzODAwMDA1XSxbODkuNzMwMDU0OTY5MDAwMDQsMjMuMTU5NzkwMzgwMDAwMDZdLFs4OS43MzAwMzc4OTMwMDAwMywyMy4xNTk0NzU4NzkwMDAwN10sWzg5LjczMDAzNzAwMjAwMDA3LDIzLjE1OTMxMDQ1NzAwMDA2XSxbODkuNzMwMDY3MDY0MDAwMDgsMjMuMTU4OTM0NDk4MDAwMDZdLFs4OS43MzAxNDUwNTkwMDAwNSwyMy4xNTg1NTYzNjQwMDAwNV0sWzg5LjczMDE3NjcxNzAwMDA2LDIzLjE1ODQ1MDI3ODAwMDAzXSxbODkuNzMwNDI5NzM2MDAwMDgsMjMuMTU3ODczNzEwMDAwMDVdLFs4OS43MzA1MDg4MzMwMDAwNCwyMy4xNTc3MDcyOTUwMDAwMl0sWzg5LjczMDU1NjMzNTAwMDA3LDIzLjE1NzYxNTkxNDAwMDA4XSxbODkuNzMwNjAzODM4MDAwMDQsMjMuMTU3NTI0NTM0MDAwMDZdLFs4OS43MzE0NDM3MzMwMDAwNSwyMy4xNTYxMjI5ODcwMDAwNl0sWzg5LjczMTgyNDYwMTAwMDA4LDIzLjE1NTU3MzczNTAwMDA4XSxbODkuNzMyNjY2OTU3MDAwMDUsMjMuMTU0NjExOTkzMDAwMDZdLFs4OS43MzMxNzU5NzUwMDAwNSwyMy4xNTQwOTIzMTIwMDAwNV0sWzg5LjczNTY4NjIzODAwMDA4LDIzLjE1MTMyMjc2MTAwMDA3XSxbODkuNzM4MzA2NTM5MDAwMDYsMjMuMTQ4NDI3NDQ5MDAwMDVdLFs4OS43Mzg0MDE2ODQwMDAwNSwyMy4xNDgzMjAzMzYwMDAwNF0sWzg5LjczODQ4MDkyNjAwMDA4LDIzLjE0ODIyODQ0MDAwMDAzXSxbODkuNzM4NzUwNzk2MDAwMDMsMjMuMTQ3OTA2NTEzMDAwMDddLFs4OS43Mzg5MDkwMzYwMDAwNSwyMy4xNDc2OTE2NjkwMDAwNF0sWzg5LjczOTkzNzk2MzAwMDA1LDIzLjE0NjE3NDY0OTAwMDA1XSxbODkuNzQwMDYzODY4MDAwMDUsMjMuMTQ1OTQ1MDczMDAwMDZdLFs4OS43NDAxNTgyNzUwMDAwNiwyMy4xNDU3NDQ4MDIwMDAwMl0sWzg5Ljc0MTM4NTM3MDAwMDA1LDIzLjE0MzA3MDcwNzAwMDA1XSxbODkuNzQxNDY0MTcxMDAwMDgsMjMuMTQyODg3OTEzMDAwMDRdLFs4OS43NDE1MjcwNDIwMDAwOSwyMy4xNDI3MzU1NzgwMDAwNF0sWzg5Ljc0MTU4OTYzNDAwMDA0LDIzLjE0MjU2ODAwMjAwMDA4XSxbODkuNzQxNjIwOTQ2MDAwMDcsMjMuMTQyNDc2NTg5MDAwMDddLFs4OS43NDE2Njc2OTYwMDAwNCwyMy4xNDIyOTM3NDIwMDAwNV0sWzg5Ljc0MTg5NjAwMTAwMDA0LDIzLjE0MDU1MjM4MzAwMDA2XSxbODkuNzQxOTEwNzEwMDAwMDcsMjMuMTQwMzYzMjczMDAwMDVdLFs4OS43NDE5MDg2ODUwMDAwNiwyMy4xMzk5ODYxMjkwMDAwOF0sWzg5Ljc0MTkwNzY5NDAwMDA4LDIzLjEzOTg2NTg3MzAwMDA4XSxbODkuNzQxODc0MDkxMDAwMDYsMjMuMTM5NTU5MjQ5MDAwMDZdLFs4OS43NDE0NTI5OTMwMDAwNSwyMy4xMzY3Nzg1NjEwMDAwM10sWzg5Ljc0MTM4NzgzMDAwMDA2LDIzLjEzNjM3NzAzNzAwMDA1XSxbODkuNzQxMjk4MDcwMDAwMDgsMjMuMTM1OTA5NDE2MDAwMDZdLFs4OS43NDA3MDcwOTUwMDAwNiwyMy4xMzMzODUzMzAwMDAwN10sWzg5Ljc0MDY1MTY1NjAwMDA3LDIzLjEzMzE2Nzg3NTAwMDAzXSxbODkuNzQwNjA0MDgzMDAwMDUsMjMuMTMyOTg2MDAyMDAwMDVdLFs4OS43NDA1MDA2OTMwMDAwNiwyMy4xMzI2MjUwNjIwMDAwNV0sWzg5Ljc0MDQ0MzYyNDAwMDA4LDIzLjEzMjQ2MjM3MDAwMDA0XSxbODkuNzQwNDA4MDk2MDAwMDcsMjMuMTMyMzY1NzY4MDAwMDZdLFs4OS43NDAzNzE2NTMwMDAwNywyMy4xMzIyNjk3MjkwMDAwM10sWzg5Ljc0MDMzMzk4OTAwMDA4LDIzLjEzMjE3MzY4OTAwMDA3XSxbODkuNzQwMjY5NTg1MDAwMDgsMjMuMTMyMDE1NDk5MDAwMDNdLFs4OS43Mzk2NDUyODkwMDAwNywyMy4xMzA4MDE3NDgwMDAwN10sWzg5LjczOTU4MTExMjAwMDA1LDIzLjEzMDY4NDIwODAwMDA1XSxbODkuNzM5NDE0NDIxMDAwMDUsMjMuMTMwMzg3NTI5MDAwMDddLFs4OS43MzkyMDAyODQwMDAwNSwyMy4xMzAxNjA3NzgwMDAwNl0sWzg5LjczOTA5Mjc0NDAwMDA2LDIzLjEzMDA1NDQ1OTAwMDA2XSxbODkuNzM4ODYyNDA0MDAwMDMsMjMuMTI5ODQyMzU5MDAwMDddLFs4OS43Mzg2NjE4OTEwMDAwNSwyMy4xMjk2NzQzNDYwMDAwNl0sWzg5LjczODU2OTU1NDAwMDA0LDIzLjEyOTU5ODUzOTAwMDAzXSxbODkuNzM4MzUxODY0MDAwMDQsMjMuMTI5NDc0NTMzMDAwMDZdLFs4OS43Mzc5Nzc0MTEwMDAwMywyMy4xMjkyODc2MDEwMDAwNF0sWzg5LjczNzg2NzkyNjAwMDA0LDIzLjEyOTI0MDU1OTAwMDA0XSxbODkuNzM2NjAxMzc0MDAwMDMsMjMuMTI4NzA0OTE4MDAwMDRdLFs4OS43MzYyNDExODMwMDAwNiwyMy4xMjg1NjI2MDcwMDAwNV0sWzg5LjczNTE5MjMyOTAwMDA5LDIzLjEyODE1MDk2MjAwMDA2XSxbODkuNzMzNTE3MDI2MDAwMDcsMjMuMTI3NTAxMTMwMDAwMDRdLFs4OS43MzI3MzI1MDkwMDAwNywyMy4xMjcyNDQwNDcwMDAwM10sWzg5LjczMjI3NjEyNzAwMDAzLDIzLjEyNzEyODY2MzAwMDA2XSxbODkuNzMyMTE4MDYzMDAwMDksMjMuMTI3MTA5MTk5MDAwMDddLFs4OS43MzEzNDUyMTgwMDAwNiwyMy4xMjY5NzA2OTEwMDAwNV0sWzg5LjczMTA5MjkwMjAwMDA2LDIzLjEyNjkxOTQ0OTAwMDA3XSxbODkuNzMwNDMzMTAzMDAwMDUsMjMuMTI2NzI0NjcxMDAwMDNdLFs4OS43MzAwODg0NjAwMDAwNSwyMy4xMjY1OTc2MTUwMDAwNF0sWzg5LjcyOTUyNDg2MDAwMDA4LDIzLjEyNjM3NTg5NzAwMDA2XSxbODkuNzI4NjM2Njk4MDAwMDYsMjMuMTI1OTA5NzIzMDAwMDZdLFs4OS43MjgwMjkzNjIwMDAwOSwyMy4xMjU1ODM0NzcwMDAwOF0sWzg5LjcyNzE0MjQ5MDAwMDA2LDIzLjEyNTA4NzkzNjAwMDA2XSxbODkuNzE5NDg0OTMyMDAwMDYsMjMuMTIwMzk4NjM3MDAwMDVdLFs4OS43MTkwMTkxOTAwMDAwNCwyMy4xMjAxMDU5MjEwMDAwNl0sWzg5LjcxNjc3NDAzNjAwMDA2LDIzLjExODU0MTQwMjAwMDA2XSxbODkuNzE1NTgzMTUzMDAwMDcsMjMuMTE3NjY4Njc0MDAwMDddLFs4OS43MTU0MTQwODkwMDAwMywyMy4xMTc1MTY0OTYwMDAwNl0sWzg5LjcxNTI3NTE0NDAwMDAzLDIzLjExNzQwOTU0MDAwMDA0XSxbODkuNzE0OTUwNjI3MDAwMDYsMjMuMTE3MTY1MDU1MDAwMDRdLFs4OS43MTQ2NDA2OTQwMDAwOCwyMy4xMTY5NDk5NTQwMDAwNl0sWzg5LjcxMzg4MDg4NTAwMDA0LDIzLjExNjQ1Nzk1NjAwMDAzXSxbODkuNzEzNjE2OTQzMDAwMDMsMjMuMTE2Mjg4NjY3MDAwMDVdLFs4OS43MTMyMjc5NzYwMDAwNCwyMy4xMTYwNzE3MjYwMDAwM10sWzg5LjcxMzA4NzQxNTAwMDA3LDIzLjExNjAwODgwMTAwMDA4XSxbODkuNzA5OTkyNTY1MDAwMDUsMjMuMTE0NjcxMjk1MDAwMDVdLFs4OS43MDk0NDU1NjAwMDAwNiwyMy4xMTQ0MzU0MjMwMDAwM10sWzg5LjcwODQ3NDk1OTAwMDA2LDIzLjExNDA1NTM2MjAwMDA0XSxbODkuNzA3NzUxNDQzMDAwMDYsMjMuMTEzODczMzU3MDAwMDVdLFs4OS43MDY5NjQxNDcwMDAwNiwyMy4xMTM2OTAxMDEwMDAwM10sWzg5LjcwNjY3OTc5MjAwMDA1LDIzLjExMzY1Mjg3NjAwMDA2XSxbODkuNzA2MTg5MTQzMDAwMDcsMjMuMTEzNjA5NjIwMDAwMDNdLFs4OS43MDQ4NTk2NzQwMDAwMywyMy4xMTM0OTk4NjkwMDAwN10sWzg5LjcwNDY4NDc4MTAwMDA4LDIzLjExMzUwOTcwNDAwMDAyXSxbODkuNzA0NDE0MDMwMDAwMDcsMjMuMTEzNTMxNzc5MDAwMDNdLFs4OS43MDE2MzU4NDEwMDAwNCwyMy4xMTM5NzIwMDUwMDAwNV0sWzg5LjcwMTQ1OTY1OTAwMDA4LDIzLjExNDAxMTc1OTAwMDA1XSxbODkuNzAxMTIyODI3MDAwMDYsMjMuMTE0MTA1NDA2MDAwMDhdLFs4OS43MDA3ODU2NTcwMDAwNCwyMy4xMTQyMTQyOTYwMDAwNl0sWzg5LjcwMDUxNjU2MzAwMDA2LDIzLjExNDMxMzcxNjAwMDAzXSxbODkuNzAwMzgzMDgwMDAwMDUsMjMuMTE0MzY1NDA1MDAwMDZdLFs4OS43MDAyODY1NDkwMDAwNSwyMy4xMTQ0MDddLFs4OS42OTk5NzkxODUwMDAwNywyMy4xMTQ1NjExMTEwMDAwNl0sWzg5LjY5OTg0ODY0ODAwMDA2LDIzLjExNDY2MDIzMDAwMDAzXSxbODkuNjk5NjUxMzg0MDAwMDUsMjMuMTE0ODQ2NzMxMDAwMDZdLFs4OS42OTk1MTk1NTkwMDAwNywyMy4xMTQ5NzU3NjkwMDAwN10sWzg5LjY5OTQzNzI3MDAwMDAzLDIzLjExNTA2MTk5NDAwMDAzXSxbODkuNjk5MzcxMTg4MDAwMDQsMjMuMTE1MTM0MTM0MDAwMDddLFs4OS42OTkxNTU3ODgwMDAwNCwyMy4xMTUzNzg3NTEwMDAwNF0sWzg5LjY5ODk4OTYxODAwMDA0LDIzLjExNTU4MDU1NDAwMDA4XSxbODkuNjk4ODIzMTEwMDAwMDMsMjMuMTE1Nzk3MDM2MDAwMDZdLFs4OS42OTg3NTU3NDIwMDAwNiwyMy4xMTU4OTg1MzIwMDAwN10sWzg5LjY5ODcwNTE5MjAwMDAzLDIzLjExNTk4NTM4MTAwMDAzXSxbODkuNjk4Mjk1MDU0MDAwMDgsMjMuMTE2Nzg1MTc1MDAwMDhdLFs4OS42OTgyMjYwNjAwMDAwOCwyMy4xMTY5MzA3MDQwMDAwM10sWzg5LjY5ODA0OTc5OTAwMDA1LDIzLjExNzQxMjUxOTAwMDAzXSxbODkuNjk3OTk0MzcyMDAwMDQsMjMuMTE3NjMyMDM2MDAwMDNdLFs4OS42OTcxNzU0MjgwMDAwNCwyMy4xMjA5NDExNzAwMDAwNF0sWzg5LjY5NzExOTM1NDAwMDA1LDIzLjEyMTE3NTM2MzAwMDA4XSxbODkuNjk3MDU4NzQ0MDAwMDYsMjMuMTIxNTI3NTQ2MDAwMDRdLFs4OS42OTcwMzUzOTAwMDAwNSwyMy4xMjE3MzM1NzMwMDAwM10sWzg5LjY5NzAzMDgyMDAwMDA3LDIzLjEyMTg2NjI0MTAwMDA4XSxbODkuNjk3MDE3NDgwMDAwMDYsMjMuMTIyMjM0MzIyMDAwMDVdLFs4OS42OTY5ODc5NjUwMDAwNiwyMy4xMjI2MDE4MDgwMDAwN10sWzg5LjY5Njk0NTc5ODAwMDA2LDIzLjEyMjg5NTMwODAwMDA3XSxbODkuNjk2OTI0NDA3MDAwMDQsMjMuMTIzMDQyNjIzMDAwMDZdLFs4OS42OTY4ODc0NTMwMDAwNCwyMy4xMjMxODg3NzgwMDAwNF0sWzg5LjY5Njg1MDE5NTAwMDA4LDIzLjEyMzMzNDkzNDAwMDA3XSxbODkuNjk2NTQ0OTE4MDAwMDksMjMuMTI0MzE0NDU5MDAwMDZdLFs4OS42OTY0NTgwODMwMDAwNCwyMy4xMjQ1MTg2NjkwMDAwNV0sWzg5LjY5NjM3MTI1MDAwMDA4LDIzLjEyNDcyMjMxNjAwMDAzXSxbODkuNjk2Mjg0NzUyMDAwMDUsMjMuMTI0OTExODQ4MDAwMDddLFs4OS42OTU2ODY5NjIwMDAwOCwyMy4xMjYwNzQ4NjIwMDAwNV0sWzg5LjY5NTU1MDI0NTAwMDA1LDIzLjEyNjMzNjU2NDAwMDA0XSxbODkuNjk1MjgwNjcyMDAwMDgsMjMuMTI2NzcxMzM0MDAwMDddLFs4OS42OTUxOTY0NDMwMDAwNCwyMy4xMjY5MDE1OTAwMDAwNV0sWzg5LjY5NTEyOTM3MTAwMDA2LDIzLjEyNzAwMzA4NTAwMDA3XSxbODkuNjk1MDYxOTkzMDAwMDgsMjMuMTI3MTA0NTgwMDAwMDRdLFs4OS42OTQ2NjI1NDAwMDAwOCwyMy4xMjc2MDk2NjkwMDAwNF0sWzg5LjY5NDU0NzIxMjAwMDAzLDIzLjEyNzcyNDA1NzAwMDAyXSxbODkuNjk0NDQ5MDQyMDAwMDMsMjMuMTI3ODEwMjQ3MDAwMDddLFs4OS42OTQyMzYyMjIwMDAwOSwyMy4xMjc5ODA5MDMwMDAwNF0sWzg5LjY5NDAyNDM0ODAwMDA4LDIzLjEyODEzNzQ0NTAwMDA1XSxbODkuNjkzMTkyNzkwMDAwMDcsMjMuMTI4NzMzNzIxMDAwMDZdLFs4OS42ODk4MjIwOTAwMDAwNiwyMy4xMzEwNDQ3MjkwMDAwNV0sWzg5LjY4OTU2MTk1MDAwMDA0LDIzLjEzMTIxNDcyMTAwMDA1XSxbODkuNjg5MTg5MDg2MDAwMDYsMjMuMTMxNDI1NzA1MDAwMDNdLFs4OS42ODg0OTI1OTYwMDAwNiwyMy4xMzE4MDQyOTIwMDAwM10sWzg5LjY4ODA3MjExNTAwMDA3LDIzLjEzMjAxNDA0ODAwMDAzXSxbODkuNjg3NDI1ODQ0MDAwMDcsMjMuMTMyMzIwNDY2MDAwMDddLFs4OS42ODcwNTQ5NDAwMDAwNSwyMy4xMzI0NzI3MzIwMDAwNV0sWzg5LjY4NjcxNzA2NzAwMDA3LDIzLjEzMjU5NjI2ODAwMDA0XSxbODkuNjg2Mjk5ODM5MDAwMDcsMjMuMTMyNzE3Mzg3MDAwMDddLFs4OS42ODU5MzEyMDcwMDAwNywyMy4xMzI4MTAzNzMwMDAwNF0sWzg5LjY4NTIyNjMzMDAwMDAzLDIzLjEzMjk4Mjg1OTAwMDA0XSxbODkuNjg0ODQyMTMzMDAwMDcsMjMuMTMzMDc1MjQ4MDAwMDddLFs4OS42ODM1MTM2OTcwMDAwOCwyMy4xMzMzNjMzNDUwMDAwOF0sWzg5LjY4MzIyNjY5MDAwMDA4LDIzLjEzMzQwMDAzMjAwMDA1XSxbODkuNjgxODI0MTIzMDAwMDcsMjMuMTMzNTM4MzUyMDAwMDddLFs4OS42ODE2NjUwNzQwMDAwOCwyMy4xMzM1NDg3NTkwMDAwNl0sWzg5LjY4MTQ3NDI3OTAwMDA0LDIzLjEzMzU1Nzk3MjAwMDA2XSxbODkuNjgwNTA0NDc2MDAwMDcsMjMuMTMzNTkwNDQ5MDAwMDVdLFs4OS42ODAzOTMzNzkwMDAwNywyMy4xMzM1ODc0MDEwMDAwNl0sWzg5LjY3OTk4MjY2NzAwMDA1LDIzLjEzMzUzMjM2ODAwMDAzXSxbODkuNjc5MDk5NzI5MDAwMDksMjMuMTMzMzYwNjM2MDAwMDhdLFs4OS42Nzg4MzIxOTgwMDAwNywyMy4xMzMyOTQwMzUwMDAwNl0sWzg5LjY3ODUzMzU3MDAwMDA3LDIzLjEzMzIxMjEyODAwMDAzXSxbODkuNjc4MzYwOTI3MDAwMDksMjMuMTMzMTYzMjIyMDAwMDZdLFs4OS42Nzc2ODYyODkwMDAwNiwyMy4xMzI5MzgyNzAwMDAwN10sWzg5LjY3NzQ4Mjg4NzAwMDA1LDIzLjEzMjg1OTM3ODAwMDAzXSxbODkuNjc3MzU3ODkxMDAwMDQsMjMuMTMyNzk3MDE5MDAwMDddLFs4OS42NzY1Nzk5ODIwMDAwOCwyMy4xMzIzNjI5NTcwMDAwNV0sWzg5LjY3NTM4NjYyMzAwMDA3LDIzLjEzMTU2MzMxOTAwMDA3XSxbODkuNjc1MzA5NTQ5MDAwMDgsMjMuMTMxNTAyMTg2MDAwMDNdLFs4OS42NzUyMTY5NDIwMDAwOCwyMy4xMzE0MjYzNDEwMDAwNl0sWzg5LjY3NDc3MzAxNDAwMDA0LDIzLjEzMDk3MTUwNDAwMDA2XSxbODkuNjc0NjIwNDk3MDAwMDMsMjMuMTMwODA1MjA0MDAwMDddLFs4OS42NzQ0ODMyMDIwMDAwMywyMy4xMzA2NTQxNzcwMDAwNV0sWzg5LjY3NDMxNTQ5NzAwMDA3LDIzLjEzMDQ1NzkyMjAwMDA2XSxbODkuNjczNjMxMzU2MDAwMDQsMjMuMTI5NjI4MjcwMDAwMDddLFs4OS42NzM1NTU5MTQwMDAwOCwyMy4xMjk1MjMxMDIwMDAwNl0sWzg5LjY3MzQ5NjM0NDAwMDA2LDIzLjEyOTQxODUzMjAwMDA1XSxbODkuNjczNDM2NDY5MDAwMDgsMjMuMTI5MzEzMzk3MDAwMDNdLFs4OS42NzMzMTc2NjkwMDAwOCwyMy4xMjkwODkwMTIwMDAwN10sWzg5LjY3MzI0Mzg2MzAwMDA0LDIzLjEyODkzOTgxMDAwMDA4XSxbODkuNjczMTg0NjM0MDAwMDUsMjMuMTI4ODE5OTk2MDAwMDZdLFs4OS42NzI5MzYwNjcwMDAwOCwyMy4xMjgyMzg1MjkwMDAwNF0sWzg5LjY3Mjg5MjA2MzAwMDA2LDIzLjEyODEzMzk5MTAwMDAzXSxbODkuNjcyODQ5MDEwMDAwMDUsMjMuMTI4MDE0Nzc0MDAwMDZdLFs4OS42NzI4MjA1MzYwMDAwNywyMy4xMjc5MjU1MTIwMDAwNV0sWzg5LjY3MjY4MDE0MDAwMDA3LDIzLjEyNzQyMDQ4NjAwMDA2XSxbODkuNjcyNjUzMzAwMDAwMDQsMjMuMTI3Mjg3MTg5MDAwMDddLFs4OS42NzI1OTk2MTkwMDAwNCwyMy4xMjcwMjAwMzIwMDAwOF0sWzg5LjY3MjU4OCwyMy4xMjY5MDIwMTEwMDAwM10sWzg5LjY3MjU3NzAzMTAwMDA2LDIzLjEyNjc2ODc0ODAwMDA3XSxbODkuNjcyNTY2NDAxMDAwMDQsMjMuMTI2NjIxMzcwMDAwMDddLFs4OS42NzI1NzQzMzMwMDAwNiwyMy4xMjQyMzMyMTQwMDAwN10sWzg5LjY3MjU4NTkyMzAwMDA0LDIzLjEyMzQ4MTc4MjAwMDA2XSxbODkuNjcyNjEwMjk5MDAwMDQsMjMuMTIzMjQ2OTY3MDAwMDZdLFs4OS42NzI2NzEzMTYwMDAwNSwyMy4xMjI4Nzk1NTIwMDAwM10sWzg5LjY3MjcyMTEyMDAwMDA2LDIzLjEyMjYwNTI3MDAwMDA3XSxbODkuNjcyODA0NjIyMDAwMDYsMjMuMTIyMjc5MTE2MDAwMDddLFs4OS42NzMxODAwNzUwMDAwNiwyMy4xMjExMjQ3NjMwMDAwN10sWzg5LjY3MzIxNTQyMzAwMDA0LDIzLjEyMTAyMjY0NjAwMDAzXSxbODkuNjczMjUxMDczMDAwMDcsMjMuMTIwOTIwNTMyMDAwMDddLFs4OS42NzMzMDM5MjIwMDAwNiwyMy4xMjA3NzQ0MTYwMDAwN10sWzg5LjY3MzM3NDU3NzAwMDA2LDIzLjEyMDU4NDg2MzAwMDAzXSxbODkuNjczNjcxNTA5MDAwMDMsMjMuMTE5ODQwNzk1MDAwMDddLFs4OS42NzM3NTg3MTMwMDAwNCwyMy4xMTk2MjI0ODMwMDAwNl0sWzg5LjY3MzkxNjIzNDAwMDA1LDIzLjExOTIyODczMjAwMDA3XSxbODkuNjc0MDU1MzAxMDAwMDcsMjMuMTE4ODkzMDkzMDAwMDVdLFs4OS42NzU1MTcxNTMwMDAwNCwyMy4xMTYyNTA0ODQwMDAwM10sWzg5LjY3NTgwNTU2MDAwMDA3LDIzLjExNTc0MjM4OTAwMDA1XSxbODkuNjc1ODczMjg3MDAwMDYsMjMuMTE1NjI2MjI1MDAwMDNdLFs4OS42NzYwMDg3MzgwMDAwNiwyMy4xMTUzOTQ0NjEwMDAwNV0sWzg5LjY3NjA3Njc3MTAwMDA2LDIzLjExNTI3ODI5NzAwMDAzXSxbODkuNjc3MzIxNjc1MDAwMDMsMjMuMTEzMzUxNjc2MDAwMDRdLFs4OS42Nzc0NTYxMzYwMDAwNSwyMy4xMTMxNDg3MDEwMDAwNl0sWzg5LjY3NzgyMzg3MjAwMDAzLDIzLjExMjY0MzAyMzAwMDAzXSxbODkuNjg0NTU4NTcyMDAwMDcsMjMuMTA0NjA2MjYxMDAwMDddLFs4OS42ODU2MjM0NTEwMDAwOCwyMy4xMDMzNjI5MTgwMDAwN10sWzg5LjY4NTgyMDcxNDAwMDA0LDIzLjEwMzE3Njk5OTAwMDAzXSxbODkuNjg5NjA4NzUyMDAwMDgsMjMuMDk5ODQ1NTU1MDAwMDZdLFs4OS42OTM0NDczNjQwMDAwNiwyMy4wOTY4Njk4MDAwMDAwNF0sWzg5LjY5ODY2NjA2ODAwMDA4LDIzLjA5MzAzMTY0OTAwMDA3XSxbODkuNjk5MjgzNjQwMDAwMDMsMjMuMDkyNjM1OTI0MDAwMDRdLFs4OS42OTk3NzEzMzYwMDAwOCwyMy4wOTIzMjQ2MzgwMDAwNF0sWzg5LjY5OTkxNzA3NjAwMDA4LDIzLjA5MjI0MDIyODAwMDA0XSxbODkuNzA0ODg4ODgwMDAwMDYsMjMuMDg5NTE1ODg0MDAwMDRdLFs4OS43MDUxNDcyOTgwMDAwNCwyMy4wODkzOTA0NjUwMDAwNl0sWzg5LjcwNzcxNDIwMjAwMDAzLDIzLjA4ODIwNzM1MjAwMDA0XSxbODkuNzA5NDg4MDc3MDAwMDYsMjMuMDg3NDI5ODA1MDAwMDZdLFs4OS43MTMzNzM0NjMwMDAwNCwyMy4wODU3NjY4NjUwMDAwNF0sWzg5LjcxNzkxOTI4MTAwMDA0LDIzLjA4Mzg0MTM0ODAwMDA4XSxbODkuNzI5NDc4NzE0MDAwMDQsMjMuMDc4ODYyNzMyMDAwMDZdLFs4OS43Mjk2MDc4ODgwMDAwMywyMy4wNzg4MDcwNTkwMDAwNF0sWzg5LjcyOTk2NDAzOTAwMDA0LDIzLjA3ODYxMDYzMDAwMDA3XSxbODkuNzMxNjM4MjA3MDAwMDYsMjMuMDc3NTIwNDQ0MDAwMDddLFs4OS43MzE4OTkxNjMwMDAwNCwyMy4wNzczMjE1ODgwMDAwN10sWzg5LjczMjQ1NjMzNDAwMDA2LDIzLjA3NjgzNTI5NjAwMDA3XSxbODkuNzMyNjcsMjMuMDc2NjM0NjY1MDAwMDNdLFs4OS43MzI4ODM5OTkwMDAwOCwyMy4wNzY0MTkzNTUwMDAwNF0sWzg5LjczNDI3MDU2MTAwMDA3LDIzLjA3NDkzODUyNzAwMDAzXSxbODkuNzM0NzY1ODcxMDAwMDQsMjMuMDc0NDA2MzkwMDAwMDRdLFs4OS43MzQ5MzEyOTYwMDAwNywyMy4wNzQyMTkyMjUwMDAwNF0sWzg5LjczNTU3ODQxMDAwMDA3LDIzLjA3MzQ0MDYxNzAwMDA3XSxbODkuNzM1ODc4NTAyMDAwMDUsMjMuMDczMDM1NzQ3MDAwMDZdLFs4OS43MzYzNTI3MTEwMDAwNSwyMy4wNzIyMDg4NTUwMDAwNF0sWzg5LjczNjQwNDE2NTAwMDA3LDIzLjA3MjEwNjc1MjAwMDAyXSxbODkuNzM2NDM5MTE3MDAwMDMsMjMuMDcyMDE5Mjk4MDAwMDRdLFs4OS43MzY0NzQ0MDEwMDAwNywyMy4wNzE5MTcxNjgwMDAwM10sWzg5LjczNjQ4MDIwOTAwMDA0LDIzLjA3MTc1NTE0MTAwMDA0XSxbODkuNzM2NDQ4MDk0MDAwMDgsMjMuMDcxMzI2NTY3MDAwMDNdLFs4OS43MzYzOTM2NjcwMDAwNywyMy4wNzEwNzQ2NzEwMDAwOF0sWzg5LjczNjM1MDI3MTAwMDA1LDIzLjA3MDk1NTQ3MTAwMDA1XSxbODkuNzM2MjQ3MjgxMDAwMDMsMjMuMDcwNzMxNzIzMDAwMDVdLFs4OS43MzYwODQwNTkwMDAwNiwyMy4wNzA0MTc1NDEwMDAwNF0sWzg5LjczNjAyNDQ2NzAwMDA1LDIzLjA3MDMxMjk5MzAwMDA3XSxbODkuNzMzMDMyMzcxMDAwMDQsMjMuMDY1NzA2MDI0MDAwMDZdLFs4OS43MzE3MDczNjUwMDAwMywyMy4wNjM3MjQzNDMwMDAwNV0sWzg5LjczMDYwOTA4NTAwMDA4LDIzLjA2MjUwMDcwOTAwMDA2XSxbODkuNzMwMjI4NjQ1MDAwMDcsMjMuMDYyMDQ3ODI3MDAwMDddLFs4OS43Mjk1MTUwMjYwMDAwNiwyMy4wNjExNTkwNzcwMDAwN10sWzg5LjcyOTM2MzE4NzAwMDA1LDIzLjA2MDk2MjkwNjAwMDA0XSxbODkuNzI4OTEyNzkxMDAwMDgsMjMuMDYwMjU4MDk2MDAwMDRdLFs4OS43Mjg4MDgyMDYwMDAwNSwyMy4wNjAwNzgzNzcwMDAwMl0sWzg5LjcyODc0ODk1OTAwMDA5LDIzLjA1OTk1ODU4MzAwMDAzXSxbODkuNzI4NjQ3NjAzMDAwMDcsMjMuMDU5NjkwNzk1MDAwMDVdLFs4OS43Mjg2MDU4MzAwMDAwNSwyMy4wNTk1Mjc1NTgwMDAwN10sWzg5LjcyODU1MDc4MzAwMDA2LDIzLjA1OTI5MDMzODAwMDA0XSxbODkuNzI4NDk2MDQ0MDAwMDUsMjMuMDU5MDUyNTUyMDAwMDNdLFs4OS43Mjg0NTc0OTkwMDAwNiwyMy4wNTg4MDEyNDQwMDAwNV0sWzg5LjcyODQxMzc1MTAwMDA2LDIzLjA1ODI1NDY0OTAwMDA1XSxbODkuNzI4MzM4ODkxMDAwMDgsMjMuMDU3MjUwMTIxMDAwMDRdLFs4OS43MjgzMjk0ODQwMDAwOCwyMy4wNTcwNzI4MjUwMDAwM10sWzg5LjcyODM0MzcwNDAwMDA1LDIzLjA1NjY3NTM4MjAwMDA0XSxbODkuNzI4MzQ3NTczMDAwMDYsMjMuMDU2NTcyMDY4MDAwMDRdLFs4OS43MjgzNjkyNTAwMDAwNywyMy4wNTY0MTA2MzMwMDAwNF0sWzg5LjcyODM5MDI5MDAwMDA1LDIzLjA1NjI2Mzg3ODAwMDA0XSxbODkuNzI4NDEwNjU5MDAwMDgsMjMuMDU2MTQ2NDc5MDAwMDZdLFs4OS43Mjg0Njc2MjYwMDAwNSwyMy4wNTU4ODIzNDkwMDAwNl0sWzg5LjcyODUyNDg5NTAwMDA4LDIzLjA1NTYxODc4NTAwMDA0XSxbODkuNzI4NTc3NjU2MDAwMDgsMjMuMDU1NDcyNjQ4MDAwMDNdLFs4OS43Mjg2MTI2MTAwMDAwOCwyMy4wNTUzODUxOTcwMDAwOF0sWzg5LjcyODc4NTQ1MDAwMDAzLDIzLjA1NDk5MTk3NjAwMDA1XSxbODkuNzI4OTIzMDAyMDAwMDQsMjMuMDU0NzAwODg1MDAwMDVdLFs4OS43MjkwMDg0NjQwMDAwNiwyMy4wNTQ1MjYwMTAwMDAwN10sWzg5LjcyOTI2MDYxMTAwMDA5LDIzLjA1NDEzNTE4MjAwMDA0XSxbODkuNzI5NzI5OTU0MDAwMDUsMjMuMDUzNDM5ODUxMDAwMDZdLFs4OS43Mjk4MTMxMjkwMDAwNCwyMy4wNTMzMzg5MzMwMDAwOF0sWzg5LjcyOTk2MjAzNDAwMDA0LDIzLjA1MzE2NjQyMjAwMDA2XSxbODkuNzMwMTA5OTY2MDAwMDQsMjMuMDUzMDIyNzA3MDAwMDNdLFs4OS43MzAzMDc0MDAwMDAwNywyMy4wNTI4MzY3MjgwMDAwNV0sWzg5LjczMDY4MTI5MTAwMDA1LDIzLjA1MjU4MTYwNzAwMDA0XSxbODkuNzMwNzc4NzE1MDAwMDQsMjMuMDUyNTI1MzE1MDAwMDNdLFs4OS43MzA4OTE2OTYwMDAwNywyMy4wNTI0NjkwNDgwMDAwM10sWzg5LjczMTAwNDk4MDAwMDA4LDIzLjA1MjQxMzM0NzAwMDAzXSxbODkuNzMxNzYxNTAwMDAwMDYsMjMuMDUyMTA5MTkxMDAwMDZdLFs4OS43MzMxNzgzNTQwMDAwNywyMy4wNTE1NDM2MTQwMDAwMl0sWzg5LjczMzcwOTU0NjAwMDA2LDIzLjA1MTMzNjc0MTAwMDA2XSxbODkuNzMzODIyMTg4MDAwMDMsMjMuMDUxMjk1NzE1MDAwMDRdLFs4OS43MzQwOTM3ODQwMDAwNCwyMy4wNTEyNDM2NjYwMDAwNl0sWzg5Ljc0MTYyMjAwMjAwMDA0LDIzLjA1MDE2NDc5ODAwMDAzXSxbODkuNzQxNzY1Mzk0MDAwMDgsMjMuMDUwMTU0MzA1MDAwMDRdLFs4OS43NDE5ODcxNTIwMDAwNCwyMy4wNTAxNjAzMTMwMDAwNV0sWzg5Ljc0MjE0NTEyOTAwMDA1LDIzLjA1MDE3OTIwMjAwMDA0XSxbODkuNzQyMjg3MjQ1MDAwMDYsMjMuMDUwMTk3NTAwMDAwMDJdLFs4OS43NDI2ODA5MDEwMDAwOSwyMy4wNTAyODE3MDAwMDAwM10sWzg5Ljc0MjgwNjgyMzAwMDA4LDIzLjA1MDMxNDY1MjAwMDA1XSxbODkuNzQzMDQyNDk5MDAwMDcsMjMuMDUwMzc5OTYyMDAwMDJdLFs4OS43NDMyNzY4OTkwMDAwOCwyMy4wNTA0NzUxOTQwMDAwNl0sWzg5Ljc0MzYwNTgwNTAwMDA3LDIzLjA1MDYwMTYyOTAwMDAzXSxbODkuNzQzNzE1NTYyMDAwMDMsMjMuMDUwNjMzOTg5MDAwMDZdLFs4OS43NDM4NDExNzgwMDAwOCwyMy4wNTA2NjY5NDAwMDAwNF0sWzg5Ljc0Mzk2NzEwMDAwMDA4LDIzLjA1MDY5OTg4OTAwMDA0XSxbODkuNzQ0MTI1NzE4MDAwMDgsMjMuMDUwNzA0MDk4MDAwMDRdLFs4OS43NDQ0MjgzOTIwMDAwMywyMy4wNTA2Njg0NTQwMDAwNl0sWzg5Ljc0NDU1Njg5NDAwMDA4LDIzLjA1MDYyNzQ0NzAwMDA3XSxbODkuNzQ0Njg1MDkzMDAwMDQsMjMuMDUwNTg2NDM5MDAwMDNdLFs4OS43NDQ3ODI1MDgwMDAwNywyMy4wNTA1MzAxMzcwMDAwN10sWzg5Ljc0NDg2Mzc1NzAwMDA4LDIzLjA1MDQ3MzgxMDAwMDAzXSxbODkuNzQ2MDc2MTY3MDAwMDcsMjMuMDQ5NDE1NDY2MDAwMDNdLFs4OS43NDYxOTA3NDcwMDAwNywyMy4wNDkzMTUxNTIwMDAwOF0sWzg5Ljc0NjM4OTQ1NjAwMDAzLDIzLjA0OTA4NTEyMDAwMDAzXSxbODkuNzQ2NTg4MTY3MDAwMDgsMjMuMDQ4ODU0NTIyMDAwMDZdLFs4OS43NDY3NzAzNzcwMDAwOCwyMy4wNDg2MzgwMTIwMDAwM10sWzg5Ljc0NjgzNzY3ODAwMDA4LDIzLjA0ODUzNjQ5NDAwMDA3XSxbODkuNzQ2ODg4NDc3MDAwMDgsMjMuMDQ4NDQ5NjI5MDAwMDZdLFs4OS43NDg3NjgxNTkwMDAwNiwyMy4wNDUxNTQzMDIwMDAwN10sWzg5Ljc0OTE5MjAzMjAwMDA1LDIzLjA0NDM5ODk5MjAwMDAzXSxbODkuNzQ5NDEzMzQ5MDAwMDYsMjMuMDQzOTc3NTk1MDAwMDZdLFs4OS43NTAwNzg1NzMwMDAwNSwyMy4wNDI2ODM0ODIwMDAwM10sWzg5Ljc1MDMwMDUyMzAwMDA4LDIzLjA0MjI0Njg0MTAwMDA2XSxbODkuNzUzNzQ2ODI4MDAwMDMsMjMuMDM0NjQ0OTc0MDAwMDZdLFs4OS43NTM4Njc4MTAwMDAwMywyMy4wMzQzNjc5NDkwMDAwNl0sWzg5Ljc1NDI1NDMwNjAwMDA2LDIzLjAzMzMzMTk2NDAwMDA3XSxbODkuNzU0MzU5NzYwMDAwMDYsMjMuMDMzMDM5NjcxMDAwMDRdLFs4OS43NTQ2MDcxNjkwMDAwNSwyMy4wMzIzMzg4MzMwMDAwNF0sWzg5Ljc1NDY5NzA2NjAwMDA2LDIzLjAzMjA0NjUxNzAwMDAzXSxbODkuNzU0ODEzNjExMDAwMDMsMjMuMDMxMzUzMzgyMDAwMDhdLFs4OS43NTUwMTc4MjgwMDAwNiwyMy4wMjk3NDA2NjYwMDAwN10sWzg5Ljc1NTE1NjM0MDAwMDA0LDIzLjAyODUzNTQ4MjAwMDA1XSxbODkuNzU1Mjc5ODQxMDAwMDYsMjMuMDI2ODU4Mjc3MDAwMDNdLFs4OS43NTUzOTU5NDgwMDAwNiwyMy4wMjUyMjA1ODIwMDAwM10sWzg5Ljc1NTg1MzU4MjAwMDA0LDIzLjAyMTkyMDY5NTAwMDA2XSxbODkuNzU2NTg0NTU1MDAwMDcsMjMuMDE3MDMxMzQxMDAwMDZdLFs4OS43NTY2NjYyOTYwMDAwNSwyMy4wMTY1MTc2ODkwMDAwN10sWzg5Ljc1NzAxNDQ2NDAwMDA2LDIzLjAxNTIxNTE0ODAwMDA0XSxbODkuNzU3MDQ5Mzg5MDAwMDMsMjMuMDE1MTI3MTI2MDAwMDRdLFs4OS43NTczNjExNDgwMDAwOSwyMy4wMTQzOTg3MTgwMDAwNV0sWzg5Ljc1NzQ5ODkzMTAwMDA0LDIzLjAxNDA5MjkyMTAwMDA0XSxbODkuNzU3NzM4MjcxMDAwMDUsMjMuMDEzNjEyODIwMDAwMDVdLFs4OS43NTkxNjI4NzgwMDAwNCwyMy4wMTE0ODQyMjkwMDAwOF0sWzg5Ljc1OTQ2MzA2NzAwMDA3LDIzLjAxMTA3OTMwODAwMDAzXSxbODkuNzYxMDk1MzYxMDAwMDYsMjMuMDA4OTEyMDU2MDAwMDRdLFs4OS43NjEyNzgxMjkwMDAwNiwyMy4wMDg2ODE0MTQwMDAwMl0sWzg5Ljc2MTM3NzQ0MTAwMDA0LDIzLjAwODU2NTgyMzAwMDAzXSxbODkuNzYxNDc2NzUzMDAwMDcsMjMuMDA4NDUwNzk2MDAwMDNdLFs4OS43NjIwMjE4NDkwMDAwNiwyMy4wMDc4NDYzNzUwMDAwNF0sWzg5Ljc2MjE4NjUyMDAwMDA2LDIzLjAwNzY3Mzg1NjAwMDA1XSxbODkuNzYyNDY1MDYyMDAwMDUsMjMuMDA3NDMwMzcxMDAwMDVdLFs4OS43NjI2NjA4MDkwMDAwNywyMy4wMDcyNzM3MDkwMDAwNl0sWzg5Ljc2Mjg0MDAzODAwMDA0LDIzLjAwNzE0NTgxNTAwMDA2XSxbODkuNzYzMTk3MjI0MDAwMDcsMjMuMDA2OTE5Mzg0MDAwMDddLFs4OS43NjM0ODkwNzUwMDAwNSwyMy4wMDY3MzU3NjMwMDAwNV0sWzg5Ljc2Mzc2NDQwOTAwMDAzLDIzLjAwNjU4MDkxMjAwMDA2XSxbODkuNzYzOTkwNTcxMDAwMDgsMjMuMDA2NDY4ODk1MDAwMDddLFs4OS43NjQ1MDY5ODAwMDAwOCwyMy4wMDYyMTc4NTYwMDAwM10sWzg5Ljc2NDk3Mzg4NTAwMDA3LDIzLjAwNjAyMzc2NTAwMDA3XSxbODkuNzY4NzM4NTM2MDAwMDYsMjMuMDA0NTQ3ODE5MDAwMDRdLFs4OS43NzA5NDY2MTUwMDAwNywyMy4wMDQwMTc0ODkwMDAwM10sWzg5Ljc3MTk3MDQwMzAwMDA3LDIzLjAwMzc3OTU3ODAwMDA0XSxbODkuNzczMDg5NjU1MDAwMDQsMjMuMDAzNTI5Mzc4MDAwMDVdLFs4OS43NzMyMTc0NzEwMDAwNywyMy4wMDM1MDMwMjYwMDAwM10sWzg5Ljc3MzY0ODQ4MDAwMDA4LDIzLjAwMzQyNjI5NDAwMDA2XSxbODkuNzczOTUxNjc4MDAwMDYsMjMuMDAzMzc1MzQ5MDAwMDddLFs4OS43NzQyMDY2NzEwMDAwNiwyMy4wMDMzMzc4ODQwMDAwOF0sWzg5Ljc3NzA0MTMwMTAwMDA1LDIzLjAwMzAzMDgxMTAwMDAzXSxbODkuNzc4ODU1Njc0MDAwMDYsMjMuMDAyODU4MzMwMDAwMDRdLFs4OS43ODA2NTY3NDYwMDAwMywyMy4wMDI2MTE4NDkwMDAwNl0sWzg5Ljc4MzQ2NzkzOTAwMDA1LDIzLjAwMjA2ODA2NDAwMDA3XSxbODkuNzgzNzA3NzA1MDAwMDQsMjMuMDAyMDE1MzE5MDAwMDddLFs4OS43ODQxNDAzMDAwMDAwNSwyMy4wMDE4OTM5NTcwMDAwNV0sWzg5Ljc4NjMzNTYxMzAwMDA2LDIzLjAwMTI3NDc1MzAwMDA4XSxbODkuNzg2ODMyNTg3MDAwMDUsMjMuMDAxMTI1ODA2MDAwMDZdLFs4OS43ODc0NTgwMDQwMDAwOSwyMy4wMDA5MzYzODAwMDAwNF0sWzg5Ljc5MDMzMjY1NjAwMDAzLDIyLjk5OTkzNjkyOTAwMDA2XSxbODkuNzkwNTQxOTcwMDAwMDUsMjIuOTk5ODU0MjExMDAwMDddLFs4OS43OTA3NTE2MTAwMDAwOSwyMi45OTk3NTYyNTAwMDAwOF0sWzg5Ljc5NDg2NzI2OTAwMDA2LDIyLjk5Nzc1ODQ1ODAwMDA4XSxbODkuNzk0OTY0NjI2MDAwMDgsMjIuOTk3NzAyMTIzMDAwMDddLFs4OS43OTUwNjE2NzgwMDAwOCwyMi45OTc2NDU3OTAwMDAwNF0sWzg5Ljc5NTUxNTgzODAwMDA5LDIyLjk5NzM2Mjk1MTAwMDA3XSxbODkuNzk1NzkyMDc1MDAwMDcsMjIuOTk3MTc4Njg2MDAwMDRdLFs4OS43OTU4NzMyNzEwMDAwNiwyMi45OTcxMjE3NjcwMDAwN10sWzg5Ljc5NjEwMTk0MTAwMDA3LDIyLjk5NjkzNjMxMDAwMDAyXSxbODkuNzk2NTEwNzUzMDAwMDYsMjIuOTk2NTkzNTYzMDAwMDNdLFs4OS43OTY4MjI1MTAwMDAwOCwyMi45OTYzMDcxNTAwMDAwNl0sWzg5Ljc5Njk1NDQ1NjAwMDA0LDIyLjk5NjE2Mjc4MzAwMDA1XSxbODkuNzk3MDU4OTQyMDAwMDQsMjIuOTk2MDI2ODUxMDAwMDddLFs4OS43OTcxMzkwNjMwMDAwMywyMi45OTU4NzI4MTkwMDAwNl0sWzg5Ljc5NzE3NDU4NzAwMDA5LDIyLjk5NTc3MDY3MzAwMDA0XSxbODkuNzk3MTg3NjM4MDAwMDgsMjIuOTk1NDAyNTc2MDAwMDZdLFs4OS43OTcxMzM3NjAwMDAwNywyMi45OTUxMzYwMTgwMDAwNF0sWzg5Ljc5NzEwNjE5MDAwMDA4LDIyLjk5NTAxNzQxODAwMDAzXSxbODkuNzk3MDIyMTkzMDAwMDMsMjIuOTk0NzA1NjU1MDAwMDhdLFs4OS43OTY5OTM5OTEwMDAwOCwyMi45OTQ2MDExNjkwMDAwOF0sWzg5Ljc5Njg5MzUwNjAwMDA2LDIyLjk5NDMwNDA2NTAwMDA1XSxbODkuNzk2Nzc1MjUwMDAwMDUsMjIuOTk0MDY1MDkxMDAwMDRdLFs4OS43OTY3MDAxMTIwMDAwNSwyMi45OTM5NDQ3MzUwMDAwN10sWzg5Ljc5NjYyNDY1MTAwMDA2LDIyLjk5MzgzOTYyNDAwMDAzXSxbODkuNzk2NDI2NDg3MDAwMDgsMjIuOTkzNjEzNTMyMDAwMDRdLFs4OS43OTUxNTMyMDAwMDAwNywyMi45OTE5NTc2MzMwMDAwM10sWzg5Ljc5NDA2MzIwMjAwMDA3LDIyLjk5MDQ5OTAwNjAwMDA1XSxbODkuNzkzOTExOTgwMDAwMDgsMjIuOTkwMjg4MjE2MDAwMDddLFs4OS43OTM3OTM3MzEwMDAwNSwyMi45OTAwNDkyMzgwMDAwNF0sWzg5Ljc5MzcwNjU2MTAwMDA4LDIyLjk4OTgyNjExMDAwMDAyXSxbODkuNzkzNTUwMzIzMDAwMDMsMjIuOTg5MzA1OTE2MDAwMDNdLFs4OS43OTMzNTMxOTMwMDAwOSwyMi45ODg2MDc4MjIwMDAwNl0sWzg5Ljc5Mjk1MDQxMzAwMDA5LDIyLjk4NzAwNDk4MDAwMDA1XSxbODkuNzkyOTEzMzYwMDAwMDYsMjIuOTg2NzA5MDg1MDAwMDNdLFs4OS43OTI0NDk5MjYwMDAwNywyMi45ODE5MDU0NzkwMDAwM10sWzg5Ljc5MjQ0NDY1MTAwMDA0LDIyLjk4MTE2ODExMzAwMDAyXSxbODkuNzkyNDQ5NzU0MDAwMDcsMjIuOTgxMDIxMzI1MDAwMDNdLFs4OS43OTI0NzI2OTUwMDAwNywyMi45ODAzNzMyMDEwMDAwOF0sWzg5Ljc5MjUxNTU0NzAwMDA1LDIyLjk4MDA2NDQyNDAwMDAzXSxbODkuNzkyNTg5Nzk4MDAwMDUsMjIuOTc5NzU2ODE4MDAwMDZdLFs4OS43OTI2NjM3MjQwMDAwOCwyMi45Nzk0NjM4OTAwMDAwM10sWzg5Ljc5Mjc2OTM1NzAwMDA1LDIyLjk3OTE3MjEzMzAwMDA4XSxbODkuNzkyODM4NTAzMDAwMDQsMjIuOTc5MDExODc5MDAwMDRdLFs4OS43OTI5MDY2OTMwMDAwOCwyMi45Nzg4ODA5ODIwMDAwOF0sWzg5Ljc5MzI2MzUxMzAwMDA2LDIyLjk3ODIxMjQwNDAwMDAzXSxbODkuNzkzMzMxMDY5MDAwMDMsMjIuOTc4MDk2MTg2MDAwMDddLFs4OS43OTMzOTg2MjYwMDAwNiwyMi45Nzc5Nzk5NjcwMDAwN10sWzg5Ljc5MzUzMjE0NTAwMDA5LDIyLjk3Nzc5MjEzMTAwMDA2XSxbODkuNzkzNzY1NTYxMDAwMDQsMjIuOTc3NDc0MDA0MDAwMDRdLFs4OS43OTM4NjUxNTAwMDAwNCwyMi45NzczNDM3MTIwMDAwNV0sWzg5Ljc5NDE2MjkzNDAwMDA0LDIyLjk3Njk5ODAwMzAwMDA2XSxbODkuNzk0Mjc4NjgxMDAwMDQsMjIuOTc2ODY4Mjk2MDAwMDhdLFs4OS43OTQ2MjU2MTUwMDAwOSwyMi45NzY0Nzk3NDEwMDAwNV0sWzg5Ljc5NDgzNzEzNTAwMDA4LDIyLjk3NjMyMzA1NzAwMDA2XSxbODkuNzk3ODQ1Nzc3MDAwMDgsMjIuOTc0MjIxNTQ5MDAwMDVdLFs4OS44MDAzMTAxNzkwMDAwNiwyMi45NzI3MDk4NjUwMDAwN10sWzg5LjgwMDQyMzY5NjAwMDA1LDIyLjk3MjYzOTQzNDAwMDAzXSxbODkuODAwNzE1NzI3MDAwMDcsMjIuOTcyNDU1NzQ1MDAwMDVdLFs4OS44MDA5NzU0MjMwMDAwNywyMi45NzIyODU1NjMwMDAwN10sWzg5LjgwMTI4NDg5OTAwMDA1LDIyLjk3MjA1Nzg1NTAwMDA2XSxbODkuODAxNDQ4NTE4MDAwMDksMjIuOTcxOTE1MjE4MDAwMDVdLFs4OS44MDE1OTcyNDIwMDAwNywyMi45NzE3NDIwNzIwMDAwNF0sWzg5LjgwMTY5NjQ5NDAwMDA1LDIyLjk3MTYyNjQ1NTAwMDAzXSxbODkuODAxNzc5ODkxMDAwMDgsMjIuOTcxNTEwODE3MDAwMDJdLFs4OS44MDE4NDcxMTEwMDAwOSwyMi45NzE0MDk4MzkwMDAwNV0sWzg5LjgwNDM1NzkxNDAwMDA0LDIyLjk2NzI0NTY4MDAwMDA4XSxbODkuODA0NDI1NzgzMDAwMDYsMjIuOTY3MTE0Nzc4MDAwMDVdLFs4OS44MDQ1Mjg4MzYwMDAwMywyMi45NjY4OTY0MDYwMDAwNV0sWzg5LjgwNTIyMzYxNzAwMDA4LDIyLjk2NTE4OTkyNjAwMDA1XSxbODkuODA1MjU4NDk1MDAwMDMsMjIuOTY1MTAyNDU1MDAwMDhdLFs4OS44MDU1MjAxMDcwMDAwNiwyMi45NjQ0MzE0NzMwMDAwNV0sWzg5LjgwNTU3MzA1NTAwMDA4LDIyLjk2NDI4NTMwNzAwMDA3XSxbODkuODA1NjA4ODkxMDAwMDgsMjIuOTY0MTY4NDc5MDAwMDJdLFs4OS44MDU2NDQ3MjUwMDAwNCwyMi45NjQwNTE2NTIwMDAwMl0sWzg5LjgwNjExMTg1OTAwMDA1LDIyLjk2MjA1OTIwMzAwMDAyXSxbODkuODA2MjA4MjcxMDAwMDYsMjIuOTYxNTc0ODk2MDAwMDZdLFs4OS44MDY0MDQwMjEwMDAwNSwyMi45NTkxOTE5NzcwMDAwNV0sWzg5LjgwNjQxOTU4NzAwMDA1LDIyLjk1ODc1MDQ4MzAwMDA3XSxbODkuODA2MzkzNjIyMDAwMDMsMjIuOTU4MTQ1MjAzMDAwMDddLFs4OS44MDYyNDA5NzIwMDAwNywyMi45NTU3MzgxNDQwMDAwN10sWzg5LjgwNjIwMTk4NjAwMDA4LDIyLjk1NTUwMTUzMDAwMDA1XSxbODkuODA2MTQ1ODg4MDAwMDYsMjIuOTU1MjkzNjkyMDAwMDVdLFs4OS44MDYwNjA2MzIwMDAwOCwyMi45NTUwMTEyODkwMDAwM10sWzg5LjgwNTkzMTMwNDAwMDA3LDIyLjk1NDYzOTA2MTAwMDAyXSxbODkuODA0MjQ0MTU3MDAwMDgsMjIuOTQ5OTA2MjM3MDAwMDVdLFs4OS44MDM1MzczOTAwMDAwMywyMi45NDc5MjcwMTcwMDAwNF0sWzg5LjgwMzI2MTY0OTAwMDA0LDIyLjk0NzIxMTg5NjAwMDA2XSxbODkuODAyNTkwNjg5MDAwMDYsMjIuOTQ1NTcyNjA0MDAwMDZdLFs4OS44MDIwNDMzMzAwMDAwNiwyMi45NDQ0NjcwMDUwMDAwNF0sWzg5LjgwMTkwNzAzODAwMDA4LDIyLjk0NDI4NjcyOTAwMDA1XSxbODkuODAxNzg1OTY2MDAwMDcsMjIuOTQ0MTIxMTUxMDAwMDVdLFs4OS44MDE1OTA0MDkwMDAwOCwyMi45NDM4MjExMDYwMDAwM10sWzg5LjgwMTEyNjcxNjAwMDA2LDIyLjk0MzA0MTk0NjAwMDA1XSxbODkuODAxMDk4MTk0MDAwMDgsMjIuOTQyOTUyNzA0MDAwMDVdLFs4OS44MDA5MjgzNDkwMDAwNiwyMi45NDIzNzM3ODAwMDAwM10sWzg5LjgwMDkwMDQ1OTAwMDA1LDIyLjk0MjI2OTg1NzAwMDA0XSxbODkuODAwODYwMjI0MDAwMDgsMjIuOTQyMDYyMDM1MDAwMDVdLFs4OS44MDA4OTkyMzUwMDAwMywyMi45NDE4NTY1NzEwMDAwN10sWzg5LjgwMDkzODI0NDAwMDA2LDIyLjk0MTY1MTY3MjAwMDAzXSxbODkuODAwOTkzMTA0MDAwMDQsMjIuOTQxNDQ2NzkyMDAwMDJdLFs4OS44MDEwNDY3MTYwMDAwMywyMi45NDEyNTk5NzkwMDAwNV0sWzg5LjgwMTA2MTcwOTAwMDA3LDIyLjk0MTIyMTA0MDAwMDA3XSxbODkuODAxMDgyMjA4MDAwMDgsMjIuOTQxMTY4NTU3MDAwMDNdLFs4OS44MDExNDkxMDcwMDAwNywyMi45NDEwNjc1NzgwMDAwNl0sWzg5LjgwMTIzMTUzMDAwMDA1LDIyLjk0MDk4MTI5ODAwMDA1XSxbODkuODAxNTA5MjMzMDAwMDUsMjIuOTQwNzUyNDIwMDAwMDJdLFs4OS44MDE5ODEyNTYwMDAwMywyMi45NDA0MTE0MjkwMDAwNV0sWzg5LjgwMjI0MDI1ODAwMDA0LDIyLjk0MDI1NjQ4NjAwMDA3XSxbODkuODAyMzM3NTcxMDAwMDcsMjIuOTQwMTk5NTgzMDAwMDRdLFs4OS44MDI0MzQ1NzkwMDAwOCwyMi45NDAxNDMyNDQwMDAwN10sWzg5LjgwMjU0NzQzNjAwMDA1LDIyLjk0MDA4NzQ5MDAwMDA1XSxbODkuODA0ODg0NjU3MDAwMDYsMjIuOTM5MDE0ODIzMDAwMDRdLFs4OS44MDcwNDMwNjgwMDAwNCwyMi45MzgwNTQ4MjMwMDAwN10sWzg5LjgwNzYyMjgzOTAwMDAzLDIyLjkzNzgwNDg0NTAwMDA3XSxbODkuODA3OTYwNDQyMDAwMDgsMjIuOTM3NjY2MzYzMDAwMDZdLFs4OS44MDgxNjkwMTYwMDAwOCwyMi45Mzc1OTgyOTgwMDAwN10sWzg5LjgwODM3NzU5MjAwMDA2LDIyLjkzNzUzMDIzNTAwMDA1XSxbODkuODA4Njk2NDc2MDAwMDgsMjIuOTM3NDc5ODA0MDAwMDhdLFs4OS44MTA1MjMyNDYwMDAwNiwyMi45MzczODA5MzIwMDAwNV0sWzg5LjgxMTgzNzQ1MDAwMDA0LDIyLjkzNzQzMDQ4ODAwMDA4XSxbODkuODEzMzMyOTc4MDAwMDYsMjIuOTM3Mjc4NjgzMDAwMDVdLFs4OS44MTU1OTc4MDgwMDAwNiwyMi45MzY4OTY4MzgwMDAwNV0sWzg5LjgxNTk5Njg4ODAwMDA5LDIyLjkzNjgxODgyMzAwMDA3XSxbODkuODE2MTkwMjM5MDAwMDQsMjIuOTM2NzM1NDg3MDAwMDhdLFs4OS44MTYzOTk3NjIwMDAwNiwyMi45MzY2MzgwNTQwMDAwN10sWzg5LjgxNjU0NDkzNzAwMDA2LDIyLjkzNjU2ODIxMTAwMDA2XSxbODkuODE2NzA2NTkyMDAwMDYsMjIuOTM2NDgzNzA5MDAwMDddLFs4OS44MTY4ODQ3NDEwMDAwOCwyMi45MzYzNzA5OTQwMDAwN10sWzg5LjgyNTU3ODY3NzAwMDA3LDIyLjkzMDM4MDIzNjAwMDA4XSxbODkuODI1NzczOTE3MDAwMDUsMjIuOTMwMjM4MTcyMDAwMDNdLFs4OS44MjU4NTU2ODgwMDAwNSwyMi45MzAxNjY1NTgwMDAwNV0sWzg5LjgyNzIzNTYyNTAwMDA3LDIyLjkyODgwMjg2NjAwMDA3XSxbODkuODI4MDQ0NzQ3MDAwMDQsMjIuOTI3ODgwNjI3MDAwMDRdLFs4OS44MzA1OTUyNjgwMDAwOCwyMi45MjQ3OTMzMjAwMDAwNV0sWzg5LjgzMTg1NDAxMDAwMDA5LDIyLjkyMzI2NDAyODAwMDA2XSxbODkuODMxOTcxMjU0MDAwMDUsMjIuOTIzMDkwMjU3MDAwMDddLFs4OS44MzE5NDMwNDAwMDAwNiwyMi45MjI5ODYzNDAwMDAwMl0sWzg5LjgzMjA5MjkyNTAwMDA0LDIyLjkyMjc4NDM3MzAwMDA3XSxbODkuODMzODI2NjY2MDAwMDUsMjIuOTIwODI1MzQ1MDAwMDNdLFs4OS44MzQ4NjM4NjAwMDAwNCwyMi45MTk3MzIyMzIwMDAwNl0sWzg5LjgzNjc2ODM3NDAwMDAzLDIyLjkxNzg2NTk0MTAwMDA2XSxbODkuODM4MDk3NTg0MDAwMDgsMjIuOTE2Njc4ODIwMDAwMDddLFs4OS44NDAwOTQxOTcwMDAwNCwyMi45MTU0NjEzMDgwMDAwM10sWzg5Ljg0NDQwNjg4NTAwMDA3LDIyLjkxMjg0OTc5OTAwMDA3XSxbODkuODQ1OTA3MjI5MDAwMDMsMjIuOTExOTQxNjkwMDAwMDVdLFs4OS44NDY2NTI3ODcwMDAwNCwyMi45MTE1MjEyMjEwMDAwNF0sWzg5Ljg1MDgzMzg1NTAwMDA4LDIyLjkwOTIxNzY3OTAwMDA1XSxbODkuODUwOTE2NzkwMDAwMDQsMjIuOTA5MTczMTU0MDAwMDNdLFs4OS44NTEwMjgzODcwMDAwNCwyMi45MDkxMTM0MTAwMDAwM10sWzg5Ljg1MTIzODc2NTAwMDA2LDIyLjkwOTAwODU5MjAwMDA4XSxbODkuODUxNzg5MDgzMDAwMDksMjIuOTA4NzUyNzc4MDAwMDZdLFs4OS44NTIxNjEwMDMwMDAwNSwyMi45MDg2MTQyMzMwMDAwNF0sWzg5Ljg1NTAyMjg4NzAwMDA4LDIyLjkwNzYwMTcxODAwMDAyXSxbODkuODU1MzQ1OTgzMDAwMDYsMjIuOTA3NTIxODM5MDAwMDNdLFs4OS44NTU1NzIxNDgwMDAwOCwyMi45MDc0Njc4NDMwMDAwNl0sWzg5Ljg1NjE4NTA2NDAwMDA0LDIyLjkwNzM2NDUxNDAwMDA1XSxbODkuODU2NTU1OTcxMDAwMDMsMjIuOTA3MzE0MDM0MDAwMDJdLFs4OS44NTcwMjQxMjcwMDAwNSwyMi45MDcyMjI0MjYwMDAwM10sWzg5Ljg1NzE4NTk3OTAwMDA2LDIyLjkwNzE4MTkyMDAwMDAzXSxbODkuODU3NjA2MDA3MDAwMDcsMjIuOTA3MDc0NDU5MDAwMDZdLFs4OS44NTgwNzU0NDEwMDAwNCwyMi45MDY5MjM1NjYwMDAwNV0sWzg5Ljg1ODMzNDI1NTAwMDA1LDIyLjkwNjgyNjY4NTAwMDA2XSxbODkuODU4NjkwOTI4MDAwMDQsMjIuOTA2Njg4MTExMDAwMDVdLFs4OS44NTkwODA4NzYwMDAwNiwyMi45MDY0OTE0MTIwMDAwNF0sWzg5Ljg2NDA4NjgyOTAwMDA5LDIyLjkwMzgxNTYxMjAwMDA3XSxbODkuODY0MjgxOTc3MDAwMDgsMjIuOTAzNjg3NjE0MDAwMDNdLFs4OS44NjQ2MjQ3NTAwMDAwOCwyMi45MDM0MTYzMzUwMDAwM10sWzg5Ljg2NTAwMDgwOTAwMDA0LDIyLjkwMzA3MjgxMTAwMDA3XSxbODkuODY1MzYxMzY4MDAwMDQsMjIuOTAyNjg0NjczMDAwMDddLFs4OS44NjU0NjA1NTkwMDAwNCwyMi45MDI1MjU1MzgwMDAwOF0sWzg5Ljg2NTU0NTcyNDAwMDA3LDIyLjkwMjM3NDI5ODAwMDA0XSxbODkuODY1NjQzNDU3MDAwMDMsMjIuOTAyMTQ3OTc1MDAwMDVdLFs4OS44NjU3MTA2ODAwMDAwNiwyMi45MDE5NTgzMjcwMDAwNV0sWzg5Ljg2NTcyMjkyOTAwMDA3LDIyLjkwMTg5NzkyNDAwMDAyXSxbODkuODY1NzQ1NTkxMDAwMDYsMjIuOTAxNzgzMzI5MDAwMDddLFs4OS44NjU3MTgxOTMwMDAwOCwyMi45MDE0NDUxMTAwMDAwNV0sWzg5Ljg2NTU5ODg0NzAwMDA2LDIyLjkwMDcyMzQ0OTAwMDA1XSxbODkuODY1NTUzMzc0MDAwMDYsMjIuOTAwNDg2ODQyMDAwMDhdLFs4OS44NjU0ODA1NDgwMDAwNSwyMi45MDAxNzY4MTQwMDAwOF0sWzg5Ljg2NTM5MDkyMTAwMDA4LDIyLjg5OTkxMDgxMzAwMDA4XSxbODkuODY1Mjg1MTMzMDAwMDQsMjIuODk5NjU3NzgyMDAwMDhdLFs4OS44NjUyMDg4MjYwMDAwNywyMi44OTk0Nzk4NjcwMDAwM10sWzg5Ljg2NTEwMTQ1NDAwMDA3LDIyLjg5OTI4NzI0NjAwMDAzXSxbODkuODYzOTYxODE3MDAwMDcsMjIuODk3NDc2MTYzMDAwMDhdLFs4OS44NjM4MjMwNjYwMDAwNywyMi44OTcyODE4MjEwMDAwNF0sWzg5Ljg2MzU5MDg2NzAwMDA4LDIyLjg5Njk5MDI4OTAwMDAzXSxbODkuODYzNTEzMjUwMDAwMDQsMjIuODk2OTA3NzkwMDAwMDZdLFs4OS44NjMyMTczNTcwMDAwNSwyMi44OTY2MzE0NDUwMDAwM10sWzg5Ljg2MzA5MjUyNDAwMDA4LDIyLjg5NjUzNTkyMDAwMDA4XSxbODkuODYyOTE5ODY1MDAwMDQsMjIuODk2NDI2ODA0MDAwMDRdLFs4OS44NjI1NDI4NDkwMDAwOCwyMi44OTYyMjMyMjIwMDAwNl0sWzg5Ljg2MjI0NDM5MDAwMDA2LDIyLjg5NjA3NTAzNzAwMDA2XSxbODkuODYyMTAxODI5MDAwMDQsMjIuODk2MDM1OTU3MDAwMDRdLFs4OS44NjE4NjUxMjcwMDAwNCwyMi44OTU5ODQ5MzcwMDAwNF0sWzg5Ljg2MTUxNjYxMDAwMDA4LDIyLjg5NTkyMzA5MzAwMDA4XSxbODkuODU4MDg1NzY3MDAwMDMsMjIuODk1NTM0NDQzMDAwMDNdLFs4OS44NTcyOTU3NTgwMDAwOCwyMi44OTU0NTk3NzMwMDAwM10sWzg5Ljg1Njk4MDQxMDAwMDA2LDIyLjg5NTQ0MTQyMjAwMDAzXSxbODkuODU2NTc4MjA3MDAwMDQsMjIuODk1NDM5OTMwMDAwMDddLFs4OS44NTU3OTAyNTQwMDAwNiwyMi44OTU0Mzc1MjUwMDAwM10sWzg5Ljg1NTMxNzA1MjAwMDAzLDIyLjg5NTQzOTM1MzAwMDAzXSxbODkuODU0ODc3Njg1MDAwMDgsMjIuODk1NDI2NTMwMDAwMDddLFs4OS44NTQ0MDMyOTUwMDAwNSwyMi44OTU0MDAxMjUwMDAwNF0sWzg5Ljg1NDAzNDMzNzAwMDAzLDIyLjg5NTM2OTg2MzAwMDA0XSxbODkuODUzMjQzNDI2MDAwMDYsMjIuODk1MjgyNzUwMDAwMDRdLFs4OS44NTMwMzE0MTAwMDAwOSwyMi44OTUyMzI4NzAwMDAwM10sWzg5Ljg1MjgzNjE4MTAwMDA0LDIyLjg5NTE1NDIxMDAwMDA0XSxbODkuODUxMzQ2MDU1MDAwMDgsMjIuODk0NDQ2NTA3MDAwMDVdLFs4OS44NTExNTE3NjEwMDAwNCwyMi44OTQzNTI2MDIwMDAwM10sWzg5Ljg1MDk5MzQwNjAwMDA0LDIyLjg5NDI3MTE1MDAwMDA3XSxbODkuODUwMTY2MTA3MDAwMDYsMjIuODkzNzU1NDU2MDAwMDZdLFs4OS44NDk5NzE4NzYwMDAwNCwyMi44OTM2MDQ1MjUwMDAwNl0sWzg5Ljg0OTcwNjE5MjAwMDA0LDIyLjg5MzMxODU4NTAwMDAzXSxbODkuODQ5NjA2NzIyMDAwMDMsMjIuODkzMTY4ODczMDAwMDRdLFs4OS44NDkyMDIzMzQwMDAwNCwyMi44OTIzOTIxNjEwMDAwM10sWzg5Ljg0OTExMzI3MjAwMDA3LDIyLjg5MjE5ODQxOTAwMDA3XSxbODkuODQ4ODc1NTgwMDAwMDgsMjIuODkxNjc3NjMxMDAwMDVdLFs4OS44NDg3MTM2NDEwMDAwNywyMi44OTEyNTk2NzEwMDAwNl0sWzg5Ljg0ODY3MTE4MTAwMDA0LDIyLjg5MTA4MjM0NjAwMDA4XSxbODkuODQ4NjYwNzE0MDAwMDYsMjIuODkwOTA1MDUxMDAwMDZdLFs4OS44NDg2ODA2NjUwMDAwNywyMi44OTA3NzI5NTMwMDAwN10sWzg5Ljg0ODcxNTUyOTAwMDA2LDIyLjg5MDY1NjExNDAwMDAyXSxbODkuODQ4Nzk5MTkzMDAwMDUsMjIuODkwNDk1MjgzMDAwMDZdLFs4OS44NDkwMzA4MzcwMDAwNCwyMi44OTAxNDcxNDMwMDAwNF0sWzg5Ljg1MDA5ODExNjAwMDA4LDIyLjg4ODgwMjcwNzAwMDAyXSxbODkuODUwNTU2OTY0MDAwMDgsMjIuODg4MjUzNzgyMDAwMDVdLFs4OS44NTA4OTY2NjQwMDAwNiwyMi44ODc5OTY2NDIwMDAwOF0sWzg5Ljg1MTAwODg0OTAwMDA0LDIyLjg4Nzk0MDI4NzAwMDA1XSxbODkuODUxMjk2NTkyMDAwMDQsMjIuODg3ODI5MzMwMDAwMDVdLFs4OS44NTE1NTI2MzEwMDAwNiwyMi44ODc3MzI0NTgwMDAwN10sWzg5Ljg1MjE1ODg1NDAwMDA0LDIyLjg4NzU0MDQ5MzAwMDA3XSxbODkuODUyNzMyNzQ3MDAwMDYsMjIuODg3Mzc4NDIxMDAwMDVdLFs4OS44NTMyNDIwMTcwMDAwNywyMi44ODcyNDMzODYwMDAwMl0sWzg5Ljg1MzQyMjEyNzAwMDA0LDIyLjg4NzIwMzQ2NjAwMDA3XSxbODkuODU2MDI1OTM4MDAwMDcsMjIuODg2NjI5Mzg2MDAwMDRdLFs4OS44NTYzMzA2ODEwMDAwMywyMi44ODY1NzA5NDQwMDAwM10sWzg5Ljg1Njk3NDU4OTAwMDA2LDIyLjg4NjQ1OTE2ODAwMDA0XSxbODkuODU3NzcyMDI4MDAwMDYsMjIuODg2MzcyOTM1MDAwMDVdLFs4OS44NTgwMjc2NjAwMDAwNiwyMi44ODYzNjgwODIwMDAwNV0sWzg5Ljg1ODUzODYxODAwMDA3LDIyLjg4NjM1ODkzOTAwMDA1XSxbODkuODYxMzk1MzIyMDAwMDgsMjIuODg2MzQwNTY1MDAwMDddLFs4OS44NjY2MjYzMTAwMDAwNywyMi44ODY0MTIyMjYwMDAwNl0sWzg5Ljg2OTc3MjM2MjAwMDA1LDIyLjg4NjQ5NjcwMTAwMDA2XSxbODkuODY5OTg5NTczMDAwMDUsMjIuODg2NTI1NjczMDAwMDVdLFs4OS44NzAxOTU4MTQwMDAwNiwyMi44ODY1NTIzNzgwMDAwM10sWzg5Ljg3MTAwNzczMDAwMDAzLDIyLjg4NjYxNjg0MDAwMDA0XSxbODkuODcxNjc4MDA2MDAwMDgsMjIuODg2NjQxMDk0MDAwMDNdLFs4OS44NzIwOTMyNzMwMDAwOCwyMi44ODY2NTMyODYwMDAwN10sWzg5Ljg3MjU4ODY4ODAwMDA2LDIyLjg4NjY1MDg2MDAwMDAzXSxbODkuODczNTY1NTQ5MDAwMDMsMjIuODg2NTkyMzU2MDAwMDVdLFs4OS44NzQwNDY2OTUwMDAwNiwyMi44ODY1MzUxNDkwMDAwNV0sWzg5Ljg3NDcwNTgzNzAwMDA4LDIyLjg4NjQwNzUwNTAwMDAyXSxbODkuODc5MTk5MTI1MDAwMDcsMjIuODg1NTM2NDE0MDAwMDZdLFs4OS44ODAxODQwNTAwMDAwOCwyMi44ODUzMDQ1NDIwMDAwM10sWzg5Ljg4MDU4ODE1MDAwMDA1LDIyLjg4NTE5NDc0ODAwMDA2XSxbODkuODgwNzgxOTk3MDAwMDQsMjIuODg1MTExODk4MDAwMDVdLFs4OS44ODEzMzI0NTEwMDAwNSwyMi44ODQ4NzU3NDEwMDAwM10sWzg5Ljg4MTg1MTU1ODAwMDA1LDIyLjg4NDU5NzIxMzAwMDA2XSxbODkuODgyNTE2MDc3MDAwMDUsMjIuODg0MjE5OTg3MDAwMDVdLFs4OS44ODI3OTE5NjQwMDAwMywyMi44ODQwMzgzODkwMDAwN10sWzg5Ljg4MzA4NDMxNjAwMDA3LDIyLjg4Mzg0MTU1NzAwMDA0XSxbODkuODgzNTg3MzA0MDAwMDYsMjIuODgzNTIwNjY3MDAwMDNdLFs4OS44ODQ3MDYzMDUwMDAwNywyMi44ODI4ODAwOTQwMDAwM10sWzg5Ljg4NDkwMDc2ODAwMDA4LDIyLjg4Mjc4MzY4NzAwMDAzXSxbODkuODg1Mzg2OTE2MDAwMDcsMjIuODgyNTQ5MTY1MDAwMDZdLFs4OS44ODU2Nzg1NjgwMDAwNiwyMi44ODI0NTQ1MjAwMDAwN10sWzg5Ljg4NzczNDcxOTAwMDA0LDIyLjg4MTgwODk1MTAwMDA0XSxbODkuODg4MzMzNTUwMDAwMDgsMjIuODgxNjIxOTI0MDAwMDZdLFs4OS44ODg3NTUwMDcwMDAwNCwyMi44ODE1MDMwODgwMDAwNF0sWzg5Ljg4OTUxNjI0MjAwMDA3LDIyLjg4MTI5MTg5MzAwMDAzXSxbODkuODkwMTE1MzQ5MDAwMDQsMjIuODgxMTM0Nzg0MDAwMDRdLFs4OS44OTAzOTA4MjEwMDAwNCwyMi44ODEwNzAwNDQwMDAwN10sWzg5Ljg5MDg3NjE5NjAwMDA4LDIyLjg4MTAyNTIxMDAwMDA4XSxbODkuODkxMTY3Nzc5MDAwMDYsMjIuODgxMDA1MDg0MDAwMDRdLFs4OS44OTE1MjM2NDcwMDAwNCwyMi44ODA5ODYxMzAwMDAwNV0sWzg5LjkwMTcyNjI0ODAwMDA1LDIyLjg4MDc2ODYxNTAwMDAyXSxbODkuOTA3MDc2MzM4MDAwMDgsMjIuODgxMDQ3OTIyMDAwMDVdLFs4OS45MDg4MDE2MDEwMDAwNSwyMi44ODExNjQxMDAwMDAwM10sWzg5LjkwOTA2MTQ2NzAwMDA3LDIyLjg4MTE4OTA5MTAwMDA3XSxbODkuOTA5Mjc1MzI5MDAwMDgsMjIuODgxMjEyMzYyMDAwMDRdLFs4OS45MDk0NDMxODgwMDAwNywyMi44ODEyMzM5MTMwMDAwN10sWzg5LjkwOTgzOTgxODAwMDA4LDIyLjg4MTMwODY2NTAwMDA2XSxbODkuOTExNTA0NjMxMDAwMDcsMjIuODgxNjI1MjE0MDAwMDVdLFs4OS45MTMxMjg5ODAwMDAwNywyMi44ODE4NjY2MzAwMDAwNV0sWzg5LjkxMzM3NTEzOTAwMDA0LDIyLjg4MTg5MTYwNzAwMDA2XSxbODkuOTEzNjM2MjI2MDAwMDUsMjIuODgxOTE2NTkxMDAwMDVdLFs4OS45MTM5NTkxNjAwMDAwNSwyMi44ODE5NDQ0MzIwMDAwN10sWzg5LjkxNDI4MzYyNjAwMDA0LDIyLjg4MTk1ODE1ODAwMDAzXSxbODkuOTE0NjcyOTkyMDAwMDgsMjIuODgxOTYyMzE5MDAwMDJdLFs4OS45MTUwMDE3MzEwMDAwNywyMi44ODE5NjQ3NTQwMDAwMl0sWzg5LjkxNTkyMDY2NjAwMDAzLDIyLjg4MTg4Nzg5MTAwMDA4XSxbODkuOTE2MDgwMzI2MDAwMDQsMjIuODgxODY4NzgwMDAwMDVdLFs4OS45MTYzMDQ4OTUwMDAwNSwyMi44ODE4MjQ4NTkwMDAwNl0sWzg5LjkxNjg4MzU0MDAwMDA3LDIyLjg4MTcwMjA3ODAwMDA1XSxbODkuOTE5MjM1OTMzMDAwMDQsMjIuODgxMTMxMzQ4MDAwMDVdLFs4OS45MTk0NTUzMzkwMDAwOCwyMi44ODEwNTgwNjEwMDAwM10sWzg5LjkxOTU3NDE4ODAwMDA3LDIyLjg4MTAwODQzNjAwMDA2XSxbODkuOTE5NzYyNTQzMDAwMDUsMjIuODgwODg5Mzk5MDAwMDddLFs4OS45MTk4ODI2MzAwMDAwNywyMi44ODA4MTA0MTUwMDAwNF0sWzg5LjkyMDQ1NDc4NjAwMDA1LDIyLjg3OTI2MDMwMTAwMDA0XSxbODkuOTIwNTIxMDE2MDAwMDcsMjIuODc5MDU3NjQyMDAwMDhdLFs4OS45MjA2Njc1NjcwMDAwNywyMi44Nzg1MjMwMzQwMDAwN10sWzg5LjkyMDc2MzgxMTAwMDA5LDIyLjg3ODA0NDMwMTAwMDA1XSxbODkuOTIwNzYzMTAzMDAwMDcsMjIuODc3NjkzMTE3MDAwMDRdLFs4OS45MjA3NjE4MzMwMDAwOSwyMi44NzcyNTQ0MTkwMDAwNV0sWzg5LjkyMDQ3NTM3OTAwMDA0LDIyLjg3NDIzOTg1NjAwMDAzXSxbODkuOTIwMTI4NjA2MDAwMDUsMjIuODcxMjQ2MTUzMDAwMDddLFs4OS45MjAwNjQ0NTMwMDAwNywyMi44NzA1MDc2MTkwMDAwMl0sWzg5LjkyMDAxNzA0NzAwMDA0LDIyLjg2OTc4NDMzNzAwMDA2XSxbODkuOTIwMTEyODA0MDAwMDQsMjIuODY5MDkzODc0MDAwMDRdLFs4OS45MjA2NDM0OTgwMDAwNiwyMi44NjY5ODM2NTAwMDAwN10sWzg5LjkyMDg4NzA4MzAwMDA4LDIyLjg2NjE0NjQ2NDAwMDA1XSxbODkuOTIxMTIyMDUzMDAwMDMsMjIuODY1NDU1NTAzMDAwMDhdLFs4OS45MjEzNTA1MDMwMDAwNCwyMi44NjQ5NzA2MjIwMDAwNF0sWzg5LjkyMTU4NjQ3NDAwMDA0LDIyLjg2NDY0ODkxNDAwMDA0XSxbODkuOTIxODg3NjAyMDAwMDgsMjIuODY0Mzg1OTU2MDAwMDRdLFs4OS45MjIzMTAzMDgwMDAwOCwyMi44NjQwNjQ5MDIwMDAwNV0sWzg5LjkzMTQ1MDIyMTAwMDAzLDIyLjg2MDI5MjQ2MjAwMDA3XSxbODkuOTMyNzQ2OTA1MDAwMDQsMjIuODU5ODcxMjU0MDAwMDRdLFs4OS45NDE3NTQ4OTkwMDAwNSwyMi44NTY5NjQ4MzIwMDAwN10sWzg5Ljk0Mzc4MDE3NTAwMDA5LDIyLjg1NjQ5MzU1MDAwMDA0XSxbODkuOTQzODE0MjMxMDAwMDMsMjIuODU2NjQxNDg4MDAwMDRdLFs4OS45NDM2OTU3NTIwMDAwNSwyMi44NTczNDMyNTEwMDAwM10sWzg5Ljk0MzU1NzkwNjAwMDA4LDIyLjg1NzcyNjAwNjAwMDA2XSxbODkuOTQzMzI0MTE4MDAwMDgsMjIuODU4MDc5OTI5MDAwMDRdLFs4OS45NDI2MDY5MjUwMDAwNiwyMi44NTkwOTc2NTQwMDAwNF0sWzg5Ljk0MjM0MTc1MjAwMDA2LDIyLjg1OTQ2NTY4MTAwMDA3XSxbODkuOTQyMDkyMTIzMDAwMDcsMjIuODU5ODA1NDgzMDAwMDZdLFs4OS45NDE4MjYzNjEwMDAwNCwyMi44NjAxMTQ3OTAwMDAwN10sWzg5Ljk0MTUxMjQ3NDAwMDA0LDIyLjg2MDQxMDUyOTAwMDAzXSxbODkuOTQxMjYxNjY4MDAwMDQsMjIuODYwNjQ2NDQwMDAwMDRdLFs4OS45NDA5OTUwMTkwMDAwNywyMi44NjA4ODI5MTEwMDAwM10sWzg5Ljk0MDc3NTMwMjAwMDA4LDIyLjg2MTA3NDc5NTAwMDA0XSxbODkuOTQwMzUxMTIzMDAwMDgsMjIuODYxMzk5ODQ5MDAwMDddLFs4OS45NDAxNjIyMDIwMDAwNywyMi44NjE1MTgzNDUwMDAwNF0sWzg5LjkzOTg5NDk3NjAwMDA2LDIyLjg2MTY4MDI4NzAwMDA3XSxbODkuOTM5NTY0MDY2MDAwMDYsMjIuODYxODcyNjkwMDAwMDRdLFs4OS45MzkzMjc2MjIwMDAwNiwyMi44NjE5OTE3MzQwMDAwN10sWzg5LjkzODgyMzY1MzAwMDA0LDIyLjg2MjI1ODAzMzAwMDA1XSxbODkuOTM4NjE5NDgwMDAwMDYsMjIuODYyNDE5OTk2MDAwMDNdLFs4OS45Mzg1MDk3NTkwMDAwNiwyMi44NjI1Mzg1MjIwMDAwMl0sWzg5LjkzODQxNzA2NjAwMDA2LDIyLjg2MjcyOTg4NjAwMDA3XSxbODkuOTM4MzQxMzc5MDAwMDYsMjIuODYzMDM5MjU5MDAwMDZdLFs4OS45MzgyODI0MTkwMDAwNywyMi44NjM0MDY3OTYwMDAwNV0sWzg5LjkzODI3MDA4ODAwMDA4LDIyLjg2MzczMDg3MzAwMDA3XSxbODkuOTM4Mjg4NTcxMDAwMDQsMjIuODYzOTUxNjQxMDAwMDNdLFs4OS45MzgzMjM3NjgwMDAwMywyMi44NjQyNjA0OTQwMDAwNl0sWzg5LjkzODM3MzkzNDAwMDA4LDIyLjg2NDQ4MTI3MzAwMDAyXSxbODkuOTM4NDM5MDY0MDAwMDgsMjIuODY0NjEzNDE1MDAwMDZdLFs4OS45Mzg1MTk0MzUwMDAwNSwyMi44NjQ3MzAzMjAwMDAwNF0sWzg5LjkzODYzMTc5OTAwMDA2LDIyLjg2NDgzMzEyMTAwMDA2XSxbODkuOTM4ODcwODc2MDAwMDcsMjIuODY0OTY1MzMwMDAwMDhdLFs4OS45MzkxMjYxMDYwMDAwNiwyMi44NjUwODE3MzcwMDAwM10sWzg5LjkzOTI4NTEwMDAwMDA2LDIyLjg2NTE0MDUxNzAwMDA0XSxbODkuOTQwMDMwMjI4MDAwMDcsMjIuODY1MTUyNjU1MDAwMDNdLFs4OS45NDAyMDQ0ODYwMDAwOCwyMi44NjUxMzc0NzYwMDAwM10sWzg5Ljk0MDM5NDI4NTAwMDA4LDIyLjg2NTEwNzYyNTAwMDA2XSxbODkuOTQwNzA5OTM4MDAwMDUsMjIuODY0OTg5MTc2MDAwMDVdLFs4OS45NDU0MDcwODEwMDAwNCwyMi44NjI2OTQwNDQwMDAwMl0sWzg5Ljk0NTYxMTgzOTAwMDA0LDIyLjg2MjU3NTU0NzAwMDA2XSxbODkuOTQ5NTI0MDU0MDAwMDUsMjIuODU5NjA1ODg2MDAwMDVdLFs4OS45NDk4Mzc5MTIwMDAwOCwyMi44NTkzNDAwNTYwMDAwNl0sWzg5Ljk1MDA3MjU2MjAwMDA2LDIyLjg1OTA4OTQ0NTAwMDA1XSxbODkuOTUwMjkwNDkzMDAwMDcsMjIuODU4NzM0OTQxMDAwMDJdLFs4OS45NTA0NzY0MzkwMDAwNiwyMi44NTgzODIxMjIwMDAwMl0sWzg5Ljk1MTM3MzAyMDAwMDA2LDIyLjg1NjQyMjA4ODAwMDA0XSxbODkuOTUzMjgyMTU1MDAwMDcsMjIuODU0Mjk2OTIxMDAwMDddLFs4OS45NTM2OTEwMjYwMDAwNiwyMi44NTQwNDU3OTAwMDAwNF0sWzg5Ljk1Mzk0Mjk4NjAwMDA3LDIyLjg1Mzg5NzkzNzAwMDA2XSxbODkuOTU0MTY0MTU3MDAwMDQsMjIuODUzODIzNDcyMDAwMDRdLFs4OS45NTQzODUzMjkwMDAwNSwyMi44NTM3NDkwMDkwMDAwN10sWzg5Ljk1NTM2NDQyNzAwMDA2LDIyLjg1MzQ4MTA5ODAwMDAzXSxbODkuOTU1NjMzNDEwMDAwMDgsMjIuODUzNDM2MDA1MDAwMDVdLFs4OS45NTU5MTgyMzIwMDAwNCwyMi44NTMzOTE0ODAwMDAwM10sWzg5Ljk1NjY2MTgwNDAwMDA4LDIyLjg1MzMxNTQ2MjAwMDA3XSxbODkuOTYxNzQzMzcxMDAwMDcsMjIuODUyOTMwNTc0MDAwMDNdLFs4OS45NjIwNjAxNjIwMDAwNiwyMi44NTI5Mjg5NTcwMDAwN10sWzg5Ljk2MzE3MDEyMjAwMDA3LDIyLjg1MzAyODAyNDAwMDAzXSxbODkuOTYzNjEzOTIyMDAwMDQsMjIuODUzMDcxMDM1MDAwMDNdLFs4OS45NjM5NjM1OTcwMDAwMywyMi44NTMxMjg3MDUwMDAwN10sWzg5Ljk2NDI5NjgyMTAwMDA2LDIyLjg1MzE4NTgwNTAwMDA3XSxbODkuOTY3MDI5NjQzMDAwMDUsMjIuODUzNjU3ODQxMDAwMDNdLFs4OS45ODU2MzE4MjcwMDAwOCwyMi44NjE3MDM0MDgwMDAwNF0sWzg5Ljk4NjY0MzIyODAwMDA1LDIyLjg2NDM5MjE0NzAwMDA1XSxbODkuOTg5ODg0NzMxMDAwMDcsMjIuODY1NTU2MDM2MDAwMDRdLFs5MC4wMDA5NTE1MTIwMDAwOSwyMi44NjcyMzg4NzYwMDAwNF0sWzkwLjAwNDQ1NDU0NjAwMDAzLDIyLjg2NzEyMTk0MzAwMDAzXSxbOTAuMDA5MzkzMzI5MDAwMDMsMjIuODY2OTU3NDI5MDAwMDJdLFs5MC4wMDk1MzUyOTAwMDAwMywyMi44NjY5NTU3MjYwMDAwN10sWzkwLjAwOTgyMDEyODAwMDA2LDIyLjg2Njk4MTExNjAwMDAzXSxbOTAuMDA5OTYyMzk2MDAwMDUsMjIuODY2OTk0MDk0MDAwMDZdLFs5MC4wMTI2NjkxMzkwMDAwOCwyMi44NjczNzE2MjEwMDAwN10sWzkwLjAxMjg5MTIyNTAwMDAzLDIyLjg2NzQyNzUwMDAwMDA4XSxbOTAuMDEzNDMwNDQ4MDAwMDcsMjIuODY3NTY3NDc2MDAwMDNdLFs5MC4wMTQzNTA3OTAwMDAwNCwyMi44Njc4MjAzMzkwMDAwNV0sWzkwLjAxNDk3MDQ1MTAwMDA3LDIyLjg2ODAzMjU3NDAwMDA0XSxbOTAuMDE1MzM2NjQ2MDAwMDQsMjIuODY4MTg5NDk4MDAwMDVdLFs5MC4wMTU1MTE4MjMwMDAwNSwyMi44NjgyNzUzMDIwMDAwM10sWzkwLjAxNjE4MjY5NTAwMDA1LDIyLjg2ODcwNzE1ODAwMDA2XSxbOTAuMDE2MzEwNjU0MDAwMDUsMjIuODY4NzkzNTMwMDAwMDZdLFs5MC4wMTY4Mzg2NDcwMDAwNCwyMi44NjkxODM2MTUwMDAwNV0sWzkwLjAxNzE3NTMxMjAwMDA2LDIyLjg2OTQ1Nzk3ODAwMDA3XSxbOTAuMDE3Mzk5ODU5MDAwMDgsMjIuODY5NjQ2NTMxMDAwMDZdLFs5MC4wMTc2NTYzOTYwMDAwNiwyMi44Njk4NjMzMTAwMDAwM10sWzkwLjAxNzc1Mjk4MjAwMDA1LDIyLjg2OTk2NDkyOTAwMDA1XSxbOTAuMDE3ODQ5NTY3MDAwMDQsMjIuODcwMDY2NTQ4MDAwMDddLFs5MC4wMTc5MTM4NTcwMDAwNSwyMi44NzAxMzg4MDgwMDAwNF0sWzkwLjAxNzk3OTA2NDAwMDAzLDIyLjg3MDI0MDk5NDAwMDAzXSxbOTAuMDE4MjA2NjgzMDAwMDcsMjIuODcwNjA1MTQwMDAwMDddLFs5MC4wMTgyNTU0MzcwMDAwNSwyMi44NzA2OTI2NDcwMDAwNl0sWzkwLjAxODM1NDc4NjAwMDAzLDIyLjg3MDk0MDQ5ODAwMDA0XSxbOTAuMDE4NTU0NzExMDAwMDQsMjIuODcxNTEwNzI0MDAwMDddLFs5MC4wMTg1ODgyMzYwMDAwOCwyMi44NzE2MTI5MTQwMDAwMl0sWzkwLjAxODYyMTQ1NzAwMDA1LDIyLjg3MTcxNTY2ODAwMDA0XSxbOTAuMDE4NjU1OTAyMDAwMDMsMjIuODcxODYxODk1MDAwMDVdLFs5MC4wMTg2NjAyMDEwMDAwNSwyMi44NzIxMTE0NTEwMDAwMl0sWzkwLjAxODY0ODA0MTAwMDA2LDIyLjg3MjMwMjI4OTAwMDA2XSxbOTAuMDE4NjM0NjU0MDAwMDQsMjIuODcyNDM0NDA3MDAwMDddLFs5MC4wMTgzOTI5NjEwMDAwNywyMi44NzM5MDU3OTQwMDAwNV0sWzkwLjAxODM2MzczMzAwMDA2LDIyLjg3NDAzNzkxNTAwMDAzXSxbOTAuMDE4MjkwMDQ1MDAwMDcsMjIuODc0MzMyNjQ2MDAwMDNdLFs5MC4wMTgwNTI4MzAwMDAwNCwyMi44NzUxNzIyMzgwMDAwNl0sWzkwLjAxNzg3NDk5NTAwMDA2LDIyLjg3NTgwNTc0NTAwMDA0XSxbOTAuMDE3ODE3NDUzMDAwMDgsMjIuODc2MTE0NTkxMDAwMDNdLFs5MC4wMTc3MDU3NDkwMDAwNywyMi44NzY5MjM2ODEwMDAwNV0sWzkwLjAxNzcwODIwNDAwMDAzLDIyLjg3NzA1NTc5NzAwMDAzXSxbOTAuMDE3NzMwNDkxMDAwMDcsMjIuODc3NDIyMjIzMDAwMDVdLFs5MC4wMTc5MDIwMzcwMDAwNiwyMi44Nzk5MDEzNzkwMDAwNV0sWzkwLjAxNzkyMTU2MzAwMDA3LDIyLjg4MDEwNjMyODAwMDA3XSxbOTAuMDE5MjU5NjM2MDAwMDcsMjIuODg4NTc0NjU5MDAwMDNdLFs5MC4wMTkyOTM0NzQwMDAwNSwyMi44ODg2OTE1MjgwMDAwNF0sWzkwLjAyMjU2Mjk1OTAwMDA4LDIyLjg5OTEzMTczMDAwMDA4XSxbOTAuMDI2Mjc1NTA0MDAwMDcsMjIuOTA1MjY0OTk4MDAwMDZdLFs5MC4wMjc4MDg0OTgwMDAwNywyMi45MDc5MTcyMzYwMDAwNl0sWzkwLjAzMTA0NjEwMTAwMDA3LDIyLjkxMzk2ODYwMDAwMDAzXSxbOTAuMDMxMjkyNzU4MDAwMDYsMjIuOTE0NDk0MTk1MDAwMDNdLFs5MC4wMzIwNzU1NTUwMDAwNiwyMi45MTY3MDEwNjUwMDAwNF0sWzkwLjAzMjEwODc5NjAwMDA1LDIyLjkxNjgwMzI1MjAwMDAyXSxbOTAuMDMyNjUzNTk0MDAwMDcsMjIuOTE4OTU0MjcwMDAwMDNdLFs5MC4wMzI3Mzg3MDEwMDAwOCwyMi45MTkyOTA3NTYwMDAwN10sWzkwLjAzMjc4OTk1MDAwMDA1LDIyLjkxOTQ5NTY5NTAwMDAyXSxbOTAuMDMyOTI4MTU5MDAwMDUsMjIuOTIwMTM5ODc1MDAwMDddLFs5MC4wMzMzOTgwNzAwMDAwMywyMi45MjI1MjY5MDkwMDAwNl0sWzkwLjAzMzkyOTAzODAwMDA1LDIyLjkyNjQ5ODE5NzAwMDA2XSxbOTAuMDMzOTQ3NjcwMDAwMDMsMjIuOTI2NjU5MTAzMDAwMDhdLFs5MC4wMzQwMDUxMDIwMDAwNCwyMi45MjcyMDE2NzIwMDAwMl0sWzkwLjAzNDE5MDA3OTAwMDA0LDIyLjkyOTU0ODExMDAwMDA0XSxbOTAuMDQzOTAyNTgzMDAwMDMsMjIuOTMyODc0NjA0MDAwMDZdLFs5MC4wNTE1NTE4MjkwMDAwNiwyMi45MzIyMTk2MjcwMDAwNV0sWzkwLjA1NDA0Mzk2MDAwMDA2LDIyLjkzMjAxMTU5MDAwMDA2XSxbOTAuMDU0MzkxMTAwMDAwMDMsMjIuOTMxOTkyMjc1MDAwMDNdLFs5MC4wNTQ1ODAzNzAwMDAwNSwyMi45MzE5ODk5NTEwMDAwNV0sWzkwLjA1NDc2OTk0NDAwMDA0LDIyLjkzMTk4NzYyODAwMDA2XSxbOTAuMDU2NDkxOTcxMDAwMDcsMjIuOTMxOTk0OTI5MDAwMDRdLFs5MC4wNTY3NjIwNDQwMDAwNCwyMi45MzIwNzk1MjIwMDAwNF0sWzkwLjA1NzAxMjYyNzAwMDA2LDIyLjkzMjIwMDgyMTAwMDA0XSxbOTAuMDU3MDgxODQ1MDAwMDgsMjIuOTMyMjgwOTcwMDAwMDJdLFs5MC4wNTcyMTIwODAwMDAwNiwyMi45MzI0OTk0MjMwMDAwMl0sWzkwLjA1NzI2MTgxMDAwMDA2LDIyLjkzMjYxNjI3NzAwMDAyXSxbOTAuMDU3Mjk0NzY0MDAwMDYsMjIuOTMyNzAzNzc5MDAwMDZdLFs5MC4wNTczNjE5MDMwMDAwNywyMi45MzI5MDg3MDUwMDAwNV0sWzkwLjA1OTk5NDYxODAwMDA4LDIyLjk0MTE2ODk1MTAwMDA3XSxbOTAuMDU4Nzc4NDc0MDAwMDYsMjIuOTQ1NDU2NDA2MDAwMDZdLFs5MC4wNTc0NDIwNjUwMDAwMywyMi45NDY2NDc2MzQwMDAwNF0sWzkwLjA1NzM0OTE0MDAwMDA0LDIyLjk0Njc1MTU1NDAwMDA2XSxbOTAuMDU3MjcyNjg4MDAwMDcsMjIuOTQ2ODg0ODI4MDAwMDddLFs5MC4wNTcxOTYyNDEwMDAwNCwyMi45NDcwMzI3ODAwMDAwM10sWzkwLjA1NzEzNTMyNzAwMDA4LDIyLjk0NzE1MDgwMzAwMDA2XSxbOTAuMDU3MTA1MTg3MDAwMDUsMjIuOTQ3MjM5NDU2MDAwMDNdLFs5MC4wNTY5NTk0NTcwMDAwNiwyMi45NDc5MDE3ODIwMDAwM10sWzkwLjA1NjkwMTY1OTAwMDA2LDIyLjk0ODE4MTI4MDAwMDAzXSxbOTAuMDU2ODU4Nzg0MDAwMDQsMjIuOTQ4NDMxNDEyMDAwMDVdLFs5MC4wNTY3NzY0NTkwMDAwNSwyMi45NDkxMDc4MzAwMDAwNl0sWzkwLjA1Njc2Mjc5MTAwMDA0LDIyLjk0OTIyNTI3MjAwMDA0XSxbOTAuMDU2NzI0NTkzMDAwMDcsMjIuOTQ5NzI0OTU2MDAwMDddLFs5MC4wNTY3MTMxMDIwMDAwNiwyMi45NDk5NDUxNTMwMDAwNF0sWzkwLjA1NjcyODc2NDAwMDA3LDIyLjk2MTkyMzY2MzAwMDA1XSxbOTAuMDU2ODIwOTc3MDAwMDksMjIuOTY1MTk2MDM2MDAwMDddLFs5MC4wNTY4NDExOTYwMDAwNSwyMi45NjU0MzA5MDEwMDAwNV0sWzkwLjA1Njg5OTk4NjAwMDA4LDIyLjk2NjA0Njg1NzAwMDA0XSxbOTAuMDU3MTYxODc1MDAwMDgsMjIuOTY4MjU5OTg1MDAwMDNdLFs5MC4wNTcxODA1MzQwMDAwNSwyMi45Njg0MDYyMDgwMDAwM10sWzkwLjA1NzIzMzQwNTAwMDAzLDIyLjk2ODcxMzg5NTAwMDA2XSxbOTAuMDU3MjY4MjI3MDAwMDcsMjIuOTY4ODc0NzkyMDAwMDddLFs5MC4wNTczMDI0MzUwMDAwNSwyMi45NjkwMjE1NzUwMDAwNl0sWzkwLjA1NzUwMjY2NzAwMDA1LDIyLjk2OTU5MTE4MjAwMDA0XSxbOTAuMDU3NjAyNDc4MDAwMDQsMjIuOTY5ODY4OTI3MDAwMDVdLFs5MC4wNTc4MzQ0MjUwMDAwNywyMi45NzA0NTMyMDAwMDAwN10sWzkwLjA1Nzg4NDE2ODAwMDA0LDIyLjk3MDU3MDA1NDAwMDA2XSxbOTAuMDU3OTk5NTIxMDAwMDYsMjIuOTcwODMyNTQ5MDAwMDJdLFs5MC4wNTgxMzA0MTYwMDAwNCwyMi45NzEwODAzNTkwMDAwNF0sWzkwLjA1ODI0NDgzMTAwMDA4LDIyLjk3MTI4NDcwMTAwMDA2XSxbOTAuMDU4MzQxODI3MDAwMDUsMjIuOTcxNDAwOTczMDAwMDddLFs5MC4wNTg0ODU3NjUwMDAwNiwyMi45NzE0ODczMDMwMDAwNl0sWzkwLjA1ODYyNzgzNDAwMDA1LDIyLjk3MTQ4NTU1ODAwMDA0XSxbOTAuMDU4OTc1MDc1MDAwMDMsMjIuOTcxNDY2MjMyMDAwMDddLFs5MC4wNTkyNTg4OTUwMDAwOCwyMi45NzE0MzMzNzkwMDAwOF0sWzkwLjA1OTYyMTA1MzAwMDA2LDIyLjk3MTM3MDAxMDAwMDA0XSxbOTAuMDU5NzYyODA2MDAwMDQsMjIuOTcxMzM4OTAzMDAwMDZdLFs5MC4wNTk5MDQ1NTcwMDAwNCwyMi45NzEzMDcyMzIwMDAwN10sWzkwLjA2MTU1NjQ3OTAwMDA1LDIyLjk3MDkxOTI4NjAwMDAzXSxbOTAuMDYyMDc1NjE1MDAwMDgsMjIuOTcwNzk1NDM3MDAwMDVdLFs5MC4wNjI4OTM0ODgwMDAwNCwyMi45NzA1OTQxMTgwMDAwN10sWzkwLjA2MzAxOTA4MDAwMDA2LDIyLjk3MDU2MzAxNDAwMDA1XSxbOTAuMDYzMzY1MDY0MDAwMDQsMjIuOTcwNDcwMjgzMDAwMDVdLFs5MC4wNjU5NDM2MTQwMDAwNSwyMi45Njk3NzY0NzIwMDAwNF0sWzkwLjA2NjEwMDU5OTAwMDA0LDIyLjk2OTczMDY3MzAwMDA3XSxbOTAuMDY2MjI2MTc1MDAwMDUsMjIuOTY5NjcwMjA5MDAwMDddLFs5MC4wNjYzMzUyODEwMDAwOCwyMi45Njk1OTU2MzYwMDAwN10sWzkwLjA2NjQ0NDA2ODAwMDA3LDIyLjk2OTQ5MTEzOTAwMDA3XSxbOTAuMDY2NTIxMTU2MDAwMDgsMjIuOTY5NDAyNDY3MDAwMDddLFs5MC4wNjY1NjcxNDcwMDAwNiwyMi45NjkzMTM4MDYwMDAwNl0sWzkwLjA2NjU4MDgxNjAwMDA2LDIyLjk2OTIxMDQ3ODAwMDA0XSxbOTAuMDc1MzA5NzgwMDAwMDUsMjIuOTc2OTczNzMxMDAwMDRdLFs5MC4wODI3MDkzNzEwMDAwOCwyMi45ODM1OTA0OTcwMDAwMl0sWzkwLjA4ODM3OTQwNDAwMDA4LDIyLjk5MjcxMTg2NjAwMDA0XSxbOTAuMDkxMDEzMzg2MDAwMDQsMjIuOTk3ODUzODM1MDAwMDZdLFs5MC4wOTI3MzM2MjIwMDAwOCwyMy4wMDE2MDU3MDAwMDAwM10sWzkwLjA5Mjk1OTU4MDAwMDA3LDIzLjAwMjQ5MjU0NTAwMDA1XSxbOTAuMDkzNDcwMDAzMDAwMDUsMjMuMDA0MTk0NDk3MDAwMDddLFs5MC4wOTM4MTE0MDUwMDAwNSwyMy4wMDUzMjEyMjYwMDAwNF0sWzkwLjA5NDA0MDU0NTAwMDA0LDIzLjAwNTk0MTAxNDAwMDAzXSxbOTAuMDk0MTczNjcyMDAwMDcsMjMuMDA2MTg0ODM5MDAwMDddLFs5MC4wOTQ0MzMxMzUwMDAwMywyMy4wMDY1NTM5MzAwMDAwNV0sWzkwLjA5NDUzOTYzNjAwMDA0LDIzLjAwNjY1OTQ0NTAwMDAzXSxbOTAuMDk0NjgxNTE2MDAwMDQsMjMuMDA2NzcxNzE2MDAwMDZdLFs5MC4wOTQ3NzY3MDkwMDAwOSwyMy4wMDY4NDExMDMwMDAwNl0sWzkwLjA5NTEyNTkwMDAwMDA4LDIzLjAwNjg3NDIwNTAwMDAzXSxbOTAuMDk3MzI2MjMxMDAwMDcsMjMuMDA3MDI4Njk1MDAwMDNdLFs5MC4wOTc4NDkyNDIwMDAwNSwyMy4wMDcwNTgyOTYwMDAwM10sWzkwLjA5Nzk5ODY3NTAwMDA0LDIzLjAwNzA2NDk4MDAwMDA1XSxbOTAuMDk4MDI4ODY1MDAwMDYsMjMuMDA3MDY2MDkwMDAwMDJdLFs5MC4wOTg1MTkyMzcwMDAwNiwyMy4wMDcwODA0NjUwMDAwNl0sWzkwLjA5OTIwNTY3MjAwMDA0LDIzLjAwNzA2NTM1NzAwMDA0XSxbOTAuMDk5NjE0Mjk0MDAwMDUsMjMuMDA3MDQ5ODU3MDAwMDNdLFs5MC4xMDAwMzkwNjQwMDAwNCwyMy4wMDcwMTE3NjEwMDAwNl0sWzkwLjEwMDMyNTA3NDAwMDA3LDIzLjAwNjk2NjQxMzAwMDA0XSxbOTAuMTAwNDM5NDE0MDAwMDUsMjMuMDA2OTQzMTkyMDAwMDVdLFs5MC4xMDA2MTkwMDEwMDAwNCwyMy4wMDY5MDUyNTAwMDAwNV0sWzkwLjEwMTAxOTM1NzAwMDA0LDIzLjAwNjg0NDU4MzAwMDAzXSxbOTAuMTAxOTM0NzM5MDAwMDYsMjMuMDA2NzM4NDE3MDAwMDddLFs5MC4xMDYzNDI3MzgwMDAwOCwyMy4wMDYyNzU5MzkwMDAwM10sWzkwLjExMTQ3MTAzNTAwMDA4LDIzLjAwNTg2MjUxOTAwMDA2XSxbOTAuMTE2MDk1MDEzMDAwMDYsMjMuMDA1NTYxMDkwMDAwMDddLFs5MC4xMTc5Nzc5NjIwMDAwNSwyMy4wMDU0NDMzOTIwMDAwN10sWzkwLjExOTY4ODYzNzAwMDA4LDIzLjAwNTM1MjkwMjAwMDAzXSxbOTAuMTI0MTU3MTQ1MDAwMDgsMjMuMDA1MTQ4NDY4MDAwMDddLFs5MC4xMjQzODkyMDUwMDAwNiwyMy4wMDUxNDIwNzQwMDAwNV0sWzkwLjEyNDYzNTkwNjAwMDA0LDIzLjAwNTE0NDEzODAwMDA1XSxbOTAuMTI1MzkxOTQ4MDAwMDcsMjMuMDA1MjI4MjMxMDAwMDVdLFs5MC4xMjU2NjU1MzEwMDAwNCwyMy4wMDUyNzcxMzQwMDAwNF0sWzkwLjEyNjEwNjI4MzAwMDA3LDIzLjAwNTM4OTEzODAwMDA2XSxbOTAuMTI2MzgzNTkzMDAwMDcsMjMuMDA1NTExOTk4MDAwMDNdLFs5MC4xMjY1MDUwMjUwMDAwOSwyMy4wMDU1NzkwODcwMDAwNl0sWzkwLjEyNjY3MDQyMDAwMDA0LDIzLjAwNTY5OTc4MDAwMDA0XSxbOTAuMTI2NzIzODU1MDAwMDgsMjMuMDA1NzczNjk4MDAwMDRdLFs5MC4xMjY4Mzc4NDAwMDAwNiwyMy4wMDYwMzA0OTcwMDAwNF0sWzkwLjEyNjk3ODc3NzAwMDAzLDIzLjAwNjQxMDM1NjAwMDA2XSxbOTAuMTI3MDkzMzQ4MDAwMDcsMjMuMDA2OTY1ODI0MDAwMDhdLFs5MC4xMjg3MTE2ODIwMDAwNywyMy4wMTg0OTY5MDAwMDAwNl0sWzkwLjEyOTE0NDgzMjAwMDA3LDIzLjAyMjEwNzExNzAwMDA4XSxbOTAuMTI5MjExNjI3MDAwMDcsMjMuMDIzMDcwODIyMDAwMDJdLFs5MC4xMjkxOTYzMjQwMDAwOCwyMy4wMjQyOTQ4NzIwMDAwNF0sWzkwLjEyODU0NDI3MTAwMDA3LDIzLjAyNDYzMjQ2NDAwMDA0XSxbOTAuMTI4MDQxMjQ0MDAwMDMsMjMuMDI0ODUxOTM1MDAwMDddLFs5MC4xMjc3MzU0MjQwMDAwNCwyMy4wMjQ5NDMwODEwMDAwNl0sWzkwLjEyNzEzMzkwODAwMDA4LDIzLjAyNTE5MDI5MjAwMDA1XSxbOTAuMTI2OTg2MTM0MDAwMDUsMjMuMDI1MzQ1NjcyMDAwMDddLFs5MC4xMjY4OTc2MTEwMDAwNiwyMy4wMjU1OTI0NzEwMDAwNF0sWzkwLjEyNjk1NjkyNTAwMDA2LDIzLjAyNTc0NzY4NTAwMDA2XSxbOTAuMTI3MDM2MDk4MDAwMDgsMjMuMDI1OTM5MDE5MDAwMDhdLFs5MC4xMzMyNDQxODYwMDAwNywyMy4wMzg5MTgzOTgwMDAwOF0sWzkwLjEzNDk4Mzk4ODAwMDA0LDIzLjA0MjI0MDY3MTAwMDA2XSxbOTAuMTM1MTE4MjI1MDAwMDQsMjMuMDQ5OTA3Njk5MDAwMDddLFs5MC4xMzUwOTgxNDYwMDAwOCwyMy4wNDk5NjMwNDcwMDAwNl0sWzkwLjEzNTE2NTI0MjAwMDA4LDIzLjA1MDI1MzE4OTAwMDA1XSxbOTAuMTM2NzM4MTYzMDAwMDgsMjMuMDUyNzYzMTM1MDAwMDhdLFs5MC4xMzY5MDM2NjcwMDAwNywyMy4wNTI5MjU1OTMwMDAwNV0sWzkwLjEzNzAwNDEwMzAwMDA0LDIzLjA1MzAwMDAzMTAwMDA3XSxbOTAuMTM3MTQ1MTQ1MDAwMDMsMjMuMDUzMTA0MzU5MDAwMDNdLFs5MC4xMzczMjIxOTMwMDAwNSwyMy4wNTMyMTk5NDYwMDAwN10sWzkwLjEzNzQ5OTg1MzAwMDA3LDIzLjA1MzMzNTUzMzAwMDA1XSxbOTAuMTM3Nzk5NTY4MDAwMDUsMjMuMDUzNDg0MzI1MDAwMDZdLFs5MC4xMzg3MDI1OTQwMDAwNSwyMy4wNTM4NDM3NDQwMDAwNl0sWzkwLjE0MDEzODQ1NjAwMDA1LDIzLjA1NDM5NjkwNDAwMDA0XSxbOTAuMTQ4NDM5MDA1MDAwMDYsMjMuMDU0OTAwMjgyMDAwMDZdLFs5MC4xNDg2NjUwMzcwMDAwNiwyMy4wNTQ4ODU5NTYwMDAwOF0sWzkwLjE0OTEzMzgzMTAwMDA5LDIzLjA1NDgxMzI0ODAwMDA3XSxbOTAuMTUwMzkyNzU4MDAwMDcsMjMuMDU0NDk0MTkxMDAwMDZdLFs5MC4xNTA3ODA2NDkwMDAwNywyMy4wNTQzNjczNTMwMDAwM10sWzkwLjE1MDkyNjY4MjAwMDAzLDIzLjA1NDI4NjQ3ODAwMDA1XSxbOTAuMTUxMDE4MTIyMDAwMDQsMjMuMDU0MjE3NTExMDAwMDVdLFs5MC4xNTEwNTY4MzEwMDAwNiwyMy4wNTQxODgxMTUwMDAwNF0sWzkwLjE1MTEzNzg2ODAwMDAzLDIzLjA1NDA5MjA1NzAwMDA1XSxbOTAuMTUxMzE0MjE0MDAwMDgsMjMuMDUzODM4Mzg3MDAwMDRdLFs5MC4xNTE0NTk0NzYwMDAwNywyMy4wNTM2MTYzNjQwMDAwNV0sWzkwLjE1MTYzODI4ODAwMDA3LDIzLjA1MzM4Njk2OTAwMDAzXSxbOTAuMTUxODYxNjM2MDAwMDQsMjMuMDUzMTU4MDk2MDAwMDZdLFs5MC4xNTIxODY1NDkwMDAwOCwyMy4wNTI5MTM4ODEwMDAwNV0sWzkwLjE1MjQ5MDU0MzAwMDA2LDIzLjA1Mjc4NTQyNzAwMDA2XSxbOTAuMTUyNzYxMzU3MDAwMDMsMjMuMDUyNzIwMjM1MDAwMDRdLFs5MC4xNTMxODM3NzkwMDAwNywyMy4wNTI2NTE1MTMwMDAwNl0sWzkwLjE1MzI5NzI0MTAwMDA4LDIzLjA1MjYzNTU5NDAwMDA0XSxbOTAuMTUzNTQzNjg1MDAwMDUsMjMuMDUyNjAxNDc5MDAwMDNdLFs5MC4xNTQ2MjcxOTIwMDAwOCwyMy4wNTI1NjU0MjAwMDAwNl0sWzkwLjE1NDkzNTY0NDAwMDAzLDIzLjA1MjYwMTI1MTAwMDA2XSxbOTAuMTU1MDM2NjcyMDAwMDUsMjMuMDUyNjUwODM2MDAwMDVdLFs5MC4xNTg2NzE2OTYwMDAwNiwyMy4wNTY4MjUxOTUwMDAwNF0sWzkwLjE1ODkxMjE0MjAwMDA4LDIzLjA1NzEzMjY1NDAwMDA0XSxbOTAuMTU5NjkwNDk3MDAwMDQsMjMuMDU4ODAyNDkxMDAwMDVdLFs5MC4xNTk1ODg4NjcwMDAwOCwyMy4wNTk1NDIyMDYwMDAwNl0sWzkwLjE1ODk5NzkyNjAwMDA0LDIzLjA2MDgyMTAzMjAwMDA0XSxbOTAuMTU4NzMxOTM5MDAwMDYsMjMuMDYzNDUyMjg1MDAwMDRdLFs5MC4xNjI2NDMwNzYwMDAwNSwyMy4wNjY1MzU0ODEwMDAwN10sWzkwLjE2Mjc1NjA1MDAwMDA0LDIzLjA2NjYxMjE0OTAwMDA0XSxbOTAuMTY0NDkxNTE1MDAwMDcsMjMuMDY3NDgzMjA2MDAwMDhdLFs5MC4xNjQ3NjU1OTgwMDAwMywyMy4wNjc1Nzc3NzEwMDAwNl0sWzkwLjE2NDk3NDMzMzAwMDAzLDIzLjA2NzYyMzI4NTAwMDAyXSxbOTAuMTY1MzQzNTA3MDAwMDUsMjMuMDY3NjM4NzA5MDAwMDVdLFs5MC4xNzI0MTg4NDQwMDAwNSwyMy4wNjY0OTUxOTYwMDAwNl0sWzkwLjE3MjYxMDM4MTAwMDA4LDIzLjA2NjQ1MTUxMzAwMDA2XSxbOTAuMTcyNzUyNzY2MDAwMDMsMjMuMDY2MzgwNzgzMDAwMDZdLFs5MC4xNzMzNTAwMDgwMDAwNiwyMy4wNjYwNTYwNTYwMDAwNF0sWzkwLjE3MzkxNjQ1NjAwMDA5LDIzLjA2NTc0NzE2ODAwMDAzXSxbOTAuMTc0MTIwNDA5MDAwMDcsMjMuMDY1NjMyODk3MDAwMDZdLFs5MC4xNzQzMzg5NTMwMDAwNywyMy4wNjU0NzczOTQwMDAwM10sWzkwLjE3NDUwOTMxOTAwMDA0LDIzLjA2NTM0MjgzNDAwMDAzXSxbOTAuMTc0NjQ3NjQ1MDAwMDUsMjMuMDY1MjAxNTM0MDAwMDRdLFs5MC4xNzQ3NDcwMjgwMDAwNywyMy4wNjQ5MDg0MDIwMDAwN10sWzkwLjE3NDgwMDA2MTAwMDA0LDIzLjA2NDYzMjgyNDAwMDA2XSxbOTAuMTgyMTI2MTkxMDAwMDcsMjMuMDU5MTQ2OTExMDAwMDNdLFs5MC4xODI4ODI5ODgwMDAwNywyMy4wNTg2Mzg0NzMwMDAwM10sWzkwLjE4MzMxNjI2MDAwMDA4LDIzLjA1ODQ3MTk4MjAwMDA3XSxbOTAuMTk1MDU4NzY0MDAwMDcsMjMuMDU0MzgyMTYyMDAwMDJdLFs5MC4xOTYzODc1NjQwMDAwOCwyMy4wNTQxNTQxMTgwMDAwNF0sWzkwLjIwMDg2MzExNjAwMDA1LDIzLjA1Mzc5MjI0MDAwMDA2XSxbOTAuMjAxMTY3NTU1MDAwMDQsMjMuMDUzNzg3OTAwMDAwMDNdLFs5MC4yMDEyOTAwNDgwMDAwMywyMy4wNTM5MDA2NjIwMDAwNV0sWzkwLjIwMzQwMDM0NzAwMDA3LDIzLjA1NTg4MDc5ODAwMDAzXSxbOTAuMjAzODE0NzAyMDAwMDUsMjMuMDU2NzQ2MzQzMDAwMDRdLFs5MC4yMDM5MjE3MjEwMDAwOSwyMy4wNTcxMTMxODcwMDAwM10sWzkwLjIwMzk2MzQ3MzAwMDA0LDIzLjA1NzI4ODE1NTAwMDA0XSxbOTAuMjA0MDA0OTc3MDAwMDcsMjMuMDU3NTAxNTE3MDAwMDVdLFs5MC4yMDQwMzI0NDQwMDAwNiwyMy4wNTc5MTQxOTYwMDAwN10sWzkwLjIwMzg4NTg0NDAwMDA3LDIzLjA1ODYxMTY1MjAwMDAyXSxbOTAuMjAzNzE1MjU2MDAwMDcsMjMuMDU4OTc5OTgzMDAwMDNdLFs5MC4yMDMyMDI0NjMwMDAwOCwyMy4wNTk4MDg4OTUwMDAwNl0sWzkwLjIwMjk2NDExMzAwMDA2LDIzLjA2MDM1ODU0NTAwMDA0XSxbOTAuMjAyOTU2MjEyMDAwMDYsMjMuMDYwOTg5NzY1MDAwMDRdLFs5MC4yMDI5NTY4MjgwMDAwOCwyMy4wNjEzOTk2NTUwMDAwNl0sWzkwLjIwMzAxMjYxNTAwMDAzLDIzLjA2MzIwMzQ0MzAwMDA4XSxbOTAuMjEyMTg4MzE0MDAwMDYsMjMuMDY5Mzc3MDE2MDAwMDNdLFs5MC4yMTI1MzQwMTIwMDAwNSwyMy4wNjk1ODk5NjYwMDAwMl0sWzkwLjIxMjY5MzY5MDAwMDA0LDIzLjA2OTY2MzE0NzAwMDAzXSxbOTAuMjEyOTUwNjkzMDAwMDQsMjMuMDY5NzM2NzYyMDAwMDVdLFs5MC4yMTM3NjYxNTMwMDAwNSwyMy4wNjk4OTk5NTYwMDAwM10sWzkwLjIxODUxMzUwMjAwMDA2LDIzLjA2NTgyMjc4NzAwMDA2XSxbOTAuMjI0NzIwNjE3MDAwMDYsMjMuMDU4MjM4NDQ1MDAwMDNdLFs5MC4yMjU0NTgzNjcwMDAwNCwyMy4wNTQyNjk0NjkwMDAwOF0sWzkwLjIzNDcyNDQ2NjAwMDA1LDIzLjA0NTY2MDEyODAwMDA3XSxbOTAuMjM1NDI2NDMyMDAwMDUsMjMuMDQ1NTI5Nzk1MDAwMDVdLFs5MC4yMzU1OTY1ODAwMDAwNSwyMy4wNDU0OTM0MDYwMDAwNV0sWzkwLjIzNjEyMzM0OTAwMDA4LDIzLjA0NTMwMTc5MTAwMDA0XSxbOTAuMjM2Mjc4MTk0MDAwMDgsMjMuMDQ1MjM3NzYwMDAwMDhdLFs5MC4yMzYzNzAxNjAwMDAwNCwyMy4wNDUxNDg5ODMwMDAwNV0sWzkwLjIzNjQ5MjU3NTAwMDA2LDIzLjA0NTAyODU0MjAwMDA3XSxbOTAuMjM2NTgyNjM1MDAwMDUsMjMuMDQ0ODk2ODU4MDAwMDddLFs5MC4yMzY3MTc3MDkwMDAwNiwyMy4wNDQ2OTAwMTYwMDAwNl0sWzkwLjIzNjc5MTgwNzAwMDAzLDIzLjA0NDUwMDc2ODAwMDAzXSxbOTAuMjM3MzgxMzg1MDAwMDUsMjMuMDQxODU5ODY4MDAwMDddLFs5MC4yMzc2Nzc4NTkwMDAwOSwyMy4wNDA0NjE1MDEwMDAwNF0sWzkwLjIzODAxMTgwMDAwMDA0LDIzLjAzODg2NDM0MTAwMDA4XSxbOTAuMjM4MjE5ODM1MDAwMDUsMjMuMDM3ODI5NzAwMDAwMDNdLFs5MC4yMzgyNzM1MDEwMDAwNCwyMy4wMzc0NzIyMzUwMDAwNV0sWzkwLjIzODMzOTY3NDAwMDAzLDIzLjAzNjk0MzY4MDAwMDA0XSxbOTAuMjM4MzY0ODk3MDAwMDUsMjMuMDM2NzE2MTEyMDAwMDhdLFs5MC4yMzcwNzYyOTQwMDAwOCwyMy4wMzI3NTg1ODMwMDAwM10sWzkwLjIzNjkwODI5OTAwMDA1LDIzLjAzMjI3MTAzMDAwMDA2XSxbOTAuMjM2NzQxMDM2MDAwMDcsMjMuMDMxODUzNDg0MDAwMDddLFs5MC4yMzY1MjY4MDQwMDAwNSwyMy4wMzE0MzcxMzcwMDAwN10sWzkwLjIzNjAwNTM1NTAwMDAzLDIzLjAzMDQ0NzYyNjAwMDA3XSxbOTAuMjM1NzQ3MjEyMDAwMDQsMjMuMDMwMDMzMDM3MDAwMDddLFs5MC4yMzQ2NTEzNzAwMDAwNSwyMy4wMjgxMTE2NzMwMDAwN10sWzkwLjIzNDM1ODI4NTAwMDA0LDIzLjAyNzU5MDk5MTAwMDA3XSxbOTAuMjM0MDE1MzE4MDAwMDUsMjMuMDI2OTcyNzA4MDAwMDddLFs5MC4yMzM5MjcyNzAwMDAwNCwyMy4wMjY0OTkxNDcwMDAwNF0sWzkwLjIzMzM5NTEzMDAwMDA4LDIzLjAyMzUyOTA2MDAwMDA0XSxbOTAuMjMzMjU2ODA5MDAwMDcsMjMuMDIyNzI1Mjg2MDAwMDJdLFs5MC4yMzMwMjQxMDgwMDAwNSwyMy4wMjExMzAwOTcwMDAwM10sWzkwLjIzMjc3ODkzOTAwMDA3LDIzLjAxODg0MDQ3ODAwMDA3XSxbOTAuMjMyNjk1Mzk3MDAwMDQsMjMuMDE3OTY0MzU2MDAwMDVdLFs5MC4yMzMxMzIwMDIwMDAwNSwyMy4wMDg2NjcxNTkwMDAwM10sWzkwLjIzMzQwMzAxNTAwMDA4LDIzLjAwNzcyODQwOTAwMDA0XSxbOTAuMjMyMjI4MTAyMDAwMDgsMjIuOTk3NjA1ODc2MDAwMDJdLFs5MC4yMzE2MjkwNDIwMDAwNywyMi45OTYyNDg5MTAwMDAwOF0sWzkwLjIzMTIxNjAxMjAwMDA2LDIyLjk5NTI1OTIxODAwMDA2XSxbOTAuMjMwNjE4MTc3MDAwMDUsMjIuOTkyNDU2MzIzMDAwMDZdLFs5MC4yMzA0ODMxODUwMDAwOCwyMi45OTE3ODkxNzAwMDAwNl0sWzkwLjIyOTc0NjAzMjAwMDA0LDIyLjk4NjYzODg5NzAwMDAzXSxbOTAuMjI5NjM2OTU5MDAwMDYsMjIuOTg1Nzg3MDg0MDAwMDRdLFs5MC4yMjk1MjEzMjkwMDAwOCwyMi45ODQ4NDA5OTQwMDAwMl0sWzkwLjIyOTQ4MjYzNjAwMDA2LDIyLjk4NDEzNjQzOTAwMDA1XSxbOTAuMjI5NDgyODE4MDAwMDYsMjIuOTgzNTIyNzI1MDAwMDZdLFs5MC4yMjk0OTIwNzIwMDAwOCwyMi45ODMwNDQ1MDEwMDAwNV0sWzkwLjIyOTUwMDYxMTAwMDA1LDIyLjk4MjY4MzcxMzAwMDAzXSxbOTAuMjI5NTIwMDIxMDAwMDQsMjIuOTgyMDgwNzAxMDAwMDNdLFs5MC4yMjk1NjI3NzUwMDAwMywyMi45ODEyMjA3NjMwMDAwN10sWzkwLjIyOTYxMDY4OTAwMDA4LDIyLjk4MDUyNTExNDAwMDA1XSxbOTAuMjI5NzQwODQ3MDAwMDcsMjIuOTc5OTY1OTc4MDAwMDVdLFs5MC4yMjk4ODc2MDYwMDAwMywyMi45Nzk0ODk4MTQwMDAwM10sWzkwLjIzMDA1MTUzMjAwMDA2LDIyLjk3OTA2ODM4OTAwMDA4XSxbOTAuMjMwMjE3MDUzMDAwMDUsMjIuOTc4Njg5MzA1MDAwMDVdLFs5MC4yMzA2MjQ0MjYwMDAwOCwyMi45Nzc4MTc1NDUwMDAwNV0sWzkwLjIzMTc1OTUyMjAwMDA2LDIyLjk3NTUwMTA1NjAwMDA0XSxbOTAuMjMzNDkyMjAzMDAwMDgsMjIuOTcxOTgyMjIzMDAwMDVdLFs5MC4yMzUyODY3MDUwMDAwOCwyMi45NjkxODMxMzcwMDAwN10sWzkwLjIzNjAyMzg5OTAwMDAzLDIyLjk2ODE0NzE0MTAwMDAzXSxbOTAuMjM2NjYyMTc4MDAwMDcsMjIuOTY3Mzg3Mzc1MDAwMDRdLFs5MC4yMzczNDA2MjYwMDAwNSwyMi45NjY1OTA4NDcwMDAwOF0sWzkwLjIzNzkyOTUyMjAwMDA2LDIyLjk2NjE5MDIzMzAwMDA4XSxbOTAuMjM4NTA0MjQ1MDAwMDYsMjIuOTY2MDUzODY3MDAwMDNdLFs5MC4yMzg5MTIxOTAwMDAwNiwyMi45NjYwODA5MTcwMDAwNl0sWzkwLjIzOTM3MzQ1NzAwMDA2LDIyLjk2NjI2MzcxNTAwMDAzXSxbOTAuMjM5OTM0NDc3MDAwMDgsMjIuOTY2NjU0Njk1MDAwMDVdLFs5MC4yNDAzMzI4NjQwMDAwNCwyMi45NjcxMzY4MTkwMDAwN10sWzkwLjI0MTMzNjI5ODAwMDA4LDIyLjk2ODQxNzQ4OTAwMDA1XSxbOTAuMjQyNDA4NDk0MDAwMDcsMjIuOTY5OTUyNjc4MDAwMDNdLFs5MC4yNDI5NDUyNjYwMDAwNSwyMi45NzA3NTE4ODUwMDAwM10sWzkwLjI0MzEwOTg5OTAwMDA1LDIyLjk3MTA5NDkwNjAwMDA4XSxbOTAuMjQ0MDQ0NjE5MDAwMDgsMjIuOTcyMTA5MTc0MDAwMDJdLFs5MC4yNDQ3OTM0OTAwMDAwNiwyMi45NzI4NDcwNzMwMDAwM10sWzkwLjI0NTEwMzc3NDAwMDA5LDIyLjk3MzE0MjQ0MTAwMDA1XSxbOTAuMjQ1MjA0NTM2MDAwMDcsMjIuOTczMjI3NTM4MDAwMDZdLFs5MC4yNDU0NTQ5MTQwMDAwNSwyMi45NzM0Mzg4NzQwMDAwN10sWzkwLjI0NTY4NTY4NzAwMDA1LDIyLjk3MzU5ODg2MTAwMDAzXSxbOTAuMjQ2MjI1MzgxMDAwMDQsMjIuOTczOTcxNzg1MDAwMDZdLFs5MC4yNDY2MzEzNTMwMDAwNSwyMi45NzQyNDEwMjkwMDAwNF0sWzkwLjI0NzEzNDIzOTAwMDA1LDIyLjk3NDQ4ODY2NjAwMDA3XSxbOTAuMjQ3NDM1NzI2MDAwMDUsMjIuOTc0NjM2MTIwMDAwMDddLFs5MC4yNDc4ODcyMjAwMDAwNSwyMi45NzQ3ODc4NTUwMDAwNV0sWzkwLjI0ODM1NzU4NTAwMDA2LDIyLjk3NDkyMjA1NzAwMDA3XSxbOTAuMjQ4ODkzMjI2MDAwMDYsMjIuOTc1MDczMDkzMDAwMDVdLFs5MC4yNTAzNTk1MzEwMDAwNywyMi45NzUzMTk3NjgwMDAwOF0sWzkwLjI1MDg1OTA2OTAwMDA2LDIyLjk3NTM5OTcxNjAwMDAzXSxbOTAuMjUxNzI4MDgyMDAwMDYsMjIuOTc1NDU4MTg1MDAwMDRdLFs5MC4yNTI2NjE2NTMwMDAwOCwyMi45NzU0NzcwMjUwMDAwM10sWzkwLjI1NDE4MjA4MTAwMDA3LDIyLjk3NTMxMzY4NjAwMDA1XSxbOTAuMjU0ODExNTQzMDAwMDcsMjIuOTc1MDkxMzU0MDAwMDNdLFs5MC4yNTcwMjUyMTgwMDAwOCwyMi45NzQyNjM0NzYwMDAwM10sWzkwLjI1NzQxNTc2MzAwMDA0LDIyLjk3NDEwMTkzMjAwMDA1XSxbOTAuMjU3NjMyNjQyMDAwMDMsMjIuOTc0MDAxMDgzMDAwMDhdLFs5MC4yNTc3NjI5NzYwMDAwNCwyMi45NzM5MjAxMzUwMDAwN10sWzkwLjI1ODAyMTc3OTAwMDA1LDIyLjk3Mzc0MTMwMzAwMDA1XSxbOTAuMjU4NTAwMzg1MDAwMDUsMjIuOTczMzk2MTIxMDAwMDZdLFs5MC4yNTg4MDMxNTgwMDAwMywyMi45NzI5MzMyMjUwMDAwOF0sWzkwLjI1OTAxOTg4MDAwMDA0LDIyLjk3MjQzMDM4MzAwMDA3XSxbOTAuMjcxMDc5NTAzMDAwMDcsMjIuOTcyNDk2MDQxMDAwMDZdLFs5MC4yNzIxNzg5NDIwMDAwNCwyMi45NzI4Mzc0MzEwMDAwN10sWzkwLjI3NTYyMzYyMjAwMDA3LDIyLjk3Mzg1NDUyMDAwMDAzXSxbOTAuMjc2NDYzNzA1MDAwMDgsMjIuOTc0MDgwMDI0MDAwMDVdLFs5MC4yNzcyMzIzODMwMDAwNywyMi45NzQyNzI5MDEwMDAwNl0sWzkwLjI3NzU4MDExODAwMDA2LDIyLjk3NDM1OTgwNTAwMDA2XSxbOTAuMjc4MTY5MzkyMDAwMDUsMjIuOTc0NDg0MTExMDAwMDRdLFs5MC4yNzkyNDkwNjQwMDAwNiwyMi45NzQ2ODQzMzcwMDAwNF0sWzkwLjI3OTg3NzkzMTAwMDA0LDIyLjk3NDc4ODgwNjAwMDA1XSxbOTAuMjgwNTI1MDY3MDAwMDQsMjIuOTc0ODc5MTI3MDAwMDddLFs5MC4yODExOTA5NzkwMDAwOSwyMi45NzQ5MDkwMDEwMDAwN10sWzkwLjI4MTczNTUxMjAwMDA3LDIyLjk3NDkyMDQ1NDAwMDAzXSxbOTAuMjgyMzYxMDc5MDAwMDUsMjIuOTc0OTAwNzExMDAwMDNdLFs5MC4yODQwNjg2MzQwMDAwNSwyMi45NzQ3MjY1ODcwMDAwOF0sWzkwLjI4NDcxMDQ1MTAwMDA4LDIyLjk3NDYwNjMwNzAwMDA0XSxbOTAuMjg3MDI2ODg5MDAwMDYsMjIuOTc0MDI0NTUzMDAwMDVdLFs5MC4yODc5ODEyMDYwMDAwNCwyMi45NzM3NjQ4MDQwMDAwNF0sWzkwLjI5Mzg2MzE3MzAwMDAzLDIyLjk3NDQ4NTcyMjAwMDA1XSxbOTAuMzA1NTg1MTUwMDAwMDcsMjIuOTc3MjU0ODk5MDAwMDZdLFs5MC4zMTYzMDU2NjkwMDAwMywyMi45Nzk5OTU4NDgwMDAwNF0sWzkwLjMxNzYyNDE4MjAwMDAzLDIyLjk4MDMzMzY1OTAwMDA1XSxbOTAuMzE4NjE3Nzc4MDAwMDMsMjIuOTgwNzA4ODEyMDAwMDVdLFs5MC4zMTg5NzQ4ODQwMDAwNiwyMi45ODA4NzM1MTgwMDAwN10sWzkwLjMxOTE5MTY4NjAwMDA3LDIyLjk4MTAxNDIzMTAwMDA3XSxbOTAuMzE5ODc5OTU5MDAwMDUsMjIuOTgxNDYxMTI4MDAwMDNdLFs5MC4zMjAyMTE5MDIwMDAwNCwyMi45ODE4MTM4OTAwMDAwN10sWzkwLjMyMDU5NTMyMDAwMDA1LDIyLjk4MjI3MzI1NjAwMDA0XSxbOTAuMzI0MTgwODkxMDAwMDgsMjIuOTg4MTY1OTI4MDAwMDZdLFs5MC4zMjQ1MzQyMjkwMDAwNSwyMi45ODg3ODM5OTYwMDAwNV0sWzkwLjMyNTExNzg0ODAwMDA1LDIyLjk5MDA2OTQ5OTAwMDA3XSxbOTAuMzI2NDAxMDYxMDAwMDcsMjIuOTkzMTc3NzQ4MDAwMDVdLFs5MC4zMjc2MDQ2MjMwMDAwNywyMi45OTY2MTMwNDcwMDAwNF0sWzkwLjMyODEzNDg4OTAwMDA3LDIyLjk5OTAxMTQ1MzAwMDA0XSxbOTAuMzI5MTkzODQ2MDAwMDcsMjMuMDAzODg4OTk0MDAwMDhdLFs5MC4zMjkyNTkyOTcwMDAwOCwyMy4wMDQyMjAyNzEwMDAwN10sWzkwLjMyOTMzOTk2NjAwMDA4LDIzLjAwNDc5MDkwMzAwMDA3XSxbOTAuMzI5Mzk2MTIwMDAwMDcsMjMuMDA1MzExMzM2MDAwMDNdLFs5MC4zMjk0NDI0NTIwMDAwOCwyMy4wMDYwNTcwNjEwMDAwNF0sWzkwLjMyOTQ1NzMwNjAwMDA1LDIzLjAwNjg5OTk2MTAwMDA0XSxbOTAuMzI5NDQ4MDMzMDAwMDYsMjMuMDA3MzUxMDg2MDAwMDNdLFs5MC4zMjk0MTg2NjMwMDAwNywyMy4wMDc1NjM0MzEwMDAwNV0sWzkwLjMyOTM2MDMzMDAwMDA0LDIzLjAwNzkwMzk5OTAwMDA2XSxbOTAuMzI5MTE0MzA4MDAwMDQsMjMuMDA5MDY1MzA0MDAwMDVdLFs5MC4zMjg1ODMzODQwMDAwNywyMy4wMTEyMDU2MzEwMDAwNV0sWzkwLjMyNzI1MjU4ODAwMDA4LDIzLjAxNjI3NzgyMDAwMDAzXSxbOTAuMzI2ODE3OTc5MDAwMDUsMjMuMDE3OTExNTA1MDAwMDNdLFs5MC4zMjY3MDUzMDIwMDAwNSwyMy4wMTgyMzI0MjMwMDAwM10sWzkwLjMyNjU2MzM1MTAwMDA2LDIzLjAxODU1NDUzMjAwMDA1XSxbOTAuMzI2MTE4MzU2MDAwMDUsMjMuMDE5NDI2NjA4MDAwMDZdLFs5MC4zMjU3NTUxNzQwMDAwNSwyMy4wMjAwODAwMTgwMDAwNF0sWzkwLjMyNTI2MzQxNTAwMDA1LDIzLjAyMDc4Njc2NDAwMDA0XSxbOTAuMzI1MDI2OTM2MDAwMDksMjMuMDIxMTE4MDk4MDAwMDRdLFs5MC4zMjQ3NzM5ODcwMDAwNywyMy4wMjE0NDk0NjYwMDAwNF0sWzkwLjMyMzM4NDE5NzAwMDA1LDIzLjAyMzExNDQ1NjAwMDAzXSxbOTAuMzIzMDA2MzU3MDAwMDUsMjMuMDIzNTEzMjYyMDAwMDVdLFs5MC4zMjIzNDMwODQwMDAwNywyMy4wMjQxODM2NDkwMDAwN10sWzkwLjMyMTIxNTg2NDAwMDA3LDIzLjAyNDk2MTEyMDAwMDA2XSxbOTAuMzIwNTQxNjcyMDAwMDUsMjMuMDI1MTQ3NjcxMDAwMDddLFs5MC4zMTk3OTI2NjgwMDAwNSwyMy4wMjU0MjY5NjMwMDAwM10sWzkwLjMxOTMxODQyMjAwMDA0LDIzLjAyNTgyMDg3MzAwMDA0XSxbOTAuMzE4ODk1NjE5MDAwMDUsMjMuMDI2NTYxODk5MDAwMDZdLFs5MC4zMTQ3MTYwMjEwMDAwNCwyMy4wMzQ3MTI3NDAwMDAwM10sWzkwLjMxNDQ2NzM2NDAwMDA1LDIzLjAzNTMzODIzMjAwMDA3XSxbOTAuMzE0MjY5NDc3MDAwMDQsMjMuMDM2Mjg2NTY3MDAwMDVdLFs5MC4zMTU2MzExNDIwMDAwOSwyMy4wNTE3NzA0NTIwMDAwM10sWzkwLjMxNTc1MDg2NjAwMDAzLDIzLjA1Mjg3OTA1OTAwMDA4XSxbOTAuMzE1ODI4NDkzMDAwMDgsMjMuMDUyOTQxMDA4MDAwMDZdLFs5MC4zMjMxMjQxOTcwMDAwOCwyMy4wNTYwNDg5ODcwMDAwNV0sWzkwLjMyMzQ0MTA1MjAwMDA4LDIzLjA1NjEzNDE1NjAwMDA0XSxbOTAuMzIzNzI4NTE1MDAwMDgsMjMuMDU2MTc1OTEyMDAwMDddLFs5MC4zMjM4NzEyOTgwMDAwOSwyMy4wNTYxODE4MzAwMDAwN10sWzkwLjM0NzQzOTg4NDAwMDA0LDIzLjA1NjMzNTA0MzAwMDA1XSxbOTAuMzU1Mzg4MDc3MDAwMDQsMjMuMDU1MjUwODc5MDAwMDNdLFs5MC4zNTU2NDA0NjcwMDAwNiwyMy4wNTUxNzU3ODUwMDAwN10sWzkwLjM1NTgxNDg0MjAwMDA5LDIzLjA1NTEzMTM1NjAwMDA2XSxbOTAuMzU2MDIwMzY4MDAwMDMsMjMuMDU1MTAwNDA2MDAwMDddLFs5MC4zNTYzMTk5MjAwMDAwMywyMy4wNTUwOTYzNDMwMDAwNl0sWzkwLjM1NjU1NjEwMTAwMDA4LDIzLjA1NTEyMTc4MjAwMDA3XSxbOTAuMzU2NzQ1MzAzMDAwMDgsMjMuMDU1MTQ3MzI1MDAwMDZdLFs5MC4zNTY5MTkyODgwMDAwOSwyMy4wNTUxODY0NTQwMDAwMl0sWzkwLjM2NzQyNjU5MjAwMDA3LDIzLjA1ODMyNDA1MDAwMDA3XSxbOTAuMzY3NzIyOTcwMDAwMDUsMjMuMDU4NDk1NTU5MDAwMDVdLFs5MC4zNjc5NjY3MDIwMDAwNSwyMy4wNTg2MDMzOTEwMDAwOF0sWzkwLjM2ODIyMDU1MjAwMDA4LDIzLjA1ODYxNzQ3OTAwMDA4XSxbOTAuMzY4NDQyNTMxMDAwMDgsMjMuMDU4NTc4MDA2MDAwMDZdLFs5MC4zODQ3MTU2NDcwMDAwNiwyMy4wNTUzMDQ3NTAwMDAwNl0sWzkwLjM4OTM5NTE2MjAwMDA4LDIzLjA1MTg5OTU5MDAwMDA2XSxbOTAuMzkzMjAwNTE5MDAwMDYsMjMuMDQ5MDI1NDgzMDAwMDRdLFs5MC4zOTM0MTE0NzUwMDAwNSwyMy4wNDg1NjAzMDcwMDAwNl0sWzkwLjM5MzY0NjI2NzAwMDA3LDIzLjA0ODEwOTc1MDAwMDA0XSxbOTAuMzkzOTQ0MTA4MDAwMDgsMjMuMDQ3NzMyNDMyMDAwMDNdLFs5MC4zOTQyMjAzMjMwMDAwNywyMy4wNDc0NzE0NzEwMDAwNV0sWzkwLjM5NDQ0MDA4OTAwMDA2LDIzLjA0NzMxMDAxODAwMDA4XSxbOTAuMzk0NTgwODAzMDAwMDUsMjMuMDQ3MjM2ODM1MDAwMDRdLFs5MC4zOTQ4MDEzNDcwMDAwNSwyMy4wNDcxMzI5NjYwMDAwNV0sWzkwLjM5NTMwNTM1MTAwMDA1LDIzLjA0Njk1MjE3MDAwMDA1XSxbOTAuNDA0ODE2ODExMDAwMDUsMjMuMDQzNjI5MjU2MDAwMDNdLFs5MC40MTAzNjYyNzgwMDAwOCwyMy4wNDIzNDkxNjIwMDAwNV0sWzkwLjQxMDQ0MTk2NTAwMDA4LDIzLjA0MjM2MjUxNjAwMDAzXSxbOTAuNDEwODgzMjQ5MDAwMDUsMjMuMDQyNDMzNjM4MDAwMDNdLFs5MC40MTEwMTYyOTgwMDAwNSwyMy4wNDI0NTM2MTcwMDAwNF0sWzkwLjQxMTI4MTY3NDAwMDA3LDIzLjA0MjQ1NDYyMDAwMDA2XSxbOTAuNDExNzAxMzcxMDAwMDUsMjMuMDQyNDQ4NDQ3MDAwMDNdLFs5MC40MTIxMjAzNzMwMDAwNSwyMy4wNDI0MTQ2MTEwMDAwM10sWzkwLjQxMjI2MTI0MzAwMDA1LDIzLjA0MjM5NzMwNzAwMDA0XSxbOTAuNDE3NDMxOTQyMDAwMDYsMjMuMDQxNTc1ODI5MDAwMDddLFs5MC40MTc3NDU5MjgwMDAwNCwyMy4wNDE1MTUxNTMwMDAwM10sWzkwLjQxODE1ODYzMjAwMDA5LDIzLjA0MTQxOTIxMjAwMDA1XSxbOTAuNDE5MDEwMjU0MDAwMDYsMjMuMDQxMjIxMDUxMDAwMDRdLFs5MC40MTkzOTE3OTIwMDAwNiwyMy4wNDExMDc2ODYwMDAwM10sWzkwLjQxOTcyMDg1NzAwMDA3LDIzLjA0MDk5MTYzOTAwMDAzXSxbOTAuNDIwMDI5Nzc1MDAwMDUsMjMuMDQwODcxMTI4MDAwMDVdLFs5MC40MjAzMTU1MjIwMDAwNywyMy4wNDA3NTQwNjQwMDAwNV0sWzkwLjQyMDU2NTg4MTAwMDA3LDIzLjA0MDYzNTQwMTAwMDAzXSxbOTAuNDIwNzQ5MTkzMDAwMDYsMjMuMDQwNTM1NTQ4MDAwMDRdLFs5MC40MjA5OTAzNDUwMDAwNiwyMy4wNDAzOTgyNzcwMDAwN10sWzkwLjQyMTQyMDY5NzAwMDAzLDIzLjA0MDA5NDUxNjAwMDA3XSxbOTAuNDIxNjQ0NjQ1MDAwMDcsMjMuMDM5OTE4MzM1MDAwMDRdLFs5MC40MjIzODc0MjcwMDAwNSwyMy4wMzkyNTI0MDYwMDAwNl0sWzkwLjQyMjU2NzQwMDAwMDA1LDIzLjAzOTA2MTA5NTAwMDAyXSxbOTAuNDIyNzA4NDM3MDAwMDQsMjMuMDM4OTAzNzY1MDAwMDRdLFs5MC40MjI4NTcyNjMwMDAwOCwyMy4wMzg3MDA2ODIwMDAwN10sWzkwLjQyMjk2NDc0NTAwMDA2LDIzLjAzODU0MjMxMjAwMDA2XSxbOTAuNDIzMDQ1NDc5MDAwMDUsMjMuMDM4NDE0NTAxMDAwMDNdLFs5MC40MjMxMjkxMjUwMDAwNiwyMy4wMzgyNDIwNzkwMDAwNF0sWzkwLjQyMzIxODIwMjAwMDA0LDIzLjAzODA1MDQ0OTAwMDAyXSxbOTAuNDIzMzE1MDA3MDAwMDQsMjMuMDM3Nzk0NDMzMDAwMDRdLFs5MC40MjM1Njk4OTAwMDAwNywyMy4wMzY5NzkwNjEwMDAwN10sWzkwLjQyMzYzNDQ3MzAwMDA1LDIzLjAzNjc1ODEzNjAwMDA2XSxbOTAuNDIzNjg3OTk2MDAwMDcsMjMuMDM2NTExODM1MDAwMDZdLFs5MC40MjM3MzQ4MTQwMDAwNiwyMy4wMzYyNjc4MTAwMDAwM10sWzkwLjQyMzc2MjkyMzAwMDA4LDIzLjAzNjA4ODE5NzAwMDAzXSxbOTAuNDIzODY3NzUyMDAwMDQsMjMuMDM1Mjc3NzQyMDAwMDZdLFs5MC40MjM4ODczMjYwMDAwNiwyMy4wMzUwOTk4NDYwMDAwNF0sWzkwLjQyMzkwNTU5NTAwMDA2LDIzLjAzNDg5NDg1MzAwMDAzXSxbOTAuNDIzODAyMTE5MDAwMDcsMjMuMDMzNzk3MDIwMDAwMDddLFs5MC40MjM3ODM5MTUwMDAwNiwyMy4wMzM2MzI3NzUwMDAwNl0sWzkwLjQyMzczMTYzNDAwMDAzLDIzLjAzMzI5OTgxMTAwMDA2XSxbOTAuNDIzNjg1MTczMDAwMDgsMjMuMDMzMDcyNDA4MDAwMDddLFs5MC40MjM2MzE5NTcwMDAwNSwyMy4wMzI4MzA5MTAwMDAwM10sWzkwLjQyMzQ0NzE4MjAwMDA3LDIzLjAzMjA2ODA5MDAwMDA1XSxbOTAuNDIzMTM3NTI1MDAwMDcsMjMuMDMxMzU4NjczMDAwMDZdLFs5MC40MjI4OTM3MjkwMDAwNywyMy4wMzA4Mzc2NTEwMDAwN10sWzkwLjQyMjU2NDExNjAwMDA1LDIzLjAzMDE4MTkyMzAwMDA0XSxbOTAuNDIyMjU0MjQyMDAwMDcsMjMuMDI5NTk1NTg1MDAwMDRdLFs5MC40MjIwMDM1OTQwMDAwNSwyMy4wMjkyMjI1MDAwMDAwNl0sWzkwLjQyMTk5MTk1MzAwMDAzLDIzLjAyOTIwNjcyMzAwMDA3XSxbOTAuNDIxODk2NDA5MDAwMDYsMjMuMDI5MDgyMjA0MDAwMDhdLFs5MC40MjE1NzY4NzUwMDAwOCwyMy4wMjg3MjIyODgwMDAwNF0sWzkwLjQyMTUxNzQ5OTAwMDA2LDIzLjAyODY1NTgyNjAwMDAzXSxbOTAuNDIxNDA0ODg3MDAwMDUsMjMuMDI4NTM1MzA1MDAwMDVdLFs5MC40MjEyOTE3NDIwMDAwNSwyMy4wMjg0Mzk2MjcwMDAwN10sWzkwLjQyMDk5NzU4NzAwMDA0LDIzLjAyODE5ODIwNDAwMDAzXSxbOTAuNDIwODE2NTc0MDAwMDcsMjMuMDI4MDUwNzY1MDAwMDVdLFs5MC40MjAxNzA5NDIwMDAwOCwyMy4wMjc1NzE0NTYwMDAwM10sWzkwLjQxODY2OTA5NjAwMDAzLDIzLjAyNjU2MjAxMTAwMDA3XSxbOTAuNDE4Mjg5NTM2MDAwMDMsMjMuMDI2MzE1MTYyMDAwMDZdLFs5MC40MTgxODgwOTUwMDAwNiwyMy4wMjYyNTUwMjAwMDAwNl0sWzkwLjQxNzkwNTk1OTAwMDA1LDIzLjAyNjE0OTA1OTAwMDAzXSxbOTAuNDE3NjYyOTU3MDAwMDYsMjMuMDI2MDc0MDQ1MDAwMDNdLFs5MC40MTc1MzM1MzcwMDAwNSwyMy4wMjYwMzk5NDgwMDAwNl0sWzkwLjQxNzQwNTk3MDAwMDA2LDIzLjAyNjAxMzE4NTAwMDA3XSxbOTAuNDE2NjA2OTkwMDAwMDUsMjMuMDI1NjQ0OTI0MDAwMDZdLFs5MC40MTQ3OTQyMzQwMDAwNiwyMy4wMjQ0Nzg3NDAwMDAwNl0sWzkwLjQxMzA4NzgyNzAwMDA4LDIzLjAyMzM3MjY2NzAwMDA1XSxbOTAuNDEyMzM2NjU1MDAwMDUsMjMuMDIyNjcwMDI2MDAwMDddLFs5MC40MTIwNzIyMjYwMDAwOCwyMy4wMjIzNjU4NDAwMDAwOF0sWzkwLjQwNzcwMTgyODAwMDA5LDIzLjAxNzI4MjkxNzAwMDA1XSxbOTAuNDA3NjE5NzY2MDAwMDQsMjMuMDE3MTczNjAwMDAwMDRdLFs5MC40MDc1NTA1NjQwMDAwOCwyMy4wMTcwODA2MjIwMDAwNF0sWzkwLjQwNzUyNTQyODAwMDA0LDIzLjAxNzAzNzc3ODAwMDAzXSxbOTAuNDA3NDQ4NzkzMDAwMDcsMjMuMDE2OTA2OTkzMDAwMDhdLFs5MC40MDc0MTY5MDIwMDAwOCwyMy4wMTY4NDg5MjEwMDAwOF0sWzkwLjQwNzM5MDUyOTAwMDA1LDIzLjAxNjgwMDQzNjAwMDA0XSxbOTAuNDA3MTg3NzQ3MDAwMDgsMjMuMDE2Mjk5NjA2MDAwMDhdLFs5MC40MDcxNzY3NjIwMDAwNiwyMy4wMTYwOTQxMjYwMDAwNF0sWzkwLjQwNzA5NTQwMjAwMDA0LDIzLjAxNDE4NTQ3NzAwMDA3XSxbOTAuNDA3MDk3NjM5MDAwMDksMjMuMDE0MTE4Mjg2MDAwMDRdLFs5MC40MDcxMDE1NjgwMDAwMywyMy4wMTQwMDQ3OTMwMDAwM10sWzkwLjQwNzExMjgzMzAwMDA0LDIzLjAxMzY5MzY3OTAwMDAzXSxbOTAuNDA3MTIxNDY1MDAwMDUsMjMuMDEzNTIxNDU5MDAwMDZdLFs5MC40MDcxMjYwNjkwMDAwNywyMy4wMTM0Mjk5ODQwMDAwM10sWzkwLjQwNzg5Mzc5MTAwMDA1LDIzLjAwNzA4Mzc3MzAwMDAzXSxbOTAuNDA5NjU5NTUzMDAwMDQsMjMuMDA2OTIzMzg5MDAwMDZdLFs5MC40MTAxODc1NzUwMDAwNywyMy4wMDY4NzU3MjYwMDAwM10sWzkwLjQxMDI0NTUwMTAwMDA4LDIzLjAwNjg3MTA1OTAwMDA1XSxbOTAuNDExMjU2NTQ5MDAwMDksMjMuMDA2ODIxNTc2MDAwMDVdLFs5MC40MTIwNzAwODQwMDAwNSwyMy4wMDY4MDE5NjAwMDAwOF0sWzkwLjQxMzA5MjQyNTAwMDA2LDIzLjAwNjg1NTc1NDAwMDA3XSxbOTAuNDE3MzQzNzc0MDAwMDcsMjMuMDA3MTg3ODc2MDAwMDVdLFs5MC40MjQxNjU3ODYwMDAwNiwyMy4wMDkwNjIyMzUwMDAwNF0sWzkwLjQ0MjYzNjY3MjAwMDA1LDIzLjAxMjgyNDg3MTAwMDA4XSxbOTAuNDUwMjU2NDAyMDAwMDQsMjMuMDEzNzU5MjI0MDAwMDddLFs5MC40NTIzMjM2MTQwMDAwOCwyMy4wMTQxODM1NDMwMDAwNl0sWzkwLjQ1NTI2OTE1MjAwMDA4LDIzLjAxNDc5NjcwNTAwMDA0XSxbOTAuNDU3MzYyNjU5MDAwMDcsMjMuMDE1NDEyMjc1MDAwMDddLFs5MC40NzY2NDUwNTMwMDAwOCwyMy4wMjUwMTA4NDQwMDAwNl0sWzkwLjQ4Mjg4MTQzNTAwMDA4LDIzLjAyODYyNTAwNjAwMDAzXSxbOTAuNDg2OTcwNDEyMDAwMDYsMjMuMDMxMjQxNzE5MDAwMDRdLFs5MC40ODk0OTU2MjkwMDAwMywyMy4wMzMwNTI5OTkwMDAwNl0sWzkwLjQ5MTIxNjY1MzAwMDA0LDIzLjAzNDI4NzQ3OTAwMDA2XSxbOTAuNDk0NzkyNTA2MDAwMDcsMjMuMDM3NjIyNTkyMDAwMDVdLFs5MC40OTYzNzM4NzUwMDAwNywyMy4wMzkzMzg0NzAwMDAwOF0sWzkwLjQ5Njk0Nzg1MzAwMDA1LDIzLjA0MDgxODY4NDAwMDA0XSxbOTAuNDk3NjM3MzI2MDAwMDcsMjMuMDQ1ODM1NjA2MDAwMDNdLFs5MC40OTc4MTU4MjYwMDAwOCwyMy4wNDg3NTU2MDMwMDAwN10sWzkwLjQ5MjA4NzY3MDAwMDA1LDIzLjA0OTU0OTI1OTAwMDA2XSxbOTAuNDg3Mzk0ODc5MDAwMDgsMjMuMDUwMjA5MTA1MDAwMDhdLFs5MC40ODczMzA0MTkwMDAwNSwyMy4wNTA2MDU2MzcwMDAwNV0sWzkwLjQ4NzM1NjE1MzAwMDA2LDIzLjA1MDgwNTk4MjAwMDA0XSxbOTAuNDg3MzYzMTgxMDAwMDMsMjMuMDUxNDAyNzE5MDAwMDddLFs5MC40ODczNjMwOTYwMDAwOCwyMy4wNTE4ODc2OTAwMDAwNl0sWzkwLjQ4NzMwMjE2NTAwMDA3LDIzLjA1MzA5NjA3NDAwMDA1XSxbOTAuNDg3MjUwMzA4MDAwMDYsMjMuMDUzNjA0OTE4MDAwMDhdLFs5MC40ODcyMDgyMTMwMDAwMywyMy4wNTM5NDQzNTgwMDAwMl0sWzkwLjQ4NzA5MDg3NDAwMDA1LDIzLjA1NDU2NzQ0OTAwMDA1XSxbOTAuNDg3MDAwNjMwMDAwMDcsMjMuMDU0OTIwNTg2MDAwMDRdLFs5MC40ODY5Mjc4MTgwMDAwOCwyMy4wNTUyMDE0MDcwMDAwM10sWzkwLjQ4NjgyMzM3ODAwMDA1LDIzLjA1NTUwOTQyMzAwMDA1XSxbOTAuNDg1MTAyODI0MDAwMDgsMjMuMDYwMjYxMTEwMDAwMDZdLFs5MC40ODQ5ODI1MTAwMDAwNywyMy4wNjA1Njg2MDgwMDAwNF0sWzkwLjQ4Mjg4MzgyMDAwMDA0LDIzLjA2NTA1NzIwNzAwMDA1XSxbOTAuNDgyNjA0NTgzMDAwMDcsMjMuMDY1NjI5OTc2MDAwMDNdLFs5MC40OTg1MTAzNzUwMDAwOCwyMy4wNjkwNDQ4NDIwMDAwNF0sWzkwLjQ5ODc3MzQzMzAwMDA1LDIzLjA3MzY5OTUwMDAwMDAzXSxbOTAuNDk4OTg3MDgwMDAwMDYsMjMuMDc1NzA2NDUzMDAwMDddLFs5MC40OTkxNzI4OTQwMDAwOCwyMy4wNzY5NDkwNjEwMDAwNV0sWzkwLjUwMTU3NjQ3MDAwMDAzLDIzLjA4NDM1MDM1NjAwMDA3XSxbOTAuNTAzMDkwNjY2MDAwMDUsMjMuMDg4NTA0MTkyMDAwMDddLFs5MC41MDUwMzk5ODQwMDAwNiwyMy4wOTE2NTI4MDcwMDAwNl0sWzkwLjUxMTExNzA0MTAwMDAzLDIzLjEwMDA0NjUxNjAwMDA4XSxbOTAuNTEzMzc1MzAwMDAwMDYsMjMuMTAyODExMjM3MDAwMDNdLFs5MC41MTQzMDkyMzQwMDAwNSwyMy4xMDM4MTIwMDcwMDAwNF0sWzkwLjUxNTYwNTU4NTAwMDA2LDIzLjEwNTA5ODM4OTAwMDAzXSxbOTAuNTE5OTYwNzE4MDAwMDUsMjMuMTA4ODYwNTIwMDAwMDZdLFs5MC41MjMwNDUyMjEwMDAwNywyMy4xMTEzMzYxMzQwMDAwNl0sWzkwLjUyNjg0MDgxODAwMDA0LDIzLjExMzk0MzY3OTAwMDA0XSxbOTAuNTMzMjUxNjI2MDAwMDQsMjMuMTE3OTkzODIyMDAwMDddLFs5MC41NDEwNzU1OTUwMDAwNSwyMy4xMjMwMzQxOTEwMDAwNF0sWzkwLjU0NTQwMjcwMjAwMDA1LDIzLjEyNTg4NzI5ODAwMDA3XSxbOTAuNTQ5MjkxMjYzMDAwMDQsMjMuMTI4OTMyNjMzMDAwMDNdLFs5MC41NTQ1MzAyNTcwMDAwNywyMy4xMzM1OTkwODAwMDAwN10sWzkwLjU1NjI3NTkxNTAwMDA3LDIzLjEzNTE2OTIwNDAwMDA4XSxbOTAuNTYxMjE0MTgxMDAwMDgsMjMuMTQ0MDMwMDc1MDAwMDVdLFs5MC41NzE3MTg2NDQwMDAwNCwyMy4xNTI0MjQ2NzAwMDAwN10sWzkwLjU3MjcwNTYyNzAwMDA2LDIzLjE1MzY1NzQ4MzAwMDA3XSxbOTAuNTc1MDQ2NDQ5MDAwMDcsMjMuMTU3MDkwNTQyMDAwMDVdLFs5MC41Nzc1ODM3OTAwMDAwNiwyMy4xNjEwNDUwNjUwMDAwNV0sWzkwLjU3ODIyMTQ4MjAwMDA2LDIzLjE2MjI0MTI5NDAwMDA3XSxbOTAuNTgwMjI5NDUyMDAwMDgsMjMuMTY2Mjk3MDczMDAwMDddLFs5MC41OTE3NzA1OTgwMDAwNCwyMy4xODY3NjAxNDYwMDAwNF0sWzkwLjYwMjg2NjMzNTAwMDA0LDIzLjIwNTE2ODk3NDAwMDA2XSxbOTAuNjA2NzY3ODQzMDAwMDYsMjMuMjExNzcxMTYxMDAwMDZdLFs5MC42MDc3NjM0ODQwMDAwMywyMy4yMTM1MzMyNTQwMDAwM10sWzkwLjYwNTU3OTk4NTAwMDA4LDIzLjIxNzA5MDQ4NzAwMDA2XSxbOTAuNjAyMTgzMjQ4MDAwMDcsMjMuMjI0MDU3MTkwMDAwMDVdLFs5MC42MDEyNDc5MDAwMDAwMywyMy4yMjY3NTg3ODkwMDAwM10sWzkwLjU5NTkxOTc5ODAwMDA3LDIzLjIyNzI5NDUyMDAwMDA0XSxbOTAuNTk2NTMwMTE1MDAwMDYsMjMuMjMwMDU1NzEzMDAwMDddLFs5MC41OTczNjg0MTEwMDAwNSwyMy4yMzE0NjM5MjMwMDAwNF0sWzkwLjU5NzY1MjE2MjAwMDAzLDIzLjIzMTk0MjE1NDAwMDAyXSxbOTAuNTk4MTAyMzEwMDAwMDYsMjMuMjMyNDcxNjkwMDAwMDddLFs5MC41OTMyODk2NzEwMDAwNCwyMy4yMzUxMDM4MzEwMDAwNl0sWzkwLjU4MjI5MjYzODAwMDA3LDIzLjI0NTY2MDk3OTAwMDA0XSxbOTAuNTc1MDA1ODIxMDAwMDUsMjMuMjUzMjM5OTA1MDAwMDRdLFs5MC41NzQ0MzgwMjIwMDAwNCwyMy4yNTM2MjQ3NTMwMDAwNV0sWzkwLjU3Mzg2OTgwNjAwMDA2LDIzLjI1Mzc3MDIyNzAwMDA4XSxbOTAuNTczNDU1OTYxMDAwMDQsMjMuMjUzNzIzNzUxMDAwMDVdLFs5MC41NjQ1OTAzMzYwMDAwNCwyMy4yNjE0MDM5MzUwMDAwM10sWzkwLjU2Mjk2Nzk2MTAwMDA4LDIzLjI2MzEzMDUzMjAwMDA1XSxbOTAuNTU3MzAxODQ4MDAwMDcsMjMuMjY5MTczNDQ1MDAwMDRdLFs5MC41NTYwNjU5MjUwMDAwNCwyMy4yNzA1NjM4MTYwMDAwNV0sWzkwLjU1Mjg1MDUyMTAwMDA0LDIzLjI3NDg3NzEwMjAwMDA2XSxbOTAuNTUyNDM5MzYwMDAwMDUsMjMuMjc1NjQzNTI1MDAwMDhdLFs5MC41NTEyMDQzMDkwMDAwNywyMy4yNzcyNzI2NjMwMDAwOF0sWzkwLjU1MDEyMzA3ODAwMDA3LDIzLjI3ODU2NzAzNDAwMDA1XSxbOTAuNTQ2Nzc1MzkzMDAwMDgsMjMuMjgyMzA3MDcxMDAwMDVdLFs5MC41NDU2NDE1NDcwMDAwNiwyMy4yODM0NTgxOTcwMDAwN10sWzkwLjU0NDI0NzYyMTAwMDA3LDIzLjI4NDIyODAxMzAwMDA3XSxbOTAuNTE5ODcxMjMzMDAwMDYsMjMuMjk2MDY5Mjk0MDAwMDZdLFs5MC41MTM3MTg0MTQwMDAwNCwyMy4yOTc1MjM1NDMwMDAwN10sWzkwLjUwODI5MjIwMzAwMDA1LDIzLjI5OTQ2NDY3NDAwMDAzXSxbOTAuNTAyMTA2NjAxMDAwMDQsMjMuMzAxODY5Mjk2MDAwMDZdLFs5MC41MDIyMTU3NDgwMDAwOCwyMy4zMDI0NTEwMDYwMDAwN10sWzkwLjUwMjU0MzU1ODAwMDA3LDIzLjMwMzk2NjkyNDAwMDA2XSxbOTAuNTAyODQ2OTc2MDAwMDYsMjMuMzA1MDA4MTI2MDAwMDhdLFs5MC41MDI5OTQ5NzMwMDAwNiwyMy4zMDU1MTYzMTkwMDAwNV0sWzkwLjUwMzAxNDE3MDAwMDA5LDIzLjMwNTU4Mjg3NjAwMDA3XSxbOTAuNTAzNTcwNTY4MDAwMDQsMjMuMzA3OTAwODU4MDAwMDRdLFs5MC41MDM4NDg5OTkwMDAwNywyMy4zMDkyODE0MzYwMDAwNV0sWzkwLjUwNDM3MDQ5NjAwMDA0LDIzLjMxMzg0NDc3NDAwMDA3XSxbOTAuNTA0MzgzNDMxMDAwMDYsMjMuMzE0MTk0NzU4MDAwMDRdLFs5MC41MDQzOTgxNzgwMDAwMywyMy4zMTQ4NjMxNDYwMDAwNV0sWzkwLjUwNDM5MTg3NDAwMDA4LDIzLjMxNDk3NDM4NDAwMDA0XSxbOTAuNTA0MzczNzQ4MDAwMDMsMjMuMzE1MTkyOTI2MDAwMDddLFs5MC41MDQzNjY3MzEwMDAwNiwyMy4zMTUyNzcwNjgwMDAwNl0sWzkwLjUwNDM0OTU4NzAwMDA0LDIzLjMxNTQzMTgxMjAwMDA0XSxbOTAuNTA0MjgyODAwMDAwMDYsMjMuMzE1NzE0MzA2MDAwMDddLFs5MC41MDQxNzU4NDkwMDAwMywyMy4zMTU4ODI4ODgwMDAwM10sWzkwLjUwMTQ1MDQzOTAwMDA1LDIzLjMxODczNzU2NTAwMDA1XSxbOTAuNDk5ODMyNDcxMDAwMDUsMjMuMzE5OTE5ODM2MDAwMDVdLFs5MC40OTgwNjc1MTgwMDAwOCwyMy4zMjEwMzc2MzMwMDAwNl0sWzkwLjQ5Nzc0NDcwNjAwMDA1LDIzLjMyMTE5MTA5MTAwMDA2XSxbOTAuNDk3MTU4Nzg0MDAwMDgsMjMuMzIzNTc5MzMzMDAwMDVdLFs5MC40OTc1ODQyNjIwMDAwMywyMy4zMjQ4OTIyNzMwMDAwNV0sWzkwLjUwMzE1NTkyNjAwMDAzLDIzLjMyNjg0NjQ3NzAwMDA2XSxbOTAuNTEyMjg0MzU4MDAwMDQsMjMuMzI4NDI5ODM1MDAwMDddLFs5MC41MTg4ODA5MzcwMDAwNiwyMy4zMjc2OTExNDEwMDAwNl0sWzkwLjUxOTg1MDMzNjAwMDA1LDIzLjMyNzMyOTQzNDAwMDAzXSxbOTAuNTIwMjM4MzMwMDAwMDQsMjMuMzI3MTE5MjYzMDAwMDRdLFs5MC41MjA2MjUwOTkwMDAwOSwyMy4zMjY5MDkwOTEwMDAwNl0sWzkwLjUyMTQ2NDQyMDAwMDA5LDIzLjMyNjQyODEyMTAwMDA1XSxbOTAuNTIyMDMwMjU2MDAwMDUsMjMuMzI2MjA1NDk2MDAwMDZdLFs5MC41MjI2OTE5MjUwMDAwNiwyMy4zMjU5NDU4NTIwMDAwN10sWzkwLjUyMzkxOTk4MzAwMDA0LDIzLjMyNTc2Mjc4NzAwMDAzXSxbOTAuNTI0ODI2MTk4MDAwMDgsMjMuMzI1ODE5NTk3MDAwMDhdLFs5MC41MjUyODAxMjUwMDAwNSwyMy4zMjYwNTY4ODMwMDAwNF0sWzkwLjUyNTgwMTQ0MjAwMDA0LDIzLjMyNjk1MTA4NDAwMDAzXSxbOTAuNTI1ODY3NzQ4MDAwMDUsMjMuMzI3NDg4ODgzMDAwMDZdLFs5MC41MjYyMTU0NDcwMDAwOCwyMy4zMzQ1ODk4MTcwMDAwNV0sWzkwLjUyNDUzNTY0NzAwMDA1LDIzLjMzNDE4NTAxOTAwMDA3XSxbOTAuNTE5NzQ1NjA3MDAwMDYsMjMuMzMzNzIzMzcxMDAwMDhdLFs5MC41MTUzOTI0MDMwMDAwOCwyMy4zMzMzMzYzNTcwMDAwNl0sWzkwLjUwNjI4MzY2ODAwMDA0LDIzLjMzMjY5MTk4MDAwMDA1XSxbOTAuNTA1ODA1Njk3MDAwMDgsMjMuMzMyNzIyODgxMDAwMDVdLFs5MC41MDU4Mzc1ODcwMDAwMywyMy4zMzM1NTYwNjIwMDAwN10sWzkwLjUwNjg2OTk4MjAwMDA3LDIzLjMzMzgyNDg0MjAwMDA3XSxbOTAuNTExNzI2ODU2MDAwMDUsMjMuMzM0ODI1MjUwMDAwMDVdLFs5MC41MTY5NzExNzQwMDAwNSwyMy4zMzU3NjM4MjMwMDAwNF0sWzkwLjUzMjY3NDk5NDAwMDA1LDIzLjMzNzMwMDk5MTAwMDA2XSxbOTAuNTQ3MjQ0MDkyMDAwMDgsMjMuMzM2ODIwNTc4MDAwMDddLFs5MC41Njg0OTI0MzgwMDAwOCwyMy4zMzY2NDk0OTAwMDAwN10sWzkwLjU4NjMyNDE0MzAwMDA3LDIzLjMzNjQ0MDM1OTAwMDA1XSxbOTAuNTg3MzU4OTc0MDAwMDQsMjMuMzM2Mzg4NDk2MDAwMDRdLFs5MC41ODgzNDI0NDYwMDAwNywyMy4zMzYzMzY4MTgwMDAwNl0sWzkwLjU5MDY3MzcyMjAwMDA4LDIzLjMzNTk0NTg0NDAwMDA0XSxbOTAuNTg3ODA0MzU4MDAwMDgsMjMuMzQyNzA4MDk1MDAwMDNdLFs5MC41ODM1NDM5MjkwMDAwOSwyMy4zNTAyMjIzODIwMDAwM10sWzkwLjU4MzUwMDI0MzAwMDA2LDIzLjM1MDI5OTMyNTAwMDA0XSxbOTAuNTgyOTY3Mzg3MDAwMDUsMjMuMzUwOTMyNDc3MDAwMDddLFs5MC41ODI3MjE2MzUwMDAwNCwyMy4zNTEyMjM1NjkwMDAwN10sWzkwLjU3NjM4NjgxNjAwMDA4LDIzLjM1NzY3MjcyODAwMDA3XSxbOTAuNTc2MDYxNzE4MDAwMDYsMjMuMzU4MDAzNjIyMDAwMDddLFs5MC41NzU4NTYyMDkwMDAwNSwyMy4zNTgxMzMwOTcwMDAwNl0sWzkwLjU3NTYwNDc2NDAwMDA1LDIzLjM1ODI0NDY3MzAwMDA2XSxbOTAuNTczODEyMjY0MDAwMDgsMjMuMzU5MDM1OTc4MDAwMDddLFs5MC41NTY5MjUxMDMwMDAwOCwyMy4zNjQ2MTk5NzgwMDAwNl0sWzkwLjU1MDQ4OTU1NTAwMDA3LDIzLjM2NjIzNTkxMTAwMDA1XSxbOTAuNTQ2ODEzMDg0MDAwMDYsMjMuMzY3NDE3NDIyMDAwMDddLFs5MC41NDU0MzY2MzYwMDAwMywyMy4zNjg0ODQxNDcwMDAwNl0sWzkwLjU0NDQ4ODU4ODAwMDA0LDIzLjM2OTQ4NzI2OTAwMDA1XSxbOTAuNTQ0Mjk1NzkxMDAwMDgsMjMuMzY5NzQ2NTA0MDAwMDNdLFs5MC41NDQxNDAxNDMwMDAwNSwyMy4zNjk5Njc3ODYwMDAwN10sWzkwLjU0Mzk0Njg4NjAwMDA3LDIzLjM3MDI2NDI4MjAwMDA1XSxbOTAuNTQzNTc1MjMwMDAwMDQsMjMuMzcwOTAyOTUyMDAwMDVdLFs5MC41NDMzMDg2NDQwMDAwNCwyMy4zNzEzNjM5ODYwMDAwNl0sWzkwLjU0MzIwMTE5MzAwMDA3LDIzLjM3MTU1OF0sWzkwLjUzODgxODQwMTAwMDA3LDIzLjM3OTYwMzg5NDAwMDA3XSxbOTAuNTM4NzUyMDIxMDAwMDUsMjMuMzg0ODE3MTgyMDAwMDZdLFs5MC41Mzg3MjA1NzUwMDAwNywyMy4zODgwODIwODMwMDAwM10sWzkwLjUzODc0OTM0NjAwMDAzLDIzLjM4ODY5MzM5NDAwMDAzXSxbOTAuNTM4Nzc3NzIzMDAwMDcsMjMuMzg5MjA3MDM2MDAwMDddLFs5MC41MzkwMjI1MTMwMDAwOCwyMy4zOTA5MDQ5MjMwMDAwNV0sWzkwLjUzOTQxOTAwMTAwMDA2LDIzLjM5MjE1MTIxMTAwMDA1XSxbOTAuNTQxMDY1NDk0MDAwMDcsMjMuMzk2ODEyNjUzMDAwMDRdLFs5MC41NDIwNTkzNTUwMDAwNSwyMy4zOTk0OTgxNTcwMDAwNF0sWzkwLjU0NTg0MzU0MzAwMDA1LDIzLjQwNjMxMzIwMzAwMDAyXSxbOTAuNTQ3MDY5ODgwMDAwMDQsMjMuNDA4MDcwODcxMDAwMDZdLFs5MC41NDczMjE1MjIwMDAwNiwyMy40MDg0MjQ1MjQwMDAwNV0sWzkwLjU1Mzc0NzU3NTAwMDA1LDIzLjQxNzQwNzU0NjAwMDA1XSxbOTAuNTU1OTcwNzAwMDAwMDUsMjMuNDIwMzQyNjMzMDAwMDhdLFs5MC41NTYzNDQ2MzYwMDAwNiwyMy40MjA4MTcyMTMwMDAwOF0sWzkwLjU1OTA2OTI1NTAwMDA1LDIzLjQyNDI2NzU5MDAwMDA2XSxbOTAuNTYyNTY3NzQ1MDAwMDgsMjMuNDI4NTQwNDk0MDAwMDZdLFs5MC41NjQ4NzM3MDYwMDAwNywyMy40MzExNTM5MTkwMDAwNV0sWzkwLjU2NjQ1NTg0NDAwMDA3LDIzLjQzMjczMjMwMjAwMDAzXSxbOTAuNTcwMDE0MDczMDAwMDQsMjMuNDM2NTYwNTE0MDAwMDZdLFs5MC41NzAzMDkxODEwMDAwOCwyMy40MzY4OTMwODIwMDAwNF0sWzkwLjU3MDM5NzgwMzAwMDA1LDIzLjQzNzAxMzU3MjAwMDA3XSxbOTAuNTcwNTA2MTI0MDAwMDgsMjMuNDM3MTYyMjE1MDAwMDZdLFs5MC41NzA1NjQ2MzYwMDAwOSwyMy40MzcyNTIzMjkwMDAwNV0sWzkwLjU3NDI1ODQyODAwMDA2LDIzLjQ0Mjk0NDYzMzAwMDAyXSxbOTAuNTc0NTIyNDM4MDAwMDMsMjMuNDQzNTc5MzM3MDAwMDddLFs5MC41NzczNzg5NjcwMDAwNywyMy40NTA4MzYxNjMwMDAwOF0sWzkwLjU3NzYyMzUxNTAwMDA4LDIzLjQ1MTQ5MDY5MzAwMDA0XSxbOTAuNTc3Njg2OTQyMDAwMDcsMjMuNDUxNzIzNjE0MDAwMDZdLFs5MC41Nzc3NTcwMDkwMDAwNCwyMy40NTIwNzYxOTMwMDAwNF0sWzkwLjU3ODYzOTk5NTAwMDA2LDIzLjQ2MDM2MzIzMDAwMDA0XSxbOTAuNTgzODg1OTk2MDAwMDUsMjMuNDc4MTIyNzgyMDAwMDddLFs5MC41ODQwNTEyMTEwMDAwMywyMy40Nzg4MTAzMzcwMDAwM10sWzkwLjU4NDEwMTk0ODAwMDA3LDIzLjQ3OTA3NDM1MjAwMDA1XSxbOTAuNTg0MTkzMDMwMDAwMDUsMjMuNDc5NjA1MjQ0MDAwMDNdLFs5MC41ODQyNTMzMzUwMDAwOCwyMy40Nzk5NTcyOTEwMDAwNl0sWzkwLjU4NDI4NDIzMjAwMDA3LDIzLjQ4MDE2MzIzMjAwMDA1XSxbOTAuNTg0Mjc2OTE1MDAwMDMsMjMuNDgwNTg2MTAwMDAwMDRdLFs5MC41ODQyNTkwOTgwMDAwOCwyMy40ODA4NDg2NzkwMDAwOF0sWzkwLjU4NDA3MjE4NjAwMDA3LDIzLjQ4MjQ2MTcwNzAwMDAzXSxbOTAuNTgzOTM3MjIyMDAwMDMsMjMuNDgyODA3NzEyMDAwMDddLFs5MC41ODM4NDAxNzkwMDAwNSwyMy40ODMwMDg0ODcwMDAwNl0sWzkwLjU4MzQ1MzcxMTAwMDA2LDIzLjQ4Mzc4Mjc4OTAwMDAzXSxbOTAuNTgzMjExMDAyMDAwMDQsMjMuNDg0MTI0MTE1MDAwMDRdLFs5MC41ODMwMDY5NTgwMDAwNiwyMy40ODQzNTAxMzAwMDAwNV0sWzkwLjU4MjkxOTA2NjAwMDA0LDIzLjQ4NDQwNTc4MjAwMDA3XSxbOTAuNTgyNjc1NTE4MDAwMDMsMjMuNDg0NTU2Mjk3MDAwMDRdLFs5MC41ODI1NTgzMDQwMDAwMywyMy40ODQ2MjUwNDMwMDAwNV0sWzkwLjU4MjI4NTM3NjAwMDA3LDIzLjQ4NDc3NTEwMzAwMDA2XSxbOTAuNTgyMDUwODE4MDAwMDgsMjMuNDg0ODgyNjc4MDAwMDhdLFs5MC41ODE5MjM3MzkwMDAwNSwyMy40ODQ5MzUwODkwMDAwM10sWzkwLjU4MTc3NzAxNDAwMDA3LDIzLjQ4NDk3MzQ2MDAwMDA1XSxbOTAuNTgwODc2Njc2MDAwMDYsMjMuNDg1MTEyODczMDAwMDVdLFs5MC41Nzg0NzA4MzcwMDAwNSwyMy40ODUxNTA2MTEwMDAwNV0sWzkwLjU3ODE2NzIwMjAwMDAzLDIzLjQ4NTEzODE4ODAwMDA2XSxbOTAuNTc3Nzk1NjE0MDAwMDgsMjMuNDg1MTIyNjMxMDAwMDJdLFs5MC41NzczMTExMzEwMDAwNCwyMy40ODY0NDk0MDMwMDAwNV0sWzkwLjU3NjgzMzg1OTAwMDAzLDIzLjQ4ODE2OTYzMTAwMDA2XSxbOTAuNTc2NDM3MDg5MDAwMDgsMjMuNDkwMTA2OTA4MDAwMDNdLFs5MC41NzYyNjM3NzkwMDAwNCwyMy40OTEwNzE3ODIwMDAwNl0sWzkwLjU3NTk5Mzk5NjAwMDA4LDIzLjQ5MjY1NTE4NzAwMDAzXSxbOTAuNTc1ODMxNjc4MDAwMDQsMjMuNDkzNjE1NTA0MDAwMDVdLFs5MC41NzU4NDU4MjEwMDAwOSwyMy40OTQ0NzU4MTIwMDAwOF0sWzkwLjU3NTg5ODI0MDAwMDA3LDIzLjQ5NDk4ODIyMDAwMDA0XSxbOTAuNTc1OTU3NDg2MDAwMDUsMjMuNDk1MzgxNDg2MDAwMDRdLFs5MC41NzYxMjU0MTQwMDAwNSwyMy40OTU3MTE2ODUwMDAwNl0sWzkwLjU3NjQ0NTY5ODAwMDA0LDIzLjQ5NTg4NzIwMjAwMDA2XSxbOTAuNTc2NjM1MTQzMDAwMDMsMjMuNDk1OTU3MDY5MDAwMDRdLFs5MC41NzY3NzI0NjcwMDAwNywyMy40OTYwMDU2NzUwMDAwNV0sWzkwLjU3Njg5OTI2MzAwMDA5LDIzLjQ5NjAyNjA5NDAwMDA2XSxbOTAuNTk4MzM4NjY5MDAwMDQsMjMuNDk3ODU2NzcwMDAwMDZdLFs5MC42MDA3NjkwNzUwMDAwNywyMy40OTgwNTkxMjEwMDAwNF0sWzkwLjYwMTA0ODI3NjAwMDA5LDIzLjQ5ODA3NjEwODAwMDA4XSxbOTAuNjAxMjg3NjMzMDAwMDgsMjMuNDk4MDgwMjY1MDAwMDZdLFs5MC42MDE0MTE4NTAwMDAwMywyMy40OTgwNzA3NTIwMDAwNV0sWzkwLjYwMTk1NzI1MjAwMDAzLDIzLjQ5NzkzNzExMDAwMDA3XSxbOTAuNjAyMDIxOTMxMDAwMDgsMjMuNDk3ODkyMjYxMDAwMDZdLFs5MC42MDIxODA1NzQwMDAwNCwyMy40OTc2NDU1MDkwMDAwNV0sWzkwLjYwMjI4NjEyNDAwMDA1LDIzLjQ5NzMwMDE2ODAwMDA0XSxbOTAuNjAyMzkxNTExMDAwMDYsMjMuNDk3MDUzNjIzMDAwMDZdLFs5MC42MDI3NjEzMTIwMDAwNCwyMy40OTYyNjQ2NjIwMDAwNF0sWzkwLjYwMzI0NjcxMDAwMDA2LDIzLjQ5NTQ1NzE4ODAwMDA1XSxbOTAuNjAzNTAzMDc4MDAwMDcsMjMuNDk1MDMxMDk4MDAwMDNdLFs5MC42MDQ2ODM5MTgwMDAwMywyMy40OTM0NDEyOTgwMDAwNV0sWzkwLjYwNDg4NjczMTAwMDA4LDIzLjQ5MzIxOTIxMjAwMDA0XSxbOTAuNjA1MTA0ODMxMDAwMDYsMjMuNDkyOTkzNjc5MDAwMDVdLFs5MC42MDU1MTQ1NzMwMDAwNSwyMy40OTI2NDY1OTAwMDAwNV0sWzkwLjYwNTgyNzA0NzAwMDA1LDIzLjQ5MjQ0NjA5NDAwMDA2XSxbOTAuNjA2MTU5Njc4MDAwMDQsMjMuNDkyMjM2NDg1MDAwMDNdLFs5MC42MDg0NjU4MDAwMDAwMywyMy40OTExMTkzMTAwMDAwNF0sWzkwLjYwODgyODIwODAwMDAzLDIzLjQ5MDk5NzY0ODAwMDA4XSxbOTAuNjEyMjI3OTUwMDAwMDMsMjMuNDkwNTE3NDU4MDAwMDZdLFs5MC42MTY0NDk2NDEwMDAwMywyMy40OTA5NDg0OTMwMDAwOF0sWzkwLjYxNzg5NTYzOTAwMDA0LDIzLjQ5MTEzNTI3NTAwMDAzXSxbOTAuNjE4NTkwMDM2MDAwMDYsMjMuNDkxMzI5NTQzMDAwMDZdLFs5MC42MjMxNDcxNjAwMDAwMywyMy40OTI2NjUxNDcwMDAwM10sWzkwLjYyMzM5MjM4NzAwMDA4LDIzLjQ5Mjc0ODI4MzAwMDAzXSxbOTAuNjIzNDkwNDc5MDAwMDUsMjMuNDkyNzgxNzYzMDAwMDRdLFs5MC42MjM4MTQ1NTQwMDAwMywyMy40OTI5NzEyNzgwMDAwM10sWzkwLjYyMzk1MjcxNjAwMDA4LDIzLjQ5MzA2NTAwNDAwMDA3XSxbOTAuNjI0MTI5NjU0MDAwMDYsMjMuNDkzMjA0MzAwMDAwMDZdLFs5MC42MjQyMTgxNjIwMDAwMywyMy40OTMyODE4NTIwMDAwNV0sWzkwLjYyNDMwNjY2ODAwMDAzLDIzLjQ5MzM1OTQwNDAwMDA1XSxbOTAuNjI1NjM3NDM4MDAwMDcsMjMuNDk0NTQzNTQ0MDAwMDddLFs5MC42MjcwNjY3NjMwMDAwNywyMy40OTU4NTMxNzAwMDAwM10sWzkwLjYyNzM4MjIzMTAwMDA3LDIzLjQ5NjE2MTI2NTAwMDA3XSxbOTAuNjI3Njc4ODcxMDAwMDYsMjMuNDk2NDk5OTIxMDAwMDddLFs5MC42Mjc5NjgyNjEwMDAwMywyMy40OTcyNDYyMDEwMDAwNV0sWzkwLjYyNzk5OTMxMDAwMDA2LDIzLjQ5NzQ2OTA2OTAwMDAzXSxbOTAuNjI4MDAwNDA5MDAwMDQsMjMuNDk3NTcxODA5MDAwMDhdLFs5MC42MjgwNTIyODgwMDAwNSwyMy40OTc5MjcyNTYwMDAwM10sWzkwLjYyODM5MjY5MjAwMDAzLDIzLjQ5ODk3NDc5MjAwMDA3XSxbOTAuNjI4NTEyOTM0MDAwMDcsMjMuNDk5Mjg5MzE5MDAwMDddLFs5MC42Mjg2ODIzNjcwMDAwNywyMy40OTk2NDk5MzcwMDAwN10sWzkwLjYyODgzMDgzMjAwMDA2LDIzLjQ5OTg0ODYyMDAwMDAyXSxbOTAuNjI5MTc3NDkwMDAwMDcsMjMuNTAwMjc2ODMzMDAwMDRdLFs5MC42MjkzNTQ2NjIwMDAwOCwyMy41MDA0NjI0MTQwMDAwM10sWzkwLjYyOTQ3MzM5MzAwMDA3LDIzLjUwMDU4NjY5NjAwMDAzXSxbOTAuNjI5NjExMDk3MDAwMDcsMjMuNTAwNzEwMzM5MDAwMDJdLFs5MC42Mjk5ODU4MzcwMDAwNSwyMy41MDA5OTI3ODQwMDAwNl0sWzkwLjYzMDE1Mjg3MDAwMDA3LDIzLjUwMTEwNTAxNjAwMDA1XSxbOTAuNjMwMzg5MjIwMDAwMDQsMjMuNTAxMjQ4MDE3MDAwMDJdLFs5MC42MzA2NDQ1NTcwMDAwNCwyMy41MDEzOTMxOTgwMDAwN10sWzkwLjYzMDk4ODgwODAwMDA0LDIzLjUwMTU3MDc2MzAwMDA3XSxbOTAuNjMxNDMxMTY3MDAwMDcsMjMuNTAxNzgzNDkyMDAwMDddLFs5MC42MzE2NDcxMDkwMDAwOCwyMy41MDE4ODI1NDAwMDAwNV0sWzkwLjYzMTkwMjg1MTAwMDA2LDIzLjUwMTk4MzY4NDAwMDA0XSxbOTAuNjM1NDg0ODI5MDAwMDYsMjMuNTAyODMxMTU5MDAwMDRdLFs5MC42MzczMjg3NDUwMDAwNSwyMy41MDMyNDY0NjMwMDAwNF0sWzkwLjYzODMxOTU4MDAwMDA5LDIzLjUwMzQ1NTgwMDAwMDA0XSxbOTAuNjQwNzk5MjE0MDAwMDgsMjMuNTAzNjc5OTAyMDAwMDRdLFs5MC42NDEyMTA2NjgwMDAwNCwyMy41MDM3MDAyMjUwMDAwNV0sWzkwLjY0MTMxODQyODAwMDAzLDIzLjUwMzcwNDg2MjAwMDA2XSxbOTAuNjQxNjY5NjY2MDAwMDQsMjMuNTAzNjc4MDEyMDAwMDJdLFs5MC42NDIyOTU5OTUwMDAwNCwyMy41MDM1NzQzODAwMDAwM10sWzkwLjY0MjQ3MjEyMTAwMDA4LDIzLjUwMzUzOTIxNzAwMDAzXSxbOTAuNjQyODE3NjA2MDAwMDUsMjMuNTAzNDYyMTQ0MDAwMDNdLFs5MC42NDMyNDQzNTkwMDAwNSwyMy41MDMzNTUzNzkwMDAwM10sWzkwLjY0NDQ1OTE3MzAwMDA5LDIzLjUwMzA0NjA3NTAwMDA0XSxbOTAuNjQ0ODIyMjUwMDAwMDYsMjMuNTAyOTM2NzQ2MDAwMDVdLFs5MC42NDY0MDI5MDIwMDAwMywyMy41MDI0NTg4MDgwMDAwM10sWzkwLjY0Njk4NTM5NjAwMDA1LDIzLjUwMjI4MDgyMTAwMDA2XSxbOTAuNjQ3Mjc4NjQwMDAwMDgsMjMuNTAyMTYyMTgwMDAwMDNdLFs5MC42NDc0MzM3OTYwMDAwOSwyMy41MDIwOTU0ODQwMDAwNV0sWzkwLjY0OTI5NjIxMDAwMDA1LDIzLjUwMTI4NDQwMTAwMDA4XSxbOTAuNjUwMTg2MDI5MDAwMDUsMjMuNTAwODY2MzIyMDAwMDRdLFs5MC42NTA1NTMwMDkwMDAwOCwyMy41MDA2ODEzMTYwMDAwNV0sWzkwLjY1MDc0ODQwMTAwMDA0LDIzLjUwMDU4MjI3MTAwMDA0XSxbOTAuNjUyNDc0NzQ4MDAwMDMsMjMuNDk5MjQ2MTM4MDAwMDVdLFs5MC42NTI1NjMxNjYwMDAwNSwyMy40OTkxNzc0NTkwMDAwN10sWzkwLjY1NDQ5NTE0ODAwMDA4LDIzLjQ5Nzk2NTc2OTAwMDA3XSxbOTAuNjU3NDcwOTYzMDAwMDQsMjMuNDk2MzA2NDk0MDAwMDddLFs5MC42NjIxNzczNzgwMDAwOCwyMy40OTM4NDU1MjEwMDAwM10sWzkwLjY2MjQwMjcwNDAwMDA0LDIzLjQ5MzczODQzMTAwMDA1XSxbOTAuNjYyNTE5OTU5MDAwMDYsMjMuNDkzNjg0ODY2MDAwMDJdLFs5MC42NjI2MzY2MDkwMDAwNiwyMy40OTM2MzI5OTgwMDAwN10sWzkwLjY2MzEyNTI5NDAwMDA1LDIzLjQ5MzQzNTU5MTAwMDA0XSxbOTAuNjYzMzIxMzg0MDAwMDgsMjMuNDkzMzU3NDE1MDAwMDVdLFs5MC42NjU1MTQwNzcwMDAwNywyMy40OTI1NDEzNDgwMDAwM10sWzkwLjY2NjA4MjI3ODAwMDAzLDIzLjQ5MjMzNDU1OTAwMDAzXSxbOTAuNjcxODg0NjMxMDAwMDcsMjMuNDkwNzIyNzQ3MDAwMDZdLFs5MC42NzQ1OTI0MzQwMDAwMywyMy40ODk5OTU3ODcwMDAwNV0sWzkwLjY3NTU3NDI2ODAwMDA1LDIzLjQ4OTc2OTEwODAwMDA4XSxbOTAuNjc4OTA0ODE1MDAwMDcsMjMuNDg5NDYxNjQyMDAwMDRdLFs5MC42Nzk0MDU4NjUwMDAwNCwyMy40ODk0MTU0MjUwMDAwNl0sWzkwLjY4MTMxMzkzMTAwMDAzLDIzLjQ4OTQ2MjQyMTAwMDA0XSxbOTAuNjgxNjc2MzcyMDAwMDgsMjMuNDg5NDgxMTU5MDAwMDRdLFs5MC42ODIxMDkyMzIwMDAwNywyMy40ODk1MDU3OTgwMDAwNF0sWzkwLjY4NDM4ODQwMzAwMDA3LDIzLjQ4OTgyNjYyMjAwMDA3XSxbOTAuNjg0NjcyNjM3MDAwMDYsMjMuNDg5ODcxNjY1MDAwMDddLFs5MC42ODY5NTc2NzgwMDAwNiwyMy40OTAyNjAxNjkwMDAwN10sWzkwLjY4NzA3NjA2NjAwMDAzLDIzLjQ5MDMwOTg5MDAwMDA1XSxbOTAuNjg3MjA5Nzk1MDAwMDYsMjMuNDkwMzY2ODgzMDAwMDRdLFs5MC43MDIwODQwNDYwMDAwNCwyMy40OTg3MzQ2NzAwMDAwM10sWzkwLjcwMjc3NTk5ODAwMDA1LDIzLjQ5OTI0Njk2NzAwMDAzXSxbOTAuNzA2Nzk0ODI3MDAwMDcsMjMuNTAyNDAyMDA5MDAwMDRdLFs5MC43MDc2MTAwNjEwMDAwOCwyMy41MDMxODE4NzQwMDAwNl0sWzkwLjcwOTMwMDM2OTAwMDA2LDIzLjUwNTI3OTg4MzAwMDA3XSxbOTAuNzA5NDQ5MDA3MDAwMDUsMjMuNTA1NDg3NTE2MDAwMDddLFs5MC43MDk1NDUyMjEwMDAwNCwyMy41MDU2MjIwMDEwMDAwNl0sWzkwLjcwOTgyMDczMjAwMDA4LDIzLjUwNjA4NzYxMDAwMDA3XSxbOTAuNzEwMzQ1MjMxMDAwMDgsMjMuNTA3MDk0NTk3MDAwMDVdLFs5MC43MTA0NzE2NTUwMDAwNSwyMy41MDczODI0OTQwMDAwN10sWzkwLjcxMDUyNDMzNDAwMDA3LDIzLjUwNzUwMzA2MzAwMDA2XSxbOTAuNzEwNTc1MTU0MDAwMDgsMjMuNTA3NjE5Njg5MDAwMDJdLFs5MC43MTA2NDA4NTQwMDAwOCwyMy41MDc3NzA2ODMwMDAwNV0sWzkwLjcxMDY2MDEwNTAwMDA0LDIzLjUwNzgyMTk2NzAwMDA0XSxbOTAuNzExMDU5NzA5MDAwMDQsMjMuNTA5Mzk0MDUwMDAwMDNdLFs5MC43MTExNTU1NDcwMDAwMywyMy41MDk5MTM1NDQwMDAwM10sWzkwLjcxMTIwMDQ0NjAwMDA4LDIzLjUxMDI5NDk1OTAwMDA4XSxbOTAuNzExMjg5MzUwMDAwMDcsMjMuNTExMjMyODAwMDAwMDddLFs5MC43MTEzMjE2MDUwMDAwOCwyMy41MTE5OTUzMzEwMDAwNF0sWzkwLjcxMTI2NDUwMDAwMDA4LDIzLjUxMzU1ODc3MjAwMDA3XSxbOTAuNzExMTM3NzA4MDAwMDgsMjMuNTE0Njg1NTgzMDAwMDddLFs5MC43MTEwODAyMzMwMDAwOCwyMy41MTUwNDA5MzUwMDAwNl0sWzkwLjcxMTA1NDkxNDAwMDA0LDIzLjUxNTExMzg3NDAwMDA2XSxbOTAuNzEwODc0ODIyMDAwMDUsMjMuNTE1NTQ5OTQ4MDAwMDZdLFs5MC43MTA4MjY0NjcwMDAwNiwyMy41MTU2NjUzMzEwMDAwNF0sWzkwLjcxMDY3MDgzMjAwMDA2LDIzLjUxNTk4MTYxNDAwMDA1XSxbOTAuNzA5OTUzNTU3MDAwMDYsMjMuNTE3MTYzMDU2MDAwMDddLFs5MC43MDk4NTY0NDkwMDAwOSwyMy41MTczMjA0MzgwMDAwN10sWzkwLjcwOTcxNzM0OTAwMDA3LDIzLjUxNzUyNDMwMzAwMDA3XSxbOTAuNzA5MjIyMDA1MDAwMDcsMjMuNTE4MTk1NTI2MDAwMDZdLFs5MC43MDg5MDM4NTIwMDAwNSwyMy41MTg1NzQ2NDQwMDAwN10sWzkwLjcwODUwNTM1NzAwMDA0LDIzLjUxOTA0MTA2NDAwMDA4XSxbOTAuNzA4MjM0NTYyMDAwMDksMjMuNTE5MzQ3MTQxMDAwMDNdLFs5MC43MDgxMDczMDgwMDAwOCwyMy41MTk0Nzc1NjEwMDAwM10sWzkwLjcwNzkyMzMwOTAwMDA4LDIzLjUxOTY0MzI0MDAwMDA1XSxbOTAuNzA3NzIyMDczMDAwMDcsMjMuNTE5NzkxNDk3MDAwMDNdLFs5MC43MDUyNzIyODUwMDAwNCwyMy41MjEzMzY0MzcwMDAwNl0sWzkwLjcwNDcwMDY4NzAwMDA3LDIzLjUyMTYwNjA0NjAwMDA0XSxbOTAuNzA0Mjc0NzkzMDAwMDgsMjMuNTIxNzYwMzk4MDAwMDNdLFs5MC43MDM4NjgzMjAwMDAwOCwyMy41MjE4ODMwNDQwMDAwNV0sWzkwLjcwMzgxNjk1NTAwMDA0LDIzLjUyMTg5NDU2ODAwMDA1XSxbOTAuNzAzNTMyMzcwMDAwMDYsMjMuNTIyMDI3OTUyMDAwMDNdLFs5MC43MDMxODkwNDgwMDAwNywyMy41MjIyODM1NDIwMDAwM10sWzkwLjcwMjc4Njk5OTAwMDA3LDIzLjUyMjY2MzAyNzAwMDA4XSxbOTAuNzAyNjYyMTY4MDAwMDcsMjMuNTIyNzkwMDQ0MDAwMDNdLFs5MC43MDExNDQ3MzIwMDAwNSwyMy41MjQzNDI1NjUwMDAwNF0sWzkwLjcwMDk2OTA0NzAwMDA2LDIzLjUyNDU3ODc2NDAwMDA3XSxbOTAuNzAwNzYyMzYxMDAwMDUsMjMuNTI0ODU2ODc5MDAwMDNdLFs5MC43MDA1NDcyMTUwMDAwOSwyMy41MjUxNTU5MTgwMDAwNV0sWzkwLjcwMDQxMTk3OTAwMDA4LDIzLjUyNTQwMDQwMzAwMDA1XSxbOTAuNjkwMjg2NDE1MDAwMDYsMjMuNTQ1MTUxNjMxMDAwMDddLFs5MC42ODg4OTIyNTAwMDAwNCwyMy41NDk0MDI0OTQwMDAwNV0sWzkwLjY4NzkxODYxMjAwMDAzLDIzLjU1MjY5NjMwNTAwMDA0XSxbOTAuNjg3ODgzMTc3MDAwMDYsMjMuNTUyODI5NjkxMDAwMDZdLFs5MC42ODc4NDE5NDIwMDAwMywyMy41NTMwMjUyMDAwMDAwNF0sWzkwLjY4NzgxNzQ1MDAwMDA3LDIzLjU1MzE0MzI5NDAwMDA1XSxbOTAuNjg3ODEzMzU2MDAwMDUsMjMuNTUzMTgwNTcxMDAwMDRdLFs5MC42ODc5OTMwMjUwMDAwOCwyMy41NTQxNjg4MjgwMDAwNl0sWzkwLjY4ODA1NzUxMzAwMDA1LDIzLjU1NDMyMjY1OTAwMDA0XSxbOTAuNjg4MjE4NzMyMDAwMDUsMjMuNTU0NzA3NTE4MDAwMDRdLFs5MC42ODgxMjM5ODMwMDAwOCwyMy41NTU1NjMxOTYwMDAwNF0sWzkwLjY4ODA1NzIzOTAwMDA1LDIzLjU1NTc5OTQ2MzAwMDAzXSxbOTAuNjg3NDMzMzM5MDAwMDUsMjMuNTU3MTE1ODc4MDAwMDVdLFs5MC42ODczMTM3NTUwMDAwNSwyMy41NTczMTkwNzIwMDAwNF0sWzkwLjY4NzI4Mjc5NTAwMDA0LDIzLjU1NzM3MTE0NTAwMDA1XSxbOTAuNjc4MDE0MDkxMDAwMDgsMjMuNTY1NjczNjk1MDAwMDRdLFs5MC42NzY3MzM5NzMwMDAwNywyMy41NjY3MTk2OTYwMDAwNl0sWzkwLjY3NjMwNjgzNTAwMDA1LDIzLjU2NzAyNDcwNjAwMDA0XSxbOTAuNjc2MjQ3NjQ0MDAwMDYsMjMuNTY3MDY2NzM5MDAwMDRdLFs5MC42NzYyMDE4NzcwMDAwNCwyMy41NjcwOTkxMTYwMDAwN10sWzkwLjY3NTk1NDU5NDAwMDA3LDIzLjU2NzI0NTgzOTAwMDA3XSxbOTAuNjc1ODUwNzk1MDAwMDMsMjMuNTY3MzA3MjYwMDAwMDZdLFs5MC42NzU3MDQyNTMwMDAwNSwyMy41NjczOTM3MDUwMDAwM10sWzkwLjY3MDUwNjc2MzAwMDA1LDIzLjU3MDQ1MjgwNDAwMDA3XSxbOTAuNjY5MzcwNjc5MDAwMDUsMjMuNTcxMDU3NzkzMDAwMDJdLFs5MC42Njg2NTgwOTMwMDAwMywyMy41NzEzNjAwNjAwMDAwN10sWzkwLjY2ODE4NzkzNTAwMDA1LDIzLjU3MTUyMTI3OTAwMDAyXSxbOTAuNjY3NzM3OTI1MDAwMDQsMjMuNTcxNjcwNTUzMDAwMDVdLFs5MC42NjczODc0NjkwMDAwNiwyMy41NzE3NjUyMDYwMDAwN10sWzkwLjY2NzExMTU2NjAwMDA3LDIzLjU3MTgyNzM2MDAwMDA0XSxbOTAuNjY2ODY2ODQzMDAwMDQsMjMuNTcxODc4NjUzMDAwMDZdLFs5MC42NjA4MjQzMzkwMDAwNCwyMy41NzI4NTAwNDQwMDAwNl0sWzkwLjY2MDY0NjExMjAwMDA1LDIzLjU3Mjg0OTY3MzAwMDA2XSxbOTAuNjU5NTAwMTE1MDAwMDcsMjMuNTcyODMxOTU4MDAwMDVdLFs5MC42NTk0MDE0OTAwMDAwNSwyMy41NzI4Mjg0MjUwMDAwN10sWzkwLjY1OTIyNzUxOTAwMDA3LDIzLjU3MjgyMTgyNDAwMDA3XSxbOTAuNjU4MDk2NDgyMDAwMDgsMjMuNTcyNzMzNDY5MDAwMDddLFs5MC42NTQ5NjYwNDEwMDAwOCwyMy41NzI2OTk4MzYwMDAwM10sWzkwLjY1MzkxODMzMDAwMDA3LDIzLjU3Mjc0MDk0MzAwMDA0XSxbOTAuNjUxNDk3MTc2MDAwMDgsMjMuNTczMjE2MjgyMDAwMDNdLFs5MC42NTExNTA5MjcwMDAwNiwyMy41NzMyOTc4OTQwMDAwNl0sWzkwLjY1MTAxNDUwNzAwMDA3LDIzLjU3MzMzMDA4MTAwMDA1XSxbOTAuNjQ5NDI0NDc0MDAwMDYsMjMuNTc0MDYwNDU4MDAwMDhdLFs5MC42NDkzMDY2MjYwMDAwNSwyMy41NzQxMzMyMTEwMDAwNl0sWzkwLjY0ODgzNDcxNTAwMDA4LDIzLjU3NDQ0MzQxNDAwMDAzXSxbOTAuNjQ4MDAyMTA2MDAwMDQsMjMuNTc1MDEzMTEwMDAwMDRdLFs5MC42NDcyMTQyMDkwMDAwOCwyMy41NzU3MDk2MzUwMDAwN10sWzkwLjY0Njk5NTA5MzAwMDA0LDIzLjU3NTk4OTk4OTAwMDA1XSxbOTAuNjQ2OTY1NDM3MDAwMDYsMjMuNTc2MDYyMzcyMDAwMDJdLFs5MC42NDYyNDc5ODYwMDAwNSwyMy41NzgzOTAwODgwMDAwNV0sWzkwLjY0NjEyOTM1NDAwMDA0LDIzLjU3ODgwNDM4MTAwMDA1XSxbOTAuNjQ2MTAwMjQwMDAwMDcsMjMuNTc4OTg3OTc0MDAwMDNdLFs5MC42NDYwNzg4NjUwMDAwNSwyMy41NzkxMjU4MDgwMDAwN10sWzkwLjY0NjA1Mjc0MzAwMDA0LDIzLjU3OTI5NDcxMDAwMDA2XSxbOTAuNjQ2MDQ1NjI1MDAwMDYsMjMuNTc5MzQyMTYwMDAwMDddLFs5MC42NDU5NzA3MTMwMDAwNSwyMy41ODAzMDQ5OTQwMDAwN10sWzkwLjY0NTk2NzI4NDAwMDA1LDIzLjU4MDM1NTI1MTAwMDA3XSxbOTAuNjQ1OTM4ODEyMDAwMDUsMjMuNTgwNzk1MTM3MDAwMDVdLFs5MC42NDU5MDE1ODMwMDAwNywyMy41ODE1NzM3NzcwMDAwN10sWzkwLjY0NTg2MDY2ODAwMDA3LDIzLjU4NTYwNDExNzAwMDA2XSxbOTAuNjQ1ODgzMDAzMDAwMDUsMjMuNTg1Nzg3NDk1MDAwMDNdLFs5MC42NDU5MTMzMjQwMDAwNSwyMy41ODU5NzUzNTgwMDAwNF0sWzkwLjY0NjMxMDg2NjAwMDA4LDIzLjU4NzYwNDYyNzAwMDA4XSxbOTAuNjQ2NTMzNjY3MDAwMDksMjMuNTg4MzIyMzQ0MDAwMDZdLFs5MC42NDY2Njc1ODUwMDAwNSwyMy41ODg1MjYxNDUwMDAwNl0sWzkwLjY0NjcyOTI5NjAwMDA1LDIzLjU4ODYxOTYwMDAwMDA3XSxbOTAuNjQ2ODIxNjI2MDAwMDgsMjMuNTg4NzExMjM0MDAwMDddLFs5MC42NDcwMzk1MjEwMDAwNywyMy41ODg5MjcxMDYwMDAwM10sWzkwLjY0NzI3NzY4NTAwMDA2LDIzLjU4OTE1NDE4MzAwMDA2XSxbOTAuNjQ4NDA1NDk5MDAwMDMsMjMuNTg5NjgwNzAwMDAwMDNdLFs5MC42NDk5ODExODYwMDAwNSwyMy41OTAxMDI1OTIwMDAwNV0sWzkwLjY1MDcyNjk0MzAwMDA1LDIzLjU5MDI4Njg5MzAwMDA0XSxbOTAuNjUxNDIzNjI3MDAwMDQsMjMuNTkwNDU2NzIwMDAwMDhdLFs5MC42NTM0MjUzOTAwMDAwNSwyMy41OTA4MjM3MjIwMDAwNF0sWzkwLjY1MzY1MjAzNjAwMDA0LDIzLjU5MDgyNTAyNzAwMDA1XSxbOTAuNjUzOTc2MDQwMDAwMDMsMjMuNTkwODE4NTgyMDAwMDVdLFs5MC42NTQyNjgxNjUwMDAwOCwyMy41OTA4MDcxOTEwMDAwN10sWzkwLjY1NzY3OTcwNDAwMDAzLDIzLjU5MDYyMDAzOTAwMDA0XSxbOTAuNjU4MDEwOTc0MDAwMDQsMjMuNTkwNTk3MTg0MDAwMDVdLFs5MC42NTk5NDE4MDAwMDAwNywyMy41OTAyNDkxNDgwMDAwNV0sWzkwLjY2MDU4MzIxMTAwMDA3LDIzLjU4OTg5ODY3MzAwMDA1XSxbOTAuNjYwOTIwMTY5MDAwMDYsMjMuNTg5NTQ0NDExMDAwMDhdLFs5MC42NjA5NDYzNTYwMDAwNywyMy41ODk1MTM4MTYwMDAwOF0sWzkwLjY2MDk2ODMzMzAwMDA4LDIzLjU4OTQ5OTA0NDAwMDA0XSxbOTAuNjYxMjYzODkxMDAwMDMsMjMuNTg5MzE3NzAyMDAwMDddLFs5MC42NjI2NTg0MTkwMDAwOCwyMy41ODkxNTMxMjcwMDAwM10sWzkwLjY2NTc1MjU0ODAwMDA2LDIzLjU4ODgzMjc5NjAwMDA4XSxbOTAuNjY1ODE5MzIzMDAwMDUsMjMuNTg4ODM0NzY4MDAwMDNdLFs5MC42NjY1NTM1NTQwMDAwNywyMy41ODg5MTc0MjcwMDAwN10sWzkwLjY2NjY4ODkwNjAwMDA1LDIzLjU4OTE1NjIwNjAwMDA0XSxbOTAuNjY2NzE2Mzk1MDAwMDQsMjMuNTg5MjYyNzg0MDAwMDNdLFs5MC42NjY3ODM2MDYwMDAwOCwyMy41ODk1OTMzMDcwMDAwM10sWzkwLjY2NzE2Njk2ODAwMDA2LDIzLjU5MjQ4MzczMTAwMDA3XSxbOTAuNjY3MTEzNDY5MDAwMDcsMjMuNTkzMTY5ODYwMDAwMDVdLFs5MC42NjcwMzI4MDMwMDAwNCwyMy41OTM2OTE4MjcwMDAwNF0sWzkwLjY2Njk2NzE1MzAwMDA5LDIzLjU5NDAzNDIxMjAwMDA1XSxbOTAuNjY2ODc0OTYyMDAwMDcsMjMuNTk0MzM3MTk0MDAwMDVdLFs5MC42NjYxNzA3NjIwMDAwNCwyMy41OTYzMjU2NTUwMDAwNF0sWzkwLjY2NjE0NDE0NDAwMDA0LDIzLjU5NjM5MTgxOTAwMDA4XSxbOTAuNjY2MDI1OTE4MDAwMDYsMjMuNTk2NjM0NTA4MDAwMDJdLFs5MC42NTY3NjY1OTAwMDAwNywyMy42MTUxMzM5NDMwMDAwNV0sWzkwLjY1NjU3OTc0MTAwMDA5LDIzLjYxNTUwNTA2MjAwMDA3XSxbOTAuNjU2MzU5OTg2MDAwMDQsMjMuNjE1OTExODg2MDAwMDVdLFs5MC42NTYyNDU4MDMwMDAwNSwyMy42MTYxMTIyMTEwMDAwM10sWzkwLjY1NTYzMjk5NzAwMDA1LDIzLjYxNzA2NzcxOTAwMDAzXSxbOTAuNjUzMzU1MjYwMDAwMDcsMjMuNjIwMDYzMTAwMDAwMDRdLFs5MC42NTMwNTM2NzUwMDAwOCwyMy42MjA0MDQyMTIwMDAwNF0sWzkwLjY1Mjc4ODMyOTAwMDAzLDIzLjYyMDI2OTI3OTAwMDA3XSxbOTAuNjUyNjU0OTkxMDAwMDgsMjMuNjIwMTkxMzcxMDAwMDNdLFs5MC42NTIzNTMxMzgwMDAwOCwyMy42MTk5ODM3NjUwMDAwM10sWzkwLjY1MjIzNjMyMjAwMDA4LDIzLjYxOTkwMTI3MjAwMDA1XSxbOTAuNjUxODY4ODMzMDAwMDQsMjMuNjE5Njc3NTY5MDAwMDNdLFs5MC42NTE2MDE2MjQwMDAwOCwyMy42MTk1MzY5OTYwMDAwMl0sWzkwLjY1MTA2MjQyNDAwMDAzLDIzLjYxOTI4MDE0MTAwMDA1XSxbOTAuNjUwMzM2NjIwMDAwMDgsMjMuNjE4OTUxMjQzMDAwMDNdLFs5MC42NDg3NzgyMTQwMDAwNiwyMy42MTgzNzY4NjkwMDAwM10sWzkwLjY0NzQ5NDQ4MjAwMDA3LDIzLjYxODA4OTI0MTAwMDA2XSxbOTAuNjQ3MTkwOTc4MDAwMDgsMjMuNjE4MDQxOTU3MDAwMDZdLFs5MC42NDY5NTYxNDcwMDAwOCwyMy42MTgwMDU2NzcwMDAwNF0sWzkwLjY0MjYyNzAxMDAwMDA3LDIzLjYxNzM3NDQ1ODAwMDAzXSxbOTAuNjQwMDI3NDIyMDAwMDYsMjMuNjE3MjM4OTg3MDAwMDZdLFs5MC42NDAwMDQ3NDcwMDAwMywyMy42MTcyMzc5NTEwMDAwNV0sWzkwLjYzOTAzNzE3MDAwMDA1LDIzLjYxNzMyNzc0NjAwMDA2XSxbOTAuNjM4ODU5NTgzMDAwMDYsMjMuNjE3MzQ1NDEyMDAwMDhdLFs5MC42MzgzNDk0ODIwMDAwOCwyMy42MTczOTcxOTAwMDAwOF0sWzkwLjYzNzgyMzQ2MTAwMDA0LDIzLjYxNzQ1MDcyMzAwMDA1XSxbOTAuNjM2MzIyMzY3MDAwMDUsMjMuNjE3NjkyMjkyMDAwMDddLFs5MC42MzQyNDkwMDUwMDAwNywyMy42MTg0MzY5MjMwMDAwNV0sWzkwLjYzNDA1NzA5NTAwMDA2LDIzLjYxODUzNDgwNjAwMDA3XSxbOTAuNjMzMjYwNzQwMDAwMDgsMjMuNjE4OTQxNjk0MDAwMDZdLFs5MC42MzA0OTMwNzIwMDAwNCwyMy42MjA0MzMxNTIwMDAwM10sWzkwLjYzMDE0MjQyMjAwMDA2LDIzLjYyMDY0ODUzMjAwMDA4XSxbOTAuNjI5OTUxODQ1MDAwMDUsMjMuNjIwNzY5NTUwMDAwMDNdLFs5MC42Mjk5NTAyNDQwMDAwNCwyMy42MjA4MTkyMzUwMDAwNl0sWzkwLjYyOTk5MzgxNTAwMDAzLDIzLjYyMDk2MTg4MzAwMDA2XSxbOTAuNjMwMDgzOTQwMDAwMDgsMjMuNjIxMTAyNjQ5MDAwMDJdLFs5MC42MzAyMjUwNjYwMDAwNCwyMy42MjE0MDI0MDQwMDAwNF0sWzkwLjYzMDI1NjA0MDAwMDA2LDIzLjYyMTQ3MzQwOTAwMDAzXSxbOTAuNjMwMzE5MjMxMDAwMDQsMjMuNjIxNjE5MzY1MDAwMDddLFs5MC42MzIwNjI4NjcwMDAwNiwyMy42MjU4MTg1NjIwMDAwNl0sWzkwLjYzMjc0Nzc3MzAwMDA2LDIzLjYyNzU4MzMwMzAwMDA1XSxbOTAuNjM0MzI1MDg3MDAwMDQsMjMuNjMzNzI3OTQwMDAwMDNdLFs5MC42Mzc4NjQ0MDMwMDAwNCwyMy42NDg1NDU3NTcwMDAwMl0sWzkwLjYzNzkwNjQ5NjAwMDA4LDIzLjY0ODc1ODk3NDAwMDAzXSxbOTAuNjM3OTU1NTYwMDAwMDgsMjMuNjQ5MDIwMTQ3MDAwMDRdLFs5MC42Mzc5OTA3OTgwMDAwMywyMy42NDkyMDk2ODIwMDAwNV0sWzkwLjYzODA1MTIwOTAwMDA4LDIzLjY0OTUzNTcyOTAwMDA0XSxbOTAuNjM4MDkwNDI0MDAwMDQsMjMuNjQ5Nzg3MzQ1MDAwMDVdLFs5MC42MzgxMjcxODMwMDAwNSwyMy42NTAyOTA3NDkwMDAwOF0sWzkwLjYzODE4ODg1MTAwMDA1LDIzLjY1MTc1OTk1MjAwMDA4XSxbOTAuNjM4MzA4OTgzMDAwMDYsMjMuNjU3Njk5Mzc5MDAwMDZdLFs5MC42MzgzMTA4MzQwMDAwNCwyMy42NTc5NTQ1MzcwMDAwMl0sWzkwLjYzODI5NDQzMjAwMDA3LDIzLjY1ODIzNjg2NzAwMDAzXSxbOTAuNjM4Mjc3MjA5MDAwMDgsMjMuNjU4NDc2ODYwMDAwMDZdLFs5MC42MzgxNjA0MDUwMDAwNiwyMy42NTk0MTI3NTcwMDAwNF0sWzkwLjYzODEwNDc5ODAwMDA5LDIzLjY1OTgyNTA4ODAwMDA1XSxbOTAuNjM4MDMzMzQyMDAwMDksMjMuNjYwMjU1NTQ5MDAwMDZdLFs5MC42Mzc2NDUyMTAwMDAwNywyMy42NjM1MDMxNTcwMDAwNF0sWzkwLjYzNzg3MDY3NzAwMDA4LDIzLjY2OTE3MjMwMTAwMDA2XSxbOTAuNjM3OTcyMDc1MDAwMDUsMjMuNjcwMzY0MTU2MDAwMDZdLFs5MC42MzgwMDUyNjcwMDAwNCwyMy42NzA2MzYxMTgwMDAwNl0sWzkwLjYzODAyNDIxMDAwMDA4LDIzLjY3MDc1MDYzOTAwMDA2XSxbOTAuNjM4MTA4NTMxMDAwMDYsMjMuNjcxMDc1NDU3MDAwMDNdLFs5MC42MzgyNzczNDYwMDAwNSwyMy42NzE1MDgzMTQwMDAwNV0sWzkwLjYzODMzNDQxMTAwMDA3LDIzLjY3MTY0NzUxNzAwMDA1XSxbOTAuNjM4NDgzMTk0MDAwMDYsMjMuNjcxOTk0MDg2MDAwMDRdLFs5MC42Mzg1NDE5NjIwMDAwMywyMy42NzIxMDUwNTUwMDAwM10sWzkwLjYzOTU0MTc4ODAwMDAzLDIzLjY3Mzg5OTUwMDAwMDA2XSxbOTAuNjM5NzA2NzE4MDAwMDcsMjMuNjc0MTYxODg3MDAwMDNdLFs5MC42Mzk5ODgwMjUwMDAwNCwyMy42NzQ1MzM4NzQwMDAwOF0sWzkwLjY0MDExMTMxNjAwMDA2LDIzLjY3NDY3ODQ0NzAwMDA4XSxbOTAuNjQwMjk4OTk2MDAwMDcsMjMuNjc0ODI5NTI4MDAwMDNdLFs5MC42NDAzOTc5NzcwMDAwOCwyMy42NzQ4OTA2NTAwMDAwN10sWzkwLjY0MDcyNzE2NDAwMDA1LDIzLjY3NTAyNDc3NTAwMDA1XSxbOTAuNjQxMTIyOTc2MDAwMDgsMjMuNjc1MTIwODAxMDAwMDVdLFs5MC42NDEzNzc1NDgwMDAwNCwyMy42NzUxNjI2NTEwMDAwNV0sWzkwLjY0MTc3NjE0NTAwMDA1LDIzLjY3NTIwMTA4MDAwMDAyXSxbOTAuNjQyNDcyMzc5MDAwMDgsMjMuNjc1MTg4NTk4MDAwMDNdLFs5MC42NDMwOTUzNjIwMDAwNSwyMy42NzUxMTI2MjYwMDAwNF0sWzkwLjY0MzMxNzExMTAwMDA0LDIzLjY3NTA4NTE3MjAwMDAyXSxbOTAuNjQzOTYzOTEzMDAwMDUsMjMuNjc0OTkyMTYyMDAwMDJdLFs5MC42NDQzOTU1NjAwMDAwOCwyMy42NzQ4OTU1MjcwMDAwNV0sWzkwLjY0NjU2NDY4MDAwMDA0LDIzLjY3NDM4NjMyMzAwMDA4XSxbOTAuNjQ2OTk5MzEzMDAwMDQsMjMuNjc0Mjc0OTkyMDAwMDVdLFs5MC42NDc1NTEzNDUwMDAwNywyMy42NzQxMDYxNTEwMDAwNV0sWzkwLjY0ODM0MzI1NDAwMDA1LDIzLjY3Mzg1ODQwMDAwMDAzXSxbOTAuNjUwMTYxODA1MDAwMDQsMjMuNjczMzYwNzc1MDAwMDVdLFs5MC42NTIzNzE3MzQwMDAwNCwyMy42NzI4MDk1NDMwMDAwM10sWzkwLjY1NzEwNzMwMjAwMDA0LDIzLjY3MTcyOTkyNTAwMDAyXSxbOTAuNjU3Mzc2MjI4MDAwMDMsMjMuNjcxNzAxMTIzMDAwMDVdLFs5MC42NTc1NzcyMjUwMDAwNywyMy42NzE2OTI5MzIwMDAwNF0sWzkwLjY1NzkwODgyNjAwMDA0LDIzLjY3MTY5NTQ3NTAwMDA0XSxbOTAuNjU4MjEyOTM0MDAwMDYsMjMuNjcxNzE1NjM2MDAwMDRdLFs5MC42NTg0MjI2MzMwMDAwNCwyMy42NzE3MzE2ODEwMDAwNF0sWzkwLjY1ODYyMTM3MDAwMDA1LDIzLjY3MTc2MTg4NTAwMDAyXSxbOTAuNjU4ODE2NDk3MDAwMDMsMjMuNjcxODA1NjUyMDAwMDVdLFs5MC42NjMyNzU1ODMwMDAwOSwyMy42NzMxNjIzNjQwMDAwNl0sWzkwLjY2NjAzODc4MDAwMDA2LDIzLjY3NTAwMjcwMjAwMDAzXSxbOTAuNjY4MDA1ODUyMDAwMDgsMjMuNjc3Njg4Njg3MDAwMDZdLFs5MC42NzA5NzUyMjEwMDAwNSwyMy42NzkwNjA2MjIwMDAwN10sWzkwLjY3MTE1MDI4NjAwMDA2LDIzLjY3OTEzMzgxNDAwMDA3XSxbOTAuNjcxNjkwMDQwMDAwMDQsMjMuNjc5MzIzNDEyMDAwMDNdLFs5MC42NzIwMjM5MzkwMDAwNCwyMy42Nzk0MTE3MjMwMDAwNF0sWzkwLjY3NDEzNzgwOTAwMDA2LDIzLjY3OTk2OTMxNDAwMDA2XSxbOTAuNjc0NTE4OTA4MDAwMDQsMjMuNjgwMDU3NDE1MDAwMDhdLFs5MC42NzQ4NTI2NTkwMDAwNywyMy42ODAxMTYzNjQwMDAwN10sWzkwLjY3NTEyMzA1MDAwMDA4LDIzLjY4MDEzMTU1ODAwMDAzXSxbOTAuNjc1NDA5OTE3MDAwMDgsMjMuNjgwMTMyNTY0MDAwMDhdLFs5MC42NzU2MTY0ODYwMDAwOCwyMy42ODAxMzI3OTIwMDAwNV0sWzkwLjY3NTk2NjM0MzAwMDA4LDIzLjY4MDEwNTI5ODAwMDA2XSxbOTAuNjc2NTA3ODMwMDAwMDUsMjMuNjgwMDM0NjI4MDAwMDRdLFs5MC42NzY2NzM3MjkwMDAwNywyMy42Nzk5OTMyNTcwMDAwNF0sWzkwLjY3NzcxNzg2NTAwMDAzLDIzLjY3OTY4OTQ5ODAwMDA3XSxbOTAuNjc3ODkzNDg3MDAwMDYsMjMuNjc5NjMyMjc3MDAwMDVdLFs5MC42NzgxMDAyOTQwMDAwNSwyMy42Nzk1NjAyNDIwMDAwNF0sWzkwLjY3ODM1NTk5MjAwMDA0LDIzLjY3OTQ2MDMzMjAwMDA4XSxbOTAuNjc4NjU4MTE4MDAwMDQsMjMuNjc5MzMwMjk5MDAwMDddLFs5MC42ODA1NzAxMTYwMDAwNywyMy42Nzg0MjIwNjcwMDAwNF0sWzkwLjY4MDc3NjEyNDAwMDAzLDIzLjY3ODMxNTAzMjAwMDA2XSxbOTAuNjgxMTkyMjI1MDAwMDcsMjMuNjc4MDYxNDI2MDAwMDZdLFs5MC42ODEzOTkzNDAwMDAwNCwyMy42Nzc5MzEyNDIwMDAwNl0sWzkwLjY4MTU5MDUxOTAwMDA1LDIzLjY3NzgwMTY4OTAwMDAzXSxbOTAuNjgxODQ1NzU1MDAwMDQsMjMuNjc3NjEzNzEwMDAwMDZdLFs5MC42ODU4MzkwMzEwMDAwNiwyMy42NzQ1NTA1MDMwMDAwM10sWzkwLjY4ODU4Nzc4MTAwMDA4LDIzLjY3MjM5OTM0ODAwMDA2XSxbOTAuNjg5MDc4OTAzMDAwMDUsMjMuNjcxOTY1MzA4MDAwMDRdLFs5MC42ODkzMDA5OTkwMDAwNywyMy42NzE3NzM1MTIwMDAwN10sWzkwLjY4OTM1NjUyNjAwMDA0LDIzLjY3MTcyNTg0NjAwMDA3XSxbOTAuNjkwMDA0MDQzMDAwMDQsMjMuNjcxMTk1MTM4MDAwMDNdLFs5MC42OTI3ODc1MDYwMDAwNiwyMy42NjkyNjEwOTYwMDAwN10sWzkwLjY5MzUxMzc2MzAwMDA2LDIzLjY2ODc4OTg2MzAwMDAzXSxbOTAuNjk2OTgzMjczMDAwMDYsMjMuNjY2NTY5ODQ4MDAwMDVdLFs5MC42OTkwNTk1OTkwMDAwNywyMy42NjU3MzUxNzIwMDAwNF0sWzkwLjcwNjYxNTM5MTAwMDA3LDIzLjY2MzAyMTcwMDAwMDA2XSxbOTAuNzA3OTUyNTU2MDAwMDcsMjMuNjYyNTQzMDk2MDAwMDRdLFs5MC43MDg1MjU1NzgwMDAwNCwyMy42NjI0MjcwMDkwMDAwNl0sWzkwLjcwODc0ODQyNTAwMDA3LDIzLjY2MjM4MzA4NjAwMDAzXSxbOTAuNzA5MDM0NDAwMDAwMDYsMjMuNjYyMzM5NDQwMDAwMDRdLFs5MC43MTA0NTE1MTYwMDAwMywyMy42NjIxNDIxNDMwMDAwNF0sWzkwLjcxMDUzMTc1ODAwMDA2LDIzLjY2MjEzMzg3MjAwMDAzXSxbOTAuNzEwOTI4Njc2MDAwMDQsMjMuNjYyMDkzMTAxMDAwMDRdLFs5MC43MTM4NDEzOTkwMDAwNSwyMy42NjE4MjI4NTYwMDAwN10sWzkwLjcxNTY0MDY4MjAwMDA3LDIzLjY2MTY5MjYyMzAwMDA4XSxbOTAuNzE5NzUzMDU1MDAwMDcsMjMuNjYxNTg3NzczMDAwMDZdLFs5MC43MjAzMDIxNjUwMDAwOCwyMy42NjE1ODQ2NTcwMDAwNV0sWzkwLjcyMDUxMDYyMzAwMDA1LDIzLjY2MTYwMDA1OTAwMDAyXSxbOTAuNzIwNjM2MzEzMDAwMDYsMjMuNjYxNjA5NjM2MDAwMDRdLFs5MC43MjExMDYwNzIwMDAwNSwyMy42NjE2NjUwMzMwMDAwOF0sWzkwLjcyMTU3MjgyMzAwMDAzLDIzLjY2MTczMDYwMzAwMDAyXSxbOTAuNzIxODYzMDA1MDAwMDUsMjMuNjYxNzg0NTczMDAwMDNdLFs5MC43MjY1MTYyNjMwMDAwNiwyMy42NjI4NTEyMTkwMDAwNl0sWzkwLjcyNjg1MjY4NTAwMDA0LDIzLjY2Mjk1NDA3NzAwMDA1XSxbOTAuNzI3MzM5NzcxMDAwMDYsMjMuNjYzMTQ5MzcyMDAwMDhdLFs5MC43Mjc4MjY5MzgwMDAwOCwyMy42NjMzNTg3NzkwMDAwOF0sWzkwLjczMDIxOTE2NDAwMDA2LDIzLjY2NDQ5NTE4NjAwMDA3XSxbOTAuNzMwNDE0Njg5MDAwMDQsMjMuNjY0NjA4Mjk3MDAwMDNdLFs5MC43MzA4NjY5NjgwMDAwNCwyMy42NjQ5MzQ3MTMwMDAwNF0sWzkwLjczMTEzMDU5NzAwMDA2LDIzLjY2NTE3MTEzMTAwMDAyXSxbOTAuNzMxNDkyODU4MDAwMDgsMjMuNjY1NTEwMzg5MDAwMDhdLFs5MC43MzE5NDg1MzEwMDAwNiwyMy42NjYwMDUwMTEwMDAwNF0sWzkwLjczMjIxNDM1NzAwMDAzLDIzLjY2NjMwNTIwNjAwMDA2XSxbOTAuNzMyNTUxMzQxMDAwMDMsMjMuNjY2ODM2NTE1MDAwMDZdLFs5MC43MzMyMzA0NjcwMDAwNiwyMy42Njc5NDMxNDIwMDAwN10sWzkwLjczODY1MTI1NjAwMDA4LDIzLjY4MTk2NDc3NDAwMDA1XSxbOTAuNzQxMTQ0MjE5MDAwMDMsMjMuNjkyNjIwNDc2MDAwMDZdLFs5MC43NDExNzg5NDkwMDAwNywyMy42OTI5MDg3NzQwMDAwNV0sWzkwLjc0MTE4Mzk2NjAwMDA1LDIzLjY5NjA3NzkyNTAwMDA1XSxbOTAuNzQxMTUyMDU1MDAwMDQsMjMuNjk2NzIzMzE2MDAwMDNdLFs5MC43NDExMTI0NTMwMDAwOCwyMy42OTcwOTI2OTcwMDAwN10sWzkwLjc0MTA2OTUyMTAwMDA0LDIzLjY5NzQxNDY3NTAwMDA2XSxbOTAuNzQwOTg2NDc4MDAwMDgsMjMuNjk3Nzk4OTQxMDAwMDNdLFs5MC43NDA5MDg3NjIwMDAwNiwyMy42OTgwNDA5MjQwMDAwNV0sWzkwLjc0MDg5OTcyMzAwMDA0LDIzLjY5ODA2ODYyOTAwMDAzXSxbOTAuNzQwNjc3ODI1MDAwMDMsMjMuNjk4NjE1NTc0MDAwMDNdLFs5MC43NDA2MTQzMjkwMDAwNCwyMy42OTg3Njk5OTEwMDAwNl0sWzkwLjczOTQ3NzQyNzAwMDA1LDIzLjcwMTEwNTE2OTAwMDA3XSxbOTAuNzM5MjIyODg5MDAwMDgsMjMuNzAxNjI3NDMwMDAwMDNdLFs5MC43Mzg5ODU4MDEwMDAwNywyMy43MDIwOTIwMjcwMDAwNV0sWzkwLjczODYzMjU5MDAwMDA3LDIzLjcwMjcyOTM1MjAwMDA2XSxbOTAuNzM3NzY4Mzc5MDAwMDQsMjMuNzAzOTY0MTEzMDAwMDRdLFs5MC43MzUxNTg1MzQwMDAwNSwyMy43MDY1ODI4ODUwMDAwNV0sWzkwLjczNDI3ODc4OTAwMDA5LDIzLjcwNzM1MzEwNjAwMDAzXSxbOTAuNzMyODgxMDMwMDAwMDQsMjMuNzA4NDYxMDk1MDAwMDhdLFs5MC43MzE0NTg5NDYwMDAwMywyMy43MDk2MDkyNjgwMDAwN10sWzkwLjczMDM0NjgyNzAwMDA2LDIzLjcxMDcxNDc1NTAwMDAzXSxbOTAuNzI5MDI2ODMzMDAwMDMsMjMuNzEyMjU4NzEzMDAwMDRdLFs5MC43Mjg4NTY0MDYwMDAwMywyMy43MTI0ODI0OTgwMDAwNF0sWzkwLjcyODU5NDY4NTAwMDA4LDIzLjcxMjgyNjk1NTAwMDAzXSxbOTAuNzI4NTExOTQzMDAwMDYsMjMuNzEyOTQxOTQwMDAwMDZdLFs5MC43MjY3NzMzMjgwMDAwNCwyMy43MTU0MDM0ODgwMDAwNV0sWzkwLjcyNTc4OTYzMDAwMDA3LDIzLjcxNjc5NjgwNjAwMDA1XSxbOTAuNzI1Njc0MDkxMDAwMDMsMjMuNzE2OTY5NTI0MDAwMDRdLFs5MC43MjU0OTMwNTAwMDAwNywyMy43MTcyNzEyNTkwMDAwM10sWzkwLjcyNTM5MzQ1MjAwMDA1LDIzLjcxNzQ0MzkwMjAwMDA3XSxbOTAuNzI0OTgwNTAzMDAwMDQsMjMuNzE4MTYzMzMzMDAwMDZdLFs5MC43MjQ4NjUxNTMwMDAwNSwyMy43MTgzNzA0ODYwMDAwM10sWzkwLjcyNDc5NzMzNDAwMDA3LDIzLjcxODUyNDM1MTAwMDA0XSxbOTAuNzI0NjEyMTE0MDAwMDgsMjMuNzE4OTU4MjAwMDAwMDNdLFs5MC43MjM2OTM2NTIwMDAwNywyMy43MjE1MTU3ODkwMDAwMl0sWzkwLjcyMzYyNjA3MzAwMDA1LDIzLjcyMTcxMzY4NDAwMDA2XSxbOTAuNzIzNTkyMjk0MDAwMDcsMjMuNzIxODE0ODkwMDAwMDhdLFs5MC43MjM0Mzg1MDYwMDAwNCwyMy43MjIyNzk2MzgwMDAwM10sWzkwLjcyMzM1MTg5NDAwMDA3LDIzLjcyMjU4NDMxNTAwMDA2XSxbOTAuNzIyNTA1NzY2MDAwMDQsMjMuNzI1NTkyMDQxMDAwMDNdLFs5MC43MjIyNjEyMTMwMDAwOCwyMy43MjcxNjgxNzIwMDAwNl0sWzkwLjcyMjI0MjM5NzAwMDA2LDIzLjcyNzMxNDQ2OTAwMDA4XSxbOTAuNzIyMjAzMDA0MDAwMDUsMjMuNzI3NjIxMTgzMDAwMDVdLFs5MC43MjE4ODMyNjUwMDAwMywyMy43MzAxMzE5MzEwMDAwN10sWzkwLjcyMTgxOTExMjAwMDA1LDIzLjczMDczMDYxNDAwMDA0XSxbOTAuNzIxNDU5MzkyMDAwMDQsMjMuNzM3MjMwOTUxMDAwMDddLFs5MC43MjE0ODczMTkwMDAwNiwyMy43Mzc2MjU0MTQwMDAwNF0sWzkwLjcyMTU0OTgxMjAwMDAzLDIzLjczODA2MDkyNTAwMDA3XSxbOTAuNzIxOTI3NDkwMDAwMDQsMjMuNzQwNDk2NzIxMDAwMDZdLFs5MC43MjI5NzE1OTgwMDAwNywyMy43NDQ4OTk1NDMwMDAwM10sWzkwLjcyMzA3MzQzMTAwMDA1LDIzLjc0NTIzODkwMzAwMDAzXSxbOTAuNzIzMDg0MDQ3MDAwMDQsMjMuNzQ1MjczMjg5MDAwMDddLFs5MC43MjM1NzMyNTUwMDAwOCwyMy43NDYzNTI2MDEwMDAwN10sWzkwLjcyMzYzMjc4NDAwMDA3LDIzLjc0NjQ3MTQzNTAwMDA1XSxbOTAuNzIzNjkyMzE0MDAwMDYsMjMuNzQ2NTkwMjY4MDAwMDNdLFs5MC43MjM3NTExNTAwMDAwNiwyMy43NDY2OTQ0MjYwMDAwM10sWzkwLjcyNjgxOTM1MDAwMDA4LDIzLjc1MTc4NTQ1OTAwMDA4XSxbOTAuNzI4MDkwMDkwMDAwMDgsMjMuNzUzODgyODQxMDAwMDZdLFs5MC43Mjg0Mzc4MjAwMDAwNywyMy43NTQ0MzIxNjMwMDAwNV0sWzkwLjczNjgxMTk5MTAwMDA4LDIzLjc2NjM0MTk3NjAwMDA0XSxbOTAuNzQwMDc2NjQ2MDAwMDMsMjMuNzcwNzQ3NTkzMDAwMDddLFs5MC43NDA0MDE2NDMwMDAwNCwyMy43NzExNjQ5MDAwMDAwM10sWzkwLjc0MDUxODk5NDAwMDA3LDIzLjc3MTMwNzcyMzAwMDA2XSxbOTAuNzQwNzQ2MjY3MDAwMDgsMjMuNzcxNTgxNTQ4MDAwMDNdLFs5MC43NDEwMzYzMDEwMDAwNywyMy43NzE4OTAwNzEwMDAwM10sWzkwLjc0MTI4NTUwNDAwMDA3LDIzLjc3MjEzNjY5MzAwMDA1XSxbOTAuNzQxNzE0MTU5MDAwMDgsMjMuNzcyNTUxODA2MDAwMDJdLFs5MC43NDI5NzI5NDIwMDAwNSwyMy43NzM2NTMzMTgwMDAwN10sWzkwLjc0MzUxMjg5NDAwMDA1LDIzLjc3NDExNTMwOTAwMDAyXSxbOTAuNzQzNjgwNTE1MDAwMDUsMjMuNzc0MjUyMjQyMDAwMDVdLFs5MC43NDY4NzIwODUwMDAwNiwyMy43Nzc1OTk2MDQwMDAwNV0sWzkwLjc1MzE4MzU0MjAwMDA0LDIzLjc4NDIyNDQ2ODAwMDA1XSxbOTAuNzUzNTQ4OTE1MDAwMDcsMjMuNzg0NjA5MzcxMDAwMDRdLFs5MC43NTg1OTM5NDQwMDAwNCwyMy43OTAzMzc1MzEwMDAwM10sWzkwLjc1ODY4MjI1MzAwMDA3LDIzLjc5MDQzODE0MzAwMDA3XSxbOTAuNzU4OTQ5MTE0MDAwMDcsMjMuNzkwNzU1Nzc0MDAwMDVdLFs5MC43NTkzOTM3MzkwMDAwNywyMy43OTEzNjU1MTAwMDAwNV0sWzkwLjc2MTA1NzYyNjAwMDA4LDIzLjc5NDAyNjI5MTAwMDAyXSxbOTAuNzY1NDU4Mjg5MDAwMDQsMjMuODAxMzgzNzEzMDAwMDZdLFs5MC43NjU2MjU1ODcwMDAwNSwyMy44MDE2NjUxMzUwMDAwNl0sWzkwLjc2NTc3MDYxODAwMDAzLDIzLjgwMTkxNTYyMDAwMDA1XSxbOTAuNzY2MDM4MzQyMDAwMDYsMjMuODAyNjg3MDk0MDAwMDhdLFs5MC43NjYxNjEzNDEwMDAwNCwyMy44MDMwNTExNTMwMDAwN10sWzkwLjc2NjIxNjkwOTAwMDA0LDIzLjgwMzIxNTcxMzAwMDA0XSxbOTAuNzY2NjU2NTk0MDAwMDQsMjMuODA0NjQyODQ4MDAwMDddLFs5MC43NjY5MzI4MzEwMDAwOCwyMy44MDU5MjE3NjgwMDAwOF0sWzkwLjc2NzU0NTg4OTAwMDA4LDIzLjgwOTcwMjU3ODAwMDA0XSxbOTAuNzY3Nzc1MjYwMDAwMDYsMjMuODExODc3MDI4MDAwMDNdLFs5MC43NjgwMjAzMTAwMDAwNSwyMy44MTUzNTkzNDkwMDAwNl0sWzkwLjc2ODA3NDM1NDAwMDA4LDIzLjgxNjIwMTg4MTAwMDA0XSxbOTAuNzY4MTAzMzMyMDAwMDcsMjMuODE2NzQ3MDQ2MDAwMDVdLFs5MC43NjgxMDkzNTgwMDAwNiwyMy44MTcwNDExMjEwMDAwNV0sWzkwLjc2ODA5MTgyNzAwMDAzLDIzLjgxODIzMjg3MjAwMDA3XSxbOTAuNzY4MDgwMDQzMDAwMDUsMjMuODE4ODM2OTQ3MDAwMDJdLFs5MC43NjgwNjEzMzEwMDAwNywyMy44MTk0MTExMzcwMDAwM10sWzkwLjc2ODA1NTQ0OTAwMDAzLDIzLjgxOTU1ODUwMjAwMDA2XSxbOTAuNzY4MDAwNjA4MDAwMDgsMjMuODIwMjQ5MTYxMDAwMDVdLFs5MC43Njc5Nzk0NzMwMDAwOCwyMy44MjA0MTEyNzcwMDAwNl0sWzkwLjc2Nzg1MjU2MzAwMDA4LDIzLjgyMTM2ODE3NDAwMDA0XSxbOTAuNzY3Njg4Mjg0MDAwMDMsMjMuODIyMjMwOTg3MDAwMDddLFs5MC43Njc0NzAzNzYwMDAwNiwyMy44MjMyNjE3MjEwMDAwNV0sWzkwLjc2Njg1ODMwNDAwMDA0LDIzLjgyNTQwNDIyNzAwMDA0XSxbOTAuNzY2NTkzMTI4MDAwMDcsMjMuODI2MjI0NjM4MDAwMDRdLFs5MC43NjMzMjUxNzAwMDAwMywyMy44MzU3MDUyNzcwMDAwNV0sWzkwLjc2MjcxMjEzODAwMDA0LDIzLjgzNzE3OTQwMDAwMDAyXSxbOTAuNzYxMjQzMzc3MDAwMDgsMjMuODQwODIyMDQ2MDAwMDNdLFs5MC43NjEwOTA0MDIwMDAwNCwyMy44NDEyMTQ1NjUwMDAwM10sWzkwLjc2MTA1NjU0MzAwMDA1LDIzLjg0MTMwMTY2NTAwMDA2XSxbOTAuNzYxMDIyNjg3MDAwMDQsMjMuODQxMzg5MzMxMDAwMDddLFs5MC43NjA5ODk0NDIwMDAwNCwyMy44NDE0NzY0MjcwMDAwM10sWzkwLjc2MDk1NjE5NzAwMDA0LDIzLjg0MTU2MzUyNjAwMDA3XSxbOTAuNzYwODAyODU2MDAwMDUsMjMuODQxOTk4OTQ3MDAwMDRdLFs5MC43NjA0NzczMDIwMDAwOCwyMy44NDMxMDY0MTEwMDAwNl0sWzkwLjc1OTcxMDIwNjAwMDA4LDIzLjg0NTk1NzUzNDAwMDA0XSxbOTAuNzU5NjAyMTEzMDAwMDgsMjMuODQ2NTc2MTk1MDAwMDddLFs5MC43NTk0OTc3OTcwMDAwNSwyMy44NDg0NzUxMjQwMDAwNl0sWzkwLjc1OTQ3MzkzNzAwMDA1LDIzLjg0OTY0NjU4MDAwMDA3XSxbOTAuNzU5NDc5OTA5MDAwMDUsMjMuODUwMTQ1MDA0MDAwMDddLFs5MC43NTk1MDM1MzIwMDAwNSwyMy44NTA1MTIzNzcwMDAwM10sWzkwLjc1OTUxNjEzNDAwMDA4LDIzLjg1MDY3Mzc2MTAwMDA1XSxbOTAuNzU5NTQxOTU0MDAwMDQsMjMuODUwOTk3MDkyMDAwMDZdLFs5MC43NTk2NjMwNjUwMDAwNCwyMy44NTIwODQ4NTIwMDAwOF0sWzkwLjc1OTgzNzg4MzAwMDA1LDIzLjg1MjkwOTI4OTAwMDAyXSxbOTAuNzYwMzQ4ODc3MDAwMDcsMjMuODU1MjgyNzQ1MDAwMDddLFs5MC43NjA0NTUxMTIwMDAwNSwyMy44NTU2MDczNzIwMDAwN10sWzkwLjc2MDQ4NTA5NTAwMDA0LDIzLjg1NTY5NjQxNjAwMDA2XSxbOTAuNzYxMzQ4MzExMDAwMDYsMjMuODU4MDUwNjMwMDAwMDRdLFs5MC43NjIyMDAzMDIwMDAwNSwyMy44NjAwNTQzNDAwMDAwM10sWzkwLjc2MzUyMDE2NDAwMDA2LDIzLjg2MTU1NjE0MzAwMDAzXSxbOTAuNzYzNzQwMDg4MDAwMDgsMjMuODYxNzk2NjU4MDAwMDZdLFs5MC43NjQxMDAyMzYwMDAwNSwyMy44NjIxODk0NTYwMDAwN10sWzkwLjc2NDQ3ODg3OTAwMDA4LDIzLjg2MjU5NTE0NjAwMDA1XSxbOTAuNzY0NTY3MDg3MDAwMDUsMjMuODYyNjY5MjIxMDAwMDNdLFs5MC43NjUxMjI4MTUwMDAwNCwyMy44NjMxMjcwOTIwMDAwN10sWzkwLjc2NTMyNjk2MzAwMDA2LDIzLjg2MzI5MzczNDAwMDAyXSxbOTAuNzY2NDY1MzI5MDAwMDgsMjMuODY0MDg2MjczMDAwMDVdLFs5MC43NjY3NDkyOTEwMDAwNSwyMy44NjQyNTUzMzgwMDAwOF0sWzkwLjc2NzAxOTA0MzAwMDA2LDIzLjg2NDQwODY2NjAwMDAzXSxbOTAuNzY3MzUxOTQ1MDAwMDksMjMuODY0NTQ5MjYxMDAwMDRdLFs5MC43Njc2Njk4NDgwMDAwOCwyMy44NjQ2NDQ3NzEwMDAwM10sWzkwLjc2ODA5OTY1MzAwMDA0LDIzLjg2NDc3MTg5ODAwMDA3XSxbOTAuNzY4MzM3NTc4MDAwMDYsMjMuODY0ODM2MTkzMDAwMDNdLFs5MC43Njg2NzE5NzAwMDAwNywyMy44NjQ5MTY5NDAwMDAwNl0sWzkwLjc2OTcyMDgyMDAwMDAzLDIzLjg2NTA5Nzk4NTAwMDAzXSxbOTAuNzcyMTU3NTY2MDAwMDMsMjMuODY1MzkxNzQzMDAwMDNdLFs5MC43NzMwODI1NDEwMDAwNiwyMy44NjU0ODc1ODIwMDAwN10sWzkwLjc3NDc1NDk4NTAwMDA3LDIzLjg2NTY1OTI1MDAwMDA4XSxbOTAuNzc1NzczODgyMDAwMDcsMjMuODY1NzU1NzMxMDAwMDRdLFs5MC43NzcyMjMxMjEwMDAwOCwyMy44NjU4NjEzMjIwMDAwNl0sWzkwLjc3Nzk1NjIwNDAwMDA4LDIzLjg2NTg5MjA1NTAwMDA3XSxbOTAuNzc5MTU3MDM4MDAwMDUsMjMuODY1OTI2NjI2MDAwMDNdLFs5MC43ODA3MjU5MTkwMDAwOCwyMy44NjU5MjAzNzMwMDAwNV0sWzkwLjc4MTEyNjcwMzAwMDA0LDIzLjg2NTkxMzgyNTAwMDA2XSxbOTAuODA1MzIzMDE1MDAwMDYsMjMuODY1MjY0MTk3MDAwMDRdLFs5MC44MTIwNTA1NTUwMDAwNCwyMy44NjQ4OTYzNzgwMDAwM10sWzkwLjgyMzIzNjEyOTAwMDA3LDIzLjg2NDEzOTgzNTAwMDA2XSxbOTAuODMyMjMyMTU1MDAwMDQsMjMuODYzMDk5NjY1MDAwMDVdLFs5MC44MzIyNjgzNTAwMDAwNSwyMy44NjMwOTY2NDYwMDAwM10sWzkwLjgzMjUxNTU4MDAwMDA2LDIzLjg2MzA3NjExNzAwMDA1XSxbOTAuODMzMTc3NDU3MDAwMDMsMjMuODYzMjAzNTAwMDAwMDVdLFs5MC44MzM1NTYzODIwMDAwNCwyMy44NjMzMzI0MTAwMDAwNl0sWzkwLjgzNjk5MjE2MjAwMDA2LDIzLjg2NTc3MzI2NTAwMDAzXSxbOTAuODM3MTAzMjI4MDAwMDUsMjMuODY1ODYzNTQ0MDAwMDRdLFs5MC44MzcyNzg2MTUwMDAwNiwyMy44NjYwMjkxMTYwMDAwNV0sWzkwLjgzNzQ1MjQ0MTAwMDA0LDIzLjg2NjIzODE2MzAwMDA1XSxbOTAuODM3NjczOTE0MDAwMDUsMjMuODY2NTA2Nzg0MDAwMDJdLFs5MC44Mzg0ODA3MzAwMDAwNywyMy44Njc1OTYzNzcwMDAwNF0sWzkwLjg0MzY3MDc5MDAwMDAzLDIzLjg3MTc5Nzc1NjAwMDAzXSxbOTAuODU1NzMyMTMzMDAwMDYsMjMuODc4MzM5MDk1MDAwMDZdLFs5MC44NTYxNzY0MDIwMDAwNywyMy44Nzg0OTk3NjIwMDAwNV0sWzkwLjg1NzEzMDAxNDAwMDA2LDIzLjg3ODgyMDcyODAwMDA1XSxbOTAuODU3NzUwOTc1MDAwMDQsMjMuODc4OTY1MTY3MDAwMDVdLFs5MC44NTc5NTgxMzEwMDAwMywyMy44NzkwMDgwNDEwMDAwOF0sWzkwLjg1ODEwMTk3MDAwMDA2LDIzLjg3OTAzNzE1NzAwMDAzXSxbOTAuODU4MjYxNTc1MDAwMDksMjMuODc5MDM2ODMyMDAwMDVdLFs5MC44NTg0Mzc3NTIwMDAwNCwyMy44NzkwMzY0MTQwMDAwNF0sWzkwLjg1ODc3NjIxNjAwMDA4LDIzLjg3ODk3Njk0ODAwMDA2XSxbOTAuODU5MDk4NzE4MDAwMDQsMjMuODc4OTE3MDA2MDAwMDVdLFs5MC44NTkyNzU4MzIwMDAwNCwyMy44Nzg4NzI1NTEwMDAwM10sWzkwLjg1OTYxNDcxMzAwMDA0LDIzLjg3ODc4MzE2NDAwMDAzXSxbOTAuODU5OTM4MjU0MDAwMDQsMjMuODc4Njk0OTg5MDAwMDVdLFs5MC44NjExNTA2NDUwMDAwNywyMy44NzgzMjM1NTEwMDAwNV0sWzkwLjg2MTk3Njg3NTAwMDA0LDIzLjg3ODA0MDA2ODAwMDA4XSxbOTAuODYyMjE5Mzc4MDAwMDgsMjMuODc3OTUxMjE1MDAwMDVdLFs5MC44NzIxMjIyODcwMDAwOCwyMy44NzQyOTExNjkwMDAwNl0sWzkwLjg3MzU1NTQwNTAwMDA1LDIzLjg3MzcxMDA4OTAwMDA0XSxbOTAuODc0MzU0NjI2MDAwMDcsMjMuODczMzQzNzE1MDAwMDNdLFs5MC44NzQ3MTQ4NDkwMDAwNCwyMy44NzMxNDU3OTMwMDAwNV0sWzkwLjg3NTE0MTU4NDAwMDA2LDIzLjg3Mjg4ODc4MjAwMDA4XSxbOTAuODc4NDIzOTY2MDAwMDcsMjMuODcwOTEzNTc1MDAwMDNdLFs5MC44ODE3NzQxOTMwMDAwNywyMy44Njg5MTAyNTEwMDAwNV0sWzkwLjg4MzM5NzcyNzAwMDA0LDIzLjg2ODAwMjI4MTAwMDAzXSxbOTAuODg0MjUwNDQyMDAwMDUsMjMuODY3NTY4Mzc2MDAwMDddLFs5MC44ODYzNzg4MTgwMDAwOCwyMy44NjY1Mjc2NDMwMDAwNF0sWzkwLjg4NjY0MDY3NjAwMDA3LDIzLjg2NjQwMjUxMzAwMDAzXSxbOTAuODkwODQ3MzUwMDAwMDYsMjMuODY0NDY0MDU5MDAwMDZdLFs5MC44OTE3NzkwMTEwMDAwNCwyMy44NjQwOTI4NzkwMDAwNV0sWzkwLjg5NDIxMTE1MjAwMDA4LDIzLjg2MzMyODU3MjAwMDA2XSxbOTAuODk0NzY1MDU3MDAwMDksMjMuODYzMTg4MTg0MDAwMDJdLFs5MC44OTYzMjY3MDYwMDAwOCwyMy44NjI4NTQ1MjQwMDAwNl0sWzkwLjg5NjY4MzU1OTAwMDA1LDIzLjg2MjgwMDUxNDAwMDA3XSxbOTAuODk3NTU5ODI4MDAwMDYsMjMuODYyNjc5MTI1MDAwMDZdLFs5MC44OTc5NDcxNjcwMDAwNCwyMy44NjI2ODQyMDUwMDAwNV0sWzkwLjg5ODMzMjk2NTAwMDA3LDIzLjg2MjczMzMyMjAwMDA1XSxbOTAuODk5NjkwMjcxMDAwMDUsMjMuODYzMTE5OTc0MDAwMDNdLFs5MC45MDE3NzMzNTIwMDAwOCwyMy44NjM4MTA1NzMwMDAwMl0sWzkwLjkwNDA5MDIzNjAwMDA2LDIzLjg2NDg0NDEwODAwMDA2XSxbOTAuOTA0MzI2MDYxMDAwMDYsMjMuODY0OTUwNTM5MDAwMDZdLFs5MC45MDQ1OTI2ODAwMDAwNiwyMy44NjUwNzIwMzEwMDAwN10sWzkwLjkwNDc3MjUxMDAwMDA0LDIzLjg2NTE1ODQ2OTAwMDA1XSxbOTAuOTA0ODQzOTUxMDAwMDMsMjMuODY1MTkzMDQ4MDAwMDRdLFs5MC45MDc4NDk2MzIwMDAwOCwyMy44NjcxMTU0ODkwMDAwN10sWzkwLjkwOTQwMjMwNzAwMDA1LDIzLjg2ODIyMDA1MzAwMDA3XSxbOTAuOTE0MDQ4OTA3MDAwMDUsMjMuODczNDY5MzMwMDAwMDNdLFs5MC45MTQzMTcxNjkwMDAwNywyMy44NzM4MjExMDMwMDAwN10sWzkwLjkxNjU3MTY2MTAwMDAzLDIzLjg3NjkzODg4MzAwMDA0XSxbOTAuOTE2ODU0OTcyMDAwMDcsMjMuODc3MzMzNDYxMDAwMDNdLFs5MC45MTc3MjIyODQwMDAwNCwyMy44Nzg1NDI0OTYwMDAwMl0sWzkwLjkxNzg4MDM5OTAwMDA3LDIzLjg3ODc2Njc4MjAwMDA3XSxbOTAuOTE4NjE2NzI3MDAwMDksMjMuODgwMDI3MzkzMDAwMDNdLFs5MC45MjAwMTIwNDQwMDAwMywyMy44ODI0NTc2MjIwMDAwNl0sWzkwLjkyMDEyNjU2MjAwMDA2LDIzLjg4MjY3ODc3OTAwMDA2XSxbOTAuOTIwMjM5ODU0MDAwMDQsMjMuODgyODk5OTQzMDAwMDRdLFs5MC45MjEwMzQ4MjcwMDAwOCwyMy44ODUwNjczMTIwMDAwNV0sWzkwLjkyMjMzMDQyODAwMDA3LDIzLjg4ODY1ODEyMTAwMDA1XSxbOTAuOTIyNDI4MzcxMDAwMDgsMjMuODg4OTY0NjExMDAwMDZdLFs5MC45MjI2MTI1ODcwMDAwNiwyMy44ODk1NzY1MzUwMDAwNl0sWzkwLjkyMzEyODc5NTAwMDA4LDIzLjg5MTM3OTc3NzAwMDA1XSxbOTAuOTIzMTk1OTg1MDAwMDYsMjMuODkxNzY0MzUxMDAwMDZdLFs5MC45MjMyMjQzNjIwMDAwNCwyMy44OTE5NTY2NjkwMDAwMl0sWzkwLjkyMzI4Mjg2MTAwMDA4LDIzLjg5MjMyNzE4MTAwMDA0XSxbOTAuOTIzMzg2OTM3MDAwMDMsMjMuODkyOTc3OTY4MDAwMDNdLFs5MC45MjM0NDYzNTkwMDAwOCwyMy44OTMzMDU1NzUwMDAwNl0sWzkwLjkyMzQ1MTQ2MzAwMDA1LDIzLjg5MzMzMjYzOTAwMDA1XSxbOTAuOTIzNTIzNDQ0MDAwMDcsMjMuODkzNjEzMzE5MDAwMDVdLFs5MC45MjM1MzYwNjIwMDAwNCwyMy44OTM2NjEyMjMwMDAwNF0sWzkwLjkyNDExNTY1MDAwMDAzLDIzLjg5NTgyNTkxMzAwMDA3XSxbOTAuOTI0Mjk1NDQ1MDAwMDQsMjMuODk2NDE4MTAzMDAwMDNdLFs5MC45MjQ0ODk2NzgwMDAwNCwyMy44OTcwNTQyMzMwMDAwNl0sWzkwLjkyNDc0NTI4OTAwMDA0LDIzLjg5Nzc3NDEwMzAwMDA3XSxbOTAuOTI0OTA2MDM2MDAwMDQsMjMuODk4MTkwMjg3MDAwMDNdLFs5MC45MjUwMDY2MTUwMDAwOSwyMy44OTg0MzQxMDIwMDAwN10sWzkwLjkyNTIwNzA4MjAwMDA0LDIzLjg5ODkwOTg4MzAwMDA0XSxbOTAuOTMwMTE3NDQyMDAwMDQsMjMuOTA5ODgzMDk5MDAwMDddLFs5MC45MzAyNjI2MzMwMDAwNCwyMy45MTAwOTQ0NjUwMDAwNF0sWzkwLjkzMDYwNzYxNDAwMDA1LDIzLjkxMDU5NTg5NDAwMDA0XSxbOTAuOTMwODUyMDU2MDAwMDUsMjMuOTEwOTQ3Nzc3MDAwMDVdLFs5MC45MzExOTYzNzIwMDAwNCwyMy45MTE0NDE4NzAwMDAwM10sWzkwLjkzNDA3MDM5MjAwMDA4LDIzLjkxNDY2MTE1NTAwMDAzXSxbOTAuOTM1MzU0Nzk1MDAwMDgsMjMuOTE2MDg5OTQzMDAwMDNdLFs5MC45MzU3NTIwMTQwMDAwNiwyMy45MTY1MDc0OTcwMDAwNV0sWzkwLjkzNTk2NTI0NzAwMDA3LDIzLjkxNjcwMDM3OTAwMDA4XSxbOTAuOTM3MzMwODM2MDAwMDYsMjMuOTE3ODg2NDkzMDAwMDNdLFs5MC45Mzg5NzQ4MDgwMDAwNywyMy45MTkyNjk1OTAwMDAwNl0sWzkwLjkzOTMyMDUwOTAwMDA4LDIzLjkxOTUyMjYyMzAwMDAzXSxbOTAuOTM5NDQ5NDY4MDAwMDgsMjMuOTE5NjA4NzYzMDAwMDRdLFs5MC45Mzk4MDQ1MjAwMDAwNSwyMy45MTk3OTYyNTgwMDAwOF0sWzkwLjk0MDkxNTUzMzAwMDA3LDIzLjkyMDI0NjEyMzAwMDAzXSxbOTAuOTQxMTExMjk4MDAwMDcsMjMuOTIwMzE0MzU1MDAwMDddLFs5MC45NDEyNjg4NzEwMDAwMywyMy45MjAzNjU4ODcwMDAwNl0sWzkwLjk0MjcyNDU0MDAwMDA5LDIzLjkyMDgzNzkwMDAwMDA0XSxbOTAuOTQzOTA4NjU5MDAwMDQsMjMuOTIxMjA0ODgyMDAwMDRdLFs5MC45NDQyNjAyNDIwMDAwNCwyMy45MjEyNTE4MzEwMDAwNl0sWzkwLjk0NDU0NjEyMDAwMDA0LDIzLjkyMTI5ODYyMDAwMDA3XSxbOTAuOTQ0Nzc4ODIyMDAwMDUsMjMuOTIxMzc5MDM5MDAwMDRdLFs5MC45NDQ4MTgyMjMwMDAwOCwyMy45MjEzOTI5MDgwMDAwM10sWzkwLjk0NTAzOTQ5NDAwMDA3LDIzLjkyMTUwNjEzNzAwMDA1XSxbOTAuOTQ1MzQ3OTMwMDAwMDgsMjMuOTIxNjk4OTg0MDAwMDVdLFs5MC45NDU5Njk5NDcwMDAwNCwyMy45MjIxMTY4MjEwMDAwM10sWzkwLjk0NzYyODA0MTAwMDA5LDIzLjkyMzM5NTMwNzAwMDA4XSxbOTAuOTQ4MjYwNDcwMDAwMDQsMjMuOTIzODkwOTY3MDAwMDNdLFs5MC45NDg0MzM1MDcwMDAwNiwyMy45MjQwNDExNzkwMDAwM10sWzkwLjk0ODYwNjc1NDAwMDA4LDIzLjkyNDIyMDE3NzAwMDA1XSxbOTAuOTQ5MDk0NDY4MDAwMDYsMjMuOTI0NzQzMjU4MDAwMDNdLFs5MC45NDkzNzczODkwMDAwNiwyMy45MjUwNTU5MjMwMDAwNl0sWzkwLjk1MDM5ODI1NjAwMDA4LDIzLjkyNjM1MTI5NDAwMDAzXSxbOTAuOTUwNDQ0NDUxMDAwMDcsMjMuOTI2NDU0MzA4MDAwMDddLFs5MC45NTA1MzcwNjcwMDAwOCwyMy45MjY2OTA4MTUwMDAwM10sWzkwLjk1MTEzNjE0MzAwMDA0LDIzLjkyODMzMDI5NjAwMDA3XSxbOTAuOTUxMTgxNjU1MDAwMDgsMjMuOTI4NTA3MjYwMDAwMDZdLFs5MC45NTEyMjU3NDkwMDAwNiwyMy45Mjg3NDIzNzMwMDAwM10sWzkwLjk1MTI2OTU1NzAwMDA1LDIzLjkyOTAyMjA4MTAwMDAzXSxbOTAuOTUxODY1MDMzMDAwMDUsMjMuOTM2MDMwMzAzMDAwMDVdLFs5MC45NTIyMDQ0ODMwMDAwNiwyMy45NDAwMjU4MDcwMDAwNF0sWzkwLjk1MjMyNjIzNDAwMDA1LDIzLjk0MTU1MjUyMTAwMDA2XSxbOTAuOTUyNjI4NjczMDAwMDUsMjMuOTQ1ODU1ODkwMDAwMDhdLFs5MC45NTI2NDA4MzcwMDAwNSwyMy45NDYwOTA2MzQwMDAwM10sWzkwLjk1MjY1MjgyMzAwMDA1LDIzLjk0NjM4NDY1MTAwMDA3XSxbOTAuOTUyNTMwNjI5MDAwMDgsMjMuOTQ3MDU3Njk4MDAwMDRdLFs5MC45NTI0MjQ5NTgwMDAwNSwyMy45NDc1NTUwODkwMDAwNV0sWzkwLjk1MjM1MzQ2NjAwMDAzLDIzLjk0ODAyMzQ4MzAwMDA0XSxbOTAuOTUyMjMzNjI2MDAwMDcsMjMuOTQ5NTE5NTE2MDAwMDddLFs5MC45NTIyMDg5NjEwMDAwNSwyMy45NDk4NDA4NTUwMDAwNV0sWzkwLjk1MjE5MTk3MTAwMDA1LDIzLjk1MDEyMDM3NTAwMDA0XSxbOTAuOTUyMTg3NDc4MDAwMDQsMjMuOTUwNDI4NjA0MDAwMDJdLFs5MC45NTIxOTg4NTAwMDAwNiwyMy45NTA3MjI2MjUwMDAwM10sWzkwLjk1MjIxMTUyMDAwMDA1LDIzLjk1MDk0MjY5MjAwMDA3XSxbOTAuOTUyMjc2NDY1MDAwMDcsMjMuOTUxNTg5NzM5MDAwMDRdLFs5MC45NTIzODczMDIwMDAwMywyMy45NTIwNDYyNzYwMDAwM10sWzkwLjk1MjQ2MjQ0ODAwMDA2LDIzLjk1MjMyNjM1NDAwMDA0XSxbOTAuOTUzMDAyMzAzMDAwMDYsMjMuOTUzNzQyNjU0MDAwMDVdLFs5MC45NTMwNjQwOTcwMDAwNCwyMy45NTM4NzY2MTYwMDAwNl0sWzkwLjk1MzE3NDAwNTAwMDA1LDIzLjk1NDAzOTA2NjAwMDA2XSxbOTAuOTU2MzU4NzQ4MDAwMDcsMjMuOTU4NzA3Nzc0MDAwMDZdLFs5MC45NTY1MzE3NjAwMDAwOCwyMy45NTg5MzAyMjcwMDAwNV0sWzkwLjk1NjczNjgyNjAwMDA1LDIzLjk1OTE2NzcyMTAwMDAzXSxbOTAuOTU2OTQxMTY4MDAwMDcsMjMuOTU5MzkwNTQ0MDAwMDNdLFs5MC45NTc4MjUwMTEwMDAwNywyMy45NjAyOTgzNDgwMDAwNF0sWzkwLjk2MDg4NzY5NjAwMDA0LDIzLjk2MzI5MDEwMTAwMDA0XSxbOTAuOTYxMTQwOTgxMDAwMDksMjMuOTYzNDg0Mzg3MDAwMDVdLFs5MC45NjE3NDI5OTQwMDAwOCwyMy45NjM5MDM0MDYwMDAwNF0sWzkwLjk2MjMyOTkzNzAwMDA1LDIzLjk2NDI3NzkyNDAwMDA0XSxbOTAuOTYyNjY0MTAwMDAwMDQsMjMuOTY0NDQ0MDQwMDAwMDVdLFs5MC45NjM0MTQyMzMwMDAwNCwyMy45NjQ3OTA0MzQwMDAwN10sWzkwLjk2Mzc4MTUwOTAwMDA2LDIzLjk2NDk0ODQzOTAwMDA3XSxbOTAuOTY0MTE1NDkyMDAwMDgsMjMuOTY1MDg5NzE3MDAwMDddLFs5MC45NjQzNTI2MTYwMDAwNCwyMy45NjUxNzQ1OTIwMDAwNF0sWzkwLjk2NDU0NTY3ODAwMDA0LDIzLjk2NTE5ODc4MDAwMDA0XSxbOTAuOTY0NjE4ODQyMDAwMDUsMjMuOTY1MjA3OTE3MDAwMDRdLFs5MC45NjQ3NjQ1MjYwMDAwNywyMy45NjUyMjE2NzgwMDAwM10sWzkwLjk2NDkxMDY5NTAwMDA3LDIzLjk2NTIxNzkzODAwMDAyXSxbOTAuOTY1MDM3ODAwMDAwMDYsMjMuOTY1MjExNDkzMDAwMDNdLFs5MC45NjUxODEzODkwMDAwNywyMy45NjUxOTEzOTcwMDAwN10sWzkwLjk2NTM4Nzc3NjAwMDA2LDIzLjk2NTE5MDY2NTAwMDAyXSxbOTAuOTY1Nzg0NzgwMDAwMDQsMjMuOTY1MjE1ODI1MDAwMDNdLFs5MC45NjYwNzEzODAwMDAwNywyMy45NjUyNjMxMzEwMDAwM10sWzkwLjk2NjI5NDA2NzAwMDA0LDIzLjk2NTMwNjMyMjAwMDA2XSxbOTAuOTY2NjQ1NDA4MDAwMDMsMjMuOTY1Mzg1OTU5MDAwMDZdLFs5MC45NjY3ODg5MjUwMDAwNiwyMy45NjU0Mzg2NzkwMDAwNF0sWzkwLjk2NzA0NDYxMzAwMDA0LDIzLjk2NTU0MTQ5NTAwMDAyXSxbOTAuOTY3NzM0NzM3MDAwMDYsMjMuOTY1ODI4NDEzMDAwMDVdLFs5MC45NzEzODM5MTcwMDAwOCwyMy45Njc0NDE3NjIwMDAwOF0sWzkwLjk3MTU0MTA3OTAwMDA4LDIzLjk2NzUxMTMyNTAwMDAzXSxbOTAuOTcxNjk4ODMyMDAwMDcsMjMuOTY3NjU5OTEyMDAwMDRdLFs5MC45NzIwMDU1MjgwMDAwNywyMy45NjgwMTAyMDAwMDAwNF0sWzkwLjk3MjE0NjQxNTAwMDA1LDIzLjk2ODIwMjkyMTAwMDA2XSxbOTAuOTcyNDQxNzU5MDAwMDUsMjMuOTY4NzU5MzExMDAwMDRdLFs5MC45NzI3MzQ2NDMwMDAwOCwyMy45NjkzMTUxNTEwMDAwNV0sWzkwLjk3Mjc1MTUzNzAwMDA4LDIzLjk2OTM1NjI0OTAwMDA0XSxbOTAuOTcyNzgyMjAwMDAwMDQsMjMuOTY5NDMxMTMwMDAwMDNdLFs5MC45NzI4NTcyOTEwMDAwOCwyMy45Njk2MTQ2NzEwMDAwNF0sWzkwLjk3Mjk2NTM2NDAwMDA2LDIzLjk2OTkzNjI5ODAwMDA1XSxbOTAuOTczMjgxNzEwMDAwMDQsMjMuOTcxMjQzMjk4MDAwMDVdLFs5MC45NzMzNDE2NzQwMDAwNCwyMy45NzE1Mzg3MDAwMDAwNV0sWzkwLjk3MzQzODA5NjAwMDA1LDIzLjk3MjEwODIwMjAwMDA3XSxbOTAuOTczNDgxNjM1MDAwMDQsMjMuOTcyNDI1MTU5MDAwMDddLFs5MC45NzQzNDY2NDEwMDAwNywyMy45ODA2ODQwNjQwMDAwNl0sWzkwLjk3NDI0MzY3NDAwMDA0LDIzLjk4NDcxNzg0ODAwMDA2XSxbOTAuOTc0MjA3NzE2MDAwMDgsMjMuOTg1MjQ2NDE4MDAwMDNdLFs5MC45NzQxNTE0NjkwMDAwNSwyMy45ODYwMTc4MzkwMDAwNl0sWzkwLjk3NDA4MzcwMjAwMDA5LDIzLjk4NjcyNzgwODAwMDA3XSxbOTAuOTc0MDE0NDk4MDAwMDMsMjMuOTg3MzI4ODQyMDAwMDddLFs5MC45NzM5NzAwNzIwMDAwNCwyMy45ODc2Mjk5ODUwMDAwN10sWzkwLjk3MzgyMjI5MDAwMDA0LDIzLjk4ODQ4NDQwMDAwMDA2XSxbOTAuOTczNzYzNzE0MDAwMDksMjMuOTg4NzAxNTI5MDAwMDJdLFs5MC45NzM1MzEzMDcwMDAwMywyMy45ODk0OTU1MTgwMDAwN10sWzkwLjk3MDk1MDY5NzAwMDAzLDIzLjk5NjgzOTgwNjAwMDAzXSxbOTAuOTcwNjYxMDY1MDAwMDYsMjMuOTk3MDUzMzE2MDAwMDZdLFs5MC45Njk5NTA2OTgwMDAwNSwyMy45OTc0NDk1NTEwMDAwNV0sWzkwLjk2OTkxNzAxNTAwMDA4LDIzLjk5NzQ2NDQ0MDAwMDA0XSxbOTAuOTY4MzI2MzA0MDAwMDcsMjMuOTk4MTI0MTk4MDAwMDNdLFs5MC45Njc0ODA4ODUwMDAwNCwyMy45OTg2MjA2MjEwMDAwNF0sWzkwLjk2NzE5ODA3ODAwMDA4LDIzLjk5ODkyNjY1NTAwMDA1XSxbOTAuOTY3MTQyNjE0MDAwMDcsMjMuOTk4OTg2ODM4MDAwMDZdLFs5MC45NjcwNTM0NTQwMDAwNSwyMy45OTkxNDIwNjUwMDAwNl0sWzkwLjk2Njc3MzM2NTAwMDA1LDIzLjk5OTY0NzMzNjAwMDA3XSxbOTAuOTY2NjkxNTIxMDAwMDksMjMuOTk5ODc3NTkxMDAwMDNdLFs5MC45NjY0ODE2MTEwMDAwNiwyNC4wMDA1NjU4NzIwMDAwNF0sWzkwLjk2NjMwNzcyNjAwMDA4LDI0LjAwMTIyNDAxMDAwMDA0XSxbOTAuOTY1ODM0NTA0MDAwMDQsMjQuMDA0NTAyNjAzMDAwMDVdLFs5MC45NjU4NzY4NzkwMDAwNiwyNC4wMDU0MDQ5MTkwMDAwNl0sWzkwLjk2NjE5MDM3ODAwMDA4LDI0LjAwNjI0NDU2NzAwMDA3XSxbOTAuOTcxODQyOTY3MDAwMDQsMjQuMDE1OTk3MjU4MDAwMDNdLFs5MC45NzM3MDIzMDYwMDAwNiwyNC4wMTkwNzcwMzkwMDAwMl0sWzkwLjk3NTE1OTU1NzAwMDA0LDI0LjAyMTIyNDU5NzAwMDA3XSxbOTAuOTc3NzIxODU1MDAwMDgsMjQuMDI0MTEwMTg3MDAwMDhdLFs5MC45OTE3MjYzMDQwMDAwNSwyNC4wMzcwMzA0OTQwMDAwOF0sWzkwLjk5NTMyNzA4NzAwMDA4LDI0LjA0MDExNzMyMzAwMDA2XSxbOTAuOTk4NzY0NTcxMDAwMDQsMjQuMDQzMDQ3NjQxMDAwMDRdLFs5MS4wMDI1ODIzMDgwMDAwNiwyNC4wNDYwMDk4MjAwMDAwNV0sWzkxLjAwODUxMzg5NzAwMDA2LDI0LjA0OTg5ODM3NzAwMDAzXSxbOTEuMDEyMDkwOTAxMDAwMDgsMjQuMDUxMTg4MjY4MDAwMDNdLFs5MS4wMTU1ODA2NjQwMDAwOCwyNC4wNTIwMDU2MzUwMDAwNl0sWzkxLjAyMjQ2MTAyNDAwMDA1LDI0LjA1NDY4NTYwMTAwMDA3XSxbOTEuMDM3ODczODQ0MDAwMDUsMjQuMDYzMTk4Mjg2MDAwMDRdLFs5MS4wMzkxNzczNTYwMDAwNCwyNC4wNjQwNzUwNzIwMDAwNF0sWzkxLjAzOTcyNDU2ODAwMDA1LDI0LjA2NDQ2OTI5NDAwMDA1XSxbOTEuMDQwNTcxODU5MDAwMDcsMjQuMDY1MTAzMDYyMDAwMDVdLFs5MS4wNDE1NjY5NTYwMDAwNSwyNC4wNjU5MjE1MjYwMDAwN10sWzkxLjA0MTYwNjY1ODAwMDAzLDI0LjA2NTk2NTg0NzAwMDAzXSxbOTEuMDQ0MzM1NTU1MDAwMDMsMjQuMDY5MDg5NTY1MDAwMDddLFs5MS4wNDQ0NDkxMzcwMDAwNywyNC4wNjkyMjMxMjkwMDAwMl0sWzkxLjA0NDYwNjg1NzAwMDA4LDI0LjA2OTQxNzM1MzAwMDA2XSxbOTEuMDQ0ODE1NTMyMDAwMDksMjQuMDY5Njc4OTY1MDAwMDRdLFs5MS4wNDUwMDA2ODIwMDAwOCwyNC4wNjk5MTk4NTIwMDAwNl0sWzkxLjA0NTI1MzE0NDAwMDA3LDI0LjA3MDI3NDI5ODAwMDA3XSxbOTEuMDUwMTkwNzkyMDAwMDgsMjQuMDc3Mjg1OTkwMDAwMDZdLFs5MS4wNTA0MDA0ODEwMDAwNSwyNC4wNzc1OTMzMDYwMDAwNF0sWzkxLjA1MDUwNTA5NDAwMDA3LDI0LjA3Nzc1NjI3OTAwMDAzXSxbOTEuMDUxMTQyNDY3MDAwMDMsMjQuMDc4NzkxNjIzMDAwMDNdLFs5MS4wNTEzNDQzODIwMDAwOCwyNC4wNzkxMjU1MjEwMDAwNF0sWzkxLjA1MjMzNzI3ODAwMDA0LDI0LjA4MTMwOTMzMzAwMDA0XSxbOTEuMDUyNTAwMjcyMDAwMDMsMjQuMDgxNjk0Mjk3MDAwMDddLFs5MS4wNTI4OTQwODEwMDAwMywyNC4wODI2MzgxNzIwMDAwM10sWzkxLjA1MzAyODQzNDAwMDA1LDI0LjA4Mjk3ODc0MTAwMDAzXSxbOTEuMDUzMTY1OTY4MDAwMDMsMjQuMDgzMzMyMjcwMDAwMDNdLFs5MS4wNTM1Mjg5ODYwMDAwNiwyNC4wODQ0MTkxNjIwMDAwN10sWzkxLjA1MzU0ODU2NjAwMDA3LDI0LjA4NDQ4MjgxMTAwMDA0XSxbOTEuMDUzNzEwNDkxMDAwMDYsMjQuMDg1NDg4MTE0MDAwMDRdLFs5MS4wNTM3NzI1MzIwMDAwNCwyNC4wODYyMzMzMjgwMDAwNV0sWzkxLjA1Mzg5Mjc5MTAwMDA3LDI0LjA4ODY4MzkxNDAwMDA2XSxbOTEuMDUzODkxODMzMDAwMDgsMjQuMDg5MTY4MjIxMDAwMDJdLFs5MS4wNTM4ODc3MzQwMDAwNiwyNC4wODk0MTg4NjUwMDAwM10sWzkxLjA1MzgzMTU2NTAwMDA1LDI0LjA5MDU5NTAwNTAwMDA3XSxbOTEuMDUzODA0NjQxMDAwMDYsMjQuMDkxMTM3MDY1MDAwMDVdLFs5MS4wNTM2NTI5NTgwMDAwNCwyNC4wOTI4ODkwNDEwMDAwM10sWzkxLjA1MzQ0MDM5NDAwMDA2LDI0LjA5MzUxMjUzMDAwMDA1XSxbOTEuMDUzMzEzMzg2MDAwMDcsMjQuMDkzODQ2NDMxMDAwMDNdLFs5MS4wNTMwODU1OTgwMDAwNSwyNC4wOTQ0MTMwMTgwMDAwN10sWzkxLjA1Mjk3MDM2MDAwMDA3LDI0LjA5NDY4MjQ5MTAwMDA3XSxbOTEuMDUyMjg1NDg2MDAwMDcsMjQuMDk2Mjc0NDQ1MDAwMDZdLFs5MS4wNDk4MTc4NzkwMDAwNSwyNC4xMDE5OTYzMjUwMDAwN10sWzkxLjA0NjE1NTA3MDAwMDA1LDI0LjEwNzYyMDgwMjAwMDA0XSxbOTEuMDQ2MDQzMTEwMDAwMDgsMjQuMTA3NzY3MTk3MDAwMDRdLFs5MS4wNDU1ODQ4MjYwMDAwNCwyNC4xMDgzNTM0MTIwMDAwNF0sWzkxLjA0NDIzMTE4NTAwMDA2LDI0LjEwOTkyNTYzNTAwMDAyXSxbOTEuMDQzNzQwNjE4MDAwMDcsMjQuMTEwNDAwMzAzMDAwMDZdLFs5MS4wNDMyMzAyNTkwMDAwNCwyNC4xMTA4NjE1NjAwMDAwNV0sWzkxLjAzOTM5NDI0NzAwMDA4LDI0LjExNDIxODUzNDAwMDAzXSxbOTEuMDM3NzkxNjY3MDAwMDgsMjQuMTE1MzY1NjcwMDAwMDddLFs5MS4wMzQ4NDYzNTgwMDAwNCwyNC4xMTczMjg0OTUwMDAwNF0sWzkxLjAzMjgwNjEwMjAwMDA1LDI0LjExODY2MzEyMDAwMDA2XSxbOTEuMDI3NDI2NzEyMDAwMDgsMjQuMTIxNTAzMDM1MDAwMDVdLFs5MS4wMjczODc0OTgwMDAwNSwyNC4xMjE1MjEzNjIwMDAwN10sWzkxLjAyNzEwOTMyNDAwMDA0LDI0LjEyMTY1MTM2MzAwMDA3XSxbOTEuMDI2ODgyNjA0MDAwMDQsMjQuMTIxNzU1NjE3MDAwMDhdLFs5MS4wMjY3NTMzMDkwMDAwNywyNC4xMjE4MTQ2MjQwMDAwMl0sWzkxLjAyNjM2MzUzODAwMDA2LDI0LjEyMTk4NjU4MDAwMDA1XSxbOTEuMDI2MjI5MzA5MDAwMDksMjQuMTIyMDQzOTI3MDAwMDVdLFs5MS4wMjYwNzc5MTYwMDAwOCwyNC4xMjIxMDgxNjQwMDAwNV0sWzkxLjAyNTkzNzUzMjAwMDA2LDI0LjEyMjE2NDk4NzAwMDA4XSxbOTEuMDI1NjkwMzk5MDAwMDQsMjQuMTIyMjU0NzAyMDAwMDhdLFs5MS4wMjQ4ODQ1NDAwMDAwNywyNC4xMjI1MzgzODYwMDAwM10sWzkxLjAyNDU2NDg5NzAwMDA2LDI0LjEyMjYzNTkyMzAwMDA4XSxbOTEuMDI0MTMzMDA5MDAwMDgsMjQuMTIyNzcxNDY2MDAwMDddLFs5MS4wMjMzMTkwMjIwMDAwNywyNC4xMjMwMzkzOTIwMDAwN10sWzkxLjAyMjU4OTA3NDAwMDA1LDI0LjEyMzI4MDIyMzAwMDA1XSxbOTEuMDIxNjczODg2MDAwMDMsMjQuMTIzNTgzODE1MDAwMDddLFs5MS4wMjEzMjEyNTgwMDAwNiwyNC4xMjM3MTAzNTQwMDAwMl0sWzkxLjAxNDc3OTM5NDAwMDA3LDI0LjEyNjIxMTU5MjAwMDA2XSxbOTEuMDE0NDkyNTUwMDAwMDYsMjQuMTI2MzM3MTEzMDAwMDNdLFs5MS4wMTM5NTI2NzkwMDAwNiwyNC4xMjY1ODY4MDAwMDAwNF0sWzkxLjAxMjgzODExNDAwMDAzLDI0LjEyNzExNjg3OTAwMDAzXSxbOTEuMDExOTIzMzI0MDAwMDcsMjQuMTI3NTU1ODgwMDAwMDVdLFs5MS4wMDk0Njg1OTUwMDAwNCwyNC4xMjg3OTM2MDcwMDAwM10sWzkxLjAwOTE2Njk3ODAwMDA1LDI0LjEyODk5NzExMDAwMDA2XSxbOTEuMDA4ODE3MTg1MDAwMDUsMjQuMTI5MjUzNDI1MDAwMDZdLFs5MC45OTc4NDA5MTcwMDAwOCwyNC4xMzc3ODc4NTgwMDAwMl0sWzkwLjk5NzE2MDU1ODAwMDA4LDI0LjEzODMzMzA1MTAwMDA3XSxbOTAuOTk3MDI3OTQ4MDAwMDQsMjQuMTM4NDQ0NTUxMDAwMDhdLFs5MC45OTY2NDAxMzgwMDAwMywyNC4xMzg4MDIxMjUwMDAwNF0sWzkwLjk5NjQ1ODkzMzAwMDA0LDI0LjEzODk5MjQwMDAwMDA2XSxbOTAuOTk2MTU1NzYxMDAwMDcsMjQuMTM5MzE4OTQwMDAwMDddLFs5MC45OTUyMTQ1MjcwMDAwOSwyNC4xNDAzMzMxOTcwMDAwN10sWzkwLjk5Mzk5NTYxMDAwMDA3LDI0LjE0MTcxMjIwMDAwMDAzXSxbOTAuOTg1NDA2NzYyMDAwMDgsMjQuMTUyMDQyNjc3MDAwMDVdLFs5MC45ODUzMDg3NjIwMDAwNSwyNC4xNTIxNzgyMTQwMDAwNl0sWzkwLjk4NTE0MDc4NzAwMDAzLDI0LjE1MjU3NDQxODAwMDAzXSxbOTAuOTg1MTQ2NzU5MDAwMDMsMjQuMTUyNzExNTQzMDAwMDddLFs5MC45ODUxNTkxNTcwMDAwNiwyNC4xNTI4MDQwMzIwMDAwNl0sWzkwLjk4NTE3MDI0NTAwMDA2LDI0LjE1Mjg4NjM3MTAwMDAyXSxbOTAuOTg1ODc1OTE2MDAwMDUsMjQuMTU2NzQ0OTQ1MDAwMDddLFs5MC45ODg4NTg2NzUwMDAwNywyNC4xNjEzNDkwOTAwMDAwNF0sWzkwLjk4ODkzMDg5NjAwMDA2LDI0LjE2MTQ2MDM4NDAwMDA3XSxbOTAuOTg5MTI2Mzc1MDAwMDcsMjQuMTYxNzU5OTcxMDAwMDRdLFs5MC45ODkzODkxOTMwMDAwOCwyNC4xNjIwOTU4MTAwMDAwNF0sWzkwLjk4OTc2NjE4NzAwMDA0LDI0LjE2MjU1ODQ3NTAwMDAzXSxbOTAuOTkxODg3OTIwMDAwMDcsMjQuMTY0Njk1MjYzMDAwMDZdLFs5MC45OTIzNjcyODMwMDAwOCwyNC4xNjUwMjc5OTUwMDAwNl0sWzkwLjk5OTA2Nzk3NjAwMDA1LDI0LjE2ODc5MjYyMDAwMDAzXSxbOTEuMDA0MjIxODI2MDAwMDUsMjQuMTcxMzkzNjM1MDAwMDddLFs5MS4wMDQ4Mzc0MDcwMDAwOCwyNC4xNzE2NzIzNjkwMDAwOF0sWzkxLjAwNTI5MzE2ODAwMDA0LDI0LjE3MTg5MDYzMjAwMDA0XSxbOTEuMDA3ODE2MTUyMDAwMDMsMjQuMTczMjA0MzkxMDAwMDddLFs5MS4wMDg1NTc1MzMwMDAwNCwyNC4xNzM2NzQxOTQwMDAwNl0sWzkxLjAwODYzMTc0MDAwMDA2LDI0LjE3MzcyMjI0NjAwMDA3XSxbOTEuMDA4NzM4MTExMDAwMDcsMjQuMTczNzkxNTM0MDAwMDNdLFs5MS4wMTE5MzM1NTkwMDAwNiwyNC4xNzY1NzY4MTMwMDAwNV0sWzkxLjAxNzQ0MzMwNjAwMDA4LDI0LjE4MTg1NTU3MjAwMDA3XSxbOTEuMDIzODMyMzUwMDAwMDgsMjQuMTg4NTQyNzIxMDAwMDNdLFs5MS4wMjQxOTQ4NzAwMDAwMywyNC4xODg5Mzk5MTUwMDAwNV0sWzkxLjAyNDUwOTY0MDAwMDA4LDI0LjE4OTI5MDAxNjAwMDAzXSxbOTEuMDI1MzM3MTI1MDAwMDgsMjQuMTkwMjc0NDkzMDAwMDZdLFs5MS4wMjYyMDA0NjYwMDAwMywyNC4xOTEzNTQ2ODEwMDAwNl0sWzkxLjAyNzI0MDI0NjAwMDA4LDI0LjE5MjcxOTg1MDAwMDA2XSxbOTEuMDI3NDg0NzUwMDAwMDQsMjQuMTkzMDUzNDg0MDAwMDddLFs5MS4wMjc3MzkyMzUwMDAwNywyNC4xOTM0MDM5ODIwMDAwNl0sWzkxLjAyODMxNzQ0MzAwMDA1LDI0LjE5NDIyMDc4OTAwMDA0XSxbOTEuMDI5MDM3NTk0MDAwMDQsMjQuMTk1MzE3NzMwMDAwMDZdLFs5MS4wMjk1MDI1MTMwMDAwNywyNC4xOTYxMjQ1NzEwMDAwNF0sWzkxLjAyOTY0MjQ1OTAwMDA2LDI0LjE5NjM4NjY1NzAwMDA2XSxbOTEuMDI5NzA1NTYyMDAwMDYsMjQuMTk2NTA1MzMwMDAwMDRdLFs5MS4wMjk5NDY2NDcwMDAwMywyNC4xOTY5NDc5MjAwMDAwN10sWzkxLjAzMTM2MTAzMjAwMDA2LDI0LjE5OTUwNjU4ODAwMDA4XSxbOTEuMDMxODIxMjY0MDAwMDksMjQuMjAwMzM4ODUyMDAwMDddLFs5MS4wMzM0MjA1NjgwMDAwNSwyNC4yMDMyMzA5NjIwMDAwOF0sWzkxLjAzMzQ3MzAyMzAwMDA2LDI0LjIwMzMyNTQzMjAwMDA0XSxbOTEuMDM1MDM1Mzg2MDAwMDYsMjQuMjA2MTI5NzE4MDAwMDZdLFs5MS4wMzU5MjIxNDUwMDAwOSwyNC4yMDc0MTg1MjkwMDAwNV0sWzkxLjAzNzI1MjEzNjAwMDA2LDI0LjIwOTMyOTE1OTAwMDA1XSxbOTEuMDM3ODQzMDEwMDAwMDcsMjQuMjEwMTczNDk0MDAwMDZdLFs5MS4wMzg0ODA1OTUwMDAwNywyNC4yMTA3MDUzNzIwMDAwNl0sWzkxLjAzOTkyOTc5NjAwMDA4LDI0LjIxMTgyNjA2NzAwMDA2XSxbOTEuMDQ0MTU3NTE5MDAwMDcsMjQuMjEzNDQ5MjczMDAwMDRdLFs5MS4wNDQyNjY3MDAwMDAwNCwyNC4yMTM0Nzk1NjkwMDAwN10sWzkxLjA0Njk0Njg2NDAwMDA2LDI0LjIxNDE0Njk2ODAwMDAyXSxbOTEuMDUxMzg2MDE0MDAwMDYsMjQuMjE0NzQwNjYzMDAwMDRdLFs5MS4wNjM1NjUxOTgwMDAwNSwyNC4yMTU4NjY4MjgwMDAwNl0sWzkxLjA2NTM2NTA1MzAwMDA1LDI0LjIxNTk3MzkwODAwMDAyXSxbOTEuMDY2MjgxNzM4MDAwMDQsMjQuMjE1OTMzNjI3MDAwMDNdLFs5MS4wNzI0NTIzMjUwMDAwOSwyNC4yMTU2NDkyODMwMDAwNl0sWzkxLjA3MzE4MDYwMTAwMDA1LDI0LjIxNTU5OTU2MTAwMDAzXSxbOTEuMDczNjAwNjg1MDAwMDMsMjQuMjE1NTY3ODE1MDAwMDRdLFs5MS4wNzY5NTU1NTYwMDAwOSwyNC4yMTQ3NzAyODEwMDAwM10sWzkxLjA3NzI4ODQ0ODAwMDA1LDI0LjIxNDY4OTQ2OTAwMDA2XSxbOTEuMDc3NjUxMzY2MDAwMDUsMjQuMjE0NTkzMjA0MDAwMDRdLFs5MS4wODM4MzEyMzkwMDAwNiwyNC4yMTI2NTQ1MjkwMDAwOF0sWzkxLjA4NDE1NDY1MDAwMDA3LDI0LjIxMjU0NTU0NzAwMDA1XSxbOTEuMDg0NjgyOTUwMDAwMDYsMjQuMjEyMzU4MzQ0MDAwMDVdLFs5MS4wODUwODUyMzkwMDAwOCwyNC4yMTIxODg5NjgwMDAwOF0sWzkxLjA4NTUyNDY3ODAwMDA3LDI0LjIxMTk3MzYwOTAwMDA0XSxbOTEuMDg2MTYxNDA3MDAwMDgsMjQuMjExNzI3NDg4MDAwMDddLFs5MS4wODcwMzg0ODIwMDAwOCwyNC4yMTE0NDgwNDQwMDAwNl0sWzkxLjA4NzQxNjk5MjAwMDA0LDI0LjIxMTM3ODE3NDAwMDA2XSxbOTEuMDg3OTg2ODkzMDAwMDUsMjQuMjExMzA3NDk5MDAwMDRdLFs5MS4wODgxNTM1MTMwMDAwNywyNC4yMTEyODg4MTIwMDAwOF0sWzkxLjA4ODQ2ODMxNTAwMDA2LDI0LjIxMTI1MzgyNTAwMDAzXSxbOTEuMDg4NTc2NjA5MDAwMDksMjQuMjExMjUxMzU4MDAwMDNdLFs5MS4wODkxOTY4NDcwMDAwNCwyNC4yMTEyMzg0NTcwMDAwNF0sWzkxLjA4OTMwNTE0NzAwMDA2LDI0LjIxMTIzNjU1NDAwMDA0XSxbOTEuMDg5Njg5MjI1MDAwMDksMjQuMjExMjQyODM5MDAwMDhdLFs5MS4wODk4MTc0NjEwMDAwNSwyNC4yMTEyNjk1NzgwMDAwNF0sWzkxLjA4OTk2NjI2MDAwMDA0LDI0LjIxMTMyNjA4NjAwMDA0XSxbOTEuMDkwMTU0NjcyMDAwMDQsMjQuMjExNDA5NDA0MDAwMDVdLFs5MS4wOTAyODE1MTMwMDAwNCwyNC4yMTE0ODkyMTAwMDAwMl0sWzkxLjA5MDI5ODIyMTAwMDA3LDI0LjIxMTQ5OTgxNjAwMDA3XSxbOTEuMDkwNDYzNTgyMDAwMDQsMjQuMjExNjIyMjQ0MDAwMDddLFs5MS4wOTA1MjQzMDIwMDAwNiwyNC4yMTE2NzAzNTAwMDAwOF0sWzkxLjA5MDU5MjUxMDAwMDA4LDI0LjIxMTczMDI1ODAwMDA1XSxbOTEuMDkxMTUyMTUzMDAwMDUsMjQuMjEyNDc4NjQ2MDAwMDJdLFs5MS4wOTEyNjc3MDIwMDAwNCwyNC4yMTI2Nzc2MjkwMDAwNF0sWzkxLjA5MTU4NTE0OTAwMDA4LDI0LjIxNDI1Mjk2MDAwMDA3XSxbOTEuMDkxNjM3MzcyMDAwMDQsMjQuMjE0NTMxNDE4MDAwMDRdLFs5MS4wOTE0NjkyNzYwMDAwNSwyNC4yMTY1NDQyODEwMDAwNF0sWzkxLjA5MTQ0MzE3NzAwMDAzLDI0LjIxNjY1OTYxMjAwMDA2XSxbOTEuMDkxNDE1MjU5MDAwMDksMjQuMjE2Nzc3NzgxMDAwMDhdLFs5MS4wOTEzODczMzQwMDAwNSwyNC4yMTY4OTUzODMwMDAwNl0sWzkxLjA5MTMzMTc0OTAwMDA2LDI0LjIxNzA4OTM4NDAwMDA4XSxbOTEuMDkxMDQ5MDYyMDAwMDgsMjQuMjE3ODYxMzAzMDAwMDZdLFs5MS4wOTA2MzAwNTEwMDAwNiwyNC4yMTg3NDIwMDcwMDAwNl0sWzkxLjA5MDQxODY1OTAwMDA4LDI0LjIxOTA2OTc2NjAwMDA4XSxbOTEuMDkwMTY4NzY3MDAwMDgsMjQuMjE5NDI5NDA5MDAwMDRdLFs5MS4wOTAwMTM1MjMwMDAwNCwyNC4yMTk2MjkyMDIwMDAwOF0sWzkxLjA4OTcyNDMyNjAwMDA3LDI0LjIxOTkyNzAzNzAwMDA1XSxbOTEuMDg5NTY5Mjc1MDAwMDMsMjQuMjIwMDc3MTU4MDAwMDRdLFs5MS4wODQyNDIzODkwMDAwNSwyNC4yMjQxNDY5NjcwMDAwMl0sWzkxLjA4NDA5NjgwODAwMDA4LDI0LjIyNDI1MzU1MzAwMDA0XSxbOTEuMDgzODU0NDk5MDAwMDQsMjQuMjI0NDIxNzg3MDAwMDRdLFs5MS4wODE0NjAzOTQwMDAwMywyNC4yMjU3NTExMzIwMDAwM10sWzkxLjA3OTgzNTY2NDAwMDA5LDI0LjIyNjY0ODI2ODAwMDA4XSxbOTEuMDc5NzQ4MDQ0MDAwMDQsMjQuMjI2Njk1MTc0MDAwMDRdLFs5MS4wNzk2NDE1OTEwMDAwNCwyNC4yMjY3NzE1NjMwMDAwNl0sWzkxLjA3OTQzNzkyMTAwMDA4LDI0LjIyNjkyNDg0MjAwMDA3XSxbOTEuMDc5MzUwNjA3MDAwMDQsMjQuMjI3MDA4NDMzMDAwMDRdLFs5MS4wNzkyMjI4MDYwMDAwOCwyNC4yMjcxODA5MzAwMDAwM10sWzkxLjA3OTEyMjQ3NzAwMDA2LDI0LjIyNzMyNjcwMTAwMDA0XSxbOTEuMDc4ODk5MDY2MDAwMDgsMjQuMjI3OTEzMDQyMDAwMDddLFs5MS4wNzg4NTExMTYwMDAwNywyNC4yMjgxMzkxNTgwMDAwM10sWzkxLjA3ODc4MDI2NTAwMDAzLDI0LjIyODQ5NjM4NjAwMDA3XSxbOTEuMDc4NzI0NTI4MDAwMDcsMjQuMjI5MDQwMzM1MDAwMDRdLFs5MS4wNzg3NjUzMDIwMDAwOCwyNC4yMjk3ODg0OTMwMDAwNl0sWzkxLjA3ODg1NTU0OTAwMDA4LDI0LjIzMDg1NjMzNTAwMDA2XSxbOTEuMDc4OTU5NDY5MDAwMDQsMjQuMjMxMzU1MTI3MDAwMDNdLFs5MS4wNzkxMTY2MjQwMDAwNSwyNC4yMzE4ODk2NjYwMDAwM10sWzkxLjA3OTQwNjIxNTAwMDA2LDI0LjIzMjgwMDMwOTAwMDAzXSxbOTEuMDc5NjA0MDI1MDAwMDQsMjQuMjMzMzM3OTQ2MDAwMDZdLFs5MS4wODA2MzAzNTMwMDAwNiwyNC4yMzYwNjMxMDcwMDAwNl0sWzkxLjA4MDg2Nzg3MDAwMDA4LDI0LjIzNjYzNjAxOTAwMDA2XSxbOTEuMDgwOTcwODA2MDAwMDQsMjQuMjM2ODcxMjIzMDAwMDRdLFs5MS4wODEwNjI2NTkwMDAwNSwyNC4yMzcwMzMxMjkwMDAwNV0sWzkxLjA4MTE3NDQ0MzAwMDA3LDI0LjIzNzIyMjU1MTAwMDA2XSxbOTEuMDgxNzkyODc4MDAwMDQsMjQuMjM4MTQ2MDkxMDAwMDNdLFs5MS4wODMwNjYzNTIwMDAwNiwyNC4yMzk2NjA0NTEwMDAwOF0sWzkxLjA4MzQwMjk3ODAwMDA0LDI0LjIzOTk0MDgzOTAwMDA0XSxbOTEuMDgzODk0Mjg1MDAwMDQsMjQuMjQwMzE0Mzg0MDAwMDRdLFs5MS4wODQyNTc3NjcwMDAwNSwyNC4yNDA1Njc0ODUwMDAwNF0sWzkxLjA4NTA4NTMzOTAwMDA1LDI0LjI0MTEwNTE0MDAwMDA2XSxbOTEuMDg1OTQ4NzkyMDAwMDcsMjQuMjQxNTE3NzkzMDAwMDddLFs5MS4wODYxOTMzMjQwMDAwOCwyNC4yNDE2MDgwNTIwMDAwNl0sWzkxLjA4NjM0MDg2MjAwMDA0LDI0LjI0MTY1NzIzMzAwMDA3XSxbOTEuMDg2ODYwNDgxMDAwMDMsMjQuMjQxODExXSxbOTEuMDg3MDM1NzE1MDAwMDcsMjQuMjQxODU5NDIwMDAwMDNdLFs5MS4wODczNzMxMzcwMDAwNCwyNC4yNDE5NDIyMzgwMDAwNF0sWzkxLjA4NzgzNzc0NDAwMDA3LDI0LjI0MTk5NzA1NTAwMDA3XSxbOTEuMDk4NjM5NzY2MDAwMDgsMjQuMjQyNTY1MTY1MDAwMDNdLFs5MS4xMDAyNjEzNTYwMDAwMywyNC4yNDI1ODQ0OTMwMDAwNF0sWzkxLjEwMzA0MzY3NTAwMDA0LDI0LjI0MjQzMjgzNjAwMDAzXSxbOTEuMTExMDMzNjUwMDAwMDgsMjQuMjQxNzc2NDA5MDAwMDddLFs5MS4xMzExMzcyNTUwMDAwNiwyNC4yNDI1ODcyNzAwMDAwNl0sWzkxLjEzMTc0NDc0NjAwMDA0LDI0LjI0MjY0ODIyNzAwMDA3XSxbOTEuMTMxOTI4NDQ0MDAwMDQsMjQuMjQyNjc3MzQxMDAwMDVdLFs5MS4xMzM4NDUzNTcwMDAwNCwyNC4yNDMwOTcxMTYwMDAwNl0sWzkxLjEzNzY0OTIyMjAwMDA1LDI0LjI0NDE2MzE1NTAwMDAyXSxbOTEuMTM4MjkxNDI0MDAwMDQsMjQuMjQ0Mzg4MDc1MDAwMDddLFs5MS4xMzk0Mjk2NDkwMDAwOCwyNC4yNDQ4MDUxMzYwMDAwMl0sWzkxLjE0MDMzODQyMTAwMDA4LDI0LjI0NTE3MDI4NzAwMDA2XSxbOTEuMTQwNDY1MDY5MDAwMDcsMjQuMjQ1MjIxMjY1MDAwMDVdLFs5MS4xNDQzNDYyODYwMDAwOSwyNC4yNDY4MDEzMTIwMDAwNl0sWzkxLjE0NTYyNjI0NjAwMDA2LDI0LjI0NzM2Nzk2MzAwMDA0XSxbOTEuMTQ1Nzc1ODUwMDAwMDYsMjQuMjQ3NDM4NTE4MDAwMDJdLFs5MS4xNDYxOTE5MTUwMDAwMywyNC4yNDc2MzYzMjEwMDAwN10sWzkxLjE0NjQwMDUyNTAwMDA1LDI0LjI0Nzc2NTEzMjAwMDA0XSxbOTEuMTQ3OTAwNTE1MDAwMDYsMjQuMjQ4NzAyMDYyMDAwMDZdLFs5MS4xNDgyODEzMTkwMDAwMywyNC4yNDkwMTY5NjIwMDAwNF0sWzkxLjE0ODQ5MTIxMzAwMDA2LDI0LjI0OTIxOTcwMTAwMDA3XSxbOTEuMTQ4NjEwNDQ5MDAwMDUsMjQuMjQ5MzM1NjM3MDAwMDZdLFs5MS4xNDg4MTk4NTMwMDAwOCwyNC4yNDk1NTI0OTAwMDAwNF0sWzkxLjE0OTQ4NDg2OTAwMDA1LDI0LjI1MDI1NTgyNjAwMDA2XSxbOTEuMTUwMDAxMDM4MDAwMDgsMjQuMjUwODM2MTA3MDAwMDVdLFs5MS4xNjUzNTk3NzIwMDAwNCwyNC4yNjA1NTk5OTQwMDAwNl0sWzkxLjE3MzU1Nzg5NDAwMDA2LDI0LjI2NTE5ODYwNjAwMDA3XSxbOTEuMTc3OTMwNTUxMDAwMDMsMjQuMjY4MDIwMjE0MDAwMDVdLFs5MS4xODQyOTUxMjgwMDAwMywyNC4yNzIyMzA0NjgwMDAwM10sWzkxLjE4NDU3MjE0NDAwMDA3LDI0LjI3MjQyNDE2NDAwMDAzXSxbOTEuMTg0NzAxNzMzMDAwMDUsMjQuMjcyNTIxOTI4MDAwMDZdLFs5MS4xODgzMjM4MTEwMDAwMywyNC4yNzUyODg2NzQwMDAwMl0sWzkxLjE4ODY4NTAzOTAwMDA2LDI0LjI3NTU5Nzk3NTAwMDA0XSxbOTEuMTkwMjkwNzY0MDAwMDUsMjQuMjc3MDQzODc0MDAwMDddLFs5MS4xOTEwODczMTcwMDAwNCwyNC4yNzc4MTQ4NDMwMDAwNF0sWzkxLjE5MTk1NjEwNTAwMDAzLDI0LjI3ODY3MTU5NTAwMDA1XSxbOTEuMTkzMDY3ODc3MDAwMDMsMjQuMjc5ODMxNzg3MDAwMDNdLFs5MS4xOTMzMDYyOTUwMDAwNywyNC4yODAxNzQ3NzUwMDAwM10sWzkxLjE5NDY0OTc1ODAwMDA4LDI0LjI4MzQ1NjQ4NDAwMDA2XSxbOTEuMTk0NzcwODIyMDAwMDcsMjQuMjgzNzU5NzU1MDAwMDZdLFs5MS4xOTYwMTUxNjEwMDAwNSwyNC4yODc0OTQ4OTAwMDAwNl0sWzkxLjE5NjE2Nzk3OTAwMDA1LDI0LjI4Nzk2NjEwNjAwMDA2XSxbOTEuMTk2MjQwNDU3MDAwMDQsMjQuMjg4MjA5MzY1MDAwMDZdLFs5MS4xOTYyNzEyMjkwMDAwNSwyNC4yODgzMzg5NDAwMDAwN10sWzkxLjE5NjMxMjM4NjAwMDA1LDI0LjI4ODUyNTQzODAwMDA4XSxbOTEuMTk2Mzg1MTg2MDAwMDQsMjQuMjg4ODY4NTk2MDAwMDRdLFs5MS4xOTY0MTgwNjAwMDAwNCwyNC4yODkxNTY3NTYwMDAwN10sWzkxLjE5NjQyNTIyODAwMDA3LDI0LjI4OTI2NDUwMzAwMDAzXSxbOTEuMTk2NDI5NTM2MDAwMDQsMjQuMjg5MzI5OTQzMDAwMDRdLFs5MS4xOTY0NTY2MDEwMDAwOCwyNC4yOTAzMTIzODIwMDAwMl0sWzkxLjE5NjM5NDc1MzAwMDA1LDI0LjI5MDg3NTAzMTAwMDA0XSxbOTEuMTk2MjcxNzMyMDAwMDcsMjQuMjkxODA5NTQ5MDAwMDVdLFs5MS4xOTYyMjgwNjMwMDAwNCwyNC4yOTIwNzc5OTIwMDAwM10sWzkxLjE5NjExNzc5MjAwMDA1LDI0LjI5MjU5OTI1NDAwMDA0XSxbOTEuMTk2MDg5NDU5MDAwMDYsMjQuMjkyNzI5ODU5MDAwMDhdLFs5MS4xOTU5NzU3ODkwMDAwNCwyNC4yOTMxNTEyNDUwMDAwNV0sWzkxLjE5NTkzMDY1MTAwMDA4LDI0LjI5MzE5NzMxODAwMDA3XSxbOTEuMTkyNjUxNDE2MDAwMDUsMjQuMjkzNDUyODE1MDAwMDJdLFs5MS4xOTI1MTI4OTkwMDAwNiwyNC4yOTM0NTcyODkwMDAwNl0sWzkxLjE5MTgyNTIzNzAwMDA1LDI0LjI5MzQ3NzkyNDAwMDA2XSxbOTEuMTkxMjA1MTc1MDAwMDUsMjQuMjkzNDgzOTE1MDAwMDJdLFs5MS4xODk4NzUyMTQwMDAwNCwyNC4yOTM0MzczMzEwMDAwNl0sWzkxLjE4OTM5MTUyNTAwMDA4LDI0LjI5MzQwNzI1NDAwMDA0XSxbOTEuMTg4OTQ2NjEzMDAwMDQsMjQuMjkzMzc1MTc3MDAwMDNdLFs5MS4xODg0ODMwNTEwMDAwNSwyNC4yOTMzMjQwNTYwMDAwN10sWzkxLjE4ODIyNTk1MjAwMDA0LDI0LjI5MzI5MTA3NDAwMDAyXSxbOTEuMTg1MDk0NzkzMDAwMDgsMjQuMjkyNzgzODQ0MDAwMDRdLFs5MS4xODQ3NDcyODcwMDAwNSwyNC4yOTI2OTY4MTIwMDAwM10sWzkxLjE4NDU5NDc4MDAwMDA1LDI0LjI5MjY1MzQxMzAwMDA0XSxbOTEuMTgwNDQxNzk1MDAwMDQsMjQuMjkwNzIyMTE0MDAwMDZdLFs5MS4xODAxODM3MzMwMDAwNCwyNC4yOTA1ODQxNDIwMDAwNl0sWzkxLjE3NTIwOTM0MjAwMDA3LDI0LjI4ODQ0MzQ2NjAwMDA1XSxbOTEuMTY4Nzc4ODI0MDAwMDcsMjQuMjg1Njk5NzM0MDAwMDVdLFs5MS4xNjg1MjMwMjMwMDAwMywyNC4yODU2MDQ2MjAwMDAwN10sWzkxLjE1OTg5Njc0NDAwMDA0LDI0LjI4MjQ5NTI1NDAwMDAzXSxbOTEuMTU5NDUxNzg3MDAwMDgsMjQuMjgyNDUzNDk0MDAwMDRdLFs5MS4xNTkxNjk2MTUwMDAwNSwyNC4yODI0MzY0NTcwMDAwN10sWzkxLjE1ODkzMjA0NjAwMDA3LDI0LjI4MjQ0ODk5MzAwMDA2XSxbOTEuMTU4ODE3OTg0MDAwMDUsMjQuMjgyNTAwNjYwMDAwMDRdLFs5MS4xNTg3ODQyNTgwMDAwOCwyNC4yODI1MTYxNTcwMDAwM10sWzkxLjE1ODczODMzNTAwMDA3LDI0LjI4MjU0NDcyOTAwMDA1XSxbOTEuMTU4NjUwODkyMDAwMDgsMjQuMjgyNjExOTk3MDAwMDZdLFs5MS4xNTg1NzA3OTEwMDAwNSwyNC4yODI2NzQxMzEwMDAwOF0sWzkxLjE1ODU1NDU3MjAwMDA3LDI0LjI4MjcxODg0MzAwMDA1XSxbOTEuMTU5MDI3NjUwMDAwMDQsMjQuMjg4OTc4NjU1MDAwMDVdLFs5MS4xNTk2MTY4NjUwMDAwMywyNC4yOTI4OTk3MjkwMDAwNl0sWzkxLjE1OTY1Nzk0MjAwMDA4LDI0LjI5MzAxNTEyMzAwMDAzXSxbOTEuMTU5NzY4OTIxMDAwMDgsMjQuMjkzMzAxMDAzMDAwMDddLFs5MS4xNjc5NzQzMjgwMDAwNywyNC4zMTA3NjI4ODgwMDAwNl0sWzkxLjE2OTU0NDI3MTAwMDA2LDI0LjMxNDA1NjYyMDAwMDAzXSxbOTEuMTY5NzQ1NjU2MDAwMDMsMjQuMzE0NDU3NTAxMDAwMDVdLFs5MS4xNjk5MTYwNzYwMDAwNSwyNC4zMTQ3NzI4MjgwMDAwNl0sWzkxLjE2OTk5NjA5NDAwMDA2LDI0LjMxNDkwMTQ2MzAwMDA3XSxbOTEuMTcwMTc2MzEyMDAwMDgsMjQuMzE1MTQzMzQxMDAwMDddLFs5MS4xNzAyNDYwNzcwMDAwNiwyNC4zMTUyMjg1OTQwMDAwOF0sWzkxLjE3MjE1MDExNTAwMDA4LDI0LjMxNzUzMzExMTAwMDA1XSxbOTEuMTc0MDMzMjA4MDAwMDgsMjQuMzE5MzYxMzkyMDAwMDhdLFs5MS4xNzQxMjI2NzYwMDAwOCwyNC4zMTk0NDUzNjQwMDAwNV0sWzkxLjE3NDI3MjI5NjAwMDA4LDI0LjMxOTU3MzQ1ODAwMDA0XSxbOTEuMTc0NDIxMjkxMDAwMDQsMjQuMzE5NzAwNDI5MDAwMDJdLFs5MS4xNzUwMDc5MTIwMDAwNywyNC4zMjAxOTU0MDEwMDAwM10sWzkxLjE3NTA5NzExNjAwMDA3LDI0LjMyMDI1MDU4ODAwMDA4XSxbOTEuMTc1NjMyODg0MDAwMDQsMjQuMzIwNTczODAzMDAwMDZdLFs5MS4xNzU4NDA4NjUwMDAwNSwyNC4zMjA2ODUwNzYwMDAwN10sWzkxLjE3NjEyODU2NDAwMDA3LDI0LjMyMDgyNDUxNzAwMDA2XSxbOTEuMTc2MzkyNzUxMDAwMDQsMjQuMzIwOTUyMjg3MDAwMDddLFs5MS4xNzY1NjQxMDUwMDAwNywyNC4zMjEwMzIyMzUwMDAwOF0sWzkxLjE3NzIwNzQ1OTAwMDA0LDI0LjMyMTI2NTk5NzAwMDA3XSxbOTEuMTc3NTQzNTM1MDAwMDQsMjQuMzIxMzc0NTgxMDAwMDRdLFs5MS4xNzc5MTk2NDUwMDAwMywyNC4zMjE0ODI4NTMwMDAwOF0sWzkxLjE3OTIxMzg1NjAwMDA1LDI0LjMyMTc2MTIyMzAwMDA3XSxbOTEuMTc5NDMxMDM0MDAwMDYsMjQuMzIxODAwNzM3MDAwMDVdLFs5MS4xNzk3Mjc3ODMwMDAwMywyNC4zMjE4NTI2MTcwMDAwNV0sWzkxLjE3OTk2NDY2NjAwMDA1LDI0LjMyMTg5MTQxMzAwMDA2XSxbOTEuMTgwNzE0ODA4MDAwMDYsMjQuMzIxOTQ5MzYwMDAwMDhdLFs5MS4xODY3NTA5NTcwMDAwNywyNC4zMjIxMzUzOTIwMDAwNl0sWzkxLjE4OTk3NDg0NTAwMDA1LDI0LjMyMjA3MjMzODAwMDA1XSxbOTEuMTk2NTY5MjUzMDAwMDYsMjQuMzIxODg2NzMzMDAwMDRdLFs5MS4xOTY2MDg2MjgwMDAwNCwyNC4zMjE4ODE5MDYwMDAwNF0sWzkxLjE5Nzc2OTk3ODAwMDA1LDI0LjMyMTcxNjk2OTAwMDA4XSxbOTEuMTk4MjU5OTk4MDAwMDgsMjQuMzIxNjIyNzk0MDAwMDZdLFs5MS4yMDE2NDY4MDIwMDAwOCwyNC4zMjA3NDYwMTAwMDAwNV0sWzkxLjIwNzYwNjU4NzAwMDA0LDI0LjMxOTE4MzgyNTAwMDA0XSxbOTEuMjI4MzAwMzI0MDAwMDMsMjQuMzE1MDc0MjQ1MDAwMDZdLFs5MS4yMjg1MDcxNzEwMDAwNSwyNC4zMTUwNjQxMDYwMDAwMl0sWzkxLjIyOTU1NDk4MzAwMDA3LDI0LjMxNTAxNjY3OTAwMDA1XSxbOTEuMjI5NzYyNDU3MDAwMDUsMjQuMzE1MDA3NjYyMDAwMDNdLFs5MS4yMzAwMTk3OTgwMDAwNiwyNC4zMTQ5OTY1NDYwMDAwM10sWzkxLjIzMTIzNTQ5ODAwMDA1LDI0LjMxNDk4NjY5MjAwMDA1XSxbOTEuMjMxNDcyODEwMDAwMDcsMjQuMzE1MDA2MjE2MDAwMDNdLFs5MS4yMzE5ODcxMjcwMDAwOCwyNC4zMTUwNzM3MjMwMDAwN10sWzkxLjIzMjQ4MTc0MTAwMDA3LDI0LjMxNTE0MTk1NDAwMDA3XSxbOTEuMjMyNzY4NzI4MDAwMDUsMjQuMzE1MjAyODM4MDAwMDZdLFs5MS4yMzMzMTAwNDAwMDAwNSwyNC4zMTUzMjMxNzgwMDAwM10sWzkxLjIzMzc2OTQ0MDAwMDA2LDI0LjMxNTQ0MzYxNTAwMDA1XSxbOTEuMjM0MDY2Njk0MDAwMDMsMjQuMzE1NTQ3MzA4MDAwMDhdLFs5MS4yMzQyMzQ4ODAwMDAwMywyNC4zMTU2MTUzNjUwMDAwNF0sWzkxLjIzNDQxMDA1ODAwMDA0LDI0LjMxNTcwNTkzOTAwMDA1XSxbOTEuMjM0NTcyMjc3MDAwMDQsMjQuMzE1NzkzNzk4MDAwMDddLFs5MS4yMzQ4MjgxNDUwMDAwNSwyNC4zMTU5NDg2MjQwMDAwNF0sWzkxLjIzNDk2Mzg3ODAwMDAzLDI0LjMxNjAzNjEzMjAwMDA4XSxbOTEuMjM1MjUzNTIxMDAwMDYsMjQuMzE2MzA3NTE1MDAwMDZdLFs5MS4yMzU5MTkwNTkwMDAwOCwyNC4zMTY5NzkzOTQwMDAwNF0sWzkxLjIzNjEyMTYxMzAwMDA4LDI0LjMxNzI4ODczNTAwMDAzXSxbOTEuMjM2MjY3NDg2MDAwMDMsMjQuMzE3NTMyNTAyMDAwMDZdLFs5MS4yMzcxMzM1MjQwMDAwNiwyNC4zMTkzMTU3NjAwMDAwNV0sWzkxLjIzNzIzMDEyNTAwMDA1LDI0LjMxOTU1OTM2MjAwMDA2XSxbOTEuMjM3MjY4OTgxMDAwMDYsMjQuMzE5NjkxNjgyMDAwMDRdLFs5MS4yMzczMTU0NjUwMDAwNSwyNC4zMjAwMzg5ODEwMDAwNF0sWzkxLjIzNzM1MTc4OTAwMDA2LDI0LjMyMDQxNzk2OTAwMDA2XSxbOTEuMjM3MzYyMzM1MDAwMDYsMjQuMzIwODY5OTc4MDAwMDhdLFs5MS4yMzczNjAyMDIwMDAwNSwyNC4zMjEwMzA4NTIwMDAwNF0sWzkxLjIzNzM1ODU5ODAwMDA3LDI0LjMyMTExOTQ3NzAwMDAyXSxbOTEuMjM3MzIzMzMwMDAwMDQsMjQuMzIxOTkxMjE1MDAwMDNdLFs5MS4yMzczMTExMzcwMDAwNiwyNC4zMjIxOTQ1MDMwMDAwNV0sWzkxLjIzNzIxOTYzMjAwMDA2LDI0LjMyMzIzNzcxNzAwMDA0XSxbOTEuMjM3MTg4NTcwMDAwMDYsMjQuMzIzNTI3NTEzMDAwMDRdLFs5MS4yMzcxMTY2NTUwMDAwOCwyNC4zMjQxNzc3MzYwMDAwMl0sWzkxLjIzNzA5MTM2NTAwMDA4LDI0LjMyNDM2NDE5ODAwMDA3XSxbOTEuMjM2OTk3NjEwMDAwMDYsMjQuMzI0Nzk1MDQzMDAwMDVdLFs5MS4yMzYzNzcwMjQwMDAwMywyNC4zMjc1NTQ5OTAwMDAwN10sWzkxLjIzNjM0MDIyMzAwMDA3LDI0LjMyNzY5ODA4NjAwMDA1XSxbOTEuMjM2MTU0MzM2MDAwMDgsMjQuMzI4MzQ2OTc5MDAwMDZdLFs5MS4yMzU5ODAxMjUwMDAwOCwyNC4zMjg5Mjk3NDIwMDAwN10sWzkxLjIzNTgzNzIxODAwMDA5LDI0LjMyOTM3Mzk2ODAwMDAzXSxbOTEuMjM1NTg4MzIwMDAwMDMsMjQuMzMwMTMxNzM5MDAwMDJdLFs5MS4yMzUzNTgyOTkwMDAwNCwyNC4zMzA4MDM1NjkwMDAwN10sWzkxLjIzNDkyNzA2MjAwMDA1LDI0LjMzMTgxNTExNzAwMDA4XSxbOTEuMjM0NzIxNzYzMDAwMDQsMjQuMzMyMjQxNzg4MDAwMDNdLFs5MS4yMzQ1Njk1ODEwMDAwNywyNC4zMzI1NTYyNzUwMDAwNl0sWzkxLjIzNDQzMjM1NTAwMDA4LDI0LjMzMjgyNDkyMzAwMDAzXSxbOTEuMjM0MDc3NTY3MDAwMDQsMjQuMzMzNDYzMzM1MDAwMDNdLFs5MS4yMzM0MjY0NzUwMDAwNCwyNC4zMzQ0ODIzMTAwMDAwNl0sWzkxLjIzMTk2MjMyOTAwMDA1LDI0LjMzNjcyMDI0MjAwMDA3XSxbOTEuMjI4NzgwNzc4MDAwMDQsMjQuMzQxNDU5NDM5MDAwMDZdLFs5MS4yMjg2NjI3OTAwMDAwNCwyNC4zNDE2MTczMDIwMDAwM10sWzkxLjIyMTYwODIzMTAwMDA2LDI0LjM1MDYzMzc0NTAwMDA0XSxbOTEuMjIxNDkzNjY3MDAwMDYsMjQuMzUwNzY1MDQ2MDAwMDVdLFs5MS4yMjAyMTIyNTEwMDAwOCwyNC4zNTIxODE4NzUwMDAwNF0sWzkxLjIxOTkxODg5MTAwMDA4LDI0LjM1MjQ5MjQwNDAwMDAzXSxbOTEuMjE1NjMxMDk5MDAwMDYsMjQuMzU2NzA0MDQ3MDAwMDVdLFs5MS4yMTI1OTE0MDYwMDAwNiwyNC4zNTg3MjgwOTgwMDAwM10sWzkxLjIxMjU3NTU2MDAwMDA2LDI0LjM1ODc0NjI4NjAwMDA0XSxbOTEuMjEyNTE4MDE3MDAwMDQsMjQuMzU4ODUwMDM0MDAwMDZdLFs5MS4yMTI0NzgxOTYwMDAwNiwyNC4zNTg5Mzg0MDEwMDAwNV0sWzkxLjIxMjQ1NzEyMDAwMDA3LDI0LjM1OTA1NDI3MzAwMDAzXSxbOTEuMjEyNDQ4MzgwMDAwMDcsMjQuMzU5MzAwOTkyMDAwMDRdLFs5MS4yMTI0NTI3ODQwMDAwNSwyNC4zNTk4OTI0NjEwMDAwN10sWzkxLjIxMjQ1Njg0MzAwMDA0LDI0LjM2MDI1MzY1MjAwMDA0XSxbOTEuMjEyNDY5MzE4MDAwMDUsMjQuMzYwNjU3NjcwMDAwMDJdLFs5MS4yMTI1NzcxNDIwMDAwNCwyNC4zNjEwNDU2ODcwMDAwNl0sWzkxLjIxMjYzMjUzMjAwMDA0LDI0LjM2MTIzMzE5NDAwMDA4XSxbOTEuMjEyNzQxMzA5MDAwMDgsMjQuMzYxNTkxODU1MDAwMDNdLFs5MS4yMTI4MDUzMjYwMDAwOCwyNC4zNjE3NzkyOTEwMDAwNl0sWzkxLjIxMjg2MTA0ODAwMDA0LDI0LjM2MTkzNjg4MTAwMDA4XSxbOTEuMjEyOTA3NTkwMDAwMDQsMjQuMzYyMDM2NDA5MDAwMDRdLFs5MS4yMTMxOTIwOTIwMDAwNCwyNC4zNjI2MDE5MzEwMDAwM10sWzkxLjIxMzcyNDY3MjAwMDA3LDI0LjM2MzQ2NjI5ODAwMDA1XSxbOTEuMjE0NTgwNDU4MDAwMDYsMjQuMzY0MTA3OTUyMDAwMDRdLFs5MS4yMTQ5ODc4OTIwMDAwNywyNC4zNjQzODI5NDIwMDAwOF0sWzkxLjIxNjg3MTg0MTAwMDA2LDI0LjM2NTQ1NDMyMzAwMDA1XSxbOTEuMjE4MDIzOTY2MDAwMDMsMjQuMzY2MDI1Mjg2MDAwMDJdLFs5MS4yMTgxMTEyNDEwMDAwMywyNC4zNjYwNjY5MTQwMDAwNF0sWzkxLjIxODQwMTg4MTAwMDAzLDI0LjM2NjE3NjMzMTAwMDA4XSxbOTEuMjE5MzE0OTUwMDAwMDcsMjQuMzY2NDkwMTM5MDAwMDZdLFs5MS4yMTk2NTU5NzcwMDAwNiwyNC4zNjY1ODUwMzkwMDAwM10sWzkxLjIyMDEwMzIzMTAwMDA1LDI0LjM2NjcwNTYxMTAwMDA0XSxbOTEuMjIwMzE4MTczMDAwMDcsMjQuMzY2NzU5NzU3MDAwMDddLFs5MS4yMjA1NjE0NDAwMDAwNCwyNC4zNjY4MTE5ODIwMDAwNl0sWzkxLjIyMDY5Nzg2NjAwMDA4LDI0LjM2NjgzODU0MDAwMDA2XSxbOTEuMjIxMDU4ODA1MDAwMDQsMjQuMzY2ODg5MjUxMDAwMDNdLFs5MS4yMjM1NTc5OTcwMDAwNiwyNC4zNjcyMTU2NDYwMDAwM10sWzkxLjIyNDA0NTI4NjAwMDAzLDI0LjM2NzIwNjA2ODAwMDAzXSxbOTEuMjI0MTcxNTY4MDAwMDMsMjQuMzY3MjAyNzkxMDAwMDddLFs5MS4yMjQ0NTQwNTgwMDAwNSwyNC4zNjcxNjg5MDIwMDAwNl0sWzkxLjIyNzM0OTk5OTAwMDA3LDI0LjM2NjY1NzgzMjAwMDA0XSxbOTEuMjI3ODI2NjcwMDAwMDcsMjQuMzY2NTY5ODc1MDAwMDRdLFs5MS4yMzk2OTk2MTYwMDAwNSwyNC4zNzQ2MjU1NDIwMDAwNV0sWzkxLjI1MDY0MjUzNzAwMDAzLDI0LjM3NjMxNTIwMjAwMDA2XSxbOTEuMjU0MTU0NTA0MDAwMDQsMjQuMzgyNzc0MDEwMDAwMDVdLFs5MS4yNTE1OTAwMDIwMDAwNiwyNC4zODQ5ODkwNTgwMDAwM10sWzkxLjI0NjUwNTYzNDAwMDA3LDI0LjM4OTcyNDU3MDAwMDA2XSxbOTEuMjQyNzQ5MjM0MDAwMDksMjQuMzkzNDE0NDc0MDAwMDVdLFs5MS4yNDMxNDMzNzUwMDAwNSwyNC4zOTg5MjcxNzIwMDAwN10sWzkxLjI0MTk3ODA0NDAwMDA2LDI0LjQwMTcxMTM0OTAwMDA0XSxbOTEuMjQxOTI5NTkyMDAwMDgsMjQuNDAxNzk4NjY0MDAwMDddLFs5MS4yNDE4NTUzMDAwMDAwNSwyNC40MDE4OTA3MDcwMDAwNl0sWzkxLjIzODAxMjQ5NjAwMDA3LDI0LjQwNjM3NjQ2MDAwMDA1XSxbOTEuMjM3NjM4NTk2MDAwMDcsMjQuNDA2NzE1MzM4MDAwMDNdLFs5MS4yMzc1MTc4NTYwMDAwNywyNC40MDY3ODUxODMwMDAwN10sWzkxLjIzNzE4NzEyMjAwMDA4LDI0LjQwNjkzNjg4OTAwMDA2XSxbOTEuMjM3MDQ1OTAxMDAwMDQsMjQuNDA2OTkyMjI1MDAwMDddLFs5MS4yMzM4NDI3MjUwMDAwNCwyNC40MDc5NDI4NjEwMDAwNF0sWzkxLjIzMzU3Njc5NTAwMDAzLDI0LjQwNzk3NzE5ODAwMDAzXSxbOTEuMjIwMzcwMzM4MDAwMDcsMjQuNDA5NjY1MTM0MDAwMDhdLFs5MS4yMTk1NDI1NjUwMDAwNCwyNC40MDk1Mzc0NzYwMDAwM10sWzkxLjIxOTM3OTkyNzAwMDAzLDI0LjQwOTQ4MTc4MDAwMDA4XSxbOTEuMjE5MjcwMzgzMDAwMDQsMjQuNDA5NDM1MjUzMDAwMDNdLFs5MS4yMTkxMTg0NzAwMDAwNywyNC40MDkzNDEwOTEwMDAwNF0sWzkxLjIxODkxOTM3MDAwMDA0LDI0LjQwOTIxMTE4OTAwMDA4XSxbOTEuMjE4NzY2MzgwMDAwMDMsMjQuNDA5MDY5MDYwMDAwMDRdLFs5MS4yMTgzNDc0NDEwMDAwNSwyNC40MDg2Mzg5NjcwMDAwNl0sWzkxLjIxODAzNzg0MDAwMDA4LDI0LjQwODI5ODI5ODAwMDAzXSxbOTEuMjE3OTQ5NjIwMDAwMDcsMjQuNDA4MTYxMjkyMDAwMDVdLFs5MS4yMTc2NzA1NDUwMDAwMywyNC40MDc3MjU1NTcwMDAwNV0sWzkxLjIxNzU0ODk2MTAwMDAzLDI0LjQwNzUxNjAxMTAwMDA0XSxbOTEuMjE3NDk1Nzg0MDAwMDUsMjQuNDA3MzY5NjkyMDAwMDNdLFs5MS4yMTc0ODM4NDUwMDAwNiwyNC40MDcxNTMwNTUwMDAwNF0sWzkxLjIxNzU5MDQ5NjAwMDA3LDI0LjQwNjk2MjU1NjAwMDA1XSxbOTEuMjE4MDI3MTk3MDAwMDgsMjQuNDA2Mjg5NjU2MDAwMDddLFs5MS4yMTg1NjE5ODYwMDAwNSwyNC40MDU0OTgwMDUwMDAwM10sWzkxLjIxODY4ODY0NDAwMDA1LDI0LjQwNTMzNzI1NzAwMDA0XSxbOTEuMjE5MzIyNzE5MDAwMDUsMjQuNDA0NjE2NDg0MDAwMDNdLFs5MS4yMTk0MjAzNDIwMDAwMywyNC40MDQ1MTI5NzUwMDAwNV0sWzkxLjIxOTUyNzgxNjAwMDA0LDI0LjQwNDQwODgyMjAwMDA1XSxbOTEuMjE5NjA2MDAyMDAwMDMsMjQuNDA0MzM1Mzg0MDAwMDNdLFs5MS4yMTk3MDM5MDQwMDAwOCwyNC40MDQyNjEyMjQwMDAwNF0sWzkxLjIxOTc5MjA4NjAwMDA0LDI0LjQwNDIwMTgxMzAwMDA0XSxbOTEuMjE5OTQ4NzIzMDAwMDcsMjQuNDA0MDgyNTkwMDAwMDNdLFs5MS4yMjAwMTcwNDgwMDAwNSwyNC40MDQwMDkyMzMwMDAwN10sWzkxLjIyMDE3OTE4NjAwMDA1LDI0LjQwMzgyMTEwNjAwMDA3XSxbOTEuMjIwMjUxMDM1MDAwMDUsMjQuNDAzNzI5NjU3MDAwMDRdLFs5MS4yMjA0Nzk4MDIwMDAwNiwyNC40MDMzNTU4NjkwMDAwNV0sWzkxLjIyMDU4MDg0NDAwMDA0LDI0LjQwMzE1OTc2OTAwMDA3XSxbOTEuMjIwNzc5OTAxMDAwMDcsMjQuNDAyNzczMjM5MDAwMDZdLFs5MS4yMjA4MzI0NjAwMDAwNSwyNC40MDI2NjI3NTYwMDAwNF0sWzkxLjIyMDk1Mzg0MTAwMDA0LDI0LjQwMjQwMjcxNTAwMDA1XSxbOTEuMjIwOTkxNTcxMDAwMDcsMjQuNDAyMjg4Mzk5MDAwMDRdLFs5MS4yMjA5OTI5MDgwMDAwOCwyNC40MDIxNzA5OTEwMDAwNV0sWzkxLjIyMDcxNTcxODAwMDA2LDI0LjQwMjA1OTIxNTAwMDA3XSxbOTEuMjE5MTc3NzM5MDAwMDMsMjQuNDAxNjQ4ODY1MDAwMDNdLFs5MS4yMTg4MDg4OTUwMDAwNSwyNC40MDE2MTk2NjMwMDAwOF0sWzkxLjIxNjM4OTk3ODAwMDA1LDI0LjQwMTUwODE3MDAwMDA2XSxbOTEuMjE1OTU0MjY4MDAwMDgsMjQuNDAxNTExNjcwMDAwMDVdLFs5MS4yMTU1OTc1MjkwMDAwNCwyNC40MDE1ODc5MDgwMDAwN10sWzkxLjIxNTI0NzA2MjAwMDA2LDI0LjQwMTY3NTM4MjAwMDA2XSxbOTEuMjE0OTUwNDA3MDAwMDYsMjQuNDAxNzgzMzA2MDAwMDNdLFs5MS4yMTQ5MTI5NDQwMDAwNSwyNC40MDE3OTcxNTMwMDAwOF0sWzkxLjIxNDQxODYyNDAwMDA3LDI0LjQwMTk4NzkzNzAwMDA2XSxbOTEuMjE0MjM4OTA2MDAwMDUsMjQuNDAyMDc4NTU2MDAwMDVdLFs5MS4yMTQwODg3NTgwMDAwNiwyNC40MDIyMzIxNDkwMDAwNF0sWzkxLjIxMzk1MjI0NzAwMDA3LDI0LjQwMjM5NDEwMDAwMDA0XSxbOTEuMjEzOTM5NTc2MDAwMDksMjQuNDAyNDIyNDIzMDAwMDhdLFs5MS4yMTM4OTQzMzYwMDAwNywyNC40MDI1MjU1MDkwMDAwNF0sWzkxLjIxMzg0NjE0NTAwMDA1LDI0LjQwMjY0MjE2MzAwMDA1XSxbOTEuMjEzODE3NTMxMDAwMDcsMjQuNDAyNzQzNDIwMDAwMDRdLFs5MS4yMTM4MTMyNDEwMDAwOCwyNC40MDI4NzQ5NjIwMDAwNl0sWzkxLjIxMzg0NDIyODAwMDA4LDI0LjQwMzQwODY0NTAwMDA3XSxbOTEuMjE1MTczODg1MDAwMDcsMjQuNDA5MDM0MTYwMDAwMDNdLFs5MS4yMTUyNTU3MjgwMDAwNSwyNC40MDkyNzc4OTIwMDAwM10sWzkxLjIxNTMwNTk5NjAwMDA0LDI0LjQwOTM3Nzk1MzAwMDA1XSxbOTEuMjE3MDU5MjQzMDAwMDUsMjQuNDEyNDMxNDI0MDAwMDNdLFs5MS4yMTg1MTAzNDgwMDAwNSwyNC40MjU2MDU0MjYwMDAwNl0sWzkxLjIxNzEwNTQ0NjAwMDA2LDI0LjQzMjQ3NTk2NTAwMDA0XSxbOTEuMjE3MjUzMTgxMDAwMDUsMjQuNDMyNTgxNDQ4MDAwMDZdLFs5MS4yMTczMTk1NDYwMDAwNiwyNC40MzI2MjMyNDQwMDAwN10sWzkxLjIxNzQzNjE0MzAwMDA0LDI0LjQzMjY5NjI0MzAwMDA3XSxbOTEuMjE3NTk3Mzc0MDAwMDQsMjQuNDMyNzk0ODQ2MDAwMDRdLFs5MS4yMTc3MTI2MjMwMDAwNywyNC40MzI4NTU0MzgwMDAwNV0sWzkxLjIxNzg0Mzk1NjAwMDA4LDI0LjQzMjkyMjEwOTAwMDA2XSxbOTEuMjE3ODkzNTE0MDAwMDgsMjQuNDMyOTQ3MTA5MDAwMDVdLFs5MS4yMTgxNzM2NzMwMDAwOCwyNC40MzMwNDAyMzgwMDAwNV0sWzkxLjIyMzc2ODU1MjAwMDA4LDI0LjQzNDY3MTkyOTAwMDA1XSxbOTEuMjI0MTQ0NDcwMDAwMDYsMjQuNDM0NzIxMzc4MDAwMDZdLFs5MS4yMjQ1MDM2NjMwMDAwNiwyNC40MzQ3NjI0OTQwMDAwNF0sWzkxLjIyNDY1MDM3NjAwMDA2LDI0LjQzNDc2MTMwNzAwMDAzXSxbOTEuMjI1MTA3NTU5MDAwMDQsMjQuNDM0NzM1NTkzMDAwMDNdLFs5MS4yMjU1NjU3MTMwMDAwNCwyNC40MzQ2ODI3NzgwMDAwMl0sWzkxLjIyNTkwODA5MzAwMDA0LDI0LjQzNDY0Mjc1NDAwMDA0XSxbOTEuMjI2MTg2MjE1MDAwMDQsMjQuNDM0NTg4MDA5MDAwMDRdLFs5MS4yMjY0MzEwMzMwMDAwNCwyNC40MzQ1MzE4NDIwMDAwN10sWzkxLjIyNzAzNTg4MDAwMDA3LDI0LjQzNDM0ODU4NjAwMDA2XSxbOTEuMjI3OTY1ODkyMDAwMDQsMjQuNDM0MDY2NzM4MDAwMDddLFs5MS4yMjgyMjE0MjEwMDAwNiwyNC40MzM5NzA5NzIwMDAwNV0sWzkxLjIyODQyMjg5NTAwMDA1LDI0LjQzMzg5NTQwMTAwMDAzXSxbOTEuMjI4NDU3OTA3MDAwMDYsMjQuNDMzODgyMTM1MDAwMDNdLFs5MS4yMjg4MzEzNDEwMDAwNSwyNC40MzM3MzkxMjkwMDAwNl0sWzkxLjIyOTQyMDIzODAwMDA1LDI0LjQzMzQzNzQ2NzAwMDAzXSxbOTEuMjI5NjMzMDQwMDAwMDcsMjQuNDMzMzIyMjkyMDAwMDddLFs5MS4yMjk5OTM1NzMwMDAwNiwyNC40MzMxMjA2OTEwMDAwNl0sWzkxLjIzMTI5MTQyNTAwMDA1LDI0LjQzMjMxMjYzMTAwMDA2XSxbOTEuMjMxOTgyMTc0MDAwMDUsMjQuNDMxODM1NzI5MDAwMDZdLFs5MS4yMzI0MTA3NTIwMDAwOCwyNC40MzE1MzE5NzYwMDAwM10sWzkxLjIzMzMxNjE4MTAwMDA4LDI0LjQzMDg4MTE3NjAwMDA3XSxbOTEuMjM4OTA1MzQ5MDAwMDUsMjQuNDM2NzE1NDYxMDAwMDZdLFs5MS4yMzc2NzQwNDEwMDAwNSwyNC40NTY3NzE5ODEwMDAwM10sWzkxLjIzNzUwOTU2NDAwMDA1LDI0LjQ1ODMwMjI5MTAwMDA1XSxbOTEuMjM3MjkxMzAzMDAwMDYsMjQuNDU5NTY2MDc5MDAwMDddLFs5MS4yMzcxOTQxMDkwMDAwOSwyNC40NjAwOTQ1OTAwMDAwNF0sWzkxLjIzNzEzNjU0MjAwMDAzLDI0LjQ2MDM4NzQyMzAwMDA0XSxbOTEuMjM3MDQ1NDg4MDAwMDQsMjQuNDYwNzIzOTg3MDAwMDVdLFs5MS4yMzY5MTk1MjIwMDAwNSwyNC40NjExNDc3NTMwMDAwM10sWzkxLjIzNjU0NTQwNzAwMDA1LDI0LjQ2MjMwMTYyODAwMDAzXSxbOTEuMjMzMDQ5MjA4MDAwMDcsMjQuNDcxNDg1MzQ4MDAwMDRdLFs5MS4yMzI1NzA0MDcwMDAwOCwyNC40NzI3MjQxNjUwMDAwNV0sWzkxLjIzMjI2MTExNDAwMDA0LDI0LjQ3MzM4NTkwNzAwMDA4XSxbOTEuMjMxNjcxMzE2MDAwMDcsMjQuNDc0NDk5NzY0MDAwMDNdLFs5MS4yMzE0OTM2NjcwMDAwNSwyNC40NzQ4MTIxOTcwMDAwNl0sWzkxLjIyODYzNTM2OTAwMDA3LDI0LjQ3OTcwNDU1OTAwMDAzXSxbOTEuMjI4NDEyODkwMDAwMDcsMjQuNDgwMDM3NjcxMDAwMDVdLFs5MS4yMjgwMTgyNzYwMDAwNiwyNC40ODA2MTc2OTgwMDAwNl0sWzkxLjIyNzU5NTA0MTAwMDA5LDI0LjQ4MTEwODIxNjAwMDA1XSxbOTEuMjI3MDA0MzU1MDAwMDgsMjQuNDgxNzU2OTk3MDAwMDVdLFs5MS4yMjY1OTkwNTEwMDAwNSwyNC40ODIxODk3OTcwMDAwNV0sWzkxLjIyNjIyODgwNjAwMDA1LDI0LjQ4MjU0OTUwNjAwMDA1XSxbOTEuMjI2MDQ0MjMxMDAwMDYsMjQuNDgyNzIyMDE4MDAwMDZdLFs5MS4yMjUxNTc3NjYwMDAwNSwyNC40ODMzOTgwMjYwMDAwM10sWzkxLjIyNTA3ODE1NjAwMDA1LDI0LjQ4MzQ1NjI0MTAwMDA2XSxbOTEuMjI0OTI4MTE5MDAwMDgsMjQuNDgzNTY1ODIyMDAwMDZdLFs5MS4yMjQ4NDQ3ODcwMDAwNSwyNC40ODM2MjE4MTAwMDAwNV0sWzkxLjIyNDY5NDY2MzAwMDA0LDI0LjQ4MzcyMjM2MjAwMDA0XSxbOTEuMjI0MzE1OTIyMDAwMDcsMjQuNDgzOTA2MDQxMDAwMDddLFs5MS4yMjQxMzQ4MDUwMDAwNiwyNC40ODM5OTA0NzUwMDAwNF0sWzkxLjIyMzkwNDQ3OTAwMDA1LDI0LjQ4NDA4ODI5MDAwMDA1XSxbOTEuMjIzNDYyNzE4MDAwMDYsMjQuNDg0MjYwNjI1MDAwMDVdLFs5MS4yMjMyNjQxNDIwMDAwNiwyNC40ODQzMjU0NDcwMDAwNl0sWzkxLjIyMjE2Nzg1NzAwMDA0LDI0LjQ4NDY3MTI2OTAwMDA1XSxbOTEuMjIxODM5NDI3MDAwMDgsMjQuNDg0NzY0Nzk0MDAwMDZdLFs5MS4yMjExNTM2NTEwMDAwNywyNC40ODQ5NTk0MTUwMDAwNV0sWzkxLjIyMDk0MDc5MTAwMDAzLDI0LjQ4NTAxNDE4OTAwMDAzXSxbOTEuMjIwNjQ5MzExMDAwMDUsMjQuNDg1MDM4NTU4MDAwMDRdLFs5MS4yMjAwNjU3MjUwMDAwNCwyNC40ODUwODYxNjcwMDAwOF0sWzkxLjIxOTA2Nzc1OTAwMDA0LDI0LjQ4NTE0MDUwNjAwMDA1XSxbOTEuMjE4NDk4Nzc0MDAwMDcsMjQuNDg1MTAzMzMyMDAwMDVdLFs5MS4yMTgxOTA4NjUwMDAwNSwyNC40ODUwMjI4NDgwMDAwM10sWzkxLjIxNjQ5NzI2NTAwMDA0LDI0LjQ4NDUwNDI2NjAwMDA0XSxbOTEuMjE2MzI0NzQ4MDAwMDMsMjQuNDg0MzkzMzM5MDAwMDZdLFs5MS4yMTU2ODc3MjUwMDAwNywyNC40ODM4ODU5ODkwMDAwNF0sWzkxLjIxNTI4NjQ3NTAwMDA4LDI0LjQ4MzUyNTc0NDAwMDA4XSxbOTEuMjE0OTk0MjIzMDAwMDgsMjQuNDgzMTQ4MjUyMDAwMDNdLFs5MS4yMTQ3OTEyMDgwMDAwNywyNC40ODI2ODcwNzQwMDAwN10sWzkxLjIxNDc1MzA3NTAwMDAzLDI0LjQ4MjUwNTA3OTAwMDA4XSxbOTEuMjE0Njk1OTUyMDAwMDYsMjQuNDgyMjA4MDk4MDAwMDZdLFs5MS4yMTQ3MTM2NjEwMDAwOCwyNC40ODIxMjU1NTIwMDAwN10sWzkxLjIxNDc2NTA4OTAwMDA4LDI0LjQ4MTg5MzczMzAwMDA1XSxbOTEuMjE0ODQwMzYyMDAwMDcsMjQuNDgxNzA0NjE4MDAwMDRdLFs5MS4yMTQ4OTM1MTMwMDAwNSwyNC40ODE1ODc5MjMwMDAwNl0sWzkxLjIxNTA0MDc0MDAwMDA2LDI0LjQ4MTMxMzU2ODAwMDA4XSxbOTEuMjE1MTYxMTgzMDAwMDgsMjQuNDgxMTM5ODkyMDAwMDRdLFs5MS4yMTU2MDI2ODYwMDAwNywyNC40ODA1NTU1NjkwMDAwNV0sWzkxLjIxNTc5MzM5NjAwMDA0LDI0LjQ4MDMxNDE2MzAwMDA2XSxbOTEuMjE2NjQxNjI3MDAwMDYsMjQuNDc5MzE0NTUwMDAwMDNdLFs5MS4yMTY4NDUzNzUwMDAwNSwyNC40NzkwODI2MzIwMDAwM10sWzkxLjIxNzExNjI3MjAwMDA2LDI0LjQ3ODc3OTA1OTAwMDAzXSxbOTEuMjE4MDc1Nzg0MDAwMDYsMjQuNDc3ODEwMTQ3MDAwMDddLFs5MS4yMTg4NjczNjEwMDAwNCwyNC40NzcwMTQ3MjgwMDAwM10sWzkxLjIxOTAxODc3MzAwMDA3LDI0LjQ3Njg1NjAzODAwMDA1XSxbOTEuMjE5NDQxNjc2MDAwMDMsMjQuNDc2MzkyNjM3MDAwMDZdLFs5MS4yMTk1MDIwNzcwMDAwNywyNC40NzYzMjQ5ODUwMDAwOF0sWzkxLjIxOTgwMDY0MjAwMDA1LDI0LjQ3NTg4NjI5MjAwMDA0XSxbOTEuMjE5OTU5NDcyMDAwMDgsMjQuNDc1NTM3OTAyMDAwMDRdLFs5MS4yMTk5NTY5MjYwMDAwNywyNC40NzUyNzM3ODIwMDAwNF0sWzkxLjIxOTg4MTU5MTAwMDA1LDI0LjQ3NDk0MzY1MDAwMDA2XSxbOTEuMjE5ODA4MDEwMDAwMDcsMjQuNDc0Nzk1MjQxMDAwMDRdLFs5MS4yMTk1NzE3OTkwMDAwNSwyNC40NzQ2NjUwNzgwMDAwNF0sWzkxLjIxODk5MzA1NzAwMDAzLDI0LjQ3NDU3MDQxNDAwMDAzXSxbOTEuMjE4MDc4MzIwMDAwMDcsMjQuNDc0NjEzOTEyMDAwMDVdLFs5MS4yMTYyODQ5NzYwMDAwNSwyNC40NzQ5OTUyMjMwMDAwNl0sWzkxLjIxNTc2MjU2MzAwMDA2LDI0LjQ3NTE3OTQ3MjAwMDA0XSxbOTEuMjE1NTc4ODc4MDAwMDMsMjQuNDc1MjUyNjI4MDAwMDhdLFs5MS4yMTU0MTExODEwMDAwNCwyNC40NzUzMjExNDIwMDAwNF0sWzkxLjIxNTI3NzkxMjAwMDAzLDI0LjQ3NTM3ODY1NDAwMDA1XSxbOTEuMjE0MjI4NDk3MDAwMDgsMjQuNDc1ODQ3NjQ1MDAwMDRdLFs5MS4yMTM3MjgyMjMwMDAwMywyNC40NzYxNTQ3NTAwMDAwM10sWzkxLjIxMzA4NzMxMTAwMDA0LDI0LjQ3NjU4NzE1MDAwMDA2XSxbOTEuMjEyNzA5NDExMDAwMDUsMjQuNDc2ODU4Mjc2MDAwMDNdLFs5MS4yMTAwNzkwMjIwMDAwNiwyNC40Nzg3NzI5NDIwMDAwM10sWzkxLjIwODgxNTg5MjAwMDA4LDI0LjQ3OTcyODQzMTAwMDA3XSxbOTEuMjA3OTkwNTE5MDAwMDgsMjQuNDgwNDE2MjY5MDAwMDVdLFs5MS4yMDYyMTcxMTQwMDAwOCwyNC40ODA4OTYwNzMwMDAwNV0sWzkxLjIwNTU2MTU1NDAwMDA0LDI0LjQ4MDk2MTY5NzAwMDA1XSxbOTEuMjA1NDQ4NjE1MDAwMDgsMjQuNDgwOTUzMDA1MDAwMDZdLFs5MS4yMDUzMjA4MDgwMDAwNywyNC40ODA5Mzc2NTYwMDAwNF0sWzkxLjIwNTA5OTc5ODAwMDA1LDI0LjQ4MDg0OTExNjAwMDA2XSxbOTEuMjA0OTEwODY1MDAwMDQsMjQuNDgwNzYxNDQ2MDAwMDNdLFs5MS4yMDQ3Mzg1ODMwMDAwNSwyNC40ODA2NzM2NDUwMDAwMl0sWzkxLjIwMzk4Mjc3MTAwMDA4LDI0LjQ3OTk4OTk2ODAwMDA0XSxbOTEuMjAzODYwNjU0MDAwMDQsMjQuNDc5ODU5NDM2MDAwMDNdLFs5MS4yMDA0NzU2NzQwMDAwNywyNC40NzU0NTM1MzQwMDAwNV0sWzkxLjE5OTk0MTQzNDAwMDA0LDI0LjQ3NDQ1ODIxNjAwMDA3XSxbOTEuMTk5NzU4MDkwMDAwMDUsMjQuNDc0MTEzMTI2MDAwMDhdLFs5MS4xOTk0NTg4MjYwMDAwNywyNC40NzMzNzg5NTMwMDAwNl0sWzkxLjE5OTI2MzU1NDAwMDA4LDI0LjQ3Mjg4MTAwMzAwMDA1XSxbOTEuMTk5MDYzNzg2MDAwMDcsMjQuNDcyMjk4OTk0MDAwMDNdLFs5MS4xOTkwMTExNzEwMDAwNSwyNC40NzIwODI2NzkwMDAwNF0sWzkxLjE5ODk3Mjg3NzAwMDA3LDI0LjQ3MTg4MDkyNjAwMDA0XSxbOTEuMTk4ODIzNjc3MDAwMDYsMjQuNDcwNzEyNjYyMDAwMDRdLFs5MS4xOTg3ODI5OTUwMDAwNCwyNC40Njk5MzI5NzUwMDAwNl0sWzkxLjE5ODc4MTMwMTAwMDA1LDI0LjQ2OTAzNzg0MTAwMDA0XSxbOTEuMTk4ODExMzc3MDAwMDgsMjQuNDY4NzYyNzM1MDAwMDRdLFs5MS4xOTg4Mzc1MzUwMDAwNSwyNC40Njg1Mjk0MjgwMDAwN10sWzkxLjE5ODg5OTc4MjAwMDA3LDI0LjQ2ODI2NTM1ODAwMDA1XSxbOTEuMTk4OTgwNjc0MDAwMDQsMjQuNDY3OTUxNDY5MDAwMDddLFs5MS4xOTkwNzY0NTEwMDAwNSwyNC40Njc2NDY0OTQwMDAwNl0sWzkxLjE5OTE3NjgyMzAwMDA3LDI0LjQ2NzI0MTAyMDAwMDA3XSxbOTEuMTk5MTQzODY4MDAwMDgsMjQuNDY2OTUxNzQwMDAwMDddLFs5MS4xOTkwOTIzNDgwMDAwOCwyNC40NjY3MjA3NDIwMDAwNl0sWzkxLjE5OTA0MzMyOTAwMDA2LDI0LjQ2NjYyMzQ4OTAwMDAzXSxbOTEuMTk4OTkyNDQ3MDAwMDgsMjQuNDY2NTkwMDI4MDAwMDRdLFs5MS4xOTg5MjQ5ODEwMDAwNiwyNC40NjY1NjM0NzIwMDAwOF0sWzkxLjE5ODc2NzgyMDAwMDA2LDI0LjQ2NjUwNzE0OTAwMDA1XSxbOTEuMTk3NTE4Nzc0MDAwMDYsMjQuNDY2Mjc1NDg2MDAwMDNdLFs5MS4xOTYxMDg0NTgwMDAwOCwyNC40NjYwNzQ0MzgwMDAwOF0sWzkxLjE5MDcyMjUyNDAwMDA4LDI0LjQ2NTcyODY1NjAwMDA3XSxbOTEuMTkwMzE0ODc0MDAwMDgsMjQuNDY1NzIzNDAyMDAwMDRdLFs5MS4xOTAxNDg4OTIwMDAwOCwyNC40NjU3Nzc3NjMwMDAwNl0sWzkxLjE4OTgzOTIxOTAwMDA4LDI0LjQ2NTg5NjQ2OTAwMDAzXSxbOTEuMTg5NjU4MjY3MDAwMDgsMjQuNDY1OTk4MzU4MDAwMDRdLFs5MS4xODkzNzQ4MjMwMDAwNCwyNC40NjYyMTc4ODcwMDAwM10sWzkxLjE4NDIwMzYwODAwMDA4LDI0LjQ3MTAyNzE3ODAwMDA0XSxbOTEuMTg0MDk4OTg4MDAwMDcsMjQuNDcxMTgyMDgyMDAwMDRdLFs5MS4xODQwOTA1ODYwMDAwOCwyNC40NzEzMzg0ODgwMDAwN10sWzkxLjE4NDEwMDE0MTAwMDA0LDI0LjQ3MTQzNzE4NDAwMDAyXSxbOTEuMTg0MjM4Nzc4MDAwMDYsMjQuNDcxODIwNDYwMDAwMDZdLFs5MS4xODU1ODA1ODEwMDAwNywyNC40NzQ5MDYyNzgwMDAwNV0sWzkxLjE4NTY0NzA3NjAwMDA3LDI0LjQ3NTAyNjU0MTAwMDAzXSxbOTEuMTg1OTMyMTc0MDAwMDcsMjQuNDc1NDQxMzk5MDAwMDNdLFs5MS4xODYxMTM0MzMwMDAwNiwyNC40NzU2OTk2MDQwMDAwNl0sWzkxLjE4NjM0NzQzOTAwMDAzLDI0LjQ3NTk5MjM4NjAwMDAzXSxbOTEuMTg2NjQ0NDAyMDAwMDcsMjQuNDc2MzU2OTIwMDAwMDZdLFs5MS4xODY4MTg5NzkwMDAwNywyNC40NzY1NTk4NjQwMDAwMl0sWzkxLjE4Njk2ODQ0NDAwMDA2LDI0LjQ3NjcxNTAzMDAwMDA0XSxbOTEuMTg3MTMzMzM3MDAwMDMsMjQuNDc2ODcxNzY4MDAwMDJdLFs5MS4xODcyODc2MDYwMDAwNCwyNC40NzcwMTMzNTEwMDAwNF0sWzkxLjE4NzUwODE0NTAwMDA0LDI0LjQ3NzE4NDg5MTAwMDA0XSxbOTEuMTg3ODA4NDkwMDAwMDcsMjQuNDc3MzgzNDU4MDAwMDhdLFs5MS4xODc5ODMzODgwMDAwOCwyNC40Nzc0ODg3NTYwMDAwN10sWzkxLjE4ODQwMzIxNDAwMDA2LDI0LjQ3NzY3MDAxNjAwMDA1XSxbOTEuMTg4NTkyNDY1MDAwMDYsMjQuNDc3NzI3NzkwMDAwMDddLFs5MS4xODg5NzIyMDYwMDAwNywyNC40Nzc4NDMzMjcwMDAwN10sWzkxLjE4OTA4Mjg2OTAwMDA2LDI0LjQ3Nzg3MjM2OTAwMDA3XSxbOTEuMTg5NDgwNzExMDAwMDQsMjQuNDc3OTQ1NDMzMDAwMDZdLFs5MS4xODk1OTM1NzUwMDAwNiwyNC40Nzc5NDYyMzgwMDAwN10sWzkxLjE5MDcwMTIxNzAwMDA4LDI0LjQ3Nzk1MTA1NzAwMDA0XSxbOTEuMTkwODg5Mjg2MDAwMDcsMjQuNDc3OTQ4NDQ2MDAwMDNdLFs5MS4xOTIyODMzNDgwMDAwNSwyNC40Nzc3ODU2MjYwMDAwN10sWzkxLjE5Mjg4MDc1MzAwMDA1LDI0LjQ3NzcwMTMyODAwMDAyXSxbOTEuMTkzMTA3NDI3MDAwMDksMjQuNDc3NjcyNDQ2MDAwMDRdLFs5MS4xOTM0NjExNTIwMDAwNSwyNC40Nzc2NDQ4MTgwMDAwNF0sWzkxLjE5MzcxODc2NTAwMDA5LDI0LjQ3NzYyNjk4MTAwMDA3XSxbOTEuMTkzODk1NjYxMDAwMDYsMjQuNDc3NjE2NTUyMDAwMDNdLFs5MS4xOTQyNjM5NjcwMDAwNCwyNC40Nzc2MzExMzcwMDAwNl0sWzkxLjE5NDM3NTcyNTAwMDA0LDI0LjQ3NzY0NTQ5MjAwMDA4XSxbOTEuMTk0NjkwMDk0MDAwMDcsMjQuNDc3NzYwNDA0MDAwMDRdLFs5MS4xOTQ4NjIzNDMwMDAwNywyNC40Nzc4NDU5NTkwMDAwNF0sWzkxLjE5NTAxODU2NzAwMDAzLDI0LjQ3NzkzMjIwNzAwMDA0XSxbOTEuMTk1MTI2NTQ4MDAwMDgsMjQuNDc4MDAzNTk3MDAwMDVdLFs5MS4xOTUyMDM2OTUwMDAwMywyNC40NzgwNzUyMzEwMDAwNV0sWzkxLjE5NTI1NTMzNjAwMDA2LDI0LjQ3ODEyMzM2MTAwMDAzXSxbOTEuMTk1NTM1NzM2MDAwMDcsMjQuNDc4NTU5MTIxMDAwMDVdLFs5MS4xOTU2MTU3NjcwMDAwNSwyNC40Nzg3NDAyMjcwMDAwNl0sWzkxLjE5NTYxMDQ0MTAwMDA0LDI0LjQ3ODc2Mzk3NDAwMDA2XSxbOTEuMTk1MzY1MDA3MDAwMDgsMjQuNDc5MzUyODk5MDAwMDVdLFs5MS4xOTUyNzcyMzYwMDAwNCwyNC40Nzk0NjI1MjMwMDAwNV0sWzkxLjE5NTIwOTQ1MzAwMDA3LDI0LjQ3OTUzMzYxMDAwMDAzXSxbOTEuMTkzNTk0NzE5MDAwMDMsMjQuNDgwOTUxNzQ4MDAwMDVdLFs5MS4xOTM0OTM3NjEwMDAwNywyNC40ODEwMzY2NDIwMDAwNV0sWzkxLjE5MzI3ODAwODAwMDA1LDI0LjQ4MTE3Nzc1NDAwMDA0XSxbOTEuMTkzMTI4MzE3MDAwMDYsMjQuNDgxMjYxMzM5MDAwMDddLFs5MS4xOTMwMjg4NzkwMDAwNSwyNC40ODEzMTEyMjkwMDAwM10sWzkxLjE5MjA5NzgzMzAwMDA1LDI0LjQ4MTU5NDAxMDAwMDA0XSxbOTEuMTkxNTMyNjc3MDAwMDUsMjQuNDgxNzY0OTY3MDAwMDZdLFs5MS4xODYyNjAwNjAwMDAwNSwyNC40ODI4NTQwMDUwMDAwNF0sWzkxLjE4NjAyMTc2OTAwMDA0LDI0LjQ4Mjg5NDgyMTAwMDA2XSxbOTEuMTY5NzI0NTE0MDAwMDUsMjQuNDg1MjcyMjAxMDAwMDRdLFs5MS4xNjg3ODgyNzIwMDAwOSwyNC40ODU0MDI0OTAwMDAwN10sWzkxLjE2ODExOTkzNjAwMDA0LDI0LjQ4NTQ5MjMyMTAwMDA0XSxbOTEuMTY3NzA4NzgxMDAwMDQsMjQuNDg1NTE1MjU1MDAwMDVdLFs5MS4xNjc1MzI0ODQwMDAwNSwyNC40ODU1MjUwODQwMDAwN10sWzkxLjE2NzQyNTEwMTAwMDA1LDI0LjQ4NTUxNzQ0NzAwMDA2XSxbOTEuMTY3Mjk0ODc4MDAwMDYsMjQuNDg1NTA3NzMwMDAwMDVdLFs5MS4xNjcwNzM5MTgwMDAwOSwyNC40ODU0ODk2ODQwMDAwN10sWzkxLjE2NjgyMDc0OTAwMDA3LDI0LjQ4NTQ1NjY0NjAwMDA1XSxbOTEuMTY0OTk3OTAwMDAwMDYsMjQuNDg1MTQ3ODc0MDAwMDZdLFs5MS4xNjQ4Mzk1ODkwMDAwNSwyNC40ODUxMDE2ODUwMDAwN10sWzkxLjE2NDY5NzkzMzAwMDA3LDI0LjQ4NTA1NTkzMjAwMDAyXSxbOTEuMTY0MzY3MzM5MDAwMDgsMjQuNDg0OTE5NjM1MDAwMDRdLFs5MS4xNjMwMjM1ODgwMDAwNCwyNC40ODQzMjk0NTUwMDAwMl0sWzkxLjE2Mjg2NTYyNTAwMDA1LDI0LjQ4NDI1MzkxMzAwMDAzXSxbOTEuMTYyMTM0NTM3MDAwMDQsMjQuNDgzODkwNDE1MDAwMDhdLFs5MS4xNjE5OTEzODIwMDAwNSwyNC40ODM4MTUzMjEwMDAwN10sWzkxLjE2MDYxOTIyOTAwMDA4LDI0LjQ4MzAxNzYzNTAwMDA3XSxbOTEuMTYwNDA4OTQwMDAwMDgsMjQuNDgyODg0OTIxMDAwMDVdLFs5MS4xNjAyNDc2MzMwMDAwNCwyNC40ODI3ODA2MTYwMDAwN10sWzkxLjE2MDAyMjg5MzAwMDA4LDI0LjQ4MjYxODY2MzAwMDA0XSxbOTEuMTU5NzY2Mjk3MDAwMDMsMjQuNDgyNDEyOTI5MDAwMDhdLFs5MS4xNTkxNjcyNzYwMDAwNiwyNC40ODE3ODc2NDYwMDAwNF0sWzkxLjE1OTAwNjM0MjAwMDA1LDI0LjQ4MTU4OTA3OTAwMDA2XSxbOTEuMTU4ODQxNjMxMDAwMDksMjQuNDgxMzE0OTA5MDAwMDVdLFs5MS4xNTg2NzY0NjgwMDAwNywyNC40ODA5OTEwNzcwMDAwNl0sWzkxLjE1ODQ5MTY2MTAwMDA4LDI0LjQ4MDYwOTgyNDAwMDA2XSxbOTEuMTU4MzczNjE5MDAwMDMsMjQuNDgwMzgwNDUxMDAwMDNdLFs5MS4xNTgyNTM4NDkwMDAwNiwyNC40ODAxNjQ2MzQwMDAwNl0sWzkxLjE1Nzk0NDg2MDAwMDA0LDI0LjQ3OTc1ODkzNDAwMDA3XSxbOTEuMTU3NzE0NjAzMDAwMDQsMjQuNDc5NDY0OTQ3MDAwMDVdLFs5MS4xNTc0MjkyNDYwMDAwNSwyNC40NzkxNDc2NzgwMDAwNl0sWzkxLjE1NjgzMzkxMTAwMDA0LDI0LjQ3ODUxNzg0MTAwMDA0XSxbOTEuMTU2NzIzOTAwMDAwMDMsMjQuNDc4NDI0NDI1MDAwMDddLFs5MS4xNTQwMDIzODIwMDAwNCwyNC40NzYzOTgxMTkwMDAwN10sWzkxLjE1Mzg4OTYwNjAwMDA2LDI0LjQ3NjMzOTE1MjAwMDA0XSxbOTEuMTUzNzE1MjIxMDAwMDgsMjQuNDc2MzU0NTkzMDAwMDVdLFs5MS4xNTA2OTEyMDIwMDAwOCwyNC40Nzg1NTUxNTcwMDAwN10sWzkxLjE1MDI0MzEyOTAwMDA1LDI0LjQ3ODkyNDg3MzAwMDA0XSxbOTEuMTUwMDcxOTgyMDAwMDQsMjQuNDc5MDkzMjQyMDAwMDNdLFs5MS4xNTAwMTU0MDgwMDAwNiwyNC40Nzk1ODY0MDMwMDAwNF0sWzkxLjE0OTk3NTcwODAwMDA2LDI0LjQ3OTk2ODI0OTAwMDAyXSxbOTEuMTUwMDQ4Nzg3MDAwMDYsMjQuNDgwNDA5MDYzMDAwMDJdLFs5MS4xNTAxMTA3MDQwMDAwNCwyNC40ODA1NzE3MDYwMDAwM10sWzkxLjE1MDIwMzM3MjAwMDA4LDI0LjQ4MDc5MjgxNDAwMDA0XSxbOTEuMTUyNDg0OTYyMDAwMDcsMjQuNDg0ODkxNjc1MDAwMDNdLFs5MS4xNTI1NzkzMDUwMDAwNywyNC40ODUwMjUyODYwMDAwNV0sWzkxLjE1NDM1OTc2NzAwMDA3LDI0LjQ4NzMxNTA1MDAwMDA2XSxbOTEuMTU0Njc1MjM3MDAwMDUsMjQuNDg3Njg2ODQyMDAwMDddLFs5MS4xNTUwNzE5MTcwMDAwNCwyNC40ODgxMDM3MzEwMDAwMl0sWzkxLjE2Mjk3MTYzNDAwMDA5LDI0LjQ5NTU4MTM1NzAwMDA1XSxbOTEuMTY1NTMxODcyMDAwMDMsMjQuNDk3OTgyOTI5MDAwMDVdLFs5MS4xNjU5OTg3MzgwMDAwNCwyNC40OTgzNzgzNjEwMDAwNV0sWzkxLjE2ODQyNTY2MjAwMDA2LDI0LjUwMDIyNDk2ODAwMDA1XSxbOTEuMTY4NzgxOTkwMDAwMDcsMjQuNTAwNDcxMTE0MDAwMDVdLFs5MS4xNjkzMDI1MzUwMDAwNCwyNC41MDA3MzI5MjAwMDAwOF0sWzkxLjE3MDExMjM2NzAwMDA2LDI0LjUwMDk5NDE3MzAwMDA0XSxbOTEuMTcxMDEyNDg0MDAwMDcsMjQuNTAxMjEzNTIyMDAwMDZdLFs5MS4xNzE4Mzc3NTYwMDAwNiwyNC41MDEzNDMxNDAwMDAwN10sWzkxLjE3MjQ5OTk2MzAwMDA2LDI0LjUwMTM4MjAyMzAwMDA4XSxbOTEuMTczMDg5NDg1MDAwMDUsMjQuNTAxMzY1MDI2MDAwMDNdLFs5MS4xNzMyNzM3OTUwMDAwNiwyNC41MDEzNTIzMDcwMDAwNV0sWzkxLjE3MzMwMDMwMDAwMDA1LDI0LjUwMTM1MDQwNzAwMDA3XSxbOTEuMTczNDgzODk0MDAwMDcsMjQuNTAxMzI2OTY3MDAwMDddLFs5MS4xNzM2ODU3MzUwMDAwNSwyNC41MDEyNzU3MzEwMDAwOF0sWzkxLjE3MzgwMzIzNTAwMDA0LDI0LjUwMTI0MjA4MjAwMDAzXSxbOTEuMTczOTc1MTkzMDAwMDUsMjQuNTAxMTYxMTYzMDAwMDZdLFs5MS4xNzQxMDg0NTUwMDAwNywyNC41MDEwOTgwNDEwMDAwM10sWzkxLjE3NDY0NjkyMTAwMDAzLDI0LjUwMDgzMDgzOTAwMDA2XSxbOTEuMTc1MDE1ODg2MDAwMDQsMjQuNTAwNjQzNDA3MDAwMDRdLFs5MS4xNzU1Njg5NzUwMDAwMywyNC41MDAyOTA4NjMwMDAwM10sWzkxLjE3NTc3MzcyMzAwMDA4LDI0LjUwMDA4ODMzODAwMDA3XSxbOTEuMTc3MTMwNDQ5MDAwMDYsMjQuNDk4MjA1NjI5MDAwMDRdLFs5MS4xNzczNjA2ODAwMDAwNSwyNC40OTc3NTk2NDYwMDAwOF0sWzkxLjE3NzQzNTEzMDAwMDA1LDI0LjQ5NzU0MTIwNTAwMDA2XSxbOTEuMTc3NTkwNTQ1MDAwMDQsMjQuNDk3MDA5NDUwMDAwMDZdLFs5MS4xNzc3MTU4ODgwMDAwOCwyNC40OTYzNjE2NjIwMDAwM10sWzkxLjE3Nzg3MDQ4MzAwMDA1LDI0LjQ5NTg3NDUwMjAwMDA1XSxbOTEuMTc3OTc5NjM0MDAwMDUsMjQuNDk1NTQxMjE0MDAwMDddLFs5MS4xNzc5OTEwMzAwMDAwNCwyNC40OTU1MDY2OTcwMDAwNV0sWzkxLjE3ODE4NDM2NDAwMDA2LDI0LjQ5NTEzOTQ1MzAwMDA0XSxbOTEuMTc4MTkzNDU2MDAwMDMsMjQuNDk1MTIyNDQ5MDAwMDZdLFs5MS4xNzg1MjEzMTYwMDAwNiwyNC40OTQ4Mjg2NTgwMDAwN10sWzkxLjE3ODc2ODEyNzAwMDA3LDI0LjQ5NDY0MDQ3NjAwMDAzXSxbOTEuMTc5MDY3MDg2MDAwMDMsMjQuNDk0NDIyNTM4MDAwMDRdLFs5MS4xNzk1NjY3MjIwMDAwNiwyNC40OTQwOTYzNTkwMDAwM10sWzkxLjE3OTkxNzQwNDAwMDA0LDI0LjQ5NDAwMTYyMzAwMDAzXSxbOTEuMTc5OTg4ODcxMDAwMDMsMjQuNDkzOTkzMTYzMDAwMDNdLFs5MS4xODAxMDQzMjcwMDAwNCwyNC40OTQwMDU4MDUwMDAwM10sWzkxLjE4MDIwMjU1MjAwMDA4LDI0LjQ5NDAyMjUzNDAwMDA3XSxbOTEuMTgwNDk4NDY2MDAwMDcsMjQuNDk0MDczMjc2MDAwMDVdLFs5MS4xODExNTQ2MzEwMDAwOCwyNC40OTQxOTU3MDAwMDAwM10sWzkxLjE4MTMzNDE1OTAwMDA3LDI0LjQ5NDI2NjUzOTAwMDAyXSxbOTEuMTgxODQwMDU5MDAwMDgsMjQuNDk0NDc5MzEzMDAwMDZdLFs5MS4xODI4NTg0MDgwMDAwNywyNC40OTQ5NDQ4NzYwMDAwM10sWzkxLjE4MzI1OTY5MDAwMDA2LDI0LjQ5NTE4MjE2OTAwMDAzXSxbOTEuMTg2NDE3NzY0MDAwMDUsMjQuNDk3MTAxNzY2MDAwMDddLFs5MS4xODcxMjk3MTIwMDAwNiwyNC40OTc1NzkzMDMwMDAwN10sWzkxLjE4ODAyMDE4NjAwMDA3LDI0LjQ5ODIxNjI4NjAwMDA2XSxbOTEuMTg4NDg5MTM3MDAwMDMsMjQuNDk4NTYzNjU0MDAwMDddLFs5MS4xODg1NTEyODEwMDAwNiwyNC40OTg2MTI4MzIwMDAwNV0sWzkxLjE4ODkwOTg0NTAwMDA3LDI0LjQ5ODg5NjcyNjAwMDA1XSxbOTEuMTkwMDU2OTA3MDAwMDQsMjQuNDk5OTI0NTAyMDAwMDZdLFs5MS4xOTA5NzgzMTUwMDAwNSwyNC41MDA3NjQ0MDgwMDAwN10sWzkxLjIxMDg1NjM4OTAwMDA3LDI0LjUyMDg1NTMxNzAwMDA0XSxbOTEuMjEyNTM2Mjg0MDAwMDcsMjQuNTIyNjU5NzU5MDAwMDhdLFs5MS4yMTI4NDYzMjUwMDAwNCwyNC41MjMwMTczNTMwMDAwNl0sWzkxLjIxMzE4NTk1MzAwMDA1LDI0LjUyMzQzNjIzMDAwMDA3XSxbOTEuMjEzNDQzNzYwMDAwMDgsMjQuNTIzODE0NTYzMDAwMDNdLFs5MS4yMTU1NDU5MDUwMDAwNiwyNC41MjcyNDEwNDIwMDAwN10sWzkxLjIxNTU1OTA5OTAwMDA3LDI0LjUyNzI2NTc3MDAwMDA0XSxbOTEuMjE1ODkwNTk5MDAwMDMsMjQuNTI3OTI3Mzk2MDAwMDVdLFs5MS4yMjI0MTEwMzQwMDAwNiwyNC41NDExNzQ3MzkwMDAwNF0sWzkxLjIyMjUyMjUyMzAwMDA3LDI0LjU0MTYwMTA4NDAwMDA0XSxbOTEuMjIyNjM1OTExMDAwMDUsMjQuNTQyMTU5NDgzMDAwMDNdLFs5MS4yMjI5MzgzOTUwMDAwOSwyNC41NDM3MDIzNTIwMDAwM10sWzkxLjIyMjg2OTY5ODAwMDA3LDI0LjU0Mzk5OTIxNzAwMDA4XSxbOTEuMjIyNTg4OTI0MDAwMDQsMjQuNTQ0Mzc3OTQ3MDAwMDRdLFs5MS4yMjM1NTU3ODAwMDAwOCwyNC41NDczNjU5MjUwMDAwN10sWzkxLjIyNTY3NTY3ODAwMDA3LDI0LjU1MzA1NTg4MjAwMDAyXSxbOTEuMjI2MjU5NjE5MDAwMDcsMjQuNTU0NDcyMjgyMDAwMDZdLFs5MS4yMjY0ODkwMTkwMDAwNCwyNC41NTQ5NjQyNjEwMDAwN10sWzkxLjIzMDQwODYxNjAwMDAzLDI0LjU2MzI0MTkwODAwMDA3XSxbOTEuMjMzMjg0ODM4MDAwMDMsMjQuNTY4MDIwMjYyMDAwMDZdLFs5MS4yMzM5Mzc4NDkwMDAwOSwyNC41Njg3ODQ3NDgwMDAwNF0sWzkxLjIzMzk2MTE5MjAwMDA0LDI0LjU2ODk2MjkwNzAwMDA3XSxbOTEuMjMzOTUzNTA3MDAwMDgsMjQuNTY4OTk3Mzk3MDAwMDNdLFs5MS4yMzM5MjgwNDQwMDAwNCwyNC41NjkxMDcwOTgwMDAwN10sWzkxLjIzMDE0ODIxNDAwMDA1LDI0LjU3Mjk3OTI3NjAwMDA3XSxbOTEuMjMwMDIxOTcxMDAwMDQsMjQuNTczMDcwNjEwMDAwMDZdLFs5MS4yMjk3NTQ1MzAwMDAwNCwyNC41NzMyMzg3MjcwMDAwNV0sWzkxLjIyNjA0MjEwODAwMDA2LDI0LjU3NTE4NTEwNzAwMDA0XSxbOTEuMjI1NzcyMzkwMDAwMDMsMjQuNTc1MzEwMzQyMDAwMDJdLFs5MS4yMjUyNjE3NTMwMDAwNCwyNC41NzU0NzY0NzYwMDAwNl0sWzkxLjIyNTEzMzcyMDAwMDAzLDI0LjU3NTUxMTM4MjAwMDA2XSxbOTEuMjEyNzM3NTgyMDAwMDUsMjQuNTc3ODY0MjAyMDAwMDZdLFs5MS4yMTI0OTIzNTMwMDAwNywyNC41Nzc5MDY4MTEwMDAwNV0sWzkxLjIxMTc4NDQ3NDAwMDA3LDI0LjU3Nzk3NDU5MjAwMDAzXSxbOTEuMTk4NDM3NTc0MDAwMDgsMjQuNTg2MjU2MTIyMDAwMDddLFs5MS4yMDE5OTQwOTMwMDAwNSwyNC41OTI5MTg3MDEwMDAwM10sWzkxLjIwMjMwNzkzNTAwMDA4LDI0LjU5ODE4MDg4NjAwMDAyXSxbOTEuMjAwNDc4MTk0MDAwMDgsMjQuNjA4MzI3NTMwMDAwMDVdLFs5MS4yMDAzNDQ4MjYwMDAwNSwyNC42MDg3Nzc4NTQwMDAwNF0sWzkxLjIwMDIyMzA1MDAwMDAzLDI0LjYwOTAxOTgyMzAwMDA0XSxbOTEuMjAwMDI0OTIwMDAwMDMsMjQuNjA5NDExOTY1MDAwMDVdLFs5MS4xOTk4Mzc0ODcwMDAwOCwyNC42MDk1NjY0MTAwMDAwN10sWzkxLjE5OTY4MTEwNDAwMDA0LDI0LjYwOTY3NTQ1NzAwMDA0XSxbOTEuMTk5MTc5NTY4MDAwMDMsMjQuNjA5OTcyOTQxMDAwMDJdLFs5MS4xOTIyMDExNDgwMDAwNCwyNC42MTI5NzYyMzYwMDAwN10sWzkxLjE5MTg4NDAxNjAwMDA3LDI0LjYxMzA2MTcxNTAwMDA3XSxbOTEuMTkxNzQxNjQxMDAwMDgsMjQuNjEzMDg2NTQ4MDAwMDddLFs5MS4xOTA2NjQ0MzgwMDAwNiwyNC42MTMyMjcxNDUwMDAwNV0sWzkxLjE5MDA3ODYxMjAwMDA0LDI0LjYxMzI5NzgxMzAwMDAzXSxbOTEuMTg5NDQ1MTQzMDAwMDYsMjQuNjEzMzU3NTcwMDAwMDZdLFs5MS4xODg2NTM3MDQwMDAwNSwyNC42MTM0MjUzNDMwMDAwN10sWzkxLjE4ODQ0NzYwNjAwMDA3LDI0LjYxMzQzNjAwMjAwMDA3XSxbOTEuMTg4MDgyOTE0MDAwMDYsMjQuNjEzNDU0MTIwMDAwMDNdLFs5MS4xODQ2OTI1OTYwMDAwNSwyNC42MTQ0NjQwMzQwMDAwNF0sWzkxLjE3OTE0NTk2OTAwMDA1LDI0LjYxNjI4OTk3NzAwMDA2XSxbOTEuMTc5MDA0NzAxMDAwMDUsMjQuNjE2MzY3ODQyMDAwMDVdLFs5MS4xNzg5MjcwMDkwMDAwNiwyNC42MTY0NDQwODAwMDAwNl0sWzkxLjE3ODg1MDM0NjAwMDA1LDI0LjYxNjU2NDMzMzAwMDA0XSxbOTEuMTc3NTA3MjI2MDAwMDUsMjQuNjE5MTY3Njk3MDAwMDJdLFs5MS4xNzczNTQwMjYwMDAwNSwyNC42MTk1NTM4MTYwMDAwNl0sWzkxLjE3NzMzNTY0ODAwMDA1LDI0LjYxOTYzNTIzMjAwMDA2XSxbOTEuMTc3Mzk2MTk0MDAwMDQsMjQuNjE5ODM3Mzc4MDAwMDZdLFs5MS4xODAyOTE0MzgwMDAwNCwyNC42MjY1MDYxODcwMDAwN10sWzkxLjE4NjQ1ODg2MzAwMDA0LDI0LjYyNzg3MDM0NTAwMDA4XSxbOTEuMTkxOTcyMzIyMDAwMDgsMjQuNjI2MDIxODEwMDAwMDVdLFs5MS4xOTIyNzM2MzIwMDAwOCwyNC42MjU5NTczMzcwMDAwNV0sWzkxLjE5MjgwMTgzNzAwMDA1LDI0LjYyNTg1OTQ2MTAwMDA2XSxbOTEuMTkyODU2NzQwMDAwMDgsMjQuNjI1ODU0NTEwMDAwMDddLFs5MS4xOTMwNjM0MzkwMDAwNywyNC42MjU4Mzk4ODkwMDAwOF0sWzkxLjE5MzM0OTg5MjAwMDA3LDI0LjYyNTgzNjQ4OTAwMDA1XSxbOTEuMTk0MjY5NzU1MDAwMDUsMjQuNjI1ODkwNzA2MDAwMDZdLFs5MS4xOTQzODIyOTUwMDAwOCwyNC42MjU5MDg0MzcwMDAwOF0sWzkxLjE5NDUyNTQ0NjAwMDA2LDI0LjYyNTk2Mzc0MDAwMDAzXSxbOTEuMTk0NjE4MDMwMDAwMDcsMjQuNjI2MDI1NjUzMDAwMDZdLFs5MS4xOTQ2Mzc5MTYwMDAwMywyNC42MjYwMzkwNDAwMDAwMl0sWzkxLjE5NDc2NzY1NzAwMDA2LDI0LjYyNjE3NzQxNTAwMDAzXSxbOTEuMTk0OTQ4NzAzMDAwMDgsMjQuNjI2NDUxOTY2MDAwMDVdLFs5MS4xOTQ5ODIwNjIwMDAwNywyNC42MjY1ODM3NzEwMDAwN10sWzkxLjE5NTIxNDMyNjAwMDA0LDI0LjYzMTEzOTQxNDAwMDA3XSxbOTEuMTkwMTA1MzY3MDAwMDYsMjQuNjM3MDUzNTk3MDAwMDNdLFs5MS4xODU0ODU0ODkwMDAwOSwyNC42MzU2MjY2MTYwMDAwMl0sWzkxLjE4NTE3OTgwNzAwMDA1LDI0LjYzNTYyMzM4MDAwMDAzXSxbOTEuMTg1MDUxMDIwMDAwMDYsMjQuNjM1NjUxNDg4MDAwMDZdLFs5MS4xODQ5ODc2MTIwMDAwNCwyNC42MzU2NzE3NDEwMDAwN10sWzkxLjE4NDY1Mzc4NDAwMDAzLDI0LjYzNTgyNjc1ODAwMDA2XSxbOTEuMTg0NTMzNDAyMDAwMDYsMjQuNjM1ODk0ODcwMDAwMDddLFs5MS4xODQwNTAxOTIwMDAwOSwyNC42MzYxODU5NTQwMDAwNF0sWzkxLjE4MzQ3NDQ2MzAwMDA0LDI0LjYzNjU1Mzk1NzAwMDA1XSxbOTEuMTc3NTM3NjY3MDAwMDgsMjQuNjQwNjAxMDE1MDAwMDddLFs5MS4xNzU5NDQyMjYwMDAwNywyNC42NDE4ODkwMjQwMDAwMl0sWzkxLjE3NDQ5NTQwNjAwMDA2LDI0LjY0MjAwNTMyODAwMDA0XSxbOTEuMTcxOTU2MjQ1MDAwMDUsMjQuNjQwNjg1MjY1MDAwMDZdLFs5MS4xNzE4MTQwNjkwMDAwNSwyNC42NDA1MzY4MDgwMDAwNF0sWzkxLjE3MTc1MDczODAwMDA3LDI0LjY0MDQzMzQ1MjAwMDAyXSxbOTEuMTcxNTg1NzYyMDAwMDYsMjQuNjQwMTU3NjE5MDAwMDRdLFs5MS4xNzE1NDk2ODgwMDAwOCwyNC42NDAwNjM2NDUwMDAwNV0sWzkxLjE3MTUzMjUyMjAwMDA2LDI0LjY0MDAxMDcyNjAwMDA3XSxbOTEuMTcxNDgwMDYzMDAwMDUsMjQuNjM5ODE1Mjg5MDAwMDddLFs5MS4xNzEzOTMwNTkwMDAwOCwyNC42Mzk0OTA4NzUwMDAwNF0sWzkxLjE3MTM3NDE5NDAwMDA3LDI0LjYzOTM4ODMwMDAwMDA2XSxbOTEuMTcxMzE3OTIzMDAwMDYsMjQuNjM5MTgxMDQwMDAwMDRdLFs5MS4xNzEyNTYyNDAwMDAwNSwyNC42Mzg5ODk2MjYwMDAwN10sWzkxLjE3MTE5NDIxNDAwMDA4LDI0LjYzODgyNzU2MjAwMDA3XSxbOTEuMTcwODg5NDQyMDAwMDMsMjQuNjM4MTI3ODI2MDAwMDddLFs5MS4xNzA4Nzg3NTEwMDAwMywyNC42MzgxMDcwMjcwMDAwNV0sWzkxLjE3MDgxOTI0ODAwMDA0LDI0LjYzODAxNjYyMjAwMDA3XSxbOTEuMTcwNzQwOTU3MDAwMDgsMjQuNjM3ODk4MTQ0MDAwMDhdLFs5MS4xNjg1NDE3MjYwMDAwNiwyNC42MzUwMDU3ODAwMDAwM10sWzkxLjE2ODMyODU3NTAwMDAzLDI0LjYzNDcyNjkzMTAwMDA1XSxbOTEuMTY4MDM0OTA3MDAwMDUsMjQuNjM0NDg4MjE0MDAwMDRdLFs5MS4xNjU2ODM5MTQwMDAwNiwyNC42MzI2NjE0MzkwMDAwNl0sWzkxLjE2NTU4NzA1MTAwMDA1LDI0LjYzMjYwMzQ5MTAwMDA1XSxbOTEuMTY1MzcyMTQ4MDAwMDcsMjQuNjMyNTM0MDQzMDAwMDhdLFs5MS4xNjQ1MjQ0NzYwMDAwNSwyNC42MzIyNzg3MjkwMDAwNl0sWzkxLjE2NDE3OTIzMDAwMDA2LDI0LjYzMjIwMjk1MTAwMDA3XSxbOTEuMTYzODA2NjgyMDAwMDksMjQuNjMyMTc5MzA4MDAwMDVdLFs5MS4xNjM2MDA0MTYwMDAwNywyNC42MzIxNzU4MjUwMDAwNV0sWzkxLjE2MzQyOTM1NzAwMDA0LDI0LjYzMjE3MzE5OTAwMDA4XSxbOTEuMTYzMjQ3MTk3MDAwMDMsMjQuNjMyMTcyMzQ5MDAwMDNdLFs5MS4xNjI3NzkxNDgwMDAwOCwyNC42MzIxNzA4ODgwMDAwOF0sWzkxLjE2MjcxMDYzMTAwMDA0LDI0LjYzMjE3MzExMjAwMDAzXSxbOTEuMTYyMzk2NjAwMDAwMDgsMjQuNjMyMjAwOTM4MDAwMDRdLFs5MS4xNjIzNzU2ODYwMDAwOCwyNC42MzIyMDk1NjYwMDAwM10sWzkxLjE1OTc3MjkyODAwMDA1LDI0LjYzMzQ2MzQzOTAwMDAyXSxbOTEuMTU5NTc2ODU1MDAwMDcsMjQuNjMzNTYwODk5MDAwMDNdLFs5MS4xNTk0MTMzOTIwMDAwMywyNC42MzM2NDU2OTEwMDAwM10sWzkxLjE1ODg5MDA3OTAwMDA2LDI0LjYzMzk0NjAzNTAwMDA2XSxbOTEuMTU4MzgyMjc0MDAwMDgsMjQuNjM0MzIxMzIyMDAwMDZdLFs5MS4xNTc5MzIwMzcwMDAwOCwyNC42MzQ3MTI1MzMwMDAwM10sWzkxLjE1Nzc4MDU1NTAwMDA0LDI0LjYzNTAyNTgxMzAwMDAzXSxbOTEuMTU3NjcyNzc0MDAwMDUsMjQuNjM1MTg5NzU0MDAwMDddLFs5MS4xNTcxNzY0MDkwMDAwNCwyNC42MzU4MDI1NjEwMDAwNV0sWzkxLjE1Njc0ODAzNjAwMDA3LDI0LjYzNjI4ODk4NTAwMDA4XSxbOTEuMTU1NzExNjAzMDAwMDQsMjQuNjM3NDY0Njk4MDAwMDNdLFs5MS4xNTUxMzk1MTMwMDAwNSwyNC42MzgxMDQwNDMwMDAwNl0sWzkxLjE1NDMzNzg5MTAwMDA3LDI0LjYzODk2NDcwMjAwMDA3XSxbOTEuMTUwMzM0MjkxMDAwMDQsMjQuNjM4OTkxNDM3MDAwMDddLFs5MS4xNDU3Nzg3NTQwMDAwNSwyNC42MzgyMTgwMDIwMDAwM10sWzkxLjEzNzE3Mzc2MzAwMDA4LDI0LjYzNjA3OTkwNjAwMDA4XSxbOTEuMTM1MTc4NjAzMDAwMDQsMjQuNjM4NDYzNzgwMDAwMDVdLFs5MS4xMzIwMzUzNDYwMDAwNywyNC42NDEwNDQ3ODcwMDAwNl0sWzkxLjEzMTQ4OTc1NTAwMDA4LDI0LjY0MTQ4OF0sWzkxLjEzMTI0MTM1ODAwMDA3LDI0LjY0MTY3NjEyMTAwMDA1XSxbOTEuMTMxMDQ2NjQ2MDAwMDcsMjQuNjQxNzkxNTk3MDAwMDZdLFs5MS4xMzA0NjU4NDkwMDAwNywyNC42NDIwOTczNTcwMDAwN10sWzkxLjEzMDQ0MTg2OTAwMDA0LDI0LjY0MjEwODgyNDAwMDA1XSxbOTEuMTMwMzQ1OTQwMDAwMDQsMjQuNjQyMTUzNTY5MDAwMDddLFs5MS4xMjk5MTQ1NDcwMDAwNiwyNC42NDIxMTI3ODkwMDAwN10sWzkxLjEyOTY5NDAyMTAwMDAzLDI0LjY0MjAzNTk5NDAwMDAzXSxbOTEuMTI5MzYyMzk3MDAwMDgsMjQuNjQxODI3OTY0MDAwMDddLFs5MS4xMjg5OTgwOTUwMDAwNCwyNC42NDE0MTkyNTAwMDAwN10sWzkxLjEyODkwMDUyMjAwMDA0LDI0LjY0MTI4MTEzOTAwMDA2XSxbOTEuMTI4NzQyMzk5MDAwMDMsMjQuNjQxMDAxODE5MDAwMDVdLFs5MS4xMjg2Nzk5NDEwMDAwOSwyNC42NDA4NTQ0MTQwMDAwNV0sWzkxLjEyODU4NDEzMDAwMDA0LDI0LjY0MDQzMTI2ODAwMDA0XSxbOTEuMTI3MzA0MTQ4MDAwMDYsMjQuNjI5Mjk2MTU3MDAwMDZdLFs5MS4xMjczMTg5ODgwMDAwNywyNC42MjkxNjA1ODgwMDAwNV0sWzkxLjEyNzYwMjQwMTAwMDA1LDI0LjYyODY3OTI4NTAwMDAzXSxbOTEuMTI4OTAwMjMxMDAwMDUsMjQuNjI2NTQzNDM4MDAwMDZdLFs5MS4xMjk2MDY0MTMwMDAwMywyNC42MjU0MjU2OTYwMDAwNF0sWzkxLjEzMTYxODI5OTAwMDA4LDI0LjYyMzUzNzg4MjAwMDA1XSxbOTEuMTMyMzE3MjU0MDAwMDQsMjQuNjIyOTkzMDUxMDAwMDRdLFs5MS4xMzMwNDg4MjEwMDAwNSwyNC42MjAzODE2OTAwMDAwNF0sWzkxLjEyOTU1Mzc4NjAwMDAzLDI0LjYxMzI0NjgwOTAwMDAzXSxbOTEuMTI3MzE1MjA1MDAwMDYsMjQuNjEwMDgwMzUzMDAwMDZdLFs5MS4xMTg3MDAwOTIwMDAwNCwyNC42MDY5MDEwMDIwMDAwM10sWzkxLjExMzI0MDc0MDAwMDA0LDI0LjYwNjk0OTk1MjAwMDA0XSxbOTEuMTA2NTY5NTc1MDAwMDQsMjQuNjA3Nzc2MzQ1MDAwMDVdLFs5MS4xMDQ1NDQwNTMwMDAwNCwyNC42MDUxNzUxOTAwMDAwN10sWzkxLjEwNDk5ODYzNTAwMDA3LDI0LjYwNDU2NzkzNzAwMDA3XSxbOTEuMTA1MTUwMTg0MDAwMDgsMjQuNjA0MzIxMzA3MDAwMDhdLFs5MS4xMDU2OTE5NDIwMDAwOCwyNC42MDIxODQ0MjcwMDAwNV0sWzkxLjEwNTcwOTI1MDAwMDA3LDI0LjYwMjA0NjU4NTAwMDA0XSxbOTEuMTA1NzEzMjg5MDAwMDUsMjQuNjAyMDE0MzgzMDAwMDRdLFs5MS4xMDU3NjYwODIwMDAwNiwyNC42MDE0ODkwOTYwMDAwMl0sWzkxLjEwNTc3NTk4MTAwMDA4LDI0LjYwMTI4MDc1NjAwMDA1XSxbOTEuMTA1NzQ0NTgwMDAwMDgsMjQuNjAwOTM4OTU1MDAwMDZdLFs5MS4xMDU3MTIyNTIwMDAwNSwyNC42MDA3MDIxNDEwMDAwNl0sWzkxLjEwNTcwNTcyMjAwMDA0LDI0LjYwMDY2MTU1MTAwMDAzXSxbOTEuMTA1Njk3MjM1MDAwMDQsMjQuNjAwNjA5MTI0MDAwMDddLFs5MS4xMDU2NjkxODQwMDAwOCwyNC42MDA0Mzc3NDkwMDAwNF0sWzkxLjEwNTU5ODUzMjAwMDA0LDI0LjYwMDEyNTAyMTAwMDA1XSxbOTEuMTA1NTE4NDYxMDAwMDMsMjQuNjAwMDA0ODI2MDAwMDNdLFs5MS4xMDUxMzk3NzUwMDAwNSwyNC41OTk4MzMyMDYwMDAwM10sWzkxLjEwNDcxNDIyMjAwMDA0LDI0LjU5OTczNjk5NDAwMDA3XSxbOTEuMTA0NTkyMzgxMDAwMDMsMjQuNTk5NzEwNzk0MDAwMDNdLFs5MS4wOTgwMzExNzEwMDAwNiwyNC41OTkxNjU2MDUwMDAwNV0sWzkxLjA5Nzg4NjA1OTAwMDA3LDI0LjU5OTE2MDQ1NTAwMDA2XSxbOTEuMDk3ODIzMjYxMDAwMDMsMjQuNTk5MTc5NTM5MDAwMDNdLFs5MS4wOTMxMDMyODIwMDAwNywyNC42MDE1OTExODUwMDAwN10sWzkxLjA5MjgyNzMxMDAwMDA4LDI0LjYwMTgwMDg5MTAwMDA0XSxbOTEuMDkyNzM0MjE4MDAwMDMsMjQuNjAxOTU3MzQ0MDAwMDNdLFs5MS4wOTI2Mzg0NzEwMDAwNCwyNC42MDIxNjM0ODUwMDAwNl0sWzkxLjA5MjMwNjUxNTAwMDA4LDI0LjYwMjg5MzQyMDAwMDA0XSxbOTEuMDkyMjg4MTU4MDAwMDMsMjQuNjAzMDU0NDEwMDAwMDNdLFs5MS4wOTIyODM4MTgwMDAwNiwyNC42MDMzMzY2NDcwMDAwNV0sWzkxLjA5MjI4MTQ4NTAwMDA2LDI0LjYwMzQ5NDY5OTAwMDA3XSxbOTEuMDkyMzA4OTg2MDAwMDMsMjQuNjAzODE3OTA2MDAwMDddLFs5MS4wNzM3NDQ1NzIwMDAwNywyNC42MTg3MTY1MTAwMDAwN10sWzkxLjA3MzYwMzUwNjAwMDA0LDI0LjYxODgyNjQ0ODAwMDA1XSxbOTEuMDczNTU2MDk0MDAwMDgsMjQuNjE4ODQxNDYxMDAwMDVdLFs5MS4wNzMxODU0MDYwMDAwNSwyNC42MTg5NTc1NTMwMDAwM10sWzkxLjA3Mjg1ODQ2MzAwMDA1LDI0LjYxODk5MDkyODAwMDA3XSxbOTEuMDcyODAyOTQ1MDAwMDMsMjQuNjE4OTk2NDA0MDAwMDNdLFs5MS4wNzI2MTgzNTAwMDAwOCwyNC42MTg5OTc3MjAwMDAwNF0sWzkxLjA3MTg0NjQ3NzAwMDA3LDI0LjYxODk4NDU5NTAwMDAzXSxbOTEuMDcxNjA2MDMxMDAwMDQsMjQuNjE4OTUyNDQ0MDAwMDZdLFs5MS4wNjk3Mjk4NzEwMDAwNSwyNC42MTg2MDY4MzAwMDAwM10sWzkxLjA2ODk0ODE5NzAwMDA1LDI0LjYxODQ1NzE3NDAwMDA3XSxbOTEuMDY4MjIxNTIxMDAwMDUsMjQuNjE4MzEzMzMwMDAwMDNdLFs5MS4wNjQ3OTE1NTAwMDAwNSwyNC42MTc2MjQyMjgwMDAwN10sWzkxLjA2Mzg1MDU3NzAwMDA0LDI0LjYxNzM5OTQ3NjAwMDA2XSxbOTEuMDYzNTEwMjk3MDAwMDUsMjQuNjE3MzE1NTI2MDAwMDNdLFs5MS4wNjMyMTEzOTkwMDAwNywyNC42MTcyMzM1NDEwMDAwOF0sWzkxLjA2MzA1NzcyODAwMDA1LDI0LjYxNzE2ODAyNzAwMDA1XSxbOTEuMDYyODU2MjM1MDAwMDgsMjQuNjE3MDY4OTg0MDAwMDddLFs5MS4wNjI0NDMxNzIwMDAwMywyNC42MTY2Mjc3MDkwMDAwNl0sWzkxLjA2MjA3Njc2ODAwMDA1LDI0LjYxNjIyODQzNTAwMDA0XSxbOTEuMDYxNzIyMDAxMDAwMDgsMjQuNjE1ODE3Nzg4MDAwMDddLFs5MS4wNjEzMzYwMjcwMDAwNCwyNC42MTUzNjY3MjMwMDAwMl0sWzkxLjA2MTEzMTAyNDAwMDA4LDI0LjYxNTA3MDcyMzAwMDAzXSxbOTEuMDYwOTk1MjUzMDAwMDQsMjQuNjE0ODU3NzY3MDAwMDVdLFs5MS4wNjA3MDQ4NDgwMDAwNiwyNC42MTQ1Mzc1MzUwMDAwN10sWzkxLjA2MDMyNDYxNDAwMDA4LDI0LjYxNDE4MDY4NTAwMDA2XSxbOTEuMDU5OTU1OTcxMDAwMDgsMjQuNjEzODgwMTkyMDAwMDddLFs5MS4wNTk0MTczMzEwMDAwOCwyNC42MTM1NTM4MDQwMDAwNV0sWzkxLjA1OTA2NjM3MzAwMDA2LDI0LjYxMzM3MzQwNTAwMDA2XSxbOTEuMDU4NzYyNzEzMDAwMDgsMjQuNjEzMjM3ODI0MDAwMDddLFs5MS4wNTg1NDcyMTcwMDAwNywyNC42MTMxNjA4ODcwMDAwNV0sWzkxLjA1ODI2Njc4MDAwMDA1LDI0LjYxMzA3MDI5NzAwMDA0XSxbOTEuMDQ1NjQzNjUwMDAwMDQsMjQuNjEwMjMzMTgzMDAwMDVdLFs5MS4wNDU0MTMzMzcwMDAwNywyNC42MTAyMjkxNDAwMDAwNl0sWzkxLjA0MTE0NzIxMDAwMDA4LDI0LjYxMDUxNDk2MzAwMDA3XSxbOTEuMDM5NDkzOTQ1MDAwMDYsMjQuNjEwNzQ1OTUwMDAwMDJdLFs5MS4wMzg4OTM0MDkwMDAwOCwyNC42MTA4NDA5NjkwMDAwNF0sWzkxLjAzODQ1MjU5MjAwMDA2LDI0LjYxMDkxNF0sWzkxLjAzODIzMDI1OTAwMDA0LDI0LjYxMDk3OTMxMjAwMDA0XSxbOTEuMDM2NzE1OTU4MDAwMDYsMjQuNjExOTY3MzIyMDAwMDVdLFs5MS4wMzY2NTU5NzcwMDAwNywyNC42MTIxMDU0NTMwMDAwM10sWzkxLjAzNjYwNTMyMDAwMDA0LDI0LjYxMjI1MTQyMTAwMDA1XSxbOTEuMDM2NTIwODA1MDAwMDcsMjQuNjEyNTU5MDQ2MDAwMDZdLFs5MS4wMzY1MDE4NzkwMDAwNywyNC42MTI3MzQ3MDkwMDAwNV0sWzkxLjAzNjA5ODAzNTAwMDA3LDI0LjYxOTMxOTE0NzAwMDA2XSxbOTEuMDM2MTU5MjQ5MDAwMDQsMjQuNjE5NTU0NjUxMDAwMDRdLFs5MS4wMzYyMzUwMjUwMDAwNSwyNC42MTk4MzQwODAwMDAwM10sWzkxLjAzNjQzNzYwNTAwMDA2LDI0LjYyMDI5MTU1NDAwMDA2XSxbOTEuMDM2NDkyMTI3MDAwMDMsMjQuNjIwMzg5Mzg3MDAwMDVdLFs5MS4wMzY1OTQyNzgwMDAwNSwyNC42MjA1NzI2ODIwMDAwNV0sWzkxLjAzNjkwNDE4NDAwMDA0LDI0LjYyMTA5MjA2NzAwMDA2XSxbOTEuMDM2OTc0MTIwMDAwMDgsMjQuNjIxMTg2OTcwMDAwMDVdLFs5MS4wMzc2NTcwODQwMDAwNSwyNC42MjE4NzE0MTMwMDAwNl0sWzkxLjAzODAwMjE1MzAwMDA0LDI0LjYyMjA4Njg5NjAwMDA0XSxbOTEuMDM4MTgwNjMzMDAwMDgsMjQuNjIyMTY2OTQxMDAwMDVdLFs5MS4wMzgzMjIzNjIwMDAwMywyNC42MjIyMDc3MjkwMDAwMl0sWzkxLjAzODUxNDc2MjAwMDAzLDI0LjYyMjI1MzgxMTAwMDA2XSxbOTEuMDM4Nzg2OTQyMDAwMDYsMjQuNjIyMzE1NzExMDAwMDZdLFs5MS4wMzk1MjM1NDYwMDAwNSwyNC42MjI1NDA5MDQwMDAwNl0sWzkxLjAzOTY5NTQ4MTAwMDA4LDI0LjYyMjY1MDM0MjAwMDA0XSxbOTEuMDM5OTE0MTQ4MDAwMDQsMjQuNjIyODExMzgxMDAwMDhdLFs5MS4wMzk5ODcwMDUwMDAwNiwyNC42MjI4ODU5NDUwMDAwNl0sWzkxLjA0MTE5MTMzOTAwMDA4LDI0LjYyNDE5NDM5NDAwMDAzXSxbOTEuMDQxMzM0NzE3MDAwMDQsMjQuNjI0MzU5MzM5MDAwMDJdLFs5MS4wNDExODk2NDAwMDAwOCwyNC42MjQ1MTEwNDMwMDAwNF0sWzkxLjA0MDg1NzQxODAwMDA5LDI0LjYyNDgwNDU3OTAwMDA2XSxbOTEuMDQwMzIxNTQ4MDAwMDcsMjQuNjI1MjYwMzgzMDAwMDddLFs5MS4wMzk5OTE2NTEwMDAwNCwyNC42MjU1MzY5NzEwMDAwM10sWzkxLjAzOTUzMjM0MzAwMDA4LDI0LjYyNTkxODg2ODAwMDA0XSxbOTEuMDM4Nzg5MTQ0MDAwMDgsMjQuNjI2NDY2OTY5MDAwMDNdLFs5MS4wMzg2MTY1NDkwMDAwNCwyNC42MjY1NzY1MzAwMDAwMl0sWzkxLjAzMjExOTY0NzAwMDA2LDI0LjYyOTQ5ODY0NTAwMDA3XSxbOTEuMDMwOTgxNTg2MDAwMDUsMjQuNjI5OTQxNjE2MDAwMDVdLFs5MS4wMzA1MTQzNTIwMDAwNywyNC42Mjk5NjQ1NzIwMDAwNl0sWzkxLjAyOTk3MTUzOTAwMDAzLDI0LjYyOTk1NzU2NjAwMDAzXSxbOTEuMDI5ODIxMzc5MDAwMDUsMjQuNjI5OTQzMzU1MDAwMDJdLFs5MS4wMjk0NjcwNDQwMDAwNiwyNC42Mjk4NzkxODEwMDAwNF0sWzkxLjAyOTA0ODEwMzAwMDA0LDI0LjYyOTc2NzQ3MjAwMDAzXSxbOTEuMDI4NzgxNTkwMDAwMDUsMjQuNjI5NjQ1MTIzMDAwMDVdLFs5MS4wMjg0MzI2MTMwMDAwNiwyNC42Mjk0ODEwMDcwMDAwNF0sWzkxLjAyNzg0NzE5MDAwMDA1LDI0LjYyOTE3MTE5NDAwMDA0XSxbOTEuMDI3NTAwNjg5MDAwMDgsMjQuNjI4OTMxOTkzMDAwMDRdLFs5MS4wMjczMDgxMDYwMDAwOCwyNC42Mjg3ODg4MTYwMDAwNV0sWzkxLjAyNzEyODE1OTAwMDA5LDI0LjYyODYwNTQ4MzAwMDA2XSxbOTEuMDI2ODg1MDQ4MDAwMDUsMjQuNjI4MzIzODA1MDAwMDRdLFs5MS4wMjY1OTYyOTQwMDAwNiwyNC42Mjc4OTY4MjAwMDAwNV0sWzkxLjAyMzQ0MDg2MTAwMDA0LDI0LjYyMzE2ODc1NzAwMDAzXSxbOTEuMDIzMjkzMTUxMDAwMDgsMjQuNjIyOTIzNjc2MDAwMDNdLFs5MS4wMjMyMjg0ODMwMDAwOCwyNC42MjI3OTIwNDIwMDAwN10sWzkxLjAyMjY3MTA2MDAwMDA1LDI0LjYyMTU5MjQ5NjAwMDA2XSxbOTEuMDIxMzUwNzc3MDAwMDcsMjQuNjE4NTI1MzkwMDAwMDZdLFs5MS4wMjEzMDI2ODgwMDAwNSwyNC42MTgzODE3OTAwMDAwNl0sWzkxLjAyMTAwOTgwMzAwMDA4LDI0LjYxNzM2NTAwNDAwMDA4XSxbOTEuMDIxMDA2NDM3MDAwMDQsMjQuNjE3MzMwNTk3MDAwMDNdLFs5MS4wMjA5OTY3MzQwMDAwNSwyNC42MTY4OTYwNjIwMDAwMl0sWzkxLjAyMTAzOTA2ODAwMDA1LDI0LjYxNjQwNjk4NzAwMDA2XSxbOTEuMDIxMDk3MDcyMDAwMDMsMjQuNjE2MDk4OTg3MDAwMDRdLFs5MS4wMjExMzM1NDQwMDAwNywyNC42MTU5NTI1NTUwMDAwNF0sWzkxLjAyMTI2MTU2MzAwMDA1LDI0LjYxNTQ0NzA5NzAwMDA3XSxbOTEuMDIxNjIxNjQwMDAwMDMsMjQuNjE0NTUxNzQzMDAwMDVdLFs5MS4wMjE4MDk5MDMwMDAwOCwyNC42MTQxNjY2NjEwMDAwN10sWzkxLjAyMjExNDg4MDAwMDA2LDI0LjYxMDk3NDQ5OTAwMDA2XSxbOTEuMDIxNjQxOTY2MDAwMDYsMjQuNjA3NzA1Nzc4MDAwMDJdLFs5MS4wMjE1ODMwMTMwMDAwNSwyNC42MDc0NDAzMzcwMDAwN10sWzkxLjAyMTE4NTQ5NDAwMDA2LDI0LjYwNTc3NDYxNDAwMDA0XSxbOTEuMDIxMTU1NjQyMDAwMDUsMjQuNjA1NjcxNTI4MDAwMDddLFs5MS4wMjExMDk2MTUwMDAwNiwyNC42MDU1NTMzMTIwMDAwNF0sWzkxLjAyMTAwMTYyNzAwMDAzLDI0LjYwNTMzMTEwMDAwMDA2XSxbOTEuMDIwOTM4MDU3MDAwMDgsMjQuNjA1MjU3MDI3MDAwMDVdLFs5MS4wMjA4Mjc4MTcwMDAwNSwyNC42MDUxMzc1NTUwMDAwNl0sWzkxLjAyMDAyMDMzODAwMDA1LDI0LjYwNDMwMTQ4MDAwMDA2XSxbOTEuMDE5NzE5NzQ0MDAwMDQsMjQuNjA0MDAzMjQ2MDAwMDVdLFs5MS4wMTkxNzQ3MjUwMDAwOCwyNC42MDM1NTc2NjAwMDAwNF0sWzkxLjAxOTA1MTEwOTAwMDAzLDI0LjYwMzQ2MzExMDAwMDA2XSxbOTEuMDE4Nzc5ODY1MDAwMDYsMjQuNjAzMjgyMDc1MDAwMDRdLFs5MS4wMTgzNDYzOTUwMDAwNCwyNC42MDMxMTczNzYwMDAwNl0sWzkxLjAwNDI3MjkxODAwMDA4LDI0LjYwMjAzMzk5MjAwMDAzXSxbOTAuOTc5MDY0ODMzMDAwMDUsMjQuNjAxMzQ2NjY0MDAwMDZdLFs5MC45NjQ2ODI5MjEwMDAwOCwyNC42MTAzMDA5OTYwMDAwM10sWzkwLjk0ODU0ODU2MzAwMDAzLDI0LjYwMzEzMjA1NTAwMDA2XSxbOTAuOTM5NzY5MTYwMDAwMDgsMjQuNjAxNzk0Njg0MDAwMDNdLFs5MC45MzkzNDA2NzAwMDAwNCwyNC42MDE3ODcxOTgwMDAwN10sWzkwLjkzODY4ODYwNDAwMDA1LDI0LjYwMTg0OTQwMzAwMDA3XSxbOTAuOTM4MTQ4MDI2MDAwMDgsMjQuNjAyMDQzNTUwMDAwMDhdLFs5MC45Mzc5NzEzNDIwMDAwOCwyNC42MDIxMDk1NjEwMDAwOF0sWzkwLjkzNzYzNTg2NzAwMDA0LDI0LjYwMjI0MDkwNTAwMDAzXSxbOTAuOTM3MTI2MDQwMDAwMDcsMjQuNjAyNTAyNTg3MDAwMDZdLFs5MC45MzY2NDgzMzUwMDAwOSwyNC42MDI3Njc0NTYwMDAwNF0sWzkwLjkzNjM2OTMzMjAwMDA4LDI0LjYwMjkzODUyMTAwMDA2XSxbOTAuOTM1NTU3MTMzMDAwMDMsMjQuNjAzNDY3MzYwMDAwMDJdLFs5MC45MzUyMjI2MTYwMDAwMywyNC42MDM3Mjg1MTIwMDAwM10sWzkwLjkzNDkzNDIxMzAwMDA4LDI0LjYwMzk2Mzk3NzAwMDAzXSxbOTAuOTMzNzU0NTUxMDAwMDUsMjQuNjA0OTc1NDE4MDAwMDRdLFs5MC45MzMzMDk1NjEwMDAwNCwyNC42MDU0MDgyNzMwMDAwMl0sWzkwLjkzMjcwMzEzNzAwMDAzLDI0LjYwNjEzMzkzNjAwMDA1XSxbOTAuOTMyNTgyMTg2MDAwMDUsMjQuNjA2MzA3NDAxMDAwMDRdLFs5MC45MzI0MTg1NzIwMDAwNywyNC42MDY1NTU2MzMwMDAwM10sWzkwLjkzMjE5MzExMDAwMDA3LDI0LjYwNjk1NTUxNzAwMDA3XSxbOTAuOTMyMTMwNDY4MDAwMDgsMjQuNjA3MTY2NDM2MDAwMDZdLFs5MC45MzIwNzkyOTEwMDAwNCwyNC42MDczNDE3MjcwMDAwNl0sWzkwLjkzMjAxMDM0ODAwMDA2LDI0LjYwNzYxOTI4NzAwMDAzXSxbOTAuOTMyMDA5NDc1MDAwMDksMjQuNjA3NzUxMzcwMDAwMDddLFs5MC45MzIwNzIwNTMwMDAwNywyNC42MDgxOTgwMDkwMDAwM10sWzkwLjkzMjEwOTcxNTAwMDA4LDI0LjYwODM2NDg0NjAwMDAzXSxbOTAuOTMyMzAwMzI2MDAwMDcsMjQuNjA4ODQzNDI5MDAwMDVdLFs5MC45MzI1MjExNTUwMDAwNywyNC42MDkzMTczMTAwMDAwNV0sWzkwLjkzMjE1MjE1MzAwMDA2LDI0LjYxMjY3NTEyMDAwMDA2XSxbOTAuOTI4NDAzMzgxMDAwMDcsMjQuNjE1NTI1NTE4MDAwMDNdLFs5MC45MjgzMjEwNjkwMDAwNSwyNC42MTU1ODI0NjkwMDAwNl0sWzkwLjkyODA5MDU5NjAwMDA2LDI0LjYxNTcyNTU2MjAwMDAyXSxbOTAuOTI3OTYwODk5MDAwMDgsMjQuNjE1ODAzNjg5MDAwMDddLFs5MC45Mjc5NDE4MTQwMDAwNiwyNC42MTU4MTExNDMwMDAwM10sWzkwLjkyNzgyNzc5NjAwMDAzLDI0LjYxNTgzODM3NTAwMDA3XSxbOTAuOTI3NjYzNzU3MDAwMDYsMjQuNjE1ODY0Nzg2MDAwMDNdLFs5MC45Mjc0NzI5NjEwMDAwMywyNC42MTU4NjI1NzYwMDAwNF0sWzkwLjkxNjMyNDIzMjAwMDA4LDI0LjYxMzcyNzkyMDAwMDAzXSxbOTAuOTE2NDgyMjA5MDAwMDQsMjQuNjExOTM4MjgwMDAwMDZdLFs5MC45MTY2OTIwMTQwMDAwMywyNC42MDg5NTg1MDgwMDAwNl0sWzkwLjkxNjgyMzc4MjAwMDA1LDI0LjYwNTc3NjAxNDAwMDA3XSxbOTAuOTE2ODIyMjA1MDAwMDcsMjQuNjA1NjQ0NTExMDAwMDRdLFs5MC45MTY4MTgzNjMwMDAwNiwyNC42MDU1NDA2NzkwMDAwNl0sWzkwLjkxNjc4ODQ0NjAwMDA2LDI0LjYwNDczOTM3MDAwMDA2XSxbOTAuOTE2Njc5Mjg0MDAwMDUsMjQuNjAzOTkyMTY1MDAwMDJdLFs5MC45MTY2MjI5MzQwMDAwMywyNC42MDM3MTQyNDQwMDAwNl0sWzkwLjkxNjUzODU0MjAwMDA3LDI0LjYwMzMxNjI3MjAwMDAzXSxbOTAuOTE2NDc0OTk3MDAwMDgsMjQuNjAzMDY3NzQzMDAwMDVdLFs5MC45MTU5OTkzNjgwMDAwOSwyNC42MDE1MDQzNDQwMDAwM10sWzkwLjkxNTkxNTg5NzAwMDA1LDI0LjYwMTMxNjg5ODAwMDA1XSxbOTAuOTE1ODU0Mzk3MDAwMDMsMjQuNjAxMTc5NTUwMDAwMDRdLFs5MC45MTU3ODQzMzQwMDAwOCwyNC42MDEwNTI5ODAwMDAwOF0sWzkwLjkxNTYwNTYzOTAwMDAzLDI0LjYwMDc1OTQzNjAwMDAzXSxbOTAuOTE1NDA0MTM3MDAwMDUsMjQuNjAwNDcwNTQzMDAwMDNdLFs5MC45MTUzMjQzNzkwMDAwOCwyNC42MDAzNjg4NjYwMDAwNV0sWzkwLjkxNTIyMzAzODAwMDA4LDI0LjYwMDI3MDcwNjAwMDA2XSxbOTAuOTE0ODA4NDY2MDAwMDcsMjQuNTk5OTY4OTk4MDAwMDddLFs5MC45MDg4NjY1MzYwMDAwNiwyNC41OTYxOTczMzcwMDAwNF0sWzkwLjkwNjQ1MjE1OTAwMDA4LDI0LjU5NTMzMzA3NDAwMDA1XSxbOTAuOTAyOTg3NDE3MDAwMDgsMjQuNTk5NTgyMDU2MDAwMDNdLFs5MC44ODk1OTE1MjEwMDAwNiwyNC42MDA0OTM3OTIwMDAwN10sWzkwLjg4NzYwODIxNTAwMDA2LDI0LjYwMDYxMTA0ODAwMDA4XSxbOTAuODg3MzczMDMxMDAwMDQsMjQuNjAwNjE0MTI4MDAwMDddLFs5MC44ODY2MjMyNDAwMDAwNiwyNC42MDA1NjYwNTUwMDAwNl0sWzkwLjg4NjI2NzQxMTAwMDA2LDI0LjYwMDUzMjAyNjAwMDA1XSxbOTAuODg1OTAyODUzMDAwMDYsMjQuNjAwNDg1NjMwMDAwMDRdLFs5MC44ODQ5NzQxNTIwMDAwNCwyNC42MDAzNjYzNTQwMDAwN10sWzkwLjg4NDc2NjUzMjAwMDA3LDI0LjYwMDMzODc4ODAwMDA0XSxbOTAuODg0MTIyNTAwMDAwMDUsMjQuNjAwMTQyMTk4MDAwMDddLFs5MC44ODM5NDM2OTYwMDAwNywyNC42MDAwODYyNDEwMDAwNF0sWzkwLjg4Mzc1MDY0OTAwMDA0LDI0LjYwMDAyNDE1NzAwMDA2XSxbOTAuODgyMzY1NDE5MDAwMDUsMjQuNTk5NTA2Nzk2MDAwMDddLFs5MC44ODE5OTYyMzIwMDAwNiwyNC41OTkxNTE2NzMwMDAwNV0sWzkwLjg4MTkyNzc1NzAwMDA4LDI0LjU5OTA3MDc5NTAwMDA1XSxbOTAuODgxNzE3MzU1MDAwMDMsMjQuNTk4ODIxOTg0MDAwMDRdLFs5MC44ODE1OTExNjkwMDAwNSwyNC41OTg2MDk5MzEwMDAwNl0sWzkwLjg4MTQ3ODYzMjAwMDA0LDI0LjU5ODMxOTM0MjAwMDAyXSxbOTAuODgxMzQ0Njk5MDAwMDcsMjQuNTk3OTcwNzQxMDAwMDRdLFs5MC44ODExMTk2MTUwMDAwNSwyNC41OTcyMTE3NjYwMDAwNF0sWzkwLjg4MDk5MjUxMTAwMDA0LDI0LjU5Njc4MDE1MzAwMDA1XSxbOTAuODgwOTE0NjMxMDAwMDUsMjQuNTk2MzI1MTEwMDAwMDddLFs5MC44ODA4MDUwNDUwMDAwNSwyNC41OTQ5NTY0MzMwMDAwNV0sWzkwLjg4MDc5MDcyMzAwMDA4LDI0LjU5NDQ5NzYzMjAwMDA3XSxbOTAuODgwNzg3MDM1MDAwMDgsMjQuNTk0MjM1MTkyMDAwMDRdLFs5MC44ODA3NzU4MzAwMDAwNiwyNC41OTQxMzM2NTkwMDAwOF0sWzkwLjg4MDc0MjUwOTAwMDA3LDI0LjU5Mzg3MDgyODAwMDA0XSxbOTAuODgwNjk5ODExMDAwMDYsMjQuNTkzNjc5NzM0MDAwMDNdLFs5MC44ODA2NDc4NjcwMDAwNSwyNC41OTM0OTAzODgwMDAwOF0sWzkwLjg4MDU5Njc1MDAwMDA1LDI0LjU5MzMzMDk1MjAwMDAzXSxbOTAuODgwNTM1MDI4MDAwMDUsMjQuNTkzMTU1Nzc0MDAwMDJdLFs5MC44ODA0ODQxMTgwMDAwOCwyNC41OTMwMjU2ODcwMDAwOF0sWzkwLjg4MDQzNTE0MTAwMDA4LDI0LjU5MjkwNzQ0MjAwMDA3XSxbOTAuODgwMTczMjExMDAwMDYsMjQuNTkyNTI2ODUxMDAwMDZdLFs5MC44ODAwMDQ4NzgwMDAwOCwyNC41OTI0NjU3NDgwMDAwNV0sWzkwLjg3OTgwNDMwMjAwMDA4LDI0LjU5MjQ3MjU2NDAwMDA1XSxbOTAuODYzMDg3MjU1MDAwMDQsMjQuNTk0MzgyMjg5MDAwMDddLFs5MC44NjMwNDkyODIwMDAwOCwyNC41OTQ0MjU5NjkwMDAwNF0sWzkwLjg2MzAzNjEyMDAwMDA2LDI0LjU5NDQ4NzAwNDAwMDAzXSxbOTAuODYzMDM0MTY2MDAwMDMsMjQuNTk0NTYyMDg1MDAwMDZdLFs5MC44NjMwMzI3MTEwMDAwNywyNC41OTQ2MjAyMzAwMDAwM10sWzkwLjg2MzAzNDM1MzAwMDA1LDI0LjU5NDY3OTQ4NjAwMDA4XSxbOTAuODYzMDg1MzIxMDAwMDksMjQuNTk1MTgwNDE0MDAwMDNdLFs5MC44NjMxNzY4OTgwMDAwNiwyNC41OTU1NzE2MDcwMDAwN10sWzkwLjg2MzQ1NTM0NDAwMDA0LDI0LjU5NjQ3NjQ5NTAwMDA1XSxbOTAuODYzNTk5NjQ0MDAwMDMsMjQuNTk2OTA0MDc0MDAwMDddLFs5MC44NjM2NDkwNjIwMDAwNCwyNC41OTY5OTg2MTYwMDAwNl0sWzkwLjg2MzY4MTk1ODAwMDA5LDI0LjU5NzIwNDQ0NzAwMDAyXSxbOTAuODYzNjkwOTUxMDAwMDgsMjQuNTk3NjE1MzA2MDAwMDJdLFs5MC44NjM2ODE0MzQwMDAwNiwyNC41OTc5Mzc2NTIwMDAwNF0sWzkwLjg2MzY3MzE3MjAwMDA2LDI0LjU5ODE3MzA2OTAwMDA0XSxbOTAuODYzNTQwMDY5MDAwMDcsMjQuNTk4NjU4MTE4MDAwMDZdLFs5MC44NjM0NjE0NjYwMDAwNSwyNC41OTg4MDg3MDkwMDAwMl0sWzkwLjg2MzMzNzAzNTAwMDA5LDI0LjU5OTAyNzg2MDAwMDA0XSxbOTAuODYzMjM3MDE3MDAwMDcsMjQuNTk5MTE2NDg2MDAwMDddLFs5MC44NjMwMzM0NDUwMDAwNCwyNC41OTkyMjgyODIwMDAwN10sWzkwLjg2Mjg5MDY3MzAwMDA0LDI0LjU5OTI5NDAxMDAwMDA1XSxbOTAuODYyNzE0NjYwMDAwMDUsMjQuNTk5MzczNDc2MDAwMDRdLFs5MC44NjI2MDc0NzIwMDAwNCwyNC41OTk0MDY4MjcwMDAwNV0sWzkwLjg2MjQ3Njc4NjAwMDA2LDI0LjU5OTQzNDY3MTAwMDA0XSxbOTAuODYyMzM3OTYxMDAwMDQsMjQuNTk5NDQ1NjI1MDAwMDRdLFs5MC44NTc1NTYyNTUwMDAwOCwyNC41OTkyOTM0NTAwMDAwNl0sWzkwLjg1MDg4MDMxNjAwMDA5LDI0LjU5NjkxMjcyMDAwMDAzXSxbOTAuODUwNzIwNjU4MDAwMDYsMjQuNTk2ODU1NDg1MDAwMDVdLFs5MC44NTA2OTg5OTkwMDAwMywyNC41OTY4NDc3MDYwMDAwNl0sWzkwLjg1MDQ4MjM1MTAwMDA0LDI0LjU5NjY3MDAwNTAwMDA4XSxbOTAuODQ4MTkxMTc3MDAwMDUsMjQuNTkzMjM5Mjk2MDAwMDRdLFs5MC44NDgxNjE1NzEwMDAwNSwyNC41OTMxNTE0MDkwMDAwM10sWzkwLjg0ODE2MTM4NjAwMDA3LDI0LjU5MzEyMzc1NDAwMDAzXSxbOTAuODQ4MjU4NTMzMDAwMDMsMjQuNTkyODgzMzIwMDAwMDZdLFs5MC44NDg2MTAwNTcwMDAwMywyNC41OTI1NTc5MTYwMDAwM10sWzkwLjg0ODY4MzEyNzAwMDA3LDI0LjU5MjQ5OTkzMjAwMDA3XSxbOTAuODQ4Nzc0NjE5MDAwMDQsMjQuNTkyNDI3NzMyMDAwMDNdLFs5MC44NDg5Njc1MDMwMDAwNCwyNC41OTIyODcyMjkwMDAwOF0sWzkwLjg0OTI5MzI3MDAwMDAzLDI0LjU5MjA3ODgwNzAwMDA2XSxbOTAuODQ5NDU0OTgxMDAwMDYsMjQuNTkxOTg0MTk4MDAwMDNdLFs5MC44NDQ2MTA2NDIwMDAwOCwyNC41ODYyMjUzOTMwMDAwNl0sWzkwLjg0MTE0NzAxMDAwMDA0LDI0LjU4MjE0NDEyOTAwMDAzXSxbOTAuODM5MDc2OTY5MDAwMDgsMjQuNTgwMzI2MzI1MDAwMDRdLFs5MC44MzAwNjcyMTkwMDAwNiwyNC41ODMxNjc0MDcwMDAwOF0sWzkwLjgyMTUxODk1OTAwMDA2LDI0LjU4MzM4NzU2MTAwMDA1XSxbOTAuODExOTUxNDgyMDAwMDQsMjQuNTYzMTk2ODM4MDAwMDddLFs5MC44MTE2NTYyMzMwMDAwNiwyNC41NTUyOTg0NzQwMDAwNF0sWzkwLjgxMDAxNTE0MTAwMDA2LDI0LjU0MjU5MDM2MzAwMDA0XSxbOTAuODA5OTU4MzEyMDAwMDUsMjQuNTQyMzg5MTYzMDAwMDVdLFs5MC44MDk3NTc1MTAwMDAwNSwyNC41NDE3NzIxNzMwMDAwM10sWzkwLjgwOTUxNDQ0NzAwMDA4LDI0LjU0MTMwMDQ3NDAwMDAyXSxbOTAuODA5MjUzMzE3MDAwMDcsMjQuNTQxMDkwMjA5MDAwMDZdLFs5MC44MDkwNzc4NDMwMDAwNywyNC41NDA5NTg1MDYwMDAwNF0sWzkwLjgwNzc1MjEwOTAwMDAzLDI0LjU0MDA0NDQzNzAwMDA2XSxbOTAuODA3NjQ0OTkzMDAwMDUsMjQuNTM5OTg3NDM4MDAwMDNdLFs5MC44MDc1NTU0MjIwMDAwNiwyNC41Mzk5NzIxMTIwMDAwNF0sWzkwLjgwNzUxNjUwNzAwMDA2LDI0LjUzOTk2NTU0NzAwMDA3XSxbOTAuODA3MzQ5MzExMDAwMDUsMjQuNTM5OTY5ODI5MDAwMDNdLFs5MC44MDY5MTUwMTMwMDAwNCwyNC41Mzk5ODYyNjUwMDAwNF0sWzkwLjgwNjYxODk5MjAwMDA0LDI0LjU0MDAxMjEyMDAwMDAzXSxbOTAuODA2NDcxNDk3MDAwMDgsMjQuNTQwMTA1NDc4MDAwMDRdLFs5MC44MDY0MjgxNTcwMDAwOCwyNC41NDAxNzkwODgwMDAwNl0sWzkwLjgwNjQxODM1NTAwMDA2LDI0LjU0MDI4Njk0OTAwMDA2XSxbOTAuODA2NTYwMzcxMDAwMDUsMjQuNTQwNDk0NDcwMDAwMDZdLFs5MC44MDY3MzUzNDUwMDAwNSwyNC41NDA1NDg4NDkwMDAwNl0sWzkwLjgwNjg3MTQ2NzAwMDA2LDI0LjU0MDYwNjgyMzAwMDA4XSxbOTAuODA2OTY4NzEzMDAwMDYsMjQuNTQwNjY0NDQzMDAwMDNdLFs5MC44MDcxNTQ1NjgwMDAwNCwyNC41NDA3Nzk3MjMwMDAwN10sWzkwLjgwNzMzMDYxNTAwMDA3LDI0LjU0MTAwMTczNzAwMDA0XSxbOTAuODA3NDI4MzM5MDAwMDcsMjQuNTQxMTMzODU4MDAwMDJdLFs5MC44MDc1ODU3OTcwMDAwNiwyNC41NDE1MzY1OTMwMDAwNV0sWzkwLjgwNzY3OTQ2MDAwMDAzLDI0LjU0MjI4NzM2ODAwMDA3XSxbOTAuODA3NjgyMDUwMDAwMDQsMjQuNTQyNDk5MDIwMDAwMDRdLFs5MC44MDc2ODUzMTkwMDAwOSwyNC41NDI4MTY3ODYwMDAwNl0sWzkwLjgwNzY0MTQ1NjAwMDA2LDI0LjU0MzE5NDYzNTAwMDA4XSxbOTAuODA3NDQ1OTQyMDAwMDcsMjQuNTQ0ODQ4OTQxMDAwMDVdLFs5MC44MDc0MzA1NjEwMDAwNSwyNC41NDQ5NTIzMTgwMDAwN10sWzkwLjgwNzE3NzU0NTAwMDA2LDI0LjU0NTIzOTI4MjAwMDA3XSxbOTAuODA0OTY5MDk5MDAwMDYsMjQuNTQ2NjA1MTkzMDAwMDZdLFs5MC44MDQ4NDM2MjUwMDAwNSwyNC41NDY2Njk2NDUwMDAwN10sWzkwLjgwNDcxNzMzNDAwMDAzLDI0LjU0NjcwMzA1NzAwMDA2XSxbOTAuODA0NTkxMjc4MDAwMDMsMjQuNTQ2Njc2MDcyMDAwMDNdLFs5MC44MDQzODcwMDgwMDAwNSwyNC41NDY1NzcyNTUwMDAwNV0sWzkwLjgwNDI3MDQxNzAwMDA1LDI0LjU0NjQ4NjQzNzAwMDA2XSxbOTAuODA0MTU2NjUyMDAwMDcsMjQuNTQ2MzU0OTY0MDAwMDVdLFs5MC44MDQwNzU4NDAwMDAwNSwyNC41NDYxNjUxNzYwMDAwNF0sWzkwLjgwMzk5ODA3OTAwMDA1LDI0LjU0NTk3MDI5MjAwMDA1XSxbOTAuODAzOTUyOTIxMDAwMDgsMjQuNTQ1ODU1OTUxMDAwMDhdLFs5MC44MDI0MDY4MTIwMDAwNywyNC41NDE5MjQ5MjEwMDAwM10sWzkwLjgwMjM5MjMzMTAwMDA4LDI0LjU0MTg3OTI3NzAwMDA4XSxbOTAuODAyMzE4NTg1MDAwMDgsMjQuNTQxNjM1ODI5MDAwMDNdLFs5MC44MDIyMDE4OTEwMDAwNCwyNC41NDEwNDI2NTMwMDAwM10sWzkwLjgwMjA4NDE0MjAwMDA3LDI0LjU0MDM4MDA1NTAwMDA3XSxbOTAuODAyMDMyMjQ5MDAwMDQsMjQuNTQwMDc5NDgxMDAwMDhdLFs5MC44MDE3MzUxODIwMDAwNywyNC41MzgyODk1MDkwMDAwNF0sWzkwLjgwMTcxOTU5NTAwMDA3LDI0LjUzODE2NzEwNzAwMDA1XSxbOTAuODAxNzAxODcwMDAwMDQsMjQuNTM3OTk5NTYyMDAwMDRdLFs5MC44MDE3MDExMTMwMDAwNCwyNC41Mzc4ODA0NjgwMDAwM10sWzkwLjgwMjY1MzMzMzAwMDA4LDI0LjUzNjI1MDM2MjAwMDAzXSxbOTAuODAwOTEzODU2MDAwMDgsMjQuNTI5MTQyNTAxMDAwMDJdLFs5MC43OTQxNTk0OTIwMDAwNiwyNC41MDgwMzU2NzAwMDAwM10sWzkwLjc5Mzk2MTc3OTAwMDA5LDI0LjUwNzg4ODgyNDAwMDA4XSxbOTAuNzkzNjkyODM5MDAwMDcsMjQuNTA3Nzk0ODQ2MDAwMDJdLFs5MC43OTM0OTE0NDYwMDAwOCwyNC41MDc3NDk2MjEwMDAwN10sWzkwLjc5MzEyNTc3NDAwMDAzLDI0LjUwNzY3NDc3OTAwMDA3XSxbOTAuNzkyNzg5MjkwMDAwMDMsMjQuNTA3NjMwODI1MDAwMDRdLFs5MC43OTIxNjY5OTEwMDAwNCwyNC41MDc1NTYxOTgwMDAwM10sWzkwLjc5MTcxMjA2ODAwMDA0LDI0LjUwNzUxMjg2MzAwMDA0XSxbOTAuNzkwNzMyMTczMDAwMDQsMjQuNTA3NDcwNTg2MDAwMDddLFs5MC43OTA2MDQ0NjcwMDAwNCwyNC41MDc0Njg5OTcwMDAwNV0sWzkwLjc5MDQzOTc4NTAwMDA1LDI0LjUwNzQ3MzgxMTAwMDA3XSxbOTAuNzkwMzIwMTA5MDAwMDUsMjQuNTA3NTcyNjUyMDAwMDhdLFs5MC43ODk2ODY4MTMwMDAwNiwyNC41MDgyMDU4OTEwMDAwNV0sWzkwLjc4OTQyNDg4NzAwMDA1LDI0LjUwODU0MzExMDAwMDA2XSxbOTAuNzg5MTQxMTc0MDAwMDYsMjQuNTA4ODQ5Mzk1MDAwMDNdLFs5MC43ODg5NDAwNDIwMDAwNCwyNC41MDkwNDM0ODkwMDAwOF0sWzkwLjc4ODYwOTc2OTAwMDA2LDI0LjUwOTIwNDM5MDAwMDA0XSxbOTAuNzg4NTU2Nzk4MDAwMDYsMjQuNTA5MjE3NjQ5MDAwMDVdLFs5MC43ODg0MzE3NjIwMDAwNywyNC41MDkyNDg3ODIwMDAwNF0sWzkwLjc4NzkxODAwMjAwMDA4LDI0LjUwOTM2NzE3NzAwMDA2XSxbOTAuNzg2OTM1MzMzMDAwMDMsMjQuNTA5NTc0OTQyMDAwMDNdLFs5MC43ODQ0MDI5ODkwMDAwNiwyNC41MDk5ODE1NDMwMDAwNF0sWzkwLjc4MDY0NDcyMTAwMDA0LDI0LjUxMDM3MDc0MjAwMDA4XSxbOTAuNzc5NDAyODA1MDAwMDcsMjQuNTEwNDU4NDQxMDAwMDNdLFs5MC43NjI2Mzg1MjkwMDAwNywyNC41MTEwMTg3NzkwMDAwNF0sWzkwLjc0MzYzMzY2NDAwMDA3LDI0LjUwOTczNTc3ODAwMDA1XSxbOTAuNzQyODM4MDcyMDAwMDQsMjQuNTA5NjY4NTc0MDAwMDVdLFs5MC43NDI4MTYzODMwMDAwNSwyNC41MDk2NTIzMTEwMDAwMl0sWzkwLjc0MjU5NDE2MzAwMDA0LDI0LjUwOTQxOTcyMTAwMDAzXSxbOTAuNzQyMzg0MjkxMDAwMDYsMjQuNTA5MTg4NzYyMDAwMDZdLFs5MC43NDIzNzU1NDYwMDAwNiwyNC41MDkxNzAxNzkwMDAwMl0sWzkwLjc0MjI4ODAxMDAwMDA0LDI0LjUwODg2NjM2ODAwMDA0XSxbOTAuNzQyMjU5NDYxMDAwMDYsMjQuNTA4NjI3MTgyMDAwMDVdLFs5MC43NDIxNTkzMTMwMDAwNiwyNC41MDQxNzkyMTQwMDAwM10sWzkwLjc0MjE1NDY0NjAwMDA3LDI0LjUwMzA2OTUyMDAwMDA1XSxbOTAuNzQyMTY2Mjc0MDAwMDYsMjQuNTAyNjMzMTQwMDAwMDZdLFs5MC43NDIxODcwNjQwMDAwNiwyNC41MDE5NzE0OTgwMDAwNV0sWzkwLjc0MjI4NTMwNjAwMDA0LDI0LjUwMTE1ODIwMTAwMDA3XSxbOTAuNzQyMzA1NTc3MDAwMDgsMjQuNTAxMDM4NDM3MDAwMDNdLFs5MC43NDIzMzU3MzEwMDAwOCwyNC41MDA1MDA5MjkwMDAwNV0sWzkwLjc0MjE4NDI3MDAwMDA1LDI0LjQ5ODc2MzcxODAwMDA4XSxbOTAuNzQyMTAwNDU4MDAwMDQsMjQuNDk4NDYyMTQ4MDAwMDRdLFs5MC43NDIwMzU2MjEwMDAwNywyNC40OTgyNDA2MzYwMDAwNV0sWzkwLjc0MTk1NTI2MzAwMDA4LDI0LjQ5ODAwMTcwMjAwMDA3XSxbOTAuNzQxNjIxMjMzMDAwMDUsMjQuNDk3MjEyNTQzMDAwMDVdLFs5MC43MzkyOTI4MzgwMDAwNCwyNC40OTI2MDY3MjAwMDAwM10sWzkwLjczOTA2MDg2NTAwMDA2LDI0LjQ5MjE3NjYxMTAwMDA1XSxbOTAuNzM4MTAxODA1MDAwMDQsMjQuNDkwNTAzMTc2MDAwMDZdLFs5MC43Mzc5OTcyMjUwMDAwNywyNC40OTAzMzk0MzAwMDAwNl0sWzkwLjcyOTcyNjkxNzAwMDA1LDI0LjQ3OTIxNDEwNTAwMDA0XSxbOTAuNzIyMzA1MjU0MDAwMDUsMjQuNDczMTM2MTMwMDAwMDZdLFs5MC43MjE0OTg2MDYwMDAwNywyNC40NzI0OTQyNDMwMDAwM10sWzkwLjcxODY3NzEwNTAwMDA0LDI0LjQ3NTU0MzM0NDAwMDA3XSxbOTAuNzE4MTIwNjgxMDAwMDcsMjQuNDc2MjgzMTY5MDAwMDZdLFs5MC43MTczNjMwMzEwMDAwNSwyNC40NzgwODM0MzkwMDAwNV0sWzkwLjcxNzIxMDg5MzAwMDA3LDI0LjQ3ODQ0NTQxNDAwMDA4XSxbOTAuNzE3MDIyODY1MDAwMDUsMjQuNDc5MDA0NTU1MDAwMDddLFs5MC43MTY5NjczMzEwMDAwMywyNC40NzkyMTc2MjAwMDAwNF0sWzkwLjcxNjg4MDUzNjAwMDA4LDI0LjQ3OTY4MzE0NTAwMDAyXSxbOTAuNzE2NTI1NTE5MDAwMDcsMjQuNDgxNjg1ODMxMDAwMDVdLFs5MC43MTY1MjkzMDkwMDAwNywyNC40ODIzNTUyNjAwMDAwOF0sWzkwLjcxNjc3NDU0OTAwMDA0LDI0LjQ4MjYzOTcxMzAwMDAzXSxbOTAuNzE2ODAyNDI3MDAwMDYsMjQuNDgyNjYxNTkzMDAwMDVdLFs5MC43MTcxMjQ5OTYwMDAwNSwyNC40ODM3NDgzMzgwMDAwNV0sWzkwLjcxNjg3MzQwOTAwMDA3LDI0LjQ4NjU4OTMxNzAwMDA0XSxbOTAuNzE2NTY1NjM0MDAwMDYsMjQuNDg4NjU5NTEzMDAwMDddLFs5MC43MTY0ODY3NDkwMDAwNywyNC40ODg5OTc5OTcwMDAwN10sWzkwLjcxNTg4NTIzNjAwMDA4LDI0LjQ5MDcyMDE4NTAwMDA0XSxbOTAuNzE1NzQ2NzIyMDAwMDYsMjQuNDkxMDk1MDc2MDAwMDhdLFs5MC43MTU2ODI5MjkwMDAwOCwyNC40OTEyNjY5NzQwMDAwNF0sWzkwLjcxNTYzNjA1NTAwMDA2LDI0LjQ5MTM3NjcwMTAwMDA0XSxbOTAuNzE0MDQyOTMzMDAwMDMsMjQuNDk0MDIyNTE0MDAwMDVdLFs5MC43MTM5NDQxMzUwMDAwOCwyNC40OTQxMTMyOTUwMDAwM10sWzkwLjcwNzQ4MjUyODAwMDA3LDI0LjQ5OTkxNDE1MTAwMDA0XSxbOTAuNzA1NDYyNDI1MDAwMDYsMjQuNTA2NDU5NDUwMDAwMDJdLFs5MC43MDU3MjE5MTcwMDAwNiwyNC41MDgxODcxNjkwMDAwNV0sWzkwLjcwNTcyMjk3MzAwMDA0LDI0LjUwODM3NjI1NjAwMDA4XSxbOTAuNzA1NzIyOTU5MDAwMDcsMjQuNTA4NTk0NzAwMDAwMDZdLFs5MC43MDU3MTUzMTMwMDAwNCwyNC41MDg4ODI2MDkwMDAwN10sWzkwLjcwNTIzMDAxNjAwMDA5LDI0LjUxNDQ0NzAzMTAwMDAzXSxbOTAuNzA1MTk0MzEzMDAwMDUsMjQuNTE0NjgyNTc2MDAwMDRdLFs5MC43MDUwODg4MTQwMDAwOCwyNC41MTUyMzQ1NDMwMDAwOF0sWzkwLjcwNDgwNjEyMDAwMDA2LDI0LjUxNjIwNTU5NzAwMDA3XSxbOTAuNzA0NjkzNjYzMDAwMDYsMjQuNTE2NTA2NDE0MDAwMDVdLFs5MC43MDQ1MTkwMjUwMDAwOCwyNC41MTY4MzA2NjMwMDAwNl0sWzkwLjcwNDM4MTk5OTAwMDA4LDI0LjUxNzA0MDcxNjAwMDA1XSxbOTAuNzA0MzEyMDkxMDAwMDgsMjQuNTE3MTE2Njc4MDAwMDRdLFs5MC43MDM4Mjc1NzUwMDAwNSwyNC41MTc1MjE5NjEwMDAwNl0sWzkwLjcwMzY1MzUxNTAwMDA0LDI0LjUxNzYxODczMTAwMDAzXSxbOTAuNzAzNTAyMDg3MDAwMDYsMjQuNTE3Njc5ODMzMDAwMDVdLFs5MC43MDMzOTA2MjkwMDAwNywyNC41MTc3MTc2MDcwMDAwN10sWzkwLjcwMzI3MTA0MzAwMDA5LDI0LjUxNzczNjIyNzAwMDA2XSxbOTAuNzAzMTMwOTk1MDAwMDQsMjQuNTE3NzM2MzE1MDAwMDRdLFs5MC43MDMwMDgxNjYwMDAwNywyNC41MTc3MjYxNjMwMDAwOF0sWzkwLjcwMjc0NjIwNzAwMDA4LDI0LjUxNzY1OTY0ODAwMDA2XSxbOTAuNjg4NDY1ODEyMDAwMDYsMjQuNTA5NDM3NTQyMDAwMDZdLFs5MC42ODgyMDc3MTcwMDAwNywyNC41MDkyODI5MjkwMDAwNV0sWzkwLjY4Nzk3Nzk2MjAwMDA1LDI0LjUwOTEyMTQxMjAwMDA3XSxbOTAuNjg3NTc5Njc5MDAwMDcsMjQuNTA4ODI1NzU4MDAwMDZdLFs5MC42ODc0OTcyMjMwMDAwNCwyNC41MDg3NTEwNjIwMDAwNF0sWzkwLjY4NzI4MDY2MDAwMDA2LDI0LjUwODUxODkyNjAwMDA4XSxbOTAuNjg3MDUxMDYwMDAwMDQsMjQuNTA4MjcyMTczMDAwMDJdLFs5MC42ODI1MDc3MjEwMDAwNCwyNC41MDI4MjQzMDkwMDAwNl0sWzkwLjY4MjQyMjU5NzAwMDA4LDI0LjUwMjcxMTIzODAwMDA3XSxbOTAuNjgyMjk3NjY4MDAwMDUsMjQuNTAyNTM3OTQ5MDAwMDRdLFs5MC42ODIyMjUzNjMwMDAwNCwyNC41MDIzOTk0MTkwMDAwM10sWzkwLjY4MjE2MzAwOTAwMDA4LDI0LjUwMjI3NjA4NDAwMDA3XSxbOTAuNjgyMDMyMDgwMDAwMDYsMjQuNTAxOTA1MjYxMDAwMDVdLFs5MC42ODE0MzEzMTMwMDAwOCwyNC40OTgxNDE5MDMwMDAwM10sWzkwLjY4MTEzNzA0MzAwMDA0LDI0LjQ5NTg0NjQ0NjAwMDAzXSxbOTAuNjgxNjAxNjk3MDAwMDgsMjQuNDkyNTU4NjMwMDAwMDhdLFs5MC42ODE2MzIxODQwMDAwOCwyNC40OTIzNzg0MzAwMDAwM10sWzkwLjY4MTg0MjU5MzAwMDA2LDI0LjQ5MjI3NzAwNTAwMDA2XSxbOTAuNjgyMTExNzY4MDAwMDgsMjQuNDkyMjA2MzYzMDAwMDRdLFs5MC42ODI1Njk3NzgwMDAwNywyNC40OTIxNTE3OTcwMDAwOF0sWzkwLjY4MjkzMTc2NjAwMDA4LDI0LjQ5MjEzNDkyMjAwMDA1XSxbOTAuNjgzMTk0MTk0MDAwMDcsMjQuNDkxOTU3NjIzMDAwMDhdLFs5MC42ODM0MDg3NjUwMDAwOCwyNC40OTE3MTMzNzAwMDAwN10sWzkwLjY4NDYxODA1MjAwMDA4LDI0LjQ5MDI4ODI3ODAwMDA0XSxbOTAuNjg0Njg2MDE5MDAwMDgsMjQuNDkwMTk1OTYzMDAwMDhdLFs5MC42ODQ4NjAxNTMwMDAwNSwyNC40ODk4ODkyMzYwMDAwN10sWzkwLjY4NDk0MjYwMjAwMDA0LDI0LjQ4OTczNzU4NzAwMDA0XSxbOTAuNjg1MTQ2MzU4MDAwMDUsMjQuNDg5MzIwMDkxMDAwMDJdLFs5MC42ODUyODg4MTYwMDAwOCwyNC40ODg4NTk5NzUwMDAwM10sWzkwLjY4NTM5MTE2MDAwMDA1LDI0LjQ4ODUwOTU0NjAwMDA1XSxbOTAuNjg1MzIxMTczMDAwMDMsMjQuNDg4MDAxMjg2MDAwMDRdLFs5MC42ODAyODg0MDYwMDAwNSwyNC40NjgzNDE4NTIwMDAwNF0sWzkwLjY4MDE0NDA2NjAwMDA4LDI0LjQ2Nzg3NzM4NjAwMDA1XSxbOTAuNjc5ODUxMTc0MDAwMDgsMjQuNDY3NjU2MzA2MDAwMDRdLFs5MC42Nzg3Njg2NzAwMDAwNywyNC40NjcxNjMzMTYwMDAwNF0sWzkwLjY3ODY4NjUxMTAwMDA4LDI0LjQ2NzEzNzcyMDAwMDA0XSxbOTAuNjc4MjMwMDAyMDAwMDgsMjQuNDY2OTk1ODMxMDAwMDhdLFs5MC42Nzc2MTY0ODIwMDAwOCwyNC40NjY4OTk4MDIwMDAwNl0sWzkwLjY3NzE0ODQxMjAwMDA3LDI0LjQ2NjkwMTg5OTAwMDA1XSxbOTAuNjY0MjM5OTk0MDAwMDcsMjQuNDY3MDAwOTUyMDAwMDNdLFs5MC42NjM3MjA3ODMwMDAwMywyNC40NjcwMTE2OTkwMDAwN10sWzkwLjY2MzIzNjE0NTAwMDA0LDI0LjQ2NzAzMDE5NjAwMDA1XSxbOTAuNjYzMjIzOTI3MDAwMDUsMjQuNDY3MDUyMjY0MDAwMDddLFs5MC42NjMwODgzMDIwMDAwNiwyNC40NjcyOTcyNzAwMDAwN10sWzkwLjY2MjkwMzY4NDAwMDA3LDI0LjQ2NzcyNjUwODAwMDA2XSxbOTAuNjU4NDE5MDg3MDAwMDgsMjQuNDczNDQ0OTMxMDAwMDddLFs5MC42NTU4Njc0OTQwMDAwNiwyNC40NzQ4NDc0MjgwMDAwM10sWzkwLjY1MDA0MzkwMTAwMDA2LDI0LjQ3NjIzOTE2MDAwMDAzXSxbOTAuNjQ1NDE1Mjc0MDAwMDcsMjQuNDc2NjI1OTAyMDAwMDJdLFs5MC42NDUyNjE4MTgwMDAwNSwyNC40NzY1Mjc3NzYwMDAwN10sWzkwLjY0NTA1OTQ4MDAwMDA0LDI0LjQ3NjM5ODgxNDAwMDA1XSxbOTAuNjQzODc4MjYwMDAwMDYsMjQuNDc1ODg3OTMyMDAwMDNdLFs5MC42NDM4MjU3MzYwMDAwNSwyNC40NzU4Njg0MDAwMDAwMl0sWzkwLjY0MzQwMjUyMDAwMDA1LDI0LjQ3NTcyMjg3ODAwMDA2XSxbOTAuNjQxMTEyNTI4MDAwMDYsMjQuNDc1MjM4NzA1MDAwMDRdLFs5MC42NDEwMDU3NjAwMDAwNCwyNC40NzUyMjQ0ODIwMDAwNF0sWzkwLjY0MDg2NTA0NjAwMDA0LDI0LjQ3NTIwNTg4NzAwMDA3XSxbOTAuNjQwNDY2NDU4MDAwMDUsMjQuNDc1MTczMTQ0MDAwMDVdLFs5MC42NDAwNTkzODYwMDAwOCwyNC40NzUxNjk3ODkwMDAwNl0sWzkwLjYzOTI2NjI4NTAwMDA4LDI0LjQ3NTE3NzY2MjAwMDA4XSxbOTAuNjM5MTM2MjI3MDAwMDUsMjQuNDc1MTkyODg4MDAwMDRdLFs5MC42Mzc3OTE0NjYwMDAwNywyNC40NzUzODkzNjAwMDAwN10sWzkwLjYzNjgzNzQ4MjAwMDAzLDI0LjQ3NTUzODQ1MTAwMDAzXSxbOTAuNjMxMzk2OTI2MDAwMDQsMjQuNDc4OTY0NDM5MDAwMDRdLFs5MC42MzAxOTM0NjIwMDAwOCwyNC40ODAwNDk4NDkwMDAwN10sWzkwLjYyOTM5MzcyMjAwMDAzLDI0LjQ4MDgzNzc4OTAwMDA4XSxbOTAuNjI3OTY4NDk3MDAwMDQsMjQuNDgyNDg0MDUzMDAwMDZdLFs5MC42MjY3NjExNzMwMDAwMywyNC40ODQwNDgxMTcwMDAwNF0sWzkwLjYyNTgyNDAyOTAwMDA2LDI0LjQ4NTEyMzM1NTAwMDA0XSxbOTAuNjIyODQ0NzgyMDAwMDcsMjQuNDg4NDg1NzY1MDAwMDZdLFs5MC42MjI3NTk0MjIwMDAwNiwyNC40ODg1NjIzMjEwMDAwN10sWzkwLjYxNjY5MTk4NzAwMDA4LDI0LjQ5MzI4NDY4OTAwMDA2XSxbOTAuNjEyNTIzMTg2MDAwMDMsMjQuNDk1OTIwMjA3MDAwMDRdLFs5MC42MDQ3MjMwNDkwMDAwOSwyNC40OTkwMTMzMDEwMDAwNV0sWzkwLjYwNDI5NjU3MzAwMDA2LDI0LjQ5OTA5NjI5MDAwMDA3XSxbOTAuNjA0MTUwMzgyMDAwMDYsMjQuNDk5MDk4MDA1MDAwMDZdLFs5MC42MDM4MDgwMDQwMDAwOSwyNC40OTkwOTQ4NTkwMDAwMl0sWzkwLjU5Mjk2NzMwNjAwMDA1LDI0LjQ5Nzk1MTg3NzAwMDA1XSxbOTAuNTg4MzY3MDIzMDAwMDUsMjQuNDk2OTU2MDkyMDAwMDZdLFs5MC41ODgyMzYwMTcwMDAwNCwyNC40OTY5MDYzNjQwMDAwNF0sWzkwLjU4MzE3NTUyODAwMDA4LDI0LjQ5MzIxMzQ5NzAwMDA2XSxbOTAuNTc0MDg4ODc1MDAwMDksMjQuNDgxOTQ4MjMzMDAwMDNdLFs5MC41NzU1MDU0MTAwMDAwNiwyNC40Njc3OTA0ODgwMDAwNV0sWzkwLjU4MDMxNTM3NjAwMDA0LDI0LjQ1NzU5OTIzNDAwMDA0XSxbOTAuNTg2OTIzMDUyMDAwMDMsMjQuNDQ4NjkzNDkzMDAwMDZdLFs5MC41ODcxNjM5MTQwMDAwOSwyNC40NDgzNzU4OTEwMDAwN10sWzkwLjU4NzQzODc2MzAwMDA4LDI0LjQ0ODA3Mzk2MjAwMDAyXSxbOTAuNTg3OTM5MzYxMDAwMDUsMjQuNDQ3Nzg2OTU5MDAwMDRdLFs5MC42MTcwNDA3MjkwMDAwNSwyNC40Mzg0MDU4NDMwMDAwNl0sWzkwLjYyOTczNjkyNjAwMDA4LDI0LjQzNjQ4NzM5MjAwMDA2XSxbOTAuNjMwMDU4NjAzMDAwMDcsMjQuNDM2NDUzMzEzMDAwMDddLFs5MC42MzAzMTcyOTcwMDAwMywyNC40MzY0MDAzMDQwMDAwN10sWzkwLjYzMTUzNDEyMTAwMDA3LDI0LjQzNTk3NDcwMjAwMDA3XSxbOTAuNjMxNjkyMjcwMDAwMDMsMjQuNDM1OTEzMDc5MDAwMDRdLFs5MC42MzE4NDE3OTMwMDAwNCwyNC40MzU4NTI2MjEwMDAwNF0sWzkwLjYzMzI2ODYwNzAwMDA1LDI0LjQzNTI1Mzk2NTAwMDA3XSxbOTAuNjMzNDc3NzUyMDAwMDMsMjQuNDM1MTU3MTI5MDAwMDZdLFs5MC42MzM1OTcwNTQwMDAwNiwyNC40MzUwOTUxMDMwMDAwNF0sWzkwLjYzMzgyODE1NTAwMDA2LDI0LjQzNDk1MDE5NTAwMDA2XSxbOTAuNjM0MTYyOTYyMDAwMDYsMjQuNDM0NzA3MjAwMDAwMDVdLFs5MC42MzQyNDUyMjIwMDAwNiwyNC40MzQ2MzUxNjgwMDAwNl0sWzkwLjYzOTQyODk1MTAwMDA3LDI0LjQyOTY5MzQ1MTAwMDA1XSxbOTAuNjM5NDczNjkwMDAwMDUsMjQuNDI5NjQwMjAzMDAwMDhdLFs5MC42Mzk2NTc1NDQwMDAwNCwyNC40Mjk0MjA5NzUwMDAwM10sWzkwLjYzOTcxMzI4ODAwMDA1LDI0LjQyOTM0OTYxODAwMDA2XSxbOTAuNjM5ODA0NTU0MDAwMDgsMjQuNDI5MjMxMjU4MDAwMDddLFs5MC42Mzk4NTM0MzAwMDAwNywyNC40MjkxNDI5OTQwMDAwN10sWzkwLjYzOTkzNTI2MzAwMDA0LDI0LjQyODk4Nzk4MzAwMDA3XSxbOTAuNjQ2MDExNDI2MDAwMDksMjQuNDE2NDU0NjkzMDAwMDVdLFs5MC42NDYwMjk1NzMwMDAwOCwyNC40MTYzODYzMTYwMDAwNl0sWzkwLjY0NjA2MDI0OTAwMDA3LDI0LjQxNjIzNjYwMTAwMDA0XSxbOTAuNjQ2MDY4MDYzMDAwMDksMjQuNDE2MTk3MDU2MDAwMDRdLFs5MC42NDYwODAyOTkwMDAwNiwyNC40MDczMzcxMDkwMDAwM10sWzkwLjY0Mzk1NTE5NzAwMDA4LDI0LjQwMjkwMjA5ODAwMDAzXSxbOTAuNjQwMTU3NzIyMDAwMDgsMjQuMzkxNjgxODYzMDAwMDNdLFs5MC42NDAxMTk5OTIwMDAwNSwyNC4zOTE1MzMwMDEwMDAwM10sWzkwLjY0MDA3OTU5NTAwMDAzLDI0LjM5MTM0NDA3NTAwMDA2XSxbOTAuNjQwMDY5Njc5MDAwMDgsMjQuMzkwOTY2NDg2MDAwMDJdLFs5MC42NDAwNzU1MjcwMDAwOCwyNC4zOTA5MDM4MDUwMDAwNV0sWzkwLjY0MDA4MjU3MzAwMDA5LDI0LjM5MDgzNDM0NTAwMDAzXSxbOTAuNjQwMTgwMTgyMDAwMDUsMjQuMzkwMjY3NzcwMDAwMDRdLFs5MC42NDAyNTM2MTIwMDAwNCwyNC4zOTAwMzk5NzgwMDAwNl0sWzkwLjY0MDg2MjE2NzAwMDA4LDI0LjM4ODI1MjU0OTAwMDA3XSxbOTAuNjQxMDk4MTc5MDAwMDQsMjQuMzg3NzU1MzgyMDAwMDJdLFs5MC42NDEyMjMyNTIwMDAwMywyNC4zODc1MDMwOTgwMDAwMl0sWzkwLjY0MTQzMTUwNDAwMDA4LDI0LjM4NzEyNDAyMTAwMDAzXSxbOTAuNjQxMDQ2MzU4MDAwMDQsMjQuMzgzOTU3ODQyMDAwMDNdLFs5MC42MzkxMzk5NTIwMDAwNSwyNC4zNzczMDUxMzcwMDAwNl0sWzkwLjYzOTAwNTAyMzAwMDA0LDI0LjM3Njk0NDQ0NTAwMDA1XSxbOTAuNjMyMTE4ODM0MDAwMDQsMjQuMzU4ODUwOTMxMDAwMDZdLFs5MC42MzIwMzU0MDEwMDAwNSwyNC4zNTg2NzY4NTgwMDAwMl0sWzkwLjYzMTkzMDgwNzAwMDA2LDI0LjM1ODQ2MDUzNTAwMDA2XSxbOTAuNjMxNzg3NjA5MDAwMDcsMjQuMzU4Mjg3MjczMDAwMDNdLFs5MC42MzE0OTIxMTIwMDAwNSwyNC4zNTc5Njk1NzcwMDAwNl0sWzkwLjYzMDk4NTQyNjAwMDA1LDI0LjM1NzQzNTQzNzAwMDA1XSxbOTAuNjMwNjY3MDcyMDAwMDUsMjQuMzU3MTA0ODUxMDAwMDNdLFs5MC42MzA0NTE3NDcwMDAwNSwyNC4zNTY5MjM5ODUwMDAwNF0sWzkwLjYzMDIzMjExNzAwMDA1LDI0LjM1Njc0NTM5NTAwMDA4XSxbOTAuNjMwMDA5NDQwMDAwMDQsMjQuMzU2NTcyNDY0MDAwMDddLFs5MC42MjQ5NDMzODkwMDAwNywyNC4zNTA0NTMwNzUwMDAwOF0sWzkwLjYxODYyNjUyMTAwMDA3LDI0LjM0MjMwOTMyMjAwMDA2XSxbOTAuNjE4NTU1MDM3MDAwMDgsMjQuMzQyMTc5Nzg1MDAwMDRdLFs5MC42MTgwOTY4NTYwMDAwOCwyNC4zNDEwNzg2NjcwMDAwM10sWzkwLjYxODA2MjM4NDAwMDA0LDI0LjM0MDgzMTAwMTAwMDAzXSxbOTAuNjE3OTM3MDY2MDAwMDgsMjQuMzM5NzYzNTI1MDAwMDJdLFs5MC42MTc5MTIwNTUwMDAwMywyNC4zMzk0MzM5NzMwMDAwNF0sWzkwLjYxNzkxMzg4NTAwMDA2LDI0LjMzOTMwMzAwODAwMDA2XSxbOTAuNjE3OTE1Nzg3MDAwMDcsMjQuMzM5MTg3MjgyMDAwMDddLFs5MC42MTc5MjQwMTgwMDAwNSwyNC4zMzg4NTE5NTAwMDAwNV0sWzkwLjYxNzk3MjgwNzAwMDA2LDI0LjMzODc0OTU4MTAwMDA2XSxbOTAuNjE4MTMxMzQ1MDAwMDUsMjQuMzM4NTM3MjU3MDAwMDRdLFs5MC42MTgzMzg3NTcwMDAwNiwyNC4zMzgzNjcwNjkwMDAwN10sWzkwLjYxODY0NjgzNDAwMDA2LDI0LjMzODExOTcwMjAwMDAzXSxbOTAuNjE4ODU1MjEwMDAwMDUsMjQuMzM4MDIxNzYyMDAwMDRdLFs5MC42MTkyNTYyMjQwMDAwOCwyNC4zMzc4ODI5NjAwMDAwNl0sWzkwLjYxOTY1MzA3MTAwMDA3LDI0LjMzNzkwMTA5NTAwMDA2XSxbOTAuNjIwMzU4MDQyMDAwMDgsMjQuMzM3OTM1NDcwMDAwMDVdLFs5MC42MjA2NjY4MDMwMDAwNiwyNC4zMzc5NTY3ODcwMDAwNV0sWzkwLjYyMTg0MDQyMTAwMDA2LDI0LjMzODA3NzI5NTAwMDA2XSxbOTAuNjI1NzQyNTAzMDAwMDgsMjQuMzMzNjQ0Nzk4MDAwMDJdLFs5MC42MzgzNjc3OTYwMDAwNywyNC4zMTE4MDYyODYwMDAwNF0sWzkwLjYzOTY5NzEyOTAwMDA3LDI0LjMwOTM2ODkyOTAwMDA3XSxbOTAuNjM5ODM1MzE1MDAwMDgsMjQuMzA5MDQzMjA4MDAwMDVdLFs5MC42NDAyNjQ4OTIwMDAwNiwyNC4zMDc5OTE0NzEwMDAwNF0sWzkwLjY0MDQ0MzczMzAwMDA0LDI0LjMwNzU0NDIxNzAwMDA0XSxbOTAuNjQwODQ3NjMxMDAwMDQsMjQuMzA2NTMyMTAwMDAwMDNdLFs5MC42NDEwNTkxNzEwMDAwNSwyNC4zMDU5NzQwNjkwMDAwNl0sWzkwLjY0MTEzOTk4NDAwMDA2LDI0LjMwNTc1NDE0ODAwMDA2XSxbOTAuNjQxMjg2MTc5MDAwMDgsMjQuMzA1MTg1MTAxMDAwMDZdLFs5MC42NDMxNTc1MjkwMDAwNiwyNC4yOTY1NDIzOTAwMDAwN10sWzkwLjY0MzQ1ODkxMzAwMDA3LDI0LjI5NDM4NjUwNTAwMDAzXSxbOTAuNjQzMDQ3MTg4MDAwMDgsMjQuMjkyNjExMjc0MDAwMDJdLFs5MC42NDI2ODk4NjIwMDAwNSwyNC4yOTAzODQ3OTQwMDAwM10sWzkwLjY0MjQ1MTY0MDAwMDA1LDI0LjI4ODY5NDA2MTAwMDA2XSxbOTAuNjQyMzU0MjU0MDAwMDUsMjQuMjg3NDUzNzUxMDAwMDRdLFs5MC42NDIzMzI4MDcwMDAwNiwyNC4yODcxMDc4MTYwMDAwNl0sWzkwLjY0MjQ4MTI0NTAwMDA2LDI0LjI4NDc4NjYyMTAwMDAyXSxbOTAuNjQyNTc3NzU4MDAwMDcsMjQuMjgzNDA2MDY1MDAwMDddLFs5MC42NDI1ODg4ODIwMDAwNCwyNC4yODMyOTE0MjkwMDAwM10sWzkwLjY0Mjg4MzYyMDAwMDA4LDI0LjI4MDkxOTM3NDAwMDA2XSxbOTAuNjQyOTE1MDM1MDAwMDQsMjQuMjgwNjc2NTE2MDAwMDNdLFs5MC42NDMxMDQ4MDUwMDAwNiwyNC4yNzk1OTU4NjcwMDAwN10sWzkwLjY0MzE1MzU2NzAwMDA3LDI0LjI3OTQ5NjMxMjAwMDA1XSxbOTAuNjQzMjIwMTI5MDAwMDQsMjQuMjc5Mzg0ODI4MDAwMDVdLFs5MC42NDU5OTQyODgwMDAwNSwyNC4yNzQ3NTIyNDYwMDAwNV0sWzkwLjY0NjA3MDYyNDAwMDA2LDI0LjI3NDYyNjYwNzAwMDA3XSxbOTAuNjQ2MTcxNzg4MDAwMDYsMjQuMjc0NTM5ODEwMDAwMDhdLFs5MC42NDYyNTM0NDAwMDAwNywyNC4yNzQ0OTA5MjAwMDAwNl0sWzkwLjY0Njk4MzEwNjAwMDA1LDI0LjI3NDEyMDM0MTAwMDA3XSxbOTAuNjQ3NjE5OTUyMDAwMDcsMjQuMjczNzgyMzMwMDAwMDddLFs5MC42NDgxMTIxOTYwMDAwNiwyNC4yNzMzNDM4OTEwMDAwMl0sWzkwLjY0ODc4MjEzMzAwMDA1LDI0LjI3MjczMzA5MDAwMDAzXSxbOTAuNjUwMzAwNjU5MDAwMDQsMjQuMjcxMTY4MDc4MDAwMDddLFs5MC42NTA0OTMxNDgwMDAwNywyNC4yNzA4NzgyNDIwMDAwNF0sWzkwLjY1MDUwMTY4NDAwMDA2LDI0LjI3MDg2MTgzNjAwMDA1XSxbOTAuNjUwNzUxNTM1MDAwMDQsMjQuMjcwMTA3MTg3MDAwMDZdLFs5MC42NTEwMDExODEwMDAwOCwyNC4yNjkxOTIyMjkwMDAwNV0sWzkwLjY1MTAxNDkwMjAwMDA0LDI0LjI2OTEwNTIzODAwMDA3XSxbOTAuNjUxMDU3MTExMDAwMDYsMjQuMjY4NDQ2ODc3MDAwMDNdLFs5MC42NTEwMjk3NzYwMDAwOSwyNC4yNjgxNTc0MTgwMDAwNF0sWzkwLjY1MDkyNzk2ODAwMDA4LDI0LjI2NzE0OTEzMDAwMDA2XSxbOTAuNjUwNDA3OTE1MDAwMDcsMjQuMjYyMjM3MDAyMDAwMDZdLFs5MC42NTAyNjY1MTYwMDAwNCwyNC4yNjA5NDgzMzcwMDAwNl0sWzkwLjY1MDA3MjE4ODAwMDA4LDI0LjI1OTE3ODM5NzAwMDAzXSxbOTAuNjQ5ODg0MTUzMDAwMDcsMjQuMjU4ODg3OTI4MDAwMDRdLFs5MC42NDkyOTM0MzMwMDAwOCwyNC4yNTc5ODc4NDkwMDAwN10sWzkwLjY0OTI0NzM0NjAwMDA0LDI0LjI1ODAwNTU0NDAwMDA3XSxbOTAuNjQ4OTc1NzM2MDAwMDcsMjQuMjU4MTEwMDAzMDAwMDddLFs5MC42NDE4ODkwMDQwMDAwNiwyNC4yNjExNjc5NDMwMDAwM10sWzkwLjYzNDM5Nzk5NTAwMDA5LDI0LjI2NTIxNTY1MDAwMDA3XSxbOTAuNjMyOTYyNjU5MDAwMDQsMjQuMjY2MTk4MTgwMDAwMDZdLFs5MC42MzI3MTUxNzAwMDAwNCwyNC4yNjYzMzAxNjkwMDAwN10sWzkwLjYzMjY1MDA3MzAwMDA0LDI0LjI2NjM2NDg3NTAwMDA4XSxbOTAuNjMyMjU4MTYzMDAwMDcsMjQuMjY2NTUzMzQ2MDAwMDJdLFs5MC42MzE1MzM3NTAwMDAwNywyNC4yNjY4NjU2OTMwMDAwNl0sWzkwLjYzMTMzNDA1NDAwMDA0LDI0LjI2Njk1MTE5MzAwMDA3XSxbOTAuNjMwODk5NTUwMDAwMDQsMjQuMjY3MTE4Mzg5MDAwMDddLFs5MC42MzA2ODk4OTYwMDAwNCwyNC4yNjcxODE5MTYwMDAwM10sWzkwLjYzMDAyNTI0NTAwMDA3LDI0LjI2NzM3ODI4ODAwMDAzXSxbOTAuNjI4NDE0NDQxMDAwMDcsMjQuMjY3NzUxMzAwMDAwMDRdLFs5MC42MjcxMDg1ODYwMDAwOCwyNC4yNjgwMzEwMzAwMDAwM10sWzkwLjYyNTQ2OTM3NTAwMDA4LDI0LjI2ODI2NDcwMjAwMDA3XSxbOTAuNjIzNTU4MDY2MDAwMDQsMjQuMjY4NTEyNDU2MDAwMDVdLFs5MC42MjMxNzgzMzcwMDAwNywyNC4yNjg1NTEyNjkwMDAwNl0sWzkwLjYyMjQxNzU1NzAwMDA2LDI0LjI2ODYxMDI2NzAwMDA0XSxbOTAuNjIyMjcwOTY3MDAwMDgsMjQuMjY4NjAxODM1MDAwMDNdLFs5MC42MjE4Mjc0MTQwMDAwNSwyNC4yNjg1NTg0OTIwMDAwN10sWzkwLjYyMTI0MTMwMTAwMDA1LDI0LjI2ODQ0ODU1NzAwMDA2XSxbOTAuNjEwNTI0NDA1MDAwMDQsMjQuMjY1OTIzMDA2MDAwMDRdLFs5MC42MTAyODk0NzMwMDAwOCwyNC4yNjU4NTI4MjUwMDAwMl0sWzkwLjYwOTcxNTM2NTAwMDA2LDI0LjI2NTY3MzM2NTAwMDA1XSxbOTAuNjA5NjIzNDc3MDAwMDcsMjQuMjY1NjQzMjUxMDAwMDNdLFs5MC42MDk0NzkxNjQwMDAwNSwyNC4yNjU1OTUyODQwMDAwM10sWzkwLjYwOTAxOTY2MTAwMDA1LDI0LjI2NTQzMTczMjAwMDAyXSxbOTAuNjA3OTkzNjMzMDAwMDQsMjQuMjY0OTk5NDkzMDAwMDZdLFs5MC42MDMzNDYzNTIwMDAwNywyNC4yNjI5NzM0NDcwMDAwNF0sWzkwLjYwMzAzNTMxMTAwMDA0LDI0LjI2MjgyMTcwNTAwMDA4XSxbOTAuNTkxNTU2MjU4MDAwMDgsMjQuMjU2MTQ5OTk5MDAwMDZdLFs5MC41ODYwMTA4ODcwMDAwNCwyNC4yNTEzNTMwMjYwMDAwNl0sWzkwLjU4NTg3MTAyNjAwMDA2LDI0LjI1MTA2MTcyNzAwMDA0XSxbOTAuNTg1Nzc3MTkzMDAwMDcsMjQuMjUwODcyNDIxMDAwMDVdLFs5MC41ODU1NDMyODMwMDAwNSwyNC4yNTA0Nzg3NDcwMDAwNV0sWzkwLjU4NTQ4MjU1OTAwMDA3LDI0LjI1MDM5Mzc0NDAwMDA2XSxbOTAuNTg1NDQ5MTAwMDAwMDYsMjQuMjUwMzQ3MDIwMDAwMDVdLFs5MC41ODUzMDc5OTEwMDAwNCwyNC4yNTAxODYxMjEwMDAwN10sWzkwLjU4NTIyOTQwMDAwMDA2LDI0LjI1MDA5ODM2MzAwMDA2XSxbOTAuNTg0Mzk0MDA1MDAwMDQsMjQuMjQ5NDM4MzA1MDAwMDddLFs5MC41ODQxNzI4NjIwMDAwNiwyNC4yNDkyNzcxNDcwMDAwNF0sWzkwLjU4MzcxNTI0OTAwMDA4LDI0LjI0ODk2ODQzNzAwMDAzXSxbOTAuNTgxMjIxODY2MDAwMDgsMjQuMjQ3MzUxMTM3MDAwMDddLFs5MC41ODA4ODk3NzgwMDAwOCwyNC4yNDcxNTk5MTUwMDAwNV0sWzkwLjU4MDQ5OTE2OTAwMDA2LDI0LjI0Njk2MTU3OTAwMDA3XSxbOTAuNTc5OTQyNTk4MDAwMDYsMjQuMjQ2Njg0ODQ0MDAwMDddLFs5MC41Nzk4NTg2ODIwMDAwNywyNC4yNDY2NDMzOTMwMDAwNl0sWzkwLjU3OTc2NzM2MzAwMDAzLDI0LjI0NjU5ODU4MjAwMDA1XSxbOTAuNTc5NTc3OTU5MDAwMDYsMjQuMjQ2NTEwMTE1MDAwMDRdLFs5MC41NzkzNzE5OTUwMDAwMywyNC4yNDY0MzU4MjMwMDAwN10sWzkwLjU3NzM3NjM4MzAwMDA2LDI0LjI0NTgyNDE2NzAwMDAyXSxbOTAuNTc3MjE5MjE3MDAwMDUsMjQuMjQ1Nzg0Njg2MDAwMDRdLFs5MC41NzcwNzU2MDkwMDAwOCwyNC4yNDU3NDkxMDMwMDAwNF0sWzkwLjU3NjcxMDM4ODAwMDA0LDI0LjI0NTcxNzE4MzAwMDA3XSxbOTAuNTc2NDI0NjUzMDAwMDYsMjQuMjQ1NzAwMjAzMDAwMDddLFs5MC41NzU3NzIyMDEwMDAwNiwyNC4yNDU3MjkyMDMwMDAwNV0sWzkwLjU3NTI2Mzg5NjAwMDA4LDI0LjI0NTc3NzQxNDAwMDAzXSxbOTAuNTc1MDI1MTQ3MDAwMDgsMjQuMjQ1ODA0MjgyMDAwMDVdLFs5MC41NzQ5MzI4NzgwMDAwOCwyNC4yNDU4MjIxMzAwMDAwOF0sWzkwLjU3NDczODUwNTAwMDA4LDI0LjI0NTg2MDExOTAwMDA0XSxbOTAuNTc0NDUxMjcwMDAwMDUsMjQuMjQ1OTIwNDc2MDAwMDRdLFs5MC41NzQwMjc1OTEwMDAwNiwyNC4yNDYwMzIxNTAwMDAwOF0sWzkwLjU3MjkwODM3NzAwMDAzLDI0LjI0NjQ1MTI2MzAwMDA0XSxbOTAuNTcyNTcwNDg1MDAwMDksMjQuMjQ2NjExMTU3MDAwMDddLFs5MC41NzIzMjk3MjEwMDAwNywyNC4yNDY3Mzg1MDcwMDAwM10sWzkwLjU1NDIwMzI5ODAwMDA2LDI0LjI1ODk5NTY4NzAwMDA0XSxbOTAuNTU0MTQxMjk1MDAwMDgsMjQuMjU5MDM4MjUwMDAwMDZdLFs5MC41NTM5OTUxOTMwMDAwNSwyNC4yNTkxMzkyNjEwMDAwM10sWzkwLjU1MzA4MjEyMTAwMDA1LDI0LjI1OTg1NzIyMzAwMDA0XSxbOTAuNTUyNzkwMDUwMDAwMDYsMjQuMjYwMDkwMjg4MDAwMDddLFs5MC41NDc3MjU5MjcwMDAwNCwyNC4yNjQxNDU4MTIwMDAwNF0sWzkwLjU0NTMxNjYwNzAwMDA3LDI0LjI2NzA0NDYzOTAwMDA2XSxbOTAuNTQ1NTc2MTA5MDAwMDgsMjQuMjY3MjUyNTY4MDAwMDZdLFs5MC41NDYwMTk2OTgwMDAwNywyNC4yNjc3NDMyMDcwMDAwMl0sWzkwLjU0Njc5OTc5ODAwMDA1LDI0LjI3MTAzOTI1NzAwMDA0XSxbOTAuNTQ3MDQ4Nzc4MDAwMDMsMjQuMjcyMDk1MDc5MDAwMDVdLFs5MC41NDcxMzg1NDEwMDAwNCwyNC4yNzI2MzcyMjYwMDAwM10sWzkwLjU0NzEyOTM5MDAwMDA3LDI0LjI3MjgwMDk2MDAwMDA0XSxbOTAuNTQ3MTA2NDkzMDAwMDYsMjQuMjczMjA2MzQ0MDAwMDddLFs5MC41NDcwODYxMDgwMDAwMywyNC4yNzMzMzUxMTkwMDAwMl0sWzkwLjU0NzA3NTkwNjAwMDAzLDI0LjI3MzM5NzI0OTAwMDAzXSxbOTAuNTQ3MDIyNjE1MDAwMDYsMjQuMjczNjA2ODY0MDAwMDRdLFs5MC41NDY5Mzk3MTkwMDAwOCwyNC4yNzM4MDUyOTYwMDAwM10sWzkwLjU0Njg3MzY4ODAwMDA2LDI0LjI3MzkxNjE3MzAwMDAzXSxbOTAuNTQ2ODQ2MTY5MDAwMDUsMjQuMjczOTYwODY3MDAwMDNdLFs5MC41NDY3MjA1ODYwMDAwNSwyNC4yNzQxMTMxNjUwMDAwN10sWzkwLjU0NjcwMjgxOTAwMDA3LDI0LjI3NDEzNDExNTAwMDA0XSxbOTAuNTQ2NTc5NTM2MDAwMDgsMjQuMjc0MjQ4NTg0MDAwMDhdLFs5MC41NDYyNzE0NzYwMDAwNywyNC4yNzQ0OTc1MDAwMDAwNV0sWzkwLjU0NTEyODEyODAwMDA0LDI0LjI3NTQwMTk1NzAwMDA0XSxbOTAuNTQ0ODU4NjMwMDAwMDgsMjQuMjc1NTk3NjczMDAwMDVdLFs5MC41NDQ3NDkzNTYwMDAwNywyNC4yNzU2NzY1MjcwMDAwM10sWzkwLjUzNDgyMDgxNzAwMDA4LDI0LjI4MjExNTg2NzAwMDA3XSxbOTAuNTM0NTQxMzU3MDAwMDgsMjQuMjgyMjkyNDA3MDAwMDZdLFs5MC41MzM2Njg3NTUwMDAwNiwyNC4yODI3MzkxNTgwMDAwM10sWzkwLjUzMTA2MDY0NDAwMDA0LDI0LjI4MzkwMjY2NTAwMDAzXSxbOTAuNTMwNDY5NzEyMDAwMDcsMjQuMjg0MTE1MjgyMDAwMDddLFs5MC41Mjk3ODg5OTQwMDAwNiwyNC4yODQzNTgxMjcwMDAwOF0sWzkwLjUyOTcwNTM1ODAwMDA2LDI0LjI4NDM4NjY0MzAwMDA2XSxbOTAuNTI5MjU4MjI0MDAwMDUsMjQuMjg0NTI1OTM1MDAwMDNdLFs5MC41Mjg3Mjk3NTIwMDAwNiwyNC4yODQ2NTM2NTQwMDAwN10sWzkwLjUyNzY5OTcwMjAwMDA2LDI0LjI4NDg2MTU3ODAwMDA2XSxbOTAuNTI1ODY5NDQ2MDAwMDYsMjQuMjg1MTYzMTQ4MDAwMDRdLFs5MC41MjM5OTgyOTkwMDAwOCwyNC4yOTMyMDk1NzgwMDAwN10sWzkwLjUyNTk3MTQ4NjAwMDA2LDI0LjI5NTU4MDkzNjAwMDA4XSxbOTAuNTI2NDY0MTAxMDAwMDQsMjQuMjk2MzA0MDI3MDAwMDhdLFs5MC41MjcwNjcxMDkwMDAwOSwyNC4yOTcyMTEzMjIwMDAwN10sWzkwLjUyNzE3MDAyMDAwMDA5LDI0LjI5NzM3NDEwMTAwMDA2XSxbOTAuNTI5MzUzMzY1MDAwMDgsMjQuMzAxMzgwNTU4MDAwMDZdLFs5MC41Mjk0Nzg1NDkwMDAwMywyNC4zMDE3MTQyOTYwMDAwNl0sWzkwLjUyOTUwMDk5MzAwMDA2LDI0LjMwMTc3OTY5OTAwMDA2XSxbOTAuNTI5NTI0OTYxMDAwMDUsMjQuMzAxOTE1MDkyMDAwMDZdLFs5MC41Mjk1MzMyNzQwMDAwNywyNC4zMDIxMzc0NjkwMDAwNl0sWzkwLjUyOTUyNzc3ODAwMDA0LDI0LjMwMjQ0NTY5NzAwMDA1XSxbOTAuNTI5NTE4ODg4MDAwMDQsMjQuMzAyNTI5ODM2MDAwMDhdLFs5MC41Mjk0NzkxNzMwMDAwOCwyNC4zMDI3NTUyMDQwMDAwNV0sWzkwLjUyOTQ2NTkxMzAwMDA4LDI0LjMwMjgyNTI0NDAwMDA4XSxbOTAuNTI5MjQyOTA0MDAwMDYsMjQuMzAzMTExMDg3MDAwMDVdLFs5MC41MjkyMTc3NzAwMDAwNiwyNC4zMDMxMzk5NjQwMDAwMl0sWzkwLjUyOTAxMDg0NTAwMDA3LDI0LjMwMzI5NDc4ODAwMDA3XSxbOTAuNTEzNzM1Mzc5MDAwMDgsMjQuMzExMTIyNDMyMDAwMDVdLFs5MC41MTMyOTkzOTMwMDAwNywyNC4zMTEzMDM5NzcwMDAwMl0sWzkwLjUxMTk4MDA2NjAwMDA0LDI0LjMxMTc4MjAzNDAwMDAzXSxbOTAuNTExNjc3MjYwMDAwMDYsMjQuMzExODQ0NTgzMDAwMDRdLFs5MC40OTc3NTc1NjAwMDAwOCwyNC4zMTQzNTY1MTcwMDAwOF0sWzkwLjQ5NDgxODE5MDAwMDA1LDI0LjMxNDM3OTY3MjAwMDAzXSxbOTAuNDkzODM4ODAzMDAwMDcsMjQuMzEzOTA4MTI2MDAwMDZdLFs5MC40OTMxMDc0ODUwMDAwNSwyNC4zMTM3MTAxMTIwMDAwMl0sWzkwLjQ5MjI5ODAxNTAwMDA3LDI0LjMxMzUzMDk3NDAwMDA2XSxbOTAuNDkyMjQ5MzIyMDAwMDgsMjQuMzEzNTIzMjI5MDAwMDVdLFs5MC40OTIxODY0NjgwMDAwNiwyNC4zMTM1MTY2NTgwMDAwM10sWzkwLjQ5MTk0NzQ0MTAwMDA0LDI0LjMxMzUwOTUzMTAwMDAyXSxbOTAuNDkxNzQwNDU5MDAwMDgsMjQuMzEzNTA1Njg2MDAwMDRdLFs5MC40OTE1NzkwNjEwMDAwNCwyNC4zMTM1MDI4MjAwMDAwNV0sWzkwLjQ5MTQ2OTQxMDAwMDA0LDI0LjMxMzUwMDkxNzAwMDA2XSxbOTAuNDkxMjkzMjI5MDAwMDYsMjQuMzEzNDk4MTAwMDAwMDZdLFs5MC40ODk4NzE3NDgwMDAwNCwyNC4zMTM1NDg0MTYwMDAwNl0sWzkwLjQ4OTgyODYzNjAwMDA4LDI0LjMxMzU1MDI1MDAwMDA1XSxbOTAuNDg5NTIwNzE5MDAwMDQsMjQuMzEzNTY4NzQxMDAwMDRdLFs5MC40ODkxNjY2NDAwMDAwNiwyNC4zMTM1OTY5NzgwMDAwOF0sWzkwLjQ4OTAyMzgwNjAwMDAzLDI0LjMxMzYxNjA2NTAwMDA4XSxbOTAuNDg4NjAxMTM0MDAwMDgsMjQuMzEzNzQ3ODIyMDAwMDRdLFs5MC40ODgxNDM1MTQwMDAwNiwyNC4zMTM5MjIwMjcwMDAwNV0sWzkwLjQ4NzU5OTI1NTAwMDA4LDI0LjMxNDE1Mjk1NzAwMDAzXSxbOTAuNDg3NTIxODU1MDAwMDcsMjQuMzE0MjA5MDkwMDAwMDhdLFs5MC40Nzg3MzY5MDkwMDAwOCwyNC4zMjA5ODE1MTgwMDAwNV0sWzkwLjQ2MTQxNDkxOTAwMDA1LDI0LjMzNTM2Njg5MjAwMDAyXSxbOTAuNDYwODc0MDg2MDAwMDUsMjQuMzM2MjQyOTIzMDAwMDRdLFs5MC40NjA4MzY2NzUwMDAwNSwyNC4zMzYyODk4ODkwMDAwNl0sWzkwLjQ2MDYwMDQ1OTAwMDAzLDI0LjMzNjU2MDQyOTAwMDAzXSxbOTAuNDYwMzkxNzc5MDAwMDgsMjQuMzM2Nzc5NTE4MDAwMDddLFs5MC40NjAyMTMxMjAwMDAwNSwyNC4zMzY5NTIyMzAwMDAwN10sWzkwLjQ1ODk3NDU1NDAwMDA2LDI0LjMzODA4Nzc3NDAwMDAzXSxbOTAuNDU4NTU4MTIxMDAwMDcsMjQuMzM4NDQzNTMxMDAwMDVdLFs5MC40NTgxNDQ2NzIwMDAwNiwyNC4zMzg3NzMzMTAwMDAwOF0sWzkwLjQ1Nzk1OTY5MDAwMDA1LDI0LjMzODkwMjU3MjAwMDA1XSxbOTAuNDU3NDg4NzM0MDAwMDQsMjQuMzM5MTc0OTQ0MDAwMDRdLFs5MC40NTY0NzAwNDkwMDAwNywyNC4zMzk2MTY2MTcwMDAwNV0sWzkwLjQ1NTkwMzI1NTAwMDA3LDI0LjMzOTc5NTAwNjAwMDAzXSxbOTAuNDU1NzQyMDE1MDAwMDYsMjQuMzM5ODQ1MTY1MDAwMDRdLFs5MC40NTU1NjUzMzUwMDAwNywyNC4zMzk4ODUyMTAwMDAwM10sWzkwLjQ0MzAzOTkyNjAwMDA0LDI0LjM0MTEzODIwMzAwMDA3XSxbOTAuNDQyODcxNzA5MDAwMDMsMjQuMzQxMTMzMDQ5MDAwMDZdLFs5MC40NDI0NTU2NTAwMDAwNiwyNC4zNDEwODA2MzcwMDAwNl0sWzkwLjQ0MjA4OTQ1MDAwMDA4LDI0LjM0MTAxNTA5NDAwMDA2XSxbOTAuNDQxNTMyMDQzMDAwMDUsMjQuMzQwODg3NDUxMDAwMDddLFs5MC40NDEyNzczNjkwMDAwMywyNC4zNDA4MjM4NDEwMDAwM10sWzkwLjQ0MTAzOTIzMTAwMDA1LDI0LjM0MDczMTk1NzAwMDA2XSxbOTAuNDQwNTQ4MDY3MDAwMDcsMjQuMzQwNTE4MzE1MDAwMDVdLFs5MC40MzczNTkxMjMwMDAwOCwyNC4zMzg5MTY0OTcwMDAwN10sWzkwLjQzNzEyMjEwNjAwMDA2LDI0LjMzODc5MDE2OTAwMDA1XSxbOTAuNDM2NjA3OTUyMDAwMDMsMjQuMzM4NTE1NjE1MDAwMDZdLFs5MC40MzYxODYyMTEwMDAwNiwyNC4zMzgyNDAyMzAwMDAwNV0sWzkwLjQzNjA1NTkxNTAwMDA1LDI0LjMzODE1MzEwOTAwMDA3XSxbOTAuNDI4MzAyOTYwMDAwMDUsMjQuMzMwNDY4MjQ1MDAwMDhdLFs5MC40MjY4NDQ0MzYwMDAwNywyNC4zMjU5NjM3ODgwMDAwMl0sWzkwLjQyNjI1ODMzNDAwMDA3LDI0LjMxODg4OTAxMDAwMDA4XSxbOTAuNDI2MjYxNjgyMDAwMDcsMjQuMzE4NjAxMTExMDAwMDhdLFs5MC40MjYyNjg1MjkwMDAwOCwyNC4zMTgyNTMzNjcwMDAwN10sWzkwLjQyNjMxODUwMDAwMDA0LDI0LjMxODA5MTc4MjAwMDA3XSxbOTAuNDI2NTc2MDc3MDAwMDUsMjQuMzE3NTY1NTIxMDAwMDZdLFs5MC40Mjc3MTMzMDUwMDAwNSwyNC4zMTMwMDEyNTEwMDAwNl0sWzkwLjQyODE2Mjk4MTAwMDA3LDI0LjMxMTE2OTkxMDAwMDA1XSxbOTAuNDI4MTc5MzE5MDAwMDQsMjQuMzExMDgyOTM0MDAwMDddLFs5MC40MjgxOTU5MjkwMDAwOCwyNC4zMTA3MDk3NjAwMDAwN10sWzkwLjQyODE3MjAyMjAwMDA3LDI0LjMxMDM3NzM0MzAwMDAzXSxbOTAuNDI4MTE2NjA2MDAwMDYsMjQuMzEwMTk5Njg1MDAwMDRdLFs5MC40MjU3ODk5MzUwMDAwNywyNC4zMDU3MTk2NjQwMDAwNF0sWzkwLjQyNTcwMjE3ODAwMDA1LDI0LjMwNTYzMTg0ODAwMDA4XSxbOTAuNDI1NjAwOTI3MDAwMDYsMjQuMzA1NTYxMDA4MDAwMDRdLFs5MC40MjU0MjYzNDYwMDAwNSwyNC4zMDU0ODAyMTAwMDAwNF0sWzkwLjQyNDYwNTYyNjAwMDA3LDI0LjMwNTIwOTg1NzAwMDAyXSxbOTAuNDI0NTI1NTUxMDAwMDQsMjQuMzA1MjA4Mzg4MDAwMDRdLFs5MC40MjQzMjY1ODkwMDAwMywyNC4zMDUyMDQ5OTIwMDAwM10sWzkwLjQyMzYwMTMxNTAwMDA0LDI0LjMwNTI5NjIwNzAwMDAzXSxbOTAuNDIzNTc0ODQwMDAwMDcsMjQuMzA1Mjk5NjY4MDAwMDNdLFs5MC40MjMwMjU2NzMwMDAwNCwyNC4zMDUzNzU3MTIwMDAwNl0sWzkwLjQyMjg1ODMwNTAwMDAzLDI0LjMwNTQyNjQxNTAwMDA2XSxbOTAuNDIyNzkyNTM4MDAwMDcsMjQuMzA1NDY4MzcxMDAwMDddLFs5MC40MjI2NzQ2MDIwMDAwOSwyNC4zMDU1NjYzNTYwMDAwNF0sWzkwLjQyMjU5MTI3NTAwMDA2LDI0LjMwNTY5OTI0MzAwMDA1XSxbOTAuNDIyNTUwNDUzMDAwMDQsMjQuMzA1ODM0MjcwMDAwMDVdLFs5MC40MjIyNjY4NDQwMDAwMywyNC4zMDcwNTM3OTIwMDAwM10sWzkwLjQyMjI1NzgyNzAwMDA3LDI0LjMwNzMwNzI3MzAwMDA1XSxbOTAuNDIyMjU2NzExMDAwMDUsMjQuMzA3MzQxNzEwMDAwMDZdLFs5MC40MjA3MDI5MjUwMDAwNiwyNC4zMDc2MDczODEwMDAwM10sWzkwLjQxODAxMDYwMDAwMDA2LDI0LjMwNTU0MDg3ODAwMDA0XSxbOTAuNDE3NjY5MTEzMDAwMDQsMjQuMzA1Mjc0ODEzMDAwMDRdLFs5MC40MTc0NjQwMzYwMDAwNywyNC4zMDUwOTY0MzQwMDAwNl0sWzkwLjQxNzI5NzI0MTAwMDA5LDI0LjMwNDk0NjE3MzAwMDA4XSxbOTAuNDE3MDM1MjM0MDAwMDgsMjQuMzA0Njg2NjY0MDAwMDNdLFs5MC40MDkzNTg5OTgwMDAwNywyNC4yOTY2ODgzODgwMDAwNl0sWzkwLjQwOTI2NTA1MjAwMDA4LDI0LjI5NjU4NTkwNDAwMDA0XSxbOTAuNDA5MjI4NTc5MDAwMDYsMjQuMjk2NTQzNjY3MDAwMDRdLFs5MC40MDg3NDkxNTAwMDAwNiwyNC4yOTU2OTM3MDQwMDAwM10sWzkwLjQwODY4NTM0NDAwMDA1LDI0LjI5NTU3ODE1NTAwMDA0XSxbOTAuNDA4NjM2MTM4MDAwMDgsMjQuMjk1NDA2NjgxMDAwMDNdLFs5MC40MDg1OTkzMzAwMDAwNywyNC4yOTUyNTk0NDkwMDAwN10sWzkwLjQwODYwMjE0ODAwMDA2LDI0LjI5NDk4NTY2NDAwMDAyXSxbOTAuNDA4NjQ4NzA0MDAwMDksMjQuMjk0NzE0NTgyMDAwMDRdLFs5MC40MDg2ODAwNzUwMDAwNiwyNC4yOTQzMTc2NjAwMDAwNV0sWzkwLjQwODY4MTIwMTAwMDA0LDI0LjI5NDI4NDM1MjAwMDAzXSxbOTAuNDA4Njk2MTI3MDAwMDQsMjQuMjkzNzUyNTYyMDAwMDddLFs5MC40MDg3MDE1NjUwMDAwNiwyNC4yOTM1MjczMTYwMDAwNV0sWzkwLjQwODY2NjcyNTAwMDA1LDI0LjI5MzIyNTQwNTAwMDA0XSxbOTAuNDA4NjQwOTk4MDAwMDcsMjQuMjkzMDc3MDE1MDAwMDVdLFs5MC40MDg2MTk2NjkwMDAwNywyNC4yOTI5NTU3MDUwMDAwNV0sWzkwLjQwODUxODYxNDAwMDA2LDI0LjI5MjU1NTE4NzAwMDA2XSxbOTAuNDA4MjgzMzI0MDAwMDgsMjQuMjkxNzc3Mzg3MDAwMDJdLFs5MC40MDgxNjk0ODUwMDAwMywyNC4yOTE0MjI2MjgwMDAwOF0sWzkwLjQwNzg1OTM3MzAwMDA2LDI0LjI5MDc0MjExODAwMDAzXSxbOTAuNDA3NTEzNDY3MDAwMDYsMjQuMjkwMDM3NDMyMDAwMDhdLFs5MC40MDM4OTQ4ODcwMDAwNCwyNC4yODQyODAyNDIwMDAwMl0sWzkwLjQwMzg2MzMzNzAwMDA4LDI0LjI4NDIzNTE2NTAwMDA0XSxbOTAuNDAzNjc3NzU1MDAwMDUsMjQuMjgzOTcyNjA2MDAwMDhdLFs5MC40MDMyNzA4MTcwMDAwOCwyNC4yODM0Mjg5NTIwMDAwN10sWzkwLjQwMzE0NDY2NTAwMDA3LDI0LjI4MzI2Mzg4OTAwMDA3XSxbOTAuNDAzMDgxMDI1MDAwMDYsMjQuMjgzMTk4MDEzMDAwMDZdLFs5MC40MDI5NDUxMjEwMDAwNywyNC4yODMwNjQ1ODkwMDAwNV0sWzkwLjQwMjkyNTk4MjAwMDA2LDI0LjI4MzA0OTM5NzAwMDA3XSxbOTAuNDAyNjk0NDc0MDAwMDQsMjQuMjgyODY4ODEwMDAwMDJdLFs5MC40MDI0MjQ3ODYwMDAwNCwyNC4yODI2ODgzMjEwMDAwMl0sWzkwLjQwMjE3NTg2MzAwMDA4LDI0LjI4MjY0ODMzNzAwMDA3XSxbOTAuMzkyMDM2OTU0MDAwMDUsMjQuMjgzMTA0OTY5MDAwMDhdLFs5MC4zOTE4NzM5MDUwMDAwNywyNC4yODMzNTQzMzIwMDAwNF0sWzkwLjM5MTczNzc0NjAwMDA1LDI0LjI4MzUzNTg4NTAwMDA1XSxbOTAuMzkxNTcwODk1MDAwMDksMjQuMjgzNzQ5MTI4MDAwMDddLFs5MC4zODgxMjE4NjkwMDAwMywyNC4yODcyODk0NDIwMDAwM10sWzkwLjM4Nzg0MTIyOTAwMDA2LDI0LjI4NzU1NDM0MTAwMDAzXSxbOTAuMzg3Nzg1OTMzMDAwMDMsMjQuMjg3NTk3OTQ4MDAwMDRdLFs5MC4zODc2NzU5NTgwMDAwNSwyNC4yODc2ODQ1OTYwMDAwOF0sWzkwLjM4NzU2NTM2NzAwMDA0LDI0LjI4Nzc3MTI0NjAwMDAzXSxbOTAuMzg3MjEzMTc0MDAwMDcsMjQuMjg4MDAwMTk4MDAwMDhdLFs5MC4zODcwMzM2NzkwMDAwNywyNC4yODgxMTA3MzIwMDAwNl0sWzkwLjM4Njg4NTUyNDAwMDA0LDI0LjI4ODE5OTE2OTAwMDA1XSxbOTAuMzg2NjkxMTgwMDAwMDcsMjQuMjg4Mjg3NzI1MDAwMDNdLFs5MC4zODY2NTI0MzQwMDAwNCwyNC4yODgzMDUzMjQwMDAwOF0sWzkwLjM4NjE3MjAzMzAwMDA0LDI0LjI4ODQ5OTAzNjAwMDA4XSxbOTAuMzg1ODkyNzAwMDAwMDYsMjQuMjg4NTg3ODA2MDAwMDddLFs5MC4zODU2NTY5NjAwMDAwNiwyNC4yODg2MzI0MzYwMDAwNl0sWzkwLjM4MDk0OTEzMTAwMDA4LDI0LjI4OTE5NDEyNjAwMDA0XSxbOTAuMzc4NjU1MjY5MDAwMDMsMjQuMjg3NDA1MzM1MDAwMDddLFs5MC4zNzg2MDM0NDgwMDAwNCwyNC4yODcxNjcyNDgwMDAwNl0sWzkwLjM3ODUwOTk4MDAwMDA1LDI0LjI4Njc5OTk5NjAwMDA3XSxbOTAuMzc4NDI4NjEyMDAwMDUsMjQuMjg2NTY2NDk5MDAwMDZdLFs5MC4zNzgyMzQzOTIwMDAwOCwyNC4yODYyODI0NzcwMDAwNF0sWzkwLjM3ODA1NDQ3ODAwMDA4LDI0LjI4NjA0NTI3MzAwMDA3XSxbOTAuMzc3ODIxNjMyMDAwMDYsMjQuMjg1ODE4OTI3MDAwMDRdLFs5MC4zNzc3MjA5NTkwMDAwNCwyNC4yODU3MjE1MjAwMDAwNF0sWzkwLjM3NzQ5MTM0OTAwMDA4LDI0LjI4NTU0NzA5NzAwMDA2XSxbOTAuMzc3MTYxODU4MDAwMDgsMjQuMjg1MzM0NTM2MDAwMDVdLFs5MC4zNzYzOTI2MTIwMDAwNywyNC4yODQ4OTg5NjEwMDAwN10sWzkwLjM3NTM1ODg3ODAwMDA0LDI0LjI4NDM2MTg2MjAwMDAzXSxbOTAuMzc0ODkzODI0MDAwMDgsMjQuMjg0MTIwODQyMDAwMDVdLFs5MC4zNzQ4MTczNDgwMDAwOCwyNC4yODQwODI2NDUwMDAwN10sWzkwLjM3NDMyMzk2ODAwMDA2LDI0LjI4Mzg0MTY5MzAwMDA2XSxbOTAuMzc0MTIyOTE5MDAwMDYsMjQuMjgzNzQzOTY2MDAwMDNdLFs5MC4zNzM2Nzk1MDIwMDAwNywyNC4yODM1Mjk0MjAwMDAwNF0sWzkwLjM3MzI4NDk2NDAwMDA1LDI0LjI4MzM5MjA4OTAwMDA3XSxbOTAuMzczMTQzODA2MDAwMDMsMjQuMjgzMzQ3Mjc0MDAwMDVdLFs5MC4zNzI1NjMxNDkwMDAwOSwyNC4yODMxNjI5ODEwMDAwM10sWzkwLjM2ODYwNzY2NDAwMDA4LDI0LjI4MjEwOTExOTAwMDA0XSxbOTAuMzY0NTczMDE1MDAwMDgsMjQuMjgxMTI5ODU2MDAwMDZdLFs5MC4zNjM5NjQ4ODMwMDAwNSwyNC4yODEwMjEyMzcwMDAwNl0sWzkwLjM2MzM1NTA3NjAwMDA2LDI0LjI4MDk3MjQ1NzAwMDA4XSxbOTAuMzYyODQwODUxMDAwMDQsMjQuMjgwOTY5MTY4MDAwMDddLFs5MC4zNjI0OTg1NTQwMDAwNywyNC4yODEwMDQ5ODMwMDAwNl0sWzkwLjM2MjQxMzcxNDAwMDA3LDI0LjI4MTA1NTQyNjAwMDAyXSxbOTAuMzYyMjEyMDYzMDAwMDcsMjQuMjgxMTc1NTc5MDAwMDNdLFs5MC4zNjIxOTY3MTMwMDAwNiwyNC4yODExOTE5ODYwMDAwN10sWzkwLjM2MTk4MDgzMzAwMDA4LDI0LjI4MTUwNjM1OTAwMDA1XSxbOTAuMzYxOTY3OTY0MDAwMDksMjQuMjgxNTI4OTcxMDAwMDZdLFs5MC4zNjE4NTUzNTEwMDAwMywyNC4yODE3NzUzNTcwMDAwN10sWzkwLjM2MTc0MTU4MzAwMDA4LDI0LjI4MjA0OTk3MzAwMDAzXSxbOTAuMzU4ODAyMjE4MDAwMDUsMjQuMjkxMDM2MzQ2MDAwMDZdLFs5MC4zNTgyNjM0OTMwMDAwNCwyNC4yOTQ2MDY5MTEwMDAwN10sWzkwLjM1ODI0NTU4MzAwMDA0LDI0LjI5NTI0NzY1MzAwMDA1XSxbOTAuMzU4Mjk3ODY0MDAwMDYsMjQuMjk1ODgwODkxMDAwMDJdLFs5MC4zNTgzNDAxMTIwMDAwNiwyNC4yOTYyMzAyMTIwMDAwN10sWzkwLjM1ODM4NzMyMzAwMDA0LDI0LjI5NjU5MzYzNDAwMDAzXSxbOTAuMzU4NDQ4NTQxMDAwMDksMjQuMjk2ODk5NDQ2MDAwMDVdLFs5MC4zNTg1NDU1MTUwMDAwNiwyNC4yOTcyMTc1OTEwMDAwNV0sWzkwLjM1ODU3MzQ4NzAwMDA2LDI0LjI5NzMwODQwOTAwMDA0XSxbOTAuMzU4NzMwMjU3MDAwMDUsMjQuMjk3NjQ1MDQxMDAwMDddLFs5MC4zNTg5NDk1NjIwMDAwOCwyNC4yOTgwOTc4MTEwMDAwNV0sWzkwLjM1OTIzMzA1MjAwMDA0LDI0LjI5ODU5NjE1NDAwMDA1XSxbOTAuMzU5NDIxNDAwMDAwMDMsMjQuMjk4OTkwODUyMDAwMDNdLFs5MC4zNTk1OTU2MzAwMDAwNiwyNC4yOTk0MDEzOTIwMDAwNV0sWzkwLjM1OTYxNjQ0NDAwMDA0LDI0LjI5OTU3NTIwNjAwMDA0XSxbOTAuMzU5NjIwOTAyMDAwMDcsMjQuMjk5NjI3MTI5MDAwMDRdLFs5MC4zNTk2MTE2MDUwMDAwNSwyNC4yOTk4MjQ3MjQwMDAwOF0sWzkwLjM1OTU0MTc1MjAwMDA0LDI0LjI5OTk1MzU5MzAwMDA1XSxbOTAuMzU5NDU0NTUzMDAwMDMsMjQuMzAwMDQ2Mzc3MDAwMDZdLFs5MC4zNTkzMjQ3ODkwMDAwOCwyNC4zMDAxMTU1NTEwMDAwM10sWzkwLjM1OTI4NDE5ODAwMDA3LDI0LjMwMDEzNzA5ODAwMDA1XSxbOTAuMzU4ODg4OTUxMDAwMDQsMjQuMzAwMTk4NDMyMDAwMDZdLFs5MC4zNTg2NDEzMjEwMDAwNSwyNC4zMDAxODc3MjkwMDAwN10sWzkwLjM1ODYwNzQ0MTAwMDA2LDI0LjMwMDE4NjExNjAwMDA4XSxbOTAuMzU0MzA2MDQzMDAwMDcsMjQuMjk5ODEwMDk0MDAwMDddLFs5MC4zNTM4NDA4NjIwMDAwOCwyNC4yOTk3NTAyMTIwMDAwNV0sWzkwLjM1MzQ0MzQzMDAwMDA4LDI0LjI5OTY5MTMwMjAwMDA0XSxbOTAuMzUzMzQ2MDY5MDAwMDUsMjQuMjk5Njc0NTk0MDAwMDddLFs5MC4zNTMwNjA3NjMwMDAwMywyNC4yOTk2MjU1ODEwMDAwNF0sWzkwLjM1Mjc4OTAwNzAwMDA3LDI0LjI5OTU3NjUzNzAwMDA2XSxbOTAuMzUyNDg4ODgyMDAwMDUsMjQuMjk5NTEzNDQ2MDAwMDVdLFs5MC4zNTIxNTU0MDQwMDAwOSwyNC4yOTk0MTU5OTcwMDAwNF0sWzkwLjM1MTYxMTcxNTAwMDA1LDI0LjI5OTI1Mjk5MDAwMDA3XSxbOTAuMzUxMzg5Njk5MDAwMDQsMjQuMjk5MTQ4NTA3MDAwMDRdLFs5MC4zNTEyODg1NTgwMDAwOCwyNC4yOTkxMDA3NTkwMDAwNV0sWzkwLjM1MDk2OTY3NzAwMDA4LDI0LjI5ODkzNjY2MzAwMDA2XSxbOTAuMzUwNjgxNTk3MDAwMDYsMjQuMjk4NzczNjI2MDAwMDddLFs5MC4zNTAwMzQ0MjQwMDAwNiwyNC4yOTgzNzk5NzQwMDAwNl0sWzkwLjM0OTk4MjU5NzAwMDA2LDI0LjI5ODM0NzM1MzAwMDA1XSxbOTAuMzQ5ODM0NDc1MDAwMDgsMjQuMjk4MjM2NDg4MDAwMDRdLFs5MC4zNDk2NjA4OTMwMDAwOCwyNC4yOTgwNTAwNDAwMDAwOF0sWzkwLjM0OTU1NDk2NDAwMDA1LDI0LjI5NzgyNzMxMDAwMDA2XSxbOTAuMzQ5NDEyMjY5MDAwMDgsMjQuMjk3NDQ5NDI2MDAwMDddLFs5MC4zNDkwMzk5NTUwMDAwOCwyNC4yOTYyMTEyMTkwMDAwNF0sWzkwLjM0ODkyMDQwNzAwMDA0LDI0LjI5NTczNzMxODAwMDA4XSxbOTAuMzQ4ODMzNzk1MDAwMDgsMjQuMjk1MzcxMTYxMDAwMDVdLFs5MC4zNDg4MzAwNDEwMDAwNCwyNC4yOTUzNDk3MTkwMDAwNl0sWzkwLjM0NjkwNzEyOTAwMDA0LDI0LjI5NDE4NjE4NDAwMDA3XSxbOTAuMzM4MjI4NTAyMDAwMDUsMjQuMjk0MTQ4NzM2MDAwMDddLFs5MC4zMzgxMjg3NDAwMDAwNiwyNC4yOTQxNTI5MTAwMDAwNF0sWzkwLjMzNzg5OTY1NDAwMDA3LDI0LjI5NDE2MzAxNTAwMDA0XSxbOTAuMzM3ODQ2MDc4MDAwMDQsMjQuMjk0MTY1MzkzMDAwMDddLFs5MC4zMzc1MDk5ODAwMDAwNSwyNC4yOTQyMzI3NTAwMDAwNV0sWzkwLjMzNzM0ODc1MjAwMDA4LDI0LjI5NDI4NDQ3NzAwMDA4XSxbOTAuMzM3MjIxMzcxMDAwMDYsMjQuMjk0MzI1NDAzMDAwMDddLFs5MC4zMzY5MDUxNzcwMDAwNiwyNC4yOTQ0Njc3OTIwMDAwM10sWzkwLjMzNjU0NTk0MjAwMDA0LDI0LjI5NDYzNjgwODAwMDA2XSxbOTAuMzM2MTQ2MTIxMDAwMDcsMjQuMjk0ODMwNzUxMDAwMDZdLFs5MC4zMzU5NjIyNTMwMDAwNSwyNC4yOTQ5Mzg5NzcwMDAwN10sWzkwLjMzNTU5ODM1NTAwMDA2LDI0LjI5NTIwOTYwODAwMDA1XSxbOTAuMzM1MTc3NDM5MDAwMDYsMjQuMjk1NTgwMjgxMDAwMDddLFs5MC4zMzUwNjE5MzEwMDAwNCwyNC4yOTU2ODcyMjUwMDAwNV0sWzkwLjMzNDkwNjQ4OTAwMDA1LDI0LjI5NTgzMjA3OTAwMDA0XSxbOTAuMzM0NzIxNDk2MDAwMDQsMjQuMjk1OTgyMDc2MDAwMDNdLFs5MC4zMzQzMzc5MDYwMDAwMywyNC4yOTYyNjEyMTcwMDAwNV0sWzkwLjMzMjQ4MzExNDAwMDA3LDI0LjI5NzU2MDIzNzAwMDAzXSxbOTAuMzMyMzcxODEzMDAwMDcsMjQuMjk3NjI4Nzg1MDAwMDNdLFs5MC4zMzIyNDAyMjAwMDAwNywyNC4yOTc3MDk3OTUwMDAwNl0sWzkwLjMzMjExNDEzNDAwMDA1LDI0LjI5Nzc3NzI0NjAwMDA3XSxbOTAuMzMxOTQzNzU1MDAwMDUsMjQuMjk3ODY1MTE2MDAwMDNdLFs5MC4zMzE2MzA1OTkwMDAwNSwyNC4yOTc5OTY3NjEwMDAwNF0sWzkwLjMyOTkzMTQ0NjAwMDA1LDI0LjI5ODUyODgyNzAwMDA0XSxbOTAuMzI5MzIyNzkwMDAwMDUsMjQuMjk4NzE1MzAyMDAwMDZdLFs5MC4zMjg3OTQ2NjIwMDAwNiwyNC4yOTg4NDIzMjgwMDAwM10sWzkwLjMyODM3NTQ2NTAwMDA4LDI0LjI5ODkzNTgxMTAwMDA0XSxbOTAuMzI4MjQ0OTYyMDAwMDQsMjQuMjk4OTYzMTg5MDAwMDZdLFs5MC4zMjc4MDA0NjYwMDAwNCwyNC4yOTkwMzkyMjYwMDAwNV0sWzkwLjMyNjUyNzY3NTAwMDA4LDI0LjI5OTE1ODgxOTAwMDA3XSxbOTAuMzI2MjAyNTI3MDAwMDgsMjQuMjk5MTgwOTY3MDAwMDRdLFs5MC4zMjU4NTU3OTkwMDAwNywyNC4yOTkxOTM1NjYwMDAwNF0sWzkwLjMyNTgyMDA3OTAwMDA0LDI0LjI5OTE5NDc3MjAwMDA4XSxbOTAuMzI1NzM4NzgyMDAwMDMsMjQuMjk5MTk2NjM5MDAwMDZdLFs5MC4zMjUzNTc1MTMwMDAwOSwyNC4yOTkxODk1NTQwMDAwN10sWzkwLjMyNTA2MzAxODAwMDA0LDI0LjI5OTE1NTc1MDAwMDA3XSxbOTAuMzI0ODE1MjkxMDAwMDUsMjQuMjk5MTA0OTExMDAwMDNdLFs5MC4zMjQ0Njg5MzUwMDAwOCwyNC4yOTkwMjIxMDUwMDAwNl0sWzkwLjMyNDQxNTMxNzAwMDA1LDI0LjI5OTAwOTIzNzAwMDA2XSxbOTAuMzI0Mjc1OTgxMDAwMDgsMjQuMjk4OTU0MjEzMDAwMDZdLFs5MC4zMjQxNTMyNjgwMDAwMywyNC4yOTg4OTc0NjIwMDAwN10sWzkwLjMyMTczMjIyMjAwMDA0LDI0LjI5NzcyMTY4NjAwMDA1XSxbOTAuMzIxMjM5NTA3MDAwMDksMjQuMjk3NDgxNjg5MDAwMDVdLFs5MC4zMTEyNTQ0NTgwMDAwNiwyNC4yOTE5NDk1MzMwMDAwNF0sWzkwLjMxMDc4NzM4MTAwMDA3LDI0LjI5MTU5ODgxMDAwMDA0XSxbOTAuMzEwNjgwNTg3MDAwMDQsMjQuMjkxNDk3NDE4MDAwMDZdLFs5MC4zMTA1NTY0NzQwMDAwNywyNC4yOTEzNjU1ODAwMDAwNV0sWzkwLjMxMDQxNTA3MjAwMDA3LDI0LjI5MTIxNTE0ODAwMDA1XSxbOTAuMzEwMTAyNjA5MDAwMDcsMjQuMjkwODczNzAyMDAwMDZdLFs5MC4zMDk4MzcwNTkwMDAwNywyNC4yOTA1NzYxODkwMDAwM10sWzkwLjMwNDM3NTE5NDAwMDA0LDI0LjI4NjMyNDcxOTAwMDA1XSxbOTAuMjk3MTEwMTAwMDAwMDUsMjQuMjgwODMwNzM4MDAwMDhdLFs5MC4yOTYwNzA3MzMwMDAwOCwyNC4yODAwOTk0ODQwMDAwNl0sWzkwLjI5NTY1MDgwOTAwMDA1LDI0LjI3OTg2MzIxMzAwMDA2XSxbOTAuMjk1MTEzNzUxMDAwMDMsMjQuMjc5NTcxMjgyMDAwMDZdLFs5MC4yOTQyMzMzMzcwMDAwNCwyNC4yNzkxMjg3MzAwMDAwMl0sWzkwLjI5Mzk3Njg4MzAwMDA4LDI0LjI3OTAxMDExNzAwMDA0XSxbOTAuMjkzNzcyODMwMDAwMDgsMjQuMjc4OTE2MjQwMDAwMDZdLFs5MC4yOTM0NzU2OTUwMDAwNCwyNC4yNzg3ODEzMzUwMDAwOF0sWzkwLjI5MzM5MjQ3ODAwMDA0LDI0LjI3ODc0NjQ5NzAwMDA0XSxbOTAuMjkyOTgyNjE0MDAwMDQsMjQuMjc4NTk1NDM3MDAwMDRdLFs5MC4yOTI4NDQ1NTUwMDAwNCwyNC4yNzg1NDQ4OTkwMDAwNV0sWzkwLjI5MDQ4NTQ4ODAwMDA2LDI0LjI3Nzc5MDc0MTAwMDA1XSxbOTAuMjg5NjQ2MjM3MDAwMDYsMjQuMjc3ODM2OTM3MDAwMDddLFs5MC4yODk0OTcyNDIwMDAwNCwyNC4yNzc4NTEzMzMwMDAwNl0sWzkwLjI4OTE1NjkwMzAwMDA1LDI0LjI3Nzk0MTczNjAwMDA2XSxbOTAuMjg5MDYzMzgyMDAwMDUsMjQuMjc3OTc4NjA2MDAwMDNdLFs5MC4yODkwMDYxNjEwMDAwMywyNC4yNzgwMDEyOTUwMDAwMl0sWzkwLjI4ODU4NjU3MjAwMDA0LDI0LjI3ODE3NjUyMzAwMDA3XSxbOTAuMjg4NTIzODQ1MDAwMDQsMjQuMjc4MjE1MDI3MDAwMDRdLFs5MC4yODg0NTEzMDMwMDAwNCwyNC4yNzgyNjk5MjIwMDAwNV0sWzkwLjI4ODI0MjkwNzAwMDA0LDI0LjI3ODQzMTc2MTAwMDA0XSxbOTAuMjg3ODA5NzE0MDAwMDUsMjQuMjc4ODU3NjQ5MDAwMDNdLFs5MC4yODc3NzQ3MDgwMDAwOSwyNC4yNzg5MDAwNTMwMDAwM10sWzkwLjI4Nzc0ODMwMTAwMDA4LDI0LjI3ODkzMjI4MDAwMDA1XSxbOTAuMjg3NzMyOTU4MDAwMDUsMjQuMjc4OTU2MDE3MDAwMDRdLFs5MC4yODc2OTYxODUwMDAwNywyNC4yNzkwMzM5ODgwMDAwNF0sWzkwLjI4NzY3OTY0NTAwMDA4LDI0LjI3OTA3Mjk2OTAwMDAzXSxbOTAuMjg3MjY2NDcyMDAwMDYsMjQuMjgwNDYwNzIxMDAwMDVdLFs5MC4yODcwNDg0MTQwMDAwOCwyNC4yODE4MDYzMjkwMDAwNl0sWzkwLjI4MTczNjk3MzAwMDA4LDI0LjI4NjA1MTY4NzAwMDA1XSxbOTAuMjc4MDAwMDI1MDAwMDQsMjQuMjg3MjEwMTQyMDAwMDVdLFs5MC4yNzM0NjExNDcwMDAwMywyNC4yODY2NDE0NjEwMDAwNF0sWzkwLjI3MzMyODcxMzAwMDA3LDI0LjI4NjYyOTg0NTAwMDA1XSxbOTAuMjcyOTE1NjM1MDAwMDYsMjQuMjg2NzA1NjY2MDAwMDVdLFs5MC4yNzI2NDk3MzYwMDAwNiwyNC4yODY3NzYxNDEwMDAwOF0sWzkwLjI2NTkxOTcwNjAwMDAzLDI0LjI4ODU4NTk4OTAwMDA3XSxbOTAuMjY0Mzg5OTQ1MDAwMDYsMjQuMjg5MjA2MjE4MDAwMDZdLFs5MC4yNjIyODI4NTcwMDAwNiwyNC4yOTA2MTAzODcwMDAwN10sWzkwLjI2MjA0NTU0MjAwMDA3LDI0LjI5MDgxMjMyMjAwMDA4XSxbOTAuMjYxMTYyMjM4MDAwMDUsMjQuMjkxNjQ5Mjk5MDAwMDNdLFs5MC4yNTg1ODY5NTYwMDAwNCwyNC4yOTQ1NTIzOTUwMDAwNF0sWzkwLjI1ODQ4MjUwOTAwMDAzLDI0LjI5NDY3ODQ1NjAwMDA0XSxbOTAuMjU4Mzg5MTMwMDAwMDcsMjQuMjk0Nzk1NDY1MDAwMDVdLFs5MC4yNTgxNDUyNDUwMDAwNCwyNC4yOTUxMDU3ODgwMDAwNl0sWzkwLjI1Njk2MzI3ODAwMDA2LDI0LjI5NjkxMjQ4OTAwMDA4XSxbOTAuMjU2OTQ3NDUzMDAwMDcsMjQuMjk3MzEyMTc5MDAwMDddLFs5MC4yNTcwMzM1MDEwMDAwOCwyNC4yOTgxNDA3MTYwMDAwM10sWzkwLjI1NzU3MDczMzAwMDA4LDI0LjMwMjE4NDk4ODAwMDA4XSxbOTAuMjU3NTg0NDQ5MDAwMDMsMjQuMzAyMjY2MjUyMDAwMDRdLFs5MC4yNTc2Njk1MTYwMDAwOCwyNC4zMDI2MDUzNzAwMDAwNF0sWzkwLjI1NzczODg0NjAwMDA1LDI0LjMwMjc3NjI5NTAwMDA2XSxbOTAuMjU3OTUwODEwMDAwMDcsMjQuMzAzMTIxNDA4MDAwMDRdLFs5MC4yNTc5OTg5OTEwMDAwOCwyNC4zMDMxODk2MjkwMDAwM10sWzkwLjI1ODEzMTY3MTAwMDA2LDI0LjMwMzMxNTI4NzAwMDAzXSxbOTAuMjU4MjIzNTgzMDAwMDcsMjQuMzAzMzgyMzA2MDAwMDZdLFs5MC4yNTgyNDg4NjUwMDAwNCwyNC4zMDMzOTYzNzQwMDAwNF0sWzkwLjI1ODM2MTgxNDAwMDA3LDI0LjMwMzUxMTMzOTAwMDA3XSxbOTAuMjU4NDk5MTUxMDAwMDgsMjQuMzAzODA2MzM4MDAwMDddLFs5MC4yNTg1MjUxNjMwMDAwNiwyNC4zMDM4Nzc0MTkwMDAwNl0sWzkwLjI1ODU2MTg2MjAwMDA4LDI0LjMwNDA1NDA0NTAwMDA0XSxbOTAuMjU4NjMyODE3MDAwMDMsMjQuMzA0NDE3NDYwMDAwMDJdLFs5MC4yNTg2MzI5MTEwMDAwNiwyNC4zMDQ0NjQzMTQwMDAwM10sWzkwLjI1ODYxNTM3NzAwMDA3LDI0LjMwNDYyNTc4OTAwMDA2XSxbOTAuMjU4MTA0MzM3MDAwMDgsMjQuMzA2ODUzMDMwMDAwMDddLFs5MC4yNTgwMjg5OTgwMDAwNCwyNC4zMDcwNjI1ODcwMDAwOF0sWzkwLjI1NjQyMTU1MDAwMDA4LDI0LjMxMTE0NTQ4NzAwMDAzXSxbOTAuMjU2MjA4NzgxMDAwMDUsMjQuMzExNjMwMTg0MDAwMDJdLFs5MC4yNTM1NzAwOTYwMDAwMywyNC4zMTY5ODIwNzkwMDAwN10sWzkwLjI1MjY5NjAwNTAwMDA4LDI0LjMxODU0NTQ5NTAwMDAyXSxbOTAuMjQ2ODU2NzIyMDAwMDgsMjQuMzI4Njc0MjQxMDAwMDRdLFs5MC4yNDA3NDgwMDEwMDAwNCwyNC4zMzI5OTAwMjAwMDAwN10sWzkwLjIzMzg0NzAyMDAwMDA0LDI0LjMzNDcwNjcxNDAwMDA1XSxbOTAuMjMzNzYwNDk5MDAwMDgsMjQuMzM0NzI5NDI3MDAwMDddLFs5MC4yMzM2NDc4NDAwMDAwNiwyNC4zMzQ3NzUzMjQwMDAwOF0sWzkwLjIzMzYyNTcwNzAwMDA0LDI0LjMzNDgwMDc2MTAwMDA1XSxbOTAuMjMzNDUwMjMzMDAwMDQsMjQuMzM1MTk4NDM1MDAwMDVdLFs5MC4yMjk1NDQxMDYwMDAwNSwyNC4zNDUwNjEwMzEwMDAwNl0sWzkwLjIyOTQ4OTkyNjAwMDA0LDI0LjM0NTI1MzYwNTAwMDA0XSxbOTAuMjI4ODM5NzQ3MDAwMDUsMjQuMzQ3NTcxMjcwMDAwMDZdLFs5MC4yMjg4MDA3NDQwMDAwNywyNC4zNDc4MTA2NzUwMDAwNl0sWzkwLjIyODgwNTQwMTAwMDA1LDI0LjM0NzgzMDk5MTAwMDAyXSxbOTAuMjM0MzM2OTg5MDAwMDQsMjQuMzY1OTM0ODY4MDAwMDddLFs5MC4yNDE1Mjc4NTQwMDAwOCwyNC4zODk3NDY4MTEwMDAwN10sWzkwLjI0NjE1NTc0MzAwMDAzLDI0LjQwNTQ3Njc3MDAwMDA2XSxbOTAuMjQ4ODY3MDYxMDAwMDYsMjQuNDE0NzIwMzU2MDAwMDNdLFs5MC4yNDkwMTE3NzMwMDAwNiwyNC40MTUyNjY1NDQwMDAwOF0sWzkwLjI0OTAwMjYwMTAwMDA5LDI0LjQxNTMwNDk0NDAwMDA3XSxbOTAuMjQ4OTI5NTQ2MDAwMDYsMjQuNDE1NDYxOTkxMDAwMDNdLFs5MC4yNDg4NjY4MTUwMDAwNCwyNC40MTU1MzgzMDEwMDAwM10sWzkwLjI0ODQ2NjQ5MTAwMDA0LDI0LjQxNTczNjUyOTAwMDA3XSxbOTAuMjQ3NjQ5MDE4MDAwMDYsMjQuNDE1NzI4ODM2MDAwMDNdLFs5MC4yNDc1NDExMDIwMDAwNywyNC40MTU3MTI2NDMwMDAwNl0sWzkwLjI0Njk1OTQ3NTAwMDA0LDI0LjQxNTU2NzM5MDAwMDA0XSxbOTAuMjQ2MjI3MTY2MDAwMDQsMjQuNDE1Mjg2OTAzMDAwMDRdLFs5MC4yNDU5MzIyMTIwMDAwNywyNC40MTUxNDQwMDMwMDAwMl0sWzkwLjI0NTM4Mjk5OTAwMDA3LDI0LjQxNDg2MjA4NTAwMDA0XSxbOTAuMjQ1MzQzNTAyMDAwMDgsMjQuNDE0ODQwNjk5MDAwMDJdLFs5MC4yNDQ1MTY0NDIwMDAwOCwyNC40MTQzMzM0MzMwMDAwMl0sWzkwLjI0NDA5NzM0NzAwMDA0LDI0LjQxNDA2ODgwMDAwMDA1XSxbOTAuMjQzOTg0Mzg5MDAwMDUsMjQuNDEzOTk1MDMzMDAwMDVdLFs5MC4yNDMyMjc3MjMwMDAwOCwyNC40MTM1NDE4MzgwMDAwN10sWzkwLjI0MzA0NzUzMzAwMDA0LDI0LjQxMzQ0ODQyMzAwMDAzXSxbOTAuMjQyNjgyOTg3MDAwMDgsMjQuNDEzMzM3ODAzMDAwMDVdLFs5MC4yNDI0NDAwMDUwMDAwNSwyNC40MTMyOTAyMTEwMDAwNl0sWzkwLjI0MjI0OTQ4MDAwMDA1LDI0LjQxMzI3MDc1OTAwMDA2XSxbOTAuMjQyMTU1MTQxMDAwMDcsMjQuNDEzMjYxMzEzMDAwMDhdLFs5MC4yNDE5NzgxODYwMDAwNCwyNC40MTMyNDYzNTQwMDAwMl0sWzkwLjI0MDcyMTA1ODAwMDA4LDI0LjQxMzE3MTU4OTAwMDA2XSxbOTAuMjQwNjQ1ODQ2MDAwMDYsMjQuNDEzMTcwMDE0MDAwMDZdLFs5MC4yNDA0Nzc1NjcwMDAwOCwyNC40MTMxNzkzMTQwMDAwNV0sWzkwLjI0MDAyNzE0NDAwMDA3LDI0LjQxMzI5NDA1NTAwMDA1XSxbOTAuMjM5OTY1NTMxMDAwMDUsMjQuNDEzMzEyNzgxMDAwMDZdLFs5MC4yMzk3NzcwNDEwMDAwOCwyNC40MTMzOTIxMDgwMDAwNF0sWzkwLjIyOTk5MTI3NTAwMDAzLDI0LjQyMDQzMTc4OTAwMDA4XSxbOTAuMjI2NzI5MzU5MDAwMDUsMjQuNDI0OTI4MzQzMDAwMDNdLFs5MC4yMjA3MDYyMDIwMDAwMywyNC40MzQzMzA4OTEwMDAwNl0sWzkwLjIxOTUyNTM3NjAwMDA0LDI0LjQ0MjY1MDMzMDAwMDA1XSxbOTAuMjE5MDI5Mzk0MDAwMDcsMjQuNDQ3MzM3OTg0MDAwMDZdLFs5MC4yMTIyNTQzNDEwMDAwNiwyNC40NDk3MDA5ODkwMDAwNl0sWzkwLjIxMTY0MjQxNTAwMDA5LDI0LjQ0OTk0NDU3NjAwMDA2XSxbOTAuMjExNTk4NTY2MDAwMDgsMjQuNDUwMDg5NzEwMDAwMDRdLFs5MC4yMTE0NDQzMzYwMDAwNiwyNC40NTA2MDM2MDkwMDAwNF0sWzkwLjIxMDYxMTA4NjAwMDA5LDI0LjQ1MzY2NjU0ODAwMDA2XSxbOTAuMjA5ODUxODI2MDAwMDMsMjQuNDU2OTMyMDI3MDAwMDVdLFs5MC4yMDk4MTY3MzAwMDAwNiwyNC40NTcxNTIyMjUwMDAwN10sWzkwLjIwOTY2NDkwNDAwMDA4LDI0LjQ1ODE5NjE3MDAwMDA2XSxbOTAuMjA5NjIzMzY4MDAwMDUsMjQuNDU4NjIzNTQ0MDAwMDNdLFs5MC4yMDk2MjQyNzYwMDAwNiwyNC40NTkxNzIyMjMwMDAwNV0sWzkwLjIwOTY0NTcxNjAwMDA3LDI0LjQ1OTY0NDY2OTAwMDA2XSxbOTAuMjA5NjcwMzAxMDAwMDcsMjQuNDU5NzgwMTExMDAwMDRdLFs5MC4yMDk2OTAxNzcwMDAwOCwyNC40NTk4NjU4ODYwMDAwNV0sWzkwLjIwOTc3MjQ0MTAwMDA0LDI0LjQ2MDE5ODgxNzAwMDA1XSxbOTAuMjA5ODMwNjM2MDAwMDUsMjQuNDYwMzM1MzQzMDAwMDVdLFs5MC4yMDk4OTg0MTgwMDAwOCwyNC40NjA0ODcwOTYwMDAwN10sWzkwLjIwOTk3NTQ2NzAwMDA1LDI0LjQ2MDY0OTU2MTAwMDAzXSxbOTAuMjA5OTg1Njc3MDAwMDgsMjQuNDYwNjcwOTk3MDAwMDJdLFs5MC4yMTAxNjYyMTkwMDAwOSwyNC40NjA5NTAxNjYwMDAwM10sWzkwLjIxMDM0MjEwOTAwMDA3LDI0LjQ2MTIxNTIzMDAwMDA1XSxbOTAuMjEwNDE5NjEyMDAwMDcsMjQuNDYxMjc3NzgxMDAwMDRdLFs5MC4yMTA1MDUxMzkwMDAwOCwyNC40NjEzNDU5NjQwMDAwM10sWzkwLjIxMDYyMzMyOTAwMDA0LDI0LjQ2MTQwMDU1NTAwMDA3XSxbOTAuMjIzNTc3NzQ0MDAwMDcsMjQuNDY1NTI0NzA5MDAwMDhdLFs5MC4yMjU1NzYwOTIwMDAwNCwyNC40Njg3Mjc0NDkwMDAwM10sWzkwLjIzMjg5OTAxNzAwMDA4LDI0LjQ3NTI4Njk0MzAwMDA3XSxbOTAuMjM4ODYxMzAxMDAwMDQsMjQuNDc4MDMwNjI0MDAwMDRdLFs5MC4yNDMzMTA5MTQwMDAwNiwyNC40ODA2NTU3MTIwMDAwNF0sWzkwLjI0MzQ0ODAwMzAwMDA4LDI0LjQ4MDczODQ3MTAwMDA1XSxbOTAuMjQzNDc3NjU3MDAwMDgsMjQuNDgwNzYzMjYwMDAwMDZdLFs5MC4yNDM1Nzg5OTYwMDAwNSwyNC40ODA4NTkwNTkwMDAwN10sWzkwLjI0MzY0ODM2NzAwMDA1LDI0LjQ4MTAwOTEwMDAwMDA1XSxbOTAuMjQzNjQ3ODI1MDAwMDQsMjQuNDgxMDQ3NDg2MDAwMDJdLFs5MC4yNDM2MzE5NzUwMDAwOCwyNC40ODExNDUxNjYwMDAwM10sWzkwLjI0MzU5MDg5NTAwMDA3LDI0LjQ4MTI3MjI0MTAwMDA2XSxbOTAuMjQzNTQzNTU5MDAwMDUsMjQuNDgxMzU0NzMyMDAwMDZdLFs5MC4yNDM0NTI0NDkwMDAwNywyNC40ODE0NDY4OTAwMDAwM10sWzkwLjI0MDg5NTk5MjAwMDA1LDI0LjQ4MzgxNTYxMDAwMDA4XSxbOTAuMjM1OTcyODE3MDAwMDYsMjQuNDg2NzU3MDAxMDAwMDZdLFs5MC4yMzU4NDczNTcwMDAwNywyNC40ODY3OTE2MjkwMDAwNF0sWzkwLjIzNTE0NjU3MTAwMDA5LDI0LjQ4Njc1NDkwMjAwMDAzXSxbOTAuMjM1MDEwNTM0MDAwMDgsMjQuNDg2NzQxNTY1MDAwMDVdLFs5MC4yMzQ4OTcwMDgwMDAwOCwyNC40ODY3MjUzNzEwMDAwM10sWzkwLjIzNDgxMzY0NzAwMDA3LDI0LjQ4NjY3Njk1NjAwMDA1XSxbOTAuMjM0Nzg3OTg2MDAwMDcsMjQuNDg2NjQ0MjU3MDAwMDJdLFs5MC4yMzQ2NTk5OTUwMDAwNywyNC40ODY0Nzc5MzIwMDAwN10sWzkwLjIzNDYzNDAxNjAwMDA5LDI0LjQ4NjQzOTU4NzAwMDA2XSxbOTAuMjM0NjAyNzcwMDAwMDQsMjQuNDg2Mzg3MTM5MDAwMDRdLFs5MC4yMzQzMTk4MDcwMDAwOCwyNC40ODU4MDc4NTQwMDAwM10sWzkwLjIzNDIyMzU5MTAwMDA1LDI0LjQ4NTQ4MDAzODAwMDA1XSxbOTAuMjMzOTUwNDczMDAwMDUsMjQuNDg0Mzg0MjM1MDAwMDVdLFs5MC4yMzM4MTgxMDQwMDAwOCwyNC40ODM2ODM5MTUwMDAwM10sWzkwLjIzMzgwOTk3MzAwMDA2LDI0LjQ4MzYyMjk2NDAwMDA2XSxbOTAuMjMzNzk0MTEyMDAwMDYsMjQuNDgzNTUxMjk5MDAwMDZdLFs5MC4yMzM3MzgyMjMwMDAwNSwyNC40ODMzNDg3MzYwMDAwNF0sWzkwLjIzMzcxMzQxNjAwMDA2LDI0LjQ4MzI3NTM5MTAwMDA2XSxbOTAuMjMzNjc4NDk1MDAwMDUsMjQuNDgzMjM1OTMyMDAwMDddLFs5MC4yMzM2MDQ0MTcwMDAwNCwyNC40ODMyMDM4NzAwMDAwN10sWzkwLjIzMzQxMTIxNTAwMDA1LDI0LjQ4MzEyNzk2NDAwMDA2XSxbOTAuMjMzMTMzMjgxMDAwMDUsMjQuNDgzMDk1NjUzMDAwMDhdLFs5MC4yMjkwNzU3NzYwMDAwNiwyNC40ODMwMzA3MzUwMDAwNl0sWzkwLjIyODkxNDc5MjAwMDA3LDI0LjQ4MzAzMzIzNzAwMDAzXSxbOTAuMjI4ODAwMzc5MDAwMDYsMjQuNDgzMDM1NjY4MDAwMDddLFs5MC4yMjg2ODk2NzAwMDAwNSwyNC40ODMwNDA5MTYwMDAwNV0sWzkwLjIyNzg3NzQyOTAwMDA1LDI0LjQ4MzA5NjMzNDAwMDA0XSxbOTAuMjI3MzcyNDQzMDAwMDQsMjQuNDgzMTk4MTM4MDAwMDNdLFs5MC4yMjcyODQ4OTMwMDAwNSwyNC40ODMyMTg1OTEwMDAwMl0sWzkwLjIyNjkxNzQxODAwMDA4LDI0LjQ4MzQ3MTQ2NzAwMDA3XSxbOTAuMjI2NjI5NzIwMDAwMDYsMjQuNDgzNjY5NDY4MDAwMDddLFs5MC4yMjQwMjI4MDgwMDAwOSwyNC40ODYxMzkwMjIwMDAwM10sWzkwLjIyMzU4NTE4NDAwMDA2LDI0LjQ4NzAyMDI2NTAwMDA3XSxbOTAuMjIzNTY4ODk5MDAwMDQsMjQuNDg3MDUzNTk0MDAwMDNdLFs5MC4yMjM1MTc4ODYwMDAwOCwyNC40ODcxNTgwOTkwMDAwNl0sWzkwLjIyMzM0OTc5ODAwMDA3LDI0LjQ4NzUwNjYzNTAwMDA1XSxbOTAuMjIzMzI0MzEzMDAwMDMsMjQuNDg3NTcxNTg3MDAwMDVdLFs5MC4yMjMyOTU3NjYwMDAwNCwyNC40ODc2NDgzOTkwMDAwMl0sWzkwLjIyMzI1MTI2MTAwMDA5LDI0LjQ4Nzc2OTgyODAwMDA3XSxbOTAuMjIzMDYyMjQ0MDAwMDYsMjQuNDg4MzE5MzUwMDAwMDRdLFs5MC4yMjMwMjMyODAwMDAwNiwyNC40ODg0MzU2OTEwMDAwNl0sWzkwLjIyMjk1MzU1MjAwMDA0LDI0LjQ4ODk0NjA4ODAwMDAzXSxbOTAuMjIzMDkwMDQ2MDAwMDQsMjQuNDg5MzkzNTIyMDAwMDZdLFs5MC4yMjMxMTk4MTgwMDAwNCwyNC40ODk0ODY2MTcwMDAwN10sWzkwLjIyMzE1MjM1NzAwMDA2LDI0LjQ4OTU3NDA2MzAwMDA4XSxbOTAuMjIzMTc4NzU1MDAwMDUsMjQuNDkwMjAxNzMwMDAwMDJdLFs5MC4yMjMxODEwNDUwMDAwNSwyNC40OTAyNzUxMDkwMDAwNF0sWzkwLjIyMzE4MTAxOTAwMDA0LDI0LjQ5MDQzNTQyNDAwMDA1XSxbOTAuMjIzMTc4MTc4MDAwMDcsMjQuNDkwNTc0MjkwMDAwMDRdLFs5MC4yMjMxNDIzNjUwMDAwNiwyNC40OTA5MDM0MzYwMDAwNV0sWzkwLjIyMzEwNzg5MDAwMDA1LDI0LjQ5MTExNjg2MzAwMDA2XSxbOTAuMjIyOTUxNTU3MDAwMDQsMjQuNDkxNDg5MDg4MDAwMDRdLFs5MC4yMjI3NjAwMTYwMDAwNSwyNC40OTE4MzQyNzAwMDAwM10sWzkwLjIyMjYwOTI0MTAwMDA0LDI0LjQ5MjAzNTQ0ODAwMDAyXSxbOTAuMjIyNTM1MzgxMDAwMDYsMjQuNDkyMTI4MTMzMDAwMDVdLFs5MC4yMjI0MjY3MzkwMDAwNywyNC40OTIyNjA5NDYwMDAwNF0sWzkwLjIyMjE3NDY1NjAwMDA1LDI0LjQ5MjU1NjU0MjAwMDA1XSxbOTAuMjIxMDA3ODM0MDAwMDMsMjQuNDkzNzcyNDU4MDAwMDJdLFs5MC4yMTYxOTkxNDYwMDAwNiwyNC40OTc5NjYxODkwMDAwN10sWzkwLjIxNDE4MTUyNDAwMDA4LDI0LjQ5OTU0NTEwMjAwMDA3XSxbOTAuMjEzOTAyNTkzMDAwMDYsMjQuNDk5NjcxOTQwMDAwMDRdLFs5MC4yMTM4NDIxNzEwMDAwNywyNC40OTk2OTEyMTgwMDAwN10sWzkwLjIxMzcwOTI5MjAwMDAzLDI0LjQ5OTcyNzUzMzAwMDA1XSxbOTAuMjEzNjYyNzMzMDAwMDQsMjQuNDk5NzM3NzYxMDAwMDZdLFs5MC4yMTM1NzY3MDgwMDAwNiwyNC40OTk3NTU5NDYwMDAwNV0sWzkwLjIxMzQ4Njk3NzAwMDA2LDI0LjQ5OTc3MTg3ODAwMDA1XSxbOTAuMjEzMzU3NzQyMDAwMDgsMjQuNDk5Nzc0MzE4MDAwMDVdLFs5MC4yMTI3NzI5NDIwMDAwNywyNC40OTk3ODMwNDUwMDAwN10sWzkwLjIxMjY3MDIxNjAwMDA1LDI0LjQ5OTc3NjQxODAwMDA3XSxbOTAuMjEyNTAyMDkyMDAwMDgsMjQuNDk5NzYzMTA2MDAwMDVdLFs5MC4yMTE5MzE5NjUwMDAwOCwyNC40OTk2OTM5MTEwMDAwN10sWzkwLjIxMTc2NzE5OTAwMDA2LDI0LjQ5OTY2MDI3NDAwMDA2XSxbOTAuMjExNzMzNTUwMDAwMDgsMjQuNDk5NjQzMzg3MDAwMDVdLFs5MC4yMTE2NTk3NzAwMDAwNCwyNC40OTk2MDYyMzMwMDAwN10sWzkwLjIxMTY0MDMyMDAwMDA3LDI0LjQ5OTU5NjEwMDAwMDA4XSxbOTAuMjExNTI0MjI3MDAwMDQsMjQuNDk5NTI2MjY4MDAwMDddLFs5MC4yMTEzNzYwMDMwMDAwNSwyNC40OTk0MjQ4NjcwMDAwN10sWzkwLjIxMTA5Mjc1MDAwMDAzLDI0LjQ5OTE4MDg0NDAwMDAyXSxbOTAuMjEwOTYzNjA0MDAwMDksMjQuNDk5MDUwNjI3MDAwMDNdLFs5MC4yMTA3MDQzNDQwMDAwOCwyNC40OTg3NjU5MjYwMDAwM10sWzkwLjIxMDYzNDgxNDAwMDA2LDI0LjQ5ODY4NzU2MDAwMDA2XSxbOTAuMjEwNTkxNTQyMDAwMDMsMjQuNDk4NjM0NTU5MDAwMDRdLFs5MC4yMTAzNTUxODMwMDAwNSwyNC40OTgzOTQ0MTkwMDAwOF0sWzkwLjIwOTI1NjEzNzAwMDA3LDI0LjQ5NzQyNDQ3MDAwMDA2XSxbOTAuMjA5MTM4Nzg3MDAwMDksMjQuNDk3MzM4ODMwMDAwMDVdLFs5MC4yMDg5NzM5MTQwMDAwNywyNC40OTcyMzkxNDUwMDAwNF0sWzkwLjIwODgyNjY3MTAwMDA1LDI0LjQ5NzE2ODIyNDAwMDA2XSxbOTAuMjA4NzkyNzE5MDAwMDMsMjQuNDk3MTUzNTk0MDAwMDVdLFs5MC4yMDgyMTE0NTcwMDAwNiwyNC40OTcwNTYxNzcwMDAwNV0sWzkwLjIwNzg1NDI5ODAwMDA5LDI0LjQ5NzA2NTcwMjAwMDA0XSxbOTAuMjA3NTQ5MDU1MDAwMDcsMjQuNDk3MTMzODU4MDAwMDRdLFs5MC4yMDc1MjQ2OTcwMDAwNSwyNC40OTcxMzk1MzcwMDAwN10sWzkwLjIwNzMyMTg1MzAwMDA1LDI0LjQ5NzIwNTg2MDAwMDA3XSxbOTAuMjA3MDgzOTQxMDAwMDYsMjQuNDk3MzMwOTM4MDAwMDZdLFs5MC4yMDY4NzAyMDQwMDAwNCwyNC40OTc1Mjc2NzIwMDAwNV0sWzkwLjIwNDAyMDUyNzAwMDA3LDI0LjUwMDIxMTcxNTAwMDAzXSxbOTAuMjAzOTY5NDU4MDAwMDcsMjQuNTAwMjk0NzYxMDAwMDhdLFs5MC4yMDM5NDkxNTUwMDAwMywyNC41MDAzMjgwOTUwMDAwNF0sWzkwLjIwMzc1MzUyNDAwMDA0LDI0LjUwMDY2MzY2MTAwMDAzXSxbOTAuMjAzNzExMDk0MDAwMDgsMjQuNTAwNzQ4MzkwMDAwMDddLFs5MC4yMDM2MDc3MjQwMDAwNSwyNC41MDExMDgxMDYwMDAwNl0sWzkwLjIwMzYxMTAxMzAwMDA2LDI0LjUwMTIzMzk4MjAwMDAzXSxbOTAuMjAzNjE3ODY0MDAwMDgsMjQuNTAxNDY2NTQwMDAwMDJdLFs5MC4yMDM2MjA3NjUwMDAwNCwyNC41MDE1NDQ0MzQwMDAwNF0sWzkwLjIwMzYyNzk4MzAwMDA1LDI0LjUwMTYxOTUwMTAwMDA1XSxbOTAuMjAzNjMxNDIwMDAwMDgsMjQuNTAxNjQ3NzIwMDAwMDVdLFs5MC4yMDM2NjU2MjgwMDAwNywyNC41MDE4MjA0MDYwMDAwNF0sWzkwLjIwMzcyODkwNTAwMDA1LDI0LjUwMjAzOTkwNDAwMDA3XSxbOTAuMjAzOTM5NzIyMDAwMDksMjQuNTAyMzIwMTY3MDAwMDVdLFs5MC4yMDQwOTg4NzYwMDAwNSwyNC41MDI1MDU2NjgwMDAwM10sWzkwLjIwNDM3Njk1NTAwMDA0LDI0LjUwMjc5NzY5NDAwMDA0XSxbOTAuMjA0NDI2Njg0MDAwMDUsMjQuNTAyODM4ODMzMDAwMDZdLFs5MC4yMDQ1NDY1MjAwMDAwNiwyNC41MDI5MzUxOTgwMDAwNV0sWzkwLjIwNjc1ODE5OTAwMDAzLDI0LjUwNDQ4MDU2MjAwMDAzXSxbOTAuMjA4NDY5NzAyMDAwMDYsMjQuNTA1NTIyNTAwMDAwMDRdLFs5MC4yMDg3MDM0MTEwMDAwNCwyNC41MDU2NDYzNjMwMDAwNF0sWzkwLjIwODgwNDQwMjAwMDA2LDI0LjUwNTcyMDczNjAwMDA2XSxbOTAuMjA5MTMyNzY1MDAwMDUsMjQuNTA2MDA0NzgxMDAwMDZdLFs5MC4yMDkzMDgyOTMwMDAwNSwyNC41MDYxOTg3MTgwMDAwNl0sWzkwLjIwOTQ4NTQyODAwMDA1LDI0LjUwNjQzMTYwNjAwMDA0XSxbOTAuMjA5NTI0MTk1MDAwMDksMjQuNTA2NTU3NDMxMDAwMDNdLFs5MC4yMDk1NjE3NDAwMDAwOCwyNC41MDY2OTAwMzIwMDAwNV0sWzkwLjIwOTU3NDgzNjAwMDA2LDI0LjUwNjc3NTI1MTAwMDA4XSxbOTAuMjA5NTc3OTcxMDAwMDQsMjQuNTA2ODA1NzI5MDAwMDZdLFs5MC4yMDk1NzEzODAwMDAwNiwyNC41MDY5MjMxNTAwMDAwM10sWzkwLjIwOTU1OTUxOTAwMDA0LDI0LjUwNzAyNTkwMzAwMDA2XSxbOTAuMjA5NDY1MTkwMDAwMDYsMjQuNTA3NDM0NzE3MDAwMDJdLFs5MC4yMDk0MTMwNzEwMDAwOSwyNC41MDc2Mjg0MDgwMDAwN10sWzkwLjIwOTM4MzMyMDAwMDA5LDI0LjUwNzczMDYyMTAwMDA2XSxbOTAuMjA5MTEyNTE4MDAwMDQsMjQuNTA4MzA5MDI2MDAwMDZdLFs5MC4yMDkwNTk5MDkwMDAwOCwyNC41MDgzOTMyMDcwMDAwNF0sWzkwLjIwODkwOTQzNDAwMDA4LDI0LjUwODYxNDEyODAwMDAzXSxbOTAuMjA4ODU3MTE5MDAwMDcsMjQuNTA4Njg5Mjc3MDAwMDNdLFs5MC4yMDgwODE2MTUwMDAwOCwyNC41MDk2MTgzNTYwMDAwM10sWzkwLjIwODA0MTU4MTAwMDAzLDI0LjUwOTY1ODQ5MDAwMDA1XSxbOTAuMjA3OTkzNTIzMDAwMDgsMjQuNTA5Njk3NTA1MDAwMDhdLFs5MC4yMDc4OTIxNzIwMDAwNywyNC41MDk3Nzk0OTQwMDAwNF0sWzkwLjIwNzg2NTA0MzAwMDA4LDI0LjUwOTc5MDI1NzAwMDA4XSxbOTAuMTk4Mjk1MTE2MDAwMDUsMjQuNTEzMTg4ODk3MDAwMDhdLFs5MC4xOTQ2Mjg2ODYwMDAwNCwyNC41MTQwOTIzMjYwMDAwMl0sWzkwLjE4ODA5NDM0NjAwMDA3LDI0LjUyMDQ2Njg0MTAwMDAzXSxbOTAuMTg3OTk0ODI3MDAwMDcsMjQuNTIwNzU3NjcyMDAwMDZdLFs5MC4xODc5NjU2MzEwMDAwNSwyNC41MjA4MzIyMjEwMDAwM10sWzkwLjE4Nzk1NDI1OTAwMDA0LDI0LjUyMDg2MTAyNDAwMDA2XSxbOTAuMTg3NDYwMjk0MDAwMDYsMjQuNTIyMDY4NTAxMDAwMDRdLFs5MC4xODczMjA5NTcwMDAwNSwyNC41MjIzNDgwOTIwMDAwN10sWzkwLjE4NzI1ODQ4NDAwMDA0LDI0LjUyMjQ1MDkwNDAwMDA0XSxbOTAuMTg3MTQ4NTQ2MDAwMDYsMjQuNTIyNTg0MjU4MDAwMDVdLFs5MC4xODcwODM1NjEwMDAwNywyNC41MjI2NTc3MjQwMDAwNl0sWzkwLjE4Njk1NTY2NDAwMDA0LDI0LjUyMjc0NzYzNDAwMDA0XSxbOTAuMTg2Njc5MTk0MDAwMDgsMjQuNTIyOTIxMjcyMDAwMDhdLFs5MC4xODY2NDc3NDkwMDAwMywyNC41MjI5MzY1NTEwMDAwNF0sWzkwLjE4NjQ1ODc0MzAwMDA2LDI0LjUyMzAwOTAzODAwMDA1XSxbOTAuMTg2MDg2ODAzMDAwMDgsMjQuNTIzMDg2MjY4MDAwMDRdLFs5MC4xODU4NTQ1NTgwMDAwNywyNC41MjMxMjc3NjEwMDAwN10sWzkwLjE4NTQ0NzczNjAwMDA3LDI0LjUyMzE5MTQ4MzAwMDA2XSxbOTAuMTgzMzEyNTExMDAwMDUsMjQuNTIzMzU4MzU2MDAwMDddLFs5MC4xODMxMTQ0NTEwMDAwNSwyNC41MjMzNTg1OTcwMDAwM10sWzkwLjE4Mjk3MDA2NzAwMDA0LDI0LjUyMzM1NTM4NjAwMDA1XSxbOTAuMTgyMTk3MTMyMDAwMDYsMjQuNTIzMjY0ODc0MDAwMDZdLFs5MC4xODE2MjYyOTcwMDAwNCwyNC41MjMxOTM4NzQwMDAwN10sWzkwLjE4MDc0MDEwNzAwMDA4LDI0LjUyMzA3ODA4OTAwMDAyXSxbOTAuMTgwNjM5NTE1MDAwMDUsMjQuNTIzMDY0NjYyMDAwMDJdLFs5MC4xODAzMjkwODQwMDAwNSwyNC41MjMwMTE5NzQwMDAwNF0sWzkwLjE4MDIyNjMyMDAwMDAzLDI0LjUyMjk4ODk1MTAwMDA2XSxbOTAuMTgwMDIzODc2MDAwMDYsMjQuNTIyOTQzNDcwMDAwMDNdLFs5MC4xNzk5OTIwOTAwMDAwNCwyNC41MjI5MzYxNzAwMDAwNF0sWzkwLjE3OTg3OTE0MDAwMDA4LDI0LjUyMjkwOTIxMTAwMDA3XSxbOTAuMTc5NTk5MTc2MDAwMDcsMjQuNTIyODAzOTg2MDAwMDRdLFs5MC4xNzkzNjcwMzYwMDAwMywyNC41MjI3MDA5NjEwMDAwNl0sWzkwLjE3OTI0NzU1NDAwMDA5LDI0LjUyMjYzNjE4NzAwMDA1XSxbOTAuMTc4OTczNjM2MDAwMDgsMjQuNTIyNDQyMzMwMDAwMDVdLFs5MC4xNzg3MjA5MzQwMDAwNywyNC41MjIxOTc2NDYwMDAwNV0sWzkwLjE3NzIyMDQxNDAwMDAzLDI0LjUyMDQ2MTk0MDAwMDA4XSxbOTAuMTc2MjI1Mzk1MDAwMDcsMjQuNTE5Mjc0ODY5MDAwMDddLFs5MC4xNzMxMjIxNjQwMDAwNiwyNC41MjA3OTEyNzQwMDAwM10sWzkwLjE3MTI4MDAxMzAwMDA2LDI0LjUyNjM5OTgxMjAwMDAyXSxbOTAuMTY4NDk4NDM1MDAwMDYsMjQuNTM0NDY2NTY0MDAwMDddLFs5MC4xNjY5Nzg3ODYwMDAwNywyNC41Mzc0MDI0MjcwMDAwN10sWzkwLjE2NjQxMjY0NTAwMDA0LDI0LjUzNzE4OTExNTAwMDA1XSxbOTAuMTY1MjY1OTkwMDAwMDgsMjQuNTM2ODU5MDI1MDAwMDddLFs5MC4xNjQ5NTczNDcwMDAwNCwyNC41MzY3Nzc1MTMwMDAwNl0sWzkwLjE2NDc5MDY3OTAwMDA4LDI0LjUzNjczNDIzMDAwMDA0XSxbOTAuMTY0NDI4MDMyMDAwMDUsMjQuNTM2NjQ0MzA5MDAwMDVdLFs5MC4xNjQxOTkwNTcwMDAwOCwyNC41MzY2MTM1MTEwMDAwNF0sWzkwLjE2MzE2NDEwNTAwMDA4LDI0LjUzNjUyMzc1NDAwMDAzXSxbOTAuMTYyOTUxMjAwMDAwMDcsMjQuNTM2NTExNTY1MDAwMDddLFs5MC4xNjIzOTk4MTYwMDAwNiwyNC41MzY0OTA3MTAwMDAwN10sWzkwLjE2MjExOTY1NzAwMDA2LDI0LjUzNjQ4NDIzODAwMDA3XSxbOTAuMTYyMDAwNTY3MDAwMDYsMjQuNTM2NDg4MzE2MDAwMDNdLFs5MC4xNjE2OTUxNDkwMDAwOCwyNC41MzY1MTU3MzkwMDAwNF0sWzkwLjE2MTU2NzEzMjAwMDA3LDI0LjUzNjUzNTYzNDAwMDA3XSxbOTAuMTYxNTIzNjM4MDAwMDYsMjQuNTM2NTQyNDU0MDAwMDNdLFs5MC4xNjE0NTExNjIwMDAwNSwyNC41MzY1NjYyMzkwMDAwMl0sWzkwLjE2MTM1NDY1NjAwMDA3LDI0LjUzNjYxNzcxMDAwMDAzXSxbOTAuMTYxMjU1Mzk5MDAwMDgsMjQuNTM2Njg5NTA2MDAwMDddLFs5MC4xNTE3ODE4ODcwMDAwOCwyNC41NTI3MDM0OTcwMDAwNF0sWzkwLjE0ODM4NTA4NDAwMDA0LDI0LjU2MTM2NjU2NzAwMDA1XSxbOTAuMTQ2MDM2NzcxMDAwMDcsMjQuNTY3ODYxNTAyMDAwMDNdLFs5MC4xNDAwNDMyNzYwMDAwOSwyNC41NzU0NDY0NTIwMDAwNV0sWzkwLjEzOTg4NjkzNjAwMDA0LDI0LjU3NTU2OTA4OTAwMDA2XSxbOTAuMTM5NzI3ODI3MDAwMDYsMjQuNTc1NzAxMzI1MDAwMDddLFs5MC4xMzkwMzMxMTYwMDAwNiwyNC41NzY1NjExMDQwMDAwNl0sWzkwLjEzNzkwOTczMTAwMDA0LDI0LjU3ODAxMzk3NTAwMDAzXSxbOTAuMTM3MTkyNDY3MDAwMDMsMjQuNTc5MTU5OTU3MDAwMDZdLFs5MC4xMzcxNTE4NDMwMDAwOCwyNC41NzkyNjY2ODEwMDAwNF0sWzkwLjEzNzEzODkxODAwMDA2LDI0LjU3OTMwMTEyNTAwMDAzXSxbOTAuMTM3MDcwNjc2MDAwMDYsMjQuNTc5NTU1NzY4MDAwMDNdLFs5MC4xMzM4NDkxNjgwMDAwNCwyNC41ODc0OTQwOTkwMDAwM10sWzkwLjEyNzAyNDAxOTAwMDAzLDI0LjU5ODgwMzExMTAwMDA1XSxbOTAuMTMwMTI5ODk0MDAwMDUsMjQuNjE2NTUxNTQ4MDAwMDddLFs5MC4xMzAyMTAyODkwMDAwNSwyNC42MTY5NzA4ODQwMDAwN10sWzkwLjEzMDIxNDAxNTAwMDA0LDI0LjYxNjk5MDA3NDAwMDA2XSxbOTAuMTMwMjYyNjc4MDAwMDcsMjQuNjE3MTc2MzA4MDAwMDddLFs5MC4xMzA0MTM1MDEwMDAwOCwyNC42MTc2MjY2MjkwMDAwM10sWzkwLjEzMDU1ODg3MTAwMDA2LDI0LjYxNzg4MjIxMTAwMDA1XSxbOTAuMTMwNjE5MTY5MDAwMDYsMjQuNjE3OTcyNDc0MDAwMDZdLFs5MC4xMzA3NzY4NTUwMDAwOCwyNC42MTgxOTQxNzYwMDAwM10sWzkwLjEzMDkyMzY3MDAwMDA3LDI0LjYxODM1MDQwOTAwMDA3XSxbOTAuMTMxMjA1NTMyMDAwMDgsMjQuNjE4NjMzNTI5MDAwMDhdLFs5MC4xMzEzMDkzNTQwMDAwNSwyNC42MTg3MTUyODkwMDAwOF0sWzkwLjEzMTUwMDYwMzAwMDA2LDI0LjYxODg0ODkwMTAwMDA0XSxbOTAuMTQwNDI0OTYzMDAwMDQsMjQuNjI0MDUzNzY2MDAwMDNdLFs5MC4xNDA1NTMwOTQwMDAwNCwyNC42MjQwNTM2NDcwMDAwNF0sWzkwLjE0MDY2MzAwOTAwMDA0LDI0LjYyNDA1Mjk4MDAwMDA0XSxbOTAuMTQwNzMwOTMyMDAwMDUsMjQuNjI0MDUyMzUxMDAwMDVdLFs5MC4xNDEzODA3OTQwMDAwNCwyNC42MjM5OTY0MjMwMDAwNV0sWzkwLjE0MTg0OTQwNTAwMDA3LDI0LjYyMzkzMTYzMzAwMDA0XSxbOTAuMTQyOTA1NzY1MDAwMDgsMjQuNjIzNzY2MzcwMDAwMDZdLFs5MC4xNDQyMzc4NDAwMDAwNywyNC42MjM2MDQyMjQwMDAwOF0sWzkwLjE0NDI4MDgzNzAwMDA1LDI0LjYyMzY3NDE3ODAwMDA0XSxbOTAuMTQ0MzQ1NDk5MDAwMDUsMjQuNjIzNzkwOTYxMDAwMDVdLFs5MC4xNDUxNDQxOTMwMDAwOCwyNC42MjU2MjI0NzkwMDAwN10sWzkwLjE0NTY1NjA2NzAwMDA2LDI0LjYyNjkxODU4MzAwMDA4XSxbOTAuMTQ3MjUwMzcxMDAwMDQsMjQuNjMxMDI2NDA1MDAwMDZdLFs5MC4xNDc2Mjg5MjQwMDAwNiwyNC42MzIwNzk5MDgwMDAwNF0sWzkwLjE0Nzc1MjA3NjAwMDA3LDI0LjYzMjU2NDY3MTAwMDA3XSxbOTAuMTQ3ODY4MTA4MDAwMDcsMjQuNjMzMDMzMDcwMDAwMDddLFs5MC4xNDc5NjM1MTcwMDAwNSwyNC42MzM1NTUxMTUwMDAwNF0sWzkwLjE0ODAxOTMzNTAwMDA3LDI0LjYzNDAyMDE4NzAwMDAzXSxbOTAuMTQ4MDc0Mzk5MDAwMDUsMjQuNjM0NjMwODk0MDAwMDVdLFs5MC4xNDgwODM5ODIwMDAwNiwyNC42MzQ5MDE4MzIwMDAwM10sWzkwLjE0MjU5OTMzMjAwMDAzLDI0LjY2MTk4MTUyNTAwMDA0XSxbOTAuMTQyMTU0NzM2MDAwMDcsMjQuNjcwODI4MzUwMDAwMDhdLFs5MC4xNDA3ODQwODQwMDAwNywyNC42NzcyNDQyOTMwMDAwNl0sWzkwLjE0MDcwOTcxMTAwMDA2LDI0LjY3NzU4MDIyMzAwMDA2XSxbOTAuMTM5OTA4NDA1MDAwMDksMjQuNjgwNTY5ODQ1MDAwMDRdLFs5MC4xMzk3NTU0NTcwMDAwNCwyNC42ODEwODQyMjAwMDAwNl0sWzkwLjEzOTY3Mjk3MTAwMDA0LDI0LjY4MTM0OTAzMzAwMDA2XSxbOTAuMTM5NTM0OTY3MDAwMDMsMjQuNjgxNjg5NTM3MDAwMDddLFs5MC4xMzkzMjgxNTMwMDAwNiwyNC42ODIwOTg0MDYwMDAwMl0sWzkwLjEzOTI1MzU0NjAwMDA4LDI0LjY4MjIyODMwNDAwMDAzXSxbOTAuMTM4ODMxMTcyMDAwMDQsMjQuNjgyOTYyNTA3MDAwMDddLFs5MC4xMzczNjIyMzkwMDAwOCwyNC42ODUzODIwNDkwMDAwNV0sWzkwLjEzNzE1MjUwNDAwMDA4LDI0LjY4NTY3MzUwOTAwMDAzXSxbOTAuMTM3MTE2NzIxMDAwMDQsMjQuNjg1NzE5MjYzMDAwMDddLFs5MC4xMzcwODQ2MzgwMDAwMywyNC42ODU3NTc2NzcwMDAwM10sWzkwLjEzNzA0NjA3MDAwMDA1LDI0LjY4NTc5ODkxODAwMDA1XSxbOTAuMTM1NzY5OTgzMDAwMDUsMjQuNjg2OTM0NjYzMDAwMDVdLFs5MC4xMzU1OTMxMTkwMDAwOCwyNC42ODcwNjUyMTUwMDAwOF0sWzkwLjEzNTQwNjY5MDAwMDA4LDI0LjY4NzIwMjU0OTAwMDA2XSxbOTAuMTM1MTg5MzkxMDAwMDQsMjQuNjg3MzYyNDkxMDAwMDRdLFs5MC4xMzUxMTY1NTIwMDAwNiwyNC42ODc0MjAxMzIwMDAwNl0sWzkwLjEzNDg0OTkyNjAwMDA3LDI0LjY4NzY3MjEyNjAwMDA1XSxbOTAuMTM0Njk1OTM3MDAwMDYsMjQuNjg3ODE3ODk4MDAwMDVdLFs5MC4xMzQ1NTU4NDMwMDAwNCwyNC42ODc5NTc0NDgwMDAwOF0sWzkwLjEzNDQwMzcxNjAwMDA3LDI0LjY4ODExMTY4MzAwMDA1XSxbOTAuMTM0MTg0NjQ1MDAwMDYsMjQuNjg4MzQ5NTIxMDAwMDhdLFs5MC4xMzM5NjI0OTYwMDAwNCwyNC42ODg1OTkyMTcwMDAwNV0sWzkwLjEzMzc4ODE4MTAwMDA2LDI0LjY4ODgwNDgzOTAwMDA2XSxbOTAuMTMzMjAwNzYzMDAwMDUsMjQuNjg5NTA5MjU2MDAwMDZdLFs5MC4xMzI4MzM2MjMwMDAwNywyNC42ODk5NDk4NjgwMDAwNF0sWzkwLjEzMjU2Nzc2MTAwMDA4LDI0LjY5MDM0ODA1NDAwMDAzXSxbOTAuMTMyMzEzNjM1MDAwMDYsMjQuNjkwNzQ2MjMwMDAwMDZdLFs5MC4xMzIxNzIxMDUwMDAwNSwyNC42OTA5OTQxNTcwMDAwM10sWzkwLjEzMjAwNjIyODAwMDA4LDI0LjY5MTI5OTY4MjAwMDA4XSxbOTAuMTMxOTkyMzY2MDAwMDgsMjQuNjkxMzM2Mzg0MDAwMDddLFs5MC4xMzE5MTc4MTcwMDAwNCwyNC42OTE1MzQ1NzkwMDAwNl0sWzkwLjEzMTg1NDk5OTAwMDA0LDI0LjY5MTcyNjU1NDAwMDA3XSxbOTAuMTMwMTI0NTgyMDAwMDYsMjQuNzA3MDMxMzk4MDAwMDNdLFs5MC4xMjY3MTk1ODcwMDAwOCwyNC43MTc0MjE2NjMwMDAwNF0sWzkwLjEyNjYzMzM0NjAwMDA2LDI0LjcxNzY5MjY4MTAwMDA3XSxbOTAuMTI2NjAwMTU4MDAwMDMsMjQuNzE3ODcyNzc0MDAwMDZdLFs5MC4xMjY1OTEzMDMwMDAwNSwyNC43MTc5NzYwNzkwMDAwNF0sWzkwLjEyNjYwMTMyNTAwMDA4LDI0LjcxODEwODE1ODAwMDA2XSxbOTAuMTI2NjgyMTkxMDAwMDQsMjQuNzE4NjM0MTc0MDAwMDRdLFs5MC4xMjY3MDAxODkwMDAwOCwyNC43MTg3MDk3OTcwMDAwM10sWzkwLjEyNjk0MzE0NzAwMDA4LDI0LjcxOTQxNDA0ODAwMDAzXSxbOTAuMTI3MzMwNjAwMDAwMDUsMjQuNzIwMzA5NTI5MDAwMDhdLFs5MC4xMjc2Njg2NzUwMDAwNSwyNC43MjA5NTU1NTkwMDAwNl0sWzkwLjEyODEyMTkwOTAwMDA3LDI0LjcyMTgwNTgyNTAwMDA1XSxbOTAuMTI4MjU3MTk4MDAwMDksMjQuNzIyMDU4NTkyMDAwMDVdLFs5MC4xMjg1MzMyNDEwMDAwNywyNC43MjI0Njg3MjMwMDAwOF0sWzkwLjEyODY3ODA1ODAwMDA1LDI0LjcyMjY3MTI0MjAwMDA1XSxbOTAuMTI5NTQ3OTE2MDAwMDQsMjQuNzIzOTAyNzI3MDAwMDVdLFs5MC4xMzAzNzQ3OTMwMDAwNCwyNC43MjUwODYyNjUwMDAwN10sWzkwLjEzMDk2NzM2MDAwMDA2LDI0LjcyNjE3NTE3MTAwMDAyXSxbOTAuMTMxMDgzNTQ5MDAwMDQsMjQuNzI2NDcyNTQyMDAwMDddLFs5MC4xMzI3NDA0NTIwMDAwNiwyNC43MzM3NzUyOTIwMDAwOF0sWzkwLjEzMjc4NTU1MDAwMDA1LDI0LjczNDA0NzMyNTAwMDA2XSxbOTAuMTMyODAzMDQwMDAwMDYsMjQuNzM0MjIyODU4MDAwMDddLFs5MC4xMzI3Mzg5ODkwMDAwNywyNC43MzQ0MzQ1OTAwMDAwM10sWzkwLjEzMjY2ODM5MDAwMDA1LDI0LjczNDU5MzI2ODAwMDAzXSxbOTAuMTMyNjAzODk4MDAwMDcsMjQuNzM0NjgwODE2MDAwMDRdLFs5MC4xMzI0MTM3NTYwMDAwNiwyNC43MzQ4ODY0NTEwMDAwMl0sWzkwLjEzMjIyOTEyNjAwMDA4LDI0LjczNTA0NDEwMDAwMDA0XSxbOTAuMTMyMDkyMzQ0MDAwMDYsMjQuNzM1MTUzNzI3MDAwMDddLFs5MC4xMzE0MTk1NDAwMDAwOCwyNC43MzU2ODgzMDQwMDAwNl0sWzkwLjEzMDk1NDUyNDAwMDA2LDI0LjczNjA1MTA5OTAwMDA2XSxbOTAuMTI4NDkyMTA5MDAwMDQsMjQuNzM3Nzc3MTExMDAwMDddLFs5MC4xMjc5MTczOTkwMDAwNywyNC43MzgxNjY1MTkwMDAwNl0sWzkwLjEyNzY3MjQ5OTAwMDA4LDI0LjczODMyNTkwODAwMDA0XSxbOTAuMTI3NjM5NzU2MDAwMDYsMjQuNzM4MzQyMzA1MDAwMDZdLFs5MC4xMjc1MDE2ODgwMDAwNSwyNC43Mzg0MDk1OTYwMDAwNV0sWzkwLjEyNzMyNDA0NzAwMDA2LDI0LjczODQ2MDU0NzAwMDA1XSxbOTAuMTI2NTc2NTI1MDAwMDgsMjQuNzM4NDkxNjYyMDAwMDZdLFs5MC4xMjYyMjMzMDMwMDAwNywyNC43Mzg0OTUzNDcwMDAwM10sWzkwLjEyNDc0NjQ5MjAwMDA0LDI0LjczODI0NzY1MzAwMDAzXSxbOTAuMTI0NDA2ODAyMDAwMDcsMjQuNzM4MTg1ODQ0MDAwMDRdLFs5MC4xMjM5MDU3NjcwMDAwNSwyNC43MzgwOTE5OTMwMDAwN10sWzkwLjEyMzYwMzc1NDAwMDA0LDI0LjczODAwMzYyMTAwMDA4XSxbOTAuMTIzMzM5NzczMDAwMDUsMjQuNzM3OTM1NTM3MDAwMDZdLFs5MC4xMjI5MDIzOTEwMDAwOCwyNC43Mzc4MzI2MDAwMDAwNV0sWzkwLjEyMjYxOTU3MTAwMDA5LDI0LjczNzc3NjM4NDAwMDAzXSxbOTAuMTIxODU1MjU0MDAwMDgsMjQuNzM3NjkyOTAzMDAwMDRdLFs5MC4xMTgxMzI3NDIwMDAwNiwyNC43Mzc0NTgyNDEwMDAwN10sWzkwLjExNzI0MDgzMzAwMDA0LDI0LjczNzQxMTUyNTAwMDAzXSxbOTAuMTA2ODE5Mzg3MDAwMDMsMjQuNzM3MDY5MzQzMDAwMDNdLFs5MC4xMDQzMzE5NjMwMDAwNSwyNC43MzcwMjQ4MDkwMDAwNV0sWzkwLjA5NjczMzEzMzAwMDA0LDI0LjczNjkyMjA5MTAwMDA1XSxbOTAuMDkyNzM5NTI1MDAwMDcsMjQuNzM2OTA1OTg3MDAwMDZdLFs5MC4wOTI0MjAzMDEwMDAwNiwyNC43MzY5MTIzOTQwMDAwNl0sWzkwLjA5MDQ3MzI1MzAwMDA4LDI0LjczNzExOTYxMTAwMDAzXSxbOTAuMDkwMzc4MTIzMDAwMDUsMjQuNzM3MTkzMDQ5MDAwMDRdLFs5MC4wOTAzMTA4MjIwMDAwNSwyNC43MzcyODY3OTIwMDAwOF0sWzkwLjA5MDI1MjE2NjAwMDA4LDI0LjczNzM2OTIzOTAwMDAzXSxbOTAuMDkwMjA0OTQ4MDAwMDYsMjQuNzM3NDU3MzI1MDAwMDRdLFs5MC4wOTAwODAzNDIwMDAwOCwyNC43Mzc3OTQ5NTAwMDAwMl0sWzkwLjA4OTk4MDQ0MDAwMDAzLDI0LjczODEwNTQ2ODAwMDA3XSxbOTAuMDg5OTI1MjQ3MDAwMDUsMjQuNzM4Mjc5MzU3MDAwMDddLFs5MC4wODk1MjU2MTgwMDAwNCwyNC43Mzk5MzhdLFs5MC4wODkzMTUxNzYwMDAwNywyNC43NDA4MjAzODcwMDAwNF0sWzkwLjA4OTAwNTM5OTAwMDA5LDI0Ljc0MjM4ODY2MTAwMDA2XSxbOTAuMDg4OTY5MDg3MDAwMDcsMjQuNzQyNjA4MjYwMDAwMDVdLFs5MC4wODg5MTUzMDgwMDAwOCwyNC43NDMwMzYxNTgwMDAwNV0sWzkwLjA4ODc5NzczNjAwMDA2LDI0Ljc0NDE0OTkyMTAwMDAzXSxbOTAuMDg4NDk1NjU0MDAwMDQsMjQuNzUxODA4NzgwMDAwMDNdLFs5MC4wODg2NDA1NDUwMDAwMywyNC43NTIxNTY0MDUwMDAwNV0sWzkwLjA5MDczNzA4MTAwMDA0LDI0Ljc1MzE4NTMwMDAwMDA0XSxbOTAuMDkwODMxOTkyMDAwMDYsMjQuNzUzMjIzMDYyMDAwMDddLFs5MC4wOTE4ODM4MjgwMDAwNSwyNC43NTMzMTU1NTcwMDAwNl0sWzkwLjA5MjQ1OTA0NTAwMDA2LDI0Ljc1MzM2NTQ0MjAwMDA3XSxbOTAuMDkzNjU1MjE3MDAwMDUsMjQuNzUzNDUyNzU2MDAwMDZdLFs5MC4wOTM5NDI5NzAwMDAwNiwyNC43NTM0NjQ0MzAwMDAwN10sWzkwLjA5NjU3NDA1NzAwMDA1LDI0Ljc1MzgxNzgwNTAwMDA0XSxbOTAuMDk3OTc0MzI0MDAwMDYsMjQuNzU2MDA2NDU5MDAwMDVdLFs5MC4wOTgwMzExMjQwMDAwNCwyNC43NTYzMTE3OTgwMDAwN10sWzkwLjA5ODAyMTI1OTAwMDA2LDI0Ljc1NjM0NTY3MjAwMDA3XSxbOTAuMDkxNjAzMjEwMDAwMDcsMjQuNzY4NTExMTM5MDAwMDVdLFs5MC4wODY1OTc5NjYwMDAwNiwyNC43NzU4NTcyMzYwMDAwNF1dXV19fQ==" + } + } + ] + } + ] +} diff --git a/src/tests/util.ts b/src/tests/util.ts new file mode 100644 index 0000000000..62bd39d779 --- /dev/null +++ b/src/tests/util.ts @@ -0,0 +1,15 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ +export function createServerWithEnvironment(env: any) { + jest.resetModules() + process.env = { ...process.env, ...env } + return require('../').createServer() +} diff --git a/src/translations/client.csv b/src/translations/client.csv index e068a62b5a..40c64f784e 100644 --- a/src/translations/client.csv +++ b/src/translations/client.csv @@ -297,6 +297,7 @@ constants.gender,Gender label,Gender,Sexe constants.healthDivision,The description for HEALTH_DIVISION type,Health Division,Division de la santé constants.healthcareWorker,The description for Healthcare Worker type,Healthcare Worker,Travailleur de la santé constants.history,History heading,History,Histoire +constants.history,History heading,History,Histoire constants.humanName,Formatted full name,{firstName} {middleName} {lastName},{firstName} {middleName} {lastName} constants.id,ID Label,ID,ID constants.idCheckWithoutVerify,Issuance without the confirmation of proof,Continue without proof of ID?,Continuer sans preuve d'identité? @@ -322,6 +323,7 @@ constants.last30Days,Label for preset date range Last 30 days,Last 30 days,30 d constants.lastEdited,Label for rejection date in work queue list item,Last edited,Dernière édition constants.lastUpdated,Label for Last updated in list item,Last update,Dernière mise à jour constants.loadMore,A label for load more,Load more,Charger plus +constants.localLeader,The description for Community Leader type,Community Leader,Leader communautaire constants.localRegistrar,The description for LOCAL_REGISTRAR role,Registrar,Officier d'état civil de district constants.location,Label for location,Location,Situation géographique constants.male,The duplicates text for male,Male,Homme @@ -383,6 +385,7 @@ constants.sent_incomplete,Declaration submitted without completing the required constants.showMore,Label for show more link,Show next {pageSize},Afficher la page suivante {pageSize} constants.skipToMainContent,Label for a keyboard accessibility link which skips to the main content,Skip to main content,Sauter au contenu principal constants.socialWorker,The description for Hospital Clerk type,Hospital Clerk,Commis d'hôpital +constants.socialWorker,The description for Hospital Clerk type,Hospital Clerk,Commis d'hôpital constants.startedAt,Label for Started At in list item,Started,Initié par constants.startedBy,Label for Started by in list item,Started by,Initié par constants.stateRegistrar,The description for STATE_REGISTRAR role,State Registrar,Administrateur civil @@ -1341,6 +1344,7 @@ form.field.label.someoneElse,Other Label,Someone else,Quelqu'un d'autre form.field.label.someoneElseCollector,,Print and issue to someone else,Imprimer et remettre à quelqu'un d'autre form.field.label.spouseDetailsExist,,Spouse's details are not available,Pas d'information sur le conjoint form.field.label.state,Label for State,Province,Province +form.field.label.typeOfDocument,,Choose type of supporting document,Choisissez le type de document form.field.label.typeOfId,,Type of ID,Type d'identification form.field.label.typeOfMarriage,,Type of marriage,Type de mariage form.field.label.updatingUser,,Updating user,Mise à jour de l'utilisateur @@ -1359,6 +1363,7 @@ form.field.label.verbalAutopsyReport,,Verbal autopsy report,Rapport d'autopsie v form.field.label.weightAtBirth,,Weight at birth,Poids à la naissance form.field.nidNotVerified,,Authenticate,Authentifier form.field.nidNotVerifiedReviewSection,,Unauthenticated,Non authentifié +form.field.nidOffline,,National ID authentication is currently not available offline.,L'authentification de la carte d'identité nationale n'est actuellement pas disponible hors ligne. form.field.nidVerificationOngoing,Label for indicating offline status for the user. NID verification is not currently available offline.,National ID authentication is currently not available offline.,L'authentification de l'identifiant national n'est actuellement pas disponible hors ligne form.field.nidVerified,,Authenticated,Authentifié form.field.previewGroups.primaryAddress,,Usual place of residence,Adresse résidentielle @@ -2141,17 +2146,19 @@ user.profile.roleType,Title for roleType field,Role,Rôle/Type user.profile.sectionTitle.audit,Title for audit section,History,Historique user.profile.startDate,Title for startDate field,Start date,Date de début user.profile.userName,Title for userName field,Username,Nom d'utilisateur +userRole.administrator,Name for user role Administrator,Administrator,Administrateur +userRole.communityLeader, Name for user role Community Leader,Community Leader,Leader communautaire userRole.communityLeader,Name for user role Community Leader,Community Leader,Leader communautaire userRole.fieldAgent,Name for user role Field Agent,Field Agent,Agent de terrain userRole.healthcareWorker,Name for user role Healthcare Worker,Healthcare Worker,Personnel de santé +userRole.hospitalClerk, Name for user role Hospital Clerk, Hospital Clerk,Clerk d'hôpital userRole.hospitalClerk,Name for user role Hospital Clerk,Hospital Clerk,Commis d'hôpital userRole.localRegistrar,Name for user role Local Registrar,Local Registrar,Registraire local -userRole.localSystemAdmin,Name for user role Local System Admin,Local System Admin,Administrateur système local -userRole.nationalRegistrar,Name for user role National Registrar,National Registrar,Registraire national -userRole.nationalSystemAdmin,Name for user role National System Admin,National System Admin,Administrateur système national -userRole.performanceManager,Name for user role Performance Manager,Performance Manager,Gestion des performances +userRole.nationalAdministrator,Name for user role National Administrator,National Administrator,Administrateur national +userRole.operationsManager,Name for user role Operations Manager,Operations Manager,Responsable des opérations userRole.policeOfficer,Name for user role Police Officer,Police Officer,Officier de police -userRole.registrationAgent,Name for user role Registration Agent,Registration Agent,Agent d'enregistrement +userRole.registrarGeneral, Name for user role Registrar General,Registrar General,Registraire général +userRole.registrationOfficer,Name for user role Registration Officer,Registration Officer,Agent d'enregistrement userSetup.complete.instruction,Instruction for the setup complete,Login to your account with your username and newly created password,Connectez-vous maintenant à votre compte avec votre nom d'utilisateur et votre mot de passe nouvellement créé. userSetup.complete.title,Title for the setup complete page,Account setup complete,Configuration du compte terminée userSetup.instruction,User setup review page instruction,Check the details below to confirm your account details are correct,Vérifiez les détails ci-dessous pour confirmer que les détails de votre compte sont corrects. et faites les changements nécessaires pour confirmer que les détails de votre compte sont corrects. @@ -2236,6 +2243,9 @@ verifyCertificate.successTitle,title for success alert,Valid QR code,Code QR val verifyCertificate.successUrl,title for success alert for url validation,URL Verification,Vérification des URL verifyCertificate.timeOut,message when time out after few minute,You been timed out,Délais expirée verifyCertificate.toastMessage,Message for the toast when time spend 1 minute,"After verifying the certificate, please close the browser window","Après avoir vérifié le certificat, veuillez fermer la fenêtre du navigateur." +views.idReader.label.eSignet,E-signet button label,Authenticate with e-Signet,S'authentifier avec e-Signet +views.idReader.label.manualInput,Label that shows below the divider on the id reader component,Complete fields below,Complétez les champs ci-dessous +views.idReader.label.or,Label that shows on the divider,Or,Ou views.idVerification.banner.actions.reset,,Reset,Réinitialiser views.idVerification.banner.actions.revoke,,Revoke,Révoquer views.idVerification.banner.authenticated.description,,"This identity has been successfully authenticated with the Farajaland’s National ID System. To make edits, please remove the authentication first.",Cette identité a été authentifiée avec succès avec le système national d'identité de Farajaland. @@ -2243,6 +2253,7 @@ views.idVerification.banner.authenticated.resetConfirmation.description,,"By cli views.idVerification.banner.authenticated.resetConfirmation.title,,Revoke authenticated ID?,Révoquer une pièce d'identité authentifiée? views.idVerification.banner.authenticated.title,,ID Authenticated,ID authentifié views.idVerification.banner.failed.description,,The identity data does not match an entry in Farajaland's National ID System,Les données d'identité ne correspondent pas à une entrée du système national d'identification du Farajaland. +views.idVerification.banner.failed.description,,The identity data does not match an entry in Farajaland's National ID System,Les données d'identité ne correspondent pas à une entrée du système national d'identification du Farajaland. views.idVerification.banner.failed.resetConfirmation.description,,"By clicking ‘Continue,’ you’ll clear all information to it’s default state.","En cliquant sur «Continuer», vous effacerez toutes les informations de son état par défaut." views.idVerification.banner.failed.resetConfirmation.title,,Reset information?,Réinitialiser les informations? views.idVerification.banner.failed.title,,ID Verification Failed,La vérification d'identification a échoué diff --git a/src/upgrade-to-1_7.ts b/src/upgrade-to-1_7.ts index 3862bae784..f095d6270b 100644 --- a/src/upgrade-to-1_7.ts +++ b/src/upgrade-to-1_7.ts @@ -102,6 +102,7 @@ const DEFAULT_ROLE_SCOPES_PRE_1_7 = { SCOPES.PERFORMANCE_READ_DASHBOARDS, SCOPES.PROFILE_ELECTRONIC_SIGNATURE, SCOPES.ORGANISATION_READ_LOCATIONS_MY_OFFICE, + SCOPES.USER_READ_MY_OFFICE, SCOPES.SEARCH_BIRTH, SCOPES.SEARCH_DEATH, SCOPES.SEARCH_MARRIAGE diff --git a/src/utils/address-utils.ts b/src/utils/address-utils.ts index e891ca74d5..1553cf1d2b 100644 --- a/src/utils/address-utils.ts +++ b/src/utils/address-utils.ts @@ -311,7 +311,7 @@ export function getPlaceOfEventConditionals( )}${sentenceCase(section)})` } ] - case 'configurableAddressLines': + case 'ruralOrUrban': return getLocationLevelConditionals(section, useCase, [ { action: 'hide', @@ -333,6 +333,62 @@ export function getPlaceOfEventConditionals( )}${sentenceCase(section)})` } ]) + case 'urban': + return getLocationLevelConditionals(section, useCase, [ + { + action: 'hide', + expression: `!values.country${sentenceCase(useCase)}${sentenceCase( + section + )}` + }, + { + action: 'hide', + expression: + useCase !== EventLocationAddressCases.PLACE_OF_MARRIAGE + ? `values.${useCase}!="OTHER" && values.${useCase}!="PRIVATE_HOME"` + : '' + }, + { + action: 'hide', + expression: `values.ruralOrUrban${sentenceCase( + useCase + )}${sentenceCase(section)} !== "URBAN"` + }, + { + action: 'hide', + expression: `!isDefaultCountry(values.country${sentenceCase( + useCase + )}${sentenceCase(section)})` + } + ]) + case 'rural': + return getLocationLevelConditionals(section, useCase, [ + { + action: 'hide', + expression: `!values.country${sentenceCase(useCase)}${sentenceCase( + section + )}` + }, + { + action: 'hide', + expression: + useCase !== EventLocationAddressCases.PLACE_OF_MARRIAGE + ? `values.${useCase}!="OTHER" && values.${useCase}!="PRIVATE_HOME"` + : '' + }, + { + action: 'hide', + expression: `values.ruralOrUrban${sentenceCase( + useCase + )}${sentenceCase(section)} !== "RURAL"` + }, + { + action: 'hide', + expression: `!isDefaultCountry(values.country${sentenceCase( + useCase + )}${sentenceCase(section)})` + } + ]) case 'international': return [ { @@ -507,7 +563,22 @@ export function getAddressConditionals( )}${sentenceCase(section)})` } ] - case 'configurableAddressLines': + case 'ruralOrUrban': + return getLocationLevelConditionals(section, useCase, [ + { + action: 'hide', + expression: `!values.country${sentenceCase(useCase)}${sentenceCase( + section + )}` + }, + { + action: 'hide', + expression: `!isDefaultCountry(values.country${sentenceCase( + useCase + )}${sentenceCase(section)})` + } + ]) + case 'urban': return getLocationLevelConditionals(section, useCase, [ { action: 'hide', @@ -515,6 +586,33 @@ export function getAddressConditionals( section )}` }, + { + action: 'hide', + expression: `values.ruralOrUrban${sentenceCase( + useCase + )}${sentenceCase(section)} !== "URBAN"` + }, + { + action: 'hide', + expression: `!isDefaultCountry(values.country${sentenceCase( + useCase + )}${sentenceCase(section)})` + } + ]) + case 'rural': + return getLocationLevelConditionals(section, useCase, [ + { + action: 'hide', + expression: `!values.country${sentenceCase(useCase)}${sentenceCase( + section + )}` + }, + { + action: 'hide', + expression: `values.ruralOrUrban${sentenceCase( + useCase + )}${sentenceCase(section)} !== "RURAL"` + }, { action: 'hide', expression: `!isDefaultCountry(values.country${sentenceCase( diff --git a/src/utils/fhir.ts b/src/utils/fhir.ts new file mode 100644 index 0000000000..43353d132f --- /dev/null +++ b/src/utils/fhir.ts @@ -0,0 +1,392 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ +// Copypasted types from @opencrvs/commons +// For this reason, here are shortcuts and `!` assertions, as we haven't copypasted ALL types from @opencrvs/commons + +declare const __nominal__type: unique symbol +type Nominal = Type & { + readonly [__nominal__type]: Identifier +} + +type FhirResourceType = + | fhir.Resource['resourceType'] + | 'TaskHistory' + | 'CompositionHistory' + +type UUID = Nominal + +// Patient/${UUID} +type ResourceIdentifier< + Resource extends { resourceType: FhirResourceType } = { + resourceType: FhirResourceType + } +> = `${Resource['resourceType']}/${UUID}` + +export type TrackingID = Nominal +export type RegistrationNumber = Nominal + +export type TaskStatus = + | 'IN_PROGRESS' + | 'ARCHIVED' + | 'DECLARED' + | 'DECLARATION_UPDATED' + | 'WAITING_VALIDATION' + | 'CORRECTION_REQUESTED' + | 'VALIDATED' + | 'REGISTERED' + | 'CERTIFIED' + | 'REJECTED' + | 'ISSUED' +export type Resource = fhir.Resource +export type Task = Omit< + fhir.Task, + | 'lastModified' + | 'status' + | 'extension' + | 'businessStatus' + | 'intent' + | 'identifier' + | 'code' +> & { + lastModified: string + status: 'ready' | 'requested' | 'draft' | 'accepted' | 'rejected' + // Keeping this any, as it may be not be required to be typed for now + extension: Array + businessStatus: Omit & { + coding: Array< + Omit & { + system: 'http://opencrvs.org/specs/reg-status' + code: TaskStatus + } + > + } + intent?: fhir.Task['intent'] + // Keeping this any, as it may be not be required to be typed for now + identifier: Array + code: Omit & { + coding: Array< + Omit & { + system: 'http://opencrvs.org/specs/types' + code: 'BIRTH' | 'DEATH' | 'MARRIAGE' + } + > + } + // This field is missing from the fhir spec + // @todo Where exactly it's used? + encounter?: fhir.Reference +} + +export type SavedTask = Omit & { + id: UUID + focus: { + reference: ResourceIdentifier + } +} + +export function isComposition( + resource: T +): resource is T & fhir.Composition & { id: UUID } { + return resource.resourceType === 'Composition' +} + +export function getComposition(bundle: T) { + const composition = bundle + .entry!.map(({ resource }) => resource!) + .find(isComposition) + + if (!composition) { + throw new Error('Composition not found in bundle') + } + + return composition +} + +const EVENTS = { + BIRTH: 'BIRTH' as const, + DEATH: 'DEATH' as const, + MARRIAGE: 'MARRIAGE' as const +} +type ValueOf = T[keyof T] +type EVENT_TYPE = ValueOf + +const FHIR_TO_OPENCRVS_EVENT_MAP = { + 'birth-notification': EVENTS.BIRTH, + 'birth-declaration': EVENTS.BIRTH, + 'death-notification': EVENTS.DEATH, + 'death-declaration': EVENTS.DEATH, + 'marriage-notification': EVENTS.MARRIAGE, + 'marriage-declaration': EVENTS.MARRIAGE +} + +function getCompositionEventType(composition: fhir.Composition) { + const eventType = composition?.type?.coding?.[0] + .code as keyof typeof FHIR_TO_OPENCRVS_EVENT_MAP + return eventType && (FHIR_TO_OPENCRVS_EVENT_MAP[eventType] as EVENT_TYPE) +} + +export function getEventType(fhirBundle: fhir.Bundle) { + const composition = fhirBundle.entry?.find( + (item) => item.resource?.resourceType === 'Composition' + )?.resource as fhir.Composition + if (composition) { + return getCompositionEventType(composition as fhir.Composition) + } + throw new Error('Composition not found in FHIR bundle') +} + +export function resourceIdentifierToUUID( + resourceIdentifier: ResourceIdentifier +) { + const urlParts = resourceIdentifier.split('/') + return urlParts[urlParts.length - 1] as UUID +} + +export type URNReference = `urn:uuid:${UUID}` + +export function isURNReference(id: string): id is URNReference { + return id.startsWith('urn:uuid:') +} + +export function isSaved(resource: T) { + return resource.id !== undefined +} + +export function findEntryFromBundle( + bundle: fhir.Bundle, + reference: fhir.Reference['reference'] +) { + return isURNReference(reference!) + ? bundle.entry!.find((entry) => entry.fullUrl === reference) + : bundle.entry!.find( + (entry) => + isSaved(entry.resource!) && + entry.resource!.id === + resourceIdentifierToUUID(reference as ResourceIdentifier) + ) +} + +function getFromBundleById(bundle: fhir.Bundle, id: string) { + const resource = bundle.entry?.find((item) => item.resource?.id === id) + + if (!resource) { + throw new Error('Resource not found in bundle with id ' + id) + } + + if (!resource.fullUrl) { + throw new Error( + 'A resource was found but it did not have a fullUrl. This should not happen.' + ) + } + + return resource +} + +function findCompositionSection( + code: string, + composition: T +) { + return composition.section!.find((section) => + section.code!.coding!.some((coding) => coding.code === code) + ) +} + +export function findEntry( + code: string, + composition: fhir.Composition, + bundle: fhir.Bundle +) { + const patientSection = findCompositionSection(code, composition) + if (!patientSection || !patientSection.entry) { + return undefined + } + const reference = patientSection.entry[0].reference + return getFromBundleById(bundle, reference!.split('/')[1]).resource +} + +export function getChild(record: fhir.Bundle) { + const composition = getComposition(record) + return findEntry('child-details', composition, record) as fhir.Patient +} + +export function findQuestionnaireResponse(record: fhir.Bundle, item: string) { + const questionnaireResponses = record.entry?.find( + ({ resource }) => resource?.resourceType === 'QuestionnaireResponse' + )?.resource as fhir.QuestionnaireResponse | undefined + + return questionnaireResponses?.item?.find(({ text }) => text === item) + ?.answer?.[0].valueString +} + +export const getQuestionnaireResponseAnswer = ( + bundle: fhir.Bundle, + question: string +) => { + const resourceType = bundle.entry?.find( + (entry) => entry.resource?.resourceType === 'QuestionnaireResponse' + ) + const questionnaireResponse: any = resourceType?.resource + + const answer = questionnaireResponse?.item?.find( + (item: any) => item.text === question + ) + + if (answer) { + // for the current answer fields, type --> valueString + // for number fields type can be different + return answer.answer[0].valueString + } else { + return '' + } +} + +export function getChildFullName(bundle: fhir.Bundle) { + const child = getChild(bundle) + return child.name?.[0]?.given?.join(' ') + ' ' + child.name?.[0]?.family +} + +export function getChildBirthDate(bundle: fhir.Bundle) { + const child = getChild(bundle) + return child.birthDate +} + +export function getChildGender(bundle: fhir.Bundle) { + const child = getChild(bundle) + return child.gender +} + +export function getGuardian(bundle: fhir.Bundle) { + const composition = getComposition(bundle) + const mother = findEntry( + 'mother-details', + composition, + bundle + ) as fhir.Patient + + const father = findEntry( + 'father-details', + composition, + bundle + ) as fhir.Patient + return mother ?? father +} + +export function getGuardianFullName(bundle: fhir.Bundle) { + const guardian = getGuardian(bundle) + return guardian.name?.[0]?.given?.join(' ') + ' ' + guardian.name?.[0]?.family +} + +export function getReturnParentID(bundle: fhir.Bundle) { + const composition = getComposition(bundle) + const mother = findEntry( + 'mother-details', + composition, + bundle + ) as fhir.Patient + + const father = findEntry( + 'father-details', + composition, + bundle + ) as fhir.Patient + const motherID = mother.identifier?.[0].value + const fatherID = father.identifier?.[0].value + + if (motherID) { + return { + identifier: motherID, + type: mother.identifier?.[0].type?.coding?.[0].code + } + } else if (fatherID) { + return { + identifier: fatherID, + type: father.identifier?.[0].type?.coding?.[0].code + } + } else { + return { + identifier: '', + type: 'NOT_FOUND' + } + } +} + +export function getDeceased(record: fhir.Bundle) { + const composition = getComposition(record) + return findEntry('deceased-details', composition, record) as fhir.Patient +} + +export function getPatientNationalId(patient: fhir.Patient) { + const identifier = patient.identifier?.find( + (identifier) => identifier.type?.coding?.[0].code === 'NATIONAL_ID' + ) + if (!identifier?.value) { + throw new Error('National ID not found in patient') + } + return identifier.value +} + +export function getInformantPatient(record: fhir.Bundle) { + const compositionSection = findCompositionSection( + 'informant-details', + getComposition(record) + ) + if (!compositionSection) return undefined + const personSectionEntry = compositionSection.entry![0] + const relatedPersonEntry = findEntryFromBundle( + record, + personSectionEntry.reference + ) + const reference = (relatedPersonEntry?.resource as fhir.RelatedPerson).patient + .reference + return getFromBundleById(record, reference!.split('/')[1]) + .resource as fhir.Patient +} + +export function getInformantFullName(bundle: fhir.Bundle) { + const informant = getInformantPatient(bundle) + return ( + informant?.name?.[0]?.given?.join(' ') + ' ' + informant?.name?.[0]?.family + ) +} + +export function getEmailFromTaskResource( + taskResource: fhir.Task +): string | undefined { + const emailIdentifier = taskResource?.extension?.find( + (ext) => + ext.url === 'http://opencrvs.org/specs/extension/contact-person-email' + ) + return emailIdentifier?.valueString +} +export function getPhoneNumberFromTaskResource( + taskResource: fhir.Task +): string | undefined { + const phoneIdentifier = taskResource?.extension?.find( + (ext) => + ext.url === + 'http://opencrvs.org/specs/extension/contact-person-phone-number' + ) + return phoneIdentifier?.valueString +} + +export function getInformantRelation(record: fhir.Bundle) { + const compositionSection = findCompositionSection( + 'informant-details', + getComposition(record) + ) + if (!compositionSection) return undefined + const personSectionEntry = compositionSection.entry![0] + const relatedPerson = findEntryFromBundle( + record, + personSectionEntry.reference + )?.resource as fhir.RelatedPerson + + return relatedPerson?.relationship?.coding?.[0]?.code +} diff --git a/src/utils/index.ts b/src/utils/index.ts index 9c0c87054a..9c1e6a2b88 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -11,9 +11,11 @@ import fetch from 'node-fetch' import { APPLICATION_CONFIG_URL, FHIR_URL } from '@countryconfig/constants' +import { callingCountries } from 'country-data' import csv2json from 'csv2json' import { createReadStream } from 'fs' import fs from 'fs' +import { PhoneNumberFormat, PhoneNumberUtil } from 'google-libphonenumber' import { URL } from 'url' import { build } from 'esbuild' import { memoize } from 'lodash' @@ -23,6 +25,7 @@ export const DECEASED_CODE = 'deceased-details' export const OPENCRVS_SPECIFICATION_URL = 'http://opencrvs.org/specs/' import { join } from 'path' import { stringify } from 'csv-stringify/sync' +import { promisify } from 'util' export interface ILocation { id?: string @@ -163,6 +166,21 @@ export async function updateResourceInHearth(resource: fhir.ResourceBase) { return res.text() } +export const convertToMSISDN = (phone: string, countryAlpha3: string) => { + const countryCode = callingCountries[countryAlpha3.toUpperCase()].alpha2 + + const phoneUtil = PhoneNumberUtil.getInstance() + const number = phoneUtil.parse(phone, countryCode) + + return ( + phoneUtil + .format(number, PhoneNumberFormat.INTERNATIONAL) + // libphonenumber adds spaces and dashes to phone numbers, + // which we do not want to keep for now + .replace(/[\s-]/g, '') + ) +} + export async function writeJSONToCSV( filename: string, data: Array> diff --git a/src/utils/mapping/section/birth/mapping-utils.ts b/src/utils/mapping/section/birth/mapping-utils.ts index 3326646719..c3961f44ad 100644 --- a/src/utils/mapping/section/birth/mapping-utils.ts +++ b/src/utils/mapping/section/birth/mapping-utils.ts @@ -80,6 +80,11 @@ export function getSectionMapping(mappingId: string): ISectionMapping { case 'child': return { template: [ + { + fieldName: 'childIdentifier', + operation: 'childIdentityToFieldTransformer', + parameters: [['NATIONAL_ID']] + }, { fieldName: 'birthConfigurableIdentifier1', operation: 'childIdentityToFieldTransformer', diff --git a/src/utils/mosip.ts b/src/utils/mosip.ts new file mode 100644 index 0000000000..2368bda893 --- /dev/null +++ b/src/utils/mosip.ts @@ -0,0 +1,192 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ + +import { differenceInYears } from 'date-fns' +import { + getEventType, + getChild, + getInformantRelation, + getComposition, + getChildBirthDate, + getChildFullName, + getChildGender, + getEmailFromTaskResource, + getInformantFullName, + getPhoneNumberFromTaskResource, + getDeceased, + getPatientNationalId, + findQuestionnaireResponse +} from './fhir' +import { fhirBundleToMOSIPPayload } from '@opencrvs/mosip' +import { createUniqueRegistrationNumberFromBundle } from '../api/event-registration/service' +import { getTaskResource, getTrackingIdFromTaskResource } from '.' +import { logger } from '@countryconfig/logger' + +interface VerificationStatus { + father: boolean + mother: boolean + informant: boolean + spouse: boolean +} + +/** + * Determines whether the registration data should be forwarded to the identity system + * for unique ID creation based on the custom country specific logic built on verification statuses. + */ +export function shouldForwardToIDSystem( + bundle: fhir.Bundle, + verificationStatus: Partial +) { + // IDA Auth + const { + father: isFatherVerified, + mother: isMotherVerified, + informant: isInformantVerified, + spouse: isSpouseVerified + } = verificationStatus + + // E-Signet + const isFatherAuthenticated = + findQuestionnaireResponse( + bundle, + 'birth.father.father-view-group.verified' + ) === 'authenticated' + + const isMotherAuthenticated = + findQuestionnaireResponse( + bundle, + 'birth.mother.mother-view-group.verified' + ) === 'authenticated' + + const isInformantAuthenticated = + findQuestionnaireResponse( + bundle, + 'birth.informant.informant-view-group.verified' + ) === 'authenticated' + + const isSpouseAuthenticated = + findQuestionnaireResponse( + bundle, + 'death.spouse.spouse-view-group.verified' + ) === 'authenticated' + + const eventType = getEventType(bundle) + if (eventType === 'BIRTH') { + const child = getChild(bundle) + const childBirthDate = new Date(child.birthDate as string) + return ( + differenceInYears(new Date(), childBirthDate) < 10 && + (isFatherVerified || + isFatherAuthenticated || + isMotherVerified || + isMotherAuthenticated) + ) + } else if (eventType === 'DEATH') { + const relation = getInformantRelation(bundle) + if (relation === 'SPOUSE') { + return isSpouseVerified || isSpouseAuthenticated + } + return isInformantAuthenticated || isInformantVerified + } else return true +} + +/** + * Converts the birth bundle from OpenCRVS to a MOSIP bundle + */ +export const fhirBirthToMosip = (bundle: fhir.Bundle) => { + return fhirBundleToMOSIPPayload(bundle, { + compositionId: (bundle) => { + const composition = getComposition(bundle) + return composition.id + }, + trackingId: (bundle) => { + const task = getTaskResource(bundle) + return (task && getTrackingIdFromTaskResource(task)) || '' + }, + notification: { + recipientFullName: (bundle) => getInformantFullName(bundle) || '', + recipientPhone: (bundle) => { + const task = getTaskResource(bundle) + return (task && getPhoneNumberFromTaskResource(task)) || '' + }, + recipientEmail: (bundle) => { + const task = getTaskResource(bundle) + return (task && getEmailFromTaskResource(task)) || '' + } + }, + requestFields: { + fullName: (bundle) => getChildFullName(bundle), + dateOfBirth: (bundle) => getChildBirthDate(bundle) ?? '', + gender: (bundle) => getChildGender(bundle) ?? '', + birthCertificateNumber: (bundle) => + createUniqueRegistrationNumberFromBundle(bundle).registrationNumber + }, + audit: { + id: (bundle) => { + const composition = getComposition(bundle) + return composition.id + } + } + }) +} + +/** + * Converts the birth bundle from OpenCRVS to a MOSIP bundle + */ +export const fhirDeathToMosip = (bundle: fhir.Bundle) => { + return fhirBundleToMOSIPPayload(bundle, { + compositionId: (bundle) => { + const composition = getComposition(bundle) + return composition.id + }, + trackingId: (bundle) => { + const task = getTaskResource(bundle) + return (task && getTrackingIdFromTaskResource(task)) || '' + }, + notification: { + recipientFullName: (bundle) => getInformantFullName(bundle) || '', + recipientPhone: (bundle) => { + const task = getTaskResource(bundle) + return (task && getPhoneNumberFromTaskResource(task)) || '' + }, + recipientEmail: (bundle) => { + const task = getTaskResource(bundle) + return (task && getEmailFromTaskResource(task)) || '' + } + }, + requestFields: { + deathCertificateNumber: (bundle) => + createUniqueRegistrationNumberFromBundle(bundle).registrationNumber, + nationalIdNumber: (bundle) => { + let deceased + try { + deceased = getDeceased(bundle) + } catch (error) { + logger.error('Error getting deceased from bundle', error) + return '' + } + try { + return (deceased && getPatientNationalId(deceased)) || '' + } catch (error) { + // If using E-Signet, we don't know the National ID but for demonstrating purposes it's ok + logger.error('Error getting national ID from deceased', error) + return '' + } + } + }, + audit: { + id: (bundle) => { + const composition = getComposition(bundle) + return composition.id + } + } + }) +} diff --git a/start-prod.sh b/start-prod.sh index d547d0d71e..83edd95e6f 100755 --- a/start-prod.sh +++ b/start-prod.sh @@ -16,4 +16,16 @@ sed -i "s/{{hostname}}/$DOMAIN/g" src/login-config.prod.js sed -i "s={{sentry}}=$SENTRY_DSN=g" src/client-config.prod.js sed -i "s={{sentry}}=$SENTRY_DSN=g" src/login-config.prod.js +DEFAULT_MINIO_BUCKET="ocrvs" +MINIO_BUCKET="${E2E_MINIO_BUCKET:-$DEFAULT_MINIO_BUCKET}" + +# '//' is used to indicate a protocol-relative URL. Protocol is resolved at runtime. +DEFAULT_MINIO_BASE_URL="//minio.$DOMAIN" +# E2E environment needs to override the MinIO base URL. +# To keep the configuration experience consistent, all the URL envs are given *with protocol*. This exception is handled in client-config.prod.js. +MINIO_BASE_URL="${E2E_MINIO_BASE_URL:-$DEFAULT_MINIO_BASE_URL}" +# Replace the MinIO bucket placeholder. Only e2e should override this without migration. +sed -i "s/{{minio_bucket}}/$MINIO_BUCKET/g" src/client-config.prod.js +sed -i "s|{{minio_base_url}}|$MINIO_BASE_URL|g" src/client-config.prod.js + yarn start:prod diff --git a/tsconfig.json b/tsconfig.json index 34a6186db1..535ffb2288 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,10 +8,9 @@ "module": "Node16", "outDir": "build/dist", "sourceMap": true, - "resolveJsonModule": true, "moduleResolution": "node16", "rootDir": ".", - "lib": ["esnext.asynciterable", "es6", "es2017", "es2019", "es2022"], + "lib": ["esnext.asynciterable", "es6", "es2017", "es2019", "es2022", "dom"], "forceConsistentCasingInFileNames": true, "esModuleInterop": true, "noImplicitReturns": true, @@ -19,12 +18,16 @@ "noImplicitAny": true, "skipLibCheck": true, "strictNullChecks": true, - "types": ["fhir", "geojson"] + "types": ["jest", "fhir", "geojson"] }, - "include": ["src/**/*.ts", "infrastructure/environments/**/*.ts", "typings"], + "include": [ + "src/**/*.ts", + "infrastructure/environments/**/*.ts", + "typings", + "e2e/**/*.ts" + ], "exclude": [ "node_modules", - "cypress", "build", "scripts", "acceptance-tests", diff --git a/typings/country-data.d.ts b/typings/country-data.d.ts new file mode 100644 index 0000000000..7f2dd2e339 --- /dev/null +++ b/typings/country-data.d.ts @@ -0,0 +1,11 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * OpenCRVS is also distributed under the terms of the Civil Registration + * & Healthcare Disclaimer located at http://opencrvs.org/license. + * + * Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS. + */ +declare module 'country-data' diff --git a/yarn.lock b/yarn.lock index 97a1a6ae26..9ce5604f6e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,467 @@ # yarn lockfile v1 +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@ardatan/relay-compiler@12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz#2e4cca43088e807adc63450e8cab037020e91106" + integrity sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q== + dependencies: + "@babel/core" "^7.14.0" + "@babel/generator" "^7.14.0" + "@babel/parser" "^7.14.0" + "@babel/runtime" "^7.0.0" + "@babel/traverse" "^7.14.0" + "@babel/types" "^7.0.0" + babel-preset-fbjs "^3.4.0" + chalk "^4.0.0" + fb-watchman "^2.0.0" + fbjs "^3.0.0" + glob "^7.1.1" + immutable "~3.7.6" + invariant "^2.2.4" + nullthrows "^1.1.1" + relay-runtime "12.0.0" + signedsource "^1.0.0" + yargs "^15.3.1" + +"@ardatan/sync-fetch@^0.0.1": + version "0.0.1" + resolved "https://registry.yarnpkg.com/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz#3385d3feedceb60a896518a1db857ec1e945348f" + integrity sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA== + dependencies: + node-fetch "^2.6.1" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" + integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== + dependencies: + "@babel/helper-validator-identifier" "^7.25.9" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.25.9": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e" + integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg== + +"@babel/core@^7.14.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.14.0", "@babel/generator@^7.18.13", "@babel/generator@^7.25.9", "@babel/generator@^7.26.0": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f" + integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw== + dependencies: + "@babel/parser" "^7.26.2" + "@babel/types" "^7.26.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^3.0.2" + +"@babel/helper-annotate-as-pure@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4" + integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g== + dependencies: + "@babel/types" "^7.25.9" + +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" + integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== + dependencies: + "@babel/compat-data" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + browserslist "^4.24.0" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83" + integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + "@babel/traverse" "^7.25.9" + semver "^6.3.1" + +"@babel/helper-member-expression-to-functions@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3" + integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-imports@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" + integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-module-transforms@^7.25.9", "@babel/helper-module-transforms@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" + integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== + dependencies: + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-optimise-call-expression@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e" + integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ== + dependencies: + "@babel/types" "^7.25.9" + +"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" + integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== + +"@babel/helper-replace-supers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5" + integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.25.9" + "@babel/helper-optimise-call-expression" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/helper-simple-access@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz#6d51783299884a2c74618d6ef0f86820ec2e7739" + integrity sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-skip-transparent-expression-wrappers@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9" + integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== + dependencies: + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/helper-string-parser@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" + integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== + +"@babel/helper-validator-identifier@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" + integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== + +"@babel/helper-validator-option@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" + integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== + +"@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== + dependencies: + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" + +"@babel/parser@^7.14.0", "@babel/parser@^7.16.8", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2": + version "7.26.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11" + integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ== + dependencies: + "@babel/types" "^7.26.0" + +"@babel/plugin-proposal-class-properties@^7.0.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-object-rest-spread@^7.0.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.7" + +"@babel/plugin-syntax-class-properties@^7.0.0": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.25.9": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz#96507595c21b45fccfc2bc758d5c45452e6164fa" + integrity sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz#620412405058efa56e4a564903b79355020f445f" + integrity sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" + integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-transform-arrow-functions@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845" + integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-block-scoped-functions@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz#5700691dbd7abb93de300ca7be94203764fce458" + integrity sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-block-scoping@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz#c33665e46b06759c93687ca0f84395b80c0473a1" + integrity sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-classes@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52" + integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + "@babel/traverse" "^7.25.9" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz#db36492c78460e534b8852b1d5befe3c923ef10b" + integrity sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/template" "^7.25.9" + +"@babel/plugin-transform-destructuring@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz#966ea2595c498224340883602d3cfd7a0c79cea1" + integrity sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-flow-strip-types@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz#85879b42a8f5948fd6317069978e98f23ef8aec1" + integrity sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-flow" "^7.25.9" + +"@babel/plugin-transform-for-of@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz#4bdc7d42a213397905d89f02350c5267866d5755" + integrity sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + +"@babel/plugin-transform-function-name@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz#939d956e68a606661005bfd550c4fc2ef95f7b97" + integrity sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA== + dependencies: + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/traverse" "^7.25.9" + +"@babel/plugin-transform-literals@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz#1a1c6b4d4aa59bc4cad5b6b3a223a0abd685c9de" + integrity sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-member-expression-literals@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz#63dff19763ea64a31f5e6c20957e6a25e41ed5de" + integrity sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-modules-commonjs@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz#d165c8c569a080baf5467bda88df6425fc060686" + integrity sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg== + dependencies: + "@babel/helper-module-transforms" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-simple-access" "^7.25.9" + +"@babel/plugin-transform-object-super@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz#385d5de135162933beb4a3d227a2b7e52bb4cf03" + integrity sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-replace-supers" "^7.25.9" + +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz#b856842205b3e77e18b7a7a1b94958069c7ba257" + integrity sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-property-literals@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz#d72d588bd88b0dec8b62e36f6fda91cedfe28e3f" + integrity sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-react-display-name@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz#4b79746b59efa1f38c8695065a92a9f5afb24f7d" + integrity sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-react-jsx@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz#06367940d8325b36edff5e2b9cbe782947ca4166" + integrity sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-jsx" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/plugin-transform-shorthand-properties@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2" + integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/plugin-transform-spread@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz#24a35153931b4ba3d13cec4a7748c21ab5514ef9" + integrity sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.25.9" + +"@babel/plugin-transform-template-literals@^7.0.0": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz#6dbd4a24e8fad024df76d1fac6a03cf413f60fe1" + integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + +"@babel/runtime@^7.0.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.18.10", "@babel/template@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" + integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/types" "^7.25.9" + +"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84" + integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw== + dependencies: + "@babel/code-frame" "^7.25.9" + "@babel/generator" "^7.25.9" + "@babel/parser" "^7.25.9" + "@babel/template" "^7.25.9" + "@babel/types" "^7.25.9" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.25.9", "@babel/types@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff" + integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA== + dependencies: + "@babel/helper-string-parser" "^7.25.9" + "@babel/helper-validator-identifier" "^7.25.9" + "@cspotcode/source-map-support@^0.8.0": version "0.8.1" resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" @@ -251,14 +712,19 @@ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== -"@eslint/eslintrc@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" - integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== +"@eslint-community/regexpp@^4.6.1": + version "4.10.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" + integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== + +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== dependencies: ajv "^6.12.4" debug "^4.3.2" - espree "^9.5.2" + espree "^9.6.0" globals "^13.19.0" ignore "^5.2.0" import-fresh "^3.2.1" @@ -266,15 +732,15 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.43.0": - version "8.43.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.43.0.tgz#559ca3d9ddbd6bf907ad524320a0d14b85586af0" - integrity sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg== +"@eslint/js@8.57.0": + version "8.57.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" + integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== -"@faker-js/faker@^6.0.0-alpha.5": - version "6.3.1" - resolved "https://registry.yarnpkg.com/@faker-js/faker/-/faker-6.3.1.tgz#1ae963dd40405450a2945408cba553e1afa3e0fb" - integrity sha512-8YXBE2ZcU/pImVOHX7MWrSR/X5up7t6rPWZlk34RwZEcdr3ua6X+32pSd6XuOQRN+vbuvYNfA6iey8NbrjuMFQ== +"@faker-js/faker@^9.3.0": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@faker-js/faker/-/faker-9.3.0.tgz#ef398dab34c67faaa0e348318c905eae3564fa58" + integrity sha512-r0tJ3ZOkMd9xsu3VRfqlFR6cz0V/jFYRswAIpC+m/DIfAUXq7g8N7wTAlhSANySXYGKzGryfDXwtwsY8TxEIDw== "@formatjs/ecma402-abstract@2.2.3": version "2.2.3" @@ -347,6 +813,416 @@ intl-messageformat "10.7.6" tslib "2" +"@graphql-codegen/add@^3.1.1": + version "3.2.3" + resolved "https://registry.yarnpkg.com/@graphql-codegen/add/-/add-3.2.3.tgz#f1ecee085987e7c21841edc4b1fd48877c663e1a" + integrity sha512-sQOnWpMko4JLeykwyjFTxnhqjd/3NOG2OyMuvK76Wnnwh8DRrNf2VEs2kmSvLl7MndMlOj7Kh5U154dVcvhmKQ== + dependencies: + "@graphql-codegen/plugin-helpers" "^3.1.1" + tslib "~2.4.0" + +"@graphql-codegen/cli@^3.3.1": + version "3.3.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/cli/-/cli-3.3.1.tgz#103e7a2263126fdde168a1ce623fc2bdc05352f0" + integrity sha512-4Es8Y9zFeT0Zx2qRL7L3qXDbbqvXK6aID+8v8lP6gaYD+uWx3Jd4Hsq5vxwVBR+6flm0BW/C85Qm0cvmT7O6LA== + dependencies: + "@babel/generator" "^7.18.13" + "@babel/template" "^7.18.10" + "@babel/types" "^7.18.13" + "@graphql-codegen/core" "^3.1.0" + "@graphql-codegen/plugin-helpers" "^4.2.0" + "@graphql-tools/apollo-engine-loader" "^7.3.6" + "@graphql-tools/code-file-loader" "^7.3.17" + "@graphql-tools/git-loader" "^7.2.13" + "@graphql-tools/github-loader" "^7.3.20" + "@graphql-tools/graphql-file-loader" "^7.5.0" + "@graphql-tools/json-file-loader" "^7.4.1" + "@graphql-tools/load" "^7.8.0" + "@graphql-tools/prisma-loader" "^7.2.49" + "@graphql-tools/url-loader" "^7.13.2" + "@graphql-tools/utils" "^9.0.0" + "@parcel/watcher" "^2.1.0" + "@whatwg-node/fetch" "^0.8.0" + chalk "^4.1.0" + cosmiconfig "^7.0.0" + debounce "^1.2.0" + detect-indent "^6.0.0" + graphql-config "^4.5.0" + inquirer "^8.0.0" + is-glob "^4.0.1" + jiti "^1.17.1" + json-to-pretty-yaml "^1.2.2" + listr2 "^4.0.5" + log-symbols "^4.0.0" + micromatch "^4.0.5" + shell-quote "^1.7.3" + string-env-interpolation "^1.0.1" + ts-log "^2.2.3" + tslib "^2.4.0" + yaml "^1.10.0" + yargs "^17.0.0" + +"@graphql-codegen/core@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-3.1.0.tgz#ad859d52d509a4eb2ebe5aabba6543a628fb181b" + integrity sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.1.0" + "@graphql-tools/schema" "^9.0.0" + "@graphql-tools/utils" "^9.1.1" + tslib "~2.5.0" + +"@graphql-codegen/introspection@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/introspection/-/introspection-3.0.1.tgz#403c9bb12abf998a3bd37a519eb0fd01b537d64d" + integrity sha512-D6vJQTEL/np4EmeUHm5spLK59cr+AMXEoLRoTI+dagFzlHYDTfXZH6F7uhKaakxcj0SAQhIWKvGMggotUdEtyg== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.1.0" + "@graphql-codegen/visitor-plugin-common" "^3.0.1" + tslib "~2.5.0" + +"@graphql-codegen/plugin-helpers@^3.1.1": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz#69a2e91178f478ea6849846ade0a59a844d34389" + integrity sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg== + dependencies: + "@graphql-tools/utils" "^9.0.0" + change-case-all "1.0.15" + common-tags "1.8.2" + import-from "4.0.0" + lodash "~4.17.0" + tslib "~2.4.0" + +"@graphql-codegen/plugin-helpers@^4.1.0", "@graphql-codegen/plugin-helpers@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-4.2.0.tgz#8324914d0f99162a223cfa01796cdd6be972d2ae" + integrity sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A== + dependencies: + "@graphql-tools/utils" "^9.0.0" + change-case-all "1.0.15" + common-tags "1.8.2" + import-from "4.0.0" + lodash "~4.17.0" + tslib "~2.5.0" + +"@graphql-codegen/schema-ast@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-3.0.1.tgz#37b458bb57b95715a9eb4259341c856dae2a461d" + integrity sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.1.0" + "@graphql-tools/utils" "^9.0.0" + tslib "~2.5.0" + +"@graphql-codegen/typescript-operations@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-operations/-/typescript-operations-3.0.4.tgz#60163c07f0ef73655779ece450d02c1172c44027" + integrity sha512-6yE2OL2+WJ1vd5MwFEGXpaxsFGzjAGUytPVHDML3Bi3TwP1F3lnQlIko4untwvHW0JhZEGQ7Ck30H9HjcxpdKA== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.2.0" + "@graphql-codegen/typescript" "^3.0.4" + "@graphql-codegen/visitor-plugin-common" "3.1.1" + auto-bind "~4.0.0" + tslib "~2.5.0" + +"@graphql-codegen/typescript@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-3.0.4.tgz#e12dc106a2722ebc7d18556980ccf47fa9d0805f" + integrity sha512-x4O47447DZrWNtE/l5CU9QzzW4m1RbmCEdijlA3s2flG/y1Ckqdemob4CWfilSm5/tZ3w1junVDY616RDTSvZw== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.2.0" + "@graphql-codegen/schema-ast" "^3.0.1" + "@graphql-codegen/visitor-plugin-common" "3.1.1" + auto-bind "~4.0.0" + tslib "~2.5.0" + +"@graphql-codegen/visitor-plugin-common@3.1.1", "@graphql-codegen/visitor-plugin-common@^3.0.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-3.1.1.tgz#50c2aa3c537a805ce68d2f115d0a9811b151428c" + integrity sha512-uAfp+zu/009R3HUAuTK2AamR1bxIltM6rrYYI6EXSmkM3rFtFsLTuJhjUDj98HcUCszJZrADppz8KKLGRUVlNg== + dependencies: + "@graphql-codegen/plugin-helpers" "^4.2.0" + "@graphql-tools/optimize" "^1.3.0" + "@graphql-tools/relay-operation-optimizer" "^6.5.0" + "@graphql-tools/utils" "^9.0.0" + auto-bind "~4.0.0" + change-case-all "1.0.15" + dependency-graph "^0.11.0" + graphql-tag "^2.11.0" + parse-filepath "^1.0.2" + tslib "~2.5.0" + +"@graphql-tools/apollo-engine-loader@^7.3.6": + version "7.3.26" + resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.3.26.tgz#91e54460d5579933e42a2010b8688c3459c245d8" + integrity sha512-h1vfhdJFjnCYn9b5EY1Z91JTF0KB3hHVJNQIsiUV2mpQXZdeOXQoaWeYEKaiI5R6kwBw5PP9B0fv3jfUIG8LyQ== + dependencies: + "@ardatan/sync-fetch" "^0.0.1" + "@graphql-tools/utils" "^9.2.1" + "@whatwg-node/fetch" "^0.8.0" + tslib "^2.4.0" + +"@graphql-tools/batch-execute@^8.5.22": + version "8.5.22" + resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.5.22.tgz#a742aa9d138fe794e786d8fb6429665dc7df5455" + integrity sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A== + dependencies: + "@graphql-tools/utils" "^9.2.1" + dataloader "^2.2.2" + tslib "^2.4.0" + value-or-promise "^1.0.12" + +"@graphql-tools/code-file-loader@^7.3.17": + version "7.3.23" + resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz#33793f9a1f8e74981f8ae6ec4ab7061f9713db15" + integrity sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q== + dependencies: + "@graphql-tools/graphql-tag-pluck" "7.5.2" + "@graphql-tools/utils" "^9.2.1" + globby "^11.0.3" + tslib "^2.4.0" + unixify "^1.0.0" + +"@graphql-tools/delegate@^9.0.31": + version "9.0.35" + resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-9.0.35.tgz#94683f4bcec63520b4a6c8b2abf2e2e9324ea4f1" + integrity sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA== + dependencies: + "@graphql-tools/batch-execute" "^8.5.22" + "@graphql-tools/executor" "^0.0.20" + "@graphql-tools/schema" "^9.0.19" + "@graphql-tools/utils" "^9.2.1" + dataloader "^2.2.2" + tslib "^2.5.0" + value-or-promise "^1.0.12" + +"@graphql-tools/executor-graphql-ws@^0.0.14": + version "0.0.14" + resolved "https://registry.yarnpkg.com/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.14.tgz#e0f53fc4cfc8a06cc461b2bc1edb4bb9a8e837ed" + integrity sha512-P2nlkAsPZKLIXImFhj0YTtny5NQVGSsKnhi7PzXiaHSXc6KkzqbWZHKvikD4PObanqg+7IO58rKFpGXP7eeO+w== + dependencies: + "@graphql-tools/utils" "^9.2.1" + "@repeaterjs/repeater" "3.0.4" + "@types/ws" "^8.0.0" + graphql-ws "5.12.1" + isomorphic-ws "5.0.0" + tslib "^2.4.0" + ws "8.13.0" + +"@graphql-tools/executor-http@^0.1.7", "@graphql-tools/executor-http@^0.1.9": + version "0.1.10" + resolved "https://registry.yarnpkg.com/@graphql-tools/executor-http/-/executor-http-0.1.10.tgz#faf48e18e62a925796c9653c2f50cf2095bc8e6f" + integrity sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg== + dependencies: + "@graphql-tools/utils" "^9.2.1" + "@repeaterjs/repeater" "^3.0.4" + "@whatwg-node/fetch" "^0.8.1" + dset "^3.1.2" + extract-files "^11.0.0" + meros "^1.2.1" + tslib "^2.4.0" + value-or-promise "^1.0.12" + +"@graphql-tools/executor-legacy-ws@^0.0.11": + version "0.0.11" + resolved "https://registry.yarnpkg.com/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.11.tgz#a1e12be8279e92a363a23d4105461a34cd9e389e" + integrity sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw== + dependencies: + "@graphql-tools/utils" "^9.2.1" + "@types/ws" "^8.0.0" + isomorphic-ws "5.0.0" + tslib "^2.4.0" + ws "8.13.0" + +"@graphql-tools/executor@^0.0.20": + version "0.0.20" + resolved "https://registry.yarnpkg.com/@graphql-tools/executor/-/executor-0.0.20.tgz#d51d159696e839522dd49d936636af251670e425" + integrity sha512-GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA== + dependencies: + "@graphql-tools/utils" "^9.2.1" + "@graphql-typed-document-node/core" "3.2.0" + "@repeaterjs/repeater" "^3.0.4" + tslib "^2.4.0" + value-or-promise "^1.0.12" + +"@graphql-tools/git-loader@^7.2.13": + version "7.3.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-7.3.0.tgz#ca10c17d4f58c4592432d9d2ac1c2b393aebad16" + integrity sha512-gcGAK+u16eHkwsMYqqghZbmDquh8QaO24Scsxq+cVR+vx1ekRlsEiXvu+yXVDbZdcJ6PBIbeLcQbEu+xhDLmvQ== + dependencies: + "@graphql-tools/graphql-tag-pluck" "7.5.2" + "@graphql-tools/utils" "^9.2.1" + is-glob "4.0.3" + micromatch "^4.0.4" + tslib "^2.4.0" + unixify "^1.0.0" + +"@graphql-tools/github-loader@^7.3.20": + version "7.3.28" + resolved "https://registry.yarnpkg.com/@graphql-tools/github-loader/-/github-loader-7.3.28.tgz#a7166b136e8442bd8b3ab943ad3b66c84bcabfcf" + integrity sha512-OK92Lf9pmxPQvjUNv05b3tnVhw0JRfPqOf15jZjyQ8BfdEUrJoP32b4dRQQem/wyRL24KY4wOfArJNqzpsbwCA== + dependencies: + "@ardatan/sync-fetch" "^0.0.1" + "@graphql-tools/executor-http" "^0.1.9" + "@graphql-tools/graphql-tag-pluck" "^7.4.6" + "@graphql-tools/utils" "^9.2.1" + "@whatwg-node/fetch" "^0.8.0" + tslib "^2.4.0" + value-or-promise "^1.0.12" + +"@graphql-tools/graphql-file-loader@^7.3.7", "@graphql-tools/graphql-file-loader@^7.5.0": + version "7.5.17" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz#7c281617ea3ab4db4d42a2bdb49850f2b937f0f9" + integrity sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw== + dependencies: + "@graphql-tools/import" "6.7.18" + "@graphql-tools/utils" "^9.2.1" + globby "^11.0.3" + tslib "^2.4.0" + unixify "^1.0.0" + +"@graphql-tools/graphql-tag-pluck@7.5.2", "@graphql-tools/graphql-tag-pluck@^7.4.6": + version "7.5.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz#502f1e066e19d832ebdeba5f571d7636dc27572d" + integrity sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA== + dependencies: + "@babel/parser" "^7.16.8" + "@babel/plugin-syntax-import-assertions" "^7.20.0" + "@babel/traverse" "^7.16.8" + "@babel/types" "^7.16.8" + "@graphql-tools/utils" "^9.2.1" + tslib "^2.4.0" + +"@graphql-tools/import@6.7.18": + version "6.7.18" + resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.7.18.tgz#ad092d8a4546bb6ffc3e871e499eec7ac368680b" + integrity sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ== + dependencies: + "@graphql-tools/utils" "^9.2.1" + resolve-from "5.0.0" + tslib "^2.4.0" + +"@graphql-tools/json-file-loader@^7.3.7", "@graphql-tools/json-file-loader@^7.4.1": + version "7.4.18" + resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz#d78ae40979bde51cfc59717757354afc9e35fba2" + integrity sha512-AJ1b6Y1wiVgkwsxT5dELXhIVUPs/u3VZ8/0/oOtpcoyO/vAeM5rOvvWegzicOOnQw8G45fgBRMkkRfeuwVt6+w== + dependencies: + "@graphql-tools/utils" "^9.2.1" + globby "^11.0.3" + tslib "^2.4.0" + unixify "^1.0.0" + +"@graphql-tools/load@^7.5.5", "@graphql-tools/load@^7.8.0": + version "7.8.14" + resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.8.14.tgz#f2356f9a5f658a42e33934ae036e4b2cadf2d1e9" + integrity sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg== + dependencies: + "@graphql-tools/schema" "^9.0.18" + "@graphql-tools/utils" "^9.2.1" + p-limit "3.1.0" + tslib "^2.4.0" + +"@graphql-tools/merge@^8.2.6", "@graphql-tools/merge@^8.4.1": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.4.2.tgz#95778bbe26b635e8d2f60ce9856b388f11fe8288" + integrity sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw== + dependencies: + "@graphql-tools/utils" "^9.2.1" + tslib "^2.4.0" + +"@graphql-tools/optimize@^1.3.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-1.4.0.tgz#20d6a9efa185ef8fc4af4fd409963e0907c6e112" + integrity sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw== + dependencies: + tslib "^2.4.0" + +"@graphql-tools/prisma-loader@^7.2.49": + version "7.2.72" + resolved "https://registry.yarnpkg.com/@graphql-tools/prisma-loader/-/prisma-loader-7.2.72.tgz#6304fc23600458396f3ede713d8e2371df7850e3" + integrity sha512-0a7uV7Fky6yDqd0tI9+XMuvgIo6GAqiVzzzFV4OSLry4AwiQlI3igYseBV7ZVOGhedOTqj/URxjpiv07hRcwag== + dependencies: + "@graphql-tools/url-loader" "^7.17.18" + "@graphql-tools/utils" "^9.2.1" + "@types/js-yaml" "^4.0.0" + "@types/json-stable-stringify" "^1.0.32" + "@whatwg-node/fetch" "^0.8.2" + chalk "^4.1.0" + debug "^4.3.1" + dotenv "^16.0.0" + graphql-request "^6.0.0" + http-proxy-agent "^6.0.0" + https-proxy-agent "^6.0.0" + jose "^4.11.4" + js-yaml "^4.0.0" + json-stable-stringify "^1.0.1" + lodash "^4.17.20" + scuid "^1.1.0" + tslib "^2.4.0" + yaml-ast-parser "^0.0.43" + +"@graphql-tools/relay-operation-optimizer@^6.5.0": + version "6.5.18" + resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz#a1b74a8e0a5d0c795b8a4d19629b654cf66aa5ab" + integrity sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg== + dependencies: + "@ardatan/relay-compiler" "12.0.0" + "@graphql-tools/utils" "^9.2.1" + tslib "^2.4.0" + +"@graphql-tools/schema@^9.0.0", "@graphql-tools/schema@^9.0.18", "@graphql-tools/schema@^9.0.19": + version "9.0.19" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-9.0.19.tgz#c4ad373b5e1b8a0cf365163435b7d236ebdd06e7" + integrity sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w== + dependencies: + "@graphql-tools/merge" "^8.4.1" + "@graphql-tools/utils" "^9.2.1" + tslib "^2.4.0" + value-or-promise "^1.0.12" + +"@graphql-tools/url-loader@^7.13.2", "@graphql-tools/url-loader@^7.17.18", "@graphql-tools/url-loader@^7.9.7": + version "7.17.18" + resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.17.18.tgz#3e253594d23483e4c0dd3a4c3dd2ad5cd0141192" + integrity sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw== + dependencies: + "@ardatan/sync-fetch" "^0.0.1" + "@graphql-tools/delegate" "^9.0.31" + "@graphql-tools/executor-graphql-ws" "^0.0.14" + "@graphql-tools/executor-http" "^0.1.7" + "@graphql-tools/executor-legacy-ws" "^0.0.11" + "@graphql-tools/utils" "^9.2.1" + "@graphql-tools/wrap" "^9.4.2" + "@types/ws" "^8.0.0" + "@whatwg-node/fetch" "^0.8.0" + isomorphic-ws "^5.0.0" + tslib "^2.4.0" + value-or-promise "^1.0.11" + ws "^8.12.0" + +"@graphql-tools/utils@^9.0.0", "@graphql-tools/utils@^9.1.1", "@graphql-tools/utils@^9.2.1": + version "9.2.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-9.2.1.tgz#1b3df0ef166cfa3eae706e3518b17d5922721c57" + integrity sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A== + dependencies: + "@graphql-typed-document-node/core" "^3.1.1" + tslib "^2.4.0" + +"@graphql-tools/wrap@^9.4.2": + version "9.4.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-9.4.2.tgz#30835587c4c73be1780908a7cb077d8013aa2703" + integrity sha512-DFcd9r51lmcEKn0JW43CWkkI2D6T9XI1juW/Yo86i04v43O9w2/k4/nx2XTJv4Yv+iXwUw7Ok81PGltwGJSDSA== + dependencies: + "@graphql-tools/delegate" "^9.0.31" + "@graphql-tools/schema" "^9.0.18" + "@graphql-tools/utils" "^9.2.1" + tslib "^2.4.0" + value-or-promise "^1.0.12" + +"@graphql-typed-document-node/core@3.2.0", "@graphql-typed-document-node/core@^3.1.1", "@graphql-typed-document-node/core@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861" + integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ== + "@hapi/accept@^5.0.1": version "5.0.2" resolved "https://registry.yarnpkg.com/@hapi/accept/-/accept-5.0.2.tgz#ab7043b037e68b722f93f376afb05e85c0699523" @@ -441,6 +1317,16 @@ resolved "https://registry.yarnpkg.com/@hapi/file/-/file-2.0.0.tgz#2ecda37d1ae9d3078a67c13b7da86e8c3237dfb9" integrity sha512-WSrlgpvEqgPWkI18kkGELEZfXr0bYLtr16iIN4Krh9sRnzBZN6nnWxHFxtsnP684wueEySBbXPDg/WfA9xJdBQ== +"@hapi/h2o2@^9.1.0": + version "9.1.0" + resolved "https://registry.yarnpkg.com/@hapi/h2o2/-/h2o2-9.1.0.tgz#b223f4978b6f2b0d7d9db10a84a567606c4c3551" + integrity sha512-B7E58bMhxmpiDI22clxTexoAaVShNBk1Ez6S8SQjQZu5FxxD6Tqa44sXeZQBtWrdJF7ZRbsY60/C8AHLRxagNA== + dependencies: + "@hapi/boom" "9.x.x" + "@hapi/hoek" "9.x.x" + "@hapi/validate" "1.x.x" + "@hapi/wreck" "17.x.x" + "@hapi/hapi@^20.0.1": version "20.3.0" resolved "https://registry.yarnpkg.com/@hapi/hapi/-/hapi-20.3.0.tgz#1d620005afeebcb2c8170352286a4664b0107c15" @@ -612,7 +1498,7 @@ dependencies: "@hapi/hoek" "9.x.x" -"@hapi/wreck@17.x.x": +"@hapi/wreck@17.x.x", "@hapi/wreck@^17.0.0": version "17.2.0" resolved "https://registry.yarnpkg.com/@hapi/wreck/-/wreck-17.2.0.tgz#a5b69b724fa8fa25550fb02f55c649becfc59f63" integrity sha512-pJ5kjYoRPYDv+eIuiLQqhGon341fr2bNIYZjuotuPJG/3Ilzr/XtI+JAp0A86E2bYfsS3zBPABuS2ICkaXFT8g== @@ -621,13 +1507,13 @@ "@hapi/bourne" "2.x.x" "@hapi/hoek" "9.x.x" -"@humanwhocodes/config-array@^0.11.10": - version "0.11.10" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" - integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== +"@humanwhocodes/config-array@^0.11.14": + version "0.11.14" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" + integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" + "@humanwhocodes/object-schema" "^2.0.2" + debug "^4.3.1" minimatch "^3.0.5" "@humanwhocodes/module-importer@^1.0.1": @@ -635,10 +1521,10 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@humanwhocodes/object-schema@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" + integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== "@inquirer/core@^5.1.1": version "5.1.1" @@ -687,6 +1573,15 @@ wrap-ansi "^8.1.0" wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" +"@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^13.0.0" + "@jridgewell/gen-mapping@^0.3.2": version "0.3.8" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142" @@ -696,6 +1591,15 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.24" +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + "@jridgewell/resolve-uri@^3.0.3": version "3.1.1" resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" @@ -729,7 +1633,7 @@ "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" -"@jridgewell/trace-mapping@^0.3.24": +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== @@ -770,10 +1674,10 @@ resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.4.tgz#70e941ba742bdd2b49bdb7393e821dea8520a3db" integrity sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ== -"@octokit/core@4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.1.tgz#fee6341ad0ce60c29cc455e056cd5b500410a588" - integrity sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw== +"@octokit/core@4.2.4": + version "4.2.4" + resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907" + integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ== dependencies: "@octokit/auth-token" "^3.0.0" "@octokit/graphql" "^5.0.0" @@ -834,6 +1738,11 @@ dependencies: "@octokit/openapi-types" "^18.0.0" +"@opencrvs/mosip@^1.8.0": + version "1.8.0" + resolved "https://registry.yarnpkg.com/@opencrvs/mosip/-/mosip-1.8.0.tgz#ed0b20d85d69c4a774a7d8e7011d15f94551aba8" + integrity sha512-5MWQZEAdL0P6OFCYyzI87H73QS3DJsxJnWgZ3eGEtUVXDLOiTA6KupoRxJwjvRVbWScH39P0QVKo1lC+yZTL0A== + "@opencrvs/toolkit@1.8.1-rc.a5eecfe": version "1.8.1-rc.a5eecfe" resolved "https://registry.yarnpkg.com/@opencrvs/toolkit/-/toolkit-1.8.1-rc.a5eecfe.tgz#0aa5f0655c0ed5da8a1be6e0ccb8e3f4eac10e41" @@ -848,6 +1757,122 @@ uuid "^9.0.0" zod-openapi "^4.2.4" +"@parcel/watcher-android-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz#e32d3dda6647791ee930556aee206fcd5ea0fb7a" + integrity sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ== + +"@parcel/watcher-darwin-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz#0d9e680b7e9ec1c8f54944f1b945aa8755afb12f" + integrity sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw== + +"@parcel/watcher-darwin-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz#f9f1d5ce9d5878d344f14ef1856b7a830c59d1bb" + integrity sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA== + +"@parcel/watcher-freebsd-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz#2b77f0c82d19e84ff4c21de6da7f7d096b1a7e82" + integrity sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw== + +"@parcel/watcher-linux-arm-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz#92ed322c56dbafa3d2545dcf2803334aee131e42" + integrity sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA== + +"@parcel/watcher-linux-arm-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz#cd48e9bfde0cdbbd2ecd9accfc52967e22f849a4" + integrity sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA== + +"@parcel/watcher-linux-arm64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz#7b81f6d5a442bb89fbabaf6c13573e94a46feb03" + integrity sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA== + +"@parcel/watcher-linux-arm64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz#dcb8ff01077cdf59a18d9e0a4dff7a0cfe5fd732" + integrity sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q== + +"@parcel/watcher-linux-x64-glibc@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz#2e254600fda4e32d83942384d1106e1eed84494d" + integrity sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw== + +"@parcel/watcher-linux-x64-musl@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz#01fcea60fedbb3225af808d3f0a7b11229792eef" + integrity sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA== + +"@parcel/watcher-win32-arm64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz#87cdb16e0783e770197e52fb1dc027bb0c847154" + integrity sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig== + +"@parcel/watcher-win32-ia32@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz#778c39b56da33e045ba21c678c31a9f9d7c6b220" + integrity sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA== + +"@parcel/watcher-win32-x64@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz#33873876d0bbc588aacce38e90d1d7480ce81cb7" + integrity sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw== + +"@parcel/watcher@^2.1.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.0.tgz#5c88818b12b8de4307a9d3e6dc3e28eba0dfbd10" + integrity sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ== + dependencies: + detect-libc "^1.0.3" + is-glob "^4.0.3" + micromatch "^4.0.5" + node-addon-api "^7.0.0" + optionalDependencies: + "@parcel/watcher-android-arm64" "2.5.0" + "@parcel/watcher-darwin-arm64" "2.5.0" + "@parcel/watcher-darwin-x64" "2.5.0" + "@parcel/watcher-freebsd-x64" "2.5.0" + "@parcel/watcher-linux-arm-glibc" "2.5.0" + "@parcel/watcher-linux-arm-musl" "2.5.0" + "@parcel/watcher-linux-arm64-glibc" "2.5.0" + "@parcel/watcher-linux-arm64-musl" "2.5.0" + "@parcel/watcher-linux-x64-glibc" "2.5.0" + "@parcel/watcher-linux-x64-musl" "2.5.0" + "@parcel/watcher-win32-arm64" "2.5.0" + "@parcel/watcher-win32-ia32" "2.5.0" + "@parcel/watcher-win32-x64" "2.5.0" + +"@peculiar/asn1-schema@^2.3.13", "@peculiar/asn1-schema@^2.3.8": + version "2.3.13" + resolved "https://registry.yarnpkg.com/@peculiar/asn1-schema/-/asn1-schema-2.3.13.tgz#ec8509cdcbc0da3abe73fd7e690556b57a61b8f4" + integrity sha512-3Xq3a01WkHRZL8X04Zsfg//mGaA21xlL4tlVn4v2xGT0JStiztATRkMwa5b+f/HXmY2smsiLXYK46Gwgzvfg3g== + dependencies: + asn1js "^3.0.5" + pvtsutils "^1.3.5" + tslib "^2.6.2" + +"@peculiar/json-schema@^1.1.12": + version "1.1.12" + resolved "https://registry.yarnpkg.com/@peculiar/json-schema/-/json-schema-1.1.12.tgz#fe61e85259e3b5ba5ad566cb62ca75b3d3cd5339" + integrity sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w== + dependencies: + tslib "^2.0.0" + +"@peculiar/webcrypto@^1.4.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@peculiar/webcrypto/-/webcrypto-1.5.0.tgz#9e57174c02c1291051c553600347e12b81469e10" + integrity sha512-BRs5XUAwiyCDQMsVA9IDvDa7UBR9gAvPHgugOeGng3YN6vJ9JYonyDc0lNczErgtCWtucjR5N7VtaonboD/ezg== + dependencies: + "@peculiar/asn1-schema" "^2.3.8" + "@peculiar/json-schema" "^1.1.12" + pvtsutils "^1.3.5" + tslib "^2.6.2" + webcrypto-core "^1.8.0" + "@pkgjs/parseargs@^0.11.0": version "0.11.0" resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" @@ -858,6 +1883,23 @@ resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31" integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== +"@playwright/test@^1.48.0": + version "1.54.2" + resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.54.2.tgz#ff0d1e5d8e26f3258ae65364e2d4d10176926b07" + integrity sha512-A+znathYxPf+72riFd1r1ovOLqsIIB0jKIoPjyK2kqEIe30/6jF6BC7QNluHuwUmsD2tv1XZVugN8GqfTMOxsA== + dependencies: + playwright "1.54.2" + +"@repeaterjs/repeater@3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@repeaterjs/repeater/-/repeater-3.0.4.tgz#a04d63f4d1bf5540a41b01a921c9a7fddc3bd1ca" + integrity sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA== + +"@repeaterjs/repeater@^3.0.4": + version "3.0.6" + resolved "https://registry.yarnpkg.com/@repeaterjs/repeater/-/repeater-3.0.6.tgz#be23df0143ceec3c69f8b6c2517971a5578fdaa2" + integrity sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA== + "@rollup/rollup-android-arm-eabi@4.24.0": version "4.24.0" resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz#1661ff5ea9beb362795304cb916049aba7ac9c54" @@ -1055,17 +2097,22 @@ dependencies: chalk "*" +"@types/code@^4.0.3": + version "4.0.8" + resolved "https://registry.yarnpkg.com/@types/code/-/code-4.0.8.tgz#ff35ba09d29332fd6ee281561c0788336627dc65" + integrity sha512-eOxey9CsajWlP0h66P2ZaGHoGx0CpjNHlgirEFctZYDQ3frlIoHp/yV5Nq8cQMjKNvs5hySCE2JtFEvhXpOj6g== + "@types/csv2json@^1.4.0": - version "1.4.4" - resolved "https://registry.yarnpkg.com/@types/csv2json/-/csv2json-1.4.4.tgz#c855ed7e07d859db0345d72856444b807c2fa962" - integrity sha512-td6M5wwVO5sowevjZmUuEQgVEmZTOLborta1qdnlByhG22ZEJzT/KMXbFKnOkrStxhPX5pf2PVsD7lA3ApXwTA== + version "1.4.5" + resolved "https://registry.yarnpkg.com/@types/csv2json/-/csv2json-1.4.5.tgz#b037221439878f22944faaa7361f157d81052dfd" + integrity sha512-152IxknP/Mp2FJAjppaNIwNr2ufWXtVcbNgU+2UTcawSr2FWnqhaTk2sIVOmlntFAyJrGdNACs3AzKz5gIpNOA== dependencies: "@types/pumpify" "*" "@types/duplexify@*": - version "3.6.3" - resolved "https://registry.yarnpkg.com/@types/duplexify/-/duplexify-3.6.3.tgz#42b1716c5d52a42ba9072696c0d33ca0a9bffd6d" - integrity sha512-KE0Yb3JraglJMB53+A/RMXbd9w//pQfiSqkrsoAxKcNOEIe1EHfEgbvoi2lkk2AvhhJtplugJSB2Mptc3DZMNA== + version "3.6.4" + resolved "https://registry.yarnpkg.com/@types/duplexify/-/duplexify-3.6.4.tgz#aa7e916c33fcc05be8769546fd0441d9b368613e" + integrity sha512-2eahVPsd+dy3CL6FugAzJcxoraWhUghZGEQJns1kTKfCXWKJ5iG/VkaB05wRVrDKHfOFKqb0X0kXh91eE99RZg== dependencies: "@types/node" "*" @@ -1074,15 +2121,20 @@ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== -"@types/fhir@^0.0.30": +"@types/fhir@0.0.30": version "0.0.30" resolved "https://registry.yarnpkg.com/@types/fhir/-/fhir-0.0.30.tgz#a0aec3b2d7dd2a7584474dac446ede5f9a4d7a13" integrity sha512-vDU62tUFeAYBVQThiWAfGd6D25TiLLDDS5pV19vim52FLpwWTBliLMvotbF4D/U+BmjxBKIuHGZgFnoh/HtV5g== "@types/geojson@^7946.0.4": - version "7946.0.12" - resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.12.tgz#0307536218d32e6b970bccd1d148b9c4e5b6f10d" - integrity sha512-uK2z1ZHJyC0nQRbuovXFt4mzXDwf27vQeUWNhfKGwRcWW429GOhP8HxUHlM6TLH4bzmlv/HlEjpvJh3JfmGsAA== + version "7946.0.14" + resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.14.tgz#319b63ad6df705ee2a65a73ef042c8271e696613" + integrity sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg== + +"@types/google-libphonenumber@^7.4.23": + version "7.4.30" + resolved "https://registry.yarnpkg.com/@types/google-libphonenumber/-/google-libphonenumber-7.4.30.tgz#a47ed8f1f237bd43edbd1c8aff24400b0fd9b2fe" + integrity sha512-Td1X1ayRxePEm6/jPHUBs2tT6TzW1lrVB6ZX7ViPGellyzO/0xMNi+wx5nH6jEitjznq276VGIqjK5qAju0XVw== "@types/handlebars@^4.1.0": version "4.1.0" @@ -1103,6 +2155,16 @@ resolved "https://registry.yarnpkg.com/@types/hapi__catbox/-/hapi__catbox-10.2.4.tgz#4d0531a6c2d0e45024f724020d536041ef8ffe30" integrity sha512-A6ivRrXD5glmnJna1UAGw87QNZRp/vdFO9U4GS+WhOMWzHnw+oTGkMvg0g6y1930CbeheGOCm7A1qHsqH7AXqg== +"@types/hapi__h2o2@8.3.3": + version "8.3.3" + resolved "https://registry.yarnpkg.com/@types/hapi__h2o2/-/hapi__h2o2-8.3.3.tgz#f6c5ac480a6fd421025f7d0f78dfa916703511b7" + integrity sha512-+qWZVFVGc5Y0wuNZvVe876VJjUBCJ8eQdXovg4Rg9laHpeERQejluI7aw31xXWfLojTuHz3ThZzC6Orqras05Q== + dependencies: + "@hapi/boom" "^9.0.0" + "@hapi/wreck" "^17.0.0" + "@types/hapi__hapi" "*" + "@types/node" "*" + "@types/hapi__hapi@*", "@types/hapi__hapi@^20.0.0", "@types/hapi__hapi@^20.0.10": version "20.0.13" resolved "https://registry.yarnpkg.com/@types/hapi__hapi/-/hapi__hapi-20.0.13.tgz#ea8ce83c192f6e8106f6e76e40f795e7e36d0615" @@ -1154,11 +2216,48 @@ "@types/through" "*" rxjs "^7.2.0" +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^1.1.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" + integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== + dependencies: + "@types/istanbul-lib-coverage" "*" + "@types/istanbul-lib-report" "*" + +"@types/jest@^24.0.13": + version "24.9.1" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.9.1.tgz#02baf9573c78f1b9974a5f36778b366aa77bd534" + integrity sha512-Fb38HkXSVA4L8fGKEZ6le5bB8r6MRWlOCZbVuWZcmOMSCd2wCYOwN1ibj8daIoV9naq7aaOZjrLCoCMptKU/4Q== + dependencies: + jest-diff "^24.3.0" + +"@types/js-yaml@^4.0.0": + version "4.0.9" + resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.9.tgz#cd82382c4f902fed9691a2ed79ec68c5898af4c2" + integrity sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg== + "@types/json-schema@^7.0.9": version "7.0.12" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== +"@types/json-stable-stringify@^1.0.32": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@types/json-stable-stringify/-/json-stable-stringify-1.1.0.tgz#41393e6b7a9a67221607346af4a79783aeb28aea" + integrity sha512-ESTsHWB72QQq+pjUFIbEz9uSCZppD31YrVkbt2rnUciTYEvcwN6uZIhX5JZeBHqRlFJ41x/7MewCs7E2Qux6Cg== + "@types/json5@^0.0.29": version "0.0.29" resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" @@ -1175,9 +2274,9 @@ integrity sha512-KeAKtlObirLJk/na6jHBFEdTDjDfFS6Vcr0eG2FjiHKn3Nw8axJFfIu0Y9TpwaauRldQBj/pZm/MHtK76r6OWg== "@types/lodash@^4.14.117": - version "4.14.200" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.200.tgz#435b6035c7eba9cdf1e039af8212c9e9281e7149" - integrity sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q== + version "4.14.202" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.202.tgz#f09dbd2fb082d507178b2f2a5c7e74bd72ff98f8" + integrity sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ== "@types/luxon@^3.7.1": version "3.7.1" @@ -1185,9 +2284,9 @@ integrity sha512-H3iskjFIAn5SlJU7OuxUmTEpebK6TKB8rxZShDslBMZJ5u9S//KM1sbdAisiSrqwLQncVjnpi2OK2J51h+4lsg== "@types/mime-db@*": - version "1.43.3" - resolved "https://registry.yarnpkg.com/@types/mime-db/-/mime-db-1.43.3.tgz#f7bec64a9a62ddded3371e82862c0516539710e8" - integrity sha512-vg0UsF1p1Qi/8iCARoie7F/Ng92zo7tQlL+sqE15GonkKVl55n/0vB6jSbrYTgDO0PSx9pKfGG1iZg9gJum3wA== + version "1.43.5" + resolved "https://registry.yarnpkg.com/@types/mime-db/-/mime-db-1.43.5.tgz#7a3f53dc2125a91f4e0e41f1353f60f8b6af609e" + integrity sha512-/bfTiIUTNPUBnwnYvUxXAre5MhD88jgagLEQiQtIASjU+bwxd8kS/ASDA4a8ufd8m0Lheu6eeMJHEUpLHoJ28A== "@types/mute-stream@^0.0.4": version "0.0.4" @@ -1197,19 +2296,19 @@ "@types/node" "*" "@types/node-fetch@^2.6.2": - version "2.6.7" - resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.7.tgz#a1abe2ce24228b58ad97f99480fdcf9bbc6ab16d" - integrity sha512-lX17GZVpJ/fuCjguZ5b3TjEbSENxmEk1B2z02yoXSK9WMEWRivhdSY73wWMn6bpcCDAOh6qAdktpKHIlkDk2lg== + version "2.6.10" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.10.tgz#ff5c1ceacab782f2b7ce69957d38c1c27b0dc469" + integrity sha512-PPpPK6F9ALFTn59Ka3BaL+qGuipRfxNE8qVgkp0bVixeiR2c2/L+IVOiBdu9JhhT22sWnQEp6YyHGI2b2+CMcA== dependencies: "@types/node" "*" form-data "^4.0.0" "@types/node@*": - version "20.8.8" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.8.tgz#adee050b422061ad5255fc38ff71b2bb96ea2a0e" - integrity sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ== + version "20.10.6" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.6.tgz#a3ec84c22965802bf763da55b2394424f22bfbb5" + integrity sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw== dependencies: - undici-types "~5.25.1" + undici-types "~5.26.4" "@types/node@^18.19.1": version "18.19.68" @@ -1232,6 +2331,11 @@ dependencies: "@types/node" "*" +"@types/parse-json@^4.0.0": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + "@types/pg@^8.15.5": version "8.15.5" resolved "https://registry.yarnpkg.com/@types/pg/-/pg-8.15.5.tgz#ef43e0f33b62dac95cae2f042888ec7980b30c09" @@ -1255,9 +2359,9 @@ integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA== "@types/pumpify@*": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@types/pumpify/-/pumpify-1.4.3.tgz#cf8b1abc4b2b58ed1cce28a8f9ca604fef0b7bcd" - integrity sha512-ie6+WgKnjXYFA37OdIfI72b+RSQ4lIlOwcp38SYr16xJo6qOGAovvVR4j2UuBohgkAGiYWRwMNCfxdRGQloEyw== + version "1.4.4" + resolved "https://registry.yarnpkg.com/@types/pumpify/-/pumpify-1.4.4.tgz#2246750e9380a1f885bf43c58cb31ddbb280d4a7" + integrity sha512-+cWbQUecD04MQYkjNBhPmcUIP368aloYmqm+ImdMKA8rMpxRNAhZAD6gIj+sAVTF1DliqrT/qUp6aGNi/9U3tw== dependencies: "@types/duplexify" "*" "@types/node" "*" @@ -1304,11 +2408,35 @@ dependencies: "@types/node" "*" +"@types/uuid@^10.0.0": + version "10.0.0" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-10.0.0.tgz#e9c07fe50da0f53dc24970cca94d619ff03f6f6d" + integrity sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ== + "@types/wrap-ansi@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd" integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g== +"@types/ws@^8.0.0": + version "8.5.13" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.13.tgz#6414c280875e2691d0d1e080b05addbf5cb91e20" + integrity sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA== + dependencies: + "@types/node" "*" + +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^13.0.0": + version "13.0.12" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.12.tgz#d895a88c703b78af0465a9de88aa92c61430b092" + integrity sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ== + dependencies: + "@types/yargs-parser" "*" + "@typescript-eslint/eslint-plugin@^5.60.1": version "5.60.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.60.1.tgz#81382d6ecb92b8dda70e91f9035611cb2fecd1c3" @@ -1393,6 +2521,11 @@ "@typescript-eslint/types" "5.60.1" eslint-visitor-keys "^3.3.0" +"@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + "@vitest/expect@2.1.2": version "2.1.2" resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-2.1.2.tgz#e92fa284b8472548f72cacfe896020c64af6bf78" @@ -1452,6 +2585,33 @@ loupe "^3.1.1" tinyrainbow "^1.2.0" +"@whatwg-node/events@^0.0.3": + version "0.0.3" + resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.0.3.tgz#13a65dd4f5893f55280f766e29ae48074927acad" + integrity sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA== + +"@whatwg-node/fetch@^0.8.0", "@whatwg-node/fetch@^0.8.1", "@whatwg-node/fetch@^0.8.2": + version "0.8.8" + resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.8.8.tgz#48c6ad0c6b7951a73e812f09dd22d75e9fa18cae" + integrity sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg== + dependencies: + "@peculiar/webcrypto" "^1.4.0" + "@whatwg-node/node-fetch" "^0.3.6" + busboy "^1.6.0" + urlpattern-polyfill "^8.0.0" + web-streams-polyfill "^3.2.1" + +"@whatwg-node/node-fetch@^0.3.6": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz#e28816955f359916e2d830b68a64493124faa6d0" + integrity sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA== + dependencies: + "@whatwg-node/events" "^0.0.3" + busboy "^1.6.0" + fast-querystring "^1.1.1" + fast-url-parser "^1.1.3" + tslib "^2.3.1" + abbrev@1: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" @@ -1475,11 +2635,11 @@ acorn-jsx@^5.3.2: integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn-walk@^8.1.1: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + version "8.3.2" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa" + integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A== -acorn@^6.4.1, acorn@^8.4.1, acorn@^8.8.0: +acorn@^6.4.1, acorn@^8.4.1, acorn@^8.9.0: version "6.4.2" resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== @@ -1491,6 +2651,21 @@ agent-base@6: dependencies: debug "4" +agent-base@^7.0.2, agent-base@^7.1.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + ajv-formats@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578" @@ -1498,7 +2673,7 @@ ajv-formats@^3.0.1: dependencies: ajv "^8.0.0" -ajv@^6.10.0, ajv@^6.12.4: +ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -1523,7 +2698,7 @@ ansi-escapes@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== -ansi-escapes@^4.3.2: +ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.2: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== @@ -1540,6 +2715,11 @@ ansi-regex@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== +ansi-regex@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" @@ -1639,6 +2819,11 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + asn1@^0.2.6: version "0.2.6" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" @@ -1646,6 +2831,15 @@ asn1@^0.2.6: dependencies: safer-buffer "~2.1.0" +asn1js@^3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/asn1js/-/asn1js-3.0.5.tgz#5ea36820443dbefb51cc7f88a2ebb5b462114f38" + integrity sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ== + dependencies: + pvtsutils "^1.3.2" + pvutils "^1.1.3" + tslib "^2.4.0" + assertion-error@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-2.0.1.tgz#f641a196b335690b1070bf00b6e7593fec190bf7" @@ -1656,6 +2850,11 @@ assign-symbols@^1.0.0: resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -1671,6 +2870,49 @@ atomic-sleep@^1.0.0: resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b" integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ== +auto-bind@~4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-4.0.0.tgz#e3589fc6c2da8f7ca43ba9f84fa52a744fc997fb" + integrity sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ== + +babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: + version "7.0.0-beta.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" + integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ== + +babel-preset-fbjs@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c" + integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow== + dependencies: + "@babel/plugin-proposal-class-properties" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" + "@babel/plugin-syntax-class-properties" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-block-scoped-functions" "^7.0.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.0.0" + "@babel/plugin-transform-flow-strip-types" "^7.0.0" + "@babel/plugin-transform-for-of" "^7.0.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-member-expression-literals" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-object-super" "^7.0.0" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-property-literals" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-template-literals" "^7.0.0" + babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0" + balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" @@ -1758,11 +3000,58 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +browserslist@^4.24.0: + version "4.24.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" + integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== + dependencies: + caniuse-lite "^1.0.30001669" + electron-to-chromium "^1.5.41" + node-releases "^2.0.18" + update-browserslist-db "^1.1.1" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-alloc-unsafe@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" + integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== + +buffer-alloc@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" + integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== + dependencies: + buffer-alloc-unsafe "^1.1.0" + buffer-fill "^1.0.0" + buffer-equal-constant-time@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA== +buffer-fill@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" + integrity sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ== + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + buffer@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" @@ -1784,6 +3073,13 @@ buildcheck@~0.0.6: resolved "https://registry.yarnpkg.com/buildcheck/-/buildcheck-0.0.6.tgz#89aa6e417cfd1e2196e3f8fe915eb709d2fe4238" integrity sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A== +busboy@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + cac@^6.7.14: version "6.7.14" resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" @@ -1813,6 +3109,17 @@ call-bind@^1.0.2: get-intrinsic "^1.2.1" set-function-length "^1.1.1" +call-bind@^1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + caller-callsite@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" @@ -1837,10 +3144,37 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -chai@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/chai/-/chai-5.1.1.tgz#f035d9792a22b481ead1c65908d14bb62ec1c82c" - integrity sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA== +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + +camelcase@^5.0.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +caniuse-lite@^1.0.30001669: + version "1.0.30001680" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" + integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== + +capital-case@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" + integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" + +chai@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/chai/-/chai-5.1.1.tgz#f035d9792a22b481ead1c65908d14bb62ec1c82c" + integrity sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA== dependencies: assertion-error "^2.0.1" check-error "^2.1.1" @@ -1873,7 +3207,7 @@ chalk@^2.0.1, chalk@^2.3.1, chalk@^2.4.1: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -1886,6 +3220,40 @@ chalk@^5.3.0: resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== +change-case-all@1.0.15: + version "1.0.15" + resolved "https://registry.yarnpkg.com/change-case-all/-/change-case-all-1.0.15.tgz#de29393167fc101d646cd76b0ef23e27d09756ad" + integrity sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ== + dependencies: + change-case "^4.1.2" + is-lower-case "^2.0.2" + is-upper-case "^2.0.2" + lower-case "^2.0.2" + lower-case-first "^2.0.2" + sponge-case "^1.0.1" + swap-case "^2.0.2" + title-case "^3.0.3" + upper-case "^2.0.2" + upper-case-first "^2.0.2" + +change-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" + integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A== + dependencies: + camel-case "^4.1.2" + capital-case "^1.0.4" + constant-case "^3.0.4" + dot-case "^3.0.4" + header-case "^2.0.4" + no-case "^3.0.4" + param-case "^3.0.4" + pascal-case "^3.1.2" + path-case "^3.0.4" + sentence-case "^3.0.4" + snake-case "^3.0.4" + tslib "^2.0.3" + chardet@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" @@ -1926,6 +3294,11 @@ class-utils@^0.3.5: isobject "^3.0.0" static-extend "^0.1.1" +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + cli-cursor@^2.0.0, cli-cursor@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" @@ -1958,11 +3331,42 @@ cli-truncate@^0.2.1: slice-ansi "0.0.4" string-width "^1.0.1" +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + cli-width@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5" integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ== +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + clone@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" @@ -2005,7 +3409,7 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -colorette@^2.0.7: +colorette@^2.0.16, colorette@^2.0.7: version "2.0.20" resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== @@ -2027,6 +3431,11 @@ commander@^4.0.0: resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== +common-tags@1.8.2: + version "1.8.2" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== + component-emitter@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" @@ -2037,6 +3446,20 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== +constant-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1" + integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case "^2.0.2" + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + cookie@^0.4.0, cookie@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" @@ -2047,6 +3470,21 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97" + integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ== + dependencies: + import-fresh "^3.2.1" + js-yaml "^4.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + cosmiconfig@^5.0.2: version "5.2.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" @@ -2057,6 +3495,25 @@ cosmiconfig@^5.0.2: js-yaml "^3.13.1" parse-json "^4.0.0" +cosmiconfig@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +country-data@^0.0.31: + version "0.0.31" + resolved "https://registry.yarnpkg.com/country-data/-/country-data-0.0.31.tgz#80966b8e1d147fa6d6a589d32933f8793774956d" + integrity sha512-YqlY/i6ikZwoBFfdjK+hJTGaBdTgDpXLI15MCj2UsXZ2cPBb+Kx86AXmDH7PRGt0LUleck0cCgNdWeIhfbcxkQ== + dependencies: + currency-symbol-map "~2" + underscore ">1.4.4" + cpu-features@~0.0.9: version "0.0.10" resolved "https://registry.yarnpkg.com/cpu-features/-/cpu-features-0.0.10.tgz#9aae536db2710c7254d7ed67cb3cbc7d29ad79c5" @@ -2077,6 +3534,13 @@ cross-env@^6.0.3: dependencies: cross-spawn "^7.0.0" +cross-fetch@^3.1.5: + version "3.1.8" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" + integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== + dependencies: + node-fetch "^2.6.12" + cross-spawn@^5.0.1: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" @@ -2100,37 +3564,47 @@ csstype@^3.0.2: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== -csv-parser@^2.3.0: - version "2.3.5" - resolved "https://registry.yarnpkg.com/csv-parser/-/csv-parser-2.3.5.tgz#6b3bf0907684914ff2c5abfbadab111a69eae5db" - integrity sha512-LCHolC4AlNwL+5EuD5LH2VVNKpD8QixZW2zzK1XmrVYUaslFY4c5BooERHOCIubG9iv/DAyFjs4x0HvWNZuyWg== +csv-parser@^1.11.0: + version "1.12.1" + resolved "https://registry.yarnpkg.com/csv-parser/-/csv-parser-1.12.1.tgz#391e1ef961b1f9dcb4c7c0f82eb450a1bd916158" + integrity sha512-r45M92nLnGP246ot0Yo5RvbiiMF5Bw/OTIdWJ3OQ4Vbv4hpOeoXVIPxdSmUw+fPJlQOseY+iigJyLSfPMIrddQ== dependencies: + buffer-alloc "^1.1.0" + buffer-from "^1.0.0" + generate-function "^1.0.1" + generate-object-property "^1.0.0" + inherits "^2.0.1" minimist "^1.2.0" - through2 "^3.0.1" + ndjson "^1.4.0" csv-stringify@^6.4.6: version "6.4.6" resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-6.4.6.tgz#9ccf87cb8b017c96673a9fa061768c8ba83e8b98" integrity sha512-h2V2XZ3uOTLilF5dPIptgUfN/o2ia/80Ie0Lly18LAnw5s8Eb7kt8rfxSUy24AztJZas9f6DPZpVlzDUtFt/ag== -csv2json@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/csv2json/-/csv2json-2.0.2.tgz#91702327f0311f26920fd3d54b507f81a3ab9db4" - integrity sha512-YVZ72OehSs9+j2lME10osmJNHeI0dcHlX+qNq8xcR0T+Rt8WaOCchKiEVF3GsK4Of3z/LE64x0ba1cpULmAclw== +csv2json@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/csv2json/-/csv2json-1.4.2.tgz#d82bceb4d0d1acd35dd7cb8043386c5a6df5e2dc" + integrity sha512-dh/Cij1ezd7pIVyfKadMfSmFulpHWVcJQEczeubxJzi44cuRc6W9YkNNuF1sOFur4Dkhw/KvYjACTQ899G6sSA== dependencies: - csv-parser "^2.3.0" + csv-parser "^1.11.0" + event-to-promise "^0.8.0" exec-promise "^0.7.0" minimist "^1.2.0" - promise-toolbox "^0.14.0" - pump "^3.0.0" - pumpify "^2.0.0" - strip-bom-stream "^4.0.0" - through2 "^3.0.1" + pump "^1.0.2" + pumpify "^1.3.5" + strip-bom-stream "^3.0.0" + through2 "^2.0.3" -cypress-xpath@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/cypress-xpath/-/cypress-xpath-2.0.1.tgz#052db5d18b4f5c03434cba7dcf1fe0b69d292308" - integrity sha512-qMagjvinBppNJdMAkucWESP9aP4rDTs7c96m0vwMuZTVx3NqP2E3z/hkoRf8Ea9soL8yTvUuuyF1cg/Sb1Yhbg== +currency-symbol-map@~2: + version "2.2.0" + resolved "https://registry.yarnpkg.com/currency-symbol-map/-/currency-symbol-map-2.2.0.tgz#2b3c1872ff1ac2ce595d8273e58e1fff0272aea2" + integrity sha512-fPZJ3jqM68+AAgqQ7UaGbgHL/39rp6l7GyqS2k1HJPu/kpS8D07x/+Uup6a9tCUKIlOFcRrDCf1qxSt8jnI5BA== + +dataloader@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.2.2.tgz#216dc509b5abe39d43a9b9d97e6e5e473dfbe3e0" + integrity sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g== date-fns@^1.27.2: version "1.30.1" @@ -2147,7 +3621,12 @@ dateformat@^4.6.3: resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.6.3.tgz#556fa6497e5217fedb78821424f8a1c22fa3f4b5" integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA== -debug@4, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: +debounce@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + +debug@4, debug@^4.3.2, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -2168,19 +3647,24 @@ debug@^3.1.0, debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.3.1: +debug@^4.1.0, debug@^4.3.6: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + dependencies: + ms "^2.1.3" + +debug@^4.1.1, debug@^4.3.1: version "4.4.0" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: ms "^2.1.3" -debug@^4.3.6: - version "4.3.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== - dependencies: - ms "^2.1.3" +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decode-uri-component@^0.2.0: version "0.2.2" @@ -2218,6 +3702,15 @@ define-data-property@^1.1.1: gopd "^1.0.1" has-property-descriptors "^1.0.0" +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" @@ -2245,11 +3738,31 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== +dependency-graph@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27" + integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg== + deprecation@^2.0.0: version "2.3.1" resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== +detect-indent@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" + integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + +detect-libc@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== + +diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== + diff@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" @@ -2269,19 +3782,32 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -dotenv@^16.4.5: +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@^16.0.0, dotenv@^16.4.5: version "16.4.5" resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== -duplexify@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0" - integrity sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw== +dset@^3.1.2: + version "3.1.4" + resolved "https://registry.yarnpkg.com/dset/-/dset-3.1.4.tgz#f8eaf5f023f068a036d08cd07dc9ffb7d0065248" + integrity sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA== + +duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== dependencies: - end-of-stream "^1.4.1" - inherits "^2.0.3" - readable-stream "^3.1.1" + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" stream-shift "^1.0.0" duplexify@^4.1.2: @@ -2306,6 +3832,11 @@ ecdsa-sig-formatter@1.0.11: dependencies: safe-buffer "^5.0.1" +electron-to-chromium@^1.5.41: + version "1.5.56" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.56.tgz#3213f369efc3a41091c3b2c05bc0f406108ac1df" + integrity sha512-7lXb9dAvimCFdvUMTyucD4mnIndt/xhRKFAlky0CyFogdnNmdPQNoHI23msF/2V4mpTxMzgMdjK4+YRlFlRQZw== + elegant-spinner@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" @@ -2321,7 +3852,7 @@ emoji-regex@^9.2.2: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== -end-of-stream@^1.1.0, end-of-stream@^1.4.1: +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== @@ -2342,6 +3873,18 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + esbuild@^0.18.9: version "0.18.9" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.9.tgz#f84e1cccf1792e34d272b0a755896b7e0895c40f" @@ -2399,6 +3942,11 @@ esbuild@^0.21.3: "@esbuild/win32-ia32" "0.21.5" "@esbuild/win32-x64" "0.21.5" +escalade@^3.1.1, escalade@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -2435,45 +3983,41 @@ eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" - integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== - -eslint-visitor-keys@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" - integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.43.0: - version "8.43.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.43.0.tgz#3e8c6066a57097adfd9d390b8fc93075f257a094" - integrity sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q== + version "8.57.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" + integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.3" - "@eslint/js" "8.43.0" - "@humanwhocodes/config-array" "^0.11.10" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.57.0" + "@humanwhocodes/config-array" "^0.11.14" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.3.2" doctrine "^3.0.0" escape-string-regexp "^4.0.0" - eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.1" - espree "^9.5.2" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" esquery "^1.4.2" esutils "^2.0.2" fast-deep-equal "^3.1.3" @@ -2483,7 +4027,6 @@ eslint@^8.43.0: globals "^13.19.0" graphemer "^1.4.0" ignore "^5.2.0" - import-fresh "^3.0.0" imurmurhash "^0.1.4" is-glob "^4.0.0" is-path-inside "^3.0.3" @@ -2493,17 +4036,16 @@ eslint@^8.43.0: lodash.merge "^4.6.2" minimatch "^3.1.2" natural-compare "^1.4.0" - optionator "^0.9.1" + optionator "^0.9.3" strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" text-table "^0.2.0" -espree@^9.5.2: - version "9.5.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" - integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: - acorn "^8.8.0" + acorn "^8.9.0" acorn-jsx "^5.3.2" eslint-visitor-keys "^3.4.1" @@ -2553,6 +4095,16 @@ event-target-shim@^5.0.0: resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== +event-to-promise@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/event-to-promise/-/event-to-promise-0.8.0.tgz#4b84f11772b6f25f7752fc74d971531ac6f5b626" + integrity sha512-/J+h6lLXMhNrahk5XipFHjSOlTv4Zl+D5rXomuhT3MIUxkP7beRxazgCQ6ERYJTFPPM8WC8dbHIeQc1VaKrOxw== + +eventemitter3@^4.0.4: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + events@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" @@ -2606,7 +4158,7 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2: assign-symbols "^1.0.0" is-extendable "^1.0.1" -external-editor@^3.1.0: +external-editor@^3.0.3, external-editor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== @@ -2629,11 +4181,21 @@ extglob@^2.0.4: snapdragon "^0.8.1" to-regex "^3.0.1" +extract-files@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-11.0.0.tgz#b72d428712f787eef1f5193aff8ab5351ca8469a" + integrity sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ== + fast-copy@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/fast-copy/-/fast-copy-3.0.2.tgz#59c68f59ccbcac82050ba992e0d5c389097c9d35" integrity sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ== +fast-decode-uri-component@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz#46f8b6c22b30ff7a81357d4f59abfae938202543" + integrity sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg== + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -2665,6 +4227,13 @@ fast-levenshtein@^2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== +fast-querystring@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/fast-querystring/-/fast-querystring-1.1.2.tgz#a6d24937b4fc6f791b4ee31dcb6f53aeafb89f53" + integrity sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg== + dependencies: + fast-decode-uri-component "^1.0.1" + fast-redact@^3.0.0: version "3.5.0" resolved "https://registry.yarnpkg.com/fast-redact/-/fast-redact-3.5.0.tgz#e9ea02f7e57d0cd8438180083e93077e496285e4" @@ -2680,13 +4249,45 @@ fast-uri@^3.0.1: resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz#88f130b77cfaea2378d56bf970dea21257a68748" integrity sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw== +fast-url-parser@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d" + integrity sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ== + dependencies: + punycode "^1.3.2" + fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +fbjs-css-vars@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== + +fbjs@^3.0.0: + version "3.0.5" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d" + integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== + dependencies: + cross-fetch "^3.1.5" + fbjs-css-vars "^1.0.0" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^1.0.35" + figures@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" @@ -2702,7 +4303,7 @@ figures@^2.0.0: dependencies: escape-string-regexp "^1.0.5" -figures@^3.2.0: +figures@^3.0.0, figures@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== @@ -2741,6 +4342,13 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + find-parent-dir@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.1.tgz#c5c385b96858c3351f95d446cab866cbf9f11125" @@ -2753,6 +4361,14 @@ find-up@^3.0.0: dependencies: locate-path "^3.0.0" +find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + find-up@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" @@ -2761,23 +4377,26 @@ find-up@^5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" -first-chunk-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-3.0.0.tgz#06972a66263505ed82b2c4db93c1b5e078a6576a" - integrity sha512-LNRvR4hr/S8cXXkIY5pTgVP7L3tq6LlYWcg9nWBuW7o1NMxKZo6oOVa/6GIekMGI0Iw7uC+HWimMe9u/VAeKqw== +first-chunk-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70" + integrity sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg== + dependencies: + readable-stream "^2.0.2" flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== dependencies: - flatted "^3.1.0" + flatted "^3.2.9" + keyv "^4.5.3" rimraf "^3.0.2" -flatted@^3.1.0: - version "3.2.7" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" - integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +flatted@^3.2.9: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== for-in@^1.0.2: version "1.0.2" @@ -2813,7 +4432,7 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@~2.3.2: +fsevents@2.3.2, fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== @@ -2833,7 +4452,24 @@ function-bind@^1.1.2: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -get-caller-file@^2.0.5: +generate-function@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-1.1.0.tgz#54c21b080192b16d9877779c5bb81666e772365f" + integrity sha512-Wv4qgYgt2m9QH7K+jklCX/o4gn1ijnS4nT+nxPYBbhdqZLDLtvNh2o26KP/nxN42Tk6AnrGftCLzjiMuckZeQw== + +generate-object-property@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" + integrity sha512-TuOwZWgJ2VAMEGJvAyPWvpqxSANF0LDpmyHauMjFYzaACvn+QTT/AZomvPCzVBV7yDN3OmwHQ5OvHaeLKre3JQ== + dependencies: + is-property "^1.0.0" + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== @@ -2853,6 +4489,17 @@ get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: has-symbols "^1.0.3" hasown "^2.0.0" +get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + get-own-enumerable-property-symbols@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" @@ -2904,7 +4551,7 @@ glob@^10.3.10: package-json-from-dist "^1.0.0" path-scurry "^1.11.1" -glob@^7.1.3: +glob@^7.1.1, glob@^7.1.3: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -2916,14 +4563,19 @@ glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + globals@^13.19.0: - version "13.20.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== + version "13.24.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== dependencies: type-fest "^0.20.2" -globby@^11.1.0: +globby@^11.0.3, globby@^11.1.0: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== @@ -2940,6 +4592,11 @@ globrex@^0.1.2: resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== +google-libphonenumber@^3.2.32: + version "3.2.38" + resolved "https://registry.yarnpkg.com/google-libphonenumber/-/google-libphonenumber-3.2.38.tgz#5adb0c8ff807d84d4d46b9536d0116d00d85f137" + integrity sha512-t/K0dsVmA0gMMVLJgcMeB9g1Ar4ANVWfkY+AJGSdfyJ2Ay7Bu8ceLYpUlC6FZSilZgaF1qbkM9tZydGBEBHqAg== + gopd@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" @@ -2957,7 +4614,49 @@ graphemer@^1.4.0: resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== -handlebars@*: +graphql-config@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-4.5.0.tgz#257c2338950b8dce295a27f75c5f6c39f8f777b2" + integrity sha512-x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw== + dependencies: + "@graphql-tools/graphql-file-loader" "^7.3.7" + "@graphql-tools/json-file-loader" "^7.3.7" + "@graphql-tools/load" "^7.5.5" + "@graphql-tools/merge" "^8.2.6" + "@graphql-tools/url-loader" "^7.9.7" + "@graphql-tools/utils" "^9.0.0" + cosmiconfig "8.0.0" + jiti "1.17.1" + minimatch "4.2.3" + string-env-interpolation "1.0.1" + tslib "^2.4.0" + +graphql-request@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-6.1.0.tgz#f4eb2107967af3c7a5907eb3131c671eac89be4f" + integrity sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw== + dependencies: + "@graphql-typed-document-node/core" "^3.2.0" + cross-fetch "^3.1.5" + +graphql-tag@^2.11.0, graphql-tag@^2.12.6: + version "2.12.6" + resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" + integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== + dependencies: + tslib "^2.1.0" + +graphql-ws@5.12.1: + version "5.12.1" + resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.12.1.tgz#c62d5ac54dbd409cc6520b0b39de374b3d59d0dd" + integrity sha512-umt4f5NnMK46ChM2coO36PTFhHouBrK9stWWBczERguwYrGnPNxJ9dimU6IyOBfOkC6Izhkg4H8+F51W/8CYDg== + +graphql@^16.3.0: + version "16.9.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.9.0.tgz#1c310e63f16a49ce1fbb230bd0a000e99f6f115f" + integrity sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw== + +handlebars@*, handlebars@^4.7.7: version "4.7.8" resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9" integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ== @@ -2969,18 +4668,6 @@ handlebars@*: optionalDependencies: uglify-js "^3.1.4" -handlebars@^4.7.7: - version "4.7.7" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - hapi-auth-jwt2@10.4.0: version "10.4.0" resolved "https://registry.yarnpkg.com/hapi-auth-jwt2/-/hapi-auth-jwt2-10.4.0.tgz#4cb52d6bb7c4b641e602f52a4ce35303c758feae" @@ -3034,6 +4721,13 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1: dependencies: get-intrinsic "^1.2.2" +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + has-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" @@ -3089,6 +4783,14 @@ hasown@^2.0.0: dependencies: function-bind "^1.1.2" +header-case@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063" + integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q== + dependencies: + capital-case "^1.0.4" + tslib "^2.0.3" + help-me@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/help-me/-/help-me-5.0.0.tgz#b1ebe63b967b74060027c2ac61f9be12d354a6f6" @@ -3106,6 +4808,14 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== +http-proxy-agent@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-6.1.1.tgz#dc04f1a84e09511740cfbd984a56f86cc42e4277" + integrity sha512-JRCz+4Whs6yrrIoIlrH+ZTmhrRwtMnmOHsHn8GFEn9O2sVfSE+DAZ3oyyGIKF8tjJEeSJmP89j7aTjVsSqsU0g== + dependencies: + agent-base "^7.1.0" + debug "^4.3.4" + https-proxy-agent@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" @@ -3114,6 +4824,14 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" +https-proxy-agent@^6.0.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-6.2.1.tgz#0965ab47371b3e531cf6794d1eb148710a992ba7" + integrity sha512-ONsE3+yfZF2caH5+bJlcddtWqNI3Gvs5A38+ngvljxaBiRXRswym2c7yf8UAeFpRFKjFNHIFEHqR/OLAWJzyiA== + dependencies: + agent-base "^7.0.2" + debug "4" + husky@1.0.0-rc.13: version "1.0.0-rc.13" resolved "https://registry.yarnpkg.com/husky/-/husky-1.0.0-rc.13.tgz#49c3cc210bfeac24d4ad272f770b7505c9091828" @@ -3148,9 +4866,14 @@ ignore-by-default@^1.0.1: integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA== ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + +immutable@~3.7.6: + version "3.7.6" + resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b" + integrity sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw== import-fresh@^2.0.0: version "2.0.0" @@ -3160,7 +4883,7 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" -import-fresh@^3.0.0, import-fresh@^3.2.1: +import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== @@ -3168,6 +4891,11 @@ import-fresh@^3.0.0, import-fresh@^3.2.1: parent-module "^1.0.0" resolve-from "^4.0.0" +import-from@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2" + integrity sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ== + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -3178,6 +4906,11 @@ indent-string@^3.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" integrity sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ== +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -3186,11 +4919,32 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +inquirer@^8.0.0: + version "8.2.6" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.6.tgz#733b74888195d8d400a67ac332011b5fae5ea562" + integrity sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.5.5" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + wrap-ansi "^6.0.1" + inquirer@^9.2.12: version "9.2.12" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-9.2.12.tgz#0348e9311765b7c93fce143bb1c0ef1ae879b1d7" @@ -3222,6 +4976,21 @@ intl-messageformat@10.7.6: "@formatjs/icu-messageformat-parser" "2.9.3" tslib "2" +invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +is-absolute@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" + integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== + dependencies: + is-relative "^1.0.0" + is-windows "^1.0.1" + is-accessor-descriptor@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" @@ -3338,7 +5107,7 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: +is-glob@4.0.3, is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== @@ -3350,6 +5119,13 @@ is-interactive@^1.0.0: resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== +is-lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-2.0.2.tgz#1c0884d3012c841556243483aa5d522f47396d2a" + integrity sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ== + dependencies: + tslib "^2.0.3" + is-number@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" @@ -3396,11 +5172,23 @@ is-promise@^2.1.0: resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== +is-property@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" + integrity sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g== + is-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== +is-relative@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" + integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== + dependencies: + is-unc-path "^1.0.0" + is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" @@ -3411,6 +5199,13 @@ is-stream@^2.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== +is-unc-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" + integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== + dependencies: + unc-path-regex "^0.1.2" + is-unicode-supported@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" @@ -3421,21 +5216,33 @@ is-unicode-supported@^1.2.0: resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz#d824984b616c292a2e198207d4a609983842f714" integrity sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ== +is-upper-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-2.0.2.tgz#f1105ced1fe4de906a5f39553e7d3803fd804649" + integrity sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ== + dependencies: + tslib "^2.0.3" + is-utf8@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== -is-windows@^1.0.2: +is-windows@^1.0.1, is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== -isarray@1.0.0: +isarray@1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -3453,6 +5260,11 @@ isobject@^3.0.0, isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== +isomorphic-ws@5.0.0, isomorphic-ws@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf" + integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw== + jackspeak@^3.1.2: version "3.4.3" resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" @@ -3462,11 +5274,26 @@ jackspeak@^3.1.2: optionalDependencies: "@pkgjs/parseargs" "^0.11.0" +jest-diff@^24.3.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== + dependencies: + chalk "^2.0.1" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + jest-get-type@^22.1.0: version "22.4.3" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w== +jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== + jest-validate@^23.5.0: version "23.6.0" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474" @@ -3477,6 +5304,16 @@ jest-validate@^23.5.0: leven "^2.1.0" pretty-format "^23.6.0" +jiti@1.17.1: + version "1.17.1" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.17.1.tgz#264daa43ee89a03e8be28c3d712ccc4eb9f1e8ed" + integrity sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw== + +jiti@^1.17.1: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + joi@^17.2.1, joi@^17.3.0, joi@^17.4.0: version "17.6.4" resolved "https://registry.yarnpkg.com/joi/-/joi-17.6.4.tgz#4d9536a059ef0762c718ae98673016b3ec151abd" @@ -3488,11 +5325,21 @@ joi@^17.2.1, joi@^17.3.0, joi@^17.4.0: "@sideway/formula" "^3.0.0" "@sideway/pinpoint" "^2.0.0" +jose@^4.11.4: + version "4.15.9" + resolved "https://registry.yarnpkg.com/jose/-/jose-4.15.9.tgz#9b68eda29e9a0614c042fa29387196c7dd800100" + integrity sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA== + joycon@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/joycon/-/joycon-3.1.1.tgz#bce8596d6ae808f8b68168f5fc69280996894f03" integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + js-yaml@^3.13.1: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" @@ -3501,18 +5348,33 @@ js-yaml@^3.13.1: argparse "^1.0.7" esprima "^4.0.0" -js-yaml@^4.1.0: +js-yaml@^4.0.0, js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" +jsesc@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" + integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + json-parse-better-errors@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -3528,6 +5390,29 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-stable-stringify@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz#52d4361b47d49168bcc4e564189a42e5a7439454" + integrity sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg== + dependencies: + call-bind "^1.0.5" + isarray "^2.0.5" + jsonify "^0.0.1" + object-keys "^1.1.1" + +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json-to-pretty-yaml@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz#f4cd0bd0a5e8fe1df25aaf5ba118b099fd992d5b" + integrity sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A== + dependencies: + remedial "^1.0.7" + remove-trailing-spaces "^1.0.6" + json5@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" @@ -3535,20 +5420,31 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" -json5@^2.2.2: +json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + jsonwebtoken@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz#d0faf9ba1cc3a56255fe49c0961a67e520c1926d" - integrity sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw== + version "9.0.2" + resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz#65ff91f4abef1784697d40952bb1998c504caaf3" + integrity sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ== dependencies: jws "^3.2.2" - lodash "^4.17.21" + lodash.includes "^4.3.0" + lodash.isboolean "^3.0.3" + lodash.isinteger "^4.0.4" + lodash.isnumber "^3.0.3" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.once "^4.0.0" ms "^2.1.1" - semver "^7.3.8" + semver "^7.5.4" jwa@^1.4.1: version "1.4.1" @@ -3572,6 +5468,13 @@ jwt-decode@^2.2.0: resolved "https://registry.yarnpkg.com/jwt-decode/-/jwt-decode-2.2.0.tgz#7d86bd56679f58ce6a84704a657dd392bba81a79" integrity sha512-86GgN2vzfUu7m9Wcj63iUkuDzFNYFVmjeDm2GzWpUk+opB0pEpMsw6ePCMrhYkumz2C1ihqtZzOMAg7FiXcNoQ== +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" @@ -3698,6 +5601,20 @@ listr-verbose-renderer@^0.5.0: date-fns "^1.27.2" figures "^2.0.0" +listr2@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.5.tgz#9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5" + integrity sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA== + dependencies: + cli-truncate "^2.1.0" + colorette "^2.0.16" + log-update "^4.0.0" + p-map "^4.0.0" + rfdc "^1.3.0" + rxjs "^7.5.5" + through "^2.3.8" + wrap-ansi "^7.0.0" + listr@^0.14.1: version "0.14.3" resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" @@ -3721,6 +5638,13 @@ locate-path@^3.0.0: p-locate "^3.0.0" path-exists "^3.0.0" +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + locate-path@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" @@ -3733,12 +5657,47 @@ lodash.clonedeep@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ== +lodash.includes@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" + integrity sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w== + +lodash.isboolean@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" + integrity sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg== + +lodash.isinteger@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" + integrity sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA== + +lodash.isnumber@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" + integrity sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw== + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== + +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + integrity sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw== + lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== -lodash@^4.17.21, lodash@^4.17.5: +lodash.once@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== + +lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.5, lodash@~4.17.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -3757,7 +5716,7 @@ log-symbols@^2.2.0: dependencies: chalk "^2.0.1" -log-symbols@^4.1.0: +log-symbols@^4.0.0, log-symbols@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== @@ -3774,12 +5733,43 @@ log-update@^2.3.0: cli-cursor "^2.0.0" wrap-ansi "^3.0.1" +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + loupe@^3.1.0, loupe@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.1.1.tgz#71d038d59007d890e3247c5db97c1ec5a92edc54" integrity sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw== dependencies: - get-func-name "^2.0.1" + get-func-name "^2.0.1" + +lower-case-first@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-2.0.2.tgz#64c2324a2250bf7c37c5901e76a5b5309301160b" + integrity sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg== + dependencies: + tslib "^2.0.3" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" lru-cache@^10.2.0: version "10.4.3" @@ -3794,6 +5784,13 @@ lru-cache@^4.0.1: pseudomap "^1.0.2" yallist "^2.1.2" +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -3825,12 +5822,12 @@ make-dir@^3.1.0: dependencies: semver "^6.0.0" -make-error@^1.1.1, make-error@^1.3.2: +make-error@^1.1.1: version "1.3.6" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== -map-cache@^0.2.2: +map-cache@^0.2.0, map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== @@ -3847,6 +5844,11 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== +meros@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/meros/-/meros-1.3.0.tgz#c617d2092739d55286bf618129280f362e6242f2" + integrity sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w== + micromatch@^3.1.8: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" @@ -3874,6 +5876,14 @@ micromatch@^4.0.4: braces "^3.0.2" picomatch "^2.3.1" +micromatch@^4.0.5: + version "4.0.8" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + mime-db@1.52.0, mime-db@1.x.x: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" @@ -3896,6 +5906,13 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +minimatch@4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-4.2.3.tgz#b4dcece1d674dee104bb0fb833ebb85a78cbbca6" + integrity sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng== + dependencies: + brace-expansion "^1.1.7" + minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -3928,6 +5945,13 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" +mnemonist@^0.39.2: + version "0.39.4" + resolved "https://registry.yarnpkg.com/mnemonist/-/mnemonist-0.39.4.tgz#62bfd347a5fe1e44aaedf8b44f21d324a16f8ec9" + integrity sha512-WlE2Ugow1ENH5un0OthjsjpJb/nbkUQ/jUOHtZUqh58JNzEHNxkm0tIFRAoExsANW/fTN/rxBUMFY/7jPDvxdQ== + dependencies: + obliterator "^2.0.1" + ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" @@ -3943,6 +5967,11 @@ ms@^2.1.1, ms@^2.1.3: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + mute-stream@1.0.0, mute-stream@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e" @@ -3999,11 +6028,34 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -neo-async@^2.6.0, neo-async@^2.6.2: +ndjson@^1.4.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/ndjson/-/ndjson-1.5.0.tgz#ae603b36b134bcec347b452422b0bf98d5832ec8" + integrity sha512-hUPLuaziboGjNF7wHngkgVc0FOclR8dDk/HfEvTtDr/iUrqBWiRcRSTK3/nLOqKH33th714BrMmTPtObI9gZxQ== + dependencies: + json-stringify-safe "^5.0.1" + minimist "^1.2.0" + split2 "^2.1.0" + through2 "^2.0.3" + +neo-async@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558" + integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ== + node-fetch@^2.6.1, node-fetch@^2.6.7: version "2.6.7" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" @@ -4011,6 +6063,23 @@ node-fetch@^2.6.1, node-fetch@^2.6.7: dependencies: whatwg-url "^5.0.0" +node-fetch@^2.6.12: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.18: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + node-ssh@^13.2.0: version "13.2.0" resolved "https://registry.yarnpkg.com/node-ssh/-/node-ssh-13.2.0.tgz#06823c4817a5d31249c125a47d821d473f61491d" @@ -4024,9 +6093,9 @@ node-ssh@^13.2.0: ssh2 "^1.14.0" nodemailer@^6.9.8: - version "6.9.8" - resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.9.8.tgz#29601e80440f2af7aa62b32758fdac7c6b784143" - integrity sha512-cfrYUk16e67Ks051i4CntM9kshRYei1/o/Gi8K1d+R34OIs21xdFnW7Pt7EucmVKA0LKtqUGNcjMZ7ehjl49mQ== + version "6.9.11" + resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.9.11.tgz#900703bd6dc62855d9cea962acf261926841f825" + integrity sha512-UiAkgiERuG94kl/3bKfE8o10epvDnl0vokNEtZDPTq9BWzIl6EFT9336SbIT4oaTBD8NmmUTLsQyXHV82eXSWg== nodemon@^2.0.22: version "2.0.22" @@ -4061,6 +6130,13 @@ normalize-package-data@^2.3.2: semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== + dependencies: + remove-trailing-separator "^1.0.1" + normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" @@ -4089,6 +6165,11 @@ npm-which@^3.0.1: npm-path "^2.0.2" which "^1.2.10" +nullthrows@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" + integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== + number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" @@ -4113,6 +6194,11 @@ object-hash@^3.0.0: resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + object-visit@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" @@ -4127,6 +6213,11 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" +obliterator@^2.0.1: + version "2.0.4" + resolved "https://registry.yarnpkg.com/obliterator/-/obliterator-2.0.4.tgz#fa650e019b2d075d745e44f1effeb13a2adbe816" + integrity sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ== + on-exit-leak-free@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz#b39c9e3bf7690d890f4861558b0d7b90a442d209" @@ -4163,17 +6254,17 @@ opener@^1.5.1: resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" deep-is "^0.1.3" fast-levenshtein "^2.0.6" levn "^0.4.1" prelude-ls "^1.2.1" type-check "^0.4.0" - word-wrap "^1.2.3" ora@^5.4.1: version "5.4.1" @@ -4200,20 +6291,20 @@ p-finally@^1.0.0: resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== -p-limit@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: +p-limit@3.1.0, p-limit@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" +p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + p-locate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" @@ -4221,6 +6312,13 @@ p-locate@^3.0.0: dependencies: p-limit "^2.0.0" +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + p-locate@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" @@ -4238,6 +6336,28 @@ p-map@^2.0.0: resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-queue@^6.6.2: + version "6.6.2" + resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" + integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== + dependencies: + eventemitter3 "^4.0.4" + p-timeout "^3.2.0" + +p-timeout@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== + dependencies: + p-finally "^1.0.0" + p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" @@ -4248,6 +6368,21 @@ package-json-from-dist@^1.0.0: resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== +pandemonium@^2.0.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/pandemonium/-/pandemonium-2.4.1.tgz#bd51ca72184c6ae135f9049a33c8605bfdb9574d" + integrity sha512-wRqjisUyiUfXowgm7MFH2rwJzKIr20rca5FsHXCMNm1W5YPP1hCtrZfgmQ62kP7OZ7Xt+cR858aB28lu5NX55g== + dependencies: + mnemonist "^0.39.2" + +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -4255,6 +6390,15 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" +parse-filepath@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" + integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q== + dependencies: + is-absolute "^1.0.0" + map-cache "^0.2.0" + path-root "^0.1.1" + parse-json@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" @@ -4263,11 +6407,37 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== +path-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f" + integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -4303,6 +6473,18 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-root-regex@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" + integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ== + +path-root@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" + integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg== + dependencies: + path-root-regex "^0.1.0" + path-scurry@^1.11.1: version "1.11.1" resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" @@ -4382,6 +6564,11 @@ pgpass@1.0.5: dependencies: split2 "^4.1.0" +picocolors@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + picocolors@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" @@ -4467,6 +6654,25 @@ pkg-dir@^3.0.0: dependencies: find-up "^3.0.0" +playwright-core@1.54.2: + version "1.54.2" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.54.2.tgz#73cc5106f19ec6b9371908603d61a7f171ebd8f0" + integrity sha512-n5r4HFbMmWsB4twG7tJLDN9gmBUeSPcsBZiWSE4DnYz9mJMAFqr2ID7+eGC9kpEnxExJ1epttwR59LEWCk8mtA== + +playwright-ctrf-json-reporter@^0.0.18: + version "0.0.18" + resolved "https://registry.yarnpkg.com/playwright-ctrf-json-reporter/-/playwright-ctrf-json-reporter-0.0.18.tgz#74b0d6cd53e3860148070db8cbecb789cac766e4" + integrity sha512-AjFNpIMKI8zeyaktA2LBphYzy3ffiBjXobBXxEfrVUDov/Z8v5+y9FI0m3cBCr8yauk2brN+Er225vHsZDIu0g== + +playwright@1.54.2: + version "1.54.2" + resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.54.2.tgz#e2435abb2db3a96a276f8acc3ada1a85b587dff3" + integrity sha512-Hu/BMoA1NAdRUuulyvQC0pEqZ4vQbGfn8f7wPXcnqQmM+zct9UliKxsIkLNmz/ku7LElUNqmaiv1TG/aL5ACsw== + dependencies: + playwright-core "1.54.2" + optionalDependencies: + fsevents "2.3.2" + please-upgrade-node@^3.0.2, please-upgrade-node@^3.1.1: version "3.2.0" resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" @@ -4535,6 +6741,21 @@ pretty-format@^23.6.0: ansi-regex "^3.0.0" ansi-styles "^3.2.0" +pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== + dependencies: + "@jest/types" "^24.9.0" + ansi-regex "^4.0.0" + ansi-styles "^3.2.0" + react-is "^16.8.4" + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + process-warning@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-1.0.0.tgz#980a0b25dc38cd6034181be4b7726d89066b4616" @@ -4545,12 +6766,12 @@ process@^0.11.10: resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== -promise-toolbox@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/promise-toolbox/-/promise-toolbox-0.14.0.tgz#b2f8bd90fce6709b290b58fc06d89280375a98b4" - integrity sha512-VV5lXK4lXaPB9oBO50ope1qd0AKN8N3nK14jYvV9/qFmfZW2Px/bJjPZBniGjXcIJf6J5Y/coNgJtPHDyiUV/g== +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== dependencies: - make-error "^1.3.2" + asap "~2.0.3" prompts@^2.4.2: version "2.4.2" @@ -4570,6 +6791,22 @@ pstree.remy@^1.1.8: resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== +pump@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" + integrity sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" @@ -4578,19 +6815,36 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -pumpify@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-2.0.1.tgz#abfc7b5a621307c728b551decbbefb51f0e4aa1e" - integrity sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw== +pumpify@^1.3.5: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== dependencies: - duplexify "^4.1.1" + duplexify "^3.6.0" inherits "^2.0.3" - pump "^3.0.0" + pump "^2.0.0" + +punycode@^1.3.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +pvtsutils@^1.3.2, pvtsutils@^1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/pvtsutils/-/pvtsutils-1.3.5.tgz#b8705b437b7b134cd7fd858f025a23456f1ce910" + integrity sha512-ARvb14YB9Nm2Xi6nBq1ZX6dAM0FsJnuk+31aUp4TrcZEdKUlSqOqsxJHUPJDNE3qiIp+iUPEIeR6Je/tgV7zsA== + dependencies: + tslib "^2.6.1" + +pvutils@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/pvutils/-/pvutils-1.1.3.tgz#f35fc1d27e7cd3dfbd39c0826d173e806a03f5a3" + integrity sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ== queue-microtask@^1.2.2: version "1.2.3" @@ -4618,7 +6872,7 @@ react-intl@*, react-intl@^6.4.3: intl-messageformat "10.7.6" tslib "2" -react-is@^16.7.0: +react-is@^16.7.0, react-is@^16.8.4: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -4632,7 +6886,20 @@ read-pkg@^4.0.1: parse-json "^4.0.0" pify "^3.0.0" -"readable-stream@2 || 3", readable-stream@^3.1.1: +readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@~2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.1.1: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -4683,6 +6950,11 @@ recrawl-sync@^2.0.3: sucrase "^3.20.3" tslib "^1.9.3" +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" @@ -4691,6 +6963,44 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" +regex-to-strings@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/regex-to-strings/-/regex-to-strings-2.1.0.tgz#f5aaaa5335d55f262120ad643d130f89938ec4c3" + integrity sha512-IB2KMpdYwEv58X5qWTiLqKS0RijvwcVhhpcuepu/jni2Ti4hVCH27M+/Qo0r+TpwwD698rh2gaEP3UUa/Hi1ZA== + dependencies: + escape-string-regexp "^4.0.0" + pandemonium "^2.0.0" + regexp-tree "^0.1.23" + +regexp-tree@^0.1.23: + version "0.1.24" + resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.24.tgz#3d6fa238450a4d66e5bc9c4c14bb720e2196829d" + integrity sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw== + +relay-runtime@12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/relay-runtime/-/relay-runtime-12.0.0.tgz#1e039282bdb5e0c1b9a7dc7f6b9a09d4f4ff8237" + integrity sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug== + dependencies: + "@babel/runtime" "^7.0.0" + fbjs "^3.0.0" + invariant "^2.2.4" + +remedial@^1.0.7: + version "1.0.8" + resolved "https://registry.yarnpkg.com/remedial/-/remedial-1.0.8.tgz#a5e4fd52a0e4956adbaf62da63a5a46a78c578a0" + integrity sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg== + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== + +remove-trailing-spaces@^1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz#4354d22f3236374702f58ee373168f6d6887ada7" + integrity sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA== + repeat-element@^1.1.2: version "1.1.4" resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" @@ -4701,11 +7011,26 @@ repeat-string@^1.6.1: resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + require-from-string@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +resolve-from@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + resolve-from@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" @@ -4756,6 +7081,11 @@ reusify@^1.0.4: resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== +rfdc@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca" + integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== + rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" @@ -4788,6 +7118,11 @@ rollup@^4.20.0: "@rollup/rollup-win32-x64-msvc" "4.24.0" fsevents "~2.3.2" +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + run-async@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/run-async/-/run-async-3.0.0.tgz#42a432f6d76c689522058984384df28be379daad" @@ -4812,7 +7147,7 @@ rxjs@^6.3.3: dependencies: tslib "^1.9.0" -rxjs@^7.2.0, rxjs@^7.8.1: +rxjs@^7.2.0, rxjs@^7.5.5, rxjs@^7.8.1: version "7.8.1" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== @@ -4824,6 +7159,11 @@ safe-buffer@^5.0.1, safe-buffer@~5.2.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + safe-regex@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" @@ -4853,6 +7193,11 @@ sb-scandir@^3.1.0: dependencies: sb-promise-queue "^2.1.0" +scuid@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/scuid/-/scuid-1.1.0.tgz#d3f9f920956e737a60f72d0e4ad280bf324d5dab" + integrity sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg== + secure-json-parse@^2.4.0: version "2.7.0" resolved "https://registry.yarnpkg.com/secure-json-parse/-/secure-json-parse-2.7.0.tgz#5a5f9cd6ae47df23dba3151edd06855d47e09862" @@ -4868,12 +7213,12 @@ semver-compare@^1.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^6.0.0: +semver@^6.0.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.7, semver@^7.3.8: +semver@^7.3.7, semver@^7.5.4: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== @@ -4885,6 +7230,20 @@ semver@~7.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== +sentence-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f" + integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + set-function-length@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.0.tgz#2f81dc6c16c7059bda5ab7c82c11f03a515ed8e1" @@ -4896,6 +7255,18 @@ set-function-length@^1.1.1: gopd "^1.0.1" has-property-descriptors "^1.0.1" +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" @@ -4906,6 +7277,11 @@ set-value@^2.0.0, set-value@^2.0.1: is-plain-object "^2.0.3" split-string "^3.0.1" +setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== + shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -4935,6 +7311,11 @@ shell-escape@^0.2.0: resolved "https://registry.yarnpkg.com/shell-escape/-/shell-escape-0.2.0.tgz#68fd025eb0490b4f567a027f0bf22480b5f84133" integrity sha512-uRRBT2MfEOyxuECseCZd28jC1AJ8hmqqneWQ4VWUTgCAFvb3wKU1jLqj6egC4Exrr88ogg3dp+zroH4wJuaXzw== +shell-quote@^1.7.3: + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + short-uid@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/short-uid/-/short-uid-0.1.0.tgz#069d94d044fc498afb0ea7bb22c5e634979434c8" @@ -4955,6 +7336,11 @@ signal-exit@^4.0.1, signal-exit@^4.1.0: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== +signedsource@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/signedsource/-/signedsource-1.0.0.tgz#1ddace4981798f93bd833973803d80d52e93ad6a" + integrity sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww== + simple-update-notifier@^1.0.7: version "1.1.0" resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82" @@ -4982,6 +7368,32 @@ slice-ansi@0.0.4: resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw== +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" @@ -5090,6 +7502,13 @@ split-string@^3.0.1, split-string@^3.0.2: dependencies: extend-shallow "^3.0.0" +split2@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" + integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== + dependencies: + through2 "^2.0.2" + split2@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/split2/-/split2-4.1.0.tgz#101907a24370f85bb782f08adaabe4e281ecf809" @@ -5100,6 +7519,13 @@ split2@^4.1.0: resolved "https://registry.yarnpkg.com/split2/-/split2-4.2.0.tgz#c9c5920904d148bab0b9f67145f245a86aadbfa4" integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== +sponge-case@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sponge-case/-/sponge-case-1.0.1.tgz#260833b86453883d974f84854cdb63aecc5aef4c" + integrity sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA== + dependencies: + tslib "^2.0.3" + sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" @@ -5161,11 +7587,21 @@ stream-shift@^1.0.2: resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.3.tgz#85b8fab4d71010fc3ba8772e8046cc49b8a3864b" integrity sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ== +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + string-argv@^0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz#dac30408690c21f3c3630a3ff3a05877bdcbd736" integrity sha512-p6/Mqq0utTQWUeGMi/m0uBtlLZEwXSY3+mXzeRRqw7fz5ezUb28Wr0R99NlfbWaMmL/jCyT9be4jpn7Yz8IO8w== +string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz#ad4397ae4ac53fe6c91d1402ad6f6a52862c7152" + integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== + "string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -5192,7 +7628,7 @@ string-width@^2.1.1: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" -string-width@^4.1.0, string-width@^4.2.3: +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -5217,6 +7653,13 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + stringify-object@^3.2.2: version "3.3.0" resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" @@ -5261,20 +7704,20 @@ strip-ansi@^7.0.1: dependencies: ansi-regex "^6.0.1" -strip-bom-buf@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-2.0.0.tgz#ff9c223937f8e7154b77e9de9bde094186885c15" - integrity sha512-gLFNHucd6gzb8jMsl5QmZ3QgnUJmp7qn4uUSHNwEXumAp7YizoGYw19ZUVfuq4aBOQUtyn2k8X/CwzWB73W2lQ== +strip-bom-buf@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572" + integrity sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ== dependencies: is-utf8 "^0.2.1" -strip-bom-stream@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-4.0.0.tgz#4d21a651e723ef743a0a8b0d4534471805330cbb" - integrity sha512-0ApK3iAkHv6WbgLICw/J4nhwHeDZsBxIIsOD+gHgZICL6SeJ0S9f/WZqemka9cjkTyMN5geId6e8U5WGFAn3cQ== +strip-bom-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-3.0.0.tgz#956bcc5d84430f69256a90ed823765cd858e159c" + integrity sha512-2di6sulSHfspbuEJHwwF6vzwijA4uaKsKYtviRQsJsOdxxb6yexiDcZFQ5oY10J50YxmCdHn/1sQmxDKbrGOVw== dependencies: - first-chunk-stream "^3.0.0" - strip-bom-buf "^2.0.0" + first-chunk-stream "^2.0.0" + strip-bom-buf "^1.0.0" strip-bom@^3.0.0: version "3.0.0" @@ -5286,7 +7729,7 @@ strip-eof@^1.0.0: resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: +strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -5336,6 +7779,13 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== +swap-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-2.0.2.tgz#671aedb3c9c137e2985ef51c51f9e98445bf70d9" + integrity sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw== + dependencies: + tslib "^2.0.3" + symbol-observable@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" @@ -5375,13 +7825,18 @@ thread-stream@^0.15.1: dependencies: real-require "^0.1.0" -through2@^3.0.1: - version "3.0.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz#99f88931cfc761ec7678b41d5d7336b5b6a07bf4" - integrity sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ== +through2@^2.0.2, through2@^2.0.3: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== dependencies: - inherits "^2.0.4" - readable-stream "2 || 3" + readable-stream "~2.3.6" + xtend "~4.0.1" + +through@^2.3.6, through@^2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== tinybench@^2.9.0: version "2.9.0" @@ -5408,6 +7863,13 @@ tinyspy@^3.0.0: resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-3.0.2.tgz#86dd3cf3d737b15adcf17d7887c84a75201df20a" integrity sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q== +title-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/title-case/-/title-case-3.0.3.tgz#bc689b46f02e411f1d1e1d081f7c3deca0489982" + integrity sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA== + dependencies: + tslib "^2.0.3" + tmp@^0.0.33: version "0.0.33" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" @@ -5464,10 +7926,15 @@ ts-interface-checker@^0.1.9: resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== +ts-log@^2.2.3: + version "2.2.7" + resolved "https://registry.yarnpkg.com/ts-log/-/ts-log-2.2.7.tgz#4f4512144898b77c9984e91587076fcb8518688e" + integrity sha512-320x5Ggei84AxzlXp91QkIGSw5wgaLT6GeAH0KsqDmRZdVWW2OiSeVvElVoatk3f7nicwXlElXsoFkARiGE2yg== + ts-node@^10.9.1: - version "10.9.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== + version "10.9.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== dependencies: "@cspotcode/source-map-support" "^0.8.0" "@tsconfig/node10" "^1.0.7" @@ -5502,12 +7969,12 @@ tsconfig-paths@^4.0.0: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@2, tslib@^2.6.2: +tslib@2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.1, tslib@^2.6.2, tslib@^2.7.0: version "2.8.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== -tslib@2.6.2: +tslib@2.6.2, tslib@^2.4.0: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== @@ -5522,6 +7989,16 @@ tslib@^2.1.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== +tslib@~2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" + integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== + +tslib@~2.5.0: + version "2.5.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" + integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== + tsutils@^3.21.0: version "3.21.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" @@ -5556,20 +8033,30 @@ typescript@^5.1.6: resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274" integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== +ua-parser-js@^1.0.35: + version "1.0.39" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.39.tgz#bfc07f361549bf249bd8f4589a4cccec18fd2018" + integrity sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw== + uglify-js@^3.1.4: version "3.17.4" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== +unc-path-regex@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" + integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg== + undefsafe@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== -undici-types@~5.25.1: - version "5.25.3" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.25.3.tgz#e044115914c85f0bcbb229f346ab739f064998c3" - integrity sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA== +underscore@>1.4.4: + version "1.13.7" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.7.tgz#970e33963af9a7dda228f17ebe8399e5fbe63a10" + integrity sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g== undici-types@~5.26.4: version "5.26.5" @@ -5591,6 +8078,13 @@ universal-user-agent@^6.0.0: resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.1.tgz#15f20f55da3c930c57bddbf1734c6654d5fd35aa" integrity sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ== +unixify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unixify/-/unixify-1.0.0.tgz#3a641c8c2ffbce4da683a5c70f03a462940c2090" + integrity sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg== + dependencies: + normalize-path "^2.1.1" + unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" @@ -5599,6 +8093,28 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" +update-browserslist-db@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" + integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== + dependencies: + escalade "^3.2.0" + picocolors "^1.1.0" + +upper-case-first@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324" + integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg== + dependencies: + tslib "^2.0.3" + +upper-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a" + integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg== + dependencies: + tslib "^2.0.3" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -5611,12 +8127,17 @@ urix@^0.1.0: resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== +urlpattern-polyfill@^8.0.0: + version "8.0.2" + resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz#99f096e35eff8bf4b5a2aa7d58a1523d6ebc7ce5" + integrity sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ== + use@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== -util-deprecate@^1.0.1: +util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== @@ -5644,6 +8165,11 @@ validate-npm-package-license@^3.0.1: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" +value-or-promise@^1.0.11, value-or-promise@^1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.12.tgz#0e5abfeec70148c78460a849f6b003ea7986f15c" + integrity sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q== + vite-node@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.2.tgz#f5491a2b399959c9e2f3c4b70cb0cbaecf9be6d2" @@ -5707,11 +8233,32 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" +web-streams-polyfill@^3.2.1: + version "3.3.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b" + integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== + +webcrypto-core@^1.8.0: + version "1.8.1" + resolved "https://registry.yarnpkg.com/webcrypto-core/-/webcrypto-core-1.8.1.tgz#09d5bd8a9c48e9fbcaf412e06b1ff1a57514ce86" + integrity sha512-P+x1MvlNCXlKbLSOY4cYrdreqPG5hbzkmawbcXLKN/mf6DZW0SdNNkZ+sjwsqVkI4A4Ko2sPZmkZtCKY58w83A== + dependencies: + "@peculiar/asn1-schema" "^2.3.13" + "@peculiar/json-schema" "^1.1.12" + asn1js "^3.0.5" + pvtsutils "^1.3.5" + tslib "^2.7.0" + webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== +whatwg-fetch@^3.0.0: + version "3.6.20" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz#580ce6d791facec91d37c72890995a0b48d31c70" + integrity sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg== + whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" @@ -5720,6 +8267,11 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" +which-module@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== + which@^1.2.10, which@^1.2.9: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" @@ -5742,11 +8294,6 @@ why-is-node-running@^2.3.0: siginfo "^2.0.0" stackback "0.0.2" -word-wrap@^1.2.3: - version "1.2.4" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f" - integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA== - wordwrap@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" @@ -5769,7 +8316,7 @@ wrap-ansi@^3.0.1: string-width "^2.1.1" strip-ansi "^4.0.0" -wrap-ansi@^6.2.0: +wrap-ansi@^6.0.1, wrap-ansi@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== @@ -5778,6 +8325,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" @@ -5792,21 +8348,99 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -xtend@^4.0.0: +ws@8.13.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + +ws@^8.12.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== + +xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +yaml-ast-parser@^0.0.43: + version "0.0.43" + resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" + integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== + +yaml@^1.10.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^18.1.2: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs@^15.3.1: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + +yargs@^17.0.0, yargs@^17.7.2: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + yn@3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"